-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 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
40
41
42
{
"name": "allcom-bot",
"version": "2.8.2",
"description": "Allcom Discord bot with modular architecture",
"private": true,
"type": "module",
"main": "src/bot.ts",
"scripts": {
"dev": "bun --watch src/bot.ts",
"test": "USE_TEMP_DATABASE=true bun test",
"test:watch": "bun test --watch",
"ts": "tsgo --noEmit",
"lint": "oxlint --type-aware"
},
"dependencies": {
"@discordjs/builders": "^2.0.0-pr-11006.1765452229-e636950b2",
"@discordjs/formatters": "^1.0.0-pr-11006.1765452229-e636950b2",
"@discordjs/voice": "^0.19.2",
"@orpc/client": "^1.13.14",
"@orpc/server": "^1.13.14",
"discord.js": "dev",
"dotenv": "^17.4.2",
"execa": "^9.6.1",
"ffmpeg-static": "^5.3.0",
"glob": "^13.0.6",
"livekit-server-sdk": "^2.15.1",
"openai": "^6.34.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@faker-js/faker": "^10.4.0",
"@snazzah/davey": "^0.1.11",
"@types/bun": "^1.3.12",
"@types/node": "^25.6.0",
"@typescript/native-preview": "latest",
"oxlint": "^1.61.0",
"oxlint-tsgolint": "^0.21.1"
},
"engines": {
"node": ">=18.0.0"
}
}