-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "rn-select-date-range",
"version": "5.0.0",
"description": "A simple and fully customizable React Native date range picker component",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"publish": "yarn build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dilipchandima/rn-date-range-picker.git"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"react",
"native",
"ios",
"android",
"ui",
"date",
"date",
"range",
"date",
"picker",
"date",
"range",
"picker"
],
"author": "Dileepa Chandima",
"license": "MIT",
"bugs": {
"url": "https://github.com/dilipchandima/rn-date-range-picker/issues"
},
"homepage": "https://github.com/dilipchandima/rn-date-range-picker#readme",
"peerDependencies": {
"react": "18",
"react-native": "0.70"
},
"devDependencies": {
"@types/react": "^18",
"@types/react-native": "^0.70",
"metro-react-native-babel-preset": "^0.70",
"typescript": "^4.3.4"
},
"dependencies": {
"moment": "^2.29.1"
},
"files": [
"/lib"
]
}