feat(create-turbo): create basic

This commit is contained in:
Turbobot 2025-09-21 15:01:30 +00:00 committed by bumpsoo
commit 9bf96a827b
63 changed files with 4649 additions and 0 deletions

26
packages/ui/package.json Normal file
View file

@ -0,0 +1,26 @@
{
"name": "@repo/ui",
"version": "0.0.0",
"private": true,
"exports": {
"./*": "./src/*.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:*",
"@types/node": "^22.15.3",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.1",
"eslint": "^9.34.0",
"typescript": "5.9.2"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
}
}