-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "@react-enhanced/translate",
"version": "0.1.3",
"type": "module",
"description": "🔥 Enhanced React Translate Plugin",
"repository": "[email protected]:rx-ts/react.git",
"homepage": "https://github.com/rx-ts/react/blob/master/packages/@react-enhanced/translate",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"funding": "https://opencollective.com/rxts",
"license": "MIT",
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"main": "./src/index.ts",
"files": [
"lib",
"src"
],
"keywords": [
"react-enhanced",
"react-enhanced-hooks",
"react-hooks",
"react-hooks-enhanced",
"react"
],
"peerDependencies": {
"lodash": ">=4.0.0",
"lodash-es": ">=4.0.0",
"react": ">=16.8.0",
"rxjs": ">=7.0.0",
"type-fest": ">=2.0.0"
},
"peerDependenciesMeta": {
"lodash": {
"optional": true
},
"lodash-es": {
"optional": true
},
"type-fest": {
"optional": true
}
},
"dependencies": {
"@react-enhanced/hooks": "^0.5.0",
"@react-enhanced/shared": "^0.2.1",
"@react-enhanced/types": "^0.2.1",
"@react-enhanced/utils": "^0.2.1"
},
"publishConfig": {
"access": "public",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.js"
},
"types": "./lib/index.d.ts"
},
"sideEffects": false
}