-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.07 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
37
38
39
{
"name": "cel-thunder",
"version": "1.0.0",
"description": "Cel-shaded WWII air combat in the browser: Three.js client, authoritative Node server, realtime multiplayer, all assets procedural.",
"repository": {
"type": "git",
"url": "git+https://github.com/PauliusOS/cel-thunder.git"
},
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "concurrently -n web,srv -c cyan,magenta \"vite\" \"tsx watch server/index.ts\"",
"web": "vite",
"server": "tsx server/index.ts",
"build": "tsc --noEmit && vite build",
"check": "tsc --noEmit",
"shoot": "node tools/shoot.mjs",
"selftest": "tsx src/shared/flight/selftest.ts && tsx src/shared/combat/selftest.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"three": "^0.185.1",
"ws": "^8.21.1"
},
"devDependencies": {
"@types/three": "^0.185.3",
"@types/ws": "^8.18.1",
"concurrently": "^10.0.4",
"playwright": "^1.62.1",
"tsx": "^4.23.4",
"typescript": "^7.0.2",
"vite": "^8.2.0"
},
"type": "module"
}