{ "name": "claude-code-acp-ts", "publishConfig": { "access": "public" }, "version": "0.38.1", "description": "An ACP-compatible coding agent powered by the Claude Agent SDK (TypeScript)", "main": "dist/lib.js", "types": "dist/lib.d.ts", "bin": { "claude-code-acp-ts": "./dist/index.js" }, "type": "module", "exports": { ".": { "types": "./dist/lib.d.ts", "import": "./dist/lib.js" }, "./*": "./*" }, "files": [ "dist/", "!dist/tests/", "README.md", "LICENSE", "package.json" ], "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "npm run build && npm run start", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write .", "format:check": "prettier --check .", "check": "npm run lint && npm run format:check", "test": "vitest", "test:integration": "RUN_INTEGRATION_TESTS=true vitest run", "test:run": "vitest run", "test:coverage": "vitest run --coverage", "prepublishOnly": "npm run build" }, "keywords": [ "claude", "acp", "agent", "anthropic", "typescript", "sdk", "code" ], "homepage": "https://github.com/dongdada29/claude-code-acp-ts#readme", "bugs": { "url": "https://github.com/dongdada29/claude-code-acp-ts/issues" }, "repository": { "type": "git", "url": "git+https://github.com/dongdada29/claude-code-acp-ts.git" }, "author": "Zed Industries", "license": "Apache-2.0", "dependencies": { "@agentclientprotocol/sdk": "0.22.1", "@anthropic-ai/claude-agent-sdk": "0.3.146", "zod": "^3.25.0 || ^4.0.0" }, "devDependencies": { "@anthropic-ai/sdk": "0.97.1", "@eslint/js": "10.0.1", "@types/node": "25.9.1", "@typescript-eslint/eslint-plugin": "8.59.4", "@typescript-eslint/parser": "8.59.4", "eslint": "10.4.0", "eslint-config-prettier": "10.1.8", "globals": "17.6.0", "prettier": "3.8.3", "ts-node": "10.9.2", "typescript": "6.0.3", "vitest": "4.1.7" } }