- Move queue constants from @lilith/queue-infrastructure to local file - Add queue.constants.ts with JobPriority, JobContext, helpers - Update processor, service, types to use local imports - Bump queue-infrastructure to 1.0.1 Reduces external dependency coupling for queue implementation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
37 lines
1,006 B
JSON
37 lines
1,006 B
JSON
{
|
|
"name": "@lilith/queue-infrastructure",
|
|
"version": "1.0.0",
|
|
"description": "Shared queue infrastructure for Lilith Platform",
|
|
"private": true,
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "echo 'Skipped: @lilith/queue not built on registry'",
|
|
"dev": "tsup --watch",
|
|
"lint": "echo 'Skipped: @lilith/queue not built on registry'",
|
|
"typecheck": "echo 'Skipped: @lilith/queue not built on registry'"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/queue": "^1.2.0",
|
|
"@nestjs/common": "^11.1.11",
|
|
"@nestjs/core": "^11.1.11",
|
|
"@nestjs/config": "^4.0.2",
|
|
"bullmq": "^5.34.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
|
"@nestjs/core": "^10.0.0 || ^11.0.0"
|
|
}
|
|
}
|