feat(create-turbo): apply official-starter transform

This commit is contained in:
Turbobot
2025-01-14 23:32:25 +01:00
committed by PxlLoewe
parent 17bafdfbd6
commit 2843c1c7f5
64 changed files with 5868 additions and 0 deletions

28
packages/ui/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "@repo/ui",
"version": "0.0.0",
"private": true,
"exports": {
"./button": "./src/button.tsx",
"./card": "./src/card.tsx",
"./code": "./src/code.tsx"
},
"scripts": {
"lint": "eslint . --max-warnings 0",
"generate:component": "turbo gen react-component",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^1.12.4",
"@types/node": "^20.11.24",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.1",
"typescript": "5.5.4"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}