-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.07 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.07 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
131
{
"name": "react-native-google-maps-plus",
"version": "1.13.0",
"description": "React Native wrapper for Android & iOS Google Maps SDK with Street View support",
"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": {
"commitlint": "commitlint",
"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 && 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",
"street-view",
"google-street-view",
"streetview",
"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.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/compat": "2.0.5",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@expo/config-plugins": "55.0.8",
"@react-native/babel-preset": "0.85.2",
"@react-native/eslint-config": "0.85.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "13.1.5",
"@types/jest": "30.0.0",
"@types/react": "19.2.14",
"conventional-changelog-conventionalcommits": "9.3.1",
"del-cli": "7.0.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-tsdoc": "0.5.2",
"eslint-plugin-unused-imports": "4.4.1",
"jest": "30.3.0",
"lefthook": "2.1.6",
"nitrogen": "0.35.4",
"prettier": "3.8.3",
"react": "19.2.3",
"react-native": "0.85.2",
"react-native-builder-bob": "0.41.0",
"react-native-nitro-modules": "0.35.4",
"semantic-release": "25.0.3",
"typedoc": "0.28.19",
"typescript": "6.0.3"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": ">=0.82.0",
"react-native-nitro-modules": ">=0.35.1"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"packageManager": "yarn@4.10.3"
}