aura-glass 1.1.0 → 2.0.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.
package/README.md CHANGED
@@ -164,22 +164,35 @@ AuraGlass now includes complete production-ready AI services transforming demo c
164
164
 
165
165
  ## 🚀 Installation & Deployment
166
166
 
167
- ### Install Package
167
+ ### Install Package (v2.0.0+)
168
+
169
+ **⚠️ Breaking Change:** Three.js packages are now peer dependencies
170
+
171
+ **Step 1:** Install peer dependencies
172
+ ```bash
173
+ npm install react react-dom three @react-three/fiber framer-motion
174
+ # Optional: 3D helpers (recommended)
175
+ npm install @react-three/drei
176
+ ```
177
+
178
+ **Step 2:** Install AuraGlass
168
179
  ```bash
169
- npm install @aura/aura-glass
180
+ npm install aura-glass
170
181
  # or
171
- yarn add @aura/aura-glass
182
+ yarn add aura-glass
172
183
  # or
173
- pnpm add @aura/aura-glass
184
+ pnpm add aura-glass
174
185
  ```
175
186
 
187
+ 📘 **See [INSTALLATION.md](./INSTALLATION.md) for upgrade guide from v1.x and troubleshooting**
188
+
176
189
  ### Production Deployment
177
190
  ```bash
178
191
  # Configure environment variables
179
192
  cp .env.example .env
180
193
 
181
194
  # Install dependencies
182
- npm install --legacy-peer-deps
195
+ npm install
183
196
 
184
197
  # Deploy with Docker (recommended)
185
198
  docker-compose up -d