-
-
Notifications
You must be signed in to change notification settings - Fork 767
/
package.json
83 lines (83 loc) · 2.67 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@gorhom/bottom-sheet",
"version": "5.0.5",
"description": "A performant interactive bottom sheet with fully configurable options 🚀",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"files": ["src", "lib", "mock.js"],
"keywords": [
"react-native",
"ios",
"android",
"web",
"bottom-sheet",
"bottomsheet",
"reanimated",
"sheet"
],
"repository": "https://github.com/gorhom/react-native-bottom-sheet",
"author": "Mo Gorhom (https://gorhom.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorhom/react-native-bottom-sheet/issues"
},
"homepage": "https://gorhom.dev/react-native-bottom-sheet/",
"scripts": {
"typescript": "tsc --skipLibCheck --noEmit",
"lint": "biome lint --error-on-warnings ./src",
"build": "bob build && yarn copy-dts && yarn delete-dts.js && yarn delete-debug-view",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib/typescript",
"delete-debug-view": "rm -r ./lib/commonjs/components/bottomSheetDebugView && rm -r ./lib/module/components/bottomSheetDebugView && rm -r ./lib/typescript/components/bottomSheetDebugView",
"delete-dts.js": "find ./lib/commonjs -name '*.d.js*' -delete && find ./lib/module -name '*.d.js*' -delete",
"release": "rm -rf lib && yarn build && release-it",
"example": "yarn --cwd example",
"bootstrap": "yarn install && yarn example"
},
"dependencies": {
"@gorhom/portal": "1.0.14",
"invariant": "^2.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@release-it/conventional-changelog": "^8.0.1",
"@types/invariant": "^2.2.34",
"@types/react": "18.2.45",
"@types/react-native": "0.73.0",
"copyfiles": "^2.4.1",
"husky": "^4.3.8",
"lint-staged": "^13.2.2",
"metro-react-native-babel-preset": "^0.77.0",
"react": "18.2.0",
"react-native": "0.73.4",
"react-native-builder-bob": "^0.23.2",
"react-native-gesture-handler": "^2.16.1",
"react-native-reanimated": "^3.10.1",
"release-it": "^17.6.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-native": "*",
"react": "*",
"react-native": "*",
"react-native-gesture-handler": ">=2.16.1",
"react-native-reanimated": ">=3.10.1"
},
"peerDependenciesMeta": {
"@types/react-native": {
"optional": true
},
"@types/react": {
"optional": true
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": ["commonjs", "module", "typescript"]
}
}