clarc/package.json
Jared Miller 726190eaa6
Restructure project files into src and public directories
Moved index.ts to src/server.ts and created stub files for types, db, auth,
and cli modules. Added minimal placeholder for dashboard. Removed generated
README.md in favor of CLAUDE.md and docs/plan.md.
2026-01-28 11:00:19 -05:00

24 lines
607 B
JSON

{
"name": "claude-remote",
"description": "Self-hosted remote control for Claude Code - wrap CLI in PTY, stream output, approve prompts from phone",
"module": "src/server.ts",
"type": "module",
"private": true,
"scripts": {
"lint": "bunx biome check --write .",
"dev": "bun run --watch src/server.ts",
"start": "bun run src/server.ts",
"test": "bun test",
"typecheck": "bunx tsc"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"bun-pty": "^0.4.8"
}
}