Files
claude-code-conduit/package.json
mikael-lovqvists-claude-agent f2d32a3faa Add request logging, simplify queue output, bump to v1.0.0
Each request logs timestamp, method, path and user. Queue entries log
a single line on enqueue and on resolve. Drop the verbose approve/deny
curl instructions from queue output.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-07 21:34:35 +00:00

21 lines
511 B
JSON

{
"name": "claude-code-conduit",
"version": "1.0.0",
"description": "A supervised action bridge between Claude Code and the host system",
"type": "module",
"scripts": {
"server": "node server/index.mjs",
"client": "node client/index.mjs"
},
"bin": {
"ccc-server": "bin/ccc-server.mjs",
"ccc-client": "bin/ccc-client.mjs",
"ccc-queue": "bin/ccc-queue.mjs",
"ccc-keygen": "bin/ccc-keygen.mjs"
},
"dependencies": {
"blessed": "^0.1.81",
"express": "^5.2.1"
}
}