pi-remote-control/package.json

34 lines
944 B
JSON

{
"name": "pi-remote-control",
"type": "module",
"version": "1.0.0",
"description": "Expose a running pi session over HTTP/WebSocket — view and interact from any browser on your network.",
"keywords": [
"pi-package"
],
"license": "MIT",
"dependencies": {
"qrcode": "^1.5.4",
"ws": "^8.0.0"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"scripts": {
"lint": "biome check --write .",
"lint:check": "biome check .",
"prepare": "node .husky/install.mjs",
"typecheck": "tsc --noEmit",
"smoke": "node --test scripts/smoke/smoke.mjs",
"smoke:stream": "node --test scripts/smoke/stream.test.mjs",
"smoke:all": "node --test scripts/smoke/smoke.mjs scripts/smoke/stream.test.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@types/qrcode": "^1.5.6",
"husky": "^9.1.7",
"typescript": "^6.0.3"
}
}