-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.36 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@weprodev/ui-localization",
"version": "2.0.0",
"description": "Localization package for React and React Native applications",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"scripts",
"bin"
],
"bin": {
"wpd-translation-validate": "./bin/wpd-translation-validate.js",
"wpd-translation-sync": "./bin/wpd-translation-sync.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"prepublishOnly": "npm run build",
"dev": "rollup -c -w",
"translation:validate": "node ./scripts/validate-translations.js --dir ./translations --source en",
"translation:sync": "node ./scripts/sync-translations.js --dir ./translations --source en"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weprodev/ui-localization.git"
},
"keywords": [
"i18n",
"localization",
"internationalization",
"react",
"react-native"
],
"author": "WeProDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/weprodev/ui-localization/issues"
},
"homepage": "https://github.com/weprodev/ui-localization#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"i18next": "^23.7.6",
"react-i18next": "^13.5.0"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.39",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.6.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"@rollup/plugin-terser": "^0.4.4",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
}
}