UNPKG

nestjs-temporal-core

Version:

Complete NestJS integration for Temporal.io with auto-discovery, declarative scheduling, enhanced monitoring, and enterprise-ready features

121 lines (120 loc) 3.77 kB
{ "name": "nestjs-temporal-core", "version": "3.0.10", "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" ], "scripts": { "build": "rimraf dist && tsc -p tsconfig.json", "build:watch": "tsc -p tsconfig.json --watch", "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\"", "lint:fix": "eslint \"src/**/*.ts\" --fix", "type-check": "tsc --noEmit", "check-all": "npm run type-check && npm run lint:check && npm run format:check", "fix-all": "npm run format && npm run lint:fix", "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 check-all", "publish:major": "npm version major && npm publish", "publish:minor": "npm version minor && npm publish", "publish:patch": "npm version patch && npm publish", "publish:beta": "npm version prerelease --preid=beta --no-git-tag-version && npm publish --tag beta", "publish:alpha": "npm version prerelease --preid=alpha --no-git-tag-version && npm publish --tag alpha", "release": "npm run build && npm publish", "release:dry": "npm run build && npm publish --dry-run" }, "keywords": [ "nestjs", "temporal", "workflow", "microservices", "orchestration", "scheduling", "auto-discovery", "decorators", "typescript", "monitoring", "cron", "interval", "signal", "query", "activities", "workers", "distributed-systems", "fault-tolerance", "durable-execution" ], "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", "@temporalio/common": "^1.12.0", "@temporalio/worker": "^1.12.0", "@temporalio/workflow": "^1.12.0", "reflect-metadata": "^0.2.2", "rxjs": "^7.8.0" }, "peerDependenciesMeta": { "@temporalio/common": { "optional": false } }, "devDependencies": { "@eslint/js": "^9.30.1", "@nestjs/common": "^11.1.3", "@nestjs/core": "^11.1.3", "@nestjs/testing": "^11.1.3", "@temporalio/client": "^1.12.0", "@temporalio/common": "^1.12.0", "@temporalio/worker": "^1.12.0", "@temporalio/workflow": "^1.12.0", "@types/jest": "^30.0.0", "@types/ms": "^2.1.0", "@types/node": "^24.0.10", "@types/reflect-metadata": "^0.1.0", "@typescript-eslint/eslint-plugin": "^8.35.1", "@typescript-eslint/parser": "^8.35.1", "eslint": "^9.30.1", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.5.1", "globals": "^16.3.0", "husky": "^9.1.7", "jest": "^30.0.4", "prettier": "^3.6.2", "rimraf": "^6.0.1", "ts-jest": "^29.4.0", "typescript": "^5.8.3" }, "engines": { "node": ">=16.0.0", "npm": ">=8.0.0" }, "publishConfig": { "access": "public" } }