-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
93 lines (93 loc) · 3.28 KB
/
package.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@runejs/server",
"version": "1.0.0-alpha.2",
"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",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"build": "rimraf dist && swc ./src -d dist --strip-leading-paths",
"build:watch": "swc ./src -d dist -w --strip-leading-paths",
"test": "jest",
"typecheck": "tsc -p ./ --noEmit"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/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.1",
"@runejs/login-server": "^2.0.0",
"@runejs/store": "^1.0.0-beta.1",
"@runejs/update-server": "^1.3.0",
"bigi": "^1.4.2",
"js-yaml": "^3.14.1",
"json5": "^2.2.2",
"lodash": "^4.17.21",
"quadtree-lib": "^1.0.9",
"rxjs": "^7.5.4",
"source-map-support": "^0.5.19",
"tslib": "^2.3.1",
"uuid": "^3.4.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@runejs/eslint-config": "^1.1.0",
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.2",
"@types/jest": "^29.2.3",
"@types/js-yaml": "^3.12.7",
"@types/json5": "0.0.30",
"@types/lodash": "^4.14.179",
"@types/node": "^16.11.26",
"@types/uuid": "^3.4.10",
"@types/yargs": "^15.0.14",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"chokidar": "^3.5.3",
"concurrently": "^5.3.0",
"eslint": "^8.57.0",
"jest": "^29.3.1",
"mkdirp": "^1.0.4",
"nodemon": "^3.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"eslintConfig": {
"extends": [
"@runejs/eslint-config"
],
"parserOptions": {
"project": "./tsconfig.json"
}
}
}