{
  "name": "@thinkwell/protocol",
  "version": "0.5.7",
  "description": "Shared protocol types for Thinkwell packages (JSON-RPC, MCP-over-ACP, Dispatch)",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "acp",
    "mcp",
    "thinkwell",
    "json-rpc",
    "protocol"
  ],
  "author": "David Herman",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^24.10.4",
    "tsx": "^4.19.2",
    "typescript": "^5.7.2"
  },
  "scripts": {
    "build": "tsc && tsx ../../scripts/strip-features.ts --mode=release",
    "build:debug": "tsc",
    "clean": "rm -rf dist",
    "test": "node --test --import tsx src/**/*.test.ts"
  }
}