gs-maplibre-draw 0.0.78 → 0.0.92

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,7 +1,7 @@
1
1
  {
2
2
  "name": "gs-maplibre-draw",
3
3
  "private": false,
4
- "version": "0.0.78",
4
+ "version": "0.0.92",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -14,12 +14,6 @@
14
14
  "import": "./dist/index.js",
15
15
  "require": "./dist/index.umd.cjs"
16
16
  },
17
- "scripts": {
18
- "prebuild": "rimraf dist",
19
- "dev": "vite",
20
- "build": "vite build",
21
- "push": "npm version --no-git-tag-version patch && npm publish"
22
- },
23
17
  "devDependencies": {
24
18
  "@types/geojson": "^7946.0.16",
25
19
  "@vitejs/plugin-vue": "^5.0.4",
@@ -30,10 +24,16 @@
30
24
  },
31
25
  "dependencies": {
32
26
  "@turf/turf": "^6.5.0",
33
- "gs-maplibre-draw": "^0.0.77",
27
+ "gs-maplibre-draw": "^0.0.78",
34
28
  "maplibre-gl": "^5.0.0",
35
29
  "simplify-js": "^1.2.4",
36
30
  "view-ui-plus": "^1.3.16",
37
31
  "vue": "^3.4.21"
32
+ },
33
+ "scripts": {
34
+ "prebuild": "rimraf dist",
35
+ "dev": "vite",
36
+ "build": "vite build",
37
+ "push": "npm version --no-git-tag-version patch && npm publish"
38
38
  }
39
- }
39
+ }
@@ -1,2 +0,0 @@
1
- export * from './main'
2
- export {}
@@ -1,4 +0,0 @@
1
- export * from './drawTool/types';
2
- export { default as draw } from './draw';
3
- export { default as measure } from './measure';
4
- export { default as DrawTool, type DrawToolInstance } from './drawTool';