leiting-bim 2.1.36 → 2.1.39
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/leiting-bim.es.js +1 -1
- package/leiting-bim.umd.js +11 -11
- package/leitingbim.css +1 -1
- package/package.json +1 -1
- package/plugins/.gitmodules +4 -0
- package/plugins/README.md +2 -0
- package/plugins/build.cjs +63 -0
- package/plugins/cesium-core/dist/cesium-core.mjs +6217 -0
- package/plugins/cesium-core/dist/cesium-core.umd.js +76 -0
- package/plugins/cesium-core/dist/components/BufferedHierarchicalAggregator.d.ts +73 -0
- package/plugins/cesium-core/dist/components/HtmlOverlayLabelPool.d.ts +152 -0
- package/plugins/cesium-core/dist/components/MarkerEvent.d.ts +38 -0
- package/plugins/cesium-core/dist/components/Material/MaterialManager.d.ts +49 -0
- package/plugins/cesium-core/dist/components/Material/help/PolylineFlowMaterialProperty.d.ts +10 -0
- package/plugins/cesium-core/dist/components/Material/help/dynamicImgMaterial.d.ts +16 -0
- package/plugins/cesium-core/dist/components/Material/index.d.ts +3 -0
- package/plugins/cesium-core/dist/components/TooltipManager.d.ts +11 -0
- package/plugins/cesium-core/dist/components/draw/DrawTool.d.ts +10 -0
- package/plugins/cesium-core/dist/components/draw/handlers/CircleDrawer.d.ts +16 -0
- package/plugins/cesium-core/dist/components/draw/handlers/LineDrawer.d.ts +14 -0
- package/plugins/cesium-core/dist/components/draw/handlers/PointDrawer.d.ts +12 -0
- package/plugins/cesium-core/dist/components/draw/handlers/PolygonDrawer.d.ts +14 -0
- package/plugins/cesium-core/dist/components/draw/handlers/RectangleDrawer.d.ts +13 -0
- package/plugins/cesium-core/dist/components/draw/types.d.ts +29 -0
- package/plugins/cesium-core/dist/components/entity/EntityLayer.d.ts +65 -0
- package/plugins/cesium-core/dist/components/gltf/GLTFManage.d.ts +141 -0
- package/plugins/cesium-core/dist/components/gltf/index.d.ts +1 -0
- package/plugins/cesium-core/dist/components/measurement/MeasurementTool.d.ts +34 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/AreaMeasure.d.ts +28 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/CircleMeasure.d.ts +22 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/CoordinateMeasure.d.ts +16 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/HorizontalMeasure.d.ts +27 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/PolylineDistanceMeasure.d.ts +25 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/RectangleMeasure.d.ts +30 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/RegularPolygonMeasure.d.ts +28 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/SpaceMeasure.d.ts +21 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/TerrainHeightMeasure.d.ts +18 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/TriangleMeasure.d.ts +30 -0
- package/plugins/cesium-core/dist/components/measurement/handlers/VerticalMeasure.d.ts +23 -0
- package/plugins/cesium-core/dist/components/measurement/index.d.ts +13 -0
- package/plugins/cesium-core/dist/components/measurement/types.d.ts +42 -0
- package/plugins/cesium-core/dist/components/primitive/PrimitiveManager.d.ts +50 -0
- package/plugins/cesium-core/dist/components/roaming/CameraRoamTool.d.ts +27 -0
- package/plugins/cesium-core/dist/components/roaming/PathRoamTool.d.ts +23 -0
- package/plugins/cesium-core/dist/components/roaming/index.d.ts +3 -0
- package/plugins/cesium-core/dist/components/roaming/types.d.ts +66 -0
- package/plugins/cesium-core/dist/components/utils/convertGeoJsonToEntityData.d.ts +1 -0
- package/plugins/cesium-core/dist/components/utils/uuid.d.ts +1 -0
- package/plugins/cesium-core/dist/index.d.ts +12 -0
- package/plugins/cesium-core/package.json +27 -0
- package/plugins/cesium-core/pnpm-lock.yaml +872 -0
- package/plugins/cesium-core/src/components/BufferedHierarchicalAggregator.ts +546 -0
- package/plugins/cesium-core/src/components/HtmlOverlayLabelPool.ts +489 -0
- package/plugins/cesium-core/src/components/MarkerEvent.ts +92 -0
- package/plugins/cesium-core/src/components/Material/MaterialManager.ts +129 -0
- package/plugins/cesium-core/src/components/Material/help/PolylineFlowMaterialProperty.ts +116 -0
- package/plugins/cesium-core/src/components/Material/help/dynamicImgMaterial.ts +236 -0
- package/plugins/cesium-core/src/components/Material/index.ts +3 -0
- package/plugins/cesium-core/src/components/TooltipManager.ts +52 -0
- package/plugins/cesium-core/src/components/draw/DrawTool.ts +55 -0
- package/plugins/cesium-core/src/components/draw/handlers/CircleDrawer.ts +159 -0
- package/plugins/cesium-core/src/components/draw/handlers/LineDrawer.ts +113 -0
- package/plugins/cesium-core/src/components/draw/handlers/PointDrawer.ts +70 -0
- package/plugins/cesium-core/src/components/draw/handlers/PolygonDrawer.ts +112 -0
- package/plugins/cesium-core/src/components/draw/handlers/RectangleDrawer.ts +115 -0
- package/plugins/cesium-core/src/components/draw/types.ts +28 -0
- package/plugins/cesium-core/src/components/entity/EntityLayer.ts +453 -0
- package/plugins/cesium-core/src/components/gltf/GLTFManage.ts +799 -0
- package/plugins/cesium-core/src/components/gltf/index.ts +1 -0
- package/plugins/cesium-core/src/components/measurement/MeasurementTool.ts +416 -0
- package/plugins/cesium-core/src/components/measurement/handlers/AreaMeasure.ts +552 -0
- package/plugins/cesium-core/src/components/measurement/handlers/CircleMeasure.ts +289 -0
- package/plugins/cesium-core/src/components/measurement/handlers/CoordinateMeasure.ts +139 -0
- package/plugins/cesium-core/src/components/measurement/handlers/HorizontalMeasure.ts +427 -0
- package/plugins/cesium-core/src/components/measurement/handlers/PolylineDistanceMeasure.ts +356 -0
- package/plugins/cesium-core/src/components/measurement/handlers/RectangleMeasure.ts +516 -0
- package/plugins/cesium-core/src/components/measurement/handlers/RegularPolygonMeasure.ts +472 -0
- package/plugins/cesium-core/src/components/measurement/handlers/SpaceMeasure.ts +250 -0
- package/plugins/cesium-core/src/components/measurement/handlers/TerrainHeightMeasure.ts +185 -0
- package/plugins/cesium-core/src/components/measurement/handlers/TriangleMeasure.ts +561 -0
- package/plugins/cesium-core/src/components/measurement/handlers/VerticalMeasure.ts +361 -0
- package/plugins/cesium-core/src/components/measurement/index.ts +13 -0
- package/plugins/cesium-core/src/components/measurement/types.ts +57 -0
- package/plugins/cesium-core/src/components/primitive/PrimitiveManager.ts +556 -0
- package/plugins/cesium-core/src/components/roaming/CameraRoamTool.ts +286 -0
- package/plugins/cesium-core/src/components/roaming/PathRoamTool.ts +174 -0
- package/plugins/cesium-core/src/components/roaming/index.ts +3 -0
- package/plugins/cesium-core/src/components/roaming/types.ts +71 -0
- package/plugins/cesium-core/src/components/utils/convertGeoJsonToEntityData.ts +98 -0
- package/plugins/cesium-core/src/components/utils/uuid.ts +7 -0
- package/plugins/cesium-core/src/index.ts +17 -0
- package/plugins/cesium-core/src/test/measurement/index.html +166 -0
- package/plugins/cesium-core/src/test/roaming/c.gltf +1 -0
- package/plugins/cesium-core/src/test/roaming/f87cc3ea918a4b76bff2c88a3655eb1f.bin +0 -0
- package/plugins/cesium-core/src/test/roaming/index.html +51 -0
- package/plugins/cesium-core/src/test/roaming/path.html +448 -0
- package/plugins/cesium-core/src/test/roaming/view.html +520 -0
- package/plugins/cesium-core/stats.html +4949 -0
- package/plugins/cesium-core/tsconfig.json +14 -0
- package/plugins/cesium-core/vite.config.ts +35 -0
- package/plugins/cesium-vue/dist/_commonjsHelpers-DaMA6jEr.js +8 -0
- package/plugins/cesium-vue/dist/components/basic-audio/index.d.ts +13 -0
- package/plugins/cesium-vue/dist/components/basic-audio.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/basic-audio.js +1295 -0
- package/plugins/cesium-vue/dist/components/basic-video/index.d.ts +98 -0
- package/plugins/cesium-vue/dist/components/basic-video.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/basic-video.js +67 -0
- package/plugins/cesium-vue/dist/components/card-carousel/index.d.ts +147 -0
- package/plugins/cesium-vue/dist/components/card-carousel.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/card-carousel.js +143 -0
- package/plugins/cesium-vue/dist/components/card-content/index.d.ts +16 -0
- package/plugins/cesium-vue/dist/components/card-content.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/card-content.js +74 -0
- package/plugins/cesium-vue/dist/components/card-page/index.d.ts +64 -0
- package/plugins/cesium-vue/dist/components/card-page.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/card-page.js +111 -0
- package/plugins/cesium-vue/dist/components/carousel-img/index.d.ts +34 -0
- package/plugins/cesium-vue/dist/components/carousel-img.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/carousel-img.js +72 -0
- package/plugins/cesium-vue/dist/components/echarts-pro/index.d.ts +63 -0
- package/plugins/cesium-vue/dist/components/echarts-pro.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/echarts-pro.js +7 -0
- package/plugins/cesium-vue/dist/components/marker-bubble/index.d.ts +73 -0
- package/plugins/cesium-vue/dist/components/marker-bubble.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/marker-bubble.js +123 -0
- package/plugins/cesium-vue/dist/components/marker-default/index.d.ts +43 -0
- package/plugins/cesium-vue/dist/components/marker-default.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/marker-default.js +39 -0
- package/plugins/cesium-vue/dist/components/marker-html/index.d.ts +43 -0
- package/plugins/cesium-vue/dist/components/marker-html.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/marker-html.js +40 -0
- package/plugins/cesium-vue/dist/components/marker-manage/index.d.ts +159 -0
- package/plugins/cesium-vue/dist/components/marker-manage.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/marker-manage.js +896 -0
- package/plugins/cesium-vue/dist/components/marker-text/index.d.ts +25 -0
- package/plugins/cesium-vue/dist/components/marker-text.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/marker-text.js +30 -0
- package/plugins/cesium-vue/dist/components/measurement/index.d.ts +73 -0
- package/plugins/cesium-vue/dist/components/measurement.d.ts +6 -0
- package/plugins/cesium-vue/dist/components/measurement.js +170 -0
- package/plugins/cesium-vue/dist/create-DynflqE1.js +31 -0
- package/plugins/cesium-vue/dist/index-B03tSn8_.js +45855 -0
- package/plugins/cesium-vue/dist/index-CUs_hd1V.js +403 -0
- package/plugins/cesium-vue/dist/index.d.ts +44 -0
- package/plugins/cesium-vue/dist/index.js +82 -0
- package/plugins/cesium-vue/package.json +106 -0
- package/plugins/cesium-vue/src/assets/icons/icon-001.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-002.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-003.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-004.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-005.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-006.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-007.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-008.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-009.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-010.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-011.png +0 -0
- package/plugins/cesium-vue/src/assets/icons/icon-012.png +0 -0
- package/plugins/cesium-vue/src/assets/img/Card3-BG.png +0 -0
- package/plugins/cesium-vue/src/assets/img/card_bg3.png +0 -0
- package/plugins/cesium-vue/src/components/basic-audio/index.ts +6 -0
- package/plugins/cesium-vue/src/components/basic-audio/src/BasicAudio.vue +119 -0
- package/plugins/cesium-vue/src/components/basic-audio/src/basicAudio.ts +6 -0
- package/plugins/cesium-vue/src/components/basic-video/index.ts +7 -0
- package/plugins/cesium-vue/src/components/basic-video/src/BasicVideo.vue +58 -0
- package/plugins/cesium-vue/src/components/basic-video/src/basicVideo.ts +14 -0
- package/plugins/cesium-vue/src/components/card-carousel/index.ts +7 -0
- package/plugins/cesium-vue/src/components/card-carousel/src/CardCarousel.vue +124 -0
- package/plugins/cesium-vue/src/components/card-carousel/src/cardCarousel.ts +60 -0
- package/plugins/cesium-vue/src/components/card-content/index.ts +7 -0
- package/plugins/cesium-vue/src/components/card-content/src/CardContent.vue +41 -0
- package/plugins/cesium-vue/src/components/card-content/src/cardContent.ts +22 -0
- package/plugins/cesium-vue/src/components/card-page/index.ts +7 -0
- package/plugins/cesium-vue/src/components/card-page/src/CardPage.vue +102 -0
- package/plugins/cesium-vue/src/components/card-page/src/cardPage.ts +37 -0
- package/plugins/cesium-vue/src/components/carousel-img/index.ts +7 -0
- package/plugins/cesium-vue/src/components/carousel-img/src/CarouselImg.vue +84 -0
- package/plugins/cesium-vue/src/components/carousel-img/src/carouselImg.ts +8 -0
- package/plugins/cesium-vue/src/components/echarts-pro/index.ts +7 -0
- package/plugins/cesium-vue/src/components/echarts-pro/src/EchartsPro.vue +107 -0
- package/plugins/cesium-vue/src/components/echarts-pro/src/echartsPro.ts +12 -0
- package/plugins/cesium-vue/src/components/echarts-pro/src/hook/useECharts.ts +55 -0
- package/plugins/cesium-vue/src/components/marker-bubble/index.ts +7 -0
- package/plugins/cesium-vue/src/components/marker-bubble/src/MarkerBubble.vue +235 -0
- package/plugins/cesium-vue/src/components/marker-bubble/src/markerBubble.ts +35 -0
- package/plugins/cesium-vue/src/components/marker-default/index.ts +7 -0
- package/plugins/cesium-vue/src/components/marker-default/src/MarkerDefault.vue +19 -0
- package/plugins/cesium-vue/src/components/marker-default/src/markerDefault.ts +12 -0
- package/plugins/cesium-vue/src/components/marker-html/index.ts +7 -0
- package/plugins/cesium-vue/src/components/marker-html/src/MarkerHtml.vue +21 -0
- package/plugins/cesium-vue/src/components/marker-html/src/markerHtml.ts +12 -0
- package/plugins/cesium-vue/src/components/marker-manage/index.ts +9 -0
- package/plugins/cesium-vue/src/components/marker-manage/src/components/MarkerManage.vue +106 -0
- package/plugins/cesium-vue/src/components/marker-manage/src/config/theme.ts +8 -0
- package/plugins/cesium-vue/src/components/marker-manage/src/core/MarkerManage.ts +466 -0
- package/plugins/cesium-vue/src/components/marker-manage/src/core/MarkerManagerCore.ts +148 -0
- package/plugins/cesium-vue/src/components/marker-manage/src/hook/useMarkerManage.ts +45 -0
- package/plugins/cesium-vue/src/components/marker-manage/src/type/markerManage.ts +75 -0
- package/plugins/cesium-vue/src/components/marker-manage/src/utils/themeTool.ts +154 -0
- package/plugins/cesium-vue/src/components/marker-text/index.ts +7 -0
- package/plugins/cesium-vue/src/components/marker-text/src/MarkerText.vue +14 -0
- package/plugins/cesium-vue/src/components/marker-text/src/markerText.ts +10 -0
- package/plugins/cesium-vue/src/components/measurement/index.ts +7 -0
- package/plugins/cesium-vue/src/components/measurement/src/Measurement.vue +183 -0
- package/plugins/cesium-vue/src/components/measurement/src/measurement.ts +20 -0
- package/plugins/cesium-vue/src/index.ts +89 -0
- package/plugins/cesium-vue/stats.html +4949 -0
- package/plugins/cesium-vue/tsconfig.json +18 -0
- package/plugins/cesium-vue/vite.config.ts +62 -0
- package/plugins/plugins/README.md +2 -0
- package/plugins/plugins/build.cjs +63 -0
- package/plugins/plugins/cesium-core/dist/cesium-core.mjs +5881 -0
- package/plugins/plugins/cesium-core/dist/cesium-core.mjs.map +1 -0
- package/plugins/plugins/cesium-core/dist/cesium-core.umd.js +77 -0
- package/plugins/plugins/cesium-core/dist/cesium-core.umd.js.map +1 -0
- package/plugins/plugins/cesium-core/dist/components/BufferedHierarchicalAggregator.d.ts +73 -0
- package/plugins/plugins/cesium-core/dist/components/HtmlOverlayLabelPool.d.ts +152 -0
- package/plugins/plugins/cesium-core/dist/components/MarkerEvent.d.ts +38 -0
- package/plugins/plugins/cesium-core/dist/components/Material/MaterialManager.d.ts +49 -0
- package/plugins/plugins/cesium-core/dist/components/Material/help/PolylineFlowMaterialProperty.d.ts +10 -0
- package/plugins/plugins/cesium-core/dist/components/Material/help/dynamicImgMaterial.d.ts +16 -0
- package/plugins/plugins/cesium-core/dist/components/Material/index.d.ts +3 -0
- package/plugins/plugins/cesium-core/dist/components/TooltipManager.d.ts +11 -0
- package/plugins/plugins/cesium-core/dist/components/draw/DrawTool.d.ts +10 -0
- package/plugins/plugins/cesium-core/dist/components/draw/handlers/CircleDrawer.d.ts +16 -0
- package/plugins/plugins/cesium-core/dist/components/draw/handlers/LineDrawer.d.ts +14 -0
- package/plugins/plugins/cesium-core/dist/components/draw/handlers/PointDrawer.d.ts +12 -0
- package/plugins/plugins/cesium-core/dist/components/draw/handlers/PolygonDrawer.d.ts +14 -0
- package/plugins/plugins/cesium-core/dist/components/draw/handlers/RectangleDrawer.d.ts +13 -0
- package/plugins/plugins/cesium-core/dist/components/draw/types.d.ts +29 -0
- package/plugins/plugins/cesium-core/dist/components/entity/EntityLayer.d.ts +65 -0
- package/plugins/plugins/cesium-core/dist/components/gltf/GLTFManage.d.ts +141 -0
- package/plugins/plugins/cesium-core/dist/components/gltf/index.d.ts +1 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/MeasurementTool.d.ts +34 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/AreaMeasure.d.ts +23 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/CircleMeasure.d.ts +21 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/CoordinateMeasure.d.ts +16 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/HorizontalMeasure.d.ts +25 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/PolylineDistanceMeasure.d.ts +24 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/RectangleMeasure.d.ts +22 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/RegularPolygonMeasure.d.ts +23 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/SpaceMeasure.d.ts +20 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/TerrainHeightMeasure.d.ts +18 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/TriangleMeasure.d.ts +24 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/handlers/VerticalMeasure.d.ts +23 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/index.d.ts +13 -0
- package/plugins/plugins/cesium-core/dist/components/measurement/types.d.ts +42 -0
- package/plugins/plugins/cesium-core/dist/components/primitive/PrimitiveManager.d.ts +50 -0
- package/plugins/plugins/cesium-core/dist/components/roaming/CameraRoamTool.d.ts +27 -0
- package/plugins/plugins/cesium-core/dist/components/roaming/PathRoamTool.d.ts +23 -0
- package/plugins/plugins/cesium-core/dist/components/roaming/index.d.ts +3 -0
- package/plugins/plugins/cesium-core/dist/components/roaming/types.d.ts +66 -0
- package/plugins/plugins/cesium-core/dist/components/utils/convertGeoJsonToEntityData.d.ts +1 -0
- package/plugins/plugins/cesium-core/dist/components/utils/uuid.d.ts +1 -0
- package/plugins/plugins/cesium-core/dist/index.d.ts +12 -0
- package/plugins/plugins/cesium-core/package.json +26 -0
- package/plugins/plugins/cesium-core/pnpm-lock.yaml +872 -0
- package/plugins/plugins/cesium-core/src/components/BufferedHierarchicalAggregator.ts +546 -0
- package/plugins/plugins/cesium-core/src/components/HtmlOverlayLabelPool.ts +489 -0
- package/plugins/plugins/cesium-core/src/components/MarkerEvent.ts +92 -0
- package/plugins/plugins/cesium-core/src/components/Material/MaterialManager.ts +129 -0
- package/plugins/plugins/cesium-core/src/components/Material/help/PolylineFlowMaterialProperty.ts +116 -0
- package/plugins/plugins/cesium-core/src/components/Material/help/dynamicImgMaterial.ts +236 -0
- package/plugins/plugins/cesium-core/src/components/Material/index.ts +3 -0
- package/plugins/plugins/cesium-core/src/components/TooltipManager.ts +52 -0
- package/plugins/plugins/cesium-core/src/components/draw/DrawTool.ts +55 -0
- package/plugins/plugins/cesium-core/src/components/draw/handlers/CircleDrawer.ts +159 -0
- package/plugins/plugins/cesium-core/src/components/draw/handlers/LineDrawer.ts +113 -0
- package/plugins/plugins/cesium-core/src/components/draw/handlers/PointDrawer.ts +70 -0
- package/plugins/plugins/cesium-core/src/components/draw/handlers/PolygonDrawer.ts +112 -0
- package/plugins/plugins/cesium-core/src/components/draw/handlers/RectangleDrawer.ts +115 -0
- package/plugins/plugins/cesium-core/src/components/draw/types.ts +28 -0
- package/plugins/plugins/cesium-core/src/components/entity/EntityLayer.ts +453 -0
- package/plugins/plugins/cesium-core/src/components/gltf/GLTFManage.ts +799 -0
- package/plugins/plugins/cesium-core/src/components/gltf/index.ts +1 -0
- package/plugins/plugins/cesium-core/src/components/measurement/MeasurementTool.ts +416 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/AreaMeasure.ts +451 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/CircleMeasure.ts +267 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/CoordinateMeasure.ts +139 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/HorizontalMeasure.ts +418 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/PolylineDistanceMeasure.ts +352 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/RectangleMeasure.ts +388 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/RegularPolygonMeasure.ts +379 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/SpaceMeasure.ts +246 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/TerrainHeightMeasure.ts +185 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/TriangleMeasure.ts +541 -0
- package/plugins/plugins/cesium-core/src/components/measurement/handlers/VerticalMeasure.ts +360 -0
- package/plugins/plugins/cesium-core/src/components/measurement/index.ts +13 -0
- package/plugins/plugins/cesium-core/src/components/measurement/types.ts +57 -0
- package/plugins/plugins/cesium-core/src/components/primitive/PrimitiveManager.ts +556 -0
- package/plugins/plugins/cesium-core/src/components/roaming/CameraRoamTool.ts +286 -0
- package/plugins/plugins/cesium-core/src/components/roaming/PathRoamTool.ts +174 -0
- package/plugins/plugins/cesium-core/src/components/roaming/index.ts +3 -0
- package/plugins/plugins/cesium-core/src/components/roaming/types.ts +71 -0
- package/plugins/plugins/cesium-core/src/components/utils/convertGeoJsonToEntityData.ts +98 -0
- package/plugins/plugins/cesium-core/src/components/utils/uuid.ts +7 -0
- package/plugins/plugins/cesium-core/src/index.ts +17 -0
- package/plugins/plugins/cesium-core/src/test/measurement/index.html +166 -0
- package/plugins/plugins/cesium-core/src/test/roaming/c.gltf +1 -0
- package/plugins/plugins/cesium-core/src/test/roaming/f87cc3ea918a4b76bff2c88a3655eb1f.bin +0 -0
- package/plugins/plugins/cesium-core/src/test/roaming/index.html +51 -0
- package/plugins/plugins/cesium-core/src/test/roaming/path.html +448 -0
- package/plugins/plugins/cesium-core/src/test/roaming/view.html +520 -0
- package/plugins/plugins/cesium-core/stats.html +4949 -0
- package/plugins/plugins/cesium-core/tsconfig.json +14 -0
- package/plugins/plugins/cesium-core/vite.config.ts +35 -0
- package/plugins/plugins/cesium-vue/dist/components/basic-audio/index.d.ts +18 -0
- package/plugins/plugins/cesium-vue/dist/components/basic-audio/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/basic-video/index.d.ts +92 -0
- package/plugins/plugins/cesium-vue/dist/components/basic-video/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/camera-roam/index.d.ts +82 -0
- package/plugins/plugins/cesium-vue/dist/components/camera-roam/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/card-carousel/index.d.ts +152 -0
- package/plugins/plugins/cesium-vue/dist/components/card-carousel/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/card-content/index.d.ts +21 -0
- package/plugins/plugins/cesium-vue/dist/components/card-content/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/card-page/index.d.ts +69 -0
- package/plugins/plugins/cesium-vue/dist/components/card-page/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/carousel-img/index.d.ts +21 -0
- package/plugins/plugins/cesium-vue/dist/components/carousel-img/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/echarts-pro/index.d.ts +68 -0
- package/plugins/plugins/cesium-vue/dist/components/echarts-pro/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-bubble/index.d.ts +78 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-bubble/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-default/index.d.ts +48 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-default/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-html/index.d.ts +48 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-html/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-manage/index.d.ts +164 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-manage/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-text/index.d.ts +30 -0
- package/plugins/plugins/cesium-vue/dist/components/marker-text/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/measurement/index.d.ts +78 -0
- package/plugins/plugins/cesium-vue/dist/components/measurement/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/path-roam/index.d.ts +82 -0
- package/plugins/plugins/cesium-vue/dist/components/path-roam/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/components/test/index.d.ts +67 -0
- package/plugins/plugins/cesium-vue/dist/components/test/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/index.css +1 -0
- package/plugins/plugins/cesium-vue/dist/index.d.ts +30 -0
- package/plugins/plugins/cesium-vue/dist/index.d.ts.map +1 -0
- package/plugins/plugins/cesium-vue/dist/index.js +10087 -0
- package/plugins/plugins/cesium-vue/dist/index.js.map +1 -0
- package/plugins/plugins/cesium-vue/dist/index.umd.cjs +46 -0
- package/plugins/plugins/cesium-vue/dist/index.umd.cjs.map +1 -0
- package/plugins/plugins/cesium-vue/package.json +48 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-001.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-002.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-003.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-004.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-005.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-006.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-007.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-008.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-009.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-010.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-011.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/icons/icon-012.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/img/Card3-BG.png +0 -0
- package/plugins/plugins/cesium-vue/src/assets/img/card_bg3.png +0 -0
- package/plugins/plugins/cesium-vue/src/components/basic-audio/index.ts +11 -0
- package/plugins/plugins/cesium-vue/src/components/basic-audio/src/BasicAudio.vue +110 -0
- package/plugins/plugins/cesium-vue/src/components/basic-audio/src/basicAudio.ts +6 -0
- package/plugins/plugins/cesium-vue/src/components/basic-video/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/basic-video/src/BasicVideo.vue +99 -0
- package/plugins/plugins/cesium-vue/src/components/basic-video/src/basicVideo.ts +13 -0
- package/plugins/plugins/cesium-vue/src/components/camera-roam/index.ts +4 -0
- package/plugins/plugins/cesium-vue/src/components/camera-roam/src/CameraRoam.vue +434 -0
- package/plugins/plugins/cesium-vue/src/components/camera-roam/src/cameraRoam.ts +28 -0
- package/plugins/plugins/cesium-vue/src/components/card-carousel/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/card-carousel/src/CardCarousel.vue +124 -0
- package/plugins/plugins/cesium-vue/src/components/card-carousel/src/cardCarousel.ts +60 -0
- package/plugins/plugins/cesium-vue/src/components/card-content/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/card-content/src/CardContent.vue +41 -0
- package/plugins/plugins/cesium-vue/src/components/card-content/src/cardContent.ts +22 -0
- package/plugins/plugins/cesium-vue/src/components/card-page/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/card-page/src/CardPage.vue +102 -0
- package/plugins/plugins/cesium-vue/src/components/card-page/src/cardPage.ts +37 -0
- package/plugins/plugins/cesium-vue/src/components/carousel-img/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/carousel-img/src/CarouselImg.vue +15 -0
- package/plugins/plugins/cesium-vue/src/components/carousel-img/src/carouselImg.ts +6 -0
- package/plugins/plugins/cesium-vue/src/components/echarts-pro/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/echarts-pro/src/EchartsPro.vue +107 -0
- package/plugins/plugins/cesium-vue/src/components/echarts-pro/src/echartsPro.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/echarts-pro/src/hook/useECharts.ts +55 -0
- package/plugins/plugins/cesium-vue/src/components/marker-bubble/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/marker-bubble/src/MarkerBubble.vue +235 -0
- package/plugins/plugins/cesium-vue/src/components/marker-bubble/src/markerBubble.ts +35 -0
- package/plugins/plugins/cesium-vue/src/components/marker-default/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/marker-default/src/MarkerDefault.vue +19 -0
- package/plugins/plugins/cesium-vue/src/components/marker-default/src/markerDefault.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/marker-html/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/marker-html/src/MarkerHtml.vue +21 -0
- package/plugins/plugins/cesium-vue/src/components/marker-html/src/markerHtml.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/marker-manage/index.ts +14 -0
- package/plugins/plugins/cesium-vue/src/components/marker-manage/src/components/MarkerManage.vue +106 -0
- package/plugins/plugins/cesium-vue/src/components/marker-manage/src/config/theme.ts +8 -0
- package/plugins/plugins/cesium-vue/src/components/marker-manage/src/core/MarkerManage.ts +466 -0
- package/plugins/plugins/cesium-vue/src/components/marker-manage/src/core/MarkerManagerCore.ts +148 -0
- package/plugins/plugins/cesium-vue/src/components/marker-manage/src/hook/useMarkerManage.ts +45 -0
- package/plugins/plugins/cesium-vue/src/components/marker-manage/src/type/markerManage.ts +75 -0
- package/plugins/plugins/cesium-vue/src/components/marker-manage/src/utils/themeTool.ts +154 -0
- package/plugins/plugins/cesium-vue/src/components/marker-text/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/marker-text/src/MarkerText.vue +14 -0
- package/plugins/plugins/cesium-vue/src/components/marker-text/src/markerText.ts +10 -0
- package/plugins/plugins/cesium-vue/src/components/measurement/index.ts +12 -0
- package/plugins/plugins/cesium-vue/src/components/measurement/src/Measurement.vue +183 -0
- package/plugins/plugins/cesium-vue/src/components/measurement/src/measurement.ts +20 -0
- package/plugins/plugins/cesium-vue/src/components/path-roam/index.ts +4 -0
- package/plugins/plugins/cesium-vue/src/components/path-roam/src/PathRoam.vue +429 -0
- package/plugins/plugins/cesium-vue/src/components/path-roam/src/pathRoam.ts +28 -0
- package/plugins/plugins/cesium-vue/src/components/test/CardMarker.vue +150 -0
- package/plugins/plugins/cesium-vue/src/components/test/CesiumMarker.vue +34 -0
- package/plugins/plugins/cesium-vue/src/components/test/CesiumViewer.vue +77 -0
- package/plugins/plugins/cesium-vue/src/components/test/MyLabel.vue +25 -0
- package/plugins/plugins/cesium-vue/src/components/test/index.ts +28 -0
- package/plugins/plugins/cesium-vue/src/index.ts +83 -0
- package/plugins/plugins/cesium-vue/stats.html +4949 -0
- package/plugins/plugins/cesium-vue/tsconfig.json +18 -0
- package/plugins/plugins/cesium-vue/vite.config.ts +56 -0
- package/plugins/plugins/theme-chalk/dist/theme-chalk.css +819 -0
- package/plugins/plugins/theme-chalk/index.less +11 -0
- package/plugins/plugins/theme-chalk/package.json +27 -0
- package/plugins/plugins/theme-chalk/src/basicAudio.less +41 -0
- package/plugins/plugins/theme-chalk/src/basicVideo.less +17 -0
- package/plugins/plugins/theme-chalk/src/cameraRoam.less +239 -0
- package/plugins/plugins/theme-chalk/src/cardCarousel.less +71 -0
- package/plugins/plugins/theme-chalk/src/cardContent.less +73 -0
- package/plugins/plugins/theme-chalk/src/cardPage.less +61 -0
- package/plugins/plugins/theme-chalk/src/carouselImg.less +34 -0
- package/plugins/plugins/theme-chalk/src/marker.less +107 -0
- package/plugins/plugins/theme-chalk/src/markerManage.less +25 -0
- package/plugins/plugins/theme-chalk/src/measurement.less +106 -0
- package/plugins/plugins/theme-chalk/src/mixins/config.less +4 -0
- package/plugins/plugins/theme-chalk/src/mixins/mixins.less +64 -0
- package/plugins/plugins/theme-chalk/src/pathRoam.less +198 -0
- package/plugins/plugins/utils/create.ts +45 -0
- package/plugins/plugins/utils/package.json +12 -0
- package/plugins/plugins/utils/uuid.ts +43 -0
- package/plugins/plugins/utils/with-install.ts +10 -0
- package/plugins/theme-chalk/dist/theme-chalk.css +852 -0
- package/plugins/theme-chalk/index.less +11 -0
- package/plugins/theme-chalk/package.json +27 -0
- package/plugins/theme-chalk/src/basicAudio.less +44 -0
- package/plugins/theme-chalk/src/basicVideo.less +17 -0
- package/plugins/theme-chalk/src/cameraRoam.less +239 -0
- package/plugins/theme-chalk/src/cardCarousel.less +71 -0
- package/plugins/theme-chalk/src/cardContent.less +73 -0
- package/plugins/theme-chalk/src/cardPage.less +61 -0
- package/plugins/theme-chalk/src/carouselImg.less +66 -0
- package/plugins/theme-chalk/src/marker.less +107 -0
- package/plugins/theme-chalk/src/markerManage.less +25 -0
- package/plugins/theme-chalk/src/measurement.less +106 -0
- package/plugins/theme-chalk/src/mixins/config.less +4 -0
- package/plugins/theme-chalk/src/mixins/mixins.less +64 -0
- package/plugins/theme-chalk/src/pathRoam.less +198 -0
- package/plugins/utils/create.ts +45 -0
- package/plugins/utils/package.json +12 -0
- package/plugins/utils/uuid.ts +43 -0
- package/plugins/utils/with-install.ts +10 -0
|
@@ -0,0 +1,872 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
cesium:
|
|
12
|
+
specifier: ^1.130.0
|
|
13
|
+
version: 1.130.0
|
|
14
|
+
devDependencies:
|
|
15
|
+
typescript:
|
|
16
|
+
specifier: ^5.8.3
|
|
17
|
+
version: 5.8.3
|
|
18
|
+
vite:
|
|
19
|
+
specifier: ^6.3.5
|
|
20
|
+
version: 6.3.5(@types/node@22.15.29)
|
|
21
|
+
|
|
22
|
+
packages:
|
|
23
|
+
|
|
24
|
+
'@cesium/engine@18.0.0':
|
|
25
|
+
resolution: {integrity: sha512-BmORpS2BVGT/Rd9f591a7PudFxXeCq2agdBAUX6XBhxUboieI9hU5MEC7EjT0sSLGLtwVw9i2hu4/XOXUnFXWg==}
|
|
26
|
+
engines: {node: '>=20.19.0'}
|
|
27
|
+
|
|
28
|
+
'@cesium/widgets@12.1.0':
|
|
29
|
+
resolution: {integrity: sha512-t93u/yyVp0x+27Bl6g4DyQtLOFfpF8hZjou+/JpekSExS2uy8akPVl5KjTbwonlx0D1AaTmjP45mLRLvcLpb3g==}
|
|
30
|
+
engines: {node: '>=20.19.0'}
|
|
31
|
+
|
|
32
|
+
'@esbuild/aix-ppc64@0.25.5':
|
|
33
|
+
resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==}
|
|
34
|
+
engines: {node: '>=18'}
|
|
35
|
+
cpu: [ppc64]
|
|
36
|
+
os: [aix]
|
|
37
|
+
|
|
38
|
+
'@esbuild/android-arm64@0.25.5':
|
|
39
|
+
resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==}
|
|
40
|
+
engines: {node: '>=18'}
|
|
41
|
+
cpu: [arm64]
|
|
42
|
+
os: [android]
|
|
43
|
+
|
|
44
|
+
'@esbuild/android-arm@0.25.5':
|
|
45
|
+
resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==}
|
|
46
|
+
engines: {node: '>=18'}
|
|
47
|
+
cpu: [arm]
|
|
48
|
+
os: [android]
|
|
49
|
+
|
|
50
|
+
'@esbuild/android-x64@0.25.5':
|
|
51
|
+
resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==}
|
|
52
|
+
engines: {node: '>=18'}
|
|
53
|
+
cpu: [x64]
|
|
54
|
+
os: [android]
|
|
55
|
+
|
|
56
|
+
'@esbuild/darwin-arm64@0.25.5':
|
|
57
|
+
resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==}
|
|
58
|
+
engines: {node: '>=18'}
|
|
59
|
+
cpu: [arm64]
|
|
60
|
+
os: [darwin]
|
|
61
|
+
|
|
62
|
+
'@esbuild/darwin-x64@0.25.5':
|
|
63
|
+
resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==}
|
|
64
|
+
engines: {node: '>=18'}
|
|
65
|
+
cpu: [x64]
|
|
66
|
+
os: [darwin]
|
|
67
|
+
|
|
68
|
+
'@esbuild/freebsd-arm64@0.25.5':
|
|
69
|
+
resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==}
|
|
70
|
+
engines: {node: '>=18'}
|
|
71
|
+
cpu: [arm64]
|
|
72
|
+
os: [freebsd]
|
|
73
|
+
|
|
74
|
+
'@esbuild/freebsd-x64@0.25.5':
|
|
75
|
+
resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==}
|
|
76
|
+
engines: {node: '>=18'}
|
|
77
|
+
cpu: [x64]
|
|
78
|
+
os: [freebsd]
|
|
79
|
+
|
|
80
|
+
'@esbuild/linux-arm64@0.25.5':
|
|
81
|
+
resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==}
|
|
82
|
+
engines: {node: '>=18'}
|
|
83
|
+
cpu: [arm64]
|
|
84
|
+
os: [linux]
|
|
85
|
+
|
|
86
|
+
'@esbuild/linux-arm@0.25.5':
|
|
87
|
+
resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==}
|
|
88
|
+
engines: {node: '>=18'}
|
|
89
|
+
cpu: [arm]
|
|
90
|
+
os: [linux]
|
|
91
|
+
|
|
92
|
+
'@esbuild/linux-ia32@0.25.5':
|
|
93
|
+
resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==}
|
|
94
|
+
engines: {node: '>=18'}
|
|
95
|
+
cpu: [ia32]
|
|
96
|
+
os: [linux]
|
|
97
|
+
|
|
98
|
+
'@esbuild/linux-loong64@0.25.5':
|
|
99
|
+
resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==}
|
|
100
|
+
engines: {node: '>=18'}
|
|
101
|
+
cpu: [loong64]
|
|
102
|
+
os: [linux]
|
|
103
|
+
|
|
104
|
+
'@esbuild/linux-mips64el@0.25.5':
|
|
105
|
+
resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==}
|
|
106
|
+
engines: {node: '>=18'}
|
|
107
|
+
cpu: [mips64el]
|
|
108
|
+
os: [linux]
|
|
109
|
+
|
|
110
|
+
'@esbuild/linux-ppc64@0.25.5':
|
|
111
|
+
resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==}
|
|
112
|
+
engines: {node: '>=18'}
|
|
113
|
+
cpu: [ppc64]
|
|
114
|
+
os: [linux]
|
|
115
|
+
|
|
116
|
+
'@esbuild/linux-riscv64@0.25.5':
|
|
117
|
+
resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==}
|
|
118
|
+
engines: {node: '>=18'}
|
|
119
|
+
cpu: [riscv64]
|
|
120
|
+
os: [linux]
|
|
121
|
+
|
|
122
|
+
'@esbuild/linux-s390x@0.25.5':
|
|
123
|
+
resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==}
|
|
124
|
+
engines: {node: '>=18'}
|
|
125
|
+
cpu: [s390x]
|
|
126
|
+
os: [linux]
|
|
127
|
+
|
|
128
|
+
'@esbuild/linux-x64@0.25.5':
|
|
129
|
+
resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==}
|
|
130
|
+
engines: {node: '>=18'}
|
|
131
|
+
cpu: [x64]
|
|
132
|
+
os: [linux]
|
|
133
|
+
|
|
134
|
+
'@esbuild/netbsd-arm64@0.25.5':
|
|
135
|
+
resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==}
|
|
136
|
+
engines: {node: '>=18'}
|
|
137
|
+
cpu: [arm64]
|
|
138
|
+
os: [netbsd]
|
|
139
|
+
|
|
140
|
+
'@esbuild/netbsd-x64@0.25.5':
|
|
141
|
+
resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==}
|
|
142
|
+
engines: {node: '>=18'}
|
|
143
|
+
cpu: [x64]
|
|
144
|
+
os: [netbsd]
|
|
145
|
+
|
|
146
|
+
'@esbuild/openbsd-arm64@0.25.5':
|
|
147
|
+
resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==}
|
|
148
|
+
engines: {node: '>=18'}
|
|
149
|
+
cpu: [arm64]
|
|
150
|
+
os: [openbsd]
|
|
151
|
+
|
|
152
|
+
'@esbuild/openbsd-x64@0.25.5':
|
|
153
|
+
resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==}
|
|
154
|
+
engines: {node: '>=18'}
|
|
155
|
+
cpu: [x64]
|
|
156
|
+
os: [openbsd]
|
|
157
|
+
|
|
158
|
+
'@esbuild/sunos-x64@0.25.5':
|
|
159
|
+
resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==}
|
|
160
|
+
engines: {node: '>=18'}
|
|
161
|
+
cpu: [x64]
|
|
162
|
+
os: [sunos]
|
|
163
|
+
|
|
164
|
+
'@esbuild/win32-arm64@0.25.5':
|
|
165
|
+
resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==}
|
|
166
|
+
engines: {node: '>=18'}
|
|
167
|
+
cpu: [arm64]
|
|
168
|
+
os: [win32]
|
|
169
|
+
|
|
170
|
+
'@esbuild/win32-ia32@0.25.5':
|
|
171
|
+
resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==}
|
|
172
|
+
engines: {node: '>=18'}
|
|
173
|
+
cpu: [ia32]
|
|
174
|
+
os: [win32]
|
|
175
|
+
|
|
176
|
+
'@esbuild/win32-x64@0.25.5':
|
|
177
|
+
resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==}
|
|
178
|
+
engines: {node: '>=18'}
|
|
179
|
+
cpu: [x64]
|
|
180
|
+
os: [win32]
|
|
181
|
+
|
|
182
|
+
'@protobufjs/aspromise@1.1.2':
|
|
183
|
+
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
|
|
184
|
+
|
|
185
|
+
'@protobufjs/base64@1.1.2':
|
|
186
|
+
resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==}
|
|
187
|
+
|
|
188
|
+
'@protobufjs/codegen@2.0.4':
|
|
189
|
+
resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==}
|
|
190
|
+
|
|
191
|
+
'@protobufjs/eventemitter@1.1.0':
|
|
192
|
+
resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==}
|
|
193
|
+
|
|
194
|
+
'@protobufjs/fetch@1.1.0':
|
|
195
|
+
resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==}
|
|
196
|
+
|
|
197
|
+
'@protobufjs/float@1.0.2':
|
|
198
|
+
resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==}
|
|
199
|
+
|
|
200
|
+
'@protobufjs/inquire@1.1.0':
|
|
201
|
+
resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==}
|
|
202
|
+
|
|
203
|
+
'@protobufjs/path@1.1.2':
|
|
204
|
+
resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==}
|
|
205
|
+
|
|
206
|
+
'@protobufjs/pool@1.1.0':
|
|
207
|
+
resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==}
|
|
208
|
+
|
|
209
|
+
'@protobufjs/utf8@1.1.0':
|
|
210
|
+
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
|
|
211
|
+
|
|
212
|
+
'@rollup/rollup-android-arm-eabi@4.41.1':
|
|
213
|
+
resolution: {integrity: sha512-NELNvyEWZ6R9QMkiytB4/L4zSEaBC03KIXEghptLGLZWJ6VPrL63ooZQCOnlx36aQPGhzuOMwDerC1Eb2VmrLw==}
|
|
214
|
+
cpu: [arm]
|
|
215
|
+
os: [android]
|
|
216
|
+
|
|
217
|
+
'@rollup/rollup-android-arm64@4.41.1':
|
|
218
|
+
resolution: {integrity: sha512-DXdQe1BJ6TK47ukAoZLehRHhfKnKg9BjnQYUu9gzhI8Mwa1d2fzxA1aw2JixHVl403bwp1+/o/NhhHtxWJBgEA==}
|
|
219
|
+
cpu: [arm64]
|
|
220
|
+
os: [android]
|
|
221
|
+
|
|
222
|
+
'@rollup/rollup-darwin-arm64@4.41.1':
|
|
223
|
+
resolution: {integrity: sha512-5afxvwszzdulsU2w8JKWwY8/sJOLPzf0e1bFuvcW5h9zsEg+RQAojdW0ux2zyYAz7R8HvvzKCjLNJhVq965U7w==}
|
|
224
|
+
cpu: [arm64]
|
|
225
|
+
os: [darwin]
|
|
226
|
+
|
|
227
|
+
'@rollup/rollup-darwin-x64@4.41.1':
|
|
228
|
+
resolution: {integrity: sha512-egpJACny8QOdHNNMZKf8xY0Is6gIMz+tuqXlusxquWu3F833DcMwmGM7WlvCO9sB3OsPjdC4U0wHw5FabzCGZg==}
|
|
229
|
+
cpu: [x64]
|
|
230
|
+
os: [darwin]
|
|
231
|
+
|
|
232
|
+
'@rollup/rollup-freebsd-arm64@4.41.1':
|
|
233
|
+
resolution: {integrity: sha512-DBVMZH5vbjgRk3r0OzgjS38z+atlupJ7xfKIDJdZZL6sM6wjfDNo64aowcLPKIx7LMQi8vybB56uh1Ftck/Atg==}
|
|
234
|
+
cpu: [arm64]
|
|
235
|
+
os: [freebsd]
|
|
236
|
+
|
|
237
|
+
'@rollup/rollup-freebsd-x64@4.41.1':
|
|
238
|
+
resolution: {integrity: sha512-3FkydeohozEskBxNWEIbPfOE0aqQgB6ttTkJ159uWOFn42VLyfAiyD9UK5mhu+ItWzft60DycIN1Xdgiy8o/SA==}
|
|
239
|
+
cpu: [x64]
|
|
240
|
+
os: [freebsd]
|
|
241
|
+
|
|
242
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.41.1':
|
|
243
|
+
resolution: {integrity: sha512-wC53ZNDgt0pqx5xCAgNunkTzFE8GTgdZ9EwYGVcg+jEjJdZGtq9xPjDnFgfFozQI/Xm1mh+D9YlYtl+ueswNEg==}
|
|
244
|
+
cpu: [arm]
|
|
245
|
+
os: [linux]
|
|
246
|
+
libc: [glibc]
|
|
247
|
+
|
|
248
|
+
'@rollup/rollup-linux-arm-musleabihf@4.41.1':
|
|
249
|
+
resolution: {integrity: sha512-jwKCca1gbZkZLhLRtsrka5N8sFAaxrGz/7wRJ8Wwvq3jug7toO21vWlViihG85ei7uJTpzbXZRcORotE+xyrLA==}
|
|
250
|
+
cpu: [arm]
|
|
251
|
+
os: [linux]
|
|
252
|
+
libc: [musl]
|
|
253
|
+
|
|
254
|
+
'@rollup/rollup-linux-arm64-gnu@4.41.1':
|
|
255
|
+
resolution: {integrity: sha512-g0UBcNknsmmNQ8V2d/zD2P7WWfJKU0F1nu0k5pW4rvdb+BIqMm8ToluW/eeRmxCared5dD76lS04uL4UaNgpNA==}
|
|
256
|
+
cpu: [arm64]
|
|
257
|
+
os: [linux]
|
|
258
|
+
libc: [glibc]
|
|
259
|
+
|
|
260
|
+
'@rollup/rollup-linux-arm64-musl@4.41.1':
|
|
261
|
+
resolution: {integrity: sha512-XZpeGB5TKEZWzIrj7sXr+BEaSgo/ma/kCgrZgL0oo5qdB1JlTzIYQKel/RmhT6vMAvOdM2teYlAaOGJpJ9lahg==}
|
|
262
|
+
cpu: [arm64]
|
|
263
|
+
os: [linux]
|
|
264
|
+
libc: [musl]
|
|
265
|
+
|
|
266
|
+
'@rollup/rollup-linux-loongarch64-gnu@4.41.1':
|
|
267
|
+
resolution: {integrity: sha512-bkCfDJ4qzWfFRCNt5RVV4DOw6KEgFTUZi2r2RuYhGWC8WhCA8lCAJhDeAmrM/fdiAH54m0mA0Vk2FGRPyzI+tw==}
|
|
268
|
+
cpu: [loong64]
|
|
269
|
+
os: [linux]
|
|
270
|
+
libc: [glibc]
|
|
271
|
+
|
|
272
|
+
'@rollup/rollup-linux-powerpc64le-gnu@4.41.1':
|
|
273
|
+
resolution: {integrity: sha512-3mr3Xm+gvMX+/8EKogIZSIEF0WUu0HL9di+YWlJpO8CQBnoLAEL/roTCxuLncEdgcfJcvA4UMOf+2dnjl4Ut1A==}
|
|
274
|
+
cpu: [ppc64]
|
|
275
|
+
os: [linux]
|
|
276
|
+
libc: [glibc]
|
|
277
|
+
|
|
278
|
+
'@rollup/rollup-linux-riscv64-gnu@4.41.1':
|
|
279
|
+
resolution: {integrity: sha512-3rwCIh6MQ1LGrvKJitQjZFuQnT2wxfU+ivhNBzmxXTXPllewOF7JR1s2vMX/tWtUYFgphygxjqMl76q4aMotGw==}
|
|
280
|
+
cpu: [riscv64]
|
|
281
|
+
os: [linux]
|
|
282
|
+
libc: [glibc]
|
|
283
|
+
|
|
284
|
+
'@rollup/rollup-linux-riscv64-musl@4.41.1':
|
|
285
|
+
resolution: {integrity: sha512-LdIUOb3gvfmpkgFZuccNa2uYiqtgZAz3PTzjuM5bH3nvuy9ty6RGc/Q0+HDFrHrizJGVpjnTZ1yS5TNNjFlklw==}
|
|
286
|
+
cpu: [riscv64]
|
|
287
|
+
os: [linux]
|
|
288
|
+
libc: [musl]
|
|
289
|
+
|
|
290
|
+
'@rollup/rollup-linux-s390x-gnu@4.41.1':
|
|
291
|
+
resolution: {integrity: sha512-oIE6M8WC9ma6xYqjvPhzZYk6NbobIURvP/lEbh7FWplcMO6gn7MM2yHKA1eC/GvYwzNKK/1LYgqzdkZ8YFxR8g==}
|
|
292
|
+
cpu: [s390x]
|
|
293
|
+
os: [linux]
|
|
294
|
+
libc: [glibc]
|
|
295
|
+
|
|
296
|
+
'@rollup/rollup-linux-x64-gnu@4.41.1':
|
|
297
|
+
resolution: {integrity: sha512-cWBOvayNvA+SyeQMp79BHPK8ws6sHSsYnK5zDcsC3Hsxr1dgTABKjMnMslPq1DvZIp6uO7kIWhiGwaTdR4Og9A==}
|
|
298
|
+
cpu: [x64]
|
|
299
|
+
os: [linux]
|
|
300
|
+
libc: [glibc]
|
|
301
|
+
|
|
302
|
+
'@rollup/rollup-linux-x64-musl@4.41.1':
|
|
303
|
+
resolution: {integrity: sha512-y5CbN44M+pUCdGDlZFzGGBSKCA4A/J2ZH4edTYSSxFg7ce1Xt3GtydbVKWLlzL+INfFIZAEg1ZV6hh9+QQf9YQ==}
|
|
304
|
+
cpu: [x64]
|
|
305
|
+
os: [linux]
|
|
306
|
+
libc: [musl]
|
|
307
|
+
|
|
308
|
+
'@rollup/rollup-win32-arm64-msvc@4.41.1':
|
|
309
|
+
resolution: {integrity: sha512-lZkCxIrjlJlMt1dLO/FbpZbzt6J/A8p4DnqzSa4PWqPEUUUnzXLeki/iyPLfV0BmHItlYgHUqJe+3KiyydmiNQ==}
|
|
310
|
+
cpu: [arm64]
|
|
311
|
+
os: [win32]
|
|
312
|
+
|
|
313
|
+
'@rollup/rollup-win32-ia32-msvc@4.41.1':
|
|
314
|
+
resolution: {integrity: sha512-+psFT9+pIh2iuGsxFYYa/LhS5MFKmuivRsx9iPJWNSGbh2XVEjk90fmpUEjCnILPEPJnikAU6SFDiEUyOv90Pg==}
|
|
315
|
+
cpu: [ia32]
|
|
316
|
+
os: [win32]
|
|
317
|
+
|
|
318
|
+
'@rollup/rollup-win32-x64-msvc@4.41.1':
|
|
319
|
+
resolution: {integrity: sha512-Wq2zpapRYLfi4aKxf2Xff0tN+7slj2d4R87WEzqw7ZLsVvO5zwYCIuEGSZYiK41+GlwUo1HiR+GdkLEJnCKTCw==}
|
|
320
|
+
cpu: [x64]
|
|
321
|
+
os: [win32]
|
|
322
|
+
|
|
323
|
+
'@tweenjs/tween.js@25.0.0':
|
|
324
|
+
resolution: {integrity: sha512-XKLA6syeBUaPzx4j3qwMqzzq+V4uo72BnlbOjmuljLrRqdsd3qnzvZZoxvMHZ23ndsRS4aufU6JOZYpCbU6T1A==}
|
|
325
|
+
|
|
326
|
+
'@types/estree@1.0.7':
|
|
327
|
+
resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
|
|
328
|
+
|
|
329
|
+
'@types/node@22.15.29':
|
|
330
|
+
resolution: {integrity: sha512-LNdjOkUDlU1RZb8e1kOIUpN1qQUlzGkEtbVNo53vbrwDg5om6oduhm4SiUaPW5ASTXhAiP0jInWG8Qx9fVlOeQ==}
|
|
331
|
+
|
|
332
|
+
'@types/trusted-types@2.0.7':
|
|
333
|
+
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
|
|
334
|
+
|
|
335
|
+
'@zip.js/zip.js@2.7.62':
|
|
336
|
+
resolution: {integrity: sha512-OaLvZ8j4gCkLn048ypkZu29KX30r8/OfFF2w4Jo5WXFr+J04J+lzJ5TKZBVgFXhlvSkqNFQdfnY1Q8TMTCyBVA==}
|
|
337
|
+
engines: {bun: '>=0.7.0', deno: '>=1.0.0', node: '>=16.5.0'}
|
|
338
|
+
|
|
339
|
+
autolinker@4.1.5:
|
|
340
|
+
resolution: {integrity: sha512-vEfYZPmvVOIuE567XBVCsx8SBgOYtjB2+S1iAaJ+HgH+DNjAcrHem2hmAeC9yaNGWayicv4yR+9UaJlkF3pvtw==}
|
|
341
|
+
engines: {pnpm: '>=10.10.0'}
|
|
342
|
+
|
|
343
|
+
bitmap-sdf@1.0.4:
|
|
344
|
+
resolution: {integrity: sha512-1G3U4n5JE6RAiALMxu0p1XmeZkTeCwGKykzsLTCqVzfSDaN6S7fKnkIkfejogz+iwqBWc0UYAIKnKHNN7pSfDg==}
|
|
345
|
+
|
|
346
|
+
cesium@1.130.0:
|
|
347
|
+
resolution: {integrity: sha512-OgmmjStUoRhLVA2YnMt6eK3p2vwePZ2dw4ukpze8cVdkUWlxM6rtboldOgZvg1LLnpeEpcGOB5h6+sNuT6a56w==}
|
|
348
|
+
engines: {node: '>=20.19.0'}
|
|
349
|
+
|
|
350
|
+
commander@2.20.3:
|
|
351
|
+
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
|
|
352
|
+
|
|
353
|
+
dompurify@3.2.6:
|
|
354
|
+
resolution: {integrity: sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ==}
|
|
355
|
+
|
|
356
|
+
draco3d@1.5.7:
|
|
357
|
+
resolution: {integrity: sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ==}
|
|
358
|
+
|
|
359
|
+
earcut@3.0.1:
|
|
360
|
+
resolution: {integrity: sha512-0l1/0gOjESMeQyYaK5IDiPNvFeu93Z/cO0TjZh9eZ1vyCtZnA7KMZ8rQggpsJHIbGSdrqYq9OhuveadOVHCshw==}
|
|
361
|
+
|
|
362
|
+
esbuild@0.25.5:
|
|
363
|
+
resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==}
|
|
364
|
+
engines: {node: '>=18'}
|
|
365
|
+
hasBin: true
|
|
366
|
+
|
|
367
|
+
fdir@6.4.5:
|
|
368
|
+
resolution: {integrity: sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==}
|
|
369
|
+
peerDependencies:
|
|
370
|
+
picomatch: ^3 || ^4
|
|
371
|
+
peerDependenciesMeta:
|
|
372
|
+
picomatch:
|
|
373
|
+
optional: true
|
|
374
|
+
|
|
375
|
+
fsevents@2.3.3:
|
|
376
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
377
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
378
|
+
os: [darwin]
|
|
379
|
+
|
|
380
|
+
grapheme-splitter@1.0.4:
|
|
381
|
+
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
|
|
382
|
+
|
|
383
|
+
jsep@1.4.0:
|
|
384
|
+
resolution: {integrity: sha512-B7qPcEVE3NVkmSJbaYxvv4cHkVW7DQsZz13pUMrfS8z8Q/BuShN+gcTXrUlPiGqM2/t/EEaI030bpxMqY8gMlw==}
|
|
385
|
+
engines: {node: '>= 10.16.0'}
|
|
386
|
+
|
|
387
|
+
kdbush@4.0.2:
|
|
388
|
+
resolution: {integrity: sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==}
|
|
389
|
+
|
|
390
|
+
ktx-parse@1.0.0:
|
|
391
|
+
resolution: {integrity: sha512-Z31kVizz4DF/6vo9YiSYVBhuXAfyQy9bGxlW3+mB5OELoZjfXVZQpRoctsx8IEDKxBd6SagXKo7qRvu38i8Jfg==}
|
|
392
|
+
|
|
393
|
+
lerc@2.0.0:
|
|
394
|
+
resolution: {integrity: sha512-7qo1Mq8ZNmaR4USHHm615nEW2lPeeWJ3bTyoqFbd35DLx0LUH7C6ptt5FDCTAlbIzs3+WKrk5SkJvw8AFDE2hg==}
|
|
395
|
+
|
|
396
|
+
long@5.3.2:
|
|
397
|
+
resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==}
|
|
398
|
+
|
|
399
|
+
mersenne-twister@1.1.0:
|
|
400
|
+
resolution: {integrity: sha512-mUYWsMKNrm4lfygPkL3OfGzOPTR2DBlTkBNHM//F6hGp8cLThY897crAlk3/Jo17LEOOjQUrNAx6DvgO77QJkA==}
|
|
401
|
+
|
|
402
|
+
meshoptimizer@0.23.0:
|
|
403
|
+
resolution: {integrity: sha512-zAZcfhHE3wBbwEN8MfCMI9PKRyOpz8491wcR2dxkv3IlNwDZrq2hEs5JZVtzfBrmjWhBZZtZZUO0OBSNFq5iUQ==}
|
|
404
|
+
|
|
405
|
+
nanoid@3.3.11:
|
|
406
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
407
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
408
|
+
hasBin: true
|
|
409
|
+
|
|
410
|
+
nosleep.js@0.12.0:
|
|
411
|
+
resolution: {integrity: sha512-9d1HbpKLh3sdWlhXMhU6MMH+wQzKkrgfRkYV0EBdvt99YJfj0ilCJrWRDYG2130Tm4GXbEoTCx5b34JSaP+HhA==}
|
|
412
|
+
|
|
413
|
+
pako@2.1.0:
|
|
414
|
+
resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
|
|
415
|
+
|
|
416
|
+
picocolors@1.1.1:
|
|
417
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
418
|
+
|
|
419
|
+
picomatch@4.0.2:
|
|
420
|
+
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
|
|
421
|
+
engines: {node: '>=12'}
|
|
422
|
+
|
|
423
|
+
postcss@8.5.4:
|
|
424
|
+
resolution: {integrity: sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==}
|
|
425
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
426
|
+
|
|
427
|
+
protobufjs@7.5.3:
|
|
428
|
+
resolution: {integrity: sha512-sildjKwVqOI2kmFDiXQ6aEB0fjYTafpEvIBs8tOR8qI4spuL9OPROLVu2qZqi/xgCfsHIwVqlaF8JBjWFHnKbw==}
|
|
429
|
+
engines: {node: '>=12.0.0'}
|
|
430
|
+
|
|
431
|
+
quickselect@3.0.0:
|
|
432
|
+
resolution: {integrity: sha512-XdjUArbK4Bm5fLLvlm5KpTFOiOThgfWWI4axAZDWg4E/0mKdZyI9tNEfds27qCi1ze/vwTR16kvmmGhRra3c2g==}
|
|
433
|
+
|
|
434
|
+
rbush@4.0.1:
|
|
435
|
+
resolution: {integrity: sha512-IP0UpfeWQujYC8Jg162rMNc01Rf0gWMMAb2Uxus/Q0qOFw4lCcq6ZnQEZwUoJqWyUGJ9th7JjwI4yIWo+uvoAQ==}
|
|
436
|
+
|
|
437
|
+
rollup@4.41.1:
|
|
438
|
+
resolution: {integrity: sha512-cPmwD3FnFv8rKMBc1MxWCwVQFxwf1JEmSX3iQXrRVVG15zerAIXRjMFVWnd5Q5QvgKF7Aj+5ykXFhUl+QGnyOw==}
|
|
439
|
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
440
|
+
hasBin: true
|
|
441
|
+
|
|
442
|
+
source-map-js@1.2.1:
|
|
443
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
444
|
+
engines: {node: '>=0.10.0'}
|
|
445
|
+
|
|
446
|
+
tinyglobby@0.2.14:
|
|
447
|
+
resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
|
|
448
|
+
engines: {node: '>=12.0.0'}
|
|
449
|
+
|
|
450
|
+
topojson-client@3.1.0:
|
|
451
|
+
resolution: {integrity: sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==}
|
|
452
|
+
hasBin: true
|
|
453
|
+
|
|
454
|
+
tslib@2.8.1:
|
|
455
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
456
|
+
|
|
457
|
+
typescript@5.8.3:
|
|
458
|
+
resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
|
|
459
|
+
engines: {node: '>=14.17'}
|
|
460
|
+
hasBin: true
|
|
461
|
+
|
|
462
|
+
undici-types@6.21.0:
|
|
463
|
+
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
464
|
+
|
|
465
|
+
urijs@1.19.11:
|
|
466
|
+
resolution: {integrity: sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==}
|
|
467
|
+
|
|
468
|
+
vite@6.3.5:
|
|
469
|
+
resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==}
|
|
470
|
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
|
471
|
+
hasBin: true
|
|
472
|
+
peerDependencies:
|
|
473
|
+
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
|
|
474
|
+
jiti: '>=1.21.0'
|
|
475
|
+
less: '*'
|
|
476
|
+
lightningcss: ^1.21.0
|
|
477
|
+
sass: '*'
|
|
478
|
+
sass-embedded: '*'
|
|
479
|
+
stylus: '*'
|
|
480
|
+
sugarss: '*'
|
|
481
|
+
terser: ^5.16.0
|
|
482
|
+
tsx: ^4.8.1
|
|
483
|
+
yaml: ^2.4.2
|
|
484
|
+
peerDependenciesMeta:
|
|
485
|
+
'@types/node':
|
|
486
|
+
optional: true
|
|
487
|
+
jiti:
|
|
488
|
+
optional: true
|
|
489
|
+
less:
|
|
490
|
+
optional: true
|
|
491
|
+
lightningcss:
|
|
492
|
+
optional: true
|
|
493
|
+
sass:
|
|
494
|
+
optional: true
|
|
495
|
+
sass-embedded:
|
|
496
|
+
optional: true
|
|
497
|
+
stylus:
|
|
498
|
+
optional: true
|
|
499
|
+
sugarss:
|
|
500
|
+
optional: true
|
|
501
|
+
terser:
|
|
502
|
+
optional: true
|
|
503
|
+
tsx:
|
|
504
|
+
optional: true
|
|
505
|
+
yaml:
|
|
506
|
+
optional: true
|
|
507
|
+
|
|
508
|
+
snapshots:
|
|
509
|
+
|
|
510
|
+
'@cesium/engine@18.0.0':
|
|
511
|
+
dependencies:
|
|
512
|
+
'@tweenjs/tween.js': 25.0.0
|
|
513
|
+
'@zip.js/zip.js': 2.7.62
|
|
514
|
+
autolinker: 4.1.5
|
|
515
|
+
bitmap-sdf: 1.0.4
|
|
516
|
+
dompurify: 3.2.6
|
|
517
|
+
draco3d: 1.5.7
|
|
518
|
+
earcut: 3.0.1
|
|
519
|
+
grapheme-splitter: 1.0.4
|
|
520
|
+
jsep: 1.4.0
|
|
521
|
+
kdbush: 4.0.2
|
|
522
|
+
ktx-parse: 1.0.0
|
|
523
|
+
lerc: 2.0.0
|
|
524
|
+
mersenne-twister: 1.1.0
|
|
525
|
+
meshoptimizer: 0.23.0
|
|
526
|
+
pako: 2.1.0
|
|
527
|
+
protobufjs: 7.5.3
|
|
528
|
+
rbush: 4.0.1
|
|
529
|
+
topojson-client: 3.1.0
|
|
530
|
+
urijs: 1.19.11
|
|
531
|
+
|
|
532
|
+
'@cesium/widgets@12.1.0':
|
|
533
|
+
dependencies:
|
|
534
|
+
'@cesium/engine': 18.0.0
|
|
535
|
+
nosleep.js: 0.12.0
|
|
536
|
+
|
|
537
|
+
'@esbuild/aix-ppc64@0.25.5':
|
|
538
|
+
optional: true
|
|
539
|
+
|
|
540
|
+
'@esbuild/android-arm64@0.25.5':
|
|
541
|
+
optional: true
|
|
542
|
+
|
|
543
|
+
'@esbuild/android-arm@0.25.5':
|
|
544
|
+
optional: true
|
|
545
|
+
|
|
546
|
+
'@esbuild/android-x64@0.25.5':
|
|
547
|
+
optional: true
|
|
548
|
+
|
|
549
|
+
'@esbuild/darwin-arm64@0.25.5':
|
|
550
|
+
optional: true
|
|
551
|
+
|
|
552
|
+
'@esbuild/darwin-x64@0.25.5':
|
|
553
|
+
optional: true
|
|
554
|
+
|
|
555
|
+
'@esbuild/freebsd-arm64@0.25.5':
|
|
556
|
+
optional: true
|
|
557
|
+
|
|
558
|
+
'@esbuild/freebsd-x64@0.25.5':
|
|
559
|
+
optional: true
|
|
560
|
+
|
|
561
|
+
'@esbuild/linux-arm64@0.25.5':
|
|
562
|
+
optional: true
|
|
563
|
+
|
|
564
|
+
'@esbuild/linux-arm@0.25.5':
|
|
565
|
+
optional: true
|
|
566
|
+
|
|
567
|
+
'@esbuild/linux-ia32@0.25.5':
|
|
568
|
+
optional: true
|
|
569
|
+
|
|
570
|
+
'@esbuild/linux-loong64@0.25.5':
|
|
571
|
+
optional: true
|
|
572
|
+
|
|
573
|
+
'@esbuild/linux-mips64el@0.25.5':
|
|
574
|
+
optional: true
|
|
575
|
+
|
|
576
|
+
'@esbuild/linux-ppc64@0.25.5':
|
|
577
|
+
optional: true
|
|
578
|
+
|
|
579
|
+
'@esbuild/linux-riscv64@0.25.5':
|
|
580
|
+
optional: true
|
|
581
|
+
|
|
582
|
+
'@esbuild/linux-s390x@0.25.5':
|
|
583
|
+
optional: true
|
|
584
|
+
|
|
585
|
+
'@esbuild/linux-x64@0.25.5':
|
|
586
|
+
optional: true
|
|
587
|
+
|
|
588
|
+
'@esbuild/netbsd-arm64@0.25.5':
|
|
589
|
+
optional: true
|
|
590
|
+
|
|
591
|
+
'@esbuild/netbsd-x64@0.25.5':
|
|
592
|
+
optional: true
|
|
593
|
+
|
|
594
|
+
'@esbuild/openbsd-arm64@0.25.5':
|
|
595
|
+
optional: true
|
|
596
|
+
|
|
597
|
+
'@esbuild/openbsd-x64@0.25.5':
|
|
598
|
+
optional: true
|
|
599
|
+
|
|
600
|
+
'@esbuild/sunos-x64@0.25.5':
|
|
601
|
+
optional: true
|
|
602
|
+
|
|
603
|
+
'@esbuild/win32-arm64@0.25.5':
|
|
604
|
+
optional: true
|
|
605
|
+
|
|
606
|
+
'@esbuild/win32-ia32@0.25.5':
|
|
607
|
+
optional: true
|
|
608
|
+
|
|
609
|
+
'@esbuild/win32-x64@0.25.5':
|
|
610
|
+
optional: true
|
|
611
|
+
|
|
612
|
+
'@protobufjs/aspromise@1.1.2': {}
|
|
613
|
+
|
|
614
|
+
'@protobufjs/base64@1.1.2': {}
|
|
615
|
+
|
|
616
|
+
'@protobufjs/codegen@2.0.4': {}
|
|
617
|
+
|
|
618
|
+
'@protobufjs/eventemitter@1.1.0': {}
|
|
619
|
+
|
|
620
|
+
'@protobufjs/fetch@1.1.0':
|
|
621
|
+
dependencies:
|
|
622
|
+
'@protobufjs/aspromise': 1.1.2
|
|
623
|
+
'@protobufjs/inquire': 1.1.0
|
|
624
|
+
|
|
625
|
+
'@protobufjs/float@1.0.2': {}
|
|
626
|
+
|
|
627
|
+
'@protobufjs/inquire@1.1.0': {}
|
|
628
|
+
|
|
629
|
+
'@protobufjs/path@1.1.2': {}
|
|
630
|
+
|
|
631
|
+
'@protobufjs/pool@1.1.0': {}
|
|
632
|
+
|
|
633
|
+
'@protobufjs/utf8@1.1.0': {}
|
|
634
|
+
|
|
635
|
+
'@rollup/rollup-android-arm-eabi@4.41.1':
|
|
636
|
+
optional: true
|
|
637
|
+
|
|
638
|
+
'@rollup/rollup-android-arm64@4.41.1':
|
|
639
|
+
optional: true
|
|
640
|
+
|
|
641
|
+
'@rollup/rollup-darwin-arm64@4.41.1':
|
|
642
|
+
optional: true
|
|
643
|
+
|
|
644
|
+
'@rollup/rollup-darwin-x64@4.41.1':
|
|
645
|
+
optional: true
|
|
646
|
+
|
|
647
|
+
'@rollup/rollup-freebsd-arm64@4.41.1':
|
|
648
|
+
optional: true
|
|
649
|
+
|
|
650
|
+
'@rollup/rollup-freebsd-x64@4.41.1':
|
|
651
|
+
optional: true
|
|
652
|
+
|
|
653
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.41.1':
|
|
654
|
+
optional: true
|
|
655
|
+
|
|
656
|
+
'@rollup/rollup-linux-arm-musleabihf@4.41.1':
|
|
657
|
+
optional: true
|
|
658
|
+
|
|
659
|
+
'@rollup/rollup-linux-arm64-gnu@4.41.1':
|
|
660
|
+
optional: true
|
|
661
|
+
|
|
662
|
+
'@rollup/rollup-linux-arm64-musl@4.41.1':
|
|
663
|
+
optional: true
|
|
664
|
+
|
|
665
|
+
'@rollup/rollup-linux-loongarch64-gnu@4.41.1':
|
|
666
|
+
optional: true
|
|
667
|
+
|
|
668
|
+
'@rollup/rollup-linux-powerpc64le-gnu@4.41.1':
|
|
669
|
+
optional: true
|
|
670
|
+
|
|
671
|
+
'@rollup/rollup-linux-riscv64-gnu@4.41.1':
|
|
672
|
+
optional: true
|
|
673
|
+
|
|
674
|
+
'@rollup/rollup-linux-riscv64-musl@4.41.1':
|
|
675
|
+
optional: true
|
|
676
|
+
|
|
677
|
+
'@rollup/rollup-linux-s390x-gnu@4.41.1':
|
|
678
|
+
optional: true
|
|
679
|
+
|
|
680
|
+
'@rollup/rollup-linux-x64-gnu@4.41.1':
|
|
681
|
+
optional: true
|
|
682
|
+
|
|
683
|
+
'@rollup/rollup-linux-x64-musl@4.41.1':
|
|
684
|
+
optional: true
|
|
685
|
+
|
|
686
|
+
'@rollup/rollup-win32-arm64-msvc@4.41.1':
|
|
687
|
+
optional: true
|
|
688
|
+
|
|
689
|
+
'@rollup/rollup-win32-ia32-msvc@4.41.1':
|
|
690
|
+
optional: true
|
|
691
|
+
|
|
692
|
+
'@rollup/rollup-win32-x64-msvc@4.41.1':
|
|
693
|
+
optional: true
|
|
694
|
+
|
|
695
|
+
'@tweenjs/tween.js@25.0.0': {}
|
|
696
|
+
|
|
697
|
+
'@types/estree@1.0.7': {}
|
|
698
|
+
|
|
699
|
+
'@types/node@22.15.29':
|
|
700
|
+
dependencies:
|
|
701
|
+
undici-types: 6.21.0
|
|
702
|
+
|
|
703
|
+
'@types/trusted-types@2.0.7':
|
|
704
|
+
optional: true
|
|
705
|
+
|
|
706
|
+
'@zip.js/zip.js@2.7.62': {}
|
|
707
|
+
|
|
708
|
+
autolinker@4.1.5:
|
|
709
|
+
dependencies:
|
|
710
|
+
tslib: 2.8.1
|
|
711
|
+
|
|
712
|
+
bitmap-sdf@1.0.4: {}
|
|
713
|
+
|
|
714
|
+
cesium@1.130.0:
|
|
715
|
+
dependencies:
|
|
716
|
+
'@cesium/engine': 18.0.0
|
|
717
|
+
'@cesium/widgets': 12.1.0
|
|
718
|
+
|
|
719
|
+
commander@2.20.3: {}
|
|
720
|
+
|
|
721
|
+
dompurify@3.2.6:
|
|
722
|
+
optionalDependencies:
|
|
723
|
+
'@types/trusted-types': 2.0.7
|
|
724
|
+
|
|
725
|
+
draco3d@1.5.7: {}
|
|
726
|
+
|
|
727
|
+
earcut@3.0.1: {}
|
|
728
|
+
|
|
729
|
+
esbuild@0.25.5:
|
|
730
|
+
optionalDependencies:
|
|
731
|
+
'@esbuild/aix-ppc64': 0.25.5
|
|
732
|
+
'@esbuild/android-arm': 0.25.5
|
|
733
|
+
'@esbuild/android-arm64': 0.25.5
|
|
734
|
+
'@esbuild/android-x64': 0.25.5
|
|
735
|
+
'@esbuild/darwin-arm64': 0.25.5
|
|
736
|
+
'@esbuild/darwin-x64': 0.25.5
|
|
737
|
+
'@esbuild/freebsd-arm64': 0.25.5
|
|
738
|
+
'@esbuild/freebsd-x64': 0.25.5
|
|
739
|
+
'@esbuild/linux-arm': 0.25.5
|
|
740
|
+
'@esbuild/linux-arm64': 0.25.5
|
|
741
|
+
'@esbuild/linux-ia32': 0.25.5
|
|
742
|
+
'@esbuild/linux-loong64': 0.25.5
|
|
743
|
+
'@esbuild/linux-mips64el': 0.25.5
|
|
744
|
+
'@esbuild/linux-ppc64': 0.25.5
|
|
745
|
+
'@esbuild/linux-riscv64': 0.25.5
|
|
746
|
+
'@esbuild/linux-s390x': 0.25.5
|
|
747
|
+
'@esbuild/linux-x64': 0.25.5
|
|
748
|
+
'@esbuild/netbsd-arm64': 0.25.5
|
|
749
|
+
'@esbuild/netbsd-x64': 0.25.5
|
|
750
|
+
'@esbuild/openbsd-arm64': 0.25.5
|
|
751
|
+
'@esbuild/openbsd-x64': 0.25.5
|
|
752
|
+
'@esbuild/sunos-x64': 0.25.5
|
|
753
|
+
'@esbuild/win32-arm64': 0.25.5
|
|
754
|
+
'@esbuild/win32-ia32': 0.25.5
|
|
755
|
+
'@esbuild/win32-x64': 0.25.5
|
|
756
|
+
|
|
757
|
+
fdir@6.4.5(picomatch@4.0.2):
|
|
758
|
+
optionalDependencies:
|
|
759
|
+
picomatch: 4.0.2
|
|
760
|
+
|
|
761
|
+
fsevents@2.3.3:
|
|
762
|
+
optional: true
|
|
763
|
+
|
|
764
|
+
grapheme-splitter@1.0.4: {}
|
|
765
|
+
|
|
766
|
+
jsep@1.4.0: {}
|
|
767
|
+
|
|
768
|
+
kdbush@4.0.2: {}
|
|
769
|
+
|
|
770
|
+
ktx-parse@1.0.0: {}
|
|
771
|
+
|
|
772
|
+
lerc@2.0.0: {}
|
|
773
|
+
|
|
774
|
+
long@5.3.2: {}
|
|
775
|
+
|
|
776
|
+
mersenne-twister@1.1.0: {}
|
|
777
|
+
|
|
778
|
+
meshoptimizer@0.23.0: {}
|
|
779
|
+
|
|
780
|
+
nanoid@3.3.11: {}
|
|
781
|
+
|
|
782
|
+
nosleep.js@0.12.0: {}
|
|
783
|
+
|
|
784
|
+
pako@2.1.0: {}
|
|
785
|
+
|
|
786
|
+
picocolors@1.1.1: {}
|
|
787
|
+
|
|
788
|
+
picomatch@4.0.2: {}
|
|
789
|
+
|
|
790
|
+
postcss@8.5.4:
|
|
791
|
+
dependencies:
|
|
792
|
+
nanoid: 3.3.11
|
|
793
|
+
picocolors: 1.1.1
|
|
794
|
+
source-map-js: 1.2.1
|
|
795
|
+
|
|
796
|
+
protobufjs@7.5.3:
|
|
797
|
+
dependencies:
|
|
798
|
+
'@protobufjs/aspromise': 1.1.2
|
|
799
|
+
'@protobufjs/base64': 1.1.2
|
|
800
|
+
'@protobufjs/codegen': 2.0.4
|
|
801
|
+
'@protobufjs/eventemitter': 1.1.0
|
|
802
|
+
'@protobufjs/fetch': 1.1.0
|
|
803
|
+
'@protobufjs/float': 1.0.2
|
|
804
|
+
'@protobufjs/inquire': 1.1.0
|
|
805
|
+
'@protobufjs/path': 1.1.2
|
|
806
|
+
'@protobufjs/pool': 1.1.0
|
|
807
|
+
'@protobufjs/utf8': 1.1.0
|
|
808
|
+
'@types/node': 22.15.29
|
|
809
|
+
long: 5.3.2
|
|
810
|
+
|
|
811
|
+
quickselect@3.0.0: {}
|
|
812
|
+
|
|
813
|
+
rbush@4.0.1:
|
|
814
|
+
dependencies:
|
|
815
|
+
quickselect: 3.0.0
|
|
816
|
+
|
|
817
|
+
rollup@4.41.1:
|
|
818
|
+
dependencies:
|
|
819
|
+
'@types/estree': 1.0.7
|
|
820
|
+
optionalDependencies:
|
|
821
|
+
'@rollup/rollup-android-arm-eabi': 4.41.1
|
|
822
|
+
'@rollup/rollup-android-arm64': 4.41.1
|
|
823
|
+
'@rollup/rollup-darwin-arm64': 4.41.1
|
|
824
|
+
'@rollup/rollup-darwin-x64': 4.41.1
|
|
825
|
+
'@rollup/rollup-freebsd-arm64': 4.41.1
|
|
826
|
+
'@rollup/rollup-freebsd-x64': 4.41.1
|
|
827
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.41.1
|
|
828
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.41.1
|
|
829
|
+
'@rollup/rollup-linux-arm64-gnu': 4.41.1
|
|
830
|
+
'@rollup/rollup-linux-arm64-musl': 4.41.1
|
|
831
|
+
'@rollup/rollup-linux-loongarch64-gnu': 4.41.1
|
|
832
|
+
'@rollup/rollup-linux-powerpc64le-gnu': 4.41.1
|
|
833
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.41.1
|
|
834
|
+
'@rollup/rollup-linux-riscv64-musl': 4.41.1
|
|
835
|
+
'@rollup/rollup-linux-s390x-gnu': 4.41.1
|
|
836
|
+
'@rollup/rollup-linux-x64-gnu': 4.41.1
|
|
837
|
+
'@rollup/rollup-linux-x64-musl': 4.41.1
|
|
838
|
+
'@rollup/rollup-win32-arm64-msvc': 4.41.1
|
|
839
|
+
'@rollup/rollup-win32-ia32-msvc': 4.41.1
|
|
840
|
+
'@rollup/rollup-win32-x64-msvc': 4.41.1
|
|
841
|
+
fsevents: 2.3.3
|
|
842
|
+
|
|
843
|
+
source-map-js@1.2.1: {}
|
|
844
|
+
|
|
845
|
+
tinyglobby@0.2.14:
|
|
846
|
+
dependencies:
|
|
847
|
+
fdir: 6.4.5(picomatch@4.0.2)
|
|
848
|
+
picomatch: 4.0.2
|
|
849
|
+
|
|
850
|
+
topojson-client@3.1.0:
|
|
851
|
+
dependencies:
|
|
852
|
+
commander: 2.20.3
|
|
853
|
+
|
|
854
|
+
tslib@2.8.1: {}
|
|
855
|
+
|
|
856
|
+
typescript@5.8.3: {}
|
|
857
|
+
|
|
858
|
+
undici-types@6.21.0: {}
|
|
859
|
+
|
|
860
|
+
urijs@1.19.11: {}
|
|
861
|
+
|
|
862
|
+
vite@6.3.5(@types/node@22.15.29):
|
|
863
|
+
dependencies:
|
|
864
|
+
esbuild: 0.25.5
|
|
865
|
+
fdir: 6.4.5(picomatch@4.0.2)
|
|
866
|
+
picomatch: 4.0.2
|
|
867
|
+
postcss: 8.5.4
|
|
868
|
+
rollup: 4.41.1
|
|
869
|
+
tinyglobby: 0.2.14
|
|
870
|
+
optionalDependencies:
|
|
871
|
+
'@types/node': 22.15.29
|
|
872
|
+
fsevents: 2.3.3
|