- 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>
24 lines
483 B
JSON
24 lines
483 B
JSON
{
|
|
"name": "@multica/cli",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"bin": {
|
|
"multica": "./dist/index.js",
|
|
"mu": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsx src/index.ts",
|
|
"build": "tsup",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@multica/core": "workspace:*",
|
|
"@multica/utils": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"tsup": "^8.0.0",
|
|
"tsx": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|