-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1013 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1013 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
40
{
"name": "vexai",
"version": "1.0.0",
"description": "VexAI - Discord AI Admin Assistant Bot",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.19.2",
"@inquirer/prompts": "^7.0.0",
"@napi-rs/canvas": "^0.1.96",
"better-sqlite3": "^12.0.0",
"discord.js": "^14.16.0",
"node-cron": "^3.0.3",
"openai": "^4.70.0",
"pg": "^8.20.0",
"prism-media": "^1.3.5",
"sharp": "^0.33.5",
"sodium-native": "^5.1.0",
"winston": "^3.17.0",
"ws": "^8.20.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.20.0",
"@types/ws": "^8.18.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}