vibra 1.0.2 → 1.0.3
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 +10 -0
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -102,6 +102,16 @@ interface SubscribeOptions {
|
|
|
102
102
|
}
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
+
## ⚛️ React Integration
|
|
106
|
+
|
|
107
|
+
For React applications, we provide a dedicated package `vibra-react` that offers React hooks and components for seamless integration with Vibra stores. Check out the [vibra-react documentation](https://www.npmjs.com/package/vibra-react) for more details.
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
npm install vibra-react
|
|
111
|
+
# or
|
|
112
|
+
bun add vibra-react
|
|
113
|
+
```
|
|
114
|
+
|
|
105
115
|
## 💡 Why Vibra?
|
|
106
116
|
- **Ultra-lightweight**: No bloat, just state
|
|
107
117
|
- **Predictable**: No magic, no proxies, no hidden behaviors
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibra",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Vibra: A blazing fast, type-safe, and minimal state management library for TypeScript and JavaScript. Effortless reactivity, subscriptions, and memory safety in a tiny package.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
"url": "https://github.com/rrios-dev/vibra"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@eslint/js": "^9.
|
|
36
|
+
"@eslint/js": "^9.39.2",
|
|
37
37
|
"@types/bun": "latest",
|
|
38
|
-
"@types/jest": "^
|
|
39
|
-
"eslint": "^9.
|
|
40
|
-
"globals": "^
|
|
41
|
-
"jest": "^
|
|
42
|
-
"ts-jest": "^29.
|
|
43
|
-
"tsup": "^8.
|
|
44
|
-
"typescript": "^5.
|
|
45
|
-
"typescript-eslint": "^8.
|
|
38
|
+
"@types/jest": "^30.0.0",
|
|
39
|
+
"eslint": "^9.39.2",
|
|
40
|
+
"globals": "^17.0.0",
|
|
41
|
+
"jest": "^30.2.0",
|
|
42
|
+
"ts-jest": "^29.4.6",
|
|
43
|
+
"tsup": "^8.5.1",
|
|
44
|
+
"typescript": "^5.9.3",
|
|
45
|
+
"typescript-eslint": "^8.52.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"typescript": "^5.0.0"
|
|
49
49
|
}
|
|
50
|
-
}
|
|
50
|
+
}
|