react-state-basis 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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  [![npm version](https://badge.fury.io/js/react-state-basis.svg)](https://www.npmjs.com/package/react-state-basis)
2
+ [![View on GitHub](https://img.shields.io/badge/View_Documentation-GitHub-black?logo=github)](https://github.com/liovic/react-state-basis#readme)
2
3
 
3
4
  # 📐 REACT-STATE-BASIS
4
5
  ### **Behavioral State Analysis for React**
@@ -18,6 +19,14 @@ Inspired by the work of **Sheldon Axler** (*"Linear Algebra Done Right"*), Basis
18
19
 
19
20
  ---
20
21
 
22
+ ## 📦 Installation
23
+
24
+ ```bash
25
+ npm i react-state-basis
26
+ ```
27
+
28
+ ---
29
+
21
30
  ## 🧠 The Philosophy: State as a Vector Space
22
31
 
23
32
  In a perfectly architected application, every state variable should represent a **unique dimension of information**.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-state-basis",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A linear algebra-powered React architectural tool that detects redundant state and synchronization anti-patterns by modeling state transitions as vectors in a basis.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",