@insforge/react 0.6.1 → 0.6.2

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 +0 -6
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -26,12 +26,6 @@ yarn add @insforge/react
26
26
  pnpm add @insforge/react
27
27
  ```
28
28
 
29
- **Required Peer Dependencies:**
30
-
31
- ```bash
32
- npm install react@^19.0.0 react-dom@^19.0.0
33
- ```
34
-
35
29
  #### Environment Variables
36
30
 
37
31
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insforge/react",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "type": "module",
5
5
  "description": "Framework-agnostic React authentication UI components for Insforge - reusable across all frameworks",
6
6
  "main": "./dist/index.cjs",
@@ -81,18 +81,18 @@
81
81
  "author": "Insforge",
82
82
  "license": "MIT",
83
83
  "peerDependencies": {
84
- "react": "^19.0.0",
85
- "react-dom": "^19.0.0"
84
+ "react": ">=18.0.0 <20.0.0",
85
+ "react-dom": ">=18.0.0 <20.0.0"
86
86
  },
87
87
  "dependencies": {
88
88
  "@insforge/sdk": "^0.0.58",
89
- "@insforge/shared": "^0.1.0",
89
+ "@insforge/shared": "^0.1.3",
90
90
  "@insforge/shared-schemas": "^1.1.19",
91
91
  "lucide-react": "^0.552.0",
92
92
  "zod": "^4.1.12"
93
93
  },
94
94
  "devDependencies": {
95
- "@types/react": "^19.2.2",
96
- "@types/react-dom": "^19.2.2"
95
+ "@types/react": "^18.2.0",
96
+ "@types/react-dom": "^18.2.0"
97
97
  }
98
98
  }