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>
21 lines
511 B
JSON
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"
|
|
}
|
|
}
|