state-invariant 0.1.0 → 0.1.1
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 +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "state-invariant",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Cross-verify state transitions against declared invariants, in any state management library (Redux, Zustand, or plain reducers). Not shape validation like Zod - transition validation: given prev state, next state, and the action that connected them, was it legal?",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -48,6 +48,14 @@
|
|
|
48
48
|
"invariant",
|
|
49
49
|
"runtime checking"
|
|
50
50
|
],
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/amalv35/state-invariant.git"
|
|
54
|
+
},
|
|
55
|
+
"bugs": {
|
|
56
|
+
"url": "https://github.com/amalv35/state-invariant/issues"
|
|
57
|
+
},
|
|
58
|
+
"homepage": "https://github.com/amalv35/state-invariant#readme",
|
|
51
59
|
"author": "Amal Vijayakumar",
|
|
52
60
|
"license": "MIT",
|
|
53
61
|
"devDependencies": {
|