-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.35 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.35 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-tailwindcss-datetimepicker",
"version": "3.3.2",
"description": "Feature-rich React date-time range picker with customizable presets, keyboard navigation, TypeScript support, and dark mode. Built on React 18 and TailwindCSS 4.",
"type": "module",
"files": [
"dist"
],
"main": "./dist/react-tailwindcss-datetimepicker.umd.cjs",
"module": "./dist/react-tailwindcss-datetimepicker.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/react-tailwindcss-datetimepicker.umd.cjs",
"import": "./dist/react-tailwindcss-datetimepicker.js"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "tsc -p ./tsconfig-build.json && vite build",
"build:types": "tsc",
"lint": "eslint src --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
"build:demo": "vite build --config vite.config.demo.js",
"deploy:demo": "npm run build:demo && npx wrangler deploy --config dist-demo/wrangler.json",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"prepublishOnly": "npm run build",
"repository": {
"type": "git",
"url": "https://github.com/mohsentaleb/react-tailwindcss-datetimepicker.git"
},
"homepage": "https://reactdatetime.dev",
"dependencies": {
"clsx": "^2.1.1",
"date-fns": "^4.1.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.25.6",
"@tailwindcss/vite": "^4.2.1",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.5",
"jsdom": "^24.1.3",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.13.1",
"shiki": "^4.0.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"usehooks-ts": "^3.1.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"keywords": [
"react",
"date",
"time",
"calendar",
"date-picker",
"datepicker",
"daterangepicker",
"date-time-picker",
"react-datepicker",
"react-daterangepicker",
"date-range-picker",
"tailwind-daterange-picker",
"tailwind-datepicker",
"tailwind",
"tailwindcss",
"vite",
"react-component",
"react-tailwind",
"ui",
"datetime-picker",
"react-date-time",
"react-date-selector",
"react-time-selector",
"react-calendar-picker",
"react-date-range",
"react-date-input",
"react-time-input",
"date-range-selector",
"time-range-picker",
"date-selector",
"time-selector",
"date-input",
"time-input",
"react-date-module",
"react-time-module",
"react-ui-component",
"react-date-widget",
"date-picker-component",
"date-time-module"
],
"license": "MIT"
}