{
  "name": "pi-autopilot",
  "version": "0.1.2",
  "description": "Autopilot orchestration package for Pi: /autopilot, /autopilot-restart, context budget activation, and child runner wiring.",
  "type": "module",
  "license": "ISC",
  "author": "Ismail Salikhodjaev <ismailsalikhodjaev@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ismailsaleekh/pi-autopilot.git"
  },
  "bugs": {
    "url": "https://github.com/ismailsaleekh/pi-autopilot/issues"
  },
  "homepage": "https://github.com/ismailsaleekh/pi-autopilot#readme",
  "keywords": [
    "pi-package",
    "pi-extension",
    "pi",
    "autopilot",
    "orchestration"
  ],
  "files": [
    "bin/",
    "dist/",
    "extensions/",
    "src/",
    "templates/",
    "README.md",
    "TESTING.md",
    "TEST_PLAN.md",
    "PUBLISHING.md",
    "LICENSE"
  ],
  "bin": {
    "autopilot-agent-run": "bin/autopilot-agent-run.mjs"
  },
  "scripts": {
    "build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit",
    "test:type-safety": "node --experimental-strip-types --test tests/package/type-safety.test.ts",
    "test:unit": "node --experimental-strip-types --test tests/unit/*.test.ts",
    "test:sdk": "node --experimental-strip-types --test tests/sdk/*.test.ts",
    "test:rpc": "node --experimental-strip-types --test tests/rpc/*.test.ts",
    "test:package": "npm run build && node --experimental-strip-types --test tests/package/*.test.ts",
    "test": "npm run typecheck && npm run test:type-safety && npm run test:unit && npm run test:sdk && npm run test:rpc && npm run test:package",
    "prepack": "npm run build",
    "pack:dry-run": "npm pack --dry-run"
  },
  "pi": {
    "extensions": [
      "./extensions/autopilot.ts"
    ]
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "^0.75.5",
    "@types/node": "^24.0.0",
    "tsx": "^4.19.0",
    "typescript": "^5.9.0"
  },
  "engines": {
    "node": ">=22.19.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
