-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 KB
/
package.json
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
{
"name": "kabob-cal",
"version": "1.0.4-alpha.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && postcss src/globals.css -o dist/globals.css",
"dev": "postcss src/globals.css -o dist/globals.css --watch"
},
"keywords": [],
"author": "Salvatore Noto",
"license": "MIT",
"description": "An event calendar component for React that supports multiple views, person management, and event colors.",
"devDependencies": {
"@types/node": "^22.10.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"postcss-cli": "^11.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@dnd-kit/core": "^6.2.0",
"@dnd-kit/sortable": "^9.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"autoprefixer": "^10.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^4.1.0",
"lucide-react": "^0.300.0",
"postcss": "^8.4.0",
"react-hotkeys-hook": "^4.6.1",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.0"
}
}