- Move shadcn components from src/components/ to src/components/ui/ - Move component-example and example from apps/web to packages/ui - Update package.json exports with separate components/* and components/ui/* paths - Update components.json ui alias in both packages/ui and apps/web - Add missing @import "shadcn/tailwind.css" to globals.css - Add new UI components: sheet, sidebar, skeleton, switch - Update apps/web and apps/desktop to use shared ComponentExample Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
901 B
JSON
33 lines
901 B
JSON
{
|
|
"name": "@multica/ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./globals.css": "./src/styles/globals.css",
|
|
"./postcss.config": "./postcss.config.mjs",
|
|
"./lib/*": "./src/lib/*.ts",
|
|
"./components/*": "./src/components/*.tsx",
|
|
"./components/ui/*": "./src/components/ui/*.tsx",
|
|
"./hooks/*": "./src/hooks/*.ts"
|
|
},
|
|
"dependencies": {
|
|
"@base-ui/react": "^1.1.0",
|
|
"@hugeicons/core-free-icons": "^3.1.1",
|
|
"@hugeicons/react": "^1.1.4",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:",
|
|
"shadcn": "^3.7.0",
|
|
"tailwind-merge": "^3.4.0",
|
|
"tailwindcss": "^4",
|
|
"tw-animate-css": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|