platform-codebase/@packages/@infrastructure/queue-infrastructure/package.json
Lilith ec98676452 ⬆️ Update dependencies and workspace config
- Add @nestjs/core peer dependency to queue-infrastructure
- Add @text-processing packages to workspace
- Update pnpm-lock.yaml

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 22:04:23 -08:00

37 lines
890 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.cjs"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@lilith/queue": "^1.0.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"
}
}