ohif-viewer/platform/i18n/package.json

55 lines
1.5 KiB
JSON

{
"name": "@ohif/i18n",
"version": "3.13.0-beta.32",
"description": "Internationalization library for The OHIF Viewer",
"author": "OHIF",
"license": "MIT",
"repository": "OHIF/Viewers",
"main": "dist/ohif-i18n.umd.js",
"module": "src/index.js",
"engines": {
"node": ">=14",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "shx rm -rf dist",
"clean:deep": "yarn run clean && shx rm -rf node_modules",
"dev": "cross-env NODE_ENV=development webpack --config .webpack/webpack.dev.js --watch --output-pathinfo",
"dev:i18n": "yarn run dev",
"build": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
"build:package": "yarn run build",
"pullTranslations": "./pullTranslations.sh",
"test:unit": "echo 'platform/i18n: missing unit tests'",
"test:unit:ci": "echo 'platform/i18n: missing unit tests'"
},
"peerDependencies": {
"i18next": "17.3.1",
"i18next-browser-languagedetector": "3.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "12.3.1"
},
"dependencies": {
"@babel/runtime": "7.28.2",
"i18next-locize-backend": "2.2.2",
"locize-editor": "2.2.2",
"locize-lastused": "1.1.1"
},
"devDependencies": {
"i18next": "17.3.1",
"i18next-browser-languagedetector": "3.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "12.3.1",
"webpack-merge": "5.10.0"
}
}