AFFiNE/packages/frontend/i18n/package.json

41 lines
1017 B
JSON
Raw Normal View History

2023-01-09 09:55:38 +03:00
{
"name": "@affine/i18n",
"description": "",
"type": "module",
2023-02-14 06:18:43 +03:00
"main": "src/index.ts",
2023-01-09 09:55:38 +03:00
"exports": {
".": "./src/index.ts",
"./hooks": "./src/i18n-generated"
2023-02-14 06:18:43 +03:00
},
"publishConfig": {
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": "./dist/src/index.js"
}
2023-01-09 09:55:38 +03:00
},
"scripts": {
2023-06-27 16:05:24 +03:00
"build": "node build.mjs",
2023-06-30 11:10:35 +03:00
"dev": "node dev.mjs",
"sync-languages": "node --loader ts-node/esm/transpile-only src/scripts/sync.ts",
2023-03-20 10:05:02 +03:00
"sync-languages:check": "yarn run sync-languages --check",
"download-resources": "node --loader ts-node/esm/transpile-only src/scripts/download.ts"
2023-01-09 09:55:38 +03:00
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/toeverything/AFFiNE.git"
},
"dependencies": {
"i18next": "^23.5.1",
chore: bump up react-i18next version to v14 (#5375) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [react-i18next](https://togithub.com/i18next/react-i18next) | [`^13.3.0` -> `^14.0.0`](https://renovatebot.com/diffs/npm/react-i18next/13.5.0/14.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-i18next/14.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-i18next/14.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-i18next/13.5.0/14.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-i18next/13.5.0/14.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>i18next/react-i18next (react-i18next)</summary> ### [`v14.0.0`](https://togithub.com/i18next/react-i18next/blob/HEAD/CHANGELOG.md#1400) [Compare Source](https://togithub.com/i18next/react-i18next/compare/v13.5.0...v14.0.0) - types: reportNamespaces is now optional, should fix [1693](https://togithub.com/i18next/react-i18next/issues/1693) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/toeverything/AFFiNE). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2023-12-26 11:32:07 +03:00
"react-i18next": "^14.0.0"
2023-01-09 09:55:38 +03:00
},
"devDependencies": {
2023-08-11 22:36:10 +03:00
"@types/prettier": "^3.0.0",
2023-08-30 02:21:18 +03:00
"prettier": "^3.0.3",
2023-01-11 10:27:45 +03:00
"ts-node": "^10.9.1",
2023-08-25 19:52:33 +03:00
"typescript": "^5.2.2"
2023-04-21 01:28:51 +03:00
},
"version": "0.11.0"
2023-01-09 09:55:38 +03:00
}