- 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.
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "@nexumi/webui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint src --max-warnings=0",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"prisma:generate": "prisma generate --schema=../bot/prisma/schema.prisma"
|
|
},
|
|
"dependencies": {
|
|
"@nexumi/shared": "workspace:^",
|
|
"@prisma/client": "^5.22.0",
|
|
"@radix-ui/react-avatar": "^1.2.3",
|
|
"@radix-ui/react-dialog": "^1.1.20",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.21",
|
|
"@radix-ui/react-label": "^2.1.12",
|
|
"@radix-ui/react-popover": "^1.1.20",
|
|
"@radix-ui/react-select": "^2.3.4",
|
|
"@radix-ui/react-separator": "^1.1.12",
|
|
"@radix-ui/react-slot": "^1.3.0",
|
|
"@radix-ui/react-switch": "^1.3.4",
|
|
"@sentry/node": "^10.67.0",
|
|
"bullmq": "^5.34.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "^1.1.1",
|
|
"dotenv": "^16.4.7",
|
|
"ioredis": "^5.4.2",
|
|
"lucide-react": "^1.25.0",
|
|
"next": "15.5.21",
|
|
"next-themes": "^0.4.6",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"sonner": "^2.0.7",
|
|
"tailwind-merge": "^3.6.0",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.5.21",
|
|
"prisma": "^5.22.0",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5",
|
|
"vitest": "^2.1.8"
|
|
}
|
|
}
|