{
  "name": "nestjs-temporal-core",
  "version": "3.2.8",
  "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": "jest --coverage --passWithNoTests --forceExit",
    "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": "^10.0.1",
    "@nestjs/common": "^11.1.17",
    "@nestjs/core": "^11.1.17",
    "@nestjs/testing": "^11.1.17",
    "@swc/core": "^1.15.21",
    "@swc/jest": "^0.2.39",
    "@temporalio/client": "^1.15.0",
    "@temporalio/common": "^1.15.0",
    "@temporalio/worker": "^1.15.0",
    "@temporalio/workflow": "^1.15.0",
    "@types/jest": "^30.0.0",
    "@types/ms": "^2.1.0",
    "@types/node": "^25.5.0",
    "@types/reflect-metadata": "^0.1.0",
    "@typescript-eslint/eslint-plugin": "^8.57.2",
    "@typescript-eslint/parser": "^8.57.2",
    "benchmark": "^2.1.4",
    "eslint": "^10.1.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.5",
    "globals": "^17.4.0",
    "husky": "^9.1.7",
    "istanbul-badges-readme": "^1.9.0",
    "jest": "^30.3.0",
    "jest-junit": "^16.0.0",
    "jsdoc": "^4.0.5",
    "jsdoc-to-markdown": "^9.1.3",
    "jsdoc-tsimport-plugin": "^1.0.5",
    "nodemon": "^3.1.14",
    "prettier": "^3.8.1",
    "rimraf": "^6.1.3",
    "ts-jest": "^29.4.6",
    "typedoc": "^0.28.18",
    "typescript": "^5.9.3"
  },
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=8.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
