forked from pinpong/react-native-google-maps-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.96 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.96 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
{
"name": "react-native-google-maps-plus",
"version": "1.10.2",
"description": "React Native wrapper for Android & iOS Google Maps SDK",
"main": "./lib/module/index.js",
"module": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
"source": "src/index",
"react-native": "src/index",
"scripts": {
"typecheck:lib": "tsc --noEmit -p tsconfig.json",
"typecheck:example": "tsc --noEmit -p example/tsconfig.json",
"typecheck": "yarn typecheck:lib && yarn typecheck:example",
"lint": "yarn lint:js && yarn lint:android && yarn lint:ios",
"lint:js": "eslint . --max-warnings 0 && yarn prettier --check .",
"lint:android": "cd android && ktlint -F ./**/*.kt*",
"lint:ios": "cd ios && swiftlint --quiet && swiftformat . --lint",
"format": "yarn format:js && yarn format:ios && yarn format:android",
"format:js": "eslint . --fix && prettier --write .",
"format:android": "cd android && ktlint --format ./**/*.kt*",
"format:ios": "cd ios && swiftformat .",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
"test": "jest",
"git:clean": "git clean -dfX",
"docs": "typedoc",
"build:plugin": "tsc -p expoConfig/tsconfig.json",
"nitrogen": "nitrogen --logLevel=\"debug\" && node scripts/nitrogen-patch.js",
"release": "semantic-release",
"build": "yarn nitrogen && bob build && yarn build:plugin"
},
"keywords": [
"react-native",
"google-maps",
"react-native-google-maps",
"react-native-google-maps-plus",
"google-maps-sdk",
"android",
"ios",
"maps",
"expo"
],
"files": [
"lib",
"src",
"nitrogen",
"nitro.json",
"android/src",
"android/build.gradle",
"android/fix-prefab.gradle",
"android/gradle.properties",
"android/CMakeLists.txt",
"android/proguard-rules.pro",
"ios/**/*.h",
"ios/**/*.m",
"ios/**/*.mm",
"ios/**/*.cpp",
"ios/**/*.swift",
"scripts/svgkit_patch.rb",
"app.plugin.js",
"expoConfig/build",
"react-native.config.js",
"*.podspec",
"README.md",
"LICENSE"
],
"workspaces": [
"example"
],
"repository": "https://github.com/pinpong/react-native-google-maps-plus.git",
"author": "pinpong",
"license": "MIT",
"bugs": "https://github.com/pinpong/react-native-google-maps-plus/issues",
"homepage": "https://github.com/pinpong/react-native-google-maps-plus#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@eslint/compat": "2.0.0",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.1",
"@expo/config-plugins": "54.0.2",
"@react-native/babel-preset": "0.82.1",
"@react-native/eslint-config": "0.82.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "13.1.2",
"@types/jest": "30.0.0",
"@types/react": "19.1.1",
"conventional-changelog-conventionalcommits": "9.1.0",
"del-cli": "7.0.0",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "61.4.1",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-tsdoc": "0.5.0",
"eslint-plugin-unused-imports": "4.3.0",
"jest": "30.2.0",
"lefthook": "2.0.5",
"nitrogen": "0.31.10",
"prettier": "3.7.4",
"react": "19.1.1",
"react-native": "0.82.1",
"react-native-builder-bob": "0.40.16",
"react-native-nitro-modules": "0.31.10",
"semantic-release": "25.0.2",
"typedoc": "0.28.15",
"typescript": "5.9.3"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "*"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"packageManager": "yarn@3.6.1"
}