{
  "name": "@the-forge-flow/pi-verifier",
  "version": "0.0.6",
  "description": "PI extension that runs a verifier subagent to observe and correct builder sessions",
  "keywords": [
    "extension",
    "pi",
    "pi-coding-agent",
    "pi-package",
    "tff",
    "the-forge-flow",
    "verifier"
  ],
  "homepage": "https://github.com/MonsieurBarti/pi-verifier#readme",
  "bugs": {
    "url": "https://github.com/MonsieurBarti/pi-verifier/issues"
  },
  "license": "MIT",
  "author": "The Forge Flow",
  "repository": {
    "type": "git",
    "url": "https://github.com/MonsieurBarti/pi-verifier.git"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@commitlint/cli": "^21.0.0",
    "@commitlint/config-conventional": "^21.0.0",
    "@earendil-works/pi-ai": "latest",
    "@earendil-works/pi-coding-agent": "latest",
    "@earendil-works/pi-tui": "latest",
    "@sinclair/typebox": "^0.34.0",
    "@total-typescript/shoehorn": "^0.1.2",
    "@types/node": "^22.0.0",
    "@vitest/coverage-v8": "^2.1.0",
    "lefthook": "^2.1.6",
    "oxfmt": "latest",
    "oxlint": "latest",
    "typescript": "^5.7.0",
    "vitest": "^2.1.0"
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*",
    "@sinclair/typebox": "*"
  },
  "engines": {
    "node": ">=22.5.0"
  },
  "pi": {
    "extensions": [
      "./dist/index.js"
    ]
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && cp -r src/persona dist/ && cp -r src/prompts dist/",
    "dev": "tsc -p tsconfig.json --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "oxlint . --config oxlint.json",
    "lint:fix": "oxlint . --config oxlint.json --fix",
    "format:check": "oxfmt --check .",
    "format": "oxfmt .",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}