snack-datepicker 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +186 -0
- package/dist/index.d.cts +31 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.js +411 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +405 -0
- package/dist/index.mjs.map +1 -0
- package/dist/style.css +678 -0
- package/package.json +89 -0
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "snack-datepicker",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A modern, lightweight and customizable React DatePicker and Date Range Picker with presets, multi-month view and flexible configuration.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./dist/style.css": "./dist/style.css",
|
|
16
|
+
"./package.json": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"src/assets",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"sideEffects": false,
|
|
24
|
+
"keywords": [
|
|
25
|
+
"react datepicker",
|
|
26
|
+
"react date range picker",
|
|
27
|
+
"react calendar",
|
|
28
|
+
"react date picker",
|
|
29
|
+
"date range picker",
|
|
30
|
+
"tailwind datepicker",
|
|
31
|
+
"modern react datepicker",
|
|
32
|
+
"react calendar component",
|
|
33
|
+
"react ui datepicker",
|
|
34
|
+
"lightweight react datepicker",
|
|
35
|
+
"react reusable components",
|
|
36
|
+
"react typescript datepicker",
|
|
37
|
+
"date picker component",
|
|
38
|
+
"react ui library"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsup",
|
|
42
|
+
"dev": "tsup --watch",
|
|
43
|
+
"typecheck": "tsc --noEmit"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"react": ">=18",
|
|
47
|
+
"react-dom": ">=18"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
51
|
+
"clsx": "^2.1.1",
|
|
52
|
+
"date-fns": "^4.1.0",
|
|
53
|
+
"framer-motion": "^12.36.0",
|
|
54
|
+
"lucide-react": "^0.577.0",
|
|
55
|
+
"tailwind-merge": "^3.5.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@eslint/js": "^9.32.0",
|
|
59
|
+
"@tailwindcss/postcss": "^4.2.1",
|
|
60
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
61
|
+
"@testing-library/jest-dom": "^6.6.0",
|
|
62
|
+
"@testing-library/react": "^16.0.0",
|
|
63
|
+
"@types/node": "^22.16.5",
|
|
64
|
+
"@types/react": "^18.3.23",
|
|
65
|
+
"@types/react-dom": "^18.3.7",
|
|
66
|
+
"@vitejs/plugin-react-swc": "^3.11.0",
|
|
67
|
+
"autoprefixer": "^10.4.27",
|
|
68
|
+
"esbuild-sass-plugin": "^3.6.0",
|
|
69
|
+
"eslint": "^9.32.0",
|
|
70
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
71
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
72
|
+
"glob": "^13.0.6",
|
|
73
|
+
"globals": "^15.15.0",
|
|
74
|
+
"jsdom": "^20.0.3",
|
|
75
|
+
"postcss": "^8.5.8",
|
|
76
|
+
"postcss-discard-comments": "^7.0.6",
|
|
77
|
+
"react": "^18.3.1",
|
|
78
|
+
"react-dom": "^18.3.1",
|
|
79
|
+
"sass": "^1.97.3",
|
|
80
|
+
"tailwindcss": "^4.1.18",
|
|
81
|
+
"tsup": "^8.0.0",
|
|
82
|
+
"typescript": "^5.0.0",
|
|
83
|
+
"typescript-eslint": "^8.38.0",
|
|
84
|
+
"vite": "^5.4.19",
|
|
85
|
+
"vitest": "^3.2.4"
|
|
86
|
+
},
|
|
87
|
+
"author": "hemanth-dev",
|
|
88
|
+
"license": "MIT"
|
|
89
|
+
}
|