frontend tailwind half working without external styling
This commit is contained in:
36
packages/ui/package.json
Normal file
36
packages/ui/package.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "@repo/ui",
|
||||
"version": "0.0.0",
|
||||
"sideEffects": [
|
||||
"**/*.css"
|
||||
],
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"exports": {
|
||||
"./styles.css": "./dist/index.css",
|
||||
"./*": "./dist/*.js"
|
||||
},
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build:styles": "tailwindcss -i ./src/styles.css -o ./dist/index.css",
|
||||
"build:components": "tsc",
|
||||
"check-types": "tsc --noEmit",
|
||||
"dev:styles": "tailwindcss -i ./src/styles.css -o ./dist/index.css --watch",
|
||||
"dev:components": "tsc --watch",
|
||||
"lint": "eslint src --max-warnings 0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^19"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@repo/eslint-config": "*",
|
||||
"@repo/tailwind-config": "*",
|
||||
"@repo/typescript-config": "*",
|
||||
"@tailwindcss/cli": "^4.1.5",
|
||||
"@types/react": "^19.1.0",
|
||||
"eslint": "^9.26.0",
|
||||
"tailwindcss": "^4.1.5",
|
||||
"typescript": "5.8.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user