{ "name": "odo", "version": "0.9.6", "description": "ODO — OpenClaw Dashboard Orchestrator", "main": "main.js", "scripts": { "start": "electron .", "build": "electron-builder", "build:mac": "electron-builder --mac", "build:win": "electron-builder --win", "build:linux": "electron-builder --linux" }, "build": { "appId": "com.openclaw.odo", "productName": "ODO", "files": [ "main.js", "preload.js", "server/openclaw-manager.js", "assets/**/*" ], "mac": { "category": "public.app-category.developer-tools", "target": ["dmg"], "icon": "assets/icon.icns" }, "win": { "target": ["nsis"], "icon": "assets/icon.ico" }, "linux": { "target": ["AppImage"], "icon": "assets/icon.png", "category": "Development" }, "nsis": { "oneClick": true, "allowToChangeInstallationDirectory": false } }, "author": "", "license": "MIT", "devDependencies": { "electron": "^33.0.0", "electron-builder": "^25.0.0" } }