-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.44 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
{
"name": "react-i18next-helpers",
"version": "1.0.1",
"description": "A set of helper hooks and components to use with i18next, react-i18next and Formik",
"main": "dist/index.js",
"scripts": {
"build": "babel ./src --out-dir ./dist --source-maps inline",
"test": "npm run build && vitest run",
"test:unit": "vitest run",
"prepublishOnly": "npm run build"
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devakone/react-i18next-helpers.git"
},
"keywords": [
"i18next",
"react-i18next",
"formik",
"translate",
"i18n"
],
"author": "Abou Kone",
"license": "MIT",
"bugs": {
"url": "https://github.com/devakone/react-i18next-helpers/issues"
},
"homepage": "https://github.com/devakone/react-i18next-helpers#readme",
"peerDependencies": {
"formik": ">=2.4.9",
"i18next": ">=26.3.0",
"react": ">=16.8.0",
"react-i18next": ">=17.0.8"
},
"dependencies": {
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/cli": "^7.29.7",
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"formik": "^2.4.9",
"i18next": "^26.3.0",
"jsdom": "^29.1.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8",
"vite": "^8.0.16",
"vitest": "^4.1.8"
}
}