{
  "name": "llm-interceptor",
  "version": "0.3.8",
  "description": "Lightweight LLM interaction interceptor: proxy + Claude Code file tail + MCP, emits compact task records",
  "type": "module",
  "main": "./dist/index.js",
  "bin": {
    "llm-interceptor": "bin/llm-interceptor.js"
  },
  "files": [
    "bin",
    "dist",
    "defaults.json",
    "defaults.example.json",
    "README.md",
    "SETUP.md",
    "WORKFLOW.md"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "prepare": "npm run build",
    "prepack": "npm run build",
    "postinstall": "node ./dist/cli/postinstall.js",
    "typecheck": "tsc --noEmit -p tsconfig.json",
    "proxy": "node --import tsx src/index.ts proxy",
    "mcp": "node --import tsx src/index.ts mcp",
    "mock": "node --import tsx src/index.ts mock-upstream",
    "bench": "node --import tsx src/index.ts bench",
    "collector": "node --import tsx src/index.ts collector",
    "setup": "node --import tsx src/index.ts setup",
    "scenario": "node --import tsx src/index.ts scenario",
    "mcp-smoke": "node --import tsx src/index.ts mcp-smoke",
    "serve": "npm run build && node dist/index.js collector"
  },
  "engines": {
    "node": ">=20"
  },
  "keywords": [
    "mcp",
    "llm",
    "interceptor",
    "observability",
    "claude-code",
    "openrouter"
  ],
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.30.0",
    "pg": "^8.22.0",
    "undici": "^6.21.3",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@types/node": "^26.1.2",
    "@types/pg": "^8.20.4",
    "tsx": "^4.23.5",
    "typescript": "^7.0.2"
  }
}
