This repository was archived by the owner on Oct 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.35 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
{
"name": "2004scape",
"version": "1.0.0",
"type": "module",
"imports": {
"#3rdparty/*": "./src/3rdparty/*",
"#/*": "./src/*",
"#tools/*": "./tools/*"
},
"scripts": {
"build": "tsx tools/pack/Build.ts",
"clean": "tsx tools/pack/Clean.ts",
"db:migrate": "prisma migrate deploy --schema prisma/multiworld/schema.prisma",
"db:reset": "prisma migrate reset --force --schema prisma/multiworld/schema.prisma",
"db:schema": "prisma migrate dev --schema prisma/multiworld/schema.prisma",
"dev": "tsx watch --clear-screen=false --include \"src/*\" src/app.ts",
"friend": "tsx src/friend.ts",
"lint": "eslint --no-warn-ignored src tools",
"lint:staged": "eslint --no-warn-ignored",
"logger": "tsx src/logger.ts",
"login": "tsx src/login.ts",
"precommit": "prettier . --write && eslint src --fix",
"prepare": "husky",
"quickstart": "tsx src/app.ts",
"setup": "tsx tools/server/setup.ts",
"sqlite:migrate": "prisma migrate deploy --schema prisma/singleworld/schema.prisma",
"sqlite:reset": "prisma migrate reset --force --schema prisma/singleworld/schema.prisma",
"sqlite:schema": "prisma migrate dev --schema prisma/singleworld/schema.prisma",
"start": "npm i && tsx src/app.ts"
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint:staged"
]
},
"dependencies": {
"@2004scape/rsbuf": "^225.1.7",
"@2004scape/rsmod-pathfinder": "^5.0.4",
"@inquirer/prompts": "^7.2.3",
"@jimp/js-png": "^1.6.0",
"@jimp/plugin-quantize": "^1.6.0",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"better-sqlite3": "^12.4.1",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"jimp": "^1.6.0",
"kleur": "^4.1.5",
"kysely": "^0.27.6",
"mysql2": "^3.12.0",
"node-forge": "^1.3.1",
"prom-client": "^15.1.3",
"tsx": "^4.20.6",
"ws": "^8.18.2"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/bcrypt": "^5.0.2",
"@types/better-sqlite3": "^7.6.13",
"@types/ejs": "^3.1.5",
"@types/node": "^22.10.2",
"@types/node-forge": "^1.3.11",
"@types/ws": "^8.18.1",
"eslint": "^9.27.0",
"globals": "^16.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"prisma": "^6.1.0",
"prisma-kysely": "^1.8.0",
"typescript-eslint": "^8.32.1"
},
"peerDependencies": {
"typescript": "^5"
}
}