-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 KB
/
package.json
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
{
"name": "i18nmate",
"version": "1.0.0",
"type": "module",
"description": "Your go-to solution for internationalization and localization in React applications.",
"main": "dist/index.js",
"scripts": {
"build:dev": "rollup -c --environment NODE_ENV:development",
"build": "rollup -c --environment NODE_ENV:production"
},
"keywords": [
"react",
"localization",
"i18n",
"internationalization",
"translations",
"localize"
],
"author": "Sojib Hossen",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "8.3.3",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"rollup": "^4.17.2"
}
}