- 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>
33 lines
844 B
JSON
33 lines
844 B
JSON
{
|
|
"name": "@multica/web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --port 3001 --experimental-https",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@multica/hooks": "workspace:*",
|
|
"@multica/sdk": "workspace:*",
|
|
"@multica/store": "workspace:*",
|
|
"@multica/ui": "workspace:*",
|
|
"uuid": "catalog:",
|
|
"zustand": "catalog:",
|
|
"@hugeicons/core-free-icons": "catalog:",
|
|
"@hugeicons/react": "catalog:",
|
|
"next": "16.1.6",
|
|
"next-themes": "^0.4.6",
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"eslint": "catalog:",
|
|
"eslint-config-next": "16.1.6",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|