-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 771 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 771 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
{
"name": "commandarr",
"version": "1.0.1",
"description": "The AI brain for your media stack",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"build": "bun run build:web && bun build src/index.ts --outdir dist --target bun",
"build:web": "cd web && bun run build",
"start": "bun run src/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"croner": "^8.0.0",
"discord.js": "^14.25.1",
"drizzle-orm": "^0.31.0",
"grammy": "^1.25.0",
"hono": "^4.4.0",
"nanoid": "^5.0.7",
"yaml": "^2.8.3",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"drizzle-kit": "^0.22.0",
"typescript": "^5.5.0"
}
}