@bull-board/api
Version:
A Dashboard server API built on top of bull or bullmq.
73 lines (72 loc) • 1.63 kB
JSON
{
"name": "@bull-board/api",
"version": "8.3.0",
"description": "A Dashboard server API built on top of bull or bullmq.",
"keywords": [
"bull",
"bullmq",
"dashboard",
"monitoring",
"queue",
"redis"
],
"license": "MIT",
"author": "felixmosh",
"repository": {
"type": "git",
"url": "git+https://github.com/felixmosh/bull-board.git",
"directory": "packages/api"
},
"files": [
"dist",
"typings",
"*Adapter.*"
],
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*",
"./typings/*": "./typings/*.d.ts",
"./bullMQAdapter": "./bullMQAdapter.js",
"./bullMQProAdapter": "./bullMQProAdapter.js",
"./bullAdapter": "./bullAdapter.js",
"./baseAdapter": "./baseAdapter.d.ts",
"./constants/statuses": "./dist/constants/statuses.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn clean && tsc",
"clean": "rm -rf dist",
"test": "jest",
"test:coverage": "jest --config jest.config.coverage.js"
},
"dependencies": {
"redis-info": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/redis-info": "^3.0.3",
"@types/supertest": "^2.0.16",
"bull": "^4.16.5",
"bullmq": "^5.80.9",
"ioredis": "^5.11.1",
"jest": "^30.4.2",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11"
},
"peerDependencies": {
"@bull-board/ui": "8.3.0",
"bull": "^4.16.5",
"bullmq": "^5.79.2"
},
"peerDependenciesMeta": {
"bull": {
"optional": true
},
"bullmq": {
"optional": true
}
}
}