react-state-bucket 1.0.9 → 1.1.0
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 +11 -1
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0
|
|
2
|
+
"version": "1.1.0",
|
|
3
3
|
"name": "react-state-bucket",
|
|
4
4
|
"author": "Naxrul Ahmed",
|
|
5
5
|
"license": "MIT",
|
|
@@ -9,6 +9,10 @@
|
|
|
9
9
|
},
|
|
10
10
|
"main": "./index.js",
|
|
11
11
|
"description": "A lightweight and powerful package designed to manage states globally in React applications. It provides CRUD operations for your state data with ease, enabling developers to handle complex state management scenarios without the need for heavy libraries.",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/devnax/react-state-bucket/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/devnax/react-state-bucket#readme",
|
|
12
16
|
"scripts": {
|
|
13
17
|
"start": "makepack serve",
|
|
14
18
|
"pack": "makepack pack",
|
|
@@ -22,9 +26,15 @@
|
|
|
22
26
|
"react-dom": "^19.0.0",
|
|
23
27
|
"typescript": "^4.4.2"
|
|
24
28
|
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"react": ">=17.0.0",
|
|
31
|
+
"react-dom": ">=17.0.0"
|
|
32
|
+
},
|
|
25
33
|
"keywords": [
|
|
26
34
|
"react",
|
|
27
35
|
"state management",
|
|
36
|
+
"state management for React",
|
|
37
|
+
"React state library",
|
|
28
38
|
"global state",
|
|
29
39
|
"CRUD operations",
|
|
30
40
|
"lightweight",
|