@sohanemon/utils 6.4.3 → 6.4.4

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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +4 -6
package/README.md CHANGED
@@ -35,6 +35,16 @@ or
35
35
  yarn add @sohanemon/utils
36
36
  ```
37
37
 
38
+ ### Peer Dependencies
39
+
40
+ This package has several peer dependencies that you must install separately:
41
+
42
+ ```bash
43
+ npm install react react-dom @iconify/react clsx tailwind-merge @radix-ui/react-slot
44
+ ```
45
+
46
+ These dependencies are expected to be provided by your application and are not bundled with this package.
47
+
38
48
  ## Usage
39
49
 
40
50
  ### Importing Utilities
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sohanemon/utils",
3
- "version": "6.4.3",
3
+ "version": "6.4.4",
4
4
  "author": "Sohan Emon <sohanemon@outlook.com>",
5
5
  "description": "",
6
6
  "type": "module",
@@ -80,19 +80,17 @@
80
80
  "@vitest/ui": "^4.0.14",
81
81
  "jsdom": "^27.2.0",
82
82
  "tsdown": "^0.16.4",
83
+ "typedoc": "^0.28.15",
83
84
  "typedoc-plugin-markdown": "^4.9.0",
84
85
  "typescript": "^5.9.3",
85
86
  "vite": "npm:rolldown-vite@^7.2.5",
86
87
  "vitest": "^4.0.14"
87
88
  },
88
- "dependencies": {
89
+ "peerDependencies": {
89
90
  "@iconify/react": "^6.0.2",
90
- "@radix-ui/react-slot": "^1.2.4",
91
91
  "clsx": "^2.1.1",
92
92
  "tailwind-merge": "^3.3.1",
93
- "typedoc": "^0.28.15"
94
- },
95
- "peerDependencies": {
93
+ "@radix-ui/react-slot": "^1.2.4",
96
94
  "react": "^19.2.0",
97
95
  "react-dom": "^19.2.0"
98
96
  },