react-toast-native 1.0.0 → 1.0.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 +10 -1
  2. package/package.json +33 -6
package/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # react-toast-native
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/react-toast-native.svg)](https://www.npmjs.com/package/react-toast-native)
3
4
  [![MIT License](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
4
5
  [![GitHub](https://img.shields.io/badge/GitHub-iamadhitya1-blue?logo=github)](https://github.com/iamadhitya1)
5
6
  ![Zero Dependencies](https://img.shields.io/badge/dependencies-0-brightgreen)
@@ -9,6 +10,10 @@
9
10
 
10
11
  **2 exports. ~80 lines. No config needed.**
11
12
 
13
+ <div align="center">
14
+ <img src="./demo.svg" alt="react-toast-native demo" width="520"/>
15
+ </div>
16
+
12
17
  ---
13
18
 
14
19
  ## Features
@@ -119,6 +124,10 @@ Built from the real implementation powering **[Sage](https://joinsage.vercel.app
119
124
 
120
125
  ---
121
126
 
127
+ ## Author
128
+
129
+ **[M. Adhitya](https://iamadhitya.vercel.app)** — Founder of [Rewrite Labs](https://rewritelabs.vercel.app), final-year B.Tech Computer Engineering student at IITRAM Ahmedabad. Builds AI products and open source libraries.
130
+
122
131
  ## License
123
132
 
124
- MIT © 2025 [M Adhitya](https://github.com/iamadhitya1)
133
+ MIT © 2025 [M. Adhitya](https://iamadhitya.vercel.app)
package/package.json CHANGED
@@ -1,15 +1,42 @@
1
1
  {
2
2
  "name": "react-toast-native",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Lightweight toast notifications for React. Zero dependencies, 4 types, fully customizable.",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
- "exports": { ".": "./src/index.js" },
8
- "files": ["src", "README.md", "LICENSE"],
9
- "keywords": ["react", "toast", "notification", "alert", "snackbar", "zero-dependency"],
10
- "author": "M Adhitya",
7
+ "exports": {
8
+ ".": "./src/index.js"
9
+ },
10
+ "files": [
11
+ "src",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "keywords": [
16
+ "react",
17
+ "toast",
18
+ "notification",
19
+ "alert",
20
+ "snackbar",
21
+ "zero-dependency",
22
+ "react-toast",
23
+ "react-notification",
24
+ "toast-message",
25
+ "lightweight",
26
+ "no-dependencies",
27
+ "customizable-toast",
28
+ "react-alert"
29
+ ],
30
+ "author": {
31
+ "name": "M. Adhitya",
32
+ "url": "https://iamadhitya.vercel.app",
33
+ "email": "adhitya5119@gmail.com"
34
+ },
35
+ "homepage": "https://iamadhitya.vercel.app",
11
36
  "license": "MIT",
12
- "peerDependencies": { "react": ">=17.0.0" },
37
+ "peerDependencies": {
38
+ "react": ">=17.0.0"
39
+ },
13
40
  "repository": {
14
41
  "type": "git",
15
42
  "url": "https://github.com/iamadhitya1/react-toast-native"