-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "react-native-baidumap-sdk",
"description": "React Native BaiduMap SDK for Android + iOS",
"keywords": [
"react-native",
"maps",
"mapview",
"location",
"baidumap"
],
"version": "0.7.0",
"author": "7c00 <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/qiuxiang/react-native-baidumap-sdk"
},
"license": "MIT",
"files": [
"lib/js",
"lib/ios",
"lib/android/src",
"lib/android/build.gradle",
"react-native.config.js"
],
"main": "lib/js",
"types": "lib/js/index.d.ts",
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"build-docs": "npx typedoc --out docs/api --excludeNotExported --excludePrivate --excludeProtected --exclude src/prop-types.ts --module commonjs --mode file src",
"start": "npx react-native start",
"android": "npx react-native run-android",
"release-android": "npx react-native run-android --variant=release",
"reload": "adb reverse tcp:8081 tcp:8081 && adb shell input text rr",
"ios": "npx react-native run-ios"
},
"dependencies": {
"supercluster": "^3.0.2"
},
"devDependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.5.1",
"@react-navigation/stack": "^5.5.1",
"@types/react-native": "^0.62.13",
"EventEmitter": "^1.0.0",
"react": "16.13.1",
"react-native": "^0.62.2",
"react-native-gesture-handler": "^1.6.1",
"react-native-reanimated": "^1.9.0",
"react-native-safe-area-context": "^3.0.3",
"react-native-screens": "^2.8.0"
},
"prettier": {
"printWidth": 100
}
}