-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"type": "module",
"packageManager": "bun@1.3.8",
"engines": {
"bun": ">=1.3.8",
"node": ">=24"
},
"scripts": {
"start": "bun src/bot.ts",
"dev": "docker run --rm -v \"${PWD}:/app\" -w /app -p 80:80 --network db -t --entrypoint sh oven/bun:1.3.8-alpine -c 'apk add youtube-dl ffmpeg && bun install --frozen-lockfile && bun --watch src/bot.ts'",
"watch": "bun --watch src/bot.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@gitbeaker/node": "^35.6.0",
"@resvg/resvg-js": "^2.6.2",
"axios": "^1.2.2",
"cookie-parser": "^1.4.6",
"cron": "^3.1.6",
"discord.js": "^14.25.1",
"dotenv": "^16.0.0",
"eventsource": "^2.0.2",
"express": "^4.17.3",
"form-data": "^4.0.0",
"ioredis": "^4.28.5",
"mathjs": "^11.5.0",
"mime-types": "^2.1.35",
"pocketbase": "^0.25.0",
"rss-parser": "^3.13.0",
"satori": "^0.26.0",
"socket.io-client": "^4.7.2",
"winston": "^3.17.0",
"winston-loki": "^6.1.3"
},
"devDependencies": {
"@discordjs/rest": "^2.0.1",
"@types/cookie-parser": "^1.4.3",
"@types/eventsource": "^1.1.15",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.10",
"@types/mime-types": "^2.1.1",
"@types/node": "^24.12.0",
"discord-api-types": "^0.30.0",
"typescript": "^5.9.3"
}
}