@manas-dev/global-themes 1.0.2 → 1.0.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 +7 -0
  2. package/package.json +12 -3
package/README.md CHANGED
@@ -69,6 +69,13 @@ const App = () => {
69
69
  | `className` | `string` | `''` | CSS class for the wrapper element (useful for positioning). |
70
70
  | `themes` | `ThemeColor[]` | `Defaults` | Optional array of theme objects to override the default presets. |
71
71
 
72
+ ## Attribution
73
+
74
+ If you use this package in your project, please cite the author or repository:
75
+
76
+ > **Global Themes** by Manas Barman (@manas-dev)
77
+ > Repository: [github.com/ManasBarman229/global-themes](https://github.com/ManasBarman229/global-themes)
78
+
72
79
  ## License
73
80
 
74
81
  MIT
package/package.json CHANGED
@@ -1,7 +1,16 @@
1
1
  {
2
2
  "name": "@manas-dev/global-themes",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "A beautiful, animated theme picker component.",
5
+ "keywords": [
6
+ "react",
7
+ "theme-switcher",
8
+ "dark-mode",
9
+ "ui-component",
10
+ "tailwind",
11
+ "color-picker",
12
+ "accessibility"
13
+ ],
5
14
  "main": "dist/index.cjs.js",
6
15
  "module": "dist/index.esm.js",
7
16
  "types": "dist/index.d.ts",
@@ -9,8 +18,8 @@
9
18
  "build": "rollup -c"
10
19
  },
11
20
  "peerDependencies": {
12
- "react": "^18.0.0",
13
- "react-dom": "^18.0.0"
21
+ "react": "^18.0.0 || ^19.0.0",
22
+ "react-dom": "^18.0.0 || ^19.0.0"
14
23
  },
15
24
  "dependencies": {
16
25
  "lucide-react": "^0.263.1"