nestjs-temporal-core
Version:
Complete NestJS integration for Temporal.io with auto-discovery, declarative scheduling, enhanced monitoring, and enterprise-ready features
145 lines (144 loc) • 4.53 kB
JSON
{
"name": "nestjs-temporal-core",
"version": "3.2.0",
"description": "Complete NestJS integration for Temporal.io with auto-discovery, declarative scheduling, enhanced monitoring, and enterprise-ready features",
"author": "Harsh M",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/harsh-simform/nestjs-temporal-core.git"
},
"bugs": {
"url": "https://github.com/harsh-simform/nestjs-temporal-core/issues"
},
"homepage": "https://github.com/harsh-simform/nestjs-temporal-core#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
"docs/README.md",
"jsdoc.json"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"fix-all": "npm run format && npm run lint",
"update:packages": "npx npm-check-updates -u",
"prepare": "husky",
"version": "npm run fix-all && git add -A src",
"postversion": "git push && git push --tags",
"clean": "rimraf dist",
"prebuild": "npm run clean && npm run fix-all",
"publish:major": "npm version major && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"release": "npm run build && npm publish",
"release:dry": "npm run build && npm publish --dry-run",
"test": "jest --coverage --passWithNoTests --forceExit",
"test:unit": "jest --testPathPatterns=test/unit --testPathIgnorePatterns=test/performance --coverage --passWithNoTests --forceExit",
"test:integration": "jest --testPathPatterns=test/integration --coverage --passWithNoTests --forceExit",
"test:ci": "npm run test:unit && npm run test:integration",
"make-badges": "istanbul-badges-readme",
"docs:generate": "typedoc src --out docs --excludePrivate --excludeProtected",
"docs:serve": "npx http-server docs -p 3001 -o",
"docs:clean": "rimraf docs"
},
"keywords": [
"nestjs",
"temporal",
"temporal.io",
"temporalio",
"workflow",
"workflow-engine",
"workflow-orchestration",
"microservices",
"orchestration",
"scheduling",
"auto-discovery",
"decorators",
"typescript",
"typescript-temporal",
"nestjs-integration",
"nestjs-module",
"monitoring",
"cron",
"interval",
"signal",
"query",
"activities",
"workers",
"distributed-systems",
"fault-tolerance",
"durable-execution",
"saga-pattern",
"event-driven",
"temporal-sdk"
],
"dependencies": {
"ms": "^2.1.3"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0 || ^11.0.0",
"@temporalio/client": "^1.12.0 || ^1.13.0",
"@temporalio/common": "^1.12.0 || ^1.13.0",
"@temporalio/worker": "^1.12.0 || ^1.13.0",
"@temporalio/workflow": "^1.12.0 || ^1.13.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0"
},
"peerDependenciesMeta": {
"@temporalio/common": {
"optional": false
}
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@nestjs/common": "^11.1.9",
"@nestjs/core": "^11.1.9",
"@nestjs/testing": "^11.1.9",
"@swc/core": "^1.15.3",
"@swc/jest": "^0.2.39",
"@temporalio/client": "^1.13.2",
"@temporalio/common": "^1.13.2",
"@temporalio/worker": "^1.13.2",
"@temporalio/workflow": "^1.13.2",
"@types/jest": "^30.0.0",
"@types/ms": "^2.1.0",
"@types/node": "^24.10.1",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"benchmark": "^2.1.4",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"istanbul-badges-readme": "^1.9.0",
"jest": "^30.2.0",
"jsdoc": "^4.0.5",
"jsdoc-to-markdown": "^9.1.3",
"jsdoc-tsimport-plugin": "^1.0.5",
"nodemon": "^3.1.11",
"prettier": "^3.7.1",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.5",
"typedoc": "^0.28.14",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public"
}
}