mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 03:38:32 +02:00
Add components.json to packages/ui so shadcn components can be installed directly into the shared UI package instead of going through apps/web. Add a root pnpm ui:add script as the canonical install command. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
852 B
JSON
36 lines
852 B
JSON
{
|
|
"name": "multica",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev:web": "turbo dev --filter=@multica/web",
|
|
"dev:desktop": "turbo dev --filter=@multica/desktop",
|
|
"build": "turbo build",
|
|
"typecheck": "turbo typecheck",
|
|
"test": "turbo test",
|
|
"lint": "turbo lint",
|
|
"clean": "turbo clean && rm -rf node_modules",
|
|
"ui:add": "cd packages/ui && npx shadcn@latest add"
|
|
},
|
|
"packageManager": "pnpm@10.28.2",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild",
|
|
"electron"
|
|
],
|
|
"overrides": {
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.58.2",
|
|
"@types/node": "catalog:",
|
|
"@types/pg": "^8.20.0",
|
|
"pg": "^8.20.0",
|
|
"turbo": "^2.5.4",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|