feat(ui): set up Atomic Design structure with Tailwind v4

This commit is contained in:
2026-04-06 14:56:16 +02:00
parent d13f7d166e
commit ec08eb1d74
9 changed files with 76 additions and 4 deletions

View File

@@ -6,13 +6,20 @@
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"build": "tsc --noEmit",
"build": "echo 'typechecked by consuming app bundler'",
"lint": "eslint .",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"clsx": "^2.1.0",
"tailwind-merge": "^3.0.0",
"react": "^19.0.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*"
"@repo/typescript-config": "workspace:*",
"@types/react": "^19.0.0",
"tailwindcss": "^4.1.0"
}
}