mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
This change brings Turborepo monorepo to independently handle the marketing website, the docs website and any other future use cases for mutli-platform support. They are using internal @katanemo package handlers for the design system and logic.
36 lines
813 B
JSON
36 lines
813 B
JSON
{
|
|
"name": "@katanemo/ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"scripts": {
|
|
"lint": "biome check",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"framer-motion": "^12.23.24",
|
|
"lucide-react": "^0.548.0",
|
|
"next": "16.0.0",
|
|
"react": "19.2.0",
|
|
"react-dom": "19.2.0",
|
|
"tailwind-merge": "^3.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.2.0",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"typescript": "^5"
|
|
},
|
|
"peerDependencies": {
|
|
"next": "^16.0.0",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0"
|
|
}
|
|
}
|
|
|