nestjs-distributed-workflow
Version:
Distributed Workflow Engine for NestJS Microservices with Saga Pattern
69 lines (68 loc) • 1.55 kB
JSON
{
"name": "nestjs-distributed-workflow",
"version": "0.1.0",
"description": "Distributed Workflow Engine for NestJS Microservices with Saga Pattern",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"require": "./dist/testing/index.js",
"import": "./dist/testing/index.js"
}
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nestjs",
"workflow",
"saga",
"microservices",
"distributed",
"orchestration",
"compensation",
"durable",
"resilient"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/nestjs-distributed-workflow"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0"
},
"dependencies": {
"nanoid": "^3.3.7"
},
"optionalDependencies": {
"@nestjs/axios": "^3.0.1",
"@nestjs/microservices": "^10.3.0",
"@opentelemetry/api": "^1.7.0",
"axios": "^1.6.5",
"ioredis": "^5.3.2",
"pg": "^8.11.3",
"prom-client": "^15.1.0"
},
"devDependencies": {
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.8.1"
}
}