2026-01-02 20:48:09 -08:00
|
|
|
{
|
2026-01-16 20:42:52 -08:00
|
|
|
"name": "@lilith/queue-cli",
|
2026-01-02 20:48:09 -08:00
|
|
|
"version": "0.1.0",
|
|
|
|
|
"description": "CLI tools for managing BullMQ queues",
|
2026-01-16 15:18:12 -08:00
|
|
|
"type": "module",
|
2026-01-02 20:48:09 -08:00
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"bin": {
|
|
|
|
|
"queue-status": "dist/bin/queue-status.js",
|
|
|
|
|
"queue-list": "dist/bin/queue-list.js",
|
|
|
|
|
"queue-clear": "dist/bin/queue-clear.js",
|
|
|
|
|
"queue-control": "dist/bin/queue-control.js"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
2026-01-29 08:35:29 -08:00
|
|
|
"prepublishOnly": "bun run build"
|
2026-01-02 20:48:09 -08:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-01-10 21:47:51 -08:00
|
|
|
"bullmq": "^5.66.4",
|
2026-01-16 15:18:12 -08:00
|
|
|
"commander": "^12.1.0"
|
2026-01-02 20:48:09 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-10 21:47:51 -08:00
|
|
|
"@types/node": "^22.19.5",
|
|
|
|
|
"typescript": "^5.9.3"
|
2026-01-02 20:48:09 -08:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
2026-03-08 19:24:18 -07:00
|
|
|
"registry": "http://forge.black.local/api/packages/lilith/npm/"
|
2026-01-02 20:48:09 -08:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
]
|
|
|
|
|
}
|