-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.1 KB
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
{
"name": "game",
"version": "1.0.0",
"main": "main.js",
"author": "Wano",
"type": "module",
"scripts": {
"start": "node scripts/build.mjs && electron ./main.js --dev",
"electron": "electron ./main.js --dev",
"copy-project": "node scripts/copy-project.mjs",
"update-packages": "npx npm-check-updates -u && npm run clear-packages && npm run update-libs",
"update-libs": "bash scripts/update-libs.sh",
"clear-packages": "rm -rf node_modules && rm package-lock.json && npm install",
"push-build": "bash scripts/push-build.sh",
"generate-docs": "npx typedoc src --plugin typedoc-github-theme"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/howler": "^2.2.12",
"@types/node": "^25.3.3",
"@types/three": "^0.183.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"electron": "40.6.1",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"howler": "^2.2.4",
"jiti": "^2.6.1",
"nodemon": "^3.1.14",
"three": "^0.183.2",
"typedoc": "^0.28.17",
"typedoc-github-theme": "^0.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}