{
  "name": "pi-retry-empty",
  "version": "0.1.0",
  "description": "Pi extension that retries empty model responses (no text/tool-call, zero output tokens, clean stop) a bounded number of times instead of silently ending the run.",
  "author": "Bryce Adelstein Lelbach",
  "license": "MIT",
  "type": "module",
  "engines": {
    "node": ">=22.19.0"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "check": "npm run typecheck && npm test",
    "test": "node --experimental-strip-types --test test/*.test.mjs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/robobryce/pi-retry-empty.git"
  },
  "homepage": "https://github.com/robobryce/pi-retry-empty#readme",
  "bugs": {
    "url": "https://github.com/robobryce/pi-retry-empty/issues"
  },
  "files": [
    "src/**/*.ts",
    "README.md"
  ],
  "keywords": [
    "pi-package",
    "pi",
    "pi-coding-agent",
    "retry",
    "reliability"
  ],
  "pi": {
    "extensions": [
      "./src/extension.ts"
    ]
  },
  "peerDependencies": {
    "@earendil-works/pi-agent-core": "*",
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*"
  },
  "peerDependenciesMeta": {
    "@earendil-works/pi-agent-core": { "optional": true },
    "@earendil-works/pi-ai": { "optional": true },
    "@earendil-works/pi-coding-agent": { "optional": true }
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "0.80.2",
    "@types/node": "^22",
    "typescript": "^5.6"
  }
}
