-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1002 Bytes
/
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
{
"name": "bedrock-server-launcher",
"version": "0.4.0",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run src/launcher/index.ts",
"updater": "bun run src/updater/index.ts",
"build-launcher": "bun build src/launcher/index.ts --compile --outfile build/BedrockServerLauncher",
"build-updater-windows": "bun build src/updater/index.ts --minify --compile --target=bun-windows-x64 --outfile build/bds-updater-windows",
"build-updater-linux": "bun build src/updater/index.ts --minify --compile --target=bun-linux-x64 --outfile build/bds-updater-linux"
},
"devDependencies": {
"@types/bun": "latest",
"@types/unzip-stream": "^0.3.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/progress": "^2.0.7",
"chalk": "^5.3.0",
"cli-select": "^1.1.2",
"compare-versions": "^6.1.0",
"dayjs": "^1.11.11",
"jsonc": "^2.0.0",
"progressbar": "^1.3.0",
"unzip-stream": "^0.3.4"
}
}