-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.21 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
40
{
"name": "quick-start",
"private": true,
"packageManager": "[email protected]",
"version": "0.0.0",
"type": "module",
"scripts": {
"preinstall": "node scripts/preinstall.js",
"dev": "node scripts/watch.js",
"clear": "node scripts/clear.js",
"copy": "node scripts/copy.js",
"package": "node scripts/package.js",
"build": "node scripts/build.js",
"builds": "pnpm run clear && pnpm run copy && tsc && pnpm run build && pnpm run package",
"lint": "eslint src && prettier --check src",
"lint:fix": "eslint --fix src && prettier --check --write src"
},
"devDependencies": {
"@minecraft/server": "1.11.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"archiver": "^5.3.1",
"chokidar": "^3.5.3",
"eslint": "^8.46.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"prettier": "^3.0.0",
"rollup": "^3.27.0",
"tslib": "^2.6.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@mcbe-mods/utils": "^0.1.1",
"@minecraft/vanilla-data": "^1.21.0"
}
}