{
  "name": "claude-remote-protocol",
  "version": "0.3.2",
  "description": "Reverse-engineered TypeScript client for the Claude Code Remote (CCR) WebSocket protocol. Connect to Claude.ai sessions, send messages, handle tool permissions, and receive streaming responses.",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "PROTOCOL.md"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "npx tsx src/example.ts",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "claude",
    "claude-code",
    "claude-code-remote",
    "ccr",
    "anthropic",
    "reverse-engineering",
    "protocol",
    "websocket",
    "streaming",
    "ai",
    "agent",
    "tool-use",
    "mcp"
  ],
  "license": "MIT",
  "author": "jsdvjx",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jsdvjx/claude-remote-protocol.git"
  },
  "bugs": {
    "url": "https://github.com/jsdvjx/claude-remote-protocol/issues"
  },
  "homepage": "https://github.com/jsdvjx/claude-remote-protocol#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@types/ws": "^8.18.1",
    "typescript": "^5.7.0"
  },
  "dependencies": {
    "ws": "^8.19.0"
  }
}
