{
  "name": "@fabric-harness/temporal",
  "version": "2.1.1",
  "description": "Temporal.io durable workflow runtime adapter for Fabric Harness.",
  "license": "Apache-2.0",
  "author": "Fabric",
  "homepage": "https://github.com/Fabric-Pro/fabric-harness#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/Fabric-Pro/fabric-harness.git",
    "directory": "packages/temporal"
  },
  "bugs": {
    "url": "https://github.com/Fabric-Pro/fabric-harness/issues"
  },
  "keywords": [
    "agents",
    "ai",
    "fabric-harness",
    "temporal",
    "durable-execution",
    "workflows"
  ],
  "type": "module",
  "sideEffects": false,
  "engines": {
    "node": ">=20.18.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public",
    "provenance": false
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./agent": {
      "types": "./dist/agent.d.ts",
      "import": "./dist/agent.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "NOTICE"
  ],
  "dependencies": {
    "@fabric-harness/sdk": "^5.0.0",
    "@temporalio/client": "^1.17.0",
    "@temporalio/worker": "^1.17.0",
    "@temporalio/workflow": "^1.17.0"
  },
  "devDependencies": {
    "vitest": "^4.1.5"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "check": "tsc -b tsconfig.json",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}