- Bumped versions for @next/bundle-analyzer and @next/eslint-plugin-next to 16.0.7. - Updated react and react-dom versions to 19.2.1 across multiple package.json files. - Incremented supabase version to 2.65.3 in pnpm-lock.yaml and pnpm-workspace.yaml. - Adjusted various package.json files to utilize catalog dependencies for improved management.
42 lines
1011 B
JSON
42 lines
1011 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": "catalog:",
|
|
"next": "catalog:",
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:",
|
|
"react-i18next": "^16.3.5"
|
|
},
|
|
"dependencies": {
|
|
"i18next": "25.7.1",
|
|
"i18next-browser-languagedetector": "8.2.0",
|
|
"i18next-resources-to-backend": "^1.2.1"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|