-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (51 loc) · 1.79 KB
/
package.json
File metadata and controls
53 lines (51 loc) · 1.79 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "quakeshack",
"version": "1.0.0",
"main": "dedicated.mjs",
"type": "module",
"repository": "https://github.com/chrisnew/quakeshack",
"license": "GPL-2.0-only",
"private": true,
"engines": {
"node": ">=24 <25"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^5.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.19.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-sort-class-members": "^1.21.0",
"eslint-plugin-types": "^1.0.2",
"globals": "^15.14.0",
"typescript": "^5.9.3",
"vite": "^7.1.12"
},
"dependencies": {
"ammojs3": "^0.0.11",
"cannon": "^0.6.2",
"express": "^4.21.2",
"nipplejs": "^0.10.2",
"ws": "^8.18.0"
},
"scripts": {
"test": "node --test test/**/*.test.mjs",
"test:common": "node --test test/common/**/*.test.mjs",
"test:physics": "node --test test/physics/**/*.test.mjs",
"test:renderer": "node --test test/renderer/**/*.test.mjs",
"build:wrangler": "npm run test && npm run build:production",
"dev": "vite build --watch --mode development",
"build": "vite build",
"build:production": "vite build --mode production",
"watch": "vite build --watch",
"lint": "eslint source",
"lint-fix": "eslint --fix source",
"dedicated:dev": "vite build --watch --mode development --config vite.config.dedicated.mjs",
"dedicated:build": "vite build --config vite.config.dedicated.mjs",
"dedicated:build:production": "vite build --config vite.config.dedicated.mjs --mode production",
"dedicated:start": "node ./dedicated.mjs +exec server.cfg",
"dedicated:start:production": "node ./dist/dedicated/dedicated.mjs +exec server.cfg"
}
}