forked from miyushan/mui-daterange-picker-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mui-daterange-picker-plus",
"private": false,
"version": "1.0.4",
"declaration": true,
"outDir": "./dist",
"include": [
"src"
],
"exclude": [
"node_modules"
],
"description": "A modern Typescript/JavaScript library for simplifying date-range related operations and enhancing date-picker components in web applications. It provides a range of utilities, including date formatting, parsing, and a fully customizable date range picker with support for various locales.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run build",
"release": "pnpm run lint && pnpm run build && changeset publish"
},
"author": "Miyushan Rodrigo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/miyushan/mui-daterange-picker-plus.git"
},
"homepage": "https://mui-daterange-picker-plus-playground.vercel.app/demo",
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.7",
"@mui/material": "^5.15.7",
"date-fns": "^3.3.1",
"react": "^18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/react": "^18.2.54",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"files": [
"dist/**/*"
],
"keywords": [
"mui-date-range-picker",
"date-range-picker",
"date-range",
"date-picker",
"react",
"date",
"picker",
"mui",
"material-ui",
"material-ui-date-range-picker",
"material-ui-date-picker",
"material-ui-date-range",
"material-ui-date",
"material-ui-picker",
"material-ui-range",
"material-ui-date-range-picker"
]
}