Files
claude-code-conduit/package.json
mikael-lovqvists-claude-agent f02e2a746d Rename .js to .mjs, extract helpers module
Move resolvePath and exec out of index.mjs into server/helpers.mjs so
actions can import them directly rather than receiving them as arguments.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-07 20:06:29 +00:00

14 lines
311 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"
},
"dependencies": {
"express": "^5.2.1"
}
}