{
  "name": "@raindrop-ai/claude-code",
  "version": "0.0.18",
  "description": "Raindrop observability for Claude Code CLI — automatic session, tool call, and prompt tracing via hooks",
  "license": "MIT",
  "homepage": "https://www.raindrop.ai/docs/integrations/claude-code/",
  "bugs": {
    "url": "https://www.raindrop.ai/docs/support/"
  },
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "raindrop-claude-code": "dist/cli.js"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "sideEffects": false,
  "files": [
    "dist/**",
    "README.md",
    ".claude-plugin/**",
    "hooks/**",
    ".mcp.json"
  ],
  "keywords": [
    "raindrop",
    "claude-code",
    "claude",
    "anthropic",
    "observability",
    "tracing",
    "hooks",
    "cli"
  ],
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@types/node": "^20.11.17",
    "msw": "^2.12.7",
    "tsup": "^8.4.0",
    "typescript": "^5.3.3",
    "vitest": "^2.1.0",
    "@raindrop-ai/core": "0.0.5"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "postbuild": "chmod +x ./dist/cli.js",
    "dev": "tsup --watch",
    "clean": "rm -rf dist",
    "test": "pnpm build && cd tests && pnpm test",
    "test:watch": "cd tests && pnpm test:watch"
  }
}