-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@gobstones/gobstones-core",
"version": "0.6.0",
"description": "A set of utility types, interfaces and classes that are used through all the Gobstones Platform repositories.",
"repository": "https://github.com/gobstones/gobstones-core",
"homepage": "https://gobstones.github.io/gobstones-core",
"author": "Alan Rodas Bonjour <[email protected]>",
"license": "AGPL-3.0",
"keywords": ["Gobstones", "Library", "Core", "Utilities"],
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"typings": "./dist/esm/typings/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/typings/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/typings/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
},
"./cli": {
"import": {
"types": "./dist/esm/cli/typings/cli.d.ts",
"default": "./dist/esm/cli/cli.mjs"
},
"require": {
"types": "./dist/cjs/cli/typings/cli.d.ts",
"default": "./dist/cjs/cli/cli.cjs"
}
}
},
"typesVersions": {
"*": {
"cli": ["./dist/esm/typings/cli.d.ts"],
".": ["./dist/esm/typings/index.d.ts"]
}
},
"packageManager": "[email protected]",
"scripts": {
"prepare": "is-ci || husky",
"prepack": "npm start build",
"start": "gobstones-scripts run",
"gbs": "gobstones-scripts"
},
"config": {
"gobstones-scripts": {
"type": "Library",
"manager": "npm"
}
},
"dependencies": {
"@alanrodas/shapeof": "^0.1.0",
"commander": "^12.1.0"
},
"devDependencies": {
"@gobstones/gobstones-scripts": "^0.9.3",
"husky": "^9.1.4"
}
}