-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 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
43
44
{
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.17.0",
"scripts": {
"start": "pnpm tsx src/index.ts",
"lint": "pnpm biome check --write",
"build": "tsc && pnpm sentry:sourcemaps",
"dev": "npx nodemon --exec \"npx tsx\" src/bot.ts",
"slash": "pnpm tsx src/deploy.ts",
"singleslash": "pnpm tsx src/deploy.ts single",
"prod": "node dist/index.js",
"generate-api-types": "npx openapi-typescript \"./src/api/swagger.json\" -o \"./src/api/api.d.ts\"",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org kaeso --project bot ./dist && sentry-cli sourcemaps upload --org kaeso --project bot ./dist"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/amqplib": "^0.10.8",
"@types/node": "^24.9.1",
"dotenv": "^17.2.3",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@date-fns/utc": "^2.1.1",
"@napi-rs/canvas": "^0.1.80",
"@sentry/cli": "^2.57.0",
"@sentry/node": "^10.22.0",
"@sentry/profiling-node": "^10.22.0",
"bufferutil": "^4.0.9",
"cron": "^3.5.0",
"date-fns": "^4.1.0",
"discord.js": "^14.24.0",
"farming-weight": "^0.14.0",
"openapi-fetch": "^0.14.1",
"redis": "^5.9.0",
"utf-8-validate": "^6.0.5",
"zlib-sync": "^0.1.10",
"zod": "^4.1.12"
}
}