react-beauty-calendar 1.0.3 → 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.
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "license": "MIT",
13
13
  "private": false,
14
- "version": "1.0.3",
14
+ "version": "1.0.4",
15
15
  "keywords": [
16
16
  "react",
17
17
  "component",
@@ -22,10 +22,8 @@
22
22
  "booking"
23
23
  ],
24
24
  "type": "module",
25
- "main": "dist/react-beauty-calendar.js",
26
- "types": "dist/main.d.ts",
27
- "exports": "./dist/main.js",
28
- "module": "./dist/main.js",
25
+ "main": "dist/build/main.cjs.js",
26
+ "module": "dist/build/main.es.js",
29
27
  "files": [
30
28
  "dist",
31
29
  "README.md"
@@ -63,8 +61,6 @@
63
61
  "date-fns": "^4.1.0",
64
62
  "dayjs": "^1.11.13",
65
63
  "lucide-react": "^0.483.0",
66
- "react": "^19.0.0",
67
- "react-dom": "^19.0.0",
68
64
  "react-resizable": "^3.0.5",
69
65
  "react-router": "^7.4.0",
70
66
  "tailwind-merge": "^3.0.2",
@@ -107,7 +103,10 @@
107
103
  "typescript": "~5.7.2",
108
104
  "typescript-eslint": "^8.24.1",
109
105
  "vite": "^6.2.0",
110
- "vitest": "^3.0.9"
106
+ "vite-plugin-dts": "^4.5.3",
107
+ "vitest": "^3.0.9",
108
+ "react": "^19.0.0",
109
+ "react-dom": "^19.0.0"
111
110
  },
112
111
  "eslintConfig": {
113
112
  "extends": [
@@ -116,5 +115,9 @@
116
115
  },
117
116
  "sideEffects": [
118
117
  "**/*.css"
119
- ]
118
+ ],
119
+ "peerDependencies": {
120
+ "react": ">=18.0.0 <20.0.0",
121
+ "react-dom": ">=18.0.0 <20.0.0"
122
+ }
120
123
  }