robot-toast 2.1.8 → 2.2.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.
- package/LICENSE +21 -0
- package/README.md +31 -6
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +65 -52
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +65 -52
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "robot-toast",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "A lightweight, framework-agnostic toast notification library with an animated robot character. Tree-shakeable robots, draggable with swipe-to-dismiss, toast.promise(), and an optional React hook.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -48,8 +48,7 @@
|
|
|
48
48
|
"./dist/react.mjs"
|
|
49
49
|
],
|
|
50
50
|
"files": [
|
|
51
|
-
"dist"
|
|
52
|
-
"MIGRATION.md"
|
|
51
|
+
"dist"
|
|
53
52
|
],
|
|
54
53
|
"scripts": {
|
|
55
54
|
"build": "tsup",
|
|
@@ -110,4 +109,4 @@
|
|
|
110
109
|
"url": "https://github.com/Pratham2703005/robot-toast-package/issues"
|
|
111
110
|
},
|
|
112
111
|
"homepage": "https://robot-toast.vercel.app/"
|
|
113
|
-
}
|
|
112
|
+
}
|