forked from randy-girard/spawn-timer-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 858 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 858 Bytes
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
{
"name": "spawn-timer-bot",
"version": "1.0.0",
"description": "Discord bot for tracking NPC spawn timers",
"main": "dist/bot.js",
"scripts": {
"postinstall": "prisma generate",
"build": "prisma generate && tsc",
"start": "node dist/bot.js",
"dev": "tsx src/bot.ts",
"test": "vitest run",
"test:watch": "vitest",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"deploy-commands": "tsx src/deploy-commands.ts"
},
"dependencies": {
"@prisma/client": "^6.0.0",
"chrono-node": "^2.7.0",
"discord.js": "^14.16.0",
"dotenv": "^16.4.0",
"ms": "^2.1.3",
"parse-duration": "^1.1.0"
},
"devDependencies": {
"@types/ms": "^2.1.0",
"@types/node": "^22.0.0",
"prisma": "^6.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}