{
  "name": "pi-agent-workflows",
  "version": "0.1.2",
  "description": "Pi workflow extension for orchestrating recursive subagents with inter-agent communication, write locking, cost accounting, and a workflow TUI.",
  "type": "module",
  "private": false,
  "license": "MIT",
  "author": "Ananth",
  "keywords": [
    "pi-package",
    "pi-extension",
    "workflow-agents",
    "subagents",
    "coding-agent"
  ],
  "homepage": "https://github.com/an2tha/pi-workflows#readme",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/an2tha/pi-workflows.git"
  },
  "bugs": {
    "url": "https://github.com/an2tha/pi-workflows/issues"
  },
  "exports": {
    ".": "./index.ts",
    "./package.json": "./package.json"
  },
  "main": "./index.ts",
  "types": "./index.ts",
  "files": [
    "index.ts",
    "src/**/*.ts",
    "skills/**/*",
    "README.md",
    "LICENSE"
  ],
  "pi": {
    "extensions": [
      "./index.ts"
    ],
    "skills": [
      "./skills"
    ]
  },
  "scripts": {
    "test": "bun test",
    "typecheck": "bunx tsc --noEmit",
    "check": "bun test && bunx tsc --noEmit",
    "pack:dry": "npm pack --dry-run",
    "prepublishOnly": "bun test && bunx tsc --noEmit"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*",
    "typebox": "*",
    "typescript": "^5"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "^0.80.2",
    "@earendil-works/pi-tui": "^0.80.2",
    "@types/bun": "latest",
    "typebox": "^1.3.1",
    "typescript": "^5"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22.19.0"
  }
}
