@ilamy/calendar 1.1.0 → 1.2.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 +7 -0
- package/dist/index.d.ts +85 -49
- package/dist/index.js +6 -6
- package/package.json +116 -112
package/package.json
CHANGED
|
@@ -1,114 +1,118 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
2
|
+
"name": "@ilamy/calendar",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "A full-featured React calendar component library built with Shadcn-Ui, Tailwind CSS, and TypeScript.",
|
|
5
|
+
"author": "Sujeet Kc",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://ilamy.dev",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/kcsujeet/ilamy-calendar.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/kcsujeet/ilamy-calendar/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"react",
|
|
17
|
+
"calendar",
|
|
18
|
+
"typescript",
|
|
19
|
+
"tailwind",
|
|
20
|
+
"components",
|
|
21
|
+
"shadcn",
|
|
22
|
+
"radix-ui",
|
|
23
|
+
"dnd-kit",
|
|
24
|
+
"motion",
|
|
25
|
+
"events",
|
|
26
|
+
"scheduling",
|
|
27
|
+
"drag-and-drop",
|
|
28
|
+
"recurring-events"
|
|
29
|
+
],
|
|
30
|
+
"private": false,
|
|
31
|
+
"type": "module",
|
|
32
|
+
"main": "./dist/index.js",
|
|
33
|
+
"module": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"import": {
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"default": "./dist/index.js"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist",
|
|
45
|
+
"README.md",
|
|
46
|
+
"LICENSE"
|
|
47
|
+
],
|
|
48
|
+
"sideEffects": false,
|
|
49
|
+
"scripts": {
|
|
50
|
+
"dev": "bun --hot src/index.tsx",
|
|
51
|
+
"start": "NODE_ENV=production bun src/index.tsx",
|
|
52
|
+
"build": "NODE_ENV=production bunx bunup",
|
|
53
|
+
"lint": "bunx biome lint . --diagnostic-level=error",
|
|
54
|
+
"lint:fix": "bunx biome lint --write .",
|
|
55
|
+
"format": "bunx biome format --write .",
|
|
56
|
+
"format:check": "bunx biome format .",
|
|
57
|
+
"check": "bunx biome check . --diagnostic-level=error",
|
|
58
|
+
"check:fix": "bunx biome check --write .",
|
|
59
|
+
"test": "bun test",
|
|
60
|
+
"test:coverage": "bun test --coverage",
|
|
61
|
+
"test:coverage:report": "bun test --coverage --reporter=html",
|
|
62
|
+
"type-check": "bunx tsc --noEmit",
|
|
63
|
+
"ci": "bun run check && bun run type-check && bun run test && bun run build",
|
|
64
|
+
"pre-commit": "bun run check:fix",
|
|
65
|
+
"prepare": "bunx husky",
|
|
66
|
+
"release": "bun run ci && npm publish --access public",
|
|
67
|
+
"version:patch": "npm version patch",
|
|
68
|
+
"version:minor": "npm version minor",
|
|
69
|
+
"version:major": "npm version major"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"react": "^19.1.0",
|
|
73
|
+
"react-dom": "^19.1.0",
|
|
74
|
+
"tailwindcss": "^4.1.11",
|
|
75
|
+
"tailwindcss-animate": "^1.0.7"
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"@dnd-kit/core": "^6.3.1",
|
|
79
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
80
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
81
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
82
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
83
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
84
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
85
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
86
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
87
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
88
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
89
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
90
|
+
"class-variance-authority": "^0.7.1",
|
|
91
|
+
"clsx": "^2.1.1",
|
|
92
|
+
"date-fns": "^4.1.0",
|
|
93
|
+
"dayjs": "^1.11.19",
|
|
94
|
+
"lucide-react": "^0.475.0",
|
|
95
|
+
"motion": "^12.23.26",
|
|
96
|
+
"react-day-picker": "^9.13.0",
|
|
97
|
+
"rrule": "^2.8.1",
|
|
98
|
+
"tailwind-merge": "^3.4.0"
|
|
99
|
+
},
|
|
100
|
+
"devDependencies": {
|
|
101
|
+
"@biomejs/biome": "^2.3.10",
|
|
102
|
+
"@happy-dom/global-registrator": "^18.0.1",
|
|
103
|
+
"@testing-library/dom": "^10.4.1",
|
|
104
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
105
|
+
"@testing-library/react": "^16.3.1",
|
|
106
|
+
"@types/bun": "latest",
|
|
107
|
+
"@types/react": "^19.2.7",
|
|
108
|
+
"@types/react-dom": "^19.2.3",
|
|
109
|
+
"@types/rrule": "^2.2.9",
|
|
110
|
+
"bun-plugin-tailwind": "^0.1.2",
|
|
111
|
+
"bunup": "^0.16.11",
|
|
112
|
+
"husky": "^9.1.7",
|
|
113
|
+
"lint-staged": "^16.2.7"
|
|
114
|
+
},
|
|
115
|
+
"publishConfig": {
|
|
116
|
+
"access": "public"
|
|
117
|
+
}
|
|
114
118
|
}
|