-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.14 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@runejs/server",
"version": "1.0.0-alpha.3",
"description": "A RuneScape game server emulator written in TypeScript.",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && concurrently \"npm run build:watch\" \"npm run start:infra\" \"npm run start:game\"",
"start:game": "nodemon --delay 5000ms --max-old-space-size=2048 dist/server/runner.js -- -game",
"start:game:dev": "npm run build && concurrently \"npm run build:watch\" \"npm run start:game\"",
"start:login": "node --max-old-space-size=1024 dist/server/runner.js -- -login",
"start:update": "node --max-old-space-size=1024 dist/server/runner.js -- -update",
"start:infra": "concurrently \"npm run start:update\" \"npm run start:login\"",
"start:standalone": "concurrently \"npm run start:infra\" \"npm run start:game\"",
"game": "npm run start:game",
"game:dev": "npm run start:game:dev",
"login": "npm run start:login",
"update": "npm run start:update",
"infra": "npm run start:infra",
"standalone": "npm run start:standalone",
"build": "rimraf dist && swc ./src -d dist --strip-leading-paths",
"build:watch": "swc ./src -d dist -w --strip-leading-paths",
"lint": "biome lint",
"lint:fin": "biome lint --write --diagnostic-level=error --reporter=summary",
"lint:fix": "biome lint --write",
"format": "biome format",
"format:fin": "biome format --write --reporter=summary",
"format:fix": "biome format --write",
"fin": "npm run typecheck && npm run lint:fin && npm run format:fin && npm run test:fin",
"test": "jest",
"test:fin": "jest --silent --reporters=\"summary\"",
"typecheck": "tsc -p ./ --noEmit"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/runejs/server.git"
},
"keywords": ["runejs", "runescape", "typescript", "game server", "game engine"],
"author": "Tynarus",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/runejs/server/issues"
},
"homepage": "https://github.com/runejs/server#readme",
"dependencies": {
"@runejs/common": "2.0.2-beta.3",
"@runejs/filestore": "0.17.0",
"@runejs/login-server": "2.1.0",
"@runejs/update-server": "1.4.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"quadtree-lib": "^1.0.9",
"rxjs": "^7.8.1",
"source-map-support": "^0.5.21",
"tslib": "^2.8.1",
"uuid": "^11.0.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.9",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.8",
"@types/uuid": "^10.0.0",
"chokidar": "^4.0.3",
"concurrently": "^9.1.2",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
}
}