@persian-caesar/liquid-glass 1.0.1 → 1.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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +10 -5
package/README.md CHANGED
@@ -4,8 +4,7 @@
4
4
 
5
5
  A lightweight, performant, and fully customizable React component that creates a stunning liquid glass / fluid glassmorphism effect using SVG filters and canvas-generated displacement maps.
6
6
 
7
- ![Liquid Glass Preview](https://via.placeholder.com/800x400?text=Liquid+Glass+Effect)
8
- *(Replace with actual screenshot/GIF after adding one)*
7
+ ![Liquid Glass Preview](https://github.com/user-attachments/assets/9307852d-d7db-48f8-9038-14458df97051)
9
8
 
10
9
  ---
11
10
 
@@ -151,4 +150,4 @@ npm run build # production build
151
150
 
152
151
  ## Author
153
152
 
154
- Made with ❤️ by **[Persian-Caesar](https://github.com/persian-caesar/)**
153
+ Made with ❤️ by **[Persian-Caesar](https://github.com/persian-caesar/)**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@persian-caesar/liquid-glass",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Liquid Glass effect component for React - Beautiful glassmorphism with displacement distortion.",
5
5
  "author": "Sobhan-SRZA (mr.sinre) & Persian Caesar",
6
6
  "license": "MIT",
@@ -31,6 +31,7 @@
31
31
  "build": "tsup",
32
32
  "dev": "tsup --watch",
33
33
  "clean": "rm -rf dist",
34
+ "test": "vite ./example",
34
35
  "prepublishOnly": "npm run clean && npm run build"
35
36
  },
36
37
  "peerDependencies": {
@@ -38,10 +39,14 @@
38
39
  "react-dom": "^18.0.0 || ^19.0.0"
39
40
  },
40
41
  "devDependencies": {
41
- "typescript": "^5.8.0",
42
- "tsup": "^8.4.0",
42
+ "@tailwindcss/vite": "^4.3.1",
43
43
  "@types/react": "^19.0.0",
44
- "@types/react-dom": "^19.0.0"
44
+ "@types/react-dom": "^19.0.0",
45
+ "@vitejs/plugin-react": "^6.0.3",
46
+ "tailwindcss": "^4.3.1",
47
+ "tsup": "^8.4.0",
48
+ "typescript": "^5.8.0",
49
+ "vite": "^8.1.0"
45
50
  },
46
51
  "keywords": [
47
52
  "react",
@@ -61,4 +66,4 @@
61
66
  "sobhan-srza",
62
67
  "framer-motion-alternative"
63
68
  ]
64
- }
69
+ }