@cookified/toastify 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/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@cookified/toastify",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A delightful React toast notification library with folder stack animations and tactile micro-bevels.",
5
5
  "type": "module",
6
- "main": "./dist/index.cjs",
7
- "module": "./dist/index.js",
8
- "types": "./dist/index.d.ts",
6
+ "main": "./lib/index.cjs",
7
+ "module": "./lib/index.js",
8
+ "types": "./lib/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.js",
13
- "require": "./dist/index.cjs"
11
+ "types": "./lib/index.d.ts",
12
+ "import": "./lib/index.js",
13
+ "require": "./lib/index.cjs"
14
14
  }
15
15
  },
16
16
  "files": [
17
- "dist",
17
+ "lib",
18
18
  "README.md",
19
19
  "LICENSE"
20
20
  ],
@@ -40,12 +40,12 @@
40
40
  "license": "MIT",
41
41
  "scripts": {
42
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",
43
+ "build:lib": "tsup src/index.ts --format esm,cjs --dts --out-dir lib --tsconfig tsconfig.lib.json --external react,react-dom,motion,lucide-react",
44
+ "build:site": "vite build",
45
45
  "build": "npm run build:lib && npm run build:site",
46
- "prepublishOnly": "rm -rf dist && npm run build:lib",
46
+ "prepublishOnly": "rm -rf lib && npm run build:lib",
47
47
  "lint": "eslint .",
48
- "preview": "vite preview --outDir dist-site"
48
+ "preview": "vite preview"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "lucide-react": "^1.41.0 || ^0.400.0",
@@ -58,19 +58,12 @@
58
58
  "optional": true
59
59
  }
60
60
  },
61
- "dependencies": {
61
+ "devDependencies": {
62
+ "@eslint/js": "^10.0.1",
62
63
  "@fontsource/geist-mono": "^5.3.0",
63
64
  "@fontsource/geist-sans": "^5.3.0",
64
65
  "@fontsource/inter": "^5.3.0",
65
66
  "@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
67
  "@types/node": "^24.13.3",
75
68
  "@types/react": "^19.2.18",
76
69
  "@types/react-dom": "^19.2.4",
@@ -80,7 +73,12 @@
80
73
  "eslint-plugin-react-hooks": "^7.1.1",
81
74
  "eslint-plugin-react-refresh": "^0.5.4",
82
75
  "globals": "^17.11.0",
76
+ "lucide-react": "^1.41.0",
77
+ "motion": "^13.2.0",
83
78
  "prettier": "^3.9.6",
79
+ "react": "^19.2.8",
80
+ "react-dom": "^19.2.8",
81
+ "tailwindcss": "^4.3.3",
84
82
  "tsup": "^8.5.1",
85
83
  "typescript": "~6.0.2",
86
84
  "typescript-eslint": "^8.67.0",
File without changes
File without changes
File without changes
File without changes