{
  "name": "pi-subagents-extension",
  "version": "1.0.0",
  "description": "Standalone subagent delegation for Pi — six-part contracts, path-scoped gates, model-class routing with honest fallback, live action feed, hash-only ledger. Zero runtime dependencies. Published as pi-subagents-extension on npm (the plain pi-subagents name is taken by another project).",
  "type": "module",
  "license": "MIT",
  "author": "Clément Garrot <clement.garrot.dev@gmail.com> (https://github.com/cgarrot)",
  "keywords": [
    "pi",
    "pi-package",
    "pi-extension",
    "subagents",
    "delegation",
    "agents",
    "multi-agent",
    "extension"
  ],
  "engines": {
    "node": ">=22"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cgarrot/pi-subagents.git"
  },
  "homepage": "https://github.com/cgarrot/pi-subagents#readme",
  "bugs": {
    "url": "https://github.com/cgarrot/pi-subagents/issues"
  },
  "pi": {
    "extensions": [
      "./index.ts"
    ],
    "skills": [
      "./skills"
    ]
  },
  "files": [
    "src",
    "dist",
    "!dist/test",
    "index.ts",
    "README.md",
    "LICENSE",
    "skills",
    "agents",
    "child"
  ],
  "publishConfig": {
    "access": "public"
  },
  "bin": {
    "subagents": "dist/src/cli/subagents.js"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "test": "npm run build && node scripts/run-tests.mjs",
    "smoke": "node scripts/subagents-smoke.mjs",
    "ci": "npm run build && node scripts/run-tests.mjs && npm run smoke",
    "doctor": "node dist/src/cli/subagents.js doctor",
    "prepublishOnly": "npm test"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "typescript": "^5.6.0"
  }
}
