AFFiNE/packages/i18n/package.json

41 lines
1.0 KiB
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-01-11 10:27:45 +03:00
"sync-languages": "NODE_OPTIONS=--experimental-fetch ts-node-esm src/scripts/sync.ts",
2023-03-20 10:05:02 +03:00
"sync-languages:check": "yarn run sync-languages --check",
2023-01-11 10:27:45 +03:00
"download-resources": "NODE_OPTIONS=--experimental-fetch ts-node-esm 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": {
2023-02-21 14:23:53 +03:00
"@affine/debug": "workspace:*",
2023-05-26 10:47:45 +03:00
"i18next": "^22.5.0",
"react-i18next": "^12.3.1"
2023-01-09 09:55:38 +03:00
},
"devDependencies": {
2023-05-27 11:08:07 +03:00
"@types/node": "^18.16.16",
2023-06-04 20:00:41 +03:00
"@types/prettier": "^2.7.3",
2023-04-25 03:46:46 +03:00
"prettier": "^2.8.8",
2023-01-11 10:27:45 +03:00
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
2023-04-21 01:28:51 +03:00
},
2023-06-09 06:30:51 +03:00
"version": "0.7.0-canary.11"
2023-01-09 09:55:38 +03:00
}