-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "react-native-maps",
"description": "React Native Mapview component for iOS + Android",
"react-native": "src/index",
"source": "src/index",
"main": "src/index.ts",
"types": "dist/src/index.d.ts",
"author": "Leland Richardson <leland.m.richardson@gmail.com>",
"homepage": "https://github.com/react-native-maps/react-native-maps#readme",
"version": "1.29.0",
"license": "MIT",
"scripts": {
"lint": "eslint . --max-warnings 0",
"tscheck": "tsc --noEmit",
"format-check": "prettier --check .",
"build": "tsc --project tsconfig.build.json && tsc --project plugin/tsconfig.json",
"test": "jest",
"prepare": "husky",
"release": "semantic-release",
"bundle-install": "cd example && bundle install",
"pod-install": "cd example/ios && bundle exec pod install",
"bootstrap": "yarn --cwd example && yarn && yarn bundle-install && yarn pod-install"
},
"files": [
"src",
"dist",
"android",
"ios",
"app.plugin.js",
"plugin/build",
"react-native-maps.podspec",
"react-native.config.js",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"repository": {
"type": "git",
"url": "https://github.com/react-native-maps/react-native-maps"
},
"keywords": [
"react",
"react-native",
"react-component",
"map",
"mapview",
"google-maps",
"mapkit"
],
"peerDependencies": {
"react": ">= 18.3.1",
"react-native": ">= 0.76.0",
"react-native-web": ">= 0.11"
},
"peerDependenciesMeta": {
"react-native-web": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@expo/config-plugins": "^9.0.17",
"@react-native-community/cli": "20.0.0",
"@react-native/babel-preset": "0.83.10",
"@react-native/eslint-config": "0.83.10",
"@react-native/metro-config": "0.83.10",
"@react-native/typescript-config": "0.83.10",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/react": "^19.2.0",
"@types/react-test-renderer": "^19.1.0",
"@types/jest": "^29.5.13",
"eslint": "^8.19.0",
"husky": "9.1.7",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react": "19.2.0",
"react-native": "^0.83.10",
"react-test-renderer": "19.2.0",
"semantic-release": "24.2.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/geojson": "^7946.0.13"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"e2e"
]
},
"codegenConfig": {
"name": "RNMapsSpecs",
"type": "all",
"jsSrcsDir": "./src/specs",
"outputDir": {
"ios": "ios/generated",
"android": "android/src/main"
},
"includesGeneratedCode": true,
"android": {
"javaPackageName": "com.rnmaps.fabric"
},
"ios": {
"componentProvider": {
"RNMapsGoogleMapView": "RNMapsGoogleMapView",
"RNMapsGooglePolygon": "RNMapsGooglePolygonView",
"RNMapsGoogleMarker": "RNMapsGoogleMarkerView",
"RNMapsMapView": "RNMapsMapView",
"RNMapsMarker": "RNMapsMarkerView",
"RNMapsPolygon": "RNMapsPolygonView"
}
}
},
"engines": {
"node": ">= 20.19.4"
}
}