Rearranged imports for better organization and readability across multiple files. Updated the `react-i18next` dependency to version 15.0.1 in various `package.json` files. Adjusted formatting in multiple TypeScript files to ensure code style consistency.
22 lines
518 B
JSON
22 lines
518 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": {
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.6"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/tsconfig": "workspace:^",
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"prettier": "./index.mjs"
|
|
}
|