-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.95 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.95 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-native-expandable-bottom-sheet",
"version": "0.1.3",
"description": "A performant, gesture-driven expandable bottom sheet for React Native",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"exports": {
".": {
"types": "./lib/typescript/index.d.ts",
"import": "./lib/module/index.js",
"require": "./lib/commonjs/index.js"
}
},
"files": [
"lib",
"src",
"assets",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bob build",
"prepare": "bob build",
"prepublishOnly": "bob build",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"test": "jest",
"example:start": "cd example && npm start",
"example:ios": "cd example && npm run ios",
"example:android": "cd example && npm run android"
},
"keywords": [
"react-native",
"bottom-sheet",
"expandable",
"sheet",
"modal",
"gesture",
"reanimated",
"gesture-handler",
"drawer",
"panel",
"ios",
"android"
],
"author": "daboigbae",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/daboigbae/react-native-expandable-bottom-sheet.git"
},
"homepage": "https://github.com/daboigbae/react-native-expandable-bottom-sheet#readme",
"bugs": {
"url": "https://github.com/daboigbae/react-native-expandable-bottom-sheet/issues"
},
"peerDependencies": {
"react": ">=18",
"react-native": ">=0.72",
"react-native-reanimated": ">=3",
"react-native-gesture-handler": ">=2.14"
},
"devDependencies": {
"@testing-library/react": "^14.2.0",
"@testing-library/react-native": "^12.4.0",
"react-test-renderer": "^18.2.0",
"@types/react": "^18.2.0",
"@types/react-native": "^0.72.0",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-native": "^0.73.0",
"react-native-gesture-handler": "^2.14.0",
"react-native-reanimated": "^3.10.0",
"react-native-builder-bob": "^0.23.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true,
"configFile": true
}
],
[
"commonjs",
{
"configFile": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}