Scripts cover linting, type checking, testing, and dev server. Justfile provides docker commands and unified check command.
24 lines
602 B
JSON
24 lines
602 B
JSON
{
|
|
"name": "claude-remote",
|
|
"description": "Self-hosted remote control for Claude Code - wrap CLI in PTY, stream output, approve prompts from phone",
|
|
"module": "index.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"
|
|
}
|
|
}
|