-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 987 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 987 Bytes
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
{
"name": "react-native-bottom-sheets",
"version": "1.0.1",
"description": "A tiny wrapper around @gorhom/bottom-sheet to make it easier to use in react-native projects.",
"author": "Vinod Liyanage <vinodsliyanage@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react-native",
"ios",
"android",
"web",
"bottom-sheet",
"bottomsheet",
"reanimated",
"sheet",
"gorhom",
"gorhom/bottom-sheet"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx"
},
"peerDependencies": {
"@gorhom/bottom-sheet": "^4.6.3",
"@types/react": "*",
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "~3.10.1"
},
"dependencies": {
"typescript": "^5.6.2"
}
}