@ilamy/calendar 1.4.0 → 1.5.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/dist/index.d.ts +32 -22
- package/dist/index.js +6 -6
- package/package.json +20 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ilamy/calendar",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.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",
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
"README.md",
|
|
46
46
|
"LICENSE"
|
|
47
47
|
],
|
|
48
|
-
"sideEffects": false,
|
|
49
48
|
"scripts": {
|
|
50
49
|
"dev": "bun --hot src/index.tsx",
|
|
51
50
|
"start": "NODE_ENV=production bun src/index.tsx",
|
|
@@ -63,18 +62,21 @@
|
|
|
63
62
|
"ci": "bun run check && bun run type-check && bun run test && bun run build",
|
|
64
63
|
"pre-commit": "bun run check:fix",
|
|
65
64
|
"prepare": "bunx husky",
|
|
65
|
+
"prepack": "bun scripts/prepack.ts",
|
|
66
|
+
"postpack": "bun scripts/postpack.ts",
|
|
66
67
|
"release": "bun run ci && npm publish --access public",
|
|
67
68
|
"version:patch": "npm version patch",
|
|
68
69
|
"version:minor": "npm version minor",
|
|
69
70
|
"version:major": "npm version major"
|
|
70
71
|
},
|
|
71
72
|
"peerDependencies": {
|
|
72
|
-
"react": "^19.
|
|
73
|
-
"react-dom": "^19.
|
|
74
|
-
"tailwindcss": "^4.1
|
|
73
|
+
"react": "^19.2.0",
|
|
74
|
+
"react-dom": "^19.2.0",
|
|
75
|
+
"tailwindcss": "^4.2.1",
|
|
75
76
|
"tailwindcss-animate": "^1.0.7"
|
|
76
77
|
},
|
|
77
78
|
"dependencies": {
|
|
79
|
+
"@base-ui/react": "^1.3.0",
|
|
78
80
|
"@dnd-kit/core": "^6.3.1",
|
|
79
81
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
80
82
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
@@ -87,29 +89,32 @@
|
|
|
87
89
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
88
90
|
"class-variance-authority": "^0.7.1",
|
|
89
91
|
"clsx": "^2.1.1",
|
|
90
|
-
"dayjs": "^1.11.
|
|
92
|
+
"dayjs": "^1.11.20",
|
|
91
93
|
"lucide-react": "^0.475.0",
|
|
92
|
-
"motion": "^12.
|
|
93
|
-
"
|
|
94
|
+
"motion": "^12.36.0",
|
|
95
|
+
"radix-ui": "^1.4.3",
|
|
96
|
+
"react-day-picker": "^9.14.0",
|
|
94
97
|
"rrule": "^2.8.1",
|
|
95
|
-
"tailwind-merge": "^3.
|
|
98
|
+
"tailwind-merge": "^3.5.0"
|
|
96
99
|
},
|
|
97
100
|
"devDependencies": {
|
|
98
|
-
"@biomejs/biome": "^2.
|
|
101
|
+
"@biomejs/biome": "^2.4.9",
|
|
99
102
|
"@happy-dom/global-registrator": "^18.0.1",
|
|
100
103
|
"@testing-library/dom": "^10.4.1",
|
|
101
104
|
"@testing-library/jest-dom": "^6.9.1",
|
|
102
|
-
"@testing-library/react": "^16.3.
|
|
105
|
+
"@testing-library/react": "^16.3.2",
|
|
103
106
|
"@types/bun": "latest",
|
|
104
|
-
"@types/react": "^19.2.
|
|
107
|
+
"@types/react": "^19.2.14",
|
|
105
108
|
"@types/react-dom": "^19.2.3",
|
|
106
109
|
"@types/rrule": "^2.2.9",
|
|
107
110
|
"bun-plugin-tailwind": "^0.1.2",
|
|
108
|
-
"bunup": "^0.16.
|
|
111
|
+
"bunup": "^0.16.31",
|
|
109
112
|
"husky": "^9.1.7",
|
|
110
|
-
"lint-staged": "^16.
|
|
113
|
+
"lint-staged": "^16.4.0",
|
|
114
|
+
"typescript": "^6.0.2"
|
|
111
115
|
},
|
|
112
116
|
"publishConfig": {
|
|
113
117
|
"access": "public"
|
|
114
|
-
}
|
|
118
|
+
},
|
|
119
|
+
"sideEffects": false
|
|
115
120
|
}
|