mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
34 lines
814 B
JSON
34 lines
814 B
JSON
{
|
|
"name": "@workspace/ui",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint",
|
|
"format": "prettier --write \"**/*.{ts,tsx}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.1.18",
|
|
"@turbo/gen": "^2.8.1",
|
|
"@types/node": "^25.1.0",
|
|
"@types/react": "^19.2.10",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@tanstack/eslint-config": "^0.3.0",
|
|
"eslint": "^9.39.2",
|
|
"tailwindcss": "^4.1.18",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"exports": {
|
|
"./globals.css": "./src/styles/globals.css",
|
|
"./lib/*": "./src/lib/*.ts",
|
|
"./components/*": "./src/components/*.tsx",
|
|
"./hooks/*": "./src/hooks/*.ts"
|
|
}
|
|
}
|