vue3-google-map 0.9.0 → 0.12.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.
package/package.json CHANGED
@@ -1,21 +1,38 @@
1
1
  {
2
2
  "name": "vue3-google-map",
3
- "version": "0.9.0",
3
+ "version": "0.12.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/inocan-group/vue3-google-maps.git"
8
8
  },
9
- "homepage": "https://github.com/inocan-group/vue3-google-maps#readme",
9
+ "homepage": "https://vue3-google-map.netlify.app",
10
10
  "description": "A set of composable components for easy use of Google Maps in your Vue 3 projects.",
11
11
  "unpkg": "dist/cjs/index.js",
12
12
  "jsdelivr": "dist/cjs/index.js",
13
13
  "main": "dist/cjs/index.js",
14
14
  "module": "dist/es/index.js",
15
- "typings": "dist/types/index.d.ts",
16
15
  "files": [
17
16
  "dist"
18
17
  ],
18
+ "exports": {
19
+ ".": {
20
+ "import": "./dist/es/index.js",
21
+ "require": "./dist/cjs/index.js"
22
+ },
23
+ "./themes": "./dist/themes/es/index.js",
24
+ "./package.json": "./package.json"
25
+ },
26
+ "typesVersions": {
27
+ "*": {
28
+ "*": [
29
+ "dist/types/index.d.ts"
30
+ ],
31
+ "themes": [
32
+ "dist/themes/types/index.d.ts"
33
+ ]
34
+ }
35
+ },
19
36
  "scripts": {
20
37
  "dev": "vite",
21
38
  "autoindex": "yarn do autoindex --sfc",
@@ -35,7 +52,8 @@
35
52
  "release": "standard-version"
36
53
  },
37
54
  "dependencies": {
38
- "@googlemaps/js-api-loader": "^1.12.11"
55
+ "@googlemaps/js-api-loader": "^1.12.11",
56
+ "@googlemaps/markerclusterer": "^2.0.6"
39
57
  },
40
58
  "devDependencies": {
41
59
  "@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
@@ -69,7 +87,7 @@
69
87
  "rollup-plugin-vue": "^6.0.0",
70
88
  "standard-version": "^9.3.2",
71
89
  "ttypescript": "^1.5.12",
72
- "typescript": "~4.3.2",
90
+ "typescript": "^4.6.4",
73
91
  "typescript-transform-paths": "^2.2.4",
74
92
  "vite": "^2.3.4",
75
93
  "vitepress": "^0.14.0",