- Updated application version from 2.23.7 to 2.23.8 in package.json. - Upgraded various dependencies including @turbo/gen to 2.7.5, prettier to 3.8.0, and turbo to 2.7.5. - Updated package versions in pnpm-lock.yaml and pnpm-workspace.yaml for consistency. - Enhanced @next/bundle-analyzer, @next/eslint-plugin-next, and other related packages to their latest versions. - Improved @types/node and @types/react versions for better type support.
22 lines
519 B
JSON
22 lines
519 B
JSON
{
|
|
"name": "@kit/prettier-config",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"main": "index.mjs",
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{mjs,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "6.0.2",
|
|
"prettier": "^3.8.0",
|
|
"prettier-plugin-tailwindcss": "^0.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/tsconfig": "workspace:*",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"prettier": "./index.mjs"
|
|
}
|