-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.81 KB
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
66
{
"name": "react-native-fluid-bottom-sheet",
"version": "1.5.2",
"description": "A performant, gesture-driven bottom sheet for React Native with snap points, search bar, and FlatList support.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"react-native": "./src/index.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"clean": "rm -rf lib",
"prepare": "tsc -p tsconfig.build.json"
},
"keywords": [
"react-native",
"bottom-sheet",
"gesture",
"reanimated",
"snap-points",
"modal",
"sheet"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anmetrics/react-native-fluid-bottom-sheet.git"
},
"author": "anmetrics",
"license": "MIT",
"bugs": {
"url": "https://github.com/anmetrics/react-native-fluid-bottom-sheet/issues"
},
"homepage": "https://github.com/anmetrics/react-native-fluid-bottom-sheet#readme",
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.71.0",
"react-native-gesture-handler": ">=2.0.0",
"react-native-keyboard-controller": ">=1.21.7",
"react-native-reanimated": ">=3.4.0",
"react-native-safe-area-context": ">=4.0.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"react": "^18.2.0",
"react-native": "^0.73.0",
"react-native-gesture-handler": "^2.14.0",
"react-native-keyboard-controller": "^1.21.7",
"react-native-reanimated": "^3.6.0",
"react-native-safe-area-context": "^4.8.0",
"typescript": "^5.3.0"
}
}