-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "ender-ts",
"version": "0.2.0",
"description": "A cli application to setup and manage a Minecraft-server",
"main": "dist/index.js",
"author": "z3orc",
"license": "MIT",
"bin": {
"ender": "dist/index.js"
},
"dependencies": {
"archiver": "^5.3.1",
"chalk": "4.1.2",
"commander": "^9.4.0",
"conf": "^10.2.0",
"enquirer": "^2.3.6",
"ora": "5.4.1",
"tcp-port-used": "^1.0.2",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/node": "^18.6.3",
"@types/tcp-port-used": "^1.0.1",
"@types/unzipper": "^0.10.5",
"pkg": "^5.8.0",
"typescript": "^4.7.4"
},
"pkg": {
"scripts": "dist/index.js"
},
"scripts": {
"package": "pkg . -o build/ender-cli -t win-x64,linux-x64,linux-arm64,macos-x64,macos-arm64",
"dist": "yarn build && yarn package",
"build": "yarn tsc",
"dev": "yarn tsc --watch"
}
}