platform-codebase/@packages/@infrastructure/domain-events/package.json

40 lines
1 KiB
JSON

{
"name": "@lilith/domain-events",
"version": "1.0.0",
"description": "Domain event types and emitter for cross-feature event-driven communication",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js"
},
"./emitter": {
"types": "./dist/emitter/index.d.ts",
"import": "./dist/emitter/index.js"
},
"./nestjs": {
"types": "./dist/domain-events.module.d.ts",
"import": "./dist/domain-events.module.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src"
},
"dependencies": {
"@nestjs/bullmq": "^10.0.0",
"@nestjs/common": "^10.0.0 || ^11.0.0",
"bullmq": "^5.0.0"
},
"peerDependencies": {
"reflect-metadata": ">=0.1.0"
}
}