2026-02-02 18:23:31 +07:00
|
|
|
{
|
|
|
|
|
"name": "beamboxctl",
|
2026-06-09 05:04:20 +07:00
|
|
|
"version": "1.1.0",
|
2026-02-02 18:23:31 +07:00
|
|
|
"description": "CLI tool for uploading and managing BeamBox e-Badge devices",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"bin": {
|
|
|
|
|
"beamboxctl": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2026-02-04 14:45:50 +07:00
|
|
|
"dev": "tsx src/index.tsx",
|
|
|
|
|
"build": "tsup src/index.tsx --format esm --dts --minify --out-dir dist",
|
|
|
|
|
"start": "node dist/index.js",
|
|
|
|
|
"test": "vitest"
|
2026-02-02 18:23:31 +07:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"beambox",
|
|
|
|
|
"cli",
|
|
|
|
|
"bluetooth",
|
|
|
|
|
"ble",
|
|
|
|
|
"uploader"
|
|
|
|
|
],
|
|
|
|
|
"author": "Yuzu <yuzu@kirameki.cafe>",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2026-06-08 22:39:02 +07:00
|
|
|
"@stoprocent/noble": "^2.5.3",
|
2026-02-02 18:23:31 +07:00
|
|
|
"commander": "^14.0.3",
|
2026-06-08 22:39:02 +07:00
|
|
|
"ink": "^6.8.0",
|
2026-02-02 18:23:31 +07:00
|
|
|
"ink-big-text": "^2.0.0",
|
|
|
|
|
"ink-spinner": "^5.0.0",
|
2026-06-08 22:38:42 +07:00
|
|
|
"node-ble": "^1.13.0",
|
2026-06-08 22:39:02 +07:00
|
|
|
"react": "^19.2.7",
|
2026-02-02 18:23:31 +07:00
|
|
|
"sharp": "^0.34.5"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-06-08 22:39:02 +07:00
|
|
|
"@types/node": "^22.19.20",
|
|
|
|
|
"@types/react": "^19.2.17",
|
|
|
|
|
"tsup": "^8.5.1",
|
|
|
|
|
"tsx": "^4.22.4",
|
2026-02-04 14:45:50 +07:00
|
|
|
"typescript": "^5.9.3",
|
2026-06-08 22:39:02 +07:00
|
|
|
"vitest": "^3.2.6"
|
2026-02-04 14:45:50 +07:00
|
|
|
}
|
2026-02-02 18:23:31 +07:00
|
|
|
}
|