-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.79 KB
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
{
"name": "calendarkit-basic",
"version": "1.1.0",
"description": "A lightweight, performant React calendar component with Month, Week, and Day views",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"build:lib": "rollup -c",
"start": "next start",
"lint": "next lint",
"prepublishOnly": "npm run build:lib"
},
"keywords": [
"react calendar",
"calendar",
"scheduler",
"datepicker",
"events",
"typescript",
"ui-component",
"calendarkit"
],
"author": "CalendarKit Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Zesor/calendarkit-basic.git"
},
"bugs": {
"url": "https://github.com/Zesor/calendarkit-basic/issues"
},
"homepage": "https://calendarkit.io",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@tanstack/react-virtual": "^3.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"framer-motion": "^11.18.2",
"lucide-react": "^0.469.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.20",
"next": "^15.1.0",
"postcss": "^8.4.49",
"rollup": "^4.53.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}