{
  "name": "pi-recurse",
  "version": "0.1.1",
  "description": "Recursive agent extension for Pi — spawn subagents programmatically with depth guardrails",
  "type": "module",
  "author": "Tom X Nguyen",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/monotykamary/pi-recurse.git"
  },
  "homepage": "https://github.com/monotykamary/pi-recurse#readme",
  "bugs": {
    "url": "https://github.com/monotykamary/pi-recurse/issues"
  },
  "keywords": [
    "pi-package",
    "pi",
    "pi-coding-agent",
    "extension",
    "recursion",
    "subagent",
    "parallel",
    "divide-and-conquer"
  ],
  "files": [
    "*.ts",
    "*.js",
    "*.d.ts",
    "lib/**",
    "tests/**",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "lint:dead": "knip --no-gitignore",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "build": "tsc",
    "release": "standard-version",
    "release:dry-run": "standard-version --dry-run",
    "postinstall": "simple-git-hooks 2>/dev/null || true"
  },
  "devDependencies": {
    "@commitlint/cli": "21.0.1",
    "@commitlint/config-conventional": "21.0.1",
    "@types/node": "25.9.1",
    "@vitest/coverage-v8": "4.1.7",
    "knip": "6.14.1",
    "lint-staged": "17.0.5",
    "prettier": "3.8.3",
    "simple-git-hooks": "2.13.1",
    "standard-version": "9.5.0",
    "typescript": "6.0.3",
    "vitest": "4.1.7",
    "@earendil-works/pi-tui": "0.79.4"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": ">=0.74.0",
    "@sinclair/typebox": "0.34.49"
  },
  "pi": {
    "extensions": [
      "./index.ts"
    ],
    "skills": [
      "./skills"
    ]
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged",
    "pre-push": "npm run typecheck && npm run test",
    "commit-msg": "npx commitlint --edit ${1}"
  },
  "lint-staged": {
    "*.{ts,js,json,md}": [
      "prettier --write"
    ]
  },
  "overrides": {
    "brace-expansion": "5.0.6",
    "fast-xml-builder": "1.2.0",
    "protobufjs": "8.4.0",
    "ws": "8.20.1"
  }
}
