AFFiNE/packages/i18n/package.json

45 lines
1.2 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",
2023-05-12 21:47:14 +03:00
"react": "18.3.0-canary-16d053d59-20230506",
2023-05-18 21:43:45 +03:00
"react-i18next": "^12.3.0"
2023-01-09 09:55:38 +03:00
},
"devDependencies": {
2023-05-18 21:43:45 +03:00
"@types/node": "^18.16.13",
"@types/prettier": "^2.7.2",
"next": "^13.4.2",
2023-04-25 03:46:46 +03:00
"prettier": "^2.8.8",
2023-05-12 21:47:14 +03:00
"react-dom": "18.3.0-canary-16d053d59-20230506",
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-18 11:21:25 +03:00
"version": "0.6.0-canary.5"
2023-01-09 09:55:38 +03:00
}