The Zod and Lucide-react libraries have been updated to version ^3.23.0 and ^0.372.0, respectively, in all packages. This change ensures that all packages are using the latest stable versions of these libraries, keeping the codebase up-to-date and minimizing potential compatibility issues.
42 lines
960 B
JSON
42 lines
960 B
JSON
{
|
|
"name": "@kit/tailwind-config",
|
|
"version": "0.1.0",
|
|
"main": "index.ts",
|
|
"license": "MIT",
|
|
"files": [
|
|
"index.ts",
|
|
"postcss.js"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check \"**/*.{js,ts,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-table": "^8.16.0",
|
|
"autoprefixer": "^10.4.19",
|
|
"next": "14.3.0-canary.7",
|
|
"postcss": "8.4.38",
|
|
"tailwind-merge": "^2.3.0",
|
|
"tailwindcss": "3.4.3",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"zod": "^3.23.0"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:^",
|
|
"@kit/prettier-config": "workspace:^",
|
|
"@kit/tsconfig": "workspace:^",
|
|
"eslint": "^8.57.0",
|
|
"prettier": "^3.2.5",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base"
|
|
]
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|