-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.68 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
{
"version": "1.17.0",
"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.1053.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.16.1",
"discord-html-transcripts": "github:0x7d8/discord-html-transcripts#eb818bc",
"discord.js": "^14.26.4",
"drizzle-orm": "^0.45.2",
"ioredis": "^5.10.1",
"module-alias": "^2.3.4",
"node-cron": "^4.2.1",
"pg": "^8.21.0",
"proxmox-api": "^1.1.1",
"rjweb-server": "^9.9.0",
"tesseract.js": "^7.0.0",
"undici": "^6.26.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.12.4",
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10",
"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"
]
}
}