mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
* chore: update templates * fix(cli): parse pnpm workspace packages * chore(changeset): add shadcn patch * chore(changeset): update description * ci(templates): validate bun and npx init * ci(templates): expand package manager validation * ci(templates): parallelize validation * ci(templates): allow yarn template lockfiles * fix(cli): allow yarn template installs in ci
37 lines
878 B
JSON
37 lines
878 B
JSON
{
|
|
"name": "vite-app",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint .",
|
|
"format": "prettier --write \"**/*.{ts,tsx}\"",
|
|
"typecheck": "tsc --noEmit",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/vite": "^4",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6",
|
|
"tailwindcss": "^4"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10",
|
|
"@types/node": "^24",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@vitejs/plugin-react": "^6",
|
|
"eslint": "^10",
|
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
"globals": "^17",
|
|
"prettier": "^3.8.3",
|
|
"prettier-plugin-tailwindcss": "^0.8.0",
|
|
"typescript": "~6",
|
|
"typescript-eslint": "^8",
|
|
"vite": "^8"
|
|
}
|
|
}
|