- Updated package dependencies to include `@sentry/node` for error tracking. - Refactored command routing to incorporate user and guild blacklisting checks, improving command execution safety. - Enhanced health server metrics to include queue waiting times, providing better insights into system performance. - Introduced confirmation handling for guild backup commands, streamlining user interactions. - Improved moderation commands with better error handling and case management, ensuring robust moderation capabilities. - Added new duration parsing functions to handle timeout durations effectively, enhancing moderation features. - Updated localization files to reflect new command structures and user guidance improvements.
33 lines
889 B
JSON
33 lines
889 B
JSON
{
|
|
"name": "@nexumi/bot",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"dev": "tsx watch src/index.ts",
|
|
"lint": "eslint src --ext .ts",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
"prisma:generate": "prisma generate --schema=prisma/schema.prisma",
|
|
"prisma:migrate": "prisma migrate deploy --schema=prisma/schema.prisma",
|
|
"profile:banner": "tsx scripts/set-bot-banner.ts"
|
|
},
|
|
"dependencies": {
|
|
"@napi-rs/canvas": "^0.1.65",
|
|
"@nexumi/shared": "workspace:*",
|
|
"@prisma/client": "^5.22.0",
|
|
"@sentry/node": "^10.67.0",
|
|
"bullmq": "^5.34.0",
|
|
"discord.js": "^14.17.3",
|
|
"dotenv": "^16.4.7",
|
|
"ioredis": "^5.4.2",
|
|
"pino": "^9.6.0",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"prisma": "^5.22.0",
|
|
"tsx": "^4.19.2"
|
|
}
|
|
}
|