aura-toast 0.2.0 → 0.3.0

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 +7 -0
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -1,7 +1,14 @@
1
1
  # AuraToast: Premium React Toast & Notification Manager
2
2
 
3
+ ![AuraToast Preview](./aura-toast-preview.png)
4
+
3
5
  A high-performance npm package for React toast notifications with a stunning glassmorphism design and a strict "single-toast-at-a-time" constraint.
4
6
 
7
+ ## Live Demo & Playground
8
+
9
+ - **Interactive Playground**: [Try it on StackBlitz](https://stackblitz.com/github/damicode18/aura-toast)
10
+ - **Live Showcase**: [damicode18.github.io/aura-toast](https://damicode18.github.io/aura-toast/)
11
+
5
12
  ## Features
6
13
 
7
14
  - ✨ **Unique Aesthetic**: Modern glassmorphism design with `backdrop-filter`, glowing borders, and sleek transitions.
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "aura-toast",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
+ "homepage": "https://damicode18.github.io/aura-toast/",
4
5
  "description": "Premium React toast notifications with glassmorphism design. Lightweight, customizable, and enforces a single-toast constraint for clean UI.",
5
6
  "main": "dist/aura-toast.cjs.js",
6
7
  "module": "dist/aura-toast.es.js",
@@ -14,7 +15,9 @@
14
15
  "dev": "vite",
15
16
  "build": "vite build && tsc-alias",
16
17
  "test": "vitest run",
17
- "preview": "vite preview"
18
+ "preview": "vite preview",
19
+ "predeploy": "npm run build",
20
+ "deploy": "gh-pages -d dist"
18
21
  },
19
22
  "keywords": [
20
23
  "react-toast",
@@ -36,7 +39,6 @@
36
39
  "bugs": {
37
40
  "url": "https://github.com/damicode18/aura-toast/issues"
38
41
  },
39
- "homepage": "https://github.com/damicode18/aura-toast#readme",
40
42
  "devDependencies": {
41
43
  "@testing-library/jest-dom": "^6.9.1",
42
44
  "@testing-library/react": "^16.3.2",
@@ -45,6 +47,7 @@
45
47
  "@types/react-dom": "^18.2.0",
46
48
  "@vitejs/plugin-react": "^4.0.0",
47
49
  "@vitest/ui": "^4.1.0",
50
+ "gh-pages": "^6.3.0",
48
51
  "jsdom": "^28.1.0",
49
52
  "react": "^18.2.0",
50
53
  "react-dom": "^18.2.0",