-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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": "tgobot",
"main": "dist/src/bot.js",
"source": "src/bot.ts",
"repository": "https://github.com/tgoHQ/tgobot",
"packageManager": "pnpm@10.24.0",
"scripts": {
"dev": "tsc && node .",
"build": "tsc",
"start": "node .",
"check": "pnpm format && pnpm types",
"types": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:studio": "drizzle-kit studio",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@openbeta/sandbag": "^0.0.51",
"@sapphire/framework": "^5.4.0",
"@sapphire/utilities": "^3.18.2",
"@types/node-cron": "^3.0.11",
"discord.js": "^14.25.1",
"drizzle-kit": "^0.31.7",
"drizzle-orm": "^0.44.7",
"glob": "^13.0.0",
"humanize-duration": "^3.33.1",
"node-cron": "^4.2.1",
"openai": "^6.9.1",
"parse-duration": "^2.1.4",
"postgres": "^3.4.7",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/humanize-duration": "^3.27.4",
"@types/node": "^24.10.1",
"dotenv": "^17.2.3",
"prettier": "^3.7.3",
"typescript": "^5.9.3"
},
"type": "module"
}