@queuedash/api
Version:
A stunning, sleek dashboard for Bull, BullMQ, and Bee-Queue
60 lines • 1.64 kB
JSON
{
"name": "@queuedash/api",
"version": "3.6.0",
"description": "A stunning, sleek dashboard for Bull, BullMQ, and Bee-Queue",
"main": "./dist/main.js",
"module": "./dist/main.mjs",
"types": "./dist/src/main.d.ts",
"files": [
"dist"
],
"keywords": [
"bull",
"bee-queue",
"queue",
"bullmq",
"dashboard"
],
"dependencies": {
"@trpc/server": "^11.0.2",
"redis": "^4.7.0",
"redis-info": "^3.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@elysiajs/trpc": "^1.1.0",
"@faker-js/faker": "^9.6.0",
"@hono/trpc-server": "^0.3.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/express": "^5.0.1",
"@types/express-serve-static-core": "^5.0.6",
"@types/node": "^22.14.0",
"@types/redis-info": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"bee-queue": "^1.7.1",
"bull": "^4.16.5",
"bullmq": "^5.47.2",
"elysia": "^1.2.25",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"express": "^5.1.0",
"fastify": "^5.2.2",
"hono": "^4.7.5",
"prettier": "^3.5.3",
"rollup-plugin-typescript-paths": "^1.5.0",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vitest": "^3.1.1"
},
"license": "MIT",
"scripts": {
"build": "tsc && vite build",
"dev": "pnpm run build --watch",
"test": "pnpm run test:bull && pnpm run test:bullmq && pnpm run test:bee",
"test:bull": "QUEUE_TYPE=bull vitest run",
"test:bullmq": "QUEUE_TYPE=bullmq vitest run",
"test:bee": "QUEUE_TYPE=bee vitest run",
"lint": "eslint ./ --fix"
}
}