- Add Vite as alternative build (vite.config.ts, scripts/vite-plugin-*)
- Add dab04af7 RSS fix (distRoot, ripgrep path, post-build)
- Pull in packages/builtin-tools/ (+354 files)
- Pull in packages/agent-tools/, mcp-client/, acp-link/, weixin/
- Copy defines.ts from upstream for Vite compatibility
- Update package.json with Vite scripts and deps
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "acp-link",
|
|
"version": "2.0.0",
|
|
"description": "ACP proxy server that bridges WebSocket clients to ACP agents",
|
|
"author": "claude-code-best",
|
|
"type": "module",
|
|
"main": "./dist/server.js",
|
|
"types": "./dist/server.d.ts",
|
|
"bin": {
|
|
"acp-link": "dist/cli/bin.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "ACP_RCS_URL=http://localhost:3000 ACP_RCS_TOKEN=test-my-key bun run src/cli/bin.ts ccb-bun -- --acp",
|
|
"dev:remote": "ACP_RCS_URL=https://remote-control.claude-code-best.win/ ACP_RCS_TOKEN=test-my-key bun run src/cli/bin.ts ccb-bun -- --acp",
|
|
"dev:manager": "ACP_RCS_URL=http://localhost:3000 ACP_RCS_TOKEN=test-my-key bun run src/cli/bin.ts --manager",
|
|
"prepublishOnly": "bun run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/selfsigned": "^2.0.4",
|
|
"@types/ws": "^8.18.1",
|
|
"@types/bun": "^1.3.12"
|
|
},
|
|
"dependencies": {
|
|
"@agentclientprotocol/sdk": "^0.19.0",
|
|
"@hono/node-server": "^2.0.0",
|
|
"@hono/node-ws": "^1.0.5",
|
|
"@stricli/auto-complete": "^1.2.4",
|
|
"@stricli/core": "^1.2.4",
|
|
"hono": "^4.12.15",
|
|
"pino": "^10.3.0",
|
|
"pino-pretty": "^13.1.3",
|
|
"selfsigned": "^5.5.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"license": "MIT"
|
|
}
|