-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "react-i18n-translation",
"version": "2.0.0",
"description": "React-i18n-translation is a lightweight, easy-to-use internationalization (i18n) and translation management library for React and Next.js applications. Easily handle multilingual content, language switching, and RTL support in your React projects.",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./next": "./dist/next/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "babel src --out-dir dist --extensions \".js,.jsx\" --copy-files",
"prepare": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"dependencies": {
"js-cookie": "3.0.5"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3"
},
"keywords": [
"react-i18n",
"react-translation",
"internationalization",
"i18n",
"ReactJS",
"Next.js",
"multilingual",
"rtl-support",
"language-switcher",
"js-cookie"
],
"author": "RTS_Dev",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/rtsdeveloper/react-i18n-translation.git"
},
"bugs": {
"url": "https://github.com/rtsdeveloper/react-i18n-translation/issues"
},
"homepage": "https://github.com/rtsdeveloper/react-i18n-translation"
}