@abi-software/flatmap-viewer 4.4.3 → 4.5.1
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/README.md +4 -4
- package/dist/assets/index.css +1 -1
- package/dist/index.js +64296 -55379
- package/package.json +27 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/flatmap-viewer",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"description": "Flatmap viewer using Maplibre GL",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,14 +16,29 @@
|
|
|
16
16
|
"import": "./dist/index.js"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
21
|
+
"start": "vite serve app --port 3000",
|
|
22
|
+
"prepare": "bun tsc --p ./tsconfig-build.json && bun vite build",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"build": "vite build app --base /viewer/",
|
|
25
|
+
"build-docs": "npx typedoc",
|
|
26
|
+
"docs": "npx typedoc --watch",
|
|
27
|
+
"preview-docs": "live-server docs",
|
|
28
|
+
"lint": "eslint ./src/",
|
|
29
|
+
"typecheck": "tsc --noEmit -p tsconfig-build.json --composite false",
|
|
30
|
+
"tsdoc": "typedoc",
|
|
31
|
+
"postinstall": "bash ./scripts/postinstall.sh"
|
|
32
|
+
},
|
|
19
33
|
"author": "David Brooks",
|
|
20
|
-
"license": "
|
|
34
|
+
"license": "Apache-2.0",
|
|
21
35
|
"dependencies": {
|
|
22
|
-
"@deck.gl/core": "^9.
|
|
23
|
-
"@deck.gl/geo-layers": "^9.
|
|
24
|
-
"@deck.gl/layers": "^9.
|
|
25
|
-
"@deck.gl/mapbox": "^9.
|
|
26
|
-
"@
|
|
36
|
+
"@deck.gl/core": "^9.1.8",
|
|
37
|
+
"@deck.gl/geo-layers": "^9.1.8",
|
|
38
|
+
"@deck.gl/layers": "^9.1.8",
|
|
39
|
+
"@deck.gl/mapbox": "^9.1.8",
|
|
40
|
+
"@jeswr/pretty-turtle": "^1.8.2",
|
|
41
|
+
"@luma.gl/engine": "^9.1.7",
|
|
27
42
|
"@mapbox/mapbox-gl-draw": "=1.4.3",
|
|
28
43
|
"@turf/along": "^7.1.0",
|
|
29
44
|
"@turf/area": "^6.5.0",
|
|
@@ -43,6 +58,7 @@
|
|
|
43
58
|
"maplibre-gl": "^5.5.0",
|
|
44
59
|
"mathjax-full": "^3.2.2",
|
|
45
60
|
"minisearch": "^2.2.1",
|
|
61
|
+
"oxigraph": "^0.5.6",
|
|
46
62
|
"polylabel": "^2.0.1",
|
|
47
63
|
"uuid": "^11.1.0"
|
|
48
64
|
},
|
|
@@ -66,16 +82,7 @@
|
|
|
66
82
|
"vite-plugin-dts": "^4.5.0",
|
|
67
83
|
"vite-plugin-lib-inject-css": "^2.0.1"
|
|
68
84
|
},
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
"build": "vite build app --base /viewer/",
|
|
74
|
-
"build-docs": "npx typedoc",
|
|
75
|
-
"docs": "npx typedoc --watch",
|
|
76
|
-
"preview-docs": "live-server docs",
|
|
77
|
-
"lint": "eslint ./src/",
|
|
78
|
-
"typecheck": "tsc --noEmit -p tsconfig-build.json --composite false",
|
|
79
|
-
"tsdoc": "typedoc"
|
|
80
|
-
}
|
|
81
|
-
}
|
|
85
|
+
"workspaces": [
|
|
86
|
+
"thirdParty/maplibre-gl-svg"
|
|
87
|
+
]
|
|
88
|
+
}
|