-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
84 lines (84 loc) · 2.39 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
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
83
84
{
"name": "react-i18nify",
"version": "6.1.3",
"description": "Simple i18n translation and localization components and helpers for React.",
"main": "./cjs/index.js",
"module": "./es/index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "jest --verbose",
"test:watch": "npm test -- --watch",
"lint": "eslint src/**/*.js __test__/**/*.js",
"lint:fix": "npm run lint -- --fix",
"dtslint": "dtslint types",
"build": "rimraf cjs es && npx browserslist --update-db && NODE_ENV=cjs babel src -d cjs && NODE_ENV=es babel src -d es",
"prepare": "npm run build",
"prettier": "prettier --write --loglevel error \"**/*.+(js|jsx|json|yml|yaml|css|ts|tsx|md|mdx|html)\"",
"prettier:check": "prettier --check \"**/*.+(js|jsx|json|yml|yaml|css|ts|tsx|md|mdx|html)\""
},
"files": [
"cjs",
"es",
"src",
"example",
"types/index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sealninja/react-i18nify.git"
},
"author": "Sealninja",
"license": "MIT",
"bugs": {
"url": "https://github.com/sealninja/react-i18nify/issues"
},
"homepage": "https://sealninja.com",
"keywords": [
"react",
"i18n",
"translation",
"localization",
"components",
"helpers",
"javascript",
"flux",
"redux"
],
"runkitExampleFilename": "example/example.js",
"browserslist": "> 0.5%, last 2 versions, not op_mini all, not dead",
"peerDependencies": {
"dayjs": "^1.11.6",
"react": "^16.8.0 || ^17.x || ^18.x"
},
"dependencies": {
"prop-types": "15.8.1"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/register": "7.25.9",
"@types/react": "18.2.56",
"dayjs": "1.11.13",
"dtslint": "4.2.1",
"eslint": "9.17.0",
"@eslint/compat": "1.2.4",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"jest": "29.7.0",
"prettier": "3.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"typescript": "5.7.2"
}
}