-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1 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
{
"name": "greenbot-discord",
"version": "1.22.2",
"description": "A Discord bot with music, games, and utilities",
"exports": "./src/index.ts",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"db:push": "bunx drizzle-kit push",
"db:studio": "bunx drizzle-kit studio",
"db:generate": "bunx drizzle-kit generate"
},
"engines": {
"node": ">=18.0"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.10.0",
"axios": "^1.16.0",
"colorette": "^2.0.20",
"dayjs": "^1.11.20",
"discord.js": "^14.26.4",
"drizzle-orm": "^0.45.2",
"i18n-iso-countries": "^7.14.0",
"i18next": "^26.0.10",
"lavalink-client": "^2.10.1",
"pg": "^8.20.0",
"pino": "^10.3.1",
"prism-media": "^1.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/bun": "^1.3.13",
"@types/node": "^25.6.2",
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10",
"pino-pretty": "^13.1.3",
"typescript": "^6.0.3"
}
}