react-native-google-maps-plus 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +153 -0
package/package.json ADDED
@@ -0,0 +1,153 @@
1
+ {
2
+ "name": "react-native-google-maps-plus",
3
+ "version": "0.1.0",
4
+ "description": "React-native wrapper for android & IOS google maps sdk",
5
+ "main": "./lib/module/index.js",
6
+ "module": "./lib/module/index.js",
7
+ "types": "./lib/typescript/src/index.d.ts",
8
+ "source": "src/index",
9
+ "scripts": {
10
+ "typecheck": "tsc --noEmit",
11
+ "lint": "yarn lint:js && yarn lint:android && yarn lint:ios",
12
+ "lint:js": "eslint . --max-warnings 0 && yarn prettier --check .",
13
+ "lint:android": "cd android && ktlint -F ./**/*.kt*",
14
+ "lint:ios": "cd ios && swiftlint --quiet",
15
+ "format": "yarn format:js && yarn format:ios && yarn format:android",
16
+ "format:js": "prettier --write .",
17
+ "format:android": "cd android && ktlint ./**/*.kt*",
18
+ "format:ios": "cd ios && swiftlint --quiet --fix",
19
+ "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
20
+ "test": "jest",
21
+ "git:clean": "git clean -dfX",
22
+ "release": "semantic-release",
23
+ "build": "yarn typecheck && yarn nitrogen && bob build",
24
+ "nitrogen": "nitrogen --logLevel=\"debug\" && node scripts/post-script.js"
25
+ },
26
+ "keywords": [
27
+ "react-native",
28
+ "react-native-google-maps-plus"
29
+ ],
30
+ "files": [
31
+ "src",
32
+ "lib",
33
+ "!**/__tests__",
34
+ "!**/__fixtures__",
35
+ "!**/__mocks__",
36
+ "react-native.config.js",
37
+ "nitrogen",
38
+ "cpp",
39
+ "nitro.json",
40
+ "android/build.gradle",
41
+ "android/fix-prefab.gradle",
42
+ "android/gradle.properties",
43
+ "android/CMakeLists.txt",
44
+ "android/src",
45
+ "ios/**/*.h",
46
+ "ios/**/*.m",
47
+ "ios/**/*.mm",
48
+ "ios/**/*.cpp",
49
+ "ios/**/*.swift",
50
+ "app.plugin.js",
51
+ "*.podspec",
52
+ "README.md"
53
+ ],
54
+ "workspaces": [
55
+ "example"
56
+ ],
57
+ "repository": "https://github.com/pinpong/react-native-google-maps-plus.git",
58
+ "author": "pinpong",
59
+ "license": "MIT",
60
+ "bugs": "https://github.com/pinpong/react-native-google-maps-plus/issues",
61
+ "homepage": "https://github.com/pinpong/react-native-google-maps-plus#readme",
62
+ "devDependencies": {
63
+ "@commitlint/cli": "20.0.0",
64
+ "@commitlint/config-conventional": "20.0.0",
65
+ "@eslint/compat": "1.4.0",
66
+ "@eslint/eslintrc": "3.3.1",
67
+ "@eslint/js": "9.36.0",
68
+ "@jamesacarr/eslint-formatter-github-actions": "0.2.0",
69
+ "@react-native/babel-preset": "0.82.0-rc.4",
70
+ "@react-native/eslint-config": "0.82.0-rc.4",
71
+ "@semantic-release/changelog": "6.0.3",
72
+ "@semantic-release/git": "10.0.1",
73
+ "@types/jest": "30.0.0",
74
+ "@types/react": "19.1.15",
75
+ "clang-format-node": "2.0.1",
76
+ "conventional-changelog-conventionalcommits": "9.1.0",
77
+ "del-cli": "7.0.0",
78
+ "eslint": "9.36.0",
79
+ "eslint-config-prettier": "10.1.8",
80
+ "eslint-plugin-ft-flow": "3.0.11",
81
+ "eslint-plugin-prettier": "5.5.4",
82
+ "jest": "30.2.0",
83
+ "lefthook": "1.13.5",
84
+ "nitrogen": "0.29.6",
85
+ "prettier": "3.6.2",
86
+ "react": "19.1.1",
87
+ "react-native": "0.82.0-rc.4",
88
+ "react-native-builder-bob": "0.40.13",
89
+ "react-native-nitro-modules": "0.29.6",
90
+ "semantic-release": "24.2.9",
91
+ "typescript": "5.9.2"
92
+ },
93
+ "peerDependencies": {
94
+ "react": "*",
95
+ "react-native": "*",
96
+ "react-native-nitro-modules": "*"
97
+ },
98
+ "eslintConfig": {
99
+ "root": true,
100
+ "extends": [
101
+ "@react-native",
102
+ "prettier"
103
+ ],
104
+ "plugins": [
105
+ "prettier"
106
+ ],
107
+ "rules": {
108
+ "prettier/prettier": [
109
+ "warn",
110
+ {
111
+ "quoteProps": "consistent",
112
+ "singleQuote": true,
113
+ "tabWidth": 2,
114
+ "trailingComma": "es5",
115
+ "useTabs": false
116
+ }
117
+ ]
118
+ }
119
+ },
120
+ "eslintIgnore": [
121
+ "node_modules/",
122
+ "lib/"
123
+ ],
124
+ "prettier": {
125
+ "quoteProps": "consistent",
126
+ "singleQuote": true,
127
+ "tabWidth": 2,
128
+ "trailingComma": "es5",
129
+ "useTabs": false
130
+ },
131
+ "react-native-builder-bob": {
132
+ "source": "src",
133
+ "output": "lib",
134
+ "targets": [
135
+ [
136
+ "module",
137
+ {
138
+ "esm": true
139
+ }
140
+ ],
141
+ "typescript"
142
+ ]
143
+ },
144
+ "exports": {
145
+ ".": {
146
+ "source": "./src/index.tsx",
147
+ "types": "./lib/typescript/src/index.d.ts",
148
+ "default": "./lib/module/index.js"
149
+ },
150
+ "./package.json": "./package.json"
151
+ },
152
+ "packageManager": "yarn@3.6.1"
153
+ }