-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.53 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
54
55
56
{
"name": "quakeshack",
"version": "1.2.0",
"main": "dedicated.ts",
"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",
"@types/express": "^5.0.6",
"@types/node": "^24.6.1",
"@types/ws": "^8.18.1",
"@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",
"fallow": "^2.13.3",
"globals": "^15.14.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.1.12"
},
"dependencies": {
"express": "^4.21.2",
"ws": "^8.18.0"
},
"scripts": {
"test": "node --preserve-symlinks --preserve-symlinks-main --import tsx --test test/**/*.test.mjs source/game/**/test/*.test.mjs source/game/**/test/**/*.test.mjs",
"test:engine": "node --preserve-symlinks --preserve-symlinks-main --import tsx --test test/**/*.test.mjs",
"test:game": "node --preserve-symlinks --preserve-symlinks-main --import tsx --test source/game/**/test/*.test.mjs source/game/**/test/**/*.test.mjs",
"test:common": "node --preserve-symlinks --preserve-symlinks-main --import tsx --test test/common/**/*.test.mjs",
"test:physics": "node --preserve-symlinks --preserve-symlinks-main --import tsx --test test/physics/**/*.test.mjs",
"test:renderer": "node --preserve-symlinks --preserve-symlinks-main --import tsx --test test/renderer/**/*.test.mjs",
"typecheck": "tsc -p tsconfig.json",
"typecheck:watch": "tsc -p tsconfig.json --watch --preserveWatchOutput",
"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 --fix source dedicated.ts eslint.config.mjs vite.config.mjs vite.config.dedicated.mjs",
"check": "npm run typecheck && npm run lint",
"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 ./dist/dedicated/dedicated.mjs +exec server.cfg"
}
}