-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 919 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 919 Bytes
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
{
"name": "minecraft-lbng-types",
"version": "1.0.10",
"description": "utilities for writing typescripts for LiquidBounce nextgen",
"author": "commandblock2",
"license": "GPL-3.0",
"bin": {
"lb-hotreload-watch": "scripts/dist/watch.js"
},
"files": [
"./scripts/dist"
],
"scripts": {
"lb-hotreload-watch": "npx ts-node ./scripts/watch.ts",
"build-watch": "tsc --target es2018 --module commonjs scripts/watch.ts --outDir scripts/dist || exit 0 && chmod +x scripts/dist/watch.js",
"prepublishOnly": "npm run build-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commandblock2/minecraft-LBNG-types.git"
},
"devDependencies": {
"@types/node": "^22.12.0",
"chokidar": "^4.0.3",
"jvm-types": "^2025.7.26",
"lbng-utils-typed": "*",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"workspaces": [
"packages/*"
]
}