-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.52 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
{
"name": "react-native-ios-adaptive-modal",
"version": "0.7.0",
"description": "TBA",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"typescript": "tsc --noEmit",
"release": "release-it --only-version --npm.skipChecks --npm.publishArgs=\"--registry=https://registry.npmjs.org\"",
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "open -a \"Xcode\" example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"nuke": "rm -rfv ./node_modules ; cd example ; rm -rfv ./node_modules ; cd ../..",
"nuke-example-pods": "cd example/ios ; pod cache clean --all ; rm -rfv ./Pods ./build ; cd ../..",
"update-example-pods": "cd example/ios && pod update DGSwiftUtilities ComputableLayout AdaptiveModal ; pod update ; pod install --repo-update",
"update-dep": "yarn add --dev react-native-ios-utilities ; cd example ; yarn add react-native-ios-utilities ; cd .. && yarn run update-example-pods",
"update-dep-next": "yarn add --dev react-native-ios-utilities@next ; cd example ; yarn add react-native-ios-utilities@next ; cd .. && yarn run update-example-pods"
},
"keywords": [
"react-native",
"expo",
"react-native-ios-adaptive-modal",
"ReactNativeIosAdaptiveModal"
],
"repository": "https://github.com/dominicstop/react-native-ios-adaptive-modal",
"bugs": {
"url": "https://github.com/dominicstop/react-native-ios-adaptive-modal/issues"
},
"author": "Dominic Go <[email protected]> (https://github.com/dominicstop)",
"license": "MIT",
"homepage": "https://github.com/dominicstop/react-native-ios-adaptive-modal#readme",
"dependencies": {
"@dominicstop/ts-event-emitter": "^1.1.0"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@types/react-native": "^0.72.3",
"expo-module-scripts": "^3.0.11",
"expo-modules-core": "^1.5.11",
"react": "18.2.0",
"react-native": "0.72.5",
"react-native-ios-utilities": "^4.4.0-6",
"release-it": "^16.2.1"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*",
"react-native-ios-utilities": "4.4.x"
},
"release-it": {
"git": {
"commitMessage": "⚙️ Chore: Release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
}
}
}