Files
BizGaze_Remote/desktop/package.json
T

23 lines
657 B
JSON
Raw Normal View History

{
"name": "biz-connect-desktop",
"version": "0.1.0",
"description": "Biz Connect technician desktop client — loads the Connect web UI with native screen capture",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.bizgaze.connect.desktop",
"productName": "Biz Connect",
"files": ["main.js", "preload.js", "assets/**"],
"win": { "target": "nsis" },
"mac": { "target": "dmg", "category": "public.app-category.business" },
"linux": { "target": "AppImage" }
}
}