Update various dependencies: - Sentry to v8.54.0 - Tailwind CSS to v4.0.3 - TypeScript ESLint to v8.23.0 - Node types to v22.13.1 - Various OpenTelemetry and other minor dependency updates
35 lines
765 B
JSON
35 lines
765 B
JSON
{
|
|
"name": "@kit/tailwind-config",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"files": [
|
|
"postcss.js"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check \"**/*.{js,ts,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"postcss": "8.5.1",
|
|
"tailwindcss": "4.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@tailwindcss/postcss": "^4.0.3",
|
|
"eslint": "^8.57.0",
|
|
"prettier": "^3.4.2",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base"
|
|
]
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|