-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.57 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.57 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
{
"name": "rangeflow",
"version": "1.0.13",
"type": "module",
"description": "A fancy date range picker built with React and Tailwind.",
"license": "MIT",
"homepage": "https://rangeflow.raminmousavi.dev",
"keywords": [
"react",
"react-component",
"date-picker",
"date-range",
"date-range-picker",
"range-picker",
"calendar",
"slider",
"date-slider",
"tailwind",
"tailwindcss",
"react-day-picker",
"typescript",
"dayjs",
"rangeflow"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"README.md"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:lib": "vite build --config vite.lib.config.ts",
"prepublishOnly": "yarn build:lib",
"lint": "eslint .",
"preview": "vite preview"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@dnd-kit/abstract": "^0.4.0",
"@dnd-kit/dom": "^0.4.0",
"@dnd-kit/geometry": "^0.4.0",
"@dnd-kit/react": "^0.4.0",
"@dnd-kit/state": "^0.4.0",
"@radix-ui/react-popover": "^1.1.15",
"clsx": "^2.1.1",
"dayjs": "^1.11.20",
"react-day-picker": "^9.14.0",
"react-resizable-panels": "^4.10.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@remotion/eslint-plugin": "^4.0.448",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-tailwindcss": "^4.0.0-alpha.1",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.4.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.4",
"vite-plugin-dts": "^4.5.4"
},
"packageManager": "yarn@4.14.0"
}