{
  "name": "@mastra/temporal",
  "version": "0.3.5",
  "description": "Mastra Temporal workflows integration - run Mastra workflows on the Temporal durable execution platform",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "CHANGELOG.md"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.cjs"
      }
    },
    "./worker": {
      "import": {
        "types": "./dist/worker.d.ts",
        "default": "./dist/worker.js"
      },
      "require": {
        "types": "./dist/worker.d.ts",
        "default": "./dist/worker.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "keywords": [
    "mastra",
    "temporal",
    "workflows",
    "durable-execution"
  ],
  "author": "Mastra",
  "license": "Apache-2.0",
  "dependencies": {
    "@babel/generator": "^8.0.0",
    "@babel/parser": "^8.0.4",
    "@babel/types": "^8.0.4",
    "@temporalio/activity": "^1.20.3",
    "@temporalio/client": "^1.20.3",
    "@temporalio/plugin": "^1.20.3",
    "@temporalio/worker": "^1.20.3",
    "@temporalio/workflow": "^1.20.3",
    "rollup": "^4.61.1",
    "@mastra/deployer": "1.63.0"
  },
  "peerDependencies": {
    "@mastra/core": ">=1.50.0-0 <2.0.0-0",
    "zod": "^3.25.0 || ^4.0.0"
  },
  "devDependencies": {
    "@types/node": "22.20.1",
    "tsdown": "0.22.9",
    "typescript": "^6.0.3",
    "vitest": "4.1.10",
    "webpack": "^5.108.3",
    "zod": "^4.4.3",
    "@internal/types-builder": "0.0.102",
    "@internal/workflow-test-utils": "0.0.30",
    "@internal/lint": "0.0.127",
    "@mastra/core": "1.63.0"
  },
  "homepage": "https://mastra.ai",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mastra-ai/mastra.git",
    "directory": "workflows/temporal"
  },
  "bugs": {
    "url": "https://github.com/mastra-ai/mastra/issues"
  },
  "engines": {
    "node": ">=22.13.0"
  },
  "scripts": {
    "build": "tsdown --silent --config tsdown.config.ts",
    "build:watch": "pnpm build --watch",
    "test": "vitest run --no-isolate --retry=1",
    "test:unit": "vitest run --no-isolate --retry=1 --exclude='src/index.test.ts'",
    "test:integration": "vitest run --no-isolate --retry=1 src/index.test.ts",
    "lint": "oxlint . && eslint .",
    "lint:fix": "eslint . --fix",
    "typecheck": "tsc --noEmit"
  }
}