diff --git a/nixos/modules/services/display-managers/sddm.nix b/nixos/modules/services/display-managers/sddm.nix index 54356f7bb617..ca46d627101a 100644 --- a/nixos/modules/services/display-managers/sddm.nix +++ b/nixos/modules/services/display-managers/sddm.nix @@ -8,6 +8,7 @@ let sddm = cfg.package.override (old: { withWayland = cfg.wayland.enable; + withLayerShellQt = cfg.wayland.compositor == "kwin"; extraPackages = old.extraPackages or [ ] ++ cfg.extraPackages; }); @@ -43,11 +44,8 @@ let DefaultSession = optionalString (config.services.displayManager.defaultSession != null) "${config.services.displayManager.defaultSession}.desktop"; DisplayServer = if cfg.wayland.enable then "wayland" else "x11"; - } // optionalAttrs (cfg.wayland.compositor == "kwin") { - GreeterEnvironment = concatStringsSep " " [ - "LANG=C.UTF-8" - "QT_WAYLAND_SHELL_INTEGRATION=layer-shell" - ]; + } // optionalAttrs (cfg.wayland.enable && cfg.wayland.compositor == "kwin") { + GreeterEnvironment = "QT_WAYLAND_SHELL_INTEGRATION=layer-shell"; InputMethod = ""; # needed if we are using --inputmethod with kwin }; diff --git a/pkgs/applications/display-managers/sddm/default.nix b/pkgs/applications/display-managers/sddm/default.nix index 45268ae44bdf..451317fae268 100644 --- a/pkgs/applications/display-managers/sddm/default.nix +++ b/pkgs/applications/display-managers/sddm/default.nix @@ -2,16 +2,20 @@ lib, callPackage, runCommand, + layer-shell-qt, qtwayland, wrapQtAppsHook, unwrapped ? callPackage ./unwrapped.nix {}, withWayland ? false, + withLayerShellQt ? false, extraPackages ? [], }: runCommand "sddm-wrapped" { inherit (unwrapped) version; - buildInputs = unwrapped.buildInputs ++ extraPackages ++ lib.optional withWayland qtwayland; + buildInputs = unwrapped.buildInputs ++ extraPackages + ++ lib.optional withWayland qtwayland + ++ lib.optional (withWayland && withLayerShellQt) layer-shell-qt; nativeBuildInputs = [ wrapQtAppsHook ]; passthru = { diff --git a/pkgs/applications/kde/ffmpegthumbs.nix b/pkgs/applications/kde/ffmpegthumbs.nix index b8695a301547..9b0da69d71fa 100644 --- a/pkgs/applications/kde/ffmpegthumbs.nix +++ b/pkgs/applications/kde/ffmpegthumbs.nix @@ -1,7 +1,7 @@ { mkDerivation, lib, extra-cmake-modules, - ffmpeg_4, kio, taglib + ffmpeg_7, kio, taglib }: mkDerivation { @@ -11,5 +11,5 @@ mkDerivation { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ ffmpeg_4 kio taglib ]; + buildInputs = [ ffmpeg_7 kio taglib ]; } diff --git a/pkgs/applications/misc/eaglemode/default.nix b/pkgs/applications/misc/eaglemode/default.nix index 414995f0c545..17de44cc027e 100644 --- a/pkgs/applications/misc/eaglemode/default.nix +++ b/pkgs/applications/misc/eaglemode/default.nix @@ -1,15 +1,44 @@ -{ lib, stdenv, fetchurl, perl, libX11, libXinerama, libjpeg, libpng, libtiff -, libwebp, pkg-config, librsvg, glib, gtk2, libXext, libXxf86vm, poppler, vlc -, ghostscript, makeWrapper, tzdata, makeDesktopItem, copyDesktopItems -, directoryListingUpdater }: +{ + lib, + stdenv, + fetchurl, + perl, + libX11, + libXinerama, + libjpeg, + libpng, + libtiff, + libwebp, + pkg-config, + librsvg, + glib, + gtk2, + libXext, + libXxf86vm, + poppler, + vlc, + ghostscript, + makeWrapper, + tzdata, + makeDesktopItem, + copyDesktopItems, + directoryListingUpdater, + htmldoc, + binutils, + gzip, + p7zip, + xz, + zip, + extraRuntimeDeps ? [ ], +}: stdenv.mkDerivation rec { pname = "eaglemode"; - version = "0.96.1"; + version = "0.96.2"; src = fetchurl { url = "mirror://sourceforge/eaglemode/${pname}-${version}.tar.bz2"; - hash = "sha256-FIhCcMghzLg7Odcsou9hBw7kIaqLVUFEAKUk9uwRNNw="; + hash = "sha256:1al5n2mcjp0hmsvi4hsdmzd7i0id5i3255xplk0il1nmzydh312a"; }; # Fixes "Error: No time zones found." on the clock @@ -17,9 +46,28 @@ stdenv.mkDerivation rec { substituteInPlace src/emClock/emTimeZonesModel.cpp --replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo" ''; - nativeBuildInputs = [ pkg-config makeWrapper copyDesktopItems ]; - buildInputs = [ perl libX11 libXinerama libjpeg libpng libtiff libwebp - librsvg glib gtk2 libXxf86vm libXext poppler vlc ghostscript ]; + nativeBuildInputs = [ + pkg-config + makeWrapper + copyDesktopItems + ]; + buildInputs = [ + perl + libX11 + libXinerama + libjpeg + libpng + libtiff + libwebp + librsvg + glib + gtk2 + libXxf86vm + libXext + poppler + vlc + ghostscript + ]; # The program tries to dlopen Xxf86vm, Xext and Xinerama, so we use the # trick on NIX_LDFLAGS and dontPatchELF to make it find them. @@ -32,18 +80,39 @@ stdenv.mkDerivation rec { dontPatchELF = true; # eaglemode expects doc to be in the root directory - forceShare = [ "man" "info" ]; + forceShare = [ + "man" + "info" + ]; - installPhase = '' - runHook preInstall - perl make.pl install dir=$out - wrapProgram $out/bin/eaglemode --set EM_DIR "$out" --prefix LD_LIBRARY_PATH : "$out/lib" --prefix PATH : "${ghostscript}/bin" - for i in 32 48 96; do - mkdir -p $out/share/icons/hicolor/''${i}x''${i}/apps - ln -s $out/res/icons/${pname}$i.png $out/share/icons/hicolor/''${i}x''${i}/apps/${pname}.png - done - runHook postInstall - ''; + installPhase = + let + runtimeDeps = lib.makeBinPath ( + [ + ghostscript # renders the manual + htmldoc # renders HTML files in file browser + perl # various display scripts use Perl + + # archive formats in the file browser: + binutils + gzip + p7zip + xz + zip + ] + ++ extraRuntimeDeps + ); + in + '' + runHook preInstall + perl make.pl install dir=$out + wrapProgram $out/bin/eaglemode --set EM_DIR "$out" --prefix LD_LIBRARY_PATH : "$out/lib" --prefix PATH : "${runtimeDeps}" + for i in 32 48 96; do + mkdir -p $out/share/icons/hicolor/''${i}x''${i}/apps + ln -s $out/res/icons/${pname}$i.png $out/share/icons/hicolor/''${i}x''${i}/apps/${pname}.png + done + runHook postInstall + ''; desktopItems = [ (makeDesktopItem { @@ -52,7 +121,12 @@ stdenv.mkDerivation rec { icon = pname; desktopName = "Eagle Mode"; genericName = meta.description; - categories = [ "Game" "Graphics" "System" "Utility" ]; + categories = [ + "Game" + "Graphics" + "System" + "Utility" + ]; }) ]; @@ -66,7 +140,10 @@ stdenv.mkDerivation rec { description = "Zoomable User Interface"; changelog = "https://eaglemode.sourceforge.net/ChangeLog.html"; license = licenses.gpl3; - maintainers = with maintainers; [ chuangzhu ehmry ]; + maintainers = with maintainers; [ + chuangzhu + ehmry + ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/misc/faircamp/Cargo.lock b/pkgs/applications/misc/faircamp/Cargo.lock index 7f23c9261970..741e486cbf00 100644 --- a/pkgs/applications/misc/faircamp/Cargo.lock +++ b/pkgs/applications/misc/faircamp/Cargo.lock @@ -975,7 +975,7 @@ dependencies = [ [[package]] name = "faircamp" -version = "0.15.0" +version = "0.15.1" dependencies = [ "actix-files", "actix-web", diff --git a/pkgs/applications/misc/faircamp/default.nix b/pkgs/applications/misc/faircamp/default.nix index ac828dc87cc5..9f8a507fdce4 100644 --- a/pkgs/applications/misc/faircamp/default.nix +++ b/pkgs/applications/misc/faircamp/default.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { pname = "faircamp"; - version = "0.15.0"; + version = "0.15.1"; src = fetchFromGitea { domain = "codeberg.org"; owner = "simonrepp"; repo = "faircamp"; rev = version; - hash = "sha256-V8fz65LNNCEhexV+ps3cclc0CJljVlAwBf2KjZCBx88="; + hash = "sha256-TMN4DLur61bJAPp2kahBAAjf2lto62X/7rhC88nhISg="; }; patches = [ diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index a3333b7b5919..1826cf61d147 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -102,14 +102,12 @@ let "flac" "libjpeg" "libpng" - ] ++ lib.optionals (!chromiumVersionAtLeast "124") [ # Use the vendored libwebp for M124+ until we figure out how to solve: # Running phase: configurePhase # ERROR Unresolved dependencies. # //third_party/libavif:libavif_enc(//build/toolchain/linux/unbundle:default) # needs //third_party/libwebp:libwebp_sharpyuv(//build/toolchain/linux/unbundle:default) - "libwebp" - ] ++ [ + # "libwebp" "libxslt" # "opus" ]; diff --git a/pkgs/applications/science/networking/sumo/default.nix b/pkgs/applications/science/networking/sumo/default.nix index ad50200c1a83..4906b0b80c76 100644 --- a/pkgs/applications/science/networking/sumo/default.nix +++ b/pkgs/applications/science/networking/sumo/default.nix @@ -1,4 +1,4 @@ -{ lib, bzip2, cmake, eigen, fetchFromGitHub, ffmpeg_4, fox_1_6, gdal, +{ lib, bzip2, cmake, eigen, fetchFromGitHub, ffmpeg_7, fox_1_6, gdal, git, gl2ps, gpp , gtest, jdk, libGL, libGLU, libX11, libjpeg, libpng, libtiff, libxcrypt, openscenegraph , proj, python3, python3Packages, stdenv, swig, xercesc, xorg, zlib }: @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { buildInputs = [ bzip2 eigen - ffmpeg_4 + ffmpeg_7 fox_1_6 gdal gl2ps diff --git a/pkgs/applications/video/kodi/addons/youtube/default.nix b/pkgs/applications/video/kodi/addons/youtube/default.nix index cf35a37bd36a..8c007ec4b83e 100644 --- a/pkgs/applications/video/kodi/addons/youtube/default.nix +++ b/pkgs/applications/video/kodi/addons/youtube/default.nix @@ -3,13 +3,13 @@ buildKodiAddon rec { pname = "youtube"; namespace = "plugin.video.youtube"; - version = "7.0.9"; + version = "7.0.9.2"; src = fetchFromGitHub { owner = "anxdpanic"; repo = "plugin.video.youtube"; rev = "v${version}"; - hash = "sha256-C2Xnz4V+jSwkBbroysG5ruidwdeE3V+NutQxW3Nfh6Y="; + hash = "sha256-42BBvXIrPAAhNgrGyPTK5dgg2DACPTT6/jRUoYcihFA="; }; propagatedBuildInputs = [ diff --git a/pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix b/pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix index 5285d6f5abe4..68d48e71d1c7 100644 --- a/pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix @@ -1,35 +1,36 @@ -{ lib -, fetchFromGitHub +{ + lib, + fetchFromGitHub, -, cmake -, ninja + cmake, + ninja, -, alsa-lib -, asio -, curl -, nlohmann_json -, obs-studio -, opencv -, procps -, qtbase -, stdenv -, tesseract -, websocketpp -, xorg + alsa-lib, + asio, + curl, + nlohmann_json, + obs-studio, + opencv, + procps, + qtbase, + stdenv, + tesseract, + websocketpp, + xorg, -, httplib -, libremidi + httplib, + libremidi, }: stdenv.mkDerivation rec { pname = "advanced-scene-switcher"; - version = "1.27.1"; + version = "1.27.2"; src = fetchFromGitHub { owner = "WarmUpTill"; repo = "SceneSwitcher"; rev = version; - hash = "sha256-KP3aYSGjEsytiA7toLSkqKcxgT+2Wu3SKyOG4uga2RI="; + hash = "sha256-7IciHCe2KemKNJpD9QcYK4AtxHlYuWaPsBCcVuPVvgA="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix b/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix index d6341eba5342..6ac26bf599ab 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix @@ -1,26 +1,40 @@ -{ lib -, stdenv -, fetchFromGitHub -, gst_all_1 -, pkg-config -, meson -, ninja -, obs-studio +{ + lib, + stdenv, + fetchFromGitHub, + gst_all_1, + pkg-config, + meson, + ninja, + obs-studio, }: stdenv.mkDerivation rec { pname = "obs-gstreamer"; - version = "0.4.0"; + version = "0.4.1"; src = fetchFromGitHub { owner = "fzwoch"; repo = pname; rev = "v${version}"; - hash = "sha256-C4yee7hzkSOjIeaacLaTGPzZ1qYdYtHK5a3m9gz2pPI="; + hash = "sha256-23LyxN1Vgol9uA7rDdfZXcmfhG4l0RfMYGbofbhObBE="; }; - nativeBuildInputs = [ pkg-config meson ninja ]; - buildInputs = with gst_all_1; [ gstreamer gst-plugins-base obs-studio ]; + postPatch = '' + substituteInPlace meson.build \ + --replace-fail "'git', 'rev-parse', '--short', 'HEAD'" "'echo', '${version}'" + ''; + + nativeBuildInputs = [ + pkg-config + meson + ninja + ]; + buildInputs = with gst_all_1; [ + gstreamer + gst-plugins-base + obs-studio + ]; # - We need "getLib" instead of default derivation, otherwise it brings gstreamer-bin; # - without gst-plugins-base it won't even show proper errors in logs; @@ -29,9 +43,11 @@ stdenv.mkDerivation rec { # Tip: "could not link appsrc to videoconvert1" can mean a lot of things, enable GST_DEBUG=2 for help. passthru.obsWrapperArguments = let - gstreamerHook = package: "--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : ${lib.getLib package}/lib/gstreamer-1.0"; + gstreamerHook = + package: "--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : ${lib.getLib package}/lib/gstreamer-1.0"; in - with gst_all_1; builtins.map gstreamerHook [ + with gst_all_1; + builtins.map gstreamerHook [ gstreamer gst-plugins-base gst-plugins-bad @@ -47,7 +63,10 @@ stdenv.mkDerivation rec { meta = with lib; { description = "OBS Studio source, encoder and video filter plugin to use GStreamer elements/pipelines in OBS Studio"; homepage = "https://github.com/fzwoch/obs-gstreamer"; - maintainers = with maintainers; [ ahuzik pedrohlc ]; + maintainers = with maintainers; [ + ahuzik + pedrohlc + ]; license = licenses.gpl2Plus; platforms = platforms.linux; }; diff --git a/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix index f58d81e9b706..a2c1300520dc 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix @@ -1,17 +1,34 @@ -{ lib, stdenv, fetchFromGitHub, obs-studio, cmake, qtbase, ndi }: +{ + lib, + stdenv, + fetchFromGitHub, + obs-studio, + cmake, + qtbase, + ndi, + curl, +}: stdenv.mkDerivation rec { pname = "obs-ndi"; - version = "4.13.2"; + version = "4.14.1"; - nativeBuildInputs = [ cmake qtbase ]; - buildInputs = [ obs-studio qtbase ndi ]; + nativeBuildInputs = [ + cmake + qtbase + ]; + buildInputs = [ + obs-studio + qtbase + ndi + curl + ]; src = fetchFromGitHub { owner = "Palakis"; repo = "obs-ndi"; rev = version; - sha256 = "sha256-DVUoLV2jCdD8qXSpmGvqjrQh02dCLroKsUAb5+lYTog="; + sha256 = "sha256-ex/fZmZpFM6GTKNBQClzSf6Ns0Yts5+0PAmf5mIQCwc="; }; patches = [ diff --git a/pkgs/applications/video/obs-studio/plugins/obs-ndi/hardcode-ndi-path.patch b/pkgs/applications/video/obs-studio/plugins/obs-ndi/hardcode-ndi-path.patch index b675c10a0346..c8b400b682d8 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-ndi/hardcode-ndi-path.patch +++ b/pkgs/applications/video/obs-studio/plugins/obs-ndi/hardcode-ndi-path.patch @@ -11,6 +11,6 @@ index 0d94add..617af73 100644 - locations << "/usr/local/lib"; -#endif + locations << "@NDI@/lib"; - for (QString location : locations) { + for (auto location : locations) { path = QDir::cleanPath( QDir(location).absoluteFilePath(NDILIB_LIBRARY_NAME)); diff --git a/pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix b/pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix index e73b54aac18f..dc03e00a192e 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix @@ -1,30 +1,37 @@ -{ lib -, stdenv -, fetchFromGitHub -, cmake -, ninja -, obs-studio -, pipewire -, pkg-config +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + ninja, + obs-studio, + pipewire, + pkg-config, }: stdenv.mkDerivation rec { pname = "obs-pipewire-audio-capture"; - version = "1.1.3"; + version = "1.1.5"; src = fetchFromGitHub { owner = "dimtpap"; repo = pname; rev = version; - sha256 = "sha256-dL/+Y1uaD+7EY0UNWbxvh1TTLYfgk07qCqLLGvfzWZk="; + sha256 = "sha256-qYHU0m+jz/mQmjleITnzxNkTio5ir8dFkHKfmY4l0Es="; }; - nativeBuildInputs = [ cmake ninja pkg-config ]; - buildInputs = [ obs-studio pipewire ]; + nativeBuildInputs = [ + cmake + ninja + pkg-config + ]; + buildInputs = [ + obs-studio + pipewire + ]; cmakeFlags = [ - "-DLIBOBS_INCLUDE_DIR=${obs-studio.src}/libobs" - "-Wno-dev" + "-DCMAKE_INSTALL_LIBDIR=/lib" ]; meta = with lib; { @@ -32,6 +39,9 @@ stdenv.mkDerivation rec { homepage = "https://github.com/dimtpap/obs-pipewire-audio-capture"; maintainers = with maintainers; [ Elinvention ]; license = licenses.gpl2Plus; - platforms = [ "x86_64-linux" "i686-linux" ]; + platforms = [ + "x86_64-linux" + "i686-linux" + ]; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-tuna/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-tuna/default.nix index 798b23b2c8d7..78087e4ed446 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-tuna/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-tuna/default.nix @@ -1,58 +1,44 @@ -{ lib -, stdenv -, fetchFromGitHub -, fetchpatch2 -, obs-studio -, cmake -, zlib -, curl -, taglib -, dbus -, pkg-config -, qtbase -, wrapQtAppsHook +{ + lib, + stdenv, + fetchFromGitHub, + obs-studio, + cmake, + zlib, + curl, + taglib, + dbus, + pkg-config, + qtbase, + wrapQtAppsHook, }: stdenv.mkDerivation (finalAttrs: { pname = "obs-tuna"; - version = "1.9.7"; + version = "1.9.9"; - nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; - buildInputs = [ obs-studio qtbase zlib curl taglib dbus ]; + nativeBuildInputs = [ + cmake + pkg-config + wrapQtAppsHook + ]; + buildInputs = [ + obs-studio + qtbase + zlib + curl + taglib + dbus + ]; src = fetchFromGitHub { owner = "univrsal"; repo = "tuna"; rev = "v${finalAttrs.version}"; - hash = "sha256-NpfQ3zi+1kQNt2Lj4+1kX2bW9A/E2/MhUV1BA1UX4y0="; + hash = "sha256-qwOAidnCGZSwTahgbyf1K0KgoDvYpqDAQXM3l1lfZXg="; fetchSubmodules = true; }; - # obs_frontend_add_dock() deprecated in obs 30 - env.NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; - - patches = [ - # fix build with qt 6.6.0 - # treewide: replace deprecated qAsConst with std::as_const() - # https://github.com/univrsal/tuna/pull/176 - (fetchpatch2 { - url = "https://github.com/univrsal/tuna/commit/0d570e771f8d8e6ae7c85bd2b86bbf59c264789e.patch"; - hash = "sha256-A5idhMiM9funqhTm5XMIBqwy+FO1SaNPtgZjo+Vws6k="; - }) - # fix build with obs 30 - (fetchpatch2 { - url = "https://github.com/univrsal/tuna/commit/723bd3c7b4e257cf0997611426e555068de77ae7.patch"; - hash = "sha256-MF5vghGYknL6q+A8BJ1yrQcEKIu9I+PWk+RZNYg3fRU="; - }) - ]; - - postInstall = '' - mkdir $out/lib $out/share - mv $out/obs-plugins/64bit $out/lib/obs-plugins - rm -rf $out/obs-plugins - mv $out/data $out/share/obs - ''; - dontWrapQtApps = true; meta = { diff --git a/pkgs/applications/video/olive-editor/default.nix b/pkgs/applications/video/olive-editor/default.nix index ea4c7a3f711d..18ee73b53454 100644 --- a/pkgs/applications/video/olive-editor/default.nix +++ b/pkgs/applications/video/olive-editor/default.nix @@ -6,7 +6,7 @@ , which , frei0r , opencolorio -, ffmpeg_4 +, ffmpeg_6 , CoreFoundation , cmake , wrapQtAppsHook @@ -70,7 +70,7 @@ stdenv.mkDerivation { ]; buildInputs = [ - ffmpeg_4 + ffmpeg_6 frei0r opencolorio openimageio' diff --git a/pkgs/applications/video/open-in-mpv/default.nix b/pkgs/applications/video/open-in-mpv/default.nix index 855af79e964e..265aa72d7296 100644 --- a/pkgs/applications/video/open-in-mpv/default.nix +++ b/pkgs/applications/video/open-in-mpv/default.nix @@ -5,13 +5,13 @@ buildGoModule rec { pname = "open-in-mpv"; - version = "2.2.2"; + version = "2.3.0"; src = fetchFromGitHub { owner = "Baldomo"; repo = "open-in-mpv"; rev = "v${version}"; - hash = "sha256-dmsI4ea9L50djT/vwjswWDZ7uwMzc2q84i0T82LGjxs="; + hash = "sha256-XlP8bGlftyNHoJI+yiVHVvd2Qa80miJdXqt+qljYNys="; }; vendorHash = "sha256-G6GZO2+CfEAYcf7zBcqDa808A0eJjM8dq7+4VGZ+P4c="; diff --git a/pkgs/applications/video/webcamoid/default.nix b/pkgs/applications/video/webcamoid/default.nix index 799e68bf072e..15f6313c4215 100644 --- a/pkgs/applications/video/webcamoid/default.nix +++ b/pkgs/applications/video/webcamoid/default.nix @@ -1,6 +1,6 @@ -{ lib, fetchFromGitHub, pkg-config, libxcb, mkDerivation, cmake +{ lib, fetchFromGitHub, fetchpatch2, pkg-config, libxcb, mkDerivation, cmake , qtbase, qtdeclarative, qtquickcontrols, qtquickcontrols2 -, ffmpeg_4, gst_all_1, libpulseaudio, alsa-lib, jack2 +, ffmpeg_7, gst_all_1, libpulseaudio, alsa-lib, jack2 , v4l-utils }: mkDerivation rec { pname = "webcamoid"; @@ -13,10 +13,18 @@ mkDerivation rec { owner = "webcamoid"; }; + patches = [ + # Update mediawriterffmpeg.cpp for ffmpeg-7.0 + (fetchpatch2 { + url = "https://github.com/webcamoid/webcamoid/commit/b4864f13ec8c2ec93ebb5c13d9293cf9c02c93fd.patch?full_index=1"; + hash = "sha256-QasfVocxAzRMME03JFRfz7QQYXQGq4TSFiBsKL1g/wU="; + }) + ]; + buildInputs = [ libxcb qtbase qtdeclarative qtquickcontrols qtquickcontrols2 - ffmpeg_4 + ffmpeg_7 gst_all_1.gstreamer gst_all_1.gst-plugins-base alsa-lib libpulseaudio jack2 v4l-utils diff --git a/pkgs/by-name/al/alephone/package.nix b/pkgs/by-name/al/alephone/package.nix index 8a02d0c2fef7..0ae580c75edd 100644 --- a/pkgs/by-name/al/alephone/package.nix +++ b/pkgs/by-name/al/alephone/package.nix @@ -6,7 +6,7 @@ alsa-lib, boost, curl, - ffmpeg_4, + ffmpeg_6, icoutils, libGLU, libmad, @@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: { alsa-lib boost curl - ffmpeg_4 + ffmpeg_6 libGLU libmad libogg diff --git a/pkgs/by-name/am/amazon-ssm-agent/package.nix b/pkgs/by-name/am/amazon-ssm-agent/package.nix index b22f8a41518a..37eb2388cecc 100644 --- a/pkgs/by-name/am/amazon-ssm-agent/package.nix +++ b/pkgs/by-name/am/amazon-ssm-agent/package.nix @@ -41,13 +41,13 @@ let in buildGoModule rec { pname = "amazon-ssm-agent"; - version = "3.3.551.0"; + version = "3.3.808.0"; src = fetchFromGitHub { owner = "aws"; repo = "amazon-ssm-agent"; rev = "refs/tags/${version}"; - hash = "sha256-ncdLaHsQAdK1vtFzo55yWicKVfQHxpFpXYpODeG5/9I="; + hash = "sha256-ig8mr4xfYnj1z1H3Ro6HFmlzW9HsBWMDtbHtpM6BIfg="; }; vendorHash = null; diff --git a/pkgs/by-name/an/antares/npm-lock.patch b/pkgs/by-name/an/antares/npm-lock.patch new file mode 100644 index 000000000000..71b75e3958f6 --- /dev/null +++ b/pkgs/by-name/an/antares/npm-lock.patch @@ -0,0 +1,22108 @@ +diff --git a/package-lock.json b/package-lock.json +index a38125e..a1067b0 100644 +--- a/package-lock.json ++++ b/package-lock.json +@@ -1,7 +1,7 @@ + { + "name": "antares", + "version": "0.7.28", +- "lockfileVersion": 2, ++ "lockfileVersion": 3, + "requires": true, + "packages": { + "": { +@@ -107,116 +107,55 @@ + "xvfb-maybe": "~0.2.1" + } + }, +- "node_modules/@aashutoshrathi/word-wrap": { +- "version": "1.2.6", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=0.10.0" +- } +- }, + "node_modules/@ampproject/remapping": { +- "version": "2.2.1", +- "license": "Apache-2.0", ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", ++ "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "peer": true, + "dependencies": { +- "@jridgewell/gen-mapping": "^0.3.0", +- "@jridgewell/trace-mapping": "^0.3.9" ++ "@jridgewell/gen-mapping": "^0.3.5", ++ "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { +- "version": "7.23.4", +- "license": "MIT", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", ++ "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dependencies": { +- "@babel/highlight": "^7.23.4", +- "chalk": "^2.4.2" ++ "@babel/highlight": "^7.24.7", ++ "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, +- "node_modules/@babel/code-frame/node_modules/ansi-styles": { +- "version": "3.2.1", +- "license": "MIT", +- "dependencies": { +- "color-convert": "^1.9.0" +- }, +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/@babel/code-frame/node_modules/chalk": { +- "version": "2.4.2", +- "license": "MIT", +- "dependencies": { +- "ansi-styles": "^3.2.1", +- "escape-string-regexp": "^1.0.5", +- "supports-color": "^5.3.0" +- }, +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/@babel/code-frame/node_modules/color-convert": { +- "version": "1.9.3", +- "license": "MIT", +- "dependencies": { +- "color-name": "1.1.3" +- } +- }, +- "node_modules/@babel/code-frame/node_modules/color-name": { +- "version": "1.1.3", +- "license": "MIT" +- }, +- "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { +- "version": "1.0.5", +- "license": "MIT", +- "engines": { +- "node": ">=0.8.0" +- } +- }, +- "node_modules/@babel/code-frame/node_modules/has-flag": { +- "version": "3.0.0", +- "license": "MIT", +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/@babel/code-frame/node_modules/supports-color": { +- "version": "5.5.0", +- "license": "MIT", +- "dependencies": { +- "has-flag": "^3.0.0" +- }, +- "engines": { +- "node": ">=4" +- } +- }, + "node_modules/@babel/compat-data": { +- "version": "7.23.3", +- "license": "MIT", ++ "version": "7.25.4", ++ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz", ++ "integrity": "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { +- "version": "7.23.3", +- "license": "MIT", ++ "version": "7.25.2", ++ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", ++ "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", + "peer": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", +- "@babel/code-frame": "^7.22.13", +- "@babel/generator": "^7.23.3", +- "@babel/helper-compilation-targets": "^7.22.15", +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helpers": "^7.23.2", +- "@babel/parser": "^7.23.3", +- "@babel/template": "^7.22.15", +- "@babel/traverse": "^7.23.3", +- "@babel/types": "^7.23.3", ++ "@babel/code-frame": "^7.24.7", ++ "@babel/generator": "^7.25.0", ++ "@babel/helper-compilation-targets": "^7.25.2", ++ "@babel/helper-module-transforms": "^7.25.2", ++ "@babel/helpers": "^7.25.0", ++ "@babel/parser": "^7.25.0", ++ "@babel/template": "^7.25.0", ++ "@babel/traverse": "^7.25.2", ++ "@babel/types": "^7.25.2", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", +@@ -233,8 +172,9 @@ + }, + "node_modules/@babel/eslint-parser": { + "version": "7.15.8", ++ "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.15.8.tgz", ++ "integrity": "sha512-fYP7QFngCvgxjUuw8O057SVH5jCXsbFFOoE77CFDcvzwBVgTOkMD/L4mIC5Ud1xf8chK/no2fRbSSn1wvNmKuQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "eslint-scope": "^5.1.1", + "eslint-visitor-keys": "^2.1.0", +@@ -249,12 +189,13 @@ + } + }, + "node_modules/@babel/generator": { +- "version": "7.23.4", +- "license": "MIT", ++ "version": "7.25.5", ++ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.5.tgz", ++ "integrity": "sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w==", + "dependencies": { +- "@babel/types": "^7.23.4", +- "@jridgewell/gen-mapping": "^0.3.2", +- "@jridgewell/trace-mapping": "^0.3.17", ++ "@babel/types": "^7.25.4", ++ "@jridgewell/gen-mapping": "^0.3.5", ++ "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { +@@ -262,34 +203,38 @@ + } + }, + "node_modules/@babel/helper-annotate-as-pure": { +- "version": "7.22.5", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", ++ "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/types": "^7.22.5" ++ "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { +- "version": "7.22.15", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", ++ "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/types": "^7.22.15" ++ "@babel/traverse": "^7.24.7", ++ "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { +- "version": "7.22.15", +- "license": "MIT", ++ "version": "7.25.2", ++ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", ++ "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", + "dependencies": { +- "@babel/compat-data": "^7.22.9", +- "@babel/helper-validator-option": "^7.22.15", +- "browserslist": "^4.21.9", ++ "@babel/compat-data": "^7.25.2", ++ "@babel/helper-validator-option": "^7.24.8", ++ "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, +@@ -298,18 +243,17 @@ + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { +- "version": "7.22.15", ++ "version": "7.25.4", ++ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz", ++ "integrity": "sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-annotate-as-pure": "^7.22.5", +- "@babel/helper-environment-visitor": "^7.22.5", +- "@babel/helper-function-name": "^7.22.5", +- "@babel/helper-member-expression-to-functions": "^7.22.15", +- "@babel/helper-optimise-call-expression": "^7.22.5", +- "@babel/helper-replace-supers": "^7.22.9", +- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", +- "@babel/helper-split-export-declaration": "^7.22.6", ++ "@babel/helper-annotate-as-pure": "^7.24.7", ++ "@babel/helper-member-expression-to-functions": "^7.24.8", ++ "@babel/helper-optimise-call-expression": "^7.24.7", ++ "@babel/helper-replace-supers": "^7.25.0", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", ++ "@babel/traverse": "^7.25.4", + "semver": "^6.3.1" + }, + "engines": { +@@ -320,11 +264,12 @@ + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { +- "version": "7.22.15", ++ "version": "7.25.2", ++ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz", ++ "integrity": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-annotate-as-pure": "^7.22.5", ++ "@babel/helper-annotate-as-pure": "^7.24.7", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, +@@ -337,8 +282,9 @@ + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.2.4", ++ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.4.tgz", ++ "integrity": "sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", +@@ -354,63 +300,51 @@ + } + }, + "node_modules/@babel/helper-environment-visitor": { +- "version": "7.22.20", +- "license": "MIT", +- "engines": { +- "node": ">=6.9.0" +- } +- }, +- "node_modules/@babel/helper-function-name": { +- "version": "7.23.0", +- "license": "MIT", +- "dependencies": { +- "@babel/template": "^7.22.15", +- "@babel/types": "^7.23.0" +- }, +- "engines": { +- "node": ">=6.9.0" +- } +- }, +- "node_modules/@babel/helper-hoist-variables": { +- "version": "7.22.5", +- "license": "MIT", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", ++ "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", ++ "dev": true, + "dependencies": { +- "@babel/types": "^7.22.5" ++ "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { +- "version": "7.23.0", ++ "version": "7.24.8", ++ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", ++ "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/types": "^7.23.0" ++ "@babel/traverse": "^7.24.8", ++ "@babel/types": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { +- "version": "7.22.15", +- "license": "MIT", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", ++ "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "dependencies": { +- "@babel/types": "^7.22.15" ++ "@babel/traverse": "^7.24.7", ++ "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { +- "version": "7.23.3", +- "license": "MIT", ++ "version": "7.25.2", ++ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", ++ "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", + "dependencies": { +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-module-imports": "^7.22.15", +- "@babel/helper-simple-access": "^7.22.5", +- "@babel/helper-split-export-declaration": "^7.22.6", +- "@babel/helper-validator-identifier": "^7.22.20" ++ "@babel/helper-module-imports": "^7.24.7", ++ "@babel/helper-simple-access": "^7.24.7", ++ "@babel/helper-validator-identifier": "^7.24.7", ++ "@babel/traverse": "^7.25.2" + }, + "engines": { + "node": ">=6.9.0" +@@ -420,32 +354,35 @@ + } + }, + "node_modules/@babel/helper-optimise-call-expression": { +- "version": "7.22.5", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", ++ "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/types": "^7.22.5" ++ "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { +- "version": "7.22.5", ++ "version": "7.24.8", ++ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", ++ "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { +- "version": "7.22.20", ++ "version": "7.25.0", ++ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", ++ "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-annotate-as-pure": "^7.22.5", +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-wrap-function": "^7.22.20" ++ "@babel/helper-annotate-as-pure": "^7.24.7", ++ "@babel/helper-wrap-function": "^7.25.0", ++ "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" +@@ -455,13 +392,14 @@ + } + }, + "node_modules/@babel/helper-replace-supers": { +- "version": "7.22.20", ++ "version": "7.25.0", ++ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", ++ "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-member-expression-to-functions": "^7.22.15", +- "@babel/helper-optimise-call-expression": "^7.22.5" ++ "@babel/helper-member-expression-to-functions": "^7.24.8", ++ "@babel/helper-optimise-call-expression": "^7.24.7", ++ "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" +@@ -471,90 +409,90 @@ + } + }, + "node_modules/@babel/helper-simple-access": { +- "version": "7.22.5", +- "license": "MIT", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", ++ "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "dependencies": { +- "@babel/types": "^7.22.5" ++ "@babel/traverse": "^7.24.7", ++ "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { +- "version": "7.22.5", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", ++ "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@babel/types": "^7.22.5" +- }, +- "engines": { +- "node": ">=6.9.0" +- } +- }, +- "node_modules/@babel/helper-split-export-declaration": { +- "version": "7.22.6", +- "license": "MIT", + "dependencies": { +- "@babel/types": "^7.22.5" ++ "@babel/traverse": "^7.24.7", ++ "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { +- "version": "7.23.4", +- "license": "MIT", ++ "version": "7.24.8", ++ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", ++ "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { +- "version": "7.22.20", +- "license": "MIT", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", ++ "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { +- "version": "7.22.15", +- "license": "MIT", ++ "version": "7.24.8", ++ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", ++ "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { +- "version": "7.22.20", ++ "version": "7.25.0", ++ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", ++ "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-function-name": "^7.22.5", +- "@babel/template": "^7.22.15", +- "@babel/types": "^7.22.19" ++ "@babel/template": "^7.25.0", ++ "@babel/traverse": "^7.25.0", ++ "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { +- "version": "7.23.4", +- "license": "MIT", ++ "version": "7.25.0", ++ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", ++ "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", + "peer": true, + "dependencies": { +- "@babel/template": "^7.22.15", +- "@babel/traverse": "^7.23.4", +- "@babel/types": "^7.23.4" ++ "@babel/template": "^7.25.0", ++ "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { +- "version": "7.23.4", +- "license": "MIT", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", ++ "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dependencies": { +- "@babel/helper-validator-identifier": "^7.22.20", ++ "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", +- "js-tokens": "^4.0.0" ++ "js-tokens": "^4.0.0", ++ "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" +@@ -562,7 +500,8 @@ + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", ++ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, +@@ -572,7 +511,8 @@ + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", ++ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", +@@ -584,32 +524,37 @@ + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", ++ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", ++ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", ++ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", ++ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", ++ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, +@@ -618,9 +563,12 @@ + } + }, + "node_modules/@babel/parser": { +- "version": "7.24.6", +- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.6.tgz", +- "integrity": "sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==", ++ "version": "7.25.4", ++ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.4.tgz", ++ "integrity": "sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==", ++ "dependencies": { ++ "@babel/types": "^7.25.4" ++ }, + "bin": { + "parser": "bin/babel-parser.js" + }, +@@ -629,13 +577,14 @@ + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", ++ "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", +- "@babel/plugin-transform-optional-chaining": "^7.23.3" ++ "@babel/helper-plugin-utils": "^7.24.7", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", ++ "@babel/plugin-transform-optional-chaining": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -646,8 +595,10 @@ + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", ++ "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", +@@ -663,8 +614,10 @@ + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", ++ "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" +@@ -678,8 +631,10 @@ + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.21.0", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", ++ "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", +@@ -694,8 +649,10 @@ + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", ++ "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" +@@ -709,8 +666,10 @@ + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", ++ "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" +@@ -724,8 +683,10 @@ + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", ++ "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" +@@ -739,8 +700,10 @@ + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", ++ "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" +@@ -754,8 +717,10 @@ + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", ++ "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" +@@ -769,8 +734,10 @@ + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", ++ "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" +@@ -784,8 +751,10 @@ + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", ++ "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", +@@ -802,8 +771,10 @@ + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", ++ "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" +@@ -817,8 +788,10 @@ + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", ++ "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", +@@ -833,8 +806,10 @@ + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", ++ "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" +@@ -848,8 +823,10 @@ + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.11", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", ++ "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.21.0", +@@ -865,8 +842,10 @@ + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", ++ "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", ++ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" +@@ -880,8 +859,9 @@ + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", ++ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, +@@ -891,8 +871,9 @@ + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", ++ "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, +@@ -902,8 +883,9 @@ + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", ++ "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, +@@ -916,8 +898,9 @@ + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", ++ "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, +@@ -927,8 +910,9 @@ + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", ++ "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, +@@ -938,8 +922,9 @@ + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", ++ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, +@@ -949,8 +934,9 @@ + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", ++ "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, +@@ -960,8 +946,9 @@ + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", ++ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, +@@ -971,8 +958,9 @@ + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", ++ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, +@@ -982,8 +970,9 @@ + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", ++ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, +@@ -993,8 +982,9 @@ + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", ++ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, +@@ -1004,8 +994,9 @@ + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", ++ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, +@@ -1015,8 +1006,9 @@ + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", ++ "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, +@@ -1029,8 +1021,9 @@ + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", ++ "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, +@@ -1042,11 +1035,12 @@ + } + }, + "node_modules/@babel/plugin-syntax-typescript": { +- "version": "7.23.3", ++ "version": "7.25.4", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz", ++ "integrity": "sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" +@@ -1056,11 +1050,12 @@ + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", ++ "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1070,13 +1065,14 @@ + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", ++ "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-module-imports": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-remap-async-to-generator": "^7.22.20" ++ "@babel/helper-module-imports": "^7.24.7", ++ "@babel/helper-plugin-utils": "^7.24.7", ++ "@babel/helper-remap-async-to-generator": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1086,11 +1082,12 @@ + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", ++ "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1100,11 +1097,12 @@ + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { +- "version": "7.23.4", ++ "version": "7.25.0", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", ++ "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" +@@ -1114,18 +1112,16 @@ + } + }, + "node_modules/@babel/plugin-transform-classes": { +- "version": "7.23.3", ++ "version": "7.25.4", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz", ++ "integrity": "sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-annotate-as-pure": "^7.22.5", +- "@babel/helper-compilation-targets": "^7.22.15", +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-function-name": "^7.23.0", +- "@babel/helper-optimise-call-expression": "^7.22.5", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-replace-supers": "^7.22.20", +- "@babel/helper-split-export-declaration": "^7.22.6", ++ "@babel/helper-annotate-as-pure": "^7.24.7", ++ "@babel/helper-compilation-targets": "^7.25.2", ++ "@babel/helper-plugin-utils": "^7.24.8", ++ "@babel/helper-replace-supers": "^7.25.0", ++ "@babel/traverse": "^7.25.4", + "globals": "^11.1.0" + }, + "engines": { +@@ -1136,12 +1132,13 @@ + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", ++ "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/template": "^7.22.15" ++ "@babel/helper-plugin-utils": "^7.24.7", ++ "@babel/template": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1151,11 +1148,12 @@ + } + }, + "node_modules/@babel/plugin-transform-destructuring": { +- "version": "7.23.3", ++ "version": "7.24.8", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", ++ "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" +@@ -1165,12 +1163,13 @@ + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", ++ "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-create-regexp-features-plugin": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-create-regexp-features-plugin": "^7.24.7", ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1180,11 +1179,12 @@ + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", ++ "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1194,12 +1194,13 @@ + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", ++ "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1209,11 +1210,13 @@ + } + }, + "node_modules/@babel/plugin-transform-for-of": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", ++ "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1223,13 +1226,14 @@ + } + }, + "node_modules/@babel/plugin-transform-function-name": { +- "version": "7.23.3", ++ "version": "7.25.1", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz", ++ "integrity": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-compilation-targets": "^7.22.15", +- "@babel/helper-function-name": "^7.23.0", +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-compilation-targets": "^7.24.8", ++ "@babel/helper-plugin-utils": "^7.24.8", ++ "@babel/traverse": "^7.25.1" + }, + "engines": { + "node": ">=6.9.0" +@@ -1239,11 +1243,12 @@ + } + }, + "node_modules/@babel/plugin-transform-literals": { +- "version": "7.23.3", ++ "version": "7.25.2", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz", ++ "integrity": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" +@@ -1253,11 +1258,12 @@ + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", ++ "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1267,12 +1273,13 @@ + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", ++ "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-module-transforms": "^7.24.7", ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1282,13 +1289,14 @@ + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { +- "version": "7.23.3", ++ "version": "7.24.8", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", ++ "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-simple-access": "^7.22.5" ++ "@babel/helper-module-transforms": "^7.24.8", ++ "@babel/helper-plugin-utils": "^7.24.8", ++ "@babel/helper-simple-access": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1298,14 +1306,15 @@ + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { +- "version": "7.23.3", ++ "version": "7.25.0", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", ++ "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-hoist-variables": "^7.22.5", +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-validator-identifier": "^7.22.20" ++ "@babel/helper-module-transforms": "^7.25.0", ++ "@babel/helper-plugin-utils": "^7.24.8", ++ "@babel/helper-validator-identifier": "^7.24.7", ++ "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" +@@ -1315,12 +1324,13 @@ + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", ++ "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-module-transforms": "^7.24.7", ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1330,12 +1340,13 @@ + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { +- "version": "7.22.5", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", ++ "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-create-regexp-features-plugin": "^7.22.5", +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-create-regexp-features-plugin": "^7.24.7", ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1345,11 +1356,12 @@ + } + }, + "node_modules/@babel/plugin-transform-new-target": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", ++ "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1359,12 +1371,13 @@ + } + }, + "node_modules/@babel/plugin-transform-object-super": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", ++ "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-replace-supers": "^7.22.20" ++ "@babel/helper-plugin-utils": "^7.24.7", ++ "@babel/helper-replace-supers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1374,12 +1387,13 @@ + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { +- "version": "7.23.4", ++ "version": "7.24.8", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", ++ "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", ++ "@babel/helper-plugin-utils": "^7.24.8", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { +@@ -1390,11 +1404,12 @@ + } + }, + "node_modules/@babel/plugin-transform-parameters": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", ++ "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1404,11 +1419,12 @@ + } + }, + "node_modules/@babel/plugin-transform-property-literals": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", ++ "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1418,11 +1434,12 @@ + } + }, + "node_modules/@babel/plugin-transform-regenerator": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", ++ "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5", ++ "@babel/helper-plugin-utils": "^7.24.7", + "regenerator-transform": "^0.15.2" + }, + "engines": { +@@ -1433,11 +1450,12 @@ + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", ++ "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1447,11 +1465,12 @@ + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", ++ "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1461,12 +1480,13 @@ + } + }, + "node_modules/@babel/plugin-transform-spread": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", ++ "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1476,11 +1496,12 @@ + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", ++ "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1490,11 +1511,12 @@ + } + }, + "node_modules/@babel/plugin-transform-template-literals": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", ++ "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1504,11 +1526,12 @@ + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { +- "version": "7.23.3", ++ "version": "7.24.8", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", ++ "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" +@@ -1518,14 +1541,16 @@ + } + }, + "node_modules/@babel/plugin-transform-typescript": { +- "version": "7.23.4", ++ "version": "7.25.2", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", ++ "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-annotate-as-pure": "^7.22.5", +- "@babel/helper-create-class-features-plugin": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/plugin-syntax-typescript": "^7.23.3" ++ "@babel/helper-annotate-as-pure": "^7.24.7", ++ "@babel/helper-create-class-features-plugin": "^7.25.0", ++ "@babel/helper-plugin-utils": "^7.24.8", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", ++ "@babel/plugin-syntax-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1535,11 +1560,12 @@ + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", ++ "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1549,12 +1575,13 @@ + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { +- "version": "7.23.3", ++ "version": "7.24.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", ++ "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/helper-create-regexp-features-plugin": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5" ++ "@babel/helper-create-regexp-features-plugin": "^7.24.7", ++ "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" +@@ -1565,8 +1592,9 @@ + }, + "node_modules/@babel/preset-env": { + "version": "7.15.8", ++ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.8.tgz", ++ "integrity": "sha512-rCC0wH8husJgY4FPbHsiYyiLxSY8oMDJH7Rl6RQMknbN9oDDHhM9RDFvnGM2MgkbUJzSQB4gtuwygY5mCqGSsA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", +@@ -1651,8 +1679,9 @@ + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6", ++ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz", ++ "integrity": "sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", +@@ -1666,8 +1695,9 @@ + }, + "node_modules/@babel/preset-typescript": { + "version": "7.16.7", ++ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz", ++ "integrity": "sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", +@@ -1682,13 +1712,15 @@ + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", ++ "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", ++ "dev": true + }, + "node_modules/@babel/runtime": { +- "version": "7.23.4", ++ "version": "7.25.4", ++ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.4.tgz", ++ "integrity": "sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w==", + "dev": true, +- "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, +@@ -1697,30 +1729,29 @@ + } + }, + "node_modules/@babel/template": { +- "version": "7.22.15", +- "license": "MIT", ++ "version": "7.25.0", ++ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", ++ "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "dependencies": { +- "@babel/code-frame": "^7.22.13", +- "@babel/parser": "^7.22.15", +- "@babel/types": "^7.22.15" ++ "@babel/code-frame": "^7.24.7", ++ "@babel/parser": "^7.25.0", ++ "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { +- "version": "7.23.4", +- "license": "MIT", +- "dependencies": { +- "@babel/code-frame": "^7.23.4", +- "@babel/generator": "^7.23.4", +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-function-name": "^7.23.0", +- "@babel/helper-hoist-variables": "^7.22.5", +- "@babel/helper-split-export-declaration": "^7.22.6", +- "@babel/parser": "^7.23.4", +- "@babel/types": "^7.23.4", +- "debug": "^4.1.0", ++ "version": "7.25.4", ++ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.4.tgz", ++ "integrity": "sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg==", ++ "dependencies": { ++ "@babel/code-frame": "^7.24.7", ++ "@babel/generator": "^7.25.4", ++ "@babel/parser": "^7.25.4", ++ "@babel/template": "^7.25.0", ++ "@babel/types": "^7.25.4", ++ "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { +@@ -1728,11 +1759,12 @@ + } + }, + "node_modules/@babel/types": { +- "version": "7.23.4", +- "license": "MIT", ++ "version": "7.25.4", ++ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.4.tgz", ++ "integrity": "sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ==", + "dependencies": { +- "@babel/helper-string-parser": "^7.23.4", +- "@babel/helper-validator-identifier": "^7.22.20", ++ "@babel/helper-string-parser": "^7.24.8", ++ "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { +@@ -1741,8 +1773,9 @@ + }, + "node_modules/@commitlint/cli": { + "version": "19.0.3", ++ "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.0.3.tgz", ++ "integrity": "sha512-mGhh/aYPib4Vy4h+AGRloMY+CqkmtdeKPV9poMcZeImF5e3knQ5VYaSeAM0mEzps1dbKsHvABwaDpafLUuM96g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@commitlint/format": "^19.0.3", + "@commitlint/lint": "^19.0.3", +@@ -1759,287 +1792,76 @@ + "node": ">=v18" + } + }, +- "node_modules/@commitlint/cli/node_modules/cliui": { +- "version": "8.0.1", ++ "node_modules/@commitlint/config-conventional": { ++ "version": "19.0.3", ++ "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.0.3.tgz", ++ "integrity": "sha512-vh0L8XeLaEzTe8VCxSd0gAFvfTK0RFolrzw4o431bIuWJfi/yRCHJlsDwus7wW2eJaFFDR0VFXJyjGyDQhi4vA==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "string-width": "^4.2.0", +- "strip-ansi": "^6.0.1", +- "wrap-ansi": "^7.0.0" ++ "@commitlint/types": "^19.0.3", ++ "conventional-changelog-conventionalcommits": "^7.0.2" + }, + "engines": { +- "node": ">=12" ++ "node": ">=v18" + } + }, +- "node_modules/@commitlint/cli/node_modules/execa": { +- "version": "8.0.1", ++ "node_modules/@commitlint/config-validator": { ++ "version": "19.0.3", ++ "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.0.3.tgz", ++ "integrity": "sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "cross-spawn": "^7.0.3", +- "get-stream": "^8.0.1", +- "human-signals": "^5.0.0", +- "is-stream": "^3.0.0", +- "merge-stream": "^2.0.0", +- "npm-run-path": "^5.1.0", +- "onetime": "^6.0.0", +- "signal-exit": "^4.1.0", +- "strip-final-newline": "^3.0.0" ++ "@commitlint/types": "^19.0.3", ++ "ajv": "^8.11.0" + }, + "engines": { +- "node": ">=16.17" +- }, +- "funding": { +- "url": "https://github.com/sindresorhus/execa?sponsor=1" ++ "node": ">=v18" + } + }, +- "node_modules/@commitlint/cli/node_modules/get-stream": { +- "version": "8.0.1", ++ "node_modules/@commitlint/ensure": { ++ "version": "19.0.3", ++ "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.0.3.tgz", ++ "integrity": "sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=16" ++ "dependencies": { ++ "@commitlint/types": "^19.0.3", ++ "lodash.camelcase": "^4.3.0", ++ "lodash.kebabcase": "^4.1.1", ++ "lodash.snakecase": "^4.1.1", ++ "lodash.startcase": "^4.4.0", ++ "lodash.upperfirst": "^4.3.1" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "engines": { ++ "node": ">=v18" + } + }, +- "node_modules/@commitlint/cli/node_modules/human-signals": { +- "version": "5.0.0", ++ "node_modules/@commitlint/execute-rule": { ++ "version": "19.0.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.0.0.tgz", ++ "integrity": "sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==", + "dev": true, +- "license": "Apache-2.0", + "engines": { +- "node": ">=16.17.0" ++ "node": ">=v18" + } + }, +- "node_modules/@commitlint/cli/node_modules/is-stream": { +- "version": "3.0.0", ++ "node_modules/@commitlint/format": { ++ "version": "19.3.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.3.0.tgz", ++ "integrity": "sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ "dependencies": { ++ "@commitlint/types": "^19.0.3", ++ "chalk": "^5.3.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/mimic-fn": { +- "version": "4.0.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/npm-run-path": { +- "version": "5.3.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "path-key": "^4.0.0" +- }, +- "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/onetime": { +- "version": "6.0.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "mimic-fn": "^4.0.0" +- }, +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/path-key": { +- "version": "4.0.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/signal-exit": { +- "version": "4.1.0", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=14" +- }, +- "funding": { +- "url": "https://github.com/sponsors/isaacs" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/strip-final-newline": { +- "version": "3.0.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/wrap-ansi": { +- "version": "7.0.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- }, +- "engines": { +- "node": ">=10" +- }, +- "funding": { +- "url": "https://github.com/chalk/wrap-ansi?sponsor=1" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/y18n": { +- "version": "5.0.8", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/yargs": { +- "version": "17.7.2", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "cliui": "^8.0.1", +- "escalade": "^3.1.1", +- "get-caller-file": "^2.0.5", +- "require-directory": "^2.1.1", +- "string-width": "^4.2.3", +- "y18n": "^5.0.5", +- "yargs-parser": "^21.1.1" +- }, +- "engines": { +- "node": ">=12" +- } +- }, +- "node_modules/@commitlint/cli/node_modules/yargs-parser": { +- "version": "21.1.1", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=12" +- } +- }, +- "node_modules/@commitlint/config-conventional": { +- "version": "19.0.3", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "@commitlint/types": "^19.0.3", +- "conventional-changelog-conventionalcommits": "^7.0.2" +- }, +- "engines": { +- "node": ">=v18" +- } +- }, +- "node_modules/@commitlint/config-conventional/node_modules/conventional-changelog-conventionalcommits": { +- "version": "7.0.2", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "compare-func": "^2.0.0" +- }, +- "engines": { +- "node": ">=16" +- } +- }, +- "node_modules/@commitlint/config-validator": { +- "version": "19.0.3", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "@commitlint/types": "^19.0.3", +- "ajv": "^8.11.0" +- }, +- "engines": { +- "node": ">=v18" +- } +- }, +- "node_modules/@commitlint/config-validator/node_modules/ajv": { +- "version": "8.12.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- }, +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" +- } +- }, +- "node_modules/@commitlint/config-validator/node_modules/json-schema-traverse": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@commitlint/ensure": { +- "version": "19.0.3", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "@commitlint/types": "^19.0.3", +- "lodash.camelcase": "^4.3.0", +- "lodash.kebabcase": "^4.1.1", +- "lodash.snakecase": "^4.1.1", +- "lodash.startcase": "^4.4.0", +- "lodash.upperfirst": "^4.3.1" +- }, +- "engines": { +- "node": ">=v18" +- } +- }, +- "node_modules/@commitlint/execute-rule": { +- "version": "19.0.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=v18" +- } +- }, +- "node_modules/@commitlint/format": { +- "version": "19.0.3", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "@commitlint/types": "^19.0.3", +- "chalk": "^5.3.0" +- }, +- "engines": { +- "node": ">=v18" ++ "engines": { ++ "node": ">=v18" + } + }, + "node_modules/@commitlint/format/node_modules/chalk": { + "version": "5.3.0", ++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", ++ "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, +- "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, +@@ -2048,9 +1870,10 @@ + } + }, + "node_modules/@commitlint/is-ignored": { +- "version": "19.0.3", ++ "version": "19.2.2", ++ "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.2.2.tgz", ++ "integrity": "sha512-eNX54oXMVxncORywF4ZPFtJoBm3Tvp111tg1xf4zWXGfhBPKpfKG6R+G3G4v5CPlRROXpAOpQ3HMhA9n1Tck1g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@commitlint/types": "^19.0.3", + "semver": "^7.6.0" +@@ -2059,24 +1882,11 @@ + "node": ">=v18" + } + }, +- "node_modules/@commitlint/is-ignored/node_modules/lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/@commitlint/is-ignored/node_modules/semver": { +- "version": "7.6.0", ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -2084,17 +1894,13 @@ + "node": ">=10" + } + }, +- "node_modules/@commitlint/is-ignored/node_modules/yallist": { +- "version": "4.0.0", +- "dev": true, +- "license": "ISC" +- }, + "node_modules/@commitlint/lint": { +- "version": "19.0.3", ++ "version": "19.2.2", ++ "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.2.2.tgz", ++ "integrity": "sha512-xrzMmz4JqwGyKQKTpFzlN0dx0TAiT7Ran1fqEBgEmEj+PU98crOFtysJgY+QdeSagx6EDRigQIXJVnfrI0ratA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@commitlint/is-ignored": "^19.0.3", ++ "@commitlint/is-ignored": "^19.2.2", + "@commitlint/parse": "^19.0.3", + "@commitlint/rules": "^19.0.3", + "@commitlint/types": "^19.0.3" +@@ -2104,16 +1910,17 @@ + } + }, + "node_modules/@commitlint/load": { +- "version": "19.0.3", ++ "version": "19.4.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.4.0.tgz", ++ "integrity": "sha512-I4lCWaEZYQJ1y+Y+gdvbGAx9pYPavqZAZ3/7/8BpWh+QjscAn8AjsUpLV2PycBsEx7gupq5gM4BViV9xwTIJuw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@commitlint/config-validator": "^19.0.3", + "@commitlint/execute-rule": "^19.0.0", +- "@commitlint/resolve-extends": "^19.0.3", ++ "@commitlint/resolve-extends": "^19.1.0", + "@commitlint/types": "^19.0.3", + "chalk": "^5.3.0", +- "cosmiconfig": "^8.3.6", ++ "cosmiconfig": "^9.0.0", + "cosmiconfig-typescript-loader": "^5.0.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2", +@@ -2125,8 +1932,9 @@ + }, + "node_modules/@commitlint/load/node_modules/chalk": { + "version": "5.3.0", ++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", ++ "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, +- "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, +@@ -2135,14 +1943,15 @@ + } + }, + "node_modules/@commitlint/load/node_modules/cosmiconfig": { +- "version": "8.3.6", ++ "version": "9.0.0", ++ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", ++ "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "dev": true, +- "license": "MIT", + "dependencies": { ++ "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", +- "parse-json": "^5.2.0", +- "path-type": "^4.0.0" ++ "parse-json": "^5.2.0" + }, + "engines": { + "node": ">=14" +@@ -2161,8 +1970,9 @@ + }, + "node_modules/@commitlint/load/node_modules/cosmiconfig-typescript-loader": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.0.0.tgz", ++ "integrity": "sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "jiti": "^1.19.1" + }, +@@ -2177,8 +1987,9 @@ + }, + "node_modules/@commitlint/load/node_modules/parse-json": { + "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", ++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", +@@ -2193,9 +2004,10 @@ + } + }, + "node_modules/@commitlint/load/node_modules/typescript": { +- "version": "5.4.2", ++ "version": "5.5.4", ++ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", ++ "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", + "dev": true, +- "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", +@@ -2207,16 +2019,18 @@ + }, + "node_modules/@commitlint/message": { + "version": "19.0.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.0.0.tgz", ++ "integrity": "sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/parse": { + "version": "19.0.3", ++ "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.0.3.tgz", ++ "integrity": "sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@commitlint/types": "^19.0.3", + "conventional-changelog-angular": "^7.0.0", +@@ -2226,555 +2040,734 @@ + "node": ">=v18" + } + }, +- "node_modules/@commitlint/parse/node_modules/conventional-changelog-angular": { +- "version": "7.0.0", ++ "node_modules/@commitlint/read": { ++ "version": "19.4.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.4.0.tgz", ++ "integrity": "sha512-r95jLOEZzKDakXtnQub+zR3xjdnrl2XzerPwm7ch1/cc5JGq04tyaNpa6ty0CRCWdVrk4CZHhqHozb8yZwy2+g==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "compare-func": "^2.0.0" ++ "@commitlint/top-level": "^19.0.0", ++ "@commitlint/types": "^19.0.3", ++ "execa": "^8.0.1", ++ "git-raw-commits": "^4.0.0", ++ "minimist": "^1.2.8" + }, + "engines": { +- "node": ">=16" ++ "node": ">=v18" + } + }, +- "node_modules/@commitlint/parse/node_modules/conventional-commits-parser": { +- "version": "5.0.0", ++ "node_modules/@commitlint/resolve-extends": { ++ "version": "19.1.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.1.0.tgz", ++ "integrity": "sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "is-text-path": "^2.0.0", +- "JSONStream": "^1.3.5", +- "meow": "^12.0.1", +- "split2": "^4.0.0" +- }, +- "bin": { +- "conventional-commits-parser": "cli.mjs" ++ "@commitlint/config-validator": "^19.0.3", ++ "@commitlint/types": "^19.0.3", ++ "global-directory": "^4.0.1", ++ "import-meta-resolve": "^4.0.0", ++ "lodash.mergewith": "^4.6.2", ++ "resolve-from": "^5.0.0" + }, + "engines": { +- "node": ">=16" ++ "node": ">=v18" + } + }, +- "node_modules/@commitlint/parse/node_modules/is-text-path": { +- "version": "2.0.0", ++ "node_modules/@commitlint/rules": { ++ "version": "19.0.3", ++ "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.0.3.tgz", ++ "integrity": "sha512-TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "text-extensions": "^2.0.0" ++ "@commitlint/ensure": "^19.0.3", ++ "@commitlint/message": "^19.0.0", ++ "@commitlint/to-lines": "^19.0.0", ++ "@commitlint/types": "^19.0.3", ++ "execa": "^8.0.1" + }, + "engines": { +- "node": ">=8" ++ "node": ">=v18" + } + }, +- "node_modules/@commitlint/parse/node_modules/meow": { +- "version": "12.1.1", ++ "node_modules/@commitlint/to-lines": { ++ "version": "19.0.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.0.0.tgz", ++ "integrity": "sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=16.10" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">=v18" + } + }, +- "node_modules/@commitlint/parse/node_modules/text-extensions": { +- "version": "2.4.0", ++ "node_modules/@commitlint/top-level": { ++ "version": "19.0.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.0.0.tgz", ++ "integrity": "sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=8" ++ "dependencies": { ++ "find-up": "^7.0.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "engines": { ++ "node": ">=v18" + } + }, +- "node_modules/@commitlint/read": { ++ "node_modules/@commitlint/types": { + "version": "19.0.3", ++ "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.0.3.tgz", ++ "integrity": "sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@commitlint/top-level": "^19.0.0", +- "@commitlint/types": "^19.0.3", +- "git-raw-commits": "^4.0.0", +- "minimist": "^1.2.8" ++ "@types/conventional-commits-parser": "^5.0.0", ++ "chalk": "^5.3.0" + }, + "engines": { + "node": ">=v18" + } + }, +- "node_modules/@commitlint/read/node_modules/dargs": { +- "version": "8.1.0", ++ "node_modules/@commitlint/types/node_modules/chalk": { ++ "version": "5.3.0", ++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", ++ "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=12" ++ "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, +- "node_modules/@commitlint/read/node_modules/git-raw-commits": { +- "version": "4.0.0", ++ "node_modules/@cspotcode/source-map-support": { ++ "version": "0.8.1", ++ "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", ++ "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "dargs": "^8.0.0", +- "meow": "^12.0.1", +- "split2": "^4.0.0" +- }, +- "bin": { +- "git-raw-commits": "cli.mjs" ++ "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { +- "node": ">=16" ++ "node": ">=12" + } + }, +- "node_modules/@commitlint/read/node_modules/meow": { +- "version": "12.1.1", ++ "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { ++ "version": "0.3.9", ++ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", ++ "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "@jridgewell/resolve-uri": "^3.0.3", ++ "@jridgewell/sourcemap-codec": "^1.4.10" ++ } ++ }, ++ "node_modules/@csstools/css-parser-algorithms": { ++ "version": "2.7.1", ++ "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.7.1.tgz", ++ "integrity": "sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==", ++ "dev": true, ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/csstools" ++ }, ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/csstools" ++ } ++ ], + "engines": { +- "node": ">=16.10" ++ "node": "^14 || ^16 || >=18" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "peerDependencies": { ++ "@csstools/css-tokenizer": "^2.4.1" + } + }, +- "node_modules/@commitlint/resolve-extends": { +- "version": "19.0.3", ++ "node_modules/@csstools/css-tokenizer": { ++ "version": "2.4.1", ++ "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.4.1.tgz", ++ "integrity": "sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@commitlint/config-validator": "^19.0.3", +- "@commitlint/types": "^19.0.3", +- "global-directory": "^4.0.1", +- "import-meta-resolve": "^4.0.0", +- "lodash.mergewith": "^4.6.2", +- "resolve-from": "^5.0.0" +- }, ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/csstools" ++ }, ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/csstools" ++ } ++ ], + "engines": { +- "node": ">=v18" ++ "node": "^14 || ^16 || >=18" + } + }, +- "node_modules/@commitlint/resolve-extends/node_modules/resolve-from": { +- "version": "5.0.0", ++ "node_modules/@csstools/media-query-list-parser": { ++ "version": "2.1.13", ++ "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.13.tgz", ++ "integrity": "sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==", + "dev": true, +- "license": "MIT", ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/csstools" ++ }, ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/csstools" ++ } ++ ], + "engines": { +- "node": ">=8" ++ "node": "^14 || ^16 || >=18" ++ }, ++ "peerDependencies": { ++ "@csstools/css-parser-algorithms": "^2.7.1", ++ "@csstools/css-tokenizer": "^2.4.1" + } + }, +- "node_modules/@commitlint/rules": { +- "version": "19.0.3", ++ "node_modules/@csstools/selector-specificity": { ++ "version": "3.1.1", ++ "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz", ++ "integrity": "sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@commitlint/ensure": "^19.0.3", +- "@commitlint/message": "^19.0.0", +- "@commitlint/to-lines": "^19.0.0", +- "@commitlint/types": "^19.0.3", +- "execa": "^8.0.1" +- }, ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/csstools" ++ }, ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/csstools" ++ } ++ ], + "engines": { +- "node": ">=v18" ++ "node": "^14 || ^16 || >=18" ++ }, ++ "peerDependencies": { ++ "postcss-selector-parser": "^6.0.13" + } + }, +- "node_modules/@commitlint/rules/node_modules/execa": { +- "version": "8.0.1", ++ "node_modules/@develar/schema-utils": { ++ "version": "2.6.5", ++ "resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz", ++ "integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "cross-spawn": "^7.0.3", +- "get-stream": "^8.0.1", +- "human-signals": "^5.0.0", +- "is-stream": "^3.0.0", +- "merge-stream": "^2.0.0", +- "npm-run-path": "^5.1.0", +- "onetime": "^6.0.0", +- "signal-exit": "^4.1.0", +- "strip-final-newline": "^3.0.0" ++ "ajv": "^6.12.0", ++ "ajv-keywords": "^3.4.1" + }, + "engines": { +- "node": ">=16.17" ++ "node": ">= 8.9.0" + }, + "funding": { +- "url": "https://github.com/sindresorhus/execa?sponsor=1" ++ "type": "opencollective", ++ "url": "https://opencollective.com/webpack" + } + }, +- "node_modules/@commitlint/rules/node_modules/get-stream": { +- "version": "8.0.1", ++ "node_modules/@develar/schema-utils/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=16" ++ "dependencies": { ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" + }, + "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" + } + }, +- "node_modules/@commitlint/rules/node_modules/human-signals": { +- "version": "5.0.0", ++ "node_modules/@develar/schema-utils/node_modules/ajv-keywords": { ++ "version": "3.5.2", ++ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", ++ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, +- "license": "Apache-2.0", ++ "peerDependencies": { ++ "ajv": "^6.9.1" ++ } ++ }, ++ "node_modules/@develar/schema-utils/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", ++ "dev": true ++ }, ++ "node_modules/@discoveryjs/json-ext": { ++ "version": "0.5.7", ++ "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", ++ "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "engines": { +- "node": ">=16.17.0" ++ "node": ">=10.0.0" + } + }, +- "node_modules/@commitlint/rules/node_modules/is-stream": { +- "version": "3.0.0", ++ "node_modules/@electron/asar": { ++ "version": "3.2.10", ++ "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.2.10.tgz", ++ "integrity": "sha512-mvBSwIBUeiRscrCeJE1LwctAriBj65eUDm0Pc11iE5gRwzkmsdbS7FnZ1XUWjpSeQWL1L5g12Fc/SchPM9DUOw==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ "dependencies": { ++ "commander": "^5.0.0", ++ "glob": "^7.1.6", ++ "minimatch": "^3.0.4" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "bin": { ++ "asar": "bin/asar.js" ++ }, ++ "engines": { ++ "node": ">=10.12.0" + } + }, +- "node_modules/@commitlint/rules/node_modules/mimic-fn": { +- "version": "4.0.0", ++ "node_modules/@electron/asar/node_modules/brace-expansion": { ++ "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "dependencies": { ++ "balanced-match": "^1.0.0", ++ "concat-map": "0.0.1" + } + }, +- "node_modules/@commitlint/rules/node_modules/npm-run-path": { +- "version": "5.3.0", ++ "node_modules/@electron/asar/node_modules/minimatch": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "path-key": "^4.0.0" ++ "brace-expansion": "^1.1.7" + }, + "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": "*" + } + }, +- "node_modules/@commitlint/rules/node_modules/onetime": { +- "version": "6.0.0", +- "dev": true, +- "license": "MIT", ++ "node_modules/@electron/get": { ++ "version": "2.0.3", ++ "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.3.tgz", ++ "integrity": "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==", + "dependencies": { +- "mimic-fn": "^4.0.0" ++ "debug": "^4.1.1", ++ "env-paths": "^2.2.0", ++ "fs-extra": "^8.1.0", ++ "got": "^11.8.5", ++ "progress": "^2.0.3", ++ "semver": "^6.2.0", ++ "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=12" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "optionalDependencies": { ++ "global-agent": "^3.0.0" + } + }, +- "node_modules/@commitlint/rules/node_modules/path-key": { +- "version": "4.0.0", ++ "node_modules/@electron/notarize": { ++ "version": "2.2.1", ++ "resolved": "https://registry.npmjs.org/@electron/notarize/-/notarize-2.2.1.tgz", ++ "integrity": "sha512-aL+bFMIkpR0cmmj5Zgy0LMKEpgy43/hw5zadEArgmAMWWlKc5buwFvFT9G/o/YJkvXAJm5q3iuTuLaiaXW39sg==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=12" ++ "dependencies": { ++ "debug": "^4.1.1", ++ "fs-extra": "^9.0.1", ++ "promise-retry": "^2.0.1" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "engines": { ++ "node": ">= 10.0.0" + } + }, +- "node_modules/@commitlint/rules/node_modules/signal-exit": { +- "version": "4.1.0", ++ "node_modules/@electron/notarize/node_modules/fs-extra": { ++ "version": "9.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", ++ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=14" ++ "dependencies": { ++ "at-least-node": "^1.0.0", ++ "graceful-fs": "^4.2.0", ++ "jsonfile": "^6.0.1", ++ "universalify": "^2.0.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/isaacs" ++ "engines": { ++ "node": ">=10" + } + }, +- "node_modules/@commitlint/rules/node_modules/strip-final-newline": { +- "version": "3.0.0", ++ "node_modules/@electron/notarize/node_modules/jsonfile": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=12" ++ "dependencies": { ++ "universalify": "^2.0.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "optionalDependencies": { ++ "graceful-fs": "^4.1.6" + } + }, +- "node_modules/@commitlint/to-lines": { +- "version": "19.0.0", ++ "node_modules/@electron/notarize/node_modules/universalify": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=v18" ++ "node": ">= 10.0.0" + } + }, +- "node_modules/@commitlint/top-level": { +- "version": "19.0.0", ++ "node_modules/@electron/osx-sign": { ++ "version": "1.0.5", ++ "resolved": "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.0.5.tgz", ++ "integrity": "sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "find-up": "^7.0.0" ++ "compare-version": "^0.1.2", ++ "debug": "^4.3.4", ++ "fs-extra": "^10.0.0", ++ "isbinaryfile": "^4.0.8", ++ "minimist": "^1.2.6", ++ "plist": "^3.0.5" ++ }, ++ "bin": { ++ "electron-osx-flat": "bin/electron-osx-flat.js", ++ "electron-osx-sign": "bin/electron-osx-sign.js" + }, + "engines": { +- "node": ">=v18" ++ "node": ">=12.0.0" + } + }, +- "node_modules/@commitlint/top-level/node_modules/find-up": { +- "version": "7.0.0", ++ "node_modules/@electron/osx-sign/node_modules/fs-extra": { ++ "version": "10.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "locate-path": "^7.2.0", +- "path-exists": "^5.0.0", +- "unicorn-magic": "^0.1.0" ++ "graceful-fs": "^4.2.0", ++ "jsonfile": "^6.0.1", ++ "universalify": "^2.0.0" + }, + "engines": { +- "node": ">=18" ++ "node": ">=12" ++ } ++ }, ++ "node_modules/@electron/osx-sign/node_modules/isbinaryfile": { ++ "version": "4.0.10", ++ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", ++ "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", ++ "dev": true, ++ "engines": { ++ "node": ">= 8.0.0" + }, + "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "url": "https://github.com/sponsors/gjtorikian/" + } + }, +- "node_modules/@commitlint/top-level/node_modules/locate-path": { +- "version": "7.2.0", ++ "node_modules/@electron/osx-sign/node_modules/jsonfile": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "p-locate": "^6.0.0" ++ "universalify": "^2.0.0" + }, ++ "optionalDependencies": { ++ "graceful-fs": "^4.1.6" ++ } ++ }, ++ "node_modules/@electron/osx-sign/node_modules/universalify": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", ++ "dev": true, + "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">= 10.0.0" + } + }, +- "node_modules/@commitlint/top-level/node_modules/p-limit": { +- "version": "4.0.0", ++ "node_modules/@electron/remote": { ++ "version": "2.1.2", ++ "resolved": "https://registry.npmjs.org/@electron/remote/-/remote-2.1.2.tgz", ++ "integrity": "sha512-EPwNx+nhdrTBxyCqXt/pftoQg/ybtWDW3DUWHafejvnB1ZGGfMpv6e15D8KeempocjXe78T7WreyGGb3mlZxdA==", ++ "peerDependencies": { ++ "electron": ">= 13.0.0" ++ } ++ }, ++ "node_modules/@electron/universal": { ++ "version": "1.5.1", ++ "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.5.1.tgz", ++ "integrity": "sha512-kbgXxyEauPJiQQUNG2VgUeyfQNFk6hBF11ISN2PNI6agUgPl55pv4eQmaqHzTAzchBvqZ2tQuRVaPStGf0mxGw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "yocto-queue": "^1.0.0" ++ "@electron/asar": "^3.2.1", ++ "@malept/cross-spawn-promise": "^1.1.0", ++ "debug": "^4.3.1", ++ "dir-compare": "^3.0.0", ++ "fs-extra": "^9.0.1", ++ "minimatch": "^3.0.4", ++ "plist": "^3.0.4" + }, + "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">=8.6" + } + }, +- "node_modules/@commitlint/top-level/node_modules/p-locate": { +- "version": "6.0.0", ++ "node_modules/@electron/universal/node_modules/brace-expansion": { ++ "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "p-limit": "^4.0.0" ++ "balanced-match": "^1.0.0", ++ "concat-map": "0.0.1" ++ } ++ }, ++ "node_modules/@electron/universal/node_modules/fs-extra": { ++ "version": "9.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", ++ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", ++ "dev": true, ++ "dependencies": { ++ "at-least-node": "^1.0.0", ++ "graceful-fs": "^4.2.0", ++ "jsonfile": "^6.0.1", ++ "universalify": "^2.0.0" + }, + "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ "node": ">=10" ++ } ++ }, ++ "node_modules/@electron/universal/node_modules/jsonfile": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", ++ "dev": true, ++ "dependencies": { ++ "universalify": "^2.0.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "optionalDependencies": { ++ "graceful-fs": "^4.1.6" + } + }, +- "node_modules/@commitlint/top-level/node_modules/path-exists": { +- "version": "5.0.0", ++ "node_modules/@electron/universal/node_modules/minimatch": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "brace-expansion": "^1.1.7" ++ }, + "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ "node": "*" + } + }, +- "node_modules/@commitlint/top-level/node_modules/yocto-queue": { +- "version": "1.0.0", ++ "node_modules/@electron/universal/node_modules/universalify": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=12.20" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">= 10.0.0" + } + }, +- "node_modules/@commitlint/types": { +- "version": "19.0.3", ++ "node_modules/@eslint/eslintrc": { ++ "version": "0.4.3", ++ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", ++ "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/conventional-commits-parser": "^5.0.0", +- "chalk": "^5.3.0" ++ "ajv": "^6.12.4", ++ "debug": "^4.1.1", ++ "espree": "^7.3.0", ++ "globals": "^13.9.0", ++ "ignore": "^4.0.6", ++ "import-fresh": "^3.2.1", ++ "js-yaml": "^3.13.1", ++ "minimatch": "^3.0.4", ++ "strip-json-comments": "^3.1.1" + }, + "engines": { +- "node": ">=v18" ++ "node": "^10.12.0 || >=12.0.0" + } + }, +- "node_modules/@commitlint/types/node_modules/chalk": { +- "version": "5.3.0", ++ "node_modules/@eslint/eslintrc/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": "^12.17.0 || ^14.13 || >=16.0.0" ++ "dependencies": { ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" + }, + "funding": { +- "url": "https://github.com/chalk/chalk?sponsor=1" ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" + } + }, +- "node_modules/@cspotcode/source-map-support": { +- "version": "0.8.1", ++ "node_modules/@eslint/eslintrc/node_modules/argparse": { ++ "version": "1.0.10", ++ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", ++ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@jridgewell/trace-mapping": "0.3.9" +- }, +- "engines": { +- "node": ">=12" ++ "sprintf-js": "~1.0.2" + } + }, +- "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { +- "version": "0.3.9", ++ "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { ++ "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@jridgewell/resolve-uri": "^3.0.3", +- "@jridgewell/sourcemap-codec": "^1.4.10" ++ "balanced-match": "^1.0.0", ++ "concat-map": "0.0.1" + } + }, +- "node_modules/@csstools/css-parser-algorithms": { +- "version": "2.3.2", ++ "node_modules/@eslint/eslintrc/node_modules/globals": { ++ "version": "13.24.0", ++ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", ++ "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, +- "funding": [ +- { +- "type": "github", +- "url": "https://github.com/sponsors/csstools" +- }, +- { +- "type": "opencollective", +- "url": "https://opencollective.com/csstools" +- } +- ], +- "license": "MIT", ++ "dependencies": { ++ "type-fest": "^0.20.2" ++ }, + "engines": { +- "node": "^14 || ^16 || >=18" ++ "node": ">=8" + }, +- "peerDependencies": { +- "@csstools/css-tokenizer": "^2.2.1" ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@csstools/css-tokenizer": { +- "version": "2.2.1", ++ "node_modules/@eslint/eslintrc/node_modules/ignore": { ++ "version": "4.0.6", ++ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", ++ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, +- "funding": [ +- { +- "type": "github", +- "url": "https://github.com/sponsors/csstools" +- }, +- { +- "type": "opencollective", +- "url": "https://opencollective.com/csstools" +- } +- ], +- "license": "MIT", + "engines": { +- "node": "^14 || ^16 || >=18" ++ "node": ">= 4" + } + }, +- "node_modules/@csstools/media-query-list-parser": { +- "version": "2.1.5", ++ "node_modules/@eslint/eslintrc/node_modules/js-yaml": { ++ "version": "3.14.1", ++ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", ++ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, +- "funding": [ +- { +- "type": "github", +- "url": "https://github.com/sponsors/csstools" +- }, +- { +- "type": "opencollective", +- "url": "https://opencollective.com/csstools" +- } +- ], +- "license": "MIT", +- "engines": { +- "node": "^14 || ^16 || >=18" ++ "dependencies": { ++ "argparse": "^1.0.7", ++ "esprima": "^4.0.0" + }, +- "peerDependencies": { +- "@csstools/css-parser-algorithms": "^2.3.2", +- "@csstools/css-tokenizer": "^2.2.1" ++ "bin": { ++ "js-yaml": "bin/js-yaml.js" + } + }, +- "node_modules/@csstools/selector-specificity": { +- "version": "3.0.0", ++ "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", ++ "dev": true ++ }, ++ "node_modules/@eslint/eslintrc/node_modules/minimatch": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, +- "funding": [ +- { +- "type": "github", +- "url": "https://github.com/sponsors/csstools" +- }, +- { +- "type": "opencollective", +- "url": "https://opencollective.com/csstools" +- } +- ], +- "license": "MIT-0", +- "engines": { +- "node": "^14 || ^16 || >=18" ++ "dependencies": { ++ "brace-expansion": "^1.1.7" + }, +- "peerDependencies": { +- "postcss-selector-parser": "^6.0.13" ++ "engines": { ++ "node": "*" + } + }, +- "node_modules/@develar/schema-utils": { +- "version": "2.6.5", ++ "node_modules/@eslint/eslintrc/node_modules/sprintf-js": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", ++ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", ++ "dev": true ++ }, ++ "node_modules/@eslint/eslintrc/node_modules/type-fest": { ++ "version": "0.20.2", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", ++ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "ajv": "^6.12.0", +- "ajv-keywords": "^3.4.1" +- }, + "engines": { +- "node": ">= 8.9.0" ++ "node": ">=10" + }, + "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/webpack" ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@discoveryjs/json-ext": { +- "version": "0.5.7", +- "license": "MIT", ++ "node_modules/@fabio286/ssh2-promise": { ++ "version": "1.0.4-b", ++ "resolved": "https://registry.npmjs.org/@fabio286/ssh2-promise/-/ssh2-promise-1.0.4-b.tgz", ++ "integrity": "sha512-tqYu7yX4GQXpM4zN80s2EURLgMNyrUDJaImZqIHIRkCxjwq3mdK7uATF4zXu/je9XRD3OVfkQXRoY+H9LwlVoA==", ++ "dependencies": { ++ "@heroku/socksv5": "^0.0.9", ++ "ssh2": "~1.14.0" ++ } ++ }, ++ "node_modules/@faker-js/faker": { ++ "version": "6.1.2", ++ "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-6.1.2.tgz", ++ "integrity": "sha512-QSvmexHCxeRUk1/yKmoEDaWB5Hohjvtim5g2JJwy8S/l0L4b3y/GxSpE6vN4SBoVGGahEQW21uqyRr7EofI35A==", + "engines": { +- "node": ">=10.0.0" ++ "node": ">=14.0.0", ++ "npm": ">=6.0.0" + } + }, +- "node_modules/@electron/asar": { +- "version": "3.2.10", ++ "node_modules/@floating-ui/core": { ++ "version": "1.6.7", ++ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.7.tgz", ++ "integrity": "sha512-yDzVT/Lm101nQ5TCVeK65LtdN7Tj4Qpr9RTXJ2vPFLqtLxwOrpoxAHAJI8J3yYWUc40J0BDBheaitK5SJmno2g==", ++ "dependencies": { ++ "@floating-ui/utils": "^0.2.7" ++ } ++ }, ++ "node_modules/@floating-ui/dom": { ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.1.1.tgz", ++ "integrity": "sha512-TpIO93+DIujg3g7SykEAGZMDtbJRrmnYRCNYSjJlvIbGhBjRSNTLVbNeDQBrzy9qDgUbiWdc7KA0uZHZ2tJmiw==", ++ "dependencies": { ++ "@floating-ui/core": "^1.1.0" ++ } ++ }, ++ "node_modules/@floating-ui/utils": { ++ "version": "0.2.7", ++ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.7.tgz", ++ "integrity": "sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==" ++ }, ++ "node_modules/@heroku/socksv5": { ++ "version": "0.0.9", ++ "resolved": "https://registry.npmjs.org/@heroku/socksv5/-/socksv5-0.0.9.tgz", ++ "integrity": "sha512-bV8v7R/c0gNve8i7yPmZbcCTJUqRbCnMSvcegcMaz+ly+FoZf9i4+3MTjKsX+OZn9w0w1I6VJYQBcdM+yMWPQQ==", ++ "dependencies": { ++ "ip-address": "^5.8.8" ++ }, ++ "engines": { ++ "node": ">=0.10.0" ++ } ++ }, ++ "node_modules/@humanwhocodes/config-array": { ++ "version": "0.5.0", ++ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", ++ "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", ++ "deprecated": "Use @eslint/config-array instead", + "dev": true, +- "license": "MIT", + "dependencies": { +- "commander": "^5.0.0", +- "glob": "^7.1.6", ++ "@humanwhocodes/object-schema": "^1.2.0", ++ "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, +- "bin": { +- "asar": "bin/asar.js" +- }, + "engines": { +- "node": ">=10.12.0" ++ "node": ">=10.10.0" + } + }, +- "node_modules/@electron/asar/node_modules/brace-expansion": { ++ "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { + "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, +- "node_modules/@electron/asar/node_modules/minimatch": { ++ "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { + "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, +- "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, +@@ -2782,172 +2775,264 @@ + "node": "*" + } + }, +- "node_modules/@electron/get": { +- "version": "2.0.3", +- "license": "MIT", +- "dependencies": { +- "debug": "^4.1.1", +- "env-paths": "^2.2.0", +- "fs-extra": "^8.1.0", +- "got": "^11.8.5", +- "progress": "^2.0.3", +- "semver": "^6.2.0", +- "sumchecker": "^3.0.1" +- }, +- "engines": { +- "node": ">=12" +- }, +- "optionalDependencies": { +- "global-agent": "^3.0.0" +- } ++ "node_modules/@humanwhocodes/object-schema": { ++ "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", ++ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", ++ "deprecated": "Use @eslint/object-schema instead", ++ "dev": true + }, +- "node_modules/@electron/notarize": { +- "version": "2.2.1", ++ "node_modules/@hutson/parse-repository-url": { ++ "version": "3.0.2", ++ "resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz", ++ "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "debug": "^4.1.1", +- "fs-extra": "^9.0.1", +- "promise-retry": "^2.0.1" +- }, + "engines": { +- "node": ">= 10.0.0" ++ "node": ">=6.9.0" + } + }, +- "node_modules/@electron/notarize/node_modules/fs-extra": { +- "version": "9.1.0", +- "dev": true, +- "license": "MIT", ++ "node_modules/@intlify/core-base": { ++ "version": "9.13.1", ++ "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.13.1.tgz", ++ "integrity": "sha512-+bcQRkJO9pcX8d0gel9ZNfrzU22sZFSA0WVhfXrf5jdJOS24a+Bp8pozuS9sBI9Hk/tGz83pgKfmqcn/Ci7/8w==", + "dependencies": { +- "at-least-node": "^1.0.0", +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" ++ "@intlify/message-compiler": "9.13.1", ++ "@intlify/shared": "9.13.1" + }, + "engines": { +- "node": ">=10" ++ "node": ">= 16" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/kazupon" + } + }, +- "node_modules/@electron/notarize/node_modules/jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "license": "MIT", ++ "node_modules/@intlify/message-compiler": { ++ "version": "9.13.1", ++ "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.13.1.tgz", ++ "integrity": "sha512-SKsVa4ajYGBVm7sHMXd5qX70O2XXjm55zdZB3VeMFCvQyvLew/dLvq3MqnaIsTMF1VkkOb9Ttr6tHcMlyPDL9w==", + "dependencies": { +- "universalify": "^2.0.0" ++ "@intlify/shared": "9.13.1", ++ "source-map-js": "^1.0.2" + }, +- "optionalDependencies": { +- "graceful-fs": "^4.1.6" +- } +- }, +- "node_modules/@electron/notarize/node_modules/universalify": { +- "version": "2.0.1", +- "dev": true, +- "license": "MIT", + "engines": { +- "node": ">= 10.0.0" ++ "node": ">= 16" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/kazupon" + } + }, +- "node_modules/@electron/osx-sign": { +- "version": "1.0.5", +- "dev": true, +- "license": "BSD-2-Clause", +- "dependencies": { +- "compare-version": "^0.1.2", +- "debug": "^4.3.4", +- "fs-extra": "^10.0.0", +- "isbinaryfile": "^4.0.8", +- "minimist": "^1.2.6", +- "plist": "^3.0.5" +- }, +- "bin": { +- "electron-osx-flat": "bin/electron-osx-flat.js", +- "electron-osx-sign": "bin/electron-osx-sign.js" +- }, ++ "node_modules/@intlify/shared": { ++ "version": "9.13.1", ++ "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.13.1.tgz", ++ "integrity": "sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==", + "engines": { +- "node": ">=12.0.0" ++ "node": ">= 16" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/kazupon" + } + }, +- "node_modules/@electron/osx-sign/node_modules/fs-extra": { +- "version": "10.1.0", ++ "node_modules/@isaacs/cliui": { ++ "version": "8.0.2", ++ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", ++ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" ++ "string-width": "^5.1.2", ++ "string-width-cjs": "npm:string-width@^4.2.0", ++ "strip-ansi": "^7.0.1", ++ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", ++ "wrap-ansi": "^8.1.0", ++ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, +- "node_modules/@electron/osx-sign/node_modules/isbinaryfile": { +- "version": "4.0.10", ++ "node_modules/@isaacs/cliui/node_modules/ansi-regex": { ++ "version": "6.0.1", ++ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", ++ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">= 8.0.0" ++ "node": ">=12" + }, + "funding": { +- "url": "https://github.com/sponsors/gjtorikian/" ++ "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, +- "node_modules/@electron/osx-sign/node_modules/jsonfile": { +- "version": "6.1.0", ++ "node_modules/@isaacs/cliui/node_modules/ansi-styles": { ++ "version": "6.2.1", ++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", ++ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", ++ "dev": true, ++ "engines": { ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/chalk/ansi-styles?sponsor=1" ++ } ++ }, ++ "node_modules/@isaacs/cliui/node_modules/emoji-regex": { ++ "version": "9.2.2", ++ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", ++ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", ++ "dev": true ++ }, ++ "node_modules/@isaacs/cliui/node_modules/string-width": { ++ "version": "5.1.2", ++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", ++ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "universalify": "^2.0.0" ++ "eastasianwidth": "^0.2.0", ++ "emoji-regex": "^9.2.2", ++ "strip-ansi": "^7.0.1" + }, +- "optionalDependencies": { +- "graceful-fs": "^4.1.6" ++ "engines": { ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@electron/osx-sign/node_modules/universalify": { +- "version": "2.0.1", ++ "node_modules/@isaacs/cliui/node_modules/strip-ansi": { ++ "version": "7.1.0", ++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", ++ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "ansi-regex": "^6.0.1" ++ }, + "engines": { +- "node": ">= 10.0.0" ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, +- "node_modules/@electron/remote": { +- "version": "2.1.2", +- "resolved": "https://registry.npmjs.org/@electron/remote/-/remote-2.1.2.tgz", +- "integrity": "sha512-EPwNx+nhdrTBxyCqXt/pftoQg/ybtWDW3DUWHafejvnB1ZGGfMpv6e15D8KeempocjXe78T7WreyGGb3mlZxdA==", +- "peerDependencies": { +- "electron": ">= 13.0.0" ++ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { ++ "version": "8.1.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", ++ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", ++ "dev": true, ++ "dependencies": { ++ "ansi-styles": "^6.1.0", ++ "string-width": "^5.0.1", ++ "strip-ansi": "^7.0.1" ++ }, ++ "engines": { ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, +- "node_modules/@electron/universal": { +- "version": "1.5.1", ++ "node_modules/@jamescoyle/vue-icon": { ++ "version": "0.1.2", ++ "resolved": "https://registry.npmjs.org/@jamescoyle/vue-icon/-/vue-icon-0.1.2.tgz", ++ "integrity": "sha512-KFrImXx5TKIi6iQXlnyLEBl4rNosNKbTeRnr70ucTdUaciVmd9qK9d/pZAaKt1Ob/8xNnX2GMp8LisyHdKtEgw==" ++ }, ++ "node_modules/@jridgewell/gen-mapping": { ++ "version": "0.3.5", ++ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", ++ "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", ++ "dependencies": { ++ "@jridgewell/set-array": "^1.2.1", ++ "@jridgewell/sourcemap-codec": "^1.4.10", ++ "@jridgewell/trace-mapping": "^0.3.24" ++ }, ++ "engines": { ++ "node": ">=6.0.0" ++ } ++ }, ++ "node_modules/@jridgewell/resolve-uri": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", ++ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", ++ "engines": { ++ "node": ">=6.0.0" ++ } ++ }, ++ "node_modules/@jridgewell/set-array": { ++ "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", ++ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", ++ "engines": { ++ "node": ">=6.0.0" ++ } ++ }, ++ "node_modules/@jridgewell/source-map": { ++ "version": "0.3.6", ++ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", ++ "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", ++ "dependencies": { ++ "@jridgewell/gen-mapping": "^0.3.5", ++ "@jridgewell/trace-mapping": "^0.3.25" ++ } ++ }, ++ "node_modules/@jridgewell/sourcemap-codec": { ++ "version": "1.5.0", ++ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", ++ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" ++ }, ++ "node_modules/@jridgewell/trace-mapping": { ++ "version": "0.3.25", ++ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", ++ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", ++ "dependencies": { ++ "@jridgewell/resolve-uri": "^3.1.0", ++ "@jridgewell/sourcemap-codec": "^1.4.14" ++ } ++ }, ++ "node_modules/@leichtgewicht/ip-codec": { ++ "version": "2.0.5", ++ "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", ++ "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", ++ "dev": true ++ }, ++ "node_modules/@malept/cross-spawn-promise": { ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", ++ "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "dev": true, +- "license": "MIT", ++ "funding": [ ++ { ++ "type": "individual", ++ "url": "https://github.com/sponsors/malept" ++ }, ++ { ++ "type": "tidelift", ++ "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" ++ } ++ ], + "dependencies": { +- "@electron/asar": "^3.2.1", +- "@malept/cross-spawn-promise": "^1.1.0", +- "debug": "^4.3.1", +- "dir-compare": "^3.0.0", +- "fs-extra": "^9.0.1", +- "minimatch": "^3.0.4", +- "plist": "^3.0.4" ++ "cross-spawn": "^7.0.1" + }, + "engines": { +- "node": ">=8.6" ++ "node": ">= 10" + } + }, +- "node_modules/@electron/universal/node_modules/brace-expansion": { +- "version": "1.1.11", ++ "node_modules/@malept/flatpak-bundler": { ++ "version": "0.4.0", ++ "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", ++ "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" ++ "debug": "^4.1.1", ++ "fs-extra": "^9.0.0", ++ "lodash": "^4.17.15", ++ "tmp-promise": "^3.0.2" ++ }, ++ "engines": { ++ "node": ">= 10.0.0" + } + }, +- "node_modules/@electron/universal/node_modules/fs-extra": { ++ "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { + "version": "9.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", ++ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", +@@ -2958,10 +3043,11 @@ + "node": ">=10" + } + }, +- "node_modules/@electron/universal/node_modules/jsonfile": { ++ "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, +@@ -2969,1077 +3055,1587 @@ + "graceful-fs": "^4.1.6" + } + }, +- "node_modules/@electron/universal/node_modules/minimatch": { +- "version": "3.1.2", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "brace-expansion": "^1.1.7" +- }, +- "engines": { +- "node": "*" +- } +- }, +- "node_modules/@electron/universal/node_modules/universalify": { ++ "node_modules/@malept/flatpak-bundler/node_modules/universalify": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, +- "node_modules/@eslint/eslintrc": { +- "version": "0.4.3", ++ "node_modules/@mdi/js": { ++ "version": "7.2.96", ++ "resolved": "https://registry.npmjs.org/@mdi/js/-/js-7.2.96.tgz", ++ "integrity": "sha512-paR9M9ZT7rKbh2boksNUynuSZMHhqRYnEZOm/KrZTjQ4/FzyhjLHuvw/8XYzP+E7fS4+/Ms/82EN1pl/OFsiIA==" ++ }, ++ "node_modules/@nodelib/fs.scandir": { ++ "version": "2.1.5", ++ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", ++ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "ajv": "^6.12.4", +- "debug": "^4.1.1", +- "espree": "^7.3.0", +- "globals": "^13.9.0", +- "ignore": "^4.0.6", +- "import-fresh": "^3.2.1", +- "js-yaml": "^3.13.1", +- "minimatch": "^3.0.4", +- "strip-json-comments": "^3.1.1" ++ "@nodelib/fs.stat": "2.0.5", ++ "run-parallel": "^1.1.9" + }, + "engines": { +- "node": "^10.12.0 || >=12.0.0" +- } +- }, +- "node_modules/@eslint/eslintrc/node_modules/argparse": { +- "version": "1.0.10", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "sprintf-js": "~1.0.2" ++ "node": ">= 8" + } + }, +- "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { +- "version": "1.1.11", ++ "node_modules/@nodelib/fs.stat": { ++ "version": "2.0.5", ++ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", ++ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" ++ "engines": { ++ "node": ">= 8" + } + }, +- "node_modules/@eslint/eslintrc/node_modules/globals": { +- "version": "13.23.0", ++ "node_modules/@nodelib/fs.walk": { ++ "version": "1.2.8", ++ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", ++ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "type-fest": "^0.20.2" ++ "@nodelib/fs.scandir": "2.1.5", ++ "fastq": "^1.6.0" + }, + "engines": { +- "node": ">=8" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">= 8" + } + }, +- "node_modules/@eslint/eslintrc/node_modules/ignore": { +- "version": "4.0.6", ++ "node_modules/@pkgjs/parseargs": { ++ "version": "0.11.0", ++ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", ++ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, +- "license": "MIT", ++ "optional": true, + "engines": { +- "node": ">= 4" ++ "node": ">=14" + } + }, +- "node_modules/@eslint/eslintrc/node_modules/js-yaml": { +- "version": "3.14.1", ++ "node_modules/@playwright/test": { ++ "version": "1.28.1", ++ "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.28.1.tgz", ++ "integrity": "sha512-xN6spdqrNlwSn9KabIhqfZR7IWjPpFK1835tFNgjrlysaSezuX8PYUwaz38V/yI8TJLG9PkAMEXoHRXYXlpTPQ==", ++ "deprecated": "Please update to the latest version of Playwright to test up-to-date browsers.", + "dev": true, +- "license": "MIT", + "dependencies": { +- "argparse": "^1.0.7", +- "esprima": "^4.0.0" ++ "@types/node": "*", ++ "playwright-core": "1.28.1" + }, + "bin": { +- "js-yaml": "bin/js-yaml.js" +- } +- }, +- "node_modules/@eslint/eslintrc/node_modules/minimatch": { +- "version": "3.1.2", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "brace-expansion": "^1.1.7" ++ "playwright": "cli.js" + }, + "engines": { +- "node": "*" ++ "node": ">=14" + } + }, +- "node_modules/@eslint/eslintrc/node_modules/sprintf-js": { +- "version": "1.0.3", +- "dev": true, +- "license": "BSD-3-Clause" +- }, +- "node_modules/@eslint/eslintrc/node_modules/type-fest": { +- "version": "0.20.2", +- "dev": true, +- "license": "(MIT OR CC0-1.0)", ++ "node_modules/@sindresorhus/is": { ++ "version": "4.6.0", ++ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", ++ "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "engines": { + "node": ">=10" + }, + "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, +- "node_modules/@fabio286/ssh2-promise": { +- "version": "1.0.4b", +- "license": "MIT", ++ "node_modules/@szmarczak/http-timer": { ++ "version": "4.0.6", ++ "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", ++ "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dependencies": { +- "@heroku/socksv5": "^0.0.9", +- "ssh2": "~1.14.0" ++ "defer-to-connect": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=10" + } + }, +- "node_modules/@faker-js/faker": { +- "version": "6.1.2", +- "license": "MIT", ++ "node_modules/@tootallnate/once": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", ++ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", ++ "dev": true, + "engines": { +- "node": ">=14.0.0", +- "npm": ">=6.0.0" ++ "node": ">= 10" + } + }, +- "node_modules/@floating-ui/core": { +- "version": "1.5.0", +- "license": "MIT", +- "dependencies": { +- "@floating-ui/utils": "^0.1.3" +- } ++ "node_modules/@tsconfig/node10": { ++ "version": "1.0.11", ++ "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", ++ "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", ++ "dev": true + }, +- "node_modules/@floating-ui/dom": { +- "version": "1.1.1", +- "license": "MIT", +- "dependencies": { +- "@floating-ui/core": "^1.1.0" +- } ++ "node_modules/@tsconfig/node12": { ++ "version": "1.0.11", ++ "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", ++ "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", ++ "dev": true + }, +- "node_modules/@floating-ui/utils": { +- "version": "0.1.6", +- "license": "MIT" ++ "node_modules/@tsconfig/node14": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", ++ "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", ++ "dev": true + }, +- "node_modules/@heroku/socksv5": { +- "version": "0.0.9", +- "license": "MIT", +- "dependencies": { +- "ip-address": "^5.8.8" +- }, +- "engines": { +- "node": ">=0.10.0" +- } ++ "node_modules/@tsconfig/node16": { ++ "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", ++ "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", ++ "dev": true + }, +- "node_modules/@humanwhocodes/config-array": { +- "version": "0.5.0", +- "dev": true, +- "license": "Apache-2.0", +- "dependencies": { +- "@humanwhocodes/object-schema": "^1.2.0", +- "debug": "^4.1.1", +- "minimatch": "^3.0.4" +- }, +- "engines": { +- "node": ">=10.10.0" ++ "node_modules/@turf/helpers": { ++ "version": "6.5.0", ++ "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", ++ "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", ++ "funding": { ++ "url": "https://opencollective.com/turf" + } + }, +- "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { +- "version": "1.1.11", ++ "node_modules/@types/better-sqlite3": { ++ "version": "7.5.0", ++ "resolved": "https://registry.npmjs.org/@types/better-sqlite3/-/better-sqlite3-7.5.0.tgz", ++ "integrity": "sha512-G9ZbMjydW2yj1AgiPlUtdgF3a1qNpLJLudc9ynJCeJByS3XFWpmT9LT+VSHrKHFbxb31CvtYwetLTOvG9zdxdg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" ++ "@types/node": "*" + } + }, +- "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { +- "version": "3.1.2", ++ "node_modules/@types/body-parser": { ++ "version": "1.19.5", ++ "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", ++ "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "brace-expansion": "^1.1.7" +- }, +- "engines": { +- "node": "*" ++ "@types/connect": "*", ++ "@types/node": "*" + } + }, +- "node_modules/@humanwhocodes/object-schema": { +- "version": "1.2.1", +- "dev": true, +- "license": "BSD-3-Clause" +- }, +- "node_modules/@hutson/parse-repository-url": { +- "version": "3.0.2", ++ "node_modules/@types/bonjour": { ++ "version": "3.5.13", ++ "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", ++ "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "dev": true, +- "license": "Apache-2.0", +- "engines": { +- "node": ">=6.9.0" +- } +- }, +- "node_modules/@intlify/core-base": { +- "version": "9.13.1", +- "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.13.1.tgz", +- "integrity": "sha512-+bcQRkJO9pcX8d0gel9ZNfrzU22sZFSA0WVhfXrf5jdJOS24a+Bp8pozuS9sBI9Hk/tGz83pgKfmqcn/Ci7/8w==", + "dependencies": { +- "@intlify/message-compiler": "9.13.1", +- "@intlify/shared": "9.13.1" +- }, +- "engines": { +- "node": ">= 16" +- }, +- "funding": { +- "url": "https://github.com/sponsors/kazupon" ++ "@types/node": "*" + } + }, +- "node_modules/@intlify/message-compiler": { +- "version": "9.13.1", +- "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.13.1.tgz", +- "integrity": "sha512-SKsVa4ajYGBVm7sHMXd5qX70O2XXjm55zdZB3VeMFCvQyvLew/dLvq3MqnaIsTMF1VkkOb9Ttr6tHcMlyPDL9w==", ++ "node_modules/@types/cacheable-request": { ++ "version": "6.0.3", ++ "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", ++ "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dependencies": { +- "@intlify/shared": "9.13.1", +- "source-map-js": "^1.0.2" +- }, +- "engines": { +- "node": ">= 16" +- }, +- "funding": { +- "url": "https://github.com/sponsors/kazupon" ++ "@types/http-cache-semantics": "*", ++ "@types/keyv": "^3.1.4", ++ "@types/node": "*", ++ "@types/responselike": "^1.0.0" + } + }, +- "node_modules/@intlify/shared": { +- "version": "9.13.1", +- "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.13.1.tgz", +- "integrity": "sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==", +- "engines": { +- "node": ">= 16" +- }, +- "funding": { +- "url": "https://github.com/sponsors/kazupon" ++ "node_modules/@types/connect": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", ++ "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", ++ "dev": true, ++ "dependencies": { ++ "@types/node": "*" + } + }, +- "node_modules/@isaacs/cliui": { +- "version": "8.0.2", ++ "node_modules/@types/connect-history-api-fallback": { ++ "version": "1.5.4", ++ "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", ++ "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "string-width": "^5.1.2", +- "string-width-cjs": "npm:string-width@^4.2.0", +- "strip-ansi": "^7.0.1", +- "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", +- "wrap-ansi": "^8.1.0", +- "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" +- }, +- "engines": { +- "node": ">=12" ++ "@types/express-serve-static-core": "*", ++ "@types/node": "*" + } + }, +- "node_modules/@isaacs/cliui/node_modules/ansi-regex": { +- "version": "6.0.1", ++ "node_modules/@types/conventional-commits-parser": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", ++ "integrity": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/chalk/ansi-regex?sponsor=1" ++ "dependencies": { ++ "@types/node": "*" + } + }, +- "node_modules/@isaacs/cliui/node_modules/ansi-styles": { +- "version": "6.2.1", ++ "node_modules/@types/debug": { ++ "version": "4.1.12", ++ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", ++ "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/chalk/ansi-styles?sponsor=1" ++ "dependencies": { ++ "@types/ms": "*" + } + }, +- "node_modules/@isaacs/cliui/node_modules/emoji-regex": { +- "version": "9.2.2", +- "dev": true, +- "license": "MIT" ++ "node_modules/@types/estree": { ++ "version": "1.0.5", ++ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", ++ "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + }, +- "node_modules/@isaacs/cliui/node_modules/string-width": { +- "version": "5.1.2", ++ "node_modules/@types/express": { ++ "version": "4.17.21", ++ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", ++ "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "eastasianwidth": "^0.2.0", +- "emoji-regex": "^9.2.2", +- "strip-ansi": "^7.0.1" +- }, +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "@types/body-parser": "*", ++ "@types/express-serve-static-core": "^4.17.33", ++ "@types/qs": "*", ++ "@types/serve-static": "*" + } + }, +- "node_modules/@isaacs/cliui/node_modules/strip-ansi": { +- "version": "7.1.0", ++ "node_modules/@types/express-serve-static-core": { ++ "version": "4.19.5", ++ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz", ++ "integrity": "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "ansi-regex": "^6.0.1" +- }, +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/chalk/strip-ansi?sponsor=1" ++ "@types/node": "*", ++ "@types/qs": "*", ++ "@types/range-parser": "*", ++ "@types/send": "*" + } + }, +- "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { +- "version": "8.1.0", ++ "node_modules/@types/fs-extra": { ++ "version": "9.0.13", ++ "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", ++ "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "ansi-styles": "^6.1.0", +- "string-width": "^5.0.1", +- "strip-ansi": "^7.0.1" +- }, +- "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/chalk/wrap-ansi?sponsor=1" ++ "@types/node": "*" + } + }, +- "node_modules/@jamescoyle/vue-icon": { +- "version": "0.1.2", +- "license": "MIT" ++ "node_modules/@types/geojson": { ++ "version": "7946.0.14", ++ "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", ++ "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==", ++ "dev": true + }, +- "node_modules/@jridgewell/gen-mapping": { +- "version": "0.3.3", +- "license": "MIT", ++ "node_modules/@types/html-minifier-terser": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", ++ "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" ++ }, ++ "node_modules/@types/http-cache-semantics": { ++ "version": "4.0.4", ++ "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", ++ "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" ++ }, ++ "node_modules/@types/http-errors": { ++ "version": "2.0.4", ++ "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", ++ "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", ++ "dev": true ++ }, ++ "node_modules/@types/http-proxy": { ++ "version": "1.17.15", ++ "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", ++ "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", ++ "dev": true, + "dependencies": { +- "@jridgewell/set-array": "^1.0.1", +- "@jridgewell/sourcemap-codec": "^1.4.10", +- "@jridgewell/trace-mapping": "^0.3.9" +- }, +- "engines": { +- "node": ">=6.0.0" ++ "@types/node": "*" + } + }, +- "node_modules/@jridgewell/resolve-uri": { +- "version": "3.1.1", +- "license": "MIT", +- "engines": { +- "node": ">=6.0.0" +- } ++ "node_modules/@types/json-schema": { ++ "version": "7.0.15", ++ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", ++ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, +- "node_modules/@jridgewell/set-array": { +- "version": "1.1.2", +- "license": "MIT", +- "engines": { +- "node": ">=6.0.0" +- } ++ "node_modules/@types/json5": { ++ "version": "0.0.29", ++ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", ++ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", ++ "dev": true + }, +- "node_modules/@jridgewell/source-map": { +- "version": "0.3.5", +- "license": "MIT", ++ "node_modules/@types/keyv": { ++ "version": "3.1.4", ++ "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", ++ "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dependencies": { +- "@jridgewell/gen-mapping": "^0.3.0", +- "@jridgewell/trace-mapping": "^0.3.9" ++ "@types/node": "*" + } + }, +- "node_modules/@jridgewell/sourcemap-codec": { +- "version": "1.4.15", +- "license": "MIT" +- }, +- "node_modules/@jridgewell/trace-mapping": { +- "version": "0.3.20", +- "license": "MIT", ++ "node_modules/@types/leaflet": { ++ "version": "1.7.11", ++ "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.7.11.tgz", ++ "integrity": "sha512-VwAYom2pfIAf/pLj1VR5aLltd4tOtHyvfaJlNYCoejzP2nu52PrMi1ehsLRMUS+bgafmIIKBV1cMfKeS+uJ0Vg==", ++ "dev": true, + "dependencies": { +- "@jridgewell/resolve-uri": "^3.1.0", +- "@jridgewell/sourcemap-codec": "^1.4.14" ++ "@types/geojson": "*" + } + }, +- "node_modules/@leichtgewicht/ip-codec": { +- "version": "2.0.4", +- "dev": true, +- "license": "MIT" ++ "node_modules/@types/marked": { ++ "version": "4.0.8", ++ "resolved": "https://registry.npmjs.org/@types/marked/-/marked-4.0.8.tgz", ++ "integrity": "sha512-HVNzMT5QlWCOdeuBsgXP8EZzKUf0+AXzN+sLmjvaB3ZlLqO+e4u0uXrdw9ub69wBKFs+c6/pA4r9sy6cCDvImw==", ++ "dev": true + }, +- "node_modules/@malept/cross-spawn-promise": { +- "version": "1.1.1", +- "dev": true, +- "funding": [ +- { +- "type": "individual", +- "url": "https://github.com/sponsors/malept" +- }, +- { +- "type": "tidelift", +- "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" +- } +- ], +- "license": "Apache-2.0", +- "dependencies": { +- "cross-spawn": "^7.0.1" +- }, +- "engines": { +- "node": ">= 10" +- } ++ "node_modules/@types/mime": { ++ "version": "1.3.5", ++ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", ++ "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", ++ "dev": true + }, +- "node_modules/@malept/flatpak-bundler": { +- "version": "0.4.0", ++ "node_modules/@types/minimist": { ++ "version": "1.2.5", ++ "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", ++ "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", ++ "dev": true ++ }, ++ "node_modules/@types/ms": { ++ "version": "0.7.34", ++ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", ++ "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", ++ "dev": true ++ }, ++ "node_modules/@types/node": { ++ "version": "17.0.45", ++ "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", ++ "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==" ++ }, ++ "node_modules/@types/node-forge": { ++ "version": "1.3.11", ++ "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", ++ "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "debug": "^4.1.1", +- "fs-extra": "^9.0.0", +- "lodash": "^4.17.15", +- "tmp-promise": "^3.0.2" +- }, +- "engines": { +- "node": ">= 10.0.0" ++ "@types/node": "*" + } + }, +- "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { +- "version": "9.1.0", ++ "node_modules/@types/normalize-package-data": { ++ "version": "2.4.4", ++ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", ++ "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", ++ "dev": true ++ }, ++ "node_modules/@types/pg": { ++ "version": "8.6.6", ++ "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.6.6.tgz", ++ "integrity": "sha512-O2xNmXebtwVekJDD+02udOncjVcMZQuTEQEMpKJ0ZRf5E7/9JJX3izhKUcUifBkyKpljyUM6BTgy2trmviKlpw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "at-least-node": "^1.0.0", +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- }, +- "engines": { +- "node": ">=10" ++ "@types/node": "*", ++ "pg-protocol": "*", ++ "pg-types": "^2.2.0" + } + }, +- "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { +- "version": "6.1.0", ++ "node_modules/@types/plist": { ++ "version": "3.0.5", ++ "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.5.tgz", ++ "integrity": "sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==", + "dev": true, +- "license": "MIT", ++ "optional": true, + "dependencies": { +- "universalify": "^2.0.0" +- }, +- "optionalDependencies": { +- "graceful-fs": "^4.1.6" ++ "@types/node": "*", ++ "xmlbuilder": ">=11.0.1" + } + }, +- "node_modules/@malept/flatpak-bundler/node_modules/universalify": { +- "version": "2.0.1", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">= 10.0.0" +- } ++ "node_modules/@types/qs": { ++ "version": "6.9.15", ++ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", ++ "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", ++ "dev": true + }, +- "node_modules/@mdi/js": { +- "version": "7.2.96", +- "license": "Apache-2.0" ++ "node_modules/@types/range-parser": { ++ "version": "1.2.7", ++ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", ++ "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", ++ "dev": true + }, +- "node_modules/@nodelib/fs.scandir": { +- "version": "2.1.5", +- "dev": true, +- "license": "MIT", ++ "node_modules/@types/responselike": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", ++ "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "dependencies": { +- "@nodelib/fs.stat": "2.0.5", +- "run-parallel": "^1.1.9" +- }, +- "engines": { +- "node": ">= 8" ++ "@types/node": "*" + } + }, +- "node_modules/@nodelib/fs.stat": { +- "version": "2.0.5", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">= 8" +- } ++ "node_modules/@types/retry": { ++ "version": "0.12.0", ++ "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", ++ "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", ++ "dev": true + }, +- "node_modules/@nodelib/fs.walk": { +- "version": "1.2.8", ++ "node_modules/@types/semver": { ++ "version": "7.5.8", ++ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", ++ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==" ++ }, ++ "node_modules/@types/send": { ++ "version": "0.17.4", ++ "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", ++ "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@nodelib/fs.scandir": "2.1.5", +- "fastq": "^1.6.0" +- }, +- "engines": { +- "node": ">= 8" ++ "@types/mime": "^1", ++ "@types/node": "*" + } + }, +- "node_modules/@pkgjs/parseargs": { +- "version": "0.11.0", ++ "node_modules/@types/serve-index": { ++ "version": "1.9.4", ++ "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", ++ "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "dev": true, +- "license": "MIT", +- "optional": true, +- "engines": { +- "node": ">=14" ++ "dependencies": { ++ "@types/express": "*" + } + }, +- "node_modules/@playwright/test": { +- "version": "1.28.1", ++ "node_modules/@types/serve-static": { ++ "version": "1.15.7", ++ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", ++ "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { ++ "@types/http-errors": "*", + "@types/node": "*", +- "playwright-core": "1.28.1" +- }, +- "bin": { +- "playwright": "cli.js" +- }, +- "engines": { +- "node": ">=14" +- } +- }, +- "node_modules/@sindresorhus/is": { +- "version": "4.6.0", +- "license": "MIT", +- "engines": { +- "node": ">=10" +- }, +- "funding": { +- "url": "https://github.com/sindresorhus/is?sponsor=1" ++ "@types/send": "*" + } + }, +- "node_modules/@szmarczak/http-timer": { +- "version": "4.0.6", +- "license": "MIT", ++ "node_modules/@types/sockjs": { ++ "version": "0.3.36", ++ "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", ++ "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", ++ "dev": true, + "dependencies": { +- "defer-to-connect": "^2.0.0" +- }, +- "engines": { +- "node": ">=10" ++ "@types/node": "*" + } + }, +- "node_modules/@tootallnate/once": { +- "version": "2.0.0", ++ "node_modules/@types/ssh2": { ++ "version": "1.11.19", ++ "resolved": "https://registry.npmjs.org/@types/ssh2/-/ssh2-1.11.19.tgz", ++ "integrity": "sha512-ydbQAqEcdNVy2t1w7dMh6eWMr+iOgtEkqM/3K9RMijMaok/ER7L8GW6PwsOypHCN++M+c8S/UR9SgMqNIFstbA==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">= 10" ++ "dependencies": { ++ "@types/node": "^18.11.18" + } + }, +- "node_modules/@tsconfig/node10": { +- "version": "1.0.9", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@tsconfig/node12": { +- "version": "1.0.11", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@tsconfig/node14": { +- "version": "1.0.3", ++ "node_modules/@types/ssh2/node_modules/@types/node": { ++ "version": "18.19.46", ++ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.46.tgz", ++ "integrity": "sha512-vnRgMS7W6cKa1/0G3/DTtQYpVrZ8c0Xm6UkLaVFrb9jtcVC3okokW09Ki1Qdrj9ISokszD69nY4WDLRlvHlhAA==", + "dev": true, +- "license": "MIT" ++ "dependencies": { ++ "undici-types": "~5.26.4" ++ } + }, +- "node_modules/@tsconfig/node16": { +- "version": "1.0.4", ++ "node_modules/@types/verror": { ++ "version": "1.10.10", ++ "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.10.tgz", ++ "integrity": "sha512-l4MM0Jppn18hb9xmM6wwD1uTdShpf9Pn80aXTStnK1C94gtPvJcV2FrDmbOQUAQfJ1cKZHktkQUDwEqaAKXMMg==", + "dev": true, +- "license": "MIT" ++ "optional": true + }, +- "node_modules/@turf/helpers": { +- "version": "6.5.0", +- "license": "MIT", +- "funding": { +- "url": "https://opencollective.com/turf" +- } ++ "node_modules/@types/web-bluetooth": { ++ "version": "0.0.17", ++ "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz", ++ "integrity": "sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA==" + }, +- "node_modules/@types/better-sqlite3": { +- "version": "7.5.0", ++ "node_modules/@types/ws": { ++ "version": "8.5.12", ++ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz", ++ "integrity": "sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, +- "node_modules/@types/body-parser": { +- "version": "1.19.5", +- "dev": true, +- "license": "MIT", ++ "node_modules/@types/yauzl": { ++ "version": "2.10.3", ++ "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", ++ "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", ++ "optional": true, + "dependencies": { +- "@types/connect": "*", + "@types/node": "*" + } + }, +- "node_modules/@types/bonjour": { +- "version": "3.5.13", ++ "node_modules/@typescript-eslint/eslint-plugin": { ++ "version": "5.18.0", ++ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.18.0.tgz", ++ "integrity": "sha512-tzrmdGMJI/uii9/V6lurMo4/o+dMTKDH82LkNjhJ3adCW22YQydoRs5MwTiqxGF9CSYxPxQ7EYb4jLNlIs+E+A==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/node": "*" +- } +- }, +- "node_modules/@types/cacheable-request": { +- "version": "6.0.3", +- "license": "MIT", ++ "@typescript-eslint/scope-manager": "5.18.0", ++ "@typescript-eslint/type-utils": "5.18.0", ++ "@typescript-eslint/utils": "5.18.0", ++ "debug": "^4.3.2", ++ "functional-red-black-tree": "^1.0.1", ++ "ignore": "^5.1.8", ++ "regexpp": "^3.2.0", ++ "semver": "^7.3.5", ++ "tsutils": "^3.21.0" ++ }, ++ "engines": { ++ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/typescript-eslint" ++ }, ++ "peerDependencies": { ++ "@typescript-eslint/parser": "^5.0.0", ++ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ }, ++ "peerDependenciesMeta": { ++ "typescript": { ++ "optional": true ++ } ++ } ++ }, ++ "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "dev": true, ++ "bin": { ++ "semver": "bin/semver.js" ++ }, ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/@typescript-eslint/parser": { ++ "version": "5.18.0", ++ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.18.0.tgz", ++ "integrity": "sha512-+08nYfurBzSSPndngnHvFw/fniWYJ5ymOrn/63oMIbgomVQOvIDhBoJmYZ9lwQOCnQV9xHGvf88ze3jFGUYooQ==", ++ "dev": true, + "dependencies": { +- "@types/http-cache-semantics": "*", +- "@types/keyv": "^3.1.4", +- "@types/node": "*", +- "@types/responselike": "^1.0.0" ++ "@typescript-eslint/scope-manager": "5.18.0", ++ "@typescript-eslint/types": "5.18.0", ++ "@typescript-eslint/typescript-estree": "5.18.0", ++ "debug": "^4.3.2" ++ }, ++ "engines": { ++ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/typescript-eslint" ++ }, ++ "peerDependencies": { ++ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ }, ++ "peerDependenciesMeta": { ++ "typescript": { ++ "optional": true ++ } + } + }, +- "node_modules/@types/connect": { +- "version": "3.4.38", ++ "node_modules/@typescript-eslint/scope-manager": { ++ "version": "5.18.0", ++ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.18.0.tgz", ++ "integrity": "sha512-C0CZML6NyRDj+ZbMqh9FnPscg2PrzSaVQg3IpTmpe0NURMVBXlghGZgMYqBw07YW73i0MCqSDqv2SbywnCS8jQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/node": "*" ++ "@typescript-eslint/types": "5.18.0", ++ "@typescript-eslint/visitor-keys": "5.18.0" ++ }, ++ "engines": { ++ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/typescript-eslint" ++ } ++ }, ++ "node_modules/@typescript-eslint/type-utils": { ++ "version": "5.18.0", ++ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.18.0.tgz", ++ "integrity": "sha512-vcn9/6J5D6jtHxpEJrgK8FhaM8r6J1/ZiNu70ZUJN554Y3D9t3iovi6u7JF8l/e7FcBIxeuTEidZDR70UuCIfA==", ++ "dev": true, ++ "dependencies": { ++ "@typescript-eslint/utils": "5.18.0", ++ "debug": "^4.3.2", ++ "tsutils": "^3.21.0" ++ }, ++ "engines": { ++ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/typescript-eslint" ++ }, ++ "peerDependencies": { ++ "eslint": "*" ++ }, ++ "peerDependenciesMeta": { ++ "typescript": { ++ "optional": true ++ } ++ } ++ }, ++ "node_modules/@typescript-eslint/types": { ++ "version": "5.18.0", ++ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.18.0.tgz", ++ "integrity": "sha512-bhV1+XjM+9bHMTmXi46p1Led5NP6iqQcsOxgx7fvk6gGiV48c6IynY0apQb7693twJDsXiVzNXTflhplmaiJaw==", ++ "dev": true, ++ "engines": { ++ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/typescript-eslint" ++ } ++ }, ++ "node_modules/@typescript-eslint/typescript-estree": { ++ "version": "5.18.0", ++ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.18.0.tgz", ++ "integrity": "sha512-wa+2VAhOPpZs1bVij9e5gyVu60ReMi/KuOx4LKjGx2Y3XTNUDJgQ+5f77D49pHtqef/klglf+mibuHs9TrPxdQ==", ++ "dev": true, ++ "dependencies": { ++ "@typescript-eslint/types": "5.18.0", ++ "@typescript-eslint/visitor-keys": "5.18.0", ++ "debug": "^4.3.2", ++ "globby": "^11.0.4", ++ "is-glob": "^4.0.3", ++ "semver": "^7.3.5", ++ "tsutils": "^3.21.0" ++ }, ++ "engines": { ++ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/typescript-eslint" ++ }, ++ "peerDependenciesMeta": { ++ "typescript": { ++ "optional": true ++ } ++ } ++ }, ++ "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "dev": true, ++ "bin": { ++ "semver": "bin/semver.js" ++ }, ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/@typescript-eslint/utils": { ++ "version": "5.18.0", ++ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.18.0.tgz", ++ "integrity": "sha512-+hFGWUMMri7OFY26TsOlGa+zgjEy1ssEipxpLjtl4wSll8zy85x0GrUSju/FHdKfVorZPYJLkF3I4XPtnCTewA==", ++ "dev": true, ++ "dependencies": { ++ "@types/json-schema": "^7.0.9", ++ "@typescript-eslint/scope-manager": "5.18.0", ++ "@typescript-eslint/types": "5.18.0", ++ "@typescript-eslint/typescript-estree": "5.18.0", ++ "eslint-scope": "^5.1.1", ++ "eslint-utils": "^3.0.0" ++ }, ++ "engines": { ++ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/typescript-eslint" ++ }, ++ "peerDependencies": { ++ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ } ++ }, ++ "node_modules/@typescript-eslint/visitor-keys": { ++ "version": "5.18.0", ++ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.18.0.tgz", ++ "integrity": "sha512-Hf+t+dJsjAKpKSkg3EHvbtEpFFb/1CiOHnvI8bjHgOD4/wAw3gKrA0i94LrbekypiZVanJu3McWJg7rWDMzRTg==", ++ "dev": true, ++ "dependencies": { ++ "@typescript-eslint/types": "5.18.0", ++ "eslint-visitor-keys": "^3.0.0" ++ }, ++ "engines": { ++ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/typescript-eslint" ++ } ++ }, ++ "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { ++ "version": "3.4.3", ++ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", ++ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", ++ "dev": true, ++ "engines": { ++ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "funding": { ++ "url": "https://opencollective.com/eslint" ++ } ++ }, ++ "node_modules/@vue/compiler-core": { ++ "version": "3.2.47", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.47.tgz", ++ "integrity": "sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==", ++ "dependencies": { ++ "@babel/parser": "^7.16.4", ++ "@vue/shared": "3.2.47", ++ "estree-walker": "^2.0.2", ++ "source-map": "^0.6.1" ++ } ++ }, ++ "node_modules/@vue/compiler-dom": { ++ "version": "3.2.47", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz", ++ "integrity": "sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==", ++ "dependencies": { ++ "@vue/compiler-core": "3.2.47", ++ "@vue/shared": "3.2.47" ++ } ++ }, ++ "node_modules/@vue/compiler-sfc": { ++ "version": "3.2.47", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz", ++ "integrity": "sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==", ++ "dependencies": { ++ "@babel/parser": "^7.16.4", ++ "@vue/compiler-core": "3.2.47", ++ "@vue/compiler-dom": "3.2.47", ++ "@vue/compiler-ssr": "3.2.47", ++ "@vue/reactivity-transform": "3.2.47", ++ "@vue/shared": "3.2.47", ++ "estree-walker": "^2.0.2", ++ "magic-string": "^0.25.7", ++ "postcss": "^8.1.10", ++ "source-map": "^0.6.1" ++ } ++ }, ++ "node_modules/@vue/compiler-ssr": { ++ "version": "3.2.47", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.47.tgz", ++ "integrity": "sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==", ++ "dependencies": { ++ "@vue/compiler-dom": "3.2.47", ++ "@vue/shared": "3.2.47" ++ } ++ }, ++ "node_modules/@vue/devtools-api": { ++ "version": "6.6.3", ++ "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.3.tgz", ++ "integrity": "sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==" ++ }, ++ "node_modules/@vue/reactivity": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.38.tgz", ++ "integrity": "sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==", ++ "dependencies": { ++ "@vue/shared": "3.4.38" ++ } ++ }, ++ "node_modules/@vue/reactivity-transform": { ++ "version": "3.2.47", ++ "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.47.tgz", ++ "integrity": "sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==", ++ "dependencies": { ++ "@babel/parser": "^7.16.4", ++ "@vue/compiler-core": "3.2.47", ++ "@vue/shared": "3.2.47", ++ "estree-walker": "^2.0.2", ++ "magic-string": "^0.25.7" ++ } ++ }, ++ "node_modules/@vue/reactivity/node_modules/@vue/shared": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" ++ }, ++ "node_modules/@vue/runtime-core": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.38.tgz", ++ "integrity": "sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==", ++ "dependencies": { ++ "@vue/reactivity": "3.4.38", ++ "@vue/shared": "3.4.38" ++ } ++ }, ++ "node_modules/@vue/runtime-core/node_modules/@vue/shared": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" ++ }, ++ "node_modules/@vue/runtime-dom": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.38.tgz", ++ "integrity": "sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==", ++ "dependencies": { ++ "@vue/reactivity": "3.4.38", ++ "@vue/runtime-core": "3.4.38", ++ "@vue/shared": "3.4.38", ++ "csstype": "^3.1.3" ++ } ++ }, ++ "node_modules/@vue/runtime-dom/node_modules/@vue/shared": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" ++ }, ++ "node_modules/@vue/server-renderer": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.38.tgz", ++ "integrity": "sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==", ++ "dependencies": { ++ "@vue/compiler-ssr": "3.4.38", ++ "@vue/shared": "3.4.38" ++ }, ++ "peerDependencies": { ++ "vue": "3.4.38" ++ } ++ }, ++ "node_modules/@vue/server-renderer/node_modules/@vue/compiler-core": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.38.tgz", ++ "integrity": "sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==", ++ "dependencies": { ++ "@babel/parser": "^7.24.7", ++ "@vue/shared": "3.4.38", ++ "entities": "^4.5.0", ++ "estree-walker": "^2.0.2", ++ "source-map-js": "^1.2.0" ++ } ++ }, ++ "node_modules/@vue/server-renderer/node_modules/@vue/compiler-dom": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.38.tgz", ++ "integrity": "sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==", ++ "dependencies": { ++ "@vue/compiler-core": "3.4.38", ++ "@vue/shared": "3.4.38" ++ } ++ }, ++ "node_modules/@vue/server-renderer/node_modules/@vue/compiler-ssr": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.38.tgz", ++ "integrity": "sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==", ++ "dependencies": { ++ "@vue/compiler-dom": "3.4.38", ++ "@vue/shared": "3.4.38" ++ } ++ }, ++ "node_modules/@vue/server-renderer/node_modules/@vue/shared": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" ++ }, ++ "node_modules/@vue/shared": { ++ "version": "3.2.47", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.47.tgz", ++ "integrity": "sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==" ++ }, ++ "node_modules/@vueuse/core": { ++ "version": "10.4.1", ++ "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.4.1.tgz", ++ "integrity": "sha512-DkHIfMIoSIBjMgRRvdIvxsyboRZQmImofLyOHADqiVbQVilP8VVHDhBX2ZqoItOgu7dWa8oXiNnScOdPLhdEXg==", ++ "dependencies": { ++ "@types/web-bluetooth": "^0.0.17", ++ "@vueuse/metadata": "10.4.1", ++ "@vueuse/shared": "10.4.1", ++ "vue-demi": ">=0.14.5" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" ++ } ++ }, ++ "node_modules/@vueuse/core/node_modules/vue-demi": { ++ "version": "0.14.10", ++ "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", ++ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", ++ "hasInstallScript": true, ++ "bin": { ++ "vue-demi-fix": "bin/vue-demi-fix.js", ++ "vue-demi-switch": "bin/vue-demi-switch.js" ++ }, ++ "engines": { ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" ++ }, ++ "peerDependencies": { ++ "@vue/composition-api": "^1.0.0-rc.1", ++ "vue": "^3.0.0-0 || ^2.6.0" ++ }, ++ "peerDependenciesMeta": { ++ "@vue/composition-api": { ++ "optional": true ++ } ++ } ++ }, ++ "node_modules/@vueuse/metadata": { ++ "version": "10.4.1", ++ "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.4.1.tgz", ++ "integrity": "sha512-2Sc8X+iVzeuMGHr6O2j4gv/zxvQGGOYETYXEc41h0iZXIRnRbJZGmY/QP8dvzqUelf8vg0p/yEA5VpCEu+WpZg==", ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" ++ } ++ }, ++ "node_modules/@vueuse/shared": { ++ "version": "10.4.1", ++ "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.4.1.tgz", ++ "integrity": "sha512-vz5hbAM4qA0lDKmcr2y3pPdU+2EVw/yzfRsBdu+6+USGa4PxqSQRYIUC9/NcT06y+ZgaTsyURw2I9qOFaaXHAg==", ++ "dependencies": { ++ "vue-demi": ">=0.14.5" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" ++ } ++ }, ++ "node_modules/@vueuse/shared/node_modules/vue-demi": { ++ "version": "0.14.10", ++ "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", ++ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", ++ "hasInstallScript": true, ++ "bin": { ++ "vue-demi-fix": "bin/vue-demi-fix.js", ++ "vue-demi-switch": "bin/vue-demi-switch.js" ++ }, ++ "engines": { ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" ++ }, ++ "peerDependencies": { ++ "@vue/composition-api": "^1.0.0-rc.1", ++ "vue": "^3.0.0-0 || ^2.6.0" ++ }, ++ "peerDependenciesMeta": { ++ "@vue/composition-api": { ++ "optional": true ++ } ++ } ++ }, ++ "node_modules/@webassemblyjs/ast": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", ++ "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", ++ "dependencies": { ++ "@webassemblyjs/helper-numbers": "1.11.6", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6" ++ } ++ }, ++ "node_modules/@webassemblyjs/floating-point-hex-parser": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", ++ "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" ++ }, ++ "node_modules/@webassemblyjs/helper-api-error": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", ++ "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" ++ }, ++ "node_modules/@webassemblyjs/helper-buffer": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", ++ "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" ++ }, ++ "node_modules/@webassemblyjs/helper-numbers": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", ++ "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", ++ "dependencies": { ++ "@webassemblyjs/floating-point-hex-parser": "1.11.6", ++ "@webassemblyjs/helper-api-error": "1.11.6", ++ "@xtuc/long": "4.2.2" ++ } ++ }, ++ "node_modules/@webassemblyjs/helper-wasm-bytecode": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", ++ "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" ++ }, ++ "node_modules/@webassemblyjs/helper-wasm-section": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", ++ "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", ++ "dependencies": { ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-buffer": "1.12.1", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", ++ "@webassemblyjs/wasm-gen": "1.12.1" ++ } ++ }, ++ "node_modules/@webassemblyjs/ieee754": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", ++ "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", ++ "dependencies": { ++ "@xtuc/ieee754": "^1.2.0" ++ } ++ }, ++ "node_modules/@webassemblyjs/leb128": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", ++ "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", ++ "dependencies": { ++ "@xtuc/long": "4.2.2" ++ } ++ }, ++ "node_modules/@webassemblyjs/utf8": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", ++ "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" ++ }, ++ "node_modules/@webassemblyjs/wasm-edit": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", ++ "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", ++ "dependencies": { ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-buffer": "1.12.1", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", ++ "@webassemblyjs/helper-wasm-section": "1.12.1", ++ "@webassemblyjs/wasm-gen": "1.12.1", ++ "@webassemblyjs/wasm-opt": "1.12.1", ++ "@webassemblyjs/wasm-parser": "1.12.1", ++ "@webassemblyjs/wast-printer": "1.12.1" + } + }, +- "node_modules/@types/connect-history-api-fallback": { +- "version": "1.5.4", +- "dev": true, +- "license": "MIT", ++ "node_modules/@webassemblyjs/wasm-gen": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", ++ "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "dependencies": { +- "@types/express-serve-static-core": "*", +- "@types/node": "*" ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", ++ "@webassemblyjs/ieee754": "1.11.6", ++ "@webassemblyjs/leb128": "1.11.6", ++ "@webassemblyjs/utf8": "1.11.6" + } + }, +- "node_modules/@types/conventional-commits-parser": { +- "version": "5.0.0", +- "dev": true, +- "license": "MIT", ++ "node_modules/@webassemblyjs/wasm-opt": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", ++ "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "dependencies": { +- "@types/node": "*" ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-buffer": "1.12.1", ++ "@webassemblyjs/wasm-gen": "1.12.1", ++ "@webassemblyjs/wasm-parser": "1.12.1" + } + }, +- "node_modules/@types/debug": { +- "version": "4.1.12", +- "dev": true, +- "license": "MIT", ++ "node_modules/@webassemblyjs/wasm-parser": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", ++ "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "dependencies": { +- "@types/ms": "*" ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-api-error": "1.11.6", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", ++ "@webassemblyjs/ieee754": "1.11.6", ++ "@webassemblyjs/leb128": "1.11.6", ++ "@webassemblyjs/utf8": "1.11.6" + } + }, +- "node_modules/@types/eslint": { +- "version": "8.44.7", +- "license": "MIT", ++ "node_modules/@webassemblyjs/wast-printer": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", ++ "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "dependencies": { +- "@types/estree": "*", +- "@types/json-schema": "*" ++ "@webassemblyjs/ast": "1.12.1", ++ "@xtuc/long": "4.2.2" + } + }, +- "node_modules/@types/eslint-scope": { +- "version": "3.7.7", +- "license": "MIT", +- "dependencies": { +- "@types/eslint": "*", +- "@types/estree": "*" ++ "node_modules/@webpack-cli/configtest": { ++ "version": "1.2.0", ++ "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", ++ "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", ++ "peerDependencies": { ++ "webpack": "4.x.x || 5.x.x", ++ "webpack-cli": "4.x.x" + } + }, +- "node_modules/@types/estree": { +- "version": "1.0.5", +- "license": "MIT" +- }, +- "node_modules/@types/express": { +- "version": "4.17.21", +- "dev": true, +- "license": "MIT", ++ "node_modules/@webpack-cli/info": { ++ "version": "1.5.0", ++ "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", ++ "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", + "dependencies": { +- "@types/body-parser": "*", +- "@types/express-serve-static-core": "^4.17.33", +- "@types/qs": "*", +- "@types/serve-static": "*" ++ "envinfo": "^7.7.3" ++ }, ++ "peerDependencies": { ++ "webpack-cli": "4.x.x" + } + }, +- "node_modules/@types/express-serve-static-core": { +- "version": "4.17.41", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "@types/node": "*", +- "@types/qs": "*", +- "@types/range-parser": "*", +- "@types/send": "*" ++ "node_modules/@webpack-cli/serve": { ++ "version": "1.7.0", ++ "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", ++ "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", ++ "peerDependencies": { ++ "webpack-cli": "4.x.x" ++ }, ++ "peerDependenciesMeta": { ++ "webpack-dev-server": { ++ "optional": true ++ } + } + }, +- "node_modules/@types/fs-extra": { +- "version": "9.0.13", ++ "node_modules/@xmldom/xmldom": { ++ "version": "0.8.10", ++ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", ++ "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@types/node": "*" ++ "engines": { ++ "node": ">=10.0.0" + } + }, +- "node_modules/@types/geojson": { +- "version": "7946.0.13", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@types/html-minifier-terser": { +- "version": "6.1.0", +- "license": "MIT" ++ "node_modules/@xtuc/ieee754": { ++ "version": "1.2.0", ++ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", ++ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, +- "node_modules/@types/http-cache-semantics": { +- "version": "4.0.4", +- "license": "MIT" ++ "node_modules/@xtuc/long": { ++ "version": "4.2.2", ++ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", ++ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, +- "node_modules/@types/http-errors": { +- "version": "2.0.4", +- "dev": true, +- "license": "MIT" ++ "node_modules/7zip-bin": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.2.0.tgz", ++ "integrity": "sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==", ++ "dev": true + }, +- "node_modules/@types/http-proxy": { +- "version": "1.17.14", ++ "node_modules/accepts": { ++ "version": "1.3.8", ++ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", ++ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/node": "*" ++ "mime-types": "~2.1.34", ++ "negotiator": "0.6.3" ++ }, ++ "engines": { ++ "node": ">= 0.6" + } + }, +- "node_modules/@types/json-schema": { +- "version": "7.0.15", +- "license": "MIT" ++ "node_modules/ace-builds": { ++ "version": "1.34.2", ++ "resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.34.2.tgz", ++ "integrity": "sha512-wiOZYuxyOSYfZzDasQTe+ZWmRlYxXSJM/kMKZ/bSqO1VgrBl+PaaTz/Sc+y7hXCKAUj3syUdpwxQyvwv9vQe6w==" + }, +- "node_modules/@types/json5": { +- "version": "0.0.29", ++ "node_modules/acorn": { ++ "version": "7.4.1", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", ++ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, +- "license": "MIT" +- }, +- "node_modules/@types/keyv": { +- "version": "3.1.4", +- "license": "MIT", +- "dependencies": { +- "@types/node": "*" ++ "bin": { ++ "acorn": "bin/acorn" ++ }, ++ "engines": { ++ "node": ">=0.4.0" + } + }, +- "node_modules/@types/leaflet": { +- "version": "1.7.11", ++ "node_modules/acorn-jsx": { ++ "version": "5.3.2", ++ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", ++ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@types/geojson": "*" ++ "peerDependencies": { ++ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, +- "node_modules/@types/marked": { +- "version": "4.0.8", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@types/mime": { +- "version": "1.3.5", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@types/minimist": { +- "version": "1.2.5", ++ "node_modules/acorn-walk": { ++ "version": "8.3.3", ++ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", ++ "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", + "dev": true, +- "license": "MIT" ++ "dependencies": { ++ "acorn": "^8.11.0" ++ }, ++ "engines": { ++ "node": ">=0.4.0" ++ } + }, +- "node_modules/@types/ms": { +- "version": "0.7.34", ++ "node_modules/acorn-walk/node_modules/acorn": { ++ "version": "8.12.1", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", ++ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, +- "license": "MIT" ++ "bin": { ++ "acorn": "bin/acorn" ++ }, ++ "engines": { ++ "node": ">=0.4.0" ++ } + }, +- "node_modules/@types/node": { +- "version": "17.0.45", +- "license": "MIT" ++ "node_modules/add-stream": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz", ++ "integrity": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==", ++ "dev": true + }, +- "node_modules/@types/node-forge": { +- "version": "1.3.10", ++ "node_modules/agent-base": { ++ "version": "6.0.2", ++ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", ++ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/node": "*" ++ "debug": "4" ++ }, ++ "engines": { ++ "node": ">= 6.0.0" + } + }, +- "node_modules/@types/normalize-package-data": { +- "version": "2.4.4", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@types/pg": { +- "version": "8.6.6", +- "dev": true, +- "license": "MIT", ++ "node_modules/ajv": { ++ "version": "8.17.1", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", ++ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dependencies": { +- "@types/node": "*", +- "pg-protocol": "*", +- "pg-types": "^2.2.0" ++ "fast-deep-equal": "^3.1.3", ++ "fast-uri": "^3.0.1", ++ "json-schema-traverse": "^1.0.0", ++ "require-from-string": "^2.0.2" ++ }, ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" + } + }, +- "node_modules/@types/qs": { +- "version": "6.9.10", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@types/range-parser": { +- "version": "1.2.7", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@types/responselike": { +- "version": "1.0.3", +- "license": "MIT", ++ "node_modules/ajv-formats": { ++ "version": "2.1.1", ++ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", ++ "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { +- "@types/node": "*" ++ "ajv": "^8.0.0" ++ }, ++ "peerDependencies": { ++ "ajv": "^8.0.0" ++ }, ++ "peerDependenciesMeta": { ++ "ajv": { ++ "optional": true ++ } + } + }, +- "node_modules/@types/retry": { +- "version": "0.12.0", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@types/semver": { +- "version": "7.5.6", +- "license": "MIT" ++ "node_modules/ajv-keywords": { ++ "version": "5.1.0", ++ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", ++ "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", ++ "dependencies": { ++ "fast-deep-equal": "^3.1.3" ++ }, ++ "peerDependencies": { ++ "ajv": "^8.8.2" ++ } + }, +- "node_modules/@types/send": { +- "version": "0.17.4", ++ "node_modules/all-contributors-cli": { ++ "version": "6.20.5", ++ "resolved": "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.20.5.tgz", ++ "integrity": "sha512-vWAR4+SyF9ZpkpbFoldCYbuAb8qkzjkj8uW4yJJN2fN48VRO+E7xGTnt+cLTQt5RNgj00MoYx/LJbWesjeSehQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/mime": "^1", +- "@types/node": "*" ++ "@babel/runtime": "^7.7.6", ++ "async": "^3.1.0", ++ "chalk": "^4.0.0", ++ "didyoumean": "^1.2.1", ++ "inquirer": "^7.3.3", ++ "json-fixer": "^1.6.8", ++ "lodash": "^4.11.2", ++ "node-fetch": "^2.6.0", ++ "pify": "^5.0.0", ++ "yargs": "^15.0.1" ++ }, ++ "bin": { ++ "all-contributors": "dist/cli.js" ++ }, ++ "engines": { ++ "node": ">=4" + } + }, +- "node_modules/@types/serve-index": { +- "version": "1.9.4", ++ "node_modules/all-contributors-cli/node_modules/cliui": { ++ "version": "6.0.0", ++ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", ++ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/express": "*" ++ "string-width": "^4.2.0", ++ "strip-ansi": "^6.0.0", ++ "wrap-ansi": "^6.2.0" + } + }, +- "node_modules/@types/serve-static": { +- "version": "1.15.5", ++ "node_modules/all-contributors-cli/node_modules/find-up": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", ++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/http-errors": "*", +- "@types/mime": "*", +- "@types/node": "*" ++ "locate-path": "^5.0.0", ++ "path-exists": "^4.0.0" ++ }, ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/@types/sockjs": { +- "version": "0.3.36", ++ "node_modules/all-contributors-cli/node_modules/locate-path": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/node": "*" ++ "p-locate": "^4.1.0" ++ }, ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/@types/ssh2": { +- "version": "1.11.17", ++ "node_modules/all-contributors-cli/node_modules/p-limit": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@types/node": "^18.11.18" ++ "p-try": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=6" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@types/ssh2/node_modules/@types/node": { +- "version": "18.18.13", ++ "node_modules/all-contributors-cli/node_modules/p-locate": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", ++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "undici-types": "~5.26.4" ++ "p-limit": "^2.2.0" ++ }, ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/@types/web-bluetooth": { +- "version": "0.0.17", +- "license": "MIT" +- }, +- "node_modules/@types/ws": { +- "version": "8.5.10", ++ "node_modules/all-contributors-cli/node_modules/path-exists": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@types/node": "*" +- } +- }, +- "node_modules/@types/yauzl": { +- "version": "2.10.3", +- "license": "MIT", +- "optional": true, +- "dependencies": { +- "@types/node": "*" ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/@typescript-eslint/eslint-plugin": { +- "version": "5.18.0", ++ "node_modules/all-contributors-cli/node_modules/wrap-ansi": { ++ "version": "6.2.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", ++ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@typescript-eslint/scope-manager": "5.18.0", +- "@typescript-eslint/type-utils": "5.18.0", +- "@typescript-eslint/utils": "5.18.0", +- "debug": "^4.3.2", +- "functional-red-black-tree": "^1.0.1", +- "ignore": "^5.1.8", +- "regexpp": "^3.2.0", +- "semver": "^7.3.5", +- "tsutils": "^3.21.0" ++ "ansi-styles": "^4.0.0", ++ "string-width": "^4.1.0", ++ "strip-ansi": "^6.0.0" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" +- }, +- "peerDependencies": { +- "@typescript-eslint/parser": "^5.0.0", +- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" +- }, +- "peerDependenciesMeta": { +- "typescript": { +- "optional": true +- } ++ "node": ">=8" + } + }, +- "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { +- "version": "6.0.0", ++ "node_modules/all-contributors-cli/node_modules/y18n": { ++ "version": "4.0.3", ++ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", ++ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", ++ "dev": true ++ }, ++ "node_modules/all-contributors-cli/node_modules/yargs": { ++ "version": "15.4.1", ++ "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", ++ "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "yallist": "^4.0.0" ++ "cliui": "^6.0.0", ++ "decamelize": "^1.2.0", ++ "find-up": "^4.1.0", ++ "get-caller-file": "^2.0.1", ++ "require-directory": "^2.1.1", ++ "require-main-filename": "^2.0.0", ++ "set-blocking": "^2.0.0", ++ "string-width": "^4.2.0", ++ "which-module": "^2.0.0", ++ "y18n": "^4.0.0", ++ "yargs-parser": "^18.1.2" + }, + "engines": { +- "node": ">=10" ++ "node": ">=8" + } + }, +- "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { +- "version": "7.5.4", ++ "node_modules/all-contributors-cli/node_modules/yargs-parser": { ++ "version": "18.1.3", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", ++ "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "lru-cache": "^6.0.0" +- }, +- "bin": { +- "semver": "bin/semver.js" ++ "camelcase": "^5.0.0", ++ "decamelize": "^1.2.0" + }, + "engines": { +- "node": ">=10" ++ "node": ">=6" + } + }, +- "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { +- "version": "4.0.0", ++ "node_modules/ansi-colors": { ++ "version": "4.1.3", ++ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", ++ "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, +- "license": "ISC" ++ "engines": { ++ "node": ">=6" ++ } + }, +- "node_modules/@typescript-eslint/parser": { +- "version": "5.18.0", ++ "node_modules/ansi-escapes": { ++ "version": "4.3.2", ++ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", ++ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { +- "@typescript-eslint/scope-manager": "5.18.0", +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/typescript-estree": "5.18.0", +- "debug": "^4.3.2" ++ "type-fest": "^0.21.3" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ "node": ">=8" + }, + "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" +- }, +- "peerDependencies": { +- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" +- }, +- "peerDependenciesMeta": { +- "typescript": { +- "optional": true +- } ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@typescript-eslint/scope-manager": { +- "version": "5.18.0", ++ "node_modules/ansi-escapes/node_modules/type-fest": { ++ "version": "0.21.3", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", ++ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/visitor-keys": "5.18.0" +- }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ "node": ">=10" + }, + "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@typescript-eslint/type-utils": { +- "version": "5.18.0", ++ "node_modules/ansi-html-community": { ++ "version": "0.0.8", ++ "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", ++ "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, +- "license": "MIT", ++ "engines": [ ++ "node >= 0.8.0" ++ ], ++ "bin": { ++ "ansi-html": "bin/ansi-html" ++ } ++ }, ++ "node_modules/ansi-regex": { ++ "version": "5.0.1", ++ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", ++ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/ansi-styles": { ++ "version": "4.3.0", ++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", ++ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { +- "@typescript-eslint/utils": "5.18.0", +- "debug": "^4.3.2", +- "tsutils": "^3.21.0" ++ "color-convert": "^2.0.1" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ "node": ">=8" + }, + "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" +- }, +- "peerDependencies": { +- "eslint": "*" +- }, +- "peerDependenciesMeta": { +- "typescript": { +- "optional": true +- } ++ "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, +- "node_modules/@typescript-eslint/types": { +- "version": "5.18.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ "node_modules/anymatch": { ++ "version": "3.1.3", ++ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", ++ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", ++ "dependencies": { ++ "normalize-path": "^3.0.0", ++ "picomatch": "^2.0.4" + }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "engines": { ++ "node": ">= 8" + } + }, +- "node_modules/@typescript-eslint/typescript-estree": { +- "version": "5.18.0", ++ "node_modules/app-builder-bin": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-4.0.0.tgz", ++ "integrity": "sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==", ++ "dev": true ++ }, ++ "node_modules/app-builder-lib": { ++ "version": "24.13.3", ++ "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-24.13.3.tgz", ++ "integrity": "sha512-FAzX6IBit2POXYGnTCT8YHFO/lr5AapAII6zzhQO3Rw4cEDOgK+t1xhLc5tNcKlicTHlo9zxIwnYCX9X2DLkig==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/visitor-keys": "5.18.0", +- "debug": "^4.3.2", +- "globby": "^11.0.4", +- "is-glob": "^4.0.3", +- "semver": "^7.3.5", +- "tsutils": "^3.21.0" ++ "@develar/schema-utils": "~2.6.5", ++ "@electron/notarize": "2.2.1", ++ "@electron/osx-sign": "1.0.5", ++ "@electron/universal": "1.5.1", ++ "@malept/flatpak-bundler": "^0.4.0", ++ "@types/fs-extra": "9.0.13", ++ "async-exit-hook": "^2.0.1", ++ "bluebird-lst": "^1.0.9", ++ "builder-util": "24.13.1", ++ "builder-util-runtime": "9.2.4", ++ "chromium-pickle-js": "^0.2.0", ++ "debug": "^4.3.4", ++ "ejs": "^3.1.8", ++ "electron-publish": "24.13.1", ++ "form-data": "^4.0.0", ++ "fs-extra": "^10.1.0", ++ "hosted-git-info": "^4.1.0", ++ "is-ci": "^3.0.0", ++ "isbinaryfile": "^5.0.0", ++ "js-yaml": "^4.1.0", ++ "lazy-val": "^1.0.5", ++ "minimatch": "^5.1.1", ++ "read-config-file": "6.3.2", ++ "sanitize-filename": "^1.6.3", ++ "semver": "^7.3.8", ++ "tar": "^6.1.12", ++ "temp-file": "^3.4.0" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "node": ">=14.0.0" + }, +- "peerDependenciesMeta": { +- "typescript": { +- "optional": true +- } ++ "peerDependencies": { ++ "dmg-builder": "24.13.3", ++ "electron-builder-squirrel-windows": "24.13.3" + } + }, +- "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { +- "version": "6.0.0", ++ "node_modules/app-builder-lib/node_modules/fs-extra": { ++ "version": "10.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "yallist": "^4.0.0" ++ "graceful-fs": "^4.2.0", ++ "jsonfile": "^6.0.1", ++ "universalify": "^2.0.0" + }, + "engines": { +- "node": ">=10" ++ "node": ">=12" + } + }, +- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { +- "version": "7.5.4", ++ "node_modules/app-builder-lib/node_modules/jsonfile": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "lru-cache": "^6.0.0" ++ "universalify": "^2.0.0" + }, ++ "optionalDependencies": { ++ "graceful-fs": "^4.1.6" ++ } ++ }, ++ "node_modules/app-builder-lib/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "dev": true, + "bin": { + "semver": "bin/semver.js" + }, +@@ -4047,718 +4643,688 @@ + "node": ">=10" + } + }, +- "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { +- "version": "4.0.0", ++ "node_modules/app-builder-lib/node_modules/universalify": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, +- "license": "ISC" ++ "engines": { ++ "node": ">= 10.0.0" ++ } + }, +- "node_modules/@typescript-eslint/utils": { +- "version": "5.18.0", ++ "node_modules/archiver": { ++ "version": "5.3.2", ++ "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.2.tgz", ++ "integrity": "sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==", + "dev": true, +- "license": "MIT", ++ "peer": true, + "dependencies": { +- "@types/json-schema": "^7.0.9", +- "@typescript-eslint/scope-manager": "5.18.0", +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/typescript-estree": "5.18.0", +- "eslint-scope": "^5.1.1", +- "eslint-utils": "^3.0.0" ++ "archiver-utils": "^2.1.0", ++ "async": "^3.2.4", ++ "buffer-crc32": "^0.2.1", ++ "readable-stream": "^3.6.0", ++ "readdir-glob": "^1.1.2", ++ "tar-stream": "^2.2.0", ++ "zip-stream": "^4.1.0" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" +- }, +- "peerDependencies": { +- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ "node": ">= 10" + } + }, +- "node_modules/@typescript-eslint/visitor-keys": { +- "version": "5.18.0", ++ "node_modules/archiver-utils": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz", ++ "integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==", + "dev": true, +- "license": "MIT", ++ "peer": true, + "dependencies": { +- "@typescript-eslint/types": "5.18.0", +- "eslint-visitor-keys": "^3.0.0" ++ "glob": "^7.1.4", ++ "graceful-fs": "^4.2.0", ++ "lazystream": "^1.0.0", ++ "lodash.defaults": "^4.2.0", ++ "lodash.difference": "^4.5.0", ++ "lodash.flatten": "^4.4.0", ++ "lodash.isplainobject": "^4.0.6", ++ "lodash.union": "^4.6.0", ++ "normalize-path": "^3.0.0", ++ "readable-stream": "^2.0.0" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "node": ">= 6" + } + }, +- "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { +- "version": "3.4.3", ++ "node_modules/archiver-utils/node_modules/isarray": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", ++ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, +- "license": "Apache-2.0", +- "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- }, +- "funding": { +- "url": "https://opencollective.com/eslint" +- } +- }, +- "node_modules/@vue/compiler-core": { +- "version": "3.2.47", +- "license": "MIT", +- "dependencies": { +- "@babel/parser": "^7.16.4", +- "@vue/shared": "3.2.47", +- "estree-walker": "^2.0.2", +- "source-map": "^0.6.1" +- } +- }, +- "node_modules/@vue/compiler-dom": { +- "version": "3.2.47", +- "license": "MIT", +- "dependencies": { +- "@vue/compiler-core": "3.2.47", +- "@vue/shared": "3.2.47" +- } +- }, +- "node_modules/@vue/compiler-sfc": { +- "version": "3.2.47", +- "license": "MIT", +- "dependencies": { +- "@babel/parser": "^7.16.4", +- "@vue/compiler-core": "3.2.47", +- "@vue/compiler-dom": "3.2.47", +- "@vue/compiler-ssr": "3.2.47", +- "@vue/reactivity-transform": "3.2.47", +- "@vue/shared": "3.2.47", +- "estree-walker": "^2.0.2", +- "magic-string": "^0.25.7", +- "postcss": "^8.1.10", +- "source-map": "^0.6.1" +- } +- }, +- "node_modules/@vue/compiler-ssr": { +- "version": "3.2.47", +- "license": "MIT", +- "dependencies": { +- "@vue/compiler-dom": "3.2.47", +- "@vue/shared": "3.2.47" +- } +- }, +- "node_modules/@vue/devtools-api": { +- "version": "6.5.1", +- "license": "MIT" +- }, +- "node_modules/@vue/reactivity": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.27.tgz", +- "integrity": "sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==", +- "dependencies": { +- "@vue/shared": "3.4.27" +- } ++ "peer": true + }, +- "node_modules/@vue/reactivity-transform": { +- "version": "3.2.47", +- "license": "MIT", ++ "node_modules/archiver-utils/node_modules/readable-stream": { ++ "version": "2.3.8", ++ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", ++ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", ++ "dev": true, ++ "peer": true, + "dependencies": { +- "@babel/parser": "^7.16.4", +- "@vue/compiler-core": "3.2.47", +- "@vue/shared": "3.2.47", +- "estree-walker": "^2.0.2", +- "magic-string": "^0.25.7" ++ "core-util-is": "~1.0.0", ++ "inherits": "~2.0.3", ++ "isarray": "~1.0.0", ++ "process-nextick-args": "~2.0.0", ++ "safe-buffer": "~5.1.1", ++ "string_decoder": "~1.1.1", ++ "util-deprecate": "~1.0.1" + } + }, +- "node_modules/@vue/reactivity/node_modules/@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" ++ "node_modules/archiver-utils/node_modules/safe-buffer": { ++ "version": "5.1.2", ++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", ++ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", ++ "dev": true, ++ "peer": true + }, +- "node_modules/@vue/runtime-core": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.27.tgz", +- "integrity": "sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==", ++ "node_modules/archiver-utils/node_modules/string_decoder": { ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", ++ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", ++ "dev": true, ++ "peer": true, + "dependencies": { +- "@vue/reactivity": "3.4.27", +- "@vue/shared": "3.4.27" ++ "safe-buffer": "~5.1.0" + } + }, +- "node_modules/@vue/runtime-core/node_modules/@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- }, +- "node_modules/@vue/runtime-dom": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.27.tgz", +- "integrity": "sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==", +- "dependencies": { +- "@vue/runtime-core": "3.4.27", +- "@vue/shared": "3.4.27", +- "csstype": "^3.1.3" +- } ++ "node_modules/arg": { ++ "version": "4.1.3", ++ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", ++ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", ++ "dev": true + }, +- "node_modules/@vue/runtime-dom/node_modules/@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" ++ "node_modules/argparse": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", ++ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, +- "node_modules/@vue/server-renderer": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.27.tgz", +- "integrity": "sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==", ++ "node_modules/array-buffer-byte-length": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", ++ "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", ++ "dev": true, + "dependencies": { +- "@vue/compiler-ssr": "3.4.27", +- "@vue/shared": "3.4.27" ++ "call-bind": "^1.0.5", ++ "is-array-buffer": "^3.0.4" + }, +- "peerDependencies": { +- "vue": "3.4.27" +- } +- }, +- "node_modules/@vue/server-renderer/node_modules/@vue/compiler-core": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.27.tgz", +- "integrity": "sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==", +- "dependencies": { +- "@babel/parser": "^7.24.4", +- "@vue/shared": "3.4.27", +- "entities": "^4.5.0", +- "estree-walker": "^2.0.2", +- "source-map-js": "^1.2.0" +- } +- }, +- "node_modules/@vue/server-renderer/node_modules/@vue/compiler-dom": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.27.tgz", +- "integrity": "sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==", +- "dependencies": { +- "@vue/compiler-core": "3.4.27", +- "@vue/shared": "3.4.27" +- } +- }, +- "node_modules/@vue/server-renderer/node_modules/@vue/compiler-ssr": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.27.tgz", +- "integrity": "sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==", +- "dependencies": { +- "@vue/compiler-dom": "3.4.27", +- "@vue/shared": "3.4.27" +- } +- }, +- "node_modules/@vue/server-renderer/node_modules/@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- }, +- "node_modules/@vue/shared": { +- "version": "3.2.47", +- "license": "MIT" +- }, +- "node_modules/@vueuse/core": { +- "version": "10.4.1", +- "license": "MIT", +- "dependencies": { +- "@types/web-bluetooth": "^0.0.17", +- "@vueuse/metadata": "10.4.1", +- "@vueuse/shared": "10.4.1", +- "vue-demi": ">=0.14.5" ++ "engines": { ++ "node": ">= 0.4" + }, + "funding": { +- "url": "https://github.com/sponsors/antfu" ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/@vueuse/core/node_modules/vue-demi": { +- "version": "0.14.6", +- "hasInstallScript": true, +- "license": "MIT", +- "bin": { +- "vue-demi-fix": "bin/vue-demi-fix.js", +- "vue-demi-switch": "bin/vue-demi-switch.js" ++ "node_modules/array-flatten": { ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", ++ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", ++ "dev": true ++ }, ++ "node_modules/array-ify": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", ++ "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", ++ "dev": true ++ }, ++ "node_modules/array-includes": { ++ "version": "3.1.8", ++ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", ++ "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", ++ "dev": true, ++ "dependencies": { ++ "call-bind": "^1.0.7", ++ "define-properties": "^1.2.1", ++ "es-abstract": "^1.23.2", ++ "es-object-atoms": "^1.0.0", ++ "get-intrinsic": "^1.2.4", ++ "is-string": "^1.0.7" + }, + "engines": { +- "node": ">=12" ++ "node": ">= 0.4" + }, + "funding": { +- "url": "https://github.com/sponsors/antfu" +- }, +- "peerDependencies": { +- "@vue/composition-api": "^1.0.0-rc.1", +- "vue": "^3.0.0-0 || ^2.6.0" +- }, +- "peerDependenciesMeta": { +- "@vue/composition-api": { +- "optional": true +- } ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/@vueuse/metadata": { +- "version": "10.4.1", +- "license": "MIT", +- "funding": { +- "url": "https://github.com/sponsors/antfu" ++ "node_modules/array-union": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", ++ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", ++ "dev": true, ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/@vueuse/shared": { +- "version": "10.4.1", +- "license": "MIT", ++ "node_modules/array.prototype.flat": { ++ "version": "1.3.2", ++ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", ++ "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", ++ "dev": true, + "dependencies": { +- "vue-demi": ">=0.14.5" ++ "call-bind": "^1.0.2", ++ "define-properties": "^1.2.0", ++ "es-abstract": "^1.22.1", ++ "es-shim-unscopables": "^1.0.0" ++ }, ++ "engines": { ++ "node": ">= 0.4" + }, + "funding": { +- "url": "https://github.com/sponsors/antfu" ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/@vueuse/shared/node_modules/vue-demi": { +- "version": "0.14.6", +- "hasInstallScript": true, +- "license": "MIT", +- "bin": { +- "vue-demi-fix": "bin/vue-demi-fix.js", +- "vue-demi-switch": "bin/vue-demi-switch.js" ++ "node_modules/arraybuffer.prototype.slice": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", ++ "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", ++ "dev": true, ++ "dependencies": { ++ "array-buffer-byte-length": "^1.0.1", ++ "call-bind": "^1.0.5", ++ "define-properties": "^1.2.1", ++ "es-abstract": "^1.22.3", ++ "es-errors": "^1.2.1", ++ "get-intrinsic": "^1.2.3", ++ "is-array-buffer": "^3.0.4", ++ "is-shared-array-buffer": "^1.0.2" + }, + "engines": { +- "node": ">=12" ++ "node": ">= 0.4" + }, + "funding": { +- "url": "https://github.com/sponsors/antfu" +- }, +- "peerDependencies": { +- "@vue/composition-api": "^1.0.0-rc.1", +- "vue": "^3.0.0-0 || ^2.6.0" +- }, +- "peerDependenciesMeta": { +- "@vue/composition-api": { +- "optional": true +- } ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/@webassemblyjs/ast": { +- "version": "1.12.1", +- "license": "MIT", ++ "node_modules/arrify": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", ++ "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", ++ "dev": true, ++ "engines": { ++ "node": ">=0.10.0" ++ } ++ }, ++ "node_modules/asn1": { ++ "version": "0.2.6", ++ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", ++ "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dependencies": { +- "@webassemblyjs/helper-numbers": "1.11.6", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6" ++ "safer-buffer": "~2.1.0" + } + }, +- "node_modules/@webassemblyjs/floating-point-hex-parser": { +- "version": "1.11.6", +- "license": "MIT" ++ "node_modules/assert-plus": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", ++ "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", ++ "dev": true, ++ "optional": true, ++ "engines": { ++ "node": ">=0.8" ++ } + }, +- "node_modules/@webassemblyjs/helper-api-error": { +- "version": "1.11.6", +- "license": "MIT" ++ "node_modules/astral-regex": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", ++ "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", ++ "dev": true, ++ "engines": { ++ "node": ">=8" ++ } + }, +- "node_modules/@webassemblyjs/helper-buffer": { +- "version": "1.12.1", +- "license": "MIT" ++ "node_modules/async": { ++ "version": "3.2.6", ++ "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", ++ "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", ++ "dev": true + }, +- "node_modules/@webassemblyjs/helper-numbers": { +- "version": "1.11.6", +- "license": "MIT", +- "dependencies": { +- "@webassemblyjs/floating-point-hex-parser": "1.11.6", +- "@webassemblyjs/helper-api-error": "1.11.6", +- "@xtuc/long": "4.2.2" ++ "node_modules/async-exit-hook": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", ++ "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", ++ "dev": true, ++ "engines": { ++ "node": ">=0.12.0" + } + }, +- "node_modules/@webassemblyjs/helper-wasm-bytecode": { +- "version": "1.11.6", +- "license": "MIT" ++ "node_modules/asynckit": { ++ "version": "0.4.0", ++ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", ++ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", ++ "dev": true + }, +- "node_modules/@webassemblyjs/helper-wasm-section": { +- "version": "1.12.1", +- "license": "MIT", +- "dependencies": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-buffer": "1.12.1", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/wasm-gen": "1.12.1" ++ "node_modules/at-least-node": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", ++ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", ++ "dev": true, ++ "engines": { ++ "node": ">= 4.0.0" + } + }, +- "node_modules/@webassemblyjs/ieee754": { +- "version": "1.11.6", +- "license": "MIT", +- "dependencies": { +- "@xtuc/ieee754": "^1.2.0" ++ "node_modules/atomically": { ++ "version": "1.7.0", ++ "resolved": "https://registry.npmjs.org/atomically/-/atomically-1.7.0.tgz", ++ "integrity": "sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==", ++ "engines": { ++ "node": ">=10.12.0" + } + }, +- "node_modules/@webassemblyjs/leb128": { +- "version": "1.11.6", +- "license": "Apache-2.0", ++ "node_modules/available-typed-arrays": { ++ "version": "1.0.7", ++ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", ++ "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", ++ "dev": true, + "dependencies": { +- "@xtuc/long": "4.2.2" ++ "possible-typed-array-names": "^1.0.0" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/@webassemblyjs/utf8": { +- "version": "1.11.6", +- "license": "MIT" ++ "node_modules/babel-loader": { ++ "version": "8.2.5", ++ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", ++ "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", ++ "dependencies": { ++ "find-cache-dir": "^3.3.1", ++ "loader-utils": "^2.0.0", ++ "make-dir": "^3.1.0", ++ "schema-utils": "^2.6.5" ++ }, ++ "engines": { ++ "node": ">= 8.9" ++ }, ++ "peerDependencies": { ++ "@babel/core": "^7.0.0", ++ "webpack": ">=2" ++ } + }, +- "node_modules/@webassemblyjs/wasm-edit": { +- "version": "1.12.1", +- "license": "MIT", ++ "node_modules/babel-plugin-polyfill-corejs2": { ++ "version": "0.2.3", ++ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.3.tgz", ++ "integrity": "sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==", ++ "dev": true, + "dependencies": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-buffer": "1.12.1", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/helper-wasm-section": "1.12.1", +- "@webassemblyjs/wasm-gen": "1.12.1", +- "@webassemblyjs/wasm-opt": "1.12.1", +- "@webassemblyjs/wasm-parser": "1.12.1", +- "@webassemblyjs/wast-printer": "1.12.1" ++ "@babel/compat-data": "^7.13.11", ++ "@babel/helper-define-polyfill-provider": "^0.2.4", ++ "semver": "^6.1.1" ++ }, ++ "peerDependencies": { ++ "@babel/core": "^7.0.0-0" + } + }, +- "node_modules/@webassemblyjs/wasm-gen": { +- "version": "1.12.1", +- "license": "MIT", ++ "node_modules/babel-plugin-polyfill-corejs3": { ++ "version": "0.2.5", ++ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz", ++ "integrity": "sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==", ++ "dev": true, + "dependencies": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/ieee754": "1.11.6", +- "@webassemblyjs/leb128": "1.11.6", +- "@webassemblyjs/utf8": "1.11.6" ++ "@babel/helper-define-polyfill-provider": "^0.2.2", ++ "core-js-compat": "^3.16.2" ++ }, ++ "peerDependencies": { ++ "@babel/core": "^7.0.0-0" + } + }, +- "node_modules/@webassemblyjs/wasm-opt": { +- "version": "1.12.1", +- "license": "MIT", ++ "node_modules/babel-plugin-polyfill-regenerator": { ++ "version": "0.2.3", ++ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.3.tgz", ++ "integrity": "sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==", ++ "dev": true, + "dependencies": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-buffer": "1.12.1", +- "@webassemblyjs/wasm-gen": "1.12.1", +- "@webassemblyjs/wasm-parser": "1.12.1" ++ "@babel/helper-define-polyfill-provider": "^0.2.4" ++ }, ++ "peerDependencies": { ++ "@babel/core": "^7.0.0-0" + } + }, +- "node_modules/@webassemblyjs/wasm-parser": { +- "version": "1.12.1", +- "license": "MIT", ++ "node_modules/balanced-match": { ++ "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", ++ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" ++ }, ++ "node_modules/base64-js": { ++ "version": "1.5.1", ++ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", ++ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/feross" ++ }, ++ { ++ "type": "patreon", ++ "url": "https://www.patreon.com/feross" ++ }, ++ { ++ "type": "consulting", ++ "url": "https://feross.org/support" ++ } ++ ] ++ }, ++ "node_modules/batch": { ++ "version": "0.6.1", ++ "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", ++ "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", ++ "dev": true ++ }, ++ "node_modules/bcrypt-pbkdf": { ++ "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", ++ "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dependencies": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-api-error": "1.11.6", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/ieee754": "1.11.6", +- "@webassemblyjs/leb128": "1.11.6", +- "@webassemblyjs/utf8": "1.11.6" ++ "tweetnacl": "^0.14.3" + } + }, +- "node_modules/@webassemblyjs/wast-printer": { +- "version": "1.12.1", +- "license": "MIT", ++ "node_modules/better-sqlite3": { ++ "version": "10.0.0", ++ "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-10.0.0.tgz", ++ "integrity": "sha512-rOz0JY8bt9oMgrFssP7GnvA5R3yln73y/NizzWqy3WlFth8Ux8+g4r/N9fjX97nn4X1YX6MTER2doNpTu5pqiA==", ++ "hasInstallScript": true, + "dependencies": { +- "@webassemblyjs/ast": "1.12.1", +- "@xtuc/long": "4.2.2" ++ "bindings": "^1.5.0", ++ "prebuild-install": "^7.1.1" + } + }, +- "node_modules/@webpack-cli/configtest": { +- "version": "1.2.0", +- "license": "MIT", +- "peerDependencies": { +- "webpack": "4.x.x || 5.x.x", +- "webpack-cli": "4.x.x" ++ "node_modules/big-integer": { ++ "version": "1.6.52", ++ "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", ++ "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", ++ "engines": { ++ "node": ">=0.6" + } + }, +- "node_modules/@webpack-cli/info": { +- "version": "1.5.0", +- "license": "MIT", +- "dependencies": { +- "envinfo": "^7.7.3" +- }, +- "peerDependencies": { +- "webpack-cli": "4.x.x" ++ "node_modules/big.js": { ++ "version": "5.2.2", ++ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", ++ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", ++ "engines": { ++ "node": "*" + } + }, +- "node_modules/@webpack-cli/serve": { +- "version": "1.7.0", +- "license": "MIT", +- "peerDependencies": { +- "webpack-cli": "4.x.x" ++ "node_modules/binary-extensions": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", ++ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", ++ "engines": { ++ "node": ">=8" + }, +- "peerDependenciesMeta": { +- "webpack-dev-server": { +- "optional": true +- } ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@xmldom/xmldom": { +- "version": "0.8.10", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=10.0.0" ++ "node_modules/bindings": { ++ "version": "1.5.0", ++ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", ++ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", ++ "dependencies": { ++ "file-uri-to-path": "1.0.0" + } + }, +- "node_modules/@xtuc/ieee754": { +- "version": "1.2.0", +- "license": "BSD-3-Clause" +- }, +- "node_modules/@xtuc/long": { +- "version": "4.2.2", +- "license": "Apache-2.0" ++ "node_modules/bl": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", ++ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", ++ "dependencies": { ++ "buffer": "^5.5.0", ++ "inherits": "^2.0.4", ++ "readable-stream": "^3.4.0" ++ } + }, +- "node_modules/7zip-bin": { +- "version": "5.2.0", +- "dev": true, +- "license": "MIT" ++ "node_modules/bluebird": { ++ "version": "3.7.2", ++ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", ++ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", ++ "dev": true + }, +- "node_modules/accepts": { +- "version": "1.3.8", ++ "node_modules/bluebird-lst": { ++ "version": "1.0.9", ++ "resolved": "https://registry.npmjs.org/bluebird-lst/-/bluebird-lst-1.0.9.tgz", ++ "integrity": "sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "mime-types": "~2.1.34", +- "negotiator": "0.6.3" +- }, +- "engines": { +- "node": ">= 0.6" ++ "bluebird": "^3.5.5" + } + }, +- "node_modules/ace-builds": { +- "version": "1.34.1", +- "resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.34.1.tgz", +- "integrity": "sha512-hwRzr6BkRwsq5A19yA9E36KNNtn0+zESYolnWK3TADJsWVQS0T24nvbgdjXwqk2JEMQXE4PlqAw+ZgprvFtKjw==" +- }, +- "node_modules/acorn": { +- "version": "7.4.1", ++ "node_modules/body-parser": { ++ "version": "1.20.2", ++ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", ++ "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "dev": true, +- "license": "MIT", +- "bin": { +- "acorn": "bin/acorn" ++ "dependencies": { ++ "bytes": "3.1.2", ++ "content-type": "~1.0.5", ++ "debug": "2.6.9", ++ "depd": "2.0.0", ++ "destroy": "1.2.0", ++ "http-errors": "2.0.0", ++ "iconv-lite": "0.4.24", ++ "on-finished": "2.4.1", ++ "qs": "6.11.0", ++ "raw-body": "2.5.2", ++ "type-is": "~1.6.18", ++ "unpipe": "1.0.0" + }, + "engines": { +- "node": ">=0.4.0" +- } +- }, +- "node_modules/acorn-jsx": { +- "version": "5.3.2", +- "dev": true, +- "license": "MIT", +- "peerDependencies": { +- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ "node": ">= 0.8", ++ "npm": "1.2.8000 || >= 1.4.16" + } + }, +- "node_modules/acorn-walk": { +- "version": "8.3.0", ++ "node_modules/body-parser/node_modules/bytes": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", ++ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=0.4.0" ++ "node": ">= 0.8" + } + }, +- "node_modules/add-stream": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/agent-base": { +- "version": "6.0.2", ++ "node_modules/body-parser/node_modules/debug": { ++ "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "debug": "4" +- }, +- "engines": { +- "node": ">= 6.0.0" ++ "ms": "2.0.0" + } + }, +- "node_modules/ajv": { +- "version": "6.12.6", +- "license": "MIT", ++ "node_modules/body-parser/node_modules/iconv-lite": { ++ "version": "0.4.24", ++ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", ++ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", ++ "dev": true, + "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "fast-json-stable-stringify": "^2.0.0", +- "json-schema-traverse": "^0.4.1", +- "uri-js": "^4.2.2" ++ "safer-buffer": ">= 2.1.2 < 3" + }, +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" ++ "engines": { ++ "node": ">=0.10.0" + } + }, +- "node_modules/ajv-formats": { +- "version": "2.1.1", +- "license": "MIT", +- "dependencies": { +- "ajv": "^8.0.0" +- }, +- "peerDependencies": { +- "ajv": "^8.0.0" +- }, +- "peerDependenciesMeta": { +- "ajv": { +- "optional": true +- } +- } ++ "node_modules/body-parser/node_modules/ms": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", ++ "dev": true + }, +- "node_modules/ajv-formats/node_modules/ajv": { +- "version": "8.12.0", +- "license": "MIT", ++ "node_modules/bonjour-service": { ++ "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", ++ "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", ++ "dev": true, + "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- }, +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" ++ "fast-deep-equal": "^3.1.3", ++ "multicast-dns": "^7.2.5" + } + }, +- "node_modules/ajv-formats/node_modules/json-schema-traverse": { ++ "node_modules/boolbase": { + "version": "1.0.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", ++ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, +- "node_modules/ajv-keywords": { +- "version": "3.5.2", +- "license": "MIT", +- "peerDependencies": { +- "ajv": "^6.9.1" +- } ++ "node_modules/boolean": { ++ "version": "3.2.0", ++ "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", ++ "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", ++ "optional": true + }, +- "node_modules/all-contributors-cli": { +- "version": "6.20.5", ++ "node_modules/brace-expansion": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", ++ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/runtime": "^7.7.6", +- "async": "^3.1.0", +- "chalk": "^4.0.0", +- "didyoumean": "^1.2.1", +- "inquirer": "^7.3.3", +- "json-fixer": "^1.6.8", +- "lodash": "^4.11.2", +- "node-fetch": "^2.6.0", +- "pify": "^5.0.0", +- "yargs": "^15.0.1" +- }, +- "bin": { +- "all-contributors": "dist/cli.js" +- }, +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/ansi-colors": { +- "version": "4.1.3", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=6" ++ "balanced-match": "^1.0.0" + } + }, +- "node_modules/ansi-escapes": { +- "version": "4.3.2", +- "dev": true, +- "license": "MIT", ++ "node_modules/braces": { ++ "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", ++ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { +- "type-fest": "^0.21.3" ++ "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/ansi-escapes/node_modules/type-fest": { +- "version": "0.21.3", +- "dev": true, +- "license": "(MIT OR CC0-1.0)", +- "engines": { +- "node": ">=10" ++ "node_modules/browserslist": { ++ "version": "4.23.3", ++ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", ++ "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", ++ "funding": [ ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/browserslist" ++ }, ++ { ++ "type": "tidelift", ++ "url": "https://tidelift.com/funding/github/npm/browserslist" ++ }, ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/ai" ++ } ++ ], ++ "dependencies": { ++ "caniuse-lite": "^1.0.30001646", ++ "electron-to-chromium": "^1.5.4", ++ "node-releases": "^2.0.18", ++ "update-browserslist-db": "^1.1.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "bin": { ++ "browserslist": "cli.js" ++ }, ++ "engines": { ++ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, +- "node_modules/ansi-html-community": { +- "version": "0.0.8", +- "dev": true, +- "engines": [ +- "node >= 0.8.0" ++ "node_modules/buffer": { ++ "version": "5.7.1", ++ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", ++ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/feross" ++ }, ++ { ++ "type": "patreon", ++ "url": "https://www.patreon.com/feross" ++ }, ++ { ++ "type": "consulting", ++ "url": "https://feross.org/support" ++ } + ], +- "license": "Apache-2.0", +- "bin": { +- "ansi-html": "bin/ansi-html" ++ "dependencies": { ++ "base64-js": "^1.3.1", ++ "ieee754": "^1.1.13" + } + }, +- "node_modules/ansi-regex": { +- "version": "5.0.1", +- "license": "MIT", ++ "node_modules/buffer-crc32": { ++ "version": "0.2.13", ++ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", ++ "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "engines": { +- "node": ">=8" ++ "node": "*" + } + }, +- "node_modules/ansi-styles": { +- "version": "4.3.0", +- "license": "MIT", +- "dependencies": { +- "color-convert": "^2.0.1" +- }, ++ "node_modules/buffer-equal": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", ++ "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", ++ "dev": true, + "engines": { +- "node": ">=8" ++ "node": ">=0.4" + }, + "funding": { +- "url": "https://github.com/chalk/ansi-styles?sponsor=1" ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/anymatch": { +- "version": "3.1.3", +- "license": "ISC", +- "dependencies": { +- "normalize-path": "^3.0.0", +- "picomatch": "^2.0.4" +- }, ++ "node_modules/buffer-from": { ++ "version": "1.1.2", ++ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", ++ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" ++ }, ++ "node_modules/buildcheck": { ++ "version": "0.0.6", ++ "resolved": "https://registry.npmjs.org/buildcheck/-/buildcheck-0.0.6.tgz", ++ "integrity": "sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==", + "engines": { +- "node": ">= 8" ++ "node": ">=10.0.0" + } + }, +- "node_modules/app-builder-bin": { +- "version": "4.0.0", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/app-builder-lib": { +- "version": "24.13.3", ++ "node_modules/builder-util": { ++ "version": "24.13.1", ++ "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-24.13.1.tgz", ++ "integrity": "sha512-NhbCSIntruNDTOVI9fdXz0dihaqX2YuE1D6zZMrwiErzH4ELZHE6mdiB40wEgZNprDia+FghRFgKoAqMZRRjSA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@develar/schema-utils": "~2.6.5", +- "@electron/notarize": "2.2.1", +- "@electron/osx-sign": "1.0.5", +- "@electron/universal": "1.5.1", +- "@malept/flatpak-bundler": "^0.4.0", +- "@types/fs-extra": "9.0.13", +- "async-exit-hook": "^2.0.1", ++ "@types/debug": "^4.1.6", ++ "7zip-bin": "~5.2.0", ++ "app-builder-bin": "4.0.0", + "bluebird-lst": "^1.0.9", +- "builder-util": "24.13.1", + "builder-util-runtime": "9.2.4", +- "chromium-pickle-js": "^0.2.0", ++ "chalk": "^4.1.2", ++ "cross-spawn": "^7.0.3", + "debug": "^4.3.4", +- "ejs": "^3.1.8", +- "electron-publish": "24.13.1", +- "form-data": "^4.0.0", + "fs-extra": "^10.1.0", +- "hosted-git-info": "^4.1.0", ++ "http-proxy-agent": "^5.0.0", ++ "https-proxy-agent": "^5.0.1", + "is-ci": "^3.0.0", +- "isbinaryfile": "^5.0.0", + "js-yaml": "^4.1.0", +- "lazy-val": "^1.0.5", +- "minimatch": "^5.1.1", +- "read-config-file": "6.3.2", +- "sanitize-filename": "^1.6.3", +- "semver": "^7.3.8", +- "tar": "^6.1.12", ++ "source-map-support": "^0.5.19", ++ "stat-mode": "^1.0.0", + "temp-file": "^3.4.0" ++ } ++ }, ++ "node_modules/builder-util-runtime": { ++ "version": "9.2.4", ++ "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.2.4.tgz", ++ "integrity": "sha512-upp+biKpN/XZMLim7aguUyW8s0FUpDvOtK6sbanMFDAMBzpHDqdhgVYm6zc9HJ6nWo7u2Lxk60i2M6Jd3aiNrA==", ++ "dev": true, ++ "dependencies": { ++ "debug": "^4.3.4", ++ "sax": "^1.2.4" + }, + "engines": { +- "node": ">=14.0.0" +- }, +- "peerDependencies": { +- "dmg-builder": "24.13.3", +- "electron-builder-squirrel-windows": "24.13.3" ++ "node": ">=12.0.0" + } + }, +- "node_modules/app-builder-lib/node_modules/fs-extra": { ++ "node_modules/builder-util/node_modules/fs-extra": { + "version": "10.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", +@@ -4768,10 +5334,11 @@ + "node": ">=12" + } + }, +- "node_modules/app-builder-lib/node_modules/jsonfile": { ++ "node_modules/builder-util/node_modules/jsonfile": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, +@@ -4779,141 +5346,74 @@ + "graceful-fs": "^4.1.6" + } + }, +- "node_modules/app-builder-lib/node_modules/semver": { +- "version": "7.6.2", +- "dev": true, +- "license": "ISC", +- "bin": { +- "semver": "bin/semver.js" +- }, +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/app-builder-lib/node_modules/universalify": { ++ "node_modules/builder-util/node_modules/universalify": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, +- "node_modules/archiver": { +- "version": "5.3.2", ++ "node_modules/bytes": { ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", ++ "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, +- "license": "MIT", +- "peer": true, +- "dependencies": { +- "archiver-utils": "^2.1.0", +- "async": "^3.2.4", +- "buffer-crc32": "^0.2.1", +- "readable-stream": "^3.6.0", +- "readdir-glob": "^1.1.2", +- "tar-stream": "^2.2.0", +- "zip-stream": "^4.1.0" +- }, + "engines": { +- "node": ">= 10" ++ "node": ">= 0.8" + } + }, +- "node_modules/archiver-utils": { +- "version": "2.1.0", +- "dev": true, +- "license": "MIT", +- "peer": true, +- "dependencies": { +- "glob": "^7.1.4", +- "graceful-fs": "^4.2.0", +- "lazystream": "^1.0.0", +- "lodash.defaults": "^4.2.0", +- "lodash.difference": "^4.5.0", +- "lodash.flatten": "^4.4.0", +- "lodash.isplainobject": "^4.0.6", +- "lodash.union": "^4.6.0", +- "normalize-path": "^3.0.0", +- "readable-stream": "^2.0.0" +- }, ++ "node_modules/cacheable-lookup": { ++ "version": "5.0.4", ++ "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", ++ "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "engines": { +- "node": ">= 6" +- } +- }, +- "node_modules/archiver-utils/node_modules/isarray": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT", +- "peer": true +- }, +- "node_modules/archiver-utils/node_modules/readable-stream": { +- "version": "2.3.8", +- "dev": true, +- "license": "MIT", +- "peer": true, +- "dependencies": { +- "core-util-is": "~1.0.0", +- "inherits": "~2.0.3", +- "isarray": "~1.0.0", +- "process-nextick-args": "~2.0.0", +- "safe-buffer": "~5.1.1", +- "string_decoder": "~1.1.1", +- "util-deprecate": "~1.0.1" ++ "node": ">=10.6.0" + } + }, +- "node_modules/archiver-utils/node_modules/safe-buffer": { +- "version": "5.1.2", +- "dev": true, +- "license": "MIT", +- "peer": true +- }, +- "node_modules/archiver-utils/node_modules/string_decoder": { +- "version": "1.1.1", +- "dev": true, +- "license": "MIT", +- "peer": true, ++ "node_modules/cacheable-request": { ++ "version": "7.0.4", ++ "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", ++ "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dependencies": { +- "safe-buffer": "~5.1.0" ++ "clone-response": "^1.0.2", ++ "get-stream": "^5.1.0", ++ "http-cache-semantics": "^4.0.0", ++ "keyv": "^4.0.0", ++ "lowercase-keys": "^2.0.0", ++ "normalize-url": "^6.0.1", ++ "responselike": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/arg": { +- "version": "4.1.3", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/argparse": { +- "version": "2.0.1", +- "license": "Python-2.0" +- }, +- "node_modules/array-buffer-byte-length": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT", ++ "node_modules/cacheable-request/node_modules/get-stream": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", ++ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { +- "call-bind": "^1.0.2", +- "is-array-buffer": "^3.0.1" ++ "pump": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=8" + }, + "funding": { +- "url": "https://github.com/sponsors/ljharb" ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/array-flatten": { +- "version": "2.1.2", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/array-ify": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/array-includes": { +- "version": "3.1.7", ++ "node_modules/call-bind": { ++ "version": "1.0.7", ++ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", ++ "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1", +- "get-intrinsic": "^1.2.1", +- "is-string": "^1.0.7" ++ "es-define-property": "^1.0.0", ++ "es-errors": "^1.3.0", ++ "function-bind": "^1.1.2", ++ "get-intrinsic": "^1.2.4", ++ "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" +@@ -4922,1200 +5422,1504 @@ + "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/array-union": { +- "version": "2.1.0", ++ "node_modules/callsites": { ++ "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", ++ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=8" ++ "node": ">=6" + } + }, +- "node_modules/array.prototype.flat": { +- "version": "1.3.2", +- "dev": true, +- "license": "MIT", ++ "node_modules/camel-case": { ++ "version": "4.1.2", ++ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", ++ "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1", +- "es-shim-unscopables": "^1.0.0" +- }, ++ "pascal-case": "^3.1.2", ++ "tslib": "^2.0.3" ++ } ++ }, ++ "node_modules/camelcase": { ++ "version": "5.3.1", ++ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", ++ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", ++ "dev": true, + "engines": { +- "node": ">= 0.4" +- }, +- "funding": { +- "url": "https://github.com/sponsors/ljharb" ++ "node": ">=6" + } + }, +- "node_modules/arraybuffer.prototype.slice": { +- "version": "1.0.2", ++ "node_modules/camelcase-keys": { ++ "version": "6.2.2", ++ "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", ++ "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "array-buffer-byte-length": "^1.0.0", +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1", +- "get-intrinsic": "^1.2.1", +- "is-array-buffer": "^3.0.2", +- "is-shared-array-buffer": "^1.0.2" ++ "camelcase": "^5.3.1", ++ "map-obj": "^4.0.0", ++ "quick-lru": "^4.0.1" + }, + "engines": { +- "node": ">= 0.4" ++ "node": ">=8" + }, + "funding": { +- "url": "https://github.com/sponsors/ljharb" ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/arrify": { +- "version": "1.0.1", ++ "node_modules/camelcase-keys/node_modules/quick-lru": { ++ "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", ++ "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=0.10.0" ++ "node": ">=8" + } + }, +- "node_modules/asn1": { +- "version": "0.2.6", +- "license": "MIT", +- "dependencies": { +- "safer-buffer": "~2.1.0" +- } ++ "node_modules/caniuse-lite": { ++ "version": "1.0.30001653", ++ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001653.tgz", ++ "integrity": "sha512-XGWQVB8wFQ2+9NZwZ10GxTYC5hk0Fa+q8cSkr0tgvMhYhMHP/QC+WTgrePMDBWiWc/pV+1ik82Al20XOK25Gcw==", ++ "funding": [ ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/browserslist" ++ }, ++ { ++ "type": "tidelift", ++ "url": "https://tidelift.com/funding/github/npm/caniuse-lite" ++ }, ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/ai" ++ } ++ ] + }, +- "node_modules/astral-regex": { +- "version": "2.0.0", +- "dev": true, +- "license": "MIT", ++ "node_modules/chalk": { ++ "version": "4.1.2", ++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", ++ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", ++ "dependencies": { ++ "ansi-styles": "^4.1.0", ++ "supports-color": "^7.1.0" ++ }, + "engines": { +- "node": ">=8" ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, +- "node_modules/async": { +- "version": "3.2.5", +- "dev": true, +- "license": "MIT" ++ "node_modules/chardet": { ++ "version": "0.7.0", ++ "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", ++ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", ++ "dev": true + }, +- "node_modules/async-exit-hook": { +- "version": "2.0.1", +- "dev": true, +- "license": "MIT", ++ "node_modules/chokidar": { ++ "version": "3.6.0", ++ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", ++ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", ++ "dependencies": { ++ "anymatch": "~3.1.2", ++ "braces": "~3.0.2", ++ "glob-parent": "~5.1.2", ++ "is-binary-path": "~2.1.0", ++ "is-glob": "~4.0.1", ++ "normalize-path": "~3.0.0", ++ "readdirp": "~3.6.0" ++ }, + "engines": { +- "node": ">=0.12.0" ++ "node": ">= 8.10.0" ++ }, ++ "funding": { ++ "url": "https://paulmillr.com/funding/" ++ }, ++ "optionalDependencies": { ++ "fsevents": "~2.3.2" + } + }, +- "node_modules/asynckit": { +- "version": "0.4.0", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/at-least-node": { +- "version": "1.0.0", ++ "node_modules/chownr": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", ++ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, +- "license": "ISC", + "engines": { +- "node": ">= 4.0.0" ++ "node": ">=10" + } + }, +- "node_modules/atomically": { +- "version": "1.7.0", +- "license": "MIT", ++ "node_modules/chrome-trace-event": { ++ "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", ++ "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "engines": { +- "node": ">=10.12.0" ++ "node": ">=6.0" + } + }, +- "node_modules/available-typed-arrays": { +- "version": "1.0.5", ++ "node_modules/chromium-pickle-js": { ++ "version": "0.2.0", ++ "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", ++ "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==", ++ "dev": true ++ }, ++ "node_modules/ci-info": { ++ "version": "3.9.0", ++ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", ++ "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, +- "license": "MIT", ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/sibiraj-s" ++ } ++ ], + "engines": { +- "node": ">= 0.4" +- }, +- "funding": { +- "url": "https://github.com/sponsors/ljharb" ++ "node": ">=8" + } + }, +- "node_modules/babel-loader": { +- "version": "8.2.5", +- "license": "MIT", ++ "node_modules/clean-css": { ++ "version": "5.3.3", ++ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", ++ "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "dependencies": { +- "find-cache-dir": "^3.3.1", +- "loader-utils": "^2.0.0", +- "make-dir": "^3.1.0", +- "schema-utils": "^2.6.5" ++ "source-map": "~0.6.0" + }, + "engines": { +- "node": ">= 8.9" +- }, +- "peerDependencies": { +- "@babel/core": "^7.0.0", +- "webpack": ">=2" ++ "node": ">= 10.0" + } + }, +- "node_modules/babel-plugin-polyfill-corejs2": { +- "version": "0.2.3", ++ "node_modules/cli-cursor": { ++ "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", ++ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@babel/compat-data": "^7.13.11", +- "@babel/helper-define-polyfill-provider": "^0.2.4", +- "semver": "^6.1.1" ++ "restore-cursor": "^3.1.0" + }, +- "peerDependencies": { +- "@babel/core": "^7.0.0-0" ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/babel-plugin-polyfill-corejs3": { +- "version": "0.2.5", ++ "node_modules/cli-truncate": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", ++ "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, +- "license": "MIT", ++ "optional": true, + "dependencies": { +- "@babel/helper-define-polyfill-provider": "^0.2.2", +- "core-js-compat": "^3.16.2" ++ "slice-ansi": "^3.0.0", ++ "string-width": "^4.2.0" + }, +- "peerDependencies": { +- "@babel/core": "^7.0.0-0" ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/babel-plugin-polyfill-regenerator": { +- "version": "0.2.3", ++ "node_modules/cli-width": { ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", ++ "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@babel/helper-define-polyfill-provider": "^0.2.4" +- }, +- "peerDependencies": { +- "@babel/core": "^7.0.0-0" ++ "engines": { ++ "node": ">= 10" + } + }, +- "node_modules/balanced-match": { +- "version": "1.0.2", +- "license": "MIT" +- }, +- "node_modules/base64-js": { +- "version": "1.5.1", +- "funding": [ +- { +- "type": "github", +- "url": "https://github.com/sponsors/feross" +- }, +- { +- "type": "patreon", +- "url": "https://www.patreon.com/feross" +- }, +- { +- "type": "consulting", +- "url": "https://feross.org/support" +- } +- ], +- "license": "MIT" +- }, +- "node_modules/batch": { +- "version": "0.6.1", ++ "node_modules/cliui": { ++ "version": "8.0.1", ++ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", ++ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, +- "license": "MIT" +- }, +- "node_modules/bcrypt-pbkdf": { +- "version": "1.0.2", +- "license": "BSD-3-Clause", + "dependencies": { +- "tweetnacl": "^0.14.3" ++ "string-width": "^4.2.0", ++ "strip-ansi": "^6.0.1", ++ "wrap-ansi": "^7.0.0" ++ }, ++ "engines": { ++ "node": ">=12" + } + }, +- "node_modules/better-sqlite3": { +- "version": "10.0.0", +- "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-10.0.0.tgz", +- "integrity": "sha512-rOz0JY8bt9oMgrFssP7GnvA5R3yln73y/NizzWqy3WlFth8Ux8+g4r/N9fjX97nn4X1YX6MTER2doNpTu5pqiA==", +- "hasInstallScript": true, ++ "node_modules/cliui/node_modules/wrap-ansi": { ++ "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", ++ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", ++ "dev": true, + "dependencies": { +- "bindings": "^1.5.0", +- "prebuild-install": "^7.1.1" +- } +- }, +- "node_modules/big-integer": { +- "version": "1.6.52", +- "license": "Unlicense", ++ "ansi-styles": "^4.0.0", ++ "string-width": "^4.1.0", ++ "strip-ansi": "^6.0.0" ++ }, + "engines": { +- "node": ">=0.6" ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, +- "node_modules/big.js": { +- "version": "5.2.2", +- "license": "MIT", ++ "node_modules/clone-deep": { ++ "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", ++ "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", ++ "dependencies": { ++ "is-plain-object": "^2.0.4", ++ "kind-of": "^6.0.2", ++ "shallow-clone": "^3.0.0" ++ }, + "engines": { +- "node": "*" ++ "node": ">=6" + } + }, +- "node_modules/binary-extensions": { +- "version": "2.2.0", +- "license": "MIT", ++ "node_modules/clone-deep/node_modules/is-plain-object": { ++ "version": "2.0.4", ++ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", ++ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", ++ "dependencies": { ++ "isobject": "^3.0.1" ++ }, + "engines": { +- "node": ">=8" ++ "node": ">=0.10.0" + } + }, +- "node_modules/bindings": { +- "version": "1.5.0", +- "license": "MIT", ++ "node_modules/clone-response": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", ++ "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dependencies": { +- "file-uri-to-path": "1.0.0" ++ "mimic-response": "^1.0.0" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/bl": { +- "version": "4.1.0", +- "license": "MIT", ++ "node_modules/color-convert": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", ++ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { +- "buffer": "^5.5.0", +- "inherits": "^2.0.4", +- "readable-stream": "^3.4.0" ++ "color-name": "~1.1.4" ++ }, ++ "engines": { ++ "node": ">=7.0.0" + } + }, +- "node_modules/bluebird": { +- "version": "3.7.2", +- "dev": true, +- "license": "MIT" ++ "node_modules/color-name": { ++ "version": "1.1.4", ++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", ++ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, +- "node_modules/bluebird-lst": { +- "version": "1.0.9", ++ "node_modules/colord": { ++ "version": "2.9.3", ++ "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", ++ "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", ++ "dev": true ++ }, ++ "node_modules/colorette": { ++ "version": "2.0.20", ++ "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", ++ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" ++ }, ++ "node_modules/combined-stream": { ++ "version": "1.0.8", ++ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", ++ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "bluebird": "^3.5.5" ++ "delayed-stream": "~1.0.0" ++ }, ++ "engines": { ++ "node": ">= 0.8" + } + }, +- "node_modules/body-parser": { +- "version": "1.20.2", ++ "node_modules/commander": { ++ "version": "5.1.0", ++ "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", ++ "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "bytes": "3.1.2", +- "content-type": "~1.0.5", +- "debug": "2.6.9", +- "depd": "2.0.0", +- "destroy": "1.2.0", +- "http-errors": "2.0.0", +- "iconv-lite": "0.4.24", +- "on-finished": "2.4.1", +- "qs": "6.11.0", +- "raw-body": "2.5.2", +- "type-is": "~1.6.18", +- "unpipe": "1.0.0" +- }, + "engines": { +- "node": ">= 0.8", +- "npm": "1.2.8000 || >= 1.4.16" ++ "node": ">= 6" + } + }, +- "node_modules/body-parser/node_modules/bytes": { +- "version": "3.1.2", ++ "node_modules/commondir": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", ++ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" ++ }, ++ "node_modules/compare-func": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", ++ "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", ++ "dev": true, ++ "dependencies": { ++ "array-ify": "^1.0.0", ++ "dot-prop": "^5.1.0" ++ } ++ }, ++ "node_modules/compare-version": { ++ "version": "0.1.2", ++ "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", ++ "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">= 0.8" ++ "node": ">=0.10.0" + } + }, +- "node_modules/body-parser/node_modules/debug": { +- "version": "2.6.9", ++ "node_modules/compress-commons": { ++ "version": "4.1.2", ++ "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.2.tgz", ++ "integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==", + "dev": true, +- "license": "MIT", ++ "peer": true, + "dependencies": { +- "ms": "2.0.0" ++ "buffer-crc32": "^0.2.13", ++ "crc32-stream": "^4.0.2", ++ "normalize-path": "^3.0.0", ++ "readable-stream": "^3.6.0" ++ }, ++ "engines": { ++ "node": ">= 10" + } + }, +- "node_modules/body-parser/node_modules/iconv-lite": { +- "version": "0.4.24", ++ "node_modules/compressible": { ++ "version": "2.0.18", ++ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", ++ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "safer-buffer": ">= 2.1.2 < 3" ++ "mime-db": ">= 1.43.0 < 2" + }, + "engines": { +- "node": ">=0.10.0" ++ "node": ">= 0.6" + } + }, +- "node_modules/body-parser/node_modules/ms": { +- "version": "2.0.0", ++ "node_modules/compression": { ++ "version": "1.7.4", ++ "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", ++ "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, +- "license": "MIT" ++ "dependencies": { ++ "accepts": "~1.3.5", ++ "bytes": "3.0.0", ++ "compressible": "~2.0.16", ++ "debug": "2.6.9", ++ "on-headers": "~1.0.2", ++ "safe-buffer": "5.1.2", ++ "vary": "~1.1.2" ++ }, ++ "engines": { ++ "node": ">= 0.8.0" ++ } + }, +- "node_modules/bonjour-service": { +- "version": "1.1.1", ++ "node_modules/compression/node_modules/debug": { ++ "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "array-flatten": "^2.1.2", +- "dns-equal": "^1.0.0", +- "fast-deep-equal": "^3.1.3", +- "multicast-dns": "^7.2.5" ++ "ms": "2.0.0" + } + }, +- "node_modules/boolbase": { +- "version": "1.0.0", +- "license": "ISC" ++ "node_modules/compression/node_modules/ms": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", ++ "dev": true + }, +- "node_modules/boolean": { +- "version": "3.2.0", +- "license": "MIT", +- "optional": true ++ "node_modules/compression/node_modules/safe-buffer": { ++ "version": "5.1.2", ++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", ++ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", ++ "dev": true + }, +- "node_modules/brace-expansion": { +- "version": "2.0.1", ++ "node_modules/concat-map": { ++ "version": "0.0.1", ++ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", ++ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" ++ }, ++ "node_modules/concat-stream": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", ++ "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "dev": true, +- "license": "MIT", ++ "engines": [ ++ "node >= 6.0" ++ ], + "dependencies": { +- "balanced-match": "^1.0.0" ++ "buffer-from": "^1.0.0", ++ "inherits": "^2.0.3", ++ "readable-stream": "^3.0.2", ++ "typedarray": "^0.0.6" + } + }, +- "node_modules/braces": { +- "version": "3.0.2", +- "license": "MIT", ++ "node_modules/conf": { ++ "version": "10.2.0", ++ "resolved": "https://registry.npmjs.org/conf/-/conf-10.2.0.tgz", ++ "integrity": "sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==", + "dependencies": { +- "fill-range": "^7.0.1" ++ "ajv": "^8.6.3", ++ "ajv-formats": "^2.1.1", ++ "atomically": "^1.7.0", ++ "debounce-fn": "^4.0.0", ++ "dot-prop": "^6.0.1", ++ "env-paths": "^2.2.1", ++ "json-schema-typed": "^7.0.3", ++ "onetime": "^5.1.2", ++ "pkg-up": "^3.1.0", ++ "semver": "^7.3.5" + }, + "engines": { +- "node": ">=8" ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/browserslist": { +- "version": "4.22.1", +- "funding": [ +- { +- "type": "opencollective", +- "url": "https://opencollective.com/browserslist" +- }, +- { +- "type": "tidelift", +- "url": "https://tidelift.com/funding/github/npm/browserslist" +- }, +- { +- "type": "github", +- "url": "https://github.com/sponsors/ai" +- } +- ], +- "license": "MIT", ++ "node_modules/conf/node_modules/dot-prop": { ++ "version": "6.0.1", ++ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", ++ "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", + "dependencies": { +- "caniuse-lite": "^1.0.30001541", +- "electron-to-chromium": "^1.4.535", +- "node-releases": "^2.0.13", +- "update-browserslist-db": "^1.0.13" +- }, +- "bin": { +- "browserslist": "cli.js" ++ "is-obj": "^2.0.0" + }, + "engines": { +- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/buffer": { +- "version": "5.7.1", +- "funding": [ +- { +- "type": "github", +- "url": "https://github.com/sponsors/feross" +- }, +- { +- "type": "patreon", +- "url": "https://www.patreon.com/feross" +- }, +- { +- "type": "consulting", +- "url": "https://feross.org/support" +- } +- ], +- "license": "MIT", ++ "node_modules/conf/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "bin": { ++ "semver": "bin/semver.js" ++ }, ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/config-file-ts": { ++ "version": "0.2.6", ++ "resolved": "https://registry.npmjs.org/config-file-ts/-/config-file-ts-0.2.6.tgz", ++ "integrity": "sha512-6boGVaglwblBgJqGyxm4+xCmEGcWgnWHSWHY5jad58awQhB6gftq0G8HbzU39YqCIYHMLAiL1yjwiZ36m/CL8w==", ++ "dev": true, + "dependencies": { +- "base64-js": "^1.3.1", +- "ieee754": "^1.1.13" ++ "glob": "^10.3.10", ++ "typescript": "^5.3.3" + } + }, +- "node_modules/buffer-crc32": { +- "version": "0.2.13", +- "license": "MIT", +- "engines": { +- "node": "*" ++ "node_modules/config-file-ts/node_modules/glob": { ++ "version": "10.4.5", ++ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", ++ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", ++ "dev": true, ++ "dependencies": { ++ "foreground-child": "^3.1.0", ++ "jackspeak": "^3.1.2", ++ "minimatch": "^9.0.4", ++ "minipass": "^7.1.2", ++ "package-json-from-dist": "^1.0.0", ++ "path-scurry": "^1.11.1" ++ }, ++ "bin": { ++ "glob": "dist/esm/bin.mjs" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/isaacs" + } + }, +- "node_modules/buffer-equal": { +- "version": "1.0.1", ++ "node_modules/config-file-ts/node_modules/minimatch": { ++ "version": "9.0.5", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", ++ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "brace-expansion": "^2.0.1" ++ }, + "engines": { +- "node": ">=0.4" ++ "node": ">=16 || 14 >=14.17" + }, + "funding": { +- "url": "https://github.com/sponsors/ljharb" ++ "url": "https://github.com/sponsors/isaacs" + } + }, +- "node_modules/buffer-from": { +- "version": "1.1.2", +- "license": "MIT" ++ "node_modules/config-file-ts/node_modules/minipass": { ++ "version": "7.1.2", ++ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", ++ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", ++ "dev": true, ++ "engines": { ++ "node": ">=16 || 14 >=14.17" ++ } + }, +- "node_modules/buildcheck": { +- "version": "0.0.6", ++ "node_modules/config-file-ts/node_modules/typescript": { ++ "version": "5.5.4", ++ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", ++ "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", ++ "dev": true, ++ "bin": { ++ "tsc": "bin/tsc", ++ "tsserver": "bin/tsserver" ++ }, + "engines": { +- "node": ">=10.0.0" ++ "node": ">=14.17" + } + }, +- "node_modules/builder-util": { +- "version": "24.13.1", ++ "node_modules/connect-history-api-fallback": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", ++ "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@types/debug": "^4.1.6", +- "7zip-bin": "~5.2.0", +- "app-builder-bin": "4.0.0", +- "bluebird-lst": "^1.0.9", +- "builder-util-runtime": "9.2.4", +- "chalk": "^4.1.2", +- "cross-spawn": "^7.0.3", +- "debug": "^4.3.4", +- "fs-extra": "^10.1.0", +- "http-proxy-agent": "^5.0.0", +- "https-proxy-agent": "^5.0.1", +- "is-ci": "^3.0.0", +- "js-yaml": "^4.1.0", +- "source-map-support": "^0.5.19", +- "stat-mode": "^1.0.0", +- "temp-file": "^3.4.0" ++ "engines": { ++ "node": ">=0.8" + } + }, +- "node_modules/builder-util-runtime": { +- "version": "9.2.4", ++ "node_modules/content-disposition": { ++ "version": "0.5.4", ++ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", ++ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "debug": "^4.3.4", +- "sax": "^1.2.4" ++ "safe-buffer": "5.2.1" + }, + "engines": { +- "node": ">=12.0.0" ++ "node": ">= 0.6" + } + }, +- "node_modules/builder-util/node_modules/fs-extra": { +- "version": "10.1.0", ++ "node_modules/content-type": { ++ "version": "1.0.5", ++ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", ++ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", ++ "dev": true, ++ "engines": { ++ "node": ">= 0.6" ++ } ++ }, ++ "node_modules/conventional-changelog": { ++ "version": "3.1.24", ++ "resolved": "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.24.tgz", ++ "integrity": "sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" ++ "conventional-changelog-angular": "^5.0.12", ++ "conventional-changelog-atom": "^2.0.8", ++ "conventional-changelog-codemirror": "^2.0.8", ++ "conventional-changelog-conventionalcommits": "^4.5.0", ++ "conventional-changelog-core": "^4.2.1", ++ "conventional-changelog-ember": "^2.0.9", ++ "conventional-changelog-eslint": "^3.0.9", ++ "conventional-changelog-express": "^2.0.6", ++ "conventional-changelog-jquery": "^3.0.11", ++ "conventional-changelog-jshint": "^2.0.9", ++ "conventional-changelog-preset-loader": "^2.3.4" + }, + "engines": { +- "node": ">=12" ++ "node": ">=10" + } + }, +- "node_modules/builder-util/node_modules/jsonfile": { +- "version": "6.1.0", ++ "node_modules/conventional-changelog-angular": { ++ "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", ++ "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "universalify": "^2.0.0" ++ "compare-func": "^2.0.0" + }, +- "optionalDependencies": { +- "graceful-fs": "^4.1.6" ++ "engines": { ++ "node": ">=16" + } + }, +- "node_modules/builder-util/node_modules/universalify": { +- "version": "2.0.1", ++ "node_modules/conventional-changelog-atom": { ++ "version": "2.0.8", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz", ++ "integrity": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "q": "^1.5.1" ++ }, + "engines": { +- "node": ">= 10.0.0" ++ "node": ">=10" + } + }, +- "node_modules/bytes": { +- "version": "3.0.0", ++ "node_modules/conventional-changelog-codemirror": { ++ "version": "2.0.8", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz", ++ "integrity": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "q": "^1.5.1" ++ }, + "engines": { +- "node": ">= 0.8" ++ "node": ">=10" + } + }, +- "node_modules/cacheable-lookup": { +- "version": "5.0.4", +- "license": "MIT", ++ "node_modules/conventional-changelog-config-spec": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz", ++ "integrity": "sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==", ++ "dev": true ++ }, ++ "node_modules/conventional-changelog-conventionalcommits": { ++ "version": "7.0.2", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz", ++ "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==", ++ "dev": true, ++ "dependencies": { ++ "compare-func": "^2.0.0" ++ }, + "engines": { +- "node": ">=10.6.0" ++ "node": ">=16" + } + }, +- "node_modules/cacheable-request": { +- "version": "7.0.4", +- "license": "MIT", ++ "node_modules/conventional-changelog-core": { ++ "version": "4.2.4", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz", ++ "integrity": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==", ++ "dev": true, + "dependencies": { +- "clone-response": "^1.0.2", +- "get-stream": "^5.1.0", +- "http-cache-semantics": "^4.0.0", +- "keyv": "^4.0.0", +- "lowercase-keys": "^2.0.0", +- "normalize-url": "^6.0.1", +- "responselike": "^2.0.0" ++ "add-stream": "^1.0.0", ++ "conventional-changelog-writer": "^5.0.0", ++ "conventional-commits-parser": "^3.2.0", ++ "dateformat": "^3.0.0", ++ "get-pkg-repo": "^4.0.0", ++ "git-raw-commits": "^2.0.8", ++ "git-remote-origin-url": "^2.0.0", ++ "git-semver-tags": "^4.1.1", ++ "lodash": "^4.17.15", ++ "normalize-package-data": "^3.0.0", ++ "q": "^1.5.1", ++ "read-pkg": "^3.0.0", ++ "read-pkg-up": "^3.0.0", ++ "through2": "^4.0.0" + }, + "engines": { +- "node": ">=8" ++ "node": ">=10" + } + }, +- "node_modules/call-bind": { +- "version": "1.0.5", ++ "node_modules/conventional-changelog-core/node_modules/conventional-commits-parser": { ++ "version": "3.2.4", ++ "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", ++ "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "function-bind": "^1.1.2", +- "get-intrinsic": "^1.2.1", +- "set-function-length": "^1.1.1" ++ "is-text-path": "^1.0.1", ++ "JSONStream": "^1.0.4", ++ "lodash": "^4.17.15", ++ "meow": "^8.0.0", ++ "split2": "^3.0.0", ++ "through2": "^4.0.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/ljharb" ++ "bin": { ++ "conventional-commits-parser": "cli.js" ++ }, ++ "engines": { ++ "node": ">=10" + } + }, +- "node_modules/callsites": { +- "version": "3.1.0", ++ "node_modules/conventional-changelog-core/node_modules/dargs": { ++ "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", ++ "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=6" ++ "node": ">=8" + } + }, +- "node_modules/camel-case": { +- "version": "4.1.2", +- "license": "MIT", ++ "node_modules/conventional-changelog-core/node_modules/find-up": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", ++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", ++ "dev": true, + "dependencies": { +- "pascal-case": "^3.1.2", +- "tslib": "^2.0.3" ++ "locate-path": "^5.0.0", ++ "path-exists": "^4.0.0" ++ }, ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/camelcase": { +- "version": "5.3.1", ++ "node_modules/conventional-changelog-core/node_modules/git-raw-commits": { ++ "version": "2.0.11", ++ "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", ++ "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "dargs": "^7.0.0", ++ "lodash": "^4.17.15", ++ "meow": "^8.0.0", ++ "split2": "^3.0.0", ++ "through2": "^4.0.0" ++ }, ++ "bin": { ++ "git-raw-commits": "cli.js" ++ }, + "engines": { +- "node": ">=6" ++ "node": ">=10" + } + }, +- "node_modules/camelcase-keys": { +- "version": "6.2.2", ++ "node_modules/conventional-changelog-core/node_modules/is-text-path": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", ++ "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "camelcase": "^5.3.1", +- "map-obj": "^4.0.0", +- "quick-lru": "^4.0.1" ++ "text-extensions": "^1.0.0" + }, + "engines": { +- "node": ">=8" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">=0.10.0" + } + }, +- "node_modules/camelcase-keys/node_modules/quick-lru": { +- "version": "4.0.1", ++ "node_modules/conventional-changelog-core/node_modules/locate-path": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "p-locate": "^4.1.0" ++ }, + "engines": { + "node": ">=8" + } + }, +- "node_modules/caniuse-lite": { +- "version": "1.0.30001564", +- "funding": [ +- { +- "type": "opencollective", +- "url": "https://opencollective.com/browserslist" +- }, +- { +- "type": "tidelift", +- "url": "https://tidelift.com/funding/github/npm/caniuse-lite" +- }, +- { +- "type": "github", +- "url": "https://github.com/sponsors/ai" +- } +- ], +- "license": "CC-BY-4.0" +- }, +- "node_modules/chalk": { +- "version": "4.1.2", +- "license": "MIT", ++ "node_modules/conventional-changelog-core/node_modules/meow": { ++ "version": "8.1.2", ++ "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", ++ "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", ++ "dev": true, + "dependencies": { +- "ansi-styles": "^4.1.0", +- "supports-color": "^7.1.0" ++ "@types/minimist": "^1.2.0", ++ "camelcase-keys": "^6.2.2", ++ "decamelize-keys": "^1.1.0", ++ "hard-rejection": "^2.1.0", ++ "minimist-options": "4.1.0", ++ "normalize-package-data": "^3.0.0", ++ "read-pkg-up": "^7.0.1", ++ "redent": "^3.0.0", ++ "trim-newlines": "^3.0.0", ++ "type-fest": "^0.18.0", ++ "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { +- "url": "https://github.com/chalk/chalk?sponsor=1" ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/chardet": { +- "version": "0.7.0", +- "dev": true, +- "license": "MIT" ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/hosted-git-info": { ++ "version": "2.8.9", ++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", ++ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", ++ "dev": true + }, +- "node_modules/chokidar": { +- "version": "3.5.3", +- "funding": [ +- { +- "type": "individual", +- "url": "https://paulmillr.com/funding/" +- } +- ], +- "license": "MIT", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", ++ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", ++ "dev": true, + "dependencies": { +- "anymatch": "~3.1.2", +- "braces": "~3.0.2", +- "glob-parent": "~5.1.2", +- "is-binary-path": "~2.1.0", +- "is-glob": "~4.0.1", +- "normalize-path": "~3.0.0", +- "readdirp": "~3.6.0" ++ "@types/normalize-package-data": "^2.4.0", ++ "normalize-package-data": "^2.5.0", ++ "parse-json": "^5.0.0", ++ "type-fest": "^0.6.0" + }, + "engines": { +- "node": ">= 8.10.0" +- }, +- "optionalDependencies": { +- "fsevents": "~2.3.2" ++ "node": ">=8" + } + }, +- "node_modules/chownr": { +- "version": "2.0.0", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg-up": { ++ "version": "7.0.1", ++ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", ++ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, +- "license": "ISC", ++ "dependencies": { ++ "find-up": "^4.1.0", ++ "read-pkg": "^5.2.0", ++ "type-fest": "^0.8.1" ++ }, + "engines": { +- "node": ">=10" ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/chrome-trace-event": { +- "version": "1.0.3", +- "license": "MIT", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { ++ "version": "0.8.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", ++ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", ++ "dev": true, + "engines": { +- "node": ">=6.0" ++ "node": ">=8" + } + }, +- "node_modules/chromium-pickle-js": { +- "version": "0.2.0", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { ++ "version": "2.5.0", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", ++ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, +- "license": "MIT" ++ "dependencies": { ++ "hosted-git-info": "^2.1.4", ++ "resolve": "^1.10.0", ++ "semver": "2 || 3 || 4 || 5", ++ "validate-npm-package-license": "^3.0.1" ++ } + }, +- "node_modules/ci-info": { +- "version": "3.9.0", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { ++ "version": "0.6.0", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", ++ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, +- "funding": [ +- { +- "type": "github", +- "url": "https://github.com/sponsors/sibiraj-s" +- } +- ], +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, +- "node_modules/clean-css": { +- "version": "5.3.2", +- "license": "MIT", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/semver": { ++ "version": "5.7.2", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", ++ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", ++ "dev": true, ++ "bin": { ++ "semver": "bin/semver" ++ } ++ }, ++ "node_modules/conventional-changelog-core/node_modules/normalize-package-data": { ++ "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", ++ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", ++ "dev": true, + "dependencies": { +- "source-map": "~0.6.0" ++ "hosted-git-info": "^4.0.1", ++ "is-core-module": "^2.5.0", ++ "semver": "^7.3.4", ++ "validate-npm-package-license": "^3.0.1" + }, + "engines": { +- "node": ">= 10.0" ++ "node": ">=10" + } + }, +- "node_modules/cli-cursor": { +- "version": "3.1.0", ++ "node_modules/conventional-changelog-core/node_modules/p-limit": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "restore-cursor": "^3.1.0" ++ "p-try": "^2.0.0" + }, + "engines": { +- "node": ">=8" ++ "node": ">=6" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/cli-width": { +- "version": "3.0.0", ++ "node_modules/conventional-changelog-core/node_modules/p-locate": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", ++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, +- "license": "ISC", ++ "dependencies": { ++ "p-limit": "^2.2.0" ++ }, + "engines": { +- "node": ">= 10" ++ "node": ">=8" + } + }, +- "node_modules/cliui": { +- "version": "6.0.0", ++ "node_modules/conventional-changelog-core/node_modules/parse-json": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", ++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "string-width": "^4.2.0", +- "strip-ansi": "^6.0.0", +- "wrap-ansi": "^6.2.0" ++ "@babel/code-frame": "^7.0.0", ++ "error-ex": "^1.3.1", ++ "json-parse-even-better-errors": "^2.3.0", ++ "lines-and-columns": "^1.1.6" ++ }, ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/cliui/node_modules/wrap-ansi": { +- "version": "6.2.0", ++ "node_modules/conventional-changelog-core/node_modules/path-exists": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- }, + "engines": { + "node": ">=8" + } + }, +- "node_modules/clone-deep": { +- "version": "4.0.1", +- "license": "MIT", +- "dependencies": { +- "is-plain-object": "^2.0.4", +- "kind-of": "^6.0.2", +- "shallow-clone": "^3.0.0" ++ "node_modules/conventional-changelog-core/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "dev": true, ++ "bin": { ++ "semver": "bin/semver.js" + }, + "engines": { +- "node": ">=6" ++ "node": ">=10" + } + }, +- "node_modules/clone-deep/node_modules/is-plain-object": { +- "version": "2.0.4", +- "license": "MIT", ++ "node_modules/conventional-changelog-core/node_modules/split2": { ++ "version": "3.2.2", ++ "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", ++ "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", ++ "dev": true, + "dependencies": { +- "isobject": "^3.0.1" +- }, ++ "readable-stream": "^3.0.0" ++ } ++ }, ++ "node_modules/conventional-changelog-core/node_modules/text-extensions": { ++ "version": "1.9.0", ++ "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", ++ "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", ++ "dev": true, + "engines": { +- "node": ">=0.10.0" ++ "node": ">=0.10" + } + }, +- "node_modules/clone-response": { +- "version": "1.0.3", +- "license": "MIT", +- "dependencies": { +- "mimic-response": "^1.0.0" ++ "node_modules/conventional-changelog-core/node_modules/type-fest": { ++ "version": "0.18.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", ++ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", ++ "dev": true, ++ "engines": { ++ "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/color-convert": { +- "version": "2.0.1", +- "license": "MIT", +- "dependencies": { +- "color-name": "~1.1.4" +- }, ++ "node_modules/conventional-changelog-core/node_modules/yargs-parser": { ++ "version": "20.2.9", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", ++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", ++ "dev": true, + "engines": { +- "node": ">=7.0.0" ++ "node": ">=10" + } + }, +- "node_modules/color-name": { +- "version": "1.1.4", +- "license": "MIT" +- }, +- "node_modules/colord": { +- "version": "2.9.3", ++ "node_modules/conventional-changelog-ember": { ++ "version": "2.0.9", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz", ++ "integrity": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==", + "dev": true, +- "license": "MIT" +- }, +- "node_modules/colorette": { +- "version": "2.0.20", +- "license": "MIT" ++ "dependencies": { ++ "q": "^1.5.1" ++ }, ++ "engines": { ++ "node": ">=10" ++ } + }, +- "node_modules/combined-stream": { +- "version": "1.0.8", ++ "node_modules/conventional-changelog-eslint": { ++ "version": "3.0.9", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz", ++ "integrity": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "delayed-stream": "~1.0.0" ++ "q": "^1.5.1" + }, + "engines": { +- "node": ">= 0.8" ++ "node": ">=10" + } + }, +- "node_modules/commander": { +- "version": "5.1.0", ++ "node_modules/conventional-changelog-express": { ++ "version": "2.0.6", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz", ++ "integrity": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "q": "^1.5.1" ++ }, + "engines": { +- "node": ">= 6" ++ "node": ">=10" + } + }, +- "node_modules/commondir": { +- "version": "1.0.1", +- "license": "MIT" +- }, +- "node_modules/compare-func": { +- "version": "2.0.0", ++ "node_modules/conventional-changelog-jquery": { ++ "version": "3.0.11", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz", ++ "integrity": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "array-ify": "^1.0.0", +- "dot-prop": "^5.1.0" ++ "q": "^1.5.1" ++ }, ++ "engines": { ++ "node": ">=10" + } + }, +- "node_modules/compare-func/node_modules/dot-prop": { +- "version": "5.3.0", ++ "node_modules/conventional-changelog-jshint": { ++ "version": "2.0.9", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz", ++ "integrity": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "is-obj": "^2.0.0" ++ "compare-func": "^2.0.0", ++ "q": "^1.5.1" + }, + "engines": { +- "node": ">=8" ++ "node": ">=10" + } + }, +- "node_modules/compare-version": { +- "version": "0.1.2", ++ "node_modules/conventional-changelog-preset-loader": { ++ "version": "2.3.4", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz", ++ "integrity": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=0.10.0" ++ "node": ">=10" + } + }, +- "node_modules/compress-commons": { +- "version": "4.1.2", ++ "node_modules/conventional-changelog-writer": { ++ "version": "5.0.1", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz", ++ "integrity": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==", + "dev": true, +- "license": "MIT", +- "peer": true, + "dependencies": { +- "buffer-crc32": "^0.2.13", +- "crc32-stream": "^4.0.2", +- "normalize-path": "^3.0.0", +- "readable-stream": "^3.6.0" ++ "conventional-commits-filter": "^2.0.7", ++ "dateformat": "^3.0.0", ++ "handlebars": "^4.7.7", ++ "json-stringify-safe": "^5.0.1", ++ "lodash": "^4.17.15", ++ "meow": "^8.0.0", ++ "semver": "^6.0.0", ++ "split": "^1.0.0", ++ "through2": "^4.0.0" ++ }, ++ "bin": { ++ "conventional-changelog-writer": "cli.js" + }, + "engines": { +- "node": ">= 10" ++ "node": ">=10" + } + }, +- "node_modules/compressible": { +- "version": "2.0.18", ++ "node_modules/conventional-changelog-writer/node_modules/find-up": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", ++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "mime-db": ">= 1.43.0 < 2" ++ "locate-path": "^5.0.0", ++ "path-exists": "^4.0.0" + }, + "engines": { +- "node": ">= 0.6" ++ "node": ">=8" + } + }, +- "node_modules/compression": { +- "version": "1.7.4", ++ "node_modules/conventional-changelog-writer/node_modules/locate-path": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "accepts": "~1.3.5", +- "bytes": "3.0.0", +- "compressible": "~2.0.16", +- "debug": "2.6.9", +- "on-headers": "~1.0.2", +- "safe-buffer": "5.1.2", +- "vary": "~1.1.2" ++ "p-locate": "^4.1.0" + }, + "engines": { +- "node": ">= 0.8.0" ++ "node": ">=8" + } + }, +- "node_modules/compression/node_modules/debug": { +- "version": "2.6.9", ++ "node_modules/conventional-changelog-writer/node_modules/meow": { ++ "version": "8.1.2", ++ "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", ++ "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "ms": "2.0.0" ++ "@types/minimist": "^1.2.0", ++ "camelcase-keys": "^6.2.2", ++ "decamelize-keys": "^1.1.0", ++ "hard-rejection": "^2.1.0", ++ "minimist-options": "4.1.0", ++ "normalize-package-data": "^3.0.0", ++ "read-pkg-up": "^7.0.1", ++ "redent": "^3.0.0", ++ "trim-newlines": "^3.0.0", ++ "type-fest": "^0.18.0", ++ "yargs-parser": "^20.2.3" ++ }, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/compression/node_modules/ms": { +- "version": "2.0.0", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/compression/node_modules/safe-buffer": { +- "version": "5.1.2", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/concat-map": { +- "version": "0.0.1", +- "license": "MIT" +- }, +- "node_modules/concat-stream": { +- "version": "2.0.0", ++ "node_modules/conventional-changelog-writer/node_modules/normalize-package-data": { ++ "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", ++ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, +- "engines": [ +- "node >= 6.0" +- ], +- "license": "MIT", + "dependencies": { +- "buffer-from": "^1.0.0", +- "inherits": "^2.0.3", +- "readable-stream": "^3.0.2", +- "typedarray": "^0.0.6" ++ "hosted-git-info": "^4.0.1", ++ "is-core-module": "^2.5.0", ++ "semver": "^7.3.4", ++ "validate-npm-package-license": "^3.0.1" ++ }, ++ "engines": { ++ "node": ">=10" + } + }, +- "node_modules/conf": { +- "version": "10.2.0", +- "license": "MIT", +- "dependencies": { +- "ajv": "^8.6.3", +- "ajv-formats": "^2.1.1", +- "atomically": "^1.7.0", +- "debounce-fn": "^4.0.0", +- "dot-prop": "^6.0.1", +- "env-paths": "^2.2.1", +- "json-schema-typed": "^7.0.3", +- "onetime": "^5.1.2", +- "pkg-up": "^3.1.0", +- "semver": "^7.3.5" ++ "node_modules/conventional-changelog-writer/node_modules/normalize-package-data/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "dev": true, ++ "bin": { ++ "semver": "bin/semver.js" + }, + "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">=10" + } + }, +- "node_modules/conf/node_modules/ajv": { +- "version": "8.12.0", +- "license": "MIT", ++ "node_modules/conventional-changelog-writer/node_modules/p-limit": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", ++ "dev": true, + "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" ++ "p-try": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=6" + }, + "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/conf/node_modules/json-schema-traverse": { +- "version": "1.0.0", +- "license": "MIT" +- }, +- "node_modules/conf/node_modules/lru-cache": { +- "version": "6.0.0", +- "license": "ISC", ++ "node_modules/conventional-changelog-writer/node_modules/p-locate": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", ++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", ++ "dev": true, + "dependencies": { +- "yallist": "^4.0.0" ++ "p-limit": "^2.2.0" + }, + "engines": { +- "node": ">=10" ++ "node": ">=8" + } + }, +- "node_modules/conf/node_modules/semver": { +- "version": "7.5.4", +- "license": "ISC", ++ "node_modules/conventional-changelog-writer/node_modules/parse-json": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", ++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", ++ "dev": true, + "dependencies": { +- "lru-cache": "^6.0.0" +- }, +- "bin": { +- "semver": "bin/semver.js" ++ "@babel/code-frame": "^7.0.0", ++ "error-ex": "^1.3.1", ++ "json-parse-even-better-errors": "^2.3.0", ++ "lines-and-columns": "^1.1.6" + }, + "engines": { +- "node": ">=10" ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/conf/node_modules/yallist": { ++ "node_modules/conventional-changelog-writer/node_modules/path-exists": { + "version": "4.0.0", +- "license": "ISC" +- }, +- "node_modules/config-file-ts": { +- "version": "0.2.6", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "glob": "^10.3.10", +- "typescript": "^5.3.3" ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/config-file-ts/node_modules/glob": { +- "version": "10.3.15", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", ++ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "foreground-child": "^3.1.0", +- "jackspeak": "^2.3.6", +- "minimatch": "^9.0.1", +- "minipass": "^7.0.4", +- "path-scurry": "^1.11.0" +- }, +- "bin": { +- "glob": "dist/esm/bin.mjs" ++ "@types/normalize-package-data": "^2.4.0", ++ "normalize-package-data": "^2.5.0", ++ "parse-json": "^5.0.0", ++ "type-fest": "^0.6.0" + }, + "engines": { +- "node": ">=16 || 14 >=14.18" +- }, +- "funding": { +- "url": "https://github.com/sponsors/isaacs" ++ "node": ">=8" + } + }, +- "node_modules/config-file-ts/node_modules/minimatch": { +- "version": "9.0.4", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg-up": { ++ "version": "7.0.1", ++ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", ++ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "brace-expansion": "^2.0.1" ++ "find-up": "^4.1.0", ++ "read-pkg": "^5.2.0", ++ "type-fest": "^0.8.1" + }, + "engines": { +- "node": ">=16 || 14 >=14.17" ++ "node": ">=8" + }, + "funding": { +- "url": "https://github.com/sponsors/isaacs" ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/config-file-ts/node_modules/minipass": { +- "version": "7.1.1", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg-up/node_modules/type-fest": { ++ "version": "0.8.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", ++ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, +- "license": "ISC", + "engines": { +- "node": ">=16 || 14 >=14.17" ++ "node": ">=8" + } + }, +- "node_modules/config-file-ts/node_modules/typescript": { +- "version": "5.4.5", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/hosted-git-info": { ++ "version": "2.8.9", ++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", ++ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", ++ "dev": true ++ }, ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/normalize-package-data": { ++ "version": "2.5.0", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", ++ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", ++ "dev": true, ++ "dependencies": { ++ "hosted-git-info": "^2.1.4", ++ "resolve": "^1.10.0", ++ "semver": "2 || 3 || 4 || 5", ++ "validate-npm-package-license": "^3.0.1" ++ } ++ }, ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/semver": { ++ "version": "5.7.2", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", ++ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, +- "license": "Apache-2.0", + "bin": { +- "tsc": "bin/tsc", +- "tsserver": "bin/tsserver" +- }, ++ "semver": "bin/semver" ++ } ++ }, ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/type-fest": { ++ "version": "0.6.0", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", ++ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", ++ "dev": true, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/conventional-changelog-writer/node_modules/type-fest": { ++ "version": "0.18.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", ++ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", ++ "dev": true, + "engines": { +- "node": ">=14.17" ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/connect-history-api-fallback": { +- "version": "2.0.0", ++ "node_modules/conventional-changelog-writer/node_modules/yargs-parser": { ++ "version": "20.2.9", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", ++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=0.8" ++ "node": ">=10" + } + }, +- "node_modules/content-disposition": { +- "version": "0.5.4", ++ "node_modules/conventional-changelog/node_modules/conventional-changelog-angular": { ++ "version": "5.0.13", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", ++ "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "safe-buffer": "5.2.1" ++ "compare-func": "^2.0.0", ++ "q": "^1.5.1" + }, + "engines": { +- "node": ">= 0.6" ++ "node": ">=10" + } + }, +- "node_modules/content-type": { +- "version": "1.0.5", ++ "node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits": { ++ "version": "4.6.3", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz", ++ "integrity": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==", + "dev": true, +- "license": "MIT", ++ "dependencies": { ++ "compare-func": "^2.0.0", ++ "lodash": "^4.17.15", ++ "q": "^1.5.1" ++ }, + "engines": { +- "node": ">= 0.6" ++ "node": ">=10" + } + }, +- "node_modules/conventional-changelog": { +- "version": "3.1.24", ++ "node_modules/conventional-commits-filter": { ++ "version": "2.0.7", ++ "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", ++ "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "conventional-changelog-angular": "^5.0.12", +- "conventional-changelog-atom": "^2.0.8", +- "conventional-changelog-codemirror": "^2.0.8", +- "conventional-changelog-conventionalcommits": "^4.5.0", +- "conventional-changelog-core": "^4.2.1", +- "conventional-changelog-ember": "^2.0.9", +- "conventional-changelog-eslint": "^3.0.9", +- "conventional-changelog-express": "^2.0.6", +- "conventional-changelog-jquery": "^3.0.11", +- "conventional-changelog-jshint": "^2.0.9", +- "conventional-changelog-preset-loader": "^2.3.4" ++ "lodash.ismatch": "^4.4.0", ++ "modify-values": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-changelog-angular": { +- "version": "5.0.13", ++ "node_modules/conventional-commits-parser": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", ++ "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "compare-func": "^2.0.0", +- "q": "^1.5.1" ++ "is-text-path": "^2.0.0", ++ "JSONStream": "^1.3.5", ++ "meow": "^12.0.1", ++ "split2": "^4.0.0" ++ }, ++ "bin": { ++ "conventional-commits-parser": "cli.mjs" + }, + "engines": { +- "node": ">=10" ++ "node": ">=16" + } + }, +- "node_modules/conventional-changelog-atom": { +- "version": "2.0.8", ++ "node_modules/conventional-recommended-bump": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz", ++ "integrity": "sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==", + "dev": true, +- "license": "ISC", + "dependencies": { ++ "concat-stream": "^2.0.0", ++ "conventional-changelog-preset-loader": "^2.3.4", ++ "conventional-commits-filter": "^2.0.7", ++ "conventional-commits-parser": "^3.2.0", ++ "git-raw-commits": "^2.0.8", ++ "git-semver-tags": "^4.1.1", ++ "meow": "^8.0.0", + "q": "^1.5.1" + }, ++ "bin": { ++ "conventional-recommended-bump": "cli.js" ++ }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-changelog-codemirror": { +- "version": "2.0.8", ++ "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser": { ++ "version": "3.2.4", ++ "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", ++ "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "q": "^1.5.1" ++ "is-text-path": "^1.0.1", ++ "JSONStream": "^1.0.4", ++ "lodash": "^4.17.15", ++ "meow": "^8.0.0", ++ "split2": "^3.0.0", ++ "through2": "^4.0.0" ++ }, ++ "bin": { ++ "conventional-commits-parser": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-changelog-config-spec": { +- "version": "2.1.0", ++ "node_modules/conventional-recommended-bump/node_modules/dargs": { ++ "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", ++ "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "dev": true, +- "license": "MIT" ++ "engines": { ++ "node": ">=8" ++ } + }, +- "node_modules/conventional-changelog-conventionalcommits": { +- "version": "4.6.1", ++ "node_modules/conventional-recommended-bump/node_modules/find-up": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", ++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "compare-func": "^2.0.0", +- "lodash": "^4.17.15", +- "q": "^1.5.1" ++ "locate-path": "^5.0.0", ++ "path-exists": "^4.0.0" + }, + "engines": { +- "node": ">=10" ++ "node": ">=8" + } + }, +- "node_modules/conventional-changelog-core": { +- "version": "4.2.4", ++ "node_modules/conventional-recommended-bump/node_modules/git-raw-commits": { ++ "version": "2.0.11", ++ "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", ++ "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "add-stream": "^1.0.0", +- "conventional-changelog-writer": "^5.0.0", +- "conventional-commits-parser": "^3.2.0", +- "dateformat": "^3.0.0", +- "get-pkg-repo": "^4.0.0", +- "git-raw-commits": "^2.0.8", +- "git-remote-origin-url": "^2.0.0", +- "git-semver-tags": "^4.1.1", ++ "dargs": "^7.0.0", + "lodash": "^4.17.15", +- "normalize-package-data": "^3.0.0", +- "q": "^1.5.1", +- "read-pkg": "^3.0.0", +- "read-pkg-up": "^3.0.0", ++ "meow": "^8.0.0", ++ "split2": "^3.0.0", + "through2": "^4.0.0" + }, ++ "bin": { ++ "git-raw-commits": "cli.js" ++ }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-changelog-core/node_modules/lru-cache": { +- "version": "6.0.0", ++ "node_modules/conventional-recommended-bump/node_modules/is-text-path": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", ++ "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "yallist": "^4.0.0" ++ "text-extensions": "^1.0.0" ++ }, ++ "engines": { ++ "node": ">=0.10.0" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/locate-path": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", ++ "dev": true, ++ "dependencies": { ++ "p-locate": "^4.1.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/meow": { ++ "version": "8.1.2", ++ "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", ++ "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", ++ "dev": true, ++ "dependencies": { ++ "@types/minimist": "^1.2.0", ++ "camelcase-keys": "^6.2.2", ++ "decamelize-keys": "^1.1.0", ++ "hard-rejection": "^2.1.0", ++ "minimist-options": "4.1.0", ++ "normalize-package-data": "^3.0.0", ++ "read-pkg-up": "^7.0.1", ++ "redent": "^3.0.0", ++ "trim-newlines": "^3.0.0", ++ "type-fest": "^0.18.0", ++ "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/conventional-changelog-core/node_modules/normalize-package-data": { ++ "node_modules/conventional-recommended-bump/node_modules/normalize-package-data": { + "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", ++ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", +@@ -6126,195 +6930,216 @@ + "node": ">=10" + } + }, +- "node_modules/conventional-changelog-core/node_modules/semver": { +- "version": "7.5.4", ++ "node_modules/conventional-recommended-bump/node_modules/p-limit": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "lru-cache": "^6.0.0" +- }, +- "bin": { +- "semver": "bin/semver.js" ++ "p-try": "^2.0.0" + }, + "engines": { +- "node": ">=10" ++ "node": ">=6" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/conventional-changelog-core/node_modules/yallist": { +- "version": "4.0.0", +- "dev": true, +- "license": "ISC" +- }, +- "node_modules/conventional-changelog-ember": { +- "version": "2.0.9", ++ "node_modules/conventional-recommended-bump/node_modules/p-locate": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", ++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "q": "^1.5.1" ++ "p-limit": "^2.2.0" + }, + "engines": { +- "node": ">=10" ++ "node": ">=8" + } + }, +- "node_modules/conventional-changelog-eslint": { +- "version": "3.0.9", ++ "node_modules/conventional-recommended-bump/node_modules/parse-json": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", ++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "q": "^1.5.1" ++ "@babel/code-frame": "^7.0.0", ++ "error-ex": "^1.3.1", ++ "json-parse-even-better-errors": "^2.3.0", ++ "lines-and-columns": "^1.1.6" + }, + "engines": { +- "node": ">=10" ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/conventional-changelog-express": { +- "version": "2.0.6", ++ "node_modules/conventional-recommended-bump/node_modules/path-exists": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "q": "^1.5.1" +- }, + "engines": { +- "node": ">=10" ++ "node": ">=8" + } + }, +- "node_modules/conventional-changelog-jquery": { +- "version": "3.0.11", ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", ++ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "q": "^1.5.1" ++ "@types/normalize-package-data": "^2.4.0", ++ "normalize-package-data": "^2.5.0", ++ "parse-json": "^5.0.0", ++ "type-fest": "^0.6.0" + }, + "engines": { +- "node": ">=10" ++ "node": ">=8" + } + }, +- "node_modules/conventional-changelog-jshint": { +- "version": "2.0.9", ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg-up": { ++ "version": "7.0.1", ++ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", ++ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "compare-func": "^2.0.0", +- "q": "^1.5.1" ++ "find-up": "^4.1.0", ++ "read-pkg": "^5.2.0", ++ "type-fest": "^0.8.1" + }, + "engines": { +- "node": ">=10" ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/conventional-changelog-preset-loader": { +- "version": "2.3.4", ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg-up/node_modules/type-fest": { ++ "version": "0.8.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", ++ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=10" ++ "node": ">=8" + } + }, +- "node_modules/conventional-changelog-writer": { +- "version": "5.0.1", ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg/node_modules/hosted-git-info": { ++ "version": "2.8.9", ++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", ++ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", ++ "dev": true ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg/node_modules/normalize-package-data": { ++ "version": "2.5.0", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", ++ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "conventional-commits-filter": "^2.0.7", +- "dateformat": "^3.0.0", +- "handlebars": "^4.7.7", +- "json-stringify-safe": "^5.0.1", +- "lodash": "^4.17.15", +- "meow": "^8.0.0", +- "semver": "^6.0.0", +- "split": "^1.0.0", +- "through2": "^4.0.0" +- }, ++ "hosted-git-info": "^2.1.4", ++ "resolve": "^1.10.0", ++ "semver": "2 || 3 || 4 || 5", ++ "validate-npm-package-license": "^3.0.1" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg/node_modules/semver": { ++ "version": "5.7.2", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", ++ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", ++ "dev": true, + "bin": { +- "conventional-changelog-writer": "cli.js" +- }, +- "engines": { +- "node": ">=10" ++ "semver": "bin/semver" + } + }, +- "node_modules/conventional-commits-filter": { +- "version": "2.0.7", ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg/node_modules/type-fest": { ++ "version": "0.6.0", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", ++ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "lodash.ismatch": "^4.4.0", +- "modify-values": "^1.0.0" +- }, + "engines": { +- "node": ">=10" ++ "node": ">=8" + } + }, +- "node_modules/conventional-commits-parser": { +- "version": "3.2.4", ++ "node_modules/conventional-recommended-bump/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "is-text-path": "^1.0.1", +- "JSONStream": "^1.0.4", +- "lodash": "^4.17.15", +- "meow": "^8.0.0", +- "split2": "^3.0.0", +- "through2": "^4.0.0" +- }, + "bin": { +- "conventional-commits-parser": "cli.js" ++ "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-commits-parser/node_modules/split2": { ++ "node_modules/conventional-recommended-bump/node_modules/split2": { + "version": "3.2.2", ++ "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", ++ "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, +- "license": "ISC", + "dependencies": { + "readable-stream": "^3.0.0" + } + }, +- "node_modules/conventional-recommended-bump": { +- "version": "6.1.0", ++ "node_modules/conventional-recommended-bump/node_modules/text-extensions": { ++ "version": "1.9.0", ++ "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", ++ "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "concat-stream": "^2.0.0", +- "conventional-changelog-preset-loader": "^2.3.4", +- "conventional-commits-filter": "^2.0.7", +- "conventional-commits-parser": "^3.2.0", +- "git-raw-commits": "^2.0.8", +- "git-semver-tags": "^4.1.1", +- "meow": "^8.0.0", +- "q": "^1.5.1" +- }, +- "bin": { +- "conventional-recommended-bump": "cli.js" ++ "engines": { ++ "node": ">=0.10" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/type-fest": { ++ "version": "0.18.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", ++ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", ++ "dev": true, ++ "engines": { ++ "node": ">=10" + }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/yargs-parser": { ++ "version": "20.2.9", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", ++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", ++ "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", ++ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "peer": true + }, + "node_modules/cookie": { + "version": "0.6.0", ++ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", ++ "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", ++ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", ++ "dev": true + }, + "node_modules/core-js-compat": { +- "version": "3.33.3", ++ "version": "3.38.1", ++ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", ++ "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "browserslist": "^4.22.1" ++ "browserslist": "^4.23.3" + }, + "funding": { + "type": "opencollective", +@@ -6323,10 +7148,13 @@ + }, + "node_modules/core-util-is": { + "version": "1.0.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", ++ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + }, + "node_modules/cpu-features": { + "version": "0.0.10", ++ "resolved": "https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.10.tgz", ++ "integrity": "sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA==", + "hasInstallScript": true, + "dependencies": { + "buildcheck": "~0.0.6", +@@ -6336,10 +7164,21 @@ + "node": ">=10.0.0" + } + }, ++ "node_modules/crc": { ++ "version": "3.8.0", ++ "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", ++ "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", ++ "dev": true, ++ "optional": true, ++ "dependencies": { ++ "buffer": "^5.1.0" ++ } ++ }, + "node_modules/crc-32": { + "version": "1.2.2", ++ "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", ++ "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "dev": true, +- "license": "Apache-2.0", + "peer": true, + "bin": { + "crc32": "bin/crc32.njs" +@@ -6350,8 +7189,9 @@ + }, + "node_modules/crc32-stream": { + "version": "4.0.3", ++ "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.3.tgz", ++ "integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==", + "dev": true, +- "license": "MIT", + "peer": true, + "dependencies": { + "crc-32": "^1.2.0", +@@ -6363,12 +7203,14 @@ + }, + "node_modules/create-require": { + "version": "1.1.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", ++ "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", ++ "dev": true + }, + "node_modules/cross-env": { + "version": "7.0.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", ++ "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dependencies": { + "cross-spawn": "^7.0.1" + }, +@@ -6384,7 +7226,8 @@ + }, + "node_modules/cross-spawn": { + "version": "7.0.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", ++ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", +@@ -6395,16 +7238,18 @@ + } + }, + "node_modules/css-functions-list": { +- "version": "3.2.1", ++ "version": "3.2.2", ++ "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.2.tgz", ++ "integrity": "sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=12 || >=16" + } + }, + "node_modules/css-loader": { + "version": "6.5.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.5.1.tgz", ++ "integrity": "sha512-gEy2w9AnJNnD9Kuo4XAP9VflW/ujKoS9c/syO+uWMlm5igc7LysKzPXaDoR2vroROkSwsTS2tGr1yGGEbZOYZQ==", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.2.15", +@@ -6426,22 +7271,10 @@ + "webpack": "^5.0.0" + } + }, +- "node_modules/css-loader/node_modules/lru-cache": { +- "version": "6.0.0", +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/css-loader/node_modules/semver": { +- "version": "7.5.4", +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, +@@ -6449,13 +7282,10 @@ + "node": ">=10" + } + }, +- "node_modules/css-loader/node_modules/yallist": { +- "version": "4.0.0", +- "license": "ISC" +- }, + "node_modules/css-select": { + "version": "4.3.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", ++ "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", +@@ -6469,7 +7299,8 @@ + }, + "node_modules/css-select/node_modules/dom-serializer": { + "version": "1.4.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", ++ "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", +@@ -6481,7 +7312,8 @@ + }, + "node_modules/css-select/node_modules/domhandler": { + "version": "4.3.1", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", ++ "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, +@@ -6494,7 +7326,8 @@ + }, + "node_modules/css-select/node_modules/domutils": { + "version": "2.8.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", ++ "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", +@@ -6506,15 +7339,17 @@ + }, + "node_modules/css-select/node_modules/entities": { + "version": "2.2.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", ++ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/css-tree": { + "version": "2.3.1", ++ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", ++ "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" +@@ -6525,7 +7360,8 @@ + }, + "node_modules/css-what": { + "version": "6.1.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", ++ "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" + }, +@@ -6535,7 +7371,8 @@ + }, + "node_modules/cssesc": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", ++ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, +@@ -6549,24 +7386,81 @@ + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/dargs": { +- "version": "7.0.0", ++ "version": "8.1.0", ++ "resolved": "https://registry.npmjs.org/dargs/-/dargs-8.1.0.tgz", ++ "integrity": "sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=8" ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/data-view-buffer": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", ++ "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", ++ "dev": true, ++ "dependencies": { ++ "call-bind": "^1.0.6", ++ "es-errors": "^1.3.0", ++ "is-data-view": "^1.0.1" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" ++ } ++ }, ++ "node_modules/data-view-byte-length": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", ++ "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", ++ "dev": true, ++ "dependencies": { ++ "call-bind": "^1.0.7", ++ "es-errors": "^1.3.0", ++ "is-data-view": "^1.0.1" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" ++ } ++ }, ++ "node_modules/data-view-byte-offset": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", ++ "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", ++ "dev": true, ++ "dependencies": { ++ "call-bind": "^1.0.6", ++ "es-errors": "^1.3.0", ++ "is-data-view": "^1.0.1" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dateformat": { + "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", ++ "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", + "dev": true, +- "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/debounce-fn": { + "version": "4.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/debounce-fn/-/debounce-fn-4.0.0.tgz", ++ "integrity": "sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==", + "dependencies": { + "mimic-fn": "^3.0.0" + }, +@@ -6578,8 +7472,9 @@ + } + }, + "node_modules/debug": { +- "version": "4.3.4", +- "license": "MIT", ++ "version": "4.3.6", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", ++ "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "dependencies": { + "ms": "2.1.2" + }, +@@ -6594,16 +7489,18 @@ + }, + "node_modules/decamelize": { + "version": "1.2.0", ++ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", ++ "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", ++ "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" +@@ -6617,15 +7514,17 @@ + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", ++ "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", ++ "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dependencies": { + "mimic-response": "^3.1.0" + }, +@@ -6638,7 +7537,8 @@ + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", ++ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "engines": { + "node": ">=10" + }, +@@ -6648,20 +7548,23 @@ + }, + "node_modules/deep-extend": { + "version": "0.6.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", ++ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", ++ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", ++ "dev": true + }, + "node_modules/default-gateway": { + "version": "6.0.3", ++ "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", ++ "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { + "execa": "^5.0.0" + }, +@@ -6669,38 +7572,128 @@ + "node": ">= 10" + } + }, ++ "node_modules/default-gateway/node_modules/execa": { ++ "version": "5.1.1", ++ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", ++ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", ++ "dev": true, ++ "dependencies": { ++ "cross-spawn": "^7.0.3", ++ "get-stream": "^6.0.0", ++ "human-signals": "^2.1.0", ++ "is-stream": "^2.0.0", ++ "merge-stream": "^2.0.0", ++ "npm-run-path": "^4.0.1", ++ "onetime": "^5.1.2", ++ "signal-exit": "^3.0.3", ++ "strip-final-newline": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sindresorhus/execa?sponsor=1" ++ } ++ }, ++ "node_modules/default-gateway/node_modules/get-stream": { ++ "version": "6.0.1", ++ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", ++ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", ++ "dev": true, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/default-gateway/node_modules/human-signals": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", ++ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", ++ "dev": true, ++ "engines": { ++ "node": ">=10.17.0" ++ } ++ }, ++ "node_modules/default-gateway/node_modules/is-stream": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", ++ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", ++ "dev": true, ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/default-gateway/node_modules/npm-run-path": { ++ "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", ++ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", ++ "dev": true, ++ "dependencies": { ++ "path-key": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/default-gateway/node_modules/signal-exit": { ++ "version": "3.0.7", ++ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", ++ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", ++ "dev": true ++ }, ++ "node_modules/default-gateway/node_modules/strip-final-newline": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", ++ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", ++ "dev": true, ++ "engines": { ++ "node": ">=6" ++ } ++ }, + "node_modules/defer-to-connect": { + "version": "2.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", ++ "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/define-data-property": { +- "version": "1.1.1", ++ "version": "1.1.4", ++ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", ++ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "devOptional": true, +- "license": "MIT", + "dependencies": { +- "get-intrinsic": "^1.2.1", +- "gopd": "^1.0.1", +- "has-property-descriptors": "^1.0.0" ++ "es-define-property": "^1.0.0", ++ "es-errors": "^1.3.0", ++ "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", ++ "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", ++ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "devOptional": true, +- "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", +@@ -6715,31 +7708,35 @@ + }, + "node_modules/delayed-stream": { + "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", ++ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/denque": { + "version": "2.1.0", +- "license": "Apache-2.0", ++ "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", ++ "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/depd": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", ++ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", ++ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", ++ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" +@@ -6747,49 +7744,56 @@ + }, + "node_modules/detect-indent": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", ++ "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-libc": { +- "version": "2.0.2", +- "license": "Apache-2.0", ++ "version": "2.0.3", ++ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", ++ "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", ++ "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", +- "devOptional": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", ++ "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", ++ "devOptional": true + }, + "node_modules/didyoumean": { + "version": "1.2.2", +- "dev": true, +- "license": "Apache-2.0" ++ "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", ++ "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", ++ "dev": true + }, + "node_modules/diff": { + "version": "4.0.2", ++ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", ++ "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, +- "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-compare": { + "version": "3.3.0", ++ "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-3.3.0.tgz", ++ "integrity": "sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "buffer-equal": "^1.0.0", + "minimatch": "^3.0.4" +@@ -6797,8 +7801,9 @@ + }, + "node_modules/dir-compare/node_modules/brace-expansion": { + "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" +@@ -6806,8 +7811,9 @@ + }, + "node_modules/dir-compare/node_modules/minimatch": { + "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, +- "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, +@@ -6817,8 +7823,9 @@ + }, + "node_modules/dir-glob": { + "version": "3.0.1", ++ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", ++ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, +@@ -6828,12 +7835,14 @@ + }, + "node_modules/discontinuous-range": { + "version": "1.0.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", ++ "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" + }, + "node_modules/dmg-builder": { + "version": "24.13.3", ++ "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-24.13.3.tgz", ++ "integrity": "sha512-rcJUkMfnJpfCboZoOOPf4L29TRtEieHNOeAbYPWPxlaBw/Z1RKrRA86dOI9rwaI4tQSc/RD82zTNHprfUHXsoQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "app-builder-lib": "24.13.3", + "builder-util": "24.13.1", +@@ -6848,8 +7857,9 @@ + }, + "node_modules/dmg-builder/node_modules/fs-extra": { + "version": "10.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", +@@ -6861,8 +7871,9 @@ + }, + "node_modules/dmg-builder/node_modules/jsonfile": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, +@@ -6872,21 +7883,68 @@ + }, + "node_modules/dmg-builder/node_modules/universalify": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", ++ "dev": true, ++ "engines": { ++ "node": ">= 10.0.0" ++ } ++ }, ++ "node_modules/dmg-license": { ++ "version": "1.0.11", ++ "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", ++ "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==", ++ "dev": true, ++ "optional": true, ++ "os": [ ++ "darwin" ++ ], ++ "dependencies": { ++ "@types/plist": "^3.0.1", ++ "@types/verror": "^1.10.3", ++ "ajv": "^6.10.0", ++ "crc": "^3.8.0", ++ "iconv-corefoundation": "^1.1.7", ++ "plist": "^3.0.4", ++ "smart-buffer": "^4.0.2", ++ "verror": "^1.10.0" ++ }, ++ "bin": { ++ "dmg-license": "bin/dmg-license.js" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/dmg-license/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">= 10.0.0" ++ "optional": true, ++ "dependencies": { ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" ++ }, ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" + } + }, +- "node_modules/dns-equal": { +- "version": "1.0.0", ++ "node_modules/dmg-license/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, +- "license": "MIT" ++ "optional": true + }, + "node_modules/dns-packet": { + "version": "5.6.1", ++ "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", ++ "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, +@@ -6896,8 +7954,9 @@ + }, + "node_modules/doctrine": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", ++ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, +@@ -6907,14 +7966,16 @@ + }, + "node_modules/dom-converter": { + "version": "0.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", ++ "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", ++ "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", +@@ -6926,17 +7987,19 @@ + }, + "node_modules/domelementtype": { + "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", ++ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } +- ], +- "license": "BSD-2-Clause" ++ ] + }, + "node_modules/domhandler": { + "version": "5.0.3", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", ++ "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dependencies": { + "domelementtype": "^2.3.0" + }, +@@ -6949,7 +8012,8 @@ + }, + "node_modules/domutils": { + "version": "3.1.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", ++ "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", +@@ -6961,42 +8025,45 @@ + }, + "node_modules/dot-case": { + "version": "3.0.4", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", ++ "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { +- "version": "6.0.1", +- "license": "MIT", ++ "version": "5.3.0", ++ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", ++ "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", ++ "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { +- "node": ">=10" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "9.0.2", ++ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz", ++ "integrity": "sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==", + "dev": true, +- "license": "BSD-2-Clause", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", +- "dev": true, +- "license": "BSD-2-Clause" ++ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", ++ "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", ++ "dev": true + }, + "node_modules/dotgitignore": { + "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/dotgitignore/-/dotgitignore-2.1.0.tgz", ++ "integrity": "sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA==", + "dev": true, +- "license": "ISC", + "dependencies": { + "find-up": "^3.0.0", + "minimatch": "^3.0.4" +@@ -7007,8 +8074,9 @@ + }, + "node_modules/dotgitignore/node_modules/brace-expansion": { + "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" +@@ -7016,8 +8084,9 @@ + }, + "node_modules/dotgitignore/node_modules/find-up": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", ++ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, +@@ -7027,8 +8096,9 @@ + }, + "node_modules/dotgitignore/node_modules/locate-path": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", ++ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, +- "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" +@@ -7039,8 +8109,9 @@ + }, + "node_modules/dotgitignore/node_modules/minimatch": { + "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, +- "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, +@@ -7050,8 +8121,9 @@ + }, + "node_modules/dotgitignore/node_modules/p-limit": { + "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, +- "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, +@@ -7064,8 +8136,9 @@ + }, + "node_modules/dotgitignore/node_modules/p-locate": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", ++ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, +@@ -7073,28 +8146,32 @@ + "node": ">=6" + } + }, +- "node_modules/dotgitignore/node_modules/p-try": { +- "version": "2.2.0", ++ "node_modules/dotgitignore/node_modules/path-exists": { ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", ++ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=6" ++ "node": ">=4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", ++ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", ++ "dev": true + }, + "node_modules/ee-first": { + "version": "1.1.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", ++ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", ++ "dev": true + }, + "node_modules/ejs": { + "version": "3.1.10", ++ "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", ++ "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, +@@ -7106,9 +8183,9 @@ + } + }, + "node_modules/electron": { +- "version": "30.0.8", +- "resolved": "https://registry.npmjs.org/electron/-/electron-30.0.8.tgz", +- "integrity": "sha512-ivzXJJ/9gdb4oOw+5SDuaZpSInz8C+Z021dKZfFLMltKbDa4sSqt5cRBiUg7J36Z2kdus+Jai0bdHWutYE9wAA==", ++ "version": "30.0.9", ++ "resolved": "https://registry.npmjs.org/electron/-/electron-30.0.9.tgz", ++ "integrity": "sha512-ArxgdGHVu3o5uaP+Tqj8cJDvU03R6vrGrOqiMs7JXLnvQHMqXJIIxmFKQAIdJW8VoT3ac3hD21tA7cPO10RLow==", + "hasInstallScript": true, + "dependencies": { + "@electron/get": "^2.0.0", +@@ -7124,8 +8201,9 @@ + }, + "node_modules/electron-builder": { + "version": "24.13.3", ++ "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-24.13.3.tgz", ++ "integrity": "sha512-yZSgVHft5dNVlo31qmJAe4BVKQfFdwpRw7sFp1iQglDRCDD6r22zfRJuZlhtB5gp9FHUxCMEoWGq10SkCnMAIg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "app-builder-lib": "24.13.3", + "builder-util": "24.13.1", +@@ -7149,8 +8227,9 @@ + }, + "node_modules/electron-builder-squirrel-windows": { + "version": "24.13.3", ++ "resolved": "https://registry.npmjs.org/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-24.13.3.tgz", ++ "integrity": "sha512-oHkV0iogWfyK+ah9ZIvMDpei1m9ZRpdXcvde1wTpra2U8AFDNNpqJdnin5z+PM1GbQ5BoaKCWas2HSjtR0HwMg==", + "dev": true, +- "license": "MIT", + "peer": true, + "dependencies": { + "app-builder-lib": "24.13.3", +@@ -7161,8 +8240,9 @@ + }, + "node_modules/electron-builder-squirrel-windows/node_modules/fs-extra": { + "version": "10.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, +- "license": "MIT", + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.0", +@@ -7175,8 +8255,9 @@ + }, + "node_modules/electron-builder-squirrel-windows/node_modules/jsonfile": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "MIT", + "peer": true, + "dependencies": { + "universalify": "^2.0.0" +@@ -7187,30 +8268,19 @@ + }, + "node_modules/electron-builder-squirrel-windows/node_modules/universalify": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, +- "license": "MIT", + "peer": true, + "engines": { + "node": ">= 10.0.0" + } + }, +- "node_modules/electron-builder/node_modules/cliui": { +- "version": "8.0.1", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "string-width": "^4.2.0", +- "strip-ansi": "^6.0.1", +- "wrap-ansi": "^7.0.0" +- }, +- "engines": { +- "node": ">=12" +- } +- }, + "node_modules/electron-builder/node_modules/fs-extra": { + "version": "10.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", +@@ -7222,8 +8292,9 @@ + }, + "node_modules/electron-builder/node_modules/jsonfile": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, +@@ -7233,72 +8304,26 @@ + }, + "node_modules/electron-builder/node_modules/universalify": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, +- "node_modules/electron-builder/node_modules/wrap-ansi": { +- "version": "7.0.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- }, +- "engines": { +- "node": ">=10" +- }, +- "funding": { +- "url": "https://github.com/chalk/wrap-ansi?sponsor=1" +- } +- }, +- "node_modules/electron-builder/node_modules/y18n": { +- "version": "5.0.8", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/electron-builder/node_modules/yargs": { +- "version": "17.7.2", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "cliui": "^8.0.1", +- "escalade": "^3.1.1", +- "get-caller-file": "^2.0.5", +- "require-directory": "^2.1.1", +- "string-width": "^4.2.3", +- "y18n": "^5.0.5", +- "yargs-parser": "^21.1.1" +- }, +- "engines": { +- "node": ">=12" +- } +- }, +- "node_modules/electron-builder/node_modules/yargs-parser": { +- "version": "21.1.1", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=12" +- } +- }, + "node_modules/electron-log": { +- "version": "5.0.1", +- "license": "MIT", ++ "version": "5.0.4", ++ "resolved": "https://registry.npmjs.org/electron-log/-/electron-log-5.0.4.tgz", ++ "integrity": "sha512-h88rs4To/wa1LQm/sfik0+BEbLXRlSfzSt8baG4R2okitbCBdT2SMrg6WHo/MD6T75NCkLHkrjoXQEVGAcnI8w==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/electron-publish": { + "version": "24.13.1", ++ "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-24.13.1.tgz", ++ "integrity": "sha512-2ZgdEqJ8e9D17Hwp5LEq5mLQPjqU3lv/IALvgp+4W8VeNhryfGhYEQC/PgDPMrnWUp+l60Ou5SJLsu+k4mhQ8A==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/fs-extra": "^9.0.11", + "builder-util": "24.13.1", +@@ -7311,8 +8336,9 @@ + }, + "node_modules/electron-publish/node_modules/fs-extra": { + "version": "10.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", +@@ -7324,8 +8350,9 @@ + }, + "node_modules/electron-publish/node_modules/jsonfile": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, +@@ -7335,15 +8362,17 @@ + }, + "node_modules/electron-publish/node_modules/universalify": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/electron-store": { + "version": "8.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/electron-store/-/electron-store-8.1.0.tgz", ++ "integrity": "sha512-2clHg/juMjOH0GT9cQ6qtmIvK183B39ZXR0bUoPwKwYHJsEF3quqyDzMFUAu+0OP8ijmN2CbPRAelhNbWUbzwA==", + "dependencies": { + "conf": "^10.2.0", + "type-fest": "^2.17.0" +@@ -7353,12 +8382,14 @@ + } + }, + "node_modules/electron-to-chromium": { +- "version": "1.4.594", +- "license": "ISC" ++ "version": "1.5.13", ++ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz", ++ "integrity": "sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==" + }, + "node_modules/electron-updater": { + "version": "4.6.5", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/electron-updater/-/electron-updater-4.6.5.tgz", ++ "integrity": "sha512-kdTly8O9mSZfm9fslc1mnCY+mYOeaYRy7ERa2Fed240u01BKll3aiupzkd07qKw69KvhBSzuHroIW3mF0D8DWA==", + "dependencies": { + "@types/semver": "^7.3.6", + "builder-util-runtime": "8.9.2", +@@ -7372,7 +8403,8 @@ + }, + "node_modules/electron-updater/node_modules/builder-util-runtime": { + "version": "8.9.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-8.9.2.tgz", ++ "integrity": "sha512-rhuKm5vh7E0aAmT6i8aoSfEjxzdYEFX7zDApK+eNgOhjofnWb74d9SRJv0H/8nsgOkos0TZ4zxW0P8J4N7xQ2A==", + "dependencies": { + "debug": "^4.3.2", + "sax": "^1.2.4" +@@ -7383,7 +8415,8 @@ + }, + "node_modules/electron-updater/node_modules/fs-extra": { + "version": "10.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", +@@ -7395,7 +8428,8 @@ + }, + "node_modules/electron-updater/node_modules/jsonfile": { + "version": "6.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, +@@ -7403,22 +8437,10 @@ + "graceful-fs": "^4.1.6" + } + }, +- "node_modules/electron-updater/node_modules/lru-cache": { +- "version": "6.0.0", +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/electron-updater/node_modules/semver": { +- "version": "7.5.4", +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, +@@ -7428,18 +8450,16 @@ + }, + "node_modules/electron-updater/node_modules/universalify": { + "version": "2.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, +- "node_modules/electron-updater/node_modules/yallist": { +- "version": "4.0.0", +- "license": "ISC" +- }, + "node_modules/electron-window-state": { + "version": "5.0.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/electron-window-state/-/electron-window-state-5.0.3.tgz", ++ "integrity": "sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==", + "dependencies": { + "jsonfile": "^4.0.0", + "mkdirp": "^0.5.1" +@@ -7449,49 +8469,61 @@ + } + }, + "node_modules/electron/node_modules/@types/node": { +- "version": "20.12.12", +- "license": "MIT", ++ "version": "20.16.1", ++ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.16.1.tgz", ++ "integrity": "sha512-zJDo7wEadFtSyNz5QITDfRcrhqDvQI1xQNQ0VoizPjM/dVAODqqIUWbJPkvsxmTI0MYRGRikcdjMPhOssnPejQ==", + "dependencies": { +- "undici-types": "~5.26.4" ++ "undici-types": "~6.19.2" + } + }, ++ "node_modules/electron/node_modules/undici-types": { ++ "version": "6.19.8", ++ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", ++ "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" ++ }, + "node_modules/emoji-regex": { + "version": "8.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", ++ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", ++ "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", ++ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", ++ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", ++ "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", ++ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { +- "version": "5.16.1", +- "license": "MIT", ++ "version": "5.17.1", ++ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", ++ "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" +@@ -7502,8 +8534,9 @@ + }, + "node_modules/enquirer": { + "version": "2.4.1", ++ "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", ++ "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" +@@ -7514,7 +8547,8 @@ + }, + "node_modules/entities": { + "version": "4.5.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", ++ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, +@@ -7524,14 +8558,16 @@ + }, + "node_modules/env-paths": { + "version": "2.2.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", ++ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/envinfo": { +- "version": "7.11.0", +- "license": "MIT", ++ "version": "7.13.0", ++ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", ++ "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "bin": { + "envinfo": "dist/cli.js" + }, +@@ -7541,61 +8577,71 @@ + }, + "node_modules/err-code": { + "version": "2.0.3", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", ++ "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", ++ "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", ++ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", ++ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { +- "version": "1.22.3", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "array-buffer-byte-length": "^1.0.0", +- "arraybuffer.prototype.slice": "^1.0.2", +- "available-typed-arrays": "^1.0.5", +- "call-bind": "^1.0.5", +- "es-set-tostringtag": "^2.0.1", ++ "version": "1.23.3", ++ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", ++ "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", ++ "dev": true, ++ "dependencies": { ++ "array-buffer-byte-length": "^1.0.1", ++ "arraybuffer.prototype.slice": "^1.0.3", ++ "available-typed-arrays": "^1.0.7", ++ "call-bind": "^1.0.7", ++ "data-view-buffer": "^1.0.1", ++ "data-view-byte-length": "^1.0.1", ++ "data-view-byte-offset": "^1.0.0", ++ "es-define-property": "^1.0.0", ++ "es-errors": "^1.3.0", ++ "es-object-atoms": "^1.0.0", ++ "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", +- "get-intrinsic": "^1.2.2", +- "get-symbol-description": "^1.0.0", ++ "get-intrinsic": "^1.2.4", ++ "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", +- "has-property-descriptors": "^1.0.0", +- "has-proto": "^1.0.1", ++ "has-property-descriptors": "^1.0.2", ++ "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", +- "hasown": "^2.0.0", +- "internal-slot": "^1.0.5", +- "is-array-buffer": "^3.0.2", ++ "hasown": "^2.0.2", ++ "internal-slot": "^1.0.7", ++ "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", +- "is-negative-zero": "^2.0.2", ++ "is-data-view": "^1.0.1", ++ "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", +- "is-shared-array-buffer": "^1.0.2", ++ "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", +- "is-typed-array": "^1.1.12", ++ "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", +- "object.assign": "^4.1.4", +- "regexp.prototype.flags": "^1.5.1", +- "safe-array-concat": "^1.0.1", +- "safe-regex-test": "^1.0.0", +- "string.prototype.trim": "^1.2.8", +- "string.prototype.trimend": "^1.0.7", +- "string.prototype.trimstart": "^1.0.7", +- "typed-array-buffer": "^1.0.0", +- "typed-array-byte-length": "^1.0.0", +- "typed-array-byte-offset": "^1.0.0", +- "typed-array-length": "^1.0.4", ++ "object.assign": "^4.1.5", ++ "regexp.prototype.flags": "^1.5.2", ++ "safe-array-concat": "^1.1.2", ++ "safe-regex-test": "^1.0.3", ++ "string.prototype.trim": "^1.2.9", ++ "string.prototype.trimend": "^1.0.8", ++ "string.prototype.trimstart": "^1.0.8", ++ "typed-array-buffer": "^1.0.2", ++ "typed-array-byte-length": "^1.0.1", ++ "typed-array-byte-offset": "^1.0.2", ++ "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", +- "which-typed-array": "^1.1.13" ++ "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" +@@ -7604,18 +8650,53 @@ + "url": "https://github.com/sponsors/ljharb" + } + }, ++ "node_modules/es-define-property": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", ++ "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", ++ "devOptional": true, ++ "dependencies": { ++ "get-intrinsic": "^1.2.4" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ } ++ }, ++ "node_modules/es-errors": { ++ "version": "1.3.0", ++ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", ++ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", ++ "devOptional": true, ++ "engines": { ++ "node": ">= 0.4" ++ } ++ }, + "node_modules/es-module-lexer": { +- "version": "1.5.2", +- "license": "MIT" ++ "version": "1.5.4", ++ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", ++ "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" ++ }, ++ "node_modules/es-object-atoms": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", ++ "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", ++ "dev": true, ++ "dependencies": { ++ "es-errors": "^1.3.0" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ } + }, + "node_modules/es-set-tostringtag": { +- "version": "2.0.2", ++ "version": "2.0.3", ++ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", ++ "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "get-intrinsic": "^1.2.2", +- "has-tostringtag": "^1.0.0", +- "hasown": "^2.0.0" ++ "get-intrinsic": "^1.2.4", ++ "has-tostringtag": "^1.0.2", ++ "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" +@@ -7623,16 +8704,18 @@ + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", ++ "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", ++ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", +@@ -7647,25 +8730,29 @@ + }, + "node_modules/es6-error": { + "version": "4.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", ++ "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "optional": true + }, + "node_modules/escalade": { +- "version": "3.1.1", +- "license": "MIT", ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", ++ "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", ++ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", ++ "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", ++ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "devOptional": true, +- "license": "MIT", + "engines": { + "node": ">=10" + }, +@@ -7675,8 +8762,9 @@ + }, + "node_modules/eslint": { + "version": "7.32.0", ++ "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", ++ "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", +@@ -7731,6 +8819,8 @@ + }, + "node_modules/eslint-config-standard": { + "version": "16.0.3", ++ "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz", ++ "integrity": "sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==", + "dev": true, + "funding": [ + { +@@ -7746,7 +8836,6 @@ + "url": "https://feross.org/support" + } + ], +- "license": "MIT", + "peerDependencies": { + "eslint": "^7.12.1", + "eslint-plugin-import": "^2.22.1", +@@ -7756,8 +8845,9 @@ + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", ++ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", ++ "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", +@@ -7766,16 +8856,18 @@ + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", ++ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { +- "version": "2.8.0", ++ "version": "2.8.2", ++ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.2.tgz", ++ "integrity": "sha512-3XnC5fDyc8M4J2E8pt8pmSVRX2M+5yWMCfI/kDZwauQeFgzQOuhcRBFKjTeJagqgk4sFKxe1mvNVnaWwImx/Tg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, +@@ -7790,16 +8882,18 @@ + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", ++ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-es": { + "version": "3.0.1", ++ "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", ++ "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" +@@ -7816,8 +8910,9 @@ + }, + "node_modules/eslint-plugin-es/node_modules/eslint-utils": { + "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", ++ "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, +@@ -7830,16 +8925,18 @@ + }, + "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { + "version": "1.3.0", ++ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", ++ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, +- "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.24.2", ++ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz", ++ "integrity": "sha512-hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "array-includes": "^3.1.3", + "array.prototype.flat": "^1.2.4", +@@ -7866,52 +8963,125 @@ + }, + "node_modules/eslint-plugin-import/node_modules/brace-expansion": { + "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, +- "node_modules/eslint-plugin-import/node_modules/debug": { +- "version": "2.6.9", ++ "node_modules/eslint-plugin-import/node_modules/debug": { ++ "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", ++ "dev": true, ++ "dependencies": { ++ "ms": "2.0.0" ++ } ++ }, ++ "node_modules/eslint-plugin-import/node_modules/doctrine": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", ++ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", ++ "dev": true, ++ "dependencies": { ++ "esutils": "^2.0.2" ++ }, ++ "engines": { ++ "node": ">=0.10.0" ++ } ++ }, ++ "node_modules/eslint-plugin-import/node_modules/find-up": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", ++ "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", ++ "dev": true, ++ "dependencies": { ++ "locate-path": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/eslint-plugin-import/node_modules/locate-path": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", ++ "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", ++ "dev": true, ++ "dependencies": { ++ "p-locate": "^2.0.0", ++ "path-exists": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/eslint-plugin-import/node_modules/minimatch": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", ++ "dev": true, ++ "dependencies": { ++ "brace-expansion": "^1.1.7" ++ }, ++ "engines": { ++ "node": "*" ++ } ++ }, ++ "node_modules/eslint-plugin-import/node_modules/ms": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", ++ "dev": true ++ }, ++ "node_modules/eslint-plugin-import/node_modules/p-limit": { ++ "version": "1.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", ++ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "ms": "2.0.0" ++ "p-try": "^1.0.0" ++ }, ++ "engines": { ++ "node": ">=4" + } + }, +- "node_modules/eslint-plugin-import/node_modules/doctrine": { +- "version": "2.1.0", ++ "node_modules/eslint-plugin-import/node_modules/p-locate": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", ++ "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { +- "esutils": "^2.0.2" ++ "p-limit": "^1.1.0" + }, + "engines": { +- "node": ">=0.10.0" ++ "node": ">=4" + } + }, +- "node_modules/eslint-plugin-import/node_modules/minimatch": { +- "version": "3.1.2", ++ "node_modules/eslint-plugin-import/node_modules/p-try": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", ++ "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "brace-expansion": "^1.1.7" +- }, + "engines": { +- "node": "*" ++ "node": ">=4" + } + }, +- "node_modules/eslint-plugin-import/node_modules/ms": { +- "version": "2.0.0", ++ "node_modules/eslint-plugin-import/node_modules/path-exists": { ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", ++ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, +- "license": "MIT" ++ "engines": { ++ "node": ">=4" ++ } + }, + "node_modules/eslint-plugin-import/node_modules/pkg-up": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", ++ "integrity": "sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "find-up": "^2.1.0" + }, +@@ -7921,8 +9091,9 @@ + }, + "node_modules/eslint-plugin-node": { + "version": "11.1.0", ++ "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", ++ "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "eslint-plugin-es": "^3.0.0", + "eslint-utils": "^2.0.0", +@@ -7940,8 +9111,9 @@ + }, + "node_modules/eslint-plugin-node/node_modules/brace-expansion": { + "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" +@@ -7949,8 +9121,9 @@ + }, + "node_modules/eslint-plugin-node/node_modules/eslint-utils": { + "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", ++ "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, +@@ -7963,16 +9136,18 @@ + }, + "node_modules/eslint-plugin-node/node_modules/eslint-visitor-keys": { + "version": "1.3.0", ++ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", ++ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, +- "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-node/node_modules/minimatch": { + "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, +- "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, +@@ -7982,8 +9157,9 @@ + }, + "node_modules/eslint-plugin-promise": { + "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-5.2.0.tgz", ++ "integrity": "sha512-SftLb1pUG01QYq2A/hGAWfDRXqYD82zE7j7TopDOyNdU+7SvvoXREls/+PRTY17vUXzXnZA/zfnyKgRH6x4JJw==", + "dev": true, +- "license": "ISC", + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, +@@ -7993,16 +9169,18 @@ + }, + "node_modules/eslint-plugin-simple-import-sort": { + "version": "10.0.0", ++ "resolved": "https://registry.npmjs.org/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-10.0.0.tgz", ++ "integrity": "sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==", + "dev": true, +- "license": "MIT", + "peerDependencies": { + "eslint": ">=5.0.0" + } + }, + "node_modules/eslint-plugin-vue": { + "version": "8.0.3", ++ "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-8.0.3.tgz", ++ "integrity": "sha512-Rlhhy5ltzde0sRwSkqHuNePTXLMMaJ5+qsQubM4RYloYsQ8cXlnJT5MDaCzSirkGADipOHtmQXIbbPFAzUrADg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "eslint-utils": "^3.0.0", + "natural-compare": "^1.4.0", +@@ -8016,24 +9194,11 @@ + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0" + } + }, +- "node_modules/eslint-plugin-vue/node_modules/lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/eslint-plugin-vue/node_modules/semver": { +- "version": "7.5.4", ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -8041,14 +9206,10 @@ + "node": ">=10" + } + }, +- "node_modules/eslint-plugin-vue/node_modules/yallist": { +- "version": "4.0.0", +- "dev": true, +- "license": "ISC" +- }, + "node_modules/eslint-scope": { + "version": "5.1.1", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", ++ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" +@@ -8059,8 +9220,9 @@ + }, + "node_modules/eslint-utils": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", ++ "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, +@@ -8076,32 +9238,52 @@ + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", ++ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, +- "license": "Apache-2.0", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/@babel/code-frame": { + "version": "7.12.11", ++ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", ++ "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, ++ "node_modules/eslint/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", ++ "dev": true, ++ "dependencies": { ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" ++ }, ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" ++ } ++ }, + "node_modules/eslint/node_modules/argparse": { + "version": "1.0.10", ++ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", ++ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" +@@ -8109,8 +9291,9 @@ + }, + "node_modules/eslint/node_modules/eslint-utils": { + "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", ++ "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, +@@ -8123,16 +9306,18 @@ + }, + "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", ++ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", ++ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, +- "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint/node_modules/globals": { +- "version": "13.23.0", ++ "version": "13.24.0", ++ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", ++ "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, +@@ -8145,16 +9330,18 @@ + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", ++ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", ++ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "3.14.1", ++ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", ++ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" +@@ -8163,21 +9350,17 @@ + "js-yaml": "bin/js-yaml.js" + } + }, +- "node_modules/eslint/node_modules/lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } ++ "node_modules/eslint/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", ++ "dev": true + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, +- "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, +@@ -8186,12 +9369,10 @@ + } + }, + "node_modules/eslint/node_modules/semver": { +- "version": "7.5.4", ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -8201,13 +9382,15 @@ + }, + "node_modules/eslint/node_modules/sprintf-js": { + "version": "1.0.3", +- "dev": true, +- "license": "BSD-3-Clause" ++ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", ++ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", ++ "dev": true + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", ++ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, +- "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, +@@ -8215,15 +9398,11 @@ + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/eslint/node_modules/yallist": { +- "version": "4.0.0", +- "dev": true, +- "license": "ISC" +- }, + "node_modules/espree": { + "version": "7.3.1", ++ "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", ++ "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", +@@ -8235,16 +9414,18 @@ + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", ++ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", ++ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, +- "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", ++ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, +- "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" +@@ -8254,9 +9435,10 @@ + } + }, + "node_modules/esquery": { +- "version": "1.5.0", ++ "version": "1.6.0", ++ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", ++ "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, +- "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, +@@ -8266,15 +9448,17 @@ + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", ++ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", ++ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, +- "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", ++ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, +@@ -8284,76 +9468,102 @@ + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", ++ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", ++ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", ++ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/esutils": { + "version": "2.0.3", ++ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", ++ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, +- "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", ++ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", ++ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", ++ "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", ++ "dev": true + }, + "node_modules/events": { + "version": "3.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", ++ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { +- "version": "5.1.1", +- "license": "MIT", ++ "version": "8.0.1", ++ "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", ++ "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", ++ "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", +- "get-stream": "^6.0.0", +- "human-signals": "^2.1.0", +- "is-stream": "^2.0.0", ++ "get-stream": "^8.0.1", ++ "human-signals": "^5.0.0", ++ "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", +- "npm-run-path": "^4.0.1", +- "onetime": "^5.1.2", +- "signal-exit": "^3.0.3", +- "strip-final-newline": "^2.0.0" ++ "npm-run-path": "^5.1.0", ++ "onetime": "^6.0.0", ++ "signal-exit": "^4.1.0", ++ "strip-final-newline": "^3.0.0" + }, + "engines": { +- "node": ">=10" ++ "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, +- "node_modules/execa/node_modules/get-stream": { +- "version": "6.0.1", +- "license": "MIT", ++ "node_modules/execa/node_modules/mimic-fn": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", ++ "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", ++ "dev": true, + "engines": { +- "node": ">=10" ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/execa/node_modules/onetime": { ++ "version": "6.0.0", ++ "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", ++ "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", ++ "dev": true, ++ "dependencies": { ++ "mimic-fn": "^4.0.0" ++ }, ++ "engines": { ++ "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" +@@ -8361,15 +9571,17 @@ + }, + "node_modules/expand-template": { + "version": "2.0.3", +- "license": "(MIT OR WTFPL)", ++ "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", ++ "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/express": { + "version": "4.19.2", ++ "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", ++ "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", +@@ -8407,28 +9619,26 @@ + "node": ">= 0.10.0" + } + }, +- "node_modules/express/node_modules/array-flatten": { +- "version": "1.1.1", +- "dev": true, +- "license": "MIT" +- }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", ++ "dev": true + }, + "node_modules/external-editor": { + "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", ++ "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, +- "license": "MIT", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", +@@ -8440,8 +9650,9 @@ + }, + "node_modules/external-editor/node_modules/iconv-lite": { + "version": "0.4.24", ++ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", ++ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, +@@ -8451,7 +9662,8 @@ + }, + "node_modules/extract-zip": { + "version": "2.0.1", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", ++ "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", +@@ -8467,14 +9679,40 @@ + "@types/yauzl": "^2.9.1" + } + }, ++ "node_modules/extract-zip/node_modules/get-stream": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", ++ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", ++ "dependencies": { ++ "pump": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/extsprintf": { ++ "version": "1.4.1", ++ "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", ++ "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", ++ "dev": true, ++ "engines": [ ++ "node >=0.6.0" ++ ], ++ "optional": true ++ }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", ++ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.2", ++ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", ++ "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", +@@ -8488,32 +9726,42 @@ + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", ++ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", ++ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", ++ "dev": true ++ }, ++ "node_modules/fast-uri": { ++ "version": "3.0.1", ++ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", ++ "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", ++ "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { +- "version": "1.15.0", ++ "version": "1.17.1", ++ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", ++ "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, +- "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", ++ "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", ++ "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, +@@ -8523,15 +9771,17 @@ + }, + "node_modules/fd-slicer": { + "version": "1.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", ++ "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/figures": { + "version": "3.2.0", ++ "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", ++ "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, +@@ -8544,16 +9794,18 @@ + }, + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", ++ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", ++ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", ++ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", ++ "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, +@@ -8563,7 +9815,8 @@ + }, + "node_modules/file-loader": { + "version": "6.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", ++ "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" +@@ -8579,9 +9832,38 @@ + "webpack": "^4.0.0 || ^5.0.0" + } + }, ++ "node_modules/file-loader/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", ++ "dependencies": { ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" ++ }, ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" ++ } ++ }, ++ "node_modules/file-loader/node_modules/ajv-keywords": { ++ "version": "3.5.2", ++ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", ++ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", ++ "peerDependencies": { ++ "ajv": "^6.9.1" ++ } ++ }, ++ "node_modules/file-loader/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" ++ }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", ++ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", +@@ -8597,19 +9879,22 @@ + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", ++ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" + }, + "node_modules/filelist": { + "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", ++ "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/fill-range": { +- "version": "7.0.1", +- "license": "MIT", ++ "version": "7.1.1", ++ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", ++ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, +@@ -8619,8 +9904,9 @@ + }, + "node_modules/finalhandler": { + "version": "1.2.0", ++ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", ++ "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", +@@ -8636,20 +9922,23 @@ + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", ++ "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", ++ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", +@@ -8663,27 +9952,35 @@ + } + }, + "node_modules/find-up": { +- "version": "2.1.0", ++ "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-7.0.0.tgz", ++ "integrity": "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "locate-path": "^2.0.0" ++ "locate-path": "^7.2.0", ++ "path-exists": "^5.0.0", ++ "unicorn-magic": "^0.1.0" + }, + "engines": { +- "node": ">=4" ++ "node": ">=18" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat": { + "version": "5.0.2", +- "license": "BSD-3-Clause", ++ "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", ++ "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", ++ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", ++ "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", +@@ -8694,13 +9991,15 @@ + } + }, + "node_modules/flatted": { +- "version": "3.2.9", +- "dev": true, +- "license": "ISC" ++ "version": "3.3.1", ++ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", ++ "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", ++ "dev": true + }, + "node_modules/floating-vue": { +- "version": "2.0.0-beta.24", +- "license": "MIT", ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/floating-vue/-/floating-vue-2.0.0.tgz", ++ "integrity": "sha512-YSffLYOjoaaPPBZc7VQR2qMCQ7xeXuh7i8a2u8WOdSmkjTtKtZpj2aaJnLtZRHmehrMHyCgtSxLu8jFNNX2sVw==", + "dependencies": { + "@floating-ui/dom": "~1.1.1", + "vue-resize": "^2.0.0-alpha.1" +@@ -8717,6 +10016,8 @@ + }, + "node_modules/follow-redirects": { + "version": "1.15.6", ++ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", ++ "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "dev": true, + "funding": [ + { +@@ -8724,7 +10025,6 @@ + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], +- "license": "MIT", + "engines": { + "node": ">=4.0" + }, +@@ -8736,16 +10036,18 @@ + }, + "node_modules/for-each": { + "version": "0.3.3", ++ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", ++ "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { +- "version": "3.1.1", ++ "version": "3.3.0", ++ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", ++ "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, +- "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" +@@ -8757,21 +10059,11 @@ + "url": "https://github.com/sponsors/isaacs" + } + }, +- "node_modules/foreground-child/node_modules/signal-exit": { +- "version": "4.1.0", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=14" +- }, +- "funding": { +- "url": "https://github.com/sponsors/isaacs" +- } +- }, + "node_modules/form-data": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", ++ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, +- "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", +@@ -8783,24 +10075,27 @@ + }, + "node_modules/forwarded": { + "version": "0.2.0", ++ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", ++ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", ++ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", ++ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-access": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/fs-access/-/fs-access-1.0.1.tgz", ++ "integrity": "sha512-05cXDIwNbFaoFWaz5gNHlUTbH5whiss/hr/ibzPd4MH3cR4w0ZKeIPiVdbyJurg3O5r/Bjpvn9KOb1/rPMf3nA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "null-check": "^1.0.0" + }, +@@ -8810,11 +10105,13 @@ + }, + "node_modules/fs-constants": { + "version": "1.0.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", ++ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "node_modules/fs-extra": { + "version": "8.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", ++ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", +@@ -8826,8 +10123,9 @@ + }, + "node_modules/fs-minipass": { + "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", ++ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, +- "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, +@@ -8837,8 +10135,9 @@ + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", ++ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", ++ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, +- "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, +@@ -8848,29 +10147,47 @@ + }, + "node_modules/fs-minipass/node_modules/yallist": { + "version": "4.0.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", ++ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", ++ "dev": true + }, + "node_modules/fs-monkey": { +- "version": "1.0.5", +- "dev": true, +- "license": "Unlicense" ++ "version": "1.0.6", ++ "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", ++ "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==", ++ "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", ++ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" ++ }, ++ "node_modules/fsevents": { ++ "version": "2.3.3", ++ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", ++ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", ++ "hasInstallScript": true, ++ "optional": true, ++ "os": [ ++ "darwin" ++ ], ++ "engines": { ++ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" ++ } + }, + "node_modules/function-bind": { + "version": "1.1.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", ++ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", ++ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", ++ "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", +@@ -8886,27 +10203,31 @@ + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", ++ "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", ++ "dev": true + }, + "node_modules/functions-have-names": { + "version": "1.2.3", ++ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", ++ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, +- "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generate-function": { + "version": "2.3.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", ++ "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", + "dependencies": { + "is-property": "^1.0.2" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", ++ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "peer": true, + "engines": { + "node": ">=6.9.0" +@@ -8914,30 +10235,37 @@ + }, + "node_modules/get-caller-file": { + "version": "2.0.5", ++ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", ++ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, +- "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { +- "version": "1.2.2", ++ "version": "1.2.4", ++ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", ++ "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "devOptional": true, +- "license": "MIT", + "dependencies": { ++ "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, ++ "engines": { ++ "node": ">= 0.4" ++ }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-pkg-repo": { + "version": "4.2.1", ++ "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz", ++ "integrity": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@hutson/parse-repository-url": "^3.0.0", + "hosted-git-info": "^4.0.0", +@@ -8953,8 +10281,9 @@ + }, + "node_modules/get-pkg-repo/node_modules/cliui": { + "version": "7.0.4", ++ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", ++ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, +- "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", +@@ -8963,13 +10292,15 @@ + }, + "node_modules/get-pkg-repo/node_modules/isarray": { + "version": "1.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", ++ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", ++ "dev": true + }, + "node_modules/get-pkg-repo/node_modules/readable-stream": { + "version": "2.3.8", ++ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", ++ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", +@@ -8982,21 +10313,24 @@ + }, + "node_modules/get-pkg-repo/node_modules/safe-buffer": { + "version": "5.1.2", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", ++ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", ++ "dev": true + }, + "node_modules/get-pkg-repo/node_modules/string_decoder": { + "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", ++ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/get-pkg-repo/node_modules/through2": { + "version": "2.0.5", ++ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", ++ "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" +@@ -9004,8 +10338,9 @@ + }, + "node_modules/get-pkg-repo/node_modules/wrap-ansi": { + "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", ++ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", +@@ -9018,18 +10353,11 @@ + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, +- "node_modules/get-pkg-repo/node_modules/y18n": { +- "version": "5.0.8", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/get-pkg-repo/node_modules/yargs": { + "version": "16.2.0", ++ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", ++ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", +@@ -9043,9 +10371,19 @@ + "node": ">=10" + } + }, ++ "node_modules/get-pkg-repo/node_modules/yargs-parser": { ++ "version": "20.2.9", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", ++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", ++ "dev": true, ++ "engines": { ++ "node": ">=10" ++ } ++ }, + "node_modules/get-stdin": { + "version": "8.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", ++ "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "engines": { + "node": ">=10" + }, +@@ -9054,25 +10392,26 @@ + } + }, + "node_modules/get-stream": { +- "version": "5.2.0", +- "license": "MIT", +- "dependencies": { +- "pump": "^3.0.0" +- }, ++ "version": "8.0.1", ++ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", ++ "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", ++ "dev": true, + "engines": { +- "node": ">=8" ++ "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { +- "version": "1.0.0", ++ "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", ++ "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "get-intrinsic": "^1.1.1" ++ "call-bind": "^1.0.5", ++ "es-errors": "^1.3.0", ++ "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" +@@ -9082,35 +10421,27 @@ + } + }, + "node_modules/git-raw-commits": { +- "version": "2.0.11", ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-4.0.0.tgz", ++ "integrity": "sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "dargs": "^7.0.0", +- "lodash": "^4.17.15", +- "meow": "^8.0.0", +- "split2": "^3.0.0", +- "through2": "^4.0.0" ++ "dargs": "^8.0.0", ++ "meow": "^12.0.1", ++ "split2": "^4.0.0" + }, + "bin": { +- "git-raw-commits": "cli.js" ++ "git-raw-commits": "cli.mjs" + }, + "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/git-raw-commits/node_modules/split2": { +- "version": "3.2.2", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "readable-stream": "^3.0.0" ++ "node": ">=16" + } + }, + "node_modules/git-remote-origin-url": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", ++ "integrity": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "gitconfiglocal": "^1.0.0", + "pify": "^2.3.0" +@@ -9121,16 +10452,18 @@ + }, + "node_modules/git-remote-origin-url/node_modules/pify": { + "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", ++ "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/git-semver-tags": { + "version": "4.1.1", ++ "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz", ++ "integrity": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "meow": "^8.0.0", + "semver": "^6.0.0" +@@ -9142,21 +10475,260 @@ + "node": ">=10" + } + }, ++ "node_modules/git-semver-tags/node_modules/find-up": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", ++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", ++ "dev": true, ++ "dependencies": { ++ "locate-path": "^5.0.0", ++ "path-exists": "^4.0.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/locate-path": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", ++ "dev": true, ++ "dependencies": { ++ "p-locate": "^4.1.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/meow": { ++ "version": "8.1.2", ++ "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", ++ "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", ++ "dev": true, ++ "dependencies": { ++ "@types/minimist": "^1.2.0", ++ "camelcase-keys": "^6.2.2", ++ "decamelize-keys": "^1.1.0", ++ "hard-rejection": "^2.1.0", ++ "minimist-options": "4.1.0", ++ "normalize-package-data": "^3.0.0", ++ "read-pkg-up": "^7.0.1", ++ "redent": "^3.0.0", ++ "trim-newlines": "^3.0.0", ++ "type-fest": "^0.18.0", ++ "yargs-parser": "^20.2.3" ++ }, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/normalize-package-data": { ++ "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", ++ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", ++ "dev": true, ++ "dependencies": { ++ "hosted-git-info": "^4.0.1", ++ "is-core-module": "^2.5.0", ++ "semver": "^7.3.4", ++ "validate-npm-package-license": "^3.0.1" ++ }, ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/normalize-package-data/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "dev": true, ++ "bin": { ++ "semver": "bin/semver.js" ++ }, ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/p-limit": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", ++ "dev": true, ++ "dependencies": { ++ "p-try": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=6" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/p-locate": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", ++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", ++ "dev": true, ++ "dependencies": { ++ "p-limit": "^2.2.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/parse-json": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", ++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", ++ "dev": true, ++ "dependencies": { ++ "@babel/code-frame": "^7.0.0", ++ "error-ex": "^1.3.1", ++ "json-parse-even-better-errors": "^2.3.0", ++ "lines-and-columns": "^1.1.6" ++ }, ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/path-exists": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", ++ "dev": true, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/read-pkg": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", ++ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", ++ "dev": true, ++ "dependencies": { ++ "@types/normalize-package-data": "^2.4.0", ++ "normalize-package-data": "^2.5.0", ++ "parse-json": "^5.0.0", ++ "type-fest": "^0.6.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/read-pkg-up": { ++ "version": "7.0.1", ++ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", ++ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", ++ "dev": true, ++ "dependencies": { ++ "find-up": "^4.1.0", ++ "read-pkg": "^5.2.0", ++ "type-fest": "^0.8.1" ++ }, ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/read-pkg-up/node_modules/type-fest": { ++ "version": "0.8.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", ++ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", ++ "dev": true, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/read-pkg/node_modules/hosted-git-info": { ++ "version": "2.8.9", ++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", ++ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", ++ "dev": true ++ }, ++ "node_modules/git-semver-tags/node_modules/read-pkg/node_modules/normalize-package-data": { ++ "version": "2.5.0", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", ++ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", ++ "dev": true, ++ "dependencies": { ++ "hosted-git-info": "^2.1.4", ++ "resolve": "^1.10.0", ++ "semver": "2 || 3 || 4 || 5", ++ "validate-npm-package-license": "^3.0.1" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/read-pkg/node_modules/semver": { ++ "version": "5.7.2", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", ++ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", ++ "dev": true, ++ "bin": { ++ "semver": "bin/semver" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/read-pkg/node_modules/type-fest": { ++ "version": "0.6.0", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", ++ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", ++ "dev": true, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/type-fest": { ++ "version": "0.18.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", ++ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", ++ "dev": true, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/git-semver-tags/node_modules/yargs-parser": { ++ "version": "20.2.9", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", ++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", ++ "dev": true, ++ "engines": { ++ "node": ">=10" ++ } ++ }, + "node_modules/gitconfiglocal": { + "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", ++ "integrity": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==", + "dev": true, +- "license": "BSD", + "dependencies": { + "ini": "^1.3.2" + } + }, ++ "node_modules/gitconfiglocal/node_modules/ini": { ++ "version": "1.3.8", ++ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", ++ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", ++ "dev": true ++ }, + "node_modules/github-from-package": { + "version": "0.0.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", ++ "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + }, + "node_modules/glob": { + "version": "7.2.3", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", ++ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", ++ "deprecated": "Glob versions prior to v9 are no longer supported", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", +@@ -9174,7 +10746,8 @@ + }, + "node_modules/glob-parent": { + "version": "5.1.2", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", ++ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, +@@ -9184,11 +10757,13 @@ + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", +- "license": "BSD-2-Clause" ++ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", ++ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" +@@ -9196,7 +10771,8 @@ + }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, +@@ -9206,7 +10782,8 @@ + }, + "node_modules/global-agent": { + "version": "3.0.0", +- "license": "BSD-3-Clause", ++ "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", ++ "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", + "optional": true, + "dependencies": { + "boolean": "^3.0.1", +@@ -9214,30 +10791,17 @@ + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", +- "serialize-error": "^7.0.1" +- }, +- "engines": { +- "node": ">=10.0" +- } +- }, +- "node_modules/global-agent/node_modules/lru-cache": { +- "version": "6.0.0", +- "license": "ISC", +- "optional": true, +- "dependencies": { +- "yallist": "^4.0.0" ++ "serialize-error": "^7.0.1" + }, + "engines": { +- "node": ">=10" ++ "node": ">=10.0" + } + }, + "node_modules/global-agent/node_modules/semver": { +- "version": "7.5.4", +- "license": "ISC", ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "optional": true, +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -9245,15 +10809,11 @@ + "node": ">=10" + } + }, +- "node_modules/global-agent/node_modules/yallist": { +- "version": "4.0.0", +- "license": "ISC", +- "optional": true +- }, + "node_modules/global-directory": { + "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", ++ "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ini": "4.1.1" + }, +@@ -9264,18 +10824,11 @@ + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/global-directory/node_modules/ini": { +- "version": "4.1.1", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": "^14.17.0 || ^16.13.0 || >=18.0.0" +- } +- }, + "node_modules/global-modules": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", ++ "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, +- "license": "MIT", + "dependencies": { + "global-prefix": "^3.0.0" + }, +@@ -9285,8 +10838,9 @@ + }, + "node_modules/global-prefix": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", ++ "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", +@@ -9296,10 +10850,17 @@ + "node": ">=6" + } + }, ++ "node_modules/global-prefix/node_modules/ini": { ++ "version": "1.3.8", ++ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", ++ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", ++ "dev": true ++ }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", ++ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", ++ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, +- "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, +@@ -9309,17 +10870,20 @@ + }, + "node_modules/globals": { + "version": "11.12.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", ++ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { +- "version": "1.0.3", ++ "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", ++ "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "devOptional": true, +- "license": "MIT", + "dependencies": { +- "define-properties": "^1.1.3" ++ "define-properties": "^1.2.1", ++ "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" +@@ -9330,8 +10894,9 @@ + }, + "node_modules/globby": { + "version": "11.1.0", ++ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", ++ "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", +@@ -9349,13 +10914,15 @@ + }, + "node_modules/globjoin": { + "version": "0.1.4", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", ++ "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", ++ "dev": true + }, + "node_modules/gopd": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", ++ "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "devOptional": true, +- "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, +@@ -9365,7 +10932,8 @@ + }, + "node_modules/got": { + "version": "11.8.6", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", ++ "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", +@@ -9388,17 +10956,20 @@ + }, + "node_modules/graceful-fs": { + "version": "4.2.11", +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", ++ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/handle-thing": { + "version": "2.0.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", ++ "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", ++ "dev": true + }, + "node_modules/handlebars": { + "version": "4.7.8", ++ "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", ++ "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", +@@ -9417,50 +10988,56 @@ + }, + "node_modules/hard-rejection": { + "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", ++ "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", ++ "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", ++ "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, +- "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", ++ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { +- "version": "1.0.1", ++ "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", ++ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "devOptional": true, +- "license": "MIT", + "dependencies": { +- "get-intrinsic": "^1.2.2" ++ "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { +- "version": "1.0.1", ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", ++ "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "devOptional": true, +- "license": "MIT", + "engines": { + "node": ">= 0.4" + }, +@@ -9470,8 +11047,9 @@ + }, + "node_modules/has-symbols": { + "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", ++ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "devOptional": true, +- "license": "MIT", + "engines": { + "node": ">= 0.4" + }, +@@ -9480,11 +11058,12 @@ + } + }, + "node_modules/has-tostringtag": { +- "version": "1.0.0", ++ "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", ++ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "has-symbols": "^1.0.2" ++ "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" +@@ -9495,11 +11074,13 @@ + }, + "node_modules/hash-sum": { + "version": "2.0.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", ++ "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" + }, + "node_modules/hasown": { +- "version": "2.0.0", +- "license": "MIT", ++ "version": "2.0.2", ++ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", ++ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, +@@ -9509,15 +11090,17 @@ + }, + "node_modules/he": { + "version": "1.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", ++ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hosted-git-info": { + "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", ++ "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, +- "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, +@@ -9527,8 +11110,9 @@ + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", ++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", ++ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, +- "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, +@@ -9538,13 +11122,15 @@ + }, + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", ++ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", ++ "dev": true + }, + "node_modules/hpack.js": { + "version": "2.1.6", ++ "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", ++ "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", +@@ -9554,13 +11140,15 @@ + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", ++ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", ++ "dev": true + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", ++ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", ++ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", +@@ -9573,19 +11161,23 @@ + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", ++ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", ++ "dev": true + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", ++ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-entities": { +- "version": "2.4.0", ++ "version": "2.5.2", ++ "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", ++ "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", + "dev": true, + "funding": [ + { +@@ -9596,12 +11188,12 @@ + "type": "patreon", + "url": "https://patreon.com/mdevils" + } +- ], +- "license": "MIT" ++ ] + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", ++ "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", +@@ -9620,15 +11212,17 @@ + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "8.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", ++ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/html-tags": { + "version": "3.3.1", ++ "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", ++ "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + }, +@@ -9637,8 +11231,9 @@ + } + }, + "node_modules/html-webpack-plugin": { +- "version": "5.5.3", +- "license": "MIT", ++ "version": "5.5.4", ++ "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.4.tgz", ++ "integrity": "sha512-3wNSaVVxdxcu0jd4FpQFoICdqgxs4zIQQvj+2yQKFfBOnLETQ6X5CDWdeasuGlSsooFlMkEioWDTqBv1wvw5Iw==", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", +@@ -9659,6 +11254,8 @@ + }, + "node_modules/htmlparser2": { + "version": "8.0.2", ++ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", ++ "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { +@@ -9666,7 +11263,6 @@ + "url": "https://github.com/sponsors/fb55" + } + ], +- "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", +@@ -9676,17 +11272,20 @@ + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", +- "license": "BSD-2-Clause" ++ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", ++ "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + }, + "node_modules/http-deceiver": { + "version": "1.2.7", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", ++ "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", ++ "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", ++ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", +@@ -9700,13 +11299,15 @@ + }, + "node_modules/http-parser-js": { + "version": "0.5.8", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", ++ "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", ++ "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", ++ "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", ++ "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", +@@ -9718,8 +11319,9 @@ + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", ++ "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", +@@ -9731,8 +11333,9 @@ + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", ++ "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", ++ "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", +@@ -9752,20 +11355,10 @@ + } + } + }, +- "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { +- "version": "3.0.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=10" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, + "node_modules/http2-wrapper": { + "version": "1.0.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", ++ "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" +@@ -9776,8 +11369,9 @@ + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", ++ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", ++ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" +@@ -9787,16 +11381,19 @@ + } + }, + "node_modules/human-signals": { +- "version": "2.1.0", +- "license": "Apache-2.0", ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", ++ "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", ++ "dev": true, + "engines": { +- "node": ">=10.17.0" ++ "node": ">=16.17.0" + } + }, + "node_modules/husky": { + "version": "9.0.11", ++ "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.11.tgz", ++ "integrity": "sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==", + "dev": true, +- "license": "MIT", + "bin": { + "husky": "bin.mjs" + }, +@@ -9807,9 +11404,27 @@ + "url": "https://github.com/sponsors/typicode" + } + }, ++ "node_modules/iconv-corefoundation": { ++ "version": "1.1.7", ++ "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz", ++ "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==", ++ "dev": true, ++ "optional": true, ++ "os": [ ++ "darwin" ++ ], ++ "dependencies": { ++ "cli-truncate": "^2.1.0", ++ "node-addon-api": "^1.6.3" ++ }, ++ "engines": { ++ "node": "^8.11.2 || >=10" ++ } ++ }, + "node_modules/iconv-lite": { + "version": "0.6.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", ++ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, +@@ -9819,7 +11434,8 @@ + }, + "node_modules/icss-utils": { + "version": "5.1.0", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", ++ "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, +@@ -9829,6 +11445,8 @@ + }, + "node_modules/ieee754": { + "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", ++ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", +@@ -9842,25 +11460,27 @@ + "type": "consulting", + "url": "https://feross.org/support" + } +- ], +- "license": "BSD-3-Clause" ++ ] + }, + "node_modules/ignore": { +- "version": "5.3.0", ++ "version": "5.3.2", ++ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", ++ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immediate": { + "version": "3.0.6", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", ++ "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" + }, + "node_modules/import-fresh": { + "version": "3.3.0", ++ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", ++ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" +@@ -9872,17 +11492,28 @@ + "url": "https://github.com/sponsors/sindresorhus" + } + }, ++ "node_modules/import-fresh/node_modules/resolve-from": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", ++ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", ++ "dev": true, ++ "engines": { ++ "node": ">=4" ++ } ++ }, + "node_modules/import-lazy": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", ++ "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local": { +- "version": "3.1.0", +- "license": "MIT", ++ "version": "3.2.0", ++ "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", ++ "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" +@@ -9898,9 +11529,10 @@ + } + }, + "node_modules/import-meta-resolve": { +- "version": "4.0.0", ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", ++ "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", + "dev": true, +- "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" +@@ -9908,23 +11540,27 @@ + }, + "node_modules/imurmurhash": { + "version": "0.1.4", ++ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", ++ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", ++ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", ++ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", ++ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" +@@ -9932,16 +11568,23 @@ + }, + "node_modules/inherits": { + "version": "2.0.4", +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", ++ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { +- "version": "1.3.8", +- "license": "ISC" ++ "version": "4.1.1", ++ "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", ++ "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", ++ "dev": true, ++ "engines": { ++ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" ++ } + }, + "node_modules/inquirer": { + "version": "7.3.3", ++ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", ++ "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", +@@ -9962,11 +11605,12 @@ + } + }, + "node_modules/internal-slot": { +- "version": "1.0.6", ++ "version": "1.0.7", ++ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", ++ "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "get-intrinsic": "^1.2.2", ++ "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, +@@ -9976,14 +11620,16 @@ + }, + "node_modules/interpret": { + "version": "2.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", ++ "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ip-address": { + "version": "5.9.4", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-5.9.4.tgz", ++ "integrity": "sha512-dHkI3/YNJq4b/qQaz+c8LuarD3pY24JqZWfjB8aZx1gtpc2MDILu9L9jpZe1sHpzo/yWFweQVn+U//FhazUxmw==", + "dependencies": { + "jsbn": "1.1.0", + "lodash": "^4.17.15", +@@ -9994,21 +11640,25 @@ + } + }, + "node_modules/ipaddr.js": { +- "version": "2.1.0", ++ "version": "2.2.0", ++ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", ++ "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-array-buffer": { +- "version": "3.0.2", ++ "version": "3.0.4", ++ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", ++ "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", +- "get-intrinsic": "^1.2.0", +- "is-typed-array": "^1.1.10" ++ "get-intrinsic": "^1.2.1" ++ }, ++ "engines": { ++ "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" +@@ -10016,13 +11666,15 @@ + }, + "node_modules/is-arrayish": { + "version": "0.2.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", ++ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", ++ "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", ++ "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, +@@ -10032,7 +11684,8 @@ + }, + "node_modules/is-binary-path": { + "version": "2.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", ++ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, +@@ -10042,8 +11695,9 @@ + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", ++ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", ++ "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" +@@ -10057,8 +11711,9 @@ + }, + "node_modules/is-callable": { + "version": "1.2.7", ++ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", ++ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.4" + }, +@@ -10068,8 +11723,9 @@ + }, + "node_modules/is-ci": { + "version": "3.0.1", ++ "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", ++ "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ci-info": "^3.2.0" + }, +@@ -10078,10 +11734,29 @@ + } + }, + "node_modules/is-core-module": { +- "version": "2.13.1", +- "license": "MIT", ++ "version": "2.15.1", ++ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", ++ "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "dependencies": { +- "hasown": "^2.0.0" ++ "hasown": "^2.0.2" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" ++ } ++ }, ++ "node_modules/is-data-view": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", ++ "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", ++ "dev": true, ++ "dependencies": { ++ "is-typed-array": "^1.1.13" ++ }, ++ "engines": { ++ "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" +@@ -10089,8 +11764,9 @@ + }, + "node_modules/is-date-object": { + "version": "1.0.5", ++ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", ++ "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, +@@ -10103,8 +11779,9 @@ + }, + "node_modules/is-docker": { + "version": "2.2.1", ++ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", ++ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, +- "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, +@@ -10117,22 +11794,25 @@ + }, + "node_modules/is-extglob": { + "version": "2.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", ++ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", ++ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", ++ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, +@@ -10141,9 +11821,10 @@ + } + }, + "node_modules/is-negative-zero": { +- "version": "2.0.2", ++ "version": "2.0.3", ++ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", ++ "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.4" + }, +@@ -10153,15 +11834,17 @@ + }, + "node_modules/is-number": { + "version": "7.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", ++ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", ++ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", ++ "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, +@@ -10174,35 +11857,43 @@ + }, + "node_modules/is-obj": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", ++ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { +- "version": "1.1.0", ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", ++ "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=0.10.0" ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", ++ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-property": { + "version": "1.0.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", ++ "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" + }, + "node_modules/is-regex": { + "version": "1.1.4", ++ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", ++ "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" +@@ -10215,21 +11906,27 @@ + } + }, + "node_modules/is-shared-array-buffer": { +- "version": "1.0.2", ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", ++ "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2" ++ "call-bind": "^1.0.7" ++ }, ++ "engines": { ++ "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { +- "version": "2.0.1", +- "license": "MIT", ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", ++ "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", ++ "dev": true, + "engines": { +- "node": ">=8" ++ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" +@@ -10237,8 +11934,9 @@ + }, + "node_modules/is-string": { + "version": "1.0.7", ++ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", ++ "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, +@@ -10251,8 +11949,9 @@ + }, + "node_modules/is-symbol": { + "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", ++ "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, +@@ -10264,22 +11963,24 @@ + } + }, + "node_modules/is-text-path": { +- "version": "1.0.1", ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz", ++ "integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "text-extensions": "^1.0.0" ++ "text-extensions": "^2.0.0" + }, + "engines": { +- "node": ">=0.10.0" ++ "node": ">=8" + } + }, + "node_modules/is-typed-array": { +- "version": "1.1.12", ++ "version": "1.1.13", ++ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", ++ "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "which-typed-array": "^1.1.11" ++ "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" +@@ -10290,8 +11991,9 @@ + }, + "node_modules/is-weakref": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", ++ "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, +@@ -10301,8 +12003,9 @@ + }, + "node_modules/is-wsl": { + "version": "2.2.0", ++ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", ++ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, +- "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, +@@ -10312,13 +12015,15 @@ + }, + "node_modules/isarray": { + "version": "2.0.5", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", ++ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", ++ "dev": true + }, + "node_modules/isbinaryfile": { + "version": "5.0.2", ++ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.2.tgz", ++ "integrity": "sha512-GvcjojwonMjWbTkfMpnVHVqXW/wKMYDfEpY94/8zy8HFMOqb/VL6oeONq9v87q4ttVlaTLnGXnJD4B5B1OTGIg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 18.0.0" + }, +@@ -10328,25 +12033,25 @@ + }, + "node_modules/isexe": { + "version": "2.0.0", +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", ++ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", ++ "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jackspeak": { +- "version": "2.3.6", ++ "version": "3.4.3", ++ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", ++ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, +- "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, +- "engines": { +- "node": ">=14" +- }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, +@@ -10355,9 +12060,10 @@ + } + }, + "node_modules/jake": { +- "version": "10.9.1", ++ "version": "10.9.2", ++ "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", ++ "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", +@@ -10373,8 +12079,9 @@ + }, + "node_modules/jake/node_modules/brace-expansion": { + "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" +@@ -10382,8 +12089,9 @@ + }, + "node_modules/jake/node_modules/minimatch": { + "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, +- "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, +@@ -10393,7 +12101,8 @@ + }, + "node_modules/jest-worker": { + "version": "27.5.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", ++ "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", +@@ -10405,7 +12114,8 @@ + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", ++ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, +@@ -10417,20 +12127,23 @@ + } + }, + "node_modules/jiti": { +- "version": "1.21.0", ++ "version": "1.21.6", ++ "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", ++ "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "dev": true, +- "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", ++ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", ++ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, +@@ -10440,11 +12153,13 @@ + }, + "node_modules/jsbn": { + "version": "1.1.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", ++ "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" + }, + "node_modules/jsesc": { + "version": "2.5.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", ++ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, +@@ -10454,12 +12169,14 @@ + }, + "node_modules/json-buffer": { + "version": "3.0.1", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", ++ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/json-fixer": { + "version": "1.6.15", ++ "resolved": "https://registry.npmjs.org/json-fixer/-/json-fixer-1.6.15.tgz", ++ "integrity": "sha512-TuDuZ5KrgyjoCIppdPXBMqiGfota55+odM+j2cQ5rt/XKyKmqGB3Whz1F8SN8+60yYGy/Nu5lbRZ+rx8kBIvBw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.9", + "chalk": "^4.1.2", +@@ -10471,38 +12188,46 @@ + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", ++ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", ++ "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", ++ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { +- "version": "0.4.1", +- "license": "MIT" ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", ++ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/json-schema-typed": { + "version": "7.0.3", +- "license": "BSD-2-Clause" ++ "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-7.0.3.tgz", ++ "integrity": "sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", ++ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", ++ "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", +- "devOptional": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", ++ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", ++ "devOptional": true + }, + "node_modules/json2php": { +- "version": "0.0.7", +- "license": "BSD" ++ "version": "0.0.9", ++ "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.9.tgz", ++ "integrity": "sha512-fQMYwvPsQt8hxRnCGyg1r2JVi6yL8Um0DIIawiKiMK9yhAAkcRNj5UsBWoaFvFzPpcWbgw9L6wzj+UMYA702Mw==" + }, + "node_modules/json5": { + "version": "2.2.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", ++ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, +@@ -10512,23 +12237,26 @@ + }, + "node_modules/jsonfile": { + "version": "4.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", ++ "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonparse": { + "version": "1.3.1", ++ "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", ++ "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true, + "engines": [ + "node >= 0.2.0" +- ], +- "license": "MIT" ++ ] + }, + "node_modules/JSONStream": { + "version": "1.3.5", ++ "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", ++ "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dev": true, +- "license": "(MIT OR Apache-2.0)", + "dependencies": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" +@@ -10542,7 +12270,8 @@ + }, + "node_modules/jszip": { + "version": "3.10.1", +- "license": "(MIT OR GPL-3.0-or-later)", ++ "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", ++ "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "dependencies": { + "lie": "~3.3.0", + "pako": "~1.0.2", +@@ -10552,11 +12281,13 @@ + }, + "node_modules/jszip/node_modules/isarray": { + "version": "1.0.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", ++ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/jszip/node_modules/readable-stream": { + "version": "2.3.8", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", ++ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", +@@ -10569,49 +12300,57 @@ + }, + "node_modules/jszip/node_modules/safe-buffer": { + "version": "5.1.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", ++ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/jszip/node_modules/string_decoder": { + "version": "1.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", ++ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", ++ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", ++ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klona": { + "version": "2.0.6", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", ++ "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/known-css-properties": { + "version": "0.29.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.29.0.tgz", ++ "integrity": "sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==", ++ "dev": true + }, + "node_modules/lazy-val": { + "version": "1.0.5", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", ++ "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==" + }, + "node_modules/lazystream": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", ++ "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, +- "license": "MIT", + "peer": true, + "dependencies": { + "readable-stream": "^2.0.5" +@@ -10622,14 +12361,16 @@ + }, + "node_modules/lazystream/node_modules/isarray": { + "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", ++ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, +- "license": "MIT", + "peer": true + }, + "node_modules/lazystream/node_modules/readable-stream": { + "version": "2.3.8", ++ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", ++ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, +- "license": "MIT", + "peer": true, + "dependencies": { + "core-util-is": "~1.0.0", +@@ -10643,14 +12384,16 @@ + }, + "node_modules/lazystream/node_modules/safe-buffer": { + "version": "5.1.2", ++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", ++ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, +- "license": "MIT", + "peer": true + }, + "node_modules/lazystream/node_modules/string_decoder": { + "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", ++ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, +- "license": "MIT", + "peer": true, + "dependencies": { + "safe-buffer": "~5.1.0" +@@ -10658,12 +12401,14 @@ + }, + "node_modules/leaflet": { + "version": "1.7.1", +- "license": "BSD-2-Clause" ++ "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.7.1.tgz", ++ "integrity": "sha512-/xwPEBidtg69Q3HlqPdU3DnrXQOvQU/CCHA1tcDQVzOwm91YMYaILjNp7L4Eaw5Z4sOYdbBz6koWyibppd8Zqw==" + }, + "node_modules/levn": { + "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", ++ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" +@@ -10674,20 +12419,23 @@ + }, + "node_modules/lie": { + "version": "3.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", ++ "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "dependencies": { + "immediate": "~3.0.5" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", ++ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", ++ "dev": true + }, + "node_modules/load-json-file": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", ++ "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", +@@ -10700,22 +12448,25 @@ + }, + "node_modules/load-json-file/node_modules/pify": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", ++ "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", ++ "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", ++ "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", +@@ -10726,116 +12477,139 @@ + } + }, + "node_modules/locate-path": { +- "version": "2.0.0", ++ "version": "7.2.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", ++ "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "p-locate": "^2.0.0", +- "path-exists": "^3.0.0" ++ "p-locate": "^6.0.0" + }, + "engines": { +- "node": ">=4" ++ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", ++ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", ++ "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", ++ "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", ++ "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", ++ "dev": true + }, + "node_modules/lodash.defaults": { + "version": "4.2.0", ++ "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", ++ "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", + "dev": true, +- "license": "MIT", + "peer": true + }, + "node_modules/lodash.difference": { + "version": "4.5.0", ++ "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", ++ "integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==", + "dev": true, +- "license": "MIT", + "peer": true + }, + "node_modules/lodash.escaperegexp": { + "version": "4.1.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", ++ "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==" + }, + "node_modules/lodash.flatten": { + "version": "4.4.0", ++ "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", ++ "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==", + "dev": true, +- "license": "MIT", + "peer": true + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", ++ "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "node_modules/lodash.ismatch": { + "version": "4.4.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", ++ "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==", ++ "dev": true + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", ++ "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", ++ "dev": true + }, + "node_modules/lodash.kebabcase": { + "version": "4.1.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", ++ "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", ++ "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", ++ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", ++ "dev": true + }, + "node_modules/lodash.mergewith": { + "version": "4.6.2", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", ++ "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", ++ "dev": true + }, + "node_modules/lodash.snakecase": { + "version": "4.1.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", ++ "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", ++ "dev": true + }, + "node_modules/lodash.startcase": { + "version": "4.4.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz", ++ "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", ++ "dev": true + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", ++ "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", ++ "dev": true + }, + "node_modules/lodash.union": { + "version": "4.6.0", ++ "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz", ++ "integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==", + "dev": true, +- "license": "MIT", + "peer": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", ++ "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", ++ "dev": true + }, + "node_modules/lodash.upperfirst": { + "version": "4.3.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", ++ "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", ++ "dev": true + }, + "node_modules/log-update": { + "version": "2.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", ++ "integrity": "sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==", + "dependencies": { + "ansi-escapes": "^3.0.0", + "cli-cursor": "^2.0.0", +@@ -10847,14 +12621,16 @@ + }, + "node_modules/log-update/node_modules/ansi-escapes": { + "version": "3.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", ++ "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/cli-cursor": { + "version": "2.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", ++ "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "dependencies": { + "restore-cursor": "^2.0.0" + }, +@@ -10864,14 +12640,16 @@ + }, + "node_modules/log-update/node_modules/mimic-fn": { + "version": "1.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", ++ "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/onetime": { + "version": "2.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", ++ "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "dependencies": { + "mimic-fn": "^1.0.0" + }, +@@ -10881,7 +12659,8 @@ + }, + "node_modules/log-update/node_modules/restore-cursor": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", ++ "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" +@@ -10890,41 +12669,52 @@ + "node": ">=4" + } + }, ++ "node_modules/log-update/node_modules/signal-exit": { ++ "version": "3.0.7", ++ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", ++ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" ++ }, + "node_modules/long": { + "version": "5.2.3", +- "license": "Apache-2.0" ++ "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", ++ "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" + }, + "node_modules/lower-case": { + "version": "2.0.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", ++ "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lowercase-keys": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", ++ "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", ++ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", ++ "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", ++ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, +@@ -10937,13 +12727,15 @@ + }, + "node_modules/make-error": { + "version": "1.3.6", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", ++ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", ++ "dev": true + }, + "node_modules/map-obj": { + "version": "4.3.0", ++ "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", ++ "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + }, +@@ -10952,8 +12744,9 @@ + } + }, + "node_modules/marked": { +- "version": "12.0.0", +- "license": "MIT", ++ "version": "12.0.2", ++ "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.2.tgz", ++ "integrity": "sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==", + "bin": { + "marked": "bin/marked.js" + }, +@@ -10961,310 +12754,102 @@ + "node": ">= 18" + } + }, +- "node_modules/matcher": { +- "version": "3.0.0", +- "license": "MIT", +- "optional": true, +- "dependencies": { +- "escape-string-regexp": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/mathml-tag-names": { +- "version": "2.1.3", +- "dev": true, +- "license": "MIT", +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/wooorm" +- } +- }, +- "node_modules/mdn-data": { +- "version": "2.0.30", +- "dev": true, +- "license": "CC0-1.0" +- }, +- "node_modules/media-typer": { +- "version": "0.3.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">= 0.6" +- } +- }, +- "node_modules/memfs": { +- "version": "3.5.3", +- "dev": true, +- "license": "Unlicense", +- "dependencies": { +- "fs-monkey": "^1.0.4" +- }, +- "engines": { +- "node": ">= 4.0.0" +- } +- }, +- "node_modules/meow": { +- "version": "8.1.2", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "@types/minimist": "^1.2.0", +- "camelcase-keys": "^6.2.2", +- "decamelize-keys": "^1.1.0", +- "hard-rejection": "^2.1.0", +- "minimist-options": "4.1.0", +- "normalize-package-data": "^3.0.0", +- "read-pkg-up": "^7.0.1", +- "redent": "^3.0.0", +- "trim-newlines": "^3.0.0", +- "type-fest": "^0.18.0", +- "yargs-parser": "^20.2.3" +- }, +- "engines": { +- "node": ">=10" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/meow/node_modules/find-up": { +- "version": "4.1.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "locate-path": "^5.0.0", +- "path-exists": "^4.0.0" +- }, +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/meow/node_modules/locate-path": { +- "version": "5.0.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "p-locate": "^4.1.0" +- }, +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/meow/node_modules/lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/meow/node_modules/normalize-package-data": { +- "version": "3.0.3", +- "dev": true, +- "license": "BSD-2-Clause", +- "dependencies": { +- "hosted-git-info": "^4.0.1", +- "is-core-module": "^2.5.0", +- "semver": "^7.3.4", +- "validate-npm-package-license": "^3.0.1" +- }, +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/meow/node_modules/p-limit": { +- "version": "2.3.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "p-try": "^2.0.0" +- }, +- "engines": { +- "node": ">=6" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/meow/node_modules/p-locate": { +- "version": "4.1.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "p-limit": "^2.2.0" +- }, +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/meow/node_modules/p-try": { +- "version": "2.2.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=6" +- } +- }, +- "node_modules/meow/node_modules/parse-json": { +- "version": "5.2.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "@babel/code-frame": "^7.0.0", +- "error-ex": "^1.3.1", +- "json-parse-even-better-errors": "^2.3.0", +- "lines-and-columns": "^1.1.6" +- }, +- "engines": { +- "node": ">=8" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/meow/node_modules/path-exists": { +- "version": "4.0.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/meow/node_modules/read-pkg": { +- "version": "5.2.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "@types/normalize-package-data": "^2.4.0", +- "normalize-package-data": "^2.5.0", +- "parse-json": "^5.0.0", +- "type-fest": "^0.6.0" +- }, +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/meow/node_modules/read-pkg-up": { +- "version": "7.0.1", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "find-up": "^4.1.0", +- "read-pkg": "^5.2.0", +- "type-fest": "^0.8.1" +- }, +- "engines": { +- "node": ">=8" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { +- "version": "0.8.1", +- "dev": true, +- "license": "(MIT OR CC0-1.0)", +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/meow/node_modules/read-pkg/node_modules/hosted-git-info": { +- "version": "2.8.9", +- "dev": true, +- "license": "ISC" +- }, +- "node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { +- "version": "2.5.0", +- "dev": true, +- "license": "BSD-2-Clause", ++ "node_modules/matcher": { ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", ++ "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", ++ "optional": true, + "dependencies": { +- "hosted-git-info": "^2.1.4", +- "resolve": "^1.10.0", +- "semver": "2 || 3 || 4 || 5", +- "validate-npm-package-license": "^3.0.1" ++ "escape-string-regexp": "^4.0.0" ++ }, ++ "engines": { ++ "node": ">=10" + } + }, +- "node_modules/meow/node_modules/read-pkg/node_modules/semver": { +- "version": "5.7.2", ++ "node_modules/mathml-tag-names": { ++ "version": "2.1.3", ++ "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", ++ "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", + "dev": true, +- "license": "ISC", +- "bin": { +- "semver": "bin/semver" ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/wooorm" + } + }, +- "node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { +- "version": "0.6.0", ++ "node_modules/mdn-data": { ++ "version": "2.0.30", ++ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", ++ "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", ++ "dev": true ++ }, ++ "node_modules/media-typer": { ++ "version": "0.3.0", ++ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", ++ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, +- "license": "(MIT OR CC0-1.0)", + "engines": { +- "node": ">=8" ++ "node": ">= 0.6" + } + }, +- "node_modules/meow/node_modules/semver": { +- "version": "7.5.4", ++ "node_modules/memfs": { ++ "version": "3.5.3", ++ "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", ++ "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, +- "license": "ISC", + "dependencies": { +- "lru-cache": "^6.0.0" +- }, +- "bin": { +- "semver": "bin/semver.js" ++ "fs-monkey": "^1.0.4" + }, + "engines": { +- "node": ">=10" ++ "node": ">= 4.0.0" + } + }, +- "node_modules/meow/node_modules/type-fest": { +- "version": "0.18.1", ++ "node_modules/meow": { ++ "version": "12.1.1", ++ "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", ++ "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", + "dev": true, +- "license": "(MIT OR CC0-1.0)", + "engines": { +- "node": ">=10" ++ "node": ">=16.10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/meow/node_modules/yallist": { +- "version": "4.0.0", +- "dev": true, +- "license": "ISC" +- }, + "node_modules/merge-descriptors": { + "version": "1.0.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", ++ "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", ++ "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", ++ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", ++ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", ++ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", ++ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", ++ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { +- "version": "4.0.5", +- "license": "MIT", ++ "version": "4.0.8", ++ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", ++ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dependencies": { +- "braces": "^3.0.2", ++ "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { +@@ -11273,8 +12858,9 @@ + }, + "node_modules/mime": { + "version": "2.6.0", ++ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", ++ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, +- "license": "MIT", + "bin": { + "mime": "cli.js" + }, +@@ -11284,14 +12870,16 @@ + }, + "node_modules/mime-db": { + "version": "1.52.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", ++ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", ++ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, +@@ -11301,29 +12889,33 @@ + }, + "node_modules/mimic-fn": { + "version": "3.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", ++ "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", ++ "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", ++ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.4.7", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz", ++ "integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==", + "dependencies": { + "schema-utils": "^4.0.0" + }, +@@ -11338,37 +12930,10 @@ + "webpack": "^5.0.0" + } + }, +- "node_modules/mini-css-extract-plugin/node_modules/ajv": { +- "version": "8.12.0", +- "license": "MIT", +- "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- }, +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" +- } +- }, +- "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { +- "version": "5.1.0", +- "license": "MIT", +- "dependencies": { +- "fast-deep-equal": "^3.1.3" +- }, +- "peerDependencies": { +- "ajv": "^8.8.2" +- } +- }, +- "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { +- "version": "1.0.0", +- "license": "MIT" +- }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", ++ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", +@@ -11385,13 +12950,15 @@ + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", ++ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", ++ "dev": true + }, + "node_modules/minimatch": { + "version": "5.1.6", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", ++ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, +- "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, +@@ -11401,15 +12968,17 @@ + }, + "node_modules/minimist": { + "version": "1.2.8", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", ++ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minimist-options": { + "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", ++ "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, +- "license": "MIT", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", +@@ -11419,18 +12988,29 @@ + "node": ">= 6" + } + }, ++ "node_modules/minimist-options/node_modules/is-plain-obj": { ++ "version": "1.1.0", ++ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", ++ "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", ++ "dev": true, ++ "engines": { ++ "node": ">=0.10.0" ++ } ++ }, + "node_modules/minipass": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", ++ "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, +- "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", ++ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", ++ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" +@@ -11441,8 +13021,9 @@ + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", ++ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", ++ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, +- "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, +@@ -11452,12 +13033,14 @@ + }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", ++ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", ++ "dev": true + }, + "node_modules/mkdirp": { + "version": "0.5.6", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", ++ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, +@@ -11467,35 +13050,41 @@ + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", ++ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + }, + "node_modules/modify-values": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", ++ "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/moment": { + "version": "2.30.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", ++ "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "engines": { + "node": "*" + } + }, + "node_modules/moo": { + "version": "0.5.2", +- "license": "BSD-3-Clause" ++ "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", ++ "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" + }, + "node_modules/ms": { + "version": "2.1.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", ++ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", ++ "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", ++ "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" +@@ -11506,13 +13095,14 @@ + }, + "node_modules/mute-stream": { + "version": "0.0.8", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", ++ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", ++ "dev": true + }, + "node_modules/mysql2": { +- "version": "3.9.7", +- "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.9.7.tgz", +- "integrity": "sha512-KnJT8vYRcNAZv73uf9zpXqNbvBG7DJrs+1nACsjZP1HMJ1TgXEy8wnNilXAn/5i57JizXKtrUtwDB7HxT9DDpw==", ++ "version": "3.9.9", ++ "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.9.9.tgz", ++ "integrity": "sha512-Qtb2RUxwWMFkWXqF7Rd/7ySkupbQnNY7O0zQuQYgPcuJZ06M36JG3HIDEh/pEeq7LImcvA6O3lOVQ9XQK+HEZg==", + "dependencies": { + "denque": "^2.1.0", + "generate-function": "^2.3.1", +@@ -11529,14 +13119,16 @@ + }, + "node_modules/mysql2/node_modules/lru-cache": { + "version": "8.0.5", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-8.0.5.tgz", ++ "integrity": "sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==", + "engines": { + "node": ">=16.14" + } + }, + "node_modules/named-placeholders": { + "version": "1.1.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.3.tgz", ++ "integrity": "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==", + "dependencies": { + "lru-cache": "^7.14.1" + }, +@@ -11546,24 +13138,27 @@ + }, + "node_modules/named-placeholders/node_modules/lru-cache": { + "version": "7.18.3", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", ++ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/nan": { +- "version": "2.19.0", +- "license": "MIT" ++ "version": "2.20.0", ++ "resolved": "https://registry.npmjs.org/nan/-/nan-2.20.0.tgz", ++ "integrity": "sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==" + }, + "node_modules/nanoid": { + "version": "3.3.7", ++ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", ++ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], +- "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, +@@ -11573,16 +13168,19 @@ + }, + "node_modules/napi-build-utils": { + "version": "1.0.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", ++ "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" + }, + "node_modules/natural-compare": { + "version": "1.4.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", ++ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", ++ "dev": true + }, + "node_modules/nearley": { + "version": "2.20.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", ++ "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "dependencies": { + "commander": "^2.19.0", + "moo": "^0.5.0", +@@ -11602,31 +13200,36 @@ + }, + "node_modules/nearley/node_modules/commander": { + "version": "2.20.3", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", ++ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/negotiator": { + "version": "0.6.3", ++ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", ++ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", ++ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/no-case": { + "version": "3.0.4", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", ++ "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-abi": { +- "version": "3.51.0", +- "license": "MIT", ++ "version": "3.67.0", ++ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.67.0.tgz", ++ "integrity": "sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==", + "dependencies": { + "semver": "^7.3.5" + }, +@@ -11634,22 +13237,10 @@ + "node": ">=10" + } + }, +- "node_modules/node-abi/node_modules/lru-cache": { +- "version": "6.0.0", +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/node-abi/node_modules/semver": { +- "version": "7.5.4", +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, +@@ -11657,14 +13248,18 @@ + "node": ">=10" + } + }, +- "node_modules/node-abi/node_modules/yallist": { +- "version": "4.0.0", +- "license": "ISC" ++ "node_modules/node-addon-api": { ++ "version": "1.7.2", ++ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", ++ "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", ++ "dev": true, ++ "optional": true + }, + "node_modules/node-fetch": { + "version": "2.7.0", ++ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", ++ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, +- "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, +@@ -11681,9 +13276,9 @@ + } + }, + "node_modules/node-firebird": { +- "version": "1.1.8", +- "resolved": "https://registry.npmjs.org/node-firebird/-/node-firebird-1.1.8.tgz", +- "integrity": "sha512-G64hTeb5hsIocxau76ba9G/htT0Uy6ouJoYQ9zaWuui2GRbQUNxvuc9YMT8I2Mh+/66/+r0rhrV8xQEYwUtPKw==", ++ "version": "1.1.9", ++ "resolved": "https://registry.npmjs.org/node-firebird/-/node-firebird-1.1.9.tgz", ++ "integrity": "sha512-6Ol+Koide1WbfUp4BJ1dSA4wm091jAgCwwSoihxO/RRdcfR+dMVDE9jd2Z2ixjk7q/vSNJUYORXv7jmRfvwdrw==", + "dependencies": { + "big-integer": "^1.6.51", + "long": "^5.2.3" +@@ -11691,15 +13286,17 @@ + }, + "node_modules/node-forge": { + "version": "1.3.1", ++ "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", ++ "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, +- "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-loader": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/node-loader/-/node-loader-2.0.0.tgz", ++ "integrity": "sha512-I5VN34NO4/5UYJaUBtkrODPWxbobrE4hgDqPrjB25yPkonFhCmZ146vTH+Zg417E9Iwoh1l/MbRs1apc5J295Q==", + "dependencies": { + "loader-utils": "^2.0.0" + }, +@@ -11715,13 +13312,15 @@ + } + }, + "node_modules/node-releases": { +- "version": "2.0.13", +- "license": "MIT" ++ "version": "2.0.18", ++ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", ++ "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", ++ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", +@@ -11731,27 +13330,31 @@ + }, + "node_modules/normalize-package-data/node_modules/hosted-git-info": { + "version": "2.8.9", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", ++ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", ++ "dev": true + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", ++ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, +- "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", ++ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", ++ "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, +@@ -11760,18 +13363,36 @@ + } + }, + "node_modules/npm-run-path": { +- "version": "4.0.1", +- "license": "MIT", ++ "version": "5.3.0", ++ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", ++ "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", ++ "dev": true, + "dependencies": { +- "path-key": "^3.0.0" ++ "path-key": "^4.0.0" + }, + "engines": { +- "node": ">=8" ++ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/npm-run-path/node_modules/path-key": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", ++ "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", ++ "dev": true, ++ "engines": { ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", ++ "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, +@@ -11781,35 +13402,42 @@ + }, + "node_modules/null-check": { + "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz", ++ "integrity": "sha512-j8ZNHg19TyIQOWCGeeQJBuu6xZYIEurf8M1Qsfd8mFrGEfIZytbw18YjKWg+LcO25NowXGZXZpKAx+Ui3TFfDw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { +- "version": "1.13.1", ++ "version": "1.13.2", ++ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", ++ "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "dev": true, +- "license": "MIT", ++ "engines": { ++ "node": ">= 0.4" ++ }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", ++ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "devOptional": true, +- "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { +- "version": "4.1.4", ++ "version": "4.1.5", ++ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", ++ "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.1.4", ++ "call-bind": "^1.0.5", ++ "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, +@@ -11821,13 +13449,14 @@ + } + }, + "node_modules/object.values": { +- "version": "1.1.7", ++ "version": "1.2.0", ++ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", ++ "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1" ++ "call-bind": "^1.0.7", ++ "define-properties": "^1.2.1", ++ "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" +@@ -11838,13 +13467,15 @@ + }, + "node_modules/obuf": { + "version": "1.1.2", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", ++ "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", ++ "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", ++ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", ++ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, +@@ -11854,22 +13485,25 @@ + }, + "node_modules/on-headers": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", ++ "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", ++ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", ++ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, +@@ -11882,15 +13516,17 @@ + }, + "node_modules/onetime/node_modules/mimic-fn": { + "version": "2.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", ++ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/open": { + "version": "8.4.2", ++ "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", ++ "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", +@@ -11904,16 +13540,17 @@ + } + }, + "node_modules/optionator": { +- "version": "0.9.3", ++ "version": "0.9.4", ++ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", ++ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", +- "type-check": "^0.4.0" ++ "type-check": "^0.4.0", ++ "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" +@@ -11921,45 +13558,56 @@ + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", ++ "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-cancelable": { + "version": "2.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", ++ "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { +- "version": "1.3.0", ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", ++ "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "p-try": "^1.0.0" ++ "yocto-queue": "^1.0.0" + }, + "engines": { +- "node": ">=4" ++ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { +- "version": "2.0.0", ++ "version": "6.0.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", ++ "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "p-limit": "^1.1.0" ++ "p-limit": "^4.0.0" + }, + "engines": { +- "node": ">=4" ++ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", ++ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", ++ "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" +@@ -11970,27 +13618,36 @@ + }, + "node_modules/p-retry/node_modules/retry": { + "version": "0.13.1", ++ "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", ++ "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/p-try": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT", ++ "version": "2.2.0", ++ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", ++ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { +- "node": ">=4" ++ "node": ">=6" + } + }, ++ "node_modules/package-json-from-dist": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", ++ "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", ++ "dev": true ++ }, + "node_modules/pako": { + "version": "1.0.11", +- "license": "(MIT AND Zlib)" ++ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", ++ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "node_modules/param-case": { + "version": "3.0.4", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", ++ "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" +@@ -11998,8 +13655,9 @@ + }, + "node_modules/parent-module": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", ++ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, +@@ -12009,8 +13667,9 @@ + }, + "node_modules/parse-json": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", ++ "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" +@@ -12021,49 +13680,57 @@ + }, + "node_modules/parseurl": { + "version": "1.3.3", ++ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", ++ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", ++ "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { +- "version": "3.0.0", +- "license": "MIT", ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", ++ "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", ++ "dev": true, + "engines": { +- "node": ">=4" ++ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", ++ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", ++ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", ++ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-scurry": { + "version": "1.11.1", ++ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", ++ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, +- "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" +@@ -12076,30 +13743,31 @@ + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { +- "version": "10.2.2", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": "14 || >=16.14" +- } ++ "version": "10.4.3", ++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", ++ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", ++ "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", ++ "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", ++ "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", ++ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pegjs": { + "version": "0.10.0", ++ "resolved": "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz", ++ "integrity": "sha512-qI5+oFNEGi3L5HAxDwN2LA4Gg7irF70Zs25edhjld9QemOgp0CbvMtbFcMvFtEo1OityPrcCzkQFB8JP/hxgow==", + "dev": true, +- "license": "MIT", + "bin": { + "pegjs": "bin/pegjs" + }, +@@ -12109,12 +13777,13 @@ + }, + "node_modules/pend": { + "version": "1.2.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", ++ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + }, + "node_modules/pg": { +- "version": "8.11.5", +- "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", +- "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", ++ "version": "8.11.6", ++ "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.6.tgz", ++ "integrity": "sha512-6CyL4F0j3vPmakU9rWdeRY8qF5Cjc3OE86y6YpgDI6YtKHhNyCjGEIE8U5ZRfBjKTZikwolKIFWh3I22MeRnoA==", + "dependencies": { + "pg-connection-string": "^2.6.4", + "pg-pool": "^3.6.2", +@@ -12139,23 +13808,27 @@ + }, + "node_modules/pg-cloudflare": { + "version": "1.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", ++ "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", + "optional": true + }, + "node_modules/pg-connection-string": { + "version": "2.5.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz", ++ "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==" + }, + "node_modules/pg-cursor": { +- "version": "2.10.3", +- "license": "MIT", ++ "version": "2.11.0", ++ "resolved": "https://registry.npmjs.org/pg-cursor/-/pg-cursor-2.11.0.tgz", ++ "integrity": "sha512-TLCOCtu+rqMarzjUi+/Ffc2DV5ZqO/27y5GqnK9Z3w51rWXMwC8FcO96Uf9/ORo5o+qRXEVJxM9Ts3K2K31MLg==", + "peerDependencies": { + "pg": "^8" + } + }, + "node_modules/pg-int8": { + "version": "1.0.1", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", ++ "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + "engines": { + "node": ">=4.0.0" + } +@@ -12175,14 +13848,16 @@ + }, + "node_modules/pg-query-stream": { + "version": "4.2.4", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pg-query-stream/-/pg-query-stream-4.2.4.tgz", ++ "integrity": "sha512-Et3gTrWn4C2rj4LVioNq1QDd7aH/3mSJcBm79jZALv3wopvx9bWENtbOYZbHQ6KM+IkfFxs0JF1ZLjMDJ9/N6Q==", + "dependencies": { + "pg-cursor": "^2.7.4" + } + }, + "node_modules/pg-types": { + "version": "2.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", ++ "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + "dependencies": { + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", +@@ -12201,26 +13876,30 @@ + }, + "node_modules/pgpass": { + "version": "1.0.5", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", ++ "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "dependencies": { + "split2": "^4.1.0" + } + }, + "node_modules/pgsql-ast-parser": { + "version": "7.2.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pgsql-ast-parser/-/pgsql-ast-parser-7.2.1.tgz", ++ "integrity": "sha512-j8scRJdTBSA1W6nETwevP2dH+BQGdPPFuc0mXolvCRIkRQGTpPoo1hH4a7EQ2KkA4N4quAcNvhOyaIcM7W00yg==", + "dependencies": { + "moo": "^0.5.1", + "nearley": "^2.19.5" + } + }, + "node_modules/picocolors": { +- "version": "1.0.0", +- "license": "ISC" ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", ++ "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + }, + "node_modules/picomatch": { + "version": "2.3.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", ++ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, +@@ -12230,8 +13909,9 @@ + }, + "node_modules/pify": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", ++ "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=10" + }, +@@ -12241,7 +13921,8 @@ + }, + "node_modules/pinia": { + "version": "2.1.7", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pinia/-/pinia-2.1.7.tgz", ++ "integrity": "sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==", + "dependencies": { + "@vue/devtools-api": "^6.5.0", + "vue-demi": ">=0.14.5" +@@ -12264,9 +13945,10 @@ + } + }, + "node_modules/pinia/node_modules/vue-demi": { +- "version": "0.14.6", ++ "version": "0.14.10", ++ "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", ++ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, +- "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" +@@ -12289,7 +13971,8 @@ + }, + "node_modules/pkg-dir": { + "version": "4.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", ++ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, +@@ -12299,7 +13982,8 @@ + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", ++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" +@@ -12310,7 +13994,8 @@ + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, +@@ -12320,7 +14005,8 @@ + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, +@@ -12333,31 +14019,27 @@ + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", ++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/pkg-dir/node_modules/p-try": { +- "version": "2.2.0", +- "license": "MIT", +- "engines": { +- "node": ">=6" ++ "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "4.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", ++ "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, +@@ -12367,7 +14049,8 @@ + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", ++ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, +@@ -12377,7 +14060,8 @@ + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", ++ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" +@@ -12388,7 +14072,8 @@ + }, + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, +@@ -12401,7 +14086,8 @@ + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", ++ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, +@@ -12409,18 +14095,20 @@ + "node": ">=6" + } + }, +- "node_modules/pkg-up/node_modules/p-try": { +- "version": "2.2.0", +- "license": "MIT", ++ "node_modules/pkg-up/node_modules/path-exists": { ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", ++ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { +- "node": ">=6" ++ "node": ">=4" + } + }, + "node_modules/playwright": { + "version": "1.28.1", ++ "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.28.1.tgz", ++ "integrity": "sha512-92Sz6XBlfHlb9tK5UCDzIFAuIkHHpemA9zwUaqvo+w7sFMSmVMGmvKcbptof/eJObq63PGnMhM75x7qxhTR78Q==", + "dev": true, + "hasInstallScript": true, +- "license": "Apache-2.0", + "dependencies": { + "playwright-core": "1.28.1" + }, +@@ -12433,8 +14121,9 @@ + }, + "node_modules/playwright-core": { + "version": "1.28.1", ++ "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.28.1.tgz", ++ "integrity": "sha512-3PixLnGPno0E8rSBJjtwqTwJe3Yw72QwBBBxNoukIj3lEeBNXwbNiKrNuB1oyQgTBw5QHUhNO3SteEtHaMK6ag==", + "dev": true, +- "license": "Apache-2.0", + "bin": { + "playwright": "cli.js" + }, +@@ -12444,8 +14133,9 @@ + }, + "node_modules/plist": { + "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", ++ "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", +@@ -12455,10 +14145,19 @@ + "node": ">=10.4.0" + } + }, ++ "node_modules/possible-typed-array-names": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", ++ "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", ++ "dev": true, ++ "engines": { ++ "node": ">= 0.4" ++ } ++ }, + "node_modules/postcss": { +- "version": "8.4.38", +- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", +- "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", ++ "version": "8.4.41", ++ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz", ++ "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==", + "funding": [ + { + "type": "opencollective", +@@ -12475,7 +14174,7 @@ + ], + "dependencies": { + "nanoid": "^3.3.7", +- "picocolors": "^1.0.0", ++ "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { +@@ -12484,7 +14183,8 @@ + }, + "node_modules/postcss-html": { + "version": "1.5.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-1.5.0.tgz", ++ "integrity": "sha512-kCMRWJRHKicpA166kc2lAVUGxDZL324bkj/pVOb6RhjB0Z5Krl7mN0AsVkBhVIRZZirY0lyQXG38HCVaoKVNoA==", + "dependencies": { + "htmlparser2": "^8.0.0", + "js-tokens": "^8.0.0", +@@ -12496,17 +14196,20 @@ + } + }, + "node_modules/postcss-html/node_modules/js-tokens": { +- "version": "8.0.2", +- "license": "MIT" ++ "version": "8.0.3", ++ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-8.0.3.tgz", ++ "integrity": "sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==" + }, + "node_modules/postcss-media-query-parser": { + "version": "0.2.3", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", ++ "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", ++ "dev": true + }, + "node_modules/postcss-modules-extract-imports": { +- "version": "3.0.0", +- "license": "ISC", ++ "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", ++ "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, +@@ -12515,8 +14218,9 @@ + } + }, + "node_modules/postcss-modules-local-by-default": { +- "version": "4.0.3", +- "license": "MIT", ++ "version": "4.0.5", ++ "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", ++ "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", +@@ -12530,8 +14234,9 @@ + } + }, + "node_modules/postcss-modules-scope": { +- "version": "3.0.0", +- "license": "ISC", ++ "version": "3.2.0", ++ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", ++ "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, +@@ -12544,7 +14249,8 @@ + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", ++ "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, +@@ -12556,13 +14262,15 @@ + } + }, + "node_modules/postcss-resolve-nested-selector": { +- "version": "0.1.1", +- "dev": true, +- "license": "MIT" ++ "version": "0.1.6", ++ "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz", ++ "integrity": "sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==", ++ "dev": true + }, + "node_modules/postcss-safe-parser": { + "version": "6.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", ++ "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", + "engines": { + "node": ">=12.0" + }, +@@ -12575,8 +14283,9 @@ + } + }, + "node_modules/postcss-selector-parser": { +- "version": "6.0.13", +- "license": "MIT", ++ "version": "6.1.2", ++ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", ++ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" +@@ -12587,32 +14296,37 @@ + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", ++ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/postgres-array": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", ++ "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/postgres-bytea": { + "version": "1.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", ++ "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-date": { + "version": "1.0.7", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", ++ "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-interval": { + "version": "1.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", ++ "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "dependencies": { + "xtend": "^4.0.0" + }, +@@ -12621,8 +14335,9 @@ + } + }, + "node_modules/prebuild-install": { +- "version": "7.1.1", +- "license": "MIT", ++ "version": "7.1.2", ++ "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz", ++ "integrity": "sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", +@@ -12646,15 +14361,17 @@ + }, + "node_modules/prelude-ls": { + "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", ++ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", ++ "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" +@@ -12662,18 +14379,21 @@ + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", ++ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/progress": { + "version": "2.0.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", ++ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/progress-webpack-plugin": { + "version": "1.0.16", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz", ++ "integrity": "sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==", + "dependencies": { + "chalk": "^2.1.0", + "figures": "^2.0.0", +@@ -12688,7 +14408,8 @@ + }, + "node_modules/progress-webpack-plugin/node_modules/ansi-styles": { + "version": "3.2.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", ++ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, +@@ -12698,7 +14419,8 @@ + }, + "node_modules/progress-webpack-plugin/node_modules/chalk": { + "version": "2.4.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", ++ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", +@@ -12710,25 +14432,29 @@ + }, + "node_modules/progress-webpack-plugin/node_modules/color-convert": { + "version": "1.9.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", ++ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/progress-webpack-plugin/node_modules/color-name": { + "version": "1.1.3", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", ++ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/progress-webpack-plugin/node_modules/escape-string-regexp": { + "version": "1.0.5", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", ++ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/progress-webpack-plugin/node_modules/figures": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", ++ "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, +@@ -12738,14 +14464,16 @@ + }, + "node_modules/progress-webpack-plugin/node_modules/has-flag": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", ++ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/progress-webpack-plugin/node_modules/supports-color": { + "version": "5.5.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", ++ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, +@@ -12755,8 +14483,9 @@ + }, + "node_modules/promise-retry": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", ++ "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" +@@ -12767,8 +14496,9 @@ + }, + "node_modules/proxy-addr": { + "version": "2.0.7", ++ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", ++ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" +@@ -12779,15 +14509,17 @@ + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", ++ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", ++ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/pump": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", ++ "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" +@@ -12795,15 +14527,18 @@ + }, + "node_modules/punycode": { + "version": "2.3.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", ++ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", ++ "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", ++ "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", ++ "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" +@@ -12811,8 +14546,9 @@ + }, + "node_modules/qs": { + "version": "6.11.0", ++ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", ++ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, +- "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, +@@ -12825,6 +14561,8 @@ + }, + "node_modules/queue-microtask": { + "version": "1.2.3", ++ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", ++ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { +@@ -12839,12 +14577,12 @@ + "type": "consulting", + "url": "https://feross.org/support" + } +- ], +- "license": "MIT" ++ ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", ++ "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, +@@ -12854,11 +14592,13 @@ + }, + "node_modules/railroad-diagrams": { + "version": "1.0.0", +- "license": "CC0-1.0" ++ "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", ++ "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" + }, + "node_modules/randexp": { + "version": "0.4.6", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", ++ "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", + "dependencies": { + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" +@@ -12869,23 +14609,26 @@ + }, + "node_modules/randombytes": { + "version": "2.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", ++ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", ++ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", ++ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", ++ "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", +@@ -12898,16 +14641,18 @@ + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", ++ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", ++ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", ++ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, +@@ -12917,7 +14662,8 @@ + }, + "node_modules/rc": { + "version": "1.2.8", +- "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", ++ "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", ++ "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", +@@ -12928,17 +14674,24 @@ + "rc": "cli.js" + } + }, ++ "node_modules/rc/node_modules/ini": { ++ "version": "1.3.8", ++ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", ++ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" ++ }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", ++ "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-config-file": { + "version": "6.3.2", ++ "resolved": "https://registry.npmjs.org/read-config-file/-/read-config-file-6.3.2.tgz", ++ "integrity": "sha512-M80lpCjnE6Wt6zb98DoW8WHR09nzMSpu8XHtPkiTHrJ5Az9CybfeQhTJ8D7saeBHpGhLPIVyA8lcL6ZmdKwY6Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "config-file-ts": "^0.2.4", + "dotenv": "^9.0.2", +@@ -12953,8 +14706,9 @@ + }, + "node_modules/read-pkg": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", ++ "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", +@@ -12966,8 +14720,9 @@ + }, + "node_modules/read-pkg-up": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", ++ "integrity": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" +@@ -12976,10 +14731,78 @@ + "node": ">=4" + } + }, ++ "node_modules/read-pkg-up/node_modules/find-up": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", ++ "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", ++ "dev": true, ++ "dependencies": { ++ "locate-path": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/read-pkg-up/node_modules/locate-path": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", ++ "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", ++ "dev": true, ++ "dependencies": { ++ "p-locate": "^2.0.0", ++ "path-exists": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/read-pkg-up/node_modules/p-limit": { ++ "version": "1.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", ++ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", ++ "dev": true, ++ "dependencies": { ++ "p-try": "^1.0.0" ++ }, ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/read-pkg-up/node_modules/p-locate": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", ++ "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", ++ "dev": true, ++ "dependencies": { ++ "p-limit": "^1.1.0" ++ }, ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/read-pkg-up/node_modules/p-try": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", ++ "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", ++ "dev": true, ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/read-pkg-up/node_modules/path-exists": { ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", ++ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", ++ "dev": true, ++ "engines": { ++ "node": ">=4" ++ } ++ }, + "node_modules/read-pkg/node_modules/path-type": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", ++ "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "pify": "^3.0.0" + }, +@@ -12989,15 +14812,17 @@ + }, + "node_modules/read-pkg/node_modules/pify": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", ++ "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", ++ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", +@@ -13009,8 +14834,9 @@ + }, + "node_modules/readdir-glob": { + "version": "1.1.3", ++ "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", ++ "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", + "dev": true, +- "license": "Apache-2.0", + "peer": true, + "dependencies": { + "minimatch": "^5.1.0" +@@ -13018,7 +14844,8 @@ + }, + "node_modules/readdirp": { + "version": "3.6.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", ++ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, +@@ -13028,7 +14855,8 @@ + }, + "node_modules/rechoir": { + "version": "0.7.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", ++ "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dependencies": { + "resolve": "^1.9.0" + }, +@@ -13038,8 +14866,9 @@ + }, + "node_modules/redent": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", ++ "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" +@@ -13050,13 +14879,15 @@ + }, + "node_modules/regenerate": { + "version": "1.4.2", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", ++ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", ++ "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", ++ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", ++ "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, +@@ -13065,26 +14896,30 @@ + } + }, + "node_modules/regenerator-runtime": { +- "version": "0.14.0", +- "dev": true, +- "license": "MIT" ++ "version": "0.14.1", ++ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", ++ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", ++ "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", ++ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", ++ "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp.prototype.flags": { +- "version": "1.5.1", ++ "version": "1.5.2", ++ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", ++ "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "set-function-name": "^2.0.0" ++ "call-bind": "^1.0.6", ++ "define-properties": "^1.2.1", ++ "es-errors": "^1.3.0", ++ "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" +@@ -13095,8 +14930,9 @@ + }, + "node_modules/regexpp": { + "version": "3.2.0", ++ "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", ++ "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + }, +@@ -13106,8 +14942,9 @@ + }, + "node_modules/regexpu-core": { + "version": "5.3.2", ++ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", ++ "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", +@@ -13122,8 +14959,9 @@ + }, + "node_modules/regjsparser": { + "version": "0.9.1", ++ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", ++ "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~0.5.0" + }, +@@ -13133,6 +14971,8 @@ + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", ++ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", ++ "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" +@@ -13140,14 +14980,16 @@ + }, + "node_modules/relateurl": { + "version": "0.2.7", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", ++ "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", ++ "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", +@@ -13158,7 +15000,8 @@ + }, + "node_modules/renderkid/node_modules/dom-serializer": { + "version": "1.4.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", ++ "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", +@@ -13170,7 +15013,8 @@ + }, + "node_modules/renderkid/node_modules/domhandler": { + "version": "4.3.1", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", ++ "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, +@@ -13183,7 +15027,8 @@ + }, + "node_modules/renderkid/node_modules/domutils": { + "version": "2.8.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", ++ "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", +@@ -13195,13 +15040,16 @@ + }, + "node_modules/renderkid/node_modules/entities": { + "version": "2.2.0", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", ++ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/htmlparser2": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", ++ "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { +@@ -13209,7 +15057,6 @@ + "url": "https://github.com/sponsors/fb55" + } + ], +- "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", +@@ -13219,32 +15066,37 @@ + }, + "node_modules/require-directory": { + "version": "2.1.1", ++ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", ++ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", ++ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", ++ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", ++ "dev": true + }, + "node_modules/requires-port": { + "version": "1.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", ++ "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", ++ "dev": true + }, + "node_modules/resolve": { + "version": "1.22.8", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", ++ "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", +@@ -13259,11 +15111,13 @@ + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", ++ "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", ++ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, +@@ -13271,24 +15125,18 @@ + "node": ">=8" + } + }, +- "node_modules/resolve-cwd/node_modules/resolve-from": { ++ "node_modules/resolve-from": { + "version": "5.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", ++ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, +- "node_modules/resolve-from": { +- "version": "4.0.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=4" +- } +- }, + "node_modules/responselike": { + "version": "2.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", ++ "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dependencies": { + "lowercase-keys": "^2.0.0" + }, +@@ -13298,8 +15146,9 @@ + }, + "node_modules/restore-cursor": { + "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", ++ "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" +@@ -13308,25 +15157,34 @@ + "node": ">=8" + } + }, ++ "node_modules/restore-cursor/node_modules/signal-exit": { ++ "version": "3.0.7", ++ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", ++ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", ++ "dev": true ++ }, + "node_modules/ret": { + "version": "0.1.15", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", ++ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", ++ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", ++ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", ++ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, +- "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" +@@ -13334,7 +15192,9 @@ + }, + "node_modules/rimraf": { + "version": "3.0.2", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", ++ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", ++ "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, +@@ -13347,7 +15207,8 @@ + }, + "node_modules/roarr": { + "version": "2.15.4", +- "license": "BSD-3-Clause", ++ "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", ++ "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "optional": true, + "dependencies": { + "boolean": "^3.0.1", +@@ -13363,14 +15224,17 @@ + }, + "node_modules/run-async": { + "version": "2.4.1", ++ "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", ++ "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", ++ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", ++ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { +@@ -13386,15 +15250,15 @@ + "url": "https://feross.org/support" + } + ], +- "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "6.6.7", ++ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", ++ "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { + "tslib": "^1.9.0" + }, +@@ -13404,16 +15268,18 @@ + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", +- "dev": true, +- "license": "0BSD" ++ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", ++ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", ++ "dev": true + }, + "node_modules/safe-array-concat": { +- "version": "1.0.1", ++ "version": "1.1.2", ++ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", ++ "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "get-intrinsic": "^1.2.1", ++ "call-bind": "^1.0.7", ++ "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, +@@ -13426,6 +15292,8 @@ + }, + "node_modules/safe-buffer": { + "version": "5.2.1", ++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", ++ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", +@@ -13439,37 +15307,43 @@ + "type": "consulting", + "url": "https://feross.org/support" + } +- ], +- "license": "MIT" ++ ] + }, + "node_modules/safe-regex-test": { +- "version": "1.0.0", ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", ++ "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "get-intrinsic": "^1.1.3", ++ "call-bind": "^1.0.6", ++ "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, ++ "engines": { ++ "node": ">= 0.4" ++ }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", ++ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sanitize-filename": { + "version": "1.6.3", ++ "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz", ++ "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==", + "dev": true, +- "license": "WTFPL OR ISC", + "dependencies": { + "truncate-utf8-bytes": "^1.0.0" + } + }, + "node_modules/sass": { + "version": "1.42.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/sass/-/sass-1.42.1.tgz", ++ "integrity": "sha512-/zvGoN8B7dspKc5mC6HlaygyCBRvnyzzgD5khiaCfglWztY99cYoiTUksVx11NlnemrcfH5CEaCpsUKoW0cQqg==", + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0" + }, +@@ -13482,7 +15356,8 @@ + }, + "node_modules/sass-loader": { + "version": "12.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.3.0.tgz", ++ "integrity": "sha512-6l9qwhdOb7qSrtOu96QQ81LVl8v6Dp9j1w3akOm0aWHyrTYtagDt5+kS32N4yq4hHk3M+rdqoRMH+lIdqvW6HA==", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" +@@ -13513,12 +15388,14 @@ + } + }, + "node_modules/sax": { +- "version": "1.3.0", +- "license": "ISC" ++ "version": "1.4.1", ++ "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", ++ "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==" + }, + "node_modules/schema-utils": { + "version": "2.7.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", ++ "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", +@@ -13532,15 +15409,45 @@ + "url": "https://opencollective.com/webpack" + } + }, ++ "node_modules/schema-utils/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", ++ "dependencies": { ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" ++ }, ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" ++ } ++ }, ++ "node_modules/schema-utils/node_modules/ajv-keywords": { ++ "version": "3.5.2", ++ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", ++ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", ++ "peerDependencies": { ++ "ajv": "^6.9.1" ++ } ++ }, ++ "node_modules/schema-utils/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" ++ }, + "node_modules/select-hose": { + "version": "2.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", ++ "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", ++ "dev": true + }, + "node_modules/selfsigned": { + "version": "2.4.1", ++ "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", ++ "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" +@@ -13551,20 +15458,23 @@ + }, + "node_modules/semver": { + "version": "6.3.1", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", ++ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", ++ "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "optional": true + }, + "node_modules/send": { + "version": "0.18.0", ++ "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", ++ "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", +@@ -13586,21 +15496,24 @@ + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", ++ "dev": true + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", ++ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", ++ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, +- "license": "MIT", + "bin": { + "mime": "cli.js" + }, +@@ -13610,15 +15523,19 @@ + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", ++ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", ++ "dev": true + }, + "node_modules/seq-queue": { +- "version": "0.0.5" ++ "version": "0.0.5", ++ "resolved": "https://registry.npmjs.org/seq-queue/-/seq-queue-0.0.5.tgz", ++ "integrity": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==" + }, + "node_modules/serialize-error": { + "version": "7.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", ++ "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "optional": true, + "dependencies": { + "type-fest": "^0.13.1" +@@ -13632,7 +15549,8 @@ + }, + "node_modules/serialize-error/node_modules/type-fest": { + "version": "0.13.1", +- "license": "(MIT OR CC0-1.0)", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", ++ "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "optional": true, + "engines": { + "node": ">=10" +@@ -13643,15 +15561,17 @@ + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", +- "license": "BSD-3-Clause", ++ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", ++ "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", ++ "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", ++ "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", +@@ -13667,24 +15587,27 @@ + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", ++ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", ++ "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", ++ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", ++ "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, +- "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", +@@ -13697,31 +15620,36 @@ + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", ++ "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", ++ "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", ++ "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", ++ "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", ++ "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", ++ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", ++ "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", ++ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", ++ "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", +@@ -13734,31 +15662,37 @@ + }, + "node_modules/set-blocking": { + "version": "2.0.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", ++ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", ++ "dev": true + }, + "node_modules/set-function-length": { +- "version": "1.1.1", ++ "version": "1.2.2", ++ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", ++ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "define-data-property": "^1.1.1", +- "get-intrinsic": "^1.2.1", ++ "define-data-property": "^1.1.4", ++ "es-errors": "^1.3.0", ++ "function-bind": "^1.1.2", ++ "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", +- "has-property-descriptors": "^1.0.0" ++ "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { +- "version": "2.0.1", ++ "version": "2.0.2", ++ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", ++ "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "define-data-property": "^1.0.1", ++ "define-data-property": "^1.1.4", ++ "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", +- "has-property-descriptors": "^1.0.0" ++ "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" +@@ -13766,16 +15700,19 @@ + }, + "node_modules/setimmediate": { + "version": "1.0.5", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", ++ "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", ++ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", ++ "dev": true + }, + "node_modules/shallow-clone": { + "version": "3.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", ++ "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dependencies": { + "kind-of": "^6.0.2" + }, +@@ -13785,7 +15722,8 @@ + }, + "node_modules/shebang-command": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", ++ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, +@@ -13795,30 +15733,46 @@ + }, + "node_modules/shebang-regex": { + "version": "3.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", ++ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { +- "version": "1.0.4", ++ "version": "1.0.6", ++ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", ++ "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.0", +- "get-intrinsic": "^1.0.2", +- "object-inspect": "^1.9.0" ++ "call-bind": "^1.0.7", ++ "es-errors": "^1.3.0", ++ "get-intrinsic": "^1.2.4", ++ "object-inspect": "^1.13.1" ++ }, ++ "engines": { ++ "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { +- "version": "3.0.7", +- "license": "ISC" ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", ++ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", ++ "dev": true, ++ "engines": { ++ "node": ">=14" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/isaacs" ++ } + }, + "node_modules/simple-concat": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", ++ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "funding": [ + { + "type": "github", +@@ -13832,11 +15786,12 @@ + "type": "consulting", + "url": "https://feross.org/support" + } +- ], +- "license": "MIT" ++ ] + }, + "node_modules/simple-get": { + "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", ++ "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "funding": [ + { + "type": "github", +@@ -13851,7 +15806,6 @@ + "url": "https://feross.org/support" + } + ], +- "license": "MIT", + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", +@@ -13860,8 +15814,9 @@ + }, + "node_modules/simple-update-notifier": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", ++ "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", + "dev": true, +- "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, +@@ -13869,24 +15824,11 @@ + "node": ">=10" + } + }, +- "node_modules/simple-update-notifier/node_modules/lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/simple-update-notifier/node_modules/semver": { +- "version": "7.5.4", ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -13894,23 +15836,46 @@ + "node": ">=10" + } + }, +- "node_modules/simple-update-notifier/node_modules/yallist": { +- "version": "4.0.0", ++ "node_modules/slash": { ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", ++ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, +- "license": "ISC" ++ "engines": { ++ "node": ">=8" ++ } + }, +- "node_modules/slash": { ++ "node_modules/slice-ansi": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", ++ "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, +- "license": "MIT", ++ "optional": true, ++ "dependencies": { ++ "ansi-styles": "^4.0.0", ++ "astral-regex": "^2.0.0", ++ "is-fullwidth-code-point": "^3.0.0" ++ }, + "engines": { + "node": ">=8" + } + }, ++ "node_modules/smart-buffer": { ++ "version": "4.2.0", ++ "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", ++ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", ++ "dev": true, ++ "optional": true, ++ "engines": { ++ "node": ">= 6.0.0", ++ "npm": ">= 3.0.0" ++ } ++ }, + "node_modules/sockjs": { + "version": "0.3.24", ++ "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", ++ "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", +@@ -13919,11 +15884,13 @@ + }, + "node_modules/sortablejs": { + "version": "1.14.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz", ++ "integrity": "sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==" + }, + "node_modules/source-map": { + "version": "0.6.1", +- "license": "BSD-3-Clause", ++ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", ++ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } +@@ -13938,7 +15905,8 @@ + }, + "node_modules/source-map-support": { + "version": "0.5.21", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", ++ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" +@@ -13946,40 +15914,47 @@ + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", ++ "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", ++ "deprecated": "Please use @jridgewell/sourcemap-codec instead" + }, + "node_modules/spdx-correct": { + "version": "3.2.0", ++ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", ++ "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { +- "version": "2.3.0", +- "dev": true, +- "license": "CC-BY-3.0" ++ "version": "2.5.0", ++ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", ++ "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", ++ "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", ++ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", ++ "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { +- "version": "3.0.16", +- "dev": true, +- "license": "CC0-1.0" ++ "version": "3.0.20", ++ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", ++ "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", ++ "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", ++ "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", ++ "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", +@@ -13993,8 +15968,9 @@ + }, + "node_modules/spdy-transport": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", ++ "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", +@@ -14006,12 +15982,14 @@ + }, + "node_modules/spectre.css": { + "version": "0.5.9", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/spectre.css/-/spectre.css-0.5.9.tgz", ++ "integrity": "sha512-9jUqwZmCnvflrxFGcK+ize43TvjwDjqMwZPVubEtSIHzvinH0TBUESm1LcOJx3Ur7bdPaeOHQIjOqBl1Y5kLFw==" + }, + "node_modules/split": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", ++ "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "through": "2" + }, +@@ -14021,18 +15999,21 @@ + }, + "node_modules/split2": { + "version": "4.2.0", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", ++ "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/sprintf-js": { + "version": "1.1.2", +- "license": "BSD-3-Clause" ++ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", ++ "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==" + }, + "node_modules/sql-formatter": { + "version": "13.0.4", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/sql-formatter/-/sql-formatter-13.0.4.tgz", ++ "integrity": "sha512-6pns27iQ5yT8jmle4cqvpfXNl29/AGOT4KtmzhtI2zgH1J0RbpZdduqTRzem7UCta+gvrj4HC1O9l6mTSUHoRg==", + "dependencies": { + "argparse": "^2.0.1", + "get-stdin": "=8.0.0", +@@ -14043,7 +16024,9 @@ + } + }, + "node_modules/sql-highlight": { +- "version": "4.4.0", ++ "version": "4.4.2", ++ "resolved": "https://registry.npmjs.org/sql-highlight/-/sql-highlight-4.4.2.tgz", ++ "integrity": "sha512-mmtCksUq1+TDt0S9C3BZmmFslcTGhHMyGzUu9p5jSAEo/uqfHMVYoS0orICNAV6M0EFjIN5Zqz8KmE8HVvILrg==", + "funding": [ + "https://github.com/scriptcoded/sql-highlight?sponsor=1", + { +@@ -14051,20 +16034,22 @@ + "url": "https://github.com/sponsors/scriptcoded" + } + ], +- "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/sqlstring": { + "version": "2.3.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.3.tgz", ++ "integrity": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ssh2": { + "version": "1.14.0", ++ "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.14.0.tgz", ++ "integrity": "sha512-AqzD1UCqit8tbOKoj6ztDDi1ffJZ2rV2SwlgrVVrHPkV5vWqGJOVp5pmtj18PunkPJAuKQsnInyKV+/Nb2bUnA==", + "hasInstallScript": true, + "dependencies": { + "asn1": "^0.2.6", +@@ -14080,8 +16065,10 @@ + }, + "node_modules/standard-version": { + "version": "9.3.2", ++ "resolved": "https://registry.npmjs.org/standard-version/-/standard-version-9.3.2.tgz", ++ "integrity": "sha512-u1rfKP4o4ew7Yjbfycv80aNMN2feTiqseAhUhrrx2XtdQGmu7gucpziXe68Z4YfHVqlxVEzo4aUA0Iu3VQOTgQ==", ++ "deprecated": "standard-version is deprecated. If you're a GitHub user, I recommend https://github.com/googleapis/release-please as an alternative.", + "dev": true, +- "license": "ISC", + "dependencies": { + "chalk": "^2.4.2", + "conventional-changelog": "3.1.24", +@@ -14108,8 +16095,9 @@ + }, + "node_modules/standard-version/node_modules/ansi-styles": { + "version": "3.2.1", ++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", ++ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, +@@ -14119,8 +16107,9 @@ + }, + "node_modules/standard-version/node_modules/chalk": { + "version": "2.4.2", ++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", ++ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", +@@ -14132,8 +16121,9 @@ + }, + "node_modules/standard-version/node_modules/cliui": { + "version": "7.0.4", ++ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", ++ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, +- "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", +@@ -14142,29 +16132,47 @@ + }, + "node_modules/standard-version/node_modules/color-convert": { + "version": "1.9.3", ++ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", ++ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/standard-version/node_modules/color-name": { + "version": "1.1.3", ++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", ++ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", ++ "dev": true ++ }, ++ "node_modules/standard-version/node_modules/conventional-changelog-conventionalcommits": { ++ "version": "4.6.1", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.1.tgz", ++ "integrity": "sha512-lzWJpPZhbM1R0PIzkwzGBCnAkH5RKJzJfFQZcl/D+2lsJxAwGnDKBqn/F4C1RD31GJNn8NuKWQzAZDAVXPp2Mw==", + "dev": true, +- "license": "MIT" ++ "dependencies": { ++ "compare-func": "^2.0.0", ++ "lodash": "^4.17.15", ++ "q": "^1.5.1" ++ }, ++ "engines": { ++ "node": ">=10" ++ } + }, + "node_modules/standard-version/node_modules/escape-string-regexp": { + "version": "1.0.5", ++ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", ++ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/standard-version/node_modules/find-up": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", ++ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, +- "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" +@@ -14178,16 +16186,18 @@ + }, + "node_modules/standard-version/node_modules/has-flag": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", ++ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/standard-version/node_modules/locate-path": { + "version": "6.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", ++ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, +@@ -14198,21 +16208,11 @@ + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/standard-version/node_modules/lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/standard-version/node_modules/p-limit": { + "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", ++ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, +@@ -14225,8 +16225,9 @@ + }, + "node_modules/standard-version/node_modules/p-locate": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", ++ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, +@@ -14239,19 +16240,18 @@ + }, + "node_modules/standard-version/node_modules/path-exists": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/standard-version/node_modules/semver": { +- "version": "7.5.4", ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -14261,8 +16261,9 @@ + }, + "node_modules/standard-version/node_modules/supports-color": { + "version": "5.5.0", ++ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", ++ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, +- "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, +@@ -14272,8 +16273,9 @@ + }, + "node_modules/standard-version/node_modules/wrap-ansi": { + "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", ++ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", +@@ -14288,8 +16290,9 @@ + }, + "node_modules/standard-version/node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", ++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", ++ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, +@@ -14302,8 +16305,9 @@ + }, + "node_modules/standard-version/node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", ++ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, +@@ -14313,26 +16317,15 @@ + }, + "node_modules/standard-version/node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/standard-version/node_modules/y18n": { +- "version": "5.0.8", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/standard-version/node_modules/yallist": { +- "version": "4.0.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", ++ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", ++ "dev": true + }, + "node_modules/standard-version/node_modules/yargs": { + "version": "16.2.0", ++ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", ++ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", +@@ -14346,33 +16339,58 @@ + "node": ">=10" + } + }, ++ "node_modules/standard-version/node_modules/yargs-parser": { ++ "version": "20.2.9", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", ++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", ++ "dev": true, ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/standard-version/node_modules/yocto-queue": { ++ "version": "0.1.0", ++ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", ++ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", ++ "dev": true, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, + "node_modules/stat-mode": { + "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz", ++ "integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/statuses": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", ++ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", ++ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", ++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", ++ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", +@@ -14385,8 +16403,9 @@ + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", ++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", ++ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", +@@ -14397,13 +16416,15 @@ + } + }, + "node_modules/string.prototype.trim": { +- "version": "1.2.8", ++ "version": "1.2.9", ++ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", ++ "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1" ++ "call-bind": "^1.0.7", ++ "define-properties": "^1.2.1", ++ "es-abstract": "^1.23.0", ++ "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" +@@ -14413,26 +16434,31 @@ + } + }, + "node_modules/string.prototype.trimend": { +- "version": "1.0.7", ++ "version": "1.0.8", ++ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", ++ "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1" ++ "call-bind": "^1.0.7", ++ "define-properties": "^1.2.1", ++ "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { +- "version": "1.0.7", ++ "version": "1.0.8", ++ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", ++ "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1" ++ "call-bind": "^1.0.7", ++ "define-properties": "^1.2.1", ++ "es-object-atoms": "^1.0.0" ++ }, ++ "engines": { ++ "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" +@@ -14440,12 +16466,15 @@ + }, + "node_modules/stringify-package": { + "version": "1.0.1", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/stringify-package/-/stringify-package-1.0.1.tgz", ++ "integrity": "sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg==", ++ "deprecated": "This module is not used anymore, and has been replaced by @npmcli/package-json", ++ "dev": true + }, + "node_modules/strip-ansi": { + "version": "6.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", ++ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, +@@ -14456,8 +16485,9 @@ + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", ++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", ++ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, +@@ -14467,23 +16497,30 @@ + }, + "node_modules/strip-bom": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", ++ "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { +- "version": "2.0.0", +- "license": "MIT", ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", ++ "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", ++ "dev": true, + "engines": { +- "node": ">=6" ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", ++ "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "min-indent": "^1.0.0" + }, +@@ -14493,8 +16530,9 @@ + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", ++ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", ++ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + }, +@@ -14503,8 +16541,9 @@ + } + }, + "node_modules/style-loader": { +- "version": "3.3.3", +- "license": "MIT", ++ "version": "3.3.4", ++ "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", ++ "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "engines": { + "node": ">= 12.13.0" + }, +@@ -14518,13 +16557,15 @@ + }, + "node_modules/style-search": { + "version": "0.1.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", ++ "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", ++ "dev": true + }, + "node_modules/stylelint": { + "version": "15.11.0", ++ "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-15.11.0.tgz", ++ "integrity": "sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@csstools/css-parser-algorithms": "^2.3.1", + "@csstools/css-tokenizer": "^2.2.0", +@@ -14580,8 +16621,9 @@ + }, + "node_modules/stylelint-config-html": { + "version": "1.1.0", ++ "resolved": "https://registry.npmjs.org/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz", ++ "integrity": "sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": "^12 || >=14" + }, +@@ -14595,8 +16637,9 @@ + }, + "node_modules/stylelint-config-recommended": { + "version": "13.0.0", ++ "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-13.0.0.tgz", ++ "integrity": "sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, +@@ -14606,8 +16649,9 @@ + }, + "node_modules/stylelint-config-recommended-vue": { + "version": "1.5.0", ++ "resolved": "https://registry.npmjs.org/stylelint-config-recommended-vue/-/stylelint-config-recommended-vue-1.5.0.tgz", ++ "integrity": "sha512-65TAK/clUqkNtkZLcuytoxU0URQYlml+30Nhop7sRkCZ/mtWdXt7T+spPSB3KMKlb+82aEVJ4OrcstyDBdbosg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "semver": "^7.3.5", + "stylelint-config-html": ">=1.0.0", +@@ -14624,24 +16668,11 @@ + "stylelint": ">=14.0.0" + } + }, +- "node_modules/stylelint-config-recommended-vue/node_modules/lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/stylelint-config-recommended-vue/node_modules/semver": { +- "version": "7.5.4", ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -14649,15 +16680,33 @@ + "node": ">=10" + } + }, +- "node_modules/stylelint-config-recommended-vue/node_modules/yallist": { +- "version": "4.0.0", ++ "node_modules/stylelint-config-recommended-vue/node_modules/stylelint-config-recommended": { ++ "version": "14.0.1", ++ "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz", ++ "integrity": "sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==", + "dev": true, +- "license": "ISC" ++ "funding": [ ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/stylelint" ++ }, ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/stylelint" ++ } ++ ], ++ "engines": { ++ "node": ">=18.12.0" ++ }, ++ "peerDependencies": { ++ "stylelint": "^16.1.0" ++ } + }, + "node_modules/stylelint-config-standard": { + "version": "34.0.0", ++ "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-34.0.0.tgz", ++ "integrity": "sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "stylelint-config-recommended": "^13.0.0" + }, +@@ -14669,9 +16718,10 @@ + } + }, + "node_modules/stylelint-scss": { +- "version": "5.3.1", ++ "version": "5.3.2", ++ "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-5.3.2.tgz", ++ "integrity": "sha512-4LzLaayFhFyneJwLo0IUa8knuIvj+zF0vBFueQs4e3tEaAMIQX8q5th8ziKkgOavr6y/y9yoBe+RXN/edwLzsQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "known-css-properties": "^0.29.0", + "postcss-media-query-parser": "^0.2.3", +@@ -14685,13 +16735,15 @@ + }, + "node_modules/stylelint/node_modules/balanced-match": { + "version": "2.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", ++ "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", ++ "dev": true + }, + "node_modules/stylelint/node_modules/camelcase": { + "version": "6.3.0", ++ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", ++ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=10" + }, +@@ -14701,8 +16753,9 @@ + }, + "node_modules/stylelint/node_modules/camelcase-keys": { + "version": "7.0.2", ++ "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.2.tgz", ++ "integrity": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "camelcase": "^6.3.0", + "map-obj": "^4.1.0", +@@ -14718,8 +16771,9 @@ + }, + "node_modules/stylelint/node_modules/cosmiconfig": { + "version": "8.3.6", ++ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", ++ "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", +@@ -14743,8 +16797,9 @@ + }, + "node_modules/stylelint/node_modules/decamelize": { + "version": "5.0.1", ++ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", ++ "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=10" + }, +@@ -14754,8 +16809,9 @@ + }, + "node_modules/stylelint/node_modules/file-entry-cache": { + "version": "7.0.2", ++ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-7.0.2.tgz", ++ "integrity": "sha512-TfW7/1iI4Cy7Y8L6iqNdZQVvdXn0f8B4QcIXmkIbtTIe/Okm/nSlHb4IwGzRVOd3WfSieCgvf5cMzEfySAIl0g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "flat-cache": "^3.2.0" + }, +@@ -14765,8 +16821,9 @@ + }, + "node_modules/stylelint/node_modules/find-up": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", ++ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, +- "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" +@@ -14780,8 +16837,9 @@ + }, + "node_modules/stylelint/node_modules/indent-string": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", ++ "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=12" + }, +@@ -14791,8 +16849,9 @@ + }, + "node_modules/stylelint/node_modules/locate-path": { + "version": "6.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", ++ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, +@@ -14803,21 +16862,11 @@ + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/stylelint/node_modules/lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/stylelint/node_modules/meow": { + "version": "10.1.5", ++ "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", ++ "integrity": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/minimist": "^1.2.2", + "camelcase-keys": "^7.0.0", +@@ -14841,8 +16890,9 @@ + }, + "node_modules/stylelint/node_modules/normalize-package-data": { + "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", ++ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", +@@ -14855,8 +16905,9 @@ + }, + "node_modules/stylelint/node_modules/p-limit": { + "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", ++ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, +@@ -14869,8 +16920,9 @@ + }, + "node_modules/stylelint/node_modules/p-locate": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", ++ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, +@@ -14883,8 +16935,9 @@ + }, + "node_modules/stylelint/node_modules/parse-json": { + "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", ++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", +@@ -14900,16 +16953,18 @@ + }, + "node_modules/stylelint/node_modules/path-exists": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/stylelint/node_modules/read-pkg": { + "version": "6.0.0", ++ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz", ++ "integrity": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^3.0.2", +@@ -14925,8 +16980,9 @@ + }, + "node_modules/stylelint/node_modules/read-pkg-up": { + "version": "8.0.0", ++ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz", ++ "integrity": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "find-up": "^5.0.0", + "read-pkg": "^6.0.0", +@@ -14941,8 +16997,9 @@ + }, + "node_modules/stylelint/node_modules/redent": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", ++ "integrity": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==", + "dev": true, +- "license": "MIT", + "dependencies": { + "indent-string": "^5.0.0", + "strip-indent": "^4.0.0" +@@ -14954,21 +17011,11 @@ + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/stylelint/node_modules/resolve-from": { +- "version": "5.0.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=8" +- } +- }, + "node_modules/stylelint/node_modules/semver": { +- "version": "7.5.4", ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -14978,8 +17025,9 @@ + }, + "node_modules/stylelint/node_modules/strip-indent": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", ++ "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "min-indent": "^1.0.1" + }, +@@ -14992,8 +17040,9 @@ + }, + "node_modules/stylelint/node_modules/trim-newlines": { + "version": "4.1.1", ++ "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", ++ "integrity": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=12" + }, +@@ -15003,8 +17052,9 @@ + }, + "node_modules/stylelint/node_modules/type-fest": { + "version": "1.4.0", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", ++ "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, +- "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, +@@ -15013,9 +17063,10 @@ + } + }, + "node_modules/stylelint/node_modules/typescript": { +- "version": "5.3.2", ++ "version": "5.5.4", ++ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", ++ "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", + "dev": true, +- "license": "Apache-2.0", + "optional": true, + "peer": true, + "bin": { +@@ -15026,14 +17077,31 @@ + "node": ">=14.17" + } + }, +- "node_modules/stylelint/node_modules/yallist": { +- "version": "4.0.0", ++ "node_modules/stylelint/node_modules/yargs-parser": { ++ "version": "20.2.9", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", ++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", ++ "dev": true, ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/stylelint/node_modules/yocto-queue": { ++ "version": "0.1.0", ++ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", ++ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, +- "license": "ISC" ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } + }, + "node_modules/sumchecker": { + "version": "3.0.1", +- "license": "Apache-2.0", ++ "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", ++ "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "dependencies": { + "debug": "^4.1.0" + }, +@@ -15043,7 +17111,8 @@ + }, + "node_modules/supports-color": { + "version": "7.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", ++ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, +@@ -15052,20 +17121,25 @@ + } + }, + "node_modules/supports-hyperlinks": { +- "version": "3.0.0", ++ "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz", ++ "integrity": "sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==", + "dev": true, +- "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=14.18" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", ++ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, +@@ -15075,12 +17149,15 @@ + }, + "node_modules/svg-tags": { + "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", ++ "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "node_modules/table": { +- "version": "6.8.1", ++ "version": "6.8.2", ++ "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", ++ "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", + "dev": true, +- "license": "BSD-3-Clause", + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", +@@ -15092,30 +17169,11 @@ + "node": ">=10.0.0" + } + }, +- "node_modules/table/node_modules/ajv": { +- "version": "8.12.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- }, +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" +- } +- }, +- "node_modules/table/node_modules/json-schema-traverse": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT" +- }, + "node_modules/table/node_modules/slice-ansi": { + "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", ++ "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", +@@ -15130,15 +17188,17 @@ + }, + "node_modules/tapable": { + "version": "2.2.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", ++ "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.2.1", ++ "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", ++ "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "dev": true, +- "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", +@@ -15153,7 +17213,8 @@ + }, + "node_modules/tar-fs": { + "version": "2.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", ++ "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", +@@ -15163,11 +17224,13 @@ + }, + "node_modules/tar-fs/node_modules/chownr": { + "version": "1.1.4", +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", ++ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/tar-stream": { + "version": "2.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", ++ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", +@@ -15181,8 +17244,9 @@ + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", ++ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, +- "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, +@@ -15192,13 +17256,15 @@ + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", ++ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", ++ "dev": true + }, + "node_modules/temp-file": { + "version": "3.4.0", ++ "resolved": "https://registry.npmjs.org/temp-file/-/temp-file-3.4.0.tgz", ++ "integrity": "sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "async-exit-hook": "^2.0.1", + "fs-extra": "^10.0.0" +@@ -15206,8 +17272,9 @@ + }, + "node_modules/temp-file/node_modules/fs-extra": { + "version": "10.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", +@@ -15219,8 +17286,9 @@ + }, + "node_modules/temp-file/node_modules/jsonfile": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, +@@ -15230,15 +17298,17 @@ + }, + "node_modules/temp-file/node_modules/universalify": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/terser": { +- "version": "5.31.0", +- "license": "BSD-2-Clause", ++ "version": "5.31.6", ++ "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", ++ "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", +@@ -15254,7 +17324,8 @@ + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", ++ "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", +@@ -15284,9 +17355,38 @@ + } + } + }, ++ "node_modules/terser-webpack-plugin/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", ++ "dependencies": { ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" ++ }, ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" ++ } ++ }, ++ "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { ++ "version": "3.5.2", ++ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", ++ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", ++ "peerDependencies": { ++ "ajv": "^6.9.1" ++ } ++ }, ++ "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" ++ }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", ++ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", +@@ -15301,8 +17401,9 @@ + } + }, + "node_modules/terser/node_modules/acorn": { +- "version": "8.11.2", +- "license": "MIT", ++ "version": "8.12.1", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", ++ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "bin": { + "acorn": "bin/acorn" + }, +@@ -15312,43 +17413,53 @@ + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", ++ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/text-extensions": { +- "version": "1.9.0", ++ "version": "2.4.0", ++ "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", ++ "integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=0.10" ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/text-table": { + "version": "0.2.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", ++ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", ++ "dev": true + }, + "node_modules/through": { + "version": "2.3.8", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", ++ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", ++ "dev": true + }, + "node_modules/through2": { + "version": "4.0.2", ++ "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", ++ "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/thunky": { + "version": "1.1.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", ++ "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", ++ "dev": true + }, + "node_modules/tmp": { + "version": "0.0.33", ++ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", ++ "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, +@@ -15358,30 +17469,34 @@ + }, + "node_modules/tmp-promise": { + "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz", ++ "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "tmp": "^0.2.0" + } + }, + "node_modules/tmp-promise/node_modules/tmp": { + "version": "0.2.3", ++ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", ++ "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=14.14" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", ++ "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", ++ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, +@@ -15391,43 +17506,49 @@ + }, + "node_modules/toidentifier": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", ++ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tr46": { + "version": "0.0.3", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", ++ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", ++ "dev": true + }, + "node_modules/tree-kill": { + "version": "1.2.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", ++ "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/trim-newlines": { + "version": "3.0.1", ++ "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", ++ "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/truncate-utf8-bytes": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", ++ "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==", + "dev": true, +- "license": "WTFPL", + "dependencies": { + "utf8-byte-length": "^1.0.1" + } + }, + "node_modules/ts-loader": { + "version": "9.2.9", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.2.9.tgz", ++ "integrity": "sha512-b0+vUY2/enb0qYtDQuNlDnJ9900NTiPiJcDJ6sY7ax1CCCwXfYIqPOMm/BwW7jsF1km+Oz8W9s31HLuD+FLIMg==", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", +@@ -15442,22 +17563,10 @@ + "webpack": "^5.0.0" + } + }, +- "node_modules/ts-loader/node_modules/lru-cache": { +- "version": "6.0.0", +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/ts-loader/node_modules/semver": { +- "version": "7.5.4", +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, +@@ -15465,14 +17574,11 @@ + "node": ">=10" + } + }, +- "node_modules/ts-loader/node_modules/yallist": { +- "version": "4.0.0", +- "license": "ISC" +- }, + "node_modules/ts-node": { +- "version": "10.9.1", ++ "version": "10.9.2", ++ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", ++ "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", +@@ -15512,9 +17618,10 @@ + } + }, + "node_modules/ts-node/node_modules/acorn": { +- "version": "8.11.2", ++ "version": "8.12.1", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", ++ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, +- "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, +@@ -15523,9 +17630,10 @@ + } + }, + "node_modules/tsconfig-paths": { +- "version": "3.14.2", ++ "version": "3.15.0", ++ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", ++ "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", +@@ -15535,8 +17643,9 @@ + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", ++ "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, +@@ -15545,13 +17654,15 @@ + } + }, + "node_modules/tslib": { +- "version": "2.6.2", +- "license": "0BSD" ++ "version": "2.7.0", ++ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", ++ "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + }, + "node_modules/tsutils": { + "version": "3.21.0", ++ "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", ++ "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, +@@ -15564,12 +17675,14 @@ + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", +- "dev": true, +- "license": "0BSD" ++ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", ++ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", ++ "dev": true + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", +- "license": "Apache-2.0", ++ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", ++ "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dependencies": { + "safe-buffer": "^5.0.1" + }, +@@ -15579,12 +17692,14 @@ + }, + "node_modules/tweetnacl": { + "version": "0.14.5", +- "license": "Unlicense" ++ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", ++ "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + }, + "node_modules/type-check": { + "version": "0.4.0", ++ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", ++ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, +- "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, +@@ -15594,7 +17709,8 @@ + }, + "node_modules/type-fest": { + "version": "2.19.0", +- "license": "(MIT OR CC0-1.0)", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", ++ "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "engines": { + "node": ">=12.20" + }, +@@ -15604,8 +17720,9 @@ + }, + "node_modules/type-is": { + "version": "1.6.18", ++ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", ++ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" +@@ -15615,27 +17732,30 @@ + } + }, + "node_modules/typed-array-buffer": { +- "version": "1.0.0", ++ "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", ++ "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "get-intrinsic": "^1.2.1", +- "is-typed-array": "^1.1.10" ++ "call-bind": "^1.0.7", ++ "es-errors": "^1.3.0", ++ "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { +- "version": "1.0.0", ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", ++ "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", ++ "call-bind": "^1.0.7", + "for-each": "^0.3.3", +- "has-proto": "^1.0.1", +- "is-typed-array": "^1.1.10" ++ "gopd": "^1.0.1", ++ "has-proto": "^1.0.3", ++ "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" +@@ -15645,15 +17765,17 @@ + } + }, + "node_modules/typed-array-byte-offset": { +- "version": "1.0.0", ++ "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", ++ "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "available-typed-arrays": "^1.0.5", +- "call-bind": "^1.0.2", ++ "available-typed-arrays": "^1.0.7", ++ "call-bind": "^1.0.7", + "for-each": "^0.3.3", +- "has-proto": "^1.0.1", +- "is-typed-array": "^1.1.10" ++ "gopd": "^1.0.1", ++ "has-proto": "^1.0.3", ++ "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" +@@ -15663,13 +17785,20 @@ + } + }, + "node_modules/typed-array-length": { +- "version": "1.0.4", ++ "version": "1.0.6", ++ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", ++ "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", ++ "call-bind": "^1.0.7", + "for-each": "^0.3.3", +- "is-typed-array": "^1.1.9" ++ "gopd": "^1.0.1", ++ "has-proto": "^1.0.3", ++ "is-typed-array": "^1.1.13", ++ "possible-typed-array-names": "^1.0.0" ++ }, ++ "engines": { ++ "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" +@@ -15677,12 +17806,14 @@ + }, + "node_modules/typedarray": { + "version": "0.0.6", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", ++ "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", ++ "dev": true + }, + "node_modules/typescript": { + "version": "4.6.4", +- "license": "Apache-2.0", ++ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", ++ "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" +@@ -15692,9 +17823,10 @@ + } + }, + "node_modules/uglify-js": { +- "version": "3.17.4", ++ "version": "3.19.2", ++ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.2.tgz", ++ "integrity": "sha512-S8KA6DDI47nQXJSi2ctQ629YzwOVs+bQML6DAtvy0wgNdpi+0ySpQK0g2pxBq2xfF2z3YCscu7NNA8nXT9PlIQ==", + "dev": true, +- "license": "BSD-2-Clause", + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" +@@ -15705,8 +17837,9 @@ + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", ++ "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", +@@ -15719,20 +17852,24 @@ + }, + "node_modules/undici-types": { + "version": "5.26.5", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", ++ "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", ++ "dev": true + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", ++ "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", ++ "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" +@@ -15743,24 +17880,27 @@ + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", ++ "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", ++ "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicorn-magic": { + "version": "0.1.0", ++ "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", ++ "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=18" + }, +@@ -15770,22 +17910,25 @@ + }, + "node_modules/universalify": { + "version": "0.1.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", ++ "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", ++ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unzip-crx-3": { + "version": "0.2.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz", ++ "integrity": "sha512-0+JiUq/z7faJ6oifVB5nSwt589v1KCduqIJupNVDoWSXZtWDmjDGO3RAEOvwJ07w90aoXoP4enKsR7ecMrJtWQ==", + "dependencies": { + "jszip": "^3.1.0", + "mkdirp": "^0.5.1", +@@ -15793,7 +17936,9 @@ + } + }, + "node_modules/update-browserslist-db": { +- "version": "1.0.13", ++ "version": "1.1.0", ++ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", ++ "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "funding": [ + { + "type": "opencollective", +@@ -15808,10 +17953,9 @@ + "url": "https://github.com/sponsors/ai" + } + ], +- "license": "MIT", + "dependencies": { +- "escalade": "^3.1.1", +- "picocolors": "^1.0.0" ++ "escalade": "^3.1.2", ++ "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" +@@ -15822,58 +17966,68 @@ + }, + "node_modules/uri-js": { + "version": "4.4.1", +- "license": "BSD-2-Clause", ++ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", ++ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/utf8-byte-length": { + "version": "1.0.5", +- "dev": true, +- "license": "(WTFPL OR MIT)" ++ "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz", ++ "integrity": "sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==", ++ "dev": true + }, + "node_modules/util-deprecate": { + "version": "1.0.2", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", ++ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/utila": { + "version": "0.4.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", ++ "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", ++ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", ++ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", ++ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, +- "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v-mask": { + "version": "2.3.0", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/v-mask/-/v-mask-2.3.0.tgz", ++ "integrity": "sha512-ap7pTtCTvj25CqX4VYXqudCBd0+XvYyhiiLbzWQQR7AMQosJ2+DPu0a94P9stk0EGmGcmYxJaPkFkfjD8hquWQ==" + }, + "node_modules/v8-compile-cache": { + "version": "2.4.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", ++ "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", ++ "dev": true + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", ++ "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", ++ "dev": true + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", ++ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", ++ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" +@@ -15881,22 +18035,38 @@ + }, + "node_modules/vary": { + "version": "1.1.2", ++ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", ++ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, ++ "node_modules/verror": { ++ "version": "1.10.1", ++ "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz", ++ "integrity": "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==", ++ "dev": true, ++ "optional": true, ++ "dependencies": { ++ "assert-plus": "^1.0.0", ++ "core-util-is": "1.0.2", ++ "extsprintf": "^1.2.0" ++ }, ++ "engines": { ++ "node": ">=0.6.0" ++ } ++ }, + "node_modules/vue": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.27.tgz", +- "integrity": "sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==", ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.38.tgz", ++ "integrity": "sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==", + "dependencies": { +- "@vue/compiler-dom": "3.4.27", +- "@vue/compiler-sfc": "3.4.27", +- "@vue/runtime-dom": "3.4.27", +- "@vue/server-renderer": "3.4.27", +- "@vue/shared": "3.4.27" ++ "@vue/compiler-dom": "3.4.38", ++ "@vue/compiler-sfc": "3.4.38", ++ "@vue/runtime-dom": "3.4.38", ++ "@vue/server-renderer": "3.4.38", ++ "@vue/shared": "3.4.38" + }, + "peerDependencies": { + "typescript": "*" +@@ -15909,8 +18079,9 @@ + }, + "node_modules/vue-eslint-parser": { + "version": "8.3.0", ++ "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz", ++ "integrity": "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==", + "dev": true, +- "license": "MIT", + "dependencies": { + "debug": "^4.3.2", + "eslint-scope": "^7.0.0", +@@ -15931,9 +18102,10 @@ + } + }, + "node_modules/vue-eslint-parser/node_modules/acorn": { +- "version": "8.11.2", ++ "version": "8.12.1", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", ++ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, +- "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, +@@ -15943,8 +18115,9 @@ + }, + "node_modules/vue-eslint-parser/node_modules/eslint-scope": { + "version": "7.2.2", ++ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", ++ "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" +@@ -15958,8 +18131,9 @@ + }, + "node_modules/vue-eslint-parser/node_modules/eslint-visitor-keys": { + "version": "3.4.3", ++ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", ++ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, +- "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, +@@ -15969,8 +18143,9 @@ + }, + "node_modules/vue-eslint-parser/node_modules/espree": { + "version": "9.6.1", ++ "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", ++ "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, +- "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", +@@ -15985,30 +18160,18 @@ + }, + "node_modules/vue-eslint-parser/node_modules/estraverse": { + "version": "5.3.0", ++ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", ++ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, +- "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, +- "node_modules/vue-eslint-parser/node_modules/lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } +- }, + "node_modules/vue-eslint-parser/node_modules/semver": { +- "version": "7.5.4", ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -16016,11 +18179,6 @@ + "node": ">=10" + } + }, +- "node_modules/vue-eslint-parser/node_modules/yallist": { +- "version": "4.0.0", +- "dev": true, +- "license": "ISC" +- }, + "node_modules/vue-i18n": { + "version": "9.13.1", + "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.13.1.tgz", +@@ -16042,7 +18200,8 @@ + }, + "node_modules/vue-loader": { + "version": "16.8.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.8.3.tgz", ++ "integrity": "sha512-7vKN45IxsKxe5GcVCbc2qFU5aWzyiLrYJyUuMz4BQLKctCj/fmCa0w6fGiiQ2cLFetNcek1ppGJQDCup0c1hpA==", + "dependencies": { + "chalk": "^4.1.0", + "hash-sum": "^2.0.0", +@@ -16054,73 +18213,75 @@ + }, + "node_modules/vue-resize": { + "version": "2.0.0-alpha.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-2.0.0-alpha.1.tgz", ++ "integrity": "sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==", + "peerDependencies": { + "vue": "^3.0.0" + } + }, + "node_modules/vue/node_modules/@vue/compiler-core": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.27.tgz", +- "integrity": "sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==", ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.38.tgz", ++ "integrity": "sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==", + "dependencies": { +- "@babel/parser": "^7.24.4", +- "@vue/shared": "3.4.27", ++ "@babel/parser": "^7.24.7", ++ "@vue/shared": "3.4.38", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/vue/node_modules/@vue/compiler-dom": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.27.tgz", +- "integrity": "sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==", ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.38.tgz", ++ "integrity": "sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==", + "dependencies": { +- "@vue/compiler-core": "3.4.27", +- "@vue/shared": "3.4.27" ++ "@vue/compiler-core": "3.4.38", ++ "@vue/shared": "3.4.38" + } + }, + "node_modules/vue/node_modules/@vue/compiler-sfc": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.27.tgz", +- "integrity": "sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==", +- "dependencies": { +- "@babel/parser": "^7.24.4", +- "@vue/compiler-core": "3.4.27", +- "@vue/compiler-dom": "3.4.27", +- "@vue/compiler-ssr": "3.4.27", +- "@vue/shared": "3.4.27", ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.38.tgz", ++ "integrity": "sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==", ++ "dependencies": { ++ "@babel/parser": "^7.24.7", ++ "@vue/compiler-core": "3.4.38", ++ "@vue/compiler-dom": "3.4.38", ++ "@vue/compiler-ssr": "3.4.38", ++ "@vue/shared": "3.4.38", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.10", +- "postcss": "^8.4.38", ++ "postcss": "^8.4.40", + "source-map-js": "^1.2.0" + } + }, + "node_modules/vue/node_modules/@vue/compiler-ssr": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.27.tgz", +- "integrity": "sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==", ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.38.tgz", ++ "integrity": "sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==", + "dependencies": { +- "@vue/compiler-dom": "3.4.27", +- "@vue/shared": "3.4.27" ++ "@vue/compiler-dom": "3.4.38", ++ "@vue/shared": "3.4.38" + } + }, + "node_modules/vue/node_modules/@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" + }, + "node_modules/vue/node_modules/magic-string": { +- "version": "0.30.10", +- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", +- "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", ++ "version": "0.30.11", ++ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", ++ "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", + "dependencies": { +- "@jridgewell/sourcemap-codec": "^1.4.15" ++ "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/vuedraggable": { + "version": "4.1.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-4.1.0.tgz", ++ "integrity": "sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==", + "dependencies": { + "sortablejs": "1.14.0" + }, +@@ -16129,8 +18290,9 @@ + } + }, + "node_modules/watchpack": { +- "version": "2.4.1", +- "license": "MIT", ++ "version": "2.4.2", ++ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", ++ "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" +@@ -16141,31 +18303,33 @@ + }, + "node_modules/wbuf": { + "version": "1.7.3", ++ "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", ++ "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", +- "dev": true, +- "license": "BSD-2-Clause" ++ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", ++ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", ++ "dev": true + }, + "node_modules/webpack": { +- "version": "5.91.0", +- "license": "MIT", ++ "version": "5.94.0", ++ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", ++ "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", + "dependencies": { +- "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", +- "acorn-import-assertions": "^1.9.0", ++ "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", +- "enhanced-resolve": "^5.16.0", ++ "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", +@@ -16199,7 +18363,8 @@ + }, + "node_modules/webpack-cli": { + "version": "4.9.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz", ++ "integrity": "sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==", + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.1.1", +@@ -16220,35 +18385,113 @@ + "engines": { + "node": ">=10.13.0" + }, +- "peerDependencies": { +- "webpack": "4.x.x || 5.x.x" ++ "peerDependencies": { ++ "webpack": "4.x.x || 5.x.x" ++ }, ++ "peerDependenciesMeta": { ++ "@webpack-cli/generators": { ++ "optional": true ++ }, ++ "@webpack-cli/migrate": { ++ "optional": true ++ }, ++ "webpack-bundle-analyzer": { ++ "optional": true ++ }, ++ "webpack-dev-server": { ++ "optional": true ++ } ++ } ++ }, ++ "node_modules/webpack-cli/node_modules/commander": { ++ "version": "7.2.0", ++ "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", ++ "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", ++ "engines": { ++ "node": ">= 10" ++ } ++ }, ++ "node_modules/webpack-cli/node_modules/execa": { ++ "version": "5.1.1", ++ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", ++ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", ++ "dependencies": { ++ "cross-spawn": "^7.0.3", ++ "get-stream": "^6.0.0", ++ "human-signals": "^2.1.0", ++ "is-stream": "^2.0.0", ++ "merge-stream": "^2.0.0", ++ "npm-run-path": "^4.0.1", ++ "onetime": "^5.1.2", ++ "signal-exit": "^3.0.3", ++ "strip-final-newline": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sindresorhus/execa?sponsor=1" ++ } ++ }, ++ "node_modules/webpack-cli/node_modules/get-stream": { ++ "version": "6.0.1", ++ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", ++ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/webpack-cli/node_modules/human-signals": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", ++ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", ++ "engines": { ++ "node": ">=10.17.0" ++ } ++ }, ++ "node_modules/webpack-cli/node_modules/is-stream": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", ++ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/webpack-cli/node_modules/npm-run-path": { ++ "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", ++ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", ++ "dependencies": { ++ "path-key": "^3.0.0" + }, +- "peerDependenciesMeta": { +- "@webpack-cli/generators": { +- "optional": true +- }, +- "@webpack-cli/migrate": { +- "optional": true +- }, +- "webpack-bundle-analyzer": { +- "optional": true +- }, +- "webpack-dev-server": { +- "optional": true +- } ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/webpack-cli/node_modules/commander": { +- "version": "7.2.0", +- "license": "MIT", ++ "node_modules/webpack-cli/node_modules/signal-exit": { ++ "version": "3.0.7", ++ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", ++ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" ++ }, ++ "node_modules/webpack-cli/node_modules/strip-final-newline": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", ++ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { +- "node": ">= 10" ++ "node": ">=6" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.4", ++ "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", ++ "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", +@@ -16267,41 +18510,11 @@ + "webpack": "^4.0.0 || ^5.0.0" + } + }, +- "node_modules/webpack-dev-middleware/node_modules/ajv": { +- "version": "8.12.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- }, +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" +- } +- }, +- "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { +- "version": "5.1.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "fast-deep-equal": "^3.1.3" +- }, +- "peerDependencies": { +- "ajv": "^8.8.2" +- } +- }, +- "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT" +- }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", ++ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", +@@ -16318,8 +18531,9 @@ + }, + "node_modules/webpack-dev-server": { + "version": "4.11.1", ++ "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz", ++ "integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", +@@ -16370,41 +18584,11 @@ + } + } + }, +- "node_modules/webpack-dev-server/node_modules/ajv": { +- "version": "8.12.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- }, +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" +- } +- }, +- "node_modules/webpack-dev-server/node_modules/ajv-keywords": { +- "version": "5.1.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "fast-deep-equal": "^3.1.3" +- }, +- "peerDependencies": { +- "ajv": "^8.8.2" +- } +- }, +- "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT" +- }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.2.0", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", ++ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", +@@ -16421,7 +18605,8 @@ + }, + "node_modules/webpack-merge": { + "version": "5.10.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", ++ "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", +@@ -16433,14 +18618,16 @@ + }, + "node_modules/webpack-sources": { + "version": "3.2.3", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", ++ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/acorn": { +- "version": "8.11.2", +- "license": "MIT", ++ "version": "8.12.1", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", ++ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "bin": { + "acorn": "bin/acorn" + }, +@@ -16448,16 +18635,46 @@ + "node": ">=0.4.0" + } + }, +- "node_modules/webpack/node_modules/acorn-import-assertions": { +- "version": "1.9.0", +- "license": "MIT", ++ "node_modules/webpack/node_modules/acorn-import-attributes": { ++ "version": "1.9.5", ++ "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", ++ "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "peerDependencies": { + "acorn": "^8" + } + }, ++ "node_modules/webpack/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", ++ "dependencies": { ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" ++ }, ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" ++ } ++ }, ++ "node_modules/webpack/node_modules/ajv-keywords": { ++ "version": "3.5.2", ++ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", ++ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", ++ "peerDependencies": { ++ "ajv": "^6.9.1" ++ } ++ }, ++ "node_modules/webpack/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" ++ }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", ++ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", +@@ -16473,8 +18690,9 @@ + }, + "node_modules/websocket-driver": { + "version": "0.7.4", ++ "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", ++ "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, +- "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", +@@ -16486,16 +18704,18 @@ + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", ++ "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", ++ "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, +- "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-url": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", ++ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, +- "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" +@@ -16503,7 +18723,8 @@ + }, + "node_modules/which": { + "version": "2.0.2", +- "license": "ISC", ++ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", ++ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, +@@ -16516,8 +18737,9 @@ + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", ++ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, +- "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", +@@ -16531,19 +18753,21 @@ + }, + "node_modules/which-module": { + "version": "2.0.1", +- "dev": true, +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", ++ "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", ++ "dev": true + }, + "node_modules/which-typed-array": { +- "version": "1.1.13", ++ "version": "1.1.15", ++ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", ++ "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "available-typed-arrays": "^1.0.5", +- "call-bind": "^1.0.4", ++ "available-typed-arrays": "^1.0.7", ++ "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", +- "has-tostringtag": "^1.0.0" ++ "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" +@@ -16554,16 +18778,28 @@ + }, + "node_modules/wildcard": { + "version": "2.0.1", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", ++ "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" ++ }, ++ "node_modules/word-wrap": { ++ "version": "1.2.5", ++ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", ++ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", ++ "dev": true, ++ "engines": { ++ "node": ">=0.10.0" ++ } + }, + "node_modules/wordwrap": { + "version": "1.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", ++ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", ++ "dev": true + }, + "node_modules/wrap-ansi": { + "version": "3.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", ++ "integrity": "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==", + "dependencies": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" +@@ -16575,8 +18811,9 @@ + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", ++ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", +@@ -16591,21 +18828,24 @@ + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "3.0.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", ++ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", ++ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "2.1.1", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", ++ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" +@@ -16616,7 +18856,8 @@ + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "4.0.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", ++ "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dependencies": { + "ansi-regex": "^3.0.0" + }, +@@ -16626,12 +18867,14 @@ + }, + "node_modules/wrappy": { + "version": "1.0.2", +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", ++ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "5.0.1", ++ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", ++ "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", + "dev": true, +- "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" +@@ -16640,21 +18883,11 @@ + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, +- "node_modules/write-file-atomic/node_modules/signal-exit": { +- "version": "4.1.0", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=14" +- }, +- "funding": { +- "url": "https://github.com/sponsors/isaacs" +- } +- }, + "node_modules/ws": { +- "version": "8.14.2", ++ "version": "8.18.0", ++ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", ++ "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, +@@ -16673,23 +18906,26 @@ + }, + "node_modules/xmlbuilder": { + "version": "15.1.1", ++ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", ++ "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", ++ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/xvfb-maybe": { + "version": "0.2.1", ++ "resolved": "https://registry.npmjs.org/xvfb-maybe/-/xvfb-maybe-0.2.1.tgz", ++ "integrity": "sha512-9IyRz3l6Qyhl6LvnGRF5jMPB4oBEepQnuzvVAFTynP6ACLLSevqigICJ9d/+ofl29m2daeaVBChnPYUnaeJ7yA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "debug": "^2.2.0", + "which": "^1.2.4" +@@ -16700,21 +18936,24 @@ + }, + "node_modules/xvfb-maybe/node_modules/debug": { + "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, +- "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/xvfb-maybe/node_modules/ms": { + "version": "2.0.0", +- "dev": true, +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", ++ "dev": true + }, + "node_modules/xvfb-maybe/node_modules/which": { + "version": "1.3.1", ++ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", ++ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, +- "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, +@@ -16723,126 +18962,55 @@ + } + }, + "node_modules/y18n": { +- "version": "4.0.3", ++ "version": "5.0.8", ++ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", ++ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, +- "license": "ISC" ++ "engines": { ++ "node": ">=10" ++ } + }, + "node_modules/yaku": { + "version": "0.16.7", +- "license": "MIT" ++ "resolved": "https://registry.npmjs.org/yaku/-/yaku-0.16.7.tgz", ++ "integrity": "sha512-Syu3IB3rZvKvYk7yTiyl1bo/jiEFaaStrgv1V2TIJTqYPStSMQVO8EQjg/z+DRzLq/4LIIharNT3iH1hylEIRw==" + }, + "node_modules/yallist": { + "version": "3.1.1", +- "license": "ISC" ++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", ++ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/yargs": { +- "version": "15.4.1", ++ "version": "17.7.2", ++ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", ++ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, +- "license": "MIT", + "dependencies": { +- "cliui": "^6.0.0", +- "decamelize": "^1.2.0", +- "find-up": "^4.1.0", +- "get-caller-file": "^2.0.1", ++ "cliui": "^8.0.1", ++ "escalade": "^3.1.1", ++ "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", +- "require-main-filename": "^2.0.0", +- "set-blocking": "^2.0.0", +- "string-width": "^4.2.0", +- "which-module": "^2.0.0", +- "y18n": "^4.0.0", +- "yargs-parser": "^18.1.2" ++ "string-width": "^4.2.3", ++ "y18n": "^5.0.5", ++ "yargs-parser": "^21.1.1" + }, + "engines": { +- "node": ">=8" ++ "node": ">=12" + } + }, + "node_modules/yargs-parser": { +- "version": "20.2.9", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/yargs/node_modules/find-up": { +- "version": "4.1.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "locate-path": "^5.0.0", +- "path-exists": "^4.0.0" +- }, +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/yargs/node_modules/locate-path": { +- "version": "5.0.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "p-locate": "^4.1.0" +- }, +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/yargs/node_modules/p-limit": { +- "version": "2.3.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "p-try": "^2.0.0" +- }, +- "engines": { +- "node": ">=6" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/yargs/node_modules/p-locate": { +- "version": "4.1.0", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "p-limit": "^2.2.0" +- }, +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/yargs/node_modules/p-try": { +- "version": "2.2.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=6" +- } +- }, +- "node_modules/yargs/node_modules/path-exists": { +- "version": "4.0.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/yargs/node_modules/yargs-parser": { +- "version": "18.1.3", ++ "version": "21.1.1", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", ++ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "camelcase": "^5.0.0", +- "decamelize": "^1.2.0" +- }, + "engines": { +- "node": ">=6" ++ "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", +- "license": "MIT", ++ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", ++ "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" +@@ -16850,18 +19018,20 @@ + }, + "node_modules/yn": { + "version": "3.1.1", ++ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", ++ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, +- "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { +- "version": "0.1.0", ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", ++ "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", + "dev": true, +- "license": "MIT", + "engines": { +- "node": ">=10" ++ "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" +@@ -16869,8 +19039,9 @@ + }, + "node_modules/zip-stream": { + "version": "4.1.1", ++ "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.1.tgz", ++ "integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==", + "dev": true, +- "license": "MIT", + "peer": true, + "dependencies": { + "archiver-utils": "^3.0.4", +@@ -16883,8 +19054,9 @@ + }, + "node_modules/zip-stream/node_modules/archiver-utils": { + "version": "3.0.4", ++ "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-3.0.4.tgz", ++ "integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==", + "dev": true, +- "license": "MIT", + "peer": true, + "dependencies": { + "glob": "^7.2.3", + diff --git a/pkgs/by-name/an/antares/package.nix b/pkgs/by-name/an/antares/package.nix index 99725d863dff..fae2010e20a6 100644 --- a/pkgs/by-name/an/antares/package.nix +++ b/pkgs/by-name/an/antares/package.nix @@ -1,30 +1,34 @@ -{ fetchFromGitHub -, lib -, buildNpmPackage -, electron -, nodejs +{ + fetchFromGitHub, + lib, + buildNpmPackage, + electron, + nodejs, + fetchpatch, }: buildNpmPackage rec { pname = "antares"; - version = "0.7.24"; + version = "0.7.28"; src = fetchFromGitHub { owner = "antares-sql"; repo = "antares"; rev = "v${version}"; - hash = "sha256-jMtUDqxWwfXl9x61ycohTaacNAhWawL3Z4+OPW5nbOI="; + hash = "sha256-nEI1G0A1c+xjALbIcItzh4CFxAeQPOD8h+Bs0aYnEfU="; }; - npmDepsHash = "sha256-GC1hdRO8rrM97AMYCxWeNtJhyVdbKgitKLkWX7kGCwg="; + npmDepsHash = "sha256-lSkZTa2zt8BeucOih8XjQ7QW/tg34umIRe4a4DDBW34="; + + patches = [ + # In version 0.7.28, package-lock is not updated properly so this patch update it to be able to build the package + # This patch will probably be removed in the next version + ./npm-lock.patch + ]; buildInputs = [ nodejs ]; - buildPhase = '' - runHook preBuild - npm run compile - runHook postBuild - ''; + npmBuildScript = "compile"; installPhase = '' runHook preInstall @@ -36,7 +40,7 @@ buildNpmPackage rec { runHook postInstall ''; - dontNpmBuild = true; + npmFlags = [ "--legacy-peer-deps" ]; env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; env.PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = "1"; diff --git a/pkgs/by-name/ar/arkenfox-userjs/package.nix b/pkgs/by-name/ar/arkenfox-userjs/package.nix index 04ac83fce1a6..d60b82110dc8 100644 --- a/pkgs/by-name/ar/arkenfox-userjs/package.nix +++ b/pkgs/by-name/ar/arkenfox-userjs/package.nix @@ -6,11 +6,11 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "arkenfox-userjs"; - version = "126.1"; + version = "128.0"; src = fetchurl { url = "https://raw.githubusercontent.com/arkenfox/user.js/${finalAttrs.version}/user.js"; - hash = "sha256-XRtG0iLKh8uqbeX7Rc2H6VJwZYJoNZPBlAfZEfrSCP4="; + hash = "sha256-CJk9sni0+cYC9rBHSL2mDQRtpsQJobQ1u3tq991Oi1c="; }; dontUnpack = true; diff --git a/pkgs/by-name/ga/gatus/package.nix b/pkgs/by-name/ga/gatus/package.nix index a2b59c3d3106..a7d2ae07a5f4 100644 --- a/pkgs/by-name/ga/gatus/package.nix +++ b/pkgs/by-name/ga/gatus/package.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "gatus"; - version = "5.11.0"; + version = "5.12.0"; src = fetchFromGitHub { owner = "TwiN"; repo = "gatus"; rev = "v${version}"; - hash = "sha256-x9agE3ZctH9fudUA0uTVUiCUxiEEn/I4Lz47oIyUee0="; + hash = "sha256-fxRHO37lxFb/rGr3TWLR817sNXaSClucuVtI1XgWrgM="; }; - vendorHash = "sha256-Cb9G24SinU+ln9iVSHLsD0TNt2sIfYsHGmQI/vZekPI="; + vendorHash = "sha256-jRRFj4NdxsjC9CM+Vm5+gV0ZMbz45YtGyE3FaGaGp28="; subPackages = [ "." ]; diff --git a/pkgs/by-name/ha/hatch/package.nix b/pkgs/by-name/ha/hatch/package.nix index 940c343b556b..141fb9a51ec6 100644 --- a/pkgs/by-name/ha/hatch/package.nix +++ b/pkgs/by-name/ha/hatch/package.nix @@ -1,8 +1,8 @@ { lib, - python3, + python3Packages, fetchFromGitHub, - uv, + replaceVars, git, cargo, stdenv, @@ -12,7 +12,7 @@ hatch, }: -python3.pkgs.buildPythonApplication rec { +python3Packages.buildPythonApplication rec { pname = "hatch"; version = "1.12.0"; pyproject = true; @@ -24,13 +24,16 @@ python3.pkgs.buildPythonApplication rec { hash = "sha256-HW2vDVsFrdFRRaPNuGDg9DZpJd8OuYDIqA3KQRa3m9o="; }; - build-system = with python3.pkgs; [ + patches = [ (replaceVars ./paths.patch { uv = lib.getExe python3Packages.uv; }) ]; + + build-system = with python3Packages; [ hatchling hatch-vcs - uv ]; - dependencies = with python3.pkgs; [ + pythonRemoveDeps = [ "uv" ]; + + dependencies = with python3Packages; [ click hatchling httpx @@ -49,7 +52,7 @@ python3.pkgs.buildPythonApplication rec { ]; nativeCheckInputs = - with python3.pkgs; + with python3Packages; [ binary git diff --git a/pkgs/by-name/ha/hatch/paths.patch b/pkgs/by-name/ha/hatch/paths.patch new file mode 100644 index 000000000000..60aeec4e4971 --- /dev/null +++ b/pkgs/by-name/ha/hatch/paths.patch @@ -0,0 +1,58 @@ +diff --git a/src/hatch/env/virtual.py b/src/hatch/env/virtual.py +index 285edb32..90bd94e6 100644 +--- a/src/hatch/env/virtual.py ++++ b/src/hatch/env/virtual.py +@@ -106,26 +106,7 @@ class VirtualEnvironment(EnvironmentInterface): + if self.explicit_uv_path: + return self.explicit_uv_path + +- from hatch.env.internal import is_default_environment +- +- env_name = 'hatch-uv' +- if not ( +- # Prevent recursive loop +- self.name == env_name +- # Only if dependencies have been set by the user +- or is_default_environment(env_name, self.app.project.config.internal_envs[env_name]) +- ): +- uv_env = self.app.get_environment(env_name) +- self.app.prepare_environment(uv_env) +- with uv_env: +- return self.platform.modules.shutil.which('uv') +- +- import sysconfig +- +- scripts_dir = sysconfig.get_path('scripts') +- old_path = os.environ.get('PATH', os.defpath) +- new_path = f'{scripts_dir}{os.pathsep}{old_path}' +- return self.platform.modules.shutil.which('uv', path=new_path) ++ return '@uv@' + + @staticmethod + def get_option_types() -> dict: +diff --git a/src/hatch/venv/core.py b/src/hatch/venv/core.py +index d1303f03..e1e60871 100644 +--- a/src/hatch/venv/core.py ++++ b/src/hatch/venv/core.py +@@ -131,7 +131,7 @@ class TempVirtualEnv(VirtualEnv): + + class UVVirtualEnv(VirtualEnv): + def create(self, python, *, allow_system_packages=False): +- command = [os.environ.get('HATCH_UV', 'uv'), 'venv', str(self.directory), '--python', python] ++ command = [os.environ.get('HATCH_UV', '@uv@'), 'venv', str(self.directory), '--python', python] + if allow_system_packages: + command.append('--system-site-packages') + +diff --git a/tests/conftest.py b/tests/conftest.py +index e8fe663a..6066316d 100644 +--- a/tests/conftest.py ++++ b/tests/conftest.py +@@ -203,7 +203,7 @@ def python_on_path(): + + @pytest.fixture(scope='session', autouse=True) + def uv_on_path(): +- return shutil.which('uv') ++ return '@uv@' + + + @pytest.fixture(scope='session') diff --git a/pkgs/by-name/lu/lubelogger/package.nix b/pkgs/by-name/lu/lubelogger/package.nix index 39e137046703..504490b82526 100644 --- a/pkgs/by-name/lu/lubelogger/package.nix +++ b/pkgs/by-name/lu/lubelogger/package.nix @@ -6,13 +6,13 @@ buildDotnetModule rec { pname = "lubelogger"; - version = "1.3.5"; + version = "1.3.6"; src = fetchFromGitHub { owner = "hargata"; repo = "lubelog"; rev = "v${version}"; - hash = "sha256-Og7yDZn6PBkoihApCy/dWxWt/DoBwQDXVAio8nwcI9A="; + hash = "sha256-gfnfxm/xxFx77UnEinr+D8GoIN/KMz3BEbjpCYqQ6as="; }; projectFile = "CarCareTracker.sln"; diff --git a/pkgs/by-name/py/pytr/package.nix b/pkgs/by-name/py/pytr/package.nix new file mode 100644 index 000000000000..0afe8ad3bc44 --- /dev/null +++ b/pkgs/by-name/py/pytr/package.nix @@ -0,0 +1,59 @@ +{ + fetchFromGitHub, + installShellFiles, + lib, + python3Packages, + versionCheckHook, +}: + +python3Packages.buildPythonApplication rec { + pname = "pytr"; + version = "0.2.2"; + pyproject = true; + + src = fetchFromGitHub { + owner = "pytr-org"; + repo = "pytr"; + rev = "refs/tags/${version}"; + hash = "sha256-0ekUpkuyT0TB2YQi7CUMwosLI2tR0owJE2XQBaiy8Iw="; + }; + + build-system = with python3Packages; [ + babel + setuptools + ]; + + dependencies = with python3Packages; [ + babel + certifi + coloredlogs + ecdsa + packaging + pathvalidate + pygments + requests-futures + shtab + websockets + ]; + + nativeBuildInputs = [ installShellFiles ]; + + postInstall = '' + installShellCompletion --cmd pytr \ + --bash <($out/bin/pytr completion bash) \ + --zsh <($out/bin/pytr completion zsh) + ''; + + nativeCheckInputs = [ versionCheckHook ]; + + pythonImportsCheck = [ "pytr" ]; + + meta = { + changelog = "https://github.com/pytr-org/pytr/releases/tag/${version}"; + description = "Use TradeRepublic in terminal and mass download all documents"; + homepage = "https://github.com/pytr-org/pytr"; + license = lib.licenses.mit; + mainProgram = "pytr"; + maintainers = with lib.maintainers; [ dotlambda ]; + }; +} diff --git a/pkgs/by-name/re/renovate/package.nix b/pkgs/by-name/re/renovate/package.nix index 181734d93674..be29c275905c 100644 --- a/pkgs/by-name/re/renovate/package.nix +++ b/pkgs/by-name/re/renovate/package.nix @@ -21,13 +21,13 @@ let in stdenv'.mkDerivation (finalAttrs: { pname = "renovate"; - version = "38.46.2"; + version = "38.55.4"; src = fetchFromGitHub { owner = "renovatebot"; repo = "renovate"; rev = "refs/tags/${finalAttrs.version}"; - hash = "sha256-fy4hWBhaYpfcrxdEuBqb/f7wG3TeLtte8OfjQ9Eoejo="; + hash = "sha256-62nijbuHCNG6ht2W3EJB6fwNvYhZHzDp+RyH1prBWVQ="; }; postPatch = '' @@ -44,7 +44,7 @@ stdenv'.mkDerivation (finalAttrs: { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-UZuCBDveEumGgfx9h7RoBbTtkrpiyOcBnIQmpbsjc2g="; + hash = "sha256-wdlGYIVGHLB2D4wSA5pjFRSHoetyLLN7v50K8nXxMO0="; }; env.COREPACK_ENABLE_STRICT = 0; diff --git a/pkgs/by-name/ru/rustplayer/Cargo.lock b/pkgs/by-name/ru/rustplayer/Cargo.lock index 433552efa741..bea72c3049e0 100644 --- a/pkgs/by-name/ru/rustplayer/Cargo.lock +++ b/pkgs/by-name/ru/rustplayer/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "addr2line" -version = "0.17.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" dependencies = [ "gimli", ] @@ -19,21 +19,21 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "aho-corasick" -version = "0.7.18" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" dependencies = [ "memchr", ] [[package]] name = "alsa" -version = "0.6.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5915f52fe2cf65e83924d037b6c5290b7cee097c6b5c8700746e6168a343fd6b" +checksum = "e2562ad8dcf0f789f65c6fdaad8a8a9708ed6b488e649da28c01656ad66b8b47" dependencies = [ "alsa-sys", - "bitflags", + "bitflags 1.3.2", "libc", "nix", ] @@ -48,6 +48,12 @@ dependencies = [ "pkg-config", ] +[[package]] +name = "arrayvec" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" + [[package]] name = "autocfg" version = "1.1.0" @@ -56,13 +62,13 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "backtrace" -version = "0.3.64" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e121dee8023ce33ab248d9ce1493df03c3b38a659b240096fcbd7048ff9c31f" +checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" dependencies = [ "addr2line", "cc", - "cfg-if 1.0.0", + "cfg-if", "libc", "miniz_oxide", "object", @@ -71,19 +77,18 @@ dependencies = [ [[package]] name = "base64" -version = "0.13.0" +version = "0.21.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" [[package]] name = "bindgen" -version = "0.53.3" +version = "0.64.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c72a978d268b1d70b0e963217e60fdabd9523a941457a6c42a7315d15c7e89e5" +checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cexpr", - "cfg-if 0.1.10", "clang-sys", "lazy_static", "lazycell", @@ -93,17 +98,17 @@ dependencies = [ "regex", "rustc-hash", "shlex", + "syn 1.0.109", ] [[package]] name = "bindgen" -version = "0.54.0" +version = "0.68.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66c0bb6167449588ff70803f4127f0684f9063097eca5016f37eb52b92c2cf36" +checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078" dependencies = [ - "bitflags", + "bitflags 2.4.1", "cexpr", - "cfg-if 0.1.10", "clang-sys", "lazy_static", "lazycell", @@ -113,6 +118,7 @@ dependencies = [ "regex", "rustc-hash", "shlex", + "syn 2.0.39", ] [[package]] @@ -122,22 +128,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] -name = "bumpalo" -version = "3.9.1" +name = "bitflags" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899" +checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" + +[[package]] +name = "bumpalo" +version = "3.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" + +[[package]] +name = "bytemuck" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" [[package]] name = "byteorder" -version = "1.4.3" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.1.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" +checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" [[package]] name = "cassowary" @@ -147,11 +165,12 @@ checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" [[package]] name = "cc" -version = "1.0.73" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" dependencies = [ "jobserver", + "libc", ] [[package]] @@ -162,19 +181,13 @@ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" [[package]] name = "cexpr" -version = "0.4.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27" +checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" dependencies = [ - "nom 5.1.2", + "nom", ] -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - [[package]] name = "cfg-if" version = "1.0.0" @@ -183,9 +196,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clang-sys" -version = "0.29.3" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a" +checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" dependencies = [ "glob", "libc", @@ -200,9 +213,9 @@ checksum = "4bfbf56724aa9eca8afa4fcfadeb479e722935bb2a0900c2d37e0cc477af0688" [[package]] name = "combine" -version = "4.6.3" +version = "4.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50b727aacc797f9fc28e355d21f34709ac4fc9adecfe470ad07b8f4464f53062" +checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" dependencies = [ "bytes", "memchr", @@ -220,52 +233,53 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "coreaudio-rs" -version = "0.10.0" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11894b20ebfe1ff903cbdc52259693389eea03b94918a2def2c30c3bf227ad88" +checksum = "321077172d79c662f64f5071a03120748d5bb652f5231570141be24cfcd2bace" dependencies = [ - "bitflags", + "bitflags 1.3.2", + "core-foundation-sys", "coreaudio-sys", ] [[package]] name = "coreaudio-sys" -version = "0.2.6" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17f73df0f29f4c3c374854f076c47dc018f19acaa63538880dba0937ad4fa8d7" +checksum = "d8478e5bdad14dce236b9898ea002eabfa87cbe14f0aa538dbe3b6a4bec4332d" dependencies = [ - "bindgen 0.53.3", + "bindgen 0.68.1", ] [[package]] name = "cpal" -version = "0.13.5" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74117836a5124f3629e4b474eed03e479abaf98988b4bb317e29f08cfe0e4116" +checksum = "6d959d90e938c5493000514b446987c07aed46c668faaa7d34d6c7a67b1a578c" dependencies = [ "alsa", "core-foundation-sys", "coreaudio-rs", - "jni", + "dasp_sample", + "jni 0.19.0", "js-sys", - "lazy_static", "libc", - "mach", + "mach2", "ndk", - "ndk-glue", - "nix", + "ndk-context", "oboe", - "parking_lot 0.11.2", - "stdweb", - "thiserror", + "once_cell", + "parking_lot", + "wasm-bindgen", + "wasm-bindgen-futures", "web-sys", - "winapi", + "windows", ] [[package]] @@ -274,11 +288,11 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67" dependencies = [ - "bitflags", + "bitflags 1.3.2", "crossterm_winapi", "libc", "mio", - "parking_lot 0.12.0", + "parking_lot", "signal-hook", "signal-hook-mio", "winapi", @@ -286,47 +300,18 @@ dependencies = [ [[package]] name = "crossterm_winapi" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c" +checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" dependencies = [ "winapi", ] [[package]] -name = "darling" -version = "0.13.1" +name = "dasp_sample" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0d720b8683f8dd83c65155f0530560cba68cd2bf395f6513a483caee57ff7f4" -dependencies = [ - "darling_core", - "darling_macro", -] - -[[package]] -name = "darling_core" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a340f241d2ceed1deb47ae36c4144b2707ec7dd0b649f894cb39bb595986324" -dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim", - "syn", -] - -[[package]] -name = "darling_macro" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72c41b3b7352feb3211a0d743dc5700a4e3b60f51bd2b368892d1e0f9a95f44b" -dependencies = [ - "darling_core", - "quote", - "syn", -] +checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" [[package]] name = "dirs" @@ -350,11 +335,27 @@ dependencies = [ [[package]] name = "encoding_rs" -version = "0.8.30" +version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", +] + +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "errno" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c18ee0ed65a5f1f81cac6b1d213b69c35fa47d4252ad41f1486dbd8226fe36e" +dependencies = [ + "libc", + "windows-sys 0.48.0", ] [[package]] @@ -375,18 +376,15 @@ checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", "synstructure", ] [[package]] name = "fastrand" -version = "1.7.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf" -dependencies = [ - "instant", -] +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "ffmpeg-decoder" @@ -400,10 +398,10 @@ dependencies = [ [[package]] name = "ffmpeg-sys-next" -version = "4.4.0" -source = "git+https://github.com/Kingtous/rust-ffmpeg-sys.git?branch=fix/4.4.0#2c8b92401886d8a6d3b94e77fd73c84e95c627ee" +version = "6.0.1" +source = "git+https://github.com/KetaDotCC/rust-ffmpeg-sys.git?branch=master#089179935992cd5ceb77a16e6a6b9af85b57adf8" dependencies = [ - "bindgen 0.54.0", + "bindgen 0.64.0", "cc", "libc", "num_cpus", @@ -434,46 +432,45 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "form_urlencoded" -version = "1.0.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" dependencies = [ - "matches", "percent-encoding", ] [[package]] name = "futures-channel" -version = "0.3.21" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" +checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" dependencies = [ "futures-core", ] [[package]] name = "futures-core" -version = "0.3.21" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" +checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" [[package]] name = "futures-sink" -version = "0.3.21" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" +checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" [[package]] name = "futures-task" -version = "0.3.21" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" +checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" [[package]] name = "futures-util" -version = "0.3.21" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" +checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" dependencies = [ "futures-core", "futures-task", @@ -483,32 +480,32 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.5" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77" +checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", - "wasi 0.10.2+wasi-snapshot-preview1", + "wasi", ] [[package]] name = "gimli" -version = "0.26.1" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4" +checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" [[package]] name = "glob" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "h2" -version = "0.3.12" +version = "0.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62eeb471aa3e3c9197aa4bfeabfe02982f6dc96f750486c0bb0009ac58b26d2b" +checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" dependencies = [ "bytes", "fnv", @@ -516,7 +513,7 @@ dependencies = [ "futures-sink", "futures-util", "http", - "indexmap", + "indexmap 1.9.3", "slab", "tokio", "tokio-util", @@ -525,30 +522,33 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.11.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" [[package]] name = "hermit-abi" -version = "0.1.19" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -dependencies = [ - "libc", -] +checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" [[package]] name = "hound" -version = "3.4.0" +version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a164bb2ceaeff4f42542bdb847c41517c78a60f5649671b2a07312b6e117549" +checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f" [[package]] name = "http" -version = "0.2.6" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03" +checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" dependencies = [ "bytes", "fnv", @@ -557,9 +557,9 @@ dependencies = [ [[package]] name = "http-body" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6" +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", "http", @@ -568,21 +568,21 @@ dependencies = [ [[package]] name = "httparse" -version = "1.6.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9100414882e15fb7feccb4897e5f0ff0ff1ca7d1a86a23208ada4d7a18e6c6c4" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] name = "httpdate" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "hyper" -version = "0.14.17" +version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "043f0e083e9901b6cc658a77d1eb86f4fc650bbb977a4337dd63192826aa85dd" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ "bytes", "futures-channel", @@ -595,7 +595,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2", + "socket2 0.4.10", "tokio", "tower-service", "tracing", @@ -615,53 +615,47 @@ dependencies = [ "tokio-native-tls", ] -[[package]] -name = "ident_case" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" - [[package]] name = "idna" -version = "0.2.3" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" dependencies = [ - "matches", "unicode-bidi", "unicode-normalization", ] [[package]] name = "indexmap" -version = "1.8.0" +version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", - "hashbrown", + "hashbrown 0.12.3", ] [[package]] -name = "instant" -version = "0.1.12" +name = "indexmap" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" dependencies = [ - "cfg-if 1.0.0", + "equivalent", + "hashbrown 0.14.2", ] [[package]] name = "ipnet" -version = "2.4.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35e70ee094dc02fd9c13fdad4940090f22dbd6ac7c9e7094a46cf0232a50bc7c" +checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" [[package]] name = "itoa" -version = "1.0.1" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "jni" @@ -677,6 +671,20 @@ dependencies = [ "walkdir", ] +[[package]] +name = "jni" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" +dependencies = [ + "cesu8", + "combine", + "jni-sys", + "log", + "thiserror", + "walkdir", +] + [[package]] name = "jni-sys" version = "0.3.0" @@ -685,18 +693,18 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.24" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa" +checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.56" +version = "0.3.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04" +checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" dependencies = [ "wasm-bindgen", ] @@ -726,37 +734,52 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.119" +version = "0.2.150" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4" +checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" [[package]] name = "libloading" -version = "0.5.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" dependencies = [ - "cc", + "cfg-if", "winapi", ] [[package]] -name = "lock_api" -version = "0.4.6" +name = "libredox" +version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b" +checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" dependencies = [ + "bitflags 2.4.1", + "libc", + "redox_syscall", +] + +[[package]] +name = "linux-raw-sys" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" + +[[package]] +name = "lock_api" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" +dependencies = [ + "autocfg", "scopeguard", ] [[package]] name = "log" -version = "0.4.14" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" -dependencies = [ - "cfg-if 1.0.0", -] +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "m3u8-rs" @@ -764,44 +787,29 @@ version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50fe05791a7f418b59d6cddebdc293d77c9c1f652adbff855c071d4507cd883b" dependencies = [ - "nom 7.1.1", + "nom", ] [[package]] -name = "mach" -version = "0.3.2" +name = "mach2" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" +checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" dependencies = [ "libc", ] -[[package]] -name = "matches" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" - [[package]] name = "memchr" -version = "2.4.1" +version = "2.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" - -[[package]] -name = "memoffset" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" -dependencies = [ - "autocfg", -] +checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "mime" -version = "0.3.16" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "minimal-lexical" @@ -809,57 +817,25 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" -[[package]] -name = "minimp3" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "985438f75febf74c392071a975a29641b420dd84431135a6e6db721de4b74372" -dependencies = [ - "minimp3-sys", - "slice-deque", - "thiserror", -] - -[[package]] -name = "minimp3-sys" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e21c73734c69dc95696c9ed8926a2b393171d98b3f5f5935686a26a487ab9b90" -dependencies = [ - "cc", -] - [[package]] name = "miniz_oxide" -version = "0.4.4" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" dependencies = [ "adler", - "autocfg", ] [[package]] name = "mio" -version = "0.8.2" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9" +checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" dependencies = [ "libc", "log", - "miow", - "ntapi", - "wasi 0.11.0+wasi-snapshot-preview1", - "winapi", -] - -[[package]] -name = "miow" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" -dependencies = [ - "winapi", + "wasi", + "windows-sys 0.48.0", ] [[package]] @@ -873,9 +849,9 @@ dependencies = [ [[package]] name = "native-tls" -version = "0.2.8" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" dependencies = [ "lazy_static", "libc", @@ -891,102 +867,54 @@ dependencies = [ [[package]] name = "ndk" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" +checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" dependencies = [ - "bitflags", + "bitflags 1.3.2", "jni-sys", "ndk-sys", "num_enum", + "raw-window-handle", "thiserror", ] [[package]] name = "ndk-context" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e3c5cc68637e21fe8f077f6a1c9e0b9ca495bb74895226b476310f613325884" - -[[package]] -name = "ndk-glue" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9ffb7443daba48349d545028777ca98853b018b4c16624aa01223bc29e078da" -dependencies = [ - "lazy_static", - "libc", - "log", - "ndk", - "ndk-context", - "ndk-macro", - "ndk-sys", -] - -[[package]] -name = "ndk-macro" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0df7ac00c4672f9d5aece54ee3347520b7e20f158656c7db2e6de01902eb7a6c" -dependencies = [ - "darling", - "proc-macro-crate", - "proc-macro2", - "quote", - "syn", -] +checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" [[package]] name = "ndk-sys" -version = "0.3.0" +version = "0.4.1+23.1.7779620" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" +checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3" dependencies = [ "jni-sys", ] [[package]] name = "nix" -version = "0.23.1" +version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" +checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" dependencies = [ - "bitflags", - "cc", - "cfg-if 1.0.0", + "bitflags 1.3.2", + "cfg-if", "libc", - "memoffset", ] [[package]] name = "nom" -version = "5.1.2" +version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af" -dependencies = [ - "memchr", - "version_check", -] - -[[package]] -name = "nom" -version = "7.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ "memchr", "minimal-lexical", ] -[[package]] -name = "ntapi" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" -dependencies = [ - "winapi", -] - [[package]] name = "num-derive" version = "0.3.3" @@ -995,23 +923,23 @@ checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] name = "num-traits" -version = "0.2.14" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" dependencies = [ "autocfg", ] [[package]] name = "num_cpus" -version = "1.13.1" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ "hermit-abi", "libc", @@ -1019,43 +947,43 @@ dependencies = [ [[package]] name = "num_enum" -version = "0.5.7" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" +checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" dependencies = [ "num_enum_derive", ] [[package]] name = "num_enum_derive" -version = "0.5.7" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" +checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn", + "syn 1.0.109", ] [[package]] name = "object" -version = "0.27.1" +version = "0.32.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9" +checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" dependencies = [ "memchr", ] [[package]] name = "oboe" -version = "0.4.5" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2463c8f2e19b4e0d0710a21f8e4011501ff28db1c95d7a5482a553b2100502d2" +checksum = "8868cc237ee02e2d9618539a23a8d228b9bb3fc2e7a5b11eed3831de77c395d0" dependencies = [ - "jni", + "jni 0.20.0", "ndk", - "ndk-glue", + "ndk-context", "num-derive", "num-traits", "oboe-sys", @@ -1063,9 +991,9 @@ dependencies = [ [[package]] name = "oboe-sys" -version = "0.4.5" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3370abb7372ed744232c12954d920d1a40f1c4686de9e79e800021ef492294bd" +checksum = "7f44155e7fb718d3cfddcf70690b2b51ac4412f347cd9e4fbe511abe9cd7b5f2" dependencies = [ "cc", ] @@ -1081,34 +1009,46 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.10.0" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "open" -version = "2.1.0" +version = "2.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a82915836ef43159bb6a3c64d884c42329ccd0b8afdca737cf1e3dd701709dc" +checksum = "f2423ffbf445b82e58c3b1543655968923dd06f85432f10be2bb4f1b7122f98c" dependencies = [ "pathdiff", - "winapi", + "windows-sys 0.36.1", ] [[package]] name = "openssl" -version = "0.10.38" +version = "0.10.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95" +checksum = "7a257ad03cd8fb16ad4172fedf8094451e1af1c4b70097636ef2eac9a5f0cc33" dependencies = [ - "bitflags", - "cfg-if 1.0.0", + "bitflags 2.4.1", + "cfg-if", "foreign-types", "libc", "once_cell", + "openssl-macros", "openssl-sys", ] +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] + [[package]] name = "openssl-probe" version = "0.1.5" @@ -1117,11 +1057,10 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.72" +version = "0.9.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb" +checksum = "40a4130519a360279579c2053038317e40eff64d13fd3f004f9e1b72b8a6aaf9" dependencies = [ - "autocfg", "cc", "libc", "pkg-config", @@ -1130,50 +1069,25 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.11.2" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" -dependencies = [ - "instant", - "lock_api", - "parking_lot_core 0.8.5", -] - -[[package]] -name = "parking_lot" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ "lock_api", - "parking_lot_core 0.9.1", + "parking_lot_core", ] [[package]] name = "parking_lot_core" -version = "0.8.5" +version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" +checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" dependencies = [ - "cfg-if 1.0.0", - "instant", + "cfg-if", "libc", "redox_syscall", "smallvec", - "winapi", -] - -[[package]] -name = "parking_lot_core" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28141e0cc4143da2443301914478dc976a61ffdb3f043058310c70df2fed8954" -dependencies = [ - "cfg-if 1.0.0", - "libc", - "redox_syscall", - "smallvec", - "windows-sys", + "windows-targets 0.48.5", ] [[package]] @@ -1190,15 +1104,15 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" [[package]] name = "percent-encoding" -version = "2.1.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" [[package]] name = "pin-project-lite" -version = "0.2.8" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" [[package]] name = "pin-utils" @@ -1208,40 +1122,40 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pkg-config" -version = "0.3.24" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "ppv-lite86" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "proc-macro-crate" -version = "1.1.3" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" dependencies = [ - "thiserror", - "toml", + "once_cell", + "toml_edit", ] [[package]] name = "proc-macro2" -version = "1.0.36" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" +checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" dependencies = [ - "unicode-xid", + "unicode-ident", ] [[package]] name = "quote" -version = "1.0.15" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" dependencies = [ "proc-macro2", ] @@ -1269,38 +1183,56 @@ dependencies = [ [[package]] name = "rand_core" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ "getrandom", ] [[package]] -name = "redox_syscall" -version = "0.2.12" +name = "raw-window-handle" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae183fc1b06c149f0c1793e1eb447c8b04bfe46d48e9e48bfb8d2d7ed64ecf0" +checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" + +[[package]] +name = "redox_syscall" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] name = "redox_users" -version = "0.4.2" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7776223e2696f1aa4c6b0170e83212f47296a00424305117d013dfe86fb0fe55" +checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" dependencies = [ "getrandom", - "redox_syscall", + "libredox", "thiserror", ] [[package]] name = "regex" -version = "1.5.4" +version = "1.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" +checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" dependencies = [ "aho-corasick", "memchr", @@ -1309,24 +1241,15 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.25" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" - -[[package]] -name = "remove_dir_all" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" -dependencies = [ - "winapi", -] +checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reqwest" -version = "0.11.10" +version = "0.11.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb" +checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" dependencies = [ "base64", "bytes", @@ -1340,17 +1263,19 @@ dependencies = [ "hyper-tls", "ipnet", "js-sys", - "lazy_static", "log", "mime", "native-tls", + "once_cell", "percent-encoding", "pin-project-lite", "serde", "serde_json", "serde_urlencoded", + "system-configuration", "tokio", "tokio-native-tls", + "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", @@ -1360,22 +1285,22 @@ dependencies = [ [[package]] name = "rodio" -version = "0.15.0" +version = "0.17.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0939e9f626e6c6f1989adb6226a039c855ca483053f0ee7c98b90e41cf731e" +checksum = "3b1bb7b48ee48471f55da122c0044fcc7600cfcc85db88240b89cb832935e611" dependencies = [ "claxon", "cpal", "hound", "lewton", - "minimp3", + "symphonia", ] [[package]] name = "rustc-demangle" -version = "0.1.21" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" [[package]] name = "rustc-hash" @@ -1383,15 +1308,29 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" +[[package]] +name = "rustix" +version = "0.38.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" +dependencies = [ + "bitflags 2.4.1", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.48.0", +] + [[package]] name = "rustplayer" -version = "1.1.1" +version = "1.1.2" dependencies = [ "bytes", "crossterm", "dirs", "failure", "ffmpeg-decoder", + "lazy_static", "m3u8-rs", "mp3-duration", "open", @@ -1405,9 +1344,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.9" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "same-file" @@ -1420,27 +1359,26 @@ dependencies = [ [[package]] name = "schannel" -version = "0.1.19" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" +checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" dependencies = [ - "lazy_static", - "winapi", + "windows-sys 0.48.0", ] [[package]] name = "scopeguard" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "security-framework" -version = "2.6.1" +version = "2.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" +checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", "core-foundation-sys", "libc", @@ -1449,9 +1387,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.6.1" +version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" +checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" dependencies = [ "core-foundation-sys", "libc", @@ -1459,15 +1397,29 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.136" +version = "1.0.192" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789" +checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.192" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] [[package]] name = "serde_json" -version = "1.0.79" +version = "1.0.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95" +checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" dependencies = [ "itoa", "ryu", @@ -1488,15 +1440,15 @@ dependencies = [ [[package]] name = "shlex" -version = "0.1.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2" +checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" [[package]] name = "signal-hook" -version = "0.3.13" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "647c97df271007dcea485bb74ffdb57f2e683f1306c854f468a0c244badabf2d" +checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" dependencies = [ "libc", "signal-hook-registry", @@ -1515,67 +1467,118 @@ dependencies = [ [[package]] name = "signal-hook-registry" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" dependencies = [ "libc", ] [[package]] name = "slab" -version = "0.4.5" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" - -[[package]] -name = "slice-deque" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31ef6ee280cdefba6d2d0b4b78a84a1c1a3f3a4cec98c2d4231c8bc225de0f25" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ - "libc", - "mach", - "winapi", + "autocfg", ] [[package]] name = "smallvec" -version = "1.8.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" +checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" [[package]] name = "socket2" -version = "0.4.4" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" +checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" dependencies = [ "libc", "winapi", ] [[package]] -name = "stdweb" -version = "0.1.3" +name = "socket2" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef5430c8e36b713e13b48a9f709cc21e046723fe44ce34587b73a830203b533e" +checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" +dependencies = [ + "libc", + "windows-sys 0.48.0", +] [[package]] -name = "strsim" -version = "0.10.0" +name = "symphonia" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" +checksum = "62e48dba70095f265fdb269b99619b95d04c89e619538138383e63310b14d941" +dependencies = [ + "lazy_static", + "symphonia-bundle-mp3", + "symphonia-core", + "symphonia-metadata", +] + +[[package]] +name = "symphonia-bundle-mp3" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f31d7fece546f1e6973011a9eceae948133bbd18fd3d52f6073b1e38ae6368a" +dependencies = [ + "bitflags 1.3.2", + "lazy_static", + "log", + "symphonia-core", + "symphonia-metadata", +] + +[[package]] +name = "symphonia-core" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7c73eb88fee79705268cc7b742c7bc93a7b76e092ab751d0833866970754142" +dependencies = [ + "arrayvec", + "bitflags 1.3.2", + "bytemuck", + "lazy_static", + "log", +] + +[[package]] +name = "symphonia-metadata" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89c3e1937e31d0e068bbe829f66b2f2bfaa28d056365279e0ef897172c3320c0" +dependencies = [ + "encoding_rs", + "lazy_static", + "log", + "symphonia-core", +] [[package]] name = "syn" -version = "1.0.86" +version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ "proc-macro2", "quote", - "unicode-xid", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] @@ -1586,95 +1589,114 @@ checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 1.0.109", "unicode-xid", ] [[package]] -name = "tempfile" -version = "3.3.0" +name = "system-configuration" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ - "cfg-if 1.0.0", - "fastrand", + "bitflags 1.3.2", + "core-foundation", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +dependencies = [ + "core-foundation-sys", "libc", +] + +[[package]] +name = "tempfile" +version = "3.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" +dependencies = [ + "cfg-if", + "fastrand", "redox_syscall", - "remove_dir_all", - "winapi", + "rustix", + "windows-sys 0.48.0", ] [[package]] name = "thiserror" -version = "1.0.30" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" +checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.30" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" +checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.39", ] [[package]] name = "tinyvec" -version = "1.5.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" dependencies = [ "tinyvec_macros", ] [[package]] name = "tinyvec_macros" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.17.0" +version = "1.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee" +checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" dependencies = [ + "backtrace", "bytes", "libc", - "memchr", "mio", "num_cpus", - "once_cell", - "parking_lot 0.12.0", + "parking_lot", "pin-project-lite", "signal-hook-registry", - "socket2", + "socket2 0.5.5", "tokio-macros", - "winapi", + "windows-sys 0.48.0", ] [[package]] name = "tokio-macros" -version = "1.7.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7" +checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.39", ] [[package]] name = "tokio-native-tls" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" dependencies = [ "native-tls", "tokio", @@ -1682,58 +1704,65 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.6.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0" +checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" dependencies = [ "bytes", "futures-core", "futures-sink", - "log", "pin-project-lite", "tokio", + "tracing", ] [[package]] -name = "toml" -version = "0.5.8" +name = "toml_datetime" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" + +[[package]] +name = "toml_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "serde", + "indexmap 2.1.0", + "toml_datetime", + "winnow", ] [[package]] name = "tower-service" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" [[package]] name = "tracing" -version = "0.1.32" +version = "0.1.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a1bdf54a7c28a2bbf701e1d2233f6c77f473486b94bee4f9678da5a148dca7f" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" dependencies = [ - "cfg-if 1.0.0", "pin-project-lite", "tracing-core", ] [[package]] name = "tracing-core" -version = "0.1.23" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa31669fa42c09c34d94d8165dd2012e8ff3c66aca50f3bb226b68f216f2706c" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" dependencies = [ - "lazy_static", + "once_cell", ] [[package]] name = "try-lock" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "tui" @@ -1741,7 +1770,7 @@ version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccdd26cbd674007e649a272da4475fb666d3aa0ad0531da7136db6fab0e5bad1" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cassowary", "crossterm", "unicode-segmentation", @@ -1750,46 +1779,51 @@ dependencies = [ [[package]] name = "unicode-bidi" -version = "0.3.7" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "unicode-normalization" -version = "0.1.19" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" dependencies = [ "tinyvec", ] [[package]] name = "unicode-segmentation" -version = "1.9.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99" +checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" [[package]] name = "unicode-width" -version = "0.1.9" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" +checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" [[package]] name = "unicode-xid" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" [[package]] name = "url" -version = "2.2.2" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" +checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" dependencies = [ "form_urlencoded", "idna", - "matches", "percent-encoding", ] @@ -1799,39 +1833,25 @@ version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" -[[package]] -name = "version_check" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" - [[package]] name = "walkdir" -version = "2.3.2" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" +checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" dependencies = [ "same-file", - "winapi", "winapi-util", ] [[package]] name = "want" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" dependencies = [ - "log", "try-lock", ] -[[package]] -name = "wasi" -version = "0.10.2+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" - [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" @@ -1840,36 +1860,36 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.79" +version = "0.2.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06" +checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.79" +version = "0.2.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca" +checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" dependencies = [ "bumpalo", - "lazy_static", "log", + "once_cell", "proc-macro2", "quote", - "syn", + "syn 2.0.39", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.29" +version = "0.4.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395" +checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "wasm-bindgen", "web-sys", @@ -1877,9 +1897,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.79" +version = "0.2.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01" +checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -1887,28 +1907,28 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.79" +version = "0.2.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc" +checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.39", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.79" +version = "0.2.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2" +checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" [[package]] name = "web-sys" -version = "0.3.56" +version = "0.3.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb" +checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" dependencies = [ "js-sys", "wasm-bindgen", @@ -1932,9 +1952,9 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" dependencies = [ "winapi", ] @@ -1946,53 +1966,195 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] -name = "windows-sys" -version = "0.32.0" +name = "windows" +version = "0.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3df6e476185f92a12c072be4a189a0210dcdcf512a1891d6dff9edb874deadc6" +checksum = "cdacb41e6a96a052c6cb63a144f24900236121c6f63f4f8219fef5977ecb0c25" dependencies = [ - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_msvc", + "windows-targets 0.42.2", ] +[[package]] +name = "windows-sys" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" +dependencies = [ + "windows_aarch64_msvc 0.36.1", + "windows_i686_gnu 0.36.1", + "windows_i686_msvc 0.36.1", + "windows_x86_64_gnu 0.36.1", + "windows_x86_64_msvc 0.36.1", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + [[package]] name = "windows_aarch64_msvc" -version = "0.32.0" +version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" +checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_i686_gnu" -version = "0.32.0" +version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" +checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" + +[[package]] +name = "windows_i686_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_msvc" -version = "0.32.0" +version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" +checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" + +[[package]] +name = "windows_i686_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_x86_64_gnu" -version = "0.32.0" +version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" +checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_msvc" -version = "0.32.0" +version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" +checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "winnow" +version = "0.5.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" +dependencies = [ + "memchr", +] [[package]] name = "winreg" -version = "0.10.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" dependencies = [ - "winapi", + "cfg-if", + "windows-sys 0.48.0", ] diff --git a/pkgs/by-name/ru/rustplayer/dynamic-lib.patch b/pkgs/by-name/ru/rustplayer/dynamic-lib.patch index c1f5ca165fd7..fabb9f1630d7 100644 --- a/pkgs/by-name/ru/rustplayer/dynamic-lib.patch +++ b/pkgs/by-name/ru/rustplayer/dynamic-lib.patch @@ -6,8 +6,8 @@ index 9db9ac9..4546253 100644 rodio_source = ['rodio'] [dependencies] --ffmpeg-sys-next = { git="https://github.com/Kingtous/rust-ffmpeg-sys.git", branch="fix/4.4.0", default-features=false, features=["avcodec", "avformat", "swresample", "static"] } -+ffmpeg-sys-next = { git="https://github.com/Kingtous/rust-ffmpeg-sys.git", branch="fix/4.4.0", default-features=false, features=["avcodec", "avformat", "swresample"] } +-ffmpeg-sys-next = { git="https://github.com/KetaDotCC/rust-ffmpeg-sys.git", branch="master", default-features=false, features=["avcodec", "avformat", "swresample", "static"] } ++ffmpeg-sys-next = { git="https://github.com/KetaDotCC/rust-ffmpeg-sys.git", branch="master", default-features=false, features=["avcodec", "avformat", "swresample"] } thiserror = "1.0" log = "0.4" diff --git a/pkgs/by-name/ru/rustplayer/package.nix b/pkgs/by-name/ru/rustplayer/package.nix index 146bbf27b0d2..8c4757c27991 100644 --- a/pkgs/by-name/ru/rustplayer/package.nix +++ b/pkgs/by-name/ru/rustplayer/package.nix @@ -4,18 +4,18 @@ , pkg-config , openssl , alsa-lib -, ffmpeg_4 +, ffmpeg_6 }: rustPlatform.buildRustPackage { pname = "rustplayer"; - version = "unstable-2022-12-29"; + version = "1.1.2-unstable-2024-07-14"; src = fetchFromGitHub { owner = "Kingtous"; repo = "RustPlayer"; - rev = "a369bc19ab4a8c568c73be25c5e6117e1ee5d848"; - sha256 = "sha256-x82EdA7ezCzux1C85IcI2ZQ3M95sH6/k97Rv6lqc5eo="; + rev = "29a16f01912bc3e92008c7ae2f9569c8d7250bd3"; + hash = "sha256-+36dLp54rfNK0lSSTG5+J6y51NUtBhtwfhD7L23J5aY="; }; # This patch is from the source @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage { cargoLock = { lockFile = ./Cargo.lock; outputHashes = { - "ffmpeg-sys-next-4.4.0" = "sha256-TBgf+J+ud7nnVjf0r98/rujFPEayjEaVi+vnSE6/5Ak="; + "ffmpeg-sys-next-6.0.1" = "sha256-/CcyWDPeVLVSV8NfWFJhj1tGmuqLPnnyvVosIXM27NI="; }; }; nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ]; - buildInputs = [ alsa-lib openssl ffmpeg_4 ]; + buildInputs = [ alsa-lib openssl ffmpeg_6 ]; checkFlags = [ # network required diff --git a/pkgs/development/libraries/ffmpeg/default.nix b/pkgs/development/libraries/ffmpeg/default.nix index cc468ec1c206..f6a6403435e8 100644 --- a/pkgs/development/libraries/ffmpeg/default.nix +++ b/pkgs/development/libraries/ffmpeg/default.nix @@ -35,6 +35,9 @@ let in rec { + # We keep FFmpeg 4 around for now mainly for a couple of binary + # packages (Spotify and REAPER). Please don’t add new source packages + # that depend on this version. ffmpeg_4 = mkFFmpeg v4 "small"; ffmpeg_4-headless = mkFFmpeg v4 "headless"; ffmpeg_4-full = mkFFmpeg v4 "full"; diff --git a/pkgs/development/libraries/pangolin/default.nix b/pkgs/development/libraries/pangolin/default.nix index c96bf713af8c..600c7b0eb058 100644 --- a/pkgs/development/libraries/pangolin/default.nix +++ b/pkgs/development/libraries/pangolin/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchFromGitHub, cmake, pkg-config, doxygen, libGL, glew -, xorg, ffmpeg_4, libjpeg, libpng, libtiff, eigen +, xorg, ffmpeg_7, libjpeg, libpng, libtiff, eigen , Carbon, Cocoa }: @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { libGL glew xorg.libX11 - ffmpeg_4 + ffmpeg_7 libjpeg libpng libtiff diff --git a/pkgs/development/octave-modules/video/default.nix b/pkgs/development/octave-modules/video/default.nix index bc0c0749b9f2..c95d78590cc0 100644 --- a/pkgs/development/octave-modules/video/default.nix +++ b/pkgs/development/octave-modules/video/default.nix @@ -1,18 +1,20 @@ { buildOctavePackage , stdenv , lib -, fetchurl +, fetchFromGitHub , pkg-config -, ffmpeg_4 +, ffmpeg_7 }: buildOctavePackage rec { pname = "video"; - version = "2.0.2"; + version = "2.1.1"; - src = fetchurl { - url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; - sha256 = "sha256-bZNaRnmJl5UF0bQMNoEWvoIXJaB0E6/V9eChE725OHY="; + src = fetchFromGitHub { + owner = "Andy1978"; + repo = "octave-video"; + rev = version; + hash = "sha256-JFySAu/3lCnfuFMNGYPzX2MqhsRi1+IyJQBcKB9vCo0="; }; nativeBuildInputs = [ @@ -20,7 +22,7 @@ buildOctavePackage rec { ]; propagatedBuildInputs = [ - ffmpeg_4 + ffmpeg_7 ]; meta = with lib; { @@ -28,7 +30,5 @@ buildOctavePackage rec { license = with licenses; [ gpl3Plus bsd3 ]; maintainers = with maintainers; [ KarlJoad ]; description = "Wrapper for OpenCV's CvCapture_FFMPEG and CvVideoWriter_FFMPEG"; - # error: declaration of 'panic' has a different language linkage - broken = stdenv.isDarwin; }; } diff --git a/pkgs/development/python-modules/bx-py-utils/default.nix b/pkgs/development/python-modules/bx-py-utils/default.nix index 178b685a34a3..3ce11307c87d 100644 --- a/pkgs/development/python-modules/bx-py-utils/default.nix +++ b/pkgs/development/python-modules/bx-py-utils/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "bx-py-utils"; - version = "96"; + version = "98"; disabled = pythonOlder "3.10"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "boxine"; repo = "bx_py_utils"; rev = "refs/tags/v${version}"; - hash = "sha256-AZGZwEyXGbpKGFYxmdmkIPzyioF7pdFU62dqOrHYni4="; + hash = "sha256-VJ4510HLTqdRfeUEe2srT8+W9AaRpi+Mm6srZOOp0fc="; }; postPatch = '' diff --git a/pkgs/development/python-modules/cyclopts/default.nix b/pkgs/development/python-modules/cyclopts/default.nix index e2f866016453..9e0aea624be9 100644 --- a/pkgs/development/python-modules/cyclopts/default.nix +++ b/pkgs/development/python-modules/cyclopts/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "cyclopts"; - version = "2.9.7"; + version = "2.9.8"; pyproject = true; disabled = pythonOlder "3.8"; @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "BrianPugh"; repo = "cyclopts"; rev = "refs/tags/v${version}"; - hash = "sha256-RLRhZ5WneZ5aiBRtj9H6tPIZfKFd5O7wYKc8BLVPmZ8="; + hash = "sha256-smrx8YSVp3Jr+BAM9ZOfOVS9HOwPveBLHFmcs5ZhQ1M="; }; build-system = [ diff --git a/pkgs/development/python-modules/dirigera/default.nix b/pkgs/development/python-modules/dirigera/default.nix index 7b5f5d536601..ddff1bfcb7a0 100644 --- a/pkgs/development/python-modules/dirigera/default.nix +++ b/pkgs/development/python-modules/dirigera/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "dirigera"; - version = "1.1.7"; + version = "1.1.8"; pyproject = true; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "Leggin"; repo = "dirigera"; rev = "refs/tags/v${version}"; - hash = "sha256-KAwXpcs0EvmaxBVgZ7TlT1hDI0m7f8hJigUTluVATsw="; + hash = "sha256-hJE3K3h6hyjeHVrE1Sj/S9eRD4JEGIhq4BWkScy1AEk="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/hacking/default.nix b/pkgs/development/python-modules/hacking/default.nix index 2e4952b80f9d..02690ec7b936 100644 --- a/pkgs/development/python-modules/hacking/default.nix +++ b/pkgs/development/python-modules/hacking/default.nix @@ -1,35 +1,38 @@ { lib, buildPythonPackage, - fetchPypi, - pbr, - flake8, - stestr, ddt, + fetchPypi, + flake8, + pbr, + pythonOlder, + setuptools, + stestr, testscenarios, }: buildPythonPackage rec { pname = "hacking"; - version = "6.1.0"; - format = "setuptools"; + version = "7.0.0"; + pyproject = true; + + disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-3lBqMSQDThi046acld5JjDRgvLxJwWQ9MXjRW8barBQ="; + hash = "sha256-ubbC5SgPfVT6gsWP4JmD9oxbb2NKw/ozn4uhalcVyrc="; }; postPatch = '' sed -i 's/flake8.*/flake8/' requirements.txt - substituteInPlace hacking/checks/python23.py \ - --replace 'H236: class Foo(object):\n __metaclass__ = \' 'Okay: class Foo(object):\n __metaclass__ = \' - substituteInPlace hacking/checks/except_checks.py \ - --replace 'H201: except:' 'Okay: except:' ''; - nativeBuildInputs = [ pbr ]; + build-system = [ + pbr + setuptools + ]; - propagatedBuildInputs = [ flake8 ]; + dependencies = [ flake8 ]; nativeCheckInputs = [ ddt @@ -38,10 +41,9 @@ buildPythonPackage rec { ]; checkPhase = '' - # tries to trigger flake8 and fails - rm hacking/tests/test_doctest.py - + runHook preCheck stestr run + runHook postCheck ''; pythonImportsCheck = [ "hacking" ]; diff --git a/pkgs/development/python-modules/jsonargparse/default.nix b/pkgs/development/python-modules/jsonargparse/default.nix index a7d0d2ece3b1..f1c26abd3767 100644 --- a/pkgs/development/python-modules/jsonargparse/default.nix +++ b/pkgs/development/python-modules/jsonargparse/default.nix @@ -23,7 +23,7 @@ buildPythonPackage rec { pname = "jsonargparse"; - version = "4.32.0"; + version = "4.32.1"; pyproject = true; disabled = pythonOlder "3.11"; @@ -32,7 +32,7 @@ buildPythonPackage rec { owner = "omni-us"; repo = "jsonargparse"; rev = "refs/tags/v${version}"; - hash = "sha256-enI9MNaktDNC1RAMALqy82w66n7ZPm/mtAvrmzPr59c="; + hash = "sha256-DardzvEiydlsaOY60p2fNR6cGGvombSSUXCxHHFT7b0="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/keystoneauth1/default.nix b/pkgs/development/python-modules/keystoneauth1/default.nix index 045da70affff..a9efd42dc9d2 100644 --- a/pkgs/development/python-modules/keystoneauth1/default.nix +++ b/pkgs/development/python-modules/keystoneauth1/default.nix @@ -26,12 +26,12 @@ buildPythonPackage rec { pname = "keystoneauth1"; - version = "5.7.0"; + version = "5.8.0"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-sswtaNGkjpwsbZsbH9ANfHvf4IboBAtR5wk4qLo639E="; + hash = "sha256-MVfCEuEhFk3mTWPl734dqtK9NkmmjeHpcbdodwGe8cQ="; }; postPatch = '' diff --git a/pkgs/development/python-modules/langfuse/default.nix b/pkgs/development/python-modules/langfuse/default.nix index c5d40d514835..26577d3f3927 100644 --- a/pkgs/development/python-modules/langfuse/default.nix +++ b/pkgs/development/python-modules/langfuse/default.nix @@ -17,14 +17,14 @@ buildPythonPackage rec { pname = "langfuse"; - version = "2.43.3"; + version = "2.44.1"; pyproject = true; src = fetchFromGitHub { owner = "langfuse"; repo = "langfuse-python"; rev = "refs/tags/v${version}"; - hash = "sha256-pS3JF+9AfPkK3EmQOipVs5SJs0fWsZhudg4uNPH+6p8="; + hash = "sha256-RoejwWVV3+zRWKkbhV82Gf9DSqrQ2r+SoR99mzmc3TM="; }; build-system = [ poetry-core ]; diff --git a/pkgs/development/python-modules/litellm/default.nix b/pkgs/development/python-modules/litellm/default.nix index 69dccd2811d3..9d6ae0c7a815 100644 --- a/pkgs/development/python-modules/litellm/default.nix +++ b/pkgs/development/python-modules/litellm/default.nix @@ -37,7 +37,7 @@ buildPythonPackage rec { pname = "litellm"; - version = "1.42.12"; + version = "1.44.7"; pyproject = true; disabled = pythonOlder "3.8"; @@ -46,7 +46,7 @@ buildPythonPackage rec { owner = "BerriAI"; repo = "litellm"; rev = "refs/tags/v${version}"; - hash = "sha256-Wd6u2bOZjdL3jexT3CkiXX3zfcXwMlNEifG/6ak5Qbw="; + hash = "sha256-qEO5QWaW3Nd/zKNjZ31e5y5hNc55qZGDYCD66z+ftUk="; }; build-system = [ poetry-core ]; diff --git a/pkgs/development/python-modules/matplotlib/darwin-sandbox-crash.patch b/pkgs/development/python-modules/matplotlib/darwin-sandbox-crash.patch deleted file mode 100644 index 883f1edc8be0..000000000000 --- a/pkgs/development/python-modules/matplotlib/darwin-sandbox-crash.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- a/lib/matplotlib/font_manager.py -+++ b/lib/matplotlib/font_manager.py -@@ -266,8 +266,11 @@ def _get_fontconfig_fonts(): - @lru_cache - def _get_macos_fonts(): - """Cache and list the font paths known to ``system_profiler SPFontsDataType``.""" -- d, = plistlib.loads( -- subprocess.check_output(["system_profiler", "-xml", "SPFontsDataType"])) -+ try: -+ d, = plistlib.loads( -+ subprocess.check_output(["system_profiler", "-xml", "SPFontsDataType"])) -+ except (OSError, subprocess.CalledProcessError, plistlib.InvalidFileException): -+ return [] - return [Path(entry["path"]) for entry in d["_items"]] diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index 9282fe02f30f..2bcf4d246c45 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -100,12 +100,6 @@ buildPythonPackage rec { hash = "sha256-3gaxm425XdM9DcF8kmx8nr7Z9XIHS2+sT2UGimgU0BA="; }; - patches = lib.optionals stdenv.isDarwin [ - # Don't crash when running in Darwin sandbox - # Submitted upstream: https://github.com/matplotlib/matplotlib/pull/28498 - ./darwin-sandbox-crash.patch - ]; - env.XDG_RUNTIME_DIR = "/tmp"; # Matplotlib tries to find Tcl/Tk by opening a Tk window and asking the diff --git a/pkgs/development/python-modules/multiset/default.nix b/pkgs/development/python-modules/multiset/default.nix index 917a8c7e3a0f..ea8ee3f03f72 100644 --- a/pkgs/development/python-modules/multiset/default.nix +++ b/pkgs/development/python-modules/multiset/default.nix @@ -9,12 +9,12 @@ buildPythonPackage rec { pname = "multiset"; - version = "3.1.0"; - format = "pyproject"; + version = "3.2.0"; + pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-jpPlhvaI0uKwD6WEPiqC9p6XHhrHrT14+dKkdgjem6Y="; + hash = "sha256-fFmnhihLnDOd9PIZ3LtM5fRNOsGyD5ImNsTXieic97U="; }; postPatch = '' @@ -22,18 +22,19 @@ buildPythonPackage rec { sed -i '/python_requires/d' setup.cfg ''; - nativeBuildInputs = [ + build-system = [ setuptools setuptools-scm ]; - pythonImportsCheck = [ "multiset" ]; - nativeCheckInputs = [ pytestCheckHook ]; + pythonImportsCheck = [ "multiset" ]; + meta = with lib; { description = "Implementation of a multiset"; homepage = "https://github.com/wheerd/multiset"; + changelog = "https://github.com/wheerd/multiset/releases/tag/${version}"; license = licenses.mit; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/nanobind/default.nix b/pkgs/development/python-modules/nanobind/default.nix index b02f229ec136..66df98f351bc 100644 --- a/pkgs/development/python-modules/nanobind/default.nix +++ b/pkgs/development/python-modules/nanobind/default.nix @@ -1,31 +1,37 @@ { lib, buildPythonPackage, - pythonOlder, fetchFromGitHub, + pythonOlder, + + # build-system cmake, - eigen, ninja, - scikit-build, + pathspec, + scikit-build-core, + + # dependencies + eigen, + + # tests pytestCheckHook, numpy, scipy, torch, + tensorflow-bin, jax, jaxlib, - tensorflow, - setuptools, }: buildPythonPackage rec { pname = "nanobind"; - version = "2.0.0"; + version = "2.1.0"; pyproject = true; src = fetchFromGitHub { owner = "wjakob"; repo = "nanobind"; rev = "refs/tags/v${version}"; - hash = "sha256-yDFrhSIWywWw7ri5aHRPigi9ujDeazpJa4AVrkLx5BI="; + hash = "sha256-AO/EHx2TlXidalhPb+xuUchaek4ki7fDExu2foBgUp0="; fetchSubmodules = true; }; @@ -34,11 +40,11 @@ buildPythonPackage rec { build-system = [ cmake ninja - scikit-build - setuptools + pathspec + scikit-build-core ]; - buildInputs = [ eigen ]; + dependencies = [ eigen ]; dontUseCmakeBuildDir = true; preCheck = '' @@ -51,7 +57,7 @@ buildPythonPackage rec { numpy scipy torch - tensorflow + tensorflow-bin jax jaxlib ]; diff --git a/pkgs/development/python-modules/oslo-concurrency/default.nix b/pkgs/development/python-modules/oslo-concurrency/default.nix index 5aa9bc1a58b7..903a24d3306c 100644 --- a/pkgs/development/python-modules/oslo-concurrency/default.nix +++ b/pkgs/development/python-modules/oslo-concurrency/default.nix @@ -13,18 +13,19 @@ oslo-utils, oslotest, pbr, + setuptools, stestr, }: buildPythonPackage rec { pname = "oslo-concurrency"; - version = "6.0.0"; - format = "setuptools"; + version = "6.1.0"; + pyproject = true; src = fetchPypi { pname = "oslo.concurrency"; inherit version; - hash = "sha256-tS8CtORvXydLkfuOG/xcv5pBjfzUqDvggDRUlePSboo="; + hash = "sha256-tWSuCvLuV3DztuYw3yakuGdsf+Qih/GIPiWaUard8Jc="; }; postPatch = '' @@ -33,13 +34,15 @@ buildPythonPackage rec { rm test-requirements.txt substituteInPlace oslo_concurrency/tests/unit/test_processutils.py \ - --replace "/bin/bash" "${bash}/bin/bash" \ - --replace "/bin/true" "${coreutils}/bin/true" \ - --replace "/usr/bin/env" "${coreutils}/bin/env" \ - --replace "/usr/bin/true" "${coreutils}/bin/true" + --replace-fail "/bin/bash" "${bash}/bin/bash" \ + --replace-fail "/usr/bin/true" "${coreutils}/bin/true" \ + --replace-fail "/bin/true" "${coreutils}/bin/true" \ + --replace-fail "/usr/bin/env" "${coreutils}/bin/env" ''; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ fasteners oslo-config oslo-utils diff --git a/pkgs/development/python-modules/oslo-context/default.nix b/pkgs/development/python-modules/oslo-context/default.nix index cbb8cad1bbae..41d56c34ac4b 100644 --- a/pkgs/development/python-modules/oslo-context/default.nix +++ b/pkgs/development/python-modules/oslo-context/default.nix @@ -6,15 +6,17 @@ oslotest, stestr, pbr, + setuptools, }: buildPythonPackage rec { pname = "oslo.context"; - version = "5.5.0"; + version = "5.6.0"; + pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-6uAxeymSjxk030xguGD+hiUkfLKXxcxi/vjrWCexL6w="; + hash = "sha256-UiLDJja+BwojDfnTFBoLJ6lfCjtpePTBSFvK2kekw8s="; }; postPatch = '' @@ -23,7 +25,9 @@ buildPythonPackage rec { rm test-requirements.txt ''; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ debtcollector pbr ]; @@ -34,7 +38,9 @@ buildPythonPackage rec { ]; checkPhase = '' + runHook preCheck stestr run + runHook postCheck ''; pythonImportsCheck = [ "oslo_context" ]; diff --git a/pkgs/development/python-modules/oslo-i18n/default.nix b/pkgs/development/python-modules/oslo-i18n/default.nix index ca79dec476ea..42358d6f59e1 100644 --- a/pkgs/development/python-modules/oslo-i18n/default.nix +++ b/pkgs/development/python-modules/oslo-i18n/default.nix @@ -11,13 +11,13 @@ buildPythonPackage rec { pname = "oslo-i18n"; - version = "6.3.0"; + version = "6.4.0"; pyproject = true; src = fetchPypi { pname = "oslo.i18n"; inherit version; - hash = "sha256-ZKJR7e+L8bsdTm9403fhSdTxXBqSRd538XIBbaYmdEQ="; + hash = "sha256-ZuBMBB6f8X0H4T7H9IKV+8NhaRQ8csojUqPvzJjntgg="; }; postPatch = '' @@ -26,7 +26,7 @@ buildPythonPackage rec { rm test-requirements.txt ''; - nativeBuildInputs = [ + build-system = [ pbr setuptools ]; diff --git a/pkgs/development/python-modules/oslo-log/default.nix b/pkgs/development/python-modules/oslo-log/default.nix index 7f0944134f18..b6cdf9661953 100644 --- a/pkgs/development/python-modules/oslo-log/default.nix +++ b/pkgs/development/python-modules/oslo-log/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "oslo-log"; - version = "6.1.1"; + version = "6.1.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -27,7 +27,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "oslo.log"; inherit version; - hash = "sha256-41oSz+TK0T/7Cu2pn8yiCnBdD2lKhMLvewe0WWD4j7Q="; + hash = "sha256-92gEffnXBsSE3WZl3LvqKJAh1Iy3zlq/eh9poJSR9f4="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/oslo-serialization/default.nix b/pkgs/development/python-modules/oslo-serialization/default.nix index 28be76c8d13f..16b718161b35 100644 --- a/pkgs/development/python-modules/oslo-serialization/default.nix +++ b/pkgs/development/python-modules/oslo-serialization/default.nix @@ -7,18 +7,19 @@ oslotest, pbr, pytz, + setuptools, stestr, }: buildPythonPackage rec { pname = "oslo-serialization"; - version = "5.4.0"; - format = "setuptools"; + version = "5.5.0"; + pyproject = true; src = fetchPypi { pname = "oslo.serialization"; inherit version; - hash = "sha256-MVyzRl6ZxoXLCRuQNly3Ab7nFA4gS6Pl/C2KILTsbnY="; + hash = "sha256-nnUvxdipdZVnKN2WqCGGeDs/78rLs1U6zZMwWIYeFaY="; }; postPatch = '' @@ -27,9 +28,12 @@ buildPythonPackage rec { rm test-requirements.txt ''; - nativeBuildInputs = [ pbr ]; + build-system = [ + pbr + setuptools + ]; - propagatedBuildInputs = [ + dependencies = [ msgpack oslo-utils pytz @@ -41,7 +45,9 @@ buildPythonPackage rec { ]; checkPhase = '' + runHook preCheck stestr run + runHook postCheck ''; pythonImportsCheck = [ "oslo_serialization" ]; diff --git a/pkgs/development/python-modules/oslo-utils/default.nix b/pkgs/development/python-modules/oslo-utils/default.nix index d5573a7db850..dab2af567be3 100644 --- a/pkgs/development/python-modules/oslo-utils/default.nix +++ b/pkgs/development/python-modules/oslo-utils/default.nix @@ -15,6 +15,7 @@ pbr, pyparsing, pytz, + qemu, setuptools, stestr, testscenarios, @@ -26,13 +27,13 @@ buildPythonPackage rec { pname = "oslo-utils"; - version = "7.2.0"; + version = "7.3.0"; pyproject = true; src = fetchPypi { pname = "oslo.utils"; inherit version; - hash = "sha256-lPgFM5GjNQLatNhEZUAyYsoZ/9jP0poaXqPIqmIO9hA="; + hash = "sha256-WaXT5Oe7x42AHM68K4I+QptiTBK7bjtudvccKfK/Id8="; }; postPatch = '' @@ -63,6 +64,7 @@ buildPythonPackage rec { eventlet fixtures oslotest + qemu stestr testscenarios pyyaml diff --git a/pkgs/development/python-modules/pyexploitdb/default.nix b/pkgs/development/python-modules/pyexploitdb/default.nix index 74fb316df19e..4912e84a904e 100644 --- a/pkgs/development/python-modules/pyexploitdb/default.nix +++ b/pkgs/development/python-modules/pyexploitdb/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "pyexploitdb"; - version = "0.2.31"; + version = "0.2.32"; pyproject = true; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "pyExploitDb"; inherit version; - hash = "sha256-HTF3pOf2eDVdoMTCETQ8h73uuab/CsXEN6VAKkj8OBI="; + hash = "sha256-IoLgOAFso8Fx0Fx8bZTwL6QJIg2MJudQeJ/gDNDGm4I="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/python-lsp-server/default.nix b/pkgs/development/python-modules/python-lsp-server/default.nix index 927f26b3201e..54fa536f792e 100644 --- a/pkgs/development/python-modules/python-lsp-server/default.nix +++ b/pkgs/development/python-modules/python-lsp-server/default.nix @@ -1,39 +1,50 @@ { lib, - autopep8, buildPythonPackage, - docstring-to-markdown, fetchFromGitHub, - flake8, - flaky, - importlib-metadata, + pythonOlder, + + # build-system + setuptools-scm, + + # dependencies + docstring-to-markdown, jedi, - matplotlib, - mccabe, - numpy, - pandas, pluggy, + python-lsp-jsonrpc, + setuptools, + ujson, + importlib-metadata, + + # optional-dependencies + autopep8, + flake8, + mccabe, pycodestyle, pydocstyle, pyflakes, pylint, - pytestCheckHook, - python-lsp-jsonrpc, - pythonOlder, rope, - setuptools, - setuptools-scm, toml, - ujson, - websockets, whatthepatch, yapf, + + # checks + flaky, + matplotlib, + numpy, + pandas, + pytestCheckHook, + websockets, + + testers, + python-lsp-server, }: buildPythonPackage rec { pname = "python-lsp-server"; - version = "1.11.0"; - format = "pyproject"; + version = "1.12.0"; + pyproject = true; disabled = pythonOlder "3.8"; @@ -41,7 +52,7 @@ buildPythonPackage rec { owner = "python-lsp"; repo = "python-lsp-server"; rev = "refs/tags/v${version}"; - hash = "sha256-0DFcnGlyDOK0Lxpr++xV6klhFF9b1fihH5FY/tblr+E="; + hash = "sha256-oFqa7DtFpJmDZrw+GJqrFH3QqnMAu9159q3IWT9vRko="; }; postPatch = '' @@ -59,8 +70,6 @@ buildPythonPackage rec { "pyflakes" ]; - nativeBuildInputs = [ setuptools-scm ]; - build-system = [ setuptools-scm ]; dependencies = [ @@ -72,7 +81,7 @@ buildPythonPackage rec { ujson ] ++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ]; - passthru.optional-dependencies = { + optional-dependencies = { all = [ autopep8 flake8 @@ -101,27 +110,24 @@ buildPythonPackage rec { websockets = [ websockets ]; }; - nativeCheckInputs = - [ - flaky - matplotlib - numpy - pandas - pytestCheckHook - ] - ++ passthru.optional-dependencies.all; + nativeCheckInputs = [ + flaky + matplotlib + numpy + pandas + pytestCheckHook + ] ++ optional-dependencies.all; - disabledTests = - [ - # Don't run lint tests - "test_pydocstyle" - # https://github.com/python-lsp/python-lsp-server/issues/243 - "test_numpy_completions" - "test_workspace_loads_pycodestyle_config" - "test_autoimport_code_actions_and_completions_for_notebook_document" - # avoid dependencies on many Qt things just to run one singular test - "test_pyqt_completion" - ]; + disabledTests = [ + # Don't run lint tests + "test_pydocstyle" + # https://github.com/python-lsp/python-lsp-server/issues/243 + # "test_numpy_completions" + "test_workspace_loads_pycodestyle_config" + "test_autoimport_code_actions_and_completions_for_notebook_document" + # avoid dependencies on many Qt things just to run one singular test + "test_pyqt_completion" + ]; preCheck = '' export HOME=$(mktemp -d); @@ -132,12 +138,19 @@ buildPythonPackage rec { "pylsp.python_lsp" ]; - meta = with lib; { + passthru = { + tests.version = testers.testVersion { + package = python-lsp-server; + version = "v${version}"; + }; + }; + + meta = { description = "Python implementation of the Language Server Protocol"; homepage = "https://github.com/python-lsp/python-lsp-server"; changelog = "https://github.com/python-lsp/python-lsp-server/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pylsp"; }; } diff --git a/pkgs/development/python-modules/qstylizer/default.nix b/pkgs/development/python-modules/qstylizer/default.nix index 22aa5d14843b..ab9c3032d047 100644 --- a/pkgs/development/python-modules/qstylizer/default.nix +++ b/pkgs/development/python-modules/qstylizer/default.nix @@ -2,33 +2,43 @@ lib, buildPythonPackage, fetchFromGitHub, - inflection, - pbr, - pytest-mock, - pytestCheckHook, pythonOlder, + + # build-system + pbr, + setuptools, + + # dependencies + inflection, tinycss2, + + # checks + pytestCheckHook, + pytest-mock, }: buildPythonPackage rec { pname = "qstylizer"; - version = "0.2.2"; - format = "setuptools"; + version = "0.2.3"; + pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "blambright"; - repo = pname; - rev = version; - hash = "sha256-QJ4xhaAoVO4/VncXKzI8Q5f/rPfctJ8CvfedkQVgZgQ="; + repo = "qstylizer"; + rev = "refs/tags/${version}"; + hash = "sha256-eZVBUGQxa2cr0O48iKWNTqM9E5ZAsiT1WfXjdYdxIdg="; }; PBR_VERSION = version; - nativeBuildInputs = [ pbr ]; + build-system = [ + pbr + setuptools + ]; - propagatedBuildInputs = [ + dependencies = [ inflection tinycss2 ]; @@ -40,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "qstylizer" ]; - meta = with lib; { + meta = { description = "Qt stylesheet generation utility for PyQt/PySide"; homepage = "https://github.com/blambright/qstylizer"; - license = licenses.mit; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/recurring-ical-events/default.nix b/pkgs/development/python-modules/recurring-ical-events/default.nix index bd3b2b7a99a2..f5a266700b97 100644 --- a/pkgs/development/python-modules/recurring-ical-events/default.nix +++ b/pkgs/development/python-modules/recurring-ical-events/default.nix @@ -3,22 +3,23 @@ buildPythonPackage, pythonOlder, fetchFromGitHub, + fetchpatch2, setuptools, icalendar, - pytz, python-dateutil, + tzdata, x-wr-timezone, pytestCheckHook, + pytz, restructuredtext-lint, pygments, - tzdata, }: buildPythonPackage rec { pname = "recurring-ical-events"; - version = "2.2.0"; + version = "3.2.0"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; pyproject = true; @@ -26,23 +27,34 @@ buildPythonPackage rec { owner = "niccokunzmann"; repo = "python-recurring-ical-events"; rev = "v${version}"; - hash = "sha256-Njd+sc35jlA96iVf2uuVN2BK92ctwUDfBAUfpgqtPs0="; + hash = "sha256-qglApMoRtMqg03HBO00k9anRquA5X9ew919QUMWIpjo="; }; + patches = [ + # https://github.com/niccokunzmann/python-recurring-ical-events/pull/169 + (fetchpatch2 { + name = "make-tests-compatible-with-icalendar-v5.patch"; + url = "https://github.com/niccokunzmann/python-recurring-ical-events/commit/0bb4b4586b55978a1d154cd7abbc42eaf1cefb92.patch"; + hash = "sha256-1tG/U0ELMIwS50eolXNou0aFQBZGNjcc2Zcz1gd8rd4="; + }) + ]; + build-system = [ setuptools ]; + pythonRelaxDeps = [ "icalendar" ]; + dependencies = [ icalendar - pytz python-dateutil + tzdata x-wr-timezone ]; nativeCheckInputs = [ pytestCheckHook + pytz restructuredtext-lint pygments - tzdata ]; pythonImportsCheck = [ "recurring_ical_events" ]; diff --git a/pkgs/development/python-modules/spyder/default.nix b/pkgs/development/python-modules/spyder/default.nix index eafc959eb882..b3d91997fc90 100644 --- a/pkgs/development/python-modules/spyder/default.nix +++ b/pkgs/development/python-modules/spyder/default.nix @@ -3,6 +3,8 @@ buildPythonPackage, fetchPypi, pythonOlder, + + # dependencies atomicwrites, chardet, cloudpickle, @@ -44,14 +46,14 @@ buildPythonPackage rec { pname = "spyder"; - version = "5.5.5"; + version = "5.5.6"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-Y+JZO/LfWi1QzoSSV1uDI4zxLcte0HwVMNmBK0aXgd4="; + hash = "sha256-lYtmn0oBXFw5EFDrbv+o2EZWqL/Eel9GrbopeEnYK90="; }; patches = [ ./dont-clear-pythonpath.patch ]; diff --git a/pkgs/development/tools/electron/binary/generic.nix b/pkgs/development/tools/electron/binary/generic.nix index d90183bd7bc4..6b0d3d12e5e3 100644 --- a/pkgs/development/tools/electron/binary/generic.nix +++ b/pkgs/development/tools/electron/binary/generic.nix @@ -42,7 +42,8 @@ let ++ optionals (versionAtLeast version "11.0.0") [ "aarch64-darwin" ] ++ optionals (versionOlder version "19.0.0") [ "i686-linux" ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - knownVulnerabilities = optional (versionOlder version "29.0.0") "Electron version ${version} is EOL"; + # https://www.electronjs.org/docs/latest/tutorial/electron-timelines + knownVulnerabilities = optional (versionOlder version "30.0.0") "Electron version ${version} is EOL"; }; fetcher = vers: tag: hash: fetchurl { diff --git a/pkgs/development/tools/electron/info.json b/pkgs/development/tools/electron/info.json index 53eb7747f776..1bef706fa16f 100644 --- a/pkgs/development/tools/electron/info.json +++ b/pkgs/development/tools/electron/info.json @@ -1,909 +1,4 @@ { - "29": { - "chrome": "122.0.6261.156", - "chromium": { - "deps": { - "gn": { - "hash": "sha256-UhdDsq9JyP0efGpAaJ/nLp723BbjM6pkFPcAnQbgMKY=", - "rev": "f99e015ac35f689cfdbf46e4eb174e5d2da78d8e", - "url": "https://gn.googlesource.com/gn", - "version": "2024-01-22" - } - }, - "version": "122.0.6261.156" - }, - "chromium_npm_hash": "sha256-9eFsK673j3pTDOcsU35RN4hagFygA/v/ahCqVVEV0Rs=", - "deps": { - "src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-5AmRq2pl3p0QtqyIjx4XDVE9Mnps18F9Z9MyH+38a0Y=", - "postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/third_party/hunspell/tests; rm -r $out/content/test/data; rm -r $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ", - "rev": "122.0.6261.156", - "url": "https://chromium.googlesource.com/chromium/src.git" - }, - "src/chrome/test/data/perf/canvas_bench": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=", - "rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732", - "url": "https://chromium.googlesource.com/chromium/canvas_bench.git" - }, - "src/chrome/test/data/perf/frame_rate/content": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=", - "rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9", - "url": "https://chromium.googlesource.com/chromium/frame_rate/content.git" - }, - "src/chrome/test/data/xr/webvr_info": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=", - "rev": "c58ae99b9ff9e2aa4c524633519570bf33536248", - "url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git" - }, - "src/docs/website": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-sKbrY/m75LVWjWjhhjaeQnfXQP5AkEsEkZ+GmMNQJVo=", - "rev": "7474472013397bdb177cda70099f6411a5bd8212", - "url": "https://chromium.googlesource.com/website.git" - }, - "src/electron": { - "fetcher": "fetchFromGitHub", - "hash": "sha256-NwkTCKyqn9JpRZrL8gHzqe/GJIj7Vc5y7q49bVGzV/E=", - "owner": "electron", - "repo": "electron", - "rev": "v29.4.6" - }, - "src/media/cdm/api": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=", - "rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28", - "url": "https://chromium.googlesource.com/chromium/cdm.git" - }, - "src/net/third_party/quiche/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-mrnKQh2d6ewg1X8sCx8U4frHXyFKHuIUpvi0WBzg+PU=", - "rev": "0e39ce016ee1ec8271aa7216d547917c239db525", - "url": "https://quiche.googlesource.com/quiche.git" - }, - "src/third_party/angle": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-h2b/f8MmldZSk3c84rvwO5+UZK36BFf/H9BStWFbDoo=", - "rev": "f9bad5e27d61e2ab6a7504b1793be5aa14eb1414", - "url": "https://chromium.googlesource.com/angle/angle.git" - }, - "src/third_party/angle/third_party/VK-GL-CTS/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-zBY7MY6FXazzTW+nXvknkNar/odL0tzHXxHPmpYuy7E=", - "rev": "0f6fd3de81102058dc2ae299af1ad5287d2145dd", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS" - }, - "src/third_party/angle/third_party/glmark2/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=", - "rev": "ca8de51fedb70bace5351c6b002eb952c747e889", - "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2" - }, - "src/third_party/angle/third_party/rapidjson/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=", - "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f", - "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson" - }, - "src/third_party/anonymous_tokens/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-3+/zvwYAv3OGoKJatg+/c3OM1IyGq2iCyFWgu3b8VoU=", - "rev": "d024f05b39e21bb2a0b8205a7ce72b1b185b84c2", - "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git" - }, - "src/third_party/beto-core/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-PkvHqVKjGHxAYntylJxR5xnUVU1o8DJuBmsd9qkl/Yo=", - "rev": "4d202dab960a0b6a6e4757ab4393945aca5a09db", - "url": "https://beto-core.googlesource.com/beto-core.git" - }, - "src/third_party/boringssl/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-shqUB+x7oXgtQqqfhkwXHwLLaJW1/L1vh1O+jvdsDP8=", - "rev": "414f69504d30d0848b69f6453ea7fb5e88004cb4", - "url": "https://boringssl.googlesource.com/boringssl.git" - }, - "src/third_party/breakpad/breakpad": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-7SmO5e/U2shYVslmCRPVLyfU5N4Rp1mzls8lLqIW8x8=", - "rev": "62ecd463583d09eb7d15b1d410055f30b2c7bcb4", - "url": "https://chromium.googlesource.com/breakpad/breakpad.git" - }, - "src/third_party/cast_core/public/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-AalRQhJmornCqmvE2+36J/3LubaA0jr6P1PXy32lX4I=", - "rev": "71f51fd6fa45fac73848f65421081edd723297cd", - "url": "https://chromium.googlesource.com/cast_core/public" - }, - "src/third_party/catapult": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-ixfmLcWTgVcHi2CXAulMXTaAyPYT42Q8VflStxmNRXc=", - "rev": "ab03292694695864b523636060e2a96b2c9b2df2", - "url": "https://chromium.googlesource.com/catapult.git" - }, - "src/third_party/ced/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=", - "rev": "ba412eaaacd3186085babcd901679a48863c7dd5", - "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git" - }, - "src/third_party/chromium-variations": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-px8BHI5Cp3vBRyei50dbxCTn/gydLsps1/SmJxxeGKw=", - "rev": "d0dcd8802c22c1ac4a7d112782a4c75f0c6ca8ee", - "url": "https://chromium.googlesource.com/chromium-variations.git" - }, - "src/third_party/clang-format/script": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-7VvofDDQe+SoMRBfVk26q+C+OPyOE7QH35wVWkfDKxs=", - "rev": "e5337933f2951cacd3aeacd238ce4578163ca0b9", - "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git" - }, - "src/third_party/cld_3/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=", - "rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661", - "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git" - }, - "src/third_party/colorama/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=", - "rev": "3de9f013df4b470069d03d250224062e8cf15c49", - "url": "https://chromium.googlesource.com/external/colorama.git" - }, - "src/third_party/content_analysis_sdk/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-f5Jmk1MiGjaRdLun+v/GKVl8Yv9hOZMTQUSxgiJalcY=", - "rev": "9a408736204513e0e95dd2ab3c08de0d95963efc", - "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git" - }, - "src/third_party/cpu_features/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-E8LoVzhe+TAmARWZTSuINlsVhzpUJMxPPCGe/dHZcyA=", - "rev": "936b9ab5515dead115606559502e3864958f7f6e", - "url": "https://chromium.googlesource.com/external/github.com/google/cpu_features.git" - }, - "src/third_party/cpuinfo/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-56XE95dvaDF8E89V/le19Gk52fR0pqqyE38UgQo+GQM=", - "rev": "76cc10d627add77922dc24521b332a055a4d6d77", - "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git" - }, - "src/third_party/crc32c/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=", - "rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6", - "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git" - }, - "src/third_party/cros-components/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-2FuyB/TLKMbqgjvw0q19lcG85fedwlOmKKNlGevEzos=", - "rev": "ab7bdff32543991f52872c25cecf1f926702dfe3", - "url": "https://chromium.googlesource.com/external/google3/cros_components.git" - }, - "src/third_party/cros_system_api": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-Tzn7Sx6k7BpH/UqMZHdLTk26FBp5QNcX0xWhztgRKrw=", - "rev": "12d5e386005a211570cfdf9849d2fa6a3b38594b", - "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git" - }, - "src/third_party/crossbench": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-VxH1eOsJGQUk93EYexl1QrCpHTpgCOQP7H+oN0MZNpA=", - "rev": "1983b3f517da56c35c91296467458f71ad5b9340", - "url": "https://chromium.googlesource.com/crossbench.git" - }, - "src/third_party/dav1d/libdav1d": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-9SrbxiOqXKTFf4qZ4Wqg9aoOMY8zv7NczTqN2+lXwCI=", - "rev": "47107e384bd1dc25674acf04d000a8cdc6195234", - "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git" - }, - "src/third_party/dawn": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-/lG4wfy5LVCMGuqKRZgf/NoxsAuCvyUdV1Anbzi0q+U=", - "rev": "6a6719ee09f1078356fdd31c69061e07b5c61c2d", - "url": "https://dawn.googlesource.com/dawn.git" - }, - "src/third_party/dawn/third_party/dxc": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-PGGwxNYgvZ//k+cr19iTG2QwC9Agu2T9k9QOhnX565s=", - "rev": "701a2b1da0387ac6abf73bdbaf7864b9615db033", - "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler" - }, - "src/third_party/dawn/third_party/dxheaders": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=", - "rev": "980971e835876dc0cde415e8f9bc646e64667bf7", - "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers" - }, - "src/third_party/dawn/third_party/glfw": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=", - "rev": "62e175ef9fae75335575964c845a302447c012c7", - "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw" - }, - "src/third_party/dawn/third_party/khronos/EGL-Registry": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=", - "rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry" - }, - "src/third_party/dawn/third_party/khronos/OpenGL-Registry": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-K3PcRIiD3AmnbiSm5TwaLs4Gu9hxaN8Y91WMKK8pOXE=", - "rev": "5bae8738b23d06968e7c3a41308568120943ae77", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry" - }, - "src/third_party/dawn/third_party/webgpu-cts": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-wlneFqVEhM6fe9p10T22dx4dxnZzWwKHw+35eIlDGVM=", - "rev": "dedb6316202c8c55b898e52248f1345241299125", - "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts" - }, - "src/third_party/depot_tools": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-C1l4piDzNENx6Vvtzu03HsBZTHIavO5AkmO6QXErh3Y=", - "rev": "6fc0c97ab284021b72e3bc962f7fa879ffcad65b", - "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git" - }, - "src/third_party/devtools-frontend/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-Y7XPBkKU8p210dj7ydIDVJgiXx6ZQPP4D5Jfw3t9FCc=", - "rev": "3fa1fc736f46022f45c7ba7d817d1df1519c55d7", - "url": "https://chromium.googlesource.com/devtools/devtools-frontend" - }, - "src/third_party/dom_distiller_js/dist": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=", - "rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d", - "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git" - }, - "src/third_party/eigen3/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-a9QAnv6vIM8a9Bn8ZmfeMT0+kbtb0QGxM0+m5xwIqm8=", - "rev": "454f89af9d6f3525b1df5f9ef9c86df58bf2d4d3", - "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git" - }, - "src/third_party/electron_node": { - "fetcher": "fetchFromGitHub", - "hash": "sha256-lGNDwe3IiQMLg5o0AMhLfNpyfu4dXVk05YRO0yMzg0I=", - "owner": "nodejs", - "repo": "node", - "rev": "v20.9.0" - }, - "src/third_party/emoji-segmenter/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=", - "rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e", - "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git" - }, - "src/third_party/engflow-reclient-configs": { - "fetcher": "fetchFromGitHub", - "hash": "sha256-aZXYPj9KYBiZnljqOLlWJWS396Fg3EhjiQLZmkwCBsY=", - "owner": "EngFlow", - "repo": "reclient-configs", - "rev": "955335c30a752e9ef7bff375baab5e0819b6c00d" - }, - "src/third_party/expat/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=", - "rev": "441f98d02deafd9b090aea568282b28f66a50e36", - "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git" - }, - "src/third_party/farmhash/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=", - "rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45", - "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git" - }, - "src/third_party/ffmpeg": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-NRyMXRxnHJi5JiEJUxOxJyPGe5BGTxNbNyEOu1GyO8E=", - "rev": "17525de887d54b970ffdd421a0879c1db1952307", - "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git" - }, - "src/third_party/flac": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=", - "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c", - "url": "https://chromium.googlesource.com/chromium/deps/flac.git" - }, - "src/third_party/flatbuffers/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-LecJwLDG6szZZ/UOCFD+MDqH3NKawn0sdEwgnMt8wMM=", - "rev": "bcb9ef187628fe07514e57756d05e6a6296f7dc5", - "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git" - }, - "src/third_party/fontconfig/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-7PFmgr/+KNEYxCMuxMD2Zi9Ydcbp88IU7exr55a392Q=", - "rev": "2fb3419a92156569bc1ec707401258c922cd0d99", - "url": "https://chromium.googlesource.com/external/fontconfig.git" - }, - "src/third_party/fp16/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=", - "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91", - "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git" - }, - "src/third_party/freetype-testing/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=", - "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f", - "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git" - }, - "src/third_party/freetype/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-ogBt+haM+MoETsPIhwPDPZCLwQB9u9+w7OHL4us6kg8=", - "rev": "57617782464411201ce7bbc93b086c1b4d7d84a5", - "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git" - }, - "src/third_party/fuzztest/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-YEg+/562AX/hK0Adx9bUZqATt+5VDZjn/csWVhRji2M=", - "rev": "12e7428ab0847b1d1dc6c4b89203adfd1f16a1ad", - "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git" - }, - "src/third_party/fxdiv/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=", - "rev": "63058eff77e11aa15bf531df5dd34395ec3017c8", - "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git" - }, - "src/third_party/gemmlowp/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=", - "rev": "13d57703abca3005d97b19df1f2db731607a7dc2", - "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git" - }, - "src/third_party/google_benchmark/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-h2ryAQAuHI54Cni88L85e7Np4KATGVTRdDcmUvCNeWc=", - "rev": "b177433f3ee2513b1075140c723d73ab8901790f", - "url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git" - }, - "src/third_party/googletest/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-VYRjcM3dDY2FarviXyFMgSkXCqKfWXwtGAj2Msgm7zg=", - "rev": "af29db7ec28d6df1c7f0f745186884091e602e07", - "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git" - }, - "src/third_party/grpc/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=", - "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737", - "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git" - }, - "src/third_party/harfbuzz-ng/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-VAan6P8PHSq8RsGE4YbI/wCfFAhzl3nJMt0cQBYi5Ls=", - "rev": "155015f4bec434ecc2f94621665844218f05ce51", - "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git" - }, - "src/third_party/highway/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=", - "rev": "8f20644eca693cfb74aa795b0006b6779c370e7a", - "url": "https://chromium.googlesource.com/external/github.com/google/highway.git" - }, - "src/third_party/hunspell_dictionaries": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=", - "rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e", - "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git" - }, - "src/third_party/icu": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-YYoslfgGfmDpSTxtCOmGGfwQg6mVU1IggzAtWRwwcMc=", - "rev": "bad7ddbf921358177e56fd723c2f59f8041a370f", - "url": "https://chromium.googlesource.com/chromium/deps/icu.git" - }, - "src/third_party/jsoncpp/source": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=", - "rev": "42e892d96e47b1f6e29844cc705e148ec4856448", - "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git" - }, - "src/third_party/leveldatabase/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=", - "rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea", - "url": "https://chromium.googlesource.com/external/leveldb.git" - }, - "src/third_party/libFuzzer/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-T0dO+1A0r6kLFoleMkY8heu80biPntCpvA6YfqA7b+E=", - "rev": "758bd21f103a501b362b1ca46fa8fcb692eaa303", - "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git" - }, - "src/third_party/libaddressinput/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=", - "rev": "e8712e415627f22d0b00ebee8db99547077f39bd", - "url": "https://chromium.googlesource.com/external/libaddressinput.git" - }, - "src/third_party/libaom/source/libaom": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-f65sdsMAWCWpsdTgyTzx5fwM/2ESm/cBCvU41s2BEV0=", - "rev": "1a72ea323d65e46eb90d08d492c04891abb91926", - "url": "https://aomedia.googlesource.com/aom.git" - }, - "src/third_party/libavif/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-rglws6GR11X8SdpYhK9CoxElWuPFYfp5b+vETjEoJOY=", - "rev": "e170c9366090cdc389d5f47ee3c2d7db71d263bc", - "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git" - }, - "src/third_party/libavifinfo/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-UAc4iYWrKWteH98hD3QLkD3JWmV/rsvWhFIVJN7tc+Q=", - "rev": "b496868f7c3fd17dfeeecc0364fe37e19edd548a", - "url": "https://aomedia.googlesource.com/libavifinfo.git" - }, - "src/third_party/libc++/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-/3VxptC6qAv9NCt8y1peJKTXTFI7blbvnpZ6D0VYyDk=", - "rev": "28aa23ffb4c7344914a5b4ac7169f12e5a12333f", - "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git" - }, - "src/third_party/libc++abi/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-O337gqiB4uiTWUgIfPdEa1Du+/ww+xYpmmZW9Py7uyQ=", - "rev": "9986707a5f2fc6d5d1ffa7f224a032bdd45c95fd", - "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git" - }, - "src/third_party/libdrm/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-NUxS2rBJ0nFblvHRQUfKT933+DAws5RUTDb+RLxRF4M=", - "rev": "98e1db501173303e58ef6a1def94ab7a2d84afc1", - "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git" - }, - "src/third_party/libgav1/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-ySRgjJUYFXTw5kys9WDSuxnmfzj1I4ImvTWi+7q0HXE=", - "rev": "35fea10bfdb790cf131ae74a4ee346905f34dc3c", - "url": "https://chromium.googlesource.com/codecs/libgav1.git" - }, - "src/third_party/libipp/libipp": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=", - "rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f", - "url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git" - }, - "src/third_party/libjpeg_turbo": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-+t75ZAdOXc7Nd1/8zEQLX+enZb8upqIQuR6qzb9z7Cg=", - "rev": "9b894306ec3b28cea46e84c32b56773a98c483da", - "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git" - }, - "src/third_party/liblouis/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=", - "rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376", - "url": "https://chromium.googlesource.com/external/liblouis-github.git" - }, - "src/third_party/libphonenumber/dist": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=", - "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362", - "url": "https://chromium.googlesource.com/external/libphonenumber.git" - }, - "src/third_party/libprotobuf-mutator/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=", - "rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf", - "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git" - }, - "src/third_party/libsrtp": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=", - "rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a", - "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git" - }, - "src/third_party/libsync/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=", - "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6", - "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git" - }, - "src/third_party/libunwind/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-WPd6BlhNNF9n/qFU8atEh1fagbc05dWsFzBugw55boY=", - "rev": "f400fdb561d4416b59b8f8a33d8ec8b79da60495", - "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git" - }, - "src/third_party/libvpx/source/libvpx": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-AUNWUicLMpEL/+r5c3JVjgZu9URBVsebayMs+ogNN6M=", - "rev": "893c9f6d070cc3bd8503152480089673f57fdf76", - "url": "https://chromium.googlesource.com/webm/libvpx.git" - }, - "src/third_party/libwebm/source": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=", - "rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da", - "url": "https://chromium.googlesource.com/webm/libwebm.git" - }, - "src/third_party/libwebp/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-Wa33opOFgcmYtycezDUt2f6PqZBse6xYB5kLuSaw95o=", - "rev": "ca332209cb5567c9b249c86788cb2dbf8847e760", - "url": "https://chromium.googlesource.com/webm/libwebp.git" - }, - "src/third_party/libyuv": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-jxs9kHI40gRFhm9cU6uS1Rxj+LLUUqT9b3myihxgW7s=", - "rev": "04821d1e7d60845525e8db55c7bcd41ef5be9406", - "url": "https://chromium.googlesource.com/libyuv/libyuv.git" - }, - "src/third_party/lss": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=", - "rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521", - "url": "https://chromium.googlesource.com/linux-syscall-support.git" - }, - "src/third_party/material_color_utilities/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-sYLpJbgwR5POWqbUqu7IdWJ2Gibjz1PsMdSK+7yPDt4=", - "rev": "bec7bab60e6431201a82761ea4482b98b54c2af9", - "url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git" - }, - "src/third_party/minigbm/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=", - "rev": "3018207f4d89395cc271278fb9a6558b660885f5", - "url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git" - }, - "src/third_party/nan": { - "fetcher": "fetchFromGitHub", - "hash": "sha256-cwti+BWmF/l/dqa/cN0C587EK4WwRWcWy6gjFVkaMTg=", - "owner": "nodejs", - "repo": "nan", - "rev": "e14bdcd1f72d62bca1d541b66da43130384ec213" - }, - "src/third_party/nasm": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-SiRXHsUlWXtH6dbDjDjqNAm105ibEB3jOfNtQAM4CaY=", - "rev": "f477acb1049f5e043904b87b825c5915084a9a29", - "url": "https://chromium.googlesource.com/chromium/deps/nasm.git" - }, - "src/third_party/nearby/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-XsQrfj0R88qf0C/LtRUsset/lnRpBkbpGUr/ZE3qmyk=", - "rev": "4bdb5000ee7919724530cf89d50969e7b0ed58a7", - "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git" - }, - "src/third_party/neon_2_sse/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=", - "rev": "a15b489e1222b2087007546b4912e21293ea86ff", - "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git" - }, - "src/third_party/openh264/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=", - "rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7", - "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264" - }, - "src/third_party/openscreen/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-habWfKhK66T537zJb/fm0IWpDbD2xgd9Upg97xRBy/M=", - "rev": "b70c552bedf189fc238e98f8f69e6c30e7925207", - "url": "https://chromium.googlesource.com/openscreen" - }, - "src/third_party/openscreen/src/buildtools": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-o974IZvLUG2KlB1pQPYFwnoPGo239CV96pQPoQO7lvM=", - "rev": "a9a6f0c49d0e8fa0cda37337430b4736ab3dc944", - "url": "https://chromium.googlesource.com/chromium/src/buildtools" - }, - "src/third_party/openscreen/src/third_party/tinycbor/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=", - "rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7", - "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git" - }, - "src/third_party/ots/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=", - "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33", - "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git" - }, - "src/third_party/pdfium": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-XJAQBQjM0JzyeNy5ZU1KpfxE1U6lQtTEhg21riHHJ0E=", - "rev": "4c4f9ab25dab142d7888f3258ab54df24b97b44f", - "url": "https://pdfium.googlesource.com/pdfium.git" - }, - "src/third_party/perfetto": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-DLu7p6tDImRC7sk+PqIZvyjpOVIZl3I/8rYX498DVTk=", - "rev": "1e15d01da5d619ca617dcdd870efe3c35046a89c", - "url": "https://android.googlesource.com/platform/external/perfetto.git" - }, - "src/third_party/pthreadpool/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-R4YmNzWEELSkAws/ejmNVxqXDTJwcqjLU/o/HvgRn2E=", - "rev": "4fe0e1e183925bf8cfa6aae24237e724a96479b8", - "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git" - }, - "src/third_party/pyelftools": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=", - "rev": "19b3e610c86fcadb837d252c794cb5e8008826ae", - "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git" - }, - "src/third_party/pywebsocket3/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=", - "rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2", - "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git" - }, - "src/third_party/quic_trace/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=", - "rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc", - "url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git" - }, - "src/third_party/re2/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-3eAhiKUIMnpVCEuLWVCVOK3alVsxAJrEWtHBzvdjZkY=", - "rev": "826ad10e58a042faf57d7c329b0fd0a04b797e0b", - "url": "https://chromium.googlesource.com/external/github.com/google/re2.git" - }, - "src/third_party/ruy/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-gvzxHQEAK6D9qIr/Wf/s6TfBp9QorHlNi4qzSx5Ih/c=", - "rev": "cd7b92695b5d3f0c9ff65b865c2a1e19b99d766d", - "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git" - }, - "src/third_party/securemessage/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=", - "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84", - "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git" - }, - "src/third_party/skia": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-iJlxnQL0JsDPOFSyD0ubEMWtDJhtbqCsBtaQqWZt8q0=", - "rev": "8464f41cf051974e499be9caeab3243506e025c2", - "url": "https://skia.googlesource.com/skia.git" - }, - "src/third_party/smhasher/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=", - "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f", - "url": "https://chromium.googlesource.com/external/smhasher.git" - }, - "src/third_party/snappy/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=", - "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c", - "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git" - }, - "src/third_party/speedometer/v3.0": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-FDsK5sNy3YOrmaGpN3AhSExzBY9D8RGwoZKkjg/5vo0=", - "rev": "2ee210ca20767c949c4ff29bdffa1138eb0501fe", - "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git" - }, - "src/third_party/sqlite/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-brDFYmagGIH7fvRAP/JaCAMyuFLJKrc0jf0106gofiw=", - "rev": "a5270ae741714a5aad187ba8dcd8bddca39f791f", - "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git" - }, - "src/third_party/squirrel.mac": { - "fetcher": "fetchFromGitHub", - "hash": "sha256-4GfKQg0u3c9GI+jl3ixESNqWXQJKRMi+00QT0s2Shqw=", - "owner": "Squirrel", - "repo": "Squirrel.Mac", - "rev": "0e5d146ba13101a1302d59ea6e6e0b3cace4ae38" - }, - "src/third_party/squirrel.mac/vendor/Mantle": { - "fetcher": "fetchFromGitHub", - "hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=", - "owner": "Mantle", - "repo": "Mantle", - "rev": "78d3966b3c331292ea29ec38661b25df0a245948" - }, - "src/third_party/squirrel.mac/vendor/ReactiveObjC": { - "fetcher": "fetchFromGitHub", - "hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=", - "owner": "ReactiveCocoa", - "repo": "ReactiveObjC", - "rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76" - }, - "src/third_party/swiftshader": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-k0WzWDa/+48ogpbmECNDJKIED4wGu/Hm0DyGnCT9xoU=", - "rev": "2fa7e9b99ae4e70ea5ae2cc9c8d3afb43391384f", - "url": "https://swiftshader.googlesource.com/SwiftShader.git" - }, - "src/third_party/text-fragments-polyfill/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=", - "rev": "c036420683f672d685e27415de0a5f5e85bdc23f", - "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git" - }, - "src/third_party/tflite/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-LOQH+qtltrahcPIutw/zYvEhmvbSjFBWT1mrg/pUD/0=", - "rev": "296f1e3cce03308c7fd5cdc7a76fbc3e41ec5214", - "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git" - }, - "src/third_party/ukey2/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=", - "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47", - "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git" - }, - "src/third_party/vulkan-deps": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-bxg82G3dkugLXpTkfk/kNcKHKWn2i8+cCKPgfbaIVZ8=", - "rev": "c00c99b8e979ca1b1eba221a60cb1e1d3b12f956", - "url": "https://chromium.googlesource.com/vulkan-deps" - }, - "src/third_party/vulkan-deps/glslang/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-QKSPJuIJe44vVNZ8fjqRKc73CZV0fECcnXvY6QRec+0=", - "rev": "57d86ab763da7b2cd1e00ecec8aa697403a8fd20", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang" - }, - "src/third_party/vulkan-deps/spirv-cross/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-VxwAs6mNOK/46VIJ0BroR41cNy2ywU+FQCgBatY1sBY=", - "rev": "b82536766d1b81631b126d1ddbe49baf42929bd3", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross" - }, - "src/third_party/vulkan-deps/spirv-headers/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-TVfaGY9YjVHvR38OvuphsS68UIpBF21ghBg/2LL3gmE=", - "rev": "7b0309708da5126b89e4ce6f19835f36dc912f2f", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers" - }, - "src/third_party/vulkan-deps/spirv-tools/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-yUaUBCj3MqBwkGNC8ElJ/uvcm0Pl5BAdiWAw/Pi52Xo=", - "rev": "c96fe8b943564fbab3424219d924d21cac2e877a", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools" - }, - "src/third_party/vulkan-deps/vulkan-headers/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-kBOkj7mr4stPXUCBhNJpNL3A+9BebEwrIBEIroxdH8Y=", - "rev": "217e93c664ec6704ec2d8c36fa116c1a4a1e2d40", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers" - }, - "src/third_party/vulkan-deps/vulkan-loader/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-qvpwu4mmmLAFolLZt5q9XYgZff6BHO2Yapg93JUpBVA=", - "rev": "0b2b71306aebf1e11304b9f961f9a29ab0234756", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader" - }, - "src/third_party/vulkan-deps/vulkan-tools/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-C4xJwYkMqzmYk6lP7SQNXhCt6FyuH4+pqOHltuxJkOA=", - "rev": "7c6d640a5ca3ab73c1f42d22312f672b54babfaf", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools" - }, - "src/third_party/vulkan-deps/vulkan-utility-libraries/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-gvia+Xb9BpOjPARKo3Sgp85Bfh1roFZ2PzCtXVFYeIU=", - "rev": "4cfc176e3242b4dbdfd3f6c5680c5d8f2cb7db45", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries" - }, - "src/third_party/vulkan-deps/vulkan-validation-layers/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-6YUjvPKjuuZdhBRfM+84btXvAHR2rj7ovocZnLS31JY=", - "rev": "d26b50b03815ff226e6df478b4ddc4b98d8deaee", - "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers" - }, - "src/third_party/vulkan_memory_allocator": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-YzxHZagz/M8Y54UnI4h1wu5jSTuaOgv0ifC9d3fJZlQ=", - "rev": "56300b29fbfcc693ee6609ddad3fdd5b7a449a21", - "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git" - }, - "src/third_party/wayland-protocols/gtk": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=", - "rev": "40ebed3a03aef096addc0af09fec4ec529d882a0", - "url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git" - }, - "src/third_party/wayland-protocols/kde": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=", - "rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e", - "url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git" - }, - "src/third_party/wayland-protocols/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-ljMcY59iOdGYeToadCuQ3t0lrBnsBdot+NiT6e+JJ04=", - "rev": "681c33c8547d6aefe24455ba2bffe1c5ae11fee5", - "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git" - }, - "src/third_party/wayland/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-By+3qSfYs4dM4Hcjq2j4ZlSSPhagwqtNl//HKMrc5LY=", - "rev": "af7f44122127b86a8c74cb7432909180f4899eaa", - "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git" - }, - "src/third_party/webdriver/pylib": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=", - "rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04", - "url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git" - }, - "src/third_party/webgl/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-dubsIPZKBGOzANGvMtQxFKFIHr0laDUGpzgRyEOjHMU=", - "rev": "f4bf599a8b575df685c31d9c4729a70a04e377ed", - "url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git" - }, - "src/third_party/webgpu-cts/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-RC2t+H44HyIvHLRcZyebSgVZvbmtw0vsy2KJRUlvTKs=", - "rev": "e082b08475761a2ba6a3349dfea72f704c8b68d4", - "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git" - }, - "src/third_party/webrtc": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-KipyGhohU2fQF67dDm4tPeH9xbFC2FNxhU4yiga5pwg=", - "rev": "6b419a0536b1a0ccfff3682f997c6f19bcbd9bd8", - "url": "https://webrtc.googlesource.com/src.git" - }, - "src/third_party/weston/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-y2srFaPUOoB2umzpo4+hFfhNlqXM2AoMGOpUy/ZSacg=", - "rev": "ccf29cb237c3ed09c5f370f35239c93d07abfdd7", - "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git" - }, - "src/third_party/wuffs/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-373d2F/STcgCHEq+PO+SCHrKVOo6uO1rqqwRN5eeBCw=", - "rev": "e3f919ccfe3ef542cfc983a82146070258fb57f8", - "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git" - }, - "src/third_party/xdg-utils": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-WuQ9uDq+QD17Y20ACFGres4nbkeOiTE2y+tY1avAT5U=", - "rev": "cb54d9db2e535ee4ef13cc91b65a1e2741a94a44", - "url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git" - }, - "src/third_party/xnnpack/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-JE3qg3lTpKTLgnpiNw6+wkhVXGx55MiyVDuvEp7Dk0Y=", - "rev": "a68aa0a24b0d3e1c75f2f7c0915b70121cee0470", - "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git" - }, - "src/third_party/zstd/src": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-9FxRLrcbJoWAd+3Elr9mJ3vG6ilT6ZQZqdY9OiTpcWw=", - "rev": "050fec5c378d676fede8b2171ec5e84f6afa1504", - "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git" - }, - "src/tools/page_cycler/acid3": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-s/49EaYQRsyxuLejXc1zGDYTD7uO0ddaQIJBP50Bvw0=", - "rev": "a926d0a32e02c4c03ae95bb798e6c780e0e184ba", - "url": "https://chromium.googlesource.com/chromium/deps/acid3.git" - }, - "src/v8": { - "fetcher": "fetchFromGitiles", - "hash": "sha256-qDQ1rt/9nfv9L6RJLZDb1KTn9+Z70XDjkTs6gOt3u/Y=", - "rev": "ddb4756a90fb7d89dc789859f8b2a3639d8de125", - "url": "https://chromium.googlesource.com/v8/v8.git" - } - }, - "electron_yarn_hash": "0w41mjfnrhmkf2qy4lk5zwhc7afkaiqypxs4379s4ay1r6zpvf6q", - "modules": "121", - "node": "20.9.0", - "version": "29.4.6" - }, "30": { "chrome": "124.0.6367.243", "chromium": { diff --git a/pkgs/development/tools/misc/hydra/unstable.nix b/pkgs/development/tools/misc/hydra/unstable.nix index 2416ce700c89..5305c9854f9d 100644 --- a/pkgs/development/tools/misc/hydra/unstable.nix +++ b/pkgs/development/tools/misc/hydra/unstable.nix @@ -1,5 +1,6 @@ { stdenv , lib +, fetchpatch2 , nix , perlPackages , buildEnv @@ -132,6 +133,18 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-NzsqjLSobba4BJ5FS3vccC9rAH0OE9XI97geGj0KHts="; }; + patches = [ + (fetchpatch2 { + url = "https://github.com/NixOS/hydra/commit/916531dc9ccee52e6dab256232933fcf6d198158.patch"; + hash = "sha256-JOtlYr+K934UIqHvfLMd/jfRRU+Tci0kvtyhOvlwxEs="; + }) + (fetchpatch2 { + name = "CVE-2024-45049.patch"; + url = "https://github.com/NixOS/hydra/commit/f73043378907c2c7e44f633ad764c8bdd1c947d5.patch"; + hash = "sha256-IS6GCuRLW+ULDD7udpGX2tO85bV2gGOX6DLLw3NTkJU="; + }) + ]; + buildInputs = [ unzip libpqxx diff --git a/pkgs/development/tools/rust/cargo-leptos/default.nix b/pkgs/development/tools/rust/cargo-leptos/default.nix index 6399cdaa3cce..2beed790ed69 100644 --- a/pkgs/development/tools/rust/cargo-leptos/default.nix +++ b/pkgs/development/tools/rust/cargo-leptos/default.nix @@ -14,16 +14,16 @@ let in rustPlatform.buildRustPackage rec { pname = "cargo-leptos"; - version = "0.2.18"; + version = "0.2.20"; src = fetchFromGitHub { owner = "leptos-rs"; repo = pname; rev = "v${version}"; - hash = "sha256-53T69yX+yllfZgHyKL6aydCtc2xIKG2f/Xgcb2yopxg="; + hash = "sha256-45zus+mNOiWWbuF50XpMwc1B6Uoy5E1kUQmtdGVc46g="; }; - cargoHash = "sha256-35QUaETifNitnIjaHRyZFdzsLRfQsoonHS5/TOkYIgU="; + cargoHash = "sha256-54CRNSDWdqD582Vv6d8snYEJrpkQ2Cvp8sjgQ6BcvHY="; buildInputs = optionals isDarwin [ SystemConfiguration diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/LICENSE.txt b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/LICENSE.txt deleted file mode 100644 index 94a9ed024d38..000000000000 --- a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/LICENSE.txt +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/pkgs/games/ultrastardx/default.nix b/pkgs/games/ultrastardx/default.nix index ed206fd582d3..bd07544712ad 100644 --- a/pkgs/games/ultrastardx/default.nix +++ b/pkgs/games/ultrastardx/default.nix @@ -13,7 +13,7 @@ , SDL2_gfx , SDL2_mixer , SDL2_net, SDL2_ttf -, ffmpeg_4 +, ffmpeg_7 , sqlite , zlib , libX11 @@ -25,7 +25,7 @@ let sharedLibs = [ pcre portaudio freetype SDL2 SDL2_image SDL2_gfx SDL2_mixer SDL2_net SDL2_ttf - sqlite lua zlib libX11 libGLU libGL ffmpeg_4 + sqlite lua zlib libX11 libGLU libGL ffmpeg_7 ]; in stdenv.mkDerivation rec { @@ -45,26 +45,6 @@ in stdenv.mkDerivation rec { postPatch = '' substituteInPlace src/config.inc.in \ --subst-var-by libpcre_LIBNAME libpcre.so.1 - - # ultrastardx binds to libffmpeg (and sublibs), specifying a very restrictive - # upper bounds on the minor versions of .so files. - # We can assume ffmpeg_4 won’t break any major ABI compatibility, since it's - # effectively EOL - sed \ - -e 's/^ LIBAVCODEC_MAX_VERSION_MINOR.*$/ LIBAVCODEC_MAX_VERSION_MINOR = 1000;/' \ - -i src/lib/ffmpeg-4.0/avcodec.pas - sed \ - -e 's/^ LIBAVFORMAT_MAX_VERSION_MINOR.*$/ LIBAVFORMAT_MAX_VERSION_MINOR = 1000;/' \ - -i src/lib/ffmpeg-4.0/avformat.pas - sed \ - -e 's/^ LIBAVUTIL_MAX_VERSION_MINOR.*$/ LIBAVUTIL_MAX_VERSION_MINOR = 1000;/' \ - -i src/lib/ffmpeg-4.0/avutil.pas - sed \ - -e 's/^ LIBSWRESAMPLE_MAX_VERSION_MINOR.*$/ LIBSWRESAMPLE_MAX_VERSION_MINOR = 1000;/' \ - -i src/lib/ffmpeg-4.0/swresample.pas - sed \ - -e 's/^ LIBSWSCALE_MAX_VERSION_MINOR.*$/ LIBSWSCALE_MAX_VERSION_MINOR = 1000;/' \ - -i src/lib/ffmpeg-4.0/swscale.pas ''; preBuild = diff --git a/pkgs/misc/screensavers/electricsheep/default.nix b/pkgs/misc/screensavers/electricsheep/default.nix index 7a6b47f8689f..a75c725c0dbc 100644 --- a/pkgs/misc/screensavers/electricsheep/default.nix +++ b/pkgs/misc/screensavers/electricsheep/default.nix @@ -3,7 +3,7 @@ , fetchFromGitHub , autoreconfHook , wxGTK32 -, ffmpeg_4 +, ffmpeg_7 , lua5_1 , curl , libpng @@ -19,22 +19,22 @@ , glee }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "electricsheep"; - version = "3.0.2-2019-10-05"; + version = "3.0.2-unstable-2024-02-13"; src = fetchFromGitHub { owner = "scottdraves"; - repo = pname; - rev = "37ba0fd692d6581f8fe009ed11c9650cd8174123"; - sha256 = "sha256-v/+2dxOY/p6wNAywcFHUAfsZEJw31Syu2MacN/KeyWg="; + repo = "electricsheep"; + rev = "5fbbb684752be06ccbea41639968aa7f1cc678dd"; + hash = "sha256-X3EZ1/VcLEU1GkZbskWSsqQWYTnsH3pbFDvDLpdLmcU="; }; nativeBuildInputs = [ autoreconfHook pkg-config ]; buildInputs = [ wxGTK32 - ffmpeg_4 + ffmpeg_7 lua5_1 curl libpng diff --git a/pkgs/os-specific/linux/guvcview/default.nix b/pkgs/os-specific/linux/guvcview/default.nix index def7248c3b2c..e41f5c8e3c52 100644 --- a/pkgs/os-specific/linux/guvcview/default.nix +++ b/pkgs/os-specific/linux/guvcview/default.nix @@ -5,7 +5,7 @@ , pkg-config , portaudio , SDL2 -, ffmpeg_4 +, ffmpeg_7 , udev , libusb1 , libv4l @@ -27,12 +27,12 @@ assert pulseaudioSupport -> libpulseaudio != null; stdenv.mkDerivation rec { - version = "2.0.6"; + version = "2.1.0"; pname = "guvcview"; src = fetchurl { - url = "mirror://sourceforge/project/guvcview/source/guvcview-src-${version}.tar.gz"; - sha256 = "11byyfpkcik7wvf2qic77zjamfr2rhji97dpj1gy2fg1bvpiqf4m"; + url = "mirror://sourceforge/project/guvcview/source/guvcview-src-${version}.tar.bz2"; + hash = "sha256-PZPkyfq40aepveGm278E1s+dNHwTS1EotFhqHZC2PPs="; }; nativeBuildInputs = [ @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { buildInputs = [ SDL2 alsa-lib - ffmpeg_4 + ffmpeg_7 libusb1 libv4l portaudio diff --git a/pkgs/servers/guacamole-server/default.nix b/pkgs/servers/guacamole-server/default.nix index 1b9623eab22f..0a6fa5dd89a2 100644 --- a/pkgs/servers/guacamole-server/default.nix +++ b/pkgs/servers/guacamole-server/default.nix @@ -1,11 +1,12 @@ { lib , stdenv , fetchFromGitHub +, fetchpatch2 , pkg-config , autoPatchelfHook , autoreconfHook , cairo -, ffmpeg_4-headless +, ffmpeg_7-headless , freerdp , libjpeg_turbo , libpng @@ -35,6 +36,14 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-ZrUaoWkZ3I/LxE7csDXXeUZ92jZDhkZ1c8EQU0gI1yY="; }; + patches = [ + # GUACAMOLE-1952: Add compatibility with FFMPEG 7.0 + (fetchpatch2 { + url = "https://github.com/apache/guacamole-server/commit/cc8addf9beb90305037a32f9f861a893be4cae08.patch?full_index=1"; + hash = "sha256-VCr2/8lQHKVdsdah9gvak4MjFHO+X4ixE5+zsvwIY1I="; + }) + ]; + NIX_CFLAGS_COMPILE = [ "-Wno-error=format-truncation" "-Wno-error=format-overflow" @@ -52,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ cairo - ffmpeg_4-headless + ffmpeg_7-headless freerdp libjpeg_turbo libossp_uuid diff --git a/pkgs/servers/http/router/default.nix b/pkgs/servers/http/router/default.nix index 6085708b1cf6..e4aed3674af5 100644 --- a/pkgs/servers/http/router/default.nix +++ b/pkgs/servers/http/router/default.nix @@ -10,16 +10,16 @@ rustPlatform.buildRustPackage rec { pname = "router"; - version = "1.52.0"; + version = "1.52.1"; src = fetchFromGitHub { owner = "apollographql"; repo = pname; rev = "v${version}"; - hash = "sha256-xbqTMN+n/C/TjmejyHCgw+UwVhsZlBZXm+tJ/EBR8jk="; + hash = "sha256-Gd+YXDztRfeJ7fFKSs7EPq0FsaSzMRYgh9CUXHS675w="; }; - cargoHash = "sha256-IfqLrmuwRtCDM5y+urjT8uvAv16tbIsGo1YHL2PdV5w="; + cargoHash = "sha256-jRv8mzeRznq8txQ+kgOr6TIXe5VDUCfGin8aLRX6HAo="; nativeBuildInputs = [ cmake diff --git a/pkgs/tools/graphics/vulkan-cts/default.nix b/pkgs/tools/graphics/vulkan-cts/default.nix index 8347e06518c6..5b7356c3054e 100644 --- a/pkgs/tools/graphics/vulkan-cts/default.nix +++ b/pkgs/tools/graphics/vulkan-cts/default.nix @@ -3,7 +3,7 @@ , fetchurl , runCommand , cmake -, ffmpeg_4 +, ffmpeg_7 , glslang , libdrm , libglvnd @@ -66,7 +66,7 @@ stdenv.mkDerivation (finalAttrs: { ''; buildInputs = [ - ffmpeg_4 + ffmpeg_7 libdrm libffi libglvnd diff --git a/pkgs/tools/security/cnspec/default.nix b/pkgs/tools/security/cnspec/default.nix index 7265079fb852..098bd180b5a3 100644 --- a/pkgs/tools/security/cnspec/default.nix +++ b/pkgs/tools/security/cnspec/default.nix @@ -6,18 +6,18 @@ buildGoModule rec { pname = "cnspec"; - version = "11.18.0"; + version = "11.19.0"; src = fetchFromGitHub { owner = "mondoohq"; repo = "cnspec"; rev = "refs/tags/v${version}"; - hash = "sha256-31g5iBTdI+15VzqaNgWo0SuJJ9aov83UOa2n+k+xtXY="; + hash = "sha256-37i7lbkw70DpwCUvZtv6548l6csx3ozG+1gPTKhJQFg="; }; proxyVendor = true; - vendorHash = "sha256-7lPskaF9yag+O8EMWmaL6gX5ULyN+LqB4XilVn7/0cE="; + vendorHash = "sha256-8+qS6fR/5oYHP1QhoHfByQ7AayYPYVg4xEtF3617aJM="; subPackages = [ "apps/cnspec" ]; diff --git a/pkgs/tools/video/untrunc-anthwlock/default.nix b/pkgs/tools/video/untrunc-anthwlock/default.nix index db98232c01bc..0bdbe29d3ee9 100644 --- a/pkgs/tools/video/untrunc-anthwlock/default.nix +++ b/pkgs/tools/video/untrunc-anthwlock/default.nix @@ -1,19 +1,19 @@ -{ lib, stdenv, fetchFromGitHub, ffmpeg_4, libui, unstableGitUpdater, wrapGAppsHook3 }: +{ lib, stdenv, fetchFromGitHub, ffmpeg_7, libui, unstableGitUpdater, wrapGAppsHook3 }: stdenv.mkDerivation { pname = "untrunc-anthwlock"; - version = "0-unstable-2021-11-21"; + version = "0-unstable-2024-08-14"; src = fetchFromGitHub { owner = "anthwlock"; repo = "untrunc"; - rev = "d72ec324fbc29eb00b53c7dafeef09f92308962b"; - hash = "sha256-h+aFPhlbEM6EfCKbsJPelBY5ys7kv5K4rbK/HTHeEcw="; + rev = "13cafedf59369db478af537fb909f0d7fd0eb85f"; + hash = "sha256-4GIPj8so7POEwxKZzFBoJTu76XKbGHYmXC/ILeo0dVE="; }; nativeBuildInputs = [ wrapGAppsHook3 ]; - buildInputs = [ ffmpeg_4 libui ]; + buildInputs = [ ffmpeg_7 libui ]; buildPhase = '' runHook preBuild diff --git a/pkgs/tools/video/xjadeo/default.nix b/pkgs/tools/video/xjadeo/default.nix index 683a4a263eaa..3bda4a823038 100644 --- a/pkgs/tools/video/xjadeo/default.nix +++ b/pkgs/tools/video/xjadeo/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, autoreconfHook, fetchFromGitHub, ffmpeg_4, freetype, libGLU +{ lib, stdenv, autoreconfHook, fetchFromGitHub, ffmpeg_7, freetype, libGLU , libjack2, liblo, libX11, libXv, pkg-config, portmidi, xorg }: stdenv.mkDerivation rec { @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook pkg-config ]; buildInputs = [ - ffmpeg_4 + ffmpeg_7 libjack2 libX11 xorg.libXext diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 3eec0dad8358..fc7af2f90a54 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -448,9 +448,9 @@ mapAliases ({ inherit (luaPackages) fennel; # Added 2022-09-24 ferdi = throw "'ferdi' has been removed, upstream does not exist anymore and the package is insecure"; # Added 2024-08-22 fetchFromGithub = throw "You meant fetchFromGitHub, with a capital H"; # preserve - ffmpeg_5 = throw "ffmpeg_5 has been removed, please use a newer version or ffmpeg_4 for compatibility"; # Added 2024-07-12 - ffmpeg_5-headless = throw "ffmpeg_5-headless has been removed, please use a newer version or ffmpeg_4-headless for compatibility"; # Added 2024-07-12 - ffmpeg_5-full = throw "ffmpeg_5-full has been removed, please use a newer version or ffmpeg_4-full for compatibility"; # Added 2024-07-12 + ffmpeg_5 = throw "ffmpeg_5 has been removed, please use another version"; # Added 2024-07-12 + ffmpeg_5-headless = throw "ffmpeg_5-headless has been removed, please use another version"; # Added 2024-07-12 + ffmpeg_5-full = throw "ffmpeg_5-full has been removed, please use another version"; # Added 2024-07-12 FIL-plugins = fil-plugins; # Added 2024-06-12 findimagedupes = throw "findimagedupes has been removed because the perl bindings are no longer compatible"; # Added 2023-07-10 finger_bsd = bsd-finger; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 43679fd92807..0c7a27b739a9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5641,7 +5641,7 @@ with pkgs; medusa = callPackage ../tools/security/medusa { }; megasync = libsForQt5.callPackage ../applications/misc/megasync { - ffmpeg = ffmpeg_4; + ffmpeg = ffmpeg_7; }; megacmd = callPackage ../applications/misc/megacmd { }; @@ -17332,7 +17332,7 @@ with pkgs; ansible-lint = callPackage ../tools/admin/ansible/lint.nix { }; antares = callPackage ../by-name/an/antares/package.nix { - electron = electron_29; + electron = electron_30; }; antlr2 = callPackage ../development/tools/parsing/antlr/2.7.7.nix { }; @@ -17407,7 +17407,7 @@ with pkgs; electron_24 = electron_24-bin; electron_27 = electron_27-bin; electron_28 = electron_28-bin; - electron_29 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_29 then electron-source.electron_29 else electron_29-bin; + electron_29 = electron_29-bin; electron_30 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_30 then electron-source.electron_30 else electron_30-bin; electron_31 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_31 then electron-source.electron_31 else electron_31-bin; electron = electron_31; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4d0500c9086e..5fe05b0aa8c3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9745,7 +9745,9 @@ self: super: with self; { oslo-serialization = callPackage ../development/python-modules/oslo-serialization { }; - oslo-utils = callPackage ../development/python-modules/oslo-utils { }; + oslo-utils = callPackage ../development/python-modules/oslo-utils { + qemu = pkgs.qemu; + }; oslotest = callPackage ../development/python-modules/oslotest { }; diff --git a/pkgs/top-level/qt6-packages.nix b/pkgs/top-level/qt6-packages.nix index aab679783224..f63e2245b59b 100644 --- a/pkgs/top-level/qt6-packages.nix +++ b/pkgs/top-level/qt6-packages.nix @@ -104,7 +104,7 @@ makeScopeWithSplicing' { # Not a library, but we do want it to be built for every qt version there # is, to allow users to choose the right build if needed. - sddm = callPackage ../applications/display-managers/sddm {}; + sddm = kdePackages.callPackage ../applications/display-managers/sddm {}; sierra-breeze-enhanced = kdePackages.callPackage ../data/themes/kwin-decorations/sierra-breeze-enhanced { };