spry-apps-dropdown 1.0.1 → 1.0.2

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 +1 -7
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -18,13 +18,7 @@ A React component for displaying Spry apps in a dropdown menu with dynamic API i
18
18
  npm install spry-apps-dropdown
19
19
  ```
20
20
 
21
- ### Peer Dependencies
22
-
23
- Make sure you have these installed:
24
-
25
- ```bash
26
- npm install react react-dom @mui/material framer-motion @emotion/react @emotion/styled
27
- ```
21
+ That's it! All dependencies are included. Just make sure your project already has React installed (any React project does).
28
22
 
29
23
  ## Usage
30
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spry-apps-dropdown",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "React dropdown component for displaying Spry apps with dynamic API integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -31,9 +31,13 @@
31
31
  ],
32
32
  "author": "",
33
33
  "license": "MIT",
34
- "peerDependencies": {
34
+ "dependencies": {
35
35
  "@mui/material": "^6.0.0",
36
36
  "framer-motion": "^11.0.0",
37
+ "@emotion/react": "^11.11.0",
38
+ "@emotion/styled": "^11.11.0"
39
+ },
40
+ "peerDependencies": {
37
41
  "react": "^18.0.0 || ^19.0.0",
38
42
  "react-dom": "^18.0.0 || ^19.0.0"
39
43
  },