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.
- package/README.md +10 -1
- package/package.json +33 -6
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# react-toast-native
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/react-toast-native)
|
|
3
4
|
[](LICENSE)
|
|
4
5
|
[](https://github.com/iamadhitya1)
|
|
5
6
|

|
|
@@ -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://
|
|
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.
|
|
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": {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
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": {
|
|
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"
|