@ilamy/calendar 1.6.3 → 1.8.0
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/README.md +103 -37
- package/dist/index.d.ts +74 -28
- package/dist/index.js +6 -6
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ilamy/calendar",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "A full-featured React calendar component library built with Shadcn-Ui, Tailwind CSS, and TypeScript.",
|
|
5
5
|
"author": "Sujeet Kc",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"LICENSE"
|
|
47
47
|
],
|
|
48
48
|
"scripts": {
|
|
49
|
-
"dev": "
|
|
49
|
+
"dev": "bunx vite",
|
|
50
50
|
"start": "NODE_ENV=production bun src/index.tsx",
|
|
51
51
|
"build": "NODE_ENV=production bunx bunup",
|
|
52
52
|
"lint": "bunx biome lint . --diagnostic-level=error",
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@biomejs/biome": "^2.4.9",
|
|
98
98
|
"@happy-dom/global-registrator": "^18.0.1",
|
|
99
|
+
"@tailwindcss/vite": "^4.3.0",
|
|
99
100
|
"@testing-library/dom": "^10.4.1",
|
|
100
101
|
"@testing-library/jest-dom": "^6.9.1",
|
|
101
102
|
"@testing-library/react": "^16.3.2",
|
|
@@ -103,11 +104,13 @@
|
|
|
103
104
|
"@types/react": "^19.2.14",
|
|
104
105
|
"@types/react-dom": "^19.2.3",
|
|
105
106
|
"@types/rrule": "^2.2.9",
|
|
107
|
+
"@vitejs/plugin-react": "^6.0.2",
|
|
106
108
|
"bun-plugin-tailwind": "^0.1.2",
|
|
107
109
|
"bunup": "^0.16.31",
|
|
108
110
|
"husky": "^9.1.7",
|
|
109
111
|
"lint-staged": "^16.4.0",
|
|
110
|
-
"typescript": "^6.0.2"
|
|
112
|
+
"typescript": "^6.0.2",
|
|
113
|
+
"vite": "^8.0.14"
|
|
111
114
|
},
|
|
112
115
|
"publishConfig": {
|
|
113
116
|
"access": "public"
|