state-jet 1.0.3 → 1.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@ A zero-boilerplate, ultra-fast global state management library for React. No con
5
5
  ## 🚀 Why state-jet?
6
6
  - ✅ **No Context, No Providers** – Works outside React, reducing unnecessary re-renders.
7
7
  - ✅ **Automatic Re-Renders** – Only components using specific state values update.
8
- - ✅ **Super Lightweight** – Less than **1KB** minified!
8
+ - ✅ **Super Lightweight** – Ultra minified!
9
9
  - ✅ **SSR & Next.js Support** – Works on both client and server.
10
10
 
11
11
  ## 🛠 Installation
@@ -25,7 +25,7 @@ function Counter() {
25
25
  }
26
26
  ```
27
27
 
28
- ## ⚡ Comparison with Zustand
28
+ ## ⚡ Comparison Table
29
29
 
30
30
  |Feature|Redux|Recoil|MobX|Jotai|state-jet|
31
31
  |:----|:----|:----|:----|:----|:----|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "state-jet",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Ultra-lightweight global state management for React",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",