Files
flint/apps/bot/package.json
T
Puechberty Arthur 3063796eb0 feat: introduce web dashboard with multi-bot management
- add Discord OAuth2 authentication
- allow users to register their bots via token
- implement dynamic bot start/stop system
- store bots in database (multi-tenant)
- replace single-bot env setup with scalable architecture
2026-04-18 01:39:12 +02:00

27 lines
681 B
JSON

{
"name": "@saas/bot",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "npm run build -w @saas/shared && tsc -p tsconfig.json && node ./scripts/copyLegacyLocales.mjs",
"typecheck": "npm run build -w @saas/shared && tsc -p tsconfig.json --noEmit",
"start": "node dist/index.js"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.98",
"@saas/shared": "*",
"bullmq": "^5.21.2",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"ioredis": "^5.4.1",
"pg": "^8.13.3",
"pino": "^10.3.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/pg": "^8.11.11"
}
}