first map setup

This commit is contained in:
2026-01-20 22:00:49 +01:00
commit 1f2601a1ed
12 changed files with 1518 additions and 0 deletions

17
ui/deno.json Normal file
View File

@@ -0,0 +1,17 @@
{
"imports": {
"@vitejs/plugin-vue": "npm:@vitejs/plugin-vue@^5",
"maplibre-gl": "npm:maplibre-gl@^5.16.0",
"three": "npm:three@^0.182.0",
"vite": "npm:vite@^7.2.1",
"vue": "npm:vue@^3.5.23",
"pinia": "npm:pinia@^3.0.4",
},
"tasks": {
"dev": "deno run -A --node-modules-dir npm:vite",
"build": "deno run -A --node-modules-dir npm:vite build",
"watch": "deno run -A --node-modules-dir npm:vite build --watch",
"preview": "deno run -A --node-modules-dir npm:vite preview",
},
"nodeModulesDir": "auto"
}