{
  "name": "@fish59fish/dynamic-workflows",
  "version": "0.1.0",
  "description": "Portable Claude-Code-style dynamic workflows for Pi, Codex, and Claude Code with a resumable CLI runtime, model routing, durable agent I/O, usage accounting, worktree isolation, and live UI.",
  "type": "module",
  "engines": {
    "node": ">=20.11"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "dynworkflow": "./dist/standalone-cli.js"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./standalone": {
      "types": "./dist/standalone.d.ts",
      "import": "./dist/standalone.js"
    }
  },
  "files": [
    ".claude-plugin/",
    "bin/",
    "dist/",
    "extensions/",
    "skills/",
    "src/",
    "docs/standalone-runtime.md",
    "examples/hello.workflow",
    "examples/portable-audit.workflow",
    "assets/readme/",
    "README.md"
  ],
  "scripts": {
    "test": "npm run check && npm run release:check",
    "test:unit": "tsx --test tests/**/*.test.ts",
    "release:check": "npm run build && npm run standalone:types:check && npm run docs:check && npm run context:check && npm run test:unit && npm run release:verify",
    "release:verify": "tsx scripts/check-workflow-release.ts",
    "check": "biome check . && npm run check:scripts",
    "check:scripts": "tsc -p tsconfig.scripts.json",
    "standalone:types:check": "tsx scripts/check-standalone-consumer-types.ts",
    "format": "biome format --write .",
    "lint": "biome lint .",
    "build": "tsc",
    "docs:generate": "tsx scripts/generate-workflow-capabilities.ts",
    "docs:check": "tsx scripts/generate-workflow-capabilities.ts --check",
    "context:generate": "tsx scripts/generate-workflow-context-measurement.ts",
    "context:check": "tsx scripts/generate-workflow-context-measurement.ts --check",
    "guidance:generate": "tsx scripts/generate-workflow-guidance-baseline.ts",
    "guidance:check": "tsx scripts/generate-workflow-guidance-baseline.ts --check",
    "guidance:accept": "tsx scripts/accept-workflow-guidance.ts",
    "comprehension": "tsx scripts/run-workflow-comprehension.ts",
    "delivery-choice": "tsx scripts/run-workflow-delivery-choice.ts",
    "dev": "tsx src/index.ts",
    "workflow": "tsx src/standalone-cli.ts",
    "prepublishOnly": "npm run release:check"
  },
  "keywords": [
    "pi-package",
    "pi",
    "pi-coding-agent",
    "workflow",
    "workflows",
    "dynamic-workflows",
    "orchestration",
    "subagents",
    "multi-agent",
    "workflow-cli",
    "workflow-runtime",
    "workflow-daemon",
    "agents",
    "ai-agents",
    "parallel",
    "fan-out",
    "claude-code",
    "deep-research",
    "code-review",
    "llm"
  ],
  "pi": {
    "extensions": [
      "extensions/workflow.ts"
    ],
    "skills": [
      "skills/workflow-authoring",
      "skills/workflow-patterns"
    ],
    "image": "https://raw.githubusercontent.com/fish0710/dynamic-workflows/main/assets/readme/package-cover.png"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fish0710/dynamic-workflows.git"
  },
  "homepage": "https://github.com/fish0710/dynamic-workflows#readme",
  "bugs": {
    "url": "https://github.com/fish0710/dynamic-workflows/issues"
  },
  "author": "wieimmer (fish0710)",
  "contributors": [
    "QuintinShaw",
    "michaelliv (original author)"
  ],
  "license": "MIT",
  "dependencies": {
    "@types/node": "^25.9.1",
    "acorn": "^8.16.0",
    "typebox": "^1.1.39",
    "yaml": "2.9.0"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": ">=0.80.8",
    "@earendil-works/pi-tui": ">=0.80.6"
  },
  "peerDependenciesMeta": {
    "@earendil-works/pi-coding-agent": {
      "optional": true
    },
    "@earendil-works/pi-tui": {
      "optional": true
    }
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.16",
    "@earendil-works/pi-ai": "latest",
    "@earendil-works/pi-coding-agent": "latest",
    "@earendil-works/pi-tui": "latest",
    "fast-check": "^4.8.0",
    "tsx": "latest",
    "typescript": "latest"
  }
}
