@ilamy/calendar 0.1.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/package.json ADDED
@@ -0,0 +1,114 @@
1
+ {
2
+ "name": "@ilamy/calendar",
3
+ "version": "0.1.0",
4
+ "description": "A full-featured React calendar component library built with Shadcn-Ui, Tailwind CSS, and TypeScript.",
5
+ "author": "Ilamy",
6
+ "license": "MIT",
7
+ "homepage": "https://calendar.ilamy.io",
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
+ "types": "./dist/index.d.ts",
38
+ "import": "./dist/index.js",
39
+ "require": "./dist/index.cjs"
40
+ },
41
+ "./styles": "./dist/styles.css"
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": "bunx bunup",
53
+ "lint": "bunx oxlint@latest",
54
+ "lint:fix": "bunx oxlint@latest --fix --fix-suggestions",
55
+ "prettier": "bunx prettier",
56
+ "prettier:check": "bunx prettier --check .",
57
+ "prettier:fix": "bunx prettier --write .",
58
+ "test": "bun test",
59
+ "test:coverage": "bun test --coverage",
60
+ "test:coverage:report": "bun test --coverage --reporter=html",
61
+ "format": "bunx prettier --write .",
62
+ "type-check": "bunx tsc --noEmit",
63
+ "ci": "bun run lint && bun run prettier:check && bun run test && bun run build",
64
+ "pre-commit": "bun run lint:fix && bun run prettier:fix",
65
+ "prepare": "bunx husky"
66
+ },
67
+ "peerDependencies": {
68
+ "react": ">=19.1.0",
69
+ "react-dom": ">=19.1.0"
70
+ },
71
+ "dependencies": {
72
+ "@dnd-kit/core": "^6.3.1",
73
+ "@dnd-kit/modifiers": "^9.0.0",
74
+ "@radix-ui/react-accordion": "^1.2.11",
75
+ "@radix-ui/react-checkbox": "^1.3.2",
76
+ "@radix-ui/react-dialog": "^1.1.14",
77
+ "@radix-ui/react-dropdown-menu": "^2.1.15",
78
+ "@radix-ui/react-label": "^2.1.7",
79
+ "@radix-ui/react-popover": "^1.1.14",
80
+ "@radix-ui/react-scroll-area": "^1.2.9",
81
+ "@radix-ui/react-select": "^2.2.5",
82
+ "@radix-ui/react-separator": "^1.1.7",
83
+ "@radix-ui/react-slot": "^1.2.3",
84
+ "@radix-ui/react-tabs": "^1.1.12",
85
+ "@radix-ui/react-tooltip": "^1.2.7",
86
+ "bun-plugin-tailwind": "^0.0.14",
87
+ "class-variance-authority": "^0.7.1",
88
+ "clsx": "^2.1.1",
89
+ "dayjs": "^1.11.13",
90
+ "lucide-react": "^0.475.0",
91
+ "motion": "^12.23.6",
92
+ "react-day-picker": "^9.8.0",
93
+ "react-hook-form": "^7.60.0",
94
+ "tailwind-merge": "^3.3.1",
95
+ "tailwindcss": "^4.1.11",
96
+ "tailwindcss-animate": "^1.0.7"
97
+ },
98
+ "devDependencies": {
99
+ "@happy-dom/global-registrator": "^18.0.1",
100
+ "@testing-library/dom": "^10.4.0",
101
+ "@testing-library/jest-dom": "^6.6.3",
102
+ "@testing-library/react": "^16.3.0",
103
+ "@types/bun": "latest",
104
+ "@types/react": "^19.1.8",
105
+ "@types/react-dom": "^19.1.6",
106
+ "bunup": "^0.8.61",
107
+ "husky": "^9.1.7",
108
+ "lint-staged": "^16.1.2",
109
+ "prettier": "3.6.2"
110
+ },
111
+ "publishConfig": {
112
+ "access": "public"
113
+ }
114
+ }