mirror of
https://github.com/dtzp555-max/odo.git
synced 2026-07-19 09:44:37 +00:00
- Rename postcss.config.js/tailwind.config.js to .cjs to fix ESM warning - Replace Stats Summary placeholder with real OCM /api/stats data - Handle loading, error, and offline states gracefully - Bump version to 0.10.1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
64 lines
1.7 KiB
JSON
64 lines
1.7 KiB
JSON
{
|
|
"name": "odo",
|
|
"version": "0.10.1",
|
|
"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"
|
|
}
|
|
}
|