forked from godagoo/claude-telegram-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 716 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 716 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
{
"name": "claude-telegram-relay",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "bun run src/relay.ts",
"dev": "bun run --watch src/relay.ts",
"setup": "bun run setup/install.ts",
"test:telegram": "bun run setup/test-telegram.ts",
"test:supabase": "bun run setup/test-supabase.ts",
"test:voice": "bun run setup/test-voice.ts",
"setup:launchd": "bun run setup/configure-launchd.ts",
"setup:services": "bun run setup/configure-services.ts",
"setup:verify": "bun run setup/verify.ts"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.0",
"grammy": "^1.21.1",
"groq-sdk": "^0.8.0"
},
"devDependencies": {
"@types/bun": "latest"
}
}