@oxog/state 1.0.0 → 1.2.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/README.md +261 -55
- package/dist/iife/index.global.js +11 -11
- package/dist/index.cjs +2366 -518
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1784 -64
- package/dist/index.d.ts +1784 -64
- package/dist/index.js +2321 -518
- package/dist/index.js.map +1 -1
- package/package.json +11 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oxog/state",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Zero-dependency reactive state management for any framework",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "Zero-dependency reactive state management for any framework - featuring slices, computed values, effects, validation, and middleware support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -39,12 +39,19 @@
|
|
|
39
39
|
"reactive",
|
|
40
40
|
"react",
|
|
41
41
|
"hooks",
|
|
42
|
-
"zustand-alternative",
|
|
43
42
|
"redux-alternative",
|
|
44
43
|
"signals",
|
|
45
44
|
"framework-agnostic",
|
|
46
45
|
"typescript",
|
|
47
|
-
"zero-dependency"
|
|
46
|
+
"zero-dependency",
|
|
47
|
+
"computed",
|
|
48
|
+
"slices",
|
|
49
|
+
"effects",
|
|
50
|
+
"validation",
|
|
51
|
+
"persist",
|
|
52
|
+
"undo-redo",
|
|
53
|
+
"devtools",
|
|
54
|
+
"middleware"
|
|
48
55
|
],
|
|
49
56
|
"author": "Ersin Koç",
|
|
50
57
|
"license": "MIT",
|