forked from wundergraph/wunderctl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
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
{
"name": "@wundergraph/wunderctl",
"version": "0.0.3",
"description": "WunderGraph Command Line Interface",
"main": "run.js",
"license": "MIT",
"bin": {
"wunderctl": "run.js"
},
"scripts": {
"build": "esbuild ./src/*** --bundle --platform=node --outdir=./dist",
"check": "tsc --noEmit",
"set-version": "node dist/set-version.js",
"devinstall": "ts-node src/install.ts",
"postinstall": "node dist/install.js",
"postuninstall": "node dist/uninstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wundergraph/wunderctl.git"
},
"author": "",
"bugs": {
"url": "https://github.com/wundergraph/wunderctl/issues"
},
"homepage": "https://github.com/wundergraph/wunderctl#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^14.14.20",
"@types/rimraf": "^3.0.0",
"@types/tar": "^4.0.4",
"axios": "^0.21.1",
"esbuild": "^0.8.31",
"os": "^0.1.1",
"rimraf": "^3.0.2",
"tar": "^6.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}