-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 KB
/
package.json
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": "thrivebot",
"main": "bot.js",
"devDependencies": {
"@flydotio/dockerfile": "^0.5.8",
"@types/bun": "^1.1.6"
},
"peerDependencies": {
"typescript": "^5.4.3"
},
"scripts": {
"start": "bun index.ts",
"start:dev": "fly machine stop && bun --watch index.ts",
"dev": "bun --watch --inspect=ws://localhost:6499/ index.ts",
"dev2": "fly machine stop && bun run dev",
"bun": "bun --watch index.ts",
"deploy": "fly deploy --ha=false",
"fly:start": "fly machine start",
"fly:stop": "fly machine stop",
"deploy:start": "fly deploy --ha=false && fly machine start"
},
"dependencies": {
"@sentry/bun": "^8.20.0",
"@supabase/sentry-js-integration": "^0.2.0",
"@supabase/supabase-js": "^2.44.4",
"@types/node-telegram-bot-api": "^0.64.7",
"@types/pg": "^8.11.6",
"@types/throttle-debounce": "^5.0.2",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.10",
"fluent-ffmpeg": "^2.1.3",
"groq-sdk": "^0.3.3",
"limiter": "^2.1.0",
"natural": "^7.1.0",
"node-telegram-bot-api": "^0.66.0",
"openai": "^4.53.2",
"sqlite-vec": "^0.0.1-alpha.37",
"telegraf": "^4.16.3",
"throttle-debounce": "^5.0.2"
}
}