sandlot/package.json
Chris Wanstrath 5d7bf302f2 Add sandlot CLI for branch-based dev with worktrees and Apple containers
Implements all 7 commands: new, save, push, list, open, stop, rm.
Uses Commander for CLI parsing, Anthropic SDK for AI commit messages
and merge conflict resolution, and Apple container for VMs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 20:15:29 -08:00

16 lines
255 B
JSON

{
"name": "sandlot",
"version": "0.1.0",
"type": "module",
"bin": {
"sandlot": "./src/cli.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"commander": "^13.1.0"
},
"devDependencies": {
"@types/bun": "^1.3.9"
}
}