AFFiNE/packages/i18n/package.json

45 lines
1.1 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 09:39:19 +03:00
"build": "tsc --project ./tsconfig.json",
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-04-23 09:42:27 +03:00
"i18next": "^22.4.15",
"react": "^18.2.0",
2023-04-25 03:46:46 +03:00
"react-i18next": "^12.2.2"
2023-01-09 09:55:38 +03:00
},
"devDependencies": {
2023-05-09 09:35:49 +03:00
"@types/node": "^18.16.6",
"@types/prettier": "^2.7.2",
2023-05-06 07:41:51 +03:00
"next": "^13.4.1",
2023-04-25 03:46:46 +03:00
"prettier": "^2.8.8",
2023-03-02 23:52:41 +03:00
"react-dom": "^18.2.0",
2023-01-11 10:27:45 +03:00
"ts-node": "^10.9.1",
2023-04-11 01:41:07 +03:00
"typescript": "^5.0.4"
2023-04-21 01:28:51 +03:00
},
2023-05-09 00:33:44 +03:00
"version": "0.5.4-canary.27"
2023-01-09 09:55:38 +03:00
}