-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "zefhub",
"version": "0.0.13",
"main": "dist/index.js",
"bin": {
"zefhub": "dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"zef",
"zefhub",
"graphql"
],
"repository": "[email protected]:zefhub/zefhub-cli.git",
"author": "Daniel Dyrnes <[email protected]>",
"homepage": "https://www.zefhub.io",
"bugs": {
"url": "https://github.com/zefhub/zefhub-cli/issues"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "yarn run tsc",
"prestart": "yarn run build",
"start": "node dist/index.js",
"copy:templates": "cp -r src/templates dist/templates",
"clean": "node tools/cleanup"
},
"dependencies": {
"archiver": "^5.3.1",
"axios": "^0.27.2",
"chalk": "4.1.2",
"cli-interact": "^0.1.9",
"commander": "^9.4.0",
"conf": "^10.2.0",
"form-data": "^4.0.0",
"typescript": "^4.7.4",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/cli-interact": "^0.1.1",
"@types/node": "^18.6.3",
"tsc": "^2.0.4"
}
}