state-jet 2.4.10 → 2.4.11
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 +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "state-jet",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.11",
|
|
4
4
|
"description": "Ultra-lightweight global state management for React",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -87,6 +87,7 @@
|
|
|
87
87
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
88
88
|
"globals": "^17.4.0",
|
|
89
89
|
"husky": "^9.1.7",
|
|
90
|
+
"immer": "^10.1.1",
|
|
90
91
|
"jsdom": "^26.0.0",
|
|
91
92
|
"lint-staged": "^15.4.3",
|
|
92
93
|
"prettier": "^3.5.3",
|
|
@@ -101,17 +102,18 @@
|
|
|
101
102
|
"typescript-eslint": "^8.57.2",
|
|
102
103
|
"vitest": "^4.1.2"
|
|
103
104
|
},
|
|
104
|
-
"dependencies": {
|
|
105
|
-
"immer": "^10.1.1"
|
|
106
|
-
},
|
|
107
105
|
"peerDependencies": {
|
|
108
106
|
"@types/react": ">=18.0.0",
|
|
107
|
+
"immer": ">=9.0.6",
|
|
109
108
|
"react": ">=18.0.0"
|
|
110
109
|
},
|
|
111
110
|
"peerDependenciesMeta": {
|
|
112
111
|
"@types/react": {
|
|
113
112
|
"optional": true
|
|
114
113
|
},
|
|
114
|
+
"immer": {
|
|
115
|
+
"optional": true
|
|
116
|
+
},
|
|
115
117
|
"react": {
|
|
116
118
|
"optional": true
|
|
117
119
|
}
|