- Upgraded Next.js to version 16.0.1 and React to version 19.2.0. - Updated various packages including @supabase/supabase-js to 2.78.0, lucide-react to 0.548.0, and react-i18next to 16.2.3. - Adjusted @types/node version to 24.9.2 and other related dependencies. - Refactored package.json files to use PNPM catalogs for better dependency management. - Updated ESLint configurations and related plugins to the latest versions.
42 lines
1005 B
JSON
42 lines
1005 B
JSON
{
|
|
"name": "@kit/i18n",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"clean": "git clean -xdf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"lint": "eslint .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./server": "./src/i18n.server.ts",
|
|
"./client": "./src/i18n.client.ts",
|
|
"./provider": "./src/i18n-provider.tsx"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/shared": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@tanstack/react-query": "5.90.5",
|
|
"next": "catalog:",
|
|
"react": "19.2.0",
|
|
"react-dom": "19.2.0",
|
|
"react-i18next": "^16.2.3"
|
|
},
|
|
"dependencies": {
|
|
"i18next": "25.6.0",
|
|
"i18next-browser-languagedetector": "8.2.0",
|
|
"i18next-resources-to-backend": "^1.2.1"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|