@tenedev/toast 1.0.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/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@tenedev/toast",
3
+ "version": "1.0.0",
4
+ "private": false,
5
+ "description": "@tenedev/toast is a lightweight, customizable React component library that provides easy-to-use toast notifications. It helps developers display alerts, success messages, and other notifications in a smooth, non-intrusive way.",
6
+ "keywords": [
7
+ "ui",
8
+ "alert",
9
+ "push",
10
+ "toast",
11
+ "react",
12
+ "react-toast",
13
+ "react-component",
14
+ "popup",
15
+ "notification"
16
+ ],
17
+ "homepage": "https://github.com/TenEplaysOfficial/toast#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/TenEplaysOfficial/toast/issues"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/TenEplaysOfficial/toast.git"
24
+ },
25
+ "license": "MIT",
26
+ "author": "Sriman",
27
+ "contributors": [
28
+ {
29
+ "name": "Sriman",
30
+ "url": "https://github.com/TenEplaysOfficial",
31
+ "role": "Main Developer"
32
+ }
33
+ ],
34
+ "funding": {
35
+ "type": "individual",
36
+ "url": "https://www.patreon.com/teneplays"
37
+ },
38
+ "type": "module",
39
+ "main": "dist/toast.js",
40
+ "module": "dist/toast.mjs",
41
+ "types": "dist/toast.d.ts",
42
+ "scripts": {
43
+ "build": "rollup -c --bundleConfigAsCjs",
44
+ "prettier": "prettier --write .",
45
+ "test": "echo \"Error: no test specified\" && exit 1"
46
+ },
47
+ "files": [
48
+ "dist",
49
+ "README.md"
50
+ ],
51
+ "peerDependencies": {
52
+ "react": ">=18.0.0"
53
+ },
54
+ "devDependencies": {
55
+ "@rollup/plugin-commonjs": "^28.0.2",
56
+ "@rollup/plugin-node-resolve": "^16.0.0",
57
+ "@rollup/plugin-terser": "^0.4.4",
58
+ "@rollup/plugin-typescript": "^12.1.2",
59
+ "@tailwindcss/postcss": "^4.0.5",
60
+ "@types/node": "^22.13.1",
61
+ "@types/react": "^19.0.8",
62
+ "postcss": "^8.5.1",
63
+ "prettier": "^3.5.0",
64
+ "prettier-plugin-tailwindcss": "^0.6.11",
65
+ "rollup": "^4.34.6",
66
+ "rollup-plugin-dts": "^6.1.1",
67
+ "rollup-plugin-peer-deps-external": "^2.2.4",
68
+ "rollup-plugin-postcss": "^4.0.2",
69
+ "tailwindcss": "^4.0.5",
70
+ "tslib": "^2.8.1",
71
+ "typescript": "^5.7.3"
72
+ },
73
+ "dependencies": {
74
+ "lucide-react": "^0.475.0",
75
+ "motion": "^12.4.2"
76
+ }
77
+ }