-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 874 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
{
"name": "@ecmacraft/workspace",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"build:plugin": "cd ./ecmacraft && mvn clean package -DskipTests",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"{apps,packages,scripts}/**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"generate-dts": "python ./scripts/jar2dts.py ./target/spigot-api.jar --out ./packages/types/src --single --emit-runtime-value && node ./scripts/extract-events.ts",
"test-server": "cd test-server && node ../scripts/pre-server.ts && java -Xmx2048M -Xms2048M -jar server.jar nogui"
},
"devDependencies": {
"@types/node": "^25.2.3",
"prettier": "^3.7.4",
"turbo": "^2.8.9",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=24"
}
}