@cookified/toastify 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/LICENSE +21 -0
- package/README.md +296 -0
- package/dist/index.cjs +779 -0
- package/dist/index.d.cts +155 -0
- package/dist/index.d.ts +155 -0
- package/dist/index.js +742 -0
- package/package.json +89 -0
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cookified/toastify",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A delightful React toast notification library with folder stack animations and tactile micro-bevels.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"sideEffects": false,
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/cookified/toastify.git"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"react",
|
|
31
|
+
"toast",
|
|
32
|
+
"notifications",
|
|
33
|
+
"toastify",
|
|
34
|
+
"motion",
|
|
35
|
+
"framer-motion",
|
|
36
|
+
"animations",
|
|
37
|
+
"react-19"
|
|
38
|
+
],
|
|
39
|
+
"author": "Cookified",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"scripts": {
|
|
42
|
+
"dev": "vite",
|
|
43
|
+
"build:lib": "tsup src/index.ts --format esm,cjs --dts --tsconfig tsconfig.lib.json --external react,react-dom,motion,lucide-react",
|
|
44
|
+
"build:site": "vite build --outDir dist-site",
|
|
45
|
+
"build": "npm run build:lib && npm run build:site",
|
|
46
|
+
"prepublishOnly": "rm -rf dist && npm run build:lib",
|
|
47
|
+
"lint": "eslint .",
|
|
48
|
+
"preview": "vite preview --outDir dist-site"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"lucide-react": "^1.41.0 || ^0.400.0",
|
|
52
|
+
"motion": "^12.0.0 || ^13.0.0",
|
|
53
|
+
"react": ">=18.0.0",
|
|
54
|
+
"react-dom": ">=18.0.0"
|
|
55
|
+
},
|
|
56
|
+
"peerDependenciesMeta": {
|
|
57
|
+
"lucide-react": {
|
|
58
|
+
"optional": true
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@fontsource/geist-mono": "^5.3.0",
|
|
63
|
+
"@fontsource/geist-sans": "^5.3.0",
|
|
64
|
+
"@fontsource/inter": "^5.3.0",
|
|
65
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
66
|
+
"lucide-react": "^1.41.0",
|
|
67
|
+
"motion": "^13.2.0",
|
|
68
|
+
"react": "^19.2.8",
|
|
69
|
+
"react-dom": "^19.2.8",
|
|
70
|
+
"tailwindcss": "^4.3.3"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@eslint/js": "^10.0.1",
|
|
74
|
+
"@types/node": "^24.13.3",
|
|
75
|
+
"@types/react": "^19.2.18",
|
|
76
|
+
"@types/react-dom": "^19.2.4",
|
|
77
|
+
"@vitejs/plugin-react": "^6.1.0",
|
|
78
|
+
"eslint": "^10.9.0",
|
|
79
|
+
"eslint-config-prettier": "^10.1.8",
|
|
80
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
81
|
+
"eslint-plugin-react-refresh": "^0.5.4",
|
|
82
|
+
"globals": "^17.11.0",
|
|
83
|
+
"prettier": "^3.9.6",
|
|
84
|
+
"tsup": "^8.5.1",
|
|
85
|
+
"typescript": "~6.0.2",
|
|
86
|
+
"typescript-eslint": "^8.67.0",
|
|
87
|
+
"vite": "^8.2.2"
|
|
88
|
+
}
|
|
89
|
+
}
|