- Move core agent engine to packages/core/ - Add packages/types/ for shared TypeScript types - Add packages/utils/ for utility functions - Add apps/cli/ for command-line interface - Add apps/gateway/ for NestJS WebSocket gateway - Add apps/server/ for REST API server - Restructure desktop app (electron/ → src/main/, src/preload/) - Update pnpm workspace configuration - Remove legacy src/ directory Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"name": "@multica/desktop",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "electron-vite dev",
|
|
"build": "electron-vite build && electron-builder",
|
|
"preview": "electron-vite preview",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
|
|
},
|
|
"dependencies": {
|
|
"@hugeicons/core-free-icons": "catalog:",
|
|
"@hugeicons/react": "catalog:",
|
|
"@multica/core": "workspace:*",
|
|
"@multica/hooks": "workspace:*",
|
|
"@multica/sdk": "workspace:*",
|
|
"@multica/store": "workspace:*",
|
|
"@multica/ui": "workspace:*",
|
|
"qrcode.react": "^4.2.0",
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:",
|
|
"react-router-dom": "^7.13.0",
|
|
"socket.io-client": "catalog:",
|
|
"uuid": "catalog:",
|
|
"zustand": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "catalog:",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"@typescript-eslint/eslint-plugin": "^7.1.1",
|
|
"@typescript-eslint/parser": "^7.1.1",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"electron": "^33.4.11",
|
|
"electron-builder": "^26.7.0",
|
|
"electron-builder-squirrel-windows": "^26.7.0",
|
|
"electron-vite": "^5.0.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.5",
|
|
"tailwindcss": "catalog:",
|
|
"typescript": "catalog:",
|
|
"vite": "^5.1.6"
|
|
},
|
|
"main": "./out/main/index.js"
|
|
}
|