-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 971 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 971 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
34
35
36
37
38
39
{
"name": "bill-bot",
"packageManager": "pnpm@10.28.2",
"version": "1.0.0",
"description": "Volvox Discord bot - AI chat, welcome messages, and moderation",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"deploy": "node src/deploy-commands.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format . --write"
},
"dependencies": {
"discord.js": "^14.25.1",
"dotenv": "^17.2.4",
"pg": "^8.18.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
},
"pnpm": {
"overrides": {
"undici": ">=6.23.0 <7.0.0"
}
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@vitest/coverage-v8": "^4.0.18",
"vitest": "^4.0.18"
}
}