AFFiNE/packages/i18n/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2023-01-09 09:55:38 +03:00
{
"name": "@affine/i18n",
"version": "0.1.0",
"description": "",
"type": "module",
2023-02-14 06:18:43 +03:00
"main": "src/index.ts",
2023-01-09 09:55:38 +03:00
"exports": {
2023-02-14 06:18:43 +03:00
".": "./src/index.ts"
},
"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-03-29 21:35:42 +03:00
"i18next": "^22.4.13",
"react": "^18.2.0",
2023-03-02 01:11:24 +03:00
"react-i18next": "^12.2.0"
2023-01-09 09:55:38 +03:00
},
"devDependencies": {
2023-03-29 21:35:42 +03:00
"@types/node": "^18.15.11",
"@types/prettier": "^2.7.2",
2023-03-19 11:50:31 +03:00
"next": "=13.2.3",
2023-03-29 21:35:42 +03:00
"prettier": "^2.8.7",
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-02 04:24:13 +03:00
"typescript": "^5.0.3"
2023-01-09 09:55:38 +03:00
}
}