2026-02-02 18:23:31 +07:00
|
|
|
{
|
|
|
|
|
"name": "beamboxctl",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"description": "CLI tool for uploading and managing BeamBox e-Badge devices",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"bin": {
|
|
|
|
|
"beamboxctl": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "bun run src/index.tsx",
|
|
|
|
|
"build": "bun build src/index.tsx --outdir dist --target node --minify",
|
2026-02-03 00:41:04 +07:00
|
|
|
"start": "bun run dist/index.js",
|
|
|
|
|
"test": "bun test"
|
2026-02-02 18:23:31 +07:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"beambox",
|
|
|
|
|
"cli",
|
|
|
|
|
"bluetooth",
|
|
|
|
|
"ble",
|
|
|
|
|
"uploader"
|
|
|
|
|
],
|
|
|
|
|
"author": "Yuzu <yuzu@kirameki.cafe>",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2026-02-04 11:35:44 +07:00
|
|
|
"@abandonware/noble": "^1.9.2-24",
|
2026-02-02 18:23:31 +07:00
|
|
|
"commander": "^14.0.3",
|
|
|
|
|
"ink": "^6.6.0",
|
|
|
|
|
"ink-big-text": "^2.0.0",
|
|
|
|
|
"ink-spinner": "^5.0.0",
|
|
|
|
|
"react": "^19.2.4",
|
|
|
|
|
"sharp": "^0.34.5"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/bun": "^1.3.8",
|
2026-02-04 11:35:44 +07:00
|
|
|
"@types/noble": "^0.0.44",
|
2026-02-02 18:23:31 +07:00
|
|
|
"@types/react": "^19.2.10"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"typescript": "^5.9.3"
|
|
|
|
|
},
|
|
|
|
|
"trustedDependencies": [
|
|
|
|
|
"@abandonware/bluetooth-hci-socket",
|
|
|
|
|
"@abandonware/noble"
|
|
|
|
|
]
|
|
|
|
|
}
|