{
  "name": "privateer-workflow",
  "version": "0.1.0",
  "description": "Declarative, routed multi-agent workflows for Pi — a Microsoft-agentic-workflow-style YAML grammar (typed steps, conditional routes, parallel/for_each fan-out, human gates, sub-workflows) run by a decoupled, fail-closed state machine with a sandboxed template/expression engine.",
  "type": "module",
  "license": "MIT",
  "author": "Patrick (zahnno)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/privateer-agent/privateer-workflow.git"
  },
  "homepage": "https://github.com/privateer-agent/privateer-workflow",
  "keywords": [
    "pi-package",
    "pi",
    "pi-extension",
    "workflow",
    "agentic-workflow",
    "multi-agent",
    "orchestration",
    "declarative",
    "yaml",
    "state-machine",
    "fan-out"
  ],
  "pi": {
    "extensions": [
      "./extensions"
    ]
  },
  "exports": {
    ".": "./src/index.ts",
    "./schema": "./src/schema.ts",
    "./runner": "./src/runner.ts",
    "./expr": "./src/expr.ts",
    "./store": "./src/store.ts",
    "./yaml": "./src/yaml.ts",
    "./pi-runner": "./src/piRunner.ts",
    "./extension": "./src/extension.ts"
  },
  "files": [
    "src",
    "extensions",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "typecheck": "tsc --noEmit",
    "test": "for f in tests/*.test.ts; do node --import tsx --test \"$f\" || exit 1; done"
  },
  "engines": {
    "node": ">=22.19.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": ">=0.80.0",
    "@earendil-works/pi-ai": ">=0.80.0"
  },
  "peerDependenciesMeta": {
    "@earendil-works/pi-coding-agent": {
      "optional": true
    },
    "@earendil-works/pi-ai": {
      "optional": true
    }
  },
  "dependencies": {
    "yaml": "^2.5.0",
    "zod": "^4.0.16"
  },
  "devDependencies": {
    "@types/node": "^20.14.0",
    "tsx": "^4.16.0",
    "typescript": "^5.5.0"
  }
}
