forked from Zesor/calendarkit-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.58 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.58 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
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
{
"name": "calendarkit-pro",
"version": "1.1.0",
"description": "Professional React calendar with drag-drop, recurring events, timezone support, resource scheduling, and i18n",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"sideEffects": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:lib": "tsup",
"start": "next start",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,css,json}\"",
"prepublishOnly": "npm run build:lib"
},
"keywords": [
"react",
"calendar",
"scheduler",
"drag-drop",
"recurring-events",
"timezone",
"i18n",
"resource-scheduling",
"datepicker",
"events",
"typescript",
"ui-component",
"calendarkit"
],
"author": "CalendarKit Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Zesor/calendarkit-pro.git"
},
"bugs": {
"url": "https://github.com/Zesor/calendarkit-pro/issues"
},
"homepage": "https://calendarkit.io",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@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.15.0",
"lucide-react": "^0.469.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@next/eslint-plugin-next": "^16.1.4",
"@types/node": "^22.10.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/parser": "^8.53.1",
"autoprefixer": "^10.4.20",
"eslint": "9.39.2",
"eslint-config-next": "16.1.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"next": "^15.0.0",
"postcss": "^8.4.49",
"prettier": "^3.8.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.17",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.53.1"
}
}