-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "basic-datepicker-react",
"version": "0.1.6",
"description": "A simple and basic reusable datepicker component using react",
"author": "thra",
"repository": {
"type": "git",
"url": "git+https://github.com/thra/basic-datepicker-react.git"
},
"private": false,
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"scripts": {
"rollup": "rollup -c"
},
"resolutions": {
"src/components/react": "18.2.0",
"src/components/react-dom": "18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.8.1",
"rollup-plugin-dts": "^5.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"sass": "^1.57.1"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"keywords": [
"react",
"components",
"ui",
"datepicker"
]
}