Files
myeasycms-v2/packages/i18n/package.json
Giancarlo Buomprisco db4aa6007e chore: update package versions and dependencies across multiple files (#416)
* chore: update package versions and dependencies across multiple files

- Bumped application version to 2.21.4 in package.json.
- Updated @supabase/supabase-js to version 2.84.0 and @tanstack/react-query to version 5.90.10.
- Incremented various dependencies including lucide-react to version 0.554.0, react-hook-form to version 7.66.1, and react-i18next to version 16.3.5.
- Adjusted @types/nodemailer to version 7.0.4 for consistency.
- Refactored package.json files to utilize catalog dependencies for improved management.

* chore: update Stripe API version to 2025-11-17.clover in stripe-sdk.ts

* fix: update wording for password recovery prompt in auth.json
2025-11-25 10:18:44 +07:00

42 lines
1009 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": "19.2.0",
"react-i18next": "^16.3.5"
},
"dependencies": {
"i18next": "25.6.3",
"i18next-browser-languagedetector": "8.2.0",
"i18next-resources-to-backend": "^1.2.1"
},
"typesVersions": {
"*": {
"*": [
"src/*"
]
}
}
}