react-hooks-global-states 6.0.1 → 6.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +91 -6
package/package.json
CHANGED
|
@@ -1,10 +1,92 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-hooks-global-states",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
4
4
|
"description": "This is a package to easily handling global-state across your react-components No-redux",
|
|
5
5
|
"main": "./bundle.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
7
7
|
"sideEffects": false,
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./bundle.js",
|
|
11
|
+
"require": "./bundle.js",
|
|
12
|
+
"types": "./index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./createContext": {
|
|
15
|
+
"import": "./createContext.js",
|
|
16
|
+
"require": "./createContext.js",
|
|
17
|
+
"types": "./createContext.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./GlobalStore": {
|
|
20
|
+
"import": "./GlobalStore.js",
|
|
21
|
+
"require": "./GlobalStore.js",
|
|
22
|
+
"types": "./GlobalStore.d.ts"
|
|
23
|
+
},
|
|
24
|
+
"./GlobalStoreAbstract": {
|
|
25
|
+
"import": "./GlobalStoreAbstract.js",
|
|
26
|
+
"require": "./GlobalStoreAbstract.js",
|
|
27
|
+
"types": "./GlobalStoreAbstract.d.ts"
|
|
28
|
+
},
|
|
29
|
+
"./createCustomGlobalState": {
|
|
30
|
+
"import": "./createCustomGlobalState.js",
|
|
31
|
+
"require": "./createCustomGlobalState.js",
|
|
32
|
+
"types": "./createCustomGlobalState.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"./createGlobalState": {
|
|
35
|
+
"import": "./createGlobalState.js",
|
|
36
|
+
"require": "./createGlobalState.js",
|
|
37
|
+
"types": "./createGlobalState.d.ts"
|
|
38
|
+
},
|
|
39
|
+
"./combineRetrieverAsynchronously": {
|
|
40
|
+
"import": "./combineRetrieverAsynchronously.js",
|
|
41
|
+
"require": "./combineRetrieverAsynchronously.js",
|
|
42
|
+
"types": "./combineRetrieverAsynchronously.d.ts"
|
|
43
|
+
},
|
|
44
|
+
"./combineRetrieverEmitterAsynchronously": {
|
|
45
|
+
"import": "./combineRetrieverEmitterAsynchronously.js",
|
|
46
|
+
"require": "./combineRetrieverEmitterAsynchronously.js",
|
|
47
|
+
"types": "./combineRetrieverEmitterAsynchronously.d.ts"
|
|
48
|
+
},
|
|
49
|
+
"./types": {
|
|
50
|
+
"import": "./types.js",
|
|
51
|
+
"require": "./types.js",
|
|
52
|
+
"types": "./types.d.ts"
|
|
53
|
+
},
|
|
54
|
+
"./debounce": {
|
|
55
|
+
"import": "./debounce.js",
|
|
56
|
+
"require": "./debounce.js",
|
|
57
|
+
"types": "./debounce.d.ts"
|
|
58
|
+
},
|
|
59
|
+
"./isRecord": {
|
|
60
|
+
"import": "./isRecord.js",
|
|
61
|
+
"require": "./isRecord.js",
|
|
62
|
+
"types": "./isRecord.d.ts"
|
|
63
|
+
},
|
|
64
|
+
"./shallowCompare": {
|
|
65
|
+
"import": "./shallowCompare.js",
|
|
66
|
+
"require": "./shallowCompare.js",
|
|
67
|
+
"types": "./shallowCompare.d.ts"
|
|
68
|
+
},
|
|
69
|
+
"./throwWrongKeyOnActionCollectionConfig": {
|
|
70
|
+
"import": "./throwWrongKeyOnActionCollectionConfig.js",
|
|
71
|
+
"require": "./throwWrongKeyOnActionCollectionConfig.js",
|
|
72
|
+
"types": "./throwWrongKeyOnActionCollectionConfig.d.ts"
|
|
73
|
+
},
|
|
74
|
+
"./uniqueId": {
|
|
75
|
+
"import": "./uniqueId.js",
|
|
76
|
+
"require": "./uniqueId.js",
|
|
77
|
+
"types": "./uniqueId.d.ts"
|
|
78
|
+
},
|
|
79
|
+
"./uniqueSymbol": {
|
|
80
|
+
"import": "./uniqueSymbol.js",
|
|
81
|
+
"require": "./uniqueSymbol.js",
|
|
82
|
+
"types": "./uniqueSymbol.d.ts"
|
|
83
|
+
},
|
|
84
|
+
"./useConstantValueRef": {
|
|
85
|
+
"import": "./useConstantValueRef.js",
|
|
86
|
+
"require": "./useConstantValueRef.js",
|
|
87
|
+
"types": "./useConstantValueRef.d.ts"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
8
90
|
"files": [
|
|
9
91
|
"*.js",
|
|
10
92
|
"*.d.ts"
|
|
@@ -72,17 +154,20 @@
|
|
|
72
154
|
"tslib": "^2.6.2",
|
|
73
155
|
"typescript": "^5.3.3",
|
|
74
156
|
"webpack": "^5.76.3",
|
|
75
|
-
"webpack-cli": "^5.0.1"
|
|
157
|
+
"webpack-cli": "^5.0.1",
|
|
158
|
+
"json-storage-formatter": "^2.0.5"
|
|
76
159
|
},
|
|
77
160
|
"peerDependencies": {
|
|
78
|
-
"react": ">=17.0.0"
|
|
161
|
+
"react": ">=17.0.0",
|
|
162
|
+
"json-storage-formatter": "^2.0.5"
|
|
79
163
|
},
|
|
80
164
|
"peerDependenciesMeta": {
|
|
81
165
|
"react": {
|
|
82
166
|
"optional": false
|
|
167
|
+
},
|
|
168
|
+
"json-storage-formatter": {
|
|
169
|
+
"optional": false
|
|
83
170
|
}
|
|
84
171
|
},
|
|
85
|
-
"dependencies": {
|
|
86
|
-
"json-storage-formatter": "^2.0.5"
|
|
87
|
-
}
|
|
172
|
+
"dependencies": {}
|
|
88
173
|
}
|