-
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) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.35 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
{
"name": "go-senior-discord-bot",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"migrate": "bun src/db/migrate.ts",
"check": "tsc --noEmit",
"test": "bun test",
"test:integration": "RUN_INTEGRATION_TESTS=1 bun test tests/integration",
"smoke:provider": "RUN_LIVE_PROVIDER_TEST=1 bun test ./tests/live/provider.live.test.ts",
"smoke:agent": "RUN_LIVE_AGENT_TEST=1 bun test ./tests/live/agent-provider.live.test.ts",
"smoke:embeddings": "RUN_LIVE_EMBEDDING_TEST=1 bun test ./tests/live/embeddings.live.test.ts",
"smoke:firecrawl": "RUN_LIVE_FIRECRAWL_TEST=1 bun test ./tests/live/firecrawl.live.test.ts",
"smoke:voice": "RUN_LIVE_VOICE_TEST=1 bun test ./tests/live/voice.live.test.ts",
"smoke:voice-fallback": "RUN_LIVE_CLOUDFLARE_VOICE_TEST=1 bun test ./tests/live/cloudflare-voice.live.test.ts"
},
"engines": {
"bun": ">=1.3.0"
},
"dependencies": {
"@discordjs/voice": "^0.19.0",
"discord.js": "^14.27.0",
"firecrawl": "^4.31.1",
"ioredis": "^5.11.1",
"opusscript": "^0.1.1",
"pg": "^8.22.0",
"pino": "^10.3.1",
"sharp": "^0.35.3",
"shoukaku": "^4.3.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/pg": "^8.20.0",
"typescript": "^7.0.2"
}
}