mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 10:59:53 +00:00
## Summary Consolidates Tailwind configuration and styles into a shared `@comfyorg/design-system` package for reuse across monorepo apps. The goal was not to make changes to how the design system works; merely to separate it cleanly. I _would_ strongly recommend some drastic sweeping changes, however I believe that should be done after the migration. ## Changes - **What**: Migrates CSS files, Tailwind config, and custom icons to design-system package - **Dependencies**: Moves `@iconify-json/lucide` and `@iconify/tailwind` to design-system package
32 lines
654 B
JSON
32 lines
654 B
JSON
{
|
|
"name": "@comfyorg/design-system",
|
|
"version": "1.0.0",
|
|
"description": "Shared design system for ComfyUI Frontend",
|
|
"type": "module",
|
|
"exports": {
|
|
"./tailwind-config": {
|
|
"import": "./tailwind.config.ts",
|
|
"types": "./tailwind.config.ts"
|
|
},
|
|
"./css/*": "./src/css/*"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"nx": {
|
|
"tags": [
|
|
"scope:shared",
|
|
"type:design"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@iconify-json/lucide": "^1.1.178",
|
|
"@iconify/tailwind": "^1.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"tailwindcss": "^3.4.17",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"packageManager": "pnpm@10.17.1"
|
|
}
|