trail-boss/package.json
jedarden fbaf1d86ab feat(trail-boss): commit phase 3 daemon code (previously untracked)
daemon/ (index.ts, types.ts, claude-adapter.ts, db.ts, reconcile.ts, schema.sql),
package.json, and test scripts were implemented but never staged. Phase 3 exit
criteria verified per PROGRESS.md.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-25 22:57:51 -04:00

16 lines
342 B
JSON

{
"name": "trailboss",
"version": "0.1.0",
"description": "Single-pane attention router for interactive AI coding-agent sessions",
"type": "module",
"scripts": {
"daemon": "bun run daemon/index.ts",
"test": "bun test"
},
"dependencies": {
"bun": "^1.1.0"
},
"devDependencies": {
"@types/bun": "^1.1.0"
}
}