{
  "name": "pi-mock",
  "version": "1.0.0",
  "description": "Integration testing harness for pi extensions. Mock Anthropic API, network isolation via Docker, RPC control, CLI interface.",
  "keywords": [
    "pi",
    "pi-package",
    "testing",
    "mock",
    "integration-test",
    "extension"
  ],
  "author": "sshkeda",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sshkeda/pi-mock.git"
  },
  "homepage": "https://github.com/sshkeda/pi-mock#readme",
  "bugs": {
    "url": "https://github.com/sshkeda/pi-mock/issues"
  },
  "engines": {
    "node": ">=18"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "pi-mock": "dist/cli.js"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "src",
    "Dockerfile",
    "docker-entrypoint.sh",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc",
    "test": "npm run build && node test/test-providers.mjs && node test/test-network.mjs && node test/test-replay.mjs && node test/test-cli.mjs && node test/test-e2e.mjs && node test/test-issues.mjs && node test/test-steer.mjs",
    "test:e2e": "node test/test-e2e.mjs",
    "test:issues": "node test/test-issues.mjs",
    "prepublishOnly": "npm run build"
  },
  "peerDependencies": {
    "@mariozechner/pi-coding-agent": ">=0.62.0"
  },
  "peerDependenciesMeta": {
    "@mariozechner/pi-coding-agent": {
      "optional": true
    }
  },
  "devDependencies": {
    "typescript": "^5.0.0",
    "@types/node": "^22.0.0"
  }
}
