-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "mc-build",
"version": "3.5.1",
"description": "A language for creating minecraft datapacks",
"module": "dist/libmcb.js",
"bin": {
"mcb3": "./dist/mcb.js",
"mc-build": "./dist/mcb.js",
"mcb": "./dist/mcb.js"
},
"types": "dist/libmcb.d.ts",
"repository": "[email protected]:mc-build/mcb.git",
"author": "Ian Senne <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "yarn build:io-worker && ./build.sh",
"build:io-worker": "tsx ./scripts/compileIoThread.ts",
"build:haxe": "haxe build.hxml",
"test": "node ./dist-testbed/testbed",
"dev": "nodemon --config nodemon.json",
"dist": "yarn build",
"setup-deps": "dts2hx chokidar && dts2hx figures && dts2hx chalk",
"setup": "yarn && yarn setup-deps && haxelib install lib.hxml --always"
},
"devDependencies": {
"@types/node": "^20.8.4",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"dts2hx": "^0.20.0",
"esbuild": "^0.19.4",
"figures": "^6.0.1",
"nodemon": "^3.0.1",
"typescript": "^5.2.2",
"tsx": "^4.7.2"
}
}