-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "react-native-web-google-api-maps",
"version": "1.0.0",
"description": "React Native web implementation for react-native-maps using @react-google-maps/api",
"repository": {
"type": "git",
"url": "git@github.com:chalda/react-native-web-google-api-maps.git"
},
"author": {
"name": "Alex Chaldyshev",
"email": "alex.chaldyshev+github@gmail.com",
"url": "https://github.com/chalda"
},
"license": "MIT",
"keywords": [
"rn",
"google maps",
"react google maps",
"react",
"expo",
"react-native",
"react-native-web",
"react-native-maps",
"react-native-web-maps",
"react-native-google-maps"
],
"exports": {
"./babel-plugin": "./babel-plugin/index.js",
"./*": "./dist/*.js"
},
"main": "dist/index.js",
"main-es": "src/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b",
"dev": "tsc -b --watch"
},
"dependencies": {
"@react-google-maps/api": "^2.20.6",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"peerDependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native-maps": "*"
},
"devDependencies": {
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"eslint": "^9.25.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
}
}