-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.71 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.71 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
45
46
47
48
49
50
51
52
53
54
{
"version": "1.15.1",
"license": "UNLICENSED",
"scripts": {
"build": "rm -rf lib && esbuild `find src \\( -name '*.ts' -o -name '*.tsx' \\)` --platform='node' --sourcemap --ignore-annotations --format='cjs' --target='es2022' --outdir='lib' && esbuild src/index.ts --platform='node' --sourcemap --ignore-annotations --format='cjs' --target='es2022' --outdir='lib' --banner:js='require(\"module-alias\").addAlias(\"@\", __dirname);'",
"kit": "drizzle-kit",
"lint": "tsc",
"dev": "pnpm build && cd lib && NODE_ENV=development node --no-deprecation --enable-source-maps index && cd .."
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1000.0",
"@rjweb/runtime-node": "^1.1.1",
"@rjweb/sentry": "^2.1.5",
"@rjweb/utils": "^1.12.29",
"@sentry/node": "^7.120.4",
"ansi-colors": "^4.1.3",
"axios": "^1.13.6",
"discord-html-transcripts": "github:0x7d8/discord-html-transcripts#b81d826",
"discord.js": "^14.25.1",
"drizzle-orm": "^0.42.0",
"ioredis": "^5.10.0",
"module-alias": "^2.3.4",
"node-cron": "^3.0.3",
"pg": "^8.19.0",
"proxmox-api": "^1.1.1",
"rjweb-server": "^9.8.6",
"tesseract.js": "^6.0.1",
"undici": "6.21.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.11.0",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.18.0",
"drizzle-kit": "^0.31.9",
"esbuild": "^0.24.2",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"bufferutil": "^4.1.0",
"utf-8-validate": "^6.0.6",
"zlib-sync": "^0.1.10"
},
"pnpm": {
"onlyBuiltDependencies": [
"bufferutil",
"esbuild",
"tesseract.js",
"utf-8-validate",
"zlib-sync",
"discord-html-transcripts"
]
}
}