- Added linting and type-checking scripts to package.json for api, web, and ui packages. - Updated ESLint configuration to ignore specific directories and added global window variable. - Modified TypeScript configuration for ui package to exclude turbo generators. - Refactored Button, Card, and Code components to use props for better readability and consistency.
23 lines
479 B
JSON
23 lines
479 B
JSON
{
|
|
"name": "@repo/ui",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"exports": {
|
|
"./*": "./src/*.tsx"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"lint": "eslint . --max-warnings 0",
|
|
"generate:component": "turbo gen react-component",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/eslint-config": "*",
|
|
"@repo/typescript-config": "*",
|
|
"@turbo/gen": "^2.4.4",
|
|
"eslint": "^9.21.0"
|
|
},
|
|
"dependencies": {
|
|
"solid-js": "^1.9.5"
|
|
}
|
|
}
|