Files
odo/package.json
T
taodengandClaude Opus 4.6 cdcf28ff4e feat: Phase 1 scaffold — React + Vite + TypeScript + Dashboard (v0.10.0)
- Add Vite + React + TypeScript + Tailwind CSS to Electron app
- Create Dashboard page with gateway control (start/stop/restart/status)
- Expand preload.js IPC bridge with gateway and OCM API channels
- Add IPC handlers in main.js for openclaw CLI and OCM proxy
- Dev mode loads Vite dev server, production loads built dist/
- Bump version to 0.10.0

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-20 07:30:27 +10:00

64 lines
1.7 KiB
JSON

{
"name": "odo",
"version": "0.10.0",
"description": "ODO — OpenClaw Dashboard Orchestrator",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently -k \"vite --config vite.config.ts\" \"sleep 3 && electron .\"",
"build:renderer": "vite build --config vite.config.ts",
"build": "npm run build:renderer && electron-builder",
"build:mac": "npm run build:renderer && electron-builder --mac",
"build:win": "npm run build:renderer && electron-builder --win",
"build:linux": "npm run build:renderer && electron-builder --linux"
},
"build": {
"appId": "com.openclaw.odo",
"productName": "ODO",
"files": [
"main.js",
"preload.js",
"server/openclaw-manager.js",
"dist/**/*",
"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",
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"electron": "^33.0.0",
"electron-builder": "^25.0.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
}
}