{
  "name": "pi-repeat-tool-guard",
  "version": "0.1.0",
  "description": "Pi extension that appends system reminders to repeated tool call results.",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/Kingwl/pi-repeat-tool-guard.git"
  },
  "homepage": "https://github.com/Kingwl/pi-repeat-tool-guard#readme",
  "bugs": {
    "url": "https://github.com/Kingwl/pi-repeat-tool-guard/issues"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      },
      "default": "./dist/index.js"
    }
  },
  "keywords": [
    "pi-package",
    "pi-extension",
    "tool-call",
    "guardrails"
  ],
  "license": "MIT",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "engines": {
    "node": "^20.19.0 || >=22.12.0"
  },
  "pi": {
    "extensions": [
      "./src/index.ts"
    ]
  },
  "scripts": {
    "build": "rslib build",
    "check": "npm run typecheck && npm test && npm run test:dist",
    "prepack": "npm run build",
    "test": "rstest",
    "test:dist": "npm run build && node --test test/dist-compat.test.mjs",
    "typecheck": "tsc --noEmit"
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "0.79.0",
    "@rstest/core": "0.10.3",
    "@rslib/core": "0.22.0",
    "@types/node": "24.13.1",
    "typescript": "6.0.3"
  }
}
