-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.32 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "snack-alert",
"description": "A simple React toast notification library with Tailwind CSS",
"author": {
"name": "Emmanuel Bankole",
"email": "thecodeguyy@gmail.com",
"url": "https://github.com/codewithdripzy"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codewithdripzy/SnackAlert.git"
},
"bugs": {
"url": "https://github.com/codewithdripzy/SnackAlert/issues"
},
"homepage": "https://github.com/codewithdripzy/SnackAlert#readme",
"keywords": [
"alert",
"snackbar",
"react",
"toast",
"notification",
"tailwindcss",
"snackbar",
"toastify",
"toastification",
"react-toast",
"react-toastify",
"react-toast-notification",
"react-toastification",
"react-toastify-component"
],
"private": false,
"version": "1.0.18",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"css": [
"dist/types/css.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/snack-alert.es.js",
"require": "./dist/snack-alert.umd.js"
},
"./css": {
"import": "./dist/snack-alert.css",
"types": "./dist/types/css.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && tsc --emitDeclarationOnly --declaration --outDir dist",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"preview": "vite preview"
},
"peerDependencies": {
"lucide-react": "^0.562.0",
"tailwindcss": "^4.1.11"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.13",
"path": "^0.12.7",
"rollup-plugin-postcss": "^4.0.2"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.21",
"globals": "^16.4.0",
"lucide-react": "^0.562.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.1.13",
"typescript": "~5.9.2",
"typescript-eslint": "^8.44.1",
"vite": "^7.1.7",
"vite-plugin-dts": "^4.5.4"
}
}