-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "idlerpg",
"version": "3.0.0",
"private": true,
"license": "MIT",
"description": "IdleRPG bot + dashboard — inspired by the original IdleRPG (http://idlerpg.net) for IRC networks",
"type": "module",
"scripts": {
"start": "tsx src/irc/bot.ts",
"start:watchdog": "powershell -ExecutionPolicy Bypass -File ./scripts/idlerpg-watchdog.ps1",
"dev:bot": "tsx watch src/irc/bot.ts",
"dev:api": "tsx watch src/api/server.ts",
"bot": "tsx src/irc/bot.ts",
"api": "tsx src/api/server.ts",
"build": "tsc",
"test": "tsx --test test/**/*.test.ts"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.7.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"irc-framework": "^4.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.9.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}