forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "@wundergraph/wunderctl",
"version": "0.180.0",
"license": "Apache-2.0",
"description": "WunderGraph Command Line Interface",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"download"
],
"bin": {
"wunderctl": "./dist/bin/cli.js"
},
"scripts": {
"build": "tsc",
"devinstall": "node dist/bin/install.js",
"postinstall": "node dist/bin/install.js",
"postuninstall": "node dist/bin/uninstall.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wundergraph/wundergraph.git"
},
"homepage": "https://wundergraph.com",
"author": {
"name": "WunderGraph Maintainers",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/wundergraph/wundergraph/issues"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^14.18.16",
"@types/rimraf": "^3.0.0",
"@types/tar": "^6.1.4",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^0.26.1",
"debug": "^4.3.4",
"execa": "5.1.1",
"rimraf": "^3.0.2",
"tar": "^6.1.13"
},
"sideEffects": false
}