-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "expo-google-places-autocomplete",
"version": "1.2.0",
"description": "Google Places Autocomplete for React Native",
"main": "build/ExpoGooglePlacesAutocomplete.js",
"types": "build/ExpoGooglePlacesAutocomplete.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"copy-files": "copyfiles -u 1 src/assets/* build/",
"prepare": "expo-module prepare && yarn copy-files",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android"
},
"keywords": [
"react-native",
"expo",
"google",
"places",
"autocomplete",
"ios",
"android"
],
"repository": "https://github.com/alanjhughes/expo-google-places-autocomplete",
"bugs": {
"url": "https://github.com/alanjhughes/expo-google-places-autocomplete/issues"
},
"author": "Alan Hughes <[email protected]> (https://github.com/alanjhughes)",
"license": "MIT",
"homepage": "https://github.com/alanjhughes/expo-google-places-autocomplete#readme",
"dependencies": {},
"devDependencies": {
"@types/react": "^18.0.25",
"copyfiles": "^2.4.1",
"expo-module-scripts": "^3.5.2",
"expo-modules-core": "^1.12.20",
"react-native": "0.75.2"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "es5"
}
}