- bin/ccc-server, ccc-client, ccc-queue wired up via package.json bin - client/config.mjs: shared secrets/user resolution from CLI args or CCC_SECRETS/CCC_USER env vars - ccc-queue: blessed TUI with two-pane layout (list + detail), polls every 2s, y/n to approve/deny selected item, r to refresh, q to quit Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
471 B
JSON
20 lines
471 B
JSON
{
|
|
"name": "claude-code-conduit",
|
|
"version": "0.1.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"
|
|
},
|
|
"dependencies": {
|
|
"blessed": "^0.1.81",
|
|
"express": "^5.2.1"
|
|
}
|
|
}
|