{
  "name": "@agentclientprotocol/sdk",
  "version": "0.14.1",
  "publishConfig": {
    "access": "public"
  },
  "description": "The Agent Client Protocol (ACP) is a protocol that standardizes communication between *code editors* (interactive programs for viewing and editing source code) and *coding agents* (programs that use generative AI to autonomously modify code).",
  "homepage": "https://github.com/agentclientprotocol/typescript-sdk#readme",
  "bugs": {
    "url": "https://github.com/agentclientprotocol/typescript-sdk/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/agentclientprotocol/typescript-sdk.git"
  },
  "license": "Apache-2.0",
  "author": "Zed Industries",
  "files": [
    "typescript",
    "dist",
    "schema/schema.json",
    "LICENSE-APACHE"
  ],
  "type": "module",
  "main": "dist/acp.js",
  "types": "dist/acp.d.ts",
  "directories": {
    "example": "examples"
  },
  "scripts": {
    "clean": "rm -rf dist tsconfig.tsbuildinfo",
    "test": "vitest run",
    "generate": "node scripts/generate.js",
    "build": "tsc",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint",
    "lint:fix": "eslint --fix",
    "spellcheck": "./scripts/spellcheck.sh",
    "spellcheck:fix": "./scripts/spellcheck.sh --write-changes",
    "check": "npm run lint && npm run format:check && npm run spellcheck && npm run build && npm run test && npm run docs:ts:verify",
    "docs:ts:build": "cd src && typedoc && echo 'TypeScript documentation generated in ./src/docs'",
    "docs:ts:dev": "concurrently \"cd src && typedoc --watch --preserveWatchOutput\" \"npx http-server src/docs -p 8081\"",
    "docs:ts:verify": "cd src && typedoc --emit none && echo 'TypeDoc verification passed'"
  },
  "peerDependencies": {
    "zod": "^3.25.0 || ^4.0.0"
  },
  "devDependencies": {
    "@hey-api/openapi-ts": "^0.92.3",
    "@types/node": "^25.2.1",
    "@typescript-eslint/eslint-plugin": "^8.54.0",
    "@typescript-eslint/parser": "^8.54.0",
    "concurrently": "^9.2.1",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "http-server": "^14.1.1",
    "prettier": "^3.8.1",
    "tsx": "^4.21.0",
    "typedoc": "^0.28.16",
    "typedoc-github-theme": "^0.3.1",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18",
    "zod": "^3.25.0 || ^4.0.0"
  }
}
