- New server/google_calendar.mjs wrapping googleapis v3 with auto token refresh - Four new actions: calendar-list-events (auto-accept), calendar-create/update/delete-event (queue) - bin/ccc-gcal-auth.mjs one-time OAuth2 consent flow helper - config.example.json updated with google_calendar block - server/config.mjs, index.mjs wired up following the same pattern as SMTP/mailer - Bump version to 1.2.0 - Add CLAUDE.md and claude-info/ with architecture reference, feature plans, and contributing checklist Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
614 B
JSON
24 lines
614 B
JSON
{
|
|
"name": "claude-code-conduit",
|
|
"version": "1.2.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",
|
|
"ccc-gcal-auth": "bin/ccc-gcal-auth.mjs"
|
|
},
|
|
"dependencies": {
|
|
"blessed": "^0.1.81",
|
|
"express": "^5.2.1",
|
|
"googleapis": "^144.0.0",
|
|
"nodemailer": "^8.0.2"
|
|
}
|
|
}
|