diff --git a/ci/OWNERS b/ci/OWNERS index 25eb63420859..255a43d5e097 100644 --- a/ci/OWNERS +++ b/ci/OWNERS @@ -200,6 +200,7 @@ nixos/modules/installer/tools/nix-fallback-paths.nix @NixOS/nix-team @raitobeza /doc/languages-frameworks/haskell.section.md @sternenseemann @maralorn @wolfgangwalther /maintainers/scripts/haskell @sternenseemann @maralorn @wolfgangwalther /pkgs/development/compilers/ghc @sternenseemann @maralorn @wolfgangwalther +/pkgs/development/compilers/ghc/9.6.6-debian-binary.nix @sternenseemann @maralorn @wolfgangwalther @OPNA2608 /pkgs/development/haskell-modules @sternenseemann @maralorn @wolfgangwalther /pkgs/test/haskell @sternenseemann @maralorn @wolfgangwalther /pkgs/top-level/release-haskell.nix @sternenseemann @maralorn @wolfgangwalther diff --git a/ci/github-script/lint-commits.js b/ci/github-script/lint-commits.js index 4905517a142e..5237b41845e1 100644 --- a/ci/github-script/lint-commits.js +++ b/ci/github-script/lint-commits.js @@ -55,10 +55,11 @@ async function checkCommitMessages({ github, context, core }) { const logMsgStart = `Commit ${commit.sha}'s message's subject ("${firstLine}")` - if (!firstLine.includes(':')) { + if (!firstLine.includes(': ')) { core.error( `${logMsgStart} was detected as not meeting our guidelines because ` + - 'it does not contain a colon. There are likely other issues as well.', + 'it does not contain a colon followed by a whitespace.' + + 'There are likely other issues as well.', ) failures.add(commit.sha) } diff --git a/doc/hooks/zig.section.md b/doc/hooks/zig.section.md index 58515087c59a..4bd65746e0dd 100644 --- a/doc/hooks/zig.section.md +++ b/doc/hooks/zig.section.md @@ -1,10 +1,10 @@ -# zig.hook {#zig-hook} +# Zig {#zig} [Zig](https://ziglang.org/) is a general-purpose programming language and toolchain for maintaining robust, optimal and reusable software. -In Nixpkgs, `zig.hook` overrides the default build, check and install phases. +In Nixpkgs, `zig` overrides the default build, check and install phases. -## Example code snippet {#zig-hook-example-code-snippet} +## Example code snippet {#zig-example-code-snippet} ```nix { @@ -16,7 +16,7 @@ In Nixpkgs, `zig.hook` overrides the default build, check and install phases. stdenv.mkDerivation { # . . . - nativeBuildInputs = [ zig.hook ]; + nativeBuildInputs = [ zig ]; zigBuildFlags = [ "-Dman-pages=true" ]; @@ -26,11 +26,11 @@ stdenv.mkDerivation { } ``` -## Variables controlling zig.hook {#zig-hook-variables-controlling} +## Variables controlling zig {#zig-variables-controlling} -### `zig.hook` Exclusive Variables {#zig-hook-exclusive-variables} +### `zig` Exclusive Variables {#zig-exclusive-variables} -The variables below are exclusive to `zig.hook`. +The variables below are exclusive to `zig`. #### `dontUseZigBuild` {#dont-use-zig-build} @@ -44,19 +44,23 @@ Disables using `zigCheckPhase`. Disables using `zigInstallPhase`. -### Similar variables {#zig-hook-similar-variables} +#### `dontSetZigDefaultFlags` {#dont-set-zig-default-flags} + +Disables using a set of default flags when performing zig builds. + +### Similar variables {#zig-similar-variables} The following variables are similar to their `stdenv.mkDerivation` counterparts. -| `zig.hook` Variable | `stdenv.mkDerivation` Counterpart | +| `zig` Variable | `stdenv.mkDerivation` Counterpart | |---------------------|-----------------------------------| | `zigBuildFlags` | `buildFlags` | | `zigCheckFlags` | `checkFlags` | | `zigInstallFlags` | `installFlags` | -### Variables honored by zig.hook {#zig-hook-variables-honored} +### Variables honored by zig {#zig-variables-honored} -The following variables commonly used by `stdenv.mkDerivation` are honored by `zig.hook`. +The following variables commonly used by `stdenv.mkDerivation` are honored by `zig`. - `prefixKey` - `dontAddPrefix` diff --git a/doc/redirects.json b/doc/redirects.json index bc0bf5521384..d52ae8a8f047 100644 --- a/doc/redirects.json +++ b/doc/redirects.json @@ -2713,16 +2713,20 @@ "waf-hook-honored-variables": [ "index.html#waf-hook-honored-variables" ], - "zig-hook": [ + "zig": [ + "index.html#zig", "index.html#zig-hook" ], - "zig-hook-example-code-snippet": [ + "zig-example-code-snippet": [ + "index.html#zig-example-code-snippet", "index.html#zig-hook-example-code-snippet" ], - "zig-hook-variables-controlling": [ + "zig-variables-controlling": [ + "index.html#zig-variables-controlling", "index.html#zig-hook-variables-controlling" ], - "zig-hook-exclusive-variables": [ + "zig-exclusive-variables": [ + "index.html#zig-exclusive-variables", "index.html#zig-hook-exclusive-variables" ], "dont-use-zig-build": [ @@ -2734,10 +2738,15 @@ "dont-use-zig-install": [ "index.html#dont-use-zig-install" ], - "zig-hook-similar-variables": [ + "dont-set-zig-default-flags": [ + "index.html#dont-set-zig-default-flags" + ], + "zig-similar-variables": [ + "index.html#zig-similar-variables", "index.html#zig-hook-similar-variables" ], - "zig-hook-variables-honored": [ + "zig-variables-honored": [ + "index.html#zig-variables-honored", "index.html#zig-hook-variables-honored" ], "xcbuildhook": [ diff --git a/doc/release-notes/rl-2605.section.md b/doc/release-notes/rl-2605.section.md index 41551208e0c0..8b63b0a172e3 100644 --- a/doc/release-notes/rl-2605.section.md +++ b/doc/release-notes/rl-2605.section.md @@ -53,6 +53,8 @@ - `kanata` now requires `karabiner-dk` version 6.0+ or later. The package has been updated to use the new `karabiner-dk` package and the `darwinDriver` output stays at the version defined in the package. +- Reloading or restarting systemd units from the NixOS activation script is deprecated, and will be removed in NixOS 26.11. This deprecation is part of a bigger effort to deprecate activation scripts altogether, which will take place over several releases. There are no in-tree usages of the now-deprecated reload/restart functionality. + - `elegant-sddm` has been updated to be Qt6 compatible. Themes for SDDM are slightly different so read the [wiki](https://wiki.nixos.org/wiki/SDDM_Themes) for more. - `n8n` has been updated to version 2. You can find the breaking changes here: https://docs.n8n.io/2-0-breaking-changes/. diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 6ecb30a5b18a..221dbf6b7028 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -111,7 +111,7 @@ _0x5a4 = { email = "bej86nug@hhu.de"; name = "0x5a4"; - github = "0x5a4"; + github = "einetuer"; githubId = 54070204; }; _0xB10C = { @@ -382,7 +382,7 @@ }; aaravrav = { name = "aaravrav"; - github = "aaravrav"; + github = "Aarav"; githubId = 3279912; }; aarnphm = { @@ -610,7 +610,7 @@ name = "Adam Perkowski"; email = "me@adamperkowski.dev"; matrix = "@adam:matrix.system72.dev"; - github = "adamperkowski"; + github = "koibtw"; githubId = 75480869; keys = [ { fingerprint = "00F6 1623 FB56 BC5B B709 4E63 4CE6 C117 2DF6 BE79"; } @@ -2049,7 +2049,7 @@ }; aprl = { email = "aprl@acab.dev"; - github = "CutestNekoAqua"; + github = "aprilthepink"; githubId = 30842467; name = "April John"; }; @@ -2157,7 +2157,7 @@ }; argrat = { email = "n.bertazzo@protonmail.com"; - github = "argo-v5"; + github = "brtz-cs"; githubId = 98821629; name = "Nicolò Bertazzo"; }; @@ -2326,7 +2326,7 @@ }; asauzeau = { email = "antoine.sauzeau3@gmail.com"; - github = "AntoineSauzeau"; + github = "asauzeau"; githubId = 72159603; name = "Antoine Sauzeau"; }; @@ -2601,7 +2601,7 @@ github = "auscyber"; name = "Ivy Pierlot"; githubId = 12080502; - matrix = "@ivy:faggot.sh"; + matrix = "@ivy:fargone.sh"; }; austin-artificial = { email = "austin.platt@artificial.io"; @@ -2906,7 +2906,7 @@ baileylu = { name = "Luke Bailey"; email = "baileylu@tcd.ie"; - github = "baileyluTCD"; + github = "baileylu121"; githubId = 156000062; }; baitinq = { @@ -5325,7 +5325,7 @@ }; connerohnesorge = { email = "conneroisu@outlook.com"; - github = "conneroisu"; + github = "connerohnesorge"; githubId = 88785126; name = "Conner Ohnesorge"; }; @@ -6070,7 +6070,7 @@ }; davidarmstronglewis = { email = "davidlewis@mac.com"; - github = "oceanlewis"; + github = "hazel-ocean"; githubId = 6754950; name = "Ocean Armstrong Lewis"; }; @@ -6863,7 +6863,7 @@ }; dmvianna = { email = "dmlvianna@gmail.com"; - github = "dmvianna"; + github = "pasunboneleve"; githubId = 1708810; name = "Daniel Vianna"; }; @@ -9133,6 +9133,13 @@ githubId = 23723926; name = "Dash R"; }; + fulsomenko = { + email = "max.blomstervall@gmail.com"; + github = "fulsomenko"; + githubId = 14945057; + name = "Max Emil Yoon Blomstervall"; + keys = [ { fingerprint = "D14A 78F2 AAC5 9A1B 3E1F 0547 044B 046E 5745 CC2B"; } ]; + }; funkeleinhorn = { email = "git@funkeleinhorn.com"; github = "funkeleinhorn"; @@ -11875,7 +11882,7 @@ jayesh-bhoot = { name = "Jayesh Bhoot"; email = "jb@jayeshbhoot.com"; - github = "jbhoot"; + github = "bhootd"; githubId = 1915507; }; jayman2000 = { @@ -16217,7 +16224,7 @@ }; marsupialgutz = { email = "mars@possums.xyz"; - github = "pupbrained"; + github = "skulldogged"; githubId = 33522919; name = "Marshall Arruda"; }; @@ -18788,7 +18795,7 @@ }; nikitavoloboev = { email = "nikita.voloboev@gmail.com"; - github = "nikitavoloboev"; + github = "nikivdev"; githubId = 6391776; name = "Nikita Voloboev"; }; @@ -20355,7 +20362,7 @@ githubId = 6771175; }; pedohorse = { - github = "pedohorse"; + github = "permahorse"; githubId = 13556996; name = "pedohorse"; }; @@ -22644,7 +22651,7 @@ }; robwalt = { email = "robwalter96@gmail.com"; - github = "robwalt"; + github = "JasmineLowen"; githubId = 26892280; name = "Robert Walter"; }; @@ -24242,7 +24249,7 @@ shreerammodi = { name = "Shreeram Modi"; email = "shreerammodi10@gmail.com"; - github = "shrimpram"; + github = "shreerammodi"; githubId = 67710369; keys = [ { fingerprint = "EA88 EA07 26E9 6CBF 6365 3966 163B 16EE 76ED 24CE"; } ]; }; @@ -24977,7 +24984,7 @@ name = "Seraphim Pardee"; matrix = "@xsrp:matrix.org"; email = "me@srp.life"; - github = "SeraphimRP"; + github = "RdrSeraphim"; githubId = 8297347; }; srv6d = { @@ -25083,6 +25090,12 @@ github = "stasjok"; githubId = 1353637; }; + staticdev = { + email = "staticdev-support@proton.me"; + github = "staticdev"; + githubId = 1446633; + name = "Thiago A."; + }; StayBlue = { name = "StayBlue"; email = "blue@spook.rip"; @@ -29179,7 +29192,7 @@ keys = [ { fingerprint = "9270 66BD 8125 A45B 4AC4 0326 6180 7181 F60E FCB2"; } ]; }; yusuf-duran = { - github = "yusuf-duran"; + github = "postgnostic"; githubId = 37774475; name = "Yusuf Duran"; }; @@ -29456,7 +29469,7 @@ ziguana = { name = "Zig Uana"; email = "git@ziguana.dev"; - github = "nomadic-stare"; + github = "Jingles52"; githubId = 45833444; }; zimbatm = { diff --git a/nixos/doc/manual/development/activation-script.section.md b/nixos/doc/manual/development/activation-script.section.md index f771c3524b79..1763259245a6 100644 --- a/nixos/doc/manual/development/activation-script.section.md +++ b/nixos/doc/manual/development/activation-script.section.md @@ -34,25 +34,6 @@ is also run when `nixos-rebuild dry-activate` is run. To differentiate between real and dry activation, the `$NIXOS_ACTION` environment variable can be read which is set to `dry-activate` when a dry activation is done. -An activation script can write to special files instructing -`switch-to-configuration` to restart/reload units. The script will take these -requests into account and will incorporate the unit configuration as described -above. This means that the activation script will "fake" a modified unit file -and `switch-to-configuration` will act accordingly. By doing so, configuration -like [systemd.services.\.restartIfChanged](#opt-systemd.services) is -respected. Since the activation script is run **after** services are already -stopped, [systemd.services.\.stopIfChanged](#opt-systemd.services) -cannot be taken into account anymore and the unit is always restarted instead -of being stopped and started afterwards. - -The files that can be written to are `/run/nixos/activation-restart-list` and -`/run/nixos/activation-reload-list` with their respective counterparts for -dry activation being `/run/nixos/dry-activation-restart-list` and -`/run/nixos/dry-activation-reload-list`. Those files can contain -newline-separated lists of unit names where duplicates are being ignored. These -files are not create automatically and activation scripts must take the -possibility into account that they have to create them first. - ## NixOS snippets {#sec-activation-script-nixos-snippets} There are some snippets NixOS enables by default because disabling them would @@ -63,12 +44,8 @@ do: - `etc` sets up the contents of `/etc`, this includes systemd units and excludes `/etc/passwd`, `/etc/group`, and `/etc/shadow` (which are managed by the `users` snippet) -- `hostname` sets the system's hostname in the kernel (not in `/etc`) - `modprobe` sets the path to the `modprobe` binary for module auto-loading -- `nix` prepares the nix store and adds a default initial channel - `specialfs` is responsible for mounting filesystems like `/proc` and `sys` - `users` creates and removes users and groups by managing `/etc/passwd`, `/etc/group` and `/etc/shadow`. This also creates home directories - `usrbinenv` creates `/usr/bin/env` -- `var` creates some directories in `/var` that are not service-specific -- `wrappers` creates setuid wrappers like `sudo` diff --git a/nixos/modules/config/xdg/mime.nix b/nixos/modules/config/xdg/mime.nix index 2b2905bb2f0c..79955a03ef2f 100644 --- a/nixos/modules/config/xdg/mime.nix +++ b/nixos/modules/config/xdg/mime.nix @@ -32,15 +32,15 @@ in default = { }; example = { "application/pdf" = "firefox.desktop"; - "text/xml" = [ + "text/*" = [ "nvim.desktop" "codium.desktop" ]; }; description = '' Adds associations between mimetypes and applications. See the - [ - specifications](https://specifications.freedesktop.org/mime-apps-spec/latest/associations) for more information. + [specifications](https://specifications.freedesktop.org/mime-apps-spec/latest/associations) for more information. + Globs in all variations are supported. ''; }; @@ -49,15 +49,15 @@ in default = { }; example = { "application/pdf" = "firefox.desktop"; - "image/png" = [ + "image/*" = [ "sxiv.desktop" "gimp.desktop" ]; }; description = '' Sets the default applications for given mimetypes. See the - [ - specifications](https://specifications.freedesktop.org/mime-apps-spec/latest/default) for more information. + [specifications](https://specifications.freedesktop.org/mime-apps-spec/latest/default) for more information. + Globs in all variations are supported. ''; }; @@ -65,7 +65,7 @@ in type = associationOptions; default = { }; example = { - "audio/mp3" = [ + "audio/*" = [ "mpv.desktop" "umpv.desktop" ]; @@ -73,22 +73,55 @@ in }; description = '' Removes associations between mimetypes and applications. See the - [ - specifications](https://specifications.freedesktop.org/mime-apps-spec/latest/associations) for more information. + [specifications](https://specifications.freedesktop.org/mime-apps-spec/latest/associations) for more information. + Globs in all variations are supported. ''; }; }; config = lib.mkIf cfg.enable { environment.etc."xdg/mimeapps.list" = + let + generateMimeScript = + title: attrs: + lib.optionalString (attrs != { }) '' + echo "[${title}]" >> $out + '' + + (lib.concatStringsSep "\n" ( + lib.attrValues ( + lib.mapAttrs ( + k: v: ''generateMimeItem "${k}" "${if lib.isList v then lib.concatStringsSep ";" v else v}"'' + ) attrs + ) + )); + in lib.mkIf (cfg.addedAssociations != { } || cfg.defaultApplications != { } || cfg.removedAssociations != { }) { - text = lib.generators.toINI { } { - "Added Associations" = cfg.addedAssociations; - "Default Applications" = cfg.defaultApplications; - "Removed Associations" = cfg.removedAssociations; - }; + source = pkgs.runCommandLocal "mimeapps.list" { } '' + function generateMimeItem() { + mime=$1 + app=$2 + if [[ $mime == *"*"* ]]; then + while read line; do + if [[ $line == $mime ]]; then + echo "$line=$app" >> $out + fi + done < ${pkgs.shared-mime-info}/share/mime/types + else + echo "$mime=$app" >> $out + fi + } + ${lib.concatStringsSep "\n" ( + lib.attrValues ( + lib.mapAttrs generateMimeScript { + "Added Associations" = cfg.addedAssociations; + "Default Applications" = cfg.defaultApplications; + "Removed Associations" = cfg.removedAssociations; + } + ) + )} + ''; }; environment.pathsToLink = [ "/share/mime" ]; diff --git a/nixos/modules/hardware/xpad-noone.nix b/nixos/modules/hardware/xpad-noone.nix index b229f4fb4b27..7b33d7b1c8b0 100644 --- a/nixos/modules/hardware/xpad-noone.nix +++ b/nixos/modules/hardware/xpad-noone.nix @@ -9,7 +9,7 @@ let in { options.hardware.xpad-noone = { - enable = lib.mkEnableOption "The Xpad driver from the Linux kernel with support for Xbox One controllers removed"; + enable = lib.mkEnableOption "the Xpad driver from the Linux kernel with support for Xbox One controllers removed"; }; config = lib.mkIf cfg.enable { diff --git a/nixos/modules/security/audit.nix b/nixos/modules/security/audit.nix index 849ff57c662c..8ef3505952bf 100644 --- a/nixos/modules/security/audit.nix +++ b/nixos/modules/security/audit.nix @@ -41,6 +41,8 @@ in ''; }; + package = lib.mkPackageOption pkgs "audit" { }; + failureMode = lib.mkOption { type = lib.types.enum [ "silent" @@ -93,7 +95,7 @@ in "audit_backlog_limit=${toString cfg.backlogLimit}" ]; - environment.systemPackages = [ pkgs.audit ]; + environment.systemPackages = [ cfg.package ]; # upstream contains a audit-rules.service, which uses augenrules. # That script does not handle cleanup correctly and insists on loading from /etc/audit. @@ -119,12 +121,12 @@ in serviceConfig = { Type = "oneshot"; RemainAfterExit = true; - ExecStart = "${lib.getExe' pkgs.audit "auditctl"} -R ${rules}/audit.rules"; + ExecStart = "${lib.getExe' cfg.package "auditctl"} -R ${rules}/audit.rules"; ExecStopPost = [ # Disable auditing - "${lib.getExe' pkgs.audit "auditctl"} -e 0" + "${lib.getExe' cfg.package "auditctl"} -e 0" # Delete all rules - "${lib.getExe' pkgs.audit "auditctl"} -D" + "${lib.getExe' cfg.package "auditctl"} -D" ]; }; }; diff --git a/nixos/modules/security/auditd.nix b/nixos/modules/security/auditd.nix index f9e7fd6084c1..af6f6c8120db 100644 --- a/nixos/modules/security/auditd.nix +++ b/nixos/modules/security/auditd.nix @@ -101,6 +101,8 @@ in options.security.auditd = { enable = lib.mkEnableOption "the Linux Audit daemon"; + package = lib.mkPackageOption pkgs "auditd" { default = "audit"; }; + settings = lib.mkOption { type = lib.types.submodule { freeformType = lib.types.attrsOf settingsType; @@ -146,7 +148,7 @@ in defaultText = lib.literalExpression '' { af_unix = { - path = lib.getExe' pkgs.audit "audisp-af_unix"; + path = lib.getExe' config.security.auditd.package "audisp-af_unix"; args = [ "0640" "/var/run/audispd_events" @@ -155,15 +157,15 @@ in format = "binary"; }; remote = { - path = lib.getExe' pkgs.audit "audisp-remote"; + path = lib.getExe' config.security.auditd.package "audisp-remote"; settings = { }; }; filter = { - path = lib.getExe' pkgs.audit "audisp-filter"; + path = lib.getExe' config.security.auditd.package "audisp-filter"; args = [ "allowlist" "/etc/audit/audisp-filter.conf" - (lib.getExe' pkgs.audit "audisp-syslog") + (lib.getExe' config.security.auditd.package "audisp-syslog") "LOG_USER" "LOG_INFO" "interpret" @@ -171,7 +173,7 @@ in settings = { }; }; syslog = { - path = lib.getExe' pkgs.audit "audisp-syslog"; + path = lib.getExe' config.security.auditd.package "audisp-syslog"; args = [ "LOG_INFO" ]; }; } @@ -226,7 +228,7 @@ in security.auditd.plugins = { af_unix = { - path = lib.getExe' pkgs.audit "audisp-af_unix"; + path = lib.getExe' cfg.package "audisp-af_unix"; args = [ "0640" "/run/audit/audispd_events" @@ -235,15 +237,15 @@ in format = "binary"; }; remote = { - path = lib.getExe' pkgs.audit "audisp-remote"; + path = lib.getExe' cfg.package "audisp-remote"; settings = { }; }; filter = { - path = lib.getExe' pkgs.audit "audisp-filter"; + path = lib.getExe' cfg.package "audisp-filter"; args = [ "allowlist" "/etc/audit/audisp-filter.conf" - (lib.getExe' pkgs.audit "audisp-syslog") + (lib.getExe' cfg.package "audisp-syslog") "LOG_USER" "LOG_INFO" "interpret" @@ -251,12 +253,12 @@ in settings = { }; }; syslog = { - path = lib.getExe' pkgs.audit "audisp-syslog"; + path = lib.getExe' cfg.package "audisp-syslog"; args = [ "LOG_INFO" ]; }; }; - systemd.packages = [ pkgs.audit.out ]; + systemd.packages = [ cfg.package.out ]; systemd.services.auditd = { wantedBy = [ "multi-user.target" ]; @@ -271,7 +273,7 @@ in ExecStart = [ # the upstream unit does not allow symlinks, so clear and rewrite the ExecStart "" - "${lib.getExe' pkgs.audit "auditd"} -l -s nochange" + "${lib.getExe' cfg.package "auditd"} -l -s nochange" ]; }; }; diff --git a/nixos/modules/services/desktop-managers/gnome.nix b/nixos/modules/services/desktop-managers/gnome.nix index ac0431411341..8cee536d8b3b 100644 --- a/nixos/modules/services/desktop-managers/gnome.nix +++ b/nixos/modules/services/desktop-managers/gnome.nix @@ -332,7 +332,7 @@ in services.power-profiles-daemon.enable = mkDefault true; services.gnome.at-spi2-core.enable = true; services.gnome.evolution-data-server.enable = true; - services.gnome.gnome-keyring.enable = true; + services.gnome.gnome-keyring.enable = mkDefault true; services.gnome.gcr-ssh-agent.enable = mkDefault true; services.gnome.gnome-online-accounts.enable = mkDefault true; services.gnome.localsearch.enable = mkDefault true; diff --git a/nixos/modules/services/torrent/rtorrent.nix b/nixos/modules/services/torrent/rtorrent.nix index 6b8a9d55d6e9..07825ecbc897 100644 --- a/nixos/modules/services/torrent/rtorrent.nix +++ b/nixos/modules/services/torrent/rtorrent.nix @@ -245,9 +245,9 @@ in RestrictSUIDSGID = true; SystemCallArchitectures = "native"; SystemCallFilter = [ - "@chown" "@system-service" "~@privileged" + "@chown" ]; }; }; diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index 861c8ac8081e..a479b7242f56 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -846,19 +846,33 @@ in environment.etc = lib.genAttrs - (map (file: "zfs/zed.d/${file}") [ - "all-syslog.sh" - "pool_import-led.sh" - "resilver_finish-start-scrub.sh" - "statechange-led.sh" - "vdev_attach-led.sh" - "zed-functions.sh" - "data-notify.sh" - "resilver_finish-notify.sh" - "scrub_finish-notify.sh" - "statechange-notify.sh" - "vdev_clear-led.sh" - ]) + (map (file: "zfs/zed.d/${file}") ( + [ + "all-syslog.sh" + "data-notify.sh" + "history_event-zfs-list-cacher.sh" + "resilver_finish-notify.sh" + "resilver_finish-start-scrub.sh" + "scrub_finish-notify.sh" + "statechange-notify.sh" + ] + ++ lib.optionals (lib.versionOlder cfgZfs.package.version "2.4") [ + "deadman-slot_off.sh" + "pool_import-led.sh" + "statechange-led.sh" + "statechange-slot_off.sh" + "vdev_attach-led.sh" + "vdev_clear-led.sh" + ] + ++ lib.optionals (lib.versionAtLeast cfgZfs.package.version "2.4") [ + "deadman-sync-slot_off.sh" + "pool_import-sync-led.sh" + "statechange-sync-led.sh" + "statechange-sync-slot_off.sh" + "vdev_attach-sync-led.sh" + "vdev_clear-sync-led.sh" + ] + )) (file: { source = "${cfgZfs.package}/etc/${file}"; }) diff --git a/pkgs/applications/editors/jetbrains/builder/linux.nix b/pkgs/applications/editors/jetbrains/builder/linux.nix index bb406773d834..22e2443e020b 100644 --- a/pkgs/applications/editors/jetbrains/builder/linux.nix +++ b/pkgs/applications/editors/jetbrains/builder/linux.nix @@ -62,11 +62,10 @@ lib.makeOverridable mkDerivation ( mainProgram = pname; }; - # FIXME: Do not use meta attributes, see README (`TODO` section) desktopItem = makeDesktopItem { name = pname; exec = pname; - comment = lib.replaceStrings [ "\n" ] [ " " ] meta.longDescription; + comment = lib.trim (lib.replaceString "\n" " " meta.longDescription); desktopName = product; genericName = meta.description; categories = [ "Development" ]; diff --git a/pkgs/applications/editors/jetbrains/ides/clion.nix b/pkgs/applications/editors/jetbrains/ides/clion.nix index 0391c23f03ce..a65f4a9eba66 100644 --- a/pkgs/applications/editors/jetbrains/ides/clion.nix +++ b/pkgs/applications/editors/jetbrains/ides/clion.nix @@ -68,7 +68,7 @@ in xz ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/clion/"; description = "C/C++ IDE from JetBrains"; diff --git a/pkgs/applications/editors/jetbrains/ides/datagrip.nix b/pkgs/applications/editors/jetbrains/ides/datagrip.nix index 15be98d7cfd3..127c4b202003 100644 --- a/pkgs/applications/editors/jetbrains/ides/datagrip.nix +++ b/pkgs/applications/editors/jetbrains/ides/datagrip.nix @@ -45,11 +45,14 @@ mkJetBrainsProduct { src = fetchurl (urls.${system} or (throw "Unsupported system: ${system}")); - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/datagrip/"; description = "Database IDE from JetBrains"; - longDescription = "DataGrip is a new IDE from JetBrains built for database admins. It allows you to quickly migrate and refactor relational databases, construct efficient, statically checked SQL queries and much more."; + longDescription = '' + DataGrip is an IDE from JetBrains built for database admins. + It allows you to quickly migrate and refactor relational databases, construct efficient, statically checked SQL queries and much more. + ''; maintainers = [ ]; license = lib.licenses.unfree; sourceProvenance = diff --git a/pkgs/applications/editors/jetbrains/ides/dataspell.nix b/pkgs/applications/editors/jetbrains/ides/dataspell.nix index 2b9bc50d6508..63fe6cd3541d 100644 --- a/pkgs/applications/editors/jetbrains/ides/dataspell.nix +++ b/pkgs/applications/editors/jetbrains/ides/dataspell.nix @@ -55,11 +55,14 @@ mkJetBrainsProduct { '') ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/dataspell/"; description = "Data science IDE from JetBrains"; - longDescription = "DataSpell is a new IDE from JetBrains built for Data Scientists. Mainly it integrates Jupyter notebooks in the IntelliJ platform."; + longDescription = '' + DataSpell is an IDE from JetBrains built for Data Scientists. + Mainly it integrates Jupyter notebooks in the IntelliJ platform. + ''; maintainers = with lib.maintainers; [ leona ]; license = lib.licenses.unfree; sourceProvenance = diff --git a/pkgs/applications/editors/jetbrains/ides/gateway.nix b/pkgs/applications/editors/jetbrains/ides/gateway.nix index 4610e98e9a6b..bb51cce64b4c 100644 --- a/pkgs/applications/editors/jetbrains/ides/gateway.nix +++ b/pkgs/applications/editors/jetbrains/ides/gateway.nix @@ -12,20 +12,20 @@ let # update-script-start: urls urls = { x86_64-linux = { - url = "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.3.tar.gz"; - hash = "sha256-kMilT2GSRaVDXDQ/lPOVlatZzTy62laeKx4ovKzby0o="; + url = "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.3.1.tar.gz"; + hash = "sha256-j/WgB1G/b1x8RIXT1LWdcgISCCqHOmqLatfOzpV4T8Y="; }; aarch64-linux = { - url = "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.3-aarch64.tar.gz"; - hash = "sha256-IE7T9yYod9Ckaq8wxbr7cha06XNr6+5xQlyZPBhIavg="; + url = "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.3.1-aarch64.tar.gz"; + hash = "sha256-7UKtan4cuM7svjWayM2SThGemASTSrAxKVk0TUwEgbg="; }; x86_64-darwin = { - url = "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.3.dmg"; - hash = "sha256-KC/X8wLZWt7tAi+NbGedMpJ3j5YgU5SvUt0JD2IB8zg="; + url = "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.3.1.dmg"; + hash = "sha256-5Dnb9xwtAid63j6ntU5YIZN+oVLzZsXNJexGpL8m9sM="; }; aarch64-darwin = { - url = "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.3-aarch64.dmg"; - hash = "sha256-sQyr2pPIjSe8wTWkSh/Zj+YP6DBWBtbnWg1bc28N8nQ="; + url = "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.3.1-aarch64.dmg"; + hash = "sha256-24ZD2GpM4pGrJyqxyEJSQsERINR6/dNhLtd3WtzmNaU="; }; }; # update-script-end: urls @@ -40,8 +40,8 @@ mkJetBrainsProduct { productShort = "Gateway"; # update-script-start: version - version = "2025.3"; - buildNumber = "253.28294.342"; + version = "2025.3.1"; + buildNumber = "253.29346.239"; # update-script-end: version src = fetchurl (urls.${system} or (throw "Unsupported system: ${system}")); @@ -50,11 +50,11 @@ mkJetBrainsProduct { libgcc ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/remote-development/gateway/"; description = "Remote development for JetBrains products"; - longDescription = "JetBrains Gateway is a lightweight launcher that connects a remote server with your local machine, downloads necessary components on the backend, and opens your project in JetBrains Client."; + longDescription = "JetBrains Gateway is a lightweight launcher that connects a remote server with your local machine and opens your project in JetBrains Client."; maintainers = [ ]; license = lib.licenses.unfree; sourceProvenance = diff --git a/pkgs/applications/editors/jetbrains/ides/goland.nix b/pkgs/applications/editors/jetbrains/ides/goland.nix index e2ca7a5502ca..ed4ed7320743 100644 --- a/pkgs/applications/editors/jetbrains/ides/goland.nix +++ b/pkgs/applications/editors/jetbrains/ides/goland.nix @@ -12,20 +12,20 @@ let # update-script-start: urls urls = { x86_64-linux = { - url = "https://download.jetbrains.com/go/goland-2025.3.tar.gz"; - hash = "sha256-YVGFYobqVG64r5rrAldyzua9VxNPRUlKgY6NogqGkcY="; + url = "https://download.jetbrains.com/go/goland-2025.3.1.tar.gz"; + hash = "sha256-FhhHHmKbil4YZ2TdHPQBor2arTui/3j92Jb1Gncn+Uo="; }; aarch64-linux = { - url = "https://download.jetbrains.com/go/goland-2025.3-aarch64.tar.gz"; - hash = "sha256-xTDdS8x6B1oEC2SFnss0FCyPwDmWJcWhOuLXqPWXQ0A="; + url = "https://download.jetbrains.com/go/goland-2025.3.1-aarch64.tar.gz"; + hash = "sha256-5lsXviK9nwHogCCwVTkeqIBe1G/ZWDUzD3z7Hyx6y0Y="; }; x86_64-darwin = { - url = "https://download.jetbrains.com/go/goland-2025.3.dmg"; - hash = "sha256-4d9PELFYx3iHNlWWZiROmUUApA21sIZh4mkTV9Jp2/Q="; + url = "https://download.jetbrains.com/go/goland-2025.3.1.dmg"; + hash = "sha256-QBsP0ar6550uZpj1JEutHSRHMrgfDZI8fZ7sZ7uoulk="; }; aarch64-darwin = { - url = "https://download.jetbrains.com/go/goland-2025.3-aarch64.dmg"; - hash = "sha256-1O4gtcPfYVHTZtbMmwa5FUmf8MHrEYSqtToBB4kI7Ik="; + url = "https://download.jetbrains.com/go/goland-2025.3.1-aarch64.dmg"; + hash = "sha256-yVmu/WfRsERQkySjCWW3PB4p/XCOAHF8/g6Op1ibsFA="; }; }; # update-script-end: urls @@ -39,8 +39,8 @@ in product = "Goland"; # update-script-start: version - version = "2025.3"; - buildNumber = "253.28294.337"; + version = "2025.3.1"; + buildNumber = "253.29346.255"; # update-script-end: version src = fetchurl (urls.${system} or (throw "Unsupported system: ${system}")); @@ -53,12 +53,14 @@ in libgcc ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/go/"; description = "Go IDE from JetBrains"; - longDescription = "Goland is the codename for a new commercial IDE by JetBrains aimed at providing an ergonomic environment for Go development. - The new IDE extends the IntelliJ platform with the coding assistance and tool integrations specific for the Go language"; + longDescription = '' + Goland is a commercial IDE by JetBrains aimed at providing an ergonomic environment for Go development. + The IDE extends the IntelliJ platform with the coding assistance and tool integrations specific for the Go language. + ''; maintainers = with lib.maintainers; [ tymscar ]; license = lib.licenses.unfree; sourceProvenance = diff --git a/pkgs/applications/editors/jetbrains/ides/idea-oss.nix b/pkgs/applications/editors/jetbrains/ides/idea-oss.nix index e2ac3e14d325..25c3da649f0c 100644 --- a/pkgs/applications/editors/jetbrains/ides/idea-oss.nix +++ b/pkgs/applications/editors/jetbrains/ides/idea-oss.nix @@ -8,10 +8,10 @@ let src = mkJetBrainsSource { # update-script-start: source-args - version = "2025.3.1"; - buildNumber = "253.29346.138"; + version = "2025.3.1.1"; + buildNumber = "253.29346.240"; buildType = "idea"; - ideaHash = "sha256-eAq/lgv6ZcN9SR2E1KYnnhDHe/rBQ3GqqbbF6GstDoU="; + ideaHash = "sha256-L5O6QjDY3SqSQ1DnQTjIez7pIvPAdtOXP/+B05bAV+Q="; androidHash = "sha256-quMCzrjCKIo1pkzw4PWewAs5tz7A2aq7TI5zd+QaaUY="; jpsHash = "sha256-iHpt926BDLNUwHRXvkqVgwlWiLo1qSZEaGeJcS0Fjmk="; restarterHash = "sha256-acCmC58URd6p9uKZrm0qWgdZkqu9yqCs23v8qgxV2Ag="; @@ -57,11 +57,14 @@ mkJetBrainsProduct { ''--set M2 "${maven}/maven/bin"'' ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/idea/"; - description = "Free Java, Kotlin, Groovy and Scala IDE from Jetbrains (built from source)"; - longDescription = "IDE for Java SE, Groovy & Scala development Powerful environment for building Google Android apps Integration with JUnit, TestNG, popular SCMs, Ant & Maven. Also known as IntelliJ."; + description = "Free Java, Kotlin, Groovy and Scala IDE from JetBrains (built from source)"; + longDescription = '' + IDE for Java SE, Groovy & Scala development Powerful environment for building Google Android apps Integration with JUnit, TestNG, popular SCMs, Ant & Maven. + Also known as IntelliJ. + ''; maintainers = with lib.maintainers; [ gytis-ivaskevicius tymscar diff --git a/pkgs/applications/editors/jetbrains/ides/idea.nix b/pkgs/applications/editors/jetbrains/ides/idea.nix index beea85af05ef..07ecdd65c560 100644 --- a/pkgs/applications/editors/jetbrains/ides/idea.nix +++ b/pkgs/applications/editors/jetbrains/ides/idea.nix @@ -60,11 +60,14 @@ mkJetBrainsProduct { musl ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/idea/"; - description = "Java, Kotlin, Groovy and Scala IDE from Jetbrains"; - longDescription = "IDE for Java SE, Groovy & Scala development Powerful environment for building Google Android apps Integration with JUnit, TestNG, popular SCMs, Ant & Maven. Also known as IntelliJ."; + description = "Java, Kotlin, Groovy and Scala IDE from JetBrains"; + longDescription = '' + IDE for Java SE, Groovy & Scala development Powerful environment for building Google Android apps Integration with JUnit, TestNG, popular SCMs, Ant & Maven. + Also known as IntelliJ. + ''; maintainers = with lib.maintainers; [ gytis-ivaskevicius tymscar diff --git a/pkgs/applications/editors/jetbrains/ides/mps.nix b/pkgs/applications/editors/jetbrains/ides/mps.nix index d01b9ad29d85..52e18be29bcd 100644 --- a/pkgs/applications/editors/jetbrains/ides/mps.nix +++ b/pkgs/applications/editors/jetbrains/ides/mps.nix @@ -45,7 +45,7 @@ mkJetBrainsProduct { src = fetchurl (urls.${system} or (throw "Unsupported system: ${system}")); - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/mps/"; description = "IDE for building domain-specific languages from JetBrains"; diff --git a/pkgs/applications/editors/jetbrains/ides/phpstorm.nix b/pkgs/applications/editors/jetbrains/ides/phpstorm.nix index 3c05396678d4..a121ce982e89 100644 --- a/pkgs/applications/editors/jetbrains/ides/phpstorm.nix +++ b/pkgs/applications/editors/jetbrains/ides/phpstorm.nix @@ -12,20 +12,20 @@ let # update-script-start: urls urls = { x86_64-linux = { - url = "https://download.jetbrains.com/webide/PhpStorm-2025.3.1.tar.gz"; - hash = "sha256-/Yk3q2t5YFzvyZF//moI4FprfMAlb6IXhiPSTsMi+ik="; + url = "https://download.jetbrains.com/webide/PhpStorm-2025.3.1.1.tar.gz"; + hash = "sha256-u5b/elgB4/kMrgkgyqhz4L2BZqsNqt6Fwb+JIC1eSEk="; }; aarch64-linux = { - url = "https://download.jetbrains.com/webide/PhpStorm-2025.3.1-aarch64.tar.gz"; - hash = "sha256-dkhmf4W0xFkosE1MJvIogqiqZaeHpk+i96/+UaG8KmE="; + url = "https://download.jetbrains.com/webide/PhpStorm-2025.3.1.1-aarch64.tar.gz"; + hash = "sha256-iHIsnxTpuunA/L8/ZQsbQCqEfIu2lvtNNq9V0yPvBvY="; }; x86_64-darwin = { - url = "https://download.jetbrains.com/webide/PhpStorm-2025.3.1.dmg"; - hash = "sha256-EZiLzuXZSycepnrqzT6DYClZWmz+v+wmWVZfwYpK0tE="; + url = "https://download.jetbrains.com/webide/PhpStorm-2025.3.1.1.dmg"; + hash = "sha256-L4brbVVJgRgv/A2yu3oDGycWX6z5IiDf/7Zd/W2V2tk="; }; aarch64-darwin = { - url = "https://download.jetbrains.com/webide/PhpStorm-2025.3.1-aarch64.dmg"; - hash = "sha256-BFPgpu6Gw8v5e4xI8oJnUdgIW/ghG1QaBHUmIcWvFrw="; + url = "https://download.jetbrains.com/webide/PhpStorm-2025.3.1.1-aarch64.dmg"; + hash = "sha256-I1j18NK10Vda4F2VOIm3mvjqUvhFMc7OYq1NpyRG+bw="; }; }; # update-script-end: urls @@ -39,8 +39,8 @@ mkJetBrainsProduct { product = "PhpStorm"; # update-script-start: version - version = "2025.3.1"; - buildNumber = "253.29346.151"; + version = "2025.3.1.1"; + buildNumber = "253.29346.257"; # update-script-end: version src = fetchurl (urls.${system} or (throw "Unsupported system: ${system}")); @@ -49,11 +49,11 @@ mkJetBrainsProduct { musl ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/phpstorm/"; description = "PHP IDE from JetBrains"; - longDescription = "PhpStorm provides an editor for PHP, HTML and JavaScript with on-the-fly code analysis, error prevention and automated refactorings for PHP and JavaScript code. "; + longDescription = "PhpStorm provides an editor for PHP, HTML and JavaScript with on-the-fly code analysis, error prevention and automated refactorings for PHP and JavaScript code."; maintainers = with lib.maintainers; [ dritter tymscar diff --git a/pkgs/applications/editors/jetbrains/ides/pycharm-oss.nix b/pkgs/applications/editors/jetbrains/ides/pycharm-oss.nix index 9b79a69e0ed9..48b70636f4b5 100644 --- a/pkgs/applications/editors/jetbrains/ides/pycharm-oss.nix +++ b/pkgs/applications/editors/jetbrains/ides/pycharm-oss.nix @@ -50,11 +50,15 @@ in product = "PyCharm Open Source"; productShort = "PyCharm"; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/pycharm/"; description = "Free Python IDE from JetBrains (built from source)"; - longDescription = "Python IDE with complete set of tools for productive development with Python programming language. In addition, the IDE provides high-class capabilities for professional Web development with Django framework and Google App Engine. It has powerful coding assistance, navigation, a lot of refactoring features, tight integration with various Version Control Systems, Unit testing, powerful all-singing all-dancing Debugger and entire customization. PyCharm is developer driven IDE. It was developed with the aim of providing you almost everything you need for your comfortable and productive development!"; + longDescription = '' + Python IDE with complete set of tools for productive development with Python programming language. + In addition, the IDE provides high-class capabilities for professional Web development with Django framework and Google App Engine. + It has powerful coding assistance, navigation, a lot of refactoring features, tight integration with various Version Control Systems, Unit testing and powerful Debugger. + ''; maintainers = with lib.maintainers; [ genericnerdyusername tymscar diff --git a/pkgs/applications/editors/jetbrains/ides/pycharm.nix b/pkgs/applications/editors/jetbrains/ides/pycharm.nix index 222642ace59d..fdc519f52406 100644 --- a/pkgs/applications/editors/jetbrains/ides/pycharm.nix +++ b/pkgs/applications/editors/jetbrains/ides/pycharm.nix @@ -38,7 +38,6 @@ in wmClass = "jetbrains-pycharm"; product = "PyCharm"; - productShort = "PyCharm"; # update-script-start: version version = "2025.3.1"; @@ -51,11 +50,15 @@ in musl ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/pycharm/"; description = "Python IDE from JetBrains"; - longDescription = "Python IDE with complete set of tools for productive development with Python programming language. In addition, the IDE provides high-class capabilities for professional Web development with Django framework and Google App Engine. It has powerful coding assistance, navigation, a lot of refactoring features, tight integration with various Version Control Systems, Unit testing, powerful all-singing all-dancing Debugger and entire customization. PyCharm is developer driven IDE. It was developed with the aim of providing you almost everything you need for your comfortable and productive development!"; + longDescription = '' + Python IDE with complete set of tools for productive development with Python programming language. + In addition, the IDE provides high-class capabilities for professional Web development with Django framework and Google App Engine. + It has powerful coding assistance, navigation, a lot of refactoring features, tight integration with various Version Control Systems, Unit testing and powerful Debugger. + ''; maintainers = with lib.maintainers; [ genericnerdyusername tymscar diff --git a/pkgs/applications/editors/jetbrains/ides/rider.nix b/pkgs/applications/editors/jetbrains/ides/rider.nix index 9b454d68c509..5fde0c16fbff 100644 --- a/pkgs/applications/editors/jetbrains/ides/rider.nix +++ b/pkgs/applications/editors/jetbrains/ides/rider.nix @@ -78,11 +78,15 @@ in libX11 ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/rider/"; description = ".NET IDE from JetBrains"; - longDescription = "JetBrains Rider is a new .NET IDE based on the IntelliJ platform and ReSharper. Rider supports .NET Core, .NET Framework and Mono based projects. This lets you develop a wide array of applications including .NET desktop apps, services and libraries, Unity games, ASP.NET and ASP.NET Core web applications."; + longDescription = '' + JetBrains Rider is a new .NET IDE based on the IntelliJ platform and ReSharper. + Rider supports .NET Core, .NET Framework and Mono based projects. + This lets you develop a wide array of applications including .NET desktop apps, services and libraries, Unity games, ASP.NET and ASP.NET Core web applications. + ''; maintainers = with lib.maintainers; [ raphaelr ]; license = lib.licenses.unfree; sourceProvenance = diff --git a/pkgs/applications/editors/jetbrains/ides/ruby-mine.nix b/pkgs/applications/editors/jetbrains/ides/ruby-mine.nix index 84dc6cb1d887..5de4e0300216 100644 --- a/pkgs/applications/editors/jetbrains/ides/ruby-mine.nix +++ b/pkgs/applications/editors/jetbrains/ides/ruby-mine.nix @@ -49,7 +49,7 @@ mkJetBrainsProduct { musl ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/ruby/"; description = "Ruby IDE from JetBrains"; diff --git a/pkgs/applications/editors/jetbrains/ides/rust-rover.nix b/pkgs/applications/editors/jetbrains/ides/rust-rover.nix index 30289c80def1..613242d5b46b 100644 --- a/pkgs/applications/editors/jetbrains/ides/rust-rover.nix +++ b/pkgs/applications/editors/jetbrains/ides/rust-rover.nix @@ -63,7 +63,7 @@ in xz ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/rust/"; description = "Rust IDE from JetBrains"; diff --git a/pkgs/applications/editors/jetbrains/ides/webstorm.nix b/pkgs/applications/editors/jetbrains/ides/webstorm.nix index bce2d34a87b0..f702f1397bfe 100644 --- a/pkgs/applications/editors/jetbrains/ides/webstorm.nix +++ b/pkgs/applications/editors/jetbrains/ides/webstorm.nix @@ -49,7 +49,7 @@ mkJetBrainsProduct { musl ]; - # NOTE: meta attrs are currently used by the desktop entry, so changing them may cause rebuilds (see TODO in README) + # NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed meta = { homepage = "https://www.jetbrains.com/webstorm/"; description = "Web IDE from JetBrains"; diff --git a/pkgs/applications/editors/jetbrains/readme.md b/pkgs/applications/editors/jetbrains/readme.md index 220c2b210d9c..17960628356b 100644 --- a/pkgs/applications/editors/jetbrains/readme.md +++ b/pkgs/applications/editors/jetbrains/readme.md @@ -56,8 +56,6 @@ Any comments or other manual changes between these markers will be removed when - Add it to `default.nix` ### TODO: - - remove the usage of `meta.` properties for building the Linux desktop files - (JetBrains already provides their own Desktop files, we can just use those probably?) - drop the community IDEs - Switch `mkJetbrainsProduct` to use `lib.extendMkDerivation`, see also: - https://github.com/NixOS/nixpkgs/pull/475183#discussion_r2655305961 diff --git a/pkgs/applications/editors/jetbrains/source/idea_maven_artefacts.json b/pkgs/applications/editors/jetbrains/source/idea_maven_artefacts.json index 9d6faa4ef596..b810c902863c 100644 --- a/pkgs/applications/editors/jetbrains/source/idea_maven_artefacts.json +++ b/pkgs/applications/editors/jetbrains/source/idea_maven_artefacts.json @@ -1,133 +1,18 @@ [ { - "url": "commons-io/commons-io/2.18.0/commons-io-2.18.0.jar", - "hash": "f3ca0f8d63c40e23a56d54101c60d5edee136b42d84bfb85bc7963093109cf8b", - "path": "commons-io/commons-io/2.18.0/commons-io-2.18.0.jar" + "url": "org/jetbrains/kotlin/scripting-compiler-plugin-for-ide/2.3.20-ij253-45/scripting-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "75048ae78a873e992533ba3c376a65701cff28fbcafd79d587efc999a638e0bd", + "path": "org/jetbrains/kotlin/scripting-compiler-plugin-for-ide/2.3.20-ij253-45/scripting-compiler-plugin-for-ide-2.3.20-ij253-45.jar" }, { - "url": "org/jetbrains/intellij/deps/rwmutex-idea/0.0.10/rwmutex-idea-0.0.10.jar", - "hash": "61cd5eee5367d10e0cca664afdc4bbde2ff7aab9c175c5b520aac8b5315d874d", - "path": "org/jetbrains/intellij/deps/rwmutex-idea/0.0.10/rwmutex-idea-0.0.10.jar" + "url": "com/github/lamba92/kotlinx-document-store-mvstore/0.0.4/kotlinx-document-store-mvstore-0.0.4.jar", + "hash": "956a4c7faad66e3471861adaa278d9486f3a050ac25fb6a99ca90809d379adfe", + "path": "com/github/lamba92/kotlinx-document-store-mvstore/0.0.4/kotlinx-document-store-mvstore-0.0.4.jar" }, { - "url": "io/modelcontextprotocol/kotlin-sdk-jvm/0.8.1/kotlin-sdk-jvm-0.8.1.jar", - "hash": "095e5d11868ae359bd640c922c2d1ed7a20ba519496599ee697e81c468761339", - "path": "io/modelcontextprotocol/kotlin-sdk-jvm/0.8.1/kotlin-sdk-jvm-0.8.1.jar" - }, - { - "url": "io/modelcontextprotocol/kotlin-sdk-client-jvm/0.8.1/kotlin-sdk-client-jvm-0.8.1.jar", - "hash": "e88a667c25b8ebb7c81f76dd96cb34ea804754752b5533a842b99d0daea2be99", - "path": "io/modelcontextprotocol/kotlin-sdk-client-jvm/0.8.1/kotlin-sdk-client-jvm-0.8.1.jar" - }, - { - "url": "io/modelcontextprotocol/kotlin-sdk-server-jvm/0.8.1/kotlin-sdk-server-jvm-0.8.1.jar", - "hash": "6086acf1d65bca24de344b493e3fc241f0db2b25fa0606057eee39e3a2264737", - "path": "io/modelcontextprotocol/kotlin-sdk-server-jvm/0.8.1/kotlin-sdk-server-jvm-0.8.1.jar" - }, - { - "url": "io/modelcontextprotocol/kotlin-sdk-core-jvm/0.8.1/kotlin-sdk-core-jvm-0.8.1.jar", - "hash": "dd9a13ba6b0803040b6fea56b6db66bc9c4f31dacf678dac642aaaff8d88a543", - "path": "io/modelcontextprotocol/kotlin-sdk-core-jvm/0.8.1/kotlin-sdk-core-jvm-0.8.1.jar" - }, - { - "url": "com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.jar", - "hash": "c74a6c72221dfb76eb92f2bb40108ea561a7da2f315dc3b1e64afa8f077f210c", - "path": "com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.jar" - }, - { - "url": "org/jetbrains/intellij/deps/studio-test-platform/2025.1.2-287/studio-test-platform-2025.1.2-287.jar", - "hash": "146d8ebb454cccee149a81cc47026b6a576953aeb811f2ef6979bb44a5e4b50f", - "path": "org/jetbrains/intellij/deps/studio-test-platform/2025.1.2-287/studio-test-platform-2025.1.2-287.jar" - }, - { - "url": "com/github/marschall/memoryfilesystem/2.8.2/memoryfilesystem-2.8.2.jar", - "hash": "8b94840d71ad0caa36b3309425b2d23084bc8788ce84d71f2d805b0fc84d1f5a", - "path": "com/github/marschall/memoryfilesystem/2.8.2/memoryfilesystem-2.8.2.jar" - }, - { - "url": "com/googlecode/plist/dd-plist/1.28/dd-plist-1.28.jar", - "hash": "88ed8e730f7386297485176c4387146c6914a38c0e58fc296e8a01cdc3b621e1", - "path": "com/googlecode/plist/dd-plist/1.28/dd-plist-1.28.jar" - }, - { - "url": "org/jline/jline-terminal-jna/3.27.0/jline-terminal-jna-3.27.0.jar", - "hash": "e7322e6d8dc1bd69f507b91865af741af4a95c649ccab36e79e8be89696bb432", - "path": "org/jline/jline-terminal-jna/3.27.0/jline-terminal-jna-3.27.0.jar" - }, - { - "url": "net/java/dev/jna/jna/5.15.0/jna-5.15.0.jar", - "hash": "a564158d28ab5127fc6a958028ed54279fe0999662c46425b6a3b09a2a52094d", - "path": "net/java/dev/jna/jna/5.15.0/jna-5.15.0.jar" - }, - { - "url": "org/jline/jline-terminal/3.27.0/jline-terminal-3.27.0.jar", - "hash": "2f461c75091ec3810a42184afc80c96910f54e9dd2110e9ecb9902a5ee6c244b", - "path": "org/jline/jline-terminal/3.27.0/jline-terminal-3.27.0.jar" - }, - { - "url": "org/jline/jline-native/3.27.0/jline-native-3.27.0.jar", - "hash": "d8bc77bc80edc7d9a02a06a069b2d7085629421db0843aba7c153a869ffe525d", - "path": "org/jline/jline-native/3.27.0/jline-native-3.27.0.jar" - }, - { - "url": "io/kotest/kotest-assertions-core-jvm/5.5.4/kotest-assertions-core-jvm-5.5.4.jar", - "hash": "3acf3de882ec2c714dfc173cc382c38a5aee70c3f2bdda732583916845226d0c", - "path": "io/kotest/kotest-assertions-core-jvm/5.5.4/kotest-assertions-core-jvm-5.5.4.jar" - }, - { - "url": "io/kotest/kotest-assertions-shared-jvm/5.5.4/kotest-assertions-shared-jvm-5.5.4.jar", - "hash": "9977d913ef1fccf2e2663b5906d955fdf8215d0ec48265d669b01e05179e2043", - "path": "io/kotest/kotest-assertions-shared-jvm/5.5.4/kotest-assertions-shared-jvm-5.5.4.jar" - }, - { - "url": "org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar", - "hash": "58812de60898d976fb81ef3b62da05c6604c18fd4a249f5044282479fc286af2", - "path": "org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar" - }, - { - "url": "io/kotest/kotest-common-jvm/5.5.4/kotest-common-jvm-5.5.4.jar", - "hash": "a2a4d02b86b2e849e514d18dbdf4b29e2e9d091e3c6f4d9d028db9cdc55dd28b", - "path": "io/kotest/kotest-common-jvm/5.5.4/kotest-common-jvm-5.5.4.jar" - }, - { - "url": "io/kotest/kotest-assertions-api-jvm/5.5.4/kotest-assertions-api-jvm-5.5.4.jar", - "hash": "8b1c3e582e2f6f662261f3f45a6d723f3dd8d8b2b0b86a3f7d8e6c966eca0568", - "path": "io/kotest/kotest-assertions-api-jvm/5.5.4/kotest-assertions-api-jvm-5.5.4.jar" - }, - { - "url": "com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", - "hash": "4c7517e848a71b36d069d12bb3bf46a70fd4cda3105d822b0ed2e19c00b69291", - "path": "com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar" - }, - { - "url": "org/jetbrains/markdown-jvm/0.7.2/markdown-jvm-0.7.2.jar", - "hash": "02e0f9bf95e4b9f81e34593691a5c0ff14604db39fb8446fe9a4efa66553f3ac", - "path": "org/jetbrains/markdown-jvm/0.7.2/markdown-jvm-0.7.2.jar" - }, - { - "url": "org/assertj/assertj-swing/3.17.1/assertj-swing-3.17.1.jar", - "hash": "e36445438d72d83cc48015dcb3f14d9a97eaa42c4663a9826db2bb50e4c7713b", - "path": "org/assertj/assertj-swing/3.17.1/assertj-swing-3.17.1.jar" - }, - { - "url": "io/grpc/grpc-netty-shaded/1.73.0/grpc-netty-shaded-1.73.0.jar", - "hash": "8328289ba6b73445e982a1cadf8e651ea65354e288c825a43e7c77f16da8a056", - "path": "io/grpc/grpc-netty-shaded/1.73.0/grpc-netty-shaded-1.73.0.jar" - }, - { - "url": "io/grpc/grpc-util/1.73.0/grpc-util-1.73.0.jar", - "hash": "b7df6cbcc30b7a3219f06483a9a9d320a431beda8a1ace5b16d879f84112373f", - "path": "io/grpc/grpc-util/1.73.0/grpc-util-1.73.0.jar" - }, - { - "url": "io/netty/netty-codec-protobuf/4.2.0.RC2/netty-codec-protobuf-4.2.0.RC2.jar", - "hash": "c5fb188895ffdfd529473c5e7ba1c58da2f514a44134b15ad0d51efe3f28bb38", - "path": "io/netty/netty-codec-protobuf/4.2.0.RC2/netty-codec-protobuf-4.2.0.RC2.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-build-common-tests-for-ide/2.3.20-ij253-45/kotlin-build-common-tests-for-ide-2.3.20-ij253-45.jar", - "hash": "c5d0331fb960fbb5e392118d1322e905f37be1b0b0abd6121d06caade7cc9b16", - "path": "org/jetbrains/kotlin/kotlin-build-common-tests-for-ide/2.3.20-ij253-45/kotlin-build-common-tests-for-ide-2.3.20-ij253-45.jar" + "url": "com/github/lamba92/kotlinx-document-store-core-jvm/0.0.4/kotlinx-document-store-core-jvm-0.0.4.jar", + "hash": "7e638082b4a14e3a96ca90f3f5db70ac65591e0b6c6670629e849d22ec34455f", + "path": "com/github/lamba92/kotlinx-document-store-core-jvm/0.0.4/kotlinx-document-store-core-jvm-0.0.4.jar" }, { "url": "com/android/tools/smali/smali-dexlib2/3.0.3/smali-dexlib2-3.0.3.jar", @@ -135,54 +20,119 @@ "path": "com/android/tools/smali/smali-dexlib2/3.0.3/smali-dexlib2-3.0.3.jar" }, { - "url": "com/jetbrains/rd/rd-framework/2025.3.1/rd-framework-2025.3.1.jar", - "hash": "85f2a329245e4a6a1e4552ac62db4c1f23b6f02bf3c96e4df8240668187c848a", - "path": "com/jetbrains/rd/rd-framework/2025.3.1/rd-framework-2025.3.1.jar" + "url": "io/netty/netty-codec-protobuf/4.2.0.RC2/netty-codec-protobuf-4.2.0.RC2.jar", + "hash": "c5fb188895ffdfd529473c5e7ba1c58da2f514a44134b15ad0d51efe3f28bb38", + "path": "io/netty/netty-codec-protobuf/4.2.0.RC2/netty-codec-protobuf-4.2.0.RC2.jar" }, { - "url": "org/jetbrains/intellij/deps/completion/ngram-slp/0.0.3/ngram-slp-0.0.3.jar", - "hash": "4ac10d8fb7e6326e09179fd83e664610a3362dc1d661fb32e5b2a19bcb9fc867", - "path": "org/jetbrains/intellij/deps/completion/ngram-slp/0.0.3/ngram-slp-0.0.3.jar" + "url": "net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar", + "hash": "f264dd9f79a1fde10ce5ecc53221eff24be4c9331c830b7d52f2f08a7b633de2", + "path": "net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar" }, { - "url": "org/jetbrains/kotlin/analysis-api-fe10-for-ide/2.3.20-ij253-45/analysis-api-fe10-for-ide-2.3.20-ij253-45.jar", - "hash": "cbf24708e46c2e064a37887d5b53d1234ba2b3c1d285ecc9ba82cb6152076297", - "path": "org/jetbrains/kotlin/analysis-api-fe10-for-ide/2.3.20-ij253-45/analysis-api-fe10-for-ide-2.3.20-ij253-45.jar" + "url": "org/testcontainers/junit-jupiter/1.20.3/junit-jupiter-1.20.3.jar", + "hash": "3b0f0422993e571f3460d8436a0e56538bd474147084a6cbb244a6d5cb1a01a5", + "path": "org/testcontainers/junit-jupiter/1.20.3/junit-jupiter-1.20.3.jar" }, { - "url": "org/jetbrains/kotlin/symbol-light-classes-for-ide/2.3.20-ij253-45/symbol-light-classes-for-ide-2.3.20-ij253-45.jar", - "hash": "298e61756dab332adc36712f14803e47f65f114f736c41cace04eaef2cce380e", - "path": "org/jetbrains/kotlin/symbol-light-classes-for-ide/2.3.20-ij253-45/symbol-light-classes-for-ide-2.3.20-ij253-45.jar" + "url": "org/jetbrains/kotlin/allopen-compiler-plugin-for-ide/2.3.20-ij253-45/allopen-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "f7374912dbbcfc18686114a78804a7f4ba91aa54b6f3bf4be10a54bb643f8a61", + "path": "org/jetbrains/kotlin/allopen-compiler-plugin-for-ide/2.3.20-ij253-45/allopen-compiler-plugin-for-ide-2.3.20-ij253-45.jar" }, { - "url": "io/mockk/mockk-jvm/1.14.5/mockk-jvm-1.14.5.jar", - "hash": "74deb86cbab6871a3e4d0f97ba8eacbdae7aacd7537f142bcb083590465a6219", - "path": "io/mockk/mockk-jvm/1.14.5/mockk-jvm-1.14.5.jar" + "url": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar", + "hash": "fa4e6165b5ad4bf5db337ebd5f16f9b596dc5e401fbea343b9deacb6138240af", + "path": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar" }, { - "url": "io/mockk/mockk-dsl-jvm/1.14.5/mockk-dsl-jvm-1.14.5.jar", - "hash": "d01d6ce85f9824d8ddb22ea7f1bccd581b831ffad504f48a4f18abf9bc6f2eac", - "path": "io/mockk/mockk-dsl-jvm/1.14.5/mockk-dsl-jvm-1.14.5.jar" + "url": "org/jetbrains/kotlinx/kotlinx-io-core-jvm/0.7.0/kotlinx-io-core-jvm-0.7.0.jar", + "hash": "6ededc9be4d878aea80c7dd609f91bfc47fcd3d36cc91fd0f3f328fbd6656c8f", + "path": "org/jetbrains/kotlinx/kotlinx-io-core-jvm/0.7.0/kotlinx-io-core-jvm-0.7.0.jar" }, { - "url": "io/mockk/mockk-agent-jvm/1.14.5/mockk-agent-jvm-1.14.5.jar", - "hash": "9f78e9988e84c98569edcf9a6225d5b7354939529642e54c2c58da3ef3913106", - "path": "io/mockk/mockk-agent-jvm/1.14.5/mockk-agent-jvm-1.14.5.jar" + "url": "org/jetbrains/kotlinx/kotlinx-io-bytestring-jvm/0.7.0/kotlinx-io-bytestring-jvm-0.7.0.jar", + "hash": "ea38a66b0ff46ed82dded9e81d2dce70e5fbe03bd6cc52b4fc8869381dea7b7d", + "path": "org/jetbrains/kotlinx/kotlinx-io-bytestring-jvm/0.7.0/kotlinx-io-bytestring-jvm-0.7.0.jar" }, { - "url": "io/mockk/mockk-agent-api-jvm/1.14.5/mockk-agent-api-jvm-1.14.5.jar", - "hash": "a919a8fec03dfb0c084cb43dafcebe2dd9351431c7a08c2fc8147037de1d06b7", - "path": "io/mockk/mockk-agent-api-jvm/1.14.5/mockk-agent-api-jvm-1.14.5.jar" + "url": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar", + "hash": "a2ae8a338bb1d446d16dcfea2189ef5a5be31a88123b3879562b7955667a5639", + "path": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar" }, { - "url": "io/mockk/mockk-core-jvm/1.14.5/mockk-core-jvm-1.14.5.jar", - "hash": "060fffe7452e74f6e18bb9dfe1221e92c4ec0de29a84b022fb562ec6cd954691", - "path": "io/mockk/mockk-core-jvm/1.14.5/mockk-core-jvm-1.14.5.jar" + "url": "org/jetbrains/kotlin/kotlin-build-common-tests-for-ide/2.3.20-ij253-45/kotlin-build-common-tests-for-ide-2.3.20-ij253-45.jar", + "hash": "c5d0331fb960fbb5e392118d1322e905f37be1b0b0abd6121d06caade7cc9b16", + "path": "org/jetbrains/kotlin/kotlin-build-common-tests-for-ide/2.3.20-ij253-45/kotlin-build-common-tests-for-ide-2.3.20-ij253-45.jar" }, { - "url": "org/jetbrains/kotlin/kotlin-jps-plugin-classpath/2.2.20/kotlin-jps-plugin-classpath-2.2.20.jar", - "hash": "fa31a084adbecaaf98166e734fba1bf964e04e22671d70230ed9598cecd22124", - "path": "org/jetbrains/kotlin/kotlin-jps-plugin-classpath/2.2.20/kotlin-jps-plugin-classpath-2.2.20.jar" + "url": "com/google/guava/guava-testlib/33.0.0-jre/guava-testlib-33.0.0-jre.jar", + "hash": "79626019fed282b70eef91f645a9febd5f6b9f7be46484b6b328313a481f05f0", + "path": "com/google/guava/guava-testlib/33.0.0-jre/guava-testlib-33.0.0-jre.jar" + }, + { + "url": "io/netty/netty-codec-http2/4.2.0.RC2/netty-codec-http2-4.2.0.RC2.jar", + "hash": "c542657efd81b268535fb77e1866c8234c5a22de416ecbd8aea0e06e2c1588de", + "path": "io/netty/netty-codec-http2/4.2.0.RC2/netty-codec-http2-4.2.0.RC2.jar" + }, + { + "url": "io/netty/netty-transport/4.2.0.RC2/netty-transport-4.2.0.RC2.jar", + "hash": "9c86cf3a130237b059f5ef89661a4fbe715f5e8bce9626a6aded95a1c3775a47", + "path": "io/netty/netty-transport/4.2.0.RC2/netty-transport-4.2.0.RC2.jar" + }, + { + "url": "io/netty/netty-resolver/4.2.0.RC2/netty-resolver-4.2.0.RC2.jar", + "hash": "10fa70357cbfd55f52d64cf4bb4011e01ced0e0e5dea0bac77f73908cef676ff", + "path": "io/netty/netty-resolver/4.2.0.RC2/netty-resolver-4.2.0.RC2.jar" + }, + { + "url": "io/netty/netty-codec/4.2.0.RC2/netty-codec-4.2.0.RC2.jar", + "hash": "b94f2d169acd04e8a41f1082e8f522529be1f5a10515473de9fb8d259afbfc77", + "path": "io/netty/netty-codec/4.2.0.RC2/netty-codec-4.2.0.RC2.jar" + }, + { + "url": "io/netty/netty-codec-base/4.2.0.RC2/netty-codec-base-4.2.0.RC2.jar", + "hash": "f39581a55f89fb0586373e237e1e4a9d5e2fe3b94167c7a6762552651e5a6038", + "path": "io/netty/netty-codec-base/4.2.0.RC2/netty-codec-base-4.2.0.RC2.jar" + }, + { + "url": "io/netty/netty-handler/4.2.0.RC2/netty-handler-4.2.0.RC2.jar", + "hash": "3f1912b14a2fdd7ad2ef0bda9eeb1ae544c463857081d7dd69f9aa2b7137de6e", + "path": "io/netty/netty-handler/4.2.0.RC2/netty-handler-4.2.0.RC2.jar" + }, + { + "url": "io/netty/netty-transport-native-unix-common/4.2.0.RC2/netty-transport-native-unix-common-4.2.0.RC2.jar", + "hash": "dfc1db2a05dafeba40987a76591004cc72d4a27062d874961fadc5059900f65d", + "path": "io/netty/netty-transport-native-unix-common/4.2.0.RC2/netty-transport-native-unix-common-4.2.0.RC2.jar" + }, + { + "url": "io/netty/netty-codec-http/4.2.0.RC2/netty-codec-http-4.2.0.RC2.jar", + "hash": "a44d21dff0254e4f4f9ceb7870e8b27a403d7f1d6325ab03ae6c045302957761", + "path": "io/netty/netty-codec-http/4.2.0.RC2/netty-codec-http-4.2.0.RC2.jar" + }, + { + "url": "org/objenesis/objenesis/3.4/objenesis-3.4.jar", + "hash": "95488102feaf2e2858adf6b299353677dac6c15294006f8ed1c5556f8e3cd251", + "path": "org/objenesis/objenesis/3.4/objenesis-3.4.jar" + }, + { + "url": "org/jetbrains/intellij/deps/studio-platform/2025.1.2-287/studio-platform-2025.1.2-287.jar", + "hash": "21a748abc565fd6d97d90f2547d0fd1da36810171050b2a337cbc02799cfe482", + "path": "org/jetbrains/intellij/deps/studio-platform/2025.1.2-287/studio-platform-2025.1.2-287.jar" + }, + { + "url": "net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", + "hash": "be5805392060c71474bf6c9a67a099471274d30b83eef84bfc4e0889a4f1dcc0", + "path": "net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar" + }, + { + "url": "io/github/smiley4/schema-kenerator-core/2.2.0/schema-kenerator-core-2.2.0.jar", + "hash": "c1c197ed03acaf46773176a001836219b6299fe267dc4751c2c28ae98edfa0f3", + "path": "io/github/smiley4/schema-kenerator-core/2.2.0/schema-kenerator-core-2.2.0.jar" + }, + { + "url": "app/cash/turbine/turbine-jvm/1.0.0/turbine-jvm-1.0.0.jar", + "hash": "41984dffaf069b84b814fa787f740bf7ebdc90bf89f69d05bc4660c69874b49e", + "path": "app/cash/turbine/turbine-jvm/1.0.0/turbine-jvm-1.0.0.jar" }, { "url": "io/ktor/ktor-server-cio-jvm/3.1.3/ktor-server-cio-jvm-3.1.3.jar", @@ -240,119 +190,84 @@ "path": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar" }, { - "url": "com/fasterxml/jackson/core/jackson-databind/2.19.0/jackson-databind-2.19.0.jar", - "hash": "ceda311f476c3b18e1d2b240c94e2dcb9c8d44e70f8afa9facab88bac4ddc03a", - "path": "com/fasterxml/jackson/core/jackson-databind/2.19.0/jackson-databind-2.19.0.jar" + "url": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar", + "hash": "33333937b98fc0c8e943ee4b10b3ea66b49782dfb569c44c142da4f32d85dffc", + "path": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar" }, { - "url": "com/fasterxml/jackson/core/jackson-annotations/2.19.0/jackson-annotations-2.19.0.jar", - "hash": "ead60e9cac0e42b57092b9e2d087ff43536e9477d4486ba393037a8cc156cda7", - "path": "com/fasterxml/jackson/core/jackson-annotations/2.19.0/jackson-annotations-2.19.0.jar" + "url": "org/jruby/joni/joni/2.2.3/joni-2.2.3.jar", + "hash": "7ea54221f5f91deff2e860fe986eefe208b59fa04300e54c505c5c0c08d55e9a", + "path": "org/jruby/joni/joni/2.2.3/joni-2.2.3.jar" }, { - "url": "com/jetbrains/rd/rd-text/2025.3.1/rd-text-2025.3.1.jar", - "hash": "e465ab42d9c79cdec7147c8210f8e65d5f816704d47b959ac9f2cfc3f68dedb5", - "path": "com/jetbrains/rd/rd-text/2025.3.1/rd-text-2025.3.1.jar" + "url": "org/jruby/jcodings/jcodings/1.0.61/jcodings-1.0.61.jar", + "hash": "3238c68a2f86cec53cc184ad26df8352db87bb22a419bd17fb4acdfbb0bc40f0", + "path": "org/jruby/jcodings/jcodings/1.0.61/jcodings-1.0.61.jar" }, { - "url": "org/slf4j/log4j-over-slf4j/1.7.36/log4j-over-slf4j-1.7.36.jar", - "hash": "0a7e032bf5bcdd5b2bf8bf2e5cf02c5646f2aa6fee66933b8150dbe84e651e8a", - "path": "org/slf4j/log4j-over-slf4j/1.7.36/log4j-over-slf4j-1.7.36.jar" + "url": "io/cucumber/cucumber-core/1.2.6/cucumber-core-1.2.6.jar", + "hash": "ace77c533236213a1aa9f68b8de10e564da809605371ef2f8c73cd8f4c71293a", + "path": "io/cucumber/cucumber-core/1.2.6/cucumber-core-1.2.6.jar" }, { - "url": "com/jcraft/jzlib/1.1.3/jzlib-1.1.3.jar", - "hash": "89b1360f407381bf61fde411019d8cbd009ebb10cff715f3669017a031027560", - "path": "com/jcraft/jzlib/1.1.3/jzlib-1.1.3.jar" + "url": "info/cukes/gherkin/2.12.2/gherkin-2.12.2.jar", + "hash": "0a5ebc0506ab1e4a08af1ca150f797304ff53b953c5b1f6fcf1f81551d964aad", + "path": "info/cukes/gherkin/2.12.2/gherkin-2.12.2.jar" }, { - "url": "com/intellij/platform/kotlinx-coroutines-slf4j/1.10.1-intellij-5/kotlinx-coroutines-slf4j-1.10.1-intellij-5.jar", - "hash": "1d68dfc6ba67ec96ecb5a373dbd9fb557ce2210ffc2d74d6b528e4f1f73e7003", - "path": "com/intellij/platform/kotlinx-coroutines-slf4j/1.10.1-intellij-5/kotlinx-coroutines-slf4j-1.10.1-intellij-5.jar" + "url": "com/intellij/platform/kotlinx-coroutines-test-jvm/1.10.1-intellij-5/kotlinx-coroutines-test-jvm-1.10.1-intellij-5.jar", + "hash": "98b5c1291d9e473ce6df9823781a8a2170f1dfb4c30d985c56ff5242df2ff8f5", + "path": "com/intellij/platform/kotlinx-coroutines-test-jvm/1.10.1-intellij-5/kotlinx-coroutines-test-jvm-1.10.1-intellij-5.jar" }, { - "url": "org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar", - "hash": "d401243d5c6eae928a37121b6e819158c8c32ea0584793e7285bb489ab2a3d17", - "path": "org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar" + "url": "org/codehaus/groovy/groovy-templates/3.0.25/groovy-templates-3.0.25.jar", + "hash": "fd0e111cae80bd6285677759b72cb67e7da68ee779a90e51bee12a7011c28436", + "path": "org/codehaus/groovy/groovy-templates/3.0.25/groovy-templates-3.0.25.jar" }, { - "url": "org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", - "hash": "c8bc7e1c51a6d4ce72f40d2ebbabf1c4b68bfe76e732104b04381b493478e9d6", - "path": "org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar" + "url": "org/jetbrains/kotlin/kotlin-compiler-cli-for-ide/2.3.20-ij253-45/kotlin-compiler-cli-for-ide-2.3.20-ij253-45.jar", + "hash": "fd9db5d6b301967133bc977935d22295e247ed2ccefc2583942ef7376fd598c1", + "path": "org/jetbrains/kotlin/kotlin-compiler-cli-for-ide/2.3.20-ij253-45/kotlin-compiler-cli-for-ide-2.3.20-ij253-45.jar" }, { - "url": "org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", - "hash": "6c9b3dd142a09dc468e23ad39aad6f75a0f2b85125104469f026e52a474e464f", - "path": "org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar" + "url": "com/esotericsoftware/kryo5/5.6.0/kryo5-5.6.0.jar", + "hash": "2ceef6a5a0527ad89ab6d1fd71bba4fef355cded510970c650d1443412b18dc5", + "path": "com/esotericsoftware/kryo5/5.6.0/kryo5-5.6.0.jar" }, { - "url": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.20-dev-8162/kotlin-gradle-plugin-idea-proto-1.9.20-dev-8162.jar", - "hash": "3841d6ad1fdd4bf90143ac6012146d291409b431e837f143c023135bd24b79a6", - "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.20-dev-8162/kotlin-gradle-plugin-idea-proto-1.9.20-dev-8162.jar" + "url": "com/github/oshi/oshi-core/6.8.2/oshi-core-6.8.2.jar", + "hash": "9403c2537ac0dd425e556dfc3434e5d9f9a9547312472f4c27b7ab2673e9e862", + "path": "com/github/oshi/oshi-core/6.8.2/oshi-core-6.8.2.jar" }, { - "url": "org/apache/lucene/lucene-queries/10.3.0/lucene-queries-10.3.0.jar", - "hash": "c0c5891b390759a0cf503c7864e6eb4d8447cc8df20806a4254bfdf3d2f43a91", - "path": "org/apache/lucene/lucene-queries/10.3.0/lucene-queries-10.3.0.jar" + "url": "jetbrains/fleet/noria-compiler-plugin/2.2.20-0.1/noria-compiler-plugin-2.2.20-0.1.jar", + "hash": "dda6a96d529f473c952ba7e8205509de29725ad40eff80af7d371df95ccb14c1", + "path": "jetbrains/fleet/noria-compiler-plugin/2.2.20-0.1/noria-compiler-plugin-2.2.20-0.1.jar" }, { - "url": "org/jetbrains/kotlinx/kotlinx-datetime-jvm/0.6.2/kotlinx-datetime-jvm-0.6.2.jar", - "hash": "102764921129e1e44a74f408b7a0b8dac6d1892c6042e0e48f8bdbbbf78c6d2e", - "path": "org/jetbrains/kotlinx/kotlinx-datetime-jvm/0.6.2/kotlinx-datetime-jvm-0.6.2.jar" + "url": "org/apache/lucene/lucene-suggest/10.3.0/lucene-suggest-10.3.0.jar", + "hash": "4b53bf7160e8cdf2ae6bf1a27018bb4fbfdb1841fbdad988c5ff71c7920f4a84", + "path": "org/apache/lucene/lucene-suggest/10.3.0/lucene-suggest-10.3.0.jar" }, { - "url": "org/jetbrains/kotlin/compose-compiler-plugin-for-ide/2.3.20-ij253-45/compose-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "84612c6b067f7018325c00975bb49a35e1947d8de1c03009e999b746219105f4", - "path": "org/jetbrains/kotlin/compose-compiler-plugin-for-ide/2.3.20-ij253-45/compose-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + "url": "io/grpc/grpc-stub/1.73.0/grpc-stub-1.73.0.jar", + "hash": "050fe139de47d8937e6b0080e8dff3d0f42df6782f147c10bb298c0e9cd94b2f", + "path": "io/grpc/grpc-stub/1.73.0/grpc-stub-1.73.0.jar" }, { - "url": "org/jetbrains/kotlin/incremental-compilation-impl-tests-for-ide/2.3.20-ij253-45/incremental-compilation-impl-tests-for-ide-2.3.20-ij253-45.jar", - "hash": "9d2369a7e71ff367dbed384ee50976c25743b09e4be68a58f9412ad165d8e0d7", - "path": "org/jetbrains/kotlin/incremental-compilation-impl-tests-for-ide/2.3.20-ij253-45/incremental-compilation-impl-tests-for-ide-2.3.20-ij253-45.jar" + "url": "ai/grazie/grazie-rule-engine/0.3.11/grazie-rule-engine-0.3.11.jar", + "hash": "54b321650a50f78ceee6bd06653ee3cea0b19db5fe95e3c3a109e6af4a20126c", + "path": "ai/grazie/grazie-rule-engine/0.3.11/grazie-rule-engine-0.3.11.jar" }, { - "url": "org/junit/jupiter/junit-jupiter-api/6.0.0/junit-jupiter-api-6.0.0.jar", - "hash": "88d690d2d373cd66170770c317977196ce9e465f2388930f4bc9665e887385f6", - "path": "org/junit/jupiter/junit-jupiter-api/6.0.0/junit-jupiter-api-6.0.0.jar" + "url": "net/fellbaum/jemoji/1.3.1/jemoji-1.3.1.jar", + "hash": "80a2f8918240a07d3a6fc7cdcc543d278013f6943c080835e43a22fc90462a9f", + "path": "net/fellbaum/jemoji/1.3.1/jemoji-1.3.1.jar" }, { - "url": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar", - "hash": "48e2df636cab6563ced64dcdff8abb2355627cb236ef0bf37598682ddf742f1b", - "path": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar" - }, - { - "url": "org/junit/platform/junit-platform-commons/6.0.0/junit-platform-commons-6.0.0.jar", - "hash": "86e8faf87f3151a3d545850852a0f2cc55ea8a2434eee9e08f83881c52d55992", - "path": "org/junit/platform/junit-platform-commons/6.0.0/junit-platform-commons-6.0.0.jar" - }, - { - "url": "org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar", - "hash": "b509448ac506d607319f182537f0b35d71007582ec741832a1f111e5b5b70b38", - "path": "org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar" - }, - { - "url": "org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar", - "hash": "1fad6e6be7557781e4d33729d49ae1cdc8fdda6fe477bb0cc68ce351eafdfbab", - "path": "org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-scripting-compiler-impl/2.3.20-ij253-45/kotlin-scripting-compiler-impl-2.3.20-ij253-45.jar", - "hash": "c2b19162264b2aa78371cd834f8703e1c49c032ec9862cdb9b744a4a2a8e7ded", - "path": "org/jetbrains/kotlin/kotlin-scripting-compiler-impl/2.3.20-ij253-45/kotlin-scripting-compiler-impl-2.3.20-ij253-45.jar" - }, - { - "url": "org/junit/jupiter/junit-jupiter-engine/5.13.4/junit-jupiter-engine-5.13.4.jar", - "hash": "027404a92fe618b72465792a257951495c503a7d5751e2791e0f51c87f67f5bc", - "path": "org/junit/jupiter/junit-jupiter-engine/5.13.4/junit-jupiter-engine-5.13.4.jar" - }, - { - "url": "org/codehaus/groovy/groovy/3.0.25/groovy-3.0.25.jar", - "hash": "ad009e985dd84e4f524f4ed1751866da5bef816b691851bfbcefa48a01180a07", - "path": "org/codehaus/groovy/groovy/3.0.25/groovy-3.0.25.jar" - }, - { - "url": "org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar", - "hash": "293d80f54b536b74095dcd7ea3cf0a29bbfc3402519281332495f4420d370d16", - "path": "org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar" + "url": "io/ktor/ktor-client-mock-jvm/3.1.3/ktor-client-mock-jvm-3.1.3.jar", + "hash": "2ae0d57bb9fceb8ee2aeda6536acc6f3e1de355984b4c9da720566b85f1525e8", + "path": "io/ktor/ktor-client-mock-jvm/3.1.3/ktor-client-mock-jvm-3.1.3.jar" }, { "url": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar", @@ -360,14 +275,24 @@ "path": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar" }, { - "url": "org/jetbrains/intellij/deps/jb-jdi/2.45/jb-jdi-2.45.jar", - "hash": "f31793446f372ee33659fc7a4ce93a079fa520ae89ddf6f6280ea50425c408d4", - "path": "org/jetbrains/intellij/deps/jb-jdi/2.45/jb-jdi-2.45.jar" + "url": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar", + "hash": "33333937b98fc0c8e943ee4b10b3ea66b49782dfb569c44c142da4f32d85dffc", + "path": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar" }, { - "url": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar", - "hash": "f67507a3e8bf52aa08d753682e6cdda0194e3abe750118b99c9336953e598be9", - "path": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar" + "url": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar", + "hash": "bb2fb6c00afaa34b539cb30e7584d37bfcba171c266bbdb9990e003579dc24c1", + "path": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar", + "hash": "746e2a3dece87379d64c40999401969001d373de1458fe851c0d2e0f880b42ef", + "path": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar", + "hash": "b04aede18e9c008168096dc53a3fc016177b61a5ec3024afbf8caca0cd5dbf42", + "path": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar" }, { "url": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar", @@ -375,134 +300,39 @@ "path": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar" }, { - "url": "org/apache/lucene/lucene-queryparser/10.3.0/lucene-queryparser-10.3.0.jar", - "hash": "b4b57bc3d56c5a1ccc674f55a16086c37700eb151fa749b45887e391ec0f26f9", - "path": "org/apache/lucene/lucene-queryparser/10.3.0/lucene-queryparser-10.3.0.jar" + "url": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar", + "hash": "da7069c6e78809d7c37d104e415613cbd4cd5cec1ed54a332cb64ef6a864a060", + "path": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar" }, { - "url": "com/google/jimfs/jimfs/1.1/jimfs-1.1.jar", - "hash": "c4828e28d7c0a930af9387510b3bada7daa5c04d7c25a75c7b8b081f1c257ddd", - "path": "com/google/jimfs/jimfs/1.1/jimfs-1.1.jar" + "url": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar", + "hash": "67f0f566e2ed51717f6ed55f6d2b4dee1c84be4ea2cd96fc636d0bdf0fd43067", + "path": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar" }, { - "url": "org/apache/lucene/lucene-memory/10.3.0/lucene-memory-10.3.0.jar", - "hash": "ea77d0b2eb0b3e1f7fa04f2fbe671f5af3ae836cc40320411e195bdc9421f17b", - "path": "org/apache/lucene/lucene-memory/10.3.0/lucene-memory-10.3.0.jar" + "url": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar", + "hash": "0d704bc1148a8fd9a1f2005e0b5189cdaed3030efe24b8236459c41c356f5620", + "path": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar" }, { - "url": "org/jetbrains/kotlin/noarg-compiler-plugin-for-ide/2.3.20-ij253-45/noarg-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "261a90d908355e185f0a291aa71b3ce1f4e3c67aa31411244ef8c124958b0c77", - "path": "org/jetbrains/kotlin/noarg-compiler-plugin-for-ide/2.3.20-ij253-45/noarg-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + "url": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar", + "hash": "ef28b4f12054ee125765b72fe3230e215a60b73b2ff2072a5c280fcf09329077", + "path": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar" }, { - "url": "io/ktor/ktor-serialization-kotlinx-json-jvm/3.1.3/ktor-serialization-kotlinx-json-jvm-3.1.3.jar", - "hash": "9b810f01caa6e3f27e02d71caba8595e2b4b04071dba16e0e426e20115bed354", - "path": "io/ktor/ktor-serialization-kotlinx-json-jvm/3.1.3/ktor-serialization-kotlinx-json-jvm-3.1.3.jar" + "url": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar", + "hash": "a2ae8a338bb1d446d16dcfea2189ef5a5be31a88123b3879562b7955667a5639", + "path": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar" }, { - "url": "io/ktor/ktor-serialization-kotlinx-jvm/3.1.3/ktor-serialization-kotlinx-jvm-3.1.3.jar", - "hash": "b4dc2f9d4d1dda8d481a054d7f833ba195f064f5115fde3ab0dfdb8b42f61fda", - "path": "io/ktor/ktor-serialization-kotlinx-jvm/3.1.3/ktor-serialization-kotlinx-jvm-3.1.3.jar" + "url": "com/fasterxml/jackson/datatype/jackson-datatype-joda/2.19.0/jackson-datatype-joda-2.19.0.jar", + "hash": "585fbc8bb26dffa4a3174d74352dd3e29cba990a9c1b06c1a547906aff2869ec", + "path": "com/fasterxml/jackson/datatype/jackson-datatype-joda/2.19.0/jackson-datatype-joda-2.19.0.jar" }, { - "url": "junit/junit/4.13.2/junit-4.13.2.jar", - "hash": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3", - "path": "junit/junit/4.13.2/junit-4.13.2.jar" - }, - { - "url": "org/jetbrains/packagesearch/packagesearch-api-client-jvm/3.4.0/packagesearch-api-client-jvm-3.4.0.jar", - "hash": "9d0f4c74e96787499fcc2462c32afeb7f4db97db30042e2578f205f61e5898fb", - "path": "org/jetbrains/packagesearch/packagesearch-api-client-jvm/3.4.0/packagesearch-api-client-jvm-3.4.0.jar" - }, - { - "url": "org/jetbrains/packagesearch/packagesearch-http-models-jvm/3.4.0/packagesearch-http-models-jvm-3.4.0.jar", - "hash": "0318b967115de0c7c8fbd93bc6e3d279c82de2954f90794146962921de45972d", - "path": "org/jetbrains/packagesearch/packagesearch-http-models-jvm/3.4.0/packagesearch-http-models-jvm-3.4.0.jar" - }, - { - "url": "org/jetbrains/packagesearch/packagesearch-api-models-jvm/3.4.0/packagesearch-api-models-jvm-3.4.0.jar", - "hash": "22022fe954980d8e183b252889719fc6ca71a13e91b8e869d92532da308e3da1", - "path": "org/jetbrains/packagesearch/packagesearch-api-models-jvm/3.4.0/packagesearch-api-models-jvm-3.4.0.jar" - }, - { - "url": "org/jetbrains/packagesearch/packagesearch-version-utils-jvm/3.4.0/packagesearch-version-utils-jvm-3.4.0.jar", - "hash": "4c86546693efaeb889e02d043521cda15da5f10853b0471095b7db80dc0540e7", - "path": "org/jetbrains/packagesearch/packagesearch-version-utils-jvm/3.4.0/packagesearch-version-utils-jvm-3.4.0.jar" - }, - { - "url": "com/soywiz/korlibs/krypto/krypto-jvm/4.0.10/krypto-jvm-4.0.10.jar", - "hash": "0fe8dcdf54b13b5ec56fdb5f63c057364264bb2f51b7f7bc3c271d5b1ba68dcb", - "path": "com/soywiz/korlibs/krypto/krypto-jvm/4.0.10/krypto-jvm-4.0.10.jar" - }, - { - "url": "com/jgoodies/forms/1.1-preview/forms-1.1-preview.jar", - "hash": "26b0fc745ea051b57462be22a150c7600dbac6716b24cc60a5ecc0e8085c41a0", - "path": "com/jgoodies/forms/1.1-preview/forms-1.1-preview.jar" - }, - { - "url": "org/jetbrains/testDiscovery/test-discovery-plugin-base/0.1.191/test-discovery-plugin-base-0.1.191.jar", - "hash": "5ed74de192bd48546a6bc6e1c9f8f508663d8506ad9ef257aebbd6e829fdea36", - "path": "org/jetbrains/testDiscovery/test-discovery-plugin-base/0.1.191/test-discovery-plugin-base-0.1.191.jar" - }, - { - "url": "com/jetbrains/fleet/rpc-compiler-plugin/2.2.20-0.1/rpc-compiler-plugin-2.2.20-0.1.jar", - "hash": "71e74b74676099dd9ebbb97780401f9b53f205a69d0d515a5e03c5a42fe20c18", - "path": "com/jetbrains/fleet/rpc-compiler-plugin/2.2.20-0.1/rpc-compiler-plugin-2.2.20-0.1.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-jps-plugin-classpath/2.3.20-ij253-45/kotlin-jps-plugin-classpath-2.3.20-ij253-45.jar", - "hash": "290744db458f813618c460312a1f35bb2ed082485385d558de368c893509d11c", - "path": "org/jetbrains/kotlin/kotlin-jps-plugin-classpath/2.3.20-ij253-45/kotlin-jps-plugin-classpath-2.3.20-ij253-45.jar" - }, - { - "url": "com/jetbrains/fus/reporting/configuration/171/configuration-171.jar", - "hash": "f138ed43c55cb90192518293a5b46a135221c898b2b05d6c0648645b3d0fac64", - "path": "com/jetbrains/fus/reporting/configuration/171/configuration-171.jar" - }, - { - "url": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar", - "hash": "fa4e6165b5ad4bf5db337ebd5f16f9b596dc5e401fbea343b9deacb6138240af", - "path": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar" - }, - { - "url": "com/intellij/platform/kotlinx-coroutines-guava/1.10.1-intellij-5/kotlinx-coroutines-guava-1.10.1-intellij-5.jar", - "hash": "61ff422fe859c2439d94727eb6dcd7ccadb5ba0d9cce4e181db1946209ef9bf6", - "path": "com/intellij/platform/kotlinx-coroutines-guava/1.10.1-intellij-5/kotlinx-coroutines-guava-1.10.1-intellij-5.jar" - }, - { - "url": "org/eclipse/xtext/org.eclipse.xtext.xbase.lib/2.40.0/org.eclipse.xtext.xbase.lib-2.40.0.jar", - "hash": "5a810154295fc20a0268cae4cbbc6e5a35a8b32480d8727dc8301910524e4b79", - "path": "org/eclipse/xtext/org.eclipse.xtext.xbase.lib/2.40.0/org.eclipse.xtext.xbase.lib-2.40.0.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-script-runtime/2.2.20/kotlin-script-runtime-2.2.20.jar", - "hash": "5c8bd5dd7ae1ea2eeb2778fdbeaa19a562184975f6cab8a0bb6779e4190731ae", - "path": "org/jetbrains/kotlin/kotlin-script-runtime/2.2.20/kotlin-script-runtime-2.2.20.jar" - }, - { - "url": "org/mockito/mockito-junit-jupiter/5.19.0/mockito-junit-jupiter-5.19.0.jar", - "hash": "7cfbb7a9c1198053c699c663479fd4836acc22c2650003c8dee20e7fbc55a65a", - "path": "org/mockito/mockito-junit-jupiter/5.19.0/mockito-junit-jupiter-5.19.0.jar" - }, - { - "url": "org/jetbrains/intellij/plugins/structure-intellij/3.316/structure-intellij-3.316.jar", - "hash": "0efe45aca820a2f722f29a49e5ffe5cd14f06c51ad60842247fcb15f8048e28a", - "path": "org/jetbrains/intellij/plugins/structure-intellij/3.316/structure-intellij-3.316.jar" - }, - { - "url": "org/jetbrains/intellij/plugins/structure-base/3.316/structure-base-3.316.jar", - "hash": "83789c1710426adb1637f773ec79e46ad0acf845e77e7964d7f2030cc2fd25c9", - "path": "org/jetbrains/intellij/plugins/structure-base/3.316/structure-base-3.316.jar" - }, - { - "url": "org/atteo/evo-inflector/1.3/evo-inflector-1.3.jar", - "hash": "ac0192fd110a0363732b17ea94fd1ce8cfd85790c8e1551e14f866908b5d80e1", - "path": "org/atteo/evo-inflector/1.3/evo-inflector-1.3.jar" - }, - { - "url": "org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar", - "hash": "0b20f45e3a0fd8f0d12cdc5316b06776e902b1365db00118876f9175c60f302c", - "path": "org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar" + "url": "joda-time/joda-time/2.12.7/joda-time-2.12.7.jar", + "hash": "385282b005818cfaccdbe8bd2429811e7e641782f2b88932a6b8ff51d668f616", + "path": "joda-time/joda-time/2.12.7/joda-time-2.12.7.jar" }, { "url": "de/cketti/unicode/kotlin-codepoints-jvm/0.9.0/kotlin-codepoints-jvm-0.9.0.jar", @@ -510,64 +340,54 @@ "path": "de/cketti/unicode/kotlin-codepoints-jvm/0.9.0/kotlin-codepoints-jvm-0.9.0.jar" }, { - "url": "org/jetbrains/kotlin/analysis-api-k2-for-ide/2.3.20-ij253-45/analysis-api-k2-for-ide-2.3.20-ij253-45.jar", - "hash": "7fdbe230eae422cec677a358823315996f53853d4b4469e45e1531fb4f4e5245", - "path": "org/jetbrains/kotlin/analysis-api-k2-for-ide/2.3.20-ij253-45/analysis-api-k2-for-ide-2.3.20-ij253-45.jar" + "url": "org/assertj/assertj-core/4.0.0-M1/assertj-core-4.0.0-M1.jar", + "hash": "03852ab5b4419c1b0b3689930cdc1ac4f0c437a0c8094a900370dcb170cfbb46", + "path": "org/assertj/assertj-core/4.0.0-M1/assertj-core-4.0.0-M1.jar" }, { - "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final.jar", - "hash": "cfd4332afd70ebb3041e244317dc790d8cb7bf6ddd05591cc1188b8052979946", - "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final.jar" + "url": "org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar", + "hash": "4eeeae8d20c078abb64b015ec158add383ac581571cddc45c68f0c9ae0230720", + "path": "org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar" }, { - "url": "io/netty/netty-tcnative-classes/2.0.73.Final/netty-tcnative-classes-2.0.73.Final.jar", - "hash": "6396a4e67269f3f35851c17613257964f46fd4e937cb3ffe73ddcd963c2a83a7", - "path": "io/netty/netty-tcnative-classes/2.0.73.Final/netty-tcnative-classes-2.0.73.Final.jar" + "url": "org/jetbrains/nativecerts/jvm-native-trusted-roots/1.1.7/jvm-native-trusted-roots-1.1.7.jar", + "hash": "8d715c487c8908a8b3b1d982f013f5ec39fb9033eb4272fdb251d648b5ede48c", + "path": "org/jetbrains/nativecerts/jvm-native-trusted-roots/1.1.7/jvm-native-trusted-roots-1.1.7.jar" }, { - "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-linux-x86_64.jar", - "hash": "a700168761f778704d456e4b0cc9183a42a832ac4b970886663c6c855bf5461c", - "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-linux-x86_64.jar" + "url": "javax/inject/javax.inject/1/javax.inject-1.jar", + "hash": "91c77044a50c481636c32d916fd89c9118a72195390452c81065080f957de7ff", + "path": "javax/inject/javax.inject/1/javax.inject-1.jar" }, { - "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-linux-aarch_64.jar", - "hash": "6d9ebbb6db1567ebc7e3561a555b2e80cded56002f16be4c152bb911f6952cee", - "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-linux-aarch_64.jar" + "url": "io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.45.0/opentelemetry-sdk-extension-autoconfigure-spi-1.45.0.jar", + "hash": "d55d8e2e877d5b0424375c79a891c82e78d00eb1b1273295763e1b55b0374123", + "path": "io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.45.0/opentelemetry-sdk-extension-autoconfigure-spi-1.45.0.jar" }, { - "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-osx-x86_64.jar", - "hash": "f2cbc864db43bc57d13a79444b2f8d784a01345bbe259c9721be00935f8ba748", - "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-osx-x86_64.jar" + "url": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar", + "hash": "da7069c6e78809d7c37d104e415613cbd4cd5cec1ed54a332cb64ef6a864a060", + "path": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar" }, { - "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-osx-aarch_64.jar", - "hash": "a1158e70bb79d591c7d7fcc2ab0bcf6682500f7de4961fda4a9cc1b015cad65e", - "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-osx-aarch_64.jar" + "url": "org/mockito/mockito-core/5.19.0/mockito-core-5.19.0.jar", + "hash": "d875ff234a4b72e0eedfe170dd804797a4b87ba4c76207c9659d6f46b527877b", + "path": "org/mockito/mockito-core/5.19.0/mockito-core-5.19.0.jar" }, { - "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-windows-x86_64.jar", - "hash": "6a8cb27bdd255a718ca100d52cfdac20cce70ab3a92c248efaee50f63eefd11e", - "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-windows-x86_64.jar" + "url": "net/bytebuddy/byte-buddy-agent/1.17.6/byte-buddy-agent-1.17.6.jar", + "hash": "8a80959465bb09848cd41a89301490c55b9d940dc6ec30d8abac0f63b39fd5d0", + "path": "net/bytebuddy/byte-buddy-agent/1.17.6/byte-buddy-agent-1.17.6.jar" }, { - "url": "xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar", - "hash": "47dcde8986019314ef78ae7280a94973a21d2ed95075a40a000b42da956429e1", - "path": "xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar" + "url": "org/objenesis/objenesis/3.3/objenesis-3.3.jar", + "hash": "02dfd0b0439a5591e35b708ed2f5474eb0948f53abf74637e959b8e4ef69bfeb", + "path": "org/objenesis/objenesis/3.3/objenesis-3.3.jar" }, { - "url": "org/openjdk/jmh/jmh-core/1.37/jmh-core-1.37.jar", - "hash": "dc0eaf2bbf0036a70b60798c785d6e03a9daf06b68b8edb0f1ba9eb3421baeb3", - "path": "org/openjdk/jmh/jmh-core/1.37/jmh-core-1.37.jar" - }, - { - "url": "net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", - "hash": "df26cc58f235f477db07f753ba5a3ab243ebe5789d9f89ecf68dd62ea9a66c28", - "path": "net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar" - }, - { - "url": "org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar", - "hash": "1e56d7b058d28b65abd256b8458e3885b674c1d588fa43cd7d1cbb9c7ef2b308", - "path": "org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar" + "url": "org/eclipse/xtext/org.eclipse.xtext.xbase.lib/2.40.0/org.eclipse.xtext.xbase.lib-2.40.0.jar", + "hash": "5a810154295fc20a0268cae4cbbc6e5a35a8b32480d8727dc8301910524e4b79", + "path": "org/eclipse/xtext/org.eclipse.xtext.xbase.lib/2.40.0/org.eclipse.xtext.xbase.lib-2.40.0.jar" }, { "url": "org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar", @@ -575,59 +395,69 @@ "path": "org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar" }, { - "url": "jetbrains/fleet/rhizomedb-compiler-plugin/2.2.20-0.1/rhizomedb-compiler-plugin-2.2.20-0.1.jar", - "hash": "eaaae0ef5b03c8cf3d3978699c517f3e2199f50191568efaff4d525be963f544", - "path": "jetbrains/fleet/rhizomedb-compiler-plugin/2.2.20-0.1/rhizomedb-compiler-plugin-2.2.20-0.1.jar" + "url": "org/jetbrains/kotlin/assignment-compiler-plugin-for-ide/2.3.20-ij253-45/assignment-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "a1c99ebaca3f02a43d27c295ff6481a860c8e1e9f3b5a67dca2d6a01d5d977e5", + "path": "org/jetbrains/kotlin/assignment-compiler-plugin-for-ide/2.3.20-ij253-45/assignment-compiler-plugin-for-ide-2.3.20-ij253-45.jar" }, { - "url": "org/codehaus/groovy/groovy-ant/3.0.25/groovy-ant-3.0.25.jar", - "hash": "fd65c1a0cd1c60272b6ed0f45025d7afae8de20b5c11e2a131a7ccb4b0f1f1b2", - "path": "org/codehaus/groovy/groovy-ant/3.0.25/groovy-ant-3.0.25.jar" + "url": "org/jetbrains/testDiscovery/test-discovery-plugin-base/0.1.191/test-discovery-plugin-base-0.1.191.jar", + "hash": "5ed74de192bd48546a6bc6e1c9f8f508663d8506ad9ef257aebbd6e829fdea36", + "path": "org/jetbrains/testDiscovery/test-discovery-plugin-base/0.1.191/test-discovery-plugin-base-0.1.191.jar" }, { - "url": "org/bouncycastle/bcpg-jdk18on/1.81/bcpg-jdk18on-1.81.jar", - "hash": "ac2ddae3a844c1e2378604616dbe7cc17c64caaf9115d8c9c3b29db8b2982411", - "path": "org/bouncycastle/bcpg-jdk18on/1.81/bcpg-jdk18on-1.81.jar" + "url": "org/jline/jline-terminal-jna/3.27.0/jline-terminal-jna-3.27.0.jar", + "hash": "e7322e6d8dc1bd69f507b91865af741af4a95c649ccab36e79e8be89696bb432", + "path": "org/jline/jline-terminal-jna/3.27.0/jline-terminal-jna-3.27.0.jar" }, { - "url": "io/opentelemetry/opentelemetry-sdk/1.48.0/opentelemetry-sdk-1.48.0.jar", - "hash": "668e78642d50709dd147406a197cfdd256b1d5931023a23f4a25ed88154c8089", - "path": "io/opentelemetry/opentelemetry-sdk/1.48.0/opentelemetry-sdk-1.48.0.jar" + "url": "net/java/dev/jna/jna/5.15.0/jna-5.15.0.jar", + "hash": "a564158d28ab5127fc6a958028ed54279fe0999662c46425b6a3b09a2a52094d", + "path": "net/java/dev/jna/jna/5.15.0/jna-5.15.0.jar" }, { - "url": "io/opentelemetry/opentelemetry-api/1.48.0/opentelemetry-api-1.48.0.jar", - "hash": "8d3781bda58892f7d14216908fc0d1faf6f4e6b806e6e73e23489e41c0ecf012", - "path": "io/opentelemetry/opentelemetry-api/1.48.0/opentelemetry-api-1.48.0.jar" + "url": "org/jline/jline-terminal/3.27.0/jline-terminal-3.27.0.jar", + "hash": "2f461c75091ec3810a42184afc80c96910f54e9dd2110e9ecb9902a5ee6c244b", + "path": "org/jline/jline-terminal/3.27.0/jline-terminal-3.27.0.jar" }, { - "url": "io/opentelemetry/opentelemetry-context/1.48.0/opentelemetry-context-1.48.0.jar", - "hash": "1fcccff0f8171fe2001a17b99da229c12d0c4edcca617e453460344e92249d42", - "path": "io/opentelemetry/opentelemetry-context/1.48.0/opentelemetry-context-1.48.0.jar" + "url": "org/jline/jline-native/3.27.0/jline-native-3.27.0.jar", + "hash": "d8bc77bc80edc7d9a02a06a069b2d7085629421db0843aba7c153a869ffe525d", + "path": "org/jline/jline-native/3.27.0/jline-native-3.27.0.jar" }, { - "url": "io/opentelemetry/opentelemetry-sdk-common/1.48.0/opentelemetry-sdk-common-1.48.0.jar", - "hash": "d8cfbfe6403965f68fc5efca0c9cb85c2cafd5facda9238cd83468692bc00109", - "path": "io/opentelemetry/opentelemetry-sdk-common/1.48.0/opentelemetry-sdk-common-1.48.0.jar" + "url": "org/jetbrains/intellij/deps/ift/git-learning-project/212.0.2/git-learning-project-212.0.2.jar", + "hash": "648eaffe833416e2accea4bf82b980f0e91ae51ef065f5bc74fa3481c373e9fd", + "path": "org/jetbrains/intellij/deps/ift/git-learning-project/212.0.2/git-learning-project-212.0.2.jar" }, { - "url": "io/opentelemetry/opentelemetry-sdk-trace/1.48.0/opentelemetry-sdk-trace-1.48.0.jar", - "hash": "d575e493f6c2e89d3100b3e73d3a2ae720bb8f3ee2fa0f70a7d0da81d048c87a", - "path": "io/opentelemetry/opentelemetry-sdk-trace/1.48.0/opentelemetry-sdk-trace-1.48.0.jar" + "url": "com/google/zxing/core/3.5.1/core-3.5.1.jar", + "hash": "1ba7c0fbb6c267e2fb74e1497d855adae633ccc98edc8c75163aa64bc08e3059", + "path": "com/google/zxing/core/3.5.1/core-3.5.1.jar" }, { - "url": "io/opentelemetry/opentelemetry-sdk-metrics/1.48.0/opentelemetry-sdk-metrics-1.48.0.jar", - "hash": "70622ff3bbeee435fba5c49d9ff6b056511a0f9982080aa5959ccfccb8650fd9", - "path": "io/opentelemetry/opentelemetry-sdk-metrics/1.48.0/opentelemetry-sdk-metrics-1.48.0.jar" + "url": "io/github/smiley4/schema-kenerator-jsonschema/2.2.0/schema-kenerator-jsonschema-2.2.0.jar", + "hash": "81981241b8df2eeee48efac05798e7beaa2b8d6bd5d610b3f5a4fea07b0eff6e", + "path": "io/github/smiley4/schema-kenerator-jsonschema/2.2.0/schema-kenerator-jsonschema-2.2.0.jar" }, { - "url": "io/opentelemetry/opentelemetry-sdk-logs/1.48.0/opentelemetry-sdk-logs-1.48.0.jar", - "hash": "3cb8107e3d142fb990ce7f7198cd051a3364fc9d254daa22d248215246857567", - "path": "io/opentelemetry/opentelemetry-sdk-logs/1.48.0/opentelemetry-sdk-logs-1.48.0.jar" + "url": "com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar", + "hash": "11a9ee6f88bb31f1450108d1cf6441377dec84aca075eb6bb2343be157575bea", + "path": "com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar" }, { - "url": "com/jetbrains/rd/rd-gen/2025.3.1/rd-gen-2025.3.1.jar", - "hash": "03b276130c0c1417c9bd07cfd8d2eea1fa465fc930dd132ac11fc383cf11deec", - "path": "com/jetbrains/rd/rd-gen/2025.3.1/rd-gen-2025.3.1.jar" + "url": "net/minidev/json-smart/2.5.0/json-smart-2.5.0.jar", + "hash": "432b9e545848c4141b80717b26e367f83bf33f19250a228ce75da6e967da2bc7", + "path": "net/minidev/json-smart/2.5.0/json-smart-2.5.0.jar" + }, + { + "url": "net/minidev/accessors-smart/2.5.0/accessors-smart-2.5.0.jar", + "hash": "12314fc6881d66a413fd66370787adba16e504fbf7e138690b0f3952e3fbd321", + "path": "net/minidev/accessors-smart/2.5.0/accessors-smart-2.5.0.jar" + }, + { + "url": "org/jetbrains/compose/components/components-ui-tooling-preview-desktop/1.9.0/components-ui-tooling-preview-desktop-1.9.0.jar", + "hash": "ca0857dcde7cffff8eea3cce2940a285f219f673829f7f9a3381f767d224f411", + "path": "org/jetbrains/compose/components/components-ui-tooling-preview-desktop/1.9.0/components-ui-tooling-preview-desktop-1.9.0.jar" }, { "url": "com/squareup/okhttp3/okhttp/5.0.0-alpha.14/okhttp-5.0.0-alpha.14.jar", @@ -640,14 +470,29 @@ "path": "com/squareup/okio/okio-jvm/3.9.0/okio-jvm-3.9.0.jar" }, { - "url": "org/jetbrains/intellij/deps/java-compatibility/1.0.1/java-compatibility-1.0.1.jar", - "hash": "1f799c9e7691a4dcddb1cb3e28e8517d5e6b27c2ac75093f39714afdc9216950", - "path": "org/jetbrains/intellij/deps/java-compatibility/1.0.1/java-compatibility-1.0.1.jar" + "url": "org/jmock/jmock/2.5.1/jmock-2.5.1.jar", + "hash": "d96425f4bab28798162e59fffbe7e16ea6c2aab303ee8dfb0a2ec38a5a4e2f36", + "path": "org/jmock/jmock/2.5.1/jmock-2.5.1.jar" }, { - "url": "com/fasterxml/jackson/module/jackson-module-kotlin/2.19.0/jackson-module-kotlin-2.19.0.jar", - "hash": "df967eebc2c87eaa3f55338607104ffc8fa62fb2e813d67f95ed4f7f9c6f8cee", - "path": "com/fasterxml/jackson/module/jackson-module-kotlin/2.19.0/jackson-module-kotlin-2.19.0.jar" + "url": "org/jetbrains/kotlin/kotlin-scripting-compiler-impl/2.3.20-ij253-45/kotlin-scripting-compiler-impl-2.3.20-ij253-45.jar", + "hash": "c2b19162264b2aa78371cd834f8703e1c49c032ec9862cdb9b744a4a2a8e7ded", + "path": "org/jetbrains/kotlin/kotlin-scripting-compiler-impl/2.3.20-ij253-45/kotlin-scripting-compiler-impl-2.3.20-ij253-45.jar" + }, + { + "url": "org/apache/lucene/lucene-memory/10.3.0/lucene-memory-10.3.0.jar", + "hash": "ea77d0b2eb0b3e1f7fa04f2fbe671f5af3ae836cc40320411e195bdc9421f17b", + "path": "org/apache/lucene/lucene-memory/10.3.0/lucene-memory-10.3.0.jar" + }, + { + "url": "org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.8.1/kotlinx-serialization-core-jvm-1.8.1.jar", + "hash": "3565b6d4d789bf70683c45566944287fc1d8dc75c23d98bd87d01059cc76f2b3", + "path": "org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.8.1/kotlinx-serialization-core-jvm-1.8.1.jar" + }, + { + "url": "net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar", + "hash": "3575dcb8a98faf943d3c1595c47a16047c4fce8a83ebbb26262f1a2f67546357", + "path": "net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar" }, { "url": "org/jetbrains/intellij/deps/fastutil/intellij-deps-fastutil/8.5.16-jb1/intellij-deps-fastutil-8.5.16-jb1.jar", @@ -655,19 +500,49 @@ "path": "org/jetbrains/intellij/deps/fastutil/intellij-deps-fastutil/8.5.16-jb1/intellij-deps-fastutil-8.5.16-jb1.jar" }, { - "url": "org/apache/thrift/libthrift/0.19.0/libthrift-0.19.0.jar", - "hash": "2b6e6550b40467ede7b3034a1a9eb9148fbf920cfdae5bf0b1d2bb3d4e780625", - "path": "org/apache/thrift/libthrift/0.19.0/libthrift-0.19.0.jar" + "url": "io/ktor/ktor-client-java-jvm/3.1.3/ktor-client-java-jvm-3.1.3.jar", + "hash": "4449fa59e5f4f9a18e18b5ed10db95dba3f65a825cfc32d053097d8bffccfbf1", + "path": "io/ktor/ktor-client-java-jvm/3.1.3/ktor-client-java-jvm-3.1.3.jar" }, { - "url": "org/codehaus/groovy/groovy-xml/3.0.25/groovy-xml-3.0.25.jar", - "hash": "d94e6ba5de99225d3d3fc8759d4480721402c7121d130d73d99d838e913500dd", - "path": "org/codehaus/groovy/groovy-xml/3.0.25/groovy-xml-3.0.25.jar" + "url": "org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar", + "hash": "e640732fbcd3c6271925a504f125e38384688f4dfbbf92c8622dfcee0d09edb9", + "path": "org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar" }, { - "url": "io/ktor/ktor-server-core-jvm/3.1.3/ktor-server-core-jvm-3.1.3.jar", - "hash": "bf582ba004634d0d343bb2dfa1edd0e8de18cdc2c607a4089db8b79d3085d10a", - "path": "io/ktor/ktor-server-core-jvm/3.1.3/ktor-server-core-jvm-3.1.3.jar" + "url": "org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar", + "hash": "14b7880cb7c85eed101e2710432fc3ffb83275532a6a894dc4c4095d49ad59f1", + "path": "org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar" + }, + { + "url": "org/ow2/asm/asm/9.8/asm-9.8.jar", + "hash": "876eab6a83daecad5ca67eb9fcabb063c97b5aeb8cf1fca7a989ecde17522051", + "path": "org/ow2/asm/asm/9.8/asm-9.8.jar" + }, + { + "url": "com/typesafe/config/1.4.4/config-1.4.4.jar", + "hash": "ab16decc45cc678b0cf17fb9668f380a73bfdf11b75af1fa1ddec5da82805aea", + "path": "com/typesafe/config/1.4.4/config-1.4.4.jar" + }, + { + "url": "commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "hash": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636", + "path": "commons-logging/commons-logging/1.2/commons-logging-1.2.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-dataframe-compiler-plugin-for-ide/2.3.20-ij253-45/kotlin-dataframe-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "076c66a0899ca0dfaeb18efdf73ca70c0dfbe935a70e7f790e009885b61e56ee", + "path": "org/jetbrains/kotlin/kotlin-dataframe-compiler-plugin-for-ide/2.3.20-ij253-45/kotlin-dataframe-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "org/sqlite/native/3.42.0-jb.1/native-3.42.0-jb.1.jar", + "hash": "491c4ae84a1bad34c85624682a80def4f3a3a0fb9d517121d05c2dfeb94966f8", + "path": "org/sqlite/native/3.42.0-jb.1/native-3.42.0-jb.1.jar" + }, + { + "url": "io/opentelemetry/semconv/opentelemetry-semconv/1.30.0/opentelemetry-semconv-1.30.0.jar", + "hash": "99c2478a9b803b7d385d1624d5c1ab6f9a64cac5a2dc00f44a350744a1d858ac", + "path": "io/opentelemetry/semconv/opentelemetry-semconv/1.30.0/opentelemetry-semconv-1.30.0.jar" }, { "url": "org/jetbrains/kotlinx/lincheck-jvm/2.33/lincheck-jvm-2.33.jar", @@ -720,9 +595,89 @@ "path": "org/jetbrains/kotlinx/atomicfu-jvm/0.20.2/atomicfu-jvm-0.20.2.jar" }, { - "url": "org/jetbrains/kotlin/assignment-compiler-plugin-for-ide/2.3.20-ij253-45/assignment-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "a1c99ebaca3f02a43d27c295ff6481a860c8e1e9f3b5a67dca2d6a01d5d977e5", - "path": "org/jetbrains/kotlin/assignment-compiler-plugin-for-ide/2.3.20-ij253-45/assignment-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + "url": "org/jetbrains/runtime/jbr-api/1.9.0/jbr-api-1.9.0.jar", + "hash": "7e37284e33b5b304ee6174dcaa92db949b257cc4c8991ca865e7daf5113d8279", + "path": "org/jetbrains/runtime/jbr-api/1.9.0/jbr-api-1.9.0.jar" + }, + { + "url": "com/amazon/ion/ion-java/1.11.10/ion-java-1.11.10.jar", + "hash": "ede1a1a3bf3e4c182105695728b8b2808f6edd03587dc0e258f9a8920593f903", + "path": "com/amazon/ion/ion-java/1.11.10/ion-java-1.11.10.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-compiler-fe10-for-ide/2.3.20-ij253-45/kotlin-compiler-fe10-for-ide-2.3.20-ij253-45.jar", + "hash": "d1f296fae451d3e16f70a6812fe88024132422189a6cb8a74e4f62b1fa5f18fd", + "path": "org/jetbrains/kotlin/kotlin-compiler-fe10-for-ide/2.3.20-ij253-45/kotlin-compiler-fe10-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "org/codehaus/groovy/groovy-ant/3.0.25/groovy-ant-3.0.25.jar", + "hash": "fd65c1a0cd1c60272b6ed0f45025d7afae8de20b5c11e2a131a7ccb4b0f1f1b2", + "path": "org/codehaus/groovy/groovy-ant/3.0.25/groovy-ant-3.0.25.jar" + }, + { + "url": "org/jetbrains/kotlin/noarg-compiler-plugin-for-ide/2.3.20-ij253-45/noarg-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "261a90d908355e185f0a291aa71b3ce1f4e3c67aa31411244ef8c124958b0c77", + "path": "org/jetbrains/kotlin/noarg-compiler-plugin-for-ide/2.3.20-ij253-45/noarg-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar", + "hash": "22d1d4316c4ec13a68b559e98c8256d69071593731da96136640f864fa14fad8", + "path": "org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar" + }, + { + "url": "org/jetbrains/kotlin/analysis-api-impl-base-tests-for-ide/2.3.20-ij253-45/analysis-api-impl-base-tests-for-ide-2.3.20-ij253-45.jar", + "hash": "c6deada2fac53b8ea6523dbda77597b128006674616f140f04df23264c6d1aa3", + "path": "org/jetbrains/kotlin/analysis-api-impl-base-tests-for-ide/2.3.20-ij253-45/analysis-api-impl-base-tests-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "org/jetbrains/intellij/deps/java-compatibility/1.0.1/java-compatibility-1.0.1.jar", + "hash": "1f799c9e7691a4dcddb1cb3e28e8517d5e6b27c2ac75093f39714afdc9216950", + "path": "org/jetbrains/intellij/deps/java-compatibility/1.0.1/java-compatibility-1.0.1.jar" + }, + { + "url": "com/jetbrains/fus/reporting/connection-client/171/connection-client-171.jar", + "hash": "ca8ebd17e33f333647b905d43fc8cce2ad16abd22bfa99b75cb8a499894648b8", + "path": "com/jetbrains/fus/reporting/connection-client/171/connection-client-171.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-project-model/1.6.0/kotlin-project-model-1.6.0.jar", + "hash": "38135d3f995fc505d604aed2e82ac5ba858b2a6a3e476899c3b8be47fd222b68", + "path": "org/jetbrains/kotlin/kotlin-project-model/1.6.0/kotlin-project-model-1.6.0.jar" + }, + { + "url": "org/bidib/com/github/markusbernhardt/proxy-vole/1.1.6/proxy-vole-1.1.6.jar", + "hash": "4b9fb2e5a13b37cf8bd62eebada8d3485c3dc17df752783b68d89d657bcc01fd", + "path": "org/bidib/com/github/markusbernhardt/proxy-vole/1.1.6/proxy-vole-1.1.6.jar" + }, + { + "url": "org/javadelight/delight-rhino-sandbox/0.0.17/delight-rhino-sandbox-0.0.17.jar", + "hash": "e22941d77d0d01dfc6ee5612ad421860baae8a3a0dea2eeb67658061f34527b4", + "path": "org/javadelight/delight-rhino-sandbox/0.0.17/delight-rhino-sandbox-0.0.17.jar" + }, + { + "url": "org/apache/lucene/lucene-sandbox/10.3.0/lucene-sandbox-10.3.0.jar", + "hash": "00aa7be5c214bff31d62b489fbb5f0c389545e9f455324b2b92681956d37c94f", + "path": "org/apache/lucene/lucene-sandbox/10.3.0/lucene-sandbox-10.3.0.jar" + }, + { + "url": "org/jetbrains/intellij/deps/jb-jdi/2.45/jb-jdi-2.45.jar", + "hash": "f31793446f372ee33659fc7a4ce93a079fa520ae89ddf6f6280ea50425c408d4", + "path": "org/jetbrains/intellij/deps/jb-jdi/2.45/jb-jdi-2.45.jar" + }, + { + "url": "com/google/truth/truth/0.42/truth-0.42.jar", + "hash": "dd652bdf0c4427c59848ac0340fd6b6d20c2cbfaa3c569a8366604dbcda5214c", + "path": "com/google/truth/truth/0.42/truth-0.42.jar" + }, + { + "url": "com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0.jar", + "hash": "61ba4dc49adca95243beaa0569adc2a23aedb5292ae78aa01186fa782ebdc5c2", + "path": "com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0.jar" + }, + { + "url": "org/jetbrains/kotlinx/kotlinx-serialization-protobuf-jvm/1.8.1/kotlinx-serialization-protobuf-jvm-1.8.1.jar", + "hash": "fbd174f72ea82364baa112069f2d7b361758f6b68bd81d2ac51b02c66a48e924", + "path": "org/jetbrains/kotlinx/kotlinx-serialization-protobuf-jvm/1.8.1/kotlinx-serialization-protobuf-jvm-1.8.1.jar" }, { "url": "org/jetbrains/kotlin/kotlin-scripting-common/2.3.20-ij253-45/kotlin-scripting-common-2.3.20-ij253-45.jar", @@ -730,34 +685,174 @@ "path": "org/jetbrains/kotlin/kotlin-scripting-common/2.3.20-ij253-45/kotlin-scripting-common-2.3.20-ij253-45.jar" }, { - "url": "org/mozilla/rhino-runtime/1.7.15/rhino-runtime-1.7.15.jar", - "hash": "4f38c96499c614145b87442700e196df39b0af808b1b1204eaccaa15bef17c2b", - "path": "org/mozilla/rhino-runtime/1.7.15/rhino-runtime-1.7.15.jar" + "url": "org/jmock/jmock-legacy/2.5.1/jmock-legacy-2.5.1.jar", + "hash": "0c8d23755cd08d23c3ea194773a08b2c322d2b70cc8c86ac02b424d8a50c9118", + "path": "org/jmock/jmock-legacy/2.5.1/jmock-legacy-2.5.1.jar" }, { - "url": "net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", - "hash": "be5805392060c71474bf6c9a67a099471274d30b83eef84bfc4e0889a4f1dcc0", - "path": "net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar" + "url": "org/jetbrains/kotlin/lombok-compiler-plugin-for-ide/2.3.20-ij253-45/lombok-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "8bc0ca5c9bb47b4ae74ab75306e8c0481d2748b3165dc850165d72d199540653", + "path": "org/jetbrains/kotlin/lombok-compiler-plugin-for-ide/2.3.20-ij253-45/lombok-compiler-plugin-for-ide-2.3.20-ij253-45.jar" }, { - "url": "com/intellij/platform/kotlinx-coroutines-test-jvm/1.10.1-intellij-5/kotlinx-coroutines-test-jvm-1.10.1-intellij-5.jar", - "hash": "98b5c1291d9e473ce6df9823781a8a2170f1dfb4c30d985c56ff5242df2ff8f5", - "path": "com/intellij/platform/kotlinx-coroutines-test-jvm/1.10.1-intellij-5/kotlinx-coroutines-test-jvm-1.10.1-intellij-5.jar" + "url": "org/apache/lucene/lucene-analysis-common/10.3.0/lucene-analysis-common-10.3.0.jar", + "hash": "124bddea3fa0683d3e174552fba5fcf0f24a2f57f1ccf6957010d010d246db8b", + "path": "org/apache/lucene/lucene-analysis-common/10.3.0/lucene-analysis-common-10.3.0.jar" }, { - "url": "net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar", - "hash": "3575dcb8a98faf943d3c1595c47a16047c4fce8a83ebbb26262f1a2f67546357", - "path": "net/bytebuddy/byte-buddy/1.17.7/byte-buddy-1.17.7.jar" + "url": "io/vavr/vavr/0.10.4/vavr-0.10.4.jar", + "hash": "12622deeea2618b59b284051a9484f1def8ccbebc847c350358f12d325ba9dd5", + "path": "io/vavr/vavr/0.10.4/vavr-0.10.4.jar" }, { - "url": "org/slf4j/slf4j-jdk14/2.0.13/slf4j-jdk14-2.0.13.jar", - "hash": "83f17205a6470c3cd4214306d3ed011651c173297f705acef544c01795f253cd", - "path": "org/slf4j/slf4j-jdk14/2.0.13/slf4j-jdk14-2.0.13.jar" + "url": "io/vavr/vavr-match/0.10.4/vavr-match-0.10.4.jar", + "hash": "d46f96bf59ccd5800261eec5869a6877ee0a37ea781312e6735be55539f50354", + "path": "io/vavr/vavr-match/0.10.4/vavr-match-0.10.4.jar" }, { - "url": "org/junit/jupiter/junit-jupiter-api/5.13.4/junit-jupiter-api-5.13.4.jar", - "hash": "d1bb81abfd9e03418306b4e6a3390c8db52c58372e749c2980ac29f0c08278f1", - "path": "org/junit/jupiter/junit-jupiter-api/5.13.4/junit-jupiter-api-5.13.4.jar" + "url": "io/grpc/grpc-netty-shaded/1.73.0/grpc-netty-shaded-1.73.0.jar", + "hash": "8328289ba6b73445e982a1cadf8e651ea65354e288c825a43e7c77f16da8a056", + "path": "io/grpc/grpc-netty-shaded/1.73.0/grpc-netty-shaded-1.73.0.jar" + }, + { + "url": "io/grpc/grpc-util/1.73.0/grpc-util-1.73.0.jar", + "hash": "b7df6cbcc30b7a3219f06483a9a9d320a431beda8a1ace5b16d879f84112373f", + "path": "io/grpc/grpc-util/1.73.0/grpc-util-1.73.0.jar" + }, + { + "url": "com/ibm/icu/icu4j/77.1/icu4j-77.1.jar", + "hash": "b3640b9f416a4411fd33c59abbeea8fd57d024c23e1819bf9673220a97499fe3", + "path": "com/ibm/icu/icu4j/77.1/icu4j-77.1.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-compose-compiler-plugin/2.2.20/kotlin-compose-compiler-plugin-2.2.20.jar", + "hash": "d99052e257681e496590c5c724e1324eb511e4205f5fd413b5f503d8e932b698", + "path": "org/jetbrains/kotlin/kotlin-compose-compiler-plugin/2.2.20/kotlin-compose-compiler-plugin-2.2.20.jar" + }, + { + "url": "commons-cli/commons-cli/1.10.0/commons-cli-1.10.0.jar", + "hash": "1b273d92160b9fa69c3e65389a5c4decd2f38a697e458e6f75080ae09e886404", + "path": "commons-cli/commons-cli/1.10.0/commons-cli-1.10.0.jar" + }, + { + "url": "org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar", + "hash": "293d80f54b536b74095dcd7ea3cf0a29bbfc3402519281332495f4420d370d16", + "path": "org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar" + }, + { + "url": "org/jetbrains/kotlinx/kotlinx-serialization-json-jvm/1.8.1/kotlinx-serialization-json-jvm-1.8.1.jar", + "hash": "8769e5647557e3700919c32d508f5c5dad53c5d8234cd10846354fbcff14aa24", + "path": "org/jetbrains/kotlinx/kotlinx-serialization-json-jvm/1.8.1/kotlinx-serialization-json-jvm-1.8.1.jar" + }, + { + "url": "io/ktor/ktor-server-core-jvm/3.1.3/ktor-server-core-jvm-3.1.3.jar", + "hash": "bf582ba004634d0d343bb2dfa1edd0e8de18cdc2c607a4089db8b79d3085d10a", + "path": "io/ktor/ktor-server-core-jvm/3.1.3/ktor-server-core-jvm-3.1.3.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-sdk/1.48.0/opentelemetry-sdk-1.48.0.jar", + "hash": "668e78642d50709dd147406a197cfdd256b1d5931023a23f4a25ed88154c8089", + "path": "io/opentelemetry/opentelemetry-sdk/1.48.0/opentelemetry-sdk-1.48.0.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-api/1.48.0/opentelemetry-api-1.48.0.jar", + "hash": "8d3781bda58892f7d14216908fc0d1faf6f4e6b806e6e73e23489e41c0ecf012", + "path": "io/opentelemetry/opentelemetry-api/1.48.0/opentelemetry-api-1.48.0.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-context/1.48.0/opentelemetry-context-1.48.0.jar", + "hash": "1fcccff0f8171fe2001a17b99da229c12d0c4edcca617e453460344e92249d42", + "path": "io/opentelemetry/opentelemetry-context/1.48.0/opentelemetry-context-1.48.0.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-sdk-common/1.48.0/opentelemetry-sdk-common-1.48.0.jar", + "hash": "d8cfbfe6403965f68fc5efca0c9cb85c2cafd5facda9238cd83468692bc00109", + "path": "io/opentelemetry/opentelemetry-sdk-common/1.48.0/opentelemetry-sdk-common-1.48.0.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-sdk-trace/1.48.0/opentelemetry-sdk-trace-1.48.0.jar", + "hash": "d575e493f6c2e89d3100b3e73d3a2ae720bb8f3ee2fa0f70a7d0da81d048c87a", + "path": "io/opentelemetry/opentelemetry-sdk-trace/1.48.0/opentelemetry-sdk-trace-1.48.0.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-sdk-metrics/1.48.0/opentelemetry-sdk-metrics-1.48.0.jar", + "hash": "70622ff3bbeee435fba5c49d9ff6b056511a0f9982080aa5959ccfccb8650fd9", + "path": "io/opentelemetry/opentelemetry-sdk-metrics/1.48.0/opentelemetry-sdk-metrics-1.48.0.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-sdk-logs/1.48.0/opentelemetry-sdk-logs-1.48.0.jar", + "hash": "3cb8107e3d142fb990ce7f7198cd051a3364fc9d254daa22d248215246857567", + "path": "io/opentelemetry/opentelemetry-sdk-logs/1.48.0/opentelemetry-sdk-logs-1.48.0.jar" + }, + { + "url": "org/codehaus/groovy/groovy-json/3.0.25/groovy-json-3.0.25.jar", + "hash": "511cea72a464809d7e376968910fa704f9fa5afa8f2a94b53672a061b45475bb", + "path": "org/codehaus/groovy/groovy-json/3.0.25/groovy-json-3.0.25.jar" + }, + { + "url": "com/intellij/platform/kotlinx-coroutines-debug/1.10.1-intellij-5/kotlinx-coroutines-debug-1.10.1-intellij-5.jar", + "hash": "f8f56f19d2b29da511809c3345d2f0bf283bfb94a0a0d83f5b630e1424625723", + "path": "com/intellij/platform/kotlinx-coroutines-debug/1.10.1-intellij-5/kotlinx-coroutines-debug-1.10.1-intellij-5.jar" + }, + { + "url": "org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.jar", + "hash": "6f128a71c5e87a16f810513a73ad3c77d0ee0bb622ee0ce1ead115bccbc76d0a", + "path": "org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.jar" + }, + { + "url": "com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "hash": "4c7517e848a71b36d069d12bb3bf46a70fd4cda3105d822b0ed2e19c00b69291", + "path": "com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar" + }, + { + "url": "org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", + "hash": "d74a3334fb35195009b338a951f918203d6bbca3d1d359033dc33edd1cadc9ef", + "path": "org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar" + }, + { + "url": "com/android/tools/smali/smali-baksmali/3.0.3/smali-baksmali-3.0.3.jar", + "hash": "ffd6f3fbba2453440e4c04add42b9f903d84151b5b71f7e6bbb181d8096397a4", + "path": "com/android/tools/smali/smali-baksmali/3.0.3/smali-baksmali-3.0.3.jar" + }, + { + "url": "com/android/tools/smali/smali-util/3.0.3/smali-util-3.0.3.jar", + "hash": "8078a04709f42072a240a6fe7666b71755324745c505b39f86ededfd9c2b90c4", + "path": "com/android/tools/smali/smali-util/3.0.3/smali-util-3.0.3.jar" + }, + { + "url": "org/codehaus/groovy/groovy-xml/3.0.25/groovy-xml-3.0.25.jar", + "hash": "d94e6ba5de99225d3d3fc8759d4480721402c7121d130d73d99d838e913500dd", + "path": "org/codehaus/groovy/groovy-xml/3.0.25/groovy-xml-3.0.25.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-scripting-jvm/2.3.20-ij253-45/kotlin-scripting-jvm-2.3.20-ij253-45.jar", + "hash": "42d81993e1dd93ba47dc648cf6f8af88aa20ab276077086adcffcc51cd65e08d", + "path": "org/jetbrains/kotlin/kotlin-scripting-jvm/2.3.20-ij253-45/kotlin-scripting-jvm-2.3.20-ij253-45.jar" + }, + { + "url": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar", + "hash": "67f0f566e2ed51717f6ed55f6d2b4dee1c84be4ea2cd96fc636d0bdf0fd43067", + "path": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar" + }, + { + "url": "io/grpc/grpc-protobuf/1.73.0/grpc-protobuf-1.73.0.jar", + "hash": "5c0ca9e321c02845c47dc6edcef9f22e49015cef7753c54012f5398425163c08", + "path": "io/grpc/grpc-protobuf/1.73.0/grpc-protobuf-1.73.0.jar" + }, + { + "url": "com/google/api/grpc/proto-google-common-protos/2.51.0/proto-google-common-protos-2.51.0.jar", + "hash": "0b27938f3d28ccd6884945d7e4f75f4e26a677bbf3cd39bbcb694f130f782aa9", + "path": "com/google/api/grpc/proto-google-common-protos/2.51.0/proto-google-common-protos-2.51.0.jar" + }, + { + "url": "io/grpc/grpc-protobuf-lite/1.73.0/grpc-protobuf-lite-1.73.0.jar", + "hash": "de8ce5309713e72bb57d5ff2dabdb4c173ae4872bd1439b9c3d3f93430b407d9", + "path": "io/grpc/grpc-protobuf-lite/1.73.0/grpc-protobuf-lite-1.73.0.jar" + }, + { + "url": "org/junit/jupiter/junit-jupiter-api/6.0.0/junit-jupiter-api-6.0.0.jar", + "hash": "88d690d2d373cd66170770c317977196ce9e465f2388930f4bc9665e887385f6", + "path": "org/junit/jupiter/junit-jupiter-api/6.0.0/junit-jupiter-api-6.0.0.jar" }, { "url": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar", @@ -765,9 +860,9 @@ "path": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar" }, { - "url": "org/junit/platform/junit-platform-commons/1.13.4/junit-platform-commons-1.13.4.jar", - "hash": "1c25ca641ebaae44ff3ad21ca1b2ef68d0dd84bfeb07c4805ba7840899b77408", - "path": "org/junit/platform/junit-platform-commons/1.13.4/junit-platform-commons-1.13.4.jar" + "url": "org/junit/platform/junit-platform-commons/6.0.0/junit-platform-commons-6.0.0.jar", + "hash": "86e8faf87f3151a3d545850852a0f2cc55ea8a2434eee9e08f83881c52d55992", + "path": "org/junit/platform/junit-platform-commons/6.0.0/junit-platform-commons-6.0.0.jar" }, { "url": "org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar", @@ -775,9 +870,139 @@ "path": "org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar" }, { - "url": "org/jetbrains/kotlin/kotlin-dataframe-compiler-plugin-for-ide/2.3.20-ij253-45/kotlin-dataframe-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "076c66a0899ca0dfaeb18efdf73ca70c0dfbe935a70e7f790e009885b61e56ee", - "path": "org/jetbrains/kotlin/kotlin-dataframe-compiler-plugin-for-ide/2.3.20-ij253-45/kotlin-dataframe-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + "url": "org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar", + "hash": "1fad6e6be7557781e4d33729d49ae1cdc8fdda6fe477bb0cc68ce351eafdfbab", + "path": "org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar" + }, + { + "url": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar", + "hash": "f67507a3e8bf52aa08d753682e6cdda0194e3abe750118b99c9336953e598be9", + "path": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar", + "hash": "fa4e6165b5ad4bf5db337ebd5f16f9b596dc5e401fbea343b9deacb6138240af", + "path": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar", + "hash": "ef28b4f12054ee125765b72fe3230e215a60b73b2ff2072a5c280fcf09329077", + "path": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar" + }, + { + "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final.jar", + "hash": "cfd4332afd70ebb3041e244317dc790d8cb7bf6ddd05591cc1188b8052979946", + "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final.jar" + }, + { + "url": "io/netty/netty-tcnative-classes/2.0.73.Final/netty-tcnative-classes-2.0.73.Final.jar", + "hash": "6396a4e67269f3f35851c17613257964f46fd4e937cb3ffe73ddcd963c2a83a7", + "path": "io/netty/netty-tcnative-classes/2.0.73.Final/netty-tcnative-classes-2.0.73.Final.jar" + }, + { + "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-linux-x86_64.jar", + "hash": "a700168761f778704d456e4b0cc9183a42a832ac4b970886663c6c855bf5461c", + "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-linux-x86_64.jar" + }, + { + "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-linux-aarch_64.jar", + "hash": "6d9ebbb6db1567ebc7e3561a555b2e80cded56002f16be4c152bb911f6952cee", + "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-linux-aarch_64.jar" + }, + { + "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-osx-x86_64.jar", + "hash": "f2cbc864db43bc57d13a79444b2f8d784a01345bbe259c9721be00935f8ba748", + "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-osx-x86_64.jar" + }, + { + "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-osx-aarch_64.jar", + "hash": "a1158e70bb79d591c7d7fcc2ab0bcf6682500f7de4961fda4a9cc1b015cad65e", + "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-osx-aarch_64.jar" + }, + { + "url": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-windows-x86_64.jar", + "hash": "6a8cb27bdd255a718ca100d52cfdac20cce70ab3a92c248efaee50f63eefd11e", + "path": "io/netty/netty-tcnative-boringssl-static/2.0.73.Final/netty-tcnative-boringssl-static-2.0.73.Final-windows-x86_64.jar" + }, + { + "url": "org/jetbrains/intellij/deps/org.eclipse.jgit/6.6.1.202309021850-r-jb-202407181518/org.eclipse.jgit-6.6.1.202309021850-r-jb-202407181518.jar", + "hash": "84f1d58dbf19cd7d42a5301bd256d589af1f520b4c90b8836cee7747f8726992", + "path": "org/jetbrains/intellij/deps/org.eclipse.jgit/6.6.1.202309021850-r-jb-202407181518/org.eclipse.jgit-6.6.1.202309021850-r-jb-202407181518.jar" + }, + { + "url": "com/googlecode/javaewah/JavaEWAH/1.2.3/JavaEWAH-1.2.3.jar", + "hash": "d65226949713c4c61a784f41c51167e7b0316f93764398ebba9e4336b3d954c2", + "path": "com/googlecode/javaewah/JavaEWAH/1.2.3/JavaEWAH-1.2.3.jar" + }, + { + "url": "org/slf4j/slf4j-jdk14/2.0.13/slf4j-jdk14-2.0.13.jar", + "hash": "83f17205a6470c3cd4214306d3ed011651c173297f705acef544c01795f253cd", + "path": "org/slf4j/slf4j-jdk14/2.0.13/slf4j-jdk14-2.0.13.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-exporter-otlp-common/1.48.0/opentelemetry-exporter-otlp-common-1.48.0.jar", + "hash": "9b3211ad7f1508f6453d16922aad6c7dce5b2f9a88b7e272171f63875ee78efd", + "path": "io/opentelemetry/opentelemetry-exporter-otlp-common/1.48.0/opentelemetry-exporter-otlp-common-1.48.0.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-exporter-common/1.48.0/opentelemetry-exporter-common-1.48.0.jar", + "hash": "bc7af4f3c4ba1a23c20a6e1945f3e17fd3f5719f6f17d62961b3167d939a18e2", + "path": "io/opentelemetry/opentelemetry-exporter-common/1.48.0/opentelemetry-exporter-common-1.48.0.jar" + }, + { + "url": "org/junit-pioneer/junit-pioneer/2.3.0/junit-pioneer-2.3.0.jar", + "hash": "8b09db32c8cf5b2112a00262411ccd4ef6ca3bae695a0015ecad4def23dea9fd", + "path": "org/junit-pioneer/junit-pioneer/2.3.0/junit-pioneer-2.3.0.jar" + }, + { + "url": "io/opentelemetry/opentelemetry-extension-kotlin/1.48.0/opentelemetry-extension-kotlin-1.48.0.jar", + "hash": "2285ebfe8e0fd38e186b7033f6f6c542324c9bab23260b914b1b73eaf4492c5d", + "path": "io/opentelemetry/opentelemetry-extension-kotlin/1.48.0/opentelemetry-extension-kotlin-1.48.0.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-reflect/2.2.20/kotlin-reflect-2.2.20.jar", + "hash": "8209083a4a7c4e476d9842b078308fa96a96f07a6bd99f05f3586ee13289ab26", + "path": "org/jetbrains/kotlin/kotlin-reflect/2.2.20/kotlin-reflect-2.2.20.jar" + }, + { + "url": "org/codehaus/groovy/groovy-jsr223/3.0.25/groovy-jsr223-3.0.25.jar", + "hash": "7d703a1d484ac1135b78b24a4880f5653161cda83454c0f484fa09e29311d3bd", + "path": "org/codehaus/groovy/groovy-jsr223/3.0.25/groovy-jsr223-3.0.25.jar" + }, + { + "url": "org/junit/platform/junit-platform-launcher/6.0.0/junit-platform-launcher-6.0.0.jar", + "hash": "5f097b00c6714bb71ecfb5dec62b59bb4c2f789763fafd1ece96c4ef0e6c280f", + "path": "org/junit/platform/junit-platform-launcher/6.0.0/junit-platform-launcher-6.0.0.jar" + }, + { + "url": "org/junit/platform/junit-platform-engine/6.0.0/junit-platform-engine-6.0.0.jar", + "hash": "6f81842e9c13e997cac66b44614522f3639419e2388ae2d000c4bc0a6b92d93f", + "path": "org/junit/platform/junit-platform-engine/6.0.0/junit-platform-engine-6.0.0.jar" + }, + { + "url": "org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar", + "hash": "1fad6e6be7557781e4d33729d49ae1cdc8fdda6fe477bb0cc68ce351eafdfbab", + "path": "org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar" + }, + { + "url": "com/intellij/platform/kotlinx-coroutines-core-jvm/1.10.1-intellij-5/kotlinx-coroutines-core-jvm-1.10.1-intellij-5.jar", + "hash": "e9b7e2b1262fd02fe63b08f636903ff36f453f08ae52190c78e3cbf19d777e42", + "path": "com/intellij/platform/kotlinx-coroutines-core-jvm/1.10.1-intellij-5/kotlinx-coroutines-core-jvm-1.10.1-intellij-5.jar" + }, + { + "url": "org/mockito/kotlin/mockito-kotlin/6.0.0/mockito-kotlin-6.0.0.jar", + "hash": "34d626ffa4a27ec49e47de7d760f1df30223ecb8944b6472941f5c73ec68dfbd", + "path": "org/mockito/kotlin/mockito-kotlin/6.0.0/mockito-kotlin-6.0.0.jar" + }, + { + "url": "org/jetbrains/teamcity/serviceMessages/2024.07/serviceMessages-2024.07.jar", + "hash": "5280d3e4bae23c4f1cc59bab77dab9f7a9626aeceeaa0bb07a9868bcedae2da9", + "path": "org/jetbrains/teamcity/serviceMessages/2024.07/serviceMessages-2024.07.jar" + }, + { + "url": "com/github/luben/zstd-jni/1.5.7-4/zstd-jni-1.5.7-4.jar", + "hash": "e7f064bf1eab83fa785cf587f657f09649e3b0af6f27caa5382416953b5a35f8", + "path": "com/github/luben/zstd-jni/1.5.7-4/zstd-jni-1.5.7-4.jar" }, { "url": "org/snakeyaml/snakeyaml-engine/2.9/snakeyaml-engine-2.9.jar", @@ -785,24 +1010,254 @@ "path": "org/snakeyaml/snakeyaml-engine/2.9/snakeyaml-engine-2.9.jar" }, { - "url": "io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.45.0/opentelemetry-sdk-extension-autoconfigure-spi-1.45.0.jar", - "hash": "d55d8e2e877d5b0424375c79a891c82e78d00eb1b1273295763e1b55b0374123", - "path": "io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.45.0/opentelemetry-sdk-extension-autoconfigure-spi-1.45.0.jar" + "url": "org/jetbrains/kotlin/low-level-api-fir-for-ide/2.3.20-ij253-45/low-level-api-fir-for-ide-2.3.20-ij253-45.jar", + "hash": "635cd736b002e250cbb2165f5cb05b2a9750f403ec8eaf6e1be9fad67f3ec1aa", + "path": "org/jetbrains/kotlin/low-level-api-fir-for-ide/2.3.20-ij253-45/low-level-api-fir-for-ide-2.3.20-ij253-45.jar" }, { - "url": "com/github/lamba92/kotlinx-document-store-mvstore/0.0.4/kotlinx-document-store-mvstore-0.0.4.jar", - "hash": "956a4c7faad66e3471861adaa278d9486f3a050ac25fb6a99ca90809d379adfe", - "path": "com/github/lamba92/kotlinx-document-store-mvstore/0.0.4/kotlinx-document-store-mvstore-0.0.4.jar" + "url": "io/github/smiley4/schema-kenerator-serialization/2.2.0/schema-kenerator-serialization-2.2.0.jar", + "hash": "9c4a9713b2722b3b124210e89c3702c3e18c19156a3a06fa6bcef43a850299ca", + "path": "io/github/smiley4/schema-kenerator-serialization/2.2.0/schema-kenerator-serialization-2.2.0.jar" }, { - "url": "com/github/lamba92/kotlinx-document-store-core-jvm/0.0.4/kotlinx-document-store-core-jvm-0.0.4.jar", - "hash": "7e638082b4a14e3a96ca90f3f5db70ac65591e0b6c6670629e849d22ec34455f", - "path": "com/github/lamba92/kotlinx-document-store-core-jvm/0.0.4/kotlinx-document-store-core-jvm-0.0.4.jar" + "url": "xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar", + "hash": "47dcde8986019314ef78ae7280a94973a21d2ed95075a40a000b42da956429e1", + "path": "xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar" }, { - "url": "org/apache/lucene/lucene-sandbox/10.3.0/lucene-sandbox-10.3.0.jar", - "hash": "00aa7be5c214bff31d62b489fbb5f0c389545e9f455324b2b92681956d37c94f", - "path": "org/apache/lucene/lucene-sandbox/10.3.0/lucene-sandbox-10.3.0.jar" + "url": "org/jetbrains/kotlin/kotlin-jps-plugin-classpath/2.3.20-ij253-45/kotlin-jps-plugin-classpath-2.3.20-ij253-45.jar", + "hash": "290744db458f813618c460312a1f35bb2ed082485385d558de368c893509d11c", + "path": "org/jetbrains/kotlin/kotlin-jps-plugin-classpath/2.3.20-ij253-45/kotlin-jps-plugin-classpath-2.3.20-ij253-45.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-dist-for-ide/2.2.20/kotlin-dist-for-ide-2.2.20.jar", + "hash": "0070e80f9fed930c7209b15a5590f178acfc56028f2b6dd447c2c7cae1fc058d", + "path": "org/jetbrains/kotlin/kotlin-dist-for-ide/2.2.20/kotlin-dist-for-ide-2.2.20.jar" + }, + { + "url": "net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar", + "hash": "b7e3d46c87bad2eb409b0e704916bcd81206168e357312dfddd0e253679cd9e0", + "path": "net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar" + }, + { + "url": "net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar", + "hash": "b3a9408e7c51e08ef0e3bfcc08f443f6ec0f6191ba8cd7c18d53d2b22e5bdbc0", + "path": "net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar" + }, + { + "url": "org/jetbrains/kotlin/analysis-api-platform-interface-for-ide/2.3.20-ij253-45/analysis-api-platform-interface-for-ide-2.3.20-ij253-45.jar", + "hash": "33db5c2be1f298109a32c67efc9ff9f2351812cd18b1d3e3b6142b8c1f6562a0", + "path": "org/jetbrains/kotlin/analysis-api-platform-interface-for-ide/2.3.20-ij253-45/analysis-api-platform-interface-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "com/jetbrains/fus/reporting/configuration/171/configuration-171.jar", + "hash": "f138ed43c55cb90192518293a5b46a135221c898b2b05d6c0648645b3d0fac64", + "path": "com/jetbrains/fus/reporting/configuration/171/configuration-171.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.20-dev-8162/kotlin-gradle-plugin-idea-proto-1.9.20-dev-8162.jar", + "hash": "3841d6ad1fdd4bf90143ac6012146d291409b431e837f143c023135bd24b79a6", + "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea-proto/1.9.20-dev-8162/kotlin-gradle-plugin-idea-proto-1.9.20-dev-8162.jar" + }, + { + "url": "com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.jar", + "hash": "c74a6c72221dfb76eb92f2bb40108ea561a7da2f315dc3b1e64afa8f077f210c", + "path": "com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-script-runtime/2.3.20-ij253-45/kotlin-script-runtime-2.3.20-ij253-45.jar", + "hash": "c35fd880ce45b252c0daee0bc644ea91a326a69c9dceda54151f4b2e13f3bdc3", + "path": "org/jetbrains/kotlin/kotlin-script-runtime/2.3.20-ij253-45/kotlin-script-runtime-2.3.20-ij253-45.jar" + }, + { + "url": "org/jetbrains/kotlin/analysis-api-k2-tests-for-ide/2.3.20-ij253-45/analysis-api-k2-tests-for-ide-2.3.20-ij253-45.jar", + "hash": "7359f01e280d5d55781135956975278b3e4c1472e9628cce72bb0071705ce63b", + "path": "org/jetbrains/kotlin/analysis-api-k2-tests-for-ide/2.3.20-ij253-45/analysis-api-k2-tests-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-jps-plugin-tests-for-ide/2.2.20/kotlin-jps-plugin-tests-for-ide-2.2.20.jar", + "hash": "2074392bf202ae0cea075828e8739a17642eb3093db5f40e46b955937fbd8cdf", + "path": "org/jetbrains/kotlin/kotlin-jps-plugin-tests-for-ide/2.2.20/kotlin-jps-plugin-tests-for-ide-2.2.20.jar" + }, + { + "url": "org/jetbrains/intellij/deps/rwmutex-idea/0.0.10/rwmutex-idea-0.0.10.jar", + "hash": "61cd5eee5367d10e0cca664afdc4bbde2ff7aab9c175c5b520aac8b5315d874d", + "path": "org/jetbrains/intellij/deps/rwmutex-idea/0.0.10/rwmutex-idea-0.0.10.jar" + }, + { + "url": "com/jetbrains/rd/rd-core/2025.3.1/rd-core-2025.3.1.jar", + "hash": "05492a77e70f6a35f1ce19b60841ba39f2fcbe03b1b26eee7aea0c8745cc5e7e", + "path": "com/jetbrains/rd/rd-core/2025.3.1/rd-core-2025.3.1.jar" + }, + { + "url": "com/jetbrains/fus/reporting/model/171/model-171.jar", + "hash": "8aa0be7e7c1a46ef0827d98c026d328a6f9be27aed79b36692a7f38bacd41a6a", + "path": "com/jetbrains/fus/reporting/model/171/model-171.jar" + }, + { + "url": "org/jetbrains/intellij/deps/completion/ngram-slp/0.0.3/ngram-slp-0.0.3.jar", + "hash": "4ac10d8fb7e6326e09179fd83e664610a3362dc1d661fb32e5b2a19bcb9fc867", + "path": "org/jetbrains/intellij/deps/completion/ngram-slp/0.0.3/ngram-slp-0.0.3.jar" + }, + { + "url": "org/jetbrains/intellij/deps/commons-imaging/1.0-RC-1/commons-imaging-1.0-RC-1.jar", + "hash": "ba1cb46e5494286940b016da372ae94a60d2dbc411b6dac5db1e40128725d501", + "path": "org/jetbrains/intellij/deps/commons-imaging/1.0-RC-1/commons-imaging-1.0-RC-1.jar" + }, + { + "url": "org/bouncycastle/bcpkix-jdk18on/1.81/bcpkix-jdk18on-1.81.jar", + "hash": "b38c604871f3690109a3c00982d9145634125de3365a817ba16eb90d88e242c9", + "path": "org/bouncycastle/bcpkix-jdk18on/1.81/bcpkix-jdk18on-1.81.jar" + }, + { + "url": "org/bouncycastle/bcutil-jdk18on/1.81/bcutil-jdk18on-1.81.jar", + "hash": "31a5fe3a7ba42e3457b83930f0ff8d679fb5b76eaadf2b51f5740c92a394bf52", + "path": "org/bouncycastle/bcutil-jdk18on/1.81/bcutil-jdk18on-1.81.jar" + }, + { + "url": "org/bouncycastle/bcprov-jdk18on/1.81/bcprov-jdk18on-1.81.jar", + "hash": "249f396412b0c0ce67f25c8197da757b241b8be3ec4199386c00704a2457459b", + "path": "org/bouncycastle/bcprov-jdk18on/1.81/bcprov-jdk18on-1.81.jar" + }, + { + "url": "org/jetbrains/kotlin/sam-with-receiver-compiler-plugin-for-ide/2.3.20-ij253-45/sam-with-receiver-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "98457d26126f1095049a8769d78168ff7d0907f0b472ee28967073709b4b4607", + "path": "org/jetbrains/kotlin/sam-with-receiver-compiler-plugin-for-ide/2.3.20-ij253-45/sam-with-receiver-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar", + "hash": "bb2fb6c00afaa34b539cb30e7584d37bfcba171c266bbdb9990e003579dc24c1", + "path": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar" + }, + { + "url": "oro/oro/2.0.8/oro-2.0.8.jar", + "hash": "e00ccdad5df7eb43fdee44232ef64602bf63807c2d133a7be83ba09fd49af26e", + "path": "oro/oro/2.0.8/oro-2.0.8.jar" + }, + { + "url": "org/apache/lucene/lucene-queryparser/10.3.0/lucene-queryparser-10.3.0.jar", + "hash": "b4b57bc3d56c5a1ccc674f55a16086c37700eb151fa749b45887e391ec0f26f9", + "path": "org/apache/lucene/lucene-queryparser/10.3.0/lucene-queryparser-10.3.0.jar" + }, + { + "url": "io/ktor/ktor-client-cio-jvm/3.1.3/ktor-client-cio-jvm-3.1.3.jar", + "hash": "9a86341588057a23d3ba4562fdc8afcef6facd071678a0c20b3b28a19ec35c88", + "path": "io/ktor/ktor-client-cio-jvm/3.1.3/ktor-client-cio-jvm-3.1.3.jar" + }, + { + "url": "com/android/tools/build/aapt2-proto/8.1.0-10154469/aapt2-proto-8.1.0-10154469.jar", + "hash": "6d8d14b91285cc7c1b73460f413bb3f80672dc34dc506ed578fba1f6dde8661e", + "path": "com/android/tools/build/aapt2-proto/8.1.0-10154469/aapt2-proto-8.1.0-10154469.jar" + }, + { + "url": "com/intellij/platform/kotlinx-coroutines-slf4j/1.10.1-intellij-5/kotlinx-coroutines-slf4j-1.10.1-intellij-5.jar", + "hash": "1d68dfc6ba67ec96ecb5a373dbd9fb557ce2210ffc2d74d6b528e4f1f73e7003", + "path": "com/intellij/platform/kotlinx-coroutines-slf4j/1.10.1-intellij-5/kotlinx-coroutines-slf4j-1.10.1-intellij-5.jar" + }, + { + "url": "com/jetbrains/rd/rd-framework/2025.3.1/rd-framework-2025.3.1.jar", + "hash": "85f2a329245e4a6a1e4552ac62db4c1f23b6f02bf3c96e4df8240668187c848a", + "path": "com/jetbrains/rd/rd-framework/2025.3.1/rd-framework-2025.3.1.jar" + }, + { + "url": "org/jetbrains/intellij/deps/gradle-api/9.0.0/gradle-api-9.0.0.jar", + "hash": "b21806c4075aa42d4534ba7257097aea091ab99c40466b0f850872cfc07e7507", + "path": "org/jetbrains/intellij/deps/gradle-api/9.0.0/gradle-api-9.0.0.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-compiler-ir-for-ide/2.3.20-ij253-45/kotlin-compiler-ir-for-ide-2.3.20-ij253-45.jar", + "hash": "230f801ec0de74e6363bf7553c71dbf085d1aaaadcf553afd1248ab51fbcfef1", + "path": "org/jetbrains/kotlin/kotlin-compiler-ir-for-ide/2.3.20-ij253-45/kotlin-compiler-ir-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "org/testng/testng/7.8.0/testng-7.8.0.jar", + "hash": "dbbc43e2c64623661c3537f9d74061eb6c8fc3e5b4376f31fadb16de2b200f88", + "path": "org/testng/testng/7.8.0/testng-7.8.0.jar" + }, + { + "url": "com/beust/jcommander/1.82/jcommander-1.82.jar", + "hash": "deeac157c8de6822878d85d0c7bc8467a19cc8484d37788f7804f039dde280b1", + "path": "com/beust/jcommander/1.82/jcommander-1.82.jar" + }, + { + "url": "org/webjars/jquery/3.6.1/jquery-3.6.1.jar", + "hash": "da2381fbee4799631ba44d1f4d6487b886b22450c7fc85842c5fdfa03429b817", + "path": "org/webjars/jquery/3.6.1/jquery-3.6.1.jar" + }, + { + "url": "com/google/protobuf/protobuf-java/3.24.4-jb.2/protobuf-java-3.24.4-jb.2.jar", + "hash": "6ba90d0d081c03c5c03d2d41497f75a183da7fb23cc2691f7b782dea77f73d21", + "path": "com/google/protobuf/protobuf-java/3.24.4-jb.2/protobuf-java-3.24.4-jb.2.jar" + }, + { + "url": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar", + "hash": "746e2a3dece87379d64c40999401969001d373de1458fe851c0d2e0f880b42ef", + "path": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar" + }, + { + "url": "org/apache/lucene/lucene-queries/10.3.0/lucene-queries-10.3.0.jar", + "hash": "c0c5891b390759a0cf503c7864e6eb4d8447cc8df20806a4254bfdf3d2f43a91", + "path": "org/apache/lucene/lucene-queries/10.3.0/lucene-queries-10.3.0.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-scripting-dependencies/2.3.20-ij253-45/kotlin-scripting-dependencies-2.3.20-ij253-45.jar", + "hash": "beeae35aaf0e3043b8202e081bbdeb55672a89dc8bbcc482dfa5cc21d26dc1de", + "path": "org/jetbrains/kotlin/kotlin-scripting-dependencies/2.3.20-ij253-45/kotlin-scripting-dependencies-2.3.20-ij253-45.jar" + }, + { + "url": "io/ktor/ktor-serialization-kotlinx-json-jvm/3.1.3/ktor-serialization-kotlinx-json-jvm-3.1.3.jar", + "hash": "9b810f01caa6e3f27e02d71caba8595e2b4b04071dba16e0e426e20115bed354", + "path": "io/ktor/ktor-serialization-kotlinx-json-jvm/3.1.3/ktor-serialization-kotlinx-json-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-serialization-kotlinx-jvm/3.1.3/ktor-serialization-kotlinx-jvm-3.1.3.jar", + "hash": "b4dc2f9d4d1dda8d481a054d7f833ba195f064f5115fde3ab0dfdb8b42f61fda", + "path": "io/ktor/ktor-serialization-kotlinx-jvm/3.1.3/ktor-serialization-kotlinx-jvm-3.1.3.jar" + }, + { + "url": "org/codehaus/groovy/groovy/3.0.25/groovy-3.0.25.jar", + "hash": "ad009e985dd84e4f524f4ed1751866da5bef816b691851bfbcefa48a01180a07", + "path": "org/codehaus/groovy/groovy/3.0.25/groovy-3.0.25.jar" + }, + { + "url": "io/netty/netty-all/4.1.117.Final/netty-all-4.1.117.Final.jar", + "hash": "c78613ac0db94650c03a37b2a35b3238b2d018fcac9f10e5fe268c3887cf5e0b", + "path": "io/netty/netty-all/4.1.117.Final/netty-all-4.1.117.Final.jar" + }, + { + "url": "io/netty/netty-buffer/4.1.117.Final/netty-buffer-4.1.117.Final.jar", + "hash": "7d01bf0334ffa3ab55f3828bb50188bf9969774a23791a3df1905e53bfeea8f5", + "path": "io/netty/netty-buffer/4.1.117.Final/netty-buffer-4.1.117.Final.jar" + }, + { + "url": "io/netty/netty-codec/4.1.117.Final/netty-codec-4.1.117.Final.jar", + "hash": "0b93f01cff5bc2a64af829ca01c826e8e861a03b96a871fa2a240fa25681df78", + "path": "io/netty/netty-codec/4.1.117.Final/netty-codec-4.1.117.Final.jar" + }, + { + "url": "io/netty/netty-codec-http/4.1.117.Final/netty-codec-http-4.1.117.Final.jar", + "hash": "a7e19945a6baa86ab285383a0bda632eae7703a889da1d20ea4eaad4c996cc21", + "path": "io/netty/netty-codec-http/4.1.117.Final/netty-codec-http-4.1.117.Final.jar" + }, + { + "url": "io/netty/netty-common/4.1.117.Final/netty-common-4.1.117.Final.jar", + "hash": "5b4e125a341566b24d5030479da475b20ea1f6145bf7b3c3d69fe537088bb4c1", + "path": "io/netty/netty-common/4.1.117.Final/netty-common-4.1.117.Final.jar" + }, + { + "url": "io/netty/netty-handler/4.1.117.Final/netty-handler-4.1.117.Final.jar", + "hash": "f3272149099883cf98ad8a2a82a08111a78d17e604aebc094c80592a730fcac5", + "path": "io/netty/netty-handler/4.1.117.Final/netty-handler-4.1.117.Final.jar" + }, + { + "url": "io/netty/netty-resolver/4.1.117.Final/netty-resolver-4.1.117.Final.jar", + "hash": "0f5f7220d34d32751cc624bc9c47afdde7392f0d9551569c90a568309015d796", + "path": "io/netty/netty-resolver/4.1.117.Final/netty-resolver-4.1.117.Final.jar" + }, + { + "url": "io/netty/netty-transport/4.1.117.Final/netty-transport-4.1.117.Final.jar", + "hash": "c07aac2ea55aa42c34fc6b53fbee661e0de077f45483133b6ca297c70a67a44a", + "path": "io/netty/netty-transport/4.1.117.Final/netty-transport-4.1.117.Final.jar" }, { "url": "org/jline/jline-terminal-jansi/3.27.0/jline-terminal-jansi-3.27.0.jar", @@ -824,85 +1279,505 @@ "hash": "d8bc77bc80edc7d9a02a06a069b2d7085629421db0843aba7c153a869ffe525d", "path": "org/jline/jline-native/3.27.0/jline-native-3.27.0.jar" }, + { + "url": "io/ktor/ktor-server-sse-jvm/3.1.3/ktor-server-sse-jvm-3.1.3.jar", + "hash": "4c172eb930db7d7cfef36cf3ba7d5094ce08dea6fde2b4be7746680a2ebd7c05", + "path": "io/ktor/ktor-server-sse-jvm/3.1.3/ktor-server-sse-jvm-3.1.3.jar" + }, + { + "url": "javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar", + "hash": "88b955a0df57880a26a74708bc34f74dcaf8ebf4e78843a28b50eae945732b06", + "path": "javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar" + }, + { + "url": "org/jetbrains/jps/jps-javac-extension/10/jps-javac-extension-10.jar", + "hash": "86b9d2a2378cff951f3bd0750d56ff4cef64f78dbb33e9f7abd9c7e6e14d99de", + "path": "org/jetbrains/jps/jps-javac-extension/10/jps-javac-extension-10.jar" + }, + { + "url": "com/jetbrains/intellij/devkit/devkit-runtime-module-repository-jps/252.21158/devkit-runtime-module-repository-jps-252.21158.jar", + "hash": "677e12f96a6c48b1b4c4234417cda17bbcb3c25f5c7178ec752ef2a831c65313", + "path": "com/jetbrains/intellij/devkit/devkit-runtime-module-repository-jps/252.21158/devkit-runtime-module-repository-jps-252.21158.jar" + }, + { + "url": "com/jetbrains/intellij/platform/runtime-repository/252.21158/runtime-repository-252.21158.jar", + "hash": "3ad94d6402b94932f4341c908827016787cdc6ee3201ee64970822a610c55d34", + "path": "com/jetbrains/intellij/platform/runtime-repository/252.21158/runtime-repository-252.21158.jar" + }, + { + "url": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar", + "hash": "8a50d94b46f91bd56580b9169272d6cd636f442032ba078a141da70413465946", + "path": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar" + }, + { + "url": "io/grpc/grpc-core/1.73.0/grpc-core-1.73.0.jar", + "hash": "cffb55f1e7268e160647e88da142c09c6175ff72970c64f7cb411d78eb661663", + "path": "io/grpc/grpc-core/1.73.0/grpc-core-1.73.0.jar" + }, + { + "url": "io/grpc/grpc-api/1.73.0/grpc-api-1.73.0.jar", + "hash": "bae13d4e4716a0955d316b5fcb75582504325e5b11ac946b13b64b4fce19bc6e", + "path": "io/grpc/grpc-api/1.73.0/grpc-api-1.73.0.jar" + }, + { + "url": "com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar", + "hash": "ba734e1e84c09d615af6a09d33034b4f0442f8772dec120efb376d86a565ae15", + "path": "com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar" + }, + { + "url": "org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar", + "hash": "c720e6e5bcbe6b2f48ded75a47bccdb763eede79d14330102e0d352e3d89ed92", + "path": "org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar" + }, + { + "url": "io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.jar", + "hash": "c7b478503ec524e55df19b424d46d27c8a68aeb801664fadd4f069b71f52d0f6", + "path": "io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.jar" + }, + { + "url": "io/grpc/grpc-context/1.73.0/grpc-context-1.73.0.jar", + "hash": "d8d6911e225b55501692651272ce961ba5be1f76662ceb7f0aa79ecce8f63f25", + "path": "io/grpc/grpc-context/1.73.0/grpc-context-1.73.0.jar" + }, + { + "url": "org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar", + "hash": "86e0255d4c879c61b4833ed7f13124e8bb679df47debb127326e7db7dd49a07b", + "path": "org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar" + }, + { + "url": "org/jetbrains/packagesearch/packagesearch-api-client-jvm/3.4.0/packagesearch-api-client-jvm-3.4.0.jar", + "hash": "9d0f4c74e96787499fcc2462c32afeb7f4db97db30042e2578f205f61e5898fb", + "path": "org/jetbrains/packagesearch/packagesearch-api-client-jvm/3.4.0/packagesearch-api-client-jvm-3.4.0.jar" + }, + { + "url": "org/jetbrains/packagesearch/packagesearch-http-models-jvm/3.4.0/packagesearch-http-models-jvm-3.4.0.jar", + "hash": "0318b967115de0c7c8fbd93bc6e3d279c82de2954f90794146962921de45972d", + "path": "org/jetbrains/packagesearch/packagesearch-http-models-jvm/3.4.0/packagesearch-http-models-jvm-3.4.0.jar" + }, + { + "url": "org/jetbrains/packagesearch/packagesearch-api-models-jvm/3.4.0/packagesearch-api-models-jvm-3.4.0.jar", + "hash": "22022fe954980d8e183b252889719fc6ca71a13e91b8e869d92532da308e3da1", + "path": "org/jetbrains/packagesearch/packagesearch-api-models-jvm/3.4.0/packagesearch-api-models-jvm-3.4.0.jar" + }, + { + "url": "org/jetbrains/packagesearch/packagesearch-version-utils-jvm/3.4.0/packagesearch-version-utils-jvm-3.4.0.jar", + "hash": "4c86546693efaeb889e02d043521cda15da5f10853b0471095b7db80dc0540e7", + "path": "org/jetbrains/packagesearch/packagesearch-version-utils-jvm/3.4.0/packagesearch-version-utils-jvm-3.4.0.jar" + }, + { + "url": "com/soywiz/korlibs/krypto/krypto-jvm/4.0.10/krypto-jvm-4.0.10.jar", + "hash": "0fe8dcdf54b13b5ec56fdb5f63c057364264bb2f51b7f7bc3c271d5b1ba68dcb", + "path": "com/soywiz/korlibs/krypto/krypto-jvm/4.0.10/krypto-jvm-4.0.10.jar" + }, { "url": "org/jetbrains/jediterm/jediterm-core/3.57/jediterm-core-3.57.jar", "hash": "e3d7c60adfdebe47732889d1ff21bc936ddf9990609ac54501c7cf749b0fe640", "path": "org/jetbrains/jediterm/jediterm-core/3.57/jediterm-core-3.57.jar" }, { - "url": "org/jetbrains/kotlin/kotlin-jps-plugin-tests-for-ide/2.2.20/kotlin-jps-plugin-tests-for-ide-2.2.20.jar", - "hash": "2074392bf202ae0cea075828e8739a17642eb3093db5f40e46b955937fbd8cdf", - "path": "org/jetbrains/kotlin/kotlin-jps-plugin-tests-for-ide/2.2.20/kotlin-jps-plugin-tests-for-ide-2.2.20.jar" + "url": "org/apache/lucene/lucene-highlighter/10.3.0/lucene-highlighter-10.3.0.jar", + "hash": "acbf67631c42197791363ce8e8f155f62aeef51ade809e0847a89eba44785c7d", + "path": "org/apache/lucene/lucene-highlighter/10.3.0/lucene-highlighter-10.3.0.jar" }, { - "url": "com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar", - "hash": "11a9ee6f88bb31f1450108d1cf6441377dec84aca075eb6bb2343be157575bea", - "path": "com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar" + "url": "org/jetbrains/kotlin/incremental-compilation-impl-tests-for-ide/2.3.20-ij253-45/incremental-compilation-impl-tests-for-ide-2.3.20-ij253-45.jar", + "hash": "9d2369a7e71ff367dbed384ee50976c25743b09e4be68a58f9412ad165d8e0d7", + "path": "org/jetbrains/kotlin/incremental-compilation-impl-tests-for-ide/2.3.20-ij253-45/incremental-compilation-impl-tests-for-ide-2.3.20-ij253-45.jar" }, { - "url": "net/minidev/json-smart/2.5.0/json-smart-2.5.0.jar", - "hash": "432b9e545848c4141b80717b26e367f83bf33f19250a228ce75da6e967da2bc7", - "path": "net/minidev/json-smart/2.5.0/json-smart-2.5.0.jar" + "url": "org/junit/jupiter/junit-jupiter-params/5.13.4/junit-jupiter-params-5.13.4.jar", + "hash": "3a8c6365716dbb698c0d49a05456c1e1ad05c406613c550f9dd50037872efc41", + "path": "org/junit/jupiter/junit-jupiter-params/5.13.4/junit-jupiter-params-5.13.4.jar" }, { - "url": "net/minidev/accessors-smart/2.5.0/accessors-smart-2.5.0.jar", - "hash": "12314fc6881d66a413fd66370787adba16e504fbf7e138690b0f3952e3fbd321", - "path": "net/minidev/accessors-smart/2.5.0/accessors-smart-2.5.0.jar" + "url": "org/jmock/jmock-junit4/2.5.1/jmock-junit4-2.5.1.jar", + "hash": "c53b16b999d3b2f1aa273bf5c560273d23e1fa21ce493ba7cbf5243118386b88", + "path": "org/jmock/jmock-junit4/2.5.1/jmock-junit4-2.5.1.jar" }, { - "url": "com/fasterxml/jackson/datatype/jackson-datatype-joda/2.19.0/jackson-datatype-joda-2.19.0.jar", - "hash": "585fbc8bb26dffa4a3174d74352dd3e29cba990a9c1b06c1a547906aff2869ec", - "path": "com/fasterxml/jackson/datatype/jackson-datatype-joda/2.19.0/jackson-datatype-joda-2.19.0.jar" + "url": "com/jetbrains/mlapi/mlapi-catboost/0.2.1/mlapi-catboost-0.2.1.jar", + "hash": "de75176f3c95433d8da2b95dcdd233b6d9e3cca39f6e2baedb01d4932f911c85", + "path": "com/jetbrains/mlapi/mlapi-catboost/0.2.1/mlapi-catboost-0.2.1.jar" }, { - "url": "joda-time/joda-time/2.12.7/joda-time-2.12.7.jar", - "hash": "385282b005818cfaccdbe8bd2429811e7e641782f2b88932a6b8ff51d668f616", - "path": "joda-time/joda-time/2.12.7/joda-time-2.12.7.jar" + "url": "com/jetbrains/intellij/platform/workspace-model-codegen/0.0.9/workspace-model-codegen-0.0.9.jar", + "hash": "78e527dfea8d79c16ea9ca875bd943d443b63bf9d0df1f253c233dc54366df35", + "path": "com/jetbrains/intellij/platform/workspace-model-codegen/0.0.9/workspace-model-codegen-0.0.9.jar" }, { - "url": "org/jetbrains/jetCheck/0.2.2/jetCheck-0.2.2.jar", - "hash": "c5f95c97171311066a13eb750a6bb999fa7eeb43c1394705034926336c0b7b0f", - "path": "org/jetbrains/jetCheck/0.2.2/jetCheck-0.2.2.jar" + "url": "org/jetbrains/kotlin/kotlin-metadata-jvm/2.2.20/kotlin-metadata-jvm-2.2.20.jar", + "hash": "8524eac90f7e8e0f1366883f2c6c820c93bfa61df3d76857c8d3e803cf67315d", + "path": "org/jetbrains/kotlin/kotlin-metadata-jvm/2.2.20/kotlin-metadata-jvm-2.2.20.jar" }, { - "url": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar", - "hash": "da7069c6e78809d7c37d104e415613cbd4cd5cec1ed54a332cb64ef6a864a060", - "path": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar" + "url": "info/cukes/cucumber-jvm-deps/1.0.5/cucumber-jvm-deps-1.0.5.jar", + "hash": "2a4e84a51defe9108579b3c0a86bb41e54f04e9042e83adf4348a974dcf1dee6", + "path": "info/cukes/cucumber-jvm-deps/1.0.5/cucumber-jvm-deps-1.0.5.jar" }, { - "url": "org/jetbrains/kotlin/analysis-api-for-ide/2.3.20-ij253-45/analysis-api-for-ide-2.3.20-ij253-45.jar", - "hash": "47db94b0240122449cb95aa00dd8b9d0722948b81f8390b9d27d38797c0fc784", - "path": "org/jetbrains/kotlin/analysis-api-for-ide/2.3.20-ij253-45/analysis-api-for-ide-2.3.20-ij253-45.jar" + "url": "com/github/ajalt/clikt/clikt-jvm/3.5.4/clikt-jvm-3.5.4.jar", + "hash": "b58b4d93fc1870b99b2adb3e16e9c483c8e73766b2944bc3cff805c0be47d19e", + "path": "com/github/ajalt/clikt/clikt-jvm/3.5.4/clikt-jvm-3.5.4.jar" }, { - "url": "org/jetbrains/kotlin/js-plain-objects-compiler-plugin-for-ide/2.3.20-ij253-45/js-plain-objects-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "fde628289a120756ea6155cbe76b905e7e800c968404aa20d76382ec0b26cf07", - "path": "org/jetbrains/kotlin/js-plain-objects-compiler-plugin-for-ide/2.3.20-ij253-45/js-plain-objects-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + "url": "io/mockk/mockk-jvm/1.14.5/mockk-jvm-1.14.5.jar", + "hash": "74deb86cbab6871a3e4d0f97ba8eacbdae7aacd7537f142bcb083590465a6219", + "path": "io/mockk/mockk-jvm/1.14.5/mockk-jvm-1.14.5.jar" }, { - "url": "org/apache/lucene/lucene-core/10.3.0/lucene-core-10.3.0.jar", - "hash": "9d70afe194568ca0328b7f762e64eb8094a5e5a76ea3a30b7182f0e7d5f0dd35", - "path": "org/apache/lucene/lucene-core/10.3.0/lucene-core-10.3.0.jar" + "url": "io/mockk/mockk-dsl-jvm/1.14.5/mockk-dsl-jvm-1.14.5.jar", + "hash": "d01d6ce85f9824d8ddb22ea7f1bccd581b831ffad504f48a4f18abf9bc6f2eac", + "path": "io/mockk/mockk-dsl-jvm/1.14.5/mockk-dsl-jvm-1.14.5.jar" }, { - "url": "org/jetbrains/intellij/deps/gradle-api/9.0.0/gradle-api-9.0.0.jar", - "hash": "b21806c4075aa42d4534ba7257097aea091ab99c40466b0f850872cfc07e7507", - "path": "org/jetbrains/intellij/deps/gradle-api/9.0.0/gradle-api-9.0.0.jar" + "url": "io/mockk/mockk-agent-jvm/1.14.5/mockk-agent-jvm-1.14.5.jar", + "hash": "9f78e9988e84c98569edcf9a6225d5b7354939529642e54c2c58da3ef3913106", + "path": "io/mockk/mockk-agent-jvm/1.14.5/mockk-agent-jvm-1.14.5.jar" }, { - "url": "org/jetbrains/kotlin/kotlin-jps-common-for-ide/2.3.20-ij253-45/kotlin-jps-common-for-ide-2.3.20-ij253-45.jar", - "hash": "4c42b6d0419bbdcb988df9ee3bd1d4f10fd90a3b1985966f66a9400d9c7a4ab0", - "path": "org/jetbrains/kotlin/kotlin-jps-common-for-ide/2.3.20-ij253-45/kotlin-jps-common-for-ide-2.3.20-ij253-45.jar" + "url": "io/mockk/mockk-agent-api-jvm/1.14.5/mockk-agent-api-jvm-1.14.5.jar", + "hash": "a919a8fec03dfb0c084cb43dafcebe2dd9351431c7a08c2fc8147037de1d06b7", + "path": "io/mockk/mockk-agent-api-jvm/1.14.5/mockk-agent-api-jvm-1.14.5.jar" }, { - "url": "org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar", - "hash": "2037be378980d3ba9333e97955f3b2cde392aa124d04ca73ce2eee6657199297", - "path": "org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar" + "url": "io/mockk/mockk-core-jvm/1.14.5/mockk-core-jvm-1.14.5.jar", + "hash": "060fffe7452e74f6e18bb9dfe1221e92c4ec0de29a84b022fb562ec6cd954691", + "path": "io/mockk/mockk-core-jvm/1.14.5/mockk-core-jvm-1.14.5.jar" }, { - "url": "com/amazon/ion/ion-java/1.11.10/ion-java-1.11.10.jar", - "hash": "ede1a1a3bf3e4c182105695728b8b2808f6edd03587dc0e258f9a8920593f903", - "path": "com/amazon/ion/ion-java/1.11.10/ion-java-1.11.10.jar" + "url": "com/googlecode/plist/dd-plist/1.28/dd-plist-1.28.jar", + "hash": "88ed8e730f7386297485176c4387146c6914a38c0e58fc296e8a01cdc3b621e1", + "path": "com/googlecode/plist/dd-plist/1.28/dd-plist-1.28.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-gradle-statistics-for-ide/2.3.20-ij253-45/kotlin-gradle-statistics-for-ide-2.3.20-ij253-45.jar", + "hash": "94ffb26541561992a8eb23937f28437782830f896b90a6eed6f97e479fffdfa0", + "path": "org/jetbrains/kotlin/kotlin-gradle-statistics-for-ide/2.3.20-ij253-45/kotlin-gradle-statistics-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar", + "hash": "0d704bc1148a8fd9a1f2005e0b5189cdaed3030efe24b8236459c41c356f5620", + "path": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar" + }, + { + "url": "org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar", + "hash": "e7c2a48e8515ba1f49fa637d57b4e2f590b3f5bd97407ac699c3aa5efb1204a9", + "path": "org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar" + }, + { + "url": "org/openjdk/jmh/jmh-generator-annprocess/1.36/jmh-generator-annprocess-1.36.jar", + "hash": "c2a88cf8be1eb0870732a7b2e669972efc7f33a145998f568096137f16b20d79", + "path": "org/openjdk/jmh/jmh-generator-annprocess/1.36/jmh-generator-annprocess-1.36.jar" + }, + { + "url": "org/jetbrains/kotlin/analysis-api-fe10-for-ide/2.3.20-ij253-45/analysis-api-fe10-for-ide-2.3.20-ij253-45.jar", + "hash": "cbf24708e46c2e064a37887d5b53d1234ba2b3c1d285ecc9ba82cb6152076297", + "path": "org/jetbrains/kotlin/analysis-api-fe10-for-ide/2.3.20-ij253-45/analysis-api-fe10-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "org/java-websocket/Java-WebSocket/1.6.0/Java-WebSocket-1.6.0.jar", + "hash": "eae29213e4f16515639c28957200f011b3967fffcada1962cf0255d24919c22f", + "path": "org/java-websocket/Java-WebSocket/1.6.0/Java-WebSocket-1.6.0.jar" + }, + { + "url": "com/fasterxml/jackson/core/jackson-core/2.19.0/jackson-core-2.19.0.jar", + "hash": "da8e859bac94874528116a25f20c68560e4287acbf27628711b8a4f96b028430", + "path": "com/fasterxml/jackson/core/jackson-core/2.19.0/jackson-core-2.19.0.jar" + }, + { + "url": "org/mockito/mockito-junit-jupiter/5.19.0/mockito-junit-jupiter-5.19.0.jar", + "hash": "7cfbb7a9c1198053c699c663479fd4836acc22c2650003c8dee20e7fbc55a65a", + "path": "org/mockito/mockito-junit-jupiter/5.19.0/mockito-junit-jupiter-5.19.0.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-test/2.2.20/kotlin-test-2.2.20.jar", + "hash": "0054c51c672512a918440703e35ea946a8e7a210872f2196dbd6b9f2959198b0", + "path": "org/jetbrains/kotlin/kotlin-test/2.2.20/kotlin-test-2.2.20.jar" + }, + { + "url": "org/jetbrains/intellij/deps/intellij-test-discovery-agent/1.0.763/intellij-test-discovery-agent-1.0.763.jar", + "hash": "de175ebed73336e126ecba42c8b93a6566f65b169c6b4a4deb8099fe28e944de", + "path": "org/jetbrains/intellij/deps/intellij-test-discovery-agent/1.0.763/intellij-test-discovery-agent-1.0.763.jar" + }, + { + "url": "org/junit/jupiter/junit-jupiter-engine/5.13.4/junit-jupiter-engine-5.13.4.jar", + "hash": "027404a92fe618b72465792a257951495c503a7d5751e2791e0f51c87f67f5bc", + "path": "org/junit/jupiter/junit-jupiter-engine/5.13.4/junit-jupiter-engine-5.13.4.jar" + }, + { + "url": "io/consensys/tuweni/tuweni-toml/2.7.1/tuweni-toml-2.7.1.jar", + "hash": "00cfcc187ff46ce8d702a0f2cb98d6a4f2a67f8f41242b5901e46efdcb7c84b7", + "path": "io/consensys/tuweni/tuweni-toml/2.7.1/tuweni-toml-2.7.1.jar" + }, + { + "url": "org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.jar", + "hash": "bd7f7b5d07bc0b047f10915b32ca4bb1de9e57d8049098882e4453c88c076a5d", + "path": "org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.jar" + }, + { + "url": "org/apache/thrift/libthrift/0.19.0/libthrift-0.19.0.jar", + "hash": "2b6e6550b40467ede7b3034a1a9eb9148fbf920cfdae5bf0b1d2bb3d4e780625", + "path": "org/apache/thrift/libthrift/0.19.0/libthrift-0.19.0.jar" + }, + { + "url": "commons-io/commons-io/2.18.0/commons-io-2.18.0.jar", + "hash": "f3ca0f8d63c40e23a56d54101c60d5edee136b42d84bfb85bc7963093109cf8b", + "path": "commons-io/commons-io/2.18.0/commons-io-2.18.0.jar" + }, + { + "url": "io/github/oshai/kotlin-logging-jvm/7.0.3/kotlin-logging-jvm-7.0.3.jar", + "hash": "241daa21665dd0ca55576a4bc4d8e9ace8891ae3c698cc77f13bb4bdac372e94", + "path": "io/github/oshai/kotlin-logging-jvm/7.0.3/kotlin-logging-jvm-7.0.3.jar" + }, + { + "url": "io/github/z4kn4fein/semver-jvm/2.0.0/semver-jvm-2.0.0.jar", + "hash": "fbbf174a4e78aa5be1f1b7db73edc5c0a6a2e59e1562263e2c3a2e510fa1ba45", + "path": "io/github/z4kn4fein/semver-jvm/2.0.0/semver-jvm-2.0.0.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-test-junit/2.2.20/kotlin-test-junit-2.2.20.jar", + "hash": "6842753b11a1544198f4a14b0f8820728327939b859c23c50b5fd4179c693900", + "path": "org/jetbrains/kotlin/kotlin-test-junit/2.2.20/kotlin-test-junit-2.2.20.jar" + }, + { + "url": "com/google/protobuf/protobuf-java-util/3.24.4-jb.2/protobuf-java-util-3.24.4-jb.2.jar", + "hash": "bd30f6cf55c4f9f0891f8b6ea6601c1502b643543d2535c8b477ea0481809e99", + "path": "com/google/protobuf/protobuf-java-util/3.24.4-jb.2/protobuf-java-util-3.24.4-jb.2.jar" + }, + { + "url": "com/jetbrains/rd/rd-swing/2025.3.1/rd-swing-2025.3.1.jar", + "hash": "8103c08a017068f9ba79aa260471780b38e3a68bce8995ec1d5279b523ac87ca", + "path": "com/jetbrains/rd/rd-swing/2025.3.1/rd-swing-2025.3.1.jar" + }, + { + "url": "org/jetbrains/intellij/plugins/structure-intellij/3.316/structure-intellij-3.316.jar", + "hash": "0efe45aca820a2f722f29a49e5ffe5cd14f06c51ad60842247fcb15f8048e28a", + "path": "org/jetbrains/intellij/plugins/structure-intellij/3.316/structure-intellij-3.316.jar" + }, + { + "url": "org/jetbrains/intellij/plugins/structure-base/3.316/structure-base-3.316.jar", + "hash": "83789c1710426adb1637f773ec79e46ad0acf845e77e7964d7f2030cc2fd25c9", + "path": "org/jetbrains/intellij/plugins/structure-base/3.316/structure-base-3.316.jar" + }, + { + "url": "org/atteo/evo-inflector/1.3/evo-inflector-1.3.jar", + "hash": "ac0192fd110a0363732b17ea94fd1ce8cfd85790c8e1551e14f866908b5d80e1", + "path": "org/atteo/evo-inflector/1.3/evo-inflector-1.3.jar" + }, + { + "url": "org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar", + "hash": "0b20f45e3a0fd8f0d12cdc5316b06776e902b1365db00118876f9175c60f302c", + "path": "org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-jps-plugin-classpath/2.2.20/kotlin-jps-plugin-classpath-2.2.20.jar", + "hash": "fa31a084adbecaaf98166e734fba1bf964e04e22671d70230ed9598cecd22124", + "path": "org/jetbrains/kotlin/kotlin-jps-plugin-classpath/2.2.20/kotlin-jps-plugin-classpath-2.2.20.jar" + }, + { + "url": "jetbrains/fleet/rhizomedb-compiler-plugin/2.2.20-0.1/rhizomedb-compiler-plugin-2.2.20-0.1.jar", + "hash": "eaaae0ef5b03c8cf3d3978699c517f3e2199f50191568efaff4d525be963f544", + "path": "jetbrains/fleet/rhizomedb-compiler-plugin/2.2.20-0.1/rhizomedb-compiler-plugin-2.2.20-0.1.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-compiler-common-for-ide/2.3.20-ij253-45/kotlin-compiler-common-for-ide-2.3.20-ij253-45.jar", + "hash": "4af9a30fde5d143da69428bfef59e292c794927613bf0a5b111aaaa0ead01ba2", + "path": "org/jetbrains/kotlin/kotlin-compiler-common-for-ide/2.3.20-ij253-45/kotlin-compiler-common-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "com/charleskorn/kaml/kaml-jvm/0.80.1/kaml-jvm-0.80.1.jar", + "hash": "7e346b94d47fb4e4495ebd6161fd5c6d01659687e93c460bbfd320ba47bea852", + "path": "com/charleskorn/kaml/kaml-jvm/0.80.1/kaml-jvm-0.80.1.jar" + }, + { + "url": "it/krzeminski/snakeyaml-engine-kmp-jvm/3.1.1/snakeyaml-engine-kmp-jvm-3.1.1.jar", + "hash": "733e1347e3ec909e8a7ee199e48a64d0180569461b3bc08c8a6bb1335f5ce1bd", + "path": "it/krzeminski/snakeyaml-engine-kmp-jvm/3.1.1/snakeyaml-engine-kmp-jvm-3.1.1.jar" + }, + { + "url": "net/thauvin/erik/urlencoder/urlencoder-lib-jvm/1.6.0/urlencoder-lib-jvm-1.6.0.jar", + "hash": "8d0fd2aeb48d19dc49c563ebc00f274947e45f716c107535c12ead63decd688d", + "path": "net/thauvin/erik/urlencoder/urlencoder-lib-jvm/1.6.0/urlencoder-lib-jvm-1.6.0.jar" + }, + { + "url": "org/jetbrains/intellij/deps/studio-test-platform/2025.1.2-287/studio-test-platform-2025.1.2-287.jar", + "hash": "146d8ebb454cccee149a81cc47026b6a576953aeb811f2ef6979bb44a5e4b50f", + "path": "org/jetbrains/intellij/deps/studio-test-platform/2025.1.2-287/studio-test-platform-2025.1.2-287.jar" + }, + { + "url": "org/jetbrains/kotlinx/kotlinx-serialization-cbor-jvm/1.8.1/kotlinx-serialization-cbor-jvm-1.8.1.jar", + "hash": "604c4130ca7a0e979a449cf550087a5c2c586485e8af01dcf24b03b7b287306d", + "path": "org/jetbrains/kotlinx/kotlinx-serialization-cbor-jvm/1.8.1/kotlinx-serialization-cbor-jvm-1.8.1.jar" + }, + { + "url": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar", + "hash": "b04aede18e9c008168096dc53a3fc016177b61a5ec3024afbf8caca0cd5dbf42", + "path": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar" + }, + { + "url": "com/google/jimfs/jimfs/1.1/jimfs-1.1.jar", + "hash": "c4828e28d7c0a930af9387510b3bada7daa5c04d7c25a75c7b8b081f1c257ddd", + "path": "com/google/jimfs/jimfs/1.1/jimfs-1.1.jar" + }, + { + "url": "io/modelcontextprotocol/kotlin-sdk-jvm/0.8.1/kotlin-sdk-jvm-0.8.1.jar", + "hash": "095e5d11868ae359bd640c922c2d1ed7a20ba519496599ee697e81c468761339", + "path": "io/modelcontextprotocol/kotlin-sdk-jvm/0.8.1/kotlin-sdk-jvm-0.8.1.jar" + }, + { + "url": "io/modelcontextprotocol/kotlin-sdk-client-jvm/0.8.1/kotlin-sdk-client-jvm-0.8.1.jar", + "hash": "e88a667c25b8ebb7c81f76dd96cb34ea804754752b5533a842b99d0daea2be99", + "path": "io/modelcontextprotocol/kotlin-sdk-client-jvm/0.8.1/kotlin-sdk-client-jvm-0.8.1.jar" + }, + { + "url": "io/modelcontextprotocol/kotlin-sdk-server-jvm/0.8.1/kotlin-sdk-server-jvm-0.8.1.jar", + "hash": "6086acf1d65bca24de344b493e3fc241f0db2b25fa0606057eee39e3a2264737", + "path": "io/modelcontextprotocol/kotlin-sdk-server-jvm/0.8.1/kotlin-sdk-server-jvm-0.8.1.jar" + }, + { + "url": "io/modelcontextprotocol/kotlin-sdk-core-jvm/0.8.1/kotlin-sdk-core-jvm-0.8.1.jar", + "hash": "dd9a13ba6b0803040b6fea56b6db66bc9c4f31dacf678dac642aaaff8d88a543", + "path": "io/modelcontextprotocol/kotlin-sdk-core-jvm/0.8.1/kotlin-sdk-core-jvm-0.8.1.jar" + }, + { + "url": "io/kotest/kotest-assertions-core-jvm/5.5.4/kotest-assertions-core-jvm-5.5.4.jar", + "hash": "3acf3de882ec2c714dfc173cc382c38a5aee70c3f2bdda732583916845226d0c", + "path": "io/kotest/kotest-assertions-core-jvm/5.5.4/kotest-assertions-core-jvm-5.5.4.jar" + }, + { + "url": "io/kotest/kotest-assertions-shared-jvm/5.5.4/kotest-assertions-shared-jvm-5.5.4.jar", + "hash": "9977d913ef1fccf2e2663b5906d955fdf8215d0ec48265d669b01e05179e2043", + "path": "io/kotest/kotest-assertions-shared-jvm/5.5.4/kotest-assertions-shared-jvm-5.5.4.jar" + }, + { + "url": "org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar", + "hash": "58812de60898d976fb81ef3b62da05c6604c18fd4a249f5044282479fc286af2", + "path": "org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar" + }, + { + "url": "io/kotest/kotest-common-jvm/5.5.4/kotest-common-jvm-5.5.4.jar", + "hash": "a2a4d02b86b2e849e514d18dbdf4b29e2e9d091e3c6f4d9d028db9cdc55dd28b", + "path": "io/kotest/kotest-common-jvm/5.5.4/kotest-common-jvm-5.5.4.jar" + }, + { + "url": "io/kotest/kotest-assertions-api-jvm/5.5.4/kotest-assertions-api-jvm-5.5.4.jar", + "hash": "8b1c3e582e2f6f662261f3f45a6d723f3dd8d8b2b0b86a3f7d8e6c966eca0568", + "path": "io/kotest/kotest-assertions-api-jvm/5.5.4/kotest-assertions-api-jvm-5.5.4.jar" + }, + { + "url": "jetbrains/fleet/expects-compiler-plugin/2.2.20-0.1/expects-compiler-plugin-2.2.20-0.1.jar", + "hash": "ce4dc5b9232e9467373ef2e79cab9e3404db898ab45020ce14ef893944745331", + "path": "jetbrains/fleet/expects-compiler-plugin/2.2.20-0.1/expects-compiler-plugin-2.2.20-0.1.jar" + }, + { + "url": "com/android/tools/analytics-library/testing/31.5.0-alpha08/testing-31.5.0-alpha08.jar", + "hash": "a000df0643439bfc1a41cc35098491dcb5733766e629ecbed2d68adb473f8420", + "path": "com/android/tools/analytics-library/testing/31.5.0-alpha08/testing-31.5.0-alpha08.jar" + }, + { + "url": "org/testcontainers/testcontainers/1.20.3/testcontainers-1.20.3.jar", + "hash": "e1d89a13d93337e1b14000d6c7c3e8e047fe244db63231134e52fbc1c0ffc5f7", + "path": "org/testcontainers/testcontainers/1.20.3/testcontainers-1.20.3.jar" + }, + { + "url": "org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.jar", + "hash": "31cef12ddec979d1f86d7cf708c41a17da523d05c685fd6642e9d0b2addb7240", + "path": "org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.jar" + }, + { + "url": "com/github/docker-java/docker-java-api/3.4.0/docker-java-api-3.4.0.jar", + "hash": "ad8e9f748380985e0b702bfb2356749a0966afa28a7d637aa3211217ae6a6f2e", + "path": "com/github/docker-java/docker-java-api/3.4.0/docker-java-api-3.4.0.jar" + }, + { + "url": "com/github/docker-java/docker-java-transport-zerodep/3.4.0/docker-java-transport-zerodep-3.4.0.jar", + "hash": "aac3ba9ed78c73961d13d7b7dac51ba51fe9089629efd4f77ffa4e6e8c6e4048", + "path": "com/github/docker-java/docker-java-transport-zerodep/3.4.0/docker-java-transport-zerodep-3.4.0.jar" + }, + { + "url": "com/github/docker-java/docker-java-transport/3.4.0/docker-java-transport-3.4.0.jar", + "hash": "a1a8ce872dbf92423a948443b88b9417283ead5d56cb5ed77803353658b97b34", + "path": "com/github/docker-java/docker-java-transport/3.4.0/docker-java-transport-3.4.0.jar" + }, + { + "url": "com/networknt/json-schema-validator/1.3.1/json-schema-validator-1.3.1.jar", + "hash": "81ad7bfe7e59de4cd047eacf24f979ec47db40eac6afc76e6f10288b456b14b1", + "path": "com/networknt/json-schema-validator/1.3.1/json-schema-validator-1.3.1.jar" + }, + { + "url": "org/xerial/sqlite-jdbc/3.50.3.0/sqlite-jdbc-3.50.3.0.jar", + "hash": "a3f53a2aa15ae9425a9e793bbe9c8e5288febeb4b65ef5c1a4e80d4c2045cf08", + "path": "org/xerial/sqlite-jdbc/3.50.3.0/sqlite-jdbc-3.50.3.0.jar" + }, + { + "url": "com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.19.0/jackson-dataformat-toml-2.19.0.jar", + "hash": "e6312d390c6bef67681f8e258f29ced2f3d0fa1d83a72e0bec1513b8c1c4f430", + "path": "com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.19.0/jackson-dataformat-toml-2.19.0.jar" + }, + { + "url": "com/jetbrains/infra/download-pgp-verifier/1.1.4/download-pgp-verifier-1.1.4.jar", + "hash": "2bbfa931b2864c4f5e1fd22046d001df8d9a8592a20255baab0d396ed71c854c", + "path": "com/jetbrains/infra/download-pgp-verifier/1.1.4/download-pgp-verifier-1.1.4.jar" + }, + { + "url": "com/android/tools/layoutlib/layoutlib/15.2.3/layoutlib-15.2.3.jar", + "hash": "e826a88e448a0c1d42abc30c9d047131badbac6fc3922b8e93ac3ea27bb0eb2c", + "path": "com/android/tools/layoutlib/layoutlib/15.2.3/layoutlib-15.2.3.jar" + }, + { + "url": "com/jetbrains/rd/rd-text/2025.3.1/rd-text-2025.3.1.jar", + "hash": "e465ab42d9c79cdec7147c8210f8e65d5f816704d47b959ac9f2cfc3f68dedb5", + "path": "com/jetbrains/rd/rd-text/2025.3.1/rd-text-2025.3.1.jar" + }, + { + "url": "org/jetbrains/kotlin/parcelize-compiler-plugin-for-ide/2.3.20-ij253-45/parcelize-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "c4e51a757d46f19bdc2264c7be0cba0cc52eb52c9047c0be9b1df91eb8195f4e", + "path": "org/jetbrains/kotlin/parcelize-compiler-plugin-for-ide/2.3.20-ij253-45/parcelize-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "org/jetbrains/markdown-jvm/0.7.2/markdown-jvm-0.7.2.jar", + "hash": "02e0f9bf95e4b9f81e34593691a5c0ff14604db39fb8446fe9a4efa66553f3ac", + "path": "org/jetbrains/markdown-jvm/0.7.2/markdown-jvm-0.7.2.jar" + }, + { + "url": "org/swinglabs/swingx-core/1.6.2-2/swingx-core-1.6.2-2.jar", + "hash": "0df80935d9bc3b3841bc621c6fef6615c93aaf80393ccaa196db11bf97784f18", + "path": "org/swinglabs/swingx-core/1.6.2-2/swingx-core-1.6.2-2.jar" + }, + { + "url": "com/fasterxml/jackson/module/jackson-module-kotlin/2.19.0/jackson-module-kotlin-2.19.0.jar", + "hash": "df967eebc2c87eaa3f55338607104ffc8fa62fb2e813d67f95ed4f7f9c6f8cee", + "path": "com/fasterxml/jackson/module/jackson-module-kotlin/2.19.0/jackson-module-kotlin-2.19.0.jar" + }, + { + "url": "org/junit/platform/junit-platform-suite/1.13.4/junit-platform-suite-1.13.4.jar", + "hash": "8088a80b47f5a7e73fa107f466dfa6a86776ca496fc2e7724aba65202d467913", + "path": "org/junit/platform/junit-platform-suite/1.13.4/junit-platform-suite-1.13.4.jar" + }, + { + "url": "org/junit/platform/junit-platform-suite-api/1.13.4/junit-platform-suite-api-1.13.4.jar", + "hash": "9a05bf77e128371f5b3e25ffc89f7af467a9f68dd365fdfced469ebcf533abc9", + "path": "org/junit/platform/junit-platform-suite-api/1.13.4/junit-platform-suite-api-1.13.4.jar" + }, + { + "url": "org/junit/platform/junit-platform-suite-engine/1.13.4/junit-platform-suite-engine-1.13.4.jar", + "hash": "3b34fd8172d70d0d7c59155e487bd8e77d43bdbfdcfe1d78c2b4eea55e9acb92", + "path": "org/junit/platform/junit-platform-suite-engine/1.13.4/junit-platform-suite-engine-1.13.4.jar" + }, + { + "url": "org/junit/platform/junit-platform-suite-commons/1.13.4/junit-platform-suite-commons-1.13.4.jar", + "hash": "e7dacfcfa3bc692c0a7a413cefd5f51ae420415a14d39091bdf88aebfdba70b6", + "path": "org/junit/platform/junit-platform-suite-commons/1.13.4/junit-platform-suite-commons-1.13.4.jar" + }, + { + "url": "org/junit/platform/junit-platform-launcher/1.13.4/junit-platform-launcher-1.13.4.jar", + "hash": "0b0beaeb6880a31149641d2d848b863712885469670c12099586d7f798522564", + "path": "org/junit/platform/junit-platform-launcher/1.13.4/junit-platform-launcher-1.13.4.jar" + }, + { + "url": "org/junit/platform/junit-platform-engine/1.13.4/junit-platform-engine-1.13.4.jar", + "hash": "390c5f77b84283a64b644f88251b397e0b0debb80bdcc50f899881aecff43a5a", + "path": "org/junit/platform/junit-platform-engine/1.13.4/junit-platform-engine-1.13.4.jar" }, { "url": "org/apache/maven/maven-resolver-provider/3.9.9/maven-resolver-provider-3.9.9.jar", @@ -970,239 +1845,14 @@ "path": "org/apache/maven/resolver/maven-resolver-named-locks/1.9.22/maven-resolver-named-locks-1.9.22.jar" }, { - "url": "io/netty/netty-codec-http2/4.2.0.RC2/netty-codec-http2-4.2.0.RC2.jar", - "hash": "c542657efd81b268535fb77e1866c8234c5a22de416ecbd8aea0e06e2c1588de", - "path": "io/netty/netty-codec-http2/4.2.0.RC2/netty-codec-http2-4.2.0.RC2.jar" + "url": "org/jetbrains/kotlin/js-plain-objects-compiler-plugin-for-ide/2.3.20-ij253-45/js-plain-objects-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "fde628289a120756ea6155cbe76b905e7e800c968404aa20d76382ec0b26cf07", + "path": "org/jetbrains/kotlin/js-plain-objects-compiler-plugin-for-ide/2.3.20-ij253-45/js-plain-objects-compiler-plugin-for-ide-2.3.20-ij253-45.jar" }, { - "url": "io/netty/netty-transport/4.2.0.RC2/netty-transport-4.2.0.RC2.jar", - "hash": "9c86cf3a130237b059f5ef89661a4fbe715f5e8bce9626a6aded95a1c3775a47", - "path": "io/netty/netty-transport/4.2.0.RC2/netty-transport-4.2.0.RC2.jar" - }, - { - "url": "io/netty/netty-resolver/4.2.0.RC2/netty-resolver-4.2.0.RC2.jar", - "hash": "10fa70357cbfd55f52d64cf4bb4011e01ced0e0e5dea0bac77f73908cef676ff", - "path": "io/netty/netty-resolver/4.2.0.RC2/netty-resolver-4.2.0.RC2.jar" - }, - { - "url": "io/netty/netty-codec/4.2.0.RC2/netty-codec-4.2.0.RC2.jar", - "hash": "b94f2d169acd04e8a41f1082e8f522529be1f5a10515473de9fb8d259afbfc77", - "path": "io/netty/netty-codec/4.2.0.RC2/netty-codec-4.2.0.RC2.jar" - }, - { - "url": "io/netty/netty-codec-base/4.2.0.RC2/netty-codec-base-4.2.0.RC2.jar", - "hash": "f39581a55f89fb0586373e237e1e4a9d5e2fe3b94167c7a6762552651e5a6038", - "path": "io/netty/netty-codec-base/4.2.0.RC2/netty-codec-base-4.2.0.RC2.jar" - }, - { - "url": "io/netty/netty-handler/4.2.0.RC2/netty-handler-4.2.0.RC2.jar", - "hash": "3f1912b14a2fdd7ad2ef0bda9eeb1ae544c463857081d7dd69f9aa2b7137de6e", - "path": "io/netty/netty-handler/4.2.0.RC2/netty-handler-4.2.0.RC2.jar" - }, - { - "url": "io/netty/netty-transport-native-unix-common/4.2.0.RC2/netty-transport-native-unix-common-4.2.0.RC2.jar", - "hash": "dfc1db2a05dafeba40987a76591004cc72d4a27062d874961fadc5059900f65d", - "path": "io/netty/netty-transport-native-unix-common/4.2.0.RC2/netty-transport-native-unix-common-4.2.0.RC2.jar" - }, - { - "url": "io/netty/netty-codec-http/4.2.0.RC2/netty-codec-http-4.2.0.RC2.jar", - "hash": "a44d21dff0254e4f4f9ceb7870e8b27a403d7f1d6325ab03ae6c045302957761", - "path": "io/netty/netty-codec-http/4.2.0.RC2/netty-codec-http-4.2.0.RC2.jar" - }, - { - "url": "com/networknt/json-schema-validator/1.3.1/json-schema-validator-1.3.1.jar", - "hash": "81ad7bfe7e59de4cd047eacf24f979ec47db40eac6afc76e6f10288b456b14b1", - "path": "com/networknt/json-schema-validator/1.3.1/json-schema-validator-1.3.1.jar" - }, - { - "url": "org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar", - "hash": "22d1d4316c4ec13a68b559e98c8256d69071593731da96136640f864fa14fad8", - "path": "org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar" - }, - { - "url": "org/assertj/assertj-core/4.0.0-M1/assertj-core-4.0.0-M1.jar", - "hash": "03852ab5b4419c1b0b3689930cdc1ac4f0c437a0c8094a900370dcb170cfbb46", - "path": "org/assertj/assertj-core/4.0.0-M1/assertj-core-4.0.0-M1.jar" - }, - { - "url": "org/jetbrains/kotlinx/kotlinx-serialization-json-jvm/1.8.1/kotlinx-serialization-json-jvm-1.8.1.jar", - "hash": "8769e5647557e3700919c32d508f5c5dad53c5d8234cd10846354fbcff14aa24", - "path": "org/jetbrains/kotlinx/kotlinx-serialization-json-jvm/1.8.1/kotlinx-serialization-json-jvm-1.8.1.jar" - }, - { - "url": "org/jetbrains/kotlin/analysis-api-impl-base-for-ide/2.3.20-ij253-45/analysis-api-impl-base-for-ide-2.3.20-ij253-45.jar", - "hash": "1ae230b0e5847a47838b871060b7271c9b2329febb85e1470d1490ffe2e28fd4", - "path": "org/jetbrains/kotlin/analysis-api-impl-base-for-ide/2.3.20-ij253-45/analysis-api-impl-base-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar", - "hash": "b04aede18e9c008168096dc53a3fc016177b61a5ec3024afbf8caca0cd5dbf42", - "path": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar" - }, - { - "url": "org/jetbrains/intellij/deps/commons-imaging/1.0-RC-1/commons-imaging-1.0-RC-1.jar", - "hash": "ba1cb46e5494286940b016da372ae94a60d2dbc411b6dac5db1e40128725d501", - "path": "org/jetbrains/intellij/deps/commons-imaging/1.0-RC-1/commons-imaging-1.0-RC-1.jar" - }, - { - "url": "com/intellij/platform/kotlinx-coroutines-core-jvm/1.10.1-intellij-5/kotlinx-coroutines-core-jvm-1.10.1-intellij-5.jar", - "hash": "e9b7e2b1262fd02fe63b08f636903ff36f453f08ae52190c78e3cbf19d777e42", - "path": "com/intellij/platform/kotlinx-coroutines-core-jvm/1.10.1-intellij-5/kotlinx-coroutines-core-jvm-1.10.1-intellij-5.jar" - }, - { - "url": "io/github/z4kn4fein/semver-jvm/2.0.0/semver-jvm-2.0.0.jar", - "hash": "fbbf174a4e78aa5be1f1b7db73edc5c0a6a2e59e1562263e2c3a2e510fa1ba45", - "path": "io/github/z4kn4fein/semver-jvm/2.0.0/semver-jvm-2.0.0.jar" - }, - { - "url": "org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar", - "hash": "4eeeae8d20c078abb64b015ec158add383ac581571cddc45c68f0c9ae0230720", - "path": "org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar" - }, - { - "url": "org/codehaus/groovy/groovy-json/3.0.25/groovy-json-3.0.25.jar", - "hash": "511cea72a464809d7e376968910fa704f9fa5afa8f2a94b53672a061b45475bb", - "path": "org/codehaus/groovy/groovy-json/3.0.25/groovy-json-3.0.25.jar" - }, - { - "url": "com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.19.0/jackson-dataformat-toml-2.19.0.jar", - "hash": "e6312d390c6bef67681f8e258f29ced2f3d0fa1d83a72e0bec1513b8c1c4f430", - "path": "com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.19.0/jackson-dataformat-toml-2.19.0.jar" - }, - { - "url": "org/mockito/mockito-core/5.19.0/mockito-core-5.19.0.jar", - "hash": "d875ff234a4b72e0eedfe170dd804797a4b87ba4c76207c9659d6f46b527877b", - "path": "org/mockito/mockito-core/5.19.0/mockito-core-5.19.0.jar" - }, - { - "url": "net/bytebuddy/byte-buddy-agent/1.17.6/byte-buddy-agent-1.17.6.jar", - "hash": "8a80959465bb09848cd41a89301490c55b9d940dc6ec30d8abac0f63b39fd5d0", - "path": "net/bytebuddy/byte-buddy-agent/1.17.6/byte-buddy-agent-1.17.6.jar" - }, - { - "url": "org/objenesis/objenesis/3.3/objenesis-3.3.jar", - "hash": "02dfd0b0439a5591e35b708ed2f5474eb0948f53abf74637e959b8e4ef69bfeb", - "path": "org/objenesis/objenesis/3.3/objenesis-3.3.jar" - }, - { - "url": "com/google/code/gson/gson/2.13.1/gson-2.13.1.jar", - "hash": "94855942d4992f112946d3de1c334e709237b8126d8130bf07807c018a4a2120", - "path": "com/google/code/gson/gson/2.13.1/gson-2.13.1.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-compiler-fe10-for-ide/2.3.20-ij253-45/kotlin-compiler-fe10-for-ide-2.3.20-ij253-45.jar", - "hash": "d1f296fae451d3e16f70a6812fe88024132422189a6cb8a74e4f62b1fa5f18fd", - "path": "org/jetbrains/kotlin/kotlin-compiler-fe10-for-ide/2.3.20-ij253-45/kotlin-compiler-fe10-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "com/typesafe/config/1.4.4/config-1.4.4.jar", - "hash": "ab16decc45cc678b0cf17fb9668f380a73bfdf11b75af1fa1ddec5da82805aea", - "path": "com/typesafe/config/1.4.4/config-1.4.4.jar" - }, - { - "url": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar", - "hash": "746e2a3dece87379d64c40999401969001d373de1458fe851c0d2e0f880b42ef", - "path": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar" - }, - { - "url": "org/junit-pioneer/junit-pioneer/2.3.0/junit-pioneer-2.3.0.jar", - "hash": "8b09db32c8cf5b2112a00262411ccd4ef6ca3bae695a0015ecad4def23dea9fd", - "path": "org/junit-pioneer/junit-pioneer/2.3.0/junit-pioneer-2.3.0.jar" - }, - { - "url": "org/junit/vintage/junit-vintage-engine/5.13.4/junit-vintage-engine-5.13.4.jar", - "hash": "066b702d850ebcde36f2a8181b46a2f0f1416129d1dc63c3a1e1531006e74739", - "path": "org/junit/vintage/junit-vintage-engine/5.13.4/junit-vintage-engine-5.13.4.jar" - }, - { - "url": "org/testcontainers/testcontainers/1.20.3/testcontainers-1.20.3.jar", - "hash": "e1d89a13d93337e1b14000d6c7c3e8e047fe244db63231134e52fbc1c0ffc5f7", - "path": "org/testcontainers/testcontainers/1.20.3/testcontainers-1.20.3.jar" - }, - { - "url": "org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.jar", - "hash": "31cef12ddec979d1f86d7cf708c41a17da523d05c685fd6642e9d0b2addb7240", - "path": "org/rnorth/duct-tape/duct-tape/1.0.8/duct-tape-1.0.8.jar" - }, - { - "url": "com/github/docker-java/docker-java-api/3.4.0/docker-java-api-3.4.0.jar", - "hash": "ad8e9f748380985e0b702bfb2356749a0966afa28a7d637aa3211217ae6a6f2e", - "path": "com/github/docker-java/docker-java-api/3.4.0/docker-java-api-3.4.0.jar" - }, - { - "url": "com/github/docker-java/docker-java-transport-zerodep/3.4.0/docker-java-transport-zerodep-3.4.0.jar", - "hash": "aac3ba9ed78c73961d13d7b7dac51ba51fe9089629efd4f77ffa4e6e8c6e4048", - "path": "com/github/docker-java/docker-java-transport-zerodep/3.4.0/docker-java-transport-zerodep-3.4.0.jar" - }, - { - "url": "com/github/docker-java/docker-java-transport/3.4.0/docker-java-transport-3.4.0.jar", - "hash": "a1a8ce872dbf92423a948443b88b9417283ead5d56cb5ed77803353658b97b34", - "path": "com/github/docker-java/docker-java-transport/3.4.0/docker-java-transport-3.4.0.jar" - }, - { - "url": "org/junit/platform/junit-platform-suite/1.13.4/junit-platform-suite-1.13.4.jar", - "hash": "8088a80b47f5a7e73fa107f466dfa6a86776ca496fc2e7724aba65202d467913", - "path": "org/junit/platform/junit-platform-suite/1.13.4/junit-platform-suite-1.13.4.jar" - }, - { - "url": "org/junit/platform/junit-platform-suite-api/1.13.4/junit-platform-suite-api-1.13.4.jar", - "hash": "9a05bf77e128371f5b3e25ffc89f7af467a9f68dd365fdfced469ebcf533abc9", - "path": "org/junit/platform/junit-platform-suite-api/1.13.4/junit-platform-suite-api-1.13.4.jar" - }, - { - "url": "org/junit/platform/junit-platform-suite-engine/1.13.4/junit-platform-suite-engine-1.13.4.jar", - "hash": "3b34fd8172d70d0d7c59155e487bd8e77d43bdbfdcfe1d78c2b4eea55e9acb92", - "path": "org/junit/platform/junit-platform-suite-engine/1.13.4/junit-platform-suite-engine-1.13.4.jar" - }, - { - "url": "org/junit/platform/junit-platform-suite-commons/1.13.4/junit-platform-suite-commons-1.13.4.jar", - "hash": "e7dacfcfa3bc692c0a7a413cefd5f51ae420415a14d39091bdf88aebfdba70b6", - "path": "org/junit/platform/junit-platform-suite-commons/1.13.4/junit-platform-suite-commons-1.13.4.jar" - }, - { - "url": "org/apache/lucene/lucene-suggest/10.3.0/lucene-suggest-10.3.0.jar", - "hash": "4b53bf7160e8cdf2ae6bf1a27018bb4fbfdb1841fbdad988c5ff71c7920f4a84", - "path": "org/apache/lucene/lucene-suggest/10.3.0/lucene-suggest-10.3.0.jar" - }, - { - "url": "org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar", - "hash": "ef779af5d29a9dde8cc70ce0341f5c6f7735e23edff9685ceaa9d35359b7bb7f", - "path": "org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar" - }, - { - "url": "com/jetbrains/rd/rd-core/2025.3.1/rd-core-2025.3.1.jar", - "hash": "05492a77e70f6a35f1ce19b60841ba39f2fcbe03b1b26eee7aea0c8745cc5e7e", - "path": "com/jetbrains/rd/rd-core/2025.3.1/rd-core-2025.3.1.jar" - }, - { - "url": "io/opentelemetry/semconv/opentelemetry-semconv/1.30.0/opentelemetry-semconv-1.30.0.jar", - "hash": "99c2478a9b803b7d385d1624d5c1ab6f9a64cac5a2dc00f44a350744a1d858ac", - "path": "io/opentelemetry/semconv/opentelemetry-semconv/1.30.0/opentelemetry-semconv-1.30.0.jar" - }, - { - "url": "org/jetbrains/kotlin/parcelize-compiler-plugin-for-ide/2.3.20-ij253-45/parcelize-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "c4e51a757d46f19bdc2264c7be0cba0cc52eb52c9047c0be9b1df91eb8195f4e", - "path": "org/jetbrains/kotlin/parcelize-compiler-plugin-for-ide/2.3.20-ij253-45/parcelize-compiler-plugin-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar", - "hash": "88b955a0df57880a26a74708bc34f74dcaf8ebf4e78843a28b50eae945732b06", - "path": "javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar" - }, - { - "url": "org/jetbrains/kotlin/low-level-api-fir-for-ide/2.3.20-ij253-45/low-level-api-fir-for-ide-2.3.20-ij253-45.jar", - "hash": "635cd736b002e250cbb2165f5cb05b2a9750f403ec8eaf6e1be9fad67f3ec1aa", - "path": "org/jetbrains/kotlin/low-level-api-fir-for-ide/2.3.20-ij253-45/low-level-api-fir-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-stdlib/2.2.20/kotlin-stdlib-2.2.20.jar", - "hash": "8836ccffd3585fadda9901244b20d42901d2f3cd581058d8434e2ffabcf3a3e7", - "path": "org/jetbrains/kotlin/kotlin-stdlib/2.2.20/kotlin-stdlib-2.2.20.jar" - }, - { - "url": "org/jetbrains/compose/components/components-ui-tooling-preview-desktop/1.9.0/components-ui-tooling-preview-desktop-1.9.0.jar", - "hash": "ca0857dcde7cffff8eea3cce2940a285f219f673829f7f9a3381f767d224f411", - "path": "org/jetbrains/compose/components/components-ui-tooling-preview-desktop/1.9.0/components-ui-tooling-preview-desktop-1.9.0.jar" + "url": "org/jetbrains/kotlinx/kotlinx-collections-immutable-jvm/0.4.0/kotlinx-collections-immutable-jvm-0.4.0.jar", + "hash": "d767014ad0c9a27d27d26fd38e7afa030aee0d141338f108781ff02ecf2fdab5", + "path": "org/jetbrains/kotlinx/kotlinx-collections-immutable-jvm/0.4.0/kotlinx-collections-immutable-jvm-0.4.0.jar" }, { "url": "com/jgoodies/jgoodies-common/1.4.0/jgoodies-common-1.4.0.jar", @@ -1210,154 +1860,44 @@ "path": "com/jgoodies/jgoodies-common/1.4.0/jgoodies-common-1.4.0.jar" }, { - "url": "io/vavr/vavr/0.10.4/vavr-0.10.4.jar", - "hash": "12622deeea2618b59b284051a9484f1def8ccbebc847c350358f12d325ba9dd5", - "path": "io/vavr/vavr/0.10.4/vavr-0.10.4.jar" + "url": "org/jetbrains/kotlin/kotlin-compiler-tests-for-ide/2.3.20-ij253-45/kotlin-compiler-tests-for-ide-2.3.20-ij253-45.jar", + "hash": "4b182e6689c0b5ff330195dc89d249df941a11a7027ce08e6e84163fa89d37d2", + "path": "org/jetbrains/kotlin/kotlin-compiler-tests-for-ide/2.3.20-ij253-45/kotlin-compiler-tests-for-ide-2.3.20-ij253-45.jar" }, { - "url": "io/vavr/vavr-match/0.10.4/vavr-match-0.10.4.jar", - "hash": "d46f96bf59ccd5800261eec5869a6877ee0a37ea781312e6735be55539f50354", - "path": "io/vavr/vavr-match/0.10.4/vavr-match-0.10.4.jar" + "url": "org/jetbrains/kotlin/kotlin-script-runtime/2.2.20/kotlin-script-runtime-2.2.20.jar", + "hash": "5c8bd5dd7ae1ea2eeb2778fdbeaa19a562184975f6cab8a0bb6779e4190731ae", + "path": "org/jetbrains/kotlin/kotlin-script-runtime/2.2.20/kotlin-script-runtime-2.2.20.jar" }, { - "url": "org/jetbrains/kotlin/kotlin-compiler-fir-for-ide/2.3.20-ij253-45/kotlin-compiler-fir-for-ide-2.3.20-ij253-45.jar", - "hash": "51241b1d60e87ef52b69ad58dc530230dd832def0cec16ca3a57e705f7ecd9bc", - "path": "org/jetbrains/kotlin/kotlin-compiler-fir-for-ide/2.3.20-ij253-45/kotlin-compiler-fir-for-ide-2.3.20-ij253-45.jar" + "url": "org/jetbrains/kotlin/kotlin-jps-common-for-ide/2.3.20-ij253-45/kotlin-jps-common-for-ide-2.3.20-ij253-45.jar", + "hash": "4c42b6d0419bbdcb988df9ee3bd1d4f10fd90a3b1985966f66a9400d9c7a4ab0", + "path": "org/jetbrains/kotlin/kotlin-jps-common-for-ide/2.3.20-ij253-45/kotlin-jps-common-for-ide-2.3.20-ij253-45.jar" }, { - "url": "org/testng/testng/7.8.0/testng-7.8.0.jar", - "hash": "dbbc43e2c64623661c3537f9d74061eb6c8fc3e5b4376f31fadb16de2b200f88", - "path": "org/testng/testng/7.8.0/testng-7.8.0.jar" + "url": "org/jetbrains/kotlin/analysis-api-for-ide/2.3.20-ij253-45/analysis-api-for-ide-2.3.20-ij253-45.jar", + "hash": "47db94b0240122449cb95aa00dd8b9d0722948b81f8390b9d27d38797c0fc784", + "path": "org/jetbrains/kotlin/analysis-api-for-ide/2.3.20-ij253-45/analysis-api-for-ide-2.3.20-ij253-45.jar" }, { - "url": "com/beust/jcommander/1.82/jcommander-1.82.jar", - "hash": "deeac157c8de6822878d85d0c7bc8467a19cc8484d37788f7804f039dde280b1", - "path": "com/beust/jcommander/1.82/jcommander-1.82.jar" + "url": "org/junit/jupiter/junit-jupiter-api/5.13.4/junit-jupiter-api-5.13.4.jar", + "hash": "d1bb81abfd9e03418306b4e6a3390c8db52c58372e749c2980ac29f0c08278f1", + "path": "org/junit/jupiter/junit-jupiter-api/5.13.4/junit-jupiter-api-5.13.4.jar" }, { - "url": "org/webjars/jquery/3.6.1/jquery-3.6.1.jar", - "hash": "da2381fbee4799631ba44d1f4d6487b886b22450c7fc85842c5fdfa03429b817", - "path": "org/webjars/jquery/3.6.1/jquery-3.6.1.jar" + "url": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar", + "hash": "48e2df636cab6563ced64dcdff8abb2355627cb236ef0bf37598682ddf742f1b", + "path": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar" }, { - "url": "net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar", - "hash": "b7e3d46c87bad2eb409b0e704916bcd81206168e357312dfddd0e253679cd9e0", - "path": "net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar" + "url": "org/junit/platform/junit-platform-commons/1.13.4/junit-platform-commons-1.13.4.jar", + "hash": "1c25ca641ebaae44ff3ad21ca1b2ef68d0dd84bfeb07c4805ba7840899b77408", + "path": "org/junit/platform/junit-platform-commons/1.13.4/junit-platform-commons-1.13.4.jar" }, { - "url": "net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar", - "hash": "b3a9408e7c51e08ef0e3bfcc08f443f6ec0f6191ba8cd7c18d53d2b22e5bdbc0", - "path": "net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar" - }, - { - "url": "org/jetbrains/kotlinx/kotlinx-serialization-cbor-jvm/1.8.1/kotlinx-serialization-cbor-jvm-1.8.1.jar", - "hash": "604c4130ca7a0e979a449cf550087a5c2c586485e8af01dcf24b03b7b287306d", - "path": "org/jetbrains/kotlinx/kotlinx-serialization-cbor-jvm/1.8.1/kotlinx-serialization-cbor-jvm-1.8.1.jar" - }, - { - "url": "org/jetbrains/kotlinx/kotlinx-io-core-jvm/0.7.0/kotlinx-io-core-jvm-0.7.0.jar", - "hash": "6ededc9be4d878aea80c7dd609f91bfc47fcd3d36cc91fd0f3f328fbd6656c8f", - "path": "org/jetbrains/kotlinx/kotlinx-io-core-jvm/0.7.0/kotlinx-io-core-jvm-0.7.0.jar" - }, - { - "url": "org/jetbrains/kotlinx/kotlinx-io-bytestring-jvm/0.7.0/kotlinx-io-bytestring-jvm-0.7.0.jar", - "hash": "ea38a66b0ff46ed82dded9e81d2dce70e5fbe03bd6cc52b4fc8869381dea7b7d", - "path": "org/jetbrains/kotlinx/kotlinx-io-bytestring-jvm/0.7.0/kotlinx-io-bytestring-jvm-0.7.0.jar" - }, - { - "url": "org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.jar", - "hash": "6f128a71c5e87a16f810513a73ad3c77d0ee0bb622ee0ce1ead115bccbc76d0a", - "path": "org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.jar" - }, - { - "url": "io/ktor/ktor-client-cio-jvm/3.1.3/ktor-client-cio-jvm-3.1.3.jar", - "hash": "9a86341588057a23d3ba4562fdc8afcef6facd071678a0c20b3b28a19ec35c88", - "path": "io/ktor/ktor-client-cio-jvm/3.1.3/ktor-client-cio-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar", - "hash": "746e2a3dece87379d64c40999401969001d373de1458fe851c0d2e0f880b42ef", - "path": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar", - "hash": "8a50d94b46f91bd56580b9169272d6cd636f442032ba078a141da70413465946", - "path": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar", - "hash": "da7069c6e78809d7c37d104e415613cbd4cd5cec1ed54a332cb64ef6a864a060", - "path": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar", - "hash": "67f0f566e2ed51717f6ed55f6d2b4dee1c84be4ea2cd96fc636d0bdf0fd43067", - "path": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar", - "hash": "0d704bc1148a8fd9a1f2005e0b5189cdaed3030efe24b8236459c41c356f5620", - "path": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar", - "hash": "a2ae8a338bb1d446d16dcfea2189ef5a5be31a88123b3879562b7955667a5639", - "path": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar", - "hash": "b04aede18e9c008168096dc53a3fc016177b61a5ec3024afbf8caca0cd5dbf42", - "path": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar", - "hash": "fa4e6165b5ad4bf5db337ebd5f16f9b596dc5e401fbea343b9deacb6138240af", - "path": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar", - "hash": "bb2fb6c00afaa34b539cb30e7584d37bfcba171c266bbdb9990e003579dc24c1", - "path": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar", - "hash": "ef28b4f12054ee125765b72fe3230e215a60b73b2ff2072a5c280fcf09329077", - "path": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar", - "hash": "33333937b98fc0c8e943ee4b10b3ea66b49782dfb569c44c142da4f32d85dffc", - "path": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar", - "hash": "f67507a3e8bf52aa08d753682e6cdda0194e3abe750118b99c9336953e598be9", - "path": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-client-java-jvm/3.1.3/ktor-client-java-jvm-3.1.3.jar", - "hash": "4449fa59e5f4f9a18e18b5ed10db95dba3f65a825cfc32d053097d8bffccfbf1", - "path": "io/ktor/ktor-client-java-jvm/3.1.3/ktor-client-java-jvm-3.1.3.jar" - }, - { - "url": "com/jetbrains/fus/reporting/connection-client/171/connection-client-171.jar", - "hash": "ca8ebd17e33f333647b905d43fc8cce2ad16abd22bfa99b75cb8a499894648b8", - "path": "com/jetbrains/fus/reporting/connection-client/171/connection-client-171.jar" - }, - { - "url": "org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.8.1/kotlinx-serialization-core-jvm-1.8.1.jar", - "hash": "3565b6d4d789bf70683c45566944287fc1d8dc75c23d98bd87d01059cc76f2b3", - "path": "org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.8.1/kotlinx-serialization-core-jvm-1.8.1.jar" - }, - { - "url": "com/intellij/platform/kotlinx-coroutines-debug/1.10.1-intellij-5/kotlinx-coroutines-debug-1.10.1-intellij-5.jar", - "hash": "f8f56f19d2b29da511809c3345d2f0bf283bfb94a0a0d83f5b630e1424625723", - "path": "com/intellij/platform/kotlinx-coroutines-debug/1.10.1-intellij-5/kotlinx-coroutines-debug-1.10.1-intellij-5.jar" - }, - { - "url": "com/github/luben/zstd-jni/1.5.7-4/zstd-jni-1.5.7-4.jar", - "hash": "e7f064bf1eab83fa785cf587f657f09649e3b0af6f27caa5382416953b5a35f8", - "path": "com/github/luben/zstd-jni/1.5.7-4/zstd-jni-1.5.7-4.jar" + "url": "org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar", + "hash": "b509448ac506d607319f182537f0b35d71007582ec741832a1f111e5b5b70b38", + "path": "org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar" }, { "url": "io/netty/netty-buffer/4.2.0.RC2/netty-buffer-4.2.0.RC2.jar", @@ -1370,89 +1910,64 @@ "path": "io/netty/netty-common/4.2.0.RC2/netty-common-4.2.0.RC2.jar" }, { - "url": "org/codehaus/groovy/groovy-templates/3.0.25/groovy-templates-3.0.25.jar", - "hash": "fd0e111cae80bd6285677759b72cb67e7da68ee779a90e51bee12a7011c28436", - "path": "org/codehaus/groovy/groovy-templates/3.0.25/groovy-templates-3.0.25.jar" + "url": "org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar", + "hash": "2e5e775a9dc58ffa6bbd6aa6f099d62f8b62dcdeb4c3c3bbbe5cf2301bc2dcc1", + "path": "org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar" }, { - "url": "org/jetbrains/kotlin/kotlin-reflect/2.2.20/kotlin-reflect-2.2.20.jar", - "hash": "8209083a4a7c4e476d9842b078308fa96a96f07a6bd99f05f3586ee13289ab26", - "path": "org/jetbrains/kotlin/kotlin-reflect/2.2.20/kotlin-reflect-2.2.20.jar" + "url": "org/openjdk/jmh/jmh-core/1.37/jmh-core-1.37.jar", + "hash": "dc0eaf2bbf0036a70b60798c785d6e03a9daf06b68b8edb0f1ba9eb3421baeb3", + "path": "org/openjdk/jmh/jmh-core/1.37/jmh-core-1.37.jar" }, { - "url": "io/grpc/grpc-kotlin-stub/1.4.3/grpc-kotlin-stub-1.4.3.jar", - "hash": "4b5705f8cabd07e82c81dbce36f1554aa9d1740f03e369fd049a71f375dac2f0", - "path": "io/grpc/grpc-kotlin-stub/1.4.3/grpc-kotlin-stub-1.4.3.jar" + "url": "net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", + "hash": "df26cc58f235f477db07f753ba5a3ab243ebe5789d9f89ecf68dd62ea9a66c28", + "path": "net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar" }, { - "url": "com/fasterxml/jackson/core/jackson-core/2.19.0/jackson-core-2.19.0.jar", - "hash": "da8e859bac94874528116a25f20c68560e4287acbf27628711b8a4f96b028430", - "path": "com/fasterxml/jackson/core/jackson-core/2.19.0/jackson-core-2.19.0.jar" + "url": "org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar", + "hash": "1e56d7b058d28b65abd256b8458e3885b674c1d588fa43cd7d1cbb9c7ef2b308", + "path": "org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar" }, { - "url": "org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", - "hash": "d74a3334fb35195009b338a951f918203d6bbca3d1d359033dc33edd1cadc9ef", - "path": "org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar" + "url": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar", + "hash": "48e2df636cab6563ced64dcdff8abb2355627cb236ef0bf37598682ddf742f1b", + "path": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar" }, { - "url": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar", - "hash": "33333937b98fc0c8e943ee4b10b3ea66b49782dfb569c44c142da4f32d85dffc", - "path": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar" + "url": "io/ktor/ktor-server-cio-jvm/3.1.3/ktor-server-cio-jvm-3.1.3.jar", + "hash": "f1526fe94e8d76c5251b5a25e4b4bb72199a25d3e1f6045e4b9e42789293f069", + "path": "io/ktor/ktor-server-cio-jvm/3.1.3/ktor-server-cio-jvm-3.1.3.jar" }, { - "url": "org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar", - "hash": "86e0255d4c879c61b4833ed7f13124e8bb679df47debb127326e7db7dd49a07b", - "path": "org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar" + "url": "org/assertj/assertj-swing/3.17.1/assertj-swing-3.17.1.jar", + "hash": "e36445438d72d83cc48015dcb3f14d9a97eaa42c4663a9826db2bb50e4c7713b", + "path": "org/assertj/assertj-swing/3.17.1/assertj-swing-3.17.1.jar" }, { - "url": "ai/grazie/grazie-rule-engine/0.3.11/grazie-rule-engine-0.3.11.jar", - "hash": "54b321650a50f78ceee6bd06653ee3cea0b19db5fe95e3c3a109e6af4a20126c", - "path": "ai/grazie/grazie-rule-engine/0.3.11/grazie-rule-engine-0.3.11.jar" + "url": "com/jcraft/jzlib/1.1.3/jzlib-1.1.3.jar", + "hash": "89b1360f407381bf61fde411019d8cbd009ebb10cff715f3669017a031027560", + "path": "com/jcraft/jzlib/1.1.3/jzlib-1.1.3.jar" }, { - "url": "net/fellbaum/jemoji/1.3.1/jemoji-1.3.1.jar", - "hash": "80a2f8918240a07d3a6fc7cdcc543d278013f6943c080835e43a22fc90462a9f", - "path": "net/fellbaum/jemoji/1.3.1/jemoji-1.3.1.jar" + "url": "io/netty/netty-codec-compression/4.2.0.RC2/netty-codec-compression-4.2.0.RC2.jar", + "hash": "7251646a8ea8d56a2415311de6040159479ac0e35de36dab70b667ed899ac931", + "path": "io/netty/netty-codec-compression/4.2.0.RC2/netty-codec-compression-4.2.0.RC2.jar" }, { - "url": "com/jetbrains/mlapi/mlapi-core/0.2.1/mlapi-core-0.2.1.jar", - "hash": "02da615dd0adac62f2d87db878f587529e8d2cb82b3a65ed8b5466a518324180", - "path": "com/jetbrains/mlapi/mlapi-core/0.2.1/mlapi-core-0.2.1.jar" + "url": "com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.jar", + "hash": "993302b16cd7056f21e779cc577d175a810bb4900ef73cd8fbf2b50f928ba9ce", + "path": "com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.jar" }, { - "url": "io/cucumber/cucumber-core/2.4.0/cucumber-core-2.4.0.jar", - "hash": "ac0f343d6fc0dca4c93f8b6a6266b3bf4cb4d61913b8a4cd2b3abf50025268cf", - "path": "io/cucumber/cucumber-core/2.4.0/cucumber-core-2.4.0.jar" + "url": "org/tukaani/xz/1.10/xz-1.10.jar", + "hash": "95c63c1a55b22dd6453890a419cc1a640f790bbf7d8ae82db1e30aefefb08888", + "path": "org/tukaani/xz/1.10/xz-1.10.jar" }, { - "url": "info/cukes/cucumber-html/0.2.6/cucumber-html-0.2.6.jar", - "hash": "e2167e99bdb018576cce9cc0aad154ad995fe67a4b0c36c63344f743865f96e7", - "path": "info/cukes/cucumber-html/0.2.6/cucumber-html-0.2.6.jar" - }, - { - "url": "io/cucumber/cucumber-jvm-deps/1.0.6/cucumber-jvm-deps-1.0.6.jar", - "hash": "d1c2cc901dd702eb77a2258c0d1446e4a302d28da0d4b49cd11ff3d5929281fa", - "path": "io/cucumber/cucumber-jvm-deps/1.0.6/cucumber-jvm-deps-1.0.6.jar" - }, - { - "url": "io/cucumber/gherkin/5.0.0/gherkin-5.0.0.jar", - "hash": "e35cfa4a16204bf59fa167bb6d45be0717d6b7cfba1c30f156d8f21cde2f4065", - "path": "io/cucumber/gherkin/5.0.0/gherkin-5.0.0.jar" - }, - { - "url": "io/cucumber/tag-expressions/1.1.1/tag-expressions-1.1.1.jar", - "hash": "e5a0a71fb846752900c0e5a99aa13e5a1bbc3ec97e7faf26803648fa45215584", - "path": "io/cucumber/tag-expressions/1.1.1/tag-expressions-1.1.1.jar" - }, - { - "url": "org/jmock/jmock/2.5.1/jmock-2.5.1.jar", - "hash": "d96425f4bab28798162e59fffbe7e16ea6c2aab303ee8dfb0a2ec38a5a4e2f36", - "path": "org/jmock/jmock/2.5.1/jmock-2.5.1.jar" - }, - { - "url": "org/swinglabs/swingx-core/1.6.2-2/swingx-core-1.6.2-2.jar", - "hash": "0df80935d9bc3b3841bc621c6fef6615c93aaf80393ccaa196db11bf97784f18", - "path": "org/swinglabs/swingx-core/1.6.2-2/swingx-core-1.6.2-2.jar" + "url": "org/jetbrains/kotlin/kotlin-stdlib/2.2.20/kotlin-stdlib-2.2.20.jar", + "hash": "8836ccffd3585fadda9901244b20d42901d2f3cd581058d8434e2ffabcf3a3e7", + "path": "org/jetbrains/kotlin/kotlin-stdlib/2.2.20/kotlin-stdlib-2.2.20.jar" }, { "url": "io/mockk/mockk/1.14.5/mockk-1.14.5.jar", @@ -1480,64 +1995,79 @@ "path": "io/mockk/mockk-core/1.14.5/mockk-core-1.14.5.jar" }, { - "url": "com/jetbrains/infra/download-pgp-verifier/1.1.4/download-pgp-verifier-1.1.4.jar", - "hash": "2bbfa931b2864c4f5e1fd22046d001df8d9a8592a20255baab0d396ed71c854c", - "path": "com/jetbrains/infra/download-pgp-verifier/1.1.4/download-pgp-verifier-1.1.4.jar" + "url": "com/fasterxml/jackson/core/jackson-databind/2.19.0/jackson-databind-2.19.0.jar", + "hash": "ceda311f476c3b18e1d2b240c94e2dcb9c8d44e70f8afa9facab88bac4ddc03a", + "path": "com/fasterxml/jackson/core/jackson-databind/2.19.0/jackson-databind-2.19.0.jar" }, { - "url": "com/jetbrains/fus/reporting/model/171/model-171.jar", - "hash": "8aa0be7e7c1a46ef0827d98c026d328a6f9be27aed79b36692a7f38bacd41a6a", - "path": "com/jetbrains/fus/reporting/model/171/model-171.jar" + "url": "com/fasterxml/jackson/core/jackson-annotations/2.19.0/jackson-annotations-2.19.0.jar", + "hash": "ead60e9cac0e42b57092b9e2d087ff43536e9477d4486ba393037a8cc156cda7", + "path": "com/fasterxml/jackson/core/jackson-annotations/2.19.0/jackson-annotations-2.19.0.jar" }, { - "url": "org/jetbrains/kotlin/analysis-api-k2-tests-for-ide/2.3.20-ij253-45/analysis-api-k2-tests-for-ide-2.3.20-ij253-45.jar", - "hash": "7359f01e280d5d55781135956975278b3e4c1472e9628cce72bb0071705ce63b", - "path": "org/jetbrains/kotlin/analysis-api-k2-tests-for-ide/2.3.20-ij253-45/analysis-api-k2-tests-for-ide-2.3.20-ij253-45.jar" + "url": "org/jetbrains/kotlinx/kotlinx-datetime-jvm/0.6.2/kotlinx-datetime-jvm-0.6.2.jar", + "hash": "102764921129e1e44a74f408b7a0b8dac6d1892c6042e0e48f8bdbbbf78c6d2e", + "path": "org/jetbrains/kotlinx/kotlinx-datetime-jvm/0.6.2/kotlinx-datetime-jvm-0.6.2.jar" }, { - "url": "com/jetbrains/mlapi/catboost-shadow-need-slf4j/1.2.5/catboost-shadow-need-slf4j-1.2.5.jar", - "hash": "94a06c3fdd4aa638df59c8c783a379ca43a5b933187760e219e09e84f1633d76", - "path": "com/jetbrains/mlapi/catboost-shadow-need-slf4j/1.2.5/catboost-shadow-need-slf4j-1.2.5.jar" + "url": "org/bouncycastle/bcpg-jdk18on/1.81/bcpg-jdk18on-1.81.jar", + "hash": "ac2ddae3a844c1e2378604616dbe7cc17c64caaf9115d8c9c3b29db8b2982411", + "path": "org/bouncycastle/bcpg-jdk18on/1.81/bcpg-jdk18on-1.81.jar" }, { - "url": "io/ktor/ktor-server-cio-jvm/3.1.3/ktor-server-cio-jvm-3.1.3.jar", - "hash": "f1526fe94e8d76c5251b5a25e4b4bb72199a25d3e1f6045e4b9e42789293f069", - "path": "io/ktor/ktor-server-cio-jvm/3.1.3/ktor-server-cio-jvm-3.1.3.jar" + "url": "org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar", + "hash": "d401243d5c6eae928a37121b6e819158c8c32ea0584793e7285bb489ab2a3d17", + "path": "org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar" }, { - "url": "org/mockito/kotlin/mockito-kotlin/6.0.0/mockito-kotlin-6.0.0.jar", - "hash": "34d626ffa4a27ec49e47de7d760f1df30223ecb8944b6472941f5c73ec68dfbd", - "path": "org/mockito/kotlin/mockito-kotlin/6.0.0/mockito-kotlin-6.0.0.jar" + "url": "org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", + "hash": "c8bc7e1c51a6d4ce72f40d2ebbabf1c4b68bfe76e732104b04381b493478e9d6", + "path": "org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar" }, { - "url": "com/android/tools/build/aapt2-proto/8.1.0-10154469/aapt2-proto-8.1.0-10154469.jar", - "hash": "6d8d14b91285cc7c1b73460f413bb3f80672dc34dc506ed578fba1f6dde8661e", - "path": "com/android/tools/build/aapt2-proto/8.1.0-10154469/aapt2-proto-8.1.0-10154469.jar" + "url": "org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", + "hash": "6c9b3dd142a09dc468e23ad39aad6f75a0f2b85125104469f026e52a474e464f", + "path": "org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar" }, { - "url": "org/jetbrains/kotlin/kotlinx-serialization-compiler-plugin-for-ide/2.3.20-ij253-45/kotlinx-serialization-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "7566ed7641a9eb3852d51a58f15f0815827c903b493ed0b7386a9ee4f83769ba", - "path": "org/jetbrains/kotlin/kotlinx-serialization-compiler-plugin-for-ide/2.3.20-ij253-45/kotlinx-serialization-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + "url": "org/jetbrains/jetCheck/0.2.2/jetCheck-0.2.2.jar", + "hash": "c5f95c97171311066a13eb750a6bb999fa7eeb43c1394705034926336c0b7b0f", + "path": "org/jetbrains/jetCheck/0.2.2/jetCheck-0.2.2.jar" }, { - "url": "app/cash/turbine/turbine-jvm/1.0.0/turbine-jvm-1.0.0.jar", - "hash": "41984dffaf069b84b814fa787f740bf7ebdc90bf89f69d05bc4660c69874b49e", - "path": "app/cash/turbine/turbine-jvm/1.0.0/turbine-jvm-1.0.0.jar" + "url": "org/jetbrains/kotlin/compose-compiler-plugin-for-ide/2.3.20-ij253-45/compose-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "84612c6b067f7018325c00975bb49a35e1947d8de1c03009e999b746219105f4", + "path": "org/jetbrains/kotlin/compose-compiler-plugin-for-ide/2.3.20-ij253-45/compose-compiler-plugin-for-ide-2.3.20-ij253-45.jar" }, { - "url": "com/android/tools/smali/smali-baksmali/3.0.3/smali-baksmali-3.0.3.jar", - "hash": "ffd6f3fbba2453440e4c04add42b9f903d84151b5b71f7e6bbb181d8096397a4", - "path": "com/android/tools/smali/smali-baksmali/3.0.3/smali-baksmali-3.0.3.jar" + "url": "com/jetbrains/rd/rd-gen/2025.3.1/rd-gen-2025.3.1.jar", + "hash": "03b276130c0c1417c9bd07cfd8d2eea1fa465fc930dd132ac11fc383cf11deec", + "path": "com/jetbrains/rd/rd-gen/2025.3.1/rd-gen-2025.3.1.jar" }, { - "url": "com/android/tools/smali/smali-util/3.0.3/smali-util-3.0.3.jar", - "hash": "8078a04709f42072a240a6fe7666b71755324745c505b39f86ededfd9c2b90c4", - "path": "com/android/tools/smali/smali-util/3.0.3/smali-util-3.0.3.jar" + "url": "org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar", + "hash": "ef779af5d29a9dde8cc70ce0341f5c6f7735e23edff9685ceaa9d35359b7bb7f", + "path": "org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar" }, { - "url": "io/github/smiley4/schema-kenerator-jsonschema/2.2.0/schema-kenerator-jsonschema-2.2.0.jar", - "hash": "81981241b8df2eeee48efac05798e7beaa2b8d6bd5d610b3f5a4fea07b0eff6e", - "path": "io/github/smiley4/schema-kenerator-jsonschema/2.2.0/schema-kenerator-jsonschema-2.2.0.jar" + "url": "org/mozilla/rhino-runtime/1.7.15/rhino-runtime-1.7.15.jar", + "hash": "4f38c96499c614145b87442700e196df39b0af808b1b1204eaccaa15bef17c2b", + "path": "org/mozilla/rhino-runtime/1.7.15/rhino-runtime-1.7.15.jar" + }, + { + "url": "org/easymock/easymock/5.6.0/easymock-5.6.0.jar", + "hash": "63efc00da99774fb0253330ef9b5788b261022ba73f36bf76889ce7edf3d2b31", + "path": "org/easymock/easymock/5.6.0/easymock-5.6.0.jar" + }, + { + "url": "com/jgoodies/forms/1.1-preview/forms-1.1-preview.jar", + "hash": "26b0fc745ea051b57462be22a150c7600dbac6716b24cc60a5ecc0e8085c41a0", + "path": "com/jgoodies/forms/1.1-preview/forms-1.1-preview.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlin-compiler-fir-for-ide/2.3.20-ij253-45/kotlin-compiler-fir-for-ide-2.3.20-ij253-45.jar", + "hash": "51241b1d60e87ef52b69ad58dc530230dd832def0cec16ca3a57e705f7ecd9bc", + "path": "org/jetbrains/kotlin/kotlin-compiler-fir-for-ide/2.3.20-ij253-45/kotlin-compiler-fir-for-ide-2.3.20-ij253-45.jar" }, { "url": "io/ktor/ktor-client-okhttp-jvm/3.1.3/ktor-client-okhttp-jvm-3.1.3.jar", @@ -1545,69 +2075,54 @@ "path": "io/ktor/ktor-client-okhttp-jvm/3.1.3/ktor-client-okhttp-jvm-3.1.3.jar" }, { - "url": "com/google/truth/truth/0.42/truth-0.42.jar", - "hash": "dd652bdf0c4427c59848ac0340fd6b6d20c2cbfaa3c569a8366604dbcda5214c", - "path": "com/google/truth/truth/0.42/truth-0.42.jar" + "url": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar", + "hash": "746e2a3dece87379d64c40999401969001d373de1458fe851c0d2e0f880b42ef", + "path": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar" }, { - "url": "com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0.jar", - "hash": "61ba4dc49adca95243beaa0569adc2a23aedb5292ae78aa01186fa782ebdc5c2", - "path": "com/googlecode/java-diff-utils/diffutils/1.3.0/diffutils-1.3.0.jar" + "url": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar", + "hash": "8a50d94b46f91bd56580b9169272d6cd636f442032ba078a141da70413465946", + "path": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar" }, { - "url": "io/opentelemetry/opentelemetry-extension-kotlin/1.48.0/opentelemetry-extension-kotlin-1.48.0.jar", - "hash": "2285ebfe8e0fd38e186b7033f6f6c542324c9bab23260b914b1b73eaf4492c5d", - "path": "io/opentelemetry/opentelemetry-extension-kotlin/1.48.0/opentelemetry-extension-kotlin-1.48.0.jar" + "url": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar", + "hash": "b04aede18e9c008168096dc53a3fc016177b61a5ec3024afbf8caca0cd5dbf42", + "path": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar" }, { - "url": "org/jsoup/jsoup/1.21.2/jsoup-1.21.2.jar", - "hash": "f05496e255734759f0d4b5632da7b24f81313147c78c69e90ad045d096191344", - "path": "org/jsoup/jsoup/1.21.2/jsoup-1.21.2.jar" + "url": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar", + "hash": "da7069c6e78809d7c37d104e415613cbd4cd5cec1ed54a332cb64ef6a864a060", + "path": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar" }, { - "url": "org/tukaani/xz/1.10/xz-1.10.jar", - "hash": "95c63c1a55b22dd6453890a419cc1a640f790bbf7d8ae82db1e30aefefb08888", - "path": "org/tukaani/xz/1.10/xz-1.10.jar" + "url": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar", + "hash": "67f0f566e2ed51717f6ed55f6d2b4dee1c84be4ea2cd96fc636d0bdf0fd43067", + "path": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar" }, { - "url": "com/charleskorn/kaml/kaml-jvm/0.80.1/kaml-jvm-0.80.1.jar", - "hash": "7e346b94d47fb4e4495ebd6161fd5c6d01659687e93c460bbfd320ba47bea852", - "path": "com/charleskorn/kaml/kaml-jvm/0.80.1/kaml-jvm-0.80.1.jar" + "url": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar", + "hash": "0d704bc1148a8fd9a1f2005e0b5189cdaed3030efe24b8236459c41c356f5620", + "path": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar" }, { - "url": "it/krzeminski/snakeyaml-engine-kmp-jvm/3.1.1/snakeyaml-engine-kmp-jvm-3.1.1.jar", - "hash": "733e1347e3ec909e8a7ee199e48a64d0180569461b3bc08c8a6bb1335f5ce1bd", - "path": "it/krzeminski/snakeyaml-engine-kmp-jvm/3.1.1/snakeyaml-engine-kmp-jvm-3.1.1.jar" + "url": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar", + "hash": "ef28b4f12054ee125765b72fe3230e215a60b73b2ff2072a5c280fcf09329077", + "path": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar" }, { - "url": "net/thauvin/erik/urlencoder/urlencoder-lib-jvm/1.6.0/urlencoder-lib-jvm-1.6.0.jar", - "hash": "8d0fd2aeb48d19dc49c563ebc00f274947e45f716c107535c12ead63decd688d", - "path": "net/thauvin/erik/urlencoder/urlencoder-lib-jvm/1.6.0/urlencoder-lib-jvm-1.6.0.jar" + "url": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar", + "hash": "a2ae8a338bb1d446d16dcfea2189ef5a5be31a88123b3879562b7955667a5639", + "path": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar" }, { - "url": "jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", - "hash": "70feef9dd75ad064def05a3ce8975aeba515ee7d1be146d12199c8828a64174c", - "path": "jaxen/jaxen/1.2.0/jaxen-1.2.0.jar" + "url": "io/grpc/grpc-kotlin-stub/1.4.3/grpc-kotlin-stub-1.4.3.jar", + "hash": "4b5705f8cabd07e82c81dbce36f1554aa9d1740f03e369fd049a71f375dac2f0", + "path": "io/grpc/grpc-kotlin-stub/1.4.3/grpc-kotlin-stub-1.4.3.jar" }, { - "url": "com/jetbrains/intellij/devkit/devkit-runtime-module-repository-jps/252.21158/devkit-runtime-module-repository-jps-252.21158.jar", - "hash": "677e12f96a6c48b1b4c4234417cda17bbcb3c25f5c7178ec752ef2a831c65313", - "path": "com/jetbrains/intellij/devkit/devkit-runtime-module-repository-jps/252.21158/devkit-runtime-module-repository-jps-252.21158.jar" - }, - { - "url": "com/jetbrains/intellij/platform/runtime-repository/252.21158/runtime-repository-252.21158.jar", - "hash": "3ad94d6402b94932f4341c908827016787cdc6ee3201ee64970822a610c55d34", - "path": "com/jetbrains/intellij/platform/runtime-repository/252.21158/runtime-repository-252.21158.jar" - }, - { - "url": "org/bidib/com/github/markusbernhardt/proxy-vole/1.1.6/proxy-vole-1.1.6.jar", - "hash": "4b9fb2e5a13b37cf8bd62eebada8d3485c3dc17df752783b68d89d657bcc01fd", - "path": "org/bidib/com/github/markusbernhardt/proxy-vole/1.1.6/proxy-vole-1.1.6.jar" - }, - { - "url": "org/javadelight/delight-rhino-sandbox/0.0.17/delight-rhino-sandbox-0.0.17.jar", - "hash": "e22941d77d0d01dfc6ee5612ad421860baae8a3a0dea2eeb67658061f34527b4", - "path": "org/javadelight/delight-rhino-sandbox/0.0.17/delight-rhino-sandbox-0.0.17.jar" + "url": "com/jetbrains/mlapi/catboost-shadow-need-slf4j/1.2.5/catboost-shadow-need-slf4j-1.2.5.jar", + "hash": "94a06c3fdd4aa638df59c8c783a379ca43a5b933187760e219e09e84f1633d76", + "path": "com/jetbrains/mlapi/catboost-shadow-need-slf4j/1.2.5/catboost-shadow-need-slf4j-1.2.5.jar" }, { "url": "com/jetbrains/cloudconfig/cloudconfig/2023.9/cloudconfig-2023.9.jar", @@ -1615,69 +2130,239 @@ "path": "com/jetbrains/cloudconfig/cloudconfig/2023.9/cloudconfig-2023.9.jar" }, { - "url": "com/github/ajalt/clikt/clikt-jvm/3.5.4/clikt-jvm-3.5.4.jar", - "hash": "b58b4d93fc1870b99b2adb3e16e9c483c8e73766b2944bc3cff805c0be47d19e", - "path": "com/github/ajalt/clikt/clikt-jvm/3.5.4/clikt-jvm-3.5.4.jar" + "url": "com/jetbrains/fus/reporting/ap-validation/171/ap-validation-171.jar", + "hash": "3c8c66663148ac5d2a953cb048a1939b96be543d4612c23e030a7c6fd20390cd", + "path": "com/jetbrains/fus/reporting/ap-validation/171/ap-validation-171.jar" }, { - "url": "com/github/oshi/oshi-core/6.8.2/oshi-core-6.8.2.jar", - "hash": "9403c2537ac0dd425e556dfc3434e5d9f9a9547312472f4c27b7ab2673e9e862", - "path": "com/github/oshi/oshi-core/6.8.2/oshi-core-6.8.2.jar" + "url": "com/intellij/platform/kotlinx-coroutines-guava/1.10.1-intellij-5/kotlinx-coroutines-guava-1.10.1-intellij-5.jar", + "hash": "61ff422fe859c2439d94727eb6dcd7ccadb5ba0d9cce4e181db1946209ef9bf6", + "path": "com/intellij/platform/kotlinx-coroutines-guava/1.10.1-intellij-5/kotlinx-coroutines-guava-1.10.1-intellij-5.jar" }, { - "url": "net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar", - "hash": "f264dd9f79a1fde10ce5ecc53221eff24be4c9331c830b7d52f2f08a7b633de2", - "path": "net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar" + "url": "org/jetbrains/marketplace-zip-signer/0.1.43/marketplace-zip-signer-0.1.43.jar", + "hash": "7db707d839949384760b0f3e58eff49bfedea05f822e4f3361c4b540aa5dcc16", + "path": "org/jetbrains/marketplace-zip-signer/0.1.43/marketplace-zip-signer-0.1.43.jar" }, { - "url": "io/netty/netty-all/4.1.117.Final/netty-all-4.1.117.Final.jar", - "hash": "c78613ac0db94650c03a37b2a35b3238b2d018fcac9f10e5fe268c3887cf5e0b", - "path": "io/netty/netty-all/4.1.117.Final/netty-all-4.1.117.Final.jar" + "url": "dk/brics/automaton/1.12-4/automaton-1.12-4.jar", + "hash": "3941b48f2e9281aab7234395c549cbb399b3dc80fed2e13999a80db47f94b041", + "path": "dk/brics/automaton/1.12-4/automaton-1.12-4.jar" }, { - "url": "io/netty/netty-buffer/4.1.117.Final/netty-buffer-4.1.117.Final.jar", - "hash": "7d01bf0334ffa3ab55f3828bb50188bf9969774a23791a3df1905e53bfeea8f5", - "path": "io/netty/netty-buffer/4.1.117.Final/netty-buffer-4.1.117.Final.jar" + "url": "org/ec4j/core/ec4j-core/0.3.0/ec4j-core-0.3.0.jar", + "hash": "cadef0207077074b11a12be442f89ab6cf93fbc2f848702d9371a9611414d558", + "path": "org/ec4j/core/ec4j-core/0.3.0/ec4j-core-0.3.0.jar" }, { - "url": "io/netty/netty-codec/4.1.117.Final/netty-codec-4.1.117.Final.jar", - "hash": "0b93f01cff5bc2a64af829ca01c826e8e861a03b96a871fa2a240fa25681df78", - "path": "io/netty/netty-codec/4.1.117.Final/netty-codec-4.1.117.Final.jar" + "url": "org/apache/lucene/lucene-core/10.3.0/lucene-core-10.3.0.jar", + "hash": "9d70afe194568ca0328b7f762e64eb8094a5e5a76ea3a30b7182f0e7d5f0dd35", + "path": "org/apache/lucene/lucene-core/10.3.0/lucene-core-10.3.0.jar" }, { - "url": "io/netty/netty-codec-http/4.1.117.Final/netty-codec-http-4.1.117.Final.jar", - "hash": "a7e19945a6baa86ab285383a0bda632eae7703a889da1d20ea4eaad4c996cc21", - "path": "io/netty/netty-codec-http/4.1.117.Final/netty-codec-http-4.1.117.Final.jar" + "url": "com/fasterxml/aalto-xml/1.3.3/aalto-xml-1.3.3.jar", + "hash": "28829eebb36863b058108fa1b9b8b5cfb94c1871346e4a4f73e69e1fe0a5f0f6", + "path": "com/fasterxml/aalto-xml/1.3.3/aalto-xml-1.3.3.jar" }, { - "url": "io/netty/netty-common/4.1.117.Final/netty-common-4.1.117.Final.jar", - "hash": "5b4e125a341566b24d5030479da475b20ea1f6145bf7b3c3d69fe537088bb4c1", - "path": "io/netty/netty-common/4.1.117.Final/netty-common-4.1.117.Final.jar" + "url": "org/codehaus/woodstox/stax2-api/4.2.2/stax2-api-4.2.2.jar", + "hash": "a61c48d553efad78bc01fffc4ac528bebbae64cbaec170b2a5e39cf61eb51abe", + "path": "org/codehaus/woodstox/stax2-api/4.2.2/stax2-api-4.2.2.jar" }, { - "url": "io/netty/netty-handler/4.1.117.Final/netty-handler-4.1.117.Final.jar", - "hash": "f3272149099883cf98ad8a2a82a08111a78d17e604aebc094c80592a730fcac5", - "path": "io/netty/netty-handler/4.1.117.Final/netty-handler-4.1.117.Final.jar" + "url": "nl/jqno/equalsverifier/equalsverifier/3.19.4/equalsverifier-3.19.4.jar", + "hash": "2bcbbf2f3227aa97527730eb92ca8724263e6d555b888fbb14aae52bc712d434", + "path": "nl/jqno/equalsverifier/equalsverifier/3.19.4/equalsverifier-3.19.4.jar" }, { - "url": "io/netty/netty-resolver/4.1.117.Final/netty-resolver-4.1.117.Final.jar", - "hash": "0f5f7220d34d32751cc624bc9c47afdde7392f0d9551569c90a568309015d796", - "path": "io/netty/netty-resolver/4.1.117.Final/netty-resolver-4.1.117.Final.jar" + "url": "org/objenesis/objenesis/3.4/objenesis-3.4.jar", + "hash": "95488102feaf2e2858adf6b299353677dac6c15294006f8ed1c5556f8e3cd251", + "path": "org/objenesis/objenesis/3.4/objenesis-3.4.jar" }, { - "url": "io/netty/netty-transport/4.1.117.Final/netty-transport-4.1.117.Final.jar", - "hash": "c07aac2ea55aa42c34fc6b53fbee661e0de077f45483133b6ca297c70a67a44a", - "path": "io/netty/netty-transport/4.1.117.Final/netty-transport-4.1.117.Final.jar" + "url": "net/bytebuddy/byte-buddy/1.17.5/byte-buddy-1.17.5.jar", + "hash": "71568c9f8396677219f650268fbf6493ded484edcdbdf2dae6129ca5be81e8db", + "path": "net/bytebuddy/byte-buddy/1.17.5/byte-buddy-1.17.5.jar" }, { - "url": "org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar", - "hash": "2e5e775a9dc58ffa6bbd6aa6f099d62f8b62dcdeb4c3c3bbbe5cf2301bc2dcc1", - "path": "org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar" + "url": "io/ktor/ktor-client-cio-jvm/3.1.3/ktor-client-cio-jvm-3.1.3.jar", + "hash": "9a86341588057a23d3ba4562fdc8afcef6facd071678a0c20b3b28a19ec35c88", + "path": "io/ktor/ktor-client-cio-jvm/3.1.3/ktor-client-cio-jvm-3.1.3.jar" }, { - "url": "org/openjdk/jmh/jmh-generator-annprocess/1.36/jmh-generator-annprocess-1.36.jar", - "hash": "c2a88cf8be1eb0870732a7b2e669972efc7f33a145998f568096137f16b20d79", - "path": "org/openjdk/jmh/jmh-generator-annprocess/1.36/jmh-generator-annprocess-1.36.jar" + "url": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar", + "hash": "746e2a3dece87379d64c40999401969001d373de1458fe851c0d2e0f880b42ef", + "path": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar", + "hash": "8a50d94b46f91bd56580b9169272d6cd636f442032ba078a141da70413465946", + "path": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar", + "hash": "da7069c6e78809d7c37d104e415613cbd4cd5cec1ed54a332cb64ef6a864a060", + "path": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar", + "hash": "67f0f566e2ed51717f6ed55f6d2b4dee1c84be4ea2cd96fc636d0bdf0fd43067", + "path": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar", + "hash": "0d704bc1148a8fd9a1f2005e0b5189cdaed3030efe24b8236459c41c356f5620", + "path": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar", + "hash": "a2ae8a338bb1d446d16dcfea2189ef5a5be31a88123b3879562b7955667a5639", + "path": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar", + "hash": "b04aede18e9c008168096dc53a3fc016177b61a5ec3024afbf8caca0cd5dbf42", + "path": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar", + "hash": "fa4e6165b5ad4bf5db337ebd5f16f9b596dc5e401fbea343b9deacb6138240af", + "path": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar", + "hash": "bb2fb6c00afaa34b539cb30e7584d37bfcba171c266bbdb9990e003579dc24c1", + "path": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar", + "hash": "ef28b4f12054ee125765b72fe3230e215a60b73b2ff2072a5c280fcf09329077", + "path": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar", + "hash": "33333937b98fc0c8e943ee4b10b3ea66b49782dfb569c44c142da4f32d85dffc", + "path": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar" + }, + { + "url": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar", + "hash": "f67507a3e8bf52aa08d753682e6cdda0194e3abe750118b99c9336953e598be9", + "path": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar" + }, + { + "url": "com/jetbrains/fleet/rpc-compiler-plugin/2.2.20-0.1/rpc-compiler-plugin-2.2.20-0.1.jar", + "hash": "71e74b74676099dd9ebbb97780401f9b53f205a69d0d515a5e03c5a42fe20c18", + "path": "com/jetbrains/fleet/rpc-compiler-plugin/2.2.20-0.1/rpc-compiler-plugin-2.2.20-0.1.jar" + }, + { + "url": "com/jetbrains/fus/reporting/serialization-kotlin/171/serialization-kotlin-171.jar", + "hash": "83380929b70dc8e25db327be8680438f3d80087962a88f4dcf061c919ba2fc32", + "path": "com/jetbrains/fus/reporting/serialization-kotlin/171/serialization-kotlin-171.jar" + }, + { + "url": "io/ktor/ktor-server-host-common-jvm/3.1.3/ktor-server-host-common-jvm-3.1.3.jar", + "hash": "6f4932086ba785deeb74170140508156b21772cd2961a37e7b551eb5d2649a29", + "path": "io/ktor/ktor-server-host-common-jvm/3.1.3/ktor-server-host-common-jvm-3.1.3.jar" + }, + { + "url": "javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "hash": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b", + "path": "javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" + }, + { + "url": "org/jetbrains/kotlinx/kotlinx-serialization-json-io-jvm/1.8.1/kotlinx-serialization-json-io-jvm-1.8.1.jar", + "hash": "ab5ec8ea48815197c46a7df9f418a62791fe91cda5023b941ce4de872d810cc1", + "path": "org/jetbrains/kotlinx/kotlinx-serialization-json-io-jvm/1.8.1/kotlinx-serialization-json-io-jvm-1.8.1.jar" + }, + { + "url": "one/util/streamex/0.8.4/streamex-0.8.4.jar", + "hash": "c8bcde95bb6c659bd611a5bc464380f38118a10a0443f3fc15304d91e5c9dd81", + "path": "one/util/streamex/0.8.4/streamex-0.8.4.jar" + }, + { + "url": "org/jsoup/jsoup/1.21.2/jsoup-1.21.2.jar", + "hash": "f05496e255734759f0d4b5632da7b24f81313147c78c69e90ad045d096191344", + "path": "org/jsoup/jsoup/1.21.2/jsoup-1.21.2.jar" + }, + { + "url": "com/jetbrains/intellij/documentation/tips-pycharm-community/241.74/tips-pycharm-community-241.74.jar", + "hash": "7f9fd8e37ec4dfdef7bfc3bc6a687fa5a322976fc588432fa46d2feb1fefc966", + "path": "com/jetbrains/intellij/documentation/tips-pycharm-community/241.74/tips-pycharm-community-241.74.jar" + }, + { + "url": "com/jetbrains/mlapi/mlapi-core/0.2.1/mlapi-core-0.2.1.jar", + "hash": "02da615dd0adac62f2d87db878f587529e8d2cb82b3a65ed8b5466a518324180", + "path": "com/jetbrains/mlapi/mlapi-core/0.2.1/mlapi-core-0.2.1.jar" + }, + { + "url": "commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar", + "hash": "ba005f304cef92a3dede24a38ad5ac9b8afccf0d8f75839d6c1338634cf7f6e4", + "path": "commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar" + }, + { + "url": "org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar", + "hash": "2037be378980d3ba9333e97955f3b2cde392aa124d04ca73ce2eee6657199297", + "path": "org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar" + }, + { + "url": "com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.0/jackson-dataformat-yaml-2.19.0.jar", + "hash": "46e54dcbd39d4d12cda18ec9276e7b888e08fc765ea0c77e71662306f0d4abc4", + "path": "com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.0/jackson-dataformat-yaml-2.19.0.jar" + }, + { + "url": "com/google/code/gson/gson/2.13.1/gson-2.13.1.jar", + "hash": "94855942d4992f112946d3de1c334e709237b8126d8130bf07807c018a4a2120", + "path": "com/google/code/gson/gson/2.13.1/gson-2.13.1.jar" + }, + { + "url": "junit/junit/4.13.2/junit-4.13.2.jar", + "hash": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3", + "path": "junit/junit/4.13.2/junit-4.13.2.jar" + }, + { + "url": "org/jetbrains/kotlin/kotlinx-serialization-compiler-plugin-for-ide/2.3.20-ij253-45/kotlinx-serialization-compiler-plugin-for-ide-2.3.20-ij253-45.jar", + "hash": "7566ed7641a9eb3852d51a58f15f0815827c903b493ed0b7386a9ee4f83769ba", + "path": "org/jetbrains/kotlin/kotlinx-serialization-compiler-plugin-for-ide/2.3.20-ij253-45/kotlinx-serialization-compiler-plugin-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "org/apache/lucene/lucene-codecs/10.3.0/lucene-codecs-10.3.0.jar", + "hash": "0628a26040706fea7a222a91c8ca339aef9ea8ceda6d24527a817dc7e0ad5c92", + "path": "org/apache/lucene/lucene-codecs/10.3.0/lucene-codecs-10.3.0.jar" + }, + { + "url": "org/apache/sshd/sshd-osgi/2.15.0/sshd-osgi-2.15.0.jar", + "hash": "3c8a183f81e176d9c452c9bb94007574bc8188446b4fc98b527aa79074cd0dda", + "path": "org/apache/sshd/sshd-osgi/2.15.0/sshd-osgi-2.15.0.jar" + }, + { + "url": "com/google/guava/guava/33.4.8-jre/guava-33.4.8-jre.jar", + "hash": "f3d7f57f67fd622f4d468dfdd692b3a5e3909246c28017ac3263405f0fe617ed", + "path": "com/google/guava/guava/33.4.8-jre/guava-33.4.8-jre.jar" + }, + { + "url": "com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.jar", + "hash": "cbfc3906b19b8f55dd7cfd6dfe0aa4532e834250d7f080bd8d211a3e246b59cb", + "path": "com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.jar" + }, + { + "url": "org/jetbrains/kotlin/analysis-api-impl-base-for-ide/2.3.20-ij253-45/analysis-api-impl-base-for-ide-2.3.20-ij253-45.jar", + "hash": "1ae230b0e5847a47838b871060b7271c9b2329febb85e1470d1490ffe2e28fd4", + "path": "org/jetbrains/kotlin/analysis-api-impl-base-for-ide/2.3.20-ij253-45/analysis-api-impl-base-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", + "hash": "70feef9dd75ad064def05a3ce8975aeba515ee7d1be146d12199c8828a64174c", + "path": "jaxen/jaxen/1.2.0/jaxen-1.2.0.jar" + }, + { + "url": "org/jetbrains/kotlin/analysis-api-k2-for-ide/2.3.20-ij253-45/analysis-api-k2-for-ide-2.3.20-ij253-45.jar", + "hash": "7fdbe230eae422cec677a358823315996f53853d4b4469e45e1531fb4f4e5245", + "path": "org/jetbrains/kotlin/analysis-api-k2-for-ide/2.3.20-ij253-45/analysis-api-k2-for-ide-2.3.20-ij253-45.jar" + }, + { + "url": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar", + "hash": "f67507a3e8bf52aa08d753682e6cdda0194e3abe750118b99c9336953e598be9", + "path": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar" }, { "url": "org/glassfish/jaxb/jaxb-runtime/2.3.9/jaxb-runtime-2.3.9.jar", @@ -1700,749 +2385,64 @@ "path": "com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.jar" }, { - "url": "org/jetbrains/kotlin/kotlin-scripting-jvm/2.3.20-ij253-45/kotlin-scripting-jvm-2.3.20-ij253-45.jar", - "hash": "42d81993e1dd93ba47dc648cf6f8af88aa20ab276077086adcffcc51cd65e08d", - "path": "org/jetbrains/kotlin/kotlin-scripting-jvm/2.3.20-ij253-45/kotlin-scripting-jvm-2.3.20-ij253-45.jar" + "url": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.20-dev-8162/kotlin-gradle-plugin-idea-1.9.20-dev-8162.jar", + "hash": "8d1af87632d95148f122a9fa0ae2903c19ee6fab7d01e017f76e0d2c9a022c20", + "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.20-dev-8162/kotlin-gradle-plugin-idea-1.9.20-dev-8162.jar" }, { - "url": "jetbrains/fleet/expects-compiler-plugin/2.2.20-0.1/expects-compiler-plugin-2.2.20-0.1.jar", - "hash": "ce4dc5b9232e9467373ef2e79cab9e3404db898ab45020ce14ef893944745331", - "path": "jetbrains/fleet/expects-compiler-plugin/2.2.20-0.1/expects-compiler-plugin-2.2.20-0.1.jar" + "url": "io/cucumber/cucumber-core/2.4.0/cucumber-core-2.4.0.jar", + "hash": "ac0f343d6fc0dca4c93f8b6a6266b3bf4cb4d61913b8a4cd2b3abf50025268cf", + "path": "io/cucumber/cucumber-core/2.4.0/cucumber-core-2.4.0.jar" }, { - "url": "org/jetbrains/kotlin/kotlin-compiler-tests-for-ide/2.3.20-ij253-45/kotlin-compiler-tests-for-ide-2.3.20-ij253-45.jar", - "hash": "4b182e6689c0b5ff330195dc89d249df941a11a7027ce08e6e84163fa89d37d2", - "path": "org/jetbrains/kotlin/kotlin-compiler-tests-for-ide/2.3.20-ij253-45/kotlin-compiler-tests-for-ide-2.3.20-ij253-45.jar" + "url": "info/cukes/cucumber-html/0.2.6/cucumber-html-0.2.6.jar", + "hash": "e2167e99bdb018576cce9cc0aad154ad995fe67a4b0c36c63344f743865f96e7", + "path": "info/cukes/cucumber-html/0.2.6/cucumber-html-0.2.6.jar" }, { - "url": "org/testcontainers/junit-jupiter/1.20.3/junit-jupiter-1.20.3.jar", - "hash": "3b0f0422993e571f3460d8436a0e56538bd474147084a6cbb244a6d5cb1a01a5", - "path": "org/testcontainers/junit-jupiter/1.20.3/junit-jupiter-1.20.3.jar" + "url": "io/cucumber/cucumber-jvm-deps/1.0.6/cucumber-jvm-deps-1.0.6.jar", + "hash": "d1c2cc901dd702eb77a2258c0d1446e4a302d28da0d4b49cd11ff3d5929281fa", + "path": "io/cucumber/cucumber-jvm-deps/1.0.6/cucumber-jvm-deps-1.0.6.jar" }, { - "url": "io/ktor/ktor-client-mock-jvm/3.1.3/ktor-client-mock-jvm-3.1.3.jar", - "hash": "2ae0d57bb9fceb8ee2aeda6536acc6f3e1de355984b4c9da720566b85f1525e8", - "path": "io/ktor/ktor-client-mock-jvm/3.1.3/ktor-client-mock-jvm-3.1.3.jar" + "url": "io/cucumber/gherkin/5.0.0/gherkin-5.0.0.jar", + "hash": "e35cfa4a16204bf59fa167bb6d45be0717d6b7cfba1c30f156d8f21cde2f4065", + "path": "io/cucumber/gherkin/5.0.0/gherkin-5.0.0.jar" }, { - "url": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar", - "hash": "8a50d94b46f91bd56580b9169272d6cd636f442032ba078a141da70413465946", - "path": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar" + "url": "io/cucumber/tag-expressions/1.1.1/tag-expressions-1.1.1.jar", + "hash": "e5a0a71fb846752900c0e5a99aa13e5a1bbc3ec97e7faf26803648fa45215584", + "path": "io/cucumber/tag-expressions/1.1.1/tag-expressions-1.1.1.jar" }, { - "url": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar", - "hash": "33333937b98fc0c8e943ee4b10b3ea66b49782dfb569c44c142da4f32d85dffc", - "path": "io/ktor/ktor-utils-jvm/3.1.3/ktor-utils-jvm-3.1.3.jar" + "url": "com/github/marschall/memoryfilesystem/2.8.2/memoryfilesystem-2.8.2.jar", + "hash": "8b94840d71ad0caa36b3309425b2d23084bc8788ce84d71f2d805b0fc84d1f5a", + "path": "com/github/marschall/memoryfilesystem/2.8.2/memoryfilesystem-2.8.2.jar" }, { - "url": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar", - "hash": "bb2fb6c00afaa34b539cb30e7584d37bfcba171c266bbdb9990e003579dc24c1", - "path": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar" + "url": "org/jetbrains/kotlin/symbol-light-classes-for-ide/2.3.20-ij253-45/symbol-light-classes-for-ide-2.3.20-ij253-45.jar", + "hash": "298e61756dab332adc36712f14803e47f65f114f736c41cace04eaef2cce380e", + "path": "org/jetbrains/kotlin/symbol-light-classes-for-ide/2.3.20-ij253-45/symbol-light-classes-for-ide-2.3.20-ij253-45.jar" }, { - "url": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar", - "hash": "746e2a3dece87379d64c40999401969001d373de1458fe851c0d2e0f880b42ef", - "path": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar", - "hash": "b04aede18e9c008168096dc53a3fc016177b61a5ec3024afbf8caca0cd5dbf42", - "path": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar", - "hash": "fa4e6165b5ad4bf5db337ebd5f16f9b596dc5e401fbea343b9deacb6138240af", - "path": "io/ktor/ktor-network-jvm/3.1.3/ktor-network-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar", - "hash": "da7069c6e78809d7c37d104e415613cbd4cd5cec1ed54a332cb64ef6a864a060", - "path": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar", - "hash": "67f0f566e2ed51717f6ed55f6d2b4dee1c84be4ea2cd96fc636d0bdf0fd43067", - "path": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar", - "hash": "0d704bc1148a8fd9a1f2005e0b5189cdaed3030efe24b8236459c41c356f5620", - "path": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar", - "hash": "ef28b4f12054ee125765b72fe3230e215a60b73b2ff2072a5c280fcf09329077", - "path": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar", - "hash": "a2ae8a338bb1d446d16dcfea2189ef5a5be31a88123b3879562b7955667a5639", - "path": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar" - }, - { - "url": "org/jetbrains/kotlin/analysis-api-platform-interface-for-ide/2.3.20-ij253-45/analysis-api-platform-interface-for-ide-2.3.20-ij253-45.jar", - "hash": "33db5c2be1f298109a32c67efc9ff9f2351812cd18b1d3e3b6142b8c1f6562a0", - "path": "org/jetbrains/kotlin/analysis-api-platform-interface-for-ide/2.3.20-ij253-45/analysis-api-platform-interface-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar", - "hash": "746e2a3dece87379d64c40999401969001d373de1458fe851c0d2e0f880b42ef", - "path": "io/ktor/ktor-client-core-jvm/3.1.3/ktor-client-core-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar", - "hash": "8a50d94b46f91bd56580b9169272d6cd636f442032ba078a141da70413465946", - "path": "io/ktor/ktor-http-jvm/3.1.3/ktor-http-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar", - "hash": "b04aede18e9c008168096dc53a3fc016177b61a5ec3024afbf8caca0cd5dbf42", - "path": "io/ktor/ktor-http-cio-jvm/3.1.3/ktor-http-cio-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar", - "hash": "da7069c6e78809d7c37d104e415613cbd4cd5cec1ed54a332cb64ef6a864a060", - "path": "io/ktor/ktor-events-jvm/3.1.3/ktor-events-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar", - "hash": "67f0f566e2ed51717f6ed55f6d2b4dee1c84be4ea2cd96fc636d0bdf0fd43067", - "path": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar", - "hash": "0d704bc1148a8fd9a1f2005e0b5189cdaed3030efe24b8236459c41c356f5620", - "path": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar", - "hash": "ef28b4f12054ee125765b72fe3230e215a60b73b2ff2072a5c280fcf09329077", - "path": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar" - }, - { - "url": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar", - "hash": "a2ae8a338bb1d446d16dcfea2189ef5a5be31a88123b3879562b7955667a5639", - "path": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar" - }, - { - "url": "org/easymock/easymock/5.6.0/easymock-5.6.0.jar", - "hash": "63efc00da99774fb0253330ef9b5788b261022ba73f36bf76889ce7edf3d2b31", - "path": "org/easymock/easymock/5.6.0/easymock-5.6.0.jar" - }, - { - "url": "com/jetbrains/fus/reporting/serialization-kotlin/171/serialization-kotlin-171.jar", - "hash": "83380929b70dc8e25db327be8680438f3d80087962a88f4dcf061c919ba2fc32", - "path": "com/jetbrains/fus/reporting/serialization-kotlin/171/serialization-kotlin-171.jar" - }, - { - "url": "oro/oro/2.0.8/oro-2.0.8.jar", - "hash": "e00ccdad5df7eb43fdee44232ef64602bf63807c2d133a7be83ba09fd49af26e", - "path": "oro/oro/2.0.8/oro-2.0.8.jar" - }, - { - "url": "io/grpc/grpc-core/1.73.0/grpc-core-1.73.0.jar", - "hash": "cffb55f1e7268e160647e88da142c09c6175ff72970c64f7cb411d78eb661663", - "path": "io/grpc/grpc-core/1.73.0/grpc-core-1.73.0.jar" - }, - { - "url": "io/grpc/grpc-api/1.73.0/grpc-api-1.73.0.jar", - "hash": "bae13d4e4716a0955d316b5fcb75582504325e5b11ac946b13b64b4fce19bc6e", - "path": "io/grpc/grpc-api/1.73.0/grpc-api-1.73.0.jar" - }, - { - "url": "com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar", - "hash": "ba734e1e84c09d615af6a09d33034b4f0442f8772dec120efb376d86a565ae15", - "path": "com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar" - }, - { - "url": "org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar", - "hash": "c720e6e5bcbe6b2f48ded75a47bccdb763eede79d14330102e0d352e3d89ed92", - "path": "org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar" - }, - { - "url": "io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.jar", - "hash": "c7b478503ec524e55df19b424d46d27c8a68aeb801664fadd4f069b71f52d0f6", - "path": "io/perfmark/perfmark-api/0.27.0/perfmark-api-0.27.0.jar" - }, - { - "url": "io/grpc/grpc-context/1.73.0/grpc-context-1.73.0.jar", - "hash": "d8d6911e225b55501692651272ce961ba5be1f76662ceb7f0aa79ecce8f63f25", - "path": "io/grpc/grpc-context/1.73.0/grpc-context-1.73.0.jar" - }, - { - "url": "org/jetbrains/kotlinx/kotlinx-collections-immutable-jvm/0.4.0/kotlinx-collections-immutable-jvm-0.4.0.jar", - "hash": "d767014ad0c9a27d27d26fd38e7afa030aee0d141338f108781ff02ecf2fdab5", - "path": "org/jetbrains/kotlinx/kotlinx-collections-immutable-jvm/0.4.0/kotlinx-collections-immutable-jvm-0.4.0.jar" - }, - { - "url": "org/jmock/jmock-legacy/2.5.1/jmock-legacy-2.5.1.jar", - "hash": "0c8d23755cd08d23c3ea194773a08b2c322d2b70cc8c86ac02b424d8a50c9118", - "path": "org/jmock/jmock-legacy/2.5.1/jmock-legacy-2.5.1.jar" - }, - { - "url": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar", - "hash": "0d704bc1148a8fd9a1f2005e0b5189cdaed3030efe24b8236459c41c356f5620", - "path": "io/ktor/ktor-serialization-jvm/3.1.3/ktor-serialization-jvm-3.1.3.jar" - }, - { - "url": "org/jruby/joni/joni/2.2.3/joni-2.2.3.jar", - "hash": "7ea54221f5f91deff2e860fe986eefe208b59fa04300e54c505c5c0c08d55e9a", - "path": "org/jruby/joni/joni/2.2.3/joni-2.2.3.jar" - }, - { - "url": "org/jruby/jcodings/jcodings/1.0.61/jcodings-1.0.61.jar", - "hash": "3238c68a2f86cec53cc184ad26df8352db87bb22a419bd17fb4acdfbb0bc40f0", - "path": "org/jruby/jcodings/jcodings/1.0.61/jcodings-1.0.61.jar" - }, - { - "url": "com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.jar", - "hash": "993302b16cd7056f21e779cc577d175a810bb4900ef73cd8fbf2b50f928ba9ce", - "path": "com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-compose-compiler-plugin/2.2.20/kotlin-compose-compiler-plugin-2.2.20.jar", - "hash": "d99052e257681e496590c5c724e1324eb511e4205f5fd413b5f503d8e932b698", - "path": "org/jetbrains/kotlin/kotlin-compose-compiler-plugin/2.2.20/kotlin-compose-compiler-plugin-2.2.20.jar" - }, - { - "url": "org/jetbrains/intellij/deps/intellij-test-discovery-agent/1.0.763/intellij-test-discovery-agent-1.0.763.jar", - "hash": "de175ebed73336e126ecba42c8b93a6566f65b169c6b4a4deb8099fe28e944de", - "path": "org/jetbrains/intellij/deps/intellij-test-discovery-agent/1.0.763/intellij-test-discovery-agent-1.0.763.jar" - }, - { - "url": "org/java-websocket/Java-WebSocket/1.6.0/Java-WebSocket-1.6.0.jar", - "hash": "eae29213e4f16515639c28957200f011b3967fffcada1962cf0255d24919c22f", - "path": "org/java-websocket/Java-WebSocket/1.6.0/Java-WebSocket-1.6.0.jar" - }, - { - "url": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar", - "hash": "bb2fb6c00afaa34b539cb30e7584d37bfcba171c266bbdb9990e003579dc24c1", - "path": "io/ktor/ktor-io-jvm/3.1.3/ktor-io-jvm-3.1.3.jar" - }, - { - "url": "com/ibm/icu/icu4j/77.1/icu4j-77.1.jar", - "hash": "b3640b9f416a4411fd33c59abbeea8fd57d024c23e1819bf9673220a97499fe3", - "path": "com/ibm/icu/icu4j/77.1/icu4j-77.1.jar" - }, - { - "url": "com/google/guava/guava-testlib/33.0.0-jre/guava-testlib-33.0.0-jre.jar", - "hash": "79626019fed282b70eef91f645a9febd5f6b9f7be46484b6b328313a481f05f0", - "path": "com/google/guava/guava-testlib/33.0.0-jre/guava-testlib-33.0.0-jre.jar" - }, - { - "url": "com/jetbrains/fus/reporting/ap-validation/171/ap-validation-171.jar", - "hash": "3c8c66663148ac5d2a953cb048a1939b96be543d4612c23e030a7c6fd20390cd", - "path": "com/jetbrains/fus/reporting/ap-validation/171/ap-validation-171.jar" - }, - { - "url": "com/jetbrains/rd/rd-swing/2025.3.1/rd-swing-2025.3.1.jar", - "hash": "8103c08a017068f9ba79aa260471780b38e3a68bce8995ec1d5279b523ac87ca", - "path": "com/jetbrains/rd/rd-swing/2025.3.1/rd-swing-2025.3.1.jar" - }, - { - "url": "org/jetbrains/teamcity/serviceMessages/2024.07/serviceMessages-2024.07.jar", - "hash": "5280d3e4bae23c4f1cc59bab77dab9f7a9626aeceeaa0bb07a9868bcedae2da9", - "path": "org/jetbrains/teamcity/serviceMessages/2024.07/serviceMessages-2024.07.jar" - }, - { - "url": "com/fasterxml/aalto-xml/1.3.3/aalto-xml-1.3.3.jar", - "hash": "28829eebb36863b058108fa1b9b8b5cfb94c1871346e4a4f73e69e1fe0a5f0f6", - "path": "com/fasterxml/aalto-xml/1.3.3/aalto-xml-1.3.3.jar" - }, - { - "url": "org/codehaus/woodstox/stax2-api/4.2.2/stax2-api-4.2.2.jar", - "hash": "a61c48d553efad78bc01fffc4ac528bebbae64cbaec170b2a5e39cf61eb51abe", - "path": "org/codehaus/woodstox/stax2-api/4.2.2/stax2-api-4.2.2.jar" - }, - { - "url": "com/jetbrains/mlapi/mlapi-catboost/0.2.1/mlapi-catboost-0.2.1.jar", - "hash": "de75176f3c95433d8da2b95dcdd233b6d9e3cca39f6e2baedb01d4932f911c85", - "path": "com/jetbrains/mlapi/mlapi-catboost/0.2.1/mlapi-catboost-0.2.1.jar" - }, - { - "url": "org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar", - "hash": "e7c2a48e8515ba1f49fa637d57b4e2f590b3f5bd97407ac699c3aa5efb1204a9", - "path": "org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar" - }, - { - "url": "org/jetbrains/nativecerts/jvm-native-trusted-roots/1.1.7/jvm-native-trusted-roots-1.1.7.jar", - "hash": "8d715c487c8908a8b3b1d982f013f5ec39fb9033eb4272fdb251d648b5ede48c", - "path": "org/jetbrains/nativecerts/jvm-native-trusted-roots/1.1.7/jvm-native-trusted-roots-1.1.7.jar" - }, - { - "url": "javax/inject/javax.inject/1/javax.inject-1.jar", - "hash": "91c77044a50c481636c32d916fd89c9118a72195390452c81065080f957de7ff", - "path": "javax/inject/javax.inject/1/javax.inject-1.jar" - }, - { - "url": "org/junit/jupiter/junit-jupiter-params/5.13.4/junit-jupiter-params-5.13.4.jar", - "hash": "3a8c6365716dbb698c0d49a05456c1e1ad05c406613c550f9dd50037872efc41", - "path": "org/junit/jupiter/junit-jupiter-params/5.13.4/junit-jupiter-params-5.13.4.jar" - }, - { - "url": "commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar", - "hash": "ba005f304cef92a3dede24a38ad5ac9b8afccf0d8f75839d6c1338634cf7f6e4", - "path": "commons-codec/commons-codec/1.18.0/commons-codec-1.18.0.jar" - }, - { - "url": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar", - "hash": "f67507a3e8bf52aa08d753682e6cdda0194e3abe750118b99c9336953e598be9", - "path": "io/ktor/ktor-network-tls-jvm/3.1.3/ktor-network-tls-jvm-3.1.3.jar" - }, - { - "url": "commons-cli/commons-cli/1.10.0/commons-cli-1.10.0.jar", - "hash": "1b273d92160b9fa69c3e65389a5c4decd2f38a697e458e6f75080ae09e886404", - "path": "commons-cli/commons-cli/1.10.0/commons-cli-1.10.0.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-scripting-dependencies/2.3.20-ij253-45/kotlin-scripting-dependencies-2.3.20-ij253-45.jar", - "hash": "beeae35aaf0e3043b8202e081bbdeb55672a89dc8bbcc482dfa5cc21d26dc1de", - "path": "org/jetbrains/kotlin/kotlin-scripting-dependencies/2.3.20-ij253-45/kotlin-scripting-dependencies-2.3.20-ij253-45.jar" - }, - { - "url": "com/google/protobuf/protobuf-java-util/3.24.4-jb.2/protobuf-java-util-3.24.4-jb.2.jar", - "hash": "bd30f6cf55c4f9f0891f8b6ea6601c1502b643543d2535c8b477ea0481809e99", - "path": "com/google/protobuf/protobuf-java-util/3.24.4-jb.2/protobuf-java-util-3.24.4-jb.2.jar" - }, - { - "url": "org/junit/platform/junit-platform-launcher/6.0.0/junit-platform-launcher-6.0.0.jar", - "hash": "5f097b00c6714bb71ecfb5dec62b59bb4c2f789763fafd1ece96c4ef0e6c280f", - "path": "org/junit/platform/junit-platform-launcher/6.0.0/junit-platform-launcher-6.0.0.jar" - }, - { - "url": "org/junit/platform/junit-platform-engine/6.0.0/junit-platform-engine-6.0.0.jar", - "hash": "6f81842e9c13e997cac66b44614522f3639419e2388ae2d000c4bc0a6b92d93f", - "path": "org/junit/platform/junit-platform-engine/6.0.0/junit-platform-engine-6.0.0.jar" - }, - { - "url": "org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar", - "hash": "1fad6e6be7557781e4d33729d49ae1cdc8fdda6fe477bb0cc68ce351eafdfbab", - "path": "org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar" - }, - { - "url": "io/github/oshai/kotlin-logging-jvm/7.0.3/kotlin-logging-jvm-7.0.3.jar", - "hash": "241daa21665dd0ca55576a4bc4d8e9ace8891ae3c698cc77f13bb4bdac372e94", - "path": "io/github/oshai/kotlin-logging-jvm/7.0.3/kotlin-logging-jvm-7.0.3.jar" - }, - { - "url": "javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", - "hash": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b", - "path": "javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" - }, - { - "url": "com/google/guava/guava/33.4.8-jre/guava-33.4.8-jre.jar", - "hash": "f3d7f57f67fd622f4d468dfdd692b3a5e3909246c28017ac3263405f0fe617ed", - "path": "com/google/guava/guava/33.4.8-jre/guava-33.4.8-jre.jar" - }, - { - "url": "com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.jar", - "hash": "cbfc3906b19b8f55dd7cfd6dfe0aa4532e834250d7f080bd8d211a3e246b59cb", - "path": "com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.jar" - }, - { - "url": "org/jetbrains/kotlin/allopen-compiler-plugin-for-ide/2.3.20-ij253-45/allopen-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "f7374912dbbcfc18686114a78804a7f4ba91aa54b6f3bf4be10a54bb643f8a61", - "path": "org/jetbrains/kotlin/allopen-compiler-plugin-for-ide/2.3.20-ij253-45/allopen-compiler-plugin-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "org/jetbrains/jps/jps-javac-extension/10/jps-javac-extension-10.jar", - "hash": "86b9d2a2378cff951f3bd0750d56ff4cef64f78dbb33e9f7abd9c7e6e14d99de", - "path": "org/jetbrains/jps/jps-javac-extension/10/jps-javac-extension-10.jar" - }, - { - "url": "io/ktor/ktor-server-host-common-jvm/3.1.3/ktor-server-host-common-jvm-3.1.3.jar", - "hash": "6f4932086ba785deeb74170140508156b21772cd2961a37e7b551eb5d2649a29", - "path": "io/ktor/ktor-server-host-common-jvm/3.1.3/ktor-server-host-common-jvm-3.1.3.jar" - }, - { - "url": "org/jetbrains/intellij/deps/org.eclipse.jgit/6.6.1.202309021850-r-jb-202407181518/org.eclipse.jgit-6.6.1.202309021850-r-jb-202407181518.jar", - "hash": "84f1d58dbf19cd7d42a5301bd256d589af1f520b4c90b8836cee7747f8726992", - "path": "org/jetbrains/intellij/deps/org.eclipse.jgit/6.6.1.202309021850-r-jb-202407181518/org.eclipse.jgit-6.6.1.202309021850-r-jb-202407181518.jar" - }, - { - "url": "com/googlecode/javaewah/JavaEWAH/1.2.3/JavaEWAH-1.2.3.jar", - "hash": "d65226949713c4c61a784f41c51167e7b0316f93764398ebba9e4336b3d954c2", - "path": "com/googlecode/javaewah/JavaEWAH/1.2.3/JavaEWAH-1.2.3.jar" - }, - { - "url": "io/grpc/grpc-protobuf/1.73.0/grpc-protobuf-1.73.0.jar", - "hash": "5c0ca9e321c02845c47dc6edcef9f22e49015cef7753c54012f5398425163c08", - "path": "io/grpc/grpc-protobuf/1.73.0/grpc-protobuf-1.73.0.jar" - }, - { - "url": "com/google/api/grpc/proto-google-common-protos/2.51.0/proto-google-common-protos-2.51.0.jar", - "hash": "0b27938f3d28ccd6884945d7e4f75f4e26a677bbf3cd39bbcb694f130f782aa9", - "path": "com/google/api/grpc/proto-google-common-protos/2.51.0/proto-google-common-protos-2.51.0.jar" - }, - { - "url": "io/grpc/grpc-protobuf-lite/1.73.0/grpc-protobuf-lite-1.73.0.jar", - "hash": "de8ce5309713e72bb57d5ff2dabdb4c173ae4872bd1439b9c3d3f93430b407d9", - "path": "io/grpc/grpc-protobuf-lite/1.73.0/grpc-protobuf-lite-1.73.0.jar" - }, - { - "url": "org/jetbrains/intellij/deps/ift/git-learning-project/212.0.2/git-learning-project-212.0.2.jar", - "hash": "648eaffe833416e2accea4bf82b980f0e91ae51ef065f5bc74fa3481c373e9fd", - "path": "org/jetbrains/intellij/deps/ift/git-learning-project/212.0.2/git-learning-project-212.0.2.jar" - }, - { - "url": "org/jetbrains/kotlinx/kotlinx-serialization-json-io-jvm/1.8.1/kotlinx-serialization-json-io-jvm-1.8.1.jar", - "hash": "ab5ec8ea48815197c46a7df9f418a62791fe91cda5023b941ce4de872d810cc1", - "path": "org/jetbrains/kotlinx/kotlinx-serialization-json-io-jvm/1.8.1/kotlinx-serialization-json-io-jvm-1.8.1.jar" - }, - { - "url": "one/util/streamex/0.8.4/streamex-0.8.4.jar", - "hash": "c8bcde95bb6c659bd611a5bc464380f38118a10a0443f3fc15304d91e5c9dd81", - "path": "one/util/streamex/0.8.4/streamex-0.8.4.jar" - }, - { - "url": "io/consensys/tuweni/tuweni-toml/2.7.1/tuweni-toml-2.7.1.jar", - "hash": "00cfcc187ff46ce8d702a0f2cb98d6a4f2a67f8f41242b5901e46efdcb7c84b7", - "path": "io/consensys/tuweni/tuweni-toml/2.7.1/tuweni-toml-2.7.1.jar" - }, - { - "url": "org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.jar", - "hash": "bd7f7b5d07bc0b047f10915b32ca4bb1de9e57d8049098882e4453c88c076a5d", - "path": "org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.jar" - }, - { - "url": "io/netty/netty-codec-compression/4.2.0.RC2/netty-codec-compression-4.2.0.RC2.jar", - "hash": "7251646a8ea8d56a2415311de6040159479ac0e35de36dab70b667ed899ac931", - "path": "io/netty/netty-codec-compression/4.2.0.RC2/netty-codec-compression-4.2.0.RC2.jar" - }, - { - "url": "com/google/protobuf/protobuf-java/3.24.4-jb.2/protobuf-java-3.24.4-jb.2.jar", - "hash": "6ba90d0d081c03c5c03d2d41497f75a183da7fb23cc2691f7b782dea77f73d21", - "path": "com/google/protobuf/protobuf-java/3.24.4-jb.2/protobuf-java-3.24.4-jb.2.jar" - }, - { - "url": "org/codehaus/groovy/groovy-jsr223/3.0.25/groovy-jsr223-3.0.25.jar", - "hash": "7d703a1d484ac1135b78b24a4880f5653161cda83454c0f484fa09e29311d3bd", - "path": "org/codehaus/groovy/groovy-jsr223/3.0.25/groovy-jsr223-3.0.25.jar" - }, - { - "url": "org/junit/platform/junit-platform-launcher/1.13.4/junit-platform-launcher-1.13.4.jar", - "hash": "0b0beaeb6880a31149641d2d848b863712885469670c12099586d7f798522564", - "path": "org/junit/platform/junit-platform-launcher/1.13.4/junit-platform-launcher-1.13.4.jar" - }, - { - "url": "org/junit/platform/junit-platform-engine/1.13.4/junit-platform-engine-1.13.4.jar", - "hash": "390c5f77b84283a64b644f88251b397e0b0debb80bdcc50f899881aecff43a5a", - "path": "org/junit/platform/junit-platform-engine/1.13.4/junit-platform-engine-1.13.4.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-test-junit/2.2.20/kotlin-test-junit-2.2.20.jar", - "hash": "6842753b11a1544198f4a14b0f8820728327939b859c23c50b5fd4179c693900", - "path": "org/jetbrains/kotlin/kotlin-test-junit/2.2.20/kotlin-test-junit-2.2.20.jar" - }, - { - "url": "org/ec4j/core/ec4j-core/0.3.0/ec4j-core-0.3.0.jar", - "hash": "cadef0207077074b11a12be442f89ab6cf93fbc2f848702d9371a9611414d558", - "path": "org/ec4j/core/ec4j-core/0.3.0/ec4j-core-0.3.0.jar" - }, - { - "url": "org/jetbrains/intellij/deps/studio-platform/2025.1.2-287/studio-platform-2025.1.2-287.jar", - "hash": "21a748abc565fd6d97d90f2547d0fd1da36810171050b2a337cbc02799cfe482", - "path": "org/jetbrains/intellij/deps/studio-platform/2025.1.2-287/studio-platform-2025.1.2-287.jar" - }, - { - "url": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar", - "hash": "ef28b4f12054ee125765b72fe3230e215a60b73b2ff2072a5c280fcf09329077", - "path": "io/ktor/ktor-websockets-jvm/3.1.3/ktor-websockets-jvm-3.1.3.jar" - }, - { - "url": "org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar", - "hash": "e640732fbcd3c6271925a504f125e38384688f4dfbbf92c8622dfcee0d09edb9", - "path": "org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar" - }, - { - "url": "org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar", - "hash": "14b7880cb7c85eed101e2710432fc3ffb83275532a6a894dc4c4095d49ad59f1", - "path": "org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar" - }, - { - "url": "org/ow2/asm/asm/9.8/asm-9.8.jar", - "hash": "876eab6a83daecad5ca67eb9fcabb063c97b5aeb8cf1fca7a989ecde17522051", - "path": "org/ow2/asm/asm/9.8/asm-9.8.jar" + "url": "org/slf4j/log4j-over-slf4j/1.7.36/log4j-over-slf4j-1.7.36.jar", + "hash": "0a7e032bf5bcdd5b2bf8bf2e5cf02c5646f2aa6fee66933b8150dbe84e651e8a", + "path": "org/slf4j/log4j-over-slf4j/1.7.36/log4j-over-slf4j-1.7.36.jar" }, { "url": "org/jetbrains/kotlin/kotlin-tooling-core/1.9.20-dev-8162/kotlin-tooling-core-1.9.20-dev-8162.jar", "hash": "8938eb97e36320daa3e6fb2a60fd2a05b232ff4a557173c5019f045b8832d9f4", "path": "org/jetbrains/kotlin/kotlin-tooling-core/1.9.20-dev-8162/kotlin-tooling-core-1.9.20-dev-8162.jar" }, - { - "url": "com/jetbrains/intellij/documentation/tips-pycharm-community/241.74/tips-pycharm-community-241.74.jar", - "hash": "7f9fd8e37ec4dfdef7bfc3bc6a687fa5a322976fc588432fa46d2feb1fefc966", - "path": "com/jetbrains/intellij/documentation/tips-pycharm-community/241.74/tips-pycharm-community-241.74.jar" - }, - { - "url": "io/ktor/ktor-server-sse-jvm/3.1.3/ktor-server-sse-jvm-3.1.3.jar", - "hash": "4c172eb930db7d7cfef36cf3ba7d5094ce08dea6fde2b4be7746680a2ebd7c05", - "path": "io/ktor/ktor-server-sse-jvm/3.1.3/ktor-server-sse-jvm-3.1.3.jar" - }, - { - "url": "org/bouncycastle/bcpkix-jdk18on/1.81/bcpkix-jdk18on-1.81.jar", - "hash": "b38c604871f3690109a3c00982d9145634125de3365a817ba16eb90d88e242c9", - "path": "org/bouncycastle/bcpkix-jdk18on/1.81/bcpkix-jdk18on-1.81.jar" - }, - { - "url": "org/bouncycastle/bcutil-jdk18on/1.81/bcutil-jdk18on-1.81.jar", - "hash": "31a5fe3a7ba42e3457b83930f0ff8d679fb5b76eaadf2b51f5740c92a394bf52", - "path": "org/bouncycastle/bcutil-jdk18on/1.81/bcutil-jdk18on-1.81.jar" - }, - { - "url": "org/bouncycastle/bcprov-jdk18on/1.81/bcprov-jdk18on-1.81.jar", - "hash": "249f396412b0c0ce67f25c8197da757b241b8be3ec4199386c00704a2457459b", - "path": "org/bouncycastle/bcprov-jdk18on/1.81/bcprov-jdk18on-1.81.jar" - }, - { - "url": "org/objenesis/objenesis/3.4/objenesis-3.4.jar", - "hash": "95488102feaf2e2858adf6b299353677dac6c15294006f8ed1c5556f8e3cd251", - "path": "org/objenesis/objenesis/3.4/objenesis-3.4.jar" - }, - { - "url": "com/android/tools/layoutlib/layoutlib/15.2.3/layoutlib-15.2.3.jar", - "hash": "e826a88e448a0c1d42abc30c9d047131badbac6fc3922b8e93ac3ea27bb0eb2c", - "path": "com/android/tools/layoutlib/layoutlib/15.2.3/layoutlib-15.2.3.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-compiler-ir-for-ide/2.3.20-ij253-45/kotlin-compiler-ir-for-ide-2.3.20-ij253-45.jar", - "hash": "230f801ec0de74e6363bf7553c71dbf085d1aaaadcf553afd1248ab51fbcfef1", - "path": "org/jetbrains/kotlin/kotlin-compiler-ir-for-ide/2.3.20-ij253-45/kotlin-compiler-ir-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "org/xerial/sqlite-jdbc/3.50.3.0/sqlite-jdbc-3.50.3.0.jar", - "hash": "a3f53a2aa15ae9425a9e793bbe9c8e5288febeb4b65ef5c1a4e80d4c2045cf08", - "path": "org/xerial/sqlite-jdbc/3.50.3.0/sqlite-jdbc-3.50.3.0.jar" - }, - { - "url": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar", - "hash": "48e2df636cab6563ced64dcdff8abb2355627cb236ef0bf37598682ddf742f1b", - "path": "org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar" - }, - { - "url": "org/apache/lucene/lucene-codecs/10.3.0/lucene-codecs-10.3.0.jar", - "hash": "0628a26040706fea7a222a91c8ca339aef9ea8ceda6d24527a817dc7e0ad5c92", - "path": "org/apache/lucene/lucene-codecs/10.3.0/lucene-codecs-10.3.0.jar" - }, - { - "url": "org/sqlite/native/3.42.0-jb.1/native-3.42.0-jb.1.jar", - "hash": "491c4ae84a1bad34c85624682a80def4f3a3a0fb9d517121d05c2dfeb94966f8", - "path": "org/sqlite/native/3.42.0-jb.1/native-3.42.0-jb.1.jar" - }, - { - "url": "io/opentelemetry/opentelemetry-exporter-otlp-common/1.48.0/opentelemetry-exporter-otlp-common-1.48.0.jar", - "hash": "9b3211ad7f1508f6453d16922aad6c7dce5b2f9a88b7e272171f63875ee78efd", - "path": "io/opentelemetry/opentelemetry-exporter-otlp-common/1.48.0/opentelemetry-exporter-otlp-common-1.48.0.jar" - }, - { - "url": "io/opentelemetry/opentelemetry-exporter-common/1.48.0/opentelemetry-exporter-common-1.48.0.jar", - "hash": "bc7af4f3c4ba1a23c20a6e1945f3e17fd3f5719f6f17d62961b3167d939a18e2", - "path": "io/opentelemetry/opentelemetry-exporter-common/1.48.0/opentelemetry-exporter-common-1.48.0.jar" - }, - { - "url": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar", - "hash": "67f0f566e2ed51717f6ed55f6d2b4dee1c84be4ea2cd96fc636d0bdf0fd43067", - "path": "io/ktor/ktor-websocket-serialization-jvm/3.1.3/ktor-websocket-serialization-jvm-3.1.3.jar" - }, - { - "url": "io/github/smiley4/schema-kenerator-serialization/2.2.0/schema-kenerator-serialization-2.2.0.jar", - "hash": "9c4a9713b2722b3b124210e89c3702c3e18c19156a3a06fa6bcef43a850299ca", - "path": "io/github/smiley4/schema-kenerator-serialization/2.2.0/schema-kenerator-serialization-2.2.0.jar" - }, - { - "url": "info/cukes/cucumber-jvm-deps/1.0.5/cucumber-jvm-deps-1.0.5.jar", - "hash": "2a4e84a51defe9108579b3c0a86bb41e54f04e9042e83adf4348a974dcf1dee6", - "path": "info/cukes/cucumber-jvm-deps/1.0.5/cucumber-jvm-deps-1.0.5.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-dist-for-ide/2.2.20/kotlin-dist-for-ide-2.2.20.jar", - "hash": "0070e80f9fed930c7209b15a5590f178acfc56028f2b6dd447c2c7cae1fc058d", - "path": "org/jetbrains/kotlin/kotlin-dist-for-ide/2.2.20/kotlin-dist-for-ide-2.2.20.jar" - }, - { - "url": "commons-logging/commons-logging/1.2/commons-logging-1.2.jar", - "hash": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636", - "path": "commons-logging/commons-logging/1.2/commons-logging-1.2.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-script-runtime/2.3.20-ij253-45/kotlin-script-runtime-2.3.20-ij253-45.jar", - "hash": "c35fd880ce45b252c0daee0bc644ea91a326a69c9dceda54151f4b2e13f3bdc3", - "path": "org/jetbrains/kotlin/kotlin-script-runtime/2.3.20-ij253-45/kotlin-script-runtime-2.3.20-ij253-45.jar" - }, - { - "url": "com/google/zxing/core/3.5.1/core-3.5.1.jar", - "hash": "1ba7c0fbb6c267e2fb74e1497d855adae633ccc98edc8c75163aa64bc08e3059", - "path": "com/google/zxing/core/3.5.1/core-3.5.1.jar" - }, - { - "url": "io/github/smiley4/schema-kenerator-core/2.2.0/schema-kenerator-core-2.2.0.jar", - "hash": "c1c197ed03acaf46773176a001836219b6299fe267dc4751c2c28ae98edfa0f3", - "path": "io/github/smiley4/schema-kenerator-core/2.2.0/schema-kenerator-core-2.2.0.jar" - }, - { - "url": "org/jetbrains/marketplace-zip-signer/0.1.43/marketplace-zip-signer-0.1.43.jar", - "hash": "7db707d839949384760b0f3e58eff49bfedea05f822e4f3361c4b540aa5dcc16", - "path": "org/jetbrains/marketplace-zip-signer/0.1.43/marketplace-zip-signer-0.1.43.jar" - }, - { - "url": "org/jetbrains/kotlin/analysis-api-impl-base-tests-for-ide/2.3.20-ij253-45/analysis-api-impl-base-tests-for-ide-2.3.20-ij253-45.jar", - "hash": "c6deada2fac53b8ea6523dbda77597b128006674616f140f04df23264c6d1aa3", - "path": "org/jetbrains/kotlin/analysis-api-impl-base-tests-for-ide/2.3.20-ij253-45/analysis-api-impl-base-tests-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar", - "hash": "a2ae8a338bb1d446d16dcfea2189ef5a5be31a88123b3879562b7955667a5639", - "path": "io/ktor/ktor-sse-jvm/3.1.3/ktor-sse-jvm-3.1.3.jar" - }, - { - "url": "org/jetbrains/kotlin/sam-with-receiver-compiler-plugin-for-ide/2.3.20-ij253-45/sam-with-receiver-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "98457d26126f1095049a8769d78168ff7d0907f0b472ee28967073709b4b4607", - "path": "org/jetbrains/kotlin/sam-with-receiver-compiler-plugin-for-ide/2.3.20-ij253-45/sam-with-receiver-compiler-plugin-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-metadata-jvm/2.2.20/kotlin-metadata-jvm-2.2.20.jar", - "hash": "8524eac90f7e8e0f1366883f2c6c820c93bfa61df3d76857c8d3e803cf67315d", - "path": "org/jetbrains/kotlin/kotlin-metadata-jvm/2.2.20/kotlin-metadata-jvm-2.2.20.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-gradle-statistics-for-ide/2.3.20-ij253-45/kotlin-gradle-statistics-for-ide-2.3.20-ij253-45.jar", - "hash": "94ffb26541561992a8eb23937f28437782830f896b90a6eed6f97e479fffdfa0", - "path": "org/jetbrains/kotlin/kotlin-gradle-statistics-for-ide/2.3.20-ij253-45/kotlin-gradle-statistics-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-compiler-cli-for-ide/2.3.20-ij253-45/kotlin-compiler-cli-for-ide-2.3.20-ij253-45.jar", - "hash": "fd9db5d6b301967133bc977935d22295e247ed2ccefc2583942ef7376fd598c1", - "path": "org/jetbrains/kotlin/kotlin-compiler-cli-for-ide/2.3.20-ij253-45/kotlin-compiler-cli-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.20-dev-8162/kotlin-gradle-plugin-idea-1.9.20-dev-8162.jar", - "hash": "8d1af87632d95148f122a9fa0ae2903c19ee6fab7d01e017f76e0d2c9a022c20", - "path": "org/jetbrains/kotlin/kotlin-gradle-plugin-idea/1.9.20-dev-8162/kotlin-gradle-plugin-idea-1.9.20-dev-8162.jar" - }, - { - "url": "org/jetbrains/runtime/jbr-api/1.9.0/jbr-api-1.9.0.jar", - "hash": "7e37284e33b5b304ee6174dcaa92db949b257cc4c8991ca865e7daf5113d8279", - "path": "org/jetbrains/runtime/jbr-api/1.9.0/jbr-api-1.9.0.jar" - }, - { - "url": "io/ktor/ktor-client-cio-jvm/3.1.3/ktor-client-cio-jvm-3.1.3.jar", - "hash": "9a86341588057a23d3ba4562fdc8afcef6facd071678a0c20b3b28a19ec35c88", - "path": "io/ktor/ktor-client-cio-jvm/3.1.3/ktor-client-cio-jvm-3.1.3.jar" - }, - { - "url": "org/jetbrains/kotlinx/kotlinx-serialization-protobuf-jvm/1.8.1/kotlinx-serialization-protobuf-jvm-1.8.1.jar", - "hash": "fbd174f72ea82364baa112069f2d7b361758f6b68bd81d2ac51b02c66a48e924", - "path": "org/jetbrains/kotlinx/kotlinx-serialization-protobuf-jvm/1.8.1/kotlinx-serialization-protobuf-jvm-1.8.1.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-compiler-common-for-ide/2.3.20-ij253-45/kotlin-compiler-common-for-ide-2.3.20-ij253-45.jar", - "hash": "4af9a30fde5d143da69428bfef59e292c794927613bf0a5b111aaaa0ead01ba2", - "path": "org/jetbrains/kotlin/kotlin-compiler-common-for-ide/2.3.20-ij253-45/kotlin-compiler-common-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "com/jetbrains/intellij/platform/workspace-model-codegen/0.0.9/workspace-model-codegen-0.0.9.jar", - "hash": "78e527dfea8d79c16ea9ca875bd943d443b63bf9d0df1f253c233dc54366df35", - "path": "com/jetbrains/intellij/platform/workspace-model-codegen/0.0.9/workspace-model-codegen-0.0.9.jar" - }, - { - "url": "dk/brics/automaton/1.12-4/automaton-1.12-4.jar", - "hash": "3941b48f2e9281aab7234395c549cbb399b3dc80fed2e13999a80db47f94b041", - "path": "dk/brics/automaton/1.12-4/automaton-1.12-4.jar" - }, - { - "url": "nl/jqno/equalsverifier/equalsverifier/3.19.4/equalsverifier-3.19.4.jar", - "hash": "2bcbbf2f3227aa97527730eb92ca8724263e6d555b888fbb14aae52bc712d434", - "path": "nl/jqno/equalsverifier/equalsverifier/3.19.4/equalsverifier-3.19.4.jar" - }, - { - "url": "org/objenesis/objenesis/3.4/objenesis-3.4.jar", - "hash": "95488102feaf2e2858adf6b299353677dac6c15294006f8ed1c5556f8e3cd251", - "path": "org/objenesis/objenesis/3.4/objenesis-3.4.jar" - }, - { - "url": "net/bytebuddy/byte-buddy/1.17.5/byte-buddy-1.17.5.jar", - "hash": "71568c9f8396677219f650268fbf6493ded484edcdbdf2dae6129ca5be81e8db", - "path": "net/bytebuddy/byte-buddy/1.17.5/byte-buddy-1.17.5.jar" - }, - { - "url": "org/jetbrains/kotlin/lombok-compiler-plugin-for-ide/2.3.20-ij253-45/lombok-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "8bc0ca5c9bb47b4ae74ab75306e8c0481d2748b3165dc850165d72d199540653", - "path": "org/jetbrains/kotlin/lombok-compiler-plugin-for-ide/2.3.20-ij253-45/lombok-compiler-plugin-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "org/apache/lucene/lucene-analysis-common/10.3.0/lucene-analysis-common-10.3.0.jar", - "hash": "124bddea3fa0683d3e174552fba5fcf0f24a2f57f1ccf6957010d010d246db8b", - "path": "org/apache/lucene/lucene-analysis-common/10.3.0/lucene-analysis-common-10.3.0.jar" - }, - { - "url": "io/cucumber/cucumber-core/1.2.6/cucumber-core-1.2.6.jar", - "hash": "ace77c533236213a1aa9f68b8de10e564da809605371ef2f8c73cd8f4c71293a", - "path": "io/cucumber/cucumber-core/1.2.6/cucumber-core-1.2.6.jar" - }, - { - "url": "info/cukes/gherkin/2.12.2/gherkin-2.12.2.jar", - "hash": "0a5ebc0506ab1e4a08af1ca150f797304ff53b953c5b1f6fcf1f81551d964aad", - "path": "info/cukes/gherkin/2.12.2/gherkin-2.12.2.jar" - }, - { - "url": "io/grpc/grpc-stub/1.73.0/grpc-stub-1.73.0.jar", - "hash": "050fe139de47d8937e6b0080e8dff3d0f42df6782f147c10bb298c0e9cd94b2f", - "path": "io/grpc/grpc-stub/1.73.0/grpc-stub-1.73.0.jar" - }, { "url": "com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", "hash": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7", "path": "com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar" }, { - "url": "org/jmock/jmock-junit4/2.5.1/jmock-junit4-2.5.1.jar", - "hash": "c53b16b999d3b2f1aa273bf5c560273d23e1fa21ce493ba7cbf5243118386b88", - "path": "org/jmock/jmock-junit4/2.5.1/jmock-junit4-2.5.1.jar" - }, - { - "url": "jetbrains/fleet/noria-compiler-plugin/2.2.20-0.1/noria-compiler-plugin-2.2.20-0.1.jar", - "hash": "dda6a96d529f473c952ba7e8205509de29725ad40eff80af7d371df95ccb14c1", - "path": "jetbrains/fleet/noria-compiler-plugin/2.2.20-0.1/noria-compiler-plugin-2.2.20-0.1.jar" - }, - { - "url": "org/jetbrains/kotlin/scripting-compiler-plugin-for-ide/2.3.20-ij253-45/scripting-compiler-plugin-for-ide-2.3.20-ij253-45.jar", - "hash": "75048ae78a873e992533ba3c376a65701cff28fbcafd79d587efc999a638e0bd", - "path": "org/jetbrains/kotlin/scripting-compiler-plugin-for-ide/2.3.20-ij253-45/scripting-compiler-plugin-for-ide-2.3.20-ij253-45.jar" - }, - { - "url": "com/esotericsoftware/kryo5/5.6.0/kryo5-5.6.0.jar", - "hash": "2ceef6a5a0527ad89ab6d1fd71bba4fef355cded510970c650d1443412b18dc5", - "path": "com/esotericsoftware/kryo5/5.6.0/kryo5-5.6.0.jar" - }, - { - "url": "org/apache/sshd/sshd-osgi/2.15.0/sshd-osgi-2.15.0.jar", - "hash": "3c8a183f81e176d9c452c9bb94007574bc8188446b4fc98b527aa79074cd0dda", - "path": "org/apache/sshd/sshd-osgi/2.15.0/sshd-osgi-2.15.0.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-project-model/1.6.0/kotlin-project-model-1.6.0.jar", - "hash": "38135d3f995fc505d604aed2e82ac5ba858b2a6a3e476899c3b8be47fd222b68", - "path": "org/jetbrains/kotlin/kotlin-project-model/1.6.0/kotlin-project-model-1.6.0.jar" - }, - { - "url": "com/android/tools/analytics-library/testing/31.5.0-alpha08/testing-31.5.0-alpha08.jar", - "hash": "a000df0643439bfc1a41cc35098491dcb5733766e629ecbed2d68adb473f8420", - "path": "com/android/tools/analytics-library/testing/31.5.0-alpha08/testing-31.5.0-alpha08.jar" - }, - { - "url": "org/apache/lucene/lucene-highlighter/10.3.0/lucene-highlighter-10.3.0.jar", - "hash": "acbf67631c42197791363ce8e8f155f62aeef51ade809e0847a89eba44785c7d", - "path": "org/apache/lucene/lucene-highlighter/10.3.0/lucene-highlighter-10.3.0.jar" - }, - { - "url": "org/jetbrains/kotlin/kotlin-test/2.2.20/kotlin-test-2.2.20.jar", - "hash": "0054c51c672512a918440703e35ea946a8e7a210872f2196dbd6b9f2959198b0", - "path": "org/jetbrains/kotlin/kotlin-test/2.2.20/kotlin-test-2.2.20.jar" - }, - { - "url": "com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.0/jackson-dataformat-yaml-2.19.0.jar", - "hash": "46e54dcbd39d4d12cda18ec9276e7b888e08fc765ea0c77e71662306f0d4abc4", - "path": "com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.19.0/jackson-dataformat-yaml-2.19.0.jar" + "url": "org/junit/vintage/junit-vintage-engine/5.13.4/junit-vintage-engine-5.13.4.jar", + "hash": "066b702d850ebcde36f2a8181b46a2f0f1416129d1dc63c3a1e1531006e74739", + "path": "org/junit/vintage/junit-vintage-engine/5.13.4/junit-vintage-engine-5.13.4.jar" }, { "url": "xalan/xalan/2.7.3/xalan-2.7.3.jar", diff --git a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix index a957d1f92328..7b27f9068d69 100644 --- a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix +++ b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix @@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "claude-code"; publisher = "anthropic"; - version = "2.1.1"; - hash = "sha256-28vuJwUDHcJAVqnHsIVw1t6DXAhzMqmgh0MHC+mcmJQ="; + version = "2.1.3"; + hash = "sha256-UH4f3SZbKQTJS4w0AsZMLpmHg0+kyUYZkHOzy2R5Amo="; }; meta = { diff --git a/pkgs/applications/editors/vscode/extensions/augment.vscode-augment/default.nix b/pkgs/applications/editors/vscode/extensions/augment.vscode-augment/default.nix index 21339b051f6b..73df5a4b6d29 100644 --- a/pkgs/applications/editors/vscode/extensions/augment.vscode-augment/default.nix +++ b/pkgs/applications/editors/vscode/extensions/augment.vscode-augment/default.nix @@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "vscode-augment"; publisher = "augment"; - version = "0.696.2"; - hash = "sha256-HV4z7qmFXFGrgBXE6oO+GVqD0zWWtkE743FAbG7oVp4="; + version = "0.731.1"; + hash = "sha256-Kv47LVomNt/u0fJKos/R7Q0hhBesOGXGPu5QHaaOKEQ="; }; meta = { diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index dff3b671517b..8e270b905249 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -1965,8 +1965,8 @@ let mktplcRef = { name = "gitlab-workflow"; publisher = "gitlab"; - version = "6.62.1"; - hash = "sha256-Sbtrmla1vRZ7isSvr5QhDiP519/IG/VJ5zI9Y28UFx4="; + version = "6.64.1"; + hash = "sha256-kJqn7xNI6DF10h+CemsO0E80oJBifMdKKxpKJ3Y6PJ4="; }; meta = { description = "GitLab extension for Visual Studio Code"; @@ -3196,8 +3196,8 @@ let mktplcRef = { name = "vscode-kubernetes-tools"; publisher = "ms-kubernetes-tools"; - version = "1.3.28"; - hash = "sha256-5O0WxTuAIDeTk2/YospejjvHWVkCcMvVwiVYQWQYZKc="; + version = "1.3.29"; + hash = "sha256-FzNVg925O76GTmc/14W/IjC5VLkKoRIlK1p/b+xRsiw="; }; meta = { license = lib.licenses.mit; @@ -3854,8 +3854,8 @@ let mktplcRef = { publisher = "redhat"; name = "java"; - version = "1.50.0"; - hash = "sha256-QF9CTfhhwq+Ld3M31VRaZaAUsBDiUTNdbbOwjlE66Zk="; + version = "1.51.0"; + hash = "sha256-uOTvQjLDkMjzTfc98cq+WlvKwRQfPpTrlXKbWG7Gy+c="; }; buildInputs = [ jdk ]; meta = { @@ -5048,8 +5048,8 @@ let mktplcRef = { name = "vscode-gradle"; publisher = "vscjava"; - version = "3.17.1"; - hash = "sha256-3AGa1S6WN7zVaKxjHVba+CjXhEq8PjTD5HU5WY9pF4c="; + version = "3.17.2"; + hash = "sha256-oBtUDkuGMu7/CvxiHxvbiHHTQ2dG85VY08es9u3xKJk="; }; meta = { diff --git a/pkgs/applications/emulators/wine/sources.nix b/pkgs/applications/emulators/wine/sources.nix index ef5747902b28..fdb6fffad5be 100644 --- a/pkgs/applications/emulators/wine/sources.nix +++ b/pkgs/applications/emulators/wine/sources.nix @@ -144,9 +144,9 @@ rec { unstable = fetchurl rec { # NOTE: Don't forget to change the hash for staging as well. - version = "10.19"; + version = "10.20"; url = "https://dl.winehq.org/wine/source/10.x/wine-${version}.tar.xz"; - hash = "sha256-fOxYMjxvKq7nrKk1Fzecu/75biwsWAxo/4XdAAy73UY="; + hash = "sha256-gbShU5WPYkf+UEHV32Xq3Lvuoba6jNok6349fOLR/jw="; patches = [ # Also look for root certificates at $NIX_SSL_CERT_FILE @@ -156,7 +156,7 @@ rec { # see https://gitlab.winehq.org/wine/wine-staging staging = fetchFromGitLab { inherit version; - hash = "sha256-GmHeqHZPnFZkntMOJJzRDUN9H+G1qXdacy/Al6T5eZU="; + hash = "sha256-Ys0VNYj568qMHq56ZCprnsbpb/iqtiDlU3w0er8Ol5g="; domain = "gitlab.winehq.org"; owner = "wine"; repo = "wine-staging"; diff --git a/pkgs/applications/gis/qgis/unwrapped-ltr.nix b/pkgs/applications/gis/qgis/unwrapped-ltr.nix index 1ab251f278c3..55d106ec4730 100644 --- a/pkgs/applications/gis/qgis/unwrapped-ltr.nix +++ b/pkgs/applications/gis/qgis/unwrapped-ltr.nix @@ -81,14 +81,14 @@ let ]; in mkDerivation rec { - version = "3.40.13"; + version = "3.40.14"; pname = "qgis-ltr-unwrapped"; src = fetchFromGitHub { owner = "qgis"; repo = "QGIS"; rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; - hash = "sha256-2VPgD7ycj26cTpl16BSEukNEuUXtP25HwG2fRWBXNrU="; + hash = "sha256-/AA3ATNjXj95XILyyfX8c5Sww2aUqlMXxGf8chwUbFY="; }; passthru = { diff --git a/pkgs/applications/gis/qgis/unwrapped.nix b/pkgs/applications/gis/qgis/unwrapped.nix index 7478f5845b13..85ae38bb6f1c 100644 --- a/pkgs/applications/gis/qgis/unwrapped.nix +++ b/pkgs/applications/gis/qgis/unwrapped.nix @@ -81,7 +81,7 @@ let ]; in mkDerivation rec { - version = "3.44.5"; + version = "3.44.6"; pname = "qgis-unwrapped"; outputs = [ "out" @@ -92,7 +92,7 @@ mkDerivation rec { owner = "qgis"; repo = "QGIS"; rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; - hash = "sha256-VrI3pk7Qi0A9D7ONl18YeX9cFS6NfSU2Hvrzx8JIoXo="; + hash = "sha256-gC7luJpGSrKHRmgOetrLDE8zegbE/4QjM+aHaew5pGM="; }; passthru = { diff --git a/pkgs/applications/graphics/sane/backends/default.nix b/pkgs/applications/graphics/sane/backends/default.nix index 361ba67a2678..02dd36e23d7e 100644 --- a/pkgs/applications/graphics/sane/backends/default.nix +++ b/pkgs/applications/graphics/sane/backends/default.nix @@ -52,13 +52,20 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-e7Wjda+CobYatblvVCGkMAO2aWrdSCp7q+qIEGnGDCY="; }; - # Fix hangs in tests, hopefully - # FIXME: remove in next release patches = [ + # Fix hangs in tests, hopefully + # FIXME: remove in next release (fetchpatch { url = "https://gitlab.com/sane-project/backends/-/commit/8acc267d5f4049d8438456821137ae56e91baea9.patch"; hash = "sha256-IyupDeH1MPvEBnGaUzBbCu106Gp7zXxlPGFAaiiINQI="; }) + # Fix multipages scanning + # https://gitlab.com/sane-project/backends/-/merge_requests/883 + (fetchpatch { + url = "https://gitlab.com/sane-project/backends/-/commit/fbf80b0fc1d262ed40d4b49dd53c14707083ef60.patch"; + hash = "sha256-9KKTr7p1vCgvGr6hFY83K5gbL7Ilm4Uzc86JIxv+ahI="; + revert = true; + }) ]; postPatch = '' diff --git a/pkgs/applications/graphics/tesseract/tesseract5.nix b/pkgs/applications/graphics/tesseract/tesseract5.nix index 6050f7ba94e2..8727c590a755 100644 --- a/pkgs/applications/graphics/tesseract/tesseract5.nix +++ b/pkgs/applications/graphics/tesseract/tesseract5.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { pname = "tesseract"; - version = "5.5.1"; + version = "5.5.2"; src = fetchFromGitHub { owner = "tesseract-ocr"; repo = "tesseract"; rev = version; - sha256 = "sha256-bLTYdT9CNfgrmmjP6m0rRqJDHiSOkcuGVCFwPqT12jk="; + sha256 = "sha256-VLmKwycJK66fFkdWOSYO5OJkJC8MTWKTQWIVb243ekc="; }; enableParallelBuilding = true; diff --git a/pkgs/applications/networking/charles/default.nix b/pkgs/applications/networking/charles/default.nix index f30c4262a176..20b7886b74d5 100644 --- a/pkgs/applications/networking/charles/default.nix +++ b/pkgs/applications/networking/charles/default.nix @@ -7,6 +7,7 @@ openjdk17-bootstrap, jdk11, jdk8, + writeScript, }: let @@ -16,6 +17,7 @@ let hash, platform ? "", jdk, + updateScript ? null, ... }@attrs: let @@ -83,21 +85,34 @@ let maintainers = with lib.maintainers; [ kalbasit kashw2 + Misaka13514 ]; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = lib.licenses.unfree; platforms = lib.platforms.unix; }; + passthru.updateScript = updateScript; }; in { charles5 = ( generic { - version = "5.0"; - hash = "sha256-gvspRI3uF7bjE4UBuTGS5+n2h0nKudLtW3sqs2GZIyM="; + version = "5.0.3"; + hash = "sha256-SiZ15ekuAW7AyXBHN5Zel4ZFL/4oNy1td64NQ0GNUhE="; platform = "_x86_64"; jdk = openjdk17-bootstrap; + + updateScript = writeScript "update-charles" '' + #!/usr/bin/env nix-shell + #!nix-shell -i bash -p curl gnugrep common-updater-scripts + + set -eu -o pipefail + + version=$(curl -A "Mozilla/5.0" -s https://www.charlesproxy.com/download/ | grep -oP 'Version \K[0-9.]+' | head -n1) + + update-source-version charles5 "$version" + ''; } ); charles4 = ( diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 50ce905b8fbe..9626070a3dd0 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1130,11 +1130,11 @@ "vendorHash": "sha256-33NOGIvqLpgndG68GxAeoiISjWV7ApR4jmvqyZHjPKo=" }, "rootlyhq_rootly": { - "hash": "sha256-aAZTcZ97/rPOfvBwmPTp3BF/G0IkrCrx0u4yPiTfXrY=", + "hash": "sha256-v/CdJiEmMmmtQ0EhDxg6IT3FGWs3jeuZ/BKhmcHi9XM=", "homepage": "https://registry.terraform.io/providers/rootlyhq/rootly", "owner": "rootlyhq", "repo": "terraform-provider-rootly", - "rev": "v5.2.1", + "rev": "v5.2.2", "spdx": "MPL-2.0", "vendorHash": "sha256-H0ohTNvSeFYEhHFIJoY37asNWwe+s2RKsDzYbx1CkJw=" }, diff --git a/pkgs/applications/networking/instant-messengers/discord/sources.json b/pkgs/applications/networking/instant-messengers/discord/sources.json index 6ee48bc54244..0461d1c6117e 100644 --- a/pkgs/applications/networking/instant-messengers/discord/sources.json +++ b/pkgs/applications/networking/instant-messengers/discord/sources.json @@ -1,8 +1,8 @@ { "linux-canary": { - "hash": "sha256-Ed/VSiwvpwbdcL4v2v/bd1M3g27mQ7+n0RbqqeZdcYU=", - "url": "https://canary.dl2.discordapp.net/apps/linux/0.0.832/discord-canary-0.0.832.tar.gz", - "version": "0.0.832" + "hash": "sha256-2o0SBMbtozibAIL7lHDJ2LfNjbDKY578PvcNdFs/AC4=", + "url": "https://canary.dl2.discordapp.net/apps/linux/0.0.844/discord-canary-0.0.844.tar.gz", + "version": "0.0.844" }, "linux-development": { "hash": "sha256-EVkjWoqWl9Z+iHCLPOLu4PIUb2wC3HVcPVjOVz++IVw=", @@ -10,9 +10,9 @@ "version": "0.0.94" }, "linux-ptb": { - "hash": "sha256-79uScgULDIh+Ci8RHSEDT8y8xX5mxFbbPQ+TJn7iPZU=", - "url": "https://ptb.dl2.discordapp.net/apps/linux/0.0.171/discord-ptb-0.0.171.tar.gz", - "version": "0.0.171" + "hash": "sha256-szmKLp+aXZjrWClTOQ+NTwenY7b5c3eONFUUmszfUSk=", + "url": "https://ptb.dl2.discordapp.net/apps/linux/0.0.172/discord-ptb-0.0.172.tar.gz", + "version": "0.0.172" }, "linux-stable": { "hash": "sha256-/NfgHBXsUWYoDEVGz13GBU1ISpSdB5OmrjhSN25SBMg=", @@ -20,9 +20,9 @@ "version": "0.0.119" }, "osx-canary": { - "hash": "sha256-x/9U+cb1M8MXG99PriElUA+ZGIULMsNRLaNB542ac4w=", - "url": "https://canary.dl2.discordapp.net/apps/osx/0.0.936/DiscordCanary.dmg", - "version": "0.0.936" + "hash": "sha256-qh5+hCEQXivdugj5jzS+i1ftmyh6l2YEE63oS+qV2Go=", + "url": "https://canary.dl2.discordapp.net/apps/osx/0.0.948/DiscordCanary.dmg", + "version": "0.0.948" }, "osx-development": { "hash": "sha256-y840b3WlWnSK+22l7AoasQbDmbB+2LOzbxA13yJxrPA=", @@ -30,9 +30,9 @@ "version": "0.0.106" }, "osx-ptb": { - "hash": "sha256-AxO2DxBelp2mtYUWot/WtIa72Du53gGCcmPnx+x1FOw=", - "url": "https://ptb.dl2.discordapp.net/apps/osx/0.0.203/DiscordPTB.dmg", - "version": "0.0.203" + "hash": "sha256-tjWbvWOvSinVZDvJYFFcbmr+y7W5PmIr/alrS82ECBo=", + "url": "https://ptb.dl2.discordapp.net/apps/osx/0.0.204/DiscordPTB.dmg", + "version": "0.0.204" }, "osx-stable": { "hash": "sha256-OjHYJNZlM/cOLM61qvoauzNl3f/GVPdJMsnM+kxc/38=", diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/unwrapped.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/unwrapped.nix index c9cbd659aafc..0d93c3d9b056 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/unwrapped.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/unwrapped.nix @@ -42,14 +42,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "telegram-desktop-unwrapped"; - version = "6.3.4"; + version = "6.4.1"; src = fetchFromGitHub { owner = "telegramdesktop"; repo = "tdesktop"; rev = "v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-0d5PFo0tv8yayHqsd44gvodgbyRb1b5IPXtJahkWjHU="; + hash = "sha256-jmUj0kTyok5CsOe/to6bTN3jH/RMF7jE+AnFJi2nW90="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix b/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix index 8fa2e35de506..907be0dd6962 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix @@ -7,15 +7,15 @@ python3Packages, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "wee-slack"; - version = "2.11.0"; + version = "2.11.0-unstable-2026-01-07"; src = fetchFromGitHub { repo = "wee-slack"; owner = "wee-slack"; - rev = "v${version}"; - sha256 = "sha256-xQO/yi4pJSnO/ldzVQkC7UhAfpy57xzO58NV7KZm4E8="; + rev = "08a9cd05d482772e79d879e0b99ddd66a94d979d"; + hash = "sha256-9S8XI+ZSzXcWOQbH6hxZ3N8VEczRE0+xxh5w9dqTL00="; }; patches = [ @@ -25,7 +25,6 @@ stdenv.mkDerivation rec { name = "wee-slack-env"; paths = with python3Packages; [ websocket-client - six ]; } }/${python3Packages.python.sitePackages}"; diff --git a/pkgs/applications/office/libreoffice/skip-broken-tests.patch b/pkgs/applications/office/libreoffice/skip-broken-tests.patch index fa66144a0cca..67a803baca79 100644 --- a/pkgs/applications/office/libreoffice/skip-broken-tests.patch +++ b/pkgs/applications/office/libreoffice/skip-broken-tests.patch @@ -188,3 +188,15 @@ index e37df27fd817..937c12e8c4c5 100644 saveAsPDF(u"tdf163105-kashida-spaces.fodt"); auto pPdfDocument = parsePDFExport(); +diff --git a/sc/qa/unit/functions_array.cxx b/sc/qa/unit/functions_array.cxx +index ef0da39f5..43caa9002 100644 +--- a/sc/qa/unit/functions_array.cxx ++++ b/sc/qa/unit/functions_array.cxx +@@ -25,6 +25,7 @@ void ArrayFunctionsTest::testArrayFormulasFODS() + + void ArrayFunctionsTest::testDubiousArrayFormulasFODS() + { ++ return; // flaky https://github.com/NixOS/nixpkgs/issues/398633 + //TODO: sc/qa/unit/data/functions/array/dubious/fods/linest.fods produces widely different + // values when built with -ffp-contract enabled (-ffp-contract=on default on Clang 14, + // -ffp-contract=fast default when building with optimizations on GCC) on at least aarch64 diff --git a/pkgs/applications/office/softmaker/softmaker-office-nx.nix b/pkgs/applications/office/softmaker/softmaker-office-nx.nix index 0c0a8369d922..e6e4e1c33937 100644 --- a/pkgs/applications/office/softmaker/softmaker-office-nx.nix +++ b/pkgs/applications/office/softmaker/softmaker-office-nx.nix @@ -6,9 +6,9 @@ # overridable. This is useful when the upstream archive was replaced # and nixpkgs is not in sync yet. officeVersion ? { - version = "1228"; + version = "1230"; edition = ""; - hash = "sha256-Va0QkLQtsPbDAo3ygfp6UKr0OkLLBS0yAup+xLoLD0s="; + hash = "sha256-/4qKFnLoou1ZuGkRt+2Yf/FPGOnYhx7fnE+8D3gutaY="; }, ... diff --git a/pkgs/applications/office/softmaker/softmaker-office.nix b/pkgs/applications/office/softmaker/softmaker-office.nix index ef178c0ce109..e92103a3bd1a 100644 --- a/pkgs/applications/office/softmaker/softmaker-office.nix +++ b/pkgs/applications/office/softmaker/softmaker-office.nix @@ -7,9 +7,9 @@ # Softmaker Office or when the upstream archive was replaced and # nixpkgs is not in sync yet. officeVersion ? { - version = "1228"; + version = "1230"; edition = "2024"; - hash = "sha256-3/pdn3LLYy5U6GZp5jABH2oMpP/kDU9oAO9KvMwo9V8="; + hash = "sha256-xaXS22feHbRVPWP43vGbfptoT2S6jLUrGVFQ3xY7SJY="; }, ... diff --git a/pkgs/applications/virtualization/cri-o/default.nix b/pkgs/applications/virtualization/cri-o/default.nix index b8e7db17a79d..9aff4ab586ce 100644 --- a/pkgs/applications/virtualization/cri-o/default.nix +++ b/pkgs/applications/virtualization/cri-o/default.nix @@ -17,13 +17,13 @@ buildGoModule rec { pname = "cri-o"; - version = "1.34.3"; + version = "1.35.0"; src = fetchFromGitHub { owner = "cri-o"; repo = "cri-o"; rev = "v${version}"; - hash = "sha256-2Avq1EzK+i+16yoPM7j6IlavDi2oUS5A1hOIdzVThEQ="; + hash = "sha256-aP3qhD2d1x+VPDifkg9lXgVD38UcongyN6vHkn8oYos="; }; vendorHash = null; diff --git a/pkgs/by-name/_2/_2ship2harkinian/package.nix b/pkgs/by-name/_2/_2ship2harkinian/package.nix index 8a64403ef504..ee4ffc8d32ef 100644 --- a/pkgs/by-name/_2/_2ship2harkinian/package.nix +++ b/pkgs/by-name/_2/_2ship2harkinian/package.nix @@ -106,15 +106,14 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "2ship2harkinian"; - version = "3.0.1"; + version = "3.0.2"; src = fetchFromGitHub { owner = "HarbourMasters"; repo = "2ship2harkinian"; tag = finalAttrs.version; - hash = "sha256-EC8o5FIP/eXa+0LZt0C8EWHzKVAniv9SIXkZdbibcxg="; + hash = "sha256-3TmgOhlcYpu5FYvn9xblmNxwYUVSLjyE4VKbddR6D9s="; fetchSubmodules = true; - fetchTags = true; deepClone = true; postFetch = '' cd $out diff --git a/pkgs/by-name/_6/_64gram/package.nix b/pkgs/by-name/_6/_64gram/package.nix index b96402195205..d0e5002c6115 100644 --- a/pkgs/by-name/_6/_64gram/package.nix +++ b/pkgs/by-name/_6/_64gram/package.nix @@ -10,13 +10,13 @@ telegram-desktop.override { inherit withWebkit; unwrapped = telegram-desktop.unwrapped.overrideAttrs (old: rec { pname = "64gram-unwrapped"; - version = "1.1.88"; + version = "1.1.93"; src = fetchFromGitHub { owner = "TDesktop-x64"; repo = "tdesktop"; tag = "v${version}"; - hash = "sha256-zC51hlfi4EwqaDBTQev7KAYvQmUMJl1RBWh5/By2GUU="; + hash = "sha256-AwzTmEaN6MsJNq1W+cyAbg+QkYrPaV2LXmt3NzKc/vQ="; fetchSubmodules = true; }; diff --git a/pkgs/by-name/ab/abbreviate/package.nix b/pkgs/by-name/ab/abbreviate/package.nix deleted file mode 100644 index cb9c397c1db4..000000000000 --- a/pkgs/by-name/ab/abbreviate/package.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ - lib, - stdenv, - buildGoModule, - fetchFromGitHub, - installShellFiles, -}: - -buildGoModule rec { - pname = "abbreviate"; - version = "1.6.0"; - - src = fetchFromGitHub { - owner = "dnnrly"; - repo = "abbreviate"; - tag = "v${version}"; - hash = "sha256-foGg+o+BbPsfpph+XHIfyPaknQD1N1rcZW58kgZ5HYM="; - }; - - vendorHash = "sha256-9z3M3FEjllNpae+5EcLVkF1rAtOQzUQGebJeU7QsmTA="; - - nativeBuildInputs = [ - installShellFiles - ]; - - ldflags = [ - "-s" - "-w" - ]; - - postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' - installShellCompletion --cmd abbreviate \ - --bash <($out/bin/abbreviate completion bash) \ - --fish <($out/bin/abbreviate completion fish) \ - --zsh <($out/bin/abbreviate completion zsh) - ''; - - meta = { - description = "Shorten your strings using common abbreviations"; - mainProgram = "abbreviate"; - homepage = "https://github.com/dnnrly/abbreviate"; - changelog = "https://github.com/dnnrly/abbreviate/releases/tag/${src.rev}"; - license = lib.licenses.asl20; - maintainers = [ ]; - }; -} diff --git a/pkgs/by-name/ad/ada/package.nix b/pkgs/by-name/ad/ada/package.nix index 5f955f2f4b48..c6c8a6cd5192 100644 --- a/pkgs/by-name/ad/ada/package.nix +++ b/pkgs/by-name/ad/ada/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "ada"; - version = "3.3.0"; + version = "3.4.1"; src = fetchFromGitHub { owner = "ada-url"; repo = "ada"; tag = "v${version}"; - hash = "sha256-MzQ8Tefwct4/LlTWA8BpnnHMSzWmKvnf0OO5exAzIfI="; + hash = "sha256-2xrued35FRqmtZjrMTBtl5r/TB/pXNhhcKOfuwjxrhc="; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/by-name/ad/adwaita-fonts/package.nix b/pkgs/by-name/ad/adwaita-fonts/package.nix index 1512f1b9ba5f..493e04ccefb9 100644 --- a/pkgs/by-name/ad/adwaita-fonts/package.nix +++ b/pkgs/by-name/ad/adwaita-fonts/package.nix @@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { description = "Adwaita Sans, a variation of Inter, and Adwaita Mono, Iosevka customized to match Inter"; homepage = "https://gitlab.gnome.org/GNOME/adwaita-fonts"; license = lib.licenses.ofl; - platforms = lib.platforms.linux; + platforms = lib.platforms.all; maintainers = [ lib.maintainers.qxrein ]; teams = [ lib.teams.gnome ]; }; diff --git a/pkgs/by-name/ag/agate/package.nix b/pkgs/by-name/ag/agate/package.nix index 7489c98e1ae1..346303f5200f 100644 --- a/pkgs/by-name/ag/agate/package.nix +++ b/pkgs/by-name/ag/agate/package.nix @@ -14,7 +14,7 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "agate"; - version = "3.3.19"; + version = "3.3.20"; __darwinAllowLocalNetworking = true; @@ -22,10 +22,10 @@ rustPlatform.buildRustPackage (finalAttrs: { owner = "mbrubeck"; repo = "agate"; tag = "v${finalAttrs.version}"; - hash = "sha256-MPBjGtrQFM24ilBYJubfnfVHmTTIkNuWbfdbVYAXvtI="; + hash = "sha256-MV0fZo5tpRA5mkxzo5bGM5ASh+zxQbqrg1lL65IcUg8="; }; - cargoHash = "sha256-8llvdpF8kQtLxsu5Ynn7Cw/LXXdE0N7ACVVeJtccwuQ="; + cargoHash = "sha256-gteG7Oa15MtQPTu5/fZCmul1cDz7Lf19jEt7jELR6X4="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ]; diff --git a/pkgs/by-name/ai/airshipper/package.nix b/pkgs/by-name/ai/airshipper/package.nix index aba284758545..4731be7ce016 100644 --- a/pkgs/by-name/ai/airshipper/package.nix +++ b/pkgs/by-name/ai/airshipper/package.nix @@ -87,7 +87,7 @@ rustPlatform.buildRustPackage { makeWrapper ]; - RUSTC_BOOTSTRAP = 1; # We need rust unstable features + env.RUSTC_BOOTSTRAP = 1; # We need rust unstable features postInstall = '' install -Dm444 -t "$out/share/applications" "client/assets/net.veloren.airshipper.desktop" diff --git a/pkgs/by-name/al/alistral/package.nix b/pkgs/by-name/al/alistral/package.nix index 95a5cfb11253..5fae411a7640 100644 --- a/pkgs/by-name/al/alistral/package.nix +++ b/pkgs/by-name/al/alistral/package.nix @@ -12,16 +12,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "alistral"; - version = "0.6.3"; + version = "0.6.5"; src = fetchFromGitHub { owner = "RustyNova016"; repo = "Alistral"; tag = "v${finalAttrs.version}"; - hash = "sha256-lbdyE/k28fJzrOQEKDL8ZLnm6tNcAM4tsfHpcGlJB9s="; + hash = "sha256-X+yTt/oaV0ev0yexTcS0egcv0SQHFMysqSNEhZgikV0="; }; - cargoHash = "sha256-smoUGJSMmRKdnUz4L+LvPOH/A6CHVmkiHxdyesu+BTw="; + cargoHash = "sha256-XFBBtTF9V5l2CIyCRbvJqNkbPAT+Yi6PtnN1hjpKrsI="; buildNoDefaultFeatures = true; # Would be cleaner with an "--all-features" option diff --git a/pkgs/by-name/an/anew/package.nix b/pkgs/by-name/an/anew/package.nix deleted file mode 100644 index fef86a510a0d..000000000000 --- a/pkgs/by-name/an/anew/package.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ - lib, - buildGoModule, - fetchFromGitHub, -}: - -buildGoModule rec { - pname = "anew"; - version = "0.1.1"; - - src = fetchFromGitHub { - owner = "tomnomnom"; - repo = "anew"; - tag = "v${version}"; - hash = "sha256-NQSs99/2GPOtXkO7k+ar16G4Ecu4CPGMd/CTwEhcyto="; - }; - - vendorHash = null; - - ldflags = [ - "-s" - "-w" - ]; - - meta = { - description = "Tool for adding new lines to files, skipping duplicates"; - mainProgram = "anew"; - homepage = "https://github.com/tomnomnom/anew"; - license = lib.licenses.mit; - maintainers = [ ]; - }; -} diff --git a/pkgs/by-name/an/antares/npm-lock.patch b/pkgs/by-name/an/antares/npm-lock.patch deleted file mode 100644 index 48ef846cb953..000000000000 --- a/pkgs/by-name/an/antares/npm-lock.patch +++ /dev/null @@ -1,32759 +0,0 @@ -diff --git a/package-lock.json b/package-lock.json -index 90dda57..ef0ab55 100644 ---- a/package-lock.json -+++ b/package-lock.json -@@ -1,7 +1,7 @@ - { - "name": "antares", - "version": "0.7.29", -- "lockfileVersion": 2, -+ "lockfileVersion": 3, - "requires": true, - "packages": { - "": { -@@ -107,116 +107,59 @@ - "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", -+ "version": "2.3.0", -+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", -+ "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "license": "Apache-2.0", - "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", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.7.tgz", -+ "integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==", - "license": "MIT", - "dependencies": { -- "@babel/highlight": "^7.23.4", -- "chalk": "^2.4.2" -+ "@babel/highlight": "^7.25.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", -+ "version": "7.25.8", -+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.8.tgz", -+ "integrity": "sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { -- "version": "7.23.3", -+ "version": "7.25.8", -+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.8.tgz", -+ "integrity": "sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==", - "license": "MIT", - "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.25.7", -+ "@babel/generator": "^7.25.7", -+ "@babel/helper-compilation-targets": "^7.25.7", -+ "@babel/helper-module-transforms": "^7.25.7", -+ "@babel/helpers": "^7.25.7", -+ "@babel/parser": "^7.25.8", -+ "@babel/template": "^7.25.7", -+ "@babel/traverse": "^7.25.7", -+ "@babel/types": "^7.25.8", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", -@@ -233,6 +176,8 @@ - }, - "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": { -@@ -249,47 +194,56 @@ - } - }, - "node_modules/@babel/generator": { -- "version": "7.23.4", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.7.tgz", -+ "integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==", - "license": "MIT", - "dependencies": { -- "@babel/types": "^7.23.4", -- "@jridgewell/gen-mapping": "^0.3.2", -- "@jridgewell/trace-mapping": "^0.3.17", -- "jsesc": "^2.5.1" -+ "@babel/types": "^7.25.7", -+ "@jridgewell/gen-mapping": "^0.3.5", -+ "@jridgewell/trace-mapping": "^0.3.25", -+ "jsesc": "^3.0.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { -- "version": "7.22.5", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.7.tgz", -+ "integrity": "sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/types": "^7.22.5" -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { -- "version": "7.22.15", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.7.tgz", -+ "integrity": "sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/types": "^7.22.15" -+ "@babel/traverse": "^7.25.7", -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { -- "version": "7.22.15", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.7.tgz", -+ "integrity": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==", - "license": "MIT", - "dependencies": { -- "@babel/compat-data": "^7.22.9", -- "@babel/helper-validator-option": "^7.22.15", -- "browserslist": "^4.21.9", -+ "@babel/compat-data": "^7.25.7", -+ "@babel/helper-validator-option": "^7.25.7", -+ "browserslist": "^4.24.0", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, -@@ -298,18 +252,18 @@ - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { -- "version": "7.22.15", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.7.tgz", -+ "integrity": "sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==", - "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.25.7", -+ "@babel/helper-member-expression-to-functions": "^7.25.7", -+ "@babel/helper-optimise-call-expression": "^7.25.7", -+ "@babel/helper-replace-supers": "^7.25.7", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", -+ "@babel/traverse": "^7.25.7", - "semver": "^6.3.1" - }, - "engines": { -@@ -320,12 +274,14 @@ - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { -- "version": "7.22.15", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.7.tgz", -+ "integrity": "sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-annotate-as-pure": "^7.22.5", -- "regexpu-core": "^5.3.1", -+ "@babel/helper-annotate-as-pure": "^7.25.7", -+ "regexpu-core": "^6.1.1", - "semver": "^6.3.1" - }, - "engines": { -@@ -337,6 +293,8 @@ - }, - "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": { -@@ -354,63 +312,55 @@ - } - }, - "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", -+ "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, - "license": "MIT", - "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.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.7.tgz", -+ "integrity": "sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/types": "^7.23.0" -+ "@babel/traverse": "^7.25.7", -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { -- "version": "7.22.15", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz", -+ "integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==", - "license": "MIT", - "dependencies": { -- "@babel/types": "^7.22.15" -+ "@babel/traverse": "^7.25.7", -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz", -+ "integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==", - "license": "MIT", - "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.25.7", -+ "@babel/helper-simple-access": "^7.25.7", -+ "@babel/helper-validator-identifier": "^7.25.7", -+ "@babel/traverse": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -420,18 +370,22 @@ - } - }, - "node_modules/@babel/helper-optimise-call-expression": { -- "version": "7.22.5", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.7.tgz", -+ "integrity": "sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/types": "^7.22.5" -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { -- "version": "7.22.5", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.7.tgz", -+ "integrity": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==", - "dev": true, - "license": "MIT", - "engines": { -@@ -439,13 +393,15 @@ - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { -- "version": "7.22.20", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.7.tgz", -+ "integrity": "sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==", - "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.25.7", -+ "@babel/helper-wrap-function": "^7.25.7", -+ "@babel/traverse": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -455,13 +411,15 @@ - } - }, - "node_modules/@babel/helper-replace-supers": { -- "version": "7.22.20", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.7.tgz", -+ "integrity": "sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==", - "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.25.7", -+ "@babel/helper-optimise-call-expression": "^7.25.7", -+ "@babel/traverse": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -471,90 +429,98 @@ - } - }, - "node_modules/@babel/helper-simple-access": { -- "version": "7.22.5", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.7.tgz", -+ "integrity": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==", - "license": "MIT", - "dependencies": { -- "@babel/types": "^7.22.5" -+ "@babel/traverse": "^7.25.7", -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { -- "version": "7.22.5", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.7.tgz", -+ "integrity": "sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==", - "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.25.7", -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { -- "version": "7.23.4", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz", -+ "integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { -- "version": "7.22.20", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz", -+ "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { -- "version": "7.22.15", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.7.tgz", -+ "integrity": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { -- "version": "7.22.20", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.7.tgz", -+ "integrity": "sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==", - "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.7", -+ "@babel/traverse": "^7.25.7", -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { -- "version": "7.23.4", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.7.tgz", -+ "integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==", - "license": "MIT", - "peer": true, - "dependencies": { -- "@babel/template": "^7.22.15", -- "@babel/traverse": "^7.23.4", -- "@babel/types": "^7.23.4" -+ "@babel/template": "^7.25.7", -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { -- "version": "7.23.4", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz", -+ "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==", - "license": "MIT", - "dependencies": { -- "@babel/helper-validator-identifier": "^7.22.20", -+ "@babel/helper-validator-identifier": "^7.25.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,6 +528,8 @@ - }, - "node_modules/@babel/highlight/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==", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" -@@ -572,6 +540,8 @@ - }, - "node_modules/@babel/highlight/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==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", -@@ -584,6 +554,8 @@ - }, - "node_modules/@babel/highlight/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==", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" -@@ -591,10 +563,14 @@ - }, - "node_modules/@babel/highlight/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==", - "license": "MIT" - }, - "node_modules/@babel/highlight/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==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" -@@ -602,6 +578,8 @@ - }, - "node_modules/@babel/highlight/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==", - "license": "MIT", - "engines": { - "node": ">=4" -@@ -609,6 +587,8 @@ - }, - "node_modules/@babel/highlight/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==", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" -@@ -618,9 +598,13 @@ - } - }, - "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.8", -+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.8.tgz", -+ "integrity": "sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==", -+ "license": "MIT", -+ "dependencies": { -+ "@babel/types": "^7.25.8" -+ }, - "bin": { - "parser": "bin/babel-parser.js" - }, -@@ -629,13 +613,15 @@ - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.7.tgz", -+ "integrity": "sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==", - "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.25.7", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", -+ "@babel/plugin-transform-optional-chaining": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -646,6 +632,9 @@ - }, - "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": { -@@ -663,6 +652,9 @@ - }, - "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": { -@@ -678,6 +670,9 @@ - }, - "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": { -@@ -694,6 +689,9 @@ - }, - "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": { -@@ -709,6 +707,9 @@ - }, - "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": { -@@ -724,6 +725,9 @@ - }, - "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": { -@@ -739,6 +743,9 @@ - }, - "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": { -@@ -754,6 +761,9 @@ - }, - "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": { -@@ -769,6 +779,9 @@ - }, - "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": { -@@ -784,6 +797,9 @@ - }, - "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": { -@@ -802,6 +818,9 @@ - }, - "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": { -@@ -817,6 +836,9 @@ - }, - "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": { -@@ -833,6 +855,9 @@ - }, - "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": { -@@ -848,6 +873,9 @@ - }, - "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": { -@@ -865,6 +893,9 @@ - }, - "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": { -@@ -880,6 +911,8 @@ - }, - "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": { -@@ -891,6 +924,8 @@ - }, - "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": { -@@ -902,6 +937,8 @@ - }, - "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": { -@@ -916,6 +953,8 @@ - }, - "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": { -@@ -927,6 +966,8 @@ - }, - "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": { -@@ -938,6 +979,8 @@ - }, - "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": { -@@ -949,6 +992,8 @@ - }, - "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": { -@@ -960,6 +1005,8 @@ - }, - "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": { -@@ -971,6 +1018,8 @@ - }, - "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": { -@@ -982,6 +1031,8 @@ - }, - "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": { -@@ -993,6 +1044,8 @@ - }, - "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": { -@@ -1004,6 +1057,8 @@ - }, - "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": { -@@ -1015,6 +1070,8 @@ - }, - "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": { -@@ -1029,6 +1086,8 @@ - }, - "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": { -@@ -1042,11 +1101,13 @@ - } - }, - "node_modules/@babel/plugin-syntax-typescript": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.7.tgz", -+ "integrity": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1056,11 +1117,13 @@ - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.7.tgz", -+ "integrity": "sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1070,13 +1133,15 @@ - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.7.tgz", -+ "integrity": "sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==", - "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.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/helper-remap-async-to-generator": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1086,11 +1151,13 @@ - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.7.tgz", -+ "integrity": "sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1100,11 +1167,13 @@ - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { -- "version": "7.23.4", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.7.tgz", -+ "integrity": "sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1114,18 +1183,17 @@ - } - }, - "node_modules/@babel/plugin-transform-classes": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.7.tgz", -+ "integrity": "sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==", - "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.25.7", -+ "@babel/helper-compilation-targets": "^7.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/helper-replace-supers": "^7.25.7", -+ "@babel/traverse": "^7.25.7", - "globals": "^11.1.0" - }, - "engines": { -@@ -1136,12 +1204,14 @@ - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.7.tgz", -+ "integrity": "sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5", -- "@babel/template": "^7.22.15" -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/template": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1151,11 +1221,13 @@ - } - }, - "node_modules/@babel/plugin-transform-destructuring": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.7.tgz", -+ "integrity": "sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1165,12 +1237,14 @@ - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.7.tgz", -+ "integrity": "sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==", - "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.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1180,11 +1254,13 @@ - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.7.tgz", -+ "integrity": "sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1194,12 +1270,14 @@ - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.7.tgz", -+ "integrity": "sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==", - "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.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1209,11 +1287,14 @@ - } - }, - "node_modules/@babel/plugin-transform-for-of": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.7.tgz", -+ "integrity": "sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1223,13 +1304,15 @@ - } - }, - "node_modules/@babel/plugin-transform-function-name": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.7.tgz", -+ "integrity": "sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==", - "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.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/traverse": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1239,11 +1322,13 @@ - } - }, - "node_modules/@babel/plugin-transform-literals": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.7.tgz", -+ "integrity": "sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1253,11 +1338,13 @@ - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.7.tgz", -+ "integrity": "sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1267,12 +1354,14 @@ - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.7.tgz", -+ "integrity": "sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-module-transforms": "^7.23.3", -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-module-transforms": "^7.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1282,13 +1371,15 @@ - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.7.tgz", -+ "integrity": "sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==", - "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.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/helper-simple-access": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1298,14 +1389,16 @@ - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.7.tgz", -+ "integrity": "sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==", - "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.7", -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/helper-validator-identifier": "^7.25.7", -+ "@babel/traverse": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1315,12 +1408,14 @@ - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.7.tgz", -+ "integrity": "sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-module-transforms": "^7.23.3", -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-module-transforms": "^7.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1330,12 +1425,14 @@ - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { -- "version": "7.22.5", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.7.tgz", -+ "integrity": "sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==", - "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.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1345,11 +1442,13 @@ - } - }, - "node_modules/@babel/plugin-transform-new-target": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.7.tgz", -+ "integrity": "sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1359,12 +1458,14 @@ - } - }, - "node_modules/@babel/plugin-transform-object-super": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.7.tgz", -+ "integrity": "sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5", -- "@babel/helper-replace-supers": "^7.22.20" -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/helper-replace-supers": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1374,13 +1475,14 @@ - } - }, - "node_modules/@babel/plugin-transform-optional-chaining": { -- "version": "7.23.4", -+ "version": "7.25.8", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.8.tgz", -+ "integrity": "sha512-q05Bk7gXOxpTHoQ8RSzGSh/LHVB9JEIkKnk3myAWwZHnYiTGYtbdrYkIsS8Xyh4ltKf7GNUSgzs/6P2bJtBAQg==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5", -- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", -- "@babel/plugin-syntax-optional-chaining": "^7.8.3" -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1390,11 +1492,13 @@ - } - }, - "node_modules/@babel/plugin-transform-parameters": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.7.tgz", -+ "integrity": "sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1404,11 +1508,13 @@ - } - }, - "node_modules/@babel/plugin-transform-property-literals": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.7.tgz", -+ "integrity": "sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1418,11 +1524,13 @@ - } - }, - "node_modules/@babel/plugin-transform-regenerator": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.7.tgz", -+ "integrity": "sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5", -+ "@babel/helper-plugin-utils": "^7.25.7", - "regenerator-transform": "^0.15.2" - }, - "engines": { -@@ -1433,11 +1541,13 @@ - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.7.tgz", -+ "integrity": "sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1447,11 +1557,13 @@ - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.7.tgz", -+ "integrity": "sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1461,12 +1573,14 @@ - } - }, - "node_modules/@babel/plugin-transform-spread": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.7.tgz", -+ "integrity": "sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==", - "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.25.7", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1476,11 +1590,13 @@ - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.7.tgz", -+ "integrity": "sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1490,11 +1606,13 @@ - } - }, - "node_modules/@babel/plugin-transform-template-literals": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.7.tgz", -+ "integrity": "sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1504,11 +1622,13 @@ - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.7.tgz", -+ "integrity": "sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1518,14 +1638,17 @@ - } - }, - "node_modules/@babel/plugin-transform-typescript": { -- "version": "7.23.4", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.7.tgz", -+ "integrity": "sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==", - "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.25.7", -+ "@babel/helper-create-class-features-plugin": "^7.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", -+ "@babel/plugin-syntax-typescript": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1535,11 +1658,13 @@ - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.7.tgz", -+ "integrity": "sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1549,12 +1674,14 @@ - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { -- "version": "7.23.3", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.7.tgz", -+ "integrity": "sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==", - "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.25.7", -+ "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" -@@ -1565,6 +1692,8 @@ - }, - "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": { -@@ -1651,6 +1780,8 @@ - }, - "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": { -@@ -1666,6 +1797,8 @@ - }, - "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": { -@@ -1680,13 +1813,10 @@ - "@babel/core": "^7.0.0-0" - } - }, -- "node_modules/@babel/regjsgen": { -- "version": "0.8.0", -- "dev": true, -- "license": "MIT" -- }, - "node_modules/@babel/runtime": { -- "version": "7.23.4", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.7.tgz", -+ "integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==", - "dev": true, - "license": "MIT", - "dependencies": { -@@ -1697,30 +1827,31 @@ - } - }, - "node_modules/@babel/template": { -- "version": "7.22.15", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.7.tgz", -+ "integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==", - "license": "MIT", - "dependencies": { -- "@babel/code-frame": "^7.22.13", -- "@babel/parser": "^7.22.15", -- "@babel/types": "^7.22.15" -+ "@babel/code-frame": "^7.25.7", -+ "@babel/parser": "^7.25.7", -+ "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { -- "version": "7.23.4", -+ "version": "7.25.7", -+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.7.tgz", -+ "integrity": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==", - "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", -+ "@babel/code-frame": "^7.25.7", -+ "@babel/generator": "^7.25.7", -+ "@babel/parser": "^7.25.7", -+ "@babel/template": "^7.25.7", -+ "@babel/types": "^7.25.7", -+ "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { -@@ -1728,11 +1859,13 @@ - } - }, - "node_modules/@babel/types": { -- "version": "7.23.4", -+ "version": "7.25.8", -+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.8.tgz", -+ "integrity": "sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==", - "license": "MIT", - "dependencies": { -- "@babel/helper-string-parser": "^7.23.4", -- "@babel/helper-validator-identifier": "^7.22.20", -+ "@babel/helper-string-parser": "^7.25.7", -+ "@babel/helper-validator-identifier": "^7.25.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { -@@ -1741,6 +1874,8 @@ - }, - "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": { -@@ -1759,285 +1894,363 @@ - "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", -+ "license": "MIT", - "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.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.5.0.tgz", -+ "integrity": "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==", - "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.5.0", -+ "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.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.5.0.tgz", -+ "integrity": "sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==", - "dev": true, - "license": "MIT", -- "engines": { -- "node": ">=16" -+ "dependencies": { -+ "@commitlint/types": "^19.5.0", -+ "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.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.5.0.tgz", -+ "integrity": "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==", - "dev": true, -- "license": "Apache-2.0", -+ "license": "MIT", - "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.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.5.0.tgz", -+ "integrity": "sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==", - "dev": true, - "license": "MIT", -- "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -+ "dependencies": { -+ "@commitlint/types": "^19.5.0", -+ "chalk": "^5.3.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "engines": { -+ "node": ">=v18" - } - }, -- "node_modules/@commitlint/cli/node_modules/mimic-fn": { -- "version": "4.0.0", -+ "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" -+ "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/cli/node_modules/npm-run-path": { -- "version": "5.3.0", -+ "node_modules/@commitlint/is-ignored": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.5.0.tgz", -+ "integrity": "sha512-0XQ7Llsf9iL/ANtwyZ6G0NGp5Y3EQ8eDQSxv/SRcfJ0awlBY4tHFAvwWbw66FVUaWICH7iE5en+FD9TQsokZ5w==", - "dev": true, - "license": "MIT", - "dependencies": { -- "path-key": "^4.0.0" -+ "@commitlint/types": "^19.5.0", -+ "semver": "^7.6.0" - }, - "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -+ "node": ">=v18" -+ } -+ }, -+ "node_modules/@commitlint/is-ignored/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": "ISC", -+ "bin": { -+ "semver": "bin/semver.js" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "engines": { -+ "node": ">=10" - } - }, -- "node_modules/@commitlint/cli/node_modules/onetime": { -- "version": "6.0.0", -+ "node_modules/@commitlint/lint": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.5.0.tgz", -+ "integrity": "sha512-cAAQwJcRtiBxQWO0eprrAbOurtJz8U6MgYqLz+p9kLElirzSCc0vGMcyCaA1O7AqBuxo11l1XsY3FhOFowLAAg==", - "dev": true, - "license": "MIT", - "dependencies": { -- "mimic-fn": "^4.0.0" -+ "@commitlint/is-ignored": "^19.5.0", -+ "@commitlint/parse": "^19.5.0", -+ "@commitlint/rules": "^19.5.0", -+ "@commitlint/types": "^19.5.0" - }, - "engines": { -- "node": ">=12" -+ "node": ">=v18" -+ } -+ }, -+ "node_modules/@commitlint/load": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.5.0.tgz", -+ "integrity": "sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==", -+ "dev": true, -+ "license": "MIT", -+ "dependencies": { -+ "@commitlint/config-validator": "^19.5.0", -+ "@commitlint/execute-rule": "^19.5.0", -+ "@commitlint/resolve-extends": "^19.5.0", -+ "@commitlint/types": "^19.5.0", -+ "chalk": "^5.3.0", -+ "cosmiconfig": "^9.0.0", -+ "cosmiconfig-typescript-loader": "^5.0.0", -+ "lodash.isplainobject": "^4.0.6", -+ "lodash.merge": "^4.6.2", -+ "lodash.uniq": "^4.5.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "engines": { -+ "node": ">=v18" - } - }, -- "node_modules/@commitlint/cli/node_modules/path-key": { -- "version": "4.0.0", -+ "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" -+ "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/cli/node_modules/signal-exit": { -- "version": "4.1.0", -+ "node_modules/@commitlint/load/node_modules/cosmiconfig": { -+ "version": "9.0.0", -+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", -+ "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", - "dev": true, -- "license": "ISC", -+ "license": "MIT", -+ "dependencies": { -+ "env-paths": "^2.2.1", -+ "import-fresh": "^3.3.0", -+ "js-yaml": "^4.1.0", -+ "parse-json": "^5.2.0" -+ }, - "engines": { - "node": ">=14" - }, - "funding": { -- "url": "https://github.com/sponsors/isaacs" -+ "url": "https://github.com/sponsors/d-fischer" -+ }, -+ "peerDependencies": { -+ "typescript": ">=4.9.5" -+ }, -+ "peerDependenciesMeta": { -+ "typescript": { -+ "optional": true -+ } - } - }, -- "node_modules/@commitlint/cli/node_modules/strip-final-newline": { -- "version": "3.0.0", -+ "node_modules/@commitlint/load/node_modules/cosmiconfig-typescript-loader": { -+ "version": "5.1.0", -+ "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.1.0.tgz", -+ "integrity": "sha512-7PtBB+6FdsOvZyJtlF3hEPpACq7RQX6BVGsgC7/lfVXnKMvNCu/XY3ykreqG5w/rBNdu2z8LCIKoF3kpHHdHlA==", - "dev": true, - "license": "MIT", -+ "dependencies": { -+ "jiti": "^1.21.6" -+ }, - "engines": { -- "node": ">=12" -+ "node": ">=v16" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "peerDependencies": { -+ "@types/node": "*", -+ "cosmiconfig": ">=8.2", -+ "typescript": ">=4" - } - }, -- "node_modules/@commitlint/cli/node_modules/wrap-ansi": { -- "version": "7.0.0", -+ "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": { -- "ansi-styles": "^4.0.0", -- "string-width": "^4.1.0", -- "strip-ansi": "^6.0.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": ">=10" -+ "node": ">=8" - }, - "funding": { -- "url": "https://github.com/chalk/wrap-ansi?sponsor=1" -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/@commitlint/cli/node_modules/y18n": { -- "version": "5.0.8", -+ "node_modules/@commitlint/load/node_modules/typescript": { -+ "version": "5.6.3", -+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", -+ "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", - "dev": true, -- "license": "ISC", -+ "license": "Apache-2.0", -+ "peer": true, -+ "bin": { -+ "tsc": "bin/tsc", -+ "tsserver": "bin/tsserver" -+ }, - "engines": { -- "node": ">=10" -+ "node": ">=14.17" - } - }, -- "node_modules/@commitlint/cli/node_modules/yargs": { -- "version": "17.7.2", -+ "node_modules/@commitlint/message": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.5.0.tgz", -+ "integrity": "sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==", - "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": ">=v18" - } - }, -- "node_modules/@commitlint/config-conventional": { -- "version": "19.0.3", -+ "node_modules/@commitlint/parse": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.5.0.tgz", -+ "integrity": "sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@commitlint/types": "^19.0.3", -- "conventional-changelog-conventionalcommits": "^7.0.2" -+ "@commitlint/types": "^19.5.0", -+ "conventional-changelog-angular": "^7.0.0", -+ "conventional-commits-parser": "^5.0.0" - }, - "engines": { - "node": ">=v18" - } - }, -- "node_modules/@commitlint/config-conventional/node_modules/conventional-changelog-conventionalcommits": { -- "version": "7.0.2", -+ "node_modules/@commitlint/read": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.5.0.tgz", -+ "integrity": "sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==", - "dev": true, -- "license": "ISC", -+ "license": "MIT", - "dependencies": { -- "compare-func": "^2.0.0" -+ "@commitlint/top-level": "^19.5.0", -+ "@commitlint/types": "^19.5.0", -+ "git-raw-commits": "^4.0.0", -+ "minimist": "^1.2.8", -+ "tinyexec": "^0.3.0" - }, - "engines": { -- "node": ">=16" -+ "node": ">=v18" - } - }, -- "node_modules/@commitlint/config-validator": { -- "version": "19.0.3", -+ "node_modules/@commitlint/resolve-extends": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.5.0.tgz", -+ "integrity": "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@commitlint/types": "^19.0.3", -- "ajv": "^8.11.0" -+ "@commitlint/config-validator": "^19.5.0", -+ "@commitlint/types": "^19.5.0", -+ "global-directory": "^4.0.1", -+ "import-meta-resolve": "^4.0.0", -+ "lodash.mergewith": "^4.6.2", -+ "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=v18" - } - }, -- "node_modules/@commitlint/config-validator/node_modules/ajv": { -- "version": "8.12.0", -+ "node_modules/@commitlint/rules": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.5.0.tgz", -+ "integrity": "sha512-hDW5TPyf/h1/EufSHEKSp6Hs+YVsDMHazfJ2azIk9tHPXS6UqSz1dIRs1gpqS3eMXgtkT7JH6TW4IShdqOwhAw==", - "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" -+ "@commitlint/ensure": "^19.5.0", -+ "@commitlint/message": "^19.5.0", -+ "@commitlint/to-lines": "^19.5.0", -+ "@commitlint/types": "^19.5.0" - }, -- "funding": { -- "type": "github", -- "url": "https://github.com/sponsors/epoberezkin" -+ "engines": { -+ "node": ">=v18" - } - }, -- "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", -+ "node_modules/@commitlint/to-lines": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.5.0.tgz", -+ "integrity": "sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==", - "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", -+ "node_modules/@commitlint/top-level": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.5.0.tgz", -+ "integrity": "sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==", - "dev": true, - "license": "MIT", -+ "dependencies": { -+ "find-up": "^7.0.0" -+ }, - "engines": { - "node": ">=v18" - } - }, -- "node_modules/@commitlint/format": { -- "version": "19.0.3", -+ "node_modules/@commitlint/types": { -+ "version": "19.5.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.5.0.tgz", -+ "integrity": "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@commitlint/types": "^19.0.3", -+ "@types/conventional-commits-parser": "^5.0.0", - "chalk": "^5.3.0" - }, - "engines": { - "node": ">=v18" - } - }, -- "node_modules/@commitlint/format/node_modules/chalk": { -+ "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": { -@@ -2047,775 +2260,978 @@ - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, -- "node_modules/@commitlint/is-ignored": { -- "version": "19.0.3", -+ "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": { -- "@commitlint/types": "^19.0.3", -- "semver": "^7.6.0" -+ "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { -- "node": ">=v18" -+ "node": ">=12" - } - }, -- "node_modules/@commitlint/is-ignored/node_modules/lru-cache": { -- "version": "6.0.0", -+ "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": "ISC", -+ "license": "MIT", - "dependencies": { -- "yallist": "^4.0.0" -- }, -- "engines": { -- "node": ">=10" -+ "@jridgewell/resolve-uri": "^3.0.3", -+ "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, -- "node_modules/@commitlint/is-ignored/node_modules/semver": { -- "version": "7.6.0", -+ "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, -- "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, -- "bin": { -- "semver": "bin/semver.js" -- }, -+ "funding": [ -+ { -+ "type": "github", -+ "url": "https://github.com/sponsors/csstools" -+ }, -+ { -+ "type": "opencollective", -+ "url": "https://opencollective.com/csstools" -+ } -+ ], -+ "license": "MIT", - "engines": { -- "node": ">=10" -+ "node": "^14 || ^16 || >=18" -+ }, -+ "peerDependencies": { -+ "@csstools/css-tokenizer": "^2.4.1" - } - }, -- "node_modules/@commitlint/is-ignored/node_modules/yallist": { -- "version": "4.0.0", -- "dev": true, -- "license": "ISC" -- }, -- "node_modules/@commitlint/lint": { -- "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, -+ "funding": [ -+ { -+ "type": "github", -+ "url": "https://github.com/sponsors/csstools" -+ }, -+ { -+ "type": "opencollective", -+ "url": "https://opencollective.com/csstools" -+ } -+ ], - "license": "MIT", -- "dependencies": { -- "@commitlint/is-ignored": "^19.0.3", -- "@commitlint/parse": "^19.0.3", -- "@commitlint/rules": "^19.0.3", -- "@commitlint/types": "^19.0.3" -- }, - "engines": { -- "node": ">=v18" -+ "node": "^14 || ^16 || >=18" - } - }, -- "node_modules/@commitlint/load": { -- "version": "19.0.3", -+ "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, -+ "funding": [ -+ { -+ "type": "github", -+ "url": "https://github.com/sponsors/csstools" -+ }, -+ { -+ "type": "opencollective", -+ "url": "https://opencollective.com/csstools" -+ } -+ ], - "license": "MIT", -- "dependencies": { -- "@commitlint/config-validator": "^19.0.3", -- "@commitlint/execute-rule": "^19.0.0", -- "@commitlint/resolve-extends": "^19.0.3", -- "@commitlint/types": "^19.0.3", -- "chalk": "^5.3.0", -- "cosmiconfig": "^8.3.6", -- "cosmiconfig-typescript-loader": "^5.0.0", -- "lodash.isplainobject": "^4.0.6", -- "lodash.merge": "^4.6.2", -- "lodash.uniq": "^4.5.0" -- }, - "engines": { -- "node": ">=v18" -+ "node": "^14 || ^16 || >=18" -+ }, -+ "peerDependencies": { -+ "@csstools/css-parser-algorithms": "^2.7.1", -+ "@csstools/css-tokenizer": "^2.4.1" - } - }, -- "node_modules/@commitlint/load/node_modules/chalk": { -- "version": "5.3.0", -+ "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", -+ "funding": [ -+ { -+ "type": "github", -+ "url": "https://github.com/sponsors/csstools" -+ }, -+ { -+ "type": "opencollective", -+ "url": "https://opencollective.com/csstools" -+ } -+ ], -+ "license": "MIT-0", - "engines": { -- "node": "^12.17.0 || ^14.13 || >=16.0.0" -+ "node": "^14 || ^16 || >=18" - }, -- "funding": { -- "url": "https://github.com/chalk/chalk?sponsor=1" -+ "peerDependencies": { -+ "postcss-selector-parser": "^6.0.13" - } - }, -- "node_modules/@commitlint/load/node_modules/cosmiconfig": { -- "version": "8.3.6", -+ "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": { -- "import-fresh": "^3.3.0", -- "js-yaml": "^4.1.0", -- "parse-json": "^5.2.0", -- "path-type": "^4.0.0" -+ "ajv": "^6.12.0", -+ "ajv-keywords": "^3.4.1" - }, - "engines": { -- "node": ">=14" -+ "node": ">= 8.9.0" - }, - "funding": { -- "url": "https://github.com/sponsors/d-fischer" -- }, -- "peerDependencies": { -- "typescript": ">=4.9.5" -- }, -- "peerDependenciesMeta": { -- "typescript": { -- "optional": true -- } -+ "type": "opencollective", -+ "url": "https://opencollective.com/webpack" - } - }, -- "node_modules/@commitlint/load/node_modules/cosmiconfig-typescript-loader": { -- "version": "5.0.0", -+ "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", - "dependencies": { -- "jiti": "^1.19.1" -- }, -- "engines": { -- "node": ">=v16" -+ "fast-deep-equal": "^3.1.1", -+ "fast-json-stable-stringify": "^2.0.0", -+ "json-schema-traverse": "^0.4.1", -+ "uri-js": "^4.2.2" - }, -- "peerDependencies": { -- "@types/node": "*", -- "cosmiconfig": ">=8.2", -- "typescript": ">=4" -+ "funding": { -+ "type": "github", -+ "url": "https://github.com/sponsors/epoberezkin" - } - }, -- "node_modules/@commitlint/load/node_modules/parse-json": { -- "version": "5.2.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": "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" -+ "peerDependencies": { -+ "ajv": "^6.9.1" - } - }, -- "node_modules/@commitlint/load/node_modules/typescript": { -- "version": "5.4.2", -+ "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, -- "license": "Apache-2.0", -- "peer": true, -- "bin": { -- "tsc": "bin/tsc", -- "tsserver": "bin/tsserver" -- }, -+ "license": "MIT" -+ }, -+ "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==", -+ "license": "MIT", - "engines": { -- "node": ">=14.17" -+ "node": ">=10.0.0" - } - }, -- "node_modules/@commitlint/message": { -- "version": "19.0.0", -+ "node_modules/@electron/asar": { -+ "version": "3.2.13", -+ "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.2.13.tgz", -+ "integrity": "sha512-pY5z2qQSwbFzJsBdgfJIzXf5ElHTVMutC2dxh0FD60njknMu3n1NnTABOcQwbb5/v5soqE79m9UjaJryBf3epg==", - "dev": true, - "license": "MIT", -+ "dependencies": { -+ "@types/glob": "^7.1.0", -+ "commander": "^5.0.0", -+ "glob": "^7.1.6", -+ "minimatch": "^3.0.4" -+ }, -+ "bin": { -+ "asar": "bin/asar.js" -+ }, - "engines": { -- "node": ">=v18" -+ "node": ">=10.12.0" - } - }, -- "node_modules/@commitlint/parse": { -- "version": "19.0.3", -+ "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", - "dependencies": { -- "@commitlint/types": "^19.0.3", -- "conventional-changelog-angular": "^7.0.0", -- "conventional-commits-parser": "^5.0.0" -- }, -- "engines": { -- "node": ">=v18" -+ "balanced-match": "^1.0.0", -+ "concat-map": "0.0.1" - } - }, -- "node_modules/@commitlint/parse/node_modules/conventional-changelog-angular": { -- "version": "7.0.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": "ISC", - "dependencies": { -- "compare-func": "^2.0.0" -+ "brace-expansion": "^1.1.7" - }, - "engines": { -- "node": ">=16" -+ "node": "*" - } - }, -- "node_modules/@commitlint/parse/node_modules/conventional-commits-parser": { -- "version": "5.0.0", -- "dev": true, -+ "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==", - "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" -+ "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": ">=16" -+ "node": ">=12" -+ }, -+ "optionalDependencies": { -+ "global-agent": "^3.0.0" - } - }, -- "node_modules/@commitlint/parse/node_modules/is-text-path": { -- "version": "2.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", - "dependencies": { -- "text-extensions": "^2.0.0" -+ "debug": "^4.1.1", -+ "fs-extra": "^9.0.1", -+ "promise-retry": "^2.0.1" - }, - "engines": { -- "node": ">=8" -+ "node": ">= 10.0.0" - } - }, -- "node_modules/@commitlint/parse/node_modules/meow": { -- "version": "12.1.1", -+ "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": "MIT", -- "engines": { -- "node": ">=16.10" -+ "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/sindresorhus" -+ "engines": { -+ "node": ">=10" - } - }, -- "node_modules/@commitlint/parse/node_modules/text-extensions": { -- "version": "2.4.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": ">=8" -+ "dependencies": { -+ "universalify": "^2.0.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "optionalDependencies": { -+ "graceful-fs": "^4.1.6" - } - }, -- "node_modules/@commitlint/read": { -- "version": "19.0.3", -+ "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", -- "dependencies": { -- "@commitlint/top-level": "^19.0.0", -- "@commitlint/types": "^19.0.3", -- "git-raw-commits": "^4.0.0", -- "minimist": "^1.2.8" -- }, - "engines": { -- "node": ">=v18" -+ "node": ">= 10.0.0" - } - }, -- "node_modules/@commitlint/read/node_modules/dargs": { -- "version": "8.1.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", -- "engines": { -- "node": ">=12" -+ "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" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "bin": { -+ "electron-osx-flat": "bin/electron-osx-flat.js", -+ "electron-osx-sign": "bin/electron-osx-sign.js" -+ }, -+ "engines": { -+ "node": ">=12.0.0" - } - }, -- "node_modules/@commitlint/read/node_modules/git-raw-commits": { -- "version": "4.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": { -- "dargs": "^8.0.0", -- "meow": "^12.0.1", -- "split2": "^4.0.0" -- }, -- "bin": { -- "git-raw-commits": "cli.mjs" -+ "graceful-fs": "^4.2.0", -+ "jsonfile": "^6.0.1", -+ "universalify": "^2.0.0" - }, - "engines": { -- "node": ">=16" -+ "node": ">=12" - } - }, -- "node_modules/@commitlint/read/node_modules/meow": { -- "version": "12.1.1", -+ "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, - "license": "MIT", - "engines": { -- "node": ">=16.10" -+ "node": ">= 8.0.0" - }, - "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "url": "https://github.com/sponsors/gjtorikian/" - } - }, -- "node_modules/@commitlint/resolve-extends": { -- "version": "19.0.3", -+ "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": { -- "@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" -+ "universalify": "^2.0.0" - }, -- "engines": { -- "node": ">=v18" -+ "optionalDependencies": { -+ "graceful-fs": "^4.1.6" - } - }, -- "node_modules/@commitlint/resolve-extends/node_modules/resolve-from": { -- "version": "5.0.0", -+ "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, - "license": "MIT", - "engines": { -- "node": ">=8" -+ "node": ">= 10.0.0" - } - }, -- "node_modules/@commitlint/rules": { -- "version": "19.0.3", -+ "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==", -+ "license": "MIT", -+ "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": { -- "@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" -+ "@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": ">=v18" -+ "node": ">=8.6" - } - }, -- "node_modules/@commitlint/rules/node_modules/execa": { -- "version": "8.0.1", -+ "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": { -- "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" -+ "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, -+ "license": "MIT", -+ "dependencies": { -+ "at-least-node": "^1.0.0", -+ "graceful-fs": "^4.2.0", -+ "jsonfile": "^6.0.1", -+ "universalify": "^2.0.0" - }, - "engines": { -- "node": ">=16.17" -- }, -- "funding": { -- "url": "https://github.com/sindresorhus/execa?sponsor=1" -+ "node": ">=10" - } - }, -- "node_modules/@commitlint/rules/node_modules/get-stream": { -- "version": "8.0.1", -+ "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, - "license": "MIT", -- "engines": { -- "node": ">=16" -+ "dependencies": { -+ "universalify": "^2.0.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "optionalDependencies": { -+ "graceful-fs": "^4.1.6" - } - }, -- "node_modules/@commitlint/rules/node_modules/human-signals": { -- "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": "Apache-2.0", -+ "license": "ISC", -+ "dependencies": { -+ "brace-expansion": "^1.1.7" -+ }, - "engines": { -- "node": ">=16.17.0" -+ "node": "*" - } - }, -- "node_modules/@commitlint/rules/node_modules/is-stream": { -- "version": "3.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.0 || ^14.13.1 || >=16.0.0" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": ">= 10.0.0" - } - }, -- "node_modules/@commitlint/rules/node_modules/mimic-fn": { -- "version": "4.0.0", -+ "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", -- "engines": { -- "node": ">=12" -+ "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" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "engines": { -+ "node": "^10.12.0 || >=12.0.0" - } - }, -- "node_modules/@commitlint/rules/node_modules/npm-run-path": { -- "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", - "dependencies": { -- "path-key": "^4.0.0" -- }, -- "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -+ "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/onetime": { -- "version": "6.0.0", -+ "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": { -- "mimic-fn": "^4.0.0" -+ "sprintf-js": "~1.0.2" -+ } -+ }, -+ "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": { -+ "balanced-match": "^1.0.0", -+ "concat-map": "0.0.1" -+ } -+ }, -+ "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, -+ "license": "MIT", -+ "dependencies": { -+ "type-fest": "^0.20.2" - }, - "engines": { -- "node": ">=12" -+ "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/@commitlint/rules/node_modules/path-key": { -- "version": "4.0.0", -+ "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, - "license": "MIT", - "engines": { -- "node": ">=12" -+ "node": ">= 4" -+ } -+ }, -+ "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, -+ "license": "MIT", -+ "dependencies": { -+ "argparse": "^1.0.7", -+ "esprima": "^4.0.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "bin": { -+ "js-yaml": "bin/js-yaml.js" - } - }, -- "node_modules/@commitlint/rules/node_modules/signal-exit": { -- "version": "4.1.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, -+ "license": "MIT" -+ }, -+ "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, - "license": "ISC", -- "engines": { -- "node": ">=14" -+ "dependencies": { -+ "brace-expansion": "^1.1.7" - }, -- "funding": { -- "url": "https://github.com/sponsors/isaacs" -+ "engines": { -+ "node": "*" - } - }, -- "node_modules/@commitlint/rules/node_modules/strip-final-newline": { -- "version": "3.0.0", -+ "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, -- "license": "MIT", -+ "license": "BSD-3-Clause" -+ }, -+ "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 OR CC0-1.0)", - "engines": { -- "node": ">=12" -+ "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/@commitlint/to-lines": { -- "version": "19.0.0", -- "dev": true, -+ "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==", -+ "license": "MIT", -+ "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==", -+ "deprecated": "Please update to a newer version.", - "license": "MIT", - "engines": { -- "node": ">=v18" -+ "node": ">=14.0.0", -+ "npm": ">=6.0.0" - } - }, -- "node_modules/@commitlint/top-level": { -- "version": "19.0.0", -- "dev": true, -+ "node_modules/@floating-ui/core": { -+ "version": "1.6.8", -+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.8.tgz", -+ "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", - "license": "MIT", - "dependencies": { -- "find-up": "^7.0.0" -- }, -- "engines": { -- "node": ">=v18" -+ "@floating-ui/utils": "^0.2.8" - } - }, -- "node_modules/@commitlint/top-level/node_modules/find-up": { -- "version": "7.0.0", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "locate-path": "^7.2.0", -- "path-exists": "^5.0.0", -- "unicorn-magic": "^0.1.0" -+ "@floating-ui/core": "^1.1.0" -+ } -+ }, -+ "node_modules/@floating-ui/utils": { -+ "version": "0.2.8", -+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz", -+ "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==", -+ "license": "MIT" -+ }, -+ "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==", -+ "license": "MIT", -+ "dependencies": { -+ "ip-address": "^5.8.8" - }, - "engines": { -- "node": ">=18" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": ">=0.10.0" - } - }, -- "node_modules/@commitlint/top-level/node_modules/locate-path": { -- "version": "7.2.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", -+ "license": "Apache-2.0", - "dependencies": { -- "p-locate": "^6.0.0" -+ "@humanwhocodes/object-schema": "^1.2.0", -+ "debug": "^4.1.1", -+ "minimatch": "^3.0.4" - }, - "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": ">=10.10.0" - } - }, -- "node_modules/@commitlint/top-level/node_modules/p-limit": { -- "version": "4.0.0", -+ "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": { -- "yocto-queue": "^1.0.0" -+ "balanced-match": "^1.0.0", -+ "concat-map": "0.0.1" -+ } -+ }, -+ "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" - }, - "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": "*" - } - }, -- "node_modules/@commitlint/top-level/node_modules/p-locate": { -- "version": "6.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, -+ "license": "BSD-3-Clause" -+ }, -+ "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": "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==", - "license": "MIT", - "dependencies": { -- "p-limit": "^4.0.0" -+ "@intlify/message-compiler": "9.13.1", -+ "@intlify/shared": "9.13.1" - }, - "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -+ "node": ">= 16" - }, - "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "url": "https://github.com/sponsors/kazupon" - } - }, -- "node_modules/@commitlint/top-level/node_modules/path-exists": { -- "version": "5.0.0", -- "dev": true, -+ "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==", - "license": "MIT", -+ "dependencies": { -+ "@intlify/shared": "9.13.1", -+ "source-map-js": "^1.0.2" -+ }, - "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -+ "node": ">= 16" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/kazupon" - } - }, -- "node_modules/@commitlint/top-level/node_modules/yocto-queue": { -- "version": "1.0.0", -- "dev": true, -+ "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==", - "license": "MIT", - "engines": { -- "node": ">=12.20" -+ "node": ">= 16" - }, - "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "url": "https://github.com/sponsors/kazupon" - } - }, -- "node_modules/@commitlint/types": { -- "version": "19.0.3", -+ "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", -+ "license": "ISC", - "dependencies": { -- "@types/conventional-commits-parser": "^5.0.0", -- "chalk": "^5.3.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": ">=v18" -+ "node": ">=12" - } - }, -- "node_modules/@commitlint/types/node_modules/chalk": { -- "version": "5.3.0", -+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": { -+ "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", -+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true, - "license": "MIT", - "engines": { -- "node": "^12.17.0 || ^14.13 || >=16.0.0" -+ "node": ">=12" - }, - "funding": { -- "url": "https://github.com/chalk/chalk?sponsor=1" -+ "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, -- "node_modules/@cspotcode/source-map-support": { -- "version": "0.8.1", -+ "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, - "license": "MIT", -- "dependencies": { -- "@jridgewell/trace-mapping": "0.3.9" -- }, - "engines": { - "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, -- "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { -- "version": "0.3.9", -+ "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, -- "license": "MIT", -- "dependencies": { -- "@jridgewell/resolve-uri": "^3.0.3", -- "@jridgewell/sourcemap-codec": "^1.4.10" -- } -+ "license": "MIT" - }, -- "node_modules/@csstools/css-parser-algorithms": { -- "version": "2.3.2", -+ "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, -- "funding": [ -- { -- "type": "github", -- "url": "https://github.com/sponsors/csstools" -- }, -- { -- "type": "opencollective", -- "url": "https://opencollective.com/csstools" -- } -- ], - "license": "MIT", -+ "dependencies": { -+ "eastasianwidth": "^0.2.0", -+ "emoji-regex": "^9.2.2", -+ "strip-ansi": "^7.0.1" -+ }, - "engines": { -- "node": "^14 || ^16 || >=18" -+ "node": ">=12" - }, -- "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/@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, -- "funding": [ -- { -- "type": "github", -- "url": "https://github.com/sponsors/csstools" -- }, -- { -- "type": "opencollective", -- "url": "https://opencollective.com/csstools" -- } -- ], - "license": "MIT", -+ "dependencies": { -+ "ansi-regex": "^6.0.1" -+ }, - "engines": { -- "node": "^14 || ^16 || >=18" -+ "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, -- "node_modules/@csstools/media-query-list-parser": { -- "version": "2.1.5", -+ "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, -- "funding": [ -- { -- "type": "github", -- "url": "https://github.com/sponsors/csstools" -- }, -- { -- "type": "opencollective", -- "url": "https://opencollective.com/csstools" -- } -- ], - "license": "MIT", -- "engines": { -- "node": "^14 || ^16 || >=18" -+ "dependencies": { -+ "ansi-styles": "^6.1.0", -+ "string-width": "^5.0.1", -+ "strip-ansi": "^7.0.1" - }, -- "peerDependencies": { -- "@csstools/css-parser-algorithms": "^2.3.2", -- "@csstools/css-tokenizer": "^2.2.1" -- } -- }, -- "node_modules/@csstools/selector-specificity": { -- "version": "3.0.0", -- "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" -+ "node": ">=12" - }, -- "peerDependencies": { -- "postcss-selector-parser": "^6.0.13" -+ "funding": { -+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, -- "node_modules/@develar/schema-utils": { -- "version": "2.6.5", -- "dev": true, -+ "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==", -+ "license": "MIT" -+ }, -+ "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==", - "license": "MIT", - "dependencies": { -- "ajv": "^6.12.0", -- "ajv-keywords": "^3.4.1" -+ "@jridgewell/set-array": "^1.2.1", -+ "@jridgewell/sourcemap-codec": "^1.4.10", -+ "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { -- "node": ">= 8.9.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/webpack" -+ "node": ">=6.0.0" - } - }, -- "node_modules/@discoveryjs/json-ext": { -- "version": "0.5.7", -+ "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==", - "license": "MIT", - "engines": { -- "node": ">=10.0.0" -+ "node": ">=6.0.0" - } - }, -- "node_modules/@electron/asar": { -- "version": "3.2.10", -- "dev": true, -+ "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==", - "license": "MIT", -- "dependencies": { -- "commander": "^5.0.0", -- "glob": "^7.1.6", -- "minimatch": "^3.0.4" -- }, -- "bin": { -- "asar": "bin/asar.js" -- }, - "engines": { -- "node": ">=10.12.0" -+ "node": ">=6.0.0" - } - }, -- "node_modules/@electron/asar/node_modules/brace-expansion": { -- "version": "1.1.11", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -+ "@jridgewell/gen-mapping": "^0.3.5", -+ "@jridgewell/trace-mapping": "^0.3.25" - } - }, -- "node_modules/@electron/asar/node_modules/minimatch": { -- "version": "3.1.2", -- "dev": true, -- "license": "ISC", -+ "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==", -+ "license": "MIT" -+ }, -+ "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==", -+ "license": "MIT", - "dependencies": { -- "brace-expansion": "^1.1.7" -- }, -- "engines": { -- "node": "*" -+ "@jridgewell/resolve-uri": "^3.1.0", -+ "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, -- "node_modules/@electron/get": { -- "version": "2.0.3", -- "license": "MIT", -+ "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, -+ "license": "MIT" -+ }, -+ "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, -+ "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": { -- "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" -+ "cross-spawn": "^7.0.1" - }, - "engines": { -- "node": ">=12" -- }, -- "optionalDependencies": { -- "global-agent": "^3.0.0" -+ "node": ">= 10" - } - }, -- "node_modules/@electron/notarize": { -- "version": "2.2.1", -+ "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": { - "debug": "^4.1.1", -- "fs-extra": "^9.0.1", -- "promise-retry": "^2.0.1" -+ "fs-extra": "^9.0.0", -+ "lodash": "^4.17.15", -+ "tmp-promise": "^3.0.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, -- "node_modules/@electron/notarize/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": { -@@ -2828,8 +3244,10 @@ - "node": ">=10" - } - }, -- "node_modules/@electron/notarize/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": { -@@ -2839,1816 +3257,2225 @@ - "graceful-fs": "^4.1.6" - } - }, -- "node_modules/@electron/notarize/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/@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" -- }, -- "engines": { -- "node": ">=12.0.0" -- } -+ "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==", -+ "license": "Apache-2.0" - }, -- "node_modules/@electron/osx-sign/node_modules/fs-extra": { -- "version": "10.1.0", -+ "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": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -+ "@nodelib/fs.stat": "2.0.5", -+ "run-parallel": "^1.1.9" - }, - "engines": { -- "node": ">=12" -+ "node": ">= 8" - } - }, -- "node_modules/@electron/osx-sign/node_modules/isbinaryfile": { -- "version": "4.0.10", -+ "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", - "engines": { -- "node": ">= 8.0.0" -- }, -- "funding": { -- "url": "https://github.com/sponsors/gjtorikian/" -+ "node": ">= 8" - } - }, -- "node_modules/@electron/osx-sign/node_modules/jsonfile": { -- "version": "6.1.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": { -- "universalify": "^2.0.0" -- }, -- "optionalDependencies": { -- "graceful-fs": "^4.1.6" -+ "@nodelib/fs.scandir": "2.1.5", -+ "fastq": "^1.6.0" -+ }, -+ "engines": { -+ "node": ">= 8" - } - }, -- "node_modules/@electron/osx-sign/node_modules/universalify": { -- "version": "2.0.1", -+ "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": ">= 10.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": ">=14" - } - }, -- "node_modules/@electron/universal": { -- "version": "1.5.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", -+ "license": "Apache-2.0", - "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" -+ "@types/node": "*", -+ "playwright-core": "1.28.1" -+ }, -+ "bin": { -+ "playwright": "cli.js" - }, - "engines": { -- "node": ">=8.6" -+ "node": ">=14" - } - }, -- "node_modules/@electron/universal/node_modules/brace-expansion": { -- "version": "1.1.11", -- "dev": true, -+ "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==", - "license": "MIT", -- "dependencies": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -+ "engines": { -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, -- "node_modules/@electron/universal/node_modules/fs-extra": { -- "version": "9.1.0", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "at-least-node": "^1.0.0", -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -+ "defer-to-connect": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/@electron/universal/node_modules/jsonfile": { -- "version": "6.1.0", -+ "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, - "license": "MIT", -- "dependencies": { -- "universalify": "^2.0.0" -- }, -- "optionalDependencies": { -- "graceful-fs": "^4.1.6" -+ "engines": { -+ "node": ">= 10" - } - }, -- "node_modules/@electron/universal/node_modules/minimatch": { -- "version": "3.1.2", -+ "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, -- "license": "ISC", -- "dependencies": { -- "brace-expansion": "^1.1.7" -- }, -- "engines": { -- "node": "*" -- } -+ "license": "MIT" - }, -- "node_modules/@electron/universal/node_modules/universalify": { -- "version": "2.0.1", -+ "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, -+ "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, -+ "license": "MIT" -+ }, -+ "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, -+ "license": "MIT" -+ }, -+ "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==", - "license": "MIT", -- "engines": { -- "node": ">= 10.0.0" -+ "funding": { -+ "url": "https://opencollective.com/turf" - } - }, -- "node_modules/@eslint/eslintrc": { -- "version": "0.4.3", -+ "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": { -- "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": "^10.12.0 || >=12.0.0" -+ "@types/node": "*" - } - }, -- "node_modules/@eslint/eslintrc/node_modules/argparse": { -- "version": "1.0.10", -+ "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": "MIT", - "dependencies": { -- "sprintf-js": "~1.0.2" -+ "@types/connect": "*", -+ "@types/node": "*" - } - }, -- "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { -- "version": "1.1.11", -+ "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": "MIT", - "dependencies": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -+ "@types/node": "*" - } - }, -- "node_modules/@eslint/eslintrc/node_modules/globals": { -- "version": "13.23.0", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "type-fest": "^0.20.2" -- }, -- "engines": { -- "node": ">=8" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "@types/http-cache-semantics": "*", -+ "@types/keyv": "^3.1.4", -+ "@types/node": "*", -+ "@types/responselike": "^1.0.0" - } - }, -- "node_modules/@eslint/eslintrc/node_modules/ignore": { -- "version": "4.0.6", -+ "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, - "license": "MIT", -- "engines": { -- "node": ">= 4" -+ "dependencies": { -+ "@types/node": "*" - } - }, -- "node_modules/@eslint/eslintrc/node_modules/js-yaml": { -- "version": "3.14.1", -+ "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": "MIT", - "dependencies": { -- "argparse": "^1.0.7", -- "esprima": "^4.0.0" -- }, -- "bin": { -- "js-yaml": "bin/js-yaml.js" -+ "@types/express-serve-static-core": "*", -+ "@types/node": "*" - } - }, -- "node_modules/@eslint/eslintrc/node_modules/minimatch": { -- "version": "3.1.2", -+ "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": "ISC", -+ "license": "MIT", - "dependencies": { -- "brace-expansion": "^1.1.7" -- }, -- "engines": { -- "node": "*" -+ "@types/node": "*" - } - }, -- "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", -+ "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 OR CC0-1.0)", -- "engines": { -- "node": ">=10" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "license": "MIT", -+ "dependencies": { -+ "@types/ms": "*" - } - }, -- "node_modules/@fabio286/ssh2-promise": { -- "version": "1.0.4b", -+ "node_modules/@types/estree": { -+ "version": "1.0.6", -+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", -+ "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", -+ "license": "MIT" -+ }, -+ "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": { -- "@heroku/socksv5": "^0.0.9", -- "ssh2": "~1.14.0" -+ "@types/body-parser": "*", -+ "@types/express-serve-static-core": "^4.17.33", -+ "@types/qs": "*", -+ "@types/serve-static": "*" - } - }, -- "node_modules/@faker-js/faker": { -- "version": "6.1.2", -+ "node_modules/@types/express-serve-static-core": { -+ "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.0.tgz", -+ "integrity": "sha512-AbXMTZGt40T+KON9/Fdxx0B2WK5hsgxcfXJLr5bFpZ7b4JCex2WyQPTEKdXqfHiY5nKKBScZ7yCoO6Pvgxfvnw==", -+ "dev": true, - "license": "MIT", -- "engines": { -- "node": ">=14.0.0", -- "npm": ">=6.0.0" -+ "dependencies": { -+ "@types/node": "*", -+ "@types/qs": "*", -+ "@types/range-parser": "*", -+ "@types/send": "*" - } - }, -- "node_modules/@floating-ui/core": { -- "version": "1.5.0", -+ "node_modules/@types/express/node_modules/@types/express-serve-static-core": { -+ "version": "4.19.6", -+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", -+ "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", -+ "dev": true, - "license": "MIT", - "dependencies": { -- "@floating-ui/utils": "^0.1.3" -+ "@types/node": "*", -+ "@types/qs": "*", -+ "@types/range-parser": "*", -+ "@types/send": "*" - } - }, -- "node_modules/@floating-ui/dom": { -- "version": "1.1.1", -+ "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": { -- "@floating-ui/core": "^1.1.0" -+ "@types/node": "*" - } - }, -- "node_modules/@floating-ui/utils": { -- "version": "0.1.6", -+ "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, - "license": "MIT" - }, -- "node_modules/@heroku/socksv5": { -- "version": "0.0.9", -+ "node_modules/@types/glob": { -+ "version": "7.2.0", -+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", -+ "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", -+ "dev": true, - "license": "MIT", - "dependencies": { -- "ip-address": "^5.8.8" -- }, -- "engines": { -- "node": ">=0.10.0" -+ "@types/minimatch": "*", -+ "@types/node": "*" - } - }, -- "node_modules/@humanwhocodes/config-array": { -- "version": "0.5.0", -+ "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==", -+ "license": "MIT" -+ }, -+ "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==", -+ "license": "MIT" -+ }, -+ "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, -- "license": "Apache-2.0", -+ "license": "MIT" -+ }, -+ "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, -+ "license": "MIT", - "dependencies": { -- "@humanwhocodes/object-schema": "^1.2.0", -- "debug": "^4.1.1", -- "minimatch": "^3.0.4" -- }, -- "engines": { -- "node": ">=10.10.0" -+ "@types/node": "*" - } - }, -- "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { -- "version": "1.1.11", -+ "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==", -+ "license": "MIT" -+ }, -+ "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, -+ "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==", - "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/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, -- "license": "ISC", -+ "license": "MIT", - "dependencies": { -- "brace-expansion": "^1.1.7" -- }, -- "engines": { -- "node": "*" -+ "@types/geojson": "*" - } - }, -- "node_modules/@humanwhocodes/object-schema": { -- "version": "1.2.1", -+ "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, -- "license": "BSD-3-Clause" -+ "license": "MIT" - }, -- "node_modules/@hutson/parse-repository-url": { -- "version": "3.0.2", -+ "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, -- "license": "Apache-2.0", -- "engines": { -- "node": ">=6.9.0" -- } -+ "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": { -- "@intlify/message-compiler": "9.13.1", -- "@intlify/shared": "9.13.1" -- }, -- "engines": { -- "node": ">= 16" -- }, -- "funding": { -- "url": "https://github.com/sponsors/kazupon" -- } -+ "node_modules/@types/minimatch": { -+ "version": "5.1.2", -+ "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", -+ "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", -+ "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": { -- "@intlify/shared": "9.13.1", -- "source-map-js": "^1.0.2" -- }, -- "engines": { -- "node": ">= 16" -- }, -- "funding": { -- "url": "https://github.com/sponsors/kazupon" -- } -+ "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, -+ "license": "MIT" - }, -- "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/ms": { -+ "version": "0.7.34", -+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", -+ "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", -+ "dev": true, -+ "license": "MIT" - }, -- "node_modules/@isaacs/cliui": { -- "version": "8.0.2", -+ "node_modules/@types/node": { -+ "version": "17.0.45", -+ "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", -+ "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", -+ "license": "MIT" -+ }, -+ "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": "ISC", -+ "license": "MIT", - "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/node": "*" - } - }, -- "node_modules/@isaacs/cliui/node_modules/ansi-regex": { -- "version": "6.0.1", -+ "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, -+ "license": "MIT" -+ }, -+ "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", -- "engines": { -- "node": ">=12" -- }, -- "funding": { -- "url": "https://github.com/chalk/ansi-regex?sponsor=1" -+ "dependencies": { -+ "@types/node": "*", -+ "pg-protocol": "*", -+ "pg-types": "^2.2.0" - } - }, -- "node_modules/@isaacs/cliui/node_modules/ansi-styles": { -- "version": "6.2.1", -+ "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", -- "engines": { -- "node": ">=12" -- }, -- "funding": { -- "url": "https://github.com/chalk/ansi-styles?sponsor=1" -+ "optional": true, -+ "dependencies": { -+ "@types/node": "*", -+ "xmlbuilder": ">=11.0.1" - } - }, -- "node_modules/@isaacs/cliui/node_modules/emoji-regex": { -- "version": "9.2.2", -+ "node_modules/@types/qs": { -+ "version": "6.9.16", -+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.16.tgz", -+ "integrity": "sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==", - "dev": true, - "license": "MIT" - }, -- "node_modules/@isaacs/cliui/node_modules/string-width": { -- "version": "5.1.2", -+ "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, -+ "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==", - "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/node": "*" - } - }, -- "node_modules/@isaacs/cliui/node_modules/strip-ansi": { -- "version": "7.1.0", -+ "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, -+ "license": "MIT" -+ }, -+ "node_modules/@types/semver": { -+ "version": "7.5.8", -+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", -+ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", -+ "license": "MIT" -+ }, -+ "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": { -- "ansi-regex": "^6.0.1" -- }, -- "engines": { -- "node": ">=12" -- }, -- "funding": { -- "url": "https://github.com/chalk/strip-ansi?sponsor=1" -+ "@types/mime": "^1", -+ "@types/node": "*" - } - }, -- "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { -- "version": "8.1.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", - "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/express": "*" - } - }, -- "node_modules/@jamescoyle/vue-icon": { -- "version": "0.1.2", -- "license": "MIT" -- }, -- "node_modules/@jridgewell/gen-mapping": { -- "version": "0.3.3", -+ "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": "MIT", - "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/http-errors": "*", -+ "@types/node": "*", -+ "@types/send": "*" - } - }, -- "node_modules/@jridgewell/resolve-uri": { -- "version": "3.1.1", -+ "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, - "license": "MIT", -- "engines": { -- "node": ">=6.0.0" -+ "dependencies": { -+ "@types/node": "*" - } - }, -- "node_modules/@jridgewell/set-array": { -- "version": "1.1.2", -+ "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": ">=6.0.0" -+ "dependencies": { -+ "@types/node": "^18.11.18" - } - }, -- "node_modules/@jridgewell/source-map": { -- "version": "0.3.5", -+ "node_modules/@types/ssh2/node_modules/@types/node": { -+ "version": "18.19.57", -+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.57.tgz", -+ "integrity": "sha512-I2ioBd/IPrYDMv9UNR5NlPElOZ68QB7yY5V2EsLtSrTO0LM0PnCEFF9biLWHf5k+sIy4ohueCV9t4gk1AEdlVA==", -+ "dev": true, - "license": "MIT", - "dependencies": { -- "@jridgewell/gen-mapping": "^0.3.0", -- "@jridgewell/trace-mapping": "^0.3.9" -+ "undici-types": "~5.26.4" - } - }, -- "node_modules/@jridgewell/sourcemap-codec": { -- "version": "1.4.15", -+ "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/@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==", - "license": "MIT" - }, -- "node_modules/@jridgewell/trace-mapping": { -- "version": "0.3.20", -+ "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": { -- "@jridgewell/resolve-uri": "^3.1.0", -- "@jridgewell/sourcemap-codec": "^1.4.14" -+ "@types/node": "*" - } - }, -- "node_modules/@leichtgewicht/ip-codec": { -- "version": "2.0.4", -- "dev": true, -- "license": "MIT" -- }, -- "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", -+ "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==", -+ "license": "MIT", -+ "optional": true, - "dependencies": { -- "cross-spawn": "^7.0.1" -- }, -- "engines": { -- "node": ">= 10" -+ "@types/node": "*" - } - }, -- "node_modules/@malept/flatpak-bundler": { -- "version": "0.4.0", -+ "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": { -- "debug": "^4.1.1", -- "fs-extra": "^9.0.0", -- "lodash": "^4.17.15", -- "tmp-promise": "^3.0.2" -+ "@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": ">= 10.0.0" -+ "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/@malept/flatpak-bundler/node_modules/fs-extra": { -- "version": "9.1.0", -+ "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, -- "license": "MIT", -- "dependencies": { -- "at-least-node": "^1.0.0", -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -+ "license": "ISC", -+ "bin": { -+ "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { -- "version": "6.1.0", -+ "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, -- "license": "MIT", -+ "license": "BSD-2-Clause", - "dependencies": { -- "universalify": "^2.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" - }, -- "optionalDependencies": { -- "graceful-fs": "^4.1.6" -+ "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/@malept/flatpak-bundler/node_modules/universalify": { -- "version": "2.0.1", -+ "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": { -+ "@typescript-eslint/types": "5.18.0", -+ "@typescript-eslint/visitor-keys": "5.18.0" -+ }, - "engines": { -- "node": ">= 10.0.0" -+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/typescript-eslint" - } - }, -- "node_modules/@mdi/js": { -- "version": "7.2.96", -- "license": "Apache-2.0" -- }, -- "node_modules/@nodelib/fs.scandir": { -- "version": "2.1.5", -+ "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, - "license": "MIT", - "dependencies": { -- "@nodelib/fs.stat": "2.0.5", -- "run-parallel": "^1.1.9" -+ "@typescript-eslint/utils": "5.18.0", -+ "debug": "^4.3.2", -+ "tsutils": "^3.21.0" - }, - "engines": { -- "node": ">= 8" -+ "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/@nodelib/fs.stat": { -- "version": "2.0.5", -+ "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, - "license": "MIT", - "engines": { -- "node": ">= 8" -+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/typescript-eslint" - } - }, -- "node_modules/@nodelib/fs.walk": { -- "version": "1.2.8", -+ "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, -- "license": "MIT", -+ "license": "BSD-2-Clause", - "dependencies": { -- "@nodelib/fs.scandir": "2.1.5", -- "fastq": "^1.6.0" -+ "@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": ">= 8" -- } -- }, -- "node_modules/@pkgjs/parseargs": { -- "version": "0.11.0", -- "dev": true, -- "license": "MIT", -- "optional": true, -- "engines": { -- "node": ">=14" -+ "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/@playwright/test": { -- "version": "1.28.1", -+ "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, -- "license": "Apache-2.0", -- "dependencies": { -- "@types/node": "*", -- "playwright-core": "1.28.1" -- }, -+ "license": "ISC", - "bin": { -- "playwright": "cli.js" -+ "semver": "bin/semver.js" - }, - "engines": { -- "node": ">=14" -+ "node": ">=10" - } - }, -- "node_modules/@sindresorhus/is": { -- "version": "4.6.0", -+ "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, - "license": "MIT", -+ "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": ">=10" -+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { -- "url": "https://github.com/sindresorhus/is?sponsor=1" -+ "type": "opencollective", -+ "url": "https://opencollective.com/typescript-eslint" -+ }, -+ "peerDependencies": { -+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, -- "node_modules/@szmarczak/http-timer": { -- "version": "4.0.6", -+ "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, - "license": "MIT", - "dependencies": { -- "defer-to-connect": "^2.0.0" -+ "@typescript-eslint/types": "5.18.0", -+ "eslint-visitor-keys": "^3.0.0" - }, - "engines": { -- "node": ">=10" -+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/typescript-eslint" - } - }, -- "node_modules/@tootallnate/once": { -- "version": "2.0.0", -+ "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, -- "license": "MIT", -+ "license": "Apache-2.0", - "engines": { -- "node": ">= 10" -- } -- }, -- "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", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/@tsconfig/node16": { -- "version": "1.0.4", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/@turf/helpers": { -- "version": "6.5.0", -- "license": "MIT", -+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -+ }, - "funding": { -- "url": "https://opencollective.com/turf" -+ "url": "https://opencollective.com/eslint" - } - }, -- "node_modules/@types/better-sqlite3": { -- "version": "7.5.0", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "@babel/parser": "^7.16.4", -+ "@vue/shared": "3.2.47", -+ "estree-walker": "^2.0.2", -+ "source-map": "^0.6.1" - } - }, -- "node_modules/@types/body-parser": { -- "version": "1.19.5", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/connect": "*", -- "@types/node": "*" -+ "@vue/compiler-core": "3.2.47", -+ "@vue/shared": "3.2.47" - } - }, -- "node_modules/@types/bonjour": { -- "version": "3.5.13", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "@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/@types/cacheable-request": { -- "version": "6.0.3", -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/http-cache-semantics": "*", -- "@types/keyv": "^3.1.4", -- "@types/node": "*", -- "@types/responselike": "^1.0.0" -+ "@vue/compiler-dom": "3.2.47", -+ "@vue/shared": "3.2.47" - } - }, -- "node_modules/@types/connect": { -+ "node_modules/@vue/devtools-api": { -+ "version": "6.6.4", -+ "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz", -+ "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==", -+ "license": "MIT" -+ }, -+ "node_modules/@vue/reactivity": { - "version": "3.4.38", -- "dev": true, -+ "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.38.tgz", -+ "integrity": "sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "@vue/shared": "3.4.38" - } - }, -- "node_modules/@types/connect-history-api-fallback": { -- "version": "1.5.4", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/express-serve-static-core": "*", -- "@types/node": "*" -+ "@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/@types/conventional-commits-parser": { -- "version": "5.0.0", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "@types/node": "*" -- } -+ "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==", -+ "license": "MIT" - }, -- "node_modules/@types/debug": { -- "version": "4.1.12", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/ms": "*" -+ "@vue/reactivity": "3.4.38", -+ "@vue/shared": "3.4.38" - } - }, -- "node_modules/@types/eslint": { -- "version": "8.44.7", -- "license": "MIT", -- "dependencies": { -- "@types/estree": "*", -- "@types/json-schema": "*" -- } -+ "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==", -+ "license": "MIT" - }, -- "node_modules/@types/eslint-scope": { -- "version": "3.7.7", -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/eslint": "*", -- "@types/estree": "*" -+ "@vue/reactivity": "3.4.38", -+ "@vue/runtime-core": "3.4.38", -+ "@vue/shared": "3.4.38", -+ "csstype": "^3.1.3" - } - }, -- "node_modules/@types/estree": { -- "version": "1.0.5", -+ "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==", - "license": "MIT" - }, -- "node_modules/@types/express": { -- "version": "4.17.21", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/body-parser": "*", -- "@types/express-serve-static-core": "^4.17.33", -- "@types/qs": "*", -- "@types/serve-static": "*" -+ "@vue/compiler-ssr": "3.4.38", -+ "@vue/shared": "3.4.38" -+ }, -+ "peerDependencies": { -+ "vue": "3.4.38" - } - }, -- "node_modules/@types/express-serve-static-core": { -- "version": "4.17.41", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*", -- "@types/qs": "*", -- "@types/range-parser": "*", -- "@types/send": "*" -+ "@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/@types/fs-extra": { -- "version": "9.0.13", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "@vue/compiler-core": "3.4.38", -+ "@vue/shared": "3.4.38" - } - }, -- "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/@types/http-cache-semantics": { -- "version": "4.0.4", -- "license": "MIT" -- }, -- "node_modules/@types/http-errors": { -- "version": "2.0.4", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/@types/http-proxy": { -- "version": "1.17.14", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "@vue/compiler-dom": "3.4.38", -+ "@vue/shared": "3.4.38" - } - }, -- "node_modules/@types/json-schema": { -- "version": "7.0.15", -+ "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==", - "license": "MIT" - }, -- "node_modules/@types/json5": { -- "version": "0.0.29", -- "dev": true, -+ "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==", - "license": "MIT" - }, -- "node_modules/@types/keyv": { -- "version": "3.1.4", -+ "node_modules/@vueuse/core": { -+ "version": "10.4.1", -+ "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.4.1.tgz", -+ "integrity": "sha512-DkHIfMIoSIBjMgRRvdIvxsyboRZQmImofLyOHADqiVbQVilP8VVHDhBX2ZqoItOgu7dWa8oXiNnScOdPLhdEXg==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "@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/@types/leaflet": { -- "version": "1.7.11", -- "dev": true, -+ "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, - "license": "MIT", -- "dependencies": { -- "@types/geojson": "*" -+ "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/@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", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/@types/ms": { -- "version": "0.7.34", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/@types/node": { -- "version": "17.0.45", -- "license": "MIT" -+ "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==", -+ "license": "MIT", -+ "funding": { -+ "url": "https://github.com/sponsors/antfu" -+ } - }, -- "node_modules/@types/node-forge": { -- "version": "1.3.10", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "vue-demi": ">=0.14.5" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/antfu" - } - }, -- "node_modules/@types/normalize-package-data": { -- "version": "2.4.4", -- "dev": true, -- "license": "MIT" -+ "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, -+ "license": "MIT", -+ "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/@types/pg": { -- "version": "8.6.6", -- "dev": 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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*", -- "pg-protocol": "*", -- "pg-types": "^2.2.0" -+ "@webassemblyjs/helper-numbers": "1.11.6", -+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, -- "node_modules/@types/qs": { -- "version": "6.9.10", -- "dev": true, -+ "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==", - "license": "MIT" - }, -- "node_modules/@types/range-parser": { -- "version": "1.2.7", -- "dev": true, -+ "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==", - "license": "MIT" - }, -- "node_modules/@types/responselike": { -- "version": "1.0.3", -+ "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==", -+ "license": "MIT" -+ }, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "@webassemblyjs/floating-point-hex-parser": "1.11.6", -+ "@webassemblyjs/helper-api-error": "1.11.6", -+ "@xtuc/long": "4.2.2" - } - }, -- "node_modules/@types/retry": { -- "version": "0.12.0", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/@types/semver": { -- "version": "7.5.6", -+ "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==", - "license": "MIT" - }, -- "node_modules/@types/send": { -- "version": "0.17.4", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/mime": "^1", -- "@types/node": "*" -+ "@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/@types/serve-index": { -- "version": "1.9.4", -- "dev": true, -+ "node_modules/@webassemblyjs/ieee754": { -+ "version": "1.11.6", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", -+ "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", - "license": "MIT", - "dependencies": { -- "@types/express": "*" -+ "@xtuc/ieee754": "^1.2.0" - } - }, -- "node_modules/@types/serve-static": { -- "version": "1.15.5", -- "dev": true, -- "license": "MIT", -+ "node_modules/@webassemblyjs/leb128": { -+ "version": "1.11.6", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", -+ "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", -+ "license": "Apache-2.0", - "dependencies": { -- "@types/http-errors": "*", -- "@types/mime": "*", -- "@types/node": "*" -+ "@xtuc/long": "4.2.2" - } - }, -- "node_modules/@types/sockjs": { -- "version": "0.3.36", -- "dev": true, -+ "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==", -+ "license": "MIT" -+ }, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "@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/ssh2": { -- "version": "1.11.17", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "^18.11.18" -+ "@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/ssh2/node_modules/@types/node": { -- "version": "18.18.13", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "undici-types": "~5.26.4" -+ "@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/web-bluetooth": { -- "version": "0.0.17", -- "license": "MIT" -- }, -- "node_modules/@types/ws": { -- "version": "8.5.10", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/node": "*" -+ "@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/yauzl": { -- "version": "2.10.3", -+ "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==", - "license": "MIT", -- "optional": true, - "dependencies": { -- "@types/node": "*" -+ "@webassemblyjs/ast": "1.12.1", -+ "@xtuc/long": "4.2.2" - } - }, -- "node_modules/@typescript-eslint/eslint-plugin": { -- "version": "5.18.0", -- "dev": true, -+ "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==", -+ "license": "MIT", -+ "peerDependencies": { -+ "webpack": "4.x.x || 5.x.x", -+ "webpack-cli": "4.x.x" -+ } -+ }, -+ "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==", - "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" -- }, -- "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -+ "envinfo": "^7.7.3" - }, - "peerDependencies": { -- "@typescript-eslint/parser": "^5.0.0", -- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" -+ "webpack-cli": "4.x.x" -+ } -+ }, -+ "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==", -+ "license": "MIT", -+ "peerDependencies": { -+ "webpack-cli": "4.x.x" - }, - "peerDependenciesMeta": { -- "typescript": { -+ "webpack-dev-server": { - "optional": true - } - } - }, -- "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { -- "version": "6.0.0", -+ "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": "ISC", -- "dependencies": { -- "yallist": "^4.0.0" -- }, -+ "license": "MIT", - "engines": { -- "node": ">=10" -+ "node": ">=10.0.0" - } - }, -- "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { -- "version": "7.5.4", -+ "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==", -+ "license": "BSD-3-Clause" -+ }, -+ "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==", -+ "license": "Apache-2.0" -+ }, -+ "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, -- "license": "ISC", -+ "license": "MIT" -+ }, -+ "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": { -- "lru-cache": "^6.0.0" -+ "mime-types": "~2.1.34", -+ "negotiator": "0.6.3" - }, -+ "engines": { -+ "node": ">= 0.6" -+ } -+ }, -+ "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==", -+ "license": "BSD-3-Clause" -+ }, -+ "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", - "bin": { -- "semver": "bin/semver.js" -+ "acorn": "bin/acorn" - }, - "engines": { -- "node": ">=10" -+ "node": ">=0.4.0" - } - }, -- "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { -- "version": "4.0.0", -+ "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": "ISC" -+ "license": "MIT", -+ "peerDependencies": { -+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" -+ } - }, -- "node_modules/@typescript-eslint/parser": { -- "version": "5.18.0", -+ "node_modules/acorn-walk": { -+ "version": "8.3.4", -+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", -+ "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", - "dev": true, -- "license": "BSD-2-Clause", -+ "license": "MIT", - "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" -+ "acorn": "^8.11.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" -- }, -- "peerDependenciesMeta": { -- "typescript": { -- "optional": true -- } -+ "node": ">=0.4.0" - } - }, -- "node_modules/@typescript-eslint/scope-manager": { -- "version": "5.18.0", -+ "node_modules/acorn-walk/node_modules/acorn": { -+ "version": "8.13.0", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", -+ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", - "dev": true, - "license": "MIT", -- "dependencies": { -- "@typescript-eslint/types": "5.18.0", -- "@typescript-eslint/visitor-keys": "5.18.0" -+ "bin": { -+ "acorn": "bin/acorn" - }, - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -+ "node": ">=0.4.0" - } - }, -- "node_modules/@typescript-eslint/type-utils": { -- "version": "5.18.0", -+ "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, -+ "license": "MIT" -+ }, -+ "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": { -- "@typescript-eslint/utils": "5.18.0", -- "debug": "^4.3.2", -- "tsutils": "^3.21.0" -+ "debug": "4" - }, - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -+ "node": ">= 6.0.0" -+ } -+ }, -+ "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==", -+ "license": "MIT", -+ "dependencies": { -+ "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": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -+ "type": "github", -+ "url": "https://github.com/sponsors/epoberezkin" -+ } -+ }, -+ "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==", -+ "license": "MIT", -+ "dependencies": { -+ "ajv": "^8.0.0" - }, - "peerDependencies": { -- "eslint": "*" -+ "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { -- "typescript": { -+ "ajv": { - "optional": true - } - } - }, -- "node_modules/@typescript-eslint/types": { -- "version": "5.18.0", -- "dev": true, -+ "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==", - "license": "MIT", -- "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -+ "dependencies": { -+ "fast-deep-equal": "^3.1.3" - }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -+ "peerDependencies": { -+ "ajv": "^8.8.2" - } - }, -- "node_modules/@typescript-eslint/typescript-estree": { -- "version": "5.18.0", -+ "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": "BSD-2-Clause", -+ "license": "MIT", - "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" -+ "@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" - }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -+ "bin": { -+ "all-contributors": "dist/cli.js" - }, -- "peerDependenciesMeta": { -- "typescript": { -- "optional": true -- } -+ "engines": { -+ "node": ">=4" - } - }, -- "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { -+ "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": "ISC", - "dependencies": { -- "yallist": "^4.0.0" -- }, -- "engines": { -- "node": ">=10" -+ "string-width": "^4.2.0", -+ "strip-ansi": "^6.0.0", -+ "wrap-ansi": "^6.2.0" - } - }, -- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { -- "version": "7.5.4", -+ "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": "ISC", -+ "license": "MIT", - "dependencies": { -- "lru-cache": "^6.0.0" -- }, -- "bin": { -- "semver": "bin/semver.js" -+ "locate-path": "^5.0.0", -+ "path-exists": "^4.0.0" - }, - "engines": { -- "node": ">=10" -+ "node": ">=8" - } - }, -- "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { -- "version": "4.0.0", -+ "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": "ISC" -+ "license": "MIT", -+ "dependencies": { -+ "p-locate": "^4.1.0" -+ }, -+ "engines": { -+ "node": ">=8" -+ } - }, -- "node_modules/@typescript-eslint/utils": { -- "version": "5.18.0", -+ "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/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" -+ "p-try": "^2.0.0" - }, - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -+ "node": ">=6" - }, - "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -- }, -- "peerDependencies": { -- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/@typescript-eslint/visitor-keys": { -- "version": "5.18.0", -+ "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": { -- "@typescript-eslint/types": "5.18.0", -- "eslint-visitor-keys": "^3.0.0" -+ "p-limit": "^2.2.0" - }, - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -+ "node": ">=8" - } - }, -- "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { -- "version": "3.4.3", -+ "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": "Apache-2.0", -+ "license": "MIT", - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -- }, -- "funding": { -- "url": "https://opencollective.com/eslint" -+ "node": ">=8" - } - }, -- "node_modules/@vue/compiler-core": { -- "version": "3.2.47", -+ "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": { -- "@babel/parser": "^7.16.4", -- "@vue/shared": "3.2.47", -- "estree-walker": "^2.0.2", -- "source-map": "^0.6.1" -+ "ansi-styles": "^4.0.0", -+ "string-width": "^4.1.0", -+ "strip-ansi": "^6.0.0" -+ }, -+ "engines": { -+ "node": ">=8" - } - }, -- "node_modules/@vue/compiler-dom": { -- "version": "3.2.47", -+ "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, -+ "license": "ISC" -+ }, -+ "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": "MIT", - "dependencies": { -- "@vue/compiler-core": "3.2.47", -- "@vue/shared": "3.2.47" -+ "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": ">=8" - } - }, -- "node_modules/@vue/compiler-sfc": { -- "version": "3.2.47", -- "license": "MIT", -+ "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": { -- "@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" -+ "camelcase": "^5.0.0", -+ "decamelize": "^1.2.0" -+ }, -+ "engines": { -+ "node": ">=6" - } - }, -- "node_modules/@vue/compiler-ssr": { -- "version": "3.2.47", -+ "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": "MIT", -- "dependencies": { -- "@vue/compiler-dom": "3.2.47", -- "@vue/shared": "3.2.47" -+ "engines": { -+ "node": ">=6" - } - }, -- "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" -- } -- }, -- "node_modules/@vue/reactivity-transform": { -- "version": "3.2.47", -+ "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": "MIT", - "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.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" -- }, -- "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==", -- "dependencies": { -- "@vue/reactivity": "3.4.27", -- "@vue/shared": "3.4.27" -+ "type-fest": "^0.21.3" -+ }, -+ "engines": { -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "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/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 OR CC0-1.0)", -+ "engines": { -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "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/@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==", -- "dependencies": { -- "@vue/compiler-ssr": "3.4.27", -- "@vue/shared": "3.4.27" -- }, -- "peerDependencies": { -- "vue": "3.4.27" -+ "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, -+ "engines": [ -+ "node >= 0.8.0" -+ ], -+ "license": "Apache-2.0", -+ "bin": { -+ "ansi-html": "bin/ansi-html" - } - }, -- "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/ansi-regex": { -+ "version": "5.0.1", -+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", -+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", -+ "license": "MIT", -+ "engines": { -+ "node": ">=8" - } - }, -- "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==", -+ "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==", -+ "license": "MIT", - "dependencies": { -- "@vue/compiler-core": "3.4.27", -- "@vue/shared": "3.4.27" -+ "color-convert": "^2.0.1" -+ }, -+ "engines": { -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, -- "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==", -+ "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==", -+ "license": "ISC", - "dependencies": { -- "@vue/compiler-dom": "3.4.27", -- "@vue/shared": "3.4.27" -+ "normalize-path": "^3.0.0", -+ "picomatch": "^2.0.4" -+ }, -+ "engines": { -+ "node": ">= 8" - } - }, -- "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", -+ "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, - "license": "MIT" - }, -- "node_modules/@vueuse/core": { -- "version": "10.4.1", -+ "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": "MIT", - "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.6", -- "hasInstallScript": true, -- "license": "MIT", -- "bin": { -- "vue-demi-fix": "bin/vue-demi-fix.js", -- "vue-demi-switch": "bin/vue-demi-switch.js" -+ "@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" -- }, -- "funding": { -- "url": "https://github.com/sponsors/antfu" -+ "node": ">=14.0.0" - }, - "peerDependencies": { -- "@vue/composition-api": "^1.0.0-rc.1", -- "vue": "^3.0.0-0 || ^2.6.0" -- }, -- "peerDependenciesMeta": { -- "@vue/composition-api": { -- "optional": true -- } -+ "dmg-builder": "24.13.3", -+ "electron-builder-squirrel-windows": "24.13.3" - } - }, -- "node_modules/@vueuse/metadata": { -- "version": "10.4.1", -+ "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": "MIT", -- "funding": { -- "url": "https://github.com/sponsors/antfu" -+ "dependencies": { -+ "graceful-fs": "^4.2.0", -+ "jsonfile": "^6.0.1", -+ "universalify": "^2.0.0" -+ }, -+ "engines": { -+ "node": ">=12" - } - }, -- "node_modules/@vueuse/shared": { -- "version": "10.4.1", -+ "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": "MIT", - "dependencies": { -- "vue-demi": ">=0.14.5" -+ "universalify": "^2.0.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/antfu" -+ "optionalDependencies": { -+ "graceful-fs": "^4.1.6" - } - }, -- "node_modules/@vueuse/shared/node_modules/vue-demi": { -- "version": "0.14.6", -- "hasInstallScript": true, -- "license": "MIT", -+ "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, -+ "license": "ISC", - "bin": { -- "vue-demi-fix": "bin/vue-demi-fix.js", -- "vue-demi-switch": "bin/vue-demi-switch.js" -+ "semver": "bin/semver.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": ">=10" - } - }, -- "node_modules/@webassemblyjs/ast": { -- "version": "1.12.1", -+ "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": "MIT", -- "dependencies": { -- "@webassemblyjs/helper-numbers": "1.11.6", -- "@webassemblyjs/helper-wasm-bytecode": "1.11.6" -+ "engines": { -+ "node": ">= 10.0.0" - } - }, -- "node_modules/@webassemblyjs/floating-point-hex-parser": { -- "version": "1.11.6", -- "license": "MIT" -- }, -- "node_modules/@webassemblyjs/helper-api-error": { -- "version": "1.11.6", -- "license": "MIT" -- }, -- "node_modules/@webassemblyjs/helper-buffer": { -- "version": "1.12.1", -- "license": "MIT" -- }, -- "node_modules/@webassemblyjs/helper-numbers": { -- "version": "1.11.6", -+ "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": { -- "@webassemblyjs/floating-point-hex-parser": "1.11.6", -- "@webassemblyjs/helper-api-error": "1.11.6", -- "@xtuc/long": "4.2.2" -+ "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_modules/@webassemblyjs/helper-wasm-bytecode": { -- "version": "1.11.6", -- "license": "MIT" -- }, -- "node_modules/@webassemblyjs/helper-wasm-section": { -- "version": "1.12.1", -+ "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": { -- "@webassemblyjs/ast": "1.12.1", -- "@webassemblyjs/helper-buffer": "1.12.1", -- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", -- "@webassemblyjs/wasm-gen": "1.12.1" -+ "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": ">= 6" - } - }, -- "node_modules/@webassemblyjs/ieee754": { -- "version": "1.11.6", -+ "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": "MIT", -+ "peer": true -+ }, -+ "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, - "license": "MIT", -+ "peer": true, - "dependencies": { -- "@xtuc/ieee754": "^1.2.0" -+ "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/@webassemblyjs/leb128": { -- "version": "1.11.6", -- "license": "Apache-2.0", -+ "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, -+ "license": "MIT", -+ "peer": true -+ }, -+ "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, -+ "license": "MIT", -+ "peer": true, - "dependencies": { -- "@xtuc/long": "4.2.2" -+ "safe-buffer": "~5.1.0" - } - }, -- "node_modules/@webassemblyjs/utf8": { -- "version": "1.11.6", -+ "node_modules/arg": { -+ "version": "4.1.3", -+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", -+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", -+ "dev": true, - "license": "MIT" - }, -- "node_modules/@webassemblyjs/wasm-edit": { -- "version": "1.12.1", -+ "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==", -+ "license": "Python-2.0" -+ }, -+ "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, - "license": "MIT", - "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" -+ "call-bind": "^1.0.5", -+ "is-array-buffer": "^3.0.4" -+ }, -+ "engines": { -+ "node": ">= 0.4" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/@webassemblyjs/wasm-gen": { -- "version": "1.12.1", -+ "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, -+ "license": "MIT" -+ }, -+ "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, -+ "license": "MIT" -+ }, -+ "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, - "license": "MIT", - "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" -+ "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": ">= 0.4" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/@webassemblyjs/wasm-opt": { -- "version": "1.12.1", -+ "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, - "license": "MIT", -- "dependencies": { -- "@webassemblyjs/ast": "1.12.1", -- "@webassemblyjs/helper-buffer": "1.12.1", -- "@webassemblyjs/wasm-gen": "1.12.1", -- "@webassemblyjs/wasm-parser": "1.12.1" -+ "engines": { -+ "node": ">=8" - } - }, -- "node_modules/@webassemblyjs/wasm-parser": { -- "version": "1.12.1", -+ "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, - "license": "MIT", - "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" -+ "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/ljharb" - } - }, -- "node_modules/@webassemblyjs/wast-printer": { -- "version": "1.12.1", -+ "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, - "license": "MIT", - "dependencies": { -- "@webassemblyjs/ast": "1.12.1", -- "@xtuc/long": "4.2.2" -+ "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": ">= 0.4" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/@webpack-cli/configtest": { -- "version": "1.2.0", -+ "node_modules/arrify": { -+ "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", -+ "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", -+ "dev": true, - "license": "MIT", -- "peerDependencies": { -- "webpack": "4.x.x || 5.x.x", -- "webpack-cli": "4.x.x" -+ "engines": { -+ "node": ">=0.10.0" - } - }, -- "node_modules/@webpack-cli/info": { -- "version": "1.5.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==", - "license": "MIT", - "dependencies": { -- "envinfo": "^7.7.3" -- }, -- "peerDependencies": { -- "webpack-cli": "4.x.x" -+ "safer-buffer": "~2.1.0" - } - }, -- "node_modules/@webpack-cli/serve": { -- "version": "1.7.0", -+ "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, - "license": "MIT", -- "peerDependencies": { -- "webpack-cli": "4.x.x" -- }, -- "peerDependenciesMeta": { -- "webpack-dev-server": { -- "optional": true -- } -+ "optional": true, -+ "engines": { -+ "node": ">=0.8" - } - }, -- "node_modules/@xmldom/xmldom": { -- "version": "0.8.10", -+ "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, - "license": "MIT", - "engines": { -- "node": ">=10.0.0" -+ "node": ">=8" - } - }, -- "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/7zip-bin": { -- "version": "5.2.0", -+ "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, - "license": "MIT" - }, -- "node_modules/accepts": { -- "version": "1.3.8", -+ "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, - "license": "MIT", -- "dependencies": { -- "mime-types": "~2.1.34", -- "negotiator": "0.6.3" -- }, - "engines": { -- "node": ">= 0.6" -+ "node": ">=0.12.0" - } - }, -- "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/asynckit": { -+ "version": "0.4.0", -+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", -+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true, -- "license": "MIT", -- "bin": { -- "acorn": "bin/acorn" -- }, -- "engines": { -- "node": ">=0.4.0" -- } -+ "license": "MIT" - }, -- "node_modules/acorn-jsx": { -- "version": "5.3.2", -+ "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, -- "license": "MIT", -- "peerDependencies": { -- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" -+ "license": "ISC", -+ "engines": { -+ "node": ">= 4.0.0" - } - }, -- "node_modules/acorn-walk": { -- "version": "8.3.0", -- "dev": true, -+ "node_modules/atomically": { -+ "version": "1.7.0", -+ "resolved": "https://registry.npmjs.org/atomically/-/atomically-1.7.0.tgz", -+ "integrity": "sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==", - "license": "MIT", - "engines": { -- "node": ">=0.4.0" -+ "node": ">=10.12.0" - } - }, -- "node_modules/add-stream": { -- "version": "1.0.0", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/agent-base": { -- "version": "6.0.2", -+ "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, - "license": "MIT", - "dependencies": { -- "debug": "4" -+ "possible-typed-array-names": "^1.0.0" - }, - "engines": { -- "node": ">= 6.0.0" -- } -+ "node": ">= 0.4" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" -+ } - }, -- "node_modules/ajv": { -- "version": "6.12.6", -+ "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==", - "license": "MIT", - "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" -+ "find-cache-dir": "^3.3.1", -+ "loader-utils": "^2.0.0", -+ "make-dir": "^3.1.0", -+ "schema-utils": "^2.6.5" - }, -- "funding": { -- "type": "github", -- "url": "https://github.com/sponsors/epoberezkin" -+ "engines": { -+ "node": ">= 8.9" -+ }, -+ "peerDependencies": { -+ "@babel/core": "^7.0.0", -+ "webpack": ">=2" - } - }, -- "node_modules/ajv-formats": { -- "version": "2.1.1", -+ "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, - "license": "MIT", - "dependencies": { -- "ajv": "^8.0.0" -+ "@babel/compat-data": "^7.13.11", -+ "@babel/helper-define-polyfill-provider": "^0.2.4", -+ "semver": "^6.1.1" - }, - "peerDependencies": { -- "ajv": "^8.0.0" -- }, -- "peerDependenciesMeta": { -- "ajv": { -- "optional": true -- } -+ "@babel/core": "^7.0.0-0" - } - }, -- "node_modules/ajv-formats/node_modules/ajv": { -- "version": "8.12.0", -+ "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, - "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" -+ "@babel/helper-define-polyfill-provider": "^0.2.2", -+ "core-js-compat": "^3.16.2" - }, -- "funding": { -- "type": "github", -- "url": "https://github.com/sponsors/epoberezkin" -+ "peerDependencies": { -+ "@babel/core": "^7.0.0-0" - } - }, -- "node_modules/ajv-formats/node_modules/json-schema-traverse": { -- "version": "1.0.0", -- "license": "MIT" -- }, -- "node_modules/ajv-keywords": { -- "version": "3.5.2", -+ "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, - "license": "MIT", -+ "dependencies": { -+ "@babel/helper-define-polyfill-provider": "^0.2.4" -+ }, - "peerDependencies": { -- "ajv": "^6.9.1" -+ "@babel/core": "^7.0.0-0" - } - }, -- "node_modules/all-contributors-cli": { -- "version": "6.20.5", -+ "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==", -+ "license": "MIT" -+ }, -+ "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" -+ } -+ ], -+ "license": "MIT" -+ }, -+ "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, -+ "license": "MIT" -+ }, -+ "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==", -+ "license": "BSD-3-Clause", -+ "dependencies": { -+ "tweetnacl": "^0.14.3" -+ } -+ }, -+ "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, - "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" -- }, -+ "bindings": "^1.5.0", -+ "prebuild-install": "^7.1.1" -+ } -+ }, -+ "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==", -+ "license": "Unlicense", - "engines": { -- "node": ">=4" -+ "node": ">=0.6" - } - }, -- "node_modules/ansi-colors": { -- "version": "4.1.3", -- "dev": true, -+ "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==", - "license": "MIT", - "engines": { -- "node": ">=6" -+ "node": "*" - } - }, -- "node_modules/ansi-escapes": { -- "version": "4.3.2", -- "dev": true, -+ "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==", - "license": "MIT", -- "dependencies": { -- "type-fest": "^0.21.3" -- }, - "engines": { - "node": ">=8" - }, -@@ -4656,107 +5483,290 @@ - "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/ansi-escapes/node_modules/type-fest": { -- "version": "0.21.3", -+ "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==", -+ "license": "MIT", -+ "dependencies": { -+ "file-uri-to-path": "1.0.0" -+ } -+ }, -+ "node_modules/bl": { -+ "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", -+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", -+ "license": "MIT", -+ "dependencies": { -+ "buffer": "^5.5.0", -+ "inherits": "^2.0.4", -+ "readable-stream": "^3.4.0" -+ } -+ }, -+ "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, -- "license": "(MIT OR CC0-1.0)", -- "engines": { -- "node": ">=10" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "license": "MIT" -+ }, -+ "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": { -+ "bluebird": "^3.5.5" - } - }, -- "node_modules/ansi-html-community": { -- "version": "0.0.8", -+ "node_modules/body-parser": { -+ "version": "1.20.3", -+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", -+ "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", - "dev": true, -- "engines": [ -- "node >= 0.8.0" -- ], -- "license": "Apache-2.0", -- "bin": { -- "ansi-html": "bin/ansi-html" -+ "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.13.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_modules/ansi-regex": { -- "version": "5.0.1", -+ "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": ">=8" -+ "node": ">= 0.8" - } - }, -- "node_modules/ansi-styles": { -- "version": "4.3.0", -+ "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": { -- "color-convert": "^2.0.1" -- }, -- "engines": { -- "node": ">=8" -- }, -- "funding": { -- "url": "https://github.com/chalk/ansi-styles?sponsor=1" -+ "ms": "2.0.0" - } - }, -- "node_modules/anymatch": { -- "version": "3.1.3", -- "license": "ISC", -+ "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, -+ "license": "MIT", - "dependencies": { -- "normalize-path": "^3.0.0", -- "picomatch": "^2.0.4" -+ "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { -- "node": ">= 8" -+ "node": ">=0.10.0" - } - }, -- "node_modules/app-builder-bin": { -- "version": "4.0.0", -+ "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, - "license": "MIT" - }, -- "node_modules/app-builder-lib": { -- "version": "24.13.3", -+ "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, - "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", -- "bluebird-lst": "^1.0.9", -- "builder-util": "24.13.1", -- "builder-util-runtime": "9.2.4", -- "chromium-pickle-js": "^0.2.0", -+ "fast-deep-equal": "^3.1.3", -+ "multicast-dns": "^7.2.5" -+ } -+ }, -+ "node_modules/boolbase": { -+ "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", -+ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", -+ "license": "ISC" -+ }, -+ "node_modules/boolean": { -+ "version": "3.2.0", -+ "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", -+ "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", -+ "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", -+ "license": "MIT", -+ "optional": true -+ }, -+ "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": { -+ "balanced-match": "^1.0.0" -+ } -+ }, -+ "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==", -+ "license": "MIT", -+ "dependencies": { -+ "fill-range": "^7.1.1" -+ }, -+ "engines": { -+ "node": ">=8" -+ } -+ }, -+ "node_modules/browserslist": { -+ "version": "4.24.0", -+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz", -+ "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", -+ "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", -+ "dependencies": { -+ "caniuse-lite": "^1.0.30001663", -+ "electron-to-chromium": "^1.5.28", -+ "node-releases": "^2.0.18", -+ "update-browserslist-db": "^1.1.0" -+ }, -+ "bin": { -+ "browserslist": "cli.js" -+ }, -+ "engines": { -+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" -+ } -+ }, -+ "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": "MIT", -+ "dependencies": { -+ "base64-js": "^1.3.1", -+ "ieee754": "^1.1.13" -+ } -+ }, -+ "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==", -+ "license": "MIT", -+ "engines": { -+ "node": "*" -+ } -+ }, -+ "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, -+ "license": "MIT", -+ "engines": { -+ "node": ">=0.4" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" -+ } -+ }, -+ "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==", -+ "license": "MIT" -+ }, -+ "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": ">=10.0.0" -+ } -+ }, -+ "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": { -+ "@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", -- "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, -+ "license": "MIT", -+ "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": { -@@ -4768,8 +5778,10 @@ - "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": { -@@ -4779,1472 +5791,1586 @@ - "graceful-fs": "^4.1.6" - } - }, -- "node_modules/app-builder-lib/node_modules/semver": { -- "version": "7.6.2", -+ "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": "ISC", -- "bin": { -- "semver": "bin/semver.js" -- }, -+ "license": "MIT", - "engines": { -- "node": ">=10" -+ "node": ">= 10.0.0" - } - }, -- "node_modules/app-builder-lib/node_modules/universalify": { -- "version": "2.0.1", -+ "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", - "engines": { -- "node": ">= 10.0.0" -+ "node": ">= 0.8" - } - }, -- "node_modules/archiver": { -- "version": "5.3.2", -- "dev": true, -+ "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==", - "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": ">=10.6.0" - } - }, -- "node_modules/archiver-utils": { -- "version": "2.1.0", -- "dev": 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==", - "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" -+ "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": ">= 6" -+ "node": ">=8" - } - }, -- "node_modules/archiver-utils/node_modules/isarray": { -- "version": "1.0.0", -- "dev": true, -+ "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==", - "license": "MIT", -- "peer": true -+ "dependencies": { -+ "pump": "^3.0.0" -+ }, -+ "engines": { -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } - }, -- "node_modules/archiver-utils/node_modules/readable-stream": { -- "version": "2.3.8", -+ "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", -- "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" -+ "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" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/archiver-utils/node_modules/safe-buffer": { -- "version": "5.1.2", -+ "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", -- "peer": true -+ "engines": { -+ "node": ">=6" -+ } - }, -- "node_modules/archiver-utils/node_modules/string_decoder": { -- "version": "1.1.1", -- "dev": true, -+ "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==", - "license": "MIT", -- "peer": true, - "dependencies": { -- "safe-buffer": "~5.1.0" -+ "pascal-case": "^3.1.2", -+ "tslib": "^2.0.3" - } - }, -- "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", -+ "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, - "license": "MIT", -- "dependencies": { -- "call-bind": "^1.0.2", -- "is-array-buffer": "^3.0.1" -- }, -- "funding": { -- "url": "https://github.com/sponsors/ljharb" -+ "engines": { -+ "node": ">=6" - } - }, -- "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/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": { -- "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" -+ "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/array-union": { -- "version": "2.1.0", -+ "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": ">=8" - } - }, -- "node_modules/array.prototype.flat": { -- "version": "1.3.2", -- "dev": true, -+ "node_modules/caniuse-lite": { -+ "version": "1.0.30001669", -+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001669.tgz", -+ "integrity": "sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==", -+ "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", -+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", -+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "es-abstract": "^1.22.1", -- "es-shim-unscopables": "^1.0.0" -+ "ansi-styles": "^4.1.0", -+ "supports-color": "^7.1.0" - }, - "engines": { -- "node": ">= 0.4" -+ "node": ">=10" - }, - "funding": { -- "url": "https://github.com/sponsors/ljharb" -+ "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, -- "node_modules/arraybuffer.prototype.slice": { -- "version": "1.0.2", -+ "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, -+ "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==", - "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" -+ "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.4" -+ "node": ">= 8.10.0" - }, - "funding": { -- "url": "https://github.com/sponsors/ljharb" -+ "url": "https://paulmillr.com/funding/" -+ }, -+ "optionalDependencies": { -+ "fsevents": "~2.3.2" - } - }, -- "node_modules/arrify": { -- "version": "1.0.1", -+ "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": "MIT", -+ "license": "ISC", - "engines": { -- "node": ">=0.10.0" -+ "node": ">=10" - } - }, -- "node_modules/asn1": { -- "version": "0.2.6", -+ "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==", - "license": "MIT", -- "dependencies": { -- "safer-buffer": "~2.1.0" -+ "engines": { -+ "node": ">=6.0" - } - }, -- "node_modules/astral-regex": { -- "version": "2.0.0", -+ "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, -+ "license": "MIT" -+ }, -+ "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, -+ "funding": [ -+ { -+ "type": "github", -+ "url": "https://github.com/sponsors/sibiraj-s" -+ } -+ ], - "license": "MIT", - "engines": { - "node": ">=8" - } - }, -- "node_modules/async": { -- "version": "3.2.5", -- "dev": true, -- "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==", -+ "license": "MIT", -+ "dependencies": { -+ "source-map": "~0.6.0" -+ }, -+ "engines": { -+ "node": ">= 10.0" -+ } - }, -- "node_modules/async-exit-hook": { -- "version": "2.0.1", -+ "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": { -+ "restore-cursor": "^3.1.0" -+ }, - "engines": { -- "node": ">=0.12.0" -+ "node": ">=8" - } - }, -- "node_modules/asynckit": { -- "version": "0.4.0", -+ "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" -+ "license": "MIT", -+ "optional": true, -+ "dependencies": { -+ "slice-ansi": "^3.0.0", -+ "string-width": "^4.2.0" -+ }, -+ "engines": { -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } - }, -- "node_modules/at-least-node": { -- "version": "1.0.0", -+ "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": "ISC", - "engines": { -- "node": ">= 4.0.0" -+ "node": ">= 10" - } - }, -- "node_modules/atomically": { -- "version": "1.7.0", -- "license": "MIT", -+ "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": "ISC", -+ "dependencies": { -+ "string-width": "^4.2.0", -+ "strip-ansi": "^6.0.1", -+ "wrap-ansi": "^7.0.0" -+ }, - "engines": { -- "node": ">=10.12.0" -+ "node": ">=12" - } - }, -- "node_modules/available-typed-arrays": { -- "version": "1.0.5", -+ "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, - "license": "MIT", -+ "dependencies": { -+ "ansi-styles": "^4.0.0", -+ "string-width": "^4.1.0", -+ "strip-ansi": "^6.0.0" -+ }, - "engines": { -- "node": ">= 0.4" -+ "node": ">=10" - }, - "funding": { -- "url": "https://github.com/sponsors/ljharb" -+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, -- "node_modules/babel-loader": { -- "version": "8.2.5", -+ "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==", - "license": "MIT", - "dependencies": { -- "find-cache-dir": "^3.3.1", -- "loader-utils": "^2.0.0", -- "make-dir": "^3.1.0", -- "schema-utils": "^2.6.5" -+ "is-plain-object": "^2.0.4", -+ "kind-of": "^6.0.2", -+ "shallow-clone": "^3.0.0" - }, - "engines": { -- "node": ">= 8.9" -- }, -- "peerDependencies": { -- "@babel/core": "^7.0.0", -- "webpack": ">=2" -+ "node": ">=6" - } - }, -- "node_modules/babel-plugin-polyfill-corejs2": { -- "version": "0.2.3", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@babel/compat-data": "^7.13.11", -- "@babel/helper-define-polyfill-provider": "^0.2.4", -- "semver": "^6.1.1" -+ "isobject": "^3.0.1" - }, -- "peerDependencies": { -- "@babel/core": "^7.0.0-0" -+ "engines": { -+ "node": ">=0.10.0" - } - }, -- "node_modules/babel-plugin-polyfill-corejs3": { -- "version": "0.2.5", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@babel/helper-define-polyfill-provider": "^0.2.2", -- "core-js-compat": "^3.16.2" -+ "mimic-response": "^1.0.0" - }, -- "peerDependencies": { -- "@babel/core": "^7.0.0-0" -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/babel-plugin-polyfill-regenerator": { -- "version": "0.2.3", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@babel/helper-define-polyfill-provider": "^0.2.4" -+ "color-name": "~1.1.4" - }, -- "peerDependencies": { -- "@babel/core": "^7.0.0-0" -+ "engines": { -+ "node": ">=7.0.0" - } - }, -- "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" -- } -- ], -+ "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==", - "license": "MIT" - }, -- "node_modules/batch": { -- "version": "0.6.1", -+ "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, - "license": "MIT" - }, -- "node_modules/bcrypt-pbkdf": { -- "version": "1.0.2", -- "license": "BSD-3-Clause", -- "dependencies": { -- "tweetnacl": "^0.14.3" -- } -+ "node_modules/colorette": { -+ "version": "2.0.20", -+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", -+ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", -+ "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, -+ "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": { -- "bindings": "^1.5.0", -- "prebuild-install": "^7.1.1" -- } -- }, -- "node_modules/big-integer": { -- "version": "1.6.52", -- "license": "Unlicense", -+ "delayed-stream": "~1.0.0" -+ }, - "engines": { -- "node": ">=0.6" -+ "node": ">= 0.8" - } - }, -- "node_modules/big.js": { -- "version": "5.2.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", - "engines": { -- "node": "*" -+ "node": ">= 6" - } - }, -- "node_modules/binary-extensions": { -- "version": "2.2.0", -- "license": "MIT", -- "engines": { -- "node": ">=8" -- } -+ "node_modules/commondir": { -+ "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", -+ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", -+ "license": "MIT" - }, -- "node_modules/bindings": { -- "version": "1.5.0", -+ "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, - "license": "MIT", - "dependencies": { -- "file-uri-to-path": "1.0.0" -+ "array-ify": "^1.0.0", -+ "dot-prop": "^5.1.0" - } - }, -- "node_modules/bl": { -- "version": "4.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", -- "dependencies": { -- "buffer": "^5.5.0", -- "inherits": "^2.0.4", -- "readable-stream": "^3.4.0" -+ "engines": { -+ "node": ">=0.10.0" - } - }, -- "node_modules/bluebird": { -- "version": "3.7.2", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/bluebird-lst": { -- "version": "1.0.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": { -- "bluebird": "^3.5.5" -+ "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": { -- "version": "1.20.2", -+ "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": { -- "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" -+ "mime-db": ">= 1.43.0 < 2" - }, - "engines": { -- "node": ">= 0.8", -- "npm": "1.2.8000 || >= 1.4.16" -+ "node": ">= 0.6" - } - }, -- "node_modules/body-parser/node_modules/bytes": { -- "version": "3.1.2", -+ "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" -+ "node": ">= 0.8.0" - } - }, -- "node_modules/body-parser/node_modules/debug": { -+ "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": { - "ms": "2.0.0" - } - }, -- "node_modules/body-parser/node_modules/iconv-lite": { -- "version": "0.4.24", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "safer-buffer": ">= 2.1.2 < 3" -- }, -- "engines": { -- "node": ">=0.10.0" -- } -- }, -- "node_modules/body-parser/node_modules/ms": { -+ "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, - "license": "MIT" - }, -- "node_modules/bonjour-service": { -- "version": "1.1.1", -+ "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, -- "license": "MIT", -- "dependencies": { -- "array-flatten": "^2.1.2", -- "dns-equal": "^1.0.0", -- "fast-deep-equal": "^3.1.3", -- "multicast-dns": "^7.2.5" -- } -- }, -- "node_modules/boolbase": { -- "version": "1.0.0", -- "license": "ISC" -+ "license": "MIT" - }, -- "node_modules/boolean": { -- "version": "3.2.0", -- "license": "MIT", -- "optional": true -+ "node_modules/concat-map": { -+ "version": "0.0.1", -+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", -+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", -+ "license": "MIT" - }, -- "node_modules/brace-expansion": { -- "version": "2.0.1", -+ "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, -+ "engines": [ -+ "node >= 6.0" -+ ], - "license": "MIT", - "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", -+ "node_modules/conf": { -+ "version": "10.2.0", -+ "resolved": "https://registry.npmjs.org/conf/-/conf-10.2.0.tgz", -+ "integrity": "sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==", - "license": "MIT", - "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" -- } -- ], -+ "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==", - "license": "MIT", - "dependencies": { -- "caniuse-lite": "^1.0.30001541", -- "electron-to-chromium": "^1.4.535", -- "node-releases": "^2.0.13", -- "update-browserslist-db": "^1.0.13" -+ "is-obj": "^2.0.0" -+ }, -+ "engines": { -+ "node": ">=10" - }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, -+ "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==", -+ "license": "ISC", - "bin": { -- "browserslist": "cli.js" -+ "semver": "bin/semver.js" - }, - "engines": { -- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" -+ "node": ">=10" - } - }, -- "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" -- } -- ], -+ "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, - "license": "MIT", - "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, -+ "license": "ISC", -+ "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", -+ "license": "ISC", -+ "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/buildcheck": { -- "version": "0.0.6", -+ "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, -+ "license": "ISC", - "engines": { -- "node": ">=10.0.0" -+ "node": ">=16 || 14 >=14.17" - } - }, -- "node_modules/builder-util": { -- "version": "24.13.1", -+ "node_modules/config-file-ts/node_modules/typescript": { -+ "version": "5.6.3", -+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", -+ "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", - "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" -+ "license": "Apache-2.0", -+ "bin": { -+ "tsc": "bin/tsc", -+ "tsserver": "bin/tsserver" -+ }, -+ "engines": { -+ "node": ">=14.17" - } - }, -- "node_modules/builder-util-runtime": { -- "version": "9.2.4", -+ "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": { -- "debug": "^4.3.4", -- "sax": "^1.2.4" -- }, - "engines": { -- "node": ">=12.0.0" -+ "node": ">=0.8" - } - }, -- "node_modules/builder-util/node_modules/fs-extra": { -- "version": "10.1.0", -+ "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": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -+ "safe-buffer": "5.2.1" - }, - "engines": { -- "node": ">=12" -+ "node": ">= 0.6" - } - }, -- "node_modules/builder-util/node_modules/jsonfile": { -- "version": "6.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, - "license": "MIT", -- "dependencies": { -- "universalify": "^2.0.0" -- }, -- "optionalDependencies": { -- "graceful-fs": "^4.1.6" -+ "engines": { -+ "node": ">= 0.6" - } - }, -- "node_modules/builder-util/node_modules/universalify": { -- "version": "2.0.1", -+ "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": { -+ "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": ">= 10.0.0" -+ "node": ">=10" - } - }, -- "node_modules/bytes": { -- "version": "3.0.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", -+ "license": "ISC", -+ "dependencies": { -+ "compare-func": "^2.0.0" -+ }, - "engines": { -- "node": ">= 0.8" -+ "node": ">=16" - } - }, -- "node_modules/cacheable-lookup": { -- "version": "5.0.4", -- "license": "MIT", -+ "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": "ISC", -+ "dependencies": { -+ "q": "^1.5.1" -+ }, - "engines": { -- "node": ">=10.6.0" -+ "node": ">=10" - } - }, -- "node_modules/cacheable-request": { -- "version": "7.0.4", -- "license": "MIT", -+ "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": "ISC", - "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" -+ "q": "^1.5.1" - }, - "engines": { -- "node": ">=8" -+ "node": ">=10" - } - }, -- "node_modules/call-bind": { -- "version": "1.0.5", -+ "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, -- "license": "MIT", -+ "license": "MIT" -+ }, -+ "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, -+ "license": "ISC", - "dependencies": { -- "function-bind": "^1.1.2", -- "get-intrinsic": "^1.2.1", -- "set-function-length": "^1.1.1" -+ "compare-func": "^2.0.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/ljharb" -+ "engines": { -+ "node": ">=16" - } - }, -- "node_modules/callsites": { -- "version": "3.1.0", -+ "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, - "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", -+ "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": ">=6" -+ "node": ">=10" - } - }, -- "node_modules/camel-case": { -- "version": "4.1.2", -+ "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": { -- "pascal-case": "^3.1.2", -- "tslib": "^2.0.3" -+ "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/camelcase": { -- "version": "5.3.1", -+ "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/camelcase-keys": { -- "version": "6.2.2", -+ "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, - "license": "MIT", - "dependencies": { -- "camelcase": "^5.3.1", -- "map-obj": "^4.0.0", -- "quick-lru": "^4.0.1" -+ "locate-path": "^5.0.0", -+ "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/camelcase-keys/node_modules/quick-lru": { -- "version": "4.0.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": ">=8" -+ "node": ">=10" - } - }, -- "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", -+ "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": { -- "ansi-styles": "^4.1.0", -- "supports-color": "^7.1.0" -+ "text-extensions": "^1.0.0" - }, - "engines": { -- "node": ">=10" -- }, -- "funding": { -- "url": "https://github.com/chalk/chalk?sponsor=1" -+ "node": ">=0.10.0" - } - }, -- "node_modules/chardet": { -- "version": "0.7.0", -+ "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" -- }, -- "node_modules/chokidar": { -- "version": "3.5.3", -- "funding": [ -- { -- "type": "individual", -- "url": "https://paulmillr.com/funding/" -- } -- ], - "license": "MIT", - "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" -+ "p-locate": "^4.1.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": { -+ "version": "8.1.2", -+ "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", -+ "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", - "dev": true, -- "license": "ISC", -- "engines": { -- "node": ">=10" -- } -- }, -- "node_modules/chrome-trace-event": { -- "version": "1.0.3", - "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": ">=6.0" -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/chromium-pickle-js": { -- "version": "0.2.0", -+ "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, -- "license": "MIT" -+ "license": "ISC" - }, -- "node_modules/ci-info": { -- "version": "3.9.0", -+ "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, -- "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", - "dependencies": { -- "source-map": "~0.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": ">= 10.0" -+ "node": ">=8" - } - }, -- "node_modules/cli-cursor": { -- "version": "3.1.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": "MIT", - "dependencies": { -- "restore-cursor": "^3.1.0" -+ "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/cli-width": { -- "version": "3.0.0", -+ "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, -- "license": "ISC", -+ "license": "(MIT OR CC0-1.0)", - "engines": { -- "node": ">= 10" -+ "node": ">=8" - } - }, -- "node_modules/cliui": { -- "version": "6.0.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": "ISC", -+ "license": "BSD-2-Clause", - "dependencies": { -- "string-width": "^4.2.0", -- "strip-ansi": "^6.0.0", -- "wrap-ansi": "^6.2.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/cliui/node_modules/wrap-ansi": { -- "version": "6.2.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, -- "license": "MIT", -- "dependencies": { -- "ansi-styles": "^4.0.0", -- "string-width": "^4.1.0", -- "strip-ansi": "^6.0.0" -- }, -+ "license": "(MIT OR CC0-1.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" -- }, -- "engines": { -- "node": ">=6" -+ "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, -+ "license": "ISC", -+ "bin": { -+ "semver": "bin/semver" - } - }, -- "node_modules/clone-deep/node_modules/is-plain-object": { -- "version": "2.0.4", -- "license": "MIT", -+ "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, -+ "license": "BSD-2-Clause", - "dependencies": { -- "isobject": "^3.0.1" -+ "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": ">=0.10.0" -+ "node": ">=10" - } - }, -- "node_modules/clone-response": { -- "version": "1.0.3", -+ "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": { -- "mimic-response": "^1.0.0" -+ "p-try": "^2.0.0" -+ }, -+ "engines": { -+ "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/color-convert": { -- "version": "2.0.1", -+ "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": "MIT", - "dependencies": { -- "color-name": "~1.1.4" -+ "p-limit": "^2.2.0" - }, - "engines": { -- "node": ">=7.0.0" -+ "node": ">=8" - } - }, -- "node_modules/color-name": { -- "version": "1.1.4", -- "license": "MIT" -- }, -- "node_modules/colord": { -- "version": "2.9.3", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/colorette": { -- "version": "2.0.20", -- "license": "MIT" -- }, -- "node_modules/combined-stream": { -- "version": "1.0.8", -+ "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": "MIT", - "dependencies": { -- "delayed-stream": "~1.0.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": ">= 0.8" -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/commander": { -- "version": "5.1.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", - "engines": { -- "node": ">= 6" -+ "node": ">=8" - } - }, -- "node_modules/commondir": { -- "version": "1.0.1", -- "license": "MIT" -- }, -- "node_modules/compare-func": { -- "version": "2.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, -- "license": "MIT", -- "dependencies": { -- "array-ify": "^1.0.0", -- "dot-prop": "^5.1.0" -+ "license": "ISC", -+ "bin": { -+ "semver": "bin/semver.js" -+ }, -+ "engines": { -+ "node": ">=10" - } - }, -- "node_modules/compare-func/node_modules/dot-prop": { -- "version": "5.3.0", -+ "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, -- "license": "MIT", -+ "license": "ISC", - "dependencies": { -- "is-obj": "^2.0.0" -- }, -- "engines": { -- "node": ">=8" -+ "readable-stream": "^3.0.0" - } - }, -- "node_modules/compare-version": { -- "version": "0.1.2", -+ "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, - "license": "MIT", - "engines": { -- "node": ">=0.10.0" -+ "node": ">=0.10" - } - }, -- "node_modules/compress-commons": { -- "version": "4.1.2", -+ "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, -- "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" -- }, -+ "license": "(MIT OR CC0-1.0)", - "engines": { -- "node": ">= 10" -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/compressible": { -- "version": "2.0.18", -+ "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, -- "license": "MIT", -- "dependencies": { -- "mime-db": ">= 1.43.0 < 2" -- }, -+ "license": "ISC", - "engines": { -- "node": ">= 0.6" -+ "node": ">=10" - } - }, -- "node_modules/compression": { -- "version": "1.7.4", -+ "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", -+ "license": "ISC", - "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" -+ "q": "^1.5.1" - }, - "engines": { -- "node": ">= 0.8.0" -+ "node": ">=10" - } - }, -- "node_modules/compression/node_modules/debug": { -- "version": "2.6.9", -+ "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", -+ "license": "ISC", - "dependencies": { -- "ms": "2.0.0" -+ "q": "^1.5.1" -+ }, -+ "engines": { -+ "node": ">=10" - } - }, -- "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-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, -- "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" -- } -- }, -- "node_modules/conf": { -- "version": "10.2.0", -- "license": "MIT", -+ "license": "ISC", - "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" -+ "q": "^1.5.1" - }, - "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-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": "ISC", - "dependencies": { -- "fast-deep-equal": "^3.1.1", -- "json-schema-traverse": "^1.0.0", -- "require-from-string": "^2.0.2", -- "uri-js": "^4.2.2" -+ "q": "^1.5.1" - }, -- "funding": { -- "type": "github", -- "url": "https://github.com/sponsors/epoberezkin" -+ "engines": { -+ "node": ">=10" - } - }, -- "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", -+ "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": "ISC", - "dependencies": { -- "yallist": "^4.0.0" -+ "compare-func": "^2.0.0", -+ "q": "^1.5.1" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conf/node_modules/semver": { -- "version": "7.5.4", -- "license": "ISC", -+ "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": ">=10" -+ } -+ }, -+ "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", - "dependencies": { -- "lru-cache": "^6.0.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": { -- "semver": "bin/semver.js" -+ "conventional-changelog-writer": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conf/node_modules/yallist": { -- "version": "4.0.0", -- "license": "ISC" -- }, -- "node_modules/config-file-ts": { -- "version": "0.2.6", -+ "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": { -- "glob": "^10.3.10", -- "typescript": "^5.3.3" -+ "locate-path": "^5.0.0", -+ "path-exists": "^4.0.0" -+ }, -+ "engines": { -+ "node": ">=8" - } - }, -- "node_modules/config-file-ts/node_modules/glob": { -- "version": "10.3.15", -+ "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": "ISC", -+ "license": "MIT", - "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" -+ "p-locate": "^4.1.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/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": "ISC", -+ "license": "MIT", - "dependencies": { -- "brace-expansion": "^2.0.1" -+ "@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": ">=16 || 14 >=14.17" -+ "node": ">=10" - }, - "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/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": "ISC", -+ "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": ">=16 || 14 >=14.17" -+ "node": ">=10" - } - }, -- "node_modules/config-file-ts/node_modules/typescript": { -- "version": "5.4.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, -- "license": "Apache-2.0", -+ "license": "ISC", - "bin": { -- "tsc": "bin/tsc", -- "tsserver": "bin/tsserver" -+ "semver": "bin/semver.js" - }, - "engines": { -- "node": ">=14.17" -+ "node": ">=10" - } - }, -- "node_modules/connect-history-api-fallback": { -- "version": "2.0.0", -+ "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, - "license": "MIT", -+ "dependencies": { -+ "p-try": "^2.0.0" -+ }, - "engines": { -- "node": ">=0.8" -+ "node": ">=6" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/content-disposition": { -- "version": "0.5.4", -+ "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, - "license": "MIT", - "dependencies": { -- "safe-buffer": "5.2.1" -+ "p-limit": "^2.2.0" - }, - "engines": { -- "node": ">= 0.6" -+ "node": ">=8" - } - }, -- "node_modules/content-type": { -- "version": "1.0.5", -+ "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, - "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": ">= 0.6" -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/conventional-changelog": { -- "version": "3.1.24", -+ "node_modules/conventional-changelog-writer/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": { -- "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": ">=10" -- } -- }, -- "node_modules/conventional-changelog-angular": { -- "version": "5.0.13", -- "dev": true, -- "license": "ISC", -- "dependencies": { -- "compare-func": "^2.0.0", -- "q": "^1.5.1" -- }, - "engines": { -- "node": ">=10" -+ "node": ">=8" - } - }, -- "node_modules/conventional-changelog-atom": { -- "version": "2.0.8", -+ "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", -+ "license": "MIT", - "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-codemirror": { -- "version": "2.0.8", -+ "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", -+ "license": "MIT", - "dependencies": { -- "q": "^1.5.1" -+ "find-up": "^4.1.0", -+ "read-pkg": "^5.2.0", -+ "type-fest": "^0.8.1" - }, - "engines": { -- "node": ">=10" -- } -- }, -- "node_modules/conventional-changelog-config-spec": { -- "version": "2.1.0", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/conventional-changelog-conventionalcommits": { -- "version": "4.6.1", -- "dev": true, -- "license": "ISC", -- "dependencies": { -- "compare-func": "^2.0.0", -- "lodash": "^4.17.15", -- "q": "^1.5.1" -+ "node": ">=8" - }, -- "engines": { -- "node": ">=10" -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/conventional-changelog-core": { -- "version": "4.2.4", -+ "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": "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", -- "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" -- }, -+ "license": "(MIT OR CC0-1.0)", - "engines": { -- "node": ">=10" -+ "node": ">=8" - } - }, -- "node_modules/conventional-changelog-core/node_modules/lru-cache": { -- "version": "6.0.0", -+ "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, -- "license": "ISC", -- "dependencies": { -- "yallist": "^4.0.0" -- }, -- "engines": { -- "node": ">=10" -- } -+ "license": "ISC" - }, -- "node_modules/conventional-changelog-core/node_modules/normalize-package-data": { -- "version": "3.0.3", -+ "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, - "license": "BSD-2-Clause", - "dependencies": { -- "hosted-git-info": "^4.0.1", -- "is-core-module": "^2.5.0", -- "semver": "^7.3.4", -+ "hosted-git-info": "^2.1.4", -+ "resolve": "^1.10.0", -+ "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" -- }, -- "engines": { -- "node": ">=10" - } - }, -- "node_modules/conventional-changelog-core/node_modules/semver": { -- "version": "7.5.4", -+ "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": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, - "bin": { -- "semver": "bin/semver.js" -- }, -- "engines": { -- "node": ">=10" -+ "semver": "bin/semver" - } - }, -- "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-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, -- "license": "ISC", -- "dependencies": { -- "q": "^1.5.1" -- }, -+ "license": "(MIT OR CC0-1.0)", - "engines": { -- "node": ">=10" -+ "node": ">=8" - } - }, -- "node_modules/conventional-changelog-eslint": { -- "version": "3.0.9", -+ "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, -- "license": "ISC", -- "dependencies": { -- "q": "^1.5.1" -- }, -+ "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/conventional-changelog-express": { -- "version": "2.0.6", -+ "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": "ISC", -- "dependencies": { -- "q": "^1.5.1" -- }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conventional-changelog-jquery": { -- "version": "3.0.11", -+ "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": "ISC", - "dependencies": { -+ "compare-func": "^2.0.0", - "q": "^1.5.1" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conventional-changelog-jshint": { -- "version": "2.0.9", -+ "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": "ISC", - "dependencies": { - "compare-func": "^2.0.0", -+ "lodash": "^4.17.15", - "q": "^1.5.1" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conventional-changelog-preset-loader": { -- "version": "2.3.4", -+ "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": { -+ "lodash.ismatch": "^4.4.0", -+ "modify-values": "^1.0.0" -+ }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conventional-changelog-writer": { -- "version": "5.0.1", -+ "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": "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" -+ "is-text-path": "^2.0.0", -+ "JSONStream": "^1.3.5", -+ "meow": "^12.0.1", -+ "split2": "^4.0.0" - }, - "bin": { -- "conventional-changelog-writer": "cli.js" -+ "conventional-commits-parser": "cli.mjs" - }, - "engines": { -- "node": ">=10" -+ "node": ">=16" - } - }, -- "node_modules/conventional-commits-filter": { -- "version": "2.0.7", -+ "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": "MIT", - "dependencies": { -- "lodash.ismatch": "^4.4.0", -- "modify-values": "^1.0.0" -+ "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-commits-parser": { -+ "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": "MIT", - "dependencies": { -@@ -6262,59 +7388,348 @@ - "node": ">=10" - } - }, -- "node_modules/conventional-commits-parser/node_modules/split2": { -- "version": "3.2.2", -+ "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": "ISC", -+ "license": "MIT", -+ "engines": { -+ "node": ">=8" -+ } -+ }, -+ "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": "MIT", - "dependencies": { -- "readable-stream": "^3.0.0" -+ "locate-path": "^5.0.0", -+ "path-exists": "^4.0.0" -+ }, -+ "engines": { -+ "node": ">=8" - } - }, -- "node_modules/conventional-recommended-bump": { -- "version": "6.1.0", -+ "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": { -- "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", -+ "dargs": "^7.0.0", -+ "lodash": "^4.17.15", - "meow": "^8.0.0", -- "q": "^1.5.1" -+ "split2": "^3.0.0", -+ "through2": "^4.0.0" - }, - "bin": { -- "conventional-recommended-bump": "cli.js" -+ "git-raw-commits": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/convert-source-map": { -- "version": "2.0.0", -- "license": "MIT", -- "peer": true -- }, -- "node_modules/cookie": { -- "version": "0.6.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": "MIT", -+ "dependencies": { -+ "text-extensions": "^1.0.0" -+ }, - "engines": { -- "node": ">= 0.6" -+ "node": ">=0.10.0" - } - }, -- "node_modules/cookie-signature": { -- "version": "1.0.6", -+ "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, -+ "license": "MIT", -+ "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, -+ "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/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", -+ "semver": "^7.3.4", -+ "validate-npm-package-license": "^3.0.1" -+ }, -+ "engines": { -+ "node": ">=10" -+ } -+ }, -+ "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": "MIT", -+ "dependencies": { -+ "p-try": "^2.0.0" -+ }, -+ "engines": { -+ "node": ">=6" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, -+ "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": "MIT", -+ "dependencies": { -+ "p-limit": "^2.2.0" -+ }, -+ "engines": { -+ "node": ">=8" -+ } -+ }, -+ "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": "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/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": "MIT", -+ "engines": { -+ "node": ">=8" -+ } -+ }, -+ "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": "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/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": "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/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 OR CC0-1.0)", -+ "engines": { -+ "node": ">=8" -+ } -+ }, -+ "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, -+ "license": "ISC" -+ }, -+ "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": "BSD-2-Clause", -+ "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-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, -+ "license": "ISC", -+ "bin": { -+ "semver": "bin/semver" -+ } -+ }, -+ "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 OR CC0-1.0)", -+ "engines": { -+ "node": ">=8" -+ } -+ }, -+ "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": "ISC", -+ "bin": { -+ "semver": "bin/semver.js" -+ }, -+ "engines": { -+ "node": ">=10" -+ } -+ }, -+ "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/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", -+ "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, -+ "license": "(MIT OR CC0-1.0)", -+ "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, -+ "license": "ISC", -+ "engines": { -+ "node": ">=10" -+ } -+ }, -+ "node_modules/convert-source-map": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", -+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", -+ "license": "MIT", -+ "peer": true -+ }, -+ "node_modules/cookie": { -+ "version": "0.7.1", -+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", -+ "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", -+ "dev": true, -+ "license": "MIT", -+ "engines": { -+ "node": ">= 0.6" -+ } -+ }, -+ "node_modules/cookie-signature": { -+ "version": "1.0.6", -+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", -+ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true, - "license": "MIT" - }, - "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 +7738,14 @@ - }, - "node_modules/core-util-is": { - "version": "1.0.2", -+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", -+ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "license": "MIT" - }, - "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,8 +7755,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, -+ "license": "MIT", -+ "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, -@@ -6350,6 +7782,8 @@ - }, - "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, -@@ -6363,11 +7797,15 @@ - }, - "node_modules/create-require": { - "version": "1.1.1", -+ "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", -+ "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/cross-env": { - "version": "7.0.3", -+ "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", -+ "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.1" -@@ -6384,6 +7822,8 @@ - }, - "node_modules/cross-spawn": { - "version": "7.0.3", -+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", -+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", -@@ -6395,7 +7835,9 @@ - } - }, - "node_modules/css-functions-list": { -- "version": "3.2.1", -+ "version": "3.2.3", -+ "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.3.tgz", -+ "integrity": "sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==", - "dev": true, - "license": "MIT", - "engines": { -@@ -6404,6 +7846,8 @@ - }, - "node_modules/css-loader": { - "version": "6.5.1", -+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.5.1.tgz", -+ "integrity": "sha512-gEy2w9AnJNnD9Kuo4XAP9VflW/ujKoS9c/syO+uWMlm5igc7LysKzPXaDoR2vroROkSwsTS2tGr1yGGEbZOYZQ==", - "license": "MIT", - "dependencies": { - "icss-utils": "^5.1.0", -@@ -6426,22 +7870,11 @@ - "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", -+ "version": "7.6.3", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", -+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, - "bin": { - "semver": "bin/semver.js" - }, -@@ -6449,12 +7882,10 @@ - "node": ">=10" - } - }, -- "node_modules/css-loader/node_modules/yallist": { -- "version": "4.0.0", -- "license": "ISC" -- }, - "node_modules/css-select": { - "version": "4.3.0", -+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", -+ "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", -@@ -6469,6 +7900,8 @@ - }, - "node_modules/css-select/node_modules/dom-serializer": { - "version": "1.4.1", -+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", -+ "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", -@@ -6481,6 +7914,8 @@ - }, - "node_modules/css-select/node_modules/domhandler": { - "version": "4.3.1", -+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", -+ "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.2.0" -@@ -6494,6 +7929,8 @@ - }, - "node_modules/css-select/node_modules/domutils": { - "version": "2.8.0", -+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", -+ "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^1.0.1", -@@ -6506,6 +7943,8 @@ - }, - "node_modules/css-select/node_modules/entities": { - "version": "2.2.0", -+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", -+ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" -@@ -6513,6 +7952,8 @@ - }, - "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": { -@@ -6525,6 +7966,8 @@ - }, - "node_modules/css-what": { - "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", -+ "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" -@@ -6535,6 +7978,8 @@ - }, - "node_modules/cssesc": { - "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", -+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" -@@ -6546,42 +7991,108 @@ - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", -- "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" -+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", -+ "license": "MIT" - }, - "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/dateformat": { -- "version": "3.0.3", -+ "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, - "license": "MIT", -- "engines": { -- "node": "*" -- } -- }, -- "node_modules/debounce-fn": { -- "version": "4.0.0", -- "license": "MIT", - "dependencies": { -- "mimic-fn": "^3.0.0" -+ "call-bind": "^1.0.6", -+ "es-errors": "^1.3.0", -+ "is-data-view": "^1.0.1" - }, - "engines": { -- "node": ">=10" -+ "node": ">= 0.4" - }, - "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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", -+ "resolved": "https://registry.npmjs.org/debounce-fn/-/debounce-fn-4.0.0.tgz", -+ "integrity": "sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==", -+ "license": "MIT", -+ "dependencies": { -+ "mimic-fn": "^3.0.0" -+ }, -+ "engines": { -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/debug": { -- "version": "4.3.4", -+ "version": "4.3.7", -+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", -+ "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "license": "MIT", - "dependencies": { -- "ms": "2.1.2" -+ "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" -@@ -6594,6 +8105,8 @@ - }, - "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": { -@@ -6602,6 +8115,8 @@ - }, - "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": { -@@ -6617,6 +8132,8 @@ - }, - "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": { -@@ -6625,6 +8142,8 @@ - }, - "node_modules/decompress-response": { - "version": "6.0.0", -+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", -+ "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "license": "MIT", - "dependencies": { - "mimic-response": "^3.1.0" -@@ -6638,6 +8157,8 @@ - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", -+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", -+ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "license": "MIT", - "engines": { - "node": ">=10" -@@ -6648,6 +8169,8 @@ - }, - "node_modules/deep-extend": { - "version": "0.6.0", -+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", -+ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" -@@ -6655,11 +8178,15 @@ - }, - "node_modules/deep-is": { - "version": "0.1.4", -+ "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, - "license": "MIT" - }, - "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": { -@@ -6669,28 +8196,127 @@ - "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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, -+ "license": "Apache-2.0", -+ "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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, -+ "license": "ISC" -+ }, -+ "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, -+ "license": "MIT", -+ "engines": { -+ "node": ">=6" -+ } -+ }, - "node_modules/defer-to-connect": { - "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", -+ "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "license": "MIT", - "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": { -@@ -6699,6 +8325,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": { -@@ -6715,6 +8343,8 @@ - }, - "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": { -@@ -6723,6 +8353,8 @@ - }, - "node_modules/denque": { - "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", -+ "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", - "license": "Apache-2.0", - "engines": { - "node": ">=0.10" -@@ -6730,6 +8362,8 @@ - }, - "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": { -@@ -6738,6 +8372,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": { -@@ -6747,6 +8383,8 @@ - }, - "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": { -@@ -6754,7 +8392,9 @@ - } - }, - "node_modules/detect-libc": { -- "version": "2.0.2", -+ "version": "2.0.3", -+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", -+ "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", - "license": "Apache-2.0", - "engines": { - "node": ">=8" -@@ -6762,6 +8402,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": { -@@ -6770,16 +8412,22 @@ - }, - "node_modules/detect-node": { - "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", -+ "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "devOptional": true, - "license": "MIT" - }, - "node_modules/didyoumean": { - "version": "1.2.2", -+ "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", -+ "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true, - "license": "Apache-2.0" - }, - "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": { -@@ -6788,6 +8436,8 @@ - }, - "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": { -@@ -6797,6 +8447,8 @@ - }, - "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": { -@@ -6806,6 +8458,8 @@ - }, - "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": { -@@ -6817,6 +8471,8 @@ - }, - "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": { -@@ -6828,10 +8484,14 @@ - }, - "node_modules/discontinuous-range": { - "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", -+ "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==", - "license": "MIT" - }, - "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": { -@@ -6848,6 +8508,8 @@ - }, - "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": { -@@ -6861,6 +8523,8 @@ - }, - "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": { -@@ -6872,19 +8536,71 @@ - }, - "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, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, -- "node_modules/dns-equal": { -- "version": "1.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, -- "license": "MIT" -+ "license": "MIT", -+ "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", -+ "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/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": { -@@ -6896,6 +8612,8 @@ - }, - "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": { -@@ -6907,6 +8625,8 @@ - }, - "node_modules/dom-converter": { - "version": "0.2.0", -+ "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", -+ "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", - "license": "MIT", - "dependencies": { - "utila": "~0.4" -@@ -6914,6 +8634,8 @@ - }, - "node_modules/dom-serializer": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", -+ "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", -@@ -6926,6 +8648,8 @@ - }, - "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", -@@ -6936,6 +8660,8 @@ - }, - "node_modules/domhandler": { - "version": "5.0.3", -+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", -+ "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" -@@ -6949,6 +8675,8 @@ - }, - "node_modules/domutils": { - "version": "3.1.0", -+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", -+ "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", -@@ -6961,6 +8689,8 @@ - }, - "node_modules/dot-case": { - "version": "3.0.4", -+ "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", -+ "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", -@@ -6968,20 +8698,22 @@ - } - }, - "node_modules/dot-prop": { -- "version": "6.0.1", -+ "version": "5.3.0", -+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", -+ "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", -+ "dev": true, - "license": "MIT", - "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": { -@@ -6990,11 +8722,15 @@ - }, - "node_modules/dotenv-expand": { - "version": "5.1.0", -+ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", -+ "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", - "dev": true, - "license": "BSD-2-Clause" - }, - "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": { -@@ -7007,6 +8743,8 @@ - }, - "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": { -@@ -7016,6 +8754,8 @@ - }, - "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": { -@@ -7027,6 +8767,8 @@ - }, - "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": { -@@ -7039,6 +8781,8 @@ - }, - "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": { -@@ -7050,6 +8794,8 @@ - }, - "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": { -@@ -7064,6 +8810,8 @@ - }, - "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": { -@@ -7073,26 +8821,34 @@ - "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", -+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", -+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true, - "license": "MIT" - }, - "node_modules/ee-first": { - "version": "1.1.1", -+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", -+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -7106,10 +8862,11 @@ - } - }, - "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, -+ "license": "MIT", - "dependencies": { - "@electron/get": "^2.0.0", - "@types/node": "^20.9.0", -@@ -7124,6 +8881,8 @@ - }, - "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": { -@@ -7149,6 +8908,8 @@ - }, - "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, -@@ -7161,6 +8922,8 @@ - }, - "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, -@@ -7175,6 +8938,8 @@ - }, - "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, -@@ -7187,6 +8952,8 @@ - }, - "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, -@@ -7194,21 +8961,10 @@ - "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": { -@@ -7222,6 +8978,8 @@ - }, - "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": { -@@ -7233,63 +8991,18 @@ - }, - "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", -+ "version": "5.0.4", -+ "resolved": "https://registry.npmjs.org/electron-log/-/electron-log-5.0.4.tgz", -+ "integrity": "sha512-h88rs4To/wa1LQm/sfik0+BEbLXRlSfzSt8baG4R2okitbCBdT2SMrg6WHo/MD6T75NCkLHkrjoXQEVGAcnI8w==", - "license": "MIT", - "engines": { - "node": ">= 14" -@@ -7297,6 +9010,8 @@ - }, - "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": { -@@ -7311,6 +9026,8 @@ - }, - "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": { -@@ -7324,6 +9041,8 @@ - }, - "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": { -@@ -7335,6 +9054,8 @@ - }, - "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": { -@@ -7343,6 +9064,8 @@ - }, - "node_modules/electron-store": { - "version": "8.1.0", -+ "resolved": "https://registry.npmjs.org/electron-store/-/electron-store-8.1.0.tgz", -+ "integrity": "sha512-2clHg/juMjOH0GT9cQ6qtmIvK183B39ZXR0bUoPwKwYHJsEF3quqyDzMFUAu+0OP8ijmN2CbPRAelhNbWUbzwA==", - "license": "MIT", - "dependencies": { - "conf": "^10.2.0", -@@ -7353,11 +9076,15 @@ - } - }, - "node_modules/electron-to-chromium": { -- "version": "1.4.594", -+ "version": "1.5.41", -+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.41.tgz", -+ "integrity": "sha512-dfdv/2xNjX0P8Vzme4cfzHqnPm5xsZXwsolTYr0eyW18IUmNyG08vL+fttvinTfhKfIKdRoqkDIC9e9iWQCNYQ==", - "license": "ISC" - }, - "node_modules/electron-updater": { - "version": "4.6.5", -+ "resolved": "https://registry.npmjs.org/electron-updater/-/electron-updater-4.6.5.tgz", -+ "integrity": "sha512-kdTly8O9mSZfm9fslc1mnCY+mYOeaYRy7ERa2Fed240u01BKll3aiupzkd07qKw69KvhBSzuHroIW3mF0D8DWA==", - "license": "MIT", - "dependencies": { - "@types/semver": "^7.3.6", -@@ -7372,6 +9099,8 @@ - }, - "node_modules/electron-updater/node_modules/builder-util-runtime": { - "version": "8.9.2", -+ "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-8.9.2.tgz", -+ "integrity": "sha512-rhuKm5vh7E0aAmT6i8aoSfEjxzdYEFX7zDApK+eNgOhjofnWb74d9SRJv0H/8nsgOkos0TZ4zxW0P8J4N7xQ2A==", - "license": "MIT", - "dependencies": { - "debug": "^4.3.2", -@@ -7383,6 +9112,8 @@ - }, - "node_modules/electron-updater/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==", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", -@@ -7395,6 +9126,8 @@ - }, - "node_modules/electron-updater/node_modules/jsonfile": { - "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", -+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" -@@ -7403,22 +9136,11 @@ - "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", -+ "version": "7.6.3", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", -+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, - "bin": { - "semver": "bin/semver.js" - }, -@@ -7428,17 +9150,17 @@ - }, - "node_modules/electron-updater/node_modules/universalify": { - "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", -+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "license": "MIT", - "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", -+ "resolved": "https://registry.npmjs.org/electron-window-state/-/electron-window-state-5.0.3.tgz", -+ "integrity": "sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==", - "license": "MIT", - "dependencies": { - "jsonfile": "^4.0.0", -@@ -7449,26 +9171,40 @@ - } - }, - "node_modules/electron/node_modules/@types/node": { -- "version": "20.12.12", -+ "version": "20.16.13", -+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.16.13.tgz", -+ "integrity": "sha512-GjQ7im10B0labo8ZGXDGROUl9k0BNyDgzfGpb4g/cl+4yYDWVKcozANF4FGr4/p0O/rAkQClM6Wiwkije++1Tg==", - "license": "MIT", - "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==", -+ "license": "MIT" -+ }, - "node_modules/emoji-regex": { - "version": "8.0.0", -+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", -+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/emojis-list": { - "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", -+ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/encodeurl": { -- "version": "1.0.2", -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", -+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", - "dev": true, - "license": "MIT", - "engines": { -@@ -7477,6 +9213,8 @@ - }, - "node_modules/encoding": { - "version": "0.1.13", -+ "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", -+ "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "license": "MIT", - "dependencies": { - "iconv-lite": "^0.6.2" -@@ -7484,13 +9222,17 @@ - }, - "node_modules/end-of-stream": { - "version": "1.4.4", -+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", -+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "license": "MIT", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/enhanced-resolve": { -- "version": "5.16.1", -+ "version": "5.17.1", -+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", -+ "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", -@@ -7502,6 +9244,8 @@ - }, - "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": { -@@ -7514,6 +9258,8 @@ - }, - "node_modules/entities": { - "version": "4.5.0", -+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", -+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" -@@ -7524,13 +9270,17 @@ - }, - "node_modules/env-paths": { - "version": "2.2.1", -+ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", -+ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/envinfo": { -- "version": "7.11.0", -+ "version": "7.14.0", -+ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", -+ "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", - "license": "MIT", - "bin": { - "envinfo": "dist/cli.js" -@@ -7541,11 +9291,15 @@ - }, - "node_modules/err-code": { - "version": "2.0.3", -+ "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", -+ "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -7553,49 +9307,58 @@ - } - }, - "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, -+ "license": "MIT", -+ "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 +9367,58 @@ - "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/es-module-lexer": { -- "version": "1.5.2", -+ "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "engines": { -+ "node": ">= 0.4" -+ } -+ }, -+ "node_modules/es-module-lexer": { -+ "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==", - "license": "MIT" - }, -+ "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, -+ "license": "MIT", -+ "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,6 +9426,8 @@ - }, - "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": { -@@ -7631,6 +9436,8 @@ - }, - "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": { -@@ -7647,11 +9454,15 @@ - }, - "node_modules/es6-error": { - "version": "4.1.1", -+ "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", -+ "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", - "license": "MIT", - "optional": true - }, - "node_modules/escalade": { -- "version": "3.1.1", -+ "version": "3.2.0", -+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", -+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "license": "MIT", - "engines": { - "node": ">=6" -@@ -7659,11 +9470,15 @@ - }, - "node_modules/escape-html": { - "version": "1.0.3", -+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", -+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -7675,6 +9490,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==", -+ "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", - "dev": true, - "license": "MIT", - "dependencies": { -@@ -7731,6 +9549,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": [ - { -@@ -7756,6 +9576,8 @@ - }, - "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": { -@@ -7766,6 +9588,8 @@ - }, - "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": { -@@ -7773,7 +9597,9 @@ - } - }, - "node_modules/eslint-module-utils": { -- "version": "2.8.0", -+ "version": "2.12.0", -+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", -+ "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", - "dev": true, - "license": "MIT", - "dependencies": { -@@ -7790,6 +9616,8 @@ - }, - "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": { -@@ -7798,6 +9626,8 @@ - }, - "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": { -@@ -7816,6 +9646,8 @@ - }, - "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": { -@@ -7830,6 +9662,8 @@ - }, - "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": { -@@ -7838,6 +9672,8 @@ - }, - "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": { -@@ -7866,6 +9702,8 @@ - }, - "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": { -@@ -7875,6 +9713,8 @@ - }, - "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, - "license": "MIT", - "dependencies": { -@@ -7883,6 +9723,8 @@ - }, - "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, - "license": "Apache-2.0", - "dependencies": { -@@ -7892,8 +9734,37 @@ - "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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, - "license": "ISC", - "dependencies": { -@@ -7905,11 +9776,61 @@ - }, - "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, - "license": "MIT" - }, -+ "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": { -+ "p-try": "^1.0.0" -+ }, -+ "engines": { -+ "node": ">=4" -+ } -+ }, -+ "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": "MIT", -+ "dependencies": { -+ "p-limit": "^1.1.0" -+ }, -+ "engines": { -+ "node": ">=4" -+ } -+ }, -+ "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": "MIT", -+ "engines": { -+ "node": ">=4" -+ } -+ }, -+ "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": { -@@ -7921,6 +9842,8 @@ - }, - "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": { -@@ -7940,6 +9863,8 @@ - }, - "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": { -@@ -7949,6 +9874,8 @@ - }, - "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": { -@@ -7963,6 +9890,8 @@ - }, - "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": { -@@ -7971,6 +9900,8 @@ - }, - "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": { -@@ -7982,6 +9913,8 @@ - }, - "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": { -@@ -7993,6 +9926,8 @@ - }, - "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": { -@@ -8001,6 +9936,8 @@ - }, - "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": { -@@ -8016,24 +9953,12 @@ - "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,13 +9966,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", -+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", -+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", -@@ -8059,6 +9981,8 @@ - }, - "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": { -@@ -8076,6 +10000,8 @@ - }, - "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": { -@@ -8084,14 +10010,35 @@ - }, - "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, -+ "license": "MIT", -+ "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": { -@@ -8100,6 +10047,8 @@ - }, - "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": { -@@ -8109,6 +10058,8 @@ - }, - "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": { -@@ -8123,6 +10074,8 @@ - }, - "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": { -@@ -8130,7 +10083,9 @@ - } - }, - "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": { -@@ -8145,6 +10100,8 @@ - }, - "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": { -@@ -8153,6 +10110,8 @@ - }, - "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": { -@@ -8163,19 +10122,17 @@ - "js-yaml": "bin/js-yaml.js" - } - }, -- "node_modules/eslint/node_modules/lru-cache": { -- "version": "6.0.0", -+ "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, -- "license": "ISC", -- "dependencies": { -- "yallist": "^4.0.0" -- }, -- "engines": { -- "node": ">=10" -- } -+ "license": "MIT" - }, - "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": { -@@ -8186,12 +10143,11 @@ - } - }, - "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,11 +10157,15 @@ - }, - "node_modules/eslint/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, - "license": "BSD-3-Clause" - }, - "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": { -@@ -8215,13 +10175,10 @@ - "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": { -@@ -8235,6 +10192,8 @@ - }, - "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": { -@@ -8243,6 +10202,8 @@ - }, - "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": { -@@ -8254,7 +10215,9 @@ - } - }, - "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": { -@@ -8266,6 +10229,8 @@ - }, - "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": { -@@ -8274,6 +10239,8 @@ - }, - "node_modules/esrecurse": { - "version": "4.3.0", -+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", -+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" -@@ -8284,6 +10251,8 @@ - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", -+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", -+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" -@@ -8291,6 +10260,8 @@ - }, - "node_modules/estraverse": { - "version": "4.3.0", -+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", -+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" -@@ -8298,10 +10269,14 @@ - }, - "node_modules/estree-walker": { - "version": "2.0.2", -+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", -+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "license": "MIT" - }, - "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": { -@@ -8310,6 +10285,8 @@ - }, - "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": { -@@ -8318,42 +10295,68 @@ - }, - "node_modules/eventemitter3": { - "version": "4.0.7", -+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", -+ "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true, - "license": "MIT" - }, - "node_modules/events": { - "version": "3.3.0", -+ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", -+ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "license": "MIT", - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/execa": { -- "version": "5.1.1", -+ "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, - "license": "MIT", - "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", -+ "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, - "license": "MIT", - "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, -+ "license": "MIT", -+ "dependencies": { -+ "mimic-fn": "^4.0.0" -+ }, -+ "engines": { -+ "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -@@ -8361,42 +10364,46 @@ - }, - "node_modules/expand-template": { - "version": "2.0.3", -+ "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", -+ "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", - "license": "(MIT OR WTFPL)", - "engines": { - "node": ">=6" - } - }, - "node_modules/express": { -- "version": "4.19.2", -+ "version": "4.21.1", -+ "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", -+ "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", -- "body-parser": "1.20.2", -+ "body-parser": "1.20.3", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", -- "cookie": "0.6.0", -+ "cookie": "0.7.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", -- "encodeurl": "~1.0.2", -+ "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "etag": "~1.8.1", -- "finalhandler": "1.2.0", -+ "finalhandler": "1.3.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", -- "merge-descriptors": "1.0.1", -+ "merge-descriptors": "1.0.3", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", -- "path-to-regexp": "0.1.7", -+ "path-to-regexp": "0.1.10", - "proxy-addr": "~2.0.7", -- "qs": "6.11.0", -+ "qs": "6.13.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", -- "send": "0.18.0", -- "serve-static": "1.15.0", -+ "send": "0.19.0", -+ "serve-static": "1.16.2", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", -@@ -8407,13 +10414,10 @@ - "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": { -@@ -8422,11 +10426,15 @@ - }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", -+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -8440,6 +10448,8 @@ - }, - "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": { -@@ -8451,6 +10461,8 @@ - }, - "node_modules/extract-zip": { - "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", -+ "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", - "license": "BSD-2-Clause", - "dependencies": { - "debug": "^4.1.1", -@@ -8467,12 +10479,42 @@ - "@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==", -+ "license": "MIT", -+ "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" -+ ], -+ "license": "MIT", -+ "optional": true -+ }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", -+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", -+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "license": "MIT" - }, - "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": { -@@ -8488,22 +10530,36 @@ - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", -+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", -+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", -+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true, - "license": "MIT" - }, -+ "node_modules/fast-uri": { -+ "version": "3.0.3", -+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", -+ "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", -+ "license": "BSD-3-Clause" -+ }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", -+ "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", -+ "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "license": "MIT", - "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": { -@@ -8512,6 +10568,8 @@ - }, - "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": { -@@ -8523,6 +10581,8 @@ - }, - "node_modules/fd-slicer": { - "version": "1.1.0", -+ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", -+ "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "license": "MIT", - "dependencies": { - "pend": "~1.2.0" -@@ -8530,6 +10590,8 @@ - }, - "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": { -@@ -8544,6 +10606,8 @@ - }, - "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": { -@@ -8552,6 +10616,8 @@ - }, - "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": { -@@ -8563,6 +10629,8 @@ - }, - "node_modules/file-loader": { - "version": "6.2.0", -+ "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", -+ "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", - "license": "MIT", - "dependencies": { - "loader-utils": "^2.0.0", -@@ -8579,8 +10647,41 @@ - "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==", -+ "license": "MIT", -+ "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==", -+ "license": "MIT", -+ "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==", -+ "license": "MIT" -+ }, - "node_modules/file-loader/node_modules/schema-utils": { - "version": "3.3.0", -+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", -+ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", -@@ -8597,10 +10698,14 @@ - }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", -+ "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==", - "license": "MIT" - }, - "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": { -@@ -8608,7 +10713,9 @@ - } - }, - "node_modules/fill-range": { -- "version": "7.0.1", -+ "version": "7.1.1", -+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", -+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" -@@ -8618,12 +10725,14 @@ - } - }, - "node_modules/finalhandler": { -- "version": "1.2.0", -+ "version": "1.3.1", -+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", -+ "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "2.6.9", -- "encodeurl": "~1.0.2", -+ "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", -@@ -8636,6 +10745,8 @@ - }, - "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": { -@@ -8644,11 +10755,15 @@ - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", -+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true, - "license": "MIT" - }, - "node_modules/find-cache-dir": { - "version": "3.3.2", -+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", -+ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "license": "MIT", - "dependencies": { - "commondir": "^1.0.1", -@@ -8663,18 +10778,27 @@ - } - }, - "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", -+ "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", -+ "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "license": "BSD-3-Clause", - "bin": { - "flat": "cli.js" -@@ -8682,6 +10806,8 @@ - }, - "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": { -@@ -8694,12 +10820,16 @@ - } - }, - "node_modules/flatted": { -- "version": "3.2.9", -+ "version": "3.3.1", -+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", -+ "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true, - "license": "ISC" - }, - "node_modules/floating-vue": { -- "version": "2.0.0-beta.24", -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/floating-vue/-/floating-vue-2.0.0.tgz", -+ "integrity": "sha512-YSffLYOjoaaPPBZc7VQR2qMCQ7xeXuh7i8a2u8WOdSmkjTtKtZpj2aaJnLtZRHmehrMHyCgtSxLu8jFNNX2sVw==", - "license": "MIT", - "dependencies": { - "@floating-ui/dom": "~1.1.1", -@@ -8716,7 +10846,9 @@ - } - }, - "node_modules/follow-redirects": { -- "version": "1.15.6", -+ "version": "1.15.9", -+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", -+ "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", - "dev": true, - "funding": [ - { -@@ -8736,6 +10868,8 @@ - }, - "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": { -@@ -8743,7 +10877,9 @@ - } - }, - "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": { -@@ -8757,19 +10893,10 @@ - "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", -+ "version": "4.0.1", -+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", -+ "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", - "dev": true, - "license": "MIT", - "dependencies": { -@@ -8783,6 +10910,8 @@ - }, - "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": { -@@ -8791,6 +10920,8 @@ - }, - "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": { -@@ -8799,6 +10930,8 @@ - }, - "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": { -@@ -8810,10 +10943,14 @@ - }, - "node_modules/fs-constants": { - "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", -+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "license": "MIT" - }, - "node_modules/fs-extra": { - "version": "8.1.0", -+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", -+ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", -@@ -8826,6 +10963,8 @@ - }, - "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": { -@@ -8837,6 +10976,8 @@ - }, - "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": { -@@ -8848,20 +10989,42 @@ - }, - "node_modules/fs-minipass/node_modules/yallist": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", -+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "node_modules/fs-monkey": { -- "version": "1.0.5", -+ "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, - "license": "Unlicense" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", -+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "license": "ISC" - }, -+ "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, -+ "license": "MIT", -+ "optional": true, -+ "os": [ -+ "darwin" -+ ], -+ "engines": { -+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" -+ } -+ }, - "node_modules/function-bind": { - "version": "1.1.2", -+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", -+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" -@@ -8869,6 +11032,8 @@ - }, - "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": { -@@ -8886,11 +11051,15 @@ - }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", -+ "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, - "license": "MIT" - }, - "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": { -@@ -8899,6 +11068,8 @@ - }, - "node_modules/generate-function": { - "version": "2.3.1", -+ "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", -+ "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", - "license": "MIT", - "dependencies": { - "is-property": "^1.0.2" -@@ -8906,6 +11077,8 @@ - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", -+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", -+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "license": "MIT", - "peer": true, - "engines": { -@@ -8914,6 +11087,8 @@ - }, - "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": { -@@ -8921,21 +11096,29 @@ - } - }, - "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": { -@@ -8953,6 +11136,8 @@ - }, - "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": { -@@ -8963,11 +11148,15 @@ - }, - "node_modules/get-pkg-repo/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" - }, - "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": { -@@ -8982,11 +11171,15 @@ - }, - "node_modules/get-pkg-repo/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" - }, - "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": { -@@ -8995,6 +11188,8 @@ - }, - "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": { -@@ -9004,6 +11199,8 @@ - }, - "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": { -@@ -9018,16 +11215,10 @@ - "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": { -@@ -9043,8 +11234,20 @@ - "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, -+ "license": "ISC", -+ "engines": { -+ "node": ">=10" -+ } -+ }, - "node_modules/get-stdin": { - "version": "8.0.0", -+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", -+ "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "license": "MIT", - "engines": { - "node": ">=10" -@@ -9054,25 +11257,28 @@ - } - }, - "node_modules/get-stream": { -- "version": "5.2.0", -+ "version": "8.0.1", -+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", -+ "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", -+ "dev": true, - "license": "MIT", -- "dependencies": { -- "pump": "^3.0.0" -- }, - "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,33 +11288,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": { -@@ -9121,6 +11321,8 @@ - }, - "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": { -@@ -9129,6 +11331,8 @@ - }, - "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": { -@@ -9142,102 +11346,81 @@ - "node": ">=10" - } - }, -- "node_modules/gitconfiglocal": { -- "version": "1.0.0", -+ "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, -- "license": "BSD", -- "dependencies": { -- "ini": "^1.3.2" -- } -- }, -- "node_modules/github-from-package": { -- "version": "0.0.0", -- "license": "MIT" -- }, -- "node_modules/glob": { -- "version": "7.2.3", -- "license": "ISC", -+ "license": "MIT", - "dependencies": { -- "fs.realpath": "^1.0.0", -- "inflight": "^1.0.4", -- "inherits": "2", -- "minimatch": "^3.1.1", -- "once": "^1.3.0", -- "path-is-absolute": "^1.0.0" -+ "locate-path": "^5.0.0", -+ "path-exists": "^4.0.0" - }, - "engines": { -- "node": "*" -- }, -- "funding": { -- "url": "https://github.com/sponsors/isaacs" -+ "node": ">=8" - } - }, -- "node_modules/glob-parent": { -- "version": "5.1.2", -- "license": "ISC", -+ "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, -+ "license": "MIT", - "dependencies": { -- "is-glob": "^4.0.1" -+ "p-locate": "^4.1.0" - }, - "engines": { -- "node": ">= 6" -+ "node": ">=8" - } - }, -- "node_modules/glob-to-regexp": { -- "version": "0.4.1", -- "license": "BSD-2-Clause" -- }, -- "node_modules/glob/node_modules/brace-expansion": { -- "version": "1.1.11", -+ "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, - "license": "MIT", - "dependencies": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "node_modules/glob/node_modules/minimatch": { -- "version": "3.1.2", -- "license": "ISC", -- "dependencies": { -- "brace-expansion": "^1.1.7" -+ "@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": "*" -- } -- }, -- "node_modules/global-agent": { -- "version": "3.0.0", -- "license": "BSD-3-Clause", -- "optional": true, -- "dependencies": { -- "boolean": "^3.0.1", -- "es6-error": "^4.1.1", -- "matcher": "^3.0.0", -- "roarr": "^2.15.3", -- "semver": "^7.3.2", -- "serialize-error": "^7.0.1" -+ "node": ">=10" - }, -- "engines": { -- "node": ">=10.0" -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/global-agent/node_modules/lru-cache": { -- "version": "6.0.0", -- "license": "ISC", -- "optional": true, -+ "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, -+ "license": "BSD-2-Clause", - "dependencies": { -- "yallist": "^4.0.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" - } - }, -- "node_modules/global-agent/node_modules/semver": { -- "version": "7.5.4", -+ "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, - "license": "ISC", -- "optional": true, -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, - "bin": { - "semver": "bin/semver.js" - }, -@@ -9245,115 +11428,408 @@ - "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", -+ "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, - "license": "MIT", - "dependencies": { -- "ini": "4.1.1" -+ "p-try": "^2.0.0" - }, - "engines": { -- "node": ">=18" -+ "node": ">=6" - }, - "funding": { - "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", -+ "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, - "license": "MIT", - "dependencies": { -- "global-prefix": "^3.0.0" -+ "p-limit": "^2.2.0" - }, - "engines": { -- "node": ">=6" -+ "node": ">=8" - } - }, -- "node_modules/global-prefix": { -- "version": "3.0.0", -+ "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, - "license": "MIT", - "dependencies": { -- "ini": "^1.3.5", -- "kind-of": "^6.0.2", -- "which": "^1.3.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": ">=6" -- } -- }, -- "node_modules/global-prefix/node_modules/which": { -- "version": "1.3.1", -- "dev": true, -- "license": "ISC", -- "dependencies": { -- "isexe": "^2.0.0" -+ "node": ">=8" - }, -- "bin": { -- "which": "bin/which" -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/globals": { -- "version": "11.12.0", -+ "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, - "license": "MIT", - "engines": { -- "node": ">=4" -+ "node": ">=8" - } - }, -- "node_modules/globalthis": { -- "version": "1.0.3", -- "devOptional": true, -+ "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, - "license": "MIT", - "dependencies": { -- "define-properties": "^1.1.3" -+ "@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": ">= 0.4" -- }, -- "funding": { -- "url": "https://github.com/sponsors/ljharb" -+ "node": ">=8" - } - }, -- "node_modules/globby": { -- "version": "11.1.0", -+ "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, - "license": "MIT", - "dependencies": { -- "array-union": "^2.1.0", -- "dir-glob": "^3.0.1", -- "fast-glob": "^3.2.9", -- "ignore": "^5.2.0", -- "merge2": "^1.4.1", -- "slash": "^3.0.0" -+ "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/globjoin": { -- "version": "0.1.4", -+ "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, -- "license": "MIT" -+ "license": "(MIT OR CC0-1.0)", -+ "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, -+ "license": "ISC" -+ }, -+ "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, -+ "license": "BSD-2-Clause", -+ "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, -+ "license": "ISC", -+ "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, -+ "license": "(MIT OR CC0-1.0)", -+ "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, -+ "license": "(MIT OR CC0-1.0)", -+ "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, -+ "license": "ISC", -+ "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, -+ "license": "ISC" -+ }, -+ "node_modules/github-from-package": { -+ "version": "0.0.0", -+ "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", -+ "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", -+ "license": "MIT" -+ }, -+ "node_modules/glob": { -+ "version": "7.2.3", -+ "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", -+ "license": "ISC", -+ "dependencies": { -+ "fs.realpath": "^1.0.0", -+ "inflight": "^1.0.4", -+ "inherits": "2", -+ "minimatch": "^3.1.1", -+ "once": "^1.3.0", -+ "path-is-absolute": "^1.0.0" -+ }, -+ "engines": { -+ "node": "*" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/isaacs" -+ } -+ }, -+ "node_modules/glob-parent": { -+ "version": "5.1.2", -+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", -+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", -+ "license": "ISC", -+ "dependencies": { -+ "is-glob": "^4.0.1" -+ }, -+ "engines": { -+ "node": ">= 6" -+ } -+ }, -+ "node_modules/glob-to-regexp": { -+ "version": "0.4.1", -+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", -+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", -+ "license": "BSD-2-Clause" -+ }, -+ "node_modules/glob/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==", -+ "license": "MIT", -+ "dependencies": { -+ "balanced-match": "^1.0.0", -+ "concat-map": "0.0.1" -+ } -+ }, -+ "node_modules/glob/node_modules/minimatch": { -+ "version": "3.1.2", -+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", -+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", -+ "license": "ISC", -+ "dependencies": { -+ "brace-expansion": "^1.1.7" -+ }, -+ "engines": { -+ "node": "*" -+ } -+ }, -+ "node_modules/global-agent": { -+ "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", -+ "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", -+ "license": "BSD-3-Clause", -+ "optional": true, -+ "dependencies": { -+ "boolean": "^3.0.1", -+ "es6-error": "^4.1.1", -+ "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/semver": { -+ "version": "7.6.3", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", -+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", -+ "license": "ISC", -+ "optional": true, -+ "bin": { -+ "semver": "bin/semver.js" -+ }, -+ "engines": { -+ "node": ">=10" -+ } -+ }, -+ "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" -+ }, -+ "engines": { -+ "node": ">=18" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, -+ "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" -+ }, -+ "engines": { -+ "node": ">=6" -+ } -+ }, -+ "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", -+ "which": "^1.3.1" -+ }, -+ "engines": { -+ "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, -+ "license": "ISC" -+ }, -+ "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" -+ }, -+ "bin": { -+ "which": "bin/which" -+ } -+ }, -+ "node_modules/globals": { -+ "version": "11.12.0", -+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", -+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", -+ "license": "MIT", -+ "engines": { -+ "node": ">=4" -+ } -+ }, -+ "node_modules/globalthis": { -+ "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.2.1", -+ "gopd": "^1.0.1" -+ }, -+ "engines": { -+ "node": ">= 0.4" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" -+ } -+ }, -+ "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", -+ "fast-glob": "^3.2.9", -+ "ignore": "^5.2.0", -+ "merge2": "^1.4.1", -+ "slash": "^3.0.0" -+ }, -+ "engines": { -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, -+ "node_modules/globjoin": { -+ "version": "0.1.4", -+ "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", -+ "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", -+ "dev": true, -+ "license": "MIT" - }, - "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": { -@@ -9365,6 +11841,8 @@ - }, - "node_modules/got": { - "version": "11.8.6", -+ "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", -+ "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "license": "MIT", - "dependencies": { - "@sindresorhus/is": "^4.0.0", -@@ -9388,15 +11866,21 @@ - }, - "node_modules/graceful-fs": { - "version": "4.2.11", -+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", -+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "license": "ISC" - }, - "node_modules/handle-thing": { - "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", -+ "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -9417,6 +11901,8 @@ - }, - "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": { -@@ -9425,6 +11911,8 @@ - }, - "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": { -@@ -9433,6 +11921,8 @@ - }, - "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": { -@@ -9441,24 +11931,30 @@ - }, - "node_modules/has-flag": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", -+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "license": "MIT", - "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": { -@@ -9470,6 +11966,8 @@ - }, - "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": { -@@ -9480,11 +11978,13 @@ - } - }, - "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,10 +11995,14 @@ - }, - "node_modules/hash-sum": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", -+ "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", - "license": "MIT" - }, - "node_modules/hasown": { -- "version": "2.0.0", -+ "version": "2.0.2", -+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", -+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" -@@ -9509,6 +12013,8 @@ - }, - "node_modules/he": { - "version": "1.2.0", -+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", -+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "license": "MIT", - "bin": { - "he": "bin/he" -@@ -9516,6 +12022,8 @@ - }, - "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": { -@@ -9527,6 +12035,8 @@ - }, - "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": { -@@ -9538,11 +12048,15 @@ - }, - "node_modules/hosted-git-info/node_modules/yallist": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", -+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "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": { -@@ -9554,11 +12068,15 @@ - }, - "node_modules/hpack.js/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" - }, - "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": { -@@ -9573,11 +12091,15 @@ - }, - "node_modules/hpack.js/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" - }, - "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": { -@@ -9585,7 +12107,9 @@ - } - }, - "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": [ - { -@@ -9601,6 +12125,8 @@ - }, - "node_modules/html-minifier-terser": { - "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", -+ "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", - "license": "MIT", - "dependencies": { - "camel-case": "^4.1.2", -@@ -9620,6 +12146,8 @@ - }, - "node_modules/html-minifier-terser/node_modules/commander": { - "version": "8.3.0", -+ "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", -+ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "license": "MIT", - "engines": { - "node": ">= 12" -@@ -9627,6 +12155,8 @@ - }, - "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": { -@@ -9637,7 +12167,9 @@ - } - }, - "node_modules/html-webpack-plugin": { -- "version": "5.5.3", -+ "version": "5.5.4", -+ "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.4.tgz", -+ "integrity": "sha512-3wNSaVVxdxcu0jd4FpQFoICdqgxs4zIQQvj+2yQKFfBOnLETQ6X5CDWdeasuGlSsooFlMkEioWDTqBv1wvw5Iw==", - "license": "MIT", - "dependencies": { - "@types/html-minifier-terser": "^6.0.0", -@@ -9659,6 +12191,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", - { -@@ -9676,15 +12210,21 @@ - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", -+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", -+ "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "license": "BSD-2-Clause" - }, - "node_modules/http-deceiver": { - "version": "1.2.7", -+ "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", -+ "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -9700,11 +12240,15 @@ - }, - "node_modules/http-parser-js": { - "version": "0.5.8", -+ "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", -+ "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -9718,6 +12262,8 @@ - }, - "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": { -@@ -9730,7 +12276,9 @@ - } - }, - "node_modules/http-proxy-middleware": { -- "version": "2.0.6", -+ "version": "2.0.7", -+ "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz", -+ "integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==", - "dev": true, - "license": "MIT", - "dependencies": { -@@ -9752,23 +12300,14 @@ - } - } - }, -- "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { -- "version": "3.0.0", -- "dev": true, -+ "node_modules/http2-wrapper": { -+ "version": "1.0.3", -+ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", -+ "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "license": "MIT", -- "engines": { -- "node": ">=10" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -- } -- }, -- "node_modules/http2-wrapper": { -- "version": "1.0.3", -- "license": "MIT", -- "dependencies": { -- "quick-lru": "^5.1.1", -- "resolve-alpn": "^1.0.0" -+ "dependencies": { -+ "quick-lru": "^5.1.1", -+ "resolve-alpn": "^1.0.0" - }, - "engines": { - "node": ">=10.19.0" -@@ -9776,6 +12315,8 @@ - }, - "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": { -@@ -9787,14 +12328,19 @@ - } - }, - "node_modules/human-signals": { -- "version": "2.1.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, - "license": "Apache-2.0", - "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": { -@@ -9807,8 +12353,28 @@ - "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, -+ "license": "MIT", -+ "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", -+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", -+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" -@@ -9819,6 +12385,8 @@ - }, - "node_modules/icss-utils": { - "version": "5.1.0", -+ "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", -+ "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "license": "ISC", - "engines": { - "node": "^10 || ^12 || >= 14" -@@ -9829,6 +12397,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", -@@ -9846,7 +12416,9 @@ - "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": { -@@ -9855,10 +12427,14 @@ - }, - "node_modules/immediate": { - "version": "3.0.6", -+ "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", -+ "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", - "license": "MIT" - }, - "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": { -@@ -9872,8 +12448,20 @@ - "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, -+ "license": "MIT", -+ "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": { -@@ -9881,7 +12469,9 @@ - } - }, - "node_modules/import-local": { -- "version": "3.1.0", -+ "version": "3.2.0", -+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", -+ "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", - "license": "MIT", - "dependencies": { - "pkg-dir": "^4.2.0", -@@ -9898,7 +12488,9 @@ - } - }, - "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": { -@@ -9908,6 +12500,8 @@ - }, - "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": { -@@ -9916,6 +12510,8 @@ - }, - "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": { -@@ -9924,6 +12520,9 @@ - }, - "node_modules/inflight": { - "version": "1.0.6", -+ "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.", - "license": "ISC", - "dependencies": { - "once": "^1.3.0", -@@ -9932,14 +12531,24 @@ - }, - "node_modules/inherits": { - "version": "2.0.4", -+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", -+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "license": "ISC" - }, - "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, -+ "license": "ISC", -+ "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": { -@@ -9962,11 +12571,13 @@ - } - }, - "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,6 +12587,8 @@ - }, - "node_modules/interpret": { - "version": "2.2.0", -+ "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", -+ "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", - "license": "MIT", - "engines": { - "node": ">= 0.10" -@@ -9983,6 +12596,8 @@ - }, - "node_modules/ip-address": { - "version": "5.9.4", -+ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-5.9.4.tgz", -+ "integrity": "sha512-dHkI3/YNJq4b/qQaz+c8LuarD3pY24JqZWfjB8aZx1gtpc2MDILu9L9jpZe1sHpzo/yWFweQVn+U//FhazUxmw==", - "license": "MIT", - "dependencies": { - "jsbn": "1.1.0", -@@ -9994,7 +12609,9 @@ - } - }, - "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": { -@@ -10002,13 +12619,17 @@ - } - }, - "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,11 +12637,15 @@ - }, - "node_modules/is-arrayish": { - "version": "0.2.1", -+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", -+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -10032,6 +12657,8 @@ - }, - "node_modules/is-binary-path": { - "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", -+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" -@@ -10042,6 +12669,8 @@ - }, - "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": { -@@ -10057,6 +12686,8 @@ - }, - "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": { -@@ -10068,6 +12699,8 @@ - }, - "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": { -@@ -10078,10 +12711,31 @@ - } - }, - "node_modules/is-core-module": { -- "version": "2.13.1", -+ "version": "2.15.1", -+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", -+ "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", - "license": "MIT", - "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, -+ "license": "MIT", -+ "dependencies": { -+ "is-typed-array": "^1.1.13" -+ }, -+ "engines": { -+ "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" -@@ -10089,6 +12743,8 @@ - }, - "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": { -@@ -10103,6 +12759,8 @@ - }, - "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": { -@@ -10117,6 +12775,8 @@ - }, - "node_modules/is-extglob": { - "version": "2.1.1", -+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", -+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" -@@ -10124,6 +12784,8 @@ - }, - "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": { -@@ -10132,6 +12794,8 @@ - }, - "node_modules/is-glob": { - "version": "4.0.3", -+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", -+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" -@@ -10141,7 +12805,9 @@ - } - }, - "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": { -@@ -10153,6 +12819,8 @@ - }, - "node_modules/is-number": { - "version": "7.0.0", -+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", -+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "license": "MIT", - "engines": { - "node": ">=0.12.0" -@@ -10160,6 +12828,8 @@ - }, - "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": { -@@ -10174,21 +12844,30 @@ - }, - "node_modules/is-obj": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", -+ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "license": "MIT", - "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": { -@@ -10197,10 +12876,14 @@ - }, - "node_modules/is-property": { - "version": "1.0.2", -+ "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", -+ "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==", - "license": "MIT" - }, - "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": { -@@ -10215,21 +12898,29 @@ - } - }, - "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", -+ "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", -+ "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", -+ "dev": true, - "license": "MIT", - "engines": { -- "node": ">=8" -+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -@@ -10237,6 +12928,8 @@ - }, - "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": { -@@ -10251,6 +12944,8 @@ - }, - "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": { -@@ -10264,22 +12959,26 @@ - } - }, - "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,6 +12989,8 @@ - }, - "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": { -@@ -10301,6 +13002,8 @@ - }, - "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": { -@@ -10312,11 +13015,15 @@ - }, - "node_modules/isarray": { - "version": "2.0.5", -+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", -+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true, - "license": "MIT" - }, - "node_modules/isbinaryfile": { -- "version": "5.0.2", -+ "version": "5.0.3", -+ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.3.tgz", -+ "integrity": "sha512-VR4gNjFaDP8csJQvzInG20JvBj8MaHYLxNOMXysxRbGM7tcsHZwCjhch3FubFtZBkuDbN55i4dUukGeIrzF+6g==", - "dev": true, - "license": "MIT", - "engines": { -@@ -10328,25 +13035,28 @@ - }, - "node_modules/isexe": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", -+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "license": "ISC" - }, - "node_modules/isobject": { - "version": "3.0.1", -+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", -+ "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "license": "MIT", - "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,7 +13065,9 @@ - } - }, - "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": { -@@ -10373,6 +13085,8 @@ - }, - "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": { -@@ -10382,6 +13096,8 @@ - }, - "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": { -@@ -10393,6 +13109,8 @@ - }, - "node_modules/jest-worker": { - "version": "27.5.1", -+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", -+ "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "license": "MIT", - "dependencies": { - "@types/node": "*", -@@ -10405,6 +13123,8 @@ - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", -+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", -+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" -@@ -10417,7 +13137,9 @@ - } - }, - "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": { -@@ -10426,10 +13148,14 @@ - }, - "node_modules/js-tokens": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", -+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", -+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" -@@ -10440,24 +13166,32 @@ - }, - "node_modules/jsbn": { - "version": "1.1.0", -+ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", -+ "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", - "license": "MIT" - }, - "node_modules/jsesc": { -- "version": "2.5.2", -+ "version": "3.0.2", -+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", -+ "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { -- "node": ">=4" -+ "node": ">=6" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", -+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", -+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "license": "MIT" - }, - "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": { -@@ -10471,37 +13205,53 @@ - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", -+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", -+ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", -+ "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==", - "license": "MIT" - }, - "node_modules/json-schema-traverse": { -- "version": "0.4.1", -+ "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", -+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "license": "MIT" - }, - "node_modules/json-schema-typed": { - "version": "7.0.3", -+ "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-7.0.3.tgz", -+ "integrity": "sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==", - "license": "BSD-2-Clause" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", -+ "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, - "license": "MIT" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", -+ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", -+ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "devOptional": true, - "license": "ISC" - }, - "node_modules/json2php": { -- "version": "0.0.7", -+ "version": "0.0.9", -+ "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.9.tgz", -+ "integrity": "sha512-fQMYwvPsQt8hxRnCGyg1r2JVi6yL8Um0DIIawiKiMK9yhAAkcRNj5UsBWoaFvFzPpcWbgw9L6wzj+UMYA702Mw==", - "license": "BSD" - }, - "node_modules/json5": { - "version": "2.2.3", -+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", -+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "license": "MIT", - "bin": { - "json5": "lib/cli.js" -@@ -10512,6 +13262,8 @@ - }, - "node_modules/jsonfile": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", -+ "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "license": "MIT", - "optionalDependencies": { - "graceful-fs": "^4.1.6" -@@ -10519,6 +13271,8 @@ - }, - "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" -@@ -10527,6 +13281,8 @@ - }, - "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": { -@@ -10542,6 +13298,8 @@ - }, - "node_modules/jszip": { - "version": "3.10.1", -+ "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", -+ "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", - "license": "(MIT OR GPL-3.0-or-later)", - "dependencies": { - "lie": "~3.3.0", -@@ -10552,10 +13310,14 @@ - }, - "node_modules/jszip/node_modules/isarray": { - "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", -+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "license": "MIT" - }, - "node_modules/jszip/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==", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", -@@ -10569,10 +13331,14 @@ - }, - "node_modules/jszip/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==", - "license": "MIT" - }, - "node_modules/jszip/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==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" -@@ -10580,6 +13346,8 @@ - }, - "node_modules/keyv": { - "version": "4.5.4", -+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", -+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "license": "MIT", - "dependencies": { - "json-buffer": "3.0.1" -@@ -10587,6 +13355,8 @@ - }, - "node_modules/kind-of": { - "version": "6.0.3", -+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", -+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" -@@ -10594,6 +13364,8 @@ - }, - "node_modules/klona": { - "version": "2.0.6", -+ "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", -+ "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "license": "MIT", - "engines": { - "node": ">= 8" -@@ -10601,15 +13373,21 @@ - }, - "node_modules/known-css-properties": { - "version": "0.29.0", -+ "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.29.0.tgz", -+ "integrity": "sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/lazy-val": { - "version": "1.0.5", -+ "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", -+ "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==", - "license": "MIT" - }, - "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, -@@ -10622,12 +13400,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, -@@ -10643,12 +13425,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, -@@ -10658,10 +13444,14 @@ - }, - "node_modules/leaflet": { - "version": "1.7.1", -+ "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.7.1.tgz", -+ "integrity": "sha512-/xwPEBidtg69Q3HlqPdU3DnrXQOvQU/CCHA1tcDQVzOwm91YMYaILjNp7L4Eaw5Z4sOYdbBz6koWyibppd8Zqw==", - "license": "BSD-2-Clause" - }, - "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": { -@@ -10674,6 +13464,8 @@ - }, - "node_modules/lie": { - "version": "3.3.0", -+ "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", -+ "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", - "license": "MIT", - "dependencies": { - "immediate": "~3.0.5" -@@ -10681,11 +13473,15 @@ - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", -+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", -+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -10700,6 +13496,8 @@ - }, - "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": { -@@ -10708,6 +13506,8 @@ - }, - "node_modules/loader-runner": { - "version": "4.3.0", -+ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", -+ "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "license": "MIT", - "engines": { - "node": ">=6.11.5" -@@ -10715,6 +13515,8 @@ - }, - "node_modules/loader-utils": { - "version": "2.0.4", -+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", -+ "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "license": "MIT", - "dependencies": { - "big.js": "^5.2.2", -@@ -10726,115 +13528,159 @@ - } - }, - "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", -+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", -+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", -+ "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", -+ "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", -+ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", -+ "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true, - "license": "MIT" - }, - "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", -+ "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", -+ "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", - "license": "MIT" - }, - "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", -+ "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", -+ "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "license": "MIT" - }, - "node_modules/lodash.ismatch": { - "version": "4.4.0", -+ "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", -+ "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", -+ "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", -+ "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.kebabcase": { - "version": "4.1.1", -+ "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", -+ "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", -+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", -+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.mergewith": { - "version": "4.6.2", -+ "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", -+ "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.snakecase": { - "version": "4.1.1", -+ "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", -+ "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.startcase": { - "version": "4.4.0", -+ "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz", -+ "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", -+ "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", -+ "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true, - "license": "MIT" - }, - "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", -+ "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", -+ "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.upperfirst": { - "version": "4.3.1", -+ "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", -+ "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", - "dev": true, - "license": "MIT" - }, - "node_modules/log-update": { - "version": "2.3.0", -+ "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", -+ "integrity": "sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==", - "license": "MIT", - "dependencies": { - "ansi-escapes": "^3.0.0", -@@ -10847,6 +13693,8 @@ - }, - "node_modules/log-update/node_modules/ansi-escapes": { - "version": "3.2.0", -+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", -+ "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "license": "MIT", - "engines": { - "node": ">=4" -@@ -10854,6 +13702,8 @@ - }, - "node_modules/log-update/node_modules/cli-cursor": { - "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", -+ "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", - "license": "MIT", - "dependencies": { - "restore-cursor": "^2.0.0" -@@ -10864,6 +13714,8 @@ - }, - "node_modules/log-update/node_modules/mimic-fn": { - "version": "1.2.0", -+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", -+ "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "license": "MIT", - "engines": { - "node": ">=4" -@@ -10871,6 +13723,8 @@ - }, - "node_modules/log-update/node_modules/onetime": { - "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", -+ "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", - "license": "MIT", - "dependencies": { - "mimic-fn": "^1.0.0" -@@ -10881,6 +13735,8 @@ - }, - "node_modules/log-update/node_modules/restore-cursor": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", -+ "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", - "license": "MIT", - "dependencies": { - "onetime": "^2.0.0", -@@ -10890,12 +13746,22 @@ - "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==", -+ "license": "ISC" -+ }, - "node_modules/long": { - "version": "5.2.3", -+ "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", -+ "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", - "license": "Apache-2.0" - }, - "node_modules/lower-case": { - "version": "2.0.2", -+ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", -+ "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" -@@ -10903,6 +13769,8 @@ - }, - "node_modules/lowercase-keys": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", -+ "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "license": "MIT", - "engines": { - "node": ">=8" -@@ -10910,6 +13778,8 @@ - }, - "node_modules/lru-cache": { - "version": "5.1.1", -+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", -+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" -@@ -10917,6 +13787,8 @@ - }, - "node_modules/magic-string": { - "version": "0.25.9", -+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", -+ "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", - "license": "MIT", - "dependencies": { - "sourcemap-codec": "^1.4.8" -@@ -10924,6 +13796,8 @@ - }, - "node_modules/make-dir": { - "version": "3.1.0", -+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", -+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "license": "MIT", - "dependencies": { - "semver": "^6.0.0" -@@ -10937,11 +13811,15 @@ - }, - "node_modules/make-error": { - "version": "1.3.6", -+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", -+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true, - "license": "ISC" - }, - "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": { -@@ -10952,7 +13830,9 @@ - } - }, - "node_modules/marked": { -- "version": "12.0.0", -+ "version": "12.0.2", -+ "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.2.tgz", -+ "integrity": "sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==", - "license": "MIT", - "bin": { - "marked": "bin/marked.js" -@@ -10963,6 +13843,8 @@ - }, - "node_modules/matcher": { - "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", -+ "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", - "license": "MIT", - "optional": true, - "dependencies": { -@@ -10974,6 +13856,8 @@ - }, - "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": "MIT", - "funding": { -@@ -10983,11 +13867,15 @@ - }, - "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, - "license": "CC0-1.0" - }, - "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", - "engines": { -@@ -10996,6 +13884,8 @@ - }, - "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": "Unlicense", - "dependencies": { -@@ -11006,326 +13896,136 @@ - } - }, - "node_modules/meow": { -- "version": "8.1.2", -+ "version": "12.1.1", -+ "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", -+ "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", - "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" -+ "node": ">=16.10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/meow/node_modules/find-up": { -- "version": "4.1.0", -+ "node_modules/merge-descriptors": { -+ "version": "1.0.3", -+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", -+ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", - "dev": true, - "license": "MIT", -- "dependencies": { -- "locate-path": "^5.0.0", -- "path-exists": "^4.0.0" -- }, -- "engines": { -- "node": ">=8" -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/meow/node_modules/locate-path": { -- "version": "5.0.0", -+ "node_modules/merge-stream": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", -+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", -+ "license": "MIT" -+ }, -+ "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", -- "dependencies": { -- "p-locate": "^4.1.0" -- }, - "engines": { -- "node": ">=8" -+ "node": ">= 8" - } - }, -- "node_modules/meow/node_modules/lru-cache": { -- "version": "6.0.0", -+ "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": "ISC", -- "dependencies": { -- "yallist": "^4.0.0" -- }, -+ "license": "MIT", - "engines": { -- "node": ">=10" -+ "node": ">= 0.6" - } - }, -- "node_modules/meow/node_modules/normalize-package-data": { -- "version": "3.0.3", -- "dev": true, -- "license": "BSD-2-Clause", -+ "node_modules/micromatch": { -+ "version": "4.0.8", -+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", -+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", -+ "license": "MIT", - "dependencies": { -- "hosted-git-info": "^4.0.1", -- "is-core-module": "^2.5.0", -- "semver": "^7.3.4", -- "validate-npm-package-license": "^3.0.1" -+ "braces": "^3.0.3", -+ "picomatch": "^2.3.1" - }, - "engines": { -- "node": ">=10" -+ "node": ">=8.6" - } - }, -- "node_modules/meow/node_modules/p-limit": { -- "version": "2.3.0", -+ "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", -- "dependencies": { -- "p-try": "^2.0.0" -+ "bin": { -+ "mime": "cli.js" - }, - "engines": { -- "node": ">=6" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": ">=4.0.0" - } - }, -- "node_modules/meow/node_modules/p-locate": { -- "version": "4.1.0", -- "dev": true, -+ "node_modules/mime-db": { -+ "version": "1.52.0", -+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", -+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "license": "MIT", -- "dependencies": { -- "p-limit": "^2.2.0" -- }, - "engines": { -- "node": ">=8" -+ "node": ">= 0.6" - } - }, -- "node_modules/meow/node_modules/p-try": { -- "version": "2.2.0", -- "dev": true, -+ "node_modules/mime-types": { -+ "version": "2.1.35", -+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", -+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "license": "MIT", -+ "dependencies": { -+ "mime-db": "1.52.0" -+ }, - "engines": { -- "node": ">=6" -+ "node": ">= 0.6" - } - }, -- "node_modules/meow/node_modules/parse-json": { -- "version": "5.2.0", -- "dev": true, -+ "node_modules/mimic-fn": { -+ "version": "3.1.0", -+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", -+ "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", - "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, -+ "node_modules/mimic-response": { -+ "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", -+ "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "license": "MIT", - "engines": { -- "node": ">=8" -+ "node": ">=4" - } - }, -- "node_modules/meow/node_modules/read-pkg": { -- "version": "5.2.0", -+ "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", -- "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": ">=4" - } - }, -- "node_modules/meow/node_modules/read-pkg-up": { -- "version": "7.0.1", -- "dev": true, -+ "node_modules/mini-css-extract-plugin": { -+ "version": "2.4.7", -+ "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz", -+ "integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==", - "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", -- "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/meow/node_modules/read-pkg/node_modules/semver": { -- "version": "5.7.2", -- "dev": true, -- "license": "ISC", -- "bin": { -- "semver": "bin/semver" -- } -- }, -- "node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { -- "version": "0.6.0", -- "dev": true, -- "license": "(MIT OR CC0-1.0)", -- "engines": { -- "node": ">=8" -- } -- }, -- "node_modules/meow/node_modules/semver": { -- "version": "7.5.4", -- "dev": true, -- "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, -- "bin": { -- "semver": "bin/semver.js" -- }, -- "engines": { -- "node": ">=10" -- } -- }, -- "node_modules/meow/node_modules/type-fest": { -- "version": "0.18.1", -- "dev": true, -- "license": "(MIT OR CC0-1.0)", -- "engines": { -- "node": ">=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" -- }, -- "node_modules/merge-stream": { -- "version": "2.0.0", -- "license": "MIT" -- }, -- "node_modules/merge2": { -- "version": "1.4.1", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">= 8" -- } -- }, -- "node_modules/methods": { -- "version": "1.1.2", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">= 0.6" -- } -- }, -- "node_modules/micromatch": { -- "version": "4.0.5", -- "license": "MIT", -- "dependencies": { -- "braces": "^3.0.2", -- "picomatch": "^2.3.1" -- }, -- "engines": { -- "node": ">=8.6" -- } -- }, -- "node_modules/mime": { -- "version": "2.6.0", -- "dev": true, -- "license": "MIT", -- "bin": { -- "mime": "cli.js" -- }, -- "engines": { -- "node": ">=4.0.0" -- } -- }, -- "node_modules/mime-db": { -- "version": "1.52.0", -- "license": "MIT", -- "engines": { -- "node": ">= 0.6" -- } -- }, -- "node_modules/mime-types": { -- "version": "2.1.35", -- "license": "MIT", -- "dependencies": { -- "mime-db": "1.52.0" -- }, -- "engines": { -- "node": ">= 0.6" -- } -- }, -- "node_modules/mimic-fn": { -- "version": "3.1.0", -- "license": "MIT", -- "engines": { -- "node": ">=8" -- } -- }, -- "node_modules/mimic-response": { -- "version": "1.0.1", -- "license": "MIT", -- "engines": { -- "node": ">=4" -- } -- }, -- "node_modules/min-indent": { -- "version": "1.0.1", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=4" -- } -- }, -- "node_modules/mini-css-extract-plugin": { -- "version": "2.4.7", -- "license": "MIT", -- "dependencies": { -- "schema-utils": "^4.0.0" -+ "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 12.13.0" -@@ -11338,36 +14038,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", -+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", -+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", -@@ -11385,11 +14059,15 @@ - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", -+ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true, - "license": "ISC" - }, - "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": { -@@ -11401,6 +14079,8 @@ - }, - "node_modules/minimist": { - "version": "1.2.8", -+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", -+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" -@@ -11408,6 +14088,8 @@ - }, - "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": { -@@ -11419,8 +14101,20 @@ - "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, -+ "license": "MIT", -+ "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": { -@@ -11429,6 +14123,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": { -@@ -11441,6 +14137,8 @@ - }, - "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": { -@@ -11452,11 +14150,15 @@ - }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", -+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "node_modules/mkdirp": { - "version": "0.5.6", -+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", -+ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "license": "MIT", - "dependencies": { - "minimist": "^1.2.6" -@@ -11467,10 +14169,14 @@ - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", -+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", -+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "license": "MIT" - }, - "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": { -@@ -11479,6 +14185,8 @@ - }, - "node_modules/moment": { - "version": "2.30.1", -+ "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", -+ "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", - "license": "MIT", - "engines": { - "node": "*" -@@ -11486,14 +14194,20 @@ - }, - "node_modules/moo": { - "version": "0.5.2", -+ "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", -+ "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==", - "license": "BSD-3-Clause" - }, - "node_modules/ms": { -- "version": "2.1.2", -+ "version": "2.1.3", -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", -+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, - "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": { -@@ -11506,13 +14220,16 @@ - }, - "node_modules/mute-stream": { - "version": "0.0.8", -+ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", -+ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true, - "license": "ISC" - }, - "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==", -+ "license": "MIT", - "dependencies": { - "denque": "^2.1.0", - "generate-function": "^2.3.1", -@@ -11529,6 +14246,8 @@ - }, - "node_modules/mysql2/node_modules/lru-cache": { - "version": "8.0.5", -+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-8.0.5.tgz", -+ "integrity": "sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==", - "license": "ISC", - "engines": { - "node": ">=16.14" -@@ -11536,6 +14255,8 @@ - }, - "node_modules/named-placeholders": { - "version": "1.1.3", -+ "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.3.tgz", -+ "integrity": "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==", - "license": "MIT", - "dependencies": { - "lru-cache": "^7.14.1" -@@ -11546,17 +14267,23 @@ - }, - "node_modules/named-placeholders/node_modules/lru-cache": { - "version": "7.18.3", -+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", -+ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/nan": { -- "version": "2.19.0", -+ "version": "2.22.0", -+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz", -+ "integrity": "sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==", - "license": "MIT" - }, - "node_modules/nanoid": { - "version": "3.3.7", -+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", -+ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", -@@ -11573,15 +14300,21 @@ - }, - "node_modules/napi-build-utils": { - "version": "1.0.2", -+ "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", -+ "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", - "license": "MIT" - }, - "node_modules/natural-compare": { - "version": "1.4.0", -+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", -+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true, - "license": "MIT" - }, - "node_modules/nearley": { - "version": "2.20.1", -+ "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", -+ "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", - "license": "MIT", - "dependencies": { - "commander": "^2.19.0", -@@ -11602,10 +14335,14 @@ - }, - "node_modules/nearley/node_modules/commander": { - "version": "2.20.3", -+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", -+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "license": "MIT" - }, - "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": { -@@ -11614,10 +14351,14 @@ - }, - "node_modules/neo-async": { - "version": "2.6.2", -+ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", -+ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "license": "MIT" - }, - "node_modules/no-case": { - "version": "3.0.4", -+ "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", -+ "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", -@@ -11625,7 +14366,9 @@ - } - }, - "node_modules/node-abi": { -- "version": "3.51.0", -+ "version": "3.71.0", -+ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.71.0.tgz", -+ "integrity": "sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==", - "license": "MIT", - "dependencies": { - "semver": "^7.3.5" -@@ -11634,22 +14377,11 @@ - "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", -+ "version": "7.6.3", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", -+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, - "bin": { - "semver": "bin/semver.js" - }, -@@ -11657,12 +14389,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, -+ "license": "MIT", -+ "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": { -@@ -11681,9 +14419,10 @@ - } - }, - "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==", -+ "license": "MPL-2.0", - "dependencies": { - "big-integer": "^1.6.51", - "long": "^5.2.3" -@@ -11691,6 +14430,8 @@ - }, - "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": { -@@ -11699,6 +14440,8 @@ - }, - "node_modules/node-loader": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/node-loader/-/node-loader-2.0.0.tgz", -+ "integrity": "sha512-I5VN34NO4/5UYJaUBtkrODPWxbobrE4hgDqPrjB25yPkonFhCmZ146vTH+Zg417E9Iwoh1l/MbRs1apc5J295Q==", - "license": "MIT", - "dependencies": { - "loader-utils": "^2.0.0" -@@ -11715,11 +14458,15 @@ - } - }, - "node_modules/node-releases": { -- "version": "2.0.13", -+ "version": "2.0.18", -+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", -+ "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", - "license": "MIT" - }, - "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": { -@@ -11731,11 +14478,15 @@ - }, - "node_modules/normalize-package-data/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, - "license": "ISC" - }, - "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": { -@@ -11744,6 +14495,8 @@ - }, - "node_modules/normalize-path": { - "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", -+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" -@@ -11751,6 +14504,8 @@ - }, - "node_modules/normalize-url": { - "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", -+ "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "license": "MIT", - "engines": { - "node": ">=10" -@@ -11760,17 +14515,38 @@ - } - }, - "node_modules/npm-run-path": { -- "version": "4.0.1", -+ "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, - "license": "MIT", - "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, -+ "license": "MIT", -+ "engines": { -+ "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", -+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", -+ "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0" -@@ -11781,6 +14557,8 @@ - }, - "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": { -@@ -11788,15 +14566,22 @@ - } - }, - "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": { -@@ -11804,12 +14589,14 @@ - } - }, - "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 +14608,15 @@ - } - }, - "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,11 +14627,15 @@ - }, - "node_modules/obuf": { - "version": "1.1.2", -+ "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", -+ "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -11854,6 +14647,8 @@ - }, - "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": { -@@ -11862,6 +14657,8 @@ - }, - "node_modules/once": { - "version": "1.4.0", -+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", -+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "license": "ISC", - "dependencies": { - "wrappy": "1" -@@ -11869,6 +14666,8 @@ - }, - "node_modules/onetime": { - "version": "5.1.2", -+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", -+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "license": "MIT", - "dependencies": { - "mimic-fn": "^2.1.0" -@@ -11882,6 +14681,8 @@ - }, - "node_modules/onetime/node_modules/mimic-fn": { - "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", -+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "license": "MIT", - "engines": { - "node": ">=6" -@@ -11889,6 +14690,8 @@ - }, - "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": { -@@ -11904,16 +14707,18 @@ - } - }, - "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,6 +14726,8 @@ - }, - "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": { -@@ -11929,35 +14736,49 @@ - }, - "node_modules/p-cancelable": { - "version": "2.1.1", -+ "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", -+ "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "license": "MIT", - "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": { -@@ -11970,6 +14791,8 @@ - }, - "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": { -@@ -11977,19 +14800,31 @@ - } - }, - "node_modules/p-try": { -- "version": "1.0.0", -- "dev": true, -+ "version": "2.2.0", -+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", -+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "license": "MIT", - "engines": { -- "node": ">=4" -+ "node": ">=6" - } - }, -+ "node_modules/package-json-from-dist": { -+ "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", -+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", -+ "dev": true, -+ "license": "BlueOak-1.0.0" -+ }, - "node_modules/pako": { - "version": "1.0.11", -+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", -+ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "license": "(MIT AND Zlib)" - }, - "node_modules/param-case": { - "version": "3.0.4", -+ "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", -+ "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", -@@ -11998,6 +14833,8 @@ - }, - "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": { -@@ -12009,6 +14846,8 @@ - }, - "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": { -@@ -12021,6 +14860,8 @@ - }, - "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": { -@@ -12029,6 +14870,8 @@ - }, - "node_modules/pascal-case": { - "version": "3.1.2", -+ "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", -+ "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", -@@ -12036,14 +14879,19 @@ - } - }, - "node_modules/path-exists": { -- "version": "3.0.0", -+ "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, - "license": "MIT", - "engines": { -- "node": ">=4" -+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", -+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" -@@ -12051,6 +14899,8 @@ - }, - "node_modules/path-key": { - "version": "3.1.1", -+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", -+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "license": "MIT", - "engines": { - "node": ">=8" -@@ -12058,10 +14908,14 @@ - }, - "node_modules/path-parse": { - "version": "1.0.7", -+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", -+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "license": "MIT" - }, - "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": { -@@ -12076,20 +14930,23 @@ - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { -- "version": "10.2.2", -+ "version": "10.4.3", -+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", -+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true, -- "license": "ISC", -- "engines": { -- "node": "14 || >=16.14" -- } -+ "license": "ISC" - }, - "node_modules/path-to-regexp": { -- "version": "0.1.7", -+ "version": "0.1.10", -+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", -+ "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -12098,6 +14955,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": { -@@ -12109,12 +14968,15 @@ - }, - "node_modules/pend": { - "version": "1.2.0", -+ "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", -+ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "license": "MIT" - }, - "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==", -+ "license": "MIT", - "dependencies": { - "pg-connection-string": "^2.6.4", - "pg-pool": "^3.6.2", -@@ -12139,15 +15001,21 @@ - }, - "node_modules/pg-cloudflare": { - "version": "1.1.1", -+ "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", -+ "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", - "license": "MIT", - "optional": true - }, - "node_modules/pg-connection-string": { - "version": "2.5.0", -+ "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz", -+ "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==", - "license": "MIT" - }, - "node_modules/pg-cursor": { -- "version": "2.10.3", -+ "version": "2.12.0", -+ "resolved": "https://registry.npmjs.org/pg-cursor/-/pg-cursor-2.12.0.tgz", -+ "integrity": "sha512-rppw54OnuYZfMUjiJI2zJMwAjjt2V9EtLUb+t7V5tqwSE5Jxod+7vA7Y0FI6Nq976jNLciA0hoVkwvjjB8qzEw==", - "license": "MIT", - "peerDependencies": { - "pg": "^8" -@@ -12155,26 +15023,32 @@ - }, - "node_modules/pg-int8": { - "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", -+ "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", - "license": "ISC", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/pg-pool": { -- "version": "3.6.2", -- "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", -- "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", -+ "version": "3.7.0", -+ "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.7.0.tgz", -+ "integrity": "sha512-ZOBQForurqh4zZWjrgSwwAtzJ7QiRX0ovFkZr2klsen3Nm0aoh33Ls0fzfv3imeH/nw/O27cjdz5kzYJfeGp/g==", -+ "license": "MIT", - "peerDependencies": { - "pg": ">=8.0" - } - }, - "node_modules/pg-protocol": { -- "version": "1.6.1", -- "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", -- "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" -+ "version": "1.7.0", -+ "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.7.0.tgz", -+ "integrity": "sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ==", -+ "license": "MIT" - }, - "node_modules/pg-query-stream": { - "version": "4.2.4", -+ "resolved": "https://registry.npmjs.org/pg-query-stream/-/pg-query-stream-4.2.4.tgz", -+ "integrity": "sha512-Et3gTrWn4C2rj4LVioNq1QDd7aH/3mSJcBm79jZALv3wopvx9bWENtbOYZbHQ6KM+IkfFxs0JF1ZLjMDJ9/N6Q==", - "license": "MIT", - "dependencies": { - "pg-cursor": "^2.7.4" -@@ -12182,6 +15056,8 @@ - }, - "node_modules/pg-types": { - "version": "2.2.0", -+ "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", -+ "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", - "license": "MIT", - "dependencies": { - "pg-int8": "1.0.1", -@@ -12195,12 +15071,15 @@ - } - }, - "node_modules/pg/node_modules/pg-connection-string": { -- "version": "2.6.4", -- "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", -- "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" -+ "version": "2.7.0", -+ "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.7.0.tgz", -+ "integrity": "sha512-PI2W9mv53rXJQEOb8xNR8lH7Hr+EKa6oJa38zsK0S/ky2er16ios1wLKhZyxzD7jUReiWokc9WK5nxSnC7W1TA==", -+ "license": "MIT" - }, - "node_modules/pgpass": { - "version": "1.0.5", -+ "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", -+ "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", - "license": "MIT", - "dependencies": { - "split2": "^4.1.0" -@@ -12208,6 +15087,8 @@ - }, - "node_modules/pgsql-ast-parser": { - "version": "7.2.1", -+ "resolved": "https://registry.npmjs.org/pgsql-ast-parser/-/pgsql-ast-parser-7.2.1.tgz", -+ "integrity": "sha512-j8scRJdTBSA1W6nETwevP2dH+BQGdPPFuc0mXolvCRIkRQGTpPoo1hH4a7EQ2KkA4N4quAcNvhOyaIcM7W00yg==", - "license": "MIT", - "dependencies": { - "moo": "^0.5.1", -@@ -12215,11 +15096,15 @@ - } - }, - "node_modules/picocolors": { -- "version": "1.0.0", -+ "version": "1.1.1", -+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", -+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", -+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", -+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "license": "MIT", - "engines": { - "node": ">=8.6" -@@ -12230,6 +15115,8 @@ - }, - "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": { -@@ -12241,6 +15128,8 @@ - }, - "node_modules/pinia": { - "version": "2.1.7", -+ "resolved": "https://registry.npmjs.org/pinia/-/pinia-2.1.7.tgz", -+ "integrity": "sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==", - "license": "MIT", - "dependencies": { - "@vue/devtools-api": "^6.5.0", -@@ -12264,7 +15153,9 @@ - } - }, - "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": { -@@ -12289,6 +15180,8 @@ - }, - "node_modules/pkg-dir": { - "version": "4.2.0", -+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", -+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" -@@ -12299,6 +15192,8 @@ - }, - "node_modules/pkg-dir/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==", - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", -@@ -12310,6 +15205,8 @@ - }, - "node_modules/pkg-dir/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==", - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" -@@ -12320,6 +15217,8 @@ - }, - "node_modules/pkg-dir/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==", - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" -@@ -12333,6 +15232,8 @@ - }, - "node_modules/pkg-dir/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==", - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" -@@ -12341,15 +15242,10 @@ - "node": ">=8" - } - }, -- "node_modules/pkg-dir/node_modules/p-try": { -- "version": "2.2.0", -- "license": "MIT", -- "engines": { -- "node": ">=6" -- } -- }, - "node_modules/pkg-dir/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==", - "license": "MIT", - "engines": { - "node": ">=8" -@@ -12357,6 +15253,8 @@ - }, - "node_modules/pkg-up": { - "version": "3.1.0", -+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", -+ "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", - "license": "MIT", - "dependencies": { - "find-up": "^3.0.0" -@@ -12367,6 +15265,8 @@ - }, - "node_modules/pkg-up/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==", - "license": "MIT", - "dependencies": { - "locate-path": "^3.0.0" -@@ -12377,6 +15277,8 @@ - }, - "node_modules/pkg-up/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==", - "license": "MIT", - "dependencies": { - "p-locate": "^3.0.0", -@@ -12388,6 +15290,8 @@ - }, - "node_modules/pkg-up/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==", - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" -@@ -12401,6 +15305,8 @@ - }, - "node_modules/pkg-up/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==", - "license": "MIT", - "dependencies": { - "p-limit": "^2.0.0" -@@ -12409,15 +15315,19 @@ - "node": ">=6" - } - }, -- "node_modules/pkg-up/node_modules/p-try": { -- "version": "2.2.0", -+ "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==", - "license": "MIT", - "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", -@@ -12433,6 +15343,8 @@ - }, - "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": { -@@ -12444,6 +15356,8 @@ - }, - "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": { -@@ -12455,10 +15369,20 @@ - "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, -+ "license": "MIT", -+ "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.47", -+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", -+ "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", - "funding": [ - { - "type": "opencollective", -@@ -12473,10 +15397,11 @@ - "url": "https://github.com/sponsors/ai" - } - ], -+ "license": "MIT", - "dependencies": { - "nanoid": "^3.3.7", -- "picocolors": "^1.0.0", -- "source-map-js": "^1.2.0" -+ "picocolors": "^1.1.0", -+ "source-map-js": "^1.2.1" - }, - "engines": { - "node": "^10 || ^12 || >=14" -@@ -12484,6 +15409,8 @@ - }, - "node_modules/postcss-html": { - "version": "1.5.0", -+ "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-1.5.0.tgz", -+ "integrity": "sha512-kCMRWJRHKicpA166kc2lAVUGxDZL324bkj/pVOb6RhjB0Z5Krl7mN0AsVkBhVIRZZirY0lyQXG38HCVaoKVNoA==", - "license": "MIT", - "dependencies": { - "htmlparser2": "^8.0.0", -@@ -12496,16 +15423,22 @@ - } - }, - "node_modules/postcss-html/node_modules/js-tokens": { -- "version": "8.0.2", -+ "version": "8.0.3", -+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-8.0.3.tgz", -+ "integrity": "sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==", - "license": "MIT" - }, - "node_modules/postcss-media-query-parser": { - "version": "0.2.3", -+ "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", -+ "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", - "dev": true, - "license": "MIT" - }, - "node_modules/postcss-modules-extract-imports": { -- "version": "3.0.0", -+ "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==", - "license": "ISC", - "engines": { - "node": "^10 || ^12 || >= 14" -@@ -12515,7 +15448,9 @@ - } - }, - "node_modules/postcss-modules-local-by-default": { -- "version": "4.0.3", -+ "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==", - "license": "MIT", - "dependencies": { - "icss-utils": "^5.0.0", -@@ -12530,7 +15465,9 @@ - } - }, - "node_modules/postcss-modules-scope": { -- "version": "3.0.0", -+ "version": "3.2.0", -+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", -+ "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", - "license": "ISC", - "dependencies": { - "postcss-selector-parser": "^6.0.4" -@@ -12544,6 +15481,8 @@ - }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", -+ "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "license": "ISC", - "dependencies": { - "icss-utils": "^5.0.0" -@@ -12556,12 +15495,16 @@ - } - }, - "node_modules/postcss-resolve-nested-selector": { -- "version": "0.1.1", -+ "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, - "license": "MIT" - }, - "node_modules/postcss-safe-parser": { - "version": "6.0.0", -+ "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", -+ "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", - "license": "MIT", - "engines": { - "node": ">=12.0" -@@ -12575,7 +15518,9 @@ - } - }, - "node_modules/postcss-selector-parser": { -- "version": "6.0.13", -+ "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==", - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", -@@ -12587,10 +15532,14 @@ - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", -+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", -+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "license": "MIT" - }, - "node_modules/postgres-array": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", -+ "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", - "license": "MIT", - "engines": { - "node": ">=4" -@@ -12598,6 +15547,8 @@ - }, - "node_modules/postgres-bytea": { - "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", -+ "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" -@@ -12605,6 +15556,8 @@ - }, - "node_modules/postgres-date": { - "version": "1.0.7", -+ "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", -+ "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" -@@ -12612,6 +15565,8 @@ - }, - "node_modules/postgres-interval": { - "version": "1.2.0", -+ "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", -+ "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", - "license": "MIT", - "dependencies": { - "xtend": "^4.0.0" -@@ -12621,7 +15576,9 @@ - } - }, - "node_modules/prebuild-install": { -- "version": "7.1.1", -+ "version": "7.1.2", -+ "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz", -+ "integrity": "sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==", - "license": "MIT", - "dependencies": { - "detect-libc": "^2.0.0", -@@ -12646,6 +15603,8 @@ - }, - "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": { -@@ -12654,6 +15613,8 @@ - }, - "node_modules/pretty-error": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", -+ "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.20", -@@ -12662,10 +15623,14 @@ - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", -+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "license": "MIT" - }, - "node_modules/progress": { - "version": "2.0.3", -+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", -+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "license": "MIT", - "engines": { - "node": ">=0.4.0" -@@ -12673,6 +15638,8 @@ - }, - "node_modules/progress-webpack-plugin": { - "version": "1.0.16", -+ "resolved": "https://registry.npmjs.org/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz", -+ "integrity": "sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==", - "license": "MIT", - "dependencies": { - "chalk": "^2.1.0", -@@ -12688,6 +15655,8 @@ - }, - "node_modules/progress-webpack-plugin/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==", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" -@@ -12698,6 +15667,8 @@ - }, - "node_modules/progress-webpack-plugin/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==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", -@@ -12710,6 +15681,8 @@ - }, - "node_modules/progress-webpack-plugin/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==", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" -@@ -12717,10 +15690,14 @@ - }, - "node_modules/progress-webpack-plugin/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==", - "license": "MIT" - }, - "node_modules/progress-webpack-plugin/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==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" -@@ -12728,6 +15705,8 @@ - }, - "node_modules/progress-webpack-plugin/node_modules/figures": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", -+ "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", - "license": "MIT", - "dependencies": { - "escape-string-regexp": "^1.0.5" -@@ -12738,6 +15717,8 @@ - }, - "node_modules/progress-webpack-plugin/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==", - "license": "MIT", - "engines": { - "node": ">=4" -@@ -12745,6 +15726,8 @@ - }, - "node_modules/progress-webpack-plugin/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==", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" -@@ -12755,6 +15738,8 @@ - }, - "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": { -@@ -12767,6 +15752,8 @@ - }, - "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": { -@@ -12779,6 +15766,8 @@ - }, - "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": { -@@ -12786,7 +15775,9 @@ - } - }, - "node_modules/pump": { -- "version": "3.0.0", -+ "version": "3.0.2", -+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", -+ "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.1.0", -@@ -12795,6 +15786,8 @@ - }, - "node_modules/punycode": { - "version": "2.3.1", -+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", -+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "license": "MIT", - "engines": { - "node": ">=6" -@@ -12802,6 +15795,9 @@ - }, - "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": { -@@ -12810,11 +15806,13 @@ - } - }, - "node_modules/qs": { -- "version": "6.11.0", -+ "version": "6.13.0", -+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", -+ "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { -- "side-channel": "^1.0.4" -+ "side-channel": "^1.0.6" - }, - "engines": { - "node": ">=0.6" -@@ -12825,6 +15823,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": [ - { -@@ -12844,6 +15844,8 @@ - }, - "node_modules/quick-lru": { - "version": "5.1.1", -+ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", -+ "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "license": "MIT", - "engines": { - "node": ">=10" -@@ -12854,10 +15856,14 @@ - }, - "node_modules/railroad-diagrams": { - "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", -+ "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==", - "license": "CC0-1.0" - }, - "node_modules/randexp": { - "version": "0.4.6", -+ "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", -+ "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", - "license": "MIT", - "dependencies": { - "discontinuous-range": "1.0.0", -@@ -12869,6 +15875,8 @@ - }, - "node_modules/randombytes": { - "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", -+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.1.0" -@@ -12876,6 +15884,8 @@ - }, - "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": { -@@ -12884,6 +15894,8 @@ - }, - "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": { -@@ -12898,6 +15910,8 @@ - }, - "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": { -@@ -12906,6 +15920,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": { -@@ -12917,6 +15933,8 @@ - }, - "node_modules/rc": { - "version": "1.2.8", -+ "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", -+ "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "dependencies": { - "deep-extend": "^0.6.0", -@@ -12928,8 +15946,16 @@ - "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==", -+ "license": "ISC" -+ }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", -+ "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" -@@ -12937,6 +15963,8 @@ - }, - "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": { -@@ -12953,6 +15981,8 @@ - }, - "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": { -@@ -12966,6 +15996,8 @@ - }, - "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": { -@@ -12976,8 +16008,83 @@ - "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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": { -@@ -12989,6 +16096,8 @@ - }, - "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": { -@@ -12997,6 +16106,8 @@ - }, - "node_modules/readable-stream": { - "version": "3.6.2", -+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", -+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", -@@ -13009,6 +16120,8 @@ - }, - "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, -@@ -13018,6 +16131,8 @@ - }, - "node_modules/readdirp": { - "version": "3.6.0", -+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", -+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" -@@ -13028,6 +16143,8 @@ - }, - "node_modules/rechoir": { - "version": "0.7.1", -+ "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", -+ "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", - "license": "MIT", - "dependencies": { - "resolve": "^1.9.0" -@@ -13038,6 +16155,8 @@ - }, - "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": { -@@ -13050,11 +16169,15 @@ - }, - "node_modules/regenerate": { - "version": "1.4.2", -+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", -+ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true, - "license": "MIT" - }, - "node_modules/regenerate-unicode-properties": { -- "version": "10.1.1", -+ "version": "10.2.0", -+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", -+ "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", - "dev": true, - "license": "MIT", - "dependencies": { -@@ -13065,12 +16188,16 @@ - } - }, - "node_modules/regenerator-runtime": { -- "version": "0.14.0", -+ "version": "0.14.1", -+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", -+ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -13078,13 +16205,16 @@ - } - }, - "node_modules/regexp.prototype.flags": { -- "version": "1.5.1", -+ "version": "1.5.3", -+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", -+ "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", - "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.7", -+ "define-properties": "^1.2.1", -+ "es-errors": "^1.3.0", -+ "set-function-name": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" -@@ -13095,6 +16225,8 @@ - }, - "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": { -@@ -13105,14 +16237,16 @@ - } - }, - "node_modules/regexpu-core": { -- "version": "5.3.2", -+ "version": "6.1.1", -+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.1.1.tgz", -+ "integrity": "sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==", - "dev": true, - "license": "MIT", - "dependencies": { -- "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", -- "regenerate-unicode-properties": "^10.1.0", -- "regjsparser": "^0.9.1", -+ "regenerate-unicode-properties": "^10.2.0", -+ "regjsgen": "^0.8.0", -+ "regjsparser": "^0.11.0", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, -@@ -13120,26 +16254,30 @@ - "node": ">=4" - } - }, -+ "node_modules/regjsgen": { -+ "version": "0.8.0", -+ "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", -+ "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", -+ "dev": true, -+ "license": "MIT" -+ }, - "node_modules/regjsparser": { -- "version": "0.9.1", -+ "version": "0.11.1", -+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.11.1.tgz", -+ "integrity": "sha512-1DHODs4B8p/mQHU9kr+jv8+wIC9mtG4eBHxWxIq5mhjE3D5oORhCc6deRKzTjs9DcfRFmj9BHSDguZklqCGFWQ==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { -- "jsesc": "~0.5.0" -+ "jsesc": "~3.0.2" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, -- "node_modules/regjsparser/node_modules/jsesc": { -- "version": "0.5.0", -- "dev": true, -- "bin": { -- "jsesc": "bin/jsesc" -- } -- }, - "node_modules/relateurl": { - "version": "0.2.7", -+ "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", -+ "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", - "license": "MIT", - "engines": { - "node": ">= 0.10" -@@ -13147,6 +16285,8 @@ - }, - "node_modules/renderkid": { - "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", -+ "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", - "license": "MIT", - "dependencies": { - "css-select": "^4.1.3", -@@ -13158,6 +16298,8 @@ - }, - "node_modules/renderkid/node_modules/dom-serializer": { - "version": "1.4.1", -+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", -+ "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", -@@ -13170,6 +16312,8 @@ - }, - "node_modules/renderkid/node_modules/domhandler": { - "version": "4.3.1", -+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", -+ "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.2.0" -@@ -13183,6 +16327,8 @@ - }, - "node_modules/renderkid/node_modules/domutils": { - "version": "2.8.0", -+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", -+ "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^1.0.1", -@@ -13195,6 +16341,8 @@ - }, - "node_modules/renderkid/node_modules/entities": { - "version": "2.2.0", -+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", -+ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" -@@ -13202,6 +16350,8 @@ - }, - "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", - { -@@ -13219,6 +16369,8 @@ - }, - "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": { -@@ -13227,6 +16379,8 @@ - }, - "node_modules/require-from-string": { - "version": "2.0.2", -+ "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==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" -@@ -13234,16 +16388,22 @@ - }, - "node_modules/require-main-filename": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", -+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true, - "license": "ISC" - }, - "node_modules/requires-port": { - "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", -+ "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/resolve": { - "version": "1.22.8", -+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", -+ "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", -@@ -13259,10 +16419,14 @@ - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", -+ "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", -+ "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "license": "MIT" - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", -+ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "license": "MIT", - "dependencies": { - "resolve-from": "^5.0.0" -@@ -13271,23 +16435,19 @@ - "node": ">=8" - } - }, -- "node_modules/resolve-cwd/node_modules/resolve-from": { -+ "node_modules/resolve-from": { - "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", -+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "license": "MIT", - "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", -+ "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", -+ "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "license": "MIT", - "dependencies": { - "lowercase-keys": "^2.0.0" -@@ -13298,6 +16458,8 @@ - }, - "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": { -@@ -13308,8 +16470,17 @@ - "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, -+ "license": "ISC" -+ }, - "node_modules/ret": { - "version": "0.1.15", -+ "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", -+ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "license": "MIT", - "engines": { - "node": ">=0.12" -@@ -13317,6 +16488,8 @@ - }, - "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": { -@@ -13325,6 +16498,8 @@ - }, - "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": { -@@ -13334,6 +16509,9 @@ - }, - "node_modules/rimraf": { - "version": "3.0.2", -+ "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", - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" -@@ -13347,6 +16525,8 @@ - }, - "node_modules/roarr": { - "version": "2.15.4", -+ "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", -+ "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { -@@ -13363,6 +16543,8 @@ - }, - "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": { -@@ -13371,6 +16553,8 @@ - }, - "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": [ - { -@@ -13393,6 +16577,8 @@ - }, - "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": { -@@ -13404,16 +16590,20 @@ - }, - "node_modules/rxjs/node_modules/tslib": { - "version": "1.14.1", -+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", -+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true, - "license": "0BSD" - }, - "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 +16616,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", -@@ -13443,24 +16635,33 @@ - "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", -+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", -+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "license": "MIT" - }, - "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": { -@@ -13469,6 +16670,8 @@ - }, - "node_modules/sass": { - "version": "1.42.1", -+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.42.1.tgz", -+ "integrity": "sha512-/zvGoN8B7dspKc5mC6HlaygyCBRvnyzzgD5khiaCfglWztY99cYoiTUksVx11NlnemrcfH5CEaCpsUKoW0cQqg==", - "license": "MIT", - "dependencies": { - "chokidar": ">=3.0.0 <4.0.0" -@@ -13482,6 +16685,8 @@ - }, - "node_modules/sass-loader": { - "version": "12.3.0", -+ "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.3.0.tgz", -+ "integrity": "sha512-6l9qwhdOb7qSrtOu96QQ81LVl8v6Dp9j1w3akOm0aWHyrTYtagDt5+kS32N4yq4hHk3M+rdqoRMH+lIdqvW6HA==", - "license": "MIT", - "dependencies": { - "klona": "^2.0.4", -@@ -13513,11 +16718,15 @@ - } - }, - "node_modules/sax": { -- "version": "1.3.0", -+ "version": "1.4.1", -+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", -+ "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", - "license": "ISC" - }, - "node_modules/schema-utils": { - "version": "2.7.1", -+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", -+ "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.5", -@@ -13532,13 +16741,48 @@ - "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==", -+ "license": "MIT", -+ "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==", -+ "license": "MIT", -+ "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==", -+ "license": "MIT" -+ }, - "node_modules/select-hose": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", -+ "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -13551,6 +16795,8 @@ - }, - "node_modules/semver": { - "version": "6.3.1", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", -+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" -@@ -13558,11 +16804,15 @@ - }, - "node_modules/semver-compare": { - "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", -+ "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", - "license": "MIT", - "optional": true - }, - "node_modules/send": { -- "version": "0.18.0", -+ "version": "0.19.0", -+ "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", -+ "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", - "dev": true, - "license": "MIT", - "dependencies": { -@@ -13586,6 +16836,8 @@ - }, - "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": { -@@ -13594,11 +16846,25 @@ - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", -+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true, - "license": "MIT" - }, -+ "node_modules/send/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/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": { -@@ -13608,16 +16874,15 @@ - "node": ">=4" - } - }, -- "node_modules/send/node_modules/ms": { -- "version": "2.1.3", -- "dev": true, -- "license": "MIT" -- }, - "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", -+ "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", -+ "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", - "license": "MIT", - "optional": true, - "dependencies": { -@@ -13632,6 +16897,8 @@ - }, - "node_modules/serialize-error/node_modules/type-fest": { - "version": "0.13.1", -+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", -+ "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", - "license": "(MIT OR CC0-1.0)", - "optional": true, - "engines": { -@@ -13643,6 +16910,8 @@ - }, - "node_modules/serialize-javascript": { - "version": "6.0.2", -+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", -+ "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", - "license": "BSD-3-Clause", - "dependencies": { - "randombytes": "^2.1.0" -@@ -13650,6 +16919,8 @@ - }, - "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": { -@@ -13667,6 +16938,8 @@ - }, - "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": { -@@ -13675,6 +16948,8 @@ - }, - "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": { -@@ -13683,6 +16958,8 @@ - }, - "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": { -@@ -13697,21 +16974,29 @@ - }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", -+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", -+ "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true, - "license": "ISC" - }, - "node_modules/serve-index/node_modules/ms": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", -+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true, - "license": "MIT" - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", -+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", -+ "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true, - "license": "ISC" - }, - "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": { -@@ -13719,14 +17004,16 @@ - } - }, - "node_modules/serve-static": { -- "version": "1.15.0", -+ "version": "1.16.2", -+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", -+ "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", - "dev": true, - "license": "MIT", - "dependencies": { -- "encodeurl": "~1.0.2", -+ "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", -- "send": "0.18.0" -+ "send": "0.19.0" - }, - "engines": { - "node": ">= 0.8.0" -@@ -13734,31 +17021,40 @@ - }, - "node_modules/set-blocking": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", -+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true, - "license": "ISC" - }, - "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,15 +17062,21 @@ - }, - "node_modules/setimmediate": { - "version": "1.0.5", -+ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", -+ "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", - "license": "MIT" - }, - "node_modules/setprototypeof": { - "version": "1.2.0", -+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", -+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true, - "license": "ISC" - }, - "node_modules/shallow-clone": { - "version": "3.0.1", -+ "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", -+ "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.2" -@@ -13785,6 +17087,8 @@ - }, - "node_modules/shebang-command": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", -+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" -@@ -13795,30 +17099,49 @@ - }, - "node_modules/shebang-regex": { - "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", -+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "license": "MIT", - "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, -+ "license": "ISC", -+ "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", -@@ -13837,6 +17160,8 @@ - }, - "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", -@@ -13860,6 +17185,8 @@ - }, - "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": { -@@ -13869,24 +17196,12 @@ - "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,21 +17209,48 @@ - "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" -+ "license": "MIT", -+ "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, -+ "license": "MIT", -+ "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": { -@@ -13919,25 +17261,32 @@ - }, - "node_modules/sortablejs": { - "version": "1.14.0", -+ "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz", -+ "integrity": "sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==", - "license": "MIT" - }, - "node_modules/source-map": { - "version": "0.6.1", -+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", -+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { -- "version": "1.2.0", -- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", -- "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", -+ "version": "1.2.1", -+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", -+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", -+ "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", -+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", -+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", -@@ -13946,10 +17295,15 @@ - }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", -+ "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", -+ "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", -+ "deprecated": "Please use @jridgewell/sourcemap-codec instead", - "license": "MIT" - }, - "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": { -@@ -13958,12 +17312,16 @@ - } - }, - "node_modules/spdx-exceptions": { -- "version": "2.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, - "license": "CC-BY-3.0" - }, - "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": { -@@ -13972,12 +17330,16 @@ - } - }, - "node_modules/spdx-license-ids": { -- "version": "3.0.16", -+ "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, - "license": "CC0-1.0" - }, - "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": { -@@ -13993,6 +17355,8 @@ - }, - "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": { -@@ -14006,10 +17370,14 @@ - }, - "node_modules/spectre.css": { - "version": "0.5.9", -+ "resolved": "https://registry.npmjs.org/spectre.css/-/spectre.css-0.5.9.tgz", -+ "integrity": "sha512-9jUqwZmCnvflrxFGcK+ize43TvjwDjqMwZPVubEtSIHzvinH0TBUESm1LcOJx3Ur7bdPaeOHQIjOqBl1Y5kLFw==", - "license": "MIT" - }, - "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": { -@@ -14021,6 +17389,8 @@ - }, - "node_modules/split2": { - "version": "4.2.0", -+ "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", -+ "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - "license": "ISC", - "engines": { - "node": ">= 10.x" -@@ -14028,10 +17398,14 @@ - }, - "node_modules/sprintf-js": { - "version": "1.1.2", -+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", -+ "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", - "license": "BSD-3-Clause" - }, - "node_modules/sql-formatter": { - "version": "13.0.4", -+ "resolved": "https://registry.npmjs.org/sql-formatter/-/sql-formatter-13.0.4.tgz", -+ "integrity": "sha512-6pns27iQ5yT8jmle4cqvpfXNl29/AGOT4KtmzhtI2zgH1J0RbpZdduqTRzem7UCta+gvrj4HC1O9l6mTSUHoRg==", - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1", -@@ -14043,7 +17417,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", - { -@@ -14058,6 +17434,8 @@ - }, - "node_modules/sqlstring": { - "version": "2.3.3", -+ "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.3.tgz", -+ "integrity": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" -@@ -14065,6 +17443,8 @@ - }, - "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,6 +17460,9 @@ - }, - "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": { -@@ -14108,6 +17491,8 @@ - }, - "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": { -@@ -14119,6 +17504,8 @@ - }, - "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": { -@@ -14132,6 +17519,8 @@ - }, - "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": { -@@ -14142,6 +17531,8 @@ - }, - "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": { -@@ -14150,11 +17541,30 @@ - }, - "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, - "license": "MIT" - }, -+ "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": "ISC", -+ "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": { -@@ -14163,6 +17573,8 @@ - }, - "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": { -@@ -14178,6 +17590,8 @@ - }, - "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": { -@@ -14186,6 +17600,8 @@ - }, - "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": { -@@ -14198,19 +17614,10 @@ - "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": { -@@ -14225,6 +17632,8 @@ - }, - "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": { -@@ -14239,6 +17648,8 @@ - }, - "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": { -@@ -14246,12 +17657,11 @@ - } - }, - "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,6 +17671,8 @@ - }, - "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": { -@@ -14272,6 +17684,8 @@ - }, - "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": { -@@ -14288,6 +17702,8 @@ - }, - "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": { -@@ -14302,6 +17718,8 @@ - }, - "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": { -@@ -14313,24 +17731,15 @@ - }, - "node_modules/standard-version/node_modules/wrap-ansi/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==", - "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" -- }, - "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": { -@@ -14346,8 +17755,33 @@ - "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, -+ "license": "ISC", -+ "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, -+ "license": "MIT", -+ "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": { -@@ -14356,6 +17790,8 @@ - }, - "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": { -@@ -14364,6 +17800,8 @@ - }, - "node_modules/string_decoder": { - "version": "1.3.0", -+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", -+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" -@@ -14371,6 +17809,8 @@ - }, - "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": { -@@ -14385,6 +17825,8 @@ - "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": { -@@ -14397,13 +17839,16 @@ - } - }, - "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 +17858,33 @@ - } - }, - "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,11 +17892,16 @@ - }, - "node_modules/stringify-package": { - "version": "1.0.1", -+ "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, - "license": "ISC" - }, - "node_modules/strip-ansi": { - "version": "6.0.1", -+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", -+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" -@@ -14456,6 +17913,8 @@ - "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": { -@@ -14467,6 +17926,8 @@ - }, - "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": { -@@ -14474,14 +17935,22 @@ - } - }, - "node_modules/strip-final-newline": { -- "version": "2.0.0", -+ "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, - "license": "MIT", - "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": { -@@ -14493,6 +17962,8 @@ - }, - "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": { -@@ -14503,7 +17974,9 @@ - } - }, - "node_modules/style-loader": { -- "version": "3.3.3", -+ "version": "3.3.4", -+ "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", -+ "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", - "license": "MIT", - "engines": { - "node": ">= 12.13.0" -@@ -14518,11 +17991,15 @@ - }, - "node_modules/style-search": { - "version": "0.1.0", -+ "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", -+ "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", - "dev": true, - "license": "ISC" - }, - "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": { -@@ -14580,6 +18057,8 @@ - }, - "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": { -@@ -14595,6 +18074,8 @@ - }, - "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": { -@@ -14606,6 +18087,8 @@ - }, - "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": { -@@ -14624,24 +18107,12 @@ - "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,13 +18120,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" -+ } -+ ], -+ "license": "MIT", -+ "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": { -@@ -14669,7 +18160,9 @@ - } - }, - "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": { -@@ -14685,11 +18178,15 @@ - }, - "node_modules/stylelint/node_modules/balanced-match": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", -+ "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -14701,6 +18198,8 @@ - }, - "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": { -@@ -14718,6 +18217,8 @@ - }, - "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": { -@@ -14743,6 +18244,8 @@ - }, - "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": { -@@ -14754,6 +18257,8 @@ - }, - "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": { -@@ -14765,6 +18270,8 @@ - }, - "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": { -@@ -14780,6 +18287,8 @@ - }, - "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": { -@@ -14791,6 +18300,8 @@ - }, - "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": { -@@ -14803,19 +18314,10 @@ - "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": { -@@ -14841,6 +18343,8 @@ - }, - "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": { -@@ -14855,6 +18359,8 @@ - }, - "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": { -@@ -14869,6 +18375,8 @@ - }, - "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": { -@@ -14883,6 +18391,8 @@ - }, - "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": { -@@ -14900,6 +18410,8 @@ - }, - "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": { -@@ -14908,6 +18420,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": { -@@ -14925,6 +18439,8 @@ - }, - "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": { -@@ -14941,6 +18457,8 @@ - }, - "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": { -@@ -14954,21 +18472,12 @@ - "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,6 +18487,8 @@ - }, - "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": { -@@ -14992,6 +18503,8 @@ - }, - "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": { -@@ -15003,6 +18516,8 @@ - }, - "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": { -@@ -15013,7 +18528,9 @@ - } - }, - "node_modules/stylelint/node_modules/typescript": { -- "version": "5.3.2", -+ "version": "5.6.3", -+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", -+ "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", - "dev": true, - "license": "Apache-2.0", - "optional": true, -@@ -15026,13 +18543,33 @@ - "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, -- "license": "ISC" -+ "license": "ISC", -+ "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": "MIT", -+ "engines": { -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } - }, - "node_modules/sumchecker": { - "version": "3.0.1", -+ "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", -+ "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", - "license": "Apache-2.0", - "dependencies": { - "debug": "^4.1.0" -@@ -15043,6 +18580,8 @@ - }, - "node_modules/supports-color": { - "version": "7.2.0", -+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", -+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" -@@ -15052,7 +18591,9 @@ - } - }, - "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": { -@@ -15061,10 +18602,15 @@ - }, - "engines": { - "node": ">=14.18" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", -+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "license": "MIT", - "engines": { - "node": ">= 0.4" -@@ -15075,10 +18621,14 @@ - }, - "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": { -@@ -15092,28 +18642,10 @@ - "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": { -@@ -15130,6 +18662,8 @@ - }, - "node_modules/tapable": { - "version": "2.2.1", -+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", -+ "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "license": "MIT", - "engines": { - "node": ">=6" -@@ -15137,6 +18671,8 @@ - }, - "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": { -@@ -15153,6 +18689,8 @@ - }, - "node_modules/tar-fs": { - "version": "2.1.1", -+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", -+ "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "license": "MIT", - "dependencies": { - "chownr": "^1.1.1", -@@ -15163,10 +18701,14 @@ - }, - "node_modules/tar-fs/node_modules/chownr": { - "version": "1.1.4", -+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", -+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "license": "ISC" - }, - "node_modules/tar-stream": { - "version": "2.2.0", -+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", -+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "license": "MIT", - "dependencies": { - "bl": "^4.0.3", -@@ -15181,6 +18723,8 @@ - }, - "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": { -@@ -15192,11 +18736,15 @@ - }, - "node_modules/tar/node_modules/yallist": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", -+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "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": { -@@ -15206,6 +18754,8 @@ - }, - "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": { -@@ -15219,6 +18769,8 @@ - }, - "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": { -@@ -15230,6 +18782,8 @@ - }, - "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": { -@@ -15237,7 +18791,9 @@ - } - }, - "node_modules/terser": { -- "version": "5.31.0", -+ "version": "5.36.0", -+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.36.0.tgz", -+ "integrity": "sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==", - "license": "BSD-2-Clause", - "dependencies": { - "@jridgewell/source-map": "^0.3.3", -@@ -15254,6 +18810,8 @@ - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.10", -+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", -+ "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", -@@ -15284,8 +18842,41 @@ - } - } - }, -+ "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==", -+ "license": "MIT", -+ "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==", -+ "license": "MIT", -+ "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==", -+ "license": "MIT" -+ }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", -+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", -+ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", -@@ -15301,7 +18892,9 @@ - } - }, - "node_modules/terser/node_modules/acorn": { -- "version": "8.11.2", -+ "version": "8.13.0", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", -+ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" -@@ -15312,28 +18905,41 @@ - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", -+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", -+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "license": "MIT" - }, - "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", -+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", -+ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true, - "license": "MIT" - }, - "node_modules/through": { - "version": "2.3.8", -+ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", -+ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -15342,11 +18948,22 @@ - }, - "node_modules/thunky": { - "version": "1.1.0", -+ "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", -+ "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", -+ "dev": true, -+ "license": "MIT" -+ }, -+ "node_modules/tinyexec": { -+ "version": "0.3.1", -+ "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz", -+ "integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==", - "dev": true, - "license": "MIT" - }, - "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": { -@@ -15358,6 +18975,8 @@ - }, - "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": { -@@ -15366,6 +18985,8 @@ - }, - "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": { -@@ -15374,6 +18995,8 @@ - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", -+ "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "license": "MIT", - "engines": { - "node": ">=4" -@@ -15381,6 +19004,8 @@ - }, - "node_modules/to-regex-range": { - "version": "5.0.1", -+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", -+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" -@@ -15391,6 +19016,8 @@ - }, - "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": { -@@ -15399,11 +19026,15 @@ - }, - "node_modules/tr46": { - "version": "0.0.3", -+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", -+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true, - "license": "MIT" - }, - "node_modules/tree-kill": { - "version": "1.2.2", -+ "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", -+ "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "license": "MIT", - "bin": { - "tree-kill": "cli.js" -@@ -15411,6 +19042,8 @@ - }, - "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": { -@@ -15419,6 +19052,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": { -@@ -15427,6 +19062,8 @@ - }, - "node_modules/ts-loader": { - "version": "9.2.9", -+ "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.2.9.tgz", -+ "integrity": "sha512-b0+vUY2/enb0qYtDQuNlDnJ9900NTiPiJcDJ6sY7ax1CCCwXfYIqPOMm/BwW7jsF1km+Oz8W9s31HLuD+FLIMg==", - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", -@@ -15442,22 +19079,11 @@ - "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", -+ "version": "7.6.3", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", -+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, - "bin": { - "semver": "bin/semver.js" - }, -@@ -15465,12 +19091,10 @@ - "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": { -@@ -15512,7 +19136,9 @@ - } - }, - "node_modules/ts-node/node_modules/acorn": { -- "version": "8.11.2", -+ "version": "8.13.0", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", -+ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", - "dev": true, - "license": "MIT", - "bin": { -@@ -15523,7 +19149,9 @@ - } - }, - "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": { -@@ -15535,6 +19163,8 @@ - }, - "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": { -@@ -15545,11 +19175,15 @@ - } - }, - "node_modules/tslib": { -- "version": "2.6.2", -+ "version": "2.8.0", -+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.0.tgz", -+ "integrity": "sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==", - "license": "0BSD" - }, - "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": { -@@ -15564,11 +19198,15 @@ - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", -+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", -+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true, - "license": "0BSD" - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", -+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", -+ "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "license": "Apache-2.0", - "dependencies": { - "safe-buffer": "^5.0.1" -@@ -15579,10 +19217,14 @@ - }, - "node_modules/tweetnacl": { - "version": "0.14.5", -+ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", -+ "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "license": "Unlicense" - }, - "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": { -@@ -15594,6 +19236,8 @@ - }, - "node_modules/type-fest": { - "version": "2.19.0", -+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", -+ "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=12.20" -@@ -15604,6 +19248,8 @@ - }, - "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": { -@@ -15615,27 +19261,32 @@ - } - }, - "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 +19296,18 @@ - } - }, - "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 +19317,21 @@ - } - }, - "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,11 +19339,15 @@ - }, - "node_modules/typedarray": { - "version": "0.0.6", -+ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", -+ "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/typescript": { - "version": "4.6.4", -+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", -+ "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", -@@ -15692,7 +19358,9 @@ - } - }, - "node_modules/uglify-js": { -- "version": "3.17.4", -+ "version": "3.19.3", -+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", -+ "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", - "dev": true, - "license": "BSD-2-Clause", - "optional": true, -@@ -15705,6 +19373,8 @@ - }, - "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": { -@@ -15719,10 +19389,15 @@ - }, - "node_modules/undici-types": { - "version": "5.26.5", -+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", -+ "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", -+ "dev": true, - "license": "MIT" - }, - "node_modules/unicode-canonical-property-names-ecmascript": { -- "version": "2.0.0", -+ "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", -+ "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", - "dev": true, - "license": "MIT", - "engines": { -@@ -15731,6 +19406,8 @@ - }, - "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": { -@@ -15742,7 +19419,9 @@ - } - }, - "node_modules/unicode-match-property-value-ecmascript": { -- "version": "2.1.0", -+ "version": "2.2.0", -+ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", -+ "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", - "dev": true, - "license": "MIT", - "engines": { -@@ -15751,6 +19430,8 @@ - }, - "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": { -@@ -15759,6 +19440,8 @@ - }, - "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": { -@@ -15770,6 +19453,8 @@ - }, - "node_modules/universalify": { - "version": "0.1.2", -+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", -+ "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "license": "MIT", - "engines": { - "node": ">= 4.0.0" -@@ -15777,6 +19462,8 @@ - }, - "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": { -@@ -15785,6 +19472,8 @@ - }, - "node_modules/unzip-crx-3": { - "version": "0.2.0", -+ "resolved": "https://registry.npmjs.org/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz", -+ "integrity": "sha512-0+JiUq/z7faJ6oifVB5nSwt589v1KCduqIJupNVDoWSXZtWDmjDGO3RAEOvwJ07w90aoXoP4enKsR7ecMrJtWQ==", - "license": "MIT", - "dependencies": { - "jszip": "^3.1.0", -@@ -15793,7 +19482,9 @@ - } - }, - "node_modules/update-browserslist-db": { -- "version": "1.0.13", -+ "version": "1.1.1", -+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", -+ "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", - "funding": [ - { - "type": "opencollective", -@@ -15810,8 +19501,8 @@ - ], - "license": "MIT", - "dependencies": { -- "escalade": "^3.1.1", -- "picocolors": "^1.0.0" -+ "escalade": "^3.2.0", -+ "picocolors": "^1.1.0" - }, - "bin": { - "update-browserslist-db": "cli.js" -@@ -15822,6 +19513,8 @@ - }, - "node_modules/uri-js": { - "version": "4.4.1", -+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", -+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" -@@ -15829,19 +19522,27 @@ - }, - "node_modules/utf8-byte-length": { - "version": "1.0.5", -+ "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz", -+ "integrity": "sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==", - "dev": true, - "license": "(WTFPL OR MIT)" - }, - "node_modules/util-deprecate": { - "version": "1.0.2", -+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", -+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "license": "MIT" - }, - "node_modules/utila": { - "version": "0.4.0", -+ "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", -+ "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", - "license": "MIT" - }, - "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": { -@@ -15850,6 +19551,8 @@ - }, - "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": { -@@ -15858,20 +19561,28 @@ - }, - "node_modules/v-mask": { - "version": "2.3.0", -+ "resolved": "https://registry.npmjs.org/v-mask/-/v-mask-2.3.0.tgz", -+ "integrity": "sha512-ap7pTtCTvj25CqX4VYXqudCBd0+XvYyhiiLbzWQQR7AMQosJ2+DPu0a94P9stk0EGmGcmYxJaPkFkfjD8hquWQ==", - "license": "MIT" - }, - "node_modules/v8-compile-cache": { - "version": "2.4.0", -+ "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", -+ "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", - "dev": true, - "license": "MIT" - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", -+ "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, - "license": "MIT" - }, - "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": { -@@ -15881,34 +19592,55 @@ - }, - "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/vue": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.27.tgz", -- "integrity": "sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==", -+ "node_modules/verror": { -+ "version": "1.10.1", -+ "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz", -+ "integrity": "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==", -+ "dev": true, -+ "license": "MIT", -+ "optional": true, - "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" -- }, -- "peerDependencies": { -- "typescript": "*" -+ "assert-plus": "^1.0.0", -+ "core-util-is": "1.0.2", -+ "extsprintf": "^1.2.0" - }, -- "peerDependenciesMeta": { -- "typescript": { -+ "engines": { -+ "node": ">=0.6.0" -+ } -+ }, -+ "node_modules/vue": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.38.tgz", -+ "integrity": "sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==", -+ "license": "MIT", -+ "dependencies": { -+ "@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": "*" -+ }, -+ "peerDependenciesMeta": { -+ "typescript": { - "optional": true - } - } - }, - "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": { -@@ -15931,7 +19663,9 @@ - } - }, - "node_modules/vue-eslint-parser/node_modules/acorn": { -- "version": "8.11.2", -+ "version": "8.13.0", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", -+ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", - "dev": true, - "license": "MIT", - "bin": { -@@ -15943,6 +19677,8 @@ - }, - "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": { -@@ -15958,6 +19694,8 @@ - }, - "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": { -@@ -15969,6 +19707,8 @@ - }, - "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": { -@@ -15985,30 +19725,20 @@ - }, - "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,15 +19746,11 @@ - "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", - "integrity": "sha512-mh0GIxx0wPtPlcB1q4k277y0iKgo25xmDPWioVVYanjPufDBpvu5ySTjP5wOrSvlYQ2m1xI+CFhGdauv/61uQg==", -+ "license": "MIT", - "dependencies": { - "@intlify/core-base": "9.13.1", - "@intlify/shared": "9.13.1", -@@ -16042,6 +19768,8 @@ - }, - "node_modules/vue-loader": { - "version": "16.8.3", -+ "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.8.3.tgz", -+ "integrity": "sha512-7vKN45IxsKxe5GcVCbc2qFU5aWzyiLrYJyUuMz4BQLKctCj/fmCa0w6fGiiQ2cLFetNcek1ppGJQDCup0c1hpA==", - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", -@@ -16054,72 +19782,82 @@ - }, - "node_modules/vue-resize": { - "version": "2.0.0-alpha.1", -+ "resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-2.0.0-alpha.1.tgz", -+ "integrity": "sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==", - "license": "MIT", - "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==", -+ "license": "MIT", - "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==", -+ "license": "MIT", - "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==", -+ "license": "MIT", -+ "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==", -+ "license": "MIT", - "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==", -+ "license": "MIT" - }, - "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.12", -+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz", -+ "integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==", -+ "license": "MIT", - "dependencies": { -- "@jridgewell/sourcemap-codec": "^1.4.15" -+ "@jridgewell/sourcemap-codec": "^1.5.0" - } - }, - "node_modules/vuedraggable": { - "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-4.1.0.tgz", -+ "integrity": "sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==", - "license": "MIT", - "dependencies": { - "sortablejs": "1.14.0" -@@ -16129,7 +19867,9 @@ - } - }, - "node_modules/watchpack": { -- "version": "2.4.1", -+ "version": "2.4.2", -+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", -+ "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", - "license": "MIT", - "dependencies": { - "glob-to-regexp": "^0.4.1", -@@ -16141,6 +19881,8 @@ - }, - "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": { -@@ -16149,23 +19891,26 @@ - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", -+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", -+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/webpack": { -- "version": "5.91.0", -+ "version": "5.95.0", -+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.95.0.tgz", -+ "integrity": "sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==", - "license": "MIT", - "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,6 +19944,8 @@ - }, - "node_modules/webpack-cli": { - "version": "4.9.2", -+ "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz", -+ "integrity": "sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==", - "license": "MIT", - "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", -@@ -16240,10812 +19987,147 @@ - }, - "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==", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, -- "node_modules/webpack-dev-middleware": { -- "version": "5.3.4", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "colorette": "^2.0.10", -- "memfs": "^3.4.3", -- "mime-types": "^2.1.31", -- "range-parser": "^1.2.1", -- "schema-utils": "^4.0.0" -- }, -- "engines": { -- "node": ">= 12.13.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/webpack" -- }, -- "peerDependencies": { -- "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", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "@types/json-schema": "^7.0.9", -- "ajv": "^8.9.0", -- "ajv-formats": "^2.1.1", -- "ajv-keywords": "^5.1.0" -- }, -- "engines": { -- "node": ">= 12.13.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/webpack" -- } -- }, -- "node_modules/webpack-dev-server": { -- "version": "4.11.1", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "@types/bonjour": "^3.5.9", -- "@types/connect-history-api-fallback": "^1.3.5", -- "@types/express": "^4.17.13", -- "@types/serve-index": "^1.9.1", -- "@types/serve-static": "^1.13.10", -- "@types/sockjs": "^0.3.33", -- "@types/ws": "^8.5.1", -- "ansi-html-community": "^0.0.8", -- "bonjour-service": "^1.0.11", -- "chokidar": "^3.5.3", -- "colorette": "^2.0.10", -- "compression": "^1.7.4", -- "connect-history-api-fallback": "^2.0.0", -- "default-gateway": "^6.0.3", -- "express": "^4.17.3", -- "graceful-fs": "^4.2.6", -- "html-entities": "^2.3.2", -- "http-proxy-middleware": "^2.0.3", -- "ipaddr.js": "^2.0.1", -- "open": "^8.0.9", -- "p-retry": "^4.5.0", -- "rimraf": "^3.0.2", -- "schema-utils": "^4.0.0", -- "selfsigned": "^2.1.1", -- "serve-index": "^1.9.1", -- "sockjs": "^0.3.24", -- "spdy": "^4.0.2", -- "webpack-dev-middleware": "^5.3.1", -- "ws": "^8.4.2" -- }, -- "bin": { -- "webpack-dev-server": "bin/webpack-dev-server.js" -- }, -- "engines": { -- "node": ">= 12.13.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/webpack" -- }, -- "peerDependencies": { -- "webpack": "^4.37.0 || ^5.0.0" -- }, -- "peerDependenciesMeta": { -- "webpack-cli": { -- "optional": true -- } -- } -- }, -- "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", -- "dev": true, -+ "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==", - "license": "MIT", - "dependencies": { -- "@types/json-schema": "^7.0.9", -- "ajv": "^8.9.0", -- "ajv-formats": "^2.1.1", -- "ajv-keywords": "^5.1.0" -+ "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": ">= 12.13.0" -+ "node": ">=10" - }, - "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/webpack" -- } -- }, -- "node_modules/webpack-merge": { -- "version": "5.10.0", -- "license": "MIT", -- "dependencies": { -- "clone-deep": "^4.0.1", -- "flat": "^5.0.2", -- "wildcard": "^2.0.0" -- }, -- "engines": { -- "node": ">=10.0.0" -- } -- }, -- "node_modules/webpack-sources": { -- "version": "3.2.3", -- "license": "MIT", -- "engines": { -- "node": ">=10.13.0" -- } -- }, -- "node_modules/webpack/node_modules/acorn": { -- "version": "8.11.2", -- "license": "MIT", -- "bin": { -- "acorn": "bin/acorn" -- }, -- "engines": { -- "node": ">=0.4.0" -- } -- }, -- "node_modules/webpack/node_modules/acorn-import-assertions": { -- "version": "1.9.0", -- "license": "MIT", -- "peerDependencies": { -- "acorn": "^8" -- } -- }, -- "node_modules/webpack/node_modules/schema-utils": { -- "version": "3.3.0", -- "license": "MIT", -- "dependencies": { -- "@types/json-schema": "^7.0.8", -- "ajv": "^6.12.5", -- "ajv-keywords": "^3.5.2" -- }, -- "engines": { -- "node": ">= 10.13.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/webpack" -- } -- }, -- "node_modules/websocket-driver": { -- "version": "0.7.4", -- "dev": true, -- "license": "Apache-2.0", -- "dependencies": { -- "http-parser-js": ">=0.5.1", -- "safe-buffer": ">=5.1.0", -- "websocket-extensions": ">=0.1.1" -- }, -- "engines": { -- "node": ">=0.8.0" -- } -- }, -- "node_modules/websocket-extensions": { -- "version": "0.1.4", -- "dev": true, -- "license": "Apache-2.0", -- "engines": { -- "node": ">=0.8.0" -- } -- }, -- "node_modules/whatwg-url": { -- "version": "5.0.0", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "tr46": "~0.0.3", -- "webidl-conversions": "^3.0.0" -- } -- }, -- "node_modules/which": { -- "version": "2.0.2", -- "license": "ISC", -- "dependencies": { -- "isexe": "^2.0.0" -- }, -- "bin": { -- "node-which": "bin/node-which" -- }, -- "engines": { -- "node": ">= 8" -- } -- }, -- "node_modules/which-boxed-primitive": { -- "version": "1.0.2", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "is-bigint": "^1.0.1", -- "is-boolean-object": "^1.1.0", -- "is-number-object": "^1.0.4", -- "is-string": "^1.0.5", -- "is-symbol": "^1.0.3" -- }, -- "funding": { -- "url": "https://github.com/sponsors/ljharb" -- } -- }, -- "node_modules/which-module": { -- "version": "2.0.1", -- "dev": true, -- "license": "ISC" -- }, -- "node_modules/which-typed-array": { -- "version": "1.1.13", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "available-typed-arrays": "^1.0.5", -- "call-bind": "^1.0.4", -- "for-each": "^0.3.3", -- "gopd": "^1.0.1", -- "has-tostringtag": "^1.0.0" -- }, -- "engines": { -- "node": ">= 0.4" -- }, -- "funding": { -- "url": "https://github.com/sponsors/ljharb" -- } -- }, -- "node_modules/wildcard": { -- "version": "2.0.1", -- "license": "MIT" -- }, -- "node_modules/wordwrap": { -- "version": "1.0.0", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/wrap-ansi": { -- "version": "3.0.1", -- "license": "MIT", -- "dependencies": { -- "string-width": "^2.1.1", -- "strip-ansi": "^4.0.0" -- }, -- "engines": { -- "node": ">=4" -- } -- }, -- "node_modules/wrap-ansi-cjs": { -- "name": "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/wrap-ansi/node_modules/ansi-regex": { -- "version": "3.0.1", -- "license": "MIT", -- "engines": { -- "node": ">=4" -- } -- }, -- "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { -- "version": "2.0.0", -- "license": "MIT", -- "engines": { -- "node": ">=4" -- } -- }, -- "node_modules/wrap-ansi/node_modules/string-width": { -- "version": "2.1.1", -- "license": "MIT", -- "dependencies": { -- "is-fullwidth-code-point": "^2.0.0", -- "strip-ansi": "^4.0.0" -- }, -- "engines": { -- "node": ">=4" -- } -- }, -- "node_modules/wrap-ansi/node_modules/strip-ansi": { -- "version": "4.0.0", -- "license": "MIT", -- "dependencies": { -- "ansi-regex": "^3.0.0" -- }, -- "engines": { -- "node": ">=4" -- } -- }, -- "node_modules/wrappy": { -- "version": "1.0.2", -- "license": "ISC" -- }, -- "node_modules/write-file-atomic": { -- "version": "5.0.1", -- "dev": true, -- "license": "ISC", -- "dependencies": { -- "imurmurhash": "^0.1.4", -- "signal-exit": "^4.0.1" -- }, -- "engines": { -- "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", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=10.0.0" -- }, -- "peerDependencies": { -- "bufferutil": "^4.0.1", -- "utf-8-validate": ">=5.0.2" -- }, -- "peerDependenciesMeta": { -- "bufferutil": { -- "optional": true -- }, -- "utf-8-validate": { -- "optional": true -- } -- } -- }, -- "node_modules/xmlbuilder": { -- "version": "15.1.1", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=8.0" -- } -- }, -- "node_modules/xtend": { -- "version": "4.0.2", -- "license": "MIT", -- "engines": { -- "node": ">=0.4" -- } -- }, -- "node_modules/xvfb-maybe": { -- "version": "0.2.1", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "debug": "^2.2.0", -- "which": "^1.2.4" -- }, -- "bin": { -- "xvfb-maybe": "src/xvfb-maybe.js" -- } -- }, -- "node_modules/xvfb-maybe/node_modules/debug": { -- "version": "2.6.9", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "ms": "2.0.0" -- } -- }, -- "node_modules/xvfb-maybe/node_modules/ms": { -- "version": "2.0.0", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/xvfb-maybe/node_modules/which": { -- "version": "1.3.1", -- "dev": true, -- "license": "ISC", -- "dependencies": { -- "isexe": "^2.0.0" -- }, -- "bin": { -- "which": "bin/which" -- } -- }, -- "node_modules/y18n": { -- "version": "4.0.3", -- "dev": true, -- "license": "ISC" -- }, -- "node_modules/yaku": { -- "version": "0.16.7", -- "license": "MIT" -- }, -- "node_modules/yallist": { -- "version": "3.1.1", -- "license": "ISC" -- }, -- "node_modules/yargs": { -- "version": "15.4.1", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "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": ">=8" -- } -- }, -- "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", -- "dev": true, -- "license": "ISC", -- "dependencies": { -- "camelcase": "^5.0.0", -- "decamelize": "^1.2.0" -- }, -- "engines": { -- "node": ">=6" -- } -- }, -- "node_modules/yauzl": { -- "version": "2.10.0", -- "license": "MIT", -- "dependencies": { -- "buffer-crc32": "~0.2.3", -- "fd-slicer": "~1.1.0" -- } -- }, -- "node_modules/yn": { -- "version": "3.1.1", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=6" -- } -- }, -- "node_modules/yocto-queue": { -- "version": "0.1.0", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=10" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -- } -- }, -- "node_modules/zip-stream": { -- "version": "4.1.1", -- "dev": true, -- "license": "MIT", -- "peer": true, -- "dependencies": { -- "archiver-utils": "^3.0.4", -- "compress-commons": "^4.1.2", -- "readable-stream": "^3.6.0" -- }, -- "engines": { -- "node": ">= 10" -- } -- }, -- "node_modules/zip-stream/node_modules/archiver-utils": { -- "version": "3.0.4", -- "dev": true, -- "license": "MIT", -- "peer": true, -- "dependencies": { -- "glob": "^7.2.3", -- "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": "^3.6.0" -- }, -- "engines": { -- "node": ">= 10" -- } -- } -- }, -- "dependencies": { -- "@aashutoshrathi/word-wrap": { -- "version": "1.2.6", -- "dev": true -- }, -- "@ampproject/remapping": { -- "version": "2.2.1", -- "peer": true, -- "requires": { -- "@jridgewell/gen-mapping": "^0.3.0", -- "@jridgewell/trace-mapping": "^0.3.9" -- } -- }, -- "@babel/code-frame": { -- "version": "7.23.4", -- "requires": { -- "@babel/highlight": "^7.23.4", -- "chalk": "^2.4.2" -- }, -- "dependencies": { -- "ansi-styles": { -- "version": "3.2.1", -- "requires": { -- "color-convert": "^1.9.0" -- } -- }, -- "chalk": { -- "version": "2.4.2", -- "requires": { -- "ansi-styles": "^3.2.1", -- "escape-string-regexp": "^1.0.5", -- "supports-color": "^5.3.0" -- } -- }, -- "color-convert": { -- "version": "1.9.3", -- "requires": { -- "color-name": "1.1.3" -- } -- }, -- "color-name": { -- "version": "1.1.3" -- }, -- "escape-string-regexp": { -- "version": "1.0.5" -- }, -- "has-flag": { -- "version": "3.0.0" -- }, -- "supports-color": { -- "version": "5.5.0", -- "requires": { -- "has-flag": "^3.0.0" -- } -- } -- } -- }, -- "@babel/compat-data": { -- "version": "7.23.3" -- }, -- "@babel/core": { -- "version": "7.23.3", -- "peer": true, -- "requires": { -- "@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", -- "convert-source-map": "^2.0.0", -- "debug": "^4.1.0", -- "gensync": "^1.0.0-beta.2", -- "json5": "^2.2.3", -- "semver": "^6.3.1" -- } -- }, -- "@babel/eslint-parser": { -- "version": "7.15.8", -- "dev": true, -- "requires": { -- "eslint-scope": "^5.1.1", -- "eslint-visitor-keys": "^2.1.0", -- "semver": "^6.3.0" -- } -- }, -- "@babel/generator": { -- "version": "7.23.4", -- "requires": { -- "@babel/types": "^7.23.4", -- "@jridgewell/gen-mapping": "^0.3.2", -- "@jridgewell/trace-mapping": "^0.3.17", -- "jsesc": "^2.5.1" -- } -- }, -- "@babel/helper-annotate-as-pure": { -- "version": "7.22.5", -- "dev": true, -- "requires": { -- "@babel/types": "^7.22.5" -- } -- }, -- "@babel/helper-builder-binary-assignment-operator-visitor": { -- "version": "7.22.15", -- "dev": true, -- "requires": { -- "@babel/types": "^7.22.15" -- } -- }, -- "@babel/helper-compilation-targets": { -- "version": "7.22.15", -- "requires": { -- "@babel/compat-data": "^7.22.9", -- "@babel/helper-validator-option": "^7.22.15", -- "browserslist": "^4.21.9", -- "lru-cache": "^5.1.1", -- "semver": "^6.3.1" -- } -- }, -- "@babel/helper-create-class-features-plugin": { -- "version": "7.22.15", -- "dev": true, -- "requires": { -- "@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", -- "semver": "^6.3.1" -- } -- }, -- "@babel/helper-create-regexp-features-plugin": { -- "version": "7.22.15", -- "dev": true, -- "requires": { -- "@babel/helper-annotate-as-pure": "^7.22.5", -- "regexpu-core": "^5.3.1", -- "semver": "^6.3.1" -- } -- }, -- "@babel/helper-define-polyfill-provider": { -- "version": "0.2.4", -- "dev": true, -- "requires": { -- "@babel/helper-compilation-targets": "^7.13.0", -- "@babel/helper-module-imports": "^7.12.13", -- "@babel/helper-plugin-utils": "^7.13.0", -- "@babel/traverse": "^7.13.0", -- "debug": "^4.1.1", -- "lodash.debounce": "^4.0.8", -- "resolve": "^1.14.2", -- "semver": "^6.1.2" -- } -- }, -- "@babel/helper-environment-visitor": { -- "version": "7.22.20" -- }, -- "@babel/helper-function-name": { -- "version": "7.23.0", -- "requires": { -- "@babel/template": "^7.22.15", -- "@babel/types": "^7.23.0" -- } -- }, -- "@babel/helper-hoist-variables": { -- "version": "7.22.5", -- "requires": { -- "@babel/types": "^7.22.5" -- } -- }, -- "@babel/helper-member-expression-to-functions": { -- "version": "7.23.0", -- "dev": true, -- "requires": { -- "@babel/types": "^7.23.0" -- } -- }, -- "@babel/helper-module-imports": { -- "version": "7.22.15", -- "requires": { -- "@babel/types": "^7.22.15" -- } -- }, -- "@babel/helper-module-transforms": { -- "version": "7.23.3", -- "requires": { -- "@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-optimise-call-expression": { -- "version": "7.22.5", -- "dev": true, -- "requires": { -- "@babel/types": "^7.22.5" -- } -- }, -- "@babel/helper-plugin-utils": { -- "version": "7.22.5", -- "dev": true -- }, -- "@babel/helper-remap-async-to-generator": { -- "version": "7.22.20", -- "dev": true, -- "requires": { -- "@babel/helper-annotate-as-pure": "^7.22.5", -- "@babel/helper-environment-visitor": "^7.22.20", -- "@babel/helper-wrap-function": "^7.22.20" -- } -- }, -- "@babel/helper-replace-supers": { -- "version": "7.22.20", -- "dev": true, -- "requires": { -- "@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-simple-access": { -- "version": "7.22.5", -- "requires": { -- "@babel/types": "^7.22.5" -- } -- }, -- "@babel/helper-skip-transparent-expression-wrappers": { -- "version": "7.22.5", -- "dev": true, -- "requires": { -- "@babel/types": "^7.22.5" -- } -- }, -- "@babel/helper-split-export-declaration": { -- "version": "7.22.6", -- "requires": { -- "@babel/types": "^7.22.5" -- } -- }, -- "@babel/helper-string-parser": { -- "version": "7.23.4" -- }, -- "@babel/helper-validator-identifier": { -- "version": "7.22.20" -- }, -- "@babel/helper-validator-option": { -- "version": "7.22.15" -- }, -- "@babel/helper-wrap-function": { -- "version": "7.22.20", -- "dev": true, -- "requires": { -- "@babel/helper-function-name": "^7.22.5", -- "@babel/template": "^7.22.15", -- "@babel/types": "^7.22.19" -- } -- }, -- "@babel/helpers": { -- "version": "7.23.4", -- "peer": true, -- "requires": { -- "@babel/template": "^7.22.15", -- "@babel/traverse": "^7.23.4", -- "@babel/types": "^7.23.4" -- } -- }, -- "@babel/highlight": { -- "version": "7.23.4", -- "requires": { -- "@babel/helper-validator-identifier": "^7.22.20", -- "chalk": "^2.4.2", -- "js-tokens": "^4.0.0" -- }, -- "dependencies": { -- "ansi-styles": { -- "version": "3.2.1", -- "requires": { -- "color-convert": "^1.9.0" -- } -- }, -- "chalk": { -- "version": "2.4.2", -- "requires": { -- "ansi-styles": "^3.2.1", -- "escape-string-regexp": "^1.0.5", -- "supports-color": "^5.3.0" -- } -- }, -- "color-convert": { -- "version": "1.9.3", -- "requires": { -- "color-name": "1.1.3" -- } -- }, -- "color-name": { -- "version": "1.1.3" -- }, -- "escape-string-regexp": { -- "version": "1.0.5" -- }, -- "has-flag": { -- "version": "3.0.0" -- }, -- "supports-color": { -- "version": "5.5.0", -- "requires": { -- "has-flag": "^3.0.0" -- } -- } -- } -- }, -- "@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==" -- }, -- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@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/plugin-proposal-async-generator-functions": { -- "version": "7.20.7", -- "dev": true, -- "requires": { -- "@babel/helper-environment-visitor": "^7.18.9", -- "@babel/helper-plugin-utils": "^7.20.2", -- "@babel/helper-remap-async-to-generator": "^7.18.9", -- "@babel/plugin-syntax-async-generators": "^7.8.4" -- } -- }, -- "@babel/plugin-proposal-class-properties": { -- "version": "7.18.6", -- "dev": true, -- "requires": { -- "@babel/helper-create-class-features-plugin": "^7.18.6", -- "@babel/helper-plugin-utils": "^7.18.6" -- } -- }, -- "@babel/plugin-proposal-class-static-block": { -- "version": "7.21.0", -- "dev": true, -- "requires": { -- "@babel/helper-create-class-features-plugin": "^7.21.0", -- "@babel/helper-plugin-utils": "^7.20.2", -- "@babel/plugin-syntax-class-static-block": "^7.14.5" -- } -- }, -- "@babel/plugin-proposal-dynamic-import": { -- "version": "7.18.6", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.18.6", -- "@babel/plugin-syntax-dynamic-import": "^7.8.3" -- } -- }, -- "@babel/plugin-proposal-export-namespace-from": { -- "version": "7.18.9", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.18.9", -- "@babel/plugin-syntax-export-namespace-from": "^7.8.3" -- } -- }, -- "@babel/plugin-proposal-json-strings": { -- "version": "7.18.6", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.18.6", -- "@babel/plugin-syntax-json-strings": "^7.8.3" -- } -- }, -- "@babel/plugin-proposal-logical-assignment-operators": { -- "version": "7.20.7", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.20.2", -- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" -- } -- }, -- "@babel/plugin-proposal-nullish-coalescing-operator": { -- "version": "7.18.6", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.18.6", -- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" -- } -- }, -- "@babel/plugin-proposal-numeric-separator": { -- "version": "7.18.6", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.18.6", -- "@babel/plugin-syntax-numeric-separator": "^7.10.4" -- } -- }, -- "@babel/plugin-proposal-object-rest-spread": { -- "version": "7.20.7", -- "dev": true, -- "requires": { -- "@babel/compat-data": "^7.20.5", -- "@babel/helper-compilation-targets": "^7.20.7", -- "@babel/helper-plugin-utils": "^7.20.2", -- "@babel/plugin-syntax-object-rest-spread": "^7.8.3", -- "@babel/plugin-transform-parameters": "^7.20.7" -- } -- }, -- "@babel/plugin-proposal-optional-catch-binding": { -- "version": "7.18.6", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.18.6", -- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" -- } -- }, -- "@babel/plugin-proposal-optional-chaining": { -- "version": "7.21.0", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.20.2", -- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", -- "@babel/plugin-syntax-optional-chaining": "^7.8.3" -- } -- }, -- "@babel/plugin-proposal-private-methods": { -- "version": "7.18.6", -- "dev": true, -- "requires": { -- "@babel/helper-create-class-features-plugin": "^7.18.6", -- "@babel/helper-plugin-utils": "^7.18.6" -- } -- }, -- "@babel/plugin-proposal-private-property-in-object": { -- "version": "7.21.11", -- "dev": true, -- "requires": { -- "@babel/helper-annotate-as-pure": "^7.18.6", -- "@babel/helper-create-class-features-plugin": "^7.21.0", -- "@babel/helper-plugin-utils": "^7.20.2", -- "@babel/plugin-syntax-private-property-in-object": "^7.14.5" -- } -- }, -- "@babel/plugin-proposal-unicode-property-regex": { -- "version": "7.18.6", -- "dev": true, -- "requires": { -- "@babel/helper-create-regexp-features-plugin": "^7.18.6", -- "@babel/helper-plugin-utils": "^7.18.6" -- } -- }, -- "@babel/plugin-syntax-async-generators": { -- "version": "7.8.4", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.8.0" -- } -- }, -- "@babel/plugin-syntax-class-properties": { -- "version": "7.12.13", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.12.13" -- } -- }, -- "@babel/plugin-syntax-class-static-block": { -- "version": "7.14.5", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.14.5" -- } -- }, -- "@babel/plugin-syntax-dynamic-import": { -- "version": "7.8.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.8.0" -- } -- }, -- "@babel/plugin-syntax-export-namespace-from": { -- "version": "7.8.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.8.3" -- } -- }, -- "@babel/plugin-syntax-json-strings": { -- "version": "7.8.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.8.0" -- } -- }, -- "@babel/plugin-syntax-logical-assignment-operators": { -- "version": "7.10.4", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.10.4" -- } -- }, -- "@babel/plugin-syntax-nullish-coalescing-operator": { -- "version": "7.8.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.8.0" -- } -- }, -- "@babel/plugin-syntax-numeric-separator": { -- "version": "7.10.4", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.10.4" -- } -- }, -- "@babel/plugin-syntax-object-rest-spread": { -- "version": "7.8.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.8.0" -- } -- }, -- "@babel/plugin-syntax-optional-catch-binding": { -- "version": "7.8.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.8.0" -- } -- }, -- "@babel/plugin-syntax-optional-chaining": { -- "version": "7.8.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.8.0" -- } -- }, -- "@babel/plugin-syntax-private-property-in-object": { -- "version": "7.14.5", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.14.5" -- } -- }, -- "@babel/plugin-syntax-top-level-await": { -- "version": "7.14.5", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.14.5" -- } -- }, -- "@babel/plugin-syntax-typescript": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-arrow-functions": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-async-to-generator": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-module-imports": "^7.22.15", -- "@babel/helper-plugin-utils": "^7.22.5", -- "@babel/helper-remap-async-to-generator": "^7.22.20" -- } -- }, -- "@babel/plugin-transform-block-scoped-functions": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-block-scoping": { -- "version": "7.23.4", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-classes": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@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", -- "globals": "^11.1.0" -- } -- }, -- "@babel/plugin-transform-computed-properties": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5", -- "@babel/template": "^7.22.15" -- } -- }, -- "@babel/plugin-transform-destructuring": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-dotall-regex": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-create-regexp-features-plugin": "^7.22.15", -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-duplicate-keys": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-exponentiation-operator": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-for-of": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-function-name": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-compilation-targets": "^7.22.15", -- "@babel/helper-function-name": "^7.23.0", -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-literals": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-member-expression-literals": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-modules-amd": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-module-transforms": "^7.23.3", -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-modules-commonjs": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-module-transforms": "^7.23.3", -- "@babel/helper-plugin-utils": "^7.22.5", -- "@babel/helper-simple-access": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-modules-systemjs": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@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/plugin-transform-modules-umd": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-module-transforms": "^7.23.3", -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-named-capturing-groups-regex": { -- "version": "7.22.5", -- "dev": true, -- "requires": { -- "@babel/helper-create-regexp-features-plugin": "^7.22.5", -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-new-target": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-object-super": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5", -- "@babel/helper-replace-supers": "^7.22.20" -- } -- }, -- "@babel/plugin-transform-optional-chaining": { -- "version": "7.23.4", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5", -- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", -- "@babel/plugin-syntax-optional-chaining": "^7.8.3" -- } -- }, -- "@babel/plugin-transform-parameters": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-property-literals": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-regenerator": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5", -- "regenerator-transform": "^0.15.2" -- } -- }, -- "@babel/plugin-transform-reserved-words": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-shorthand-properties": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-spread": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5", -- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-sticky-regex": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-template-literals": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-typeof-symbol": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-typescript": { -- "version": "7.23.4", -- "dev": true, -- "requires": { -- "@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/plugin-transform-unicode-escapes": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/plugin-transform-unicode-regex": { -- "version": "7.23.3", -- "dev": true, -- "requires": { -- "@babel/helper-create-regexp-features-plugin": "^7.22.15", -- "@babel/helper-plugin-utils": "^7.22.5" -- } -- }, -- "@babel/preset-env": { -- "version": "7.15.8", -- "dev": true, -- "requires": { -- "@babel/compat-data": "^7.15.0", -- "@babel/helper-compilation-targets": "^7.15.4", -- "@babel/helper-plugin-utils": "^7.14.5", -- "@babel/helper-validator-option": "^7.14.5", -- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4", -- "@babel/plugin-proposal-async-generator-functions": "^7.15.8", -- "@babel/plugin-proposal-class-properties": "^7.14.5", -- "@babel/plugin-proposal-class-static-block": "^7.15.4", -- "@babel/plugin-proposal-dynamic-import": "^7.14.5", -- "@babel/plugin-proposal-export-namespace-from": "^7.14.5", -- "@babel/plugin-proposal-json-strings": "^7.14.5", -- "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", -- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", -- "@babel/plugin-proposal-numeric-separator": "^7.14.5", -- "@babel/plugin-proposal-object-rest-spread": "^7.15.6", -- "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", -- "@babel/plugin-proposal-optional-chaining": "^7.14.5", -- "@babel/plugin-proposal-private-methods": "^7.14.5", -- "@babel/plugin-proposal-private-property-in-object": "^7.15.4", -- "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", -- "@babel/plugin-syntax-async-generators": "^7.8.4", -- "@babel/plugin-syntax-class-properties": "^7.12.13", -- "@babel/plugin-syntax-class-static-block": "^7.14.5", -- "@babel/plugin-syntax-dynamic-import": "^7.8.3", -- "@babel/plugin-syntax-export-namespace-from": "^7.8.3", -- "@babel/plugin-syntax-json-strings": "^7.8.3", -- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", -- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", -- "@babel/plugin-syntax-numeric-separator": "^7.10.4", -- "@babel/plugin-syntax-object-rest-spread": "^7.8.3", -- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", -- "@babel/plugin-syntax-optional-chaining": "^7.8.3", -- "@babel/plugin-syntax-private-property-in-object": "^7.14.5", -- "@babel/plugin-syntax-top-level-await": "^7.14.5", -- "@babel/plugin-transform-arrow-functions": "^7.14.5", -- "@babel/plugin-transform-async-to-generator": "^7.14.5", -- "@babel/plugin-transform-block-scoped-functions": "^7.14.5", -- "@babel/plugin-transform-block-scoping": "^7.15.3", -- "@babel/plugin-transform-classes": "^7.15.4", -- "@babel/plugin-transform-computed-properties": "^7.14.5", -- "@babel/plugin-transform-destructuring": "^7.14.7", -- "@babel/plugin-transform-dotall-regex": "^7.14.5", -- "@babel/plugin-transform-duplicate-keys": "^7.14.5", -- "@babel/plugin-transform-exponentiation-operator": "^7.14.5", -- "@babel/plugin-transform-for-of": "^7.15.4", -- "@babel/plugin-transform-function-name": "^7.14.5", -- "@babel/plugin-transform-literals": "^7.14.5", -- "@babel/plugin-transform-member-expression-literals": "^7.14.5", -- "@babel/plugin-transform-modules-amd": "^7.14.5", -- "@babel/plugin-transform-modules-commonjs": "^7.15.4", -- "@babel/plugin-transform-modules-systemjs": "^7.15.4", -- "@babel/plugin-transform-modules-umd": "^7.14.5", -- "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", -- "@babel/plugin-transform-new-target": "^7.14.5", -- "@babel/plugin-transform-object-super": "^7.14.5", -- "@babel/plugin-transform-parameters": "^7.15.4", -- "@babel/plugin-transform-property-literals": "^7.14.5", -- "@babel/plugin-transform-regenerator": "^7.14.5", -- "@babel/plugin-transform-reserved-words": "^7.14.5", -- "@babel/plugin-transform-shorthand-properties": "^7.14.5", -- "@babel/plugin-transform-spread": "^7.15.8", -- "@babel/plugin-transform-sticky-regex": "^7.14.5", -- "@babel/plugin-transform-template-literals": "^7.14.5", -- "@babel/plugin-transform-typeof-symbol": "^7.14.5", -- "@babel/plugin-transform-unicode-escapes": "^7.14.5", -- "@babel/plugin-transform-unicode-regex": "^7.14.5", -- "@babel/preset-modules": "^0.1.4", -- "@babel/types": "^7.15.6", -- "babel-plugin-polyfill-corejs2": "^0.2.2", -- "babel-plugin-polyfill-corejs3": "^0.2.5", -- "babel-plugin-polyfill-regenerator": "^0.2.2", -- "core-js-compat": "^3.16.0", -- "semver": "^6.3.0" -- } -- }, -- "@babel/preset-modules": { -- "version": "0.1.6", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.0.0", -- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", -- "@babel/plugin-transform-dotall-regex": "^7.4.4", -- "@babel/types": "^7.4.4", -- "esutils": "^2.0.2" -- } -- }, -- "@babel/preset-typescript": { -- "version": "7.16.7", -- "dev": true, -- "requires": { -- "@babel/helper-plugin-utils": "^7.16.7", -- "@babel/helper-validator-option": "^7.16.7", -- "@babel/plugin-transform-typescript": "^7.16.7" -- } -- }, -- "@babel/regjsgen": { -- "version": "0.8.0", -- "dev": true -- }, -- "@babel/runtime": { -- "version": "7.23.4", -- "dev": true, -- "requires": { -- "regenerator-runtime": "^0.14.0" -- } -- }, -- "@babel/template": { -- "version": "7.22.15", -- "requires": { -- "@babel/code-frame": "^7.22.13", -- "@babel/parser": "^7.22.15", -- "@babel/types": "^7.22.15" -- } -- }, -- "@babel/traverse": { -- "version": "7.23.4", -- "requires": { -- "@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", -- "globals": "^11.1.0" -- } -- }, -- "@babel/types": { -- "version": "7.23.4", -- "requires": { -- "@babel/helper-string-parser": "^7.23.4", -- "@babel/helper-validator-identifier": "^7.22.20", -- "to-fast-properties": "^2.0.0" -- } -- }, -- "@commitlint/cli": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@commitlint/format": "^19.0.3", -- "@commitlint/lint": "^19.0.3", -- "@commitlint/load": "^19.0.3", -- "@commitlint/read": "^19.0.3", -- "@commitlint/types": "^19.0.3", -- "execa": "^8.0.1", -- "yargs": "^17.0.0" -- }, -- "dependencies": { -- "cliui": { -- "version": "8.0.1", -- "dev": true, -- "requires": { -- "string-width": "^4.2.0", -- "strip-ansi": "^6.0.1", -- "wrap-ansi": "^7.0.0" -- } -- }, -- "execa": { -- "version": "8.0.1", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "get-stream": { -- "version": "8.0.1", -- "dev": true -- }, -- "human-signals": { -- "version": "5.0.0", -- "dev": true -- }, -- "is-stream": { -- "version": "3.0.0", -- "dev": true -- }, -- "mimic-fn": { -- "version": "4.0.0", -- "dev": true -- }, -- "npm-run-path": { -- "version": "5.3.0", -- "dev": true, -- "requires": { -- "path-key": "^4.0.0" -- } -- }, -- "onetime": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "mimic-fn": "^4.0.0" -- } -- }, -- "path-key": { -- "version": "4.0.0", -- "dev": true -- }, -- "signal-exit": { -- "version": "4.1.0", -- "dev": true -- }, -- "strip-final-newline": { -- "version": "3.0.0", -- "dev": true -- }, -- "wrap-ansi": { -- "version": "7.0.0", -- "dev": true, -- "requires": { -- "ansi-styles": "^4.0.0", -- "string-width": "^4.1.0", -- "strip-ansi": "^6.0.0" -- } -- }, -- "y18n": { -- "version": "5.0.8", -- "dev": true -- }, -- "yargs": { -- "version": "17.7.2", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "yargs-parser": { -- "version": "21.1.1", -- "dev": true -- } -- } -- }, -- "@commitlint/config-conventional": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@commitlint/types": "^19.0.3", -- "conventional-changelog-conventionalcommits": "^7.0.2" -- }, -- "dependencies": { -- "conventional-changelog-conventionalcommits": { -- "version": "7.0.2", -- "dev": true, -- "requires": { -- "compare-func": "^2.0.0" -- } -- } -- } -- }, -- "@commitlint/config-validator": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@commitlint/types": "^19.0.3", -- "ajv": "^8.11.0" -- }, -- "dependencies": { -- "ajv": { -- "version": "8.12.0", -- "dev": true, -- "requires": { -- "fast-deep-equal": "^3.1.1", -- "json-schema-traverse": "^1.0.0", -- "require-from-string": "^2.0.2", -- "uri-js": "^4.2.2" -- } -- }, -- "json-schema-traverse": { -- "version": "1.0.0", -- "dev": true -- } -- } -- }, -- "@commitlint/ensure": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@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" -- } -- }, -- "@commitlint/execute-rule": { -- "version": "19.0.0", -- "dev": true -- }, -- "@commitlint/format": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@commitlint/types": "^19.0.3", -- "chalk": "^5.3.0" -- }, -- "dependencies": { -- "chalk": { -- "version": "5.3.0", -- "dev": true -- } -- } -- }, -- "@commitlint/is-ignored": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@commitlint/types": "^19.0.3", -- "semver": "^7.6.0" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.6.0", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "@commitlint/lint": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@commitlint/is-ignored": "^19.0.3", -- "@commitlint/parse": "^19.0.3", -- "@commitlint/rules": "^19.0.3", -- "@commitlint/types": "^19.0.3" -- } -- }, -- "@commitlint/load": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@commitlint/config-validator": "^19.0.3", -- "@commitlint/execute-rule": "^19.0.0", -- "@commitlint/resolve-extends": "^19.0.3", -- "@commitlint/types": "^19.0.3", -- "chalk": "^5.3.0", -- "cosmiconfig": "^8.3.6", -- "cosmiconfig-typescript-loader": "^5.0.0", -- "lodash.isplainobject": "^4.0.6", -- "lodash.merge": "^4.6.2", -- "lodash.uniq": "^4.5.0" -- }, -- "dependencies": { -- "chalk": { -- "version": "5.3.0", -- "dev": true -- }, -- "cosmiconfig": { -- "version": "8.3.6", -- "dev": true, -- "requires": { -- "import-fresh": "^3.3.0", -- "js-yaml": "^4.1.0", -- "parse-json": "^5.2.0", -- "path-type": "^4.0.0" -- } -- }, -- "cosmiconfig-typescript-loader": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "jiti": "^1.19.1" -- } -- }, -- "parse-json": { -- "version": "5.2.0", -- "dev": true, -- "requires": { -- "@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" -- } -- }, -- "typescript": { -- "version": "5.4.2", -- "dev": true, -- "peer": true -- } -- } -- }, -- "@commitlint/message": { -- "version": "19.0.0", -- "dev": true -- }, -- "@commitlint/parse": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@commitlint/types": "^19.0.3", -- "conventional-changelog-angular": "^7.0.0", -- "conventional-commits-parser": "^5.0.0" -- }, -- "dependencies": { -- "conventional-changelog-angular": { -- "version": "7.0.0", -- "dev": true, -- "requires": { -- "compare-func": "^2.0.0" -- } -- }, -- "conventional-commits-parser": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "is-text-path": "^2.0.0", -- "JSONStream": "^1.3.5", -- "meow": "^12.0.1", -- "split2": "^4.0.0" -- } -- }, -- "is-text-path": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "text-extensions": "^2.0.0" -- } -- }, -- "meow": { -- "version": "12.1.1", -- "dev": true -- }, -- "text-extensions": { -- "version": "2.4.0", -- "dev": true -- } -- } -- }, -- "@commitlint/read": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@commitlint/top-level": "^19.0.0", -- "@commitlint/types": "^19.0.3", -- "git-raw-commits": "^4.0.0", -- "minimist": "^1.2.8" -- }, -- "dependencies": { -- "dargs": { -- "version": "8.1.0", -- "dev": true -- }, -- "git-raw-commits": { -- "version": "4.0.0", -- "dev": true, -- "requires": { -- "dargs": "^8.0.0", -- "meow": "^12.0.1", -- "split2": "^4.0.0" -- } -- }, -- "meow": { -- "version": "12.1.1", -- "dev": true -- } -- } -- }, -- "@commitlint/resolve-extends": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@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" -- }, -- "dependencies": { -- "resolve-from": { -- "version": "5.0.0", -- "dev": true -- } -- } -- }, -- "@commitlint/rules": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@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" -- }, -- "dependencies": { -- "execa": { -- "version": "8.0.1", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "get-stream": { -- "version": "8.0.1", -- "dev": true -- }, -- "human-signals": { -- "version": "5.0.0", -- "dev": true -- }, -- "is-stream": { -- "version": "3.0.0", -- "dev": true -- }, -- "mimic-fn": { -- "version": "4.0.0", -- "dev": true -- }, -- "npm-run-path": { -- "version": "5.3.0", -- "dev": true, -- "requires": { -- "path-key": "^4.0.0" -- } -- }, -- "onetime": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "mimic-fn": "^4.0.0" -- } -- }, -- "path-key": { -- "version": "4.0.0", -- "dev": true -- }, -- "signal-exit": { -- "version": "4.1.0", -- "dev": true -- }, -- "strip-final-newline": { -- "version": "3.0.0", -- "dev": true -- } -- } -- }, -- "@commitlint/to-lines": { -- "version": "19.0.0", -- "dev": true -- }, -- "@commitlint/top-level": { -- "version": "19.0.0", -- "dev": true, -- "requires": { -- "find-up": "^7.0.0" -- }, -- "dependencies": { -- "find-up": { -- "version": "7.0.0", -- "dev": true, -- "requires": { -- "locate-path": "^7.2.0", -- "path-exists": "^5.0.0", -- "unicorn-magic": "^0.1.0" -- } -- }, -- "locate-path": { -- "version": "7.2.0", -- "dev": true, -- "requires": { -- "p-locate": "^6.0.0" -- } -- }, -- "p-limit": { -- "version": "4.0.0", -- "dev": true, -- "requires": { -- "yocto-queue": "^1.0.0" -- } -- }, -- "p-locate": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "p-limit": "^4.0.0" -- } -- }, -- "path-exists": { -- "version": "5.0.0", -- "dev": true -- }, -- "yocto-queue": { -- "version": "1.0.0", -- "dev": true -- } -- } -- }, -- "@commitlint/types": { -- "version": "19.0.3", -- "dev": true, -- "requires": { -- "@types/conventional-commits-parser": "^5.0.0", -- "chalk": "^5.3.0" -- }, -- "dependencies": { -- "chalk": { -- "version": "5.3.0", -- "dev": true -- } -- } -- }, -- "@cspotcode/source-map-support": { -- "version": "0.8.1", -- "dev": true, -- "requires": { -- "@jridgewell/trace-mapping": "0.3.9" -- }, -- "dependencies": { -- "@jridgewell/trace-mapping": { -- "version": "0.3.9", -- "dev": true, -- "requires": { -- "@jridgewell/resolve-uri": "^3.0.3", -- "@jridgewell/sourcemap-codec": "^1.4.10" -- } -- } -- } -- }, -- "@csstools/css-parser-algorithms": { -- "version": "2.3.2", -- "dev": true, -- "requires": {} -- }, -- "@csstools/css-tokenizer": { -- "version": "2.2.1", -- "dev": true -- }, -- "@csstools/media-query-list-parser": { -- "version": "2.1.5", -- "dev": true, -- "requires": {} -- }, -- "@csstools/selector-specificity": { -- "version": "3.0.0", -- "dev": true, -- "requires": {} -- }, -- "@develar/schema-utils": { -- "version": "2.6.5", -- "dev": true, -- "requires": { -- "ajv": "^6.12.0", -- "ajv-keywords": "^3.4.1" -- } -- }, -- "@discoveryjs/json-ext": { -- "version": "0.5.7" -- }, -- "@electron/asar": { -- "version": "3.2.10", -- "dev": true, -- "requires": { -- "commander": "^5.0.0", -- "glob": "^7.1.6", -- "minimatch": "^3.0.4" -- }, -- "dependencies": { -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- } -- } -- }, -- "@electron/get": { -- "version": "2.0.3", -- "requires": { -- "debug": "^4.1.1", -- "env-paths": "^2.2.0", -- "fs-extra": "^8.1.0", -- "global-agent": "^3.0.0", -- "got": "^11.8.5", -- "progress": "^2.0.3", -- "semver": "^6.2.0", -- "sumchecker": "^3.0.1" -- } -- }, -- "@electron/notarize": { -- "version": "2.2.1", -- "dev": true, -- "requires": { -- "debug": "^4.1.1", -- "fs-extra": "^9.0.1", -- "promise-retry": "^2.0.1" -- }, -- "dependencies": { -- "fs-extra": { -- "version": "9.1.0", -- "dev": true, -- "requires": { -- "at-least-node": "^1.0.0", -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- } -- } -- }, -- "@electron/osx-sign": { -- "version": "1.0.5", -- "dev": true, -- "requires": { -- "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" -- }, -- "dependencies": { -- "fs-extra": { -- "version": "10.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "isbinaryfile": { -- "version": "4.0.10", -- "dev": true -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- } -- } -- }, -- "@electron/remote": { -- "version": "2.1.2", -- "resolved": "https://registry.npmjs.org/@electron/remote/-/remote-2.1.2.tgz", -- "integrity": "sha512-EPwNx+nhdrTBxyCqXt/pftoQg/ybtWDW3DUWHafejvnB1ZGGfMpv6e15D8KeempocjXe78T7WreyGGb3mlZxdA==", -- "requires": {} -- }, -- "@electron/universal": { -- "version": "1.5.1", -- "dev": true, -- "requires": { -- "@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" -- }, -- "dependencies": { -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "fs-extra": { -- "version": "9.1.0", -- "dev": true, -- "requires": { -- "at-least-node": "^1.0.0", -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- } -- } -- }, -- "@eslint/eslintrc": { -- "version": "0.4.3", -- "dev": true, -- "requires": { -- "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" -- }, -- "dependencies": { -- "argparse": { -- "version": "1.0.10", -- "dev": true, -- "requires": { -- "sprintf-js": "~1.0.2" -- } -- }, -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "globals": { -- "version": "13.23.0", -- "dev": true, -- "requires": { -- "type-fest": "^0.20.2" -- } -- }, -- "ignore": { -- "version": "4.0.6", -- "dev": true -- }, -- "js-yaml": { -- "version": "3.14.1", -- "dev": true, -- "requires": { -- "argparse": "^1.0.7", -- "esprima": "^4.0.0" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- }, -- "sprintf-js": { -- "version": "1.0.3", -- "dev": true -- }, -- "type-fest": { -- "version": "0.20.2", -- "dev": true -- } -- } -- }, -- "@fabio286/ssh2-promise": { -- "version": "1.0.4b", -- "requires": { -- "@heroku/socksv5": "^0.0.9", -- "ssh2": "~1.14.0" -- } -- }, -- "@faker-js/faker": { -- "version": "6.1.2" -- }, -- "@floating-ui/core": { -- "version": "1.5.0", -- "requires": { -- "@floating-ui/utils": "^0.1.3" -- } -- }, -- "@floating-ui/dom": { -- "version": "1.1.1", -- "requires": { -- "@floating-ui/core": "^1.1.0" -- } -- }, -- "@floating-ui/utils": { -- "version": "0.1.6" -- }, -- "@heroku/socksv5": { -- "version": "0.0.9", -- "requires": { -- "ip-address": "^5.8.8" -- } -- }, -- "@humanwhocodes/config-array": { -- "version": "0.5.0", -- "dev": true, -- "requires": { -- "@humanwhocodes/object-schema": "^1.2.0", -- "debug": "^4.1.1", -- "minimatch": "^3.0.4" -- }, -- "dependencies": { -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- } -- } -- }, -- "@humanwhocodes/object-schema": { -- "version": "1.2.1", -- "dev": true -- }, -- "@hutson/parse-repository-url": { -- "version": "3.0.2", -- "dev": true -- }, -- "@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==", -- "requires": { -- "@intlify/message-compiler": "9.13.1", -- "@intlify/shared": "9.13.1" -- } -- }, -- "@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==", -- "requires": { -- "@intlify/shared": "9.13.1", -- "source-map-js": "^1.0.2" -- } -- }, -- "@intlify/shared": { -- "version": "9.13.1", -- "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.13.1.tgz", -- "integrity": "sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==" -- }, -- "@isaacs/cliui": { -- "version": "8.0.2", -- "dev": true, -- "requires": { -- "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" -- }, -- "dependencies": { -- "ansi-regex": { -- "version": "6.0.1", -- "dev": true -- }, -- "ansi-styles": { -- "version": "6.2.1", -- "dev": true -- }, -- "emoji-regex": { -- "version": "9.2.2", -- "dev": true -- }, -- "string-width": { -- "version": "5.1.2", -- "dev": true, -- "requires": { -- "eastasianwidth": "^0.2.0", -- "emoji-regex": "^9.2.2", -- "strip-ansi": "^7.0.1" -- } -- }, -- "strip-ansi": { -- "version": "7.1.0", -- "dev": true, -- "requires": { -- "ansi-regex": "^6.0.1" -- } -- }, -- "wrap-ansi": { -- "version": "8.1.0", -- "dev": true, -- "requires": { -- "ansi-styles": "^6.1.0", -- "string-width": "^5.0.1", -- "strip-ansi": "^7.0.1" -- } -- } -- } -- }, -- "@jamescoyle/vue-icon": { -- "version": "0.1.2" -- }, -- "@jridgewell/gen-mapping": { -- "version": "0.3.3", -- "requires": { -- "@jridgewell/set-array": "^1.0.1", -- "@jridgewell/sourcemap-codec": "^1.4.10", -- "@jridgewell/trace-mapping": "^0.3.9" -- } -- }, -- "@jridgewell/resolve-uri": { -- "version": "3.1.1" -- }, -- "@jridgewell/set-array": { -- "version": "1.1.2" -- }, -- "@jridgewell/source-map": { -- "version": "0.3.5", -- "requires": { -- "@jridgewell/gen-mapping": "^0.3.0", -- "@jridgewell/trace-mapping": "^0.3.9" -- } -- }, -- "@jridgewell/sourcemap-codec": { -- "version": "1.4.15" -- }, -- "@jridgewell/trace-mapping": { -- "version": "0.3.20", -- "requires": { -- "@jridgewell/resolve-uri": "^3.1.0", -- "@jridgewell/sourcemap-codec": "^1.4.14" -- } -- }, -- "@leichtgewicht/ip-codec": { -- "version": "2.0.4", -- "dev": true -- }, -- "@malept/cross-spawn-promise": { -- "version": "1.1.1", -- "dev": true, -- "requires": { -- "cross-spawn": "^7.0.1" -- } -- }, -- "@malept/flatpak-bundler": { -- "version": "0.4.0", -- "dev": true, -- "requires": { -- "debug": "^4.1.1", -- "fs-extra": "^9.0.0", -- "lodash": "^4.17.15", -- "tmp-promise": "^3.0.2" -- }, -- "dependencies": { -- "fs-extra": { -- "version": "9.1.0", -- "dev": true, -- "requires": { -- "at-least-node": "^1.0.0", -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- } -- } -- }, -- "@mdi/js": { -- "version": "7.2.96" -- }, -- "@nodelib/fs.scandir": { -- "version": "2.1.5", -- "dev": true, -- "requires": { -- "@nodelib/fs.stat": "2.0.5", -- "run-parallel": "^1.1.9" -- } -- }, -- "@nodelib/fs.stat": { -- "version": "2.0.5", -- "dev": true -- }, -- "@nodelib/fs.walk": { -- "version": "1.2.8", -- "dev": true, -- "requires": { -- "@nodelib/fs.scandir": "2.1.5", -- "fastq": "^1.6.0" -- } -- }, -- "@pkgjs/parseargs": { -- "version": "0.11.0", -- "dev": true, -- "optional": true -- }, -- "@playwright/test": { -- "version": "1.28.1", -- "dev": true, -- "requires": { -- "@types/node": "*", -- "playwright-core": "1.28.1" -- } -- }, -- "@sindresorhus/is": { -- "version": "4.6.0" -- }, -- "@szmarczak/http-timer": { -- "version": "4.0.6", -- "requires": { -- "defer-to-connect": "^2.0.0" -- } -- }, -- "@tootallnate/once": { -- "version": "2.0.0", -- "dev": true -- }, -- "@tsconfig/node10": { -- "version": "1.0.9", -- "dev": true -- }, -- "@tsconfig/node12": { -- "version": "1.0.11", -- "dev": true -- }, -- "@tsconfig/node14": { -- "version": "1.0.3", -- "dev": true -- }, -- "@tsconfig/node16": { -- "version": "1.0.4", -- "dev": true -- }, -- "@turf/helpers": { -- "version": "6.5.0" -- }, -- "@types/better-sqlite3": { -- "version": "7.5.0", -- "dev": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/body-parser": { -- "version": "1.19.5", -- "dev": true, -- "requires": { -- "@types/connect": "*", -- "@types/node": "*" -- } -- }, -- "@types/bonjour": { -- "version": "3.5.13", -- "dev": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/cacheable-request": { -- "version": "6.0.3", -- "requires": { -- "@types/http-cache-semantics": "*", -- "@types/keyv": "^3.1.4", -- "@types/node": "*", -- "@types/responselike": "^1.0.0" -- } -- }, -- "@types/connect": { -- "version": "3.4.38", -- "dev": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/connect-history-api-fallback": { -- "version": "1.5.4", -- "dev": true, -- "requires": { -- "@types/express-serve-static-core": "*", -- "@types/node": "*" -- } -- }, -- "@types/conventional-commits-parser": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/debug": { -- "version": "4.1.12", -- "dev": true, -- "requires": { -- "@types/ms": "*" -- } -- }, -- "@types/eslint": { -- "version": "8.44.7", -- "requires": { -- "@types/estree": "*", -- "@types/json-schema": "*" -- } -- }, -- "@types/eslint-scope": { -- "version": "3.7.7", -- "requires": { -- "@types/eslint": "*", -- "@types/estree": "*" -- } -- }, -- "@types/estree": { -- "version": "1.0.5" -- }, -- "@types/express": { -- "version": "4.17.21", -- "dev": true, -- "requires": { -- "@types/body-parser": "*", -- "@types/express-serve-static-core": "^4.17.33", -- "@types/qs": "*", -- "@types/serve-static": "*" -- } -- }, -- "@types/express-serve-static-core": { -- "version": "4.17.41", -- "dev": true, -- "requires": { -- "@types/node": "*", -- "@types/qs": "*", -- "@types/range-parser": "*", -- "@types/send": "*" -- } -- }, -- "@types/fs-extra": { -- "version": "9.0.13", -- "dev": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/geojson": { -- "version": "7946.0.13", -- "dev": true -- }, -- "@types/html-minifier-terser": { -- "version": "6.1.0" -- }, -- "@types/http-cache-semantics": { -- "version": "4.0.4" -- }, -- "@types/http-errors": { -- "version": "2.0.4", -- "dev": true -- }, -- "@types/http-proxy": { -- "version": "1.17.14", -- "dev": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/json-schema": { -- "version": "7.0.15" -- }, -- "@types/json5": { -- "version": "0.0.29", -- "dev": true -- }, -- "@types/keyv": { -- "version": "3.1.4", -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/leaflet": { -- "version": "1.7.11", -- "dev": true, -- "requires": { -- "@types/geojson": "*" -- } -- }, -- "@types/marked": { -- "version": "4.0.8", -- "dev": true -- }, -- "@types/mime": { -- "version": "1.3.5", -- "dev": true -- }, -- "@types/minimist": { -- "version": "1.2.5", -- "dev": true -- }, -- "@types/ms": { -- "version": "0.7.34", -- "dev": true -- }, -- "@types/node": { -- "version": "17.0.45" -- }, -- "@types/node-forge": { -- "version": "1.3.10", -- "dev": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/normalize-package-data": { -- "version": "2.4.4", -- "dev": true -- }, -- "@types/pg": { -- "version": "8.6.6", -- "dev": true, -- "requires": { -- "@types/node": "*", -- "pg-protocol": "*", -- "pg-types": "^2.2.0" -- } -- }, -- "@types/qs": { -- "version": "6.9.10", -- "dev": true -- }, -- "@types/range-parser": { -- "version": "1.2.7", -- "dev": true -- }, -- "@types/responselike": { -- "version": "1.0.3", -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/retry": { -- "version": "0.12.0", -- "dev": true -- }, -- "@types/semver": { -- "version": "7.5.6" -- }, -- "@types/send": { -- "version": "0.17.4", -- "dev": true, -- "requires": { -- "@types/mime": "^1", -- "@types/node": "*" -- } -- }, -- "@types/serve-index": { -- "version": "1.9.4", -- "dev": true, -- "requires": { -- "@types/express": "*" -- } -- }, -- "@types/serve-static": { -- "version": "1.15.5", -- "dev": true, -- "requires": { -- "@types/http-errors": "*", -- "@types/mime": "*", -- "@types/node": "*" -- } -- }, -- "@types/sockjs": { -- "version": "0.3.36", -- "dev": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/ssh2": { -- "version": "1.11.17", -- "dev": true, -- "requires": { -- "@types/node": "^18.11.18" -- }, -- "dependencies": { -- "@types/node": { -- "version": "18.18.13", -- "dev": true, -- "requires": { -- "undici-types": "~5.26.4" -- } -- } -- } -- }, -- "@types/web-bluetooth": { -- "version": "0.0.17" -- }, -- "@types/ws": { -- "version": "8.5.10", -- "dev": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@types/yauzl": { -- "version": "2.10.3", -- "optional": true, -- "requires": { -- "@types/node": "*" -- } -- }, -- "@typescript-eslint/eslint-plugin": { -- "version": "5.18.0", -- "dev": true, -- "requires": { -- "@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" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "@typescript-eslint/parser": { -- "version": "5.18.0", -- "dev": true, -- "requires": { -- "@typescript-eslint/scope-manager": "5.18.0", -- "@typescript-eslint/types": "5.18.0", -- "@typescript-eslint/typescript-estree": "5.18.0", -- "debug": "^4.3.2" -- } -- }, -- "@typescript-eslint/scope-manager": { -- "version": "5.18.0", -- "dev": true, -- "requires": { -- "@typescript-eslint/types": "5.18.0", -- "@typescript-eslint/visitor-keys": "5.18.0" -- } -- }, -- "@typescript-eslint/type-utils": { -- "version": "5.18.0", -- "dev": true, -- "requires": { -- "@typescript-eslint/utils": "5.18.0", -- "debug": "^4.3.2", -- "tsutils": "^3.21.0" -- } -- }, -- "@typescript-eslint/types": { -- "version": "5.18.0", -- "dev": true -- }, -- "@typescript-eslint/typescript-estree": { -- "version": "5.18.0", -- "dev": true, -- "requires": { -- "@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" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "@typescript-eslint/utils": { -- "version": "5.18.0", -- "dev": true, -- "requires": { -- "@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" -- } -- }, -- "@typescript-eslint/visitor-keys": { -- "version": "5.18.0", -- "dev": true, -- "requires": { -- "@typescript-eslint/types": "5.18.0", -- "eslint-visitor-keys": "^3.0.0" -- }, -- "dependencies": { -- "eslint-visitor-keys": { -- "version": "3.4.3", -- "dev": true -- } -- } -- }, -- "@vue/compiler-core": { -- "version": "3.2.47", -- "requires": { -- "@babel/parser": "^7.16.4", -- "@vue/shared": "3.2.47", -- "estree-walker": "^2.0.2", -- "source-map": "^0.6.1" -- } -- }, -- "@vue/compiler-dom": { -- "version": "3.2.47", -- "requires": { -- "@vue/compiler-core": "3.2.47", -- "@vue/shared": "3.2.47" -- } -- }, -- "@vue/compiler-sfc": { -- "version": "3.2.47", -- "requires": { -- "@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" -- } -- }, -- "@vue/compiler-ssr": { -- "version": "3.2.47", -- "requires": { -- "@vue/compiler-dom": "3.2.47", -- "@vue/shared": "3.2.47" -- } -- }, -- "@vue/devtools-api": { -- "version": "6.5.1" -- }, -- "@vue/reactivity": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.27.tgz", -- "integrity": "sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==", -- "requires": { -- "@vue/shared": "3.4.27" -- }, -- "dependencies": { -- "@vue/shared": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" -- } -- } -- }, -- "@vue/reactivity-transform": { -- "version": "3.2.47", -- "requires": { -- "@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" -- } -- }, -- "@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==", -- "requires": { -- "@vue/reactivity": "3.4.27", -- "@vue/shared": "3.4.27" -- }, -- "dependencies": { -- "@vue/shared": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" -- } -- } -- }, -- "@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==", -- "requires": { -- "@vue/runtime-core": "3.4.27", -- "@vue/shared": "3.4.27", -- "csstype": "^3.1.3" -- }, -- "dependencies": { -- "@vue/shared": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" -- } -- } -- }, -- "@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==", -- "requires": { -- "@vue/compiler-ssr": "3.4.27", -- "@vue/shared": "3.4.27" -- }, -- "dependencies": { -- "@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==", -- "requires": { -- "@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" -- } -- }, -- "@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==", -- "requires": { -- "@vue/compiler-core": "3.4.27", -- "@vue/shared": "3.4.27" -- } -- }, -- "@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==", -- "requires": { -- "@vue/compiler-dom": "3.4.27", -- "@vue/shared": "3.4.27" -- } -- }, -- "@vue/shared": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" -- } -- } -- }, -- "@vue/shared": { -- "version": "3.2.47" -- }, -- "@vueuse/core": { -- "version": "10.4.1", -- "requires": { -- "@types/web-bluetooth": "^0.0.17", -- "@vueuse/metadata": "10.4.1", -- "@vueuse/shared": "10.4.1", -- "vue-demi": ">=0.14.5" -- }, -- "dependencies": { -- "vue-demi": { -- "version": "0.14.6", -- "requires": {} -- } -- } -- }, -- "@vueuse/metadata": { -- "version": "10.4.1" -- }, -- "@vueuse/shared": { -- "version": "10.4.1", -- "requires": { -- "vue-demi": ">=0.14.5" -- }, -- "dependencies": { -- "vue-demi": { -- "version": "0.14.6", -- "requires": {} -- } -- } -- }, -- "@webassemblyjs/ast": { -- "version": "1.12.1", -- "requires": { -- "@webassemblyjs/helper-numbers": "1.11.6", -- "@webassemblyjs/helper-wasm-bytecode": "1.11.6" -- } -- }, -- "@webassemblyjs/floating-point-hex-parser": { -- "version": "1.11.6" -- }, -- "@webassemblyjs/helper-api-error": { -- "version": "1.11.6" -- }, -- "@webassemblyjs/helper-buffer": { -- "version": "1.12.1" -- }, -- "@webassemblyjs/helper-numbers": { -- "version": "1.11.6", -- "requires": { -- "@webassemblyjs/floating-point-hex-parser": "1.11.6", -- "@webassemblyjs/helper-api-error": "1.11.6", -- "@xtuc/long": "4.2.2" -- } -- }, -- "@webassemblyjs/helper-wasm-bytecode": { -- "version": "1.11.6" -- }, -- "@webassemblyjs/helper-wasm-section": { -- "version": "1.12.1", -- "requires": { -- "@webassemblyjs/ast": "1.12.1", -- "@webassemblyjs/helper-buffer": "1.12.1", -- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", -- "@webassemblyjs/wasm-gen": "1.12.1" -- } -- }, -- "@webassemblyjs/ieee754": { -- "version": "1.11.6", -- "requires": { -- "@xtuc/ieee754": "^1.2.0" -- } -- }, -- "@webassemblyjs/leb128": { -- "version": "1.11.6", -- "requires": { -- "@xtuc/long": "4.2.2" -- } -- }, -- "@webassemblyjs/utf8": { -- "version": "1.11.6" -- }, -- "@webassemblyjs/wasm-edit": { -- "version": "1.12.1", -- "requires": { -- "@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" -- } -- }, -- "@webassemblyjs/wasm-gen": { -- "version": "1.12.1", -- "requires": { -- "@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" -- } -- }, -- "@webassemblyjs/wasm-opt": { -- "version": "1.12.1", -- "requires": { -- "@webassemblyjs/ast": "1.12.1", -- "@webassemblyjs/helper-buffer": "1.12.1", -- "@webassemblyjs/wasm-gen": "1.12.1", -- "@webassemblyjs/wasm-parser": "1.12.1" -- } -- }, -- "@webassemblyjs/wasm-parser": { -- "version": "1.12.1", -- "requires": { -- "@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" -- } -- }, -- "@webassemblyjs/wast-printer": { -- "version": "1.12.1", -- "requires": { -- "@webassemblyjs/ast": "1.12.1", -- "@xtuc/long": "4.2.2" -- } -- }, -- "@webpack-cli/configtest": { -- "version": "1.2.0", -- "requires": {} -- }, -- "@webpack-cli/info": { -- "version": "1.5.0", -- "requires": { -- "envinfo": "^7.7.3" -- } -- }, -- "@webpack-cli/serve": { -- "version": "1.7.0", -- "requires": {} -- }, -- "@xmldom/xmldom": { -- "version": "0.8.10", -- "dev": true -- }, -- "@xtuc/ieee754": { -- "version": "1.2.0" -- }, -- "@xtuc/long": { -- "version": "4.2.2" -- }, -- "7zip-bin": { -- "version": "5.2.0", -- "dev": true -- }, -- "accepts": { -- "version": "1.3.8", -- "dev": true, -- "requires": { -- "mime-types": "~2.1.34", -- "negotiator": "0.6.3" -- } -- }, -- "ace-builds": { -- "version": "1.34.1", -- "resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.34.1.tgz", -- "integrity": "sha512-hwRzr6BkRwsq5A19yA9E36KNNtn0+zESYolnWK3TADJsWVQS0T24nvbgdjXwqk2JEMQXE4PlqAw+ZgprvFtKjw==" -- }, -- "acorn": { -- "version": "7.4.1", -- "dev": true -- }, -- "acorn-jsx": { -- "version": "5.3.2", -- "dev": true, -- "requires": {} -- }, -- "acorn-walk": { -- "version": "8.3.0", -- "dev": true -- }, -- "add-stream": { -- "version": "1.0.0", -- "dev": true -- }, -- "agent-base": { -- "version": "6.0.2", -- "dev": true, -- "requires": { -- "debug": "4" -- } -- }, -- "ajv": { -- "version": "6.12.6", -- "requires": { -- "fast-deep-equal": "^3.1.1", -- "fast-json-stable-stringify": "^2.0.0", -- "json-schema-traverse": "^0.4.1", -- "uri-js": "^4.2.2" -- } -- }, -- "ajv-formats": { -- "version": "2.1.1", -- "requires": { -- "ajv": "^8.0.0" -- }, -- "dependencies": { -- "ajv": { -- "version": "8.12.0", -- "requires": { -- "fast-deep-equal": "^3.1.1", -- "json-schema-traverse": "^1.0.0", -- "require-from-string": "^2.0.2", -- "uri-js": "^4.2.2" -- } -- }, -- "json-schema-traverse": { -- "version": "1.0.0" -- } -- } -- }, -- "ajv-keywords": { -- "version": "3.5.2", -- "requires": {} -- }, -- "all-contributors-cli": { -- "version": "6.20.5", -- "dev": true, -- "requires": { -- "@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" -- } -- }, -- "ansi-colors": { -- "version": "4.1.3", -- "dev": true -- }, -- "ansi-escapes": { -- "version": "4.3.2", -- "dev": true, -- "requires": { -- "type-fest": "^0.21.3" -- }, -- "dependencies": { -- "type-fest": { -- "version": "0.21.3", -- "dev": true -- } -- } -- }, -- "ansi-html-community": { -- "version": "0.0.8", -- "dev": true -- }, -- "ansi-regex": { -- "version": "5.0.1" -- }, -- "ansi-styles": { -- "version": "4.3.0", -- "requires": { -- "color-convert": "^2.0.1" -- } -- }, -- "anymatch": { -- "version": "3.1.3", -- "requires": { -- "normalize-path": "^3.0.0", -- "picomatch": "^2.0.4" -- } -- }, -- "app-builder-bin": { -- "version": "4.0.0", -- "dev": true -- }, -- "app-builder-lib": { -- "version": "24.13.3", -- "dev": true, -- "requires": { -- "@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" -- }, -- "dependencies": { -- "fs-extra": { -- "version": "10.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "semver": { -- "version": "7.6.2", -- "dev": true -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- } -- } -- }, -- "archiver": { -- "version": "5.3.2", -- "dev": true, -- "peer": true, -- "requires": { -- "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" -- } -- }, -- "archiver-utils": { -- "version": "2.1.0", -- "dev": true, -- "peer": true, -- "requires": { -- "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" -- }, -- "dependencies": { -- "isarray": { -- "version": "1.0.0", -- "dev": true, -- "peer": true -- }, -- "readable-stream": { -- "version": "2.3.8", -- "dev": true, -- "peer": true, -- "requires": { -- "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" -- } -- }, -- "safe-buffer": { -- "version": "5.1.2", -- "dev": true, -- "peer": true -- }, -- "string_decoder": { -- "version": "1.1.1", -- "dev": true, -- "peer": true, -- "requires": { -- "safe-buffer": "~5.1.0" -- } -- } -- } -- }, -- "arg": { -- "version": "4.1.3", -- "dev": true -- }, -- "argparse": { -- "version": "2.0.1" -- }, -- "array-buffer-byte-length": { -- "version": "1.0.0", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "is-array-buffer": "^3.0.1" -- } -- }, -- "array-flatten": { -- "version": "2.1.2", -- "dev": true -- }, -- "array-ify": { -- "version": "1.0.0", -- "dev": true -- }, -- "array-includes": { -- "version": "3.1.7", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "array-union": { -- "version": "2.1.0", -- "dev": true -- }, -- "array.prototype.flat": { -- "version": "1.3.2", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "es-abstract": "^1.22.1", -- "es-shim-unscopables": "^1.0.0" -- } -- }, -- "arraybuffer.prototype.slice": { -- "version": "1.0.2", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "arrify": { -- "version": "1.0.1", -- "dev": true -- }, -- "asn1": { -- "version": "0.2.6", -- "requires": { -- "safer-buffer": "~2.1.0" -- } -- }, -- "astral-regex": { -- "version": "2.0.0", -- "dev": true -- }, -- "async": { -- "version": "3.2.5", -- "dev": true -- }, -- "async-exit-hook": { -- "version": "2.0.1", -- "dev": true -- }, -- "asynckit": { -- "version": "0.4.0", -- "dev": true -- }, -- "at-least-node": { -- "version": "1.0.0", -- "dev": true -- }, -- "atomically": { -- "version": "1.7.0" -- }, -- "available-typed-arrays": { -- "version": "1.0.5", -- "dev": true -- }, -- "babel-loader": { -- "version": "8.2.5", -- "requires": { -- "find-cache-dir": "^3.3.1", -- "loader-utils": "^2.0.0", -- "make-dir": "^3.1.0", -- "schema-utils": "^2.6.5" -- } -- }, -- "babel-plugin-polyfill-corejs2": { -- "version": "0.2.3", -- "dev": true, -- "requires": { -- "@babel/compat-data": "^7.13.11", -- "@babel/helper-define-polyfill-provider": "^0.2.4", -- "semver": "^6.1.1" -- } -- }, -- "babel-plugin-polyfill-corejs3": { -- "version": "0.2.5", -- "dev": true, -- "requires": { -- "@babel/helper-define-polyfill-provider": "^0.2.2", -- "core-js-compat": "^3.16.2" -- } -- }, -- "babel-plugin-polyfill-regenerator": { -- "version": "0.2.3", -- "dev": true, -- "requires": { -- "@babel/helper-define-polyfill-provider": "^0.2.4" -- } -- }, -- "balanced-match": { -- "version": "1.0.2" -- }, -- "base64-js": { -- "version": "1.5.1" -- }, -- "batch": { -- "version": "0.6.1", -- "dev": true -- }, -- "bcrypt-pbkdf": { -- "version": "1.0.2", -- "requires": { -- "tweetnacl": "^0.14.3" -- } -- }, -- "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==", -- "requires": { -- "bindings": "^1.5.0", -- "prebuild-install": "^7.1.1" -- } -- }, -- "big-integer": { -- "version": "1.6.52" -- }, -- "big.js": { -- "version": "5.2.2" -- }, -- "binary-extensions": { -- "version": "2.2.0" -- }, -- "bindings": { -- "version": "1.5.0", -- "requires": { -- "file-uri-to-path": "1.0.0" -- } -- }, -- "bl": { -- "version": "4.1.0", -- "requires": { -- "buffer": "^5.5.0", -- "inherits": "^2.0.4", -- "readable-stream": "^3.4.0" -- } -- }, -- "bluebird": { -- "version": "3.7.2", -- "dev": true -- }, -- "bluebird-lst": { -- "version": "1.0.9", -- "dev": true, -- "requires": { -- "bluebird": "^3.5.5" -- } -- }, -- "body-parser": { -- "version": "1.20.2", -- "dev": true, -- "requires": { -- "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" -- }, -- "dependencies": { -- "bytes": { -- "version": "3.1.2", -- "dev": true -- }, -- "debug": { -- "version": "2.6.9", -- "dev": true, -- "requires": { -- "ms": "2.0.0" -- } -- }, -- "iconv-lite": { -- "version": "0.4.24", -- "dev": true, -- "requires": { -- "safer-buffer": ">= 2.1.2 < 3" -- } -- }, -- "ms": { -- "version": "2.0.0", -- "dev": true -- } -- } -- }, -- "bonjour-service": { -- "version": "1.1.1", -- "dev": true, -- "requires": { -- "array-flatten": "^2.1.2", -- "dns-equal": "^1.0.0", -- "fast-deep-equal": "^3.1.3", -- "multicast-dns": "^7.2.5" -- } -- }, -- "boolbase": { -- "version": "1.0.0" -- }, -- "boolean": { -- "version": "3.2.0", -- "optional": true -- }, -- "brace-expansion": { -- "version": "2.0.1", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0" -- } -- }, -- "braces": { -- "version": "3.0.2", -- "requires": { -- "fill-range": "^7.0.1" -- } -- }, -- "browserslist": { -- "version": "4.22.1", -- "requires": { -- "caniuse-lite": "^1.0.30001541", -- "electron-to-chromium": "^1.4.535", -- "node-releases": "^2.0.13", -- "update-browserslist-db": "^1.0.13" -- } -- }, -- "buffer": { -- "version": "5.7.1", -- "requires": { -- "base64-js": "^1.3.1", -- "ieee754": "^1.1.13" -- } -- }, -- "buffer-crc32": { -- "version": "0.2.13" -- }, -- "buffer-equal": { -- "version": "1.0.1", -- "dev": true -- }, -- "buffer-from": { -- "version": "1.1.2" -- }, -- "buildcheck": { -- "version": "0.0.6" -- }, -- "builder-util": { -- "version": "24.13.1", -- "dev": true, -- "requires": { -- "@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" -- }, -- "dependencies": { -- "fs-extra": { -- "version": "10.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- } -- } -- }, -- "builder-util-runtime": { -- "version": "9.2.4", -- "dev": true, -- "requires": { -- "debug": "^4.3.4", -- "sax": "^1.2.4" -- } -- }, -- "bytes": { -- "version": "3.0.0", -- "dev": true -- }, -- "cacheable-lookup": { -- "version": "5.0.4" -- }, -- "cacheable-request": { -- "version": "7.0.4", -- "requires": { -- "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" -- } -- }, -- "call-bind": { -- "version": "1.0.5", -- "dev": true, -- "requires": { -- "function-bind": "^1.1.2", -- "get-intrinsic": "^1.2.1", -- "set-function-length": "^1.1.1" -- } -- }, -- "callsites": { -- "version": "3.1.0", -- "dev": true -- }, -- "camel-case": { -- "version": "4.1.2", -- "requires": { -- "pascal-case": "^3.1.2", -- "tslib": "^2.0.3" -- } -- }, -- "camelcase": { -- "version": "5.3.1", -- "dev": true -- }, -- "camelcase-keys": { -- "version": "6.2.2", -- "dev": true, -- "requires": { -- "camelcase": "^5.3.1", -- "map-obj": "^4.0.0", -- "quick-lru": "^4.0.1" -- }, -- "dependencies": { -- "quick-lru": { -- "version": "4.0.1", -- "dev": true -- } -- } -- }, -- "caniuse-lite": { -- "version": "1.0.30001564" -- }, -- "chalk": { -- "version": "4.1.2", -- "requires": { -- "ansi-styles": "^4.1.0", -- "supports-color": "^7.1.0" -- } -- }, -- "chardet": { -- "version": "0.7.0", -- "dev": true -- }, -- "chokidar": { -- "version": "3.5.3", -- "requires": { -- "anymatch": "~3.1.2", -- "braces": "~3.0.2", -- "fsevents": "~2.3.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" -- } -- }, -- "chownr": { -- "version": "2.0.0", -- "dev": true -- }, -- "chrome-trace-event": { -- "version": "1.0.3" -- }, -- "chromium-pickle-js": { -- "version": "0.2.0", -- "dev": true -- }, -- "ci-info": { -- "version": "3.9.0", -- "dev": true -- }, -- "clean-css": { -- "version": "5.3.2", -- "requires": { -- "source-map": "~0.6.0" -- } -- }, -- "cli-cursor": { -- "version": "3.1.0", -- "dev": true, -- "requires": { -- "restore-cursor": "^3.1.0" -- } -- }, -- "cli-width": { -- "version": "3.0.0", -- "dev": true -- }, -- "cliui": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "string-width": "^4.2.0", -- "strip-ansi": "^6.0.0", -- "wrap-ansi": "^6.2.0" -- }, -- "dependencies": { -- "wrap-ansi": { -- "version": "6.2.0", -- "dev": true, -- "requires": { -- "ansi-styles": "^4.0.0", -- "string-width": "^4.1.0", -- "strip-ansi": "^6.0.0" -- } -- } -- } -- }, -- "clone-deep": { -- "version": "4.0.1", -- "requires": { -- "is-plain-object": "^2.0.4", -- "kind-of": "^6.0.2", -- "shallow-clone": "^3.0.0" -- }, -- "dependencies": { -- "is-plain-object": { -- "version": "2.0.4", -- "requires": { -- "isobject": "^3.0.1" -- } -- } -- } -- }, -- "clone-response": { -- "version": "1.0.3", -- "requires": { -- "mimic-response": "^1.0.0" -- } -- }, -- "color-convert": { -- "version": "2.0.1", -- "requires": { -- "color-name": "~1.1.4" -- } -- }, -- "color-name": { -- "version": "1.1.4" -- }, -- "colord": { -- "version": "2.9.3", -- "dev": true -- }, -- "colorette": { -- "version": "2.0.20" -- }, -- "combined-stream": { -- "version": "1.0.8", -- "dev": true, -- "requires": { -- "delayed-stream": "~1.0.0" -- } -- }, -- "commander": { -- "version": "5.1.0", -- "dev": true -- }, -- "commondir": { -- "version": "1.0.1" -- }, -- "compare-func": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "array-ify": "^1.0.0", -- "dot-prop": "^5.1.0" -- }, -- "dependencies": { -- "dot-prop": { -- "version": "5.3.0", -- "dev": true, -- "requires": { -- "is-obj": "^2.0.0" -- } -- } -- } -- }, -- "compare-version": { -- "version": "0.1.2", -- "dev": true -- }, -- "compress-commons": { -- "version": "4.1.2", -- "dev": true, -- "peer": true, -- "requires": { -- "buffer-crc32": "^0.2.13", -- "crc32-stream": "^4.0.2", -- "normalize-path": "^3.0.0", -- "readable-stream": "^3.6.0" -- } -- }, -- "compressible": { -- "version": "2.0.18", -- "dev": true, -- "requires": { -- "mime-db": ">= 1.43.0 < 2" -- } -- }, -- "compression": { -- "version": "1.7.4", -- "dev": true, -- "requires": { -- "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" -- }, -- "dependencies": { -- "debug": { -- "version": "2.6.9", -- "dev": true, -- "requires": { -- "ms": "2.0.0" -- } -- }, -- "ms": { -- "version": "2.0.0", -- "dev": true -- }, -- "safe-buffer": { -- "version": "5.1.2", -- "dev": true -- } -- } -- }, -- "concat-map": { -- "version": "0.0.1" -- }, -- "concat-stream": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "buffer-from": "^1.0.0", -- "inherits": "^2.0.3", -- "readable-stream": "^3.0.2", -- "typedarray": "^0.0.6" -- } -- }, -- "conf": { -- "version": "10.2.0", -- "requires": { -- "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" -- }, -- "dependencies": { -- "ajv": { -- "version": "8.12.0", -- "requires": { -- "fast-deep-equal": "^3.1.1", -- "json-schema-traverse": "^1.0.0", -- "require-from-string": "^2.0.2", -- "uri-js": "^4.2.2" -- } -- }, -- "json-schema-traverse": { -- "version": "1.0.0" -- }, -- "lru-cache": { -- "version": "6.0.0", -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0" -- } -- } -- }, -- "config-file-ts": { -- "version": "0.2.6", -- "dev": true, -- "requires": { -- "glob": "^10.3.10", -- "typescript": "^5.3.3" -- }, -- "dependencies": { -- "glob": { -- "version": "10.3.15", -- "dev": true, -- "requires": { -- "foreground-child": "^3.1.0", -- "jackspeak": "^2.3.6", -- "minimatch": "^9.0.1", -- "minipass": "^7.0.4", -- "path-scurry": "^1.11.0" -- } -- }, -- "minimatch": { -- "version": "9.0.4", -- "dev": true, -- "requires": { -- "brace-expansion": "^2.0.1" -- } -- }, -- "minipass": { -- "version": "7.1.1", -- "dev": true -- }, -- "typescript": { -- "version": "5.4.5", -- "dev": true -- } -- } -- }, -- "connect-history-api-fallback": { -- "version": "2.0.0", -- "dev": true -- }, -- "content-disposition": { -- "version": "0.5.4", -- "dev": true, -- "requires": { -- "safe-buffer": "5.2.1" -- } -- }, -- "content-type": { -- "version": "1.0.5", -- "dev": true -- }, -- "conventional-changelog": { -- "version": "3.1.24", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "conventional-changelog-angular": { -- "version": "5.0.13", -- "dev": true, -- "requires": { -- "compare-func": "^2.0.0", -- "q": "^1.5.1" -- } -- }, -- "conventional-changelog-atom": { -- "version": "2.0.8", -- "dev": true, -- "requires": { -- "q": "^1.5.1" -- } -- }, -- "conventional-changelog-codemirror": { -- "version": "2.0.8", -- "dev": true, -- "requires": { -- "q": "^1.5.1" -- } -- }, -- "conventional-changelog-config-spec": { -- "version": "2.1.0", -- "dev": true -- }, -- "conventional-changelog-conventionalcommits": { -- "version": "4.6.1", -- "dev": true, -- "requires": { -- "compare-func": "^2.0.0", -- "lodash": "^4.17.15", -- "q": "^1.5.1" -- } -- }, -- "conventional-changelog-core": { -- "version": "4.2.4", -- "dev": true, -- "requires": { -- "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" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "normalize-package-data": { -- "version": "3.0.3", -- "dev": true, -- "requires": { -- "hosted-git-info": "^4.0.1", -- "is-core-module": "^2.5.0", -- "semver": "^7.3.4", -- "validate-npm-package-license": "^3.0.1" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "conventional-changelog-ember": { -- "version": "2.0.9", -- "dev": true, -- "requires": { -- "q": "^1.5.1" -- } -- }, -- "conventional-changelog-eslint": { -- "version": "3.0.9", -- "dev": true, -- "requires": { -- "q": "^1.5.1" -- } -- }, -- "conventional-changelog-express": { -- "version": "2.0.6", -- "dev": true, -- "requires": { -- "q": "^1.5.1" -- } -- }, -- "conventional-changelog-jquery": { -- "version": "3.0.11", -- "dev": true, -- "requires": { -- "q": "^1.5.1" -- } -- }, -- "conventional-changelog-jshint": { -- "version": "2.0.9", -- "dev": true, -- "requires": { -- "compare-func": "^2.0.0", -- "q": "^1.5.1" -- } -- }, -- "conventional-changelog-preset-loader": { -- "version": "2.3.4", -- "dev": true -- }, -- "conventional-changelog-writer": { -- "version": "5.0.1", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "conventional-commits-filter": { -- "version": "2.0.7", -- "dev": true, -- "requires": { -- "lodash.ismatch": "^4.4.0", -- "modify-values": "^1.0.0" -- } -- }, -- "conventional-commits-parser": { -- "version": "3.2.4", -- "dev": true, -- "requires": { -- "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" -- }, -- "dependencies": { -- "split2": { -- "version": "3.2.2", -- "dev": true, -- "requires": { -- "readable-stream": "^3.0.0" -- } -- } -- } -- }, -- "conventional-recommended-bump": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "convert-source-map": { -- "version": "2.0.0", -- "peer": true -- }, -- "cookie": { -- "version": "0.6.0", -- "dev": true -- }, -- "cookie-signature": { -- "version": "1.0.6", -- "dev": true -- }, -- "core-js-compat": { -- "version": "3.33.3", -- "dev": true, -- "requires": { -- "browserslist": "^4.22.1" -- } -- }, -- "core-util-is": { -- "version": "1.0.2" -- }, -- "cpu-features": { -- "version": "0.0.10", -- "requires": { -- "buildcheck": "~0.0.6", -- "nan": "^2.19.0" -- } -- }, -- "crc-32": { -- "version": "1.2.2", -- "dev": true, -- "peer": true -- }, -- "crc32-stream": { -- "version": "4.0.3", -- "dev": true, -- "peer": true, -- "requires": { -- "crc-32": "^1.2.0", -- "readable-stream": "^3.4.0" -- } -- }, -- "create-require": { -- "version": "1.1.1", -- "dev": true -- }, -- "cross-env": { -- "version": "7.0.3", -- "requires": { -- "cross-spawn": "^7.0.1" -- } -- }, -- "cross-spawn": { -- "version": "7.0.3", -- "requires": { -- "path-key": "^3.1.0", -- "shebang-command": "^2.0.0", -- "which": "^2.0.1" -- } -- }, -- "css-functions-list": { -- "version": "3.2.1", -- "dev": true -- }, -- "css-loader": { -- "version": "6.5.1", -- "requires": { -- "icss-utils": "^5.1.0", -- "postcss": "^8.2.15", -- "postcss-modules-extract-imports": "^3.0.0", -- "postcss-modules-local-by-default": "^4.0.0", -- "postcss-modules-scope": "^3.0.0", -- "postcss-modules-values": "^4.0.0", -- "postcss-value-parser": "^4.1.0", -- "semver": "^7.3.5" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0" -- } -- } -- }, -- "css-select": { -- "version": "4.3.0", -- "requires": { -- "boolbase": "^1.0.0", -- "css-what": "^6.0.1", -- "domhandler": "^4.3.1", -- "domutils": "^2.8.0", -- "nth-check": "^2.0.1" -- }, -- "dependencies": { -- "dom-serializer": { -- "version": "1.4.1", -- "requires": { -- "domelementtype": "^2.0.1", -- "domhandler": "^4.2.0", -- "entities": "^2.0.0" -- } -- }, -- "domhandler": { -- "version": "4.3.1", -- "requires": { -- "domelementtype": "^2.2.0" -- } -- }, -- "domutils": { -- "version": "2.8.0", -- "requires": { -- "dom-serializer": "^1.0.1", -- "domelementtype": "^2.2.0", -- "domhandler": "^4.2.0" -- } -- }, -- "entities": { -- "version": "2.2.0" -- } -- } -- }, -- "css-tree": { -- "version": "2.3.1", -- "dev": true, -- "requires": { -- "mdn-data": "2.0.30", -- "source-map-js": "^1.0.1" -- } -- }, -- "css-what": { -- "version": "6.1.0" -- }, -- "cssesc": { -- "version": "3.0.0" -- }, -- "csstype": { -- "version": "3.1.3", -- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", -- "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" -- }, -- "dargs": { -- "version": "7.0.0", -- "dev": true -- }, -- "dateformat": { -- "version": "3.0.3", -- "dev": true -- }, -- "debounce-fn": { -- "version": "4.0.0", -- "requires": { -- "mimic-fn": "^3.0.0" -- } -- }, -- "debug": { -- "version": "4.3.4", -- "requires": { -- "ms": "2.1.2" -- } -- }, -- "decamelize": { -- "version": "1.2.0", -- "dev": true -- }, -- "decamelize-keys": { -- "version": "1.1.1", -- "dev": true, -- "requires": { -- "decamelize": "^1.1.0", -- "map-obj": "^1.0.0" -- }, -- "dependencies": { -- "map-obj": { -- "version": "1.0.1", -- "dev": true -- } -- } -- }, -- "decompress-response": { -- "version": "6.0.0", -- "requires": { -- "mimic-response": "^3.1.0" -- }, -- "dependencies": { -- "mimic-response": { -- "version": "3.1.0" -- } -- } -- }, -- "deep-extend": { -- "version": "0.6.0" -- }, -- "deep-is": { -- "version": "0.1.4", -- "dev": true -- }, -- "default-gateway": { -- "version": "6.0.3", -- "dev": true, -- "requires": { -- "execa": "^5.0.0" -- } -- }, -- "defer-to-connect": { -- "version": "2.0.1" -- }, -- "define-data-property": { -- "version": "1.1.1", -- "devOptional": true, -- "requires": { -- "get-intrinsic": "^1.2.1", -- "gopd": "^1.0.1", -- "has-property-descriptors": "^1.0.0" -- } -- }, -- "define-lazy-prop": { -- "version": "2.0.0", -- "dev": true -- }, -- "define-properties": { -- "version": "1.2.1", -- "devOptional": true, -- "requires": { -- "define-data-property": "^1.0.1", -- "has-property-descriptors": "^1.0.0", -- "object-keys": "^1.1.1" -- } -- }, -- "delayed-stream": { -- "version": "1.0.0", -- "dev": true -- }, -- "denque": { -- "version": "2.1.0" -- }, -- "depd": { -- "version": "2.0.0", -- "dev": true -- }, -- "destroy": { -- "version": "1.2.0", -- "dev": true -- }, -- "detect-indent": { -- "version": "6.1.0", -- "dev": true -- }, -- "detect-libc": { -- "version": "2.0.2" -- }, -- "detect-newline": { -- "version": "3.1.0", -- "dev": true -- }, -- "detect-node": { -- "version": "2.1.0", -- "devOptional": true -- }, -- "didyoumean": { -- "version": "1.2.2", -- "dev": true -- }, -- "diff": { -- "version": "4.0.2", -- "dev": true -- }, -- "dir-compare": { -- "version": "3.3.0", -- "dev": true, -- "requires": { -- "buffer-equal": "^1.0.0", -- "minimatch": "^3.0.4" -- }, -- "dependencies": { -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- } -- } -- }, -- "dir-glob": { -- "version": "3.0.1", -- "dev": true, -- "requires": { -- "path-type": "^4.0.0" -- } -- }, -- "discontinuous-range": { -- "version": "1.0.0" -- }, -- "dmg-builder": { -- "version": "24.13.3", -- "dev": true, -- "requires": { -- "app-builder-lib": "24.13.3", -- "builder-util": "24.13.1", -- "builder-util-runtime": "9.2.4", -- "dmg-license": "^1.0.11", -- "fs-extra": "^10.1.0", -- "iconv-lite": "^0.6.2", -- "js-yaml": "^4.1.0" -- }, -- "dependencies": { -- "fs-extra": { -- "version": "10.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- } -- } -- }, -- "dns-equal": { -- "version": "1.0.0", -- "dev": true -- }, -- "dns-packet": { -- "version": "5.6.1", -- "dev": true, -- "requires": { -- "@leichtgewicht/ip-codec": "^2.0.1" -- } -- }, -- "doctrine": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "esutils": "^2.0.2" -- } -- }, -- "dom-converter": { -- "version": "0.2.0", -- "requires": { -- "utila": "~0.4" -- } -- }, -- "dom-serializer": { -- "version": "2.0.0", -- "requires": { -- "domelementtype": "^2.3.0", -- "domhandler": "^5.0.2", -- "entities": "^4.2.0" -- } -- }, -- "domelementtype": { -- "version": "2.3.0" -- }, -- "domhandler": { -- "version": "5.0.3", -- "requires": { -- "domelementtype": "^2.3.0" -- } -- }, -- "domutils": { -- "version": "3.1.0", -- "requires": { -- "dom-serializer": "^2.0.0", -- "domelementtype": "^2.3.0", -- "domhandler": "^5.0.3" -- } -- }, -- "dot-case": { -- "version": "3.0.4", -- "requires": { -- "no-case": "^3.0.4", -- "tslib": "^2.0.3" -- } -- }, -- "dot-prop": { -- "version": "6.0.1", -- "requires": { -- "is-obj": "^2.0.0" -- } -- }, -- "dotenv": { -- "version": "9.0.2", -- "dev": true -- }, -- "dotenv-expand": { -- "version": "5.1.0", -- "dev": true -- }, -- "dotgitignore": { -- "version": "2.1.0", -- "dev": true, -- "requires": { -- "find-up": "^3.0.0", -- "minimatch": "^3.0.4" -- }, -- "dependencies": { -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "find-up": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "locate-path": "^3.0.0" -- } -- }, -- "locate-path": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "p-locate": "^3.0.0", -- "path-exists": "^3.0.0" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- }, -- "p-limit": { -- "version": "2.3.0", -- "dev": true, -- "requires": { -- "p-try": "^2.0.0" -- } -- }, -- "p-locate": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "p-limit": "^2.0.0" -- } -- }, -- "p-try": { -- "version": "2.2.0", -- "dev": true -- } -- } -- }, -- "eastasianwidth": { -- "version": "0.2.0", -- "dev": true -- }, -- "ee-first": { -- "version": "1.1.1", -- "dev": true -- }, -- "ejs": { -- "version": "3.1.10", -- "dev": true, -- "requires": { -- "jake": "^10.8.5" -- } -- }, -- "electron": { -- "version": "30.0.8", -- "resolved": "https://registry.npmjs.org/electron/-/electron-30.0.8.tgz", -- "integrity": "sha512-ivzXJJ/9gdb4oOw+5SDuaZpSInz8C+Z021dKZfFLMltKbDa4sSqt5cRBiUg7J36Z2kdus+Jai0bdHWutYE9wAA==", -- "requires": { -- "@electron/get": "^2.0.0", -- "@types/node": "^20.9.0", -- "extract-zip": "^2.0.1" -- }, -- "dependencies": { -- "@types/node": { -- "version": "20.12.12", -- "requires": { -- "undici-types": "~5.26.4" -- } -- } -- } -- }, -- "electron-builder": { -- "version": "24.13.3", -- "dev": true, -- "requires": { -- "app-builder-lib": "24.13.3", -- "builder-util": "24.13.1", -- "builder-util-runtime": "9.2.4", -- "chalk": "^4.1.2", -- "dmg-builder": "24.13.3", -- "fs-extra": "^10.1.0", -- "is-ci": "^3.0.0", -- "lazy-val": "^1.0.5", -- "read-config-file": "6.3.2", -- "simple-update-notifier": "2.0.0", -- "yargs": "^17.6.2" -- }, -- "dependencies": { -- "cliui": { -- "version": "8.0.1", -- "dev": true, -- "requires": { -- "string-width": "^4.2.0", -- "strip-ansi": "^6.0.1", -- "wrap-ansi": "^7.0.0" -- } -- }, -- "fs-extra": { -- "version": "10.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- }, -- "wrap-ansi": { -- "version": "7.0.0", -- "dev": true, -- "requires": { -- "ansi-styles": "^4.0.0", -- "string-width": "^4.1.0", -- "strip-ansi": "^6.0.0" -- } -- }, -- "y18n": { -- "version": "5.0.8", -- "dev": true -- }, -- "yargs": { -- "version": "17.7.2", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "yargs-parser": { -- "version": "21.1.1", -- "dev": true -- } -- } -- }, -- "electron-builder-squirrel-windows": { -- "version": "24.13.3", -- "dev": true, -- "peer": true, -- "requires": { -- "app-builder-lib": "24.13.3", -- "archiver": "^5.3.1", -- "builder-util": "24.13.1", -- "fs-extra": "^10.1.0" -- }, -- "dependencies": { -- "fs-extra": { -- "version": "10.1.0", -- "dev": true, -- "peer": true, -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "peer": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true, -- "peer": true -- } -- } -- }, -- "electron-log": { -- "version": "5.0.1" -- }, -- "electron-publish": { -- "version": "24.13.1", -- "dev": true, -- "requires": { -- "@types/fs-extra": "^9.0.11", -- "builder-util": "24.13.1", -- "builder-util-runtime": "9.2.4", -- "chalk": "^4.1.2", -- "fs-extra": "^10.1.0", -- "lazy-val": "^1.0.5", -- "mime": "^2.5.2" -- }, -- "dependencies": { -- "fs-extra": { -- "version": "10.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- } -- } -- }, -- "electron-store": { -- "version": "8.1.0", -- "requires": { -- "conf": "^10.2.0", -- "type-fest": "^2.17.0" -- } -- }, -- "electron-to-chromium": { -- "version": "1.4.594" -- }, -- "electron-updater": { -- "version": "4.6.5", -- "requires": { -- "@types/semver": "^7.3.6", -- "builder-util-runtime": "8.9.2", -- "fs-extra": "^10.0.0", -- "js-yaml": "^4.1.0", -- "lazy-val": "^1.0.5", -- "lodash.escaperegexp": "^4.1.2", -- "lodash.isequal": "^4.5.0", -- "semver": "^7.3.5" -- }, -- "dependencies": { -- "builder-util-runtime": { -- "version": "8.9.2", -- "requires": { -- "debug": "^4.3.2", -- "sax": "^1.2.4" -- } -- }, -- "fs-extra": { -- "version": "10.1.0", -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "lru-cache": { -- "version": "6.0.0", -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1" -- }, -- "yallist": { -- "version": "4.0.0" -- } -- } -- }, -- "electron-window-state": { -- "version": "5.0.3", -- "requires": { -- "jsonfile": "^4.0.0", -- "mkdirp": "^0.5.1" -- } -- }, -- "emoji-regex": { -- "version": "8.0.0", -- "dev": true -- }, -- "emojis-list": { -- "version": "3.0.0" -- }, -- "encodeurl": { -- "version": "1.0.2", -- "dev": true -- }, -- "encoding": { -- "version": "0.1.13", -- "requires": { -- "iconv-lite": "^0.6.2" -- } -- }, -- "end-of-stream": { -- "version": "1.4.4", -- "requires": { -- "once": "^1.4.0" -- } -- }, -- "enhanced-resolve": { -- "version": "5.16.1", -- "requires": { -- "graceful-fs": "^4.2.4", -- "tapable": "^2.2.0" -- } -- }, -- "enquirer": { -- "version": "2.4.1", -- "dev": true, -- "requires": { -- "ansi-colors": "^4.1.1", -- "strip-ansi": "^6.0.1" -- } -- }, -- "entities": { -- "version": "4.5.0" -- }, -- "env-paths": { -- "version": "2.2.1" -- }, -- "envinfo": { -- "version": "7.11.0" -- }, -- "err-code": { -- "version": "2.0.3", -- "dev": true -- }, -- "error-ex": { -- "version": "1.3.2", -- "dev": true, -- "requires": { -- "is-arrayish": "^0.2.1" -- } -- }, -- "es-abstract": { -- "version": "1.22.3", -- "dev": true, -- "requires": { -- "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", -- "es-to-primitive": "^1.2.1", -- "function.prototype.name": "^1.1.6", -- "get-intrinsic": "^1.2.2", -- "get-symbol-description": "^1.0.0", -- "globalthis": "^1.0.3", -- "gopd": "^1.0.1", -- "has-property-descriptors": "^1.0.0", -- "has-proto": "^1.0.1", -- "has-symbols": "^1.0.3", -- "hasown": "^2.0.0", -- "internal-slot": "^1.0.5", -- "is-array-buffer": "^3.0.2", -- "is-callable": "^1.2.7", -- "is-negative-zero": "^2.0.2", -- "is-regex": "^1.1.4", -- "is-shared-array-buffer": "^1.0.2", -- "is-string": "^1.0.7", -- "is-typed-array": "^1.1.12", -- "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", -- "unbox-primitive": "^1.0.2", -- "which-typed-array": "^1.1.13" -- } -- }, -- "es-module-lexer": { -- "version": "1.5.2" -- }, -- "es-set-tostringtag": { -- "version": "2.0.2", -- "dev": true, -- "requires": { -- "get-intrinsic": "^1.2.2", -- "has-tostringtag": "^1.0.0", -- "hasown": "^2.0.0" -- } -- }, -- "es-shim-unscopables": { -- "version": "1.0.2", -- "dev": true, -- "requires": { -- "hasown": "^2.0.0" -- } -- }, -- "es-to-primitive": { -- "version": "1.2.1", -- "dev": true, -- "requires": { -- "is-callable": "^1.1.4", -- "is-date-object": "^1.0.1", -- "is-symbol": "^1.0.2" -- } -- }, -- "es6-error": { -- "version": "4.1.1", -- "optional": true -- }, -- "escalade": { -- "version": "3.1.1" -- }, -- "escape-html": { -- "version": "1.0.3", -- "dev": true -- }, -- "escape-string-regexp": { -- "version": "4.0.0", -- "devOptional": true -- }, -- "eslint": { -- "version": "7.32.0", -- "dev": true, -- "requires": { -- "@babel/code-frame": "7.12.11", -- "@eslint/eslintrc": "^0.4.3", -- "@humanwhocodes/config-array": "^0.5.0", -- "ajv": "^6.10.0", -- "chalk": "^4.0.0", -- "cross-spawn": "^7.0.2", -- "debug": "^4.0.1", -- "doctrine": "^3.0.0", -- "enquirer": "^2.3.5", -- "escape-string-regexp": "^4.0.0", -- "eslint-scope": "^5.1.1", -- "eslint-utils": "^2.1.0", -- "eslint-visitor-keys": "^2.0.0", -- "espree": "^7.3.1", -- "esquery": "^1.4.0", -- "esutils": "^2.0.2", -- "fast-deep-equal": "^3.1.3", -- "file-entry-cache": "^6.0.1", -- "functional-red-black-tree": "^1.0.1", -- "glob-parent": "^5.1.2", -- "globals": "^13.6.0", -- "ignore": "^4.0.6", -- "import-fresh": "^3.0.0", -- "imurmurhash": "^0.1.4", -- "is-glob": "^4.0.0", -- "js-yaml": "^3.13.1", -- "json-stable-stringify-without-jsonify": "^1.0.1", -- "levn": "^0.4.1", -- "lodash.merge": "^4.6.2", -- "minimatch": "^3.0.4", -- "natural-compare": "^1.4.0", -- "optionator": "^0.9.1", -- "progress": "^2.0.0", -- "regexpp": "^3.1.0", -- "semver": "^7.2.1", -- "strip-ansi": "^6.0.0", -- "strip-json-comments": "^3.1.0", -- "table": "^6.0.9", -- "text-table": "^0.2.0", -- "v8-compile-cache": "^2.0.3" -- }, -- "dependencies": { -- "@babel/code-frame": { -- "version": "7.12.11", -- "dev": true, -- "requires": { -- "@babel/highlight": "^7.10.4" -- } -- }, -- "argparse": { -- "version": "1.0.10", -- "dev": true, -- "requires": { -- "sprintf-js": "~1.0.2" -- } -- }, -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "eslint-utils": { -- "version": "2.1.0", -- "dev": true, -- "requires": { -- "eslint-visitor-keys": "^1.1.0" -- }, -- "dependencies": { -- "eslint-visitor-keys": { -- "version": "1.3.0", -- "dev": true -- } -- } -- }, -- "globals": { -- "version": "13.23.0", -- "dev": true, -- "requires": { -- "type-fest": "^0.20.2" -- } -- }, -- "ignore": { -- "version": "4.0.6", -- "dev": true -- }, -- "js-yaml": { -- "version": "3.14.1", -- "dev": true, -- "requires": { -- "argparse": "^1.0.7", -- "esprima": "^4.0.0" -- } -- }, -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "sprintf-js": { -- "version": "1.0.3", -- "dev": true -- }, -- "type-fest": { -- "version": "0.20.2", -- "dev": true -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "eslint-config-standard": { -- "version": "16.0.3", -- "dev": true, -- "requires": {} -- }, -- "eslint-import-resolver-node": { -- "version": "0.3.9", -- "dev": true, -- "requires": { -- "debug": "^3.2.7", -- "is-core-module": "^2.13.0", -- "resolve": "^1.22.4" -- }, -- "dependencies": { -- "debug": { -- "version": "3.2.7", -- "dev": true, -- "requires": { -- "ms": "^2.1.1" -- } -- } -- } -- }, -- "eslint-module-utils": { -- "version": "2.8.0", -- "dev": true, -- "requires": { -- "debug": "^3.2.7" -- }, -- "dependencies": { -- "debug": { -- "version": "3.2.7", -- "dev": true, -- "requires": { -- "ms": "^2.1.1" -- } -- } -- } -- }, -- "eslint-plugin-es": { -- "version": "3.0.1", -- "dev": true, -- "requires": { -- "eslint-utils": "^2.0.0", -- "regexpp": "^3.0.0" -- }, -- "dependencies": { -- "eslint-utils": { -- "version": "2.1.0", -- "dev": true, -- "requires": { -- "eslint-visitor-keys": "^1.1.0" -- } -- }, -- "eslint-visitor-keys": { -- "version": "1.3.0", -- "dev": true -- } -- } -- }, -- "eslint-plugin-import": { -- "version": "2.24.2", -- "dev": true, -- "requires": { -- "array-includes": "^3.1.3", -- "array.prototype.flat": "^1.2.4", -- "debug": "^2.6.9", -- "doctrine": "^2.1.0", -- "eslint-import-resolver-node": "^0.3.6", -- "eslint-module-utils": "^2.6.2", -- "find-up": "^2.0.0", -- "has": "^1.0.3", -- "is-core-module": "^2.6.0", -- "minimatch": "^3.0.4", -- "object.values": "^1.1.4", -- "pkg-up": "^2.0.0", -- "read-pkg-up": "^3.0.0", -- "resolve": "^1.20.0", -- "tsconfig-paths": "^3.11.0" -- }, -- "dependencies": { -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "debug": { -- "version": "2.6.9", -- "dev": true, -- "requires": { -- "ms": "2.0.0" -- } -- }, -- "doctrine": { -- "version": "2.1.0", -- "dev": true, -- "requires": { -- "esutils": "^2.0.2" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- }, -- "ms": { -- "version": "2.0.0", -- "dev": true -- }, -- "pkg-up": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "find-up": "^2.1.0" -- } -- } -- } -- }, -- "eslint-plugin-node": { -- "version": "11.1.0", -- "dev": true, -- "requires": { -- "eslint-plugin-es": "^3.0.0", -- "eslint-utils": "^2.0.0", -- "ignore": "^5.1.1", -- "minimatch": "^3.0.4", -- "resolve": "^1.10.1", -- "semver": "^6.1.0" -- }, -- "dependencies": { -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "eslint-utils": { -- "version": "2.1.0", -- "dev": true, -- "requires": { -- "eslint-visitor-keys": "^1.1.0" -- } -- }, -- "eslint-visitor-keys": { -- "version": "1.3.0", -- "dev": true -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- } -- } -- }, -- "eslint-plugin-promise": { -- "version": "5.2.0", -- "dev": true, -- "requires": {} -- }, -- "eslint-plugin-simple-import-sort": { -- "version": "10.0.0", -- "dev": true, -- "requires": {} -- }, -- "eslint-plugin-vue": { -- "version": "8.0.3", -- "dev": true, -- "requires": { -- "eslint-utils": "^3.0.0", -- "natural-compare": "^1.4.0", -- "semver": "^7.3.5", -- "vue-eslint-parser": "^8.0.1" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "eslint-scope": { -- "version": "5.1.1", -- "requires": { -- "esrecurse": "^4.3.0", -- "estraverse": "^4.1.1" -- } -- }, -- "eslint-utils": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "eslint-visitor-keys": "^2.0.0" -- } -- }, -- "eslint-visitor-keys": { -- "version": "2.1.0", -- "dev": true -- }, -- "espree": { -- "version": "7.3.1", -- "dev": true, -- "requires": { -- "acorn": "^7.4.0", -- "acorn-jsx": "^5.3.1", -- "eslint-visitor-keys": "^1.3.0" -- }, -- "dependencies": { -- "eslint-visitor-keys": { -- "version": "1.3.0", -- "dev": true -- } -- } -- }, -- "esprima": { -- "version": "4.0.1", -- "dev": true -- }, -- "esquery": { -- "version": "1.5.0", -- "dev": true, -- "requires": { -- "estraverse": "^5.1.0" -- }, -- "dependencies": { -- "estraverse": { -- "version": "5.3.0", -- "dev": true -- } -- } -- }, -- "esrecurse": { -- "version": "4.3.0", -- "requires": { -- "estraverse": "^5.2.0" -- }, -- "dependencies": { -- "estraverse": { -- "version": "5.3.0" -- } -- } -- }, -- "estraverse": { -- "version": "4.3.0" -- }, -- "estree-walker": { -- "version": "2.0.2" -- }, -- "esutils": { -- "version": "2.0.3", -- "dev": true -- }, -- "etag": { -- "version": "1.8.1", -- "dev": true -- }, -- "eventemitter3": { -- "version": "4.0.7", -- "dev": true -- }, -- "events": { -- "version": "3.3.0" -- }, -- "execa": { -- "version": "5.1.1", -- "requires": { -- "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" -- }, -- "dependencies": { -- "get-stream": { -- "version": "6.0.1" -- } -- } -- }, -- "expand-template": { -- "version": "2.0.3" -- }, -- "express": { -- "version": "4.19.2", -- "dev": true, -- "requires": { -- "accepts": "~1.3.8", -- "array-flatten": "1.1.1", -- "body-parser": "1.20.2", -- "content-disposition": "0.5.4", -- "content-type": "~1.0.4", -- "cookie": "0.6.0", -- "cookie-signature": "1.0.6", -- "debug": "2.6.9", -- "depd": "2.0.0", -- "encodeurl": "~1.0.2", -- "escape-html": "~1.0.3", -- "etag": "~1.8.1", -- "finalhandler": "1.2.0", -- "fresh": "0.5.2", -- "http-errors": "2.0.0", -- "merge-descriptors": "1.0.1", -- "methods": "~1.1.2", -- "on-finished": "2.4.1", -- "parseurl": "~1.3.3", -- "path-to-regexp": "0.1.7", -- "proxy-addr": "~2.0.7", -- "qs": "6.11.0", -- "range-parser": "~1.2.1", -- "safe-buffer": "5.2.1", -- "send": "0.18.0", -- "serve-static": "1.15.0", -- "setprototypeof": "1.2.0", -- "statuses": "2.0.1", -- "type-is": "~1.6.18", -- "utils-merge": "1.0.1", -- "vary": "~1.1.2" -- }, -- "dependencies": { -- "array-flatten": { -- "version": "1.1.1", -- "dev": true -- }, -- "debug": { -- "version": "2.6.9", -- "dev": true, -- "requires": { -- "ms": "2.0.0" -- } -- }, -- "ms": { -- "version": "2.0.0", -- "dev": true -- } -- } -- }, -- "external-editor": { -- "version": "3.1.0", -- "dev": true, -- "requires": { -- "chardet": "^0.7.0", -- "iconv-lite": "^0.4.24", -- "tmp": "^0.0.33" -- }, -- "dependencies": { -- "iconv-lite": { -- "version": "0.4.24", -- "dev": true, -- "requires": { -- "safer-buffer": ">= 2.1.2 < 3" -- } -- } -- } -- }, -- "extract-zip": { -- "version": "2.0.1", -- "requires": { -- "@types/yauzl": "^2.9.1", -- "debug": "^4.1.1", -- "get-stream": "^5.1.0", -- "yauzl": "^2.10.0" -- } -- }, -- "fast-deep-equal": { -- "version": "3.1.3" -- }, -- "fast-glob": { -- "version": "3.3.2", -- "dev": true, -- "requires": { -- "@nodelib/fs.stat": "^2.0.2", -- "@nodelib/fs.walk": "^1.2.3", -- "glob-parent": "^5.1.2", -- "merge2": "^1.3.0", -- "micromatch": "^4.0.4" -- } -- }, -- "fast-json-stable-stringify": { -- "version": "2.1.0" -- }, -- "fast-levenshtein": { -- "version": "2.0.6", -- "dev": true -- }, -- "fastest-levenshtein": { -- "version": "1.0.16" -- }, -- "fastq": { -- "version": "1.15.0", -- "dev": true, -- "requires": { -- "reusify": "^1.0.4" -- } -- }, -- "faye-websocket": { -- "version": "0.11.4", -- "dev": true, -- "requires": { -- "websocket-driver": ">=0.5.1" -- } -- }, -- "fd-slicer": { -- "version": "1.1.0", -- "requires": { -- "pend": "~1.2.0" -- } -- }, -- "figures": { -- "version": "3.2.0", -- "dev": true, -- "requires": { -- "escape-string-regexp": "^1.0.5" -- }, -- "dependencies": { -- "escape-string-regexp": { -- "version": "1.0.5", -- "dev": true -- } -- } -- }, -- "file-entry-cache": { -- "version": "6.0.1", -- "dev": true, -- "requires": { -- "flat-cache": "^3.0.4" -- } -- }, -- "file-loader": { -- "version": "6.2.0", -- "requires": { -- "loader-utils": "^2.0.0", -- "schema-utils": "^3.0.0" -- }, -- "dependencies": { -- "schema-utils": { -- "version": "3.3.0", -- "requires": { -- "@types/json-schema": "^7.0.8", -- "ajv": "^6.12.5", -- "ajv-keywords": "^3.5.2" -- } -- } -- } -- }, -- "file-uri-to-path": { -- "version": "1.0.0" -- }, -- "filelist": { -- "version": "1.0.4", -- "dev": true, -- "requires": { -- "minimatch": "^5.0.1" -- } -- }, -- "fill-range": { -- "version": "7.0.1", -- "requires": { -- "to-regex-range": "^5.0.1" -- } -- }, -- "finalhandler": { -- "version": "1.2.0", -- "dev": true, -- "requires": { -- "debug": "2.6.9", -- "encodeurl": "~1.0.2", -- "escape-html": "~1.0.3", -- "on-finished": "2.4.1", -- "parseurl": "~1.3.3", -- "statuses": "2.0.1", -- "unpipe": "~1.0.0" -- }, -- "dependencies": { -- "debug": { -- "version": "2.6.9", -- "dev": true, -- "requires": { -- "ms": "2.0.0" -- } -- }, -- "ms": { -- "version": "2.0.0", -- "dev": true -- } -- } -- }, -- "find-cache-dir": { -- "version": "3.3.2", -- "requires": { -- "commondir": "^1.0.1", -- "make-dir": "^3.0.2", -- "pkg-dir": "^4.1.0" -- } -- }, -- "find-up": { -- "version": "2.1.0", -- "dev": true, -- "requires": { -- "locate-path": "^2.0.0" -- } -- }, -- "flat": { -- "version": "5.0.2" -- }, -- "flat-cache": { -- "version": "3.2.0", -- "dev": true, -- "requires": { -- "flatted": "^3.2.9", -- "keyv": "^4.5.3", -- "rimraf": "^3.0.2" -- } -- }, -- "flatted": { -- "version": "3.2.9", -- "dev": true -- }, -- "floating-vue": { -- "version": "2.0.0-beta.24", -- "requires": { -- "@floating-ui/dom": "~1.1.1", -- "vue-resize": "^2.0.0-alpha.1" -- } -- }, -- "follow-redirects": { -- "version": "1.15.6", -- "dev": true -- }, -- "for-each": { -- "version": "0.3.3", -- "dev": true, -- "requires": { -- "is-callable": "^1.1.3" -- } -- }, -- "foreground-child": { -- "version": "3.1.1", -- "dev": true, -- "requires": { -- "cross-spawn": "^7.0.0", -- "signal-exit": "^4.0.1" -- }, -- "dependencies": { -- "signal-exit": { -- "version": "4.1.0", -- "dev": true -- } -- } -- }, -- "form-data": { -- "version": "4.0.0", -- "dev": true, -- "requires": { -- "asynckit": "^0.4.0", -- "combined-stream": "^1.0.8", -- "mime-types": "^2.1.12" -- } -- }, -- "forwarded": { -- "version": "0.2.0", -- "dev": true -- }, -- "fresh": { -- "version": "0.5.2", -- "dev": true -- }, -- "fs-access": { -- "version": "1.0.1", -- "dev": true, -- "requires": { -- "null-check": "^1.0.0" -- } -- }, -- "fs-constants": { -- "version": "1.0.0" -- }, -- "fs-extra": { -- "version": "8.1.0", -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^4.0.0", -- "universalify": "^0.1.0" -- } -- }, -- "fs-minipass": { -- "version": "2.1.0", -- "dev": true, -- "requires": { -- "minipass": "^3.0.0" -- }, -- "dependencies": { -- "minipass": { -- "version": "3.3.6", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "fs-monkey": { -- "version": "1.0.5", -- "dev": true -- }, -- "fs.realpath": { -- "version": "1.0.0" -- }, -- "function-bind": { -- "version": "1.1.2" -- }, -- "function.prototype.name": { -- "version": "1.1.6", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "es-abstract": "^1.22.1", -- "functions-have-names": "^1.2.3" -- } -- }, -- "functional-red-black-tree": { -- "version": "1.0.1", -- "dev": true -- }, -- "functions-have-names": { -- "version": "1.2.3", -- "dev": true -- }, -- "generate-function": { -- "version": "2.3.1", -- "requires": { -- "is-property": "^1.0.2" -- } -- }, -- "gensync": { -- "version": "1.0.0-beta.2", -- "peer": true -- }, -- "get-caller-file": { -- "version": "2.0.5", -- "dev": true -- }, -- "get-intrinsic": { -- "version": "1.2.2", -- "devOptional": true, -- "requires": { -- "function-bind": "^1.1.2", -- "has-proto": "^1.0.1", -- "has-symbols": "^1.0.3", -- "hasown": "^2.0.0" -- } -- }, -- "get-pkg-repo": { -- "version": "4.2.1", -- "dev": true, -- "requires": { -- "@hutson/parse-repository-url": "^3.0.0", -- "hosted-git-info": "^4.0.0", -- "through2": "^2.0.0", -- "yargs": "^16.2.0" -- }, -- "dependencies": { -- "cliui": { -- "version": "7.0.4", -- "dev": true, -- "requires": { -- "string-width": "^4.2.0", -- "strip-ansi": "^6.0.0", -- "wrap-ansi": "^7.0.0" -- } -- }, -- "isarray": { -- "version": "1.0.0", -- "dev": true -- }, -- "readable-stream": { -- "version": "2.3.8", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "safe-buffer": { -- "version": "5.1.2", -- "dev": true -- }, -- "string_decoder": { -- "version": "1.1.1", -- "dev": true, -- "requires": { -- "safe-buffer": "~5.1.0" -- } -- }, -- "through2": { -- "version": "2.0.5", -- "dev": true, -- "requires": { -- "readable-stream": "~2.3.6", -- "xtend": "~4.0.1" -- } -- }, -- "wrap-ansi": { -- "version": "7.0.0", -- "dev": true, -- "requires": { -- "ansi-styles": "^4.0.0", -- "string-width": "^4.1.0", -- "strip-ansi": "^6.0.0" -- } -- }, -- "y18n": { -- "version": "5.0.8", -- "dev": true -- }, -- "yargs": { -- "version": "16.2.0", -- "dev": true, -- "requires": { -- "cliui": "^7.0.2", -- "escalade": "^3.1.1", -- "get-caller-file": "^2.0.5", -- "require-directory": "^2.1.1", -- "string-width": "^4.2.0", -- "y18n": "^5.0.5", -- "yargs-parser": "^20.2.2" -- } -- } -- } -- }, -- "get-stdin": { -- "version": "8.0.0" -- }, -- "get-stream": { -- "version": "5.2.0", -- "requires": { -- "pump": "^3.0.0" -- } -- }, -- "get-symbol-description": { -- "version": "1.0.0", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "get-intrinsic": "^1.1.1" -- } -- }, -- "git-raw-commits": { -- "version": "2.0.11", -- "dev": true, -- "requires": { -- "dargs": "^7.0.0", -- "lodash": "^4.17.15", -- "meow": "^8.0.0", -- "split2": "^3.0.0", -- "through2": "^4.0.0" -- }, -- "dependencies": { -- "split2": { -- "version": "3.2.2", -- "dev": true, -- "requires": { -- "readable-stream": "^3.0.0" -- } -- } -- } -- }, -- "git-remote-origin-url": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "gitconfiglocal": "^1.0.0", -- "pify": "^2.3.0" -- }, -- "dependencies": { -- "pify": { -- "version": "2.3.0", -- "dev": true -- } -- } -- }, -- "git-semver-tags": { -- "version": "4.1.1", -- "dev": true, -- "requires": { -- "meow": "^8.0.0", -- "semver": "^6.0.0" -- } -- }, -- "gitconfiglocal": { -- "version": "1.0.0", -- "dev": true, -- "requires": { -- "ini": "^1.3.2" -- } -- }, -- "github-from-package": { -- "version": "0.0.0" -- }, -- "glob": { -- "version": "7.2.3", -- "requires": { -- "fs.realpath": "^1.0.0", -- "inflight": "^1.0.4", -- "inherits": "2", -- "minimatch": "^3.1.1", -- "once": "^1.3.0", -- "path-is-absolute": "^1.0.0" -- }, -- "dependencies": { -- "brace-expansion": { -- "version": "1.1.11", -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- } -- } -- }, -- "glob-parent": { -- "version": "5.1.2", -- "requires": { -- "is-glob": "^4.0.1" -- } -- }, -- "glob-to-regexp": { -- "version": "0.4.1" -- }, -- "global-agent": { -- "version": "3.0.0", -- "optional": true, -- "requires": { -- "boolean": "^3.0.1", -- "es6-error": "^4.1.1", -- "matcher": "^3.0.0", -- "roarr": "^2.15.3", -- "semver": "^7.3.2", -- "serialize-error": "^7.0.1" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "optional": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "optional": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "optional": true -- } -- } -- }, -- "global-directory": { -- "version": "4.0.1", -- "dev": true, -- "requires": { -- "ini": "4.1.1" -- }, -- "dependencies": { -- "ini": { -- "version": "4.1.1", -- "dev": true -- } -- } -- }, -- "global-modules": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "global-prefix": "^3.0.0" -- } -- }, -- "global-prefix": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "ini": "^1.3.5", -- "kind-of": "^6.0.2", -- "which": "^1.3.1" -- }, -- "dependencies": { -- "which": { -- "version": "1.3.1", -- "dev": true, -- "requires": { -- "isexe": "^2.0.0" -- } -- } -- } -- }, -- "globals": { -- "version": "11.12.0" -- }, -- "globalthis": { -- "version": "1.0.3", -- "devOptional": true, -- "requires": { -- "define-properties": "^1.1.3" -- } -- }, -- "globby": { -- "version": "11.1.0", -- "dev": true, -- "requires": { -- "array-union": "^2.1.0", -- "dir-glob": "^3.0.1", -- "fast-glob": "^3.2.9", -- "ignore": "^5.2.0", -- "merge2": "^1.4.1", -- "slash": "^3.0.0" -- } -- }, -- "globjoin": { -- "version": "0.1.4", -- "dev": true -- }, -- "gopd": { -- "version": "1.0.1", -- "devOptional": true, -- "requires": { -- "get-intrinsic": "^1.1.3" -- } -- }, -- "got": { -- "version": "11.8.6", -- "requires": { -- "@sindresorhus/is": "^4.0.0", -- "@szmarczak/http-timer": "^4.0.5", -- "@types/cacheable-request": "^6.0.1", -- "@types/responselike": "^1.0.0", -- "cacheable-lookup": "^5.0.3", -- "cacheable-request": "^7.0.2", -- "decompress-response": "^6.0.0", -- "http2-wrapper": "^1.0.0-beta.5.2", -- "lowercase-keys": "^2.0.0", -- "p-cancelable": "^2.0.0", -- "responselike": "^2.0.0" -- } -- }, -- "graceful-fs": { -- "version": "4.2.11" -- }, -- "handle-thing": { -- "version": "2.0.1", -- "dev": true -- }, -- "handlebars": { -- "version": "4.7.8", -- "dev": true, -- "requires": { -- "minimist": "^1.2.5", -- "neo-async": "^2.6.2", -- "source-map": "^0.6.1", -- "uglify-js": "^3.1.4", -- "wordwrap": "^1.0.0" -- } -- }, -- "hard-rejection": { -- "version": "2.1.0", -- "dev": true -- }, -- "has": { -- "version": "1.0.4", -- "dev": true -- }, -- "has-bigints": { -- "version": "1.0.2", -- "dev": true -- }, -- "has-flag": { -- "version": "4.0.0" -- }, -- "has-property-descriptors": { -- "version": "1.0.1", -- "devOptional": true, -- "requires": { -- "get-intrinsic": "^1.2.2" -- } -- }, -- "has-proto": { -- "version": "1.0.1", -- "devOptional": true -- }, -- "has-symbols": { -- "version": "1.0.3", -- "devOptional": true -- }, -- "has-tostringtag": { -- "version": "1.0.0", -- "dev": true, -- "requires": { -- "has-symbols": "^1.0.2" -- } -- }, -- "hash-sum": { -- "version": "2.0.0" -- }, -- "hasown": { -- "version": "2.0.0", -- "requires": { -- "function-bind": "^1.1.2" -- } -- }, -- "he": { -- "version": "1.2.0" -- }, -- "hosted-git-info": { -- "version": "4.1.0", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "hpack.js": { -- "version": "2.1.6", -- "dev": true, -- "requires": { -- "inherits": "^2.0.1", -- "obuf": "^1.0.0", -- "readable-stream": "^2.0.1", -- "wbuf": "^1.1.0" -- }, -- "dependencies": { -- "isarray": { -- "version": "1.0.0", -- "dev": true -- }, -- "readable-stream": { -- "version": "2.3.8", -- "dev": true, -- "requires": { -- "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" -- } -- }, -- "safe-buffer": { -- "version": "5.1.2", -- "dev": true -- }, -- "string_decoder": { -- "version": "1.1.1", -- "dev": true, -- "requires": { -- "safe-buffer": "~5.1.0" -- } -- } -- } -- }, -- "html-entities": { -- "version": "2.4.0", -- "dev": true -- }, -- "html-minifier-terser": { -- "version": "6.1.0", -- "requires": { -- "camel-case": "^4.1.2", -- "clean-css": "^5.2.2", -- "commander": "^8.3.0", -- "he": "^1.2.0", -- "param-case": "^3.0.4", -- "relateurl": "^0.2.7", -- "terser": "^5.10.0" -- }, -- "dependencies": { -- "commander": { -- "version": "8.3.0" -- } -- } -- }, -- "html-tags": { -- "version": "3.3.1", -- "dev": true -- }, -- "html-webpack-plugin": { -- "version": "5.5.3", -- "requires": { -- "@types/html-minifier-terser": "^6.0.0", -- "html-minifier-terser": "^6.0.2", -- "lodash": "^4.17.21", -- "pretty-error": "^4.0.0", -- "tapable": "^2.0.0" -- } -- }, -- "htmlparser2": { -- "version": "8.0.2", -- "requires": { -- "domelementtype": "^2.3.0", -- "domhandler": "^5.0.3", -- "domutils": "^3.0.1", -- "entities": "^4.4.0" -- } -- }, -- "http-cache-semantics": { -- "version": "4.1.1" -- }, -- "http-deceiver": { -- "version": "1.2.7", -- "dev": true -- }, -- "http-errors": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "depd": "2.0.0", -- "inherits": "2.0.4", -- "setprototypeof": "1.2.0", -- "statuses": "2.0.1", -- "toidentifier": "1.0.1" -- } -- }, -- "http-parser-js": { -- "version": "0.5.8", -- "dev": true -- }, -- "http-proxy": { -- "version": "1.18.1", -- "dev": true, -- "requires": { -- "eventemitter3": "^4.0.0", -- "follow-redirects": "^1.0.0", -- "requires-port": "^1.0.0" -- } -- }, -- "http-proxy-agent": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "@tootallnate/once": "2", -- "agent-base": "6", -- "debug": "4" -- } -- }, -- "http-proxy-middleware": { -- "version": "2.0.6", -- "dev": true, -- "requires": { -- "@types/http-proxy": "^1.17.8", -- "http-proxy": "^1.18.1", -- "is-glob": "^4.0.1", -- "is-plain-obj": "^3.0.0", -- "micromatch": "^4.0.2" -- }, -- "dependencies": { -- "is-plain-obj": { -- "version": "3.0.0", -- "dev": true -- } -- } -- }, -- "http2-wrapper": { -- "version": "1.0.3", -- "requires": { -- "quick-lru": "^5.1.1", -- "resolve-alpn": "^1.0.0" -- } -- }, -- "https-proxy-agent": { -- "version": "5.0.1", -- "dev": true, -- "requires": { -- "agent-base": "6", -- "debug": "4" -- } -- }, -- "human-signals": { -- "version": "2.1.0" -- }, -- "husky": { -- "version": "9.0.11", -- "dev": true -- }, -- "iconv-lite": { -- "version": "0.6.3", -- "requires": { -- "safer-buffer": ">= 2.1.2 < 3.0.0" -- } -- }, -- "icss-utils": { -- "version": "5.1.0", -- "requires": {} -- }, -- "ieee754": { -- "version": "1.2.1" -- }, -- "ignore": { -- "version": "5.3.0", -- "dev": true -- }, -- "immediate": { -- "version": "3.0.6" -- }, -- "import-fresh": { -- "version": "3.3.0", -- "dev": true, -- "requires": { -- "parent-module": "^1.0.0", -- "resolve-from": "^4.0.0" -- } -- }, -- "import-lazy": { -- "version": "4.0.0", -- "dev": true -- }, -- "import-local": { -- "version": "3.1.0", -- "requires": { -- "pkg-dir": "^4.2.0", -- "resolve-cwd": "^3.0.0" -- } -- }, -- "import-meta-resolve": { -- "version": "4.0.0", -- "dev": true -- }, -- "imurmurhash": { -- "version": "0.1.4", -- "dev": true -- }, -- "indent-string": { -- "version": "4.0.0", -- "dev": true -- }, -- "inflight": { -- "version": "1.0.6", -- "requires": { -- "once": "^1.3.0", -- "wrappy": "1" -- } -- }, -- "inherits": { -- "version": "2.0.4" -- }, -- "ini": { -- "version": "1.3.8" -- }, -- "inquirer": { -- "version": "7.3.3", -- "dev": true, -- "requires": { -- "ansi-escapes": "^4.2.1", -- "chalk": "^4.1.0", -- "cli-cursor": "^3.1.0", -- "cli-width": "^3.0.0", -- "external-editor": "^3.0.3", -- "figures": "^3.0.0", -- "lodash": "^4.17.19", -- "mute-stream": "0.0.8", -- "run-async": "^2.4.0", -- "rxjs": "^6.6.0", -- "string-width": "^4.1.0", -- "strip-ansi": "^6.0.0", -- "through": "^2.3.6" -- } -- }, -- "internal-slot": { -- "version": "1.0.6", -- "dev": true, -- "requires": { -- "get-intrinsic": "^1.2.2", -- "hasown": "^2.0.0", -- "side-channel": "^1.0.4" -- } -- }, -- "interpret": { -- "version": "2.2.0" -- }, -- "ip-address": { -- "version": "5.9.4", -- "requires": { -- "jsbn": "1.1.0", -- "lodash": "^4.17.15", -- "sprintf-js": "1.1.2" -- } -- }, -- "ipaddr.js": { -- "version": "2.1.0", -- "dev": true -- }, -- "is-array-buffer": { -- "version": "3.0.2", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "get-intrinsic": "^1.2.0", -- "is-typed-array": "^1.1.10" -- } -- }, -- "is-arrayish": { -- "version": "0.2.1", -- "dev": true -- }, -- "is-bigint": { -- "version": "1.0.4", -- "dev": true, -- "requires": { -- "has-bigints": "^1.0.1" -- } -- }, -- "is-binary-path": { -- "version": "2.1.0", -- "requires": { -- "binary-extensions": "^2.0.0" -- } -- }, -- "is-boolean-object": { -- "version": "1.1.2", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "has-tostringtag": "^1.0.0" -- } -- }, -- "is-callable": { -- "version": "1.2.7", -- "dev": true -- }, -- "is-ci": { -- "version": "3.0.1", -- "dev": true, -- "requires": { -- "ci-info": "^3.2.0" -- } -- }, -- "is-core-module": { -- "version": "2.13.1", -- "requires": { -- "hasown": "^2.0.0" -- } -- }, -- "is-date-object": { -- "version": "1.0.5", -- "dev": true, -- "requires": { -- "has-tostringtag": "^1.0.0" -- } -- }, -- "is-docker": { -- "version": "2.2.1", -- "dev": true -- }, -- "is-extglob": { -- "version": "2.1.1" -- }, -- "is-fullwidth-code-point": { -- "version": "3.0.0", -- "dev": true -- }, -- "is-glob": { -- "version": "4.0.3", -- "requires": { -- "is-extglob": "^2.1.1" -- } -- }, -- "is-negative-zero": { -- "version": "2.0.2", -- "dev": true -- }, -- "is-number": { -- "version": "7.0.0" -- }, -- "is-number-object": { -- "version": "1.0.7", -- "dev": true, -- "requires": { -- "has-tostringtag": "^1.0.0" -- } -- }, -- "is-obj": { -- "version": "2.0.0" -- }, -- "is-plain-obj": { -- "version": "1.1.0", -- "dev": true -- }, -- "is-plain-object": { -- "version": "5.0.0", -- "dev": true -- }, -- "is-property": { -- "version": "1.0.2" -- }, -- "is-regex": { -- "version": "1.1.4", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "has-tostringtag": "^1.0.0" -- } -- }, -- "is-shared-array-buffer": { -- "version": "1.0.2", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2" -- } -- }, -- "is-stream": { -- "version": "2.0.1" -- }, -- "is-string": { -- "version": "1.0.7", -- "dev": true, -- "requires": { -- "has-tostringtag": "^1.0.0" -- } -- }, -- "is-symbol": { -- "version": "1.0.4", -- "dev": true, -- "requires": { -- "has-symbols": "^1.0.2" -- } -- }, -- "is-text-path": { -- "version": "1.0.1", -- "dev": true, -- "requires": { -- "text-extensions": "^1.0.0" -- } -- }, -- "is-typed-array": { -- "version": "1.1.12", -- "dev": true, -- "requires": { -- "which-typed-array": "^1.1.11" -- } -- }, -- "is-weakref": { -- "version": "1.0.2", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2" -- } -- }, -- "is-wsl": { -- "version": "2.2.0", -- "dev": true, -- "requires": { -- "is-docker": "^2.0.0" -- } -- }, -- "isarray": { -- "version": "2.0.5", -- "dev": true -- }, -- "isbinaryfile": { -- "version": "5.0.2", -- "dev": true -- }, -- "isexe": { -- "version": "2.0.0" -- }, -- "isobject": { -- "version": "3.0.1" -- }, -- "jackspeak": { -- "version": "2.3.6", -- "dev": true, -- "requires": { -- "@isaacs/cliui": "^8.0.2", -- "@pkgjs/parseargs": "^0.11.0" -- } -- }, -- "jake": { -- "version": "10.9.1", -- "dev": true, -- "requires": { -- "async": "^3.2.3", -- "chalk": "^4.0.2", -- "filelist": "^1.0.4", -- "minimatch": "^3.1.2" -- }, -- "dependencies": { -- "brace-expansion": { -- "version": "1.1.11", -- "dev": true, -- "requires": { -- "balanced-match": "^1.0.0", -- "concat-map": "0.0.1" -- } -- }, -- "minimatch": { -- "version": "3.1.2", -- "dev": true, -- "requires": { -- "brace-expansion": "^1.1.7" -- } -- } -- } -- }, -- "jest-worker": { -- "version": "27.5.1", -- "requires": { -- "@types/node": "*", -- "merge-stream": "^2.0.0", -- "supports-color": "^8.0.0" -- }, -- "dependencies": { -- "supports-color": { -- "version": "8.1.1", -- "requires": { -- "has-flag": "^4.0.0" -- } -- } -- } -- }, -- "jiti": { -- "version": "1.21.0", -- "dev": true -- }, -- "js-tokens": { -- "version": "4.0.0" -- }, -- "js-yaml": { -- "version": "4.1.0", -- "requires": { -- "argparse": "^2.0.1" -- } -- }, -- "jsbn": { -- "version": "1.1.0" -- }, -- "jsesc": { -- "version": "2.5.2" -- }, -- "json-buffer": { -- "version": "3.0.1" -- }, -- "json-fixer": { -- "version": "1.6.15", -- "dev": true, -- "requires": { -- "@babel/runtime": "^7.18.9", -- "chalk": "^4.1.2", -- "pegjs": "^0.10.0" -- } -- }, -- "json-parse-better-errors": { -- "version": "1.0.2", -- "dev": true -- }, -- "json-parse-even-better-errors": { -- "version": "2.3.1" -- }, -- "json-schema-traverse": { -- "version": "0.4.1" -- }, -- "json-schema-typed": { -- "version": "7.0.3" -- }, -- "json-stable-stringify-without-jsonify": { -- "version": "1.0.1", -- "dev": true -- }, -- "json-stringify-safe": { -- "version": "5.0.1", -- "devOptional": true -- }, -- "json2php": { -- "version": "0.0.7" -- }, -- "json5": { -- "version": "2.2.3" -- }, -- "jsonfile": { -- "version": "4.0.0", -- "requires": { -- "graceful-fs": "^4.1.6" -- } -- }, -- "jsonparse": { -- "version": "1.3.1", -- "dev": true -- }, -- "JSONStream": { -- "version": "1.3.5", -- "dev": true, -- "requires": { -- "jsonparse": "^1.2.0", -- "through": ">=2.2.7 <3" -- } -- }, -- "jszip": { -- "version": "3.10.1", -- "requires": { -- "lie": "~3.3.0", -- "pako": "~1.0.2", -- "readable-stream": "~2.3.6", -- "setimmediate": "^1.0.5" -- }, -- "dependencies": { -- "isarray": { -- "version": "1.0.0" -- }, -- "readable-stream": { -- "version": "2.3.8", -- "requires": { -- "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" -- } -- }, -- "safe-buffer": { -- "version": "5.1.2" -- }, -- "string_decoder": { -- "version": "1.1.1", -- "requires": { -- "safe-buffer": "~5.1.0" -- } -- } -- } -- }, -- "keyv": { -- "version": "4.5.4", -- "requires": { -- "json-buffer": "3.0.1" -- } -- }, -- "kind-of": { -- "version": "6.0.3" -- }, -- "klona": { -- "version": "2.0.6" -- }, -- "known-css-properties": { -- "version": "0.29.0", -- "dev": true -- }, -- "lazy-val": { -- "version": "1.0.5" -- }, -- "lazystream": { -- "version": "1.0.1", -- "dev": true, -- "peer": true, -- "requires": { -- "readable-stream": "^2.0.5" -- }, -- "dependencies": { -- "isarray": { -- "version": "1.0.0", -- "dev": true, -- "peer": true -- }, -- "readable-stream": { -- "version": "2.3.8", -- "dev": true, -- "peer": true, -- "requires": { -- "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" -- } -- }, -- "safe-buffer": { -- "version": "5.1.2", -- "dev": true, -- "peer": true -- }, -- "string_decoder": { -- "version": "1.1.1", -- "dev": true, -- "peer": true, -- "requires": { -- "safe-buffer": "~5.1.0" -- } -- } -- } -- }, -- "leaflet": { -- "version": "1.7.1" -- }, -- "levn": { -- "version": "0.4.1", -- "dev": true, -- "requires": { -- "prelude-ls": "^1.2.1", -- "type-check": "~0.4.0" -- } -- }, -- "lie": { -- "version": "3.3.0", -- "requires": { -- "immediate": "~3.0.5" -- } -- }, -- "lines-and-columns": { -- "version": "1.2.4", -- "dev": true -- }, -- "load-json-file": { -- "version": "4.0.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.2", -- "parse-json": "^4.0.0", -- "pify": "^3.0.0", -- "strip-bom": "^3.0.0" -- }, -- "dependencies": { -- "pify": { -- "version": "3.0.0", -- "dev": true -- } -- } -- }, -- "loader-runner": { -- "version": "4.3.0" -- }, -- "loader-utils": { -- "version": "2.0.4", -- "requires": { -- "big.js": "^5.2.2", -- "emojis-list": "^3.0.0", -- "json5": "^2.1.2" -- } -- }, -- "locate-path": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "p-locate": "^2.0.0", -- "path-exists": "^3.0.0" -- } -- }, -- "lodash": { -- "version": "4.17.21" -- }, -- "lodash.camelcase": { -- "version": "4.3.0", -- "dev": true -- }, -- "lodash.debounce": { -- "version": "4.0.8", -- "dev": true -- }, -- "lodash.defaults": { -- "version": "4.2.0", -- "dev": true, -- "peer": true -- }, -- "lodash.difference": { -- "version": "4.5.0", -- "dev": true, -- "peer": true -- }, -- "lodash.escaperegexp": { -- "version": "4.1.2" -- }, -- "lodash.flatten": { -- "version": "4.4.0", -- "dev": true, -- "peer": true -- }, -- "lodash.isequal": { -- "version": "4.5.0" -- }, -- "lodash.ismatch": { -- "version": "4.4.0", -- "dev": true -- }, -- "lodash.isplainobject": { -- "version": "4.0.6", -- "dev": true -- }, -- "lodash.kebabcase": { -- "version": "4.1.1", -- "dev": true -- }, -- "lodash.merge": { -- "version": "4.6.2", -- "dev": true -- }, -- "lodash.mergewith": { -- "version": "4.6.2", -- "dev": true -- }, -- "lodash.snakecase": { -- "version": "4.1.1", -- "dev": true -- }, -- "lodash.startcase": { -- "version": "4.4.0", -- "dev": true -- }, -- "lodash.truncate": { -- "version": "4.4.2", -- "dev": true -- }, -- "lodash.union": { -- "version": "4.6.0", -- "dev": true, -- "peer": true -- }, -- "lodash.uniq": { -- "version": "4.5.0", -- "dev": true -- }, -- "lodash.upperfirst": { -- "version": "4.3.1", -- "dev": true -- }, -- "log-update": { -- "version": "2.3.0", -- "requires": { -- "ansi-escapes": "^3.0.0", -- "cli-cursor": "^2.0.0", -- "wrap-ansi": "^3.0.1" -- }, -- "dependencies": { -- "ansi-escapes": { -- "version": "3.2.0" -- }, -- "cli-cursor": { -- "version": "2.1.0", -- "requires": { -- "restore-cursor": "^2.0.0" -- } -- }, -- "mimic-fn": { -- "version": "1.2.0" -- }, -- "onetime": { -- "version": "2.0.1", -- "requires": { -- "mimic-fn": "^1.0.0" -- } -- }, -- "restore-cursor": { -- "version": "2.0.0", -- "requires": { -- "onetime": "^2.0.0", -- "signal-exit": "^3.0.2" -- } -- } -- } -- }, -- "long": { -- "version": "5.2.3" -- }, -- "lower-case": { -- "version": "2.0.2", -- "requires": { -- "tslib": "^2.0.3" -- } -- }, -- "lowercase-keys": { -- "version": "2.0.0" -- }, -- "lru-cache": { -- "version": "5.1.1", -- "requires": { -- "yallist": "^3.0.2" -- } -- }, -- "magic-string": { -- "version": "0.25.9", -- "requires": { -- "sourcemap-codec": "^1.4.8" -- } -- }, -- "make-dir": { -- "version": "3.1.0", -- "requires": { -- "semver": "^6.0.0" -- } -- }, -- "make-error": { -- "version": "1.3.6", -- "dev": true -- }, -- "map-obj": { -- "version": "4.3.0", -- "dev": true -- }, -- "marked": { -- "version": "12.0.0" -- }, -- "matcher": { -- "version": "3.0.0", -- "optional": true, -- "requires": { -- "escape-string-regexp": "^4.0.0" -- } -- }, -- "mathml-tag-names": { -- "version": "2.1.3", -- "dev": true -- }, -- "mdn-data": { -- "version": "2.0.30", -- "dev": true -- }, -- "media-typer": { -- "version": "0.3.0", -- "dev": true -- }, -- "memfs": { -- "version": "3.5.3", -- "dev": true, -- "requires": { -- "fs-monkey": "^1.0.4" -- } -- }, -- "meow": { -- "version": "8.1.2", -- "dev": true, -- "requires": { -- "@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" -- }, -- "dependencies": { -- "find-up": { -- "version": "4.1.0", -- "dev": true, -- "requires": { -- "locate-path": "^5.0.0", -- "path-exists": "^4.0.0" -- } -- }, -- "locate-path": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "p-locate": "^4.1.0" -- } -- }, -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "normalize-package-data": { -- "version": "3.0.3", -- "dev": true, -- "requires": { -- "hosted-git-info": "^4.0.1", -- "is-core-module": "^2.5.0", -- "semver": "^7.3.4", -- "validate-npm-package-license": "^3.0.1" -- } -- }, -- "p-limit": { -- "version": "2.3.0", -- "dev": true, -- "requires": { -- "p-try": "^2.0.0" -- } -- }, -- "p-locate": { -- "version": "4.1.0", -- "dev": true, -- "requires": { -- "p-limit": "^2.2.0" -- } -- }, -- "p-try": { -- "version": "2.2.0", -- "dev": true -- }, -- "parse-json": { -- "version": "5.2.0", -- "dev": true, -- "requires": { -- "@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" -- } -- }, -- "path-exists": { -- "version": "4.0.0", -- "dev": true -- }, -- "read-pkg": { -- "version": "5.2.0", -- "dev": true, -- "requires": { -- "@types/normalize-package-data": "^2.4.0", -- "normalize-package-data": "^2.5.0", -- "parse-json": "^5.0.0", -- "type-fest": "^0.6.0" -- }, -- "dependencies": { -- "hosted-git-info": { -- "version": "2.8.9", -- "dev": true -- }, -- "normalize-package-data": { -- "version": "2.5.0", -- "dev": true, -- "requires": { -- "hosted-git-info": "^2.1.4", -- "resolve": "^1.10.0", -- "semver": "2 || 3 || 4 || 5", -- "validate-npm-package-license": "^3.0.1" -- } -- }, -- "semver": { -- "version": "5.7.2", -- "dev": true -- }, -- "type-fest": { -- "version": "0.6.0", -- "dev": true -- } -- } -- }, -- "read-pkg-up": { -- "version": "7.0.1", -- "dev": true, -- "requires": { -- "find-up": "^4.1.0", -- "read-pkg": "^5.2.0", -- "type-fest": "^0.8.1" -- }, -- "dependencies": { -- "type-fest": { -- "version": "0.8.1", -- "dev": true -- } -- } -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "type-fest": { -- "version": "0.18.1", -- "dev": true -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "merge-descriptors": { -- "version": "1.0.1", -- "dev": true -- }, -- "merge-stream": { -- "version": "2.0.0" -- }, -- "merge2": { -- "version": "1.4.1", -- "dev": true -- }, -- "methods": { -- "version": "1.1.2", -- "dev": true -- }, -- "micromatch": { -- "version": "4.0.5", -- "requires": { -- "braces": "^3.0.2", -- "picomatch": "^2.3.1" -- } -- }, -- "mime": { -- "version": "2.6.0", -- "dev": true -- }, -- "mime-db": { -- "version": "1.52.0" -- }, -- "mime-types": { -- "version": "2.1.35", -- "requires": { -- "mime-db": "1.52.0" -- } -- }, -- "mimic-fn": { -- "version": "3.1.0" -- }, -- "mimic-response": { -- "version": "1.0.1" -- }, -- "min-indent": { -- "version": "1.0.1", -- "dev": true -- }, -- "mini-css-extract-plugin": { -- "version": "2.4.7", -- "requires": { -- "schema-utils": "^4.0.0" -- }, -- "dependencies": { -- "ajv": { -- "version": "8.12.0", -- "requires": { -- "fast-deep-equal": "^3.1.1", -- "json-schema-traverse": "^1.0.0", -- "require-from-string": "^2.0.2", -- "uri-js": "^4.2.2" -- } -- }, -- "ajv-keywords": { -- "version": "5.1.0", -- "requires": { -- "fast-deep-equal": "^3.1.3" -- } -- }, -- "json-schema-traverse": { -- "version": "1.0.0" -- }, -- "schema-utils": { -- "version": "4.2.0", -- "requires": { -- "@types/json-schema": "^7.0.9", -- "ajv": "^8.9.0", -- "ajv-formats": "^2.1.1", -- "ajv-keywords": "^5.1.0" -- } -- } -- } -- }, -- "minimalistic-assert": { -- "version": "1.0.1", -- "dev": true -- }, -- "minimatch": { -- "version": "5.1.6", -- "dev": true, -- "requires": { -- "brace-expansion": "^2.0.1" -- } -- }, -- "minimist": { -- "version": "1.2.8" -- }, -- "minimist-options": { -- "version": "4.1.0", -- "dev": true, -- "requires": { -- "arrify": "^1.0.1", -- "is-plain-obj": "^1.1.0", -- "kind-of": "^6.0.3" -- } -- }, -- "minipass": { -- "version": "5.0.0", -- "dev": true -- }, -- "minizlib": { -- "version": "2.1.2", -- "dev": true, -- "requires": { -- "minipass": "^3.0.0", -- "yallist": "^4.0.0" -- }, -- "dependencies": { -- "minipass": { -- "version": "3.3.6", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "mkdirp": { -- "version": "0.5.6", -- "requires": { -- "minimist": "^1.2.6" -- } -- }, -- "mkdirp-classic": { -- "version": "0.5.3" -- }, -- "modify-values": { -- "version": "1.0.1", -- "dev": true -- }, -- "moment": { -- "version": "2.30.1" -- }, -- "moo": { -- "version": "0.5.2" -- }, -- "ms": { -- "version": "2.1.2" -- }, -- "multicast-dns": { -- "version": "7.2.5", -- "dev": true, -- "requires": { -- "dns-packet": "^5.2.2", -- "thunky": "^1.0.2" -- } -- }, -- "mute-stream": { -- "version": "0.0.8", -- "dev": true -- }, -- "mysql2": { -- "version": "3.9.7", -- "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.9.7.tgz", -- "integrity": "sha512-KnJT8vYRcNAZv73uf9zpXqNbvBG7DJrs+1nACsjZP1HMJ1TgXEy8wnNilXAn/5i57JizXKtrUtwDB7HxT9DDpw==", -- "requires": { -- "denque": "^2.1.0", -- "generate-function": "^2.3.1", -- "iconv-lite": "^0.6.3", -- "long": "^5.2.1", -- "lru-cache": "^8.0.0", -- "named-placeholders": "^1.1.3", -- "seq-queue": "^0.0.5", -- "sqlstring": "^2.3.2" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "8.0.5" -- } -- } -- }, -- "named-placeholders": { -- "version": "1.1.3", -- "requires": { -- "lru-cache": "^7.14.1" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "7.18.3" -- } -- } -- }, -- "nan": { -- "version": "2.19.0" -- }, -- "nanoid": { -- "version": "3.3.7" -- }, -- "napi-build-utils": { -- "version": "1.0.2" -- }, -- "natural-compare": { -- "version": "1.4.0", -- "dev": true -- }, -- "nearley": { -- "version": "2.20.1", -- "requires": { -- "commander": "^2.19.0", -- "moo": "^0.5.0", -- "railroad-diagrams": "^1.0.0", -- "randexp": "0.4.6" -- }, -- "dependencies": { -- "commander": { -- "version": "2.20.3" -- } -- } -- }, -- "negotiator": { -- "version": "0.6.3", -- "dev": true -- }, -- "neo-async": { -- "version": "2.6.2" -- }, -- "no-case": { -- "version": "3.0.4", -- "requires": { -- "lower-case": "^2.0.2", -- "tslib": "^2.0.3" -- } -- }, -- "node-abi": { -- "version": "3.51.0", -- "requires": { -- "semver": "^7.3.5" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0" -- } -- } -- }, -- "node-fetch": { -- "version": "2.7.0", -- "dev": true, -- "requires": { -- "whatwg-url": "^5.0.0" -- } -- }, -- "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==", -- "requires": { -- "big-integer": "^1.6.51", -- "long": "^5.2.3" -- } -- }, -- "node-forge": { -- "version": "1.3.1", -- "dev": true -- }, -- "node-loader": { -- "version": "2.0.0", -- "requires": { -- "loader-utils": "^2.0.0" -- } -- }, -- "node-releases": { -- "version": "2.0.13" -- }, -- "normalize-package-data": { -- "version": "2.5.0", -- "dev": true, -- "requires": { -- "hosted-git-info": "^2.1.4", -- "resolve": "^1.10.0", -- "semver": "2 || 3 || 4 || 5", -- "validate-npm-package-license": "^3.0.1" -- }, -- "dependencies": { -- "hosted-git-info": { -- "version": "2.8.9", -- "dev": true -- }, -- "semver": { -- "version": "5.7.2", -- "dev": true -- } -- } -- }, -- "normalize-path": { -- "version": "3.0.0" -- }, -- "normalize-url": { -- "version": "6.1.0" -- }, -- "npm-run-path": { -- "version": "4.0.1", -- "requires": { -- "path-key": "^3.0.0" -- } -- }, -- "nth-check": { -- "version": "2.1.1", -- "requires": { -- "boolbase": "^1.0.0" -- } -- }, -- "null-check": { -- "version": "1.0.0", -- "dev": true -- }, -- "object-inspect": { -- "version": "1.13.1", -- "dev": true -- }, -- "object-keys": { -- "version": "1.1.1", -- "devOptional": true -- }, -- "object.assign": { -- "version": "4.1.4", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.1.4", -- "has-symbols": "^1.0.3", -- "object-keys": "^1.1.1" -- } -- }, -- "object.values": { -- "version": "1.1.7", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "es-abstract": "^1.22.1" -- } -- }, -- "obuf": { -- "version": "1.1.2", -- "dev": true -- }, -- "on-finished": { -- "version": "2.4.1", -- "dev": true, -- "requires": { -- "ee-first": "1.1.1" -- } -- }, -- "on-headers": { -- "version": "1.0.2", -- "dev": true -- }, -- "once": { -- "version": "1.4.0", -- "requires": { -- "wrappy": "1" -- } -- }, -- "onetime": { -- "version": "5.1.2", -- "requires": { -- "mimic-fn": "^2.1.0" -- }, -- "dependencies": { -- "mimic-fn": { -- "version": "2.1.0" -- } -- } -- }, -- "open": { -- "version": "8.4.2", -- "dev": true, -- "requires": { -- "define-lazy-prop": "^2.0.0", -- "is-docker": "^2.1.1", -- "is-wsl": "^2.2.0" -- } -- }, -- "optionator": { -- "version": "0.9.3", -- "dev": true, -- "requires": { -- "@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" -- } -- }, -- "os-tmpdir": { -- "version": "1.0.2", -- "dev": true -- }, -- "p-cancelable": { -- "version": "2.1.1" -- }, -- "p-limit": { -- "version": "1.3.0", -- "dev": true, -- "requires": { -- "p-try": "^1.0.0" -- } -- }, -- "p-locate": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "p-limit": "^1.1.0" -- } -- }, -- "p-retry": { -- "version": "4.6.2", -- "dev": true, -- "requires": { -- "@types/retry": "0.12.0", -- "retry": "^0.13.1" -- }, -- "dependencies": { -- "retry": { -- "version": "0.13.1", -- "dev": true -- } -- } -- }, -- "p-try": { -- "version": "1.0.0", -- "dev": true -- }, -- "pako": { -- "version": "1.0.11" -- }, -- "param-case": { -- "version": "3.0.4", -- "requires": { -- "dot-case": "^3.0.4", -- "tslib": "^2.0.3" -- } -- }, -- "parent-module": { -- "version": "1.0.1", -- "dev": true, -- "requires": { -- "callsites": "^3.0.0" -- } -- }, -- "parse-json": { -- "version": "4.0.0", -- "dev": true, -- "requires": { -- "error-ex": "^1.3.1", -- "json-parse-better-errors": "^1.0.1" -- } -- }, -- "parseurl": { -- "version": "1.3.3", -- "dev": true -- }, -- "pascal-case": { -- "version": "3.1.2", -- "requires": { -- "no-case": "^3.0.4", -- "tslib": "^2.0.3" -- } -- }, -- "path-exists": { -- "version": "3.0.0" -- }, -- "path-is-absolute": { -- "version": "1.0.1" -- }, -- "path-key": { -- "version": "3.1.1" -- }, -- "path-parse": { -- "version": "1.0.7" -- }, -- "path-scurry": { -- "version": "1.11.1", -- "dev": true, -- "requires": { -- "lru-cache": "^10.2.0", -- "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "10.2.2", -- "dev": true -- } -- } -- }, -- "path-to-regexp": { -- "version": "0.1.7", -- "dev": true -- }, -- "path-type": { -- "version": "4.0.0", -- "dev": true -- }, -- "pegjs": { -- "version": "0.10.0", -- "dev": true -- }, -- "pend": { -- "version": "1.2.0" -- }, -- "pg": { -- "version": "8.11.5", -- "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", -- "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", -- "requires": { -- "pg-cloudflare": "^1.1.1", -- "pg-connection-string": "^2.6.4", -- "pg-pool": "^3.6.2", -- "pg-protocol": "^1.6.1", -- "pg-types": "^2.1.0", -- "pgpass": "1.x" -- }, -- "dependencies": { -- "pg-connection-string": { -- "version": "2.6.4", -- "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", -- "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" -- } -- } -- }, -- "pg-cloudflare": { -- "version": "1.1.1", -- "optional": true -- }, -- "pg-connection-string": { -- "version": "2.5.0" -- }, -- "pg-cursor": { -- "version": "2.10.3", -- "requires": {} -- }, -- "pg-int8": { -- "version": "1.0.1" -- }, -- "pg-pool": { -- "version": "3.6.2", -- "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", -- "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", -- "requires": {} -- }, -- "pg-protocol": { -- "version": "1.6.1", -- "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", -- "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" -- }, -- "pg-query-stream": { -- "version": "4.2.4", -- "requires": { -- "pg-cursor": "^2.7.4" -- } -- }, -- "pg-types": { -- "version": "2.2.0", -- "requires": { -- "pg-int8": "1.0.1", -- "postgres-array": "~2.0.0", -- "postgres-bytea": "~1.0.0", -- "postgres-date": "~1.0.4", -- "postgres-interval": "^1.1.0" -- } -- }, -- "pgpass": { -- "version": "1.0.5", -- "requires": { -- "split2": "^4.1.0" -- } -- }, -- "pgsql-ast-parser": { -- "version": "7.2.1", -- "requires": { -- "moo": "^0.5.1", -- "nearley": "^2.19.5" -- } -- }, -- "picocolors": { -- "version": "1.0.0" -- }, -- "picomatch": { -- "version": "2.3.1" -- }, -- "pify": { -- "version": "5.0.0", -- "dev": true -- }, -- "pinia": { -- "version": "2.1.7", -- "requires": { -- "@vue/devtools-api": "^6.5.0", -- "vue-demi": ">=0.14.5" -- }, -- "dependencies": { -- "vue-demi": { -- "version": "0.14.6", -- "requires": {} -- } -- } -- }, -- "pkg-dir": { -- "version": "4.2.0", -- "requires": { -- "find-up": "^4.0.0" -- }, -- "dependencies": { -- "find-up": { -- "version": "4.1.0", -- "requires": { -- "locate-path": "^5.0.0", -- "path-exists": "^4.0.0" -- } -- }, -- "locate-path": { -- "version": "5.0.0", -- "requires": { -- "p-locate": "^4.1.0" -- } -- }, -- "p-limit": { -- "version": "2.3.0", -- "requires": { -- "p-try": "^2.0.0" -- } -- }, -- "p-locate": { -- "version": "4.1.0", -- "requires": { -- "p-limit": "^2.2.0" -- } -- }, -- "p-try": { -- "version": "2.2.0" -- }, -- "path-exists": { -- "version": "4.0.0" -- } -- } -- }, -- "pkg-up": { -- "version": "3.1.0", -- "requires": { -- "find-up": "^3.0.0" -- }, -- "dependencies": { -- "find-up": { -- "version": "3.0.0", -- "requires": { -- "locate-path": "^3.0.0" -- } -- }, -- "locate-path": { -- "version": "3.0.0", -- "requires": { -- "p-locate": "^3.0.0", -- "path-exists": "^3.0.0" -- } -- }, -- "p-limit": { -- "version": "2.3.0", -- "requires": { -- "p-try": "^2.0.0" -- } -- }, -- "p-locate": { -- "version": "3.0.0", -- "requires": { -- "p-limit": "^2.0.0" -- } -- }, -- "p-try": { -- "version": "2.2.0" -- } -- } -- }, -- "playwright": { -- "version": "1.28.1", -- "dev": true, -- "requires": { -- "playwright-core": "1.28.1" -- } -- }, -- "playwright-core": { -- "version": "1.28.1", -- "dev": true -- }, -- "plist": { -- "version": "3.1.0", -- "dev": true, -- "requires": { -- "@xmldom/xmldom": "^0.8.8", -- "base64-js": "^1.5.1", -- "xmlbuilder": "^15.1.1" -- } -- }, -- "postcss": { -- "version": "8.4.38", -- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", -- "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", -- "requires": { -- "nanoid": "^3.3.7", -- "picocolors": "^1.0.0", -- "source-map-js": "^1.2.0" -- } -- }, -- "postcss-html": { -- "version": "1.5.0", -- "requires": { -- "htmlparser2": "^8.0.0", -- "js-tokens": "^8.0.0", -- "postcss": "^8.4.0", -- "postcss-safe-parser": "^6.0.0" -- }, -- "dependencies": { -- "js-tokens": { -- "version": "8.0.2" -- } -- } -- }, -- "postcss-media-query-parser": { -- "version": "0.2.3", -- "dev": true -- }, -- "postcss-modules-extract-imports": { -- "version": "3.0.0", -- "requires": {} -- }, -- "postcss-modules-local-by-default": { -- "version": "4.0.3", -- "requires": { -- "icss-utils": "^5.0.0", -- "postcss-selector-parser": "^6.0.2", -- "postcss-value-parser": "^4.1.0" -- } -- }, -- "postcss-modules-scope": { -- "version": "3.0.0", -- "requires": { -- "postcss-selector-parser": "^6.0.4" -- } -- }, -- "postcss-modules-values": { -- "version": "4.0.0", -- "requires": { -- "icss-utils": "^5.0.0" -- } -- }, -- "postcss-resolve-nested-selector": { -- "version": "0.1.1", -- "dev": true -- }, -- "postcss-safe-parser": { -- "version": "6.0.0", -- "requires": {} -- }, -- "postcss-selector-parser": { -- "version": "6.0.13", -- "requires": { -- "cssesc": "^3.0.0", -- "util-deprecate": "^1.0.2" -- } -- }, -- "postcss-value-parser": { -- "version": "4.2.0" -- }, -- "postgres-array": { -- "version": "2.0.0" -- }, -- "postgres-bytea": { -- "version": "1.0.0" -- }, -- "postgres-date": { -- "version": "1.0.7" -- }, -- "postgres-interval": { -- "version": "1.2.0", -- "requires": { -- "xtend": "^4.0.0" -- } -- }, -- "prebuild-install": { -- "version": "7.1.1", -- "requires": { -- "detect-libc": "^2.0.0", -- "expand-template": "^2.0.3", -- "github-from-package": "0.0.0", -- "minimist": "^1.2.3", -- "mkdirp-classic": "^0.5.3", -- "napi-build-utils": "^1.0.1", -- "node-abi": "^3.3.0", -- "pump": "^3.0.0", -- "rc": "^1.2.7", -- "simple-get": "^4.0.0", -- "tar-fs": "^2.0.0", -- "tunnel-agent": "^0.6.0" -- } -- }, -- "prelude-ls": { -- "version": "1.2.1", -- "dev": true -- }, -- "pretty-error": { -- "version": "4.0.0", -- "requires": { -- "lodash": "^4.17.20", -- "renderkid": "^3.0.0" -- } -- }, -- "process-nextick-args": { -- "version": "2.0.1" -- }, -- "progress": { -- "version": "2.0.3" -- }, -- "progress-webpack-plugin": { -- "version": "1.0.16", -- "requires": { -- "chalk": "^2.1.0", -- "figures": "^2.0.0", -- "log-update": "^2.3.0" -- }, -- "dependencies": { -- "ansi-styles": { -- "version": "3.2.1", -- "requires": { -- "color-convert": "^1.9.0" -- } -- }, -- "chalk": { -- "version": "2.4.2", -- "requires": { -- "ansi-styles": "^3.2.1", -- "escape-string-regexp": "^1.0.5", -- "supports-color": "^5.3.0" -- } -- }, -- "color-convert": { -- "version": "1.9.3", -- "requires": { -- "color-name": "1.1.3" -- } -- }, -- "color-name": { -- "version": "1.1.3" -- }, -- "escape-string-regexp": { -- "version": "1.0.5" -- }, -- "figures": { -- "version": "2.0.0", -- "requires": { -- "escape-string-regexp": "^1.0.5" -- } -- }, -- "has-flag": { -- "version": "3.0.0" -- }, -- "supports-color": { -- "version": "5.5.0", -- "requires": { -- "has-flag": "^3.0.0" -- } -- } -- } -- }, -- "promise-retry": { -- "version": "2.0.1", -- "dev": true, -- "requires": { -- "err-code": "^2.0.2", -- "retry": "^0.12.0" -- } -- }, -- "proxy-addr": { -- "version": "2.0.7", -- "dev": true, -- "requires": { -- "forwarded": "0.2.0", -- "ipaddr.js": "1.9.1" -- }, -- "dependencies": { -- "ipaddr.js": { -- "version": "1.9.1", -- "dev": true -- } -- } -- }, -- "pump": { -- "version": "3.0.0", -- "requires": { -- "end-of-stream": "^1.1.0", -- "once": "^1.3.1" -- } -- }, -- "punycode": { -- "version": "2.3.1" -- }, -- "q": { -- "version": "1.5.1", -- "dev": true -- }, -- "qs": { -- "version": "6.11.0", -- "dev": true, -- "requires": { -- "side-channel": "^1.0.4" -- } -- }, -- "queue-microtask": { -- "version": "1.2.3", -- "dev": true -- }, -- "quick-lru": { -- "version": "5.1.1" -- }, -- "railroad-diagrams": { -- "version": "1.0.0" -- }, -- "randexp": { -- "version": "0.4.6", -- "requires": { -- "discontinuous-range": "1.0.0", -- "ret": "~0.1.10" -- } -- }, -- "randombytes": { -- "version": "2.1.0", -- "requires": { -- "safe-buffer": "^5.1.0" -- } -- }, -- "range-parser": { -- "version": "1.2.1", -- "dev": true -- }, -- "raw-body": { -- "version": "2.5.2", -- "dev": true, -- "requires": { -- "bytes": "3.1.2", -- "http-errors": "2.0.0", -- "iconv-lite": "0.4.24", -- "unpipe": "1.0.0" -- }, -- "dependencies": { -- "bytes": { -- "version": "3.1.2", -- "dev": true -- }, -- "iconv-lite": { -- "version": "0.4.24", -- "dev": true, -- "requires": { -- "safer-buffer": ">= 2.1.2 < 3" -- } -- } -- } -- }, -- "rc": { -- "version": "1.2.8", -- "requires": { -- "deep-extend": "^0.6.0", -- "ini": "~1.3.0", -- "minimist": "^1.2.0", -- "strip-json-comments": "~2.0.1" -- }, -- "dependencies": { -- "strip-json-comments": { -- "version": "2.0.1" -- } -- } -- }, -- "read-config-file": { -- "version": "6.3.2", -- "dev": true, -- "requires": { -- "config-file-ts": "^0.2.4", -- "dotenv": "^9.0.2", -- "dotenv-expand": "^5.1.0", -- "js-yaml": "^4.1.0", -- "json5": "^2.2.0", -- "lazy-val": "^1.0.4" -- } -- }, -- "read-pkg": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "load-json-file": "^4.0.0", -- "normalize-package-data": "^2.3.2", -- "path-type": "^3.0.0" -- }, -- "dependencies": { -- "path-type": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "pify": "^3.0.0" -- } -- }, -- "pify": { -- "version": "3.0.0", -- "dev": true -- } -- } -- }, -- "read-pkg-up": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "find-up": "^2.0.0", -- "read-pkg": "^3.0.0" -- } -- }, -- "readable-stream": { -- "version": "3.6.2", -- "requires": { -- "inherits": "^2.0.3", -- "string_decoder": "^1.1.1", -- "util-deprecate": "^1.0.1" -- } -- }, -- "readdir-glob": { -- "version": "1.1.3", -- "dev": true, -- "peer": true, -- "requires": { -- "minimatch": "^5.1.0" -- } -- }, -- "readdirp": { -- "version": "3.6.0", -- "requires": { -- "picomatch": "^2.2.1" -- } -- }, -- "rechoir": { -- "version": "0.7.1", -- "requires": { -- "resolve": "^1.9.0" -- } -- }, -- "redent": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "indent-string": "^4.0.0", -- "strip-indent": "^3.0.0" -- } -- }, -- "regenerate": { -- "version": "1.4.2", -- "dev": true -- }, -- "regenerate-unicode-properties": { -- "version": "10.1.1", -- "dev": true, -- "requires": { -- "regenerate": "^1.4.2" -- } -- }, -- "regenerator-runtime": { -- "version": "0.14.0", -- "dev": true -- }, -- "regenerator-transform": { -- "version": "0.15.2", -- "dev": true, -- "requires": { -- "@babel/runtime": "^7.8.4" -- } -- }, -- "regexp.prototype.flags": { -- "version": "1.5.1", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "set-function-name": "^2.0.0" -- } -- }, -- "regexpp": { -- "version": "3.2.0", -- "dev": true -- }, -- "regexpu-core": { -- "version": "5.3.2", -- "dev": true, -- "requires": { -- "@babel/regjsgen": "^0.8.0", -- "regenerate": "^1.4.2", -- "regenerate-unicode-properties": "^10.1.0", -- "regjsparser": "^0.9.1", -- "unicode-match-property-ecmascript": "^2.0.0", -- "unicode-match-property-value-ecmascript": "^2.1.0" -- } -- }, -- "regjsparser": { -- "version": "0.9.1", -- "dev": true, -- "requires": { -- "jsesc": "~0.5.0" -- }, -- "dependencies": { -- "jsesc": { -- "version": "0.5.0", -- "dev": true -- } -- } -- }, -- "relateurl": { -- "version": "0.2.7" -- }, -- "renderkid": { -- "version": "3.0.0", -- "requires": { -- "css-select": "^4.1.3", -- "dom-converter": "^0.2.0", -- "htmlparser2": "^6.1.0", -- "lodash": "^4.17.21", -- "strip-ansi": "^6.0.1" -- }, -- "dependencies": { -- "dom-serializer": { -- "version": "1.4.1", -- "requires": { -- "domelementtype": "^2.0.1", -- "domhandler": "^4.2.0", -- "entities": "^2.0.0" -- } -- }, -- "domhandler": { -- "version": "4.3.1", -- "requires": { -- "domelementtype": "^2.2.0" -- } -- }, -- "domutils": { -- "version": "2.8.0", -- "requires": { -- "dom-serializer": "^1.0.1", -- "domelementtype": "^2.2.0", -- "domhandler": "^4.2.0" -- } -- }, -- "entities": { -- "version": "2.2.0" -- }, -- "htmlparser2": { -- "version": "6.1.0", -- "requires": { -- "domelementtype": "^2.0.1", -- "domhandler": "^4.0.0", -- "domutils": "^2.5.2", -- "entities": "^2.0.0" -- } -- } -- } -- }, -- "require-directory": { -- "version": "2.1.1", -- "dev": true -- }, -- "require-from-string": { -- "version": "2.0.2" -- }, -- "require-main-filename": { -- "version": "2.0.0", -- "dev": true -- }, -- "requires-port": { -- "version": "1.0.0", -- "dev": true -- }, -- "resolve": { -- "version": "1.22.8", -- "requires": { -- "is-core-module": "^2.13.0", -- "path-parse": "^1.0.7", -- "supports-preserve-symlinks-flag": "^1.0.0" -- } -- }, -- "resolve-alpn": { -- "version": "1.2.1" -- }, -- "resolve-cwd": { -- "version": "3.0.0", -- "requires": { -- "resolve-from": "^5.0.0" -- }, -- "dependencies": { -- "resolve-from": { -- "version": "5.0.0" -- } -- } -- }, -- "resolve-from": { -- "version": "4.0.0", -- "dev": true -- }, -- "responselike": { -- "version": "2.0.1", -- "requires": { -- "lowercase-keys": "^2.0.0" -- } -- }, -- "restore-cursor": { -- "version": "3.1.0", -- "dev": true, -- "requires": { -- "onetime": "^5.1.0", -- "signal-exit": "^3.0.2" -- } -- }, -- "ret": { -- "version": "0.1.15" -- }, -- "retry": { -- "version": "0.12.0", -- "dev": true -- }, -- "reusify": { -- "version": "1.0.4", -- "dev": true -- }, -- "rimraf": { -- "version": "3.0.2", -- "requires": { -- "glob": "^7.1.3" -- } -- }, -- "roarr": { -- "version": "2.15.4", -- "optional": true, -- "requires": { -- "boolean": "^3.0.1", -- "detect-node": "^2.0.4", -- "globalthis": "^1.0.1", -- "json-stringify-safe": "^5.0.1", -- "semver-compare": "^1.0.0", -- "sprintf-js": "^1.1.2" -- } -- }, -- "run-async": { -- "version": "2.4.1", -- "dev": true -- }, -- "run-parallel": { -- "version": "1.2.0", -- "dev": true, -- "requires": { -- "queue-microtask": "^1.2.2" -- } -- }, -- "rxjs": { -- "version": "6.6.7", -- "dev": true, -- "requires": { -- "tslib": "^1.9.0" -- }, -- "dependencies": { -- "tslib": { -- "version": "1.14.1", -- "dev": true -- } -- } -- }, -- "safe-array-concat": { -- "version": "1.0.1", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "get-intrinsic": "^1.2.1", -- "has-symbols": "^1.0.3", -- "isarray": "^2.0.5" -- } -- }, -- "safe-buffer": { -- "version": "5.2.1" -- }, -- "safe-regex-test": { -- "version": "1.0.0", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "get-intrinsic": "^1.1.3", -- "is-regex": "^1.1.4" -- } -- }, -- "safer-buffer": { -- "version": "2.1.2" -- }, -- "sanitize-filename": { -- "version": "1.6.3", -- "dev": true, -- "requires": { -- "truncate-utf8-bytes": "^1.0.0" -- } -- }, -- "sass": { -- "version": "1.42.1", -- "requires": { -- "chokidar": ">=3.0.0 <4.0.0" -- } -- }, -- "sass-loader": { -- "version": "12.3.0", -- "requires": { -- "klona": "^2.0.4", -- "neo-async": "^2.6.2" -- } -- }, -- "sax": { -- "version": "1.3.0" -- }, -- "schema-utils": { -- "version": "2.7.1", -- "requires": { -- "@types/json-schema": "^7.0.5", -- "ajv": "^6.12.4", -- "ajv-keywords": "^3.5.2" -- } -- }, -- "select-hose": { -- "version": "2.0.0", -- "dev": true -- }, -- "selfsigned": { -- "version": "2.4.1", -- "dev": true, -- "requires": { -- "@types/node-forge": "^1.3.0", -- "node-forge": "^1" -- } -- }, -- "semver": { -- "version": "6.3.1" -- }, -- "semver-compare": { -- "version": "1.0.0", -- "optional": true -- }, -- "send": { -- "version": "0.18.0", -- "dev": true, -- "requires": { -- "debug": "2.6.9", -- "depd": "2.0.0", -- "destroy": "1.2.0", -- "encodeurl": "~1.0.2", -- "escape-html": "~1.0.3", -- "etag": "~1.8.1", -- "fresh": "0.5.2", -- "http-errors": "2.0.0", -- "mime": "1.6.0", -- "ms": "2.1.3", -- "on-finished": "2.4.1", -- "range-parser": "~1.2.1", -- "statuses": "2.0.1" -- }, -- "dependencies": { -- "debug": { -- "version": "2.6.9", -- "dev": true, -- "requires": { -- "ms": "2.0.0" -- }, -- "dependencies": { -- "ms": { -- "version": "2.0.0", -- "dev": true -- } -- } -- }, -- "mime": { -- "version": "1.6.0", -- "dev": true -- }, -- "ms": { -- "version": "2.1.3", -- "dev": true -- } -- } -- }, -- "seq-queue": { -- "version": "0.0.5" -- }, -- "serialize-error": { -- "version": "7.0.1", -- "optional": true, -- "requires": { -- "type-fest": "^0.13.1" -- }, -- "dependencies": { -- "type-fest": { -- "version": "0.13.1", -- "optional": true -- } -- } -- }, -- "serialize-javascript": { -- "version": "6.0.2", -- "requires": { -- "randombytes": "^2.1.0" -- } -- }, -- "serve-index": { -- "version": "1.9.1", -- "dev": true, -- "requires": { -- "accepts": "~1.3.4", -- "batch": "0.6.1", -- "debug": "2.6.9", -- "escape-html": "~1.0.3", -- "http-errors": "~1.6.2", -- "mime-types": "~2.1.17", -- "parseurl": "~1.3.2" -- }, -- "dependencies": { -- "debug": { -- "version": "2.6.9", -- "dev": true, -- "requires": { -- "ms": "2.0.0" -- } -- }, -- "depd": { -- "version": "1.1.2", -- "dev": true -- }, -- "http-errors": { -- "version": "1.6.3", -- "dev": true, -- "requires": { -- "depd": "~1.1.2", -- "inherits": "2.0.3", -- "setprototypeof": "1.1.0", -- "statuses": ">= 1.4.0 < 2" -- } -- }, -- "inherits": { -- "version": "2.0.3", -- "dev": true -- }, -- "ms": { -- "version": "2.0.0", -- "dev": true -- }, -- "setprototypeof": { -- "version": "1.1.0", -- "dev": true -- }, -- "statuses": { -- "version": "1.5.0", -- "dev": true -- } -- } -- }, -- "serve-static": { -- "version": "1.15.0", -- "dev": true, -- "requires": { -- "encodeurl": "~1.0.2", -- "escape-html": "~1.0.3", -- "parseurl": "~1.3.3", -- "send": "0.18.0" -- } -- }, -- "set-blocking": { -- "version": "2.0.0", -- "dev": true -- }, -- "set-function-length": { -- "version": "1.1.1", -- "dev": true, -- "requires": { -- "define-data-property": "^1.1.1", -- "get-intrinsic": "^1.2.1", -- "gopd": "^1.0.1", -- "has-property-descriptors": "^1.0.0" -- } -- }, -- "set-function-name": { -- "version": "2.0.1", -- "dev": true, -- "requires": { -- "define-data-property": "^1.0.1", -- "functions-have-names": "^1.2.3", -- "has-property-descriptors": "^1.0.0" -- } -- }, -- "setimmediate": { -- "version": "1.0.5" -- }, -- "setprototypeof": { -- "version": "1.2.0", -- "dev": true -- }, -- "shallow-clone": { -- "version": "3.0.1", -- "requires": { -- "kind-of": "^6.0.2" -- } -- }, -- "shebang-command": { -- "version": "2.0.0", -- "requires": { -- "shebang-regex": "^3.0.0" -- } -- }, -- "shebang-regex": { -- "version": "3.0.0" -- }, -- "side-channel": { -- "version": "1.0.4", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.0", -- "get-intrinsic": "^1.0.2", -- "object-inspect": "^1.9.0" -- } -- }, -- "signal-exit": { -- "version": "3.0.7" -- }, -- "simple-concat": { -- "version": "1.0.1" -- }, -- "simple-get": { -- "version": "4.0.1", -- "requires": { -- "decompress-response": "^6.0.0", -- "once": "^1.3.1", -- "simple-concat": "^1.0.0" -- } -- }, -- "simple-update-notifier": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "semver": "^7.5.3" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "slash": { -- "version": "3.0.0", -- "dev": true -- }, -- "sockjs": { -- "version": "0.3.24", -- "dev": true, -- "requires": { -- "faye-websocket": "^0.11.3", -- "uuid": "^8.3.2", -- "websocket-driver": "^0.7.4" -- } -- }, -- "sortablejs": { -- "version": "1.14.0" -- }, -- "source-map": { -- "version": "0.6.1" -- }, -- "source-map-js": { -- "version": "1.2.0", -- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", -- "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==" -- }, -- "source-map-support": { -- "version": "0.5.21", -- "requires": { -- "buffer-from": "^1.0.0", -- "source-map": "^0.6.0" -- } -- }, -- "sourcemap-codec": { -- "version": "1.4.8" -- }, -- "spdx-correct": { -- "version": "3.2.0", -- "dev": true, -- "requires": { -- "spdx-expression-parse": "^3.0.0", -- "spdx-license-ids": "^3.0.0" -- } -- }, -- "spdx-exceptions": { -- "version": "2.3.0", -- "dev": true -- }, -- "spdx-expression-parse": { -- "version": "3.0.1", -- "dev": true, -- "requires": { -- "spdx-exceptions": "^2.1.0", -- "spdx-license-ids": "^3.0.0" -- } -- }, -- "spdx-license-ids": { -- "version": "3.0.16", -- "dev": true -- }, -- "spdy": { -- "version": "4.0.2", -- "dev": true, -- "requires": { -- "debug": "^4.1.0", -- "handle-thing": "^2.0.0", -- "http-deceiver": "^1.2.7", -- "select-hose": "^2.0.0", -- "spdy-transport": "^3.0.0" -- } -- }, -- "spdy-transport": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "debug": "^4.1.0", -- "detect-node": "^2.0.4", -- "hpack.js": "^2.1.6", -- "obuf": "^1.1.2", -- "readable-stream": "^3.0.6", -- "wbuf": "^1.7.3" -- } -- }, -- "spectre.css": { -- "version": "0.5.9" -- }, -- "split": { -- "version": "1.0.1", -- "dev": true, -- "requires": { -- "through": "2" -- } -- }, -- "split2": { -- "version": "4.2.0" -- }, -- "sprintf-js": { -- "version": "1.1.2" -- }, -- "sql-formatter": { -- "version": "13.0.4", -- "requires": { -- "argparse": "^2.0.1", -- "get-stdin": "=8.0.0", -- "nearley": "^2.20.1" -- } -- }, -- "sql-highlight": { -- "version": "4.4.0" -- }, -- "sqlstring": { -- "version": "2.3.3" -- }, -- "ssh2": { -- "version": "1.14.0", -- "requires": { -- "asn1": "^0.2.6", -- "bcrypt-pbkdf": "^1.0.2", -- "cpu-features": "~0.0.8", -- "nan": "^2.17.0" -- } -- }, -- "standard-version": { -- "version": "9.3.2", -- "dev": true, -- "requires": { -- "chalk": "^2.4.2", -- "conventional-changelog": "3.1.24", -- "conventional-changelog-config-spec": "2.1.0", -- "conventional-changelog-conventionalcommits": "4.6.1", -- "conventional-recommended-bump": "6.1.0", -- "detect-indent": "^6.0.0", -- "detect-newline": "^3.1.0", -- "dotgitignore": "^2.1.0", -- "figures": "^3.1.0", -- "find-up": "^5.0.0", -- "fs-access": "^1.0.1", -- "git-semver-tags": "^4.0.0", -- "semver": "^7.1.1", -- "stringify-package": "^1.0.1", -- "yargs": "^16.0.0" -- }, -- "dependencies": { -- "ansi-styles": { -- "version": "3.2.1", -- "dev": true, -- "requires": { -- "color-convert": "^1.9.0" -- } -- }, -- "chalk": { -- "version": "2.4.2", -- "dev": true, -- "requires": { -- "ansi-styles": "^3.2.1", -- "escape-string-regexp": "^1.0.5", -- "supports-color": "^5.3.0" -- } -- }, -- "cliui": { -- "version": "7.0.4", -- "dev": true, -- "requires": { -- "string-width": "^4.2.0", -- "strip-ansi": "^6.0.0", -- "wrap-ansi": "^7.0.0" -- } -- }, -- "color-convert": { -- "version": "1.9.3", -- "dev": true, -- "requires": { -- "color-name": "1.1.3" -- } -- }, -- "color-name": { -- "version": "1.1.3", -- "dev": true -- }, -- "escape-string-regexp": { -- "version": "1.0.5", -- "dev": true -- }, -- "find-up": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "locate-path": "^6.0.0", -- "path-exists": "^4.0.0" -- } -- }, -- "has-flag": { -- "version": "3.0.0", -- "dev": true -- }, -- "locate-path": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "p-locate": "^5.0.0" -- } -- }, -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "p-limit": { -- "version": "3.1.0", -- "dev": true, -- "requires": { -- "yocto-queue": "^0.1.0" -- } -- }, -- "p-locate": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "p-limit": "^3.0.2" -- } -- }, -- "path-exists": { -- "version": "4.0.0", -- "dev": true -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "supports-color": { -- "version": "5.5.0", -- "dev": true, -- "requires": { -- "has-flag": "^3.0.0" -- } -- }, -- "wrap-ansi": { -- "version": "7.0.0", -- "dev": true, -- "requires": { -- "ansi-styles": "^4.0.0", -- "string-width": "^4.1.0", -- "strip-ansi": "^6.0.0" -- }, -- "dependencies": { -- "ansi-styles": { -- "version": "4.3.0", -- "dev": true, -- "requires": { -- "color-convert": "^2.0.1" -- } -- }, -- "color-convert": { -- "version": "2.0.1", -- "dev": true, -- "requires": { -- "color-name": "~1.1.4" -- } -- }, -- "color-name": { -- "version": "1.1.4", -- "dev": true -- } -- } -- }, -- "y18n": { -- "version": "5.0.8", -- "dev": true -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- }, -- "yargs": { -- "version": "16.2.0", -- "dev": true, -- "requires": { -- "cliui": "^7.0.2", -- "escalade": "^3.1.1", -- "get-caller-file": "^2.0.5", -- "require-directory": "^2.1.1", -- "string-width": "^4.2.0", -- "y18n": "^5.0.5", -- "yargs-parser": "^20.2.2" -- } -- } -- } -- }, -- "stat-mode": { -- "version": "1.0.0", -- "dev": true -- }, -- "statuses": { -- "version": "2.0.1", -- "dev": true -- }, -- "string_decoder": { -- "version": "1.3.0", -- "requires": { -- "safe-buffer": "~5.2.0" -- } -- }, -- "string-width": { -- "version": "4.2.3", -- "dev": true, -- "requires": { -- "emoji-regex": "^8.0.0", -- "is-fullwidth-code-point": "^3.0.0", -- "strip-ansi": "^6.0.1" -- } -- }, -- "string-width-cjs": { -- "version": "npm:string-width@4.2.3", -- "dev": true, -- "requires": { -- "emoji-regex": "^8.0.0", -- "is-fullwidth-code-point": "^3.0.0", -- "strip-ansi": "^6.0.1" -- } -- }, -- "string.prototype.trim": { -- "version": "1.2.8", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "es-abstract": "^1.22.1" -- } -- }, -- "string.prototype.trimend": { -- "version": "1.0.7", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "es-abstract": "^1.22.1" -- } -- }, -- "string.prototype.trimstart": { -- "version": "1.0.7", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "es-abstract": "^1.22.1" -- } -- }, -- "stringify-package": { -- "version": "1.0.1", -- "dev": true -- }, -- "strip-ansi": { -- "version": "6.0.1", -- "requires": { -- "ansi-regex": "^5.0.1" -- } -- }, -- "strip-ansi-cjs": { -- "version": "npm:strip-ansi@6.0.1", -- "dev": true, -- "requires": { -- "ansi-regex": "^5.0.1" -- } -- }, -- "strip-bom": { -- "version": "3.0.0", -- "dev": true -- }, -- "strip-final-newline": { -- "version": "2.0.0" -- }, -- "strip-indent": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "min-indent": "^1.0.0" -- } -- }, -- "strip-json-comments": { -- "version": "3.1.1", -- "dev": true -- }, -- "style-loader": { -- "version": "3.3.3", -- "requires": {} -- }, -- "style-search": { -- "version": "0.1.0", -- "dev": true -- }, -- "stylelint": { -- "version": "15.11.0", -- "dev": true, -- "requires": { -- "@csstools/css-parser-algorithms": "^2.3.1", -- "@csstools/css-tokenizer": "^2.2.0", -- "@csstools/media-query-list-parser": "^2.1.4", -- "@csstools/selector-specificity": "^3.0.0", -- "balanced-match": "^2.0.0", -- "colord": "^2.9.3", -- "cosmiconfig": "^8.2.0", -- "css-functions-list": "^3.2.1", -- "css-tree": "^2.3.1", -- "debug": "^4.3.4", -- "fast-glob": "^3.3.1", -- "fastest-levenshtein": "^1.0.16", -- "file-entry-cache": "^7.0.0", -- "global-modules": "^2.0.0", -- "globby": "^11.1.0", -- "globjoin": "^0.1.4", -- "html-tags": "^3.3.1", -- "ignore": "^5.2.4", -- "import-lazy": "^4.0.0", -- "imurmurhash": "^0.1.4", -- "is-plain-object": "^5.0.0", -- "known-css-properties": "^0.29.0", -- "mathml-tag-names": "^2.1.3", -- "meow": "^10.1.5", -- "micromatch": "^4.0.5", -- "normalize-path": "^3.0.0", -- "picocolors": "^1.0.0", -- "postcss": "^8.4.28", -- "postcss-resolve-nested-selector": "^0.1.1", -- "postcss-safe-parser": "^6.0.0", -- "postcss-selector-parser": "^6.0.13", -- "postcss-value-parser": "^4.2.0", -- "resolve-from": "^5.0.0", -- "string-width": "^4.2.3", -- "strip-ansi": "^6.0.1", -- "style-search": "^0.1.0", -- "supports-hyperlinks": "^3.0.0", -- "svg-tags": "^1.0.0", -- "table": "^6.8.1", -- "write-file-atomic": "^5.0.1" -- }, -- "dependencies": { -- "balanced-match": { -- "version": "2.0.0", -- "dev": true -- }, -- "camelcase": { -- "version": "6.3.0", -- "dev": true -- }, -- "camelcase-keys": { -- "version": "7.0.2", -- "dev": true, -- "requires": { -- "camelcase": "^6.3.0", -- "map-obj": "^4.1.0", -- "quick-lru": "^5.1.1", -- "type-fest": "^1.2.1" -- } -- }, -- "cosmiconfig": { -- "version": "8.3.6", -- "dev": true, -- "requires": { -- "import-fresh": "^3.3.0", -- "js-yaml": "^4.1.0", -- "parse-json": "^5.2.0", -- "path-type": "^4.0.0" -- } -- }, -- "decamelize": { -- "version": "5.0.1", -- "dev": true -- }, -- "file-entry-cache": { -- "version": "7.0.2", -- "dev": true, -- "requires": { -- "flat-cache": "^3.2.0" -- } -- }, -- "find-up": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "locate-path": "^6.0.0", -- "path-exists": "^4.0.0" -- } -- }, -- "indent-string": { -- "version": "5.0.0", -- "dev": true -- }, -- "locate-path": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "p-locate": "^5.0.0" -- } -- }, -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "meow": { -- "version": "10.1.5", -- "dev": true, -- "requires": { -- "@types/minimist": "^1.2.2", -- "camelcase-keys": "^7.0.0", -- "decamelize": "^5.0.0", -- "decamelize-keys": "^1.1.0", -- "hard-rejection": "^2.1.0", -- "minimist-options": "4.1.0", -- "normalize-package-data": "^3.0.2", -- "read-pkg-up": "^8.0.0", -- "redent": "^4.0.0", -- "trim-newlines": "^4.0.2", -- "type-fest": "^1.2.2", -- "yargs-parser": "^20.2.9" -- } -- }, -- "normalize-package-data": { -- "version": "3.0.3", -- "dev": true, -- "requires": { -- "hosted-git-info": "^4.0.1", -- "is-core-module": "^2.5.0", -- "semver": "^7.3.4", -- "validate-npm-package-license": "^3.0.1" -- } -- }, -- "p-limit": { -- "version": "3.1.0", -- "dev": true, -- "requires": { -- "yocto-queue": "^0.1.0" -- } -- }, -- "p-locate": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "p-limit": "^3.0.2" -- } -- }, -- "parse-json": { -- "version": "5.2.0", -- "dev": true, -- "requires": { -- "@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" -- } -- }, -- "path-exists": { -- "version": "4.0.0", -- "dev": true -- }, -- "read-pkg": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "@types/normalize-package-data": "^2.4.0", -- "normalize-package-data": "^3.0.2", -- "parse-json": "^5.2.0", -- "type-fest": "^1.0.1" -- } -- }, -- "read-pkg-up": { -- "version": "8.0.0", -- "dev": true, -- "requires": { -- "find-up": "^5.0.0", -- "read-pkg": "^6.0.0", -- "type-fest": "^1.0.1" -- } -- }, -- "redent": { -- "version": "4.0.0", -- "dev": true, -- "requires": { -- "indent-string": "^5.0.0", -- "strip-indent": "^4.0.0" -- } -- }, -- "resolve-from": { -- "version": "5.0.0", -- "dev": true -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "strip-indent": { -- "version": "4.0.0", -- "dev": true, -- "requires": { -- "min-indent": "^1.0.1" -- } -- }, -- "trim-newlines": { -- "version": "4.1.1", -- "dev": true -- }, -- "type-fest": { -- "version": "1.4.0", -- "dev": true -- }, -- "typescript": { -- "version": "5.3.2", -- "dev": true, -- "optional": true, -- "peer": true -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "stylelint-config-html": { -- "version": "1.1.0", -- "dev": true, -- "requires": {} -- }, -- "stylelint-config-recommended": { -- "version": "13.0.0", -- "dev": true, -- "requires": {} -- }, -- "stylelint-config-recommended-vue": { -- "version": "1.5.0", -- "dev": true, -- "requires": { -- "semver": "^7.3.5", -- "stylelint-config-html": ">=1.0.0", -- "stylelint-config-recommended": ">=6.0.0" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "stylelint-config-standard": { -- "version": "34.0.0", -- "dev": true, -- "requires": { -- "stylelint-config-recommended": "^13.0.0" -- } -- }, -- "stylelint-scss": { -- "version": "5.3.1", -- "dev": true, -- "requires": { -- "known-css-properties": "^0.29.0", -- "postcss-media-query-parser": "^0.2.3", -- "postcss-resolve-nested-selector": "^0.1.1", -- "postcss-selector-parser": "^6.0.13", -- "postcss-value-parser": "^4.2.0" -- } -- }, -- "sumchecker": { -- "version": "3.0.1", -- "requires": { -- "debug": "^4.1.0" -- } -- }, -- "supports-color": { -- "version": "7.2.0", -- "requires": { -- "has-flag": "^4.0.0" -- } -- }, -- "supports-hyperlinks": { -- "version": "3.0.0", -- "dev": true, -- "requires": { -- "has-flag": "^4.0.0", -- "supports-color": "^7.0.0" -- } -- }, -- "supports-preserve-symlinks-flag": { -- "version": "1.0.0" -- }, -- "svg-tags": { -- "version": "1.0.0", -- "dev": true -- }, -- "table": { -- "version": "6.8.1", -- "dev": true, -- "requires": { -- "ajv": "^8.0.1", -- "lodash.truncate": "^4.4.2", -- "slice-ansi": "^4.0.0", -- "string-width": "^4.2.3", -- "strip-ansi": "^6.0.1" -- }, -- "dependencies": { -- "ajv": { -- "version": "8.12.0", -- "dev": true, -- "requires": { -- "fast-deep-equal": "^3.1.1", -- "json-schema-traverse": "^1.0.0", -- "require-from-string": "^2.0.2", -- "uri-js": "^4.2.2" -- } -- }, -- "json-schema-traverse": { -- "version": "1.0.0", -- "dev": true -- }, -- "slice-ansi": { -- "version": "4.0.0", -- "dev": true, -- "requires": { -- "ansi-styles": "^4.0.0", -- "astral-regex": "^2.0.0", -- "is-fullwidth-code-point": "^3.0.0" -- } -- } -- } -- }, -- "tapable": { -- "version": "2.2.1" -- }, -- "tar": { -- "version": "6.2.1", -- "dev": true, -- "requires": { -- "chownr": "^2.0.0", -- "fs-minipass": "^2.0.0", -- "minipass": "^5.0.0", -- "minizlib": "^2.1.1", -- "mkdirp": "^1.0.3", -- "yallist": "^4.0.0" -- }, -- "dependencies": { -- "mkdirp": { -- "version": "1.0.4", -- "dev": true -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "tar-fs": { -- "version": "2.1.1", -- "requires": { -- "chownr": "^1.1.1", -- "mkdirp-classic": "^0.5.2", -- "pump": "^3.0.0", -- "tar-stream": "^2.1.4" -- }, -- "dependencies": { -- "chownr": { -- "version": "1.1.4" -- } -- } -- }, -- "tar-stream": { -- "version": "2.2.0", -- "requires": { -- "bl": "^4.0.3", -- "end-of-stream": "^1.4.1", -- "fs-constants": "^1.0.0", -- "inherits": "^2.0.3", -- "readable-stream": "^3.1.1" -- } -- }, -- "temp-file": { -- "version": "3.4.0", -- "dev": true, -- "requires": { -- "async-exit-hook": "^2.0.1", -- "fs-extra": "^10.0.0" -- }, -- "dependencies": { -- "fs-extra": { -- "version": "10.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- } -- }, -- "jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "requires": { -- "graceful-fs": "^4.1.6", -- "universalify": "^2.0.0" -- } -- }, -- "universalify": { -- "version": "2.0.1", -- "dev": true -- } -- } -- }, -- "terser": { -- "version": "5.31.0", -- "requires": { -- "@jridgewell/source-map": "^0.3.3", -- "acorn": "^8.8.2", -- "commander": "^2.20.0", -- "source-map-support": "~0.5.20" -- }, -- "dependencies": { -- "acorn": { -- "version": "8.11.2" -- }, -- "commander": { -- "version": "2.20.3" -- } -- } -- }, -- "terser-webpack-plugin": { -- "version": "5.3.10", -- "requires": { -- "@jridgewell/trace-mapping": "^0.3.20", -- "jest-worker": "^27.4.5", -- "schema-utils": "^3.1.1", -- "serialize-javascript": "^6.0.1", -- "terser": "^5.26.0" -- }, -- "dependencies": { -- "schema-utils": { -- "version": "3.3.0", -- "requires": { -- "@types/json-schema": "^7.0.8", -- "ajv": "^6.12.5", -- "ajv-keywords": "^3.5.2" -- } -- } -- } -- }, -- "text-extensions": { -- "version": "1.9.0", -- "dev": true -- }, -- "text-table": { -- "version": "0.2.0", -- "dev": true -- }, -- "through": { -- "version": "2.3.8", -- "dev": true -- }, -- "through2": { -- "version": "4.0.2", -- "dev": true, -- "requires": { -- "readable-stream": "3" -- } -- }, -- "thunky": { -- "version": "1.1.0", -- "dev": true -- }, -- "tmp": { -- "version": "0.0.33", -- "dev": true, -- "requires": { -- "os-tmpdir": "~1.0.2" -- } -- }, -- "tmp-promise": { -- "version": "3.0.3", -- "dev": true, -- "requires": { -- "tmp": "^0.2.0" -- }, -- "dependencies": { -- "tmp": { -- "version": "0.2.3", -- "dev": true -- } -- } -- }, -- "to-fast-properties": { -- "version": "2.0.0" -- }, -- "to-regex-range": { -- "version": "5.0.1", -- "requires": { -- "is-number": "^7.0.0" -- } -- }, -- "toidentifier": { -- "version": "1.0.1", -- "dev": true -- }, -- "tr46": { -- "version": "0.0.3", -- "dev": true -- }, -- "tree-kill": { -- "version": "1.2.2" -- }, -- "trim-newlines": { -- "version": "3.0.1", -- "dev": true -- }, -- "truncate-utf8-bytes": { -- "version": "1.0.2", -- "dev": true, -- "requires": { -- "utf8-byte-length": "^1.0.1" -- } -- }, -- "ts-loader": { -- "version": "9.2.9", -- "requires": { -- "chalk": "^4.1.0", -- "enhanced-resolve": "^5.0.0", -- "micromatch": "^4.0.0", -- "semver": "^7.3.4" -- }, -- "dependencies": { -- "lru-cache": { -- "version": "6.0.0", -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0" -- } -- } -- }, -- "ts-node": { -- "version": "10.9.1", -- "dev": true, -- "requires": { -- "@cspotcode/source-map-support": "^0.8.0", -- "@tsconfig/node10": "^1.0.7", -- "@tsconfig/node12": "^1.0.7", -- "@tsconfig/node14": "^1.0.0", -- "@tsconfig/node16": "^1.0.2", -- "acorn": "^8.4.1", -- "acorn-walk": "^8.1.1", -- "arg": "^4.1.0", -- "create-require": "^1.1.0", -- "diff": "^4.0.1", -- "make-error": "^1.1.1", -- "v8-compile-cache-lib": "^3.0.1", -- "yn": "3.1.1" -- }, -- "dependencies": { -- "acorn": { -- "version": "8.11.2", -- "dev": true -- } -- } -- }, -- "tsconfig-paths": { -- "version": "3.14.2", -- "dev": true, -- "requires": { -- "@types/json5": "^0.0.29", -- "json5": "^1.0.2", -- "minimist": "^1.2.6", -- "strip-bom": "^3.0.0" -- }, -- "dependencies": { -- "json5": { -- "version": "1.0.2", -- "dev": true, -- "requires": { -- "minimist": "^1.2.0" -- } -- } -- } -- }, -- "tslib": { -- "version": "2.6.2" -- }, -- "tsutils": { -- "version": "3.21.0", -- "dev": true, -- "requires": { -- "tslib": "^1.8.1" -- }, -- "dependencies": { -- "tslib": { -- "version": "1.14.1", -- "dev": true -- } -- } -- }, -- "tunnel-agent": { -- "version": "0.6.0", -- "requires": { -- "safe-buffer": "^5.0.1" -- } -- }, -- "tweetnacl": { -- "version": "0.14.5" -- }, -- "type-check": { -- "version": "0.4.0", -- "dev": true, -- "requires": { -- "prelude-ls": "^1.2.1" -- } -- }, -- "type-fest": { -- "version": "2.19.0" -- }, -- "type-is": { -- "version": "1.6.18", -- "dev": true, -- "requires": { -- "media-typer": "0.3.0", -- "mime-types": "~2.1.24" -- } -- }, -- "typed-array-buffer": { -- "version": "1.0.0", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "get-intrinsic": "^1.2.1", -- "is-typed-array": "^1.1.10" -- } -- }, -- "typed-array-byte-length": { -- "version": "1.0.0", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "for-each": "^0.3.3", -- "has-proto": "^1.0.1", -- "is-typed-array": "^1.1.10" -- } -- }, -- "typed-array-byte-offset": { -- "version": "1.0.0", -- "dev": true, -- "requires": { -- "available-typed-arrays": "^1.0.5", -- "call-bind": "^1.0.2", -- "for-each": "^0.3.3", -- "has-proto": "^1.0.1", -- "is-typed-array": "^1.1.10" -- } -- }, -- "typed-array-length": { -- "version": "1.0.4", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "for-each": "^0.3.3", -- "is-typed-array": "^1.1.9" -- } -- }, -- "typedarray": { -- "version": "0.0.6", -- "dev": true -- }, -- "typescript": { -- "version": "4.6.4" -- }, -- "uglify-js": { -- "version": "3.17.4", -- "dev": true, -- "optional": true -- }, -- "unbox-primitive": { -- "version": "1.0.2", -- "dev": true, -- "requires": { -- "call-bind": "^1.0.2", -- "has-bigints": "^1.0.2", -- "has-symbols": "^1.0.3", -- "which-boxed-primitive": "^1.0.2" -- } -- }, -- "undici-types": { -- "version": "5.26.5" -- }, -- "unicode-canonical-property-names-ecmascript": { -- "version": "2.0.0", -- "dev": true -- }, -- "unicode-match-property-ecmascript": { -- "version": "2.0.0", -- "dev": true, -- "requires": { -- "unicode-canonical-property-names-ecmascript": "^2.0.0", -- "unicode-property-aliases-ecmascript": "^2.0.0" -- } -- }, -- "unicode-match-property-value-ecmascript": { -- "version": "2.1.0", -- "dev": true -- }, -- "unicode-property-aliases-ecmascript": { -- "version": "2.1.0", -- "dev": true -- }, -- "unicorn-magic": { -- "version": "0.1.0", -- "dev": true -- }, -- "universalify": { -- "version": "0.1.2" -- }, -- "unpipe": { -- "version": "1.0.0", -- "dev": true -- }, -- "unzip-crx-3": { -- "version": "0.2.0", -- "requires": { -- "jszip": "^3.1.0", -- "mkdirp": "^0.5.1", -- "yaku": "^0.16.6" -- } -- }, -- "update-browserslist-db": { -- "version": "1.0.13", -- "requires": { -- "escalade": "^3.1.1", -- "picocolors": "^1.0.0" -- } -- }, -- "uri-js": { -- "version": "4.4.1", -- "requires": { -- "punycode": "^2.1.0" -- } -- }, -- "utf8-byte-length": { -- "version": "1.0.5", -- "dev": true -- }, -- "util-deprecate": { -- "version": "1.0.2" -- }, -- "utila": { -- "version": "0.4.0" -- }, -- "utils-merge": { -- "version": "1.0.1", -- "dev": true -- }, -- "uuid": { -- "version": "8.3.2", -- "dev": true -- }, -- "v-mask": { -- "version": "2.3.0" -- }, -- "v8-compile-cache": { -- "version": "2.4.0", -- "dev": true -- }, -- "v8-compile-cache-lib": { -- "version": "3.0.1", -- "dev": true -- }, -- "validate-npm-package-license": { -- "version": "3.0.4", -- "dev": true, -- "requires": { -- "spdx-correct": "^3.0.0", -- "spdx-expression-parse": "^3.0.0" -- } -- }, -- "vary": { -- "version": "1.1.2", -- "dev": true -- }, -- "vue": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.27.tgz", -- "integrity": "sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==", -- "requires": { -- "@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" -- }, -- "dependencies": { -- "@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==", -- "requires": { -- "@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" -- } -- }, -- "@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==", -- "requires": { -- "@vue/compiler-core": "3.4.27", -- "@vue/shared": "3.4.27" -- } -- }, -- "@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==", -- "requires": { -- "@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", -- "estree-walker": "^2.0.2", -- "magic-string": "^0.30.10", -- "postcss": "^8.4.38", -- "source-map-js": "^1.2.0" -- } -- }, -- "@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==", -- "requires": { -- "@vue/compiler-dom": "3.4.27", -- "@vue/shared": "3.4.27" -- } -- }, -- "@vue/shared": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" -- }, -- "magic-string": { -- "version": "0.30.10", -- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", -- "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", -- "requires": { -- "@jridgewell/sourcemap-codec": "^1.4.15" -- } -- } -- } -- }, -- "vue-eslint-parser": { -- "version": "8.3.0", -- "dev": true, -- "requires": { -- "debug": "^4.3.2", -- "eslint-scope": "^7.0.0", -- "eslint-visitor-keys": "^3.1.0", -- "espree": "^9.0.0", -- "esquery": "^1.4.0", -- "lodash": "^4.17.21", -- "semver": "^7.3.5" -- }, -- "dependencies": { -- "acorn": { -- "version": "8.11.2", -- "dev": true -- }, -- "eslint-scope": { -- "version": "7.2.2", -- "dev": true, -- "requires": { -- "esrecurse": "^4.3.0", -- "estraverse": "^5.2.0" -- } -- }, -- "eslint-visitor-keys": { -- "version": "3.4.3", -- "dev": true -- }, -- "espree": { -- "version": "9.6.1", -- "dev": true, -- "requires": { -- "acorn": "^8.9.0", -- "acorn-jsx": "^5.3.2", -- "eslint-visitor-keys": "^3.4.1" -- } -- }, -- "estraverse": { -- "version": "5.3.0", -- "dev": true -- }, -- "lru-cache": { -- "version": "6.0.0", -- "dev": true, -- "requires": { -- "yallist": "^4.0.0" -- } -- }, -- "semver": { -- "version": "7.5.4", -- "dev": true, -- "requires": { -- "lru-cache": "^6.0.0" -- } -- }, -- "yallist": { -- "version": "4.0.0", -- "dev": true -- } -- } -- }, -- "vue-i18n": { -- "version": "9.13.1", -- "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.13.1.tgz", -- "integrity": "sha512-mh0GIxx0wPtPlcB1q4k277y0iKgo25xmDPWioVVYanjPufDBpvu5ySTjP5wOrSvlYQ2m1xI+CFhGdauv/61uQg==", -- "requires": { -- "@intlify/core-base": "9.13.1", -- "@intlify/shared": "9.13.1", -- "@vue/devtools-api": "^6.5.0" -- } -- }, -- "vue-loader": { -- "version": "16.8.3", -- "requires": { -- "chalk": "^4.1.0", -- "hash-sum": "^2.0.0", -- "loader-utils": "^2.0.0" -- } -- }, -- "vue-resize": { -- "version": "2.0.0-alpha.1", -- "requires": {} -- }, -- "vuedraggable": { -- "version": "4.1.0", -- "requires": { -- "sortablejs": "1.14.0" -+ "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, -- "watchpack": { -- "version": "2.4.1", -- "requires": { -- "glob-to-regexp": "^0.4.1", -- "graceful-fs": "^4.1.2" -+ "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==", -+ "license": "MIT", -+ "engines": { -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "wbuf": { -- "version": "1.7.3", -- "dev": true, -- "requires": { -- "minimalistic-assert": "^1.0.0" -+ "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==", -+ "license": "Apache-2.0", -+ "engines": { -+ "node": ">=10.17.0" - } - }, -- "webidl-conversions": { -- "version": "3.0.1", -- "dev": true -- }, -- "webpack": { -- "version": "5.91.0", -- "requires": { -- "@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", -- "browserslist": "^4.21.10", -- "chrome-trace-event": "^1.0.2", -- "enhanced-resolve": "^5.16.0", -- "es-module-lexer": "^1.2.1", -- "eslint-scope": "5.1.1", -- "events": "^3.2.0", -- "glob-to-regexp": "^0.4.1", -- "graceful-fs": "^4.2.11", -- "json-parse-even-better-errors": "^2.3.1", -- "loader-runner": "^4.2.0", -- "mime-types": "^2.1.27", -- "neo-async": "^2.6.2", -- "schema-utils": "^3.2.0", -- "tapable": "^2.1.1", -- "terser-webpack-plugin": "^5.3.10", -- "watchpack": "^2.4.1", -- "webpack-sources": "^3.2.3" -+ "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==", -+ "license": "MIT", -+ "engines": { -+ "node": ">=8" - }, -- "dependencies": { -- "acorn": { -- "version": "8.11.2" -- }, -- "acorn-import-assertions": { -- "version": "1.9.0", -- "requires": {} -- }, -- "schema-utils": { -- "version": "3.3.0", -- "requires": { -- "@types/json-schema": "^7.0.8", -- "ajv": "^6.12.5", -- "ajv-keywords": "^3.5.2" -- } -- } -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "webpack-cli": { -- "version": "4.9.2", -- "requires": { -- "@discoveryjs/json-ext": "^0.5.0", -- "@webpack-cli/configtest": "^1.1.1", -- "@webpack-cli/info": "^1.4.1", -- "@webpack-cli/serve": "^1.6.1", -- "colorette": "^2.0.14", -- "commander": "^7.0.0", -- "execa": "^5.0.0", -- "fastest-levenshtein": "^1.0.12", -- "import-local": "^3.0.2", -- "interpret": "^2.2.0", -- "rechoir": "^0.7.0", -- "webpack-merge": "^5.7.3" -- }, -+ "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==", -+ "license": "MIT", - "dependencies": { -- "commander": { -- "version": "7.2.0" -- } -+ "path-key": "^3.0.0" -+ }, -+ "engines": { -+ "node": ">=8" -+ } -+ }, -+ "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==", -+ "license": "ISC" -+ }, -+ "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==", -+ "license": "MIT", -+ "engines": { -+ "node": ">=6" - } - }, -- "webpack-dev-middleware": { -+ "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, -- "requires": { -+ "license": "MIT", -+ "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, -+ "engines": { -+ "node": ">= 12.13.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/webpack" -+ }, -+ "peerDependencies": { -+ "webpack": "^4.0.0 || ^5.0.0" -+ } -+ }, -+ "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": { -- "ajv": { -- "version": "8.12.0", -- "dev": true, -- "requires": { -- "fast-deep-equal": "^3.1.1", -- "json-schema-traverse": "^1.0.0", -- "require-from-string": "^2.0.2", -- "uri-js": "^4.2.2" -- } -- }, -- "ajv-keywords": { -- "version": "5.1.0", -- "dev": true, -- "requires": { -- "fast-deep-equal": "^3.1.3" -- } -- }, -- "json-schema-traverse": { -- "version": "1.0.0", -- "dev": true -- }, -- "schema-utils": { -- "version": "4.2.0", -- "dev": true, -- "requires": { -- "@types/json-schema": "^7.0.9", -- "ajv": "^8.9.0", -- "ajv-formats": "^2.1.1", -- "ajv-keywords": "^5.1.0" -- } -- } -+ "@types/json-schema": "^7.0.9", -+ "ajv": "^8.9.0", -+ "ajv-formats": "^2.1.1", -+ "ajv-keywords": "^5.1.0" -+ }, -+ "engines": { -+ "node": ">= 12.13.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/webpack" - } - }, -- "webpack-dev-server": { -+ "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, -- "requires": { -+ "license": "MIT", -+ "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", -@@ -27076,325 +20158,557 @@ - "webpack-dev-middleware": "^5.3.1", - "ws": "^8.4.2" - }, -- "dependencies": { -- "ajv": { -- "version": "8.12.0", -- "dev": true, -- "requires": { -- "fast-deep-equal": "^3.1.1", -- "json-schema-traverse": "^1.0.0", -- "require-from-string": "^2.0.2", -- "uri-js": "^4.2.2" -- } -- }, -- "ajv-keywords": { -- "version": "5.1.0", -- "dev": true, -- "requires": { -- "fast-deep-equal": "^3.1.3" -- } -- }, -- "json-schema-traverse": { -- "version": "1.0.0", -- "dev": true -- }, -- "schema-utils": { -- "version": "4.2.0", -- "dev": true, -- "requires": { -- "@types/json-schema": "^7.0.9", -- "ajv": "^8.9.0", -- "ajv-formats": "^2.1.1", -- "ajv-keywords": "^5.1.0" -- } -+ "bin": { -+ "webpack-dev-server": "bin/webpack-dev-server.js" -+ }, -+ "engines": { -+ "node": ">= 12.13.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/webpack" -+ }, -+ "peerDependencies": { -+ "webpack": "^4.37.0 || ^5.0.0" -+ }, -+ "peerDependenciesMeta": { -+ "webpack-cli": { -+ "optional": true - } - } - }, -- "webpack-merge": { -+ "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", -+ "ajv-formats": "^2.1.1", -+ "ajv-keywords": "^5.1.0" -+ }, -+ "engines": { -+ "node": ">= 12.13.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/webpack" -+ } -+ }, -+ "node_modules/webpack-merge": { - "version": "5.10.0", -- "requires": { -+ "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", -+ "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", -+ "license": "MIT", -+ "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", - "wildcard": "^2.0.0" -+ }, -+ "engines": { -+ "node": ">=10.0.0" -+ } -+ }, -+ "node_modules/webpack-sources": { -+ "version": "3.2.3", -+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", -+ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", -+ "license": "MIT", -+ "engines": { -+ "node": ">=10.13.0" -+ } -+ }, -+ "node_modules/webpack/node_modules/acorn": { -+ "version": "8.13.0", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", -+ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", -+ "license": "MIT", -+ "bin": { -+ "acorn": "bin/acorn" -+ }, -+ "engines": { -+ "node": ">=0.4.0" -+ } -+ }, -+ "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==", -+ "license": "MIT", -+ "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==", -+ "license": "MIT", -+ "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==", -+ "license": "MIT", -+ "peerDependencies": { -+ "ajv": "^6.9.1" - } - }, -- "webpack-sources": { -- "version": "3.2.3" -+ "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==", -+ "license": "MIT" -+ }, -+ "node_modules/webpack/node_modules/schema-utils": { -+ "version": "3.3.0", -+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", -+ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", -+ "license": "MIT", -+ "dependencies": { -+ "@types/json-schema": "^7.0.8", -+ "ajv": "^6.12.5", -+ "ajv-keywords": "^3.5.2" -+ }, -+ "engines": { -+ "node": ">= 10.13.0" -+ }, -+ "funding": { -+ "type": "opencollective", -+ "url": "https://opencollective.com/webpack" -+ } - }, -- "websocket-driver": { -+ "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, -- "requires": { -+ "license": "Apache-2.0", -+ "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" -+ }, -+ "engines": { -+ "node": ">=0.8.0" - } - }, -- "websocket-extensions": { -+ "node_modules/websocket-extensions": { - "version": "0.1.4", -- "dev": true -+ "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" -+ } - }, -- "whatwg-url": { -+ "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, -- "requires": { -+ "license": "MIT", -+ "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, -- "which": { -+ "node_modules/which": { - "version": "2.0.2", -- "requires": { -+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", -+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", -+ "license": "ISC", -+ "dependencies": { - "isexe": "^2.0.0" -+ }, -+ "bin": { -+ "node-which": "bin/node-which" -+ }, -+ "engines": { -+ "node": ">= 8" - } - }, -- "which-boxed-primitive": { -+ "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, -- "requires": { -+ "license": "MIT", -+ "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "which-module": { -+ "node_modules/which-module": { - "version": "2.0.1", -- "dev": true -+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", -+ "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", -+ "dev": true, -+ "license": "ISC" - }, -- "which-typed-array": { -- "version": "1.1.13", -+ "node_modules/which-typed-array": { -+ "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, -- "requires": { -- "available-typed-arrays": "^1.0.5", -- "call-bind": "^1.0.4", -+ "license": "MIT", -+ "dependencies": { -+ "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" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "wildcard": { -- "version": "2.0.1" -+ "node_modules/wildcard": { -+ "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", -+ "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", -+ "license": "MIT" -+ }, -+ "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, -+ "license": "MIT", -+ "engines": { -+ "node": ">=0.10.0" -+ } - }, -- "wordwrap": { -+ "node_modules/wordwrap": { - "version": "1.0.0", -- "dev": true -+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", -+ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", -+ "dev": true, -+ "license": "MIT" - }, -- "wrap-ansi": { -+ "node_modules/wrap-ansi": { - "version": "3.0.1", -- "requires": { -+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", -+ "integrity": "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==", -+ "license": "MIT", -+ "dependencies": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0" - }, -- "dependencies": { -- "ansi-regex": { -- "version": "3.0.1" -- }, -- "is-fullwidth-code-point": { -- "version": "2.0.0" -- }, -- "string-width": { -- "version": "2.1.1", -- "requires": { -- "is-fullwidth-code-point": "^2.0.0", -- "strip-ansi": "^4.0.0" -- } -- }, -- "strip-ansi": { -- "version": "4.0.0", -- "requires": { -- "ansi-regex": "^3.0.0" -- } -- } -+ "engines": { -+ "node": ">=4" - } - }, -- "wrap-ansi-cjs": { -- "version": "npm:wrap-ansi@7.0.0", -+ "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, -- "requires": { -+ "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/wrap-ansi/node_modules/ansi-regex": { -+ "version": "3.0.1", -+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", -+ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", -+ "license": "MIT", -+ "engines": { -+ "node": ">=4" -+ } -+ }, -+ "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", -+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", -+ "license": "MIT", -+ "engines": { -+ "node": ">=4" -+ } -+ }, -+ "node_modules/wrap-ansi/node_modules/string-width": { -+ "version": "2.1.1", -+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", -+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", -+ "license": "MIT", -+ "dependencies": { -+ "is-fullwidth-code-point": "^2.0.0", -+ "strip-ansi": "^4.0.0" -+ }, -+ "engines": { -+ "node": ">=4" -+ } -+ }, -+ "node_modules/wrap-ansi/node_modules/strip-ansi": { -+ "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", -+ "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", -+ "license": "MIT", -+ "dependencies": { -+ "ansi-regex": "^3.0.0" -+ }, -+ "engines": { -+ "node": ">=4" - } - }, -- "wrappy": { -- "version": "1.0.2" -+ "node_modules/wrappy": { -+ "version": "1.0.2", -+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", -+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", -+ "license": "ISC" - }, -- "write-file-atomic": { -+ "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, -- "requires": { -+ "license": "ISC", -+ "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^4.0.1" - }, -- "dependencies": { -- "signal-exit": { -- "version": "4.1.0", -- "dev": true -- } -+ "engines": { -+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, -- "ws": { -- "version": "8.14.2", -+ "node_modules/ws": { -+ "version": "8.18.0", -+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", -+ "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", - "dev": true, -- "requires": {} -+ "license": "MIT", -+ "engines": { -+ "node": ">=10.0.0" -+ }, -+ "peerDependencies": { -+ "bufferutil": "^4.0.1", -+ "utf-8-validate": ">=5.0.2" -+ }, -+ "peerDependenciesMeta": { -+ "bufferutil": { -+ "optional": true -+ }, -+ "utf-8-validate": { -+ "optional": true -+ } -+ } - }, -- "xmlbuilder": { -+ "node_modules/xmlbuilder": { - "version": "15.1.1", -- "dev": true -+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", -+ "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", -+ "dev": true, -+ "license": "MIT", -+ "engines": { -+ "node": ">=8.0" -+ } - }, -- "xtend": { -- "version": "4.0.2" -+ "node_modules/xtend": { -+ "version": "4.0.2", -+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", -+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", -+ "license": "MIT", -+ "engines": { -+ "node": ">=0.4" -+ } - }, -- "xvfb-maybe": { -+ "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, -- "requires": { -+ "license": "MIT", -+ "dependencies": { - "debug": "^2.2.0", - "which": "^1.2.4" - }, -+ "bin": { -+ "xvfb-maybe": "src/xvfb-maybe.js" -+ } -+ }, -+ "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": { -- "debug": { -- "version": "2.6.9", -- "dev": true, -- "requires": { -- "ms": "2.0.0" -- } -- }, -- "ms": { -- "version": "2.0.0", -- "dev": true -- }, -- "which": { -- "version": "1.3.1", -- "dev": true, -- "requires": { -- "isexe": "^2.0.0" -- } -- } -+ "ms": "2.0.0" - } - }, -- "y18n": { -- "version": "4.0.3", -- "dev": true -+ "node_modules/xvfb-maybe/node_modules/ms": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", -+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", -+ "dev": true, -+ "license": "MIT" -+ }, -+ "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" -+ }, -+ "bin": { -+ "which": "bin/which" -+ } -+ }, -+ "node_modules/y18n": { -+ "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" -+ } - }, -- "yaku": { -- "version": "0.16.7" -+ "node_modules/yaku": { -+ "version": "0.16.7", -+ "resolved": "https://registry.npmjs.org/yaku/-/yaku-0.16.7.tgz", -+ "integrity": "sha512-Syu3IB3rZvKvYk7yTiyl1bo/jiEFaaStrgv1V2TIJTqYPStSMQVO8EQjg/z+DRzLq/4LIIharNT3iH1hylEIRw==", -+ "license": "MIT" - }, -- "yallist": { -- "version": "3.1.1" -+ "node_modules/yallist": { -+ "version": "3.1.1", -+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", -+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", -+ "license": "ISC" - }, -- "yargs": { -- "version": "15.4.1", -+ "node_modules/yargs": { -+ "version": "17.7.2", -+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", -+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, -- "requires": { -- "cliui": "^6.0.0", -- "decamelize": "^1.2.0", -- "find-up": "^4.1.0", -- "get-caller-file": "^2.0.1", -+ "license": "MIT", -+ "dependencies": { -+ "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" - }, -- "dependencies": { -- "find-up": { -- "version": "4.1.0", -- "dev": true, -- "requires": { -- "locate-path": "^5.0.0", -- "path-exists": "^4.0.0" -- } -- }, -- "locate-path": { -- "version": "5.0.0", -- "dev": true, -- "requires": { -- "p-locate": "^4.1.0" -- } -- }, -- "p-limit": { -- "version": "2.3.0", -- "dev": true, -- "requires": { -- "p-try": "^2.0.0" -- } -- }, -- "p-locate": { -- "version": "4.1.0", -- "dev": true, -- "requires": { -- "p-limit": "^2.2.0" -- } -- }, -- "p-try": { -- "version": "2.2.0", -- "dev": true -- }, -- "path-exists": { -- "version": "4.0.0", -- "dev": true -- }, -- "yargs-parser": { -- "version": "18.1.3", -- "dev": true, -- "requires": { -- "camelcase": "^5.0.0", -- "decamelize": "^1.2.0" -- } -- } -+ "engines": { -+ "node": ">=12" - } - }, -- "yargs-parser": { -- "version": "20.2.9", -- "dev": true -+ "node_modules/yargs-parser": { -+ "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", -+ "engines": { -+ "node": ">=12" -+ } - }, -- "yauzl": { -+ "node_modules/yauzl": { - "version": "2.10.0", -- "requires": { -+ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", -+ "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", -+ "license": "MIT", -+ "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, -- "yn": { -+ "node_modules/yn": { - "version": "3.1.1", -- "dev": true -+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", -+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", -+ "dev": true, -+ "license": "MIT", -+ "engines": { -+ "node": ">=6" -+ } - }, -- "yocto-queue": { -- "version": "0.1.0", -- "dev": true -+ "node_modules/yocto-queue": { -+ "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": ">=12.20" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } - }, -- "zip-stream": { -+ "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, -- "requires": { -+ "dependencies": { - "archiver-utils": "^3.0.4", - "compress-commons": "^4.1.2", - "readable-stream": "^3.6.0" - }, -+ "engines": { -+ "node": ">= 10" -+ } -+ }, -+ "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": { -- "archiver-utils": { -- "version": "3.0.4", -- "dev": true, -- "peer": true, -- "requires": { -- "glob": "^7.2.3", -- "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": "^3.6.0" -- } -- } -+ "glob": "^7.2.3", -+ "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": "^3.6.0" -+ }, -+ "engines": { -+ "node": ">= 10" - } - } - } diff --git a/pkgs/by-name/an/antares/package.nix b/pkgs/by-name/an/antares/package.nix index be56fc44203a..7065275bf22c 100644 --- a/pkgs/by-name/an/antares/package.nix +++ b/pkgs/by-name/an/antares/package.nix @@ -7,26 +7,31 @@ makeDesktopItem, copyDesktopItems, icoutils, + fetchpatch2, }: buildNpmPackage rec { pname = "antares"; - version = "0.7.29"; + version = "0.7.35"; src = fetchFromGitHub { owner = "antares-sql"; repo = "antares"; tag = "v${version}"; - hash = "sha256-3zgr3Eefx3WDUW9/1NOaneUbFy3GTnJ3tGgivtW1K/g="; + hash = "sha256-A/ievIKXfFGu90aijxhmEWvfg2RqDtd7AtU+iyma3lU="; }; - npmDepsHash = "sha256-WJ5HVVa4rEOsvr52L/OGk+vlxRiKLJTxWmUnpN1FnbY="; + npmDepsHash = "sha256-X2dG75fpeXeU40wb22KAI7tDBybFwWUpKVj0Mlo3xhc="; patches = [ # Since 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 # If it does not build without it, you just need to do a npm update in the antares project and copy the patch - ./npm-lock.patch + # https://github.com/antares-sql/antares/pull/1005 + (fetchpatch2 { + url = "https://github.com/antares-sql/antares/commit/6b2a45d93cf7fefdc92e0d87f390cd21a069b9a4.patch?full_index=1"; + hash = "sha256-2dOGY0K6jMxSLNLDhwy/+ysTRB24XRXSoDu1AVxi4w4="; + }) ]; nodejs = nodejs_22; diff --git a/pkgs/by-name/ap/apko/package.nix b/pkgs/by-name/ap/apko/package.nix index f8065398b1f5..8cc12149f9e8 100644 --- a/pkgs/by-name/ap/apko/package.nix +++ b/pkgs/by-name/ap/apko/package.nix @@ -11,13 +11,13 @@ buildGoModule (finalAttrs: { pname = "apko"; - version = "0.30.34"; + version = "0.30.35"; src = fetchFromGitHub { owner = "chainguard-dev"; repo = "apko"; tag = "v${finalAttrs.version}"; - hash = "sha256-kKYjy3Z5Irel+P2B2Ri6hyPJZ+UuWg7vJypOSN0Rdqw="; + hash = "sha256-2jgIJ1vEaIdfWouQeK/WnHXymcNRwawW9nnsXkamQaQ="; # populate values that require us to use git. By doing this in postFetch we # can delete .git afterwards and maintain better reproducibility of the src. leaveDotGit = true; @@ -29,7 +29,7 @@ buildGoModule (finalAttrs: { find "$out" -name .git -print0 | xargs -0 rm -rf ''; }; - vendorHash = "sha256-+rgkyTmuD3OMil5vO9xDcAvNl19JfvqPz3zotDiGPCU="; + vendorHash = "sha256-KBLthYP5dwtuzfa4f1KARmG5ecStzTwsnX2E95z3S2Q="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/as/astronomer/package.nix b/pkgs/by-name/as/astronomer/package.nix deleted file mode 100644 index 7fae5e1f79c4..000000000000 --- a/pkgs/by-name/as/astronomer/package.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ - lib, - buildGoModule, - fetchFromGitHub, -}: - -buildGoModule rec { - pname = "astronomer"; - version = "1.1.3"; - - src = fetchFromGitHub { - owner = "Ullaakut"; - repo = "astronomer"; - rev = "v${version}"; - hash = "sha256-4hUfJI2BRZl3Trk8F2qLZAyA57kq0oW9/e13atj/BVg="; - }; - - vendorHash = "sha256-EOtpZPIrAVMPIZGnkZoNs7ovaR7Ts3dJsFLXClIoNVI="; - - ldflags = [ - "-s" - "-w" - ]; - - meta = { - description = "Tool to detect illegitimate stars from bot accounts on GitHub projects"; - homepage = "https://github.com/Ullaakut/astronomer"; - changelog = "https://github.com/Ullaakut/astronomer/releases/tag/${src.rev}"; - license = lib.licenses.mit; - maintainers = [ ]; - mainProgram = "astronomer"; - }; -} diff --git a/pkgs/by-name/au/audio-recorder/package.nix b/pkgs/by-name/au/audio-recorder/package.nix deleted file mode 100644 index ae7e4da5e294..000000000000 --- a/pkgs/by-name/au/audio-recorder/package.nix +++ /dev/null @@ -1,71 +0,0 @@ -{ - lib, - stdenv, - fetchurl, - pkg-config, - intltool, - glib, - dbus, - gtk3, - libappindicator-gtk3, - gst_all_1, - librsvg, - wrapGAppsHook3, - pulseaudioSupport ? true, - libpulseaudio, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "audio-recorder"; - version = "3.3.4"; - - src = fetchurl { - name = "audio-recorder-${finalAttrs.version}.tar.gz"; - url = "https://launchpad.net/~audio-recorder/+archive/ubuntu/ppa/+files/audio-recorder_${finalAttrs.version}%7Ejammy.tar.gz"; - hash = "sha256-RQ8zAT98EdVgdHENX0WDDYGvu7XjoB7f2FPv2JYJqug="; - }; - - # https://bugs.launchpad.net/audio-recorder/+bug/1784622 - env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; - - nativeBuildInputs = [ - pkg-config - intltool - wrapGAppsHook3 - ]; - - buildInputs = [ - glib - dbus - gtk3 - librsvg - libappindicator-gtk3 - ] - ++ (with gst_all_1; [ - gstreamer - gst-plugins-base - gst-plugins-good - gst-plugins-bad - gst-plugins-ugly - gst-libav - ]) - ++ lib.optional pulseaudioSupport libpulseaudio; - - meta = { - description = "Audio recorder for GNOME and Unity Desktops"; - mainProgram = "audio-recorder"; - longDescription = '' - This program allows you to record your favourite music or audio to a file. - It can record audio from your system soundcard, microphones, browsers and - webcams. Put simply; if it plays out of your loudspeakers you can record it. - This program has a timer that can start, stop or pause recording on certain - conditions such as audio level, file size and clock time. This recorder can - automatically record your Skype calls. It supports several audio (output) - formats such as OGG audio, Flac, MP3 and WAV. - ''; - homepage = "https://launchpad.net/~audio-recorder"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.msteen ]; - }; -}) diff --git a/pkgs/by-name/au/auto-editor/package.nix b/pkgs/by-name/au/auto-editor/package.nix index 4083ec87315a..3824c3a00534 100644 --- a/pkgs/by-name/au/auto-editor/package.nix +++ b/pkgs/by-name/au/auto-editor/package.nix @@ -1,12 +1,17 @@ { lib, + stdenv, + config, buildNimPackage, fetchFromGitHub, withHEVC ? true, - withWhisper ? false, + withWhisper ? false, # TODO: Investigate linker failure. See PR 476678 + withVpx ? true, + withSvtAv1 ? true, + withCuda ? false, - ffmpeg, + ffmpeg-full, yt-dlp, lame, libopus, @@ -15,6 +20,7 @@ x265, dav1d, svt-av1, + libvpl, whisper-cpp, python3, @@ -23,42 +29,36 @@ buildNimPackage rec { pname = "auto-editor"; - version = "29.4.0"; + version = "29.6.1"; src = fetchFromGitHub { owner = "WyattBlue"; repo = "auto-editor"; tag = version; - hash = "sha256-DzgR/GyVIUq6Dfes6OnTdYO/vyGBPcKSeD2IikF7sIM="; + hash = "sha256-7/ey7nZdy1SnGdW5LjX7dtxyqqvrTuIvtJXMXYVYB6k="; }; lockFile = ./lock.json; buildInputs = [ - ffmpeg + ffmpeg-full lame libopus - libvpx x264 dav1d - svt-av1 ] - ++ lib.optionals withHEVC [ - x265 - ] - ++ lib.optionals withWhisper [ - whisper-cpp - ]; + ++ lib.optionals withHEVC [ x265 ] + ++ lib.optionals withWhisper [ whisper-cpp ] + ++ lib.optionals withVpx [ libvpx ] + ++ lib.optionals withSvtAv1 [ svt-av1 ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ libvpl ]; - nimFlags = [ - "--passc:-Wno-incompatible-pointer-types" - ] - ++ lib.optionals withHEVC [ - "-d:enable_hevc" - ] - ++ lib.optionals withWhisper [ - "-d:enable_whisper" - ]; + nimFlags = + lib.optionals withHEVC [ "-d:enable_hevc" ] + ++ lib.optionals withWhisper [ "-d:enable_whisper" ] + ++ lib.optionals withVpx [ "-d:enable_vpx" ] + ++ lib.optionals withSvtAv1 [ "-d:enable_svtav1" ] + ++ lib.optionals withCuda [ "-d:enable_cuda" ]; postPatch = '' substituteInPlace src/log.nim \ @@ -77,7 +77,7 @@ buildNimPackage rec { checkPhase = '' runHook preCheck - eval "nim r --nimcache:$NIX_BUILD_TOP/nimcache $nimFlags $src/tests/rationals.nim" + eval "nim r --nimcache:$NIX_BUILD_TOP/nimcache $nimFlags $src/tests/unit.nim" substituteInPlace tests/test.py \ --replace-fail '"./auto-editor"' "\"$out/bin/main\"" diff --git a/pkgs/by-name/au/auto-multiple-choice/package.nix b/pkgs/by-name/au/auto-multiple-choice/package.nix index 66255e11feb1..84bb01ed7a04 100644 --- a/pkgs/by-name/au/auto-multiple-choice/package.nix +++ b/pkgs/by-name/au/auto-multiple-choice/package.nix @@ -7,6 +7,7 @@ wrapGAppsHook3, cairo, dblatex, + ghostscript, gnumake, gobject-introspection, graphicsmagick, @@ -23,6 +24,33 @@ pkg-config, poppler, }: +let + perlWithPackages = perl.withPackages ( + p: with p; [ + ArchiveZip + Cairo + CairoGObject + DBDSQLite + DBI + EmailAddress + EmailMIME + EmailSender + EmailSimple + Glib + GlibObjectIntrospection + Gtk3 + HashMerge + LocaleGettext + NetCUPS + OpenOfficeOODoc + PerlMagick + TextCSV + XMLParser + XMLSimple + XMLWriter + ] + ); +in stdenv.mkDerivation (finalAttrs: { pname = "auto-multiple-choice"; version = "1.7.0"; @@ -36,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: { dontConfigure = true; makeFlags = [ - "PERLPATH=${perl}/bin/perl" + "PERLPATH=${perlWithPackages}/bin/perl" # We *need* to set DESTDIR as empty and use absolute paths below, # because the Makefile ignores PREFIX and MODSDIR is required to # be an absolute path to not trigger "portable distribution" check @@ -72,30 +100,16 @@ stdenv.mkDerivation (finalAttrs: { postFixup = '' wrapProgram $out/bin/auto-multiple-choice \ ''${makeWrapperArgs[@]} \ - --prefix PERL5LIB : "${ - with perlPackages; - makeFullPerlPath [ - ArchiveZip - DBDSQLite - Cairo - CairoGObject - DBI - Glib - GlibObjectIntrospection - Gtk3 - HashMerge - LocaleGettext - OpenOfficeOODoc - PerlMagick - TextCSV - XMLParser - XMLSimple - XMLWriter - ] - }:"$out/share/perl5 \ + --prefix PERL5LIB : $out/share/perl5 \ --prefix XDG_DATA_DIRS : "$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ - --prefix PATH : "$out/bin" \ - --set TEXINPUTS ":.:$out/tex/latex" + --prefix PATH : ${ + lib.makeBinPath [ + (placeholder "out") + ghostscript + netpbm + ] + } \ + --set TEXINPUTS ".:$out/tex/latex:" ''; nativeBuildInputs = [ @@ -121,24 +135,8 @@ stdenv.mkDerivation (finalAttrs: { opencv pango poppler - ] - ++ (with perlPackages; [ - perl - ArchiveZip - Cairo - CairoGObject - DBDSQLite - DBI - Glib - GlibObjectIntrospection - Gtk3 - LocaleGettext - PerlMagick - TextCSV - XMLParser - XMLSimple - XMLWriter - ]); + perlWithPackages + ]; passthru = { tlType = "run"; diff --git a/pkgs/by-name/ay/ayugram-desktop/package.nix b/pkgs/by-name/ay/ayugram-desktop/package.nix index 1a10f8224352..38a5f7b4f486 100644 --- a/pkgs/by-name/ay/ayugram-desktop/package.nix +++ b/pkgs/by-name/ay/ayugram-desktop/package.nix @@ -12,13 +12,13 @@ telegram-desktop.override { unwrapped = telegram-desktop.unwrapped.overrideAttrs ( finalAttrs: previousAttrs: { pname = "ayugram-desktop-unwrapped"; - version = "6.2.4"; + version = "6.3.10"; src = fetchFromGitHub { owner = "AyuGram"; repo = "AyuGramDesktop"; tag = "v${finalAttrs.version}"; - hash = "sha256-bFGk8lqPlNlaxbrulYe0+8ayj33frctruce3/TZ+W2c="; + hash = "sha256-kyxnr246bhxHpDUhhEnraDtHZDnF2uU2tdmfIvPnKHo="; fetchSubmodules = true; }; diff --git a/pkgs/by-name/b3/b3sum/package.nix b/pkgs/by-name/b3/b3sum/package.nix index 6d7d5d0730fa..8b079ab90923 100644 --- a/pkgs/by-name/b3/b3sum/package.nix +++ b/pkgs/by-name/b3/b3sum/package.nix @@ -6,14 +6,14 @@ rustPlatform.buildRustPackage rec { pname = "b3sum"; - version = "1.8.2"; + version = "1.8.3"; src = fetchCrate { inherit version pname; - hash = "sha256-/qyBs+t8n5I6uf1dSc3E0yHpdlUz77pvlqV5+r4dRBc="; + hash = "sha256-mU2r5xbYf6A1RibWqhow/637YxybCFMT3UzYcUMjhdg="; }; - cargoHash = "sha256-PKVDfBFWQY95FxJ66vl6E26GEZChNCsA3ST++iieYSM="; + cargoHash = "sha256-w9l8dn4Ahck3NXuN4Ph9qmGoS767/mQRBgO9AT0CH3Y="; meta = { description = "BLAKE3 cryptographic hash function"; diff --git a/pkgs/by-name/ba/bambu-studio/package.nix b/pkgs/by-name/ba/bambu-studio/package.nix index 771141e38266..2430aa67752a 100644 --- a/pkgs/by-name/ba/bambu-studio/package.nix +++ b/pkgs/by-name/ba/bambu-studio/package.nix @@ -57,13 +57,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "bambu-studio"; - version = "02.03.01.51"; + version = "02.04.00.70"; src = fetchFromGitHub { owner = "bambulab"; repo = "BambuStudio"; tag = "v${finalAttrs.version}"; - hash = "sha256-SnWOTFymTVHzYqraMzohOrpM0UuLW+PRfZBqkFASEWs="; + hash = "sha256-BrH8gKbc0y76wbWrQxU+0xMJcYAm4Gi/xmECVf6pGkI="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/be/beeper/package.nix b/pkgs/by-name/be/beeper/package.nix index 5a4f2a4cc8c5..ef2b407dbfbc 100644 --- a/pkgs/by-name/be/beeper/package.nix +++ b/pkgs/by-name/be/beeper/package.nix @@ -9,10 +9,10 @@ }: let pname = "beeper"; - version = "4.2.367"; + version = "4.2.455"; src = fetchurl { url = "https://beeper-desktop.download.beeper.com/builds/Beeper-${version}-x86_64.AppImage"; - hash = "sha256-t2knYAy6G/Xd/dOAvqA+wiTa6K//maHiwjY7Apshjhk="; + hash = "sha256-3FHaPIJb40ta/+sguolz2QQBKkGgd1P3CgyEHHxX5xA="; }; appimageContents = appimageTools.extract { inherit pname version src; diff --git a/pkgs/by-name/br/brave/package.nix b/pkgs/by-name/br/brave/package.nix index a5283cf85ac1..5aedcd29f969 100644 --- a/pkgs/by-name/br/brave/package.nix +++ b/pkgs/by-name/br/brave/package.nix @@ -3,24 +3,24 @@ let pname = "brave"; - version = "1.85.118"; + version = "1.85.120"; allArchives = { aarch64-linux = { url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_arm64.deb"; - hash = "sha256-xn7x6O2JVKu2KlcMXSo7P4oTYfVyC1S4OIemXK82vD0="; + hash = "sha256-Q645SeKK2oBfzVOVwKi+VgjkcKA3hyBCK1uYkey29Zk="; }; x86_64-linux = { url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; - hash = "sha256-I++3Oq+iW4uuccKiSa5FwS652aT+tFQI0D0n4Nq6U1w="; + hash = "sha256-5Sa1dfX3uMUkTi/AKLRuf/lmdPXuyVHPD7eN7EUAiRo="; }; aarch64-darwin = { url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-v${version}-darwin-arm64.zip"; - hash = "sha256-Igh0anjOkf+nemi4hi6kOu49+oXL4cQ0z7bxjyAt5AU="; + hash = "sha256-XNafmhhPIo1McFVHERpefQFDCLQZJFreoReySyUYAkY="; }; x86_64-darwin = { url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-v${version}-darwin-x64.zip"; - hash = "sha256-NxL7IsFhPIthG8kO1wO6lbxqlghixZvnsgTbLfi2OX4="; + hash = "sha256-BqNhfkNMsnbydr+fnHiXhQih2UjpzbjeD+VNrvA3CNU="; }; }; diff --git a/pkgs/by-name/br/bruno-cli/package.nix b/pkgs/by-name/br/bruno-cli/package.nix index 811fb768f17d..af0138114a91 100644 --- a/pkgs/by-name/br/bruno-cli/package.nix +++ b/pkgs/by-name/br/bruno-cli/package.nix @@ -3,6 +3,7 @@ stdenv, clang_20, buildNpmPackage, + nodejs_22, bruno, pkg-config, pango, @@ -21,6 +22,9 @@ buildNpmPackage { # to keep them in sync with easier maintenance inherit (bruno) version src npmDepsHash; + # npm dependency install fails with nodejs_24: https://github.com/NixOS/nixpkgs/issues/474535 + nodejs = nodejs_22; + npmWorkspace = "packages/bruno-cli"; npmFlags = [ "--legacy-peer-deps" ]; @@ -45,6 +49,7 @@ buildNpmPackage { npm run build --workspace=packages/bruno-common npm run build --workspace=packages/bruno-graphql-docs + npm run build --workspace=packages/bruno-schema-types npm run build --workspace=packages/bruno-converters npm run build --workspace=packages/bruno-query npm run build --workspace=packages/bruno-filestore @@ -64,12 +69,12 @@ buildNpmPackage { pushd $out/lib/node_modules/usebruno # packages used by the GUI app, unused by CLI - rm -r packages/bruno-{app,electron,tests,toml,schema,docs} + rm -r packages/bruno-{app,electron,tests,toml,docs} rm node_modules/bruno - rm node_modules/@usebruno/{app,tests,toml,schema} + rm node_modules/@usebruno/{app,tests,toml} # heavy dependencies that seem to be unused - rm -rf node_modules/{@tabler,pdfjs-dist,*redux*,prettier,@types*,*react*,*graphiql*} + rm -rf node_modules/{@tabler,pdfjs-dist,*redux*,prettier,@types*,*react*,*graphiql*,@swagger-api} rm -r node_modules/.bin # unused file types diff --git a/pkgs/by-name/br/bruno/package.nix b/pkgs/by-name/br/bruno/package.nix index 14c1bd52bb54..4c7420b311c2 100644 --- a/pkgs/by-name/br/bruno/package.nix +++ b/pkgs/by-name/br/bruno/package.nix @@ -21,13 +21,13 @@ buildNpmPackage rec { pname = "bruno"; - version = "2.15.1"; + version = "3.0.2"; src = fetchFromGitHub { owner = "usebruno"; repo = "bruno"; tag = "v${version}"; - hash = "sha256-REK3rJ+Svf6bLIfLwizlLa3rIBgnhQHbhzTTe8VPoc4="; + hash = "sha256-lvv1SJuUxNwukg/yi6mhgvVs8M/Eyf2H36NJN+6XKSE="; postFetch = '' ${lib.getExe npm-lockfile-fix} $out/package-lock.json @@ -36,7 +36,7 @@ buildNpmPackage rec { nodejs = nodejs_22; - npmDepsHash = "sha256-CXXXyDaaoAoZhUo1YNP3PUEGzlmIaDnA+JhrCqBY1H4="; + npmDepsHash = "sha256-zb0oP4/L7449z83tpcT6W/6sXS4Urph3ELN9kUC32dA="; npmFlags = [ "--legacy-peer-deps" ]; nativeBuildInputs = [ @@ -102,6 +102,7 @@ buildNpmPackage rec { npm run build --workspace=packages/bruno-common npm run build --workspace=packages/bruno-graphql-docs + npm run build --workspace=packages/bruno-schema-types npm run build --workspace=packages/bruno-converters npm run build --workspace=packages/bruno-app npm run build --workspace=packages/bruno-query @@ -167,6 +168,11 @@ buildNpmPackage rec { makeWrapper ${lib.getExe electron} $out/bin/bruno \ --add-flags $out/opt/bruno/resources/app.asar \ --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}" \ + --prefix LD_LIBRARY_PATH : ${ + lib.makeLibraryPath [ + stdenv.cc.cc.lib + ] + } \ --set-default ELECTRON_IS_DEV 0 \ --inherit-argv0 diff --git a/pkgs/by-name/bu/bulky/package.nix b/pkgs/by-name/bu/bulky/package.nix index 5e835d07462a..370d05326e2b 100644 --- a/pkgs/by-name/bu/bulky/package.nix +++ b/pkgs/by-name/bu/bulky/package.nix @@ -15,13 +15,13 @@ stdenv.mkDerivation rec { pname = "bulky"; - version = "4.0"; + version = "4.2"; src = fetchFromGitHub { owner = "linuxmint"; repo = "bulky"; tag = version; - hash = "sha256-BHMCtvnz3Ua4pa3Pnh2PbxZ9a0vJOJ+Se2/DaPbUqQA="; + hash = "sha256-rUQ4GN8Pj7dXLbQBt99RmFk4rs+mFL/1taFJiTTVC2A="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ca/camunda-modeler/package.nix b/pkgs/by-name/ca/camunda-modeler/package.nix index 00aa7a67da2e..d485a4f3f5ec 100644 --- a/pkgs/by-name/ca/camunda-modeler/package.nix +++ b/pkgs/by-name/ca/camunda-modeler/package.nix @@ -10,11 +10,11 @@ stdenvNoCC.mkDerivation rec { pname = "camunda-modeler"; - version = "5.42.0"; + version = "5.43.0"; src = fetchurl { url = "https://github.com/camunda/camunda-modeler/releases/download/v${version}/camunda-modeler-${version}-linux-x64.tar.gz"; - hash = "sha256-6P3b9qcYOfKzJCsDc5K09fKklu/9jFYwoeLMbC8JR64="; + hash = "sha256-NR1UXnIU0Wf2WeiagqijEXz9qUShFbM1umenFFETOJI="; }; sourceRoot = "camunda-modeler-${version}-linux-x64"; diff --git a/pkgs/by-name/ca/caprine/package.nix b/pkgs/by-name/ca/caprine/package.nix index a59ef46cfc20..ad6b054a84b1 100644 --- a/pkgs/by-name/ca/caprine/package.nix +++ b/pkgs/by-name/ca/caprine/package.nix @@ -11,18 +11,18 @@ buildNpmPackage rec { pname = "caprine"; - version = "2.60.3"; + version = "2.61.0"; src = fetchFromGitHub { owner = "sindresorhus"; repo = "caprine"; rev = "v${version}"; - hash = "sha256-yfCilJ62m7nKe8B+4puwAbNgr2g1P7HaKIhFINdv0/k="; + hash = "sha256-hBGsqOqKMHNy2SNw1kHCQq1lPDd2S36L5pdKgD2O8FA="; }; ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; - npmDepsHash = "sha256-hNOAplCSXrO4NZqDTkmhf0oZVeGRUHr2Y/Qdx2RIV9c="; + npmDepsHash = "sha256-FgOHuMMUX92VHF6hdznoi7bhO/27t6+l038kmpqjctQ="; nativeBuildInputs = [ copyDesktopItems ]; diff --git a/pkgs/by-name/ca/cargo-deny/package.nix b/pkgs/by-name/ca/cargo-deny/package.nix index da9f27c63749..dbfd245e1717 100644 --- a/pkgs/by-name/ca/cargo-deny/package.nix +++ b/pkgs/by-name/ca/cargo-deny/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "cargo-deny"; - version = "0.18.9"; + version = "0.19.0"; src = fetchFromGitHub { owner = "EmbarkStudios"; repo = "cargo-deny"; tag = finalAttrs.version; - hash = "sha256-2ZexBVt3+tnEwxtRuzS6f7BQyu/nvjC098221hadKw8="; + hash = "sha256-kDjRP+UXYzsXTrcsPbomtATzDVTSZqXoRXf6qqCGOZw="; }; - cargoHash = "sha256-2u1DQtvjRfwbCXnX70M7drrMEvNsrVxsbikgrnNOkUE="; + cargoHash = "sha256-Lu1KhQmsQGvzgozFTcv9/hY3ZXOuaxkv0I+QPmAdZBU="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/by-name/ca/cargo-hack/package.nix b/pkgs/by-name/ca/cargo-hack/package.nix index 26b6dbc916a3..68c58c09f016 100644 --- a/pkgs/by-name/ca/cargo-hack/package.nix +++ b/pkgs/by-name/ca/cargo-hack/package.nix @@ -7,14 +7,14 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "cargo-hack"; - version = "0.6.40"; + version = "0.6.41"; src = fetchCrate { inherit (finalAttrs) pname version; - hash = "sha256-j2T4ElD69oMDTBVPSO6d1bjsJjoJieiaG+YNEmQ47aU="; + hash = "sha256-JfYsMlu+eYZvQ5HtAIhJ/y33BNkdj9LvQeSJUVL5F7Y="; }; - cargoHash = "sha256-1S7e/R3XCbNRQg152CqNuqieU+nfLXf5o8/5kC9UpSY="; + cargoHash = "sha256-fC9EUu0j/M2dfpFS5Th2pqveFia+lSEtQdaH6Xv32ww="; # some necessary files are absent in the crate version doCheck = false; diff --git a/pkgs/by-name/ca/catnip-gtk4/package.nix b/pkgs/by-name/ca/catnip-gtk4/package.nix deleted file mode 100644 index a5525d4b9ba0..000000000000 --- a/pkgs/by-name/ca/catnip-gtk4/package.nix +++ /dev/null @@ -1,50 +0,0 @@ -{ - lib, - buildGoModule, - fetchFromGitHub, - pkg-config, - wrapGAppsHook4, - gobject-introspection, - gtk4, - libadwaita, -}: - -buildGoModule { - pname = "catnip-gtk4"; - version = "0-unstable-2023-06-17"; - - src = fetchFromGitHub { - owner = "diamondburned"; - repo = "catnip-gtk4"; - rev = "e635904af952fcee7e9f4b1a3e45ce8519428d9f"; - hash = "sha256-yJNw/pDgvIzcX4H6RoFJBiRwzWQXWF3obUPxYf4ALOY="; - }; - - vendorHash = "sha256-gcr3e5Fm2xCTOoTgl71Dv3rxI6gQbqRz0M1NO7fAZk0="; - - nativeBuildInputs = [ - gobject-introspection - pkg-config - wrapGAppsHook4 - ]; - - buildInputs = [ - gtk4 - libadwaita - ]; - - ldflags = [ - "-s" - "-w" - ]; - - enableParallelBuilding = true; - - meta = { - description = "GTK4 frontend for catnip"; - homepage = "https://github.com/diamondburned/catnip-gtk4"; - license = lib.licenses.gpl3Only; - maintainers = [ ]; - mainProgram = "catnip-gtk4"; - }; -} diff --git a/pkgs/by-name/cd/cdwe/package.nix b/pkgs/by-name/cd/cdwe/package.nix deleted file mode 100644 index ddd3b96cc4ff..000000000000 --- a/pkgs/by-name/cd/cdwe/package.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - lib, - rustPlatform, - fetchFromGitHub, -}: - -rustPlatform.buildRustPackage rec { - pname = "cdwe"; - version = "0.3.0"; - - src = fetchFromGitHub { - owner = "synoet"; - repo = "cdwe"; - rev = version; - hash = "sha256-6NWhx82BXhWhbI18k5gE3vEkw9v5gstE8ICJhtq68rM="; - }; - - cargoHash = "sha256-pZpG98lwvggBU1TBb2JuSNLev5Jx8n5QjY902dJVn0Y="; - - meta = { - description = "Configurable cd wrapper that lets you define your environment per directory"; - homepage = "https://github.com/synoet/cdwe"; - license = lib.licenses.mit; - maintainers = [ ]; - mainProgram = "cdwe"; - }; -} diff --git a/pkgs/by-name/ce/celeste/package.nix b/pkgs/by-name/ce/celeste/package.nix index 911d3f54429a..e3535bf41e09 100644 --- a/pkgs/by-name/ce/celeste/package.nix +++ b/pkgs/by-name/ce/celeste/package.nix @@ -54,7 +54,7 @@ rustPlatform.buildRustPackage rec { --replace-warn 'edition = "2021"' 'edition = "2024"' ''; - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; nativeBuildInputs = [ just diff --git a/pkgs/by-name/cf/cfspeedtest/package.nix b/pkgs/by-name/cf/cfspeedtest/package.nix index 1b6a2c7cea40..f9658022a785 100644 --- a/pkgs/by-name/cf/cfspeedtest/package.nix +++ b/pkgs/by-name/cf/cfspeedtest/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "cfspeedtest"; - version = "2.0.2"; + version = "2.0.3"; src = fetchFromGitHub { owner = "code-inflation"; repo = "cfspeedtest"; tag = "v${finalAttrs.version}"; - hash = "sha256-MWVWYA++gxcKcCvBynVmm+l3qoSb6JKUtGUbRWEGrP8="; + hash = "sha256-KeJ/p9kXfI3OuAyNUx2C6DKpmtL3239uHpWAf4mDr4Q="; }; - cargoHash = "sha256-Oa+k+iBkKFdDcMAxrDdLNWhy2CakbX1G+AMlwGQFBsk="; + cargoHash = "sha256-mXSbbY3nuhEw+QUk6gt71HIh2gKNBO6C0trZbyzbpnM="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/cg/cgns/package.nix b/pkgs/by-name/cg/cgns/package.nix index 770a259b49cc..f027bd13fe79 100644 --- a/pkgs/by-name/cg/cgns/package.nix +++ b/pkgs/by-name/cg/cgns/package.nix @@ -2,6 +2,7 @@ lib, stdenv, fetchFromGitHub, + fetchpatch2, cmake, gfortran, tk, @@ -22,6 +23,14 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-0cZtq8nVAHAubHD6IDofnh8N7xiNHQkbhXR5OpdhPQU="; }; + patches = [ + # Fixes crash for test_particlef on LoongArch64 + (fetchpatch2 { + url = "https://github.com/CGNS/CGNS/commit/0ea14abf6da44f13ca8a01117ad7af8eb405394c.patch?full_index=1"; + hash = "sha256-dtwTD8YqRm0NCXTDPRHmaPLTU17ZLzOyVii1aoGYge0="; + }) + ]; + postPatch = '' substituteInPlace src/cgnstools/tkogl/tkogl.c \ --replace-fail "" "" diff --git a/pkgs/by-name/ch/chiaki-ng/package.nix b/pkgs/by-name/ch/chiaki-ng/package.nix index 8c38f73641da..ae7a059f31f6 100644 --- a/pkgs/by-name/ch/chiaki-ng/package.nix +++ b/pkgs/by-name/ch/chiaki-ng/package.nix @@ -90,6 +90,8 @@ stdenv.mkDerivation (finalAttrs: { xxHash ]; + env.NIX_CFLAGS_COMPILE = "-std=gnu17"; + cmakeFlags = [ "-Wno-dev" (lib.cmakeFeature "CHIAKI_USE_SYSTEM_CURL" "true") diff --git a/pkgs/by-name/ci/cinnamon-desktop/package.nix b/pkgs/by-name/ci/cinnamon-desktop/package.nix index 2a7f908e50d5..56fafa564c12 100644 --- a/pkgs/by-name/ci/cinnamon-desktop/package.nix +++ b/pkgs/by-name/ci/cinnamon-desktop/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation rec { pname = "cinnamon-desktop"; - version = "6.6.1"; + version = "6.6.2"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-desktop"; tag = version; - hash = "sha256-vBRaUXsPAPOpMEs2pl6AaaKIMeeXB0UdCb1hzYd43KY="; + hash = "sha256-AcUJ9anKuvUAJKaQVHbkYShmrlSHG35gV/NIkPgJojk="; }; outputs = [ diff --git a/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix b/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix index 19b3df7d6a0a..a97f7d879630 100644 --- a/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix +++ b/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix @@ -30,13 +30,13 @@ stdenv.mkDerivation rec { pname = "cinnamon-settings-daemon"; - version = "6.6.1"; + version = "6.6.2"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-settings-daemon"; tag = version; - hash = "sha256-WK7MU63M3B0C4Dsik6j4cDyBTZlkF6pofZi2aJcH9eI="; + hash = "sha256-s8LKta03ei4MIQICY5t4Kh2oDEN9egstX8IQ56FXq7s="; }; patches = [ diff --git a/pkgs/by-name/ci/cinnamon-translations/package.nix b/pkgs/by-name/ci/cinnamon-translations/package.nix index 1aab42c62266..cdf4d74b03df 100644 --- a/pkgs/by-name/ci/cinnamon-translations/package.nix +++ b/pkgs/by-name/ci/cinnamon-translations/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "cinnamon-translations"; - version = "6.6.1"; + version = "6.6.2"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon-translations"; tag = version; - hash = "sha256-6y1zHKO/qpkAL5fs6QUjNJki16X+bxW/175Sz1PUPQw="; + hash = "sha256-DHwW9YrQFNtTvY4/QMBVLQ2idyuknacZvoMIMiHFsU4="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ci/cinnamon/package.nix b/pkgs/by-name/ci/cinnamon/package.nix index 6d2805ccca48..058fb39eff7f 100644 --- a/pkgs/by-name/ci/cinnamon/package.nix +++ b/pkgs/by-name/ci/cinnamon/package.nix @@ -74,13 +74,13 @@ let in stdenv.mkDerivation rec { pname = "cinnamon"; - version = "6.6.3"; + version = "6.6.4"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon"; tag = version; - hash = "sha256-BPHHvcE0jmrOo5W4Egv1Hir8t4CSPJGH3oqv1VJ4AUQ="; + hash = "sha256-K1Saz0WY5Qwb7YF8fcH0yWNK071dFwzxuPZP2MuSvrs="; }; patches = [ diff --git a/pkgs/by-name/ck/ckan/package.nix b/pkgs/by-name/ck/ckan/package.nix index e651321a8f6f..571d09ae2d3d 100644 --- a/pkgs/by-name/ck/ckan/package.nix +++ b/pkgs/by-name/ck/ckan/package.nix @@ -14,11 +14,11 @@ stdenv.mkDerivation rec { pname = "ckan"; - version = "1.36.0"; + version = "1.36.2"; src = fetchurl { url = "https://github.com/KSP-CKAN/CKAN/releases/download/v${version}/ckan.exe"; - hash = "sha256-Tw8s86FtBz/92uq2imFZm4n88NCCpePTpydoAoYsE3U="; + hash = "sha256-EZSf+n6QUEZW2Bjl2ac/6e+Jo+PlxWd1Z1PKHvgC/Ko="; }; icon = fetchurl { diff --git a/pkgs/by-name/cl/claude-code/package-lock.json b/pkgs/by-name/cl/claude-code/package-lock.json index 3d80616af26f..d2670c5023ad 100644 --- a/pkgs/by-name/cl/claude-code/package-lock.json +++ b/pkgs/by-name/cl/claude-code/package-lock.json @@ -1,12 +1,12 @@ { "name": "@anthropic-ai/claude-code", - "version": "2.1.1", + "version": "2.1.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@anthropic-ai/claude-code", - "version": "2.1.1", + "version": "2.1.2", "license": "SEE LICENSE IN README.md", "bin": { "claude": "cli.js" diff --git a/pkgs/by-name/cl/claude-code/package.nix b/pkgs/by-name/cl/claude-code/package.nix index ccd52a6117e1..79bf6ba1cac6 100644 --- a/pkgs/by-name/cl/claude-code/package.nix +++ b/pkgs/by-name/cl/claude-code/package.nix @@ -11,14 +11,14 @@ }: buildNpmPackage (finalAttrs: { pname = "claude-code"; - version = "2.1.1"; + version = "2.1.2"; src = fetchzip { url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${finalAttrs.version}.tgz"; - hash = "sha256-GZIh20GyhsXaAm13veg2WErT4rF9a1x8Dzr9q5Al0io="; + hash = "sha256-PpNXyZ3xoZ/4lCvtErltkdsL/1hDRyiicblvhykgROw="; }; - npmDepsHash = "sha256-F9FaDezEb8kP4Oq4nQNGVspbubk6AZ5caOEXsd8x5Us="; + npmDepsHash = "sha256-KdVaAYXCy+oMN9b1lLeIRiGp/Zb29T4b3pvDp8O1v/M="; postPatch = '' cp ${./package-lock.json} package-lock.json diff --git a/pkgs/by-name/cl/clima/package.nix b/pkgs/by-name/cl/clima/package.nix deleted file mode 100644 index f6144bc345da..000000000000 --- a/pkgs/by-name/cl/clima/package.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - lib, - rustPlatform, - fetchFromGitHub, -}: - -rustPlatform.buildRustPackage rec { - pname = "clima"; - version = "1.1.0"; - - src = fetchFromGitHub { - owner = "Canop"; - repo = "clima"; - rev = "v${version}"; - hash = "sha256-CRnAxhkuCTyHR4uQofA51Dm3+YKqm3iwBkFNkbLTv1A="; - }; - - cargoHash = "sha256-3BNDo5ksra1d8X6yQZYSlS2CSiZfkuTHkQtIC2ckbKE="; - - meta = { - description = "Minimal viewer for Termimad"; - homepage = "https://github.com/Canop/clima"; - changelog = "https://github.com/Canop/clima/releases/tag/${src.rev}"; - license = lib.licenses.mit; - maintainers = [ ]; - mainProgram = "clima"; - }; -} diff --git a/pkgs/by-name/cn/cnsprcy/package.nix b/pkgs/by-name/cn/cnsprcy/package.nix index 662df4a1f5ca..4e4f8778bef4 100644 --- a/pkgs/by-name/cn/cnsprcy/package.nix +++ b/pkgs/by-name/cn/cnsprcy/package.nix @@ -22,7 +22,7 @@ rustPlatform.buildRustPackage (finalAttrs: { passthru.updateScript = ./update.sh; - RUSTC_BOOTSTRAP = true; + env.RUSTC_BOOTSTRAP = true; buildInputs = [ sqlite ]; meta = { diff --git a/pkgs/by-name/co/coc-pyright/package.nix b/pkgs/by-name/co/coc-pyright/package.nix index 23eb4be6fdc4..4ed1a55251c2 100644 --- a/pkgs/by-name/co/coc-pyright/package.nix +++ b/pkgs/by-name/co/coc-pyright/package.nix @@ -7,17 +7,17 @@ buildNpmPackage { pname = "coc-pyright"; - version = "0-unstable-2026-01-01"; + version = "0-unstable-2026-01-04"; src = fetchFromGitHub { owner = "fannheyward"; repo = "coc-pyright"; # No tagged releases, this commit corresponds to the latest release of the package. - rev = "33184c03e543b29227df989cf893752bae5f3ea2"; - hash = "sha256-fj6iSQHprf/lkDGI5aFsogMAPv6a3Ghp9uDqnTM3/MY="; + rev = "767eebcb9f9b828412b9ec02e80558f3e748798a"; + hash = "sha256-PNCh6EiXQxIYgU6hOG1/ialhP0p2uGTQAgipiDpgI6s="; }; - npmDepsHash = "sha256-0KKEPl0H0HxNCw7GTaxE+voQhS5J1TSpd4JjyWW62UI="; + npmDepsHash = "sha256-D5e17ubJ8leB5zoNO0DbZ1rUf/JpSJlezOldA3pvtFo="; passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; diff --git a/pkgs/by-name/co/coloquinte/package.nix b/pkgs/by-name/co/coloquinte/package.nix index 8a326beca66b..f711e84a80bb 100644 --- a/pkgs/by-name/co/coloquinte/package.nix +++ b/pkgs/by-name/co/coloquinte/package.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "coloquinte"; - version = "0.3.1"; + version = "0.4.3"; src = fetchFromGitHub { owner = "coloquinte"; repo = "PlaceRoute"; rev = finalAttrs.version; - hash = "sha256-bPDXaNZCNBM0qiu+46cL/zH/41lwqHPqfqTzJaERgVQ="; + hash = "sha256-BQg2rVYe1wJOX7YnvgDVpmN6hwBJZKH0fxm+8HC8bvY="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/co/cook-cli/package.nix b/pkgs/by-name/co/cook-cli/package.nix index bfba65be568b..180a539a1a34 100644 --- a/pkgs/by-name/co/cook-cli/package.nix +++ b/pkgs/by-name/co/cook-cli/package.nix @@ -10,16 +10,16 @@ }: rustPlatform.buildRustPackage rec { pname = "cook-cli"; - version = "0.19.2"; + version = "0.19.3"; src = fetchFromGitHub { owner = "cooklang"; repo = "cookcli"; rev = "v${version}"; - hash = "sha256-kqfbqyShQQSnYOWu6zk/0srb3AXRttWDCmQWhSsoB5I="; + hash = "sha256-qfsyEHQnOfJYqgZi5QxiGJX1pbXx7oR7qzBEwTYH7oY="; }; - cargoHash = "sha256-vmIMh7no/3UeFANUdvlRUfEzY3XpwpLW4GIb3URG8Z0="; + cargoHash = "sha256-xQTMxas5gO17DvNXvxdJ03Rhd4kaJPBf+GikbCE1fWI="; # Build without the self-updating feature buildNoDefaultFeatures = true; diff --git a/pkgs/by-name/co/copilot-language-server/package.nix b/pkgs/by-name/co/copilot-language-server/package.nix index b9fcc520ddc5..37d6a1241ae7 100644 --- a/pkgs/by-name/co/copilot-language-server/package.nix +++ b/pkgs/by-name/co/copilot-language-server/package.nix @@ -10,11 +10,11 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "copilot-language-server"; - version = "1.406.0"; + version = "1.408.0"; src = fetchzip { url = "https://github.com/github/copilot-language-server-release/releases/download/${finalAttrs.version}/copilot-language-server-js-${finalAttrs.version}.zip"; - hash = "sha256-GGTERNSfg/XgM+5URVin05ocNe3JuH6+8JB7hBOqPrE="; + hash = "sha256-sO6ea8SV3/7V0wgotEp7eLs5BUjQlFxBgOdWF1aoHuY="; stripRoot = false; }; diff --git a/pkgs/by-name/co/coroot/package.nix b/pkgs/by-name/co/coroot/package.nix index 8c5e041b53f6..2b1cb397ea57 100644 --- a/pkgs/by-name/co/coroot/package.nix +++ b/pkgs/by-name/co/coroot/package.nix @@ -11,13 +11,13 @@ buildGoModule rec { pname = "coroot"; - version = "1.17.6"; + version = "1.17.7"; src = fetchFromGitHub { owner = "coroot"; repo = "coroot"; rev = "v${version}"; - hash = "sha256-MeHRWrRGvp5oOSiMXtXNMZtKA6Q2577ty47HOxtBGJk="; + hash = "sha256-rfAJIRisLKkS6SuVJFLWjVnTAqbP+axuk3ECJ5n/7ek="; }; vendorHash = "sha256-DCdrE8UYkuUN+rUuxVSGbAnAeLivZ2Xp8xjM+56ZF+A="; diff --git a/pkgs/by-name/ct/ctranslate2/package.nix b/pkgs/by-name/ct/ctranslate2/package.nix index 5f0e06f3690f..22e004a969dd 100644 --- a/pkgs/by-name/ct/ctranslate2/package.nix +++ b/pkgs/by-name/ct/ctranslate2/package.nix @@ -28,14 +28,14 @@ let in stdenv'.mkDerivation (finalAttrs: { pname = "ctranslate2"; - version = "4.6.2"; + version = "4.6.3"; src = fetchFromGitHub { owner = "OpenNMT"; repo = "CTranslate2"; tag = "v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-AUi/MODxCSVuJhFjlhbMUyrGnK0X28B2+uTIHIg7oMg="; + hash = "sha256-J9h4G+4jv02/gbpHd/THLAxxII/hlmsFuaJUTU8TMgQ="; }; # Fix CMake 4 compatibility diff --git a/pkgs/by-name/db/dbeaver-bin/package.nix b/pkgs/by-name/db/dbeaver-bin/package.nix index db70f7bb9b9e..52ec029bcc38 100644 --- a/pkgs/by-name/db/dbeaver-bin/package.nix +++ b/pkgs/by-name/db/dbeaver-bin/package.nix @@ -19,7 +19,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "dbeaver-bin"; - version = "25.3.1"; + version = "25.3.2"; src = let @@ -32,10 +32,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { aarch64-darwin = "macos-aarch64.dmg"; }; hash = selectSystem { - x86_64-linux = "sha256-+9bKKfLFR+9iBv/Sgwbd/gVpUa2c4uvkZGzx61x5bJ8="; - aarch64-linux = "sha256-sfrytO39RnqODECo0CPj2tusvZBIo5I9KuRqzoLbE0M="; - x86_64-darwin = "sha256-74EMwaG2xmH2gEyhcwqZKgVzNOup81DG8T8DmELN53g="; - aarch64-darwin = "sha256-cJ9hS/jQySoGbXd0yLmBNlVak8OOnMW2ToXojnx9Th4="; + x86_64-linux = "sha256-kOlQLHrE5QmrmtzyX9fDJ0tCZ21YPAO+jnR0B+kXSrA="; + aarch64-linux = "sha256-+GegQSZIUMqWsQJBVoC1xqEN9rQAXPh0ApKl2lDPpUA="; + x86_64-darwin = "sha256-eimRS96Mpej3BUU5O1XPS/oze0mGw3+4QV2DrRQy68U="; + aarch64-darwin = "sha256-S7sdXGfL16Q5hIXmkM22dbmfZeSHKEv3MthoQOYO6n0="; }; in fetchurl { diff --git a/pkgs/by-name/de/deark/package.nix b/pkgs/by-name/de/deark/package.nix index 45d82df96be5..c70eb9a2d3b0 100644 --- a/pkgs/by-name/de/deark/package.nix +++ b/pkgs/by-name/de/deark/package.nix @@ -7,13 +7,13 @@ }: stdenv.mkDerivation rec { pname = "deark"; - version = "1.7.1"; + version = "1.7.2"; src = fetchFromGitHub { owner = "jsummers"; repo = "deark"; tag = "v${version}"; - hash = "sha256-EnolN4uSHDm1sIkbwCmZUe70DdHyXP3Si4QwGaMtN0A="; + hash = "sha256-FA0O/yJoFByOPEb1UcRWARr2z7CdjWHKa4s8Q4Sl5Zo="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/de/dependabot-cli/package.nix b/pkgs/by-name/de/dependabot-cli/package.nix index 6991ffd251f2..cf5419c434aa 100644 --- a/pkgs/by-name/de/dependabot-cli/package.nix +++ b/pkgs/by-name/de/dependabot-cli/package.nix @@ -12,20 +12,20 @@ }: let pname = "dependabot-cli"; - version = "1.80.0"; + version = "1.81.0"; # `tag` is what `dependabot` uses to find the relevant docker images. tag = "nixpkgs-dependabot-cli-${version}"; # Get these hashes from # nix run nixpkgs#nix-prefetch-docker -- --image-name ghcr.io/github/dependabot-update-job-proxy/dependabot-update-job-proxy --image-tag latest --final-image-name dependabot-update-job-proxy --final-image-tag ${tag} - updateJobProxy.imageDigest = "sha256:3a7868b09318bef45224e475c3a018deba34f65f451f3ddd5b852b440c65fb83"; - updateJobProxy.hash = "sha256-PVFo/PT7l3iR5FTt+jDrGVupc6zPoDpiw9Pxqp3yprU="; + updateJobProxy.imageDigest = "sha256:d26fd269228ce287141aef81ef54e23a0001d2c6c6a3e16db286488c7d769c8c"; + updateJobProxy.hash = "sha256-6mmiI2AjKxopeC5SfTa9XOR4hatxEu6M/28wycRnz2w="; # Get these hashes from # nix run nixpkgs#nix-prefetch-docker -- --image-name ghcr.io/dependabot/dependabot-updater-github-actions --image-tag latest --final-image-name dependabot-updater-github-actions --final-image-tag ${tag} - updaterGitHubActions.imageDigest = "sha256:a791d0ef463a059dc371ef62c6d1ac341a7e1197ed871a0a6451371a8710cd0e"; - updaterGitHubActions.hash = "sha256-uNqif7HesnXeiGOrc4sC2fgSAHNFJwVwrA3iIv8fVYc="; + updaterGitHubActions.imageDigest = "sha256:5964979027fe1d6fc358e89774074bfe34fa89b2b53ce7d45b44b4ebf71b7953"; + updaterGitHubActions.hash = "sha256-dmMq/T7DLomvzPtOGIBQnrv+k5/NpfxbcXFxxo5ij6o="; in buildGoModule { inherit pname version; @@ -34,7 +34,7 @@ buildGoModule { owner = "dependabot"; repo = "cli"; rev = "v${version}"; - hash = "sha256-5SD4VIa11r2P9YbURby6Sgi58lv03UB9X5UDOZxjVLQ="; + hash = "sha256-9//TW+56UM/5J6psJWcS6lJqyKwQUEOWftTOJxEaCcQ="; }; vendorHash = "sha256-dD48OKpuGAJAro7qV4tqpf/uENV2X1VQ2kUvAuJLXc0="; diff --git a/pkgs/by-name/do/docker-credential-helpers/package.nix b/pkgs/by-name/do/docker-credential-helpers/package.nix index ccbd8eb99099..a8c135d0e815 100644 --- a/pkgs/by-name/do/docker-credential-helpers/package.nix +++ b/pkgs/by-name/do/docker-credential-helpers/package.nix @@ -11,13 +11,13 @@ buildGoModule rec { pname = "docker-credential-helpers"; - version = "0.9.4"; + version = "0.9.5"; src = fetchFromGitHub { owner = "docker"; repo = "docker-credential-helpers"; rev = "v${version}"; - sha256 = "sha256-cDpo3hw0yP9QnFvlGUIpjfMzni57KNkY+S+SIYOKBKQ="; + sha256 = "sha256-iZETkZK7gY5dQOT4AN341wfzeaol9HT4kr/G4o2oWzw="; }; vendorHash = null; diff --git a/pkgs/by-name/du/dust/package.nix b/pkgs/by-name/du/dust/package.nix index 537c4af17314..6c61fda99e86 100644 --- a/pkgs/by-name/du/dust/package.nix +++ b/pkgs/by-name/du/dust/package.nix @@ -12,13 +12,13 @@ rustPlatform.buildRustPackage (finalAttrs: { # Since then, `dust` has been freed up, allowing this package to take that attribute. # However in order for tools like `nix-env` to detect package updates, keep `du-dust` for pname. pname = "du-dust"; - version = "1.2.3"; + version = "1.2.4"; src = fetchFromGitHub { owner = "bootandy"; repo = "dust"; tag = "v${finalAttrs.version}"; - hash = "sha256-AB7NTiH9Q2SNIxFXsVTPHFs+DDVRn3egk7rZKgtYs0c="; + hash = "sha256-80UcDIXnRvpmIcpDGwrMo9KGgPVafuUOIBIozDHctTo="; # Remove unicode file names which leads to different checksums on HFS+ # vs. other filesystems because of unicode normalisation. postFetch = '' @@ -26,7 +26,7 @@ rustPlatform.buildRustPackage (finalAttrs: { ''; }; - cargoHash = "sha256-TE+VkMDcfTMSyclyRf1HiNF7Q+qgIVI5x/f8Cou/4I4="; + cargoHash = "sha256-dXlyoBYsgnyKvoNh60uR1itDB/fqzIQtZ1R/gv28CMY="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/ew/eww/package.nix b/pkgs/by-name/ew/eww/package.nix index 9f8739ea741f..8656401e6a45 100644 --- a/pkgs/by-name/ew/eww/package.nix +++ b/pkgs/by-name/ew/eww/package.nix @@ -47,7 +47,7 @@ rustPlatform.buildRustPackage rec { cargoTestFlags = cargoBuildFlags; # requires unstable rust features - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' installShellCompletion --cmd eww \ diff --git a/pkgs/by-name/fe/ferron/package.nix b/pkgs/by-name/fe/ferron/package.nix index 9d70a767381c..4e383d6b7e8c 100644 --- a/pkgs/by-name/fe/ferron/package.nix +++ b/pkgs/by-name/fe/ferron/package.nix @@ -10,13 +10,13 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "ferron"; - version = "2.2.1"; + version = "2.3.2"; src = fetchFromGitHub { owner = "ferronweb"; repo = "ferron"; tag = finalAttrs.version; - hash = "sha256-+Esbsr+pqRSRd3M7mFhNl+KVcz3wO5YlZrna8mYsV80="; + hash = "sha256-va9OUI2jQiJ3K/Cq3Wrh7RmMST3dBJLB5REcqp7WRP0="; }; # ../../ is cargoDepsCopy, and obviously does not contain monoio's README.md @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage (finalAttrs: { --replace-fail '#![doc = include_str!("../../README.md")]' "" ''; - cargoHash = "sha256-/F1CqzOKscT/rOsJaY+PwZPMBDxSEoI+zN/GsH5P37k="; + cargoHash = "sha256-cOkZ8WVcgfIrwEBAGN/U3qp9VZl5S78Bmrpe4nxn994="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/by-name/fi/firefly-iii-data-importer/package.nix b/pkgs/by-name/fi/firefly-iii-data-importer/package.nix index 8ad2f83af519..d7e651d17baf 100644 --- a/pkgs/by-name/fi/firefly-iii-data-importer/package.nix +++ b/pkgs/by-name/fi/firefly-iii-data-importer/package.nix @@ -13,13 +13,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "firefly-iii-data-importer"; - version = "1.9.1"; + version = "2.0.2"; src = fetchFromGitHub { owner = "firefly-iii"; repo = "data-importer"; tag = "v${finalAttrs.version}"; - hash = "sha256-AjpzJfer1v7+FLIGEcBJrMxUlda5MwV2ThJuV5MNIxQ="; + hash = "sha256-+oc6FJwlixJ6PNQmZoZxUveR3h+zRopptMYm6ef9r/I="; }; buildInputs = [ php84 ]; @@ -38,12 +38,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { composerStrictValidation = true; strictDeps = true; - vendorHash = "sha256-7nhoRnKcOnnBt0YxaMEXYHPqDjaCltDnSiCnMDCEq5M="; + vendorHash = "sha256-y8tGv5dgGHV2moBgYKSvBoc0SfHvt7HbSrctoAdMQGE="; npmDeps = fetchNpmDeps { inherit (finalAttrs) src; name = "${finalAttrs.pname}-npm-deps"; - hash = "sha256-as11uXE3qBGz7HIkTEeFLznwevcS+yChETo4ElyRVl8="; + hash = "sha256-pslV+UCFblp3gObCh+xDFNvYb/x3Eqz+Z9r+rC6gwXY="; }; composerRepository = php84.mkComposerRepository { diff --git a/pkgs/by-name/fl/fleet/package.nix b/pkgs/by-name/fl/fleet/package.nix index 2a002ddcb349..1b3feb13c58c 100644 --- a/pkgs/by-name/fl/fleet/package.nix +++ b/pkgs/by-name/fl/fleet/package.nix @@ -1,20 +1,59 @@ { lib, fetchFromGitHub, + stdenvNoCC, + yarnConfigHook, + yarnBuildHook, + nodejs_24, + fetchYarnDeps, buildGoModule, + go-bindata, versionCheckHook, }: - -buildGoModule (finalAttrs: { +let pname = "fleet"; - version = "4.78.0"; - + version = "4.78.1"; src = fetchFromGitHub { owner = "fleetdm"; repo = "fleet"; - tag = "fleet-v${finalAttrs.version}"; - hash = "sha256-iUgOBF3vPfr3VCfUc+pASith7R6TA29AuWKCJfbHbQw="; + tag = "fleet-v${version}"; + hash = "sha256-3F9vzY1JAw2DMzUhMl7j9I8RGjVXulQH2JcYCFuAwDY="; }; + + frontend = stdenvNoCC.mkDerivation { + pname = "${pname}-frontend"; + inherit version src; + + nativeBuildInputs = [ + yarnConfigHook + yarnBuildHook + nodejs_24 + ]; + + yarnOfflineCache = fetchYarnDeps { + yarnLock = src + "/yarn.lock"; + hash = "sha256-cCf0Q6g+VJaTCOZ12/7z8gcDf3+YT2LBTCJb39InJVw="; + }; + + NODE_ENV = "production"; + yarnBuildScript = "webpack"; + + installPhase = '' + runHook preInstall + + mkdir -p $out/assets + cp -r assets/* $out/assets/ + + mkdir -p $out/frontend/templates + cp frontend/templates/react.tmpl $out/frontend/templates/react.tmpl + + runHook postInstall + ''; + }; +in +buildGoModule (finalAttrs: { + inherit pname version src; + vendorHash = "sha256-EwPbZLcqJV5J7ieoQwAJLIn4wwMlwZoTtWaXgvY3pR0="; subPackages = [ @@ -26,12 +65,29 @@ buildGoModule (finalAttrs: { "-X github.com/fleetdm/fleet/v4/server/version.version=${finalAttrs.version}" ]; + nativeBuildInputs = [ go-bindata ]; + + preBuild = '' + cp -r ${frontend}/assets/* assets + cp -r ${frontend}/frontend/templates/react.tmpl frontend/templates/react.tmpl + + go-bindata -pkg=bindata -tags full \ + -o=server/bindata/generated.go \ + frontend/templates/ assets/... server/mail/templates + ''; + + tags = [ "full" ]; + doInstallCheck = true; versionCheckProgramArg = "version"; nativeInstallCheckInputs = [ versionCheckHook ]; + passthru = { + inherit frontend; + }; + meta = { homepage = "https://github.com/fleetdm/fleet"; changelog = "https://github.com/fleetdm/fleet/releases/tag/fleet-v${finalAttrs.version}"; @@ -40,6 +96,7 @@ buildGoModule (finalAttrs: { maintainers = with lib.maintainers; [ asauzeau lesuisse + bddvlpr ]; mainProgram = "fleet"; }; diff --git a/pkgs/by-name/fl/flint/package.nix b/pkgs/by-name/fl/flint/package.nix index a49d3165cf54..93d0a17f1550 100644 --- a/pkgs/by-name/fl/flint/package.nix +++ b/pkgs/by-name/fl/flint/package.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchurl, - fetchpatch, windows, autoconf, automake, @@ -26,11 +25,11 @@ assert stdenv.mkDerivation (finalAttrs: { pname = "flint"; - version = "3.3.1"; + version = "3.4.0"; src = fetchurl { url = "https://flintlib.org/download/flint-${finalAttrs.version}.tar.gz"; - hash = "sha256-ZNcOUTB2z6lx4EELWMHaXTURKRPppWtE4saBtFnT6vs="; + hash = "sha256-lJdnmATerZJuOv/rjUxYc50cdoTWDCwSgnVQ0o5FSjM="; }; patches = [ diff --git a/pkgs/by-name/fl/flow-control/package.nix b/pkgs/by-name/fl/flow-control/package.nix index 838dd3d62847..159ad3f3a4ca 100644 --- a/pkgs/by-name/fl/flow-control/package.nix +++ b/pkgs/by-name/fl/flow-control/package.nix @@ -6,11 +6,6 @@ callPackage, }: -let - zig_hook = zig_0_15.hook.overrideAttrs { - zig_default_flags = "-Dcpu=baseline -Doptimize=ReleaseSafe --color off"; - }; -in stdenv.mkDerivation (finalAttrs: { pname = "flow-control"; version = "0.6.0"; @@ -29,12 +24,16 @@ stdenv.mkDerivation (finalAttrs: { } $ZIG_GLOBAL_CACHE_DIR/p ''; - nativeBuildInputs = [ - zig_hook - ]; + nativeBuildInputs = [ zig_0_15 ]; passthru.updateScript = ./update.sh; + dontSetZigDefaultFlags = true; + zigBuildFlags = [ + "-Dcpu=baseline" + "-Doptimize=ReleaseSafe" + ]; + env.VERSION = finalAttrs.version; meta = { diff --git a/pkgs/by-name/fl/flying-carpet/package.nix b/pkgs/by-name/fl/flying-carpet/package.nix index 6cfb0e200387..4517e303918f 100644 --- a/pkgs/by-name/fl/flying-carpet/package.nix +++ b/pkgs/by-name/fl/flying-carpet/package.nix @@ -19,16 +19,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "flying-carpet"; - version = "9.0.9"; + version = "9.0.10"; src = fetchFromGitHub { owner = "spieglt"; repo = "FlyingCarpet"; tag = "v${finalAttrs.version}"; - hash = "sha256-XwhK0/eK8KxVf4aZUY2qgc6IMPnixxdwwrm3dl5Sfmk="; + hash = "sha256-7yGU4HCuP8/6UC1J6fNA5CpppJGGhS/ywThXRToDTqo="; }; - cargoHash = "sha256-BtL6tAKIaj7wtJ9VTRbR3Kx8mGi56h9oBG63suCl1OA="; + cargoHash = "sha256-/Z+0hdQ1H9R7FMLunGT5WgQKFY0b0b6gzrR2CNMe2II="; nativeBuildInputs = [ cargo-tauri.hook diff --git a/pkgs/by-name/fo/forgejo/generic.nix b/pkgs/by-name/fo/forgejo/generic.nix index a2978255d517..f3eff48d9700 100644 --- a/pkgs/by-name/fo/forgejo/generic.nix +++ b/pkgs/by-name/fo/forgejo/generic.nix @@ -114,6 +114,9 @@ buildGoModule rec { getGoDirs() { make show-backend-tests } + + # TestRunHookPrePostReceive (cmd/hook_test.go) needs .git to pass + git init ''; checkFlags = diff --git a/pkgs/by-name/fo/forgejo/lts.nix b/pkgs/by-name/fo/forgejo/lts.nix index fed399a9e8f6..7b6b3636237e 100644 --- a/pkgs/by-name/fo/forgejo/lts.nix +++ b/pkgs/by-name/fo/forgejo/lts.nix @@ -1,6 +1,6 @@ import ./generic.nix { - version = "11.0.8"; - hash = "sha256-KwVk4kRvrPQWsDWxX5L9pKjC+VwywLKKd2oYH+vlg74="; + version = "11.0.9"; + hash = "sha256-1jp0FT/T+j1CAPc99lTRSUd4R4YhgLMjZr4k3jW6ho8="; npmDepsHash = "sha256-Qs1aZxgjlsjdxfBpa4pOrwEfDfb/96L49uJd29Ysn/I="; vendorHash = "sha256-TVp4WxrGBlKVaPIbsj4EP/3pt5iseXLY7xIVum71ZXU="; lts = true; diff --git a/pkgs/by-name/fo/forgejo/package.nix b/pkgs/by-name/fo/forgejo/package.nix index 1caa89c2d2e7..0a57dd155d85 100644 --- a/pkgs/by-name/fo/forgejo/package.nix +++ b/pkgs/by-name/fo/forgejo/package.nix @@ -1,8 +1,8 @@ import ./generic.nix { - version = "13.0.3"; - hash = "sha256-ViqwTEVZkccNx5Pt+lrWvAqzD5RRTzwfBhUTfWyDhtE="; - npmDepsHash = "sha256-7WjcMsKPtKUWJfDrJc65ZXq2tjK8+8DnqwINj+0XyiQ="; - vendorHash = "sha256-gHdggzCJlYvs8JXs4CJ/AyqYMPCC2o4uRwDiem3rNFM="; + version = "13.0.4"; + hash = "sha256-AZQ4ppJES4CsvlkzBX82KfEp3PlFa2Ypd1KmTj/SXJk="; + npmDepsHash = "sha256-v+vl0fxcnqH8Jp4BILDYe5ioFQTQkB2XnFVEtkgadPc="; + vendorHash = "sha256-tq/72teHKowp6jwOKIJxS0OkcFI7UV19uTAv/OB/rm8"; lts = false; nixUpdateExtraArgs = [ "--override-filename" diff --git a/pkgs/by-name/fr/fresh-editor/package.nix b/pkgs/by-name/fr/fresh-editor/package.nix index c5b994182160..542dfecb91b5 100644 --- a/pkgs/by-name/fr/fresh-editor/package.nix +++ b/pkgs/by-name/fr/fresh-editor/package.nix @@ -68,6 +68,7 @@ rustPlatform.buildRustPackage (finalAttrs: { maintainers = with lib.maintainers; [ chillcicada dwt + randoneering ]; mainProgram = "fresh"; platforms = lib.platforms.linux ++ lib.platforms.darwin; diff --git a/pkgs/by-name/fr/freshfetch/package.nix b/pkgs/by-name/fr/freshfetch/package.nix index dd6b7510d7b9..d61bbb398d22 100644 --- a/pkgs/by-name/fr/freshfetch/package.nix +++ b/pkgs/by-name/fr/freshfetch/package.nix @@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-LKltHVig33zUSWoRgCb1BgeKiJsDnlYEuPfQfrnhafI="; # freshfetch depends on rust nightly features - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; meta = { description = "Fresh take on neofetch"; diff --git a/pkgs/by-name/fu/fuc/package.nix b/pkgs/by-name/fu/fuc/package.nix index 6175f66772b3..bb6632c0f710 100644 --- a/pkgs/by-name/fu/fuc/package.nix +++ b/pkgs/by-name/fu/fuc/package.nix @@ -19,7 +19,7 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-OoTWGeF96BpPDx1Y9AEVOIBK7kCz6pjw24pLiNcKmOc="; - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; cargoBuildFlags = [ "--workspace" diff --git a/pkgs/by-name/fu/furtherance/package.nix b/pkgs/by-name/fu/furtherance/package.nix index a712f87b009c..6dfaef0e9fb3 100644 --- a/pkgs/by-name/fu/furtherance/package.nix +++ b/pkgs/by-name/fu/furtherance/package.nix @@ -13,16 +13,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "furtherance"; - version = "26.1.0"; + version = "26.1.1"; src = fetchFromGitHub { owner = "unobserved-io"; repo = "Furtherance"; rev = finalAttrs.version; - hash = "sha256-EwOLTq82NNuRMUCFSKryl6fBtXxhNps+tzOo3Uhe3yA="; + hash = "sha256-VG1Ghhi74tkPU9bgauV98Gp5kVoZJ1cJUqWLWnrUAOU="; }; - cargoHash = "sha256-iJW7tnGnwdp494ylJyNEuC80SIV8wRu8ygd5lcul2KA="; + cargoHash = "sha256-6S0L8FHI5eCTzhxlew35pK7TewMplKKJDaqJdtoYRnM="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/by-name/fz/fzf-zsh-plugin/package.nix b/pkgs/by-name/fz/fzf-zsh-plugin/package.nix new file mode 100644 index 000000000000..08c059bb8baa --- /dev/null +++ b/pkgs/by-name/fz/fzf-zsh-plugin/package.nix @@ -0,0 +1,43 @@ +{ + bash, + stdenv, + lib, + fetchFromGitHub, + zsh, +}: + +stdenv.mkDerivation { + pname = "fzf-zsh-plugin"; + version = "1.0.0-unstable-2025-12-15"; + + src = fetchFromGitHub { + owner = "unixorn"; + repo = "fzf-zsh-plugin"; + rev = "cdd9d5cc3b41a3a390a0fb8605c40de652da6309"; + hash = "sha256-i6qoaMWVofhD3K6/RaaNatzA2aokiNQ5ilqmahprJFU="; + }; + + strictDeps = true; + + buildInputs = [ + bash + zsh + ]; + + installPhase = '' + runHook preInstall + install -D fzf-settings.zsh $out/share/zsh/fzf-zsh-plugin/fzf-settings.zsh + install -D fzf-zsh-plugin.plugin.zsh $out/share/zsh/fzf-zsh-plugin/fzf-zsh-plugin.plugin.zsh + mkdir -p $out/bin + cp -r bin/* $out/bin/ + runHook postInstall + ''; + + meta = { + homepage = "https://github.com/unixorn/fzf-zsh-plugin"; + description = "ZSH plugin to enable fzf searches of a lot more stuff - docker, tmux, homebrew and more"; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.eymeric ]; + platforms = lib.platforms.all; + }; +} diff --git a/pkgs/by-name/ge/gemini-cli/package.nix b/pkgs/by-name/ge/gemini-cli/package.nix index f59751df35a5..444b62acaa4d 100644 --- a/pkgs/by-name/ge/gemini-cli/package.nix +++ b/pkgs/by-name/ge/gemini-cli/package.nix @@ -14,18 +14,18 @@ buildNpmPackage (finalAttrs: { pname = "gemini-cli"; - version = "0.22.5"; + version = "0.23.0"; src = fetchFromGitHub { owner = "google-gemini"; repo = "gemini-cli"; tag = "v${finalAttrs.version}"; - hash = "sha256-3d9Lq3IulIgp4QGNtSvkwz10kfygX6vsmVdlU3lE6Gw="; + hash = "sha256-tl9Iy1M0YxPvUpbIQRl7/P2iRIb5n1cvHEqK2k3OR5I="; }; nodejs = nodejs_22; - npmDepsHash = "sha256-6NqpkUgez7CqQAMDQW3Zdi86sF5qXseKXMw1Vw/5zWU="; + npmDepsHash = "sha256-gPmH/Ym6+UxbpH8CEuDmdZtbR6HqWPjMchs1zlDELDU="; nativeBuildInputs = [ jq @@ -50,6 +50,10 @@ buildNpmPackage (finalAttrs: { # Remove node-pty dependency from packages/core/package.json ${jq}/bin/jq 'del(.optionalDependencies."node-pty")' packages/core/package.json > packages/core/package.json.tmp && mv packages/core/package.json.tmp packages/core/package.json + # Fix ripgrep path for SearchText; ensureRgPath() on its own may return the path to a dynamically-linked ripgrep binary without required libraries + substituteInPlace packages/core/src/tools/ripGrep.ts \ + --replace-fail "await ensureRgPath();" "'${lib.getExe ripgrep}';" + # Ideal method to disable auto-update sed -i '/disableAutoUpdate: {/,/}/ s/default: false/default: true/' packages/cli/src/config/settingsSchema.ts @@ -85,6 +89,8 @@ buildNpmPackage (finalAttrs: { cp -r packages/core $out/share/gemini-cli/node_modules/@google/gemini-cli-core cp -r packages/a2a-server $out/share/gemini-cli/node_modules/@google/gemini-cli-a2a-server + rm -f $out/share/gemini-cli/node_modules/@google/gemini-cli-core/dist/docs/CONTRIBUTING.md + ln -s $out/share/gemini-cli/node_modules/@google/gemini-cli/dist/index.js $out/bin/gemini chmod +x "$out/bin/gemini" diff --git a/pkgs/by-name/ge/genact/package.nix b/pkgs/by-name/ge/genact/package.nix index bd365a949579..007413f7c5e5 100644 --- a/pkgs/by-name/ge/genact/package.nix +++ b/pkgs/by-name/ge/genact/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage rec { pname = "genact"; - version = "1.4.2"; + version = "1.5.0"; src = fetchFromGitHub { owner = "svenstaro"; repo = "genact"; rev = "v${version}"; - sha256 = "sha256-Rn9kJWutWKPj9cLu2ZJKITmC+I8/ikhCAoIp00Yg6ZA="; + sha256 = "sha256-6d8p+Hon9zZMNRLX9+eBB3K5PffsX7w5PcbIiesCvSc="; }; - cargoHash = "sha256-Ttg9stfiIYCXk35+GWdGOzQrM/aYZPZK+e9y+zw1ZXQ="; + cargoHash = "sha256-umb+hf61k/sSfPVUCS1qJ0p+NLfjgZffuEWoQj1NIVY="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/gh/ghi/package.nix b/pkgs/by-name/gh/ghi/package.nix index a26fbbf47c84..48b77ecff925 100644 --- a/pkgs/by-name/gh/ghi/package.nix +++ b/pkgs/by-name/gh/ghi/package.nix @@ -4,7 +4,6 @@ fetchFromGitHub, makeWrapper, bundlerEnv, - tree, }: let version = "1.2.1"; diff --git a/pkgs/by-name/gh/ghostty/package.nix b/pkgs/by-name/gh/ghostty/package.nix index 7c14a55ba528..b08023c70e1c 100644 --- a/pkgs/by-name/gh/ghostty/package.nix +++ b/pkgs/by-name/gh/ghostty/package.nix @@ -29,13 +29,7 @@ # https://github.com/ghostty-org/ghostty/blob/4b4d4062dfed7b37424c7210d1230242c709e990/PACKAGING.md#build-options optimizeLevel ? "ReleaseFast", }: -let - zig = zig_0_14; - zig_hook = zig.hook.overrideAttrs { - zig_default_flags = "-Dcpu=baseline -Doptimize=${optimizeLevel} --color off"; - }; -in stdenv.mkDerivation (finalAttrs: { pname = "ghostty"; version = "1.2.3"; @@ -66,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: { pandoc pkg-config removeReferencesTo - zig_hook + zig_0_14 # GTK frontend glib # Required for `glib-compile-schemas` @@ -93,10 +87,14 @@ stdenv.mkDerivation (finalAttrs: { harfbuzz ]; + dontSetZigDefaultFlags = true; + zigBuildFlags = [ "--system" "${finalAttrs.deps}" "-Dversion-string=${finalAttrs.version}" + "-Dcpu=baseline" + "-Doptimize=${optimizeLevel}" ] ++ lib.mapAttrsToList (name: package: "-fsys=${name} --search-prefix ${lib.getLib package}") { inherit glslang; diff --git a/pkgs/by-name/gi/ginkgo/package.nix b/pkgs/by-name/gi/ginkgo/package.nix index 623e88a58967..69f20085ad29 100644 --- a/pkgs/by-name/gi/ginkgo/package.nix +++ b/pkgs/by-name/gi/ginkgo/package.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "ginkgo"; - version = "2.27.3"; + version = "2.27.4"; src = fetchFromGitHub { owner = "onsi"; repo = "ginkgo"; rev = "v${version}"; - sha256 = "sha256-qEGV5QLRVuy0pNBat19u3kp8jUrUHFjyY1pC1nkyZC0="; + sha256 = "sha256-bPGWqWNXvl+kHi5/LLdZ8zw/OXxg06mr6ZWjIQH4QJg="; }; vendorHash = "sha256-Vmcva/iMaOszQi87avO7utD0ahlB2gFBmVEI86hvnyQ="; diff --git a/pkgs/by-name/gi/gitaly/package.nix b/pkgs/by-name/gi/gitaly/package.nix index 70a3f081412e..f14b52073937 100644 --- a/pkgs/by-name/gi/gitaly/package.nix +++ b/pkgs/by-name/gi/gitaly/package.nix @@ -7,7 +7,7 @@ }: let - version = "18.6.2"; + version = "18.6.3"; package_version = "v${lib.versions.major version}"; gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; @@ -21,7 +21,7 @@ let owner = "gitlab-org"; repo = "gitaly"; rev = "v${version}"; - hash = "sha256-GdHU/FEBYsRackYLsXVZQC6c49k3r/nF5PUvWS4AyuQ="; + hash = "sha256-zZho0cN/ePViLo4KtBNIHIHUbpbPI8jj88zY8cCacaU="; }; vendorHash = "sha256-+5CTncYwtGlScFvVc3QaEScfuqMqvsjnGhggM1HMhNU="; diff --git a/pkgs/by-name/gi/gitlab-container-registry/package.nix b/pkgs/by-name/gi/gitlab-container-registry/package.nix index 14e815e5a632..191e02385fda 100644 --- a/pkgs/by-name/gi/gitlab-container-registry/package.nix +++ b/pkgs/by-name/gi/gitlab-container-registry/package.nix @@ -6,7 +6,7 @@ buildGo124Module rec { pname = "gitlab-container-registry"; - version = "4.32.0"; + version = "4.33.0"; rev = "v${version}-gitlab"; # nixpkgs-update: no auto update @@ -14,10 +14,10 @@ buildGo124Module rec { owner = "gitlab-org"; repo = "container-registry"; inherit rev; - hash = "sha256-LrrLNggb9OAhYCZ3STgBVJEY6m4bDo7aH3FO66s6Ge8="; + hash = "sha256-6FcnzlQQSeM8l2jH5dG9g0rmnEvAg2FWB8ZpKYBBhE4="; }; - vendorHash = "sha256-zynz4btCcaTPTaBwMQdHB6rardrIvKKvmlo4wR0YIgI="; + vendorHash = "sha256-YfpqspLh+lV+MVZtn8iHQuE+DkZrcOq6hDt20SqkKfw="; checkFlags = let diff --git a/pkgs/by-name/gi/gitlab-pages/package.nix b/pkgs/by-name/gi/gitlab-pages/package.nix index 48e52adb8dd4..f785f4714e8f 100644 --- a/pkgs/by-name/gi/gitlab-pages/package.nix +++ b/pkgs/by-name/gi/gitlab-pages/package.nix @@ -6,14 +6,14 @@ buildGoModule rec { pname = "gitlab-pages"; - version = "18.6.2"; + version = "18.6.3"; # nixpkgs-update: no auto update src = fetchFromGitLab { owner = "gitlab-org"; repo = "gitlab-pages"; rev = "v${version}"; - hash = "sha256-orEp/fkLmk0wKC8ceHesqYfA6yIDuxvFKX09MzA5fnU="; + hash = "sha256-+MxG6cWZfNN1Kfx0eLEevWR8q23pnsmS73B4aquKrSc="; }; vendorHash = "sha256-AL6V2LPzCGo/7IuY8msip35OScfocp3zO2ZzM8cZfnU="; diff --git a/pkgs/by-name/gi/gitlab/data.json b/pkgs/by-name/gi/gitlab/data.json index d24754755078..ed9203338fc2 100644 --- a/pkgs/by-name/gi/gitlab/data.json +++ b/pkgs/by-name/gi/gitlab/data.json @@ -1,16 +1,16 @@ { - "version": "18.6.2", - "repo_hash": "1lpv4p85hnrikl0r41md6hrj9dxdl2236n1a11z2k1rjnyxwsl62", - "yarn_hash": "1qrgi5zkjy3d74lfjhqwnlh9il572vjwcb63q0s1mcq7cpk8fwhs", + "version": "18.6.3", + "repo_hash": "1ims6fy3zjnrappy1kkb02b8s2vldr18dz7ick176ljk042lqa5g", + "yarn_hash": "19fhh3457mvls3g4swyzr2dh9q46z2zinjyw5v6sjjhfmrqs921d", "frontend_islands_yarn_hash": "0m64xhlybjlax33k5rmj9kxcj1vzqqygybyz1yzzx9pd87570k2h", "owner": "gitlab-org", "repo": "gitlab", - "rev": "v18.6.2-ee", + "rev": "v18.6.3-ee", "passthru": { - "GITALY_SERVER_VERSION": "18.6.2", - "GITLAB_PAGES_VERSION": "18.6.2", + "GITALY_SERVER_VERSION": "18.6.3", + "GITLAB_PAGES_VERSION": "18.6.3", "GITLAB_SHELL_VERSION": "14.45.3", "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.10.1", - "GITLAB_WORKHORSE_VERSION": "18.6.2" + "GITLAB_WORKHORSE_VERSION": "18.6.3" } } diff --git a/pkgs/by-name/gi/gitlab/gitlab-workhorse/default.nix b/pkgs/by-name/gi/gitlab/gitlab-workhorse/default.nix index c4f3f90f4541..e991e0ecb4b2 100644 --- a/pkgs/by-name/gi/gitlab/gitlab-workhorse/default.nix +++ b/pkgs/by-name/gi/gitlab/gitlab-workhorse/default.nix @@ -10,7 +10,7 @@ in buildGoModule rec { pname = "gitlab-workhorse"; - version = "18.6.2"; + version = "18.6.3"; # nixpkgs-update: no auto update src = fetchFromGitLab { diff --git a/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix b/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix index 62b88041271c..73299e215032 100644 --- a/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix +++ b/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "gnome-online-accounts-gtk"; - version = "3.50.9"; + version = "3.50.10"; src = fetchFromGitHub { owner = "xapp-project"; repo = "gnome-online-accounts-gtk"; rev = finalAttrs.version; - hash = "sha256-X7/TfY4Amei/CYO+FaXoSb48Y3/mQwduw40rTl6pN50="; + hash = "sha256-tBBCnB3JhGaaN/uv6BqyJDSvSyV1mPA4WvsvNS8cbOA="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/go/go-dnscollector/package.nix b/pkgs/by-name/go/go-dnscollector/package.nix index ac46e99a04e4..9b5f6847025f 100644 --- a/pkgs/by-name/go/go-dnscollector/package.nix +++ b/pkgs/by-name/go/go-dnscollector/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "go-dnscollector"; - version = "1.14.0"; + version = "2.0.0"; src = fetchFromGitHub { owner = "dmachard"; repo = "go-dnscollector"; tag = "v${version}"; - hash = "sha256-J6h/td5vCZwVruamZziIxRhAOdLdlv3Aupz9m0bExU4="; + hash = "sha256-d6FFxVGolXfZF4Ulklxg8u26DdV9yHeDUf2IEEryELw="; }; - vendorHash = "sha256-BQLlEY9CJDwJRbzB5kflBwwxcWMLbaqgWUtz2p3CJsE="; + vendorHash = "sha256-4gk7LwRDrTiMCrR6JJpdSvCmNa7wQ5Hk06OGd6/SACc="; subPackages = [ "." ]; diff --git a/pkgs/by-name/gp/gperftools/mingw-disable-benchmarks.patch b/pkgs/by-name/gp/gperftools/mingw-disable-benchmarks.patch new file mode 100644 index 000000000000..647faee4ec47 --- /dev/null +++ b/pkgs/by-name/gp/gperftools/mingw-disable-benchmarks.patch @@ -0,0 +1,21 @@ +diff --git a/Makefile.am b/Makefile.am +index 52d5e2b..62b8ae6 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -523,6 +523,8 @@ debugallocation_test_LDADD = libtcmalloc_debug.la libgtest.la + + endif WITH_DEBUGALLOC + ++if !MINGW ++ + noinst_LTLIBRARIES += librun_benchmark.la + librun_benchmark_la_SOURCES = \ + benchmark/run_benchmark.cc +@@ -552,8 +554,7 @@ binary_trees_shared_SOURCES = benchmark/binary_trees.cc + binary_trees_shared_LDFLAGS = $(TCMALLOC_FLAGS) $(AM_LDFLAGS) + binary_trees_shared_LDADD = libtcmalloc_minimal.la + +-if !MINGW + if WITH_HEAP_PROFILER_OR_CHECKER + + noinst_PROGRAMS += malloc_bench_shared_full diff --git a/pkgs/by-name/gp/gperftools/package.nix b/pkgs/by-name/gp/gperftools/package.nix index 5dc08804834a..a5888096c827 100644 --- a/pkgs/by-name/gp/gperftools/package.nix +++ b/pkgs/by-name/gp/gperftools/package.nix @@ -25,6 +25,9 @@ stdenv.mkDerivation (finalAttrs: { url = "https://src.fedoraproject.org/rpms/gperftools/raw/88ce8ee43a12b1a8146781a1b4d9abbd8df8af0e/f/gperftools-2.17-disable-generic-dynamic-tls.patch"; hash = "sha256-IOLUf9mCEA+fVSJKU94akcnXTIm7+t+S9cjBHsEDwFA="; }) + ] + ++ lib.optionals stdenv.hostPlatform.isMinGW [ + ./mingw-disable-benchmarks.patch ]; nativeBuildInputs = [ autoreconfHook ]; diff --git a/pkgs/by-name/gp/gpu-screen-recorder/package.nix b/pkgs/by-name/gp/gpu-screen-recorder/package.nix index ba669b4cc79d..202d0b94cf1e 100644 --- a/pkgs/by-name/gp/gpu-screen-recorder/package.nix +++ b/pkgs/by-name/gp/gpu-screen-recorder/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { pname = "gpu-screen-recorder"; - version = "5.11.2"; + version = "5.11.5"; src = fetchgit { url = "https://repo.dec05eba.com/${pname}"; tag = version; - hash = "sha256-9hmuaqa6HQogL4OwDOID/kL4ZYaDDKJeFrEtrDS9ZYg="; + hash = "sha256-o9IjuKuE2/41I52vpR7EOLCDSLJty/Wq0k7UiFHHlDk="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/hi/highlight-assertions/package.nix b/pkgs/by-name/hi/highlight-assertions/package.nix index 50d48e31db33..4f03a55c63a6 100644 --- a/pkgs/by-name/hi/highlight-assertions/package.nix +++ b/pkgs/by-name/hi/highlight-assertions/package.nix @@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-egrxcnDVKKgk1sL5WNMIR2FPwQbjjMy20VWizcTBEtM="; # requires nightly features - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; meta = { description = "Tool for unit testing tree sitter highlights for nvim-treesitter"; diff --git a/pkgs/by-name/hm/hmcl/package.nix b/pkgs/by-name/hm/hmcl/package.nix index 9df6e3918a47..e295cd7fa789 100644 --- a/pkgs/by-name/hm/hmcl/package.nix +++ b/pkgs/by-name/hm/hmcl/package.nix @@ -176,7 +176,9 @@ stdenv.mkDerivation (finalAttrs: { makeShellWrapper ${hmclJdk}/bin/java $out/bin/hmcl \ --add-flags "-jar $out/lib/hmcl/hmcl-terracotta-patch.jar" \ --set LD_LIBRARY_PATH ${lib.makeLibraryPath finalAttrs.runtimeDeps} \ - --prefix PATH : "${lib.makeBinPath minecraftJdks}" \ + --prefix PATH : "${ + lib.makeBinPath (minecraftJdks ++ lib.optional stdenv.hostPlatform.isLinux xorg.xrandr) + }" \ --run 'cd $HOME' \ ''${gappsWrapperArgs[@]} ''; diff --git a/pkgs/by-name/ho/holo-cli/package.nix b/pkgs/by-name/ho/holo-cli/package.nix index 44dc53470480..e3efcf600528 100644 --- a/pkgs/by-name/ho/holo-cli/package.nix +++ b/pkgs/by-name/ho/holo-cli/package.nix @@ -24,7 +24,7 @@ rustPlatform.buildRustPackage (finalAttrs: { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; # Use rust nightly features - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; nativeBuildInputs = [ cmake diff --git a/pkgs/by-name/ho/holo-daemon/package.nix b/pkgs/by-name/ho/holo-daemon/package.nix index c71f737c54f8..10b86b93b7a1 100644 --- a/pkgs/by-name/ho/holo-daemon/package.nix +++ b/pkgs/by-name/ho/holo-daemon/package.nix @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-YZ2c6W6CCqgyN+6i7Vh5fWLKw8L4pUqvq/tDO/Q/kf0="; # Use rust nightly features - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; nativeBuildInputs = [ cmake diff --git a/pkgs/by-name/hu/hugo/package.nix b/pkgs/by-name/hu/hugo/package.nix index ce64e7075190..f2b43c190aad 100644 --- a/pkgs/by-name/hu/hugo/package.nix +++ b/pkgs/by-name/hu/hugo/package.nix @@ -11,16 +11,16 @@ buildGoModule (finalAttrs: { pname = "hugo"; - version = "0.154.2"; + version = "0.154.3"; src = fetchFromGitHub { owner = "gohugoio"; repo = "hugo"; tag = "v${finalAttrs.version}"; - hash = "sha256-DVNuVhybpi9LOSciCftEVzWdMYsnQKREKFlalB4QMX8="; + hash = "sha256-bUOzm1Uj1z2WN9MRqaKXyi/t+4JROdTwPEYV0bxibtM="; }; - vendorHash = "sha256-7hI2FblqJQYhoWX2K+J+/HIY8CzQ+tBZmForS6gEnoE="; + vendorHash = "sha256-Olkrmi26U4fq/JmYSow5ET4YyCPS10eS+L99t/bLo4g="; checkFlags = let diff --git a/pkgs/by-name/ja/jadx/deps.json b/pkgs/by-name/ja/jadx/deps.json index e9f5b34f86d7..1744bf519097 100644 --- a/pkgs/by-name/ja/jadx/deps.json +++ b/pkgs/by-name/ja/jadx/deps.json @@ -2,38 +2,42 @@ "!comment": "This is a nixpkgs Gradle dependency lockfile. For more details, refer to the Gradle section in the nixpkgs manual.", "!version": 1, "https://dl.google.com/dl/android/maven2/com/android": { - "tools#r8/8.3.37": { - "jar": "sha256-WXU+cKdPkYOJzIfxt9ZrXAhikyVZFnQlcI3tFZ495Dk=", - "pom": "sha256-d6TAZPkYOrtfhr4g6uYTGICen8MvQaXDY4dp72hQ5T4=" + "tools#r8/8.9.35": { + "jar": "sha256-IEsvwrD06IjcDvdItYCQ3vG/QYUGjTaru5SEHbxxB6g=", + "pom": "sha256-dG9URao8wRhFrn5dcpjONck47PiN/hBTnBcsCOeeGvg=" }, - "tools/build#aapt2-proto/8.3.2-10880808": { - "jar": "sha256-3iKdOHj8HSnfyghsigs3FNhY9wS7ifl/F/ZN2n8aEuI=", - "module": "sha256-ERjGfn1J9h/AsfZLVbSrHqVfi5zGPoeaDmbS6eAcKTw=", - "pom": "sha256-A4Lzmo++ffYXuIO/f53Rxg0i7kMp3/0iDhMoi6yZM4w=" + "tools/build#aapt2-proto/8.11.1-12782657": { + "jar": "sha256-n88uWsIG9jBEkYRJiBQkbYKvYb2jnEhHmczLZ2HPKeA=", + "module": "sha256-PjgNHiOeNAL2/OxRYkZbgkfooUAhCnz0wYPYJ2Wy0+k=", + "pom": "sha256-v9tyG77jP3DGfOAjuwe39T6oNW+wdGZ7f7DHV8c7MbU=" }, - "tools/build#apksig/8.3.2": { - "jar": "sha256-Ro7hhS+hJGHGYpYI/ke+cOUPYL58R0S7f2LKSOhcCmw=", - "pom": "sha256-2MOEEEQeeDYadm+kHqunUfrEH60WcbrNfqS7abiKKCE=" + "tools/build#apksig/8.11.1": { + "jar": "sha256-wHDtE5RinXRkGqCQb2Cy/6Hud+Y2ah+TQ39ZcXsa64k=", + "pom": "sha256-CGN4s6ET2qhsY7c06Wmk8oBZvJXpIVyg5D+JBv8EIm8=" }, - "tools/smali#smali-baksmali/3.0.5": { - "jar": "sha256-iZSrXXrULWJCu00p+o3IGhG511roC3jJnvY9B3k3+jo=", - "module": "sha256-5EA3mfVRU9YZIRr/lO5mqxX/SrSfXWUHV9LrraJt7lc=", - "pom": "sha256-shudIzWeaZizhVDoGbbDmukFdGRUapUDkoBOzq+omWo=" + "tools/build#bundletool/1.18.1": { + "jar": "sha256-pzNBp5RavLDmuJccexsoAb12UAZEfKDSQ3pCYNVyzqw=", + "pom": "sha256-XE33suMfF/IOS429YqK3hloJpJof0pMaNZ/TlOy5taU=" }, - "tools/smali#smali-dexlib2/3.0.5": { - "jar": "sha256-j2seZoneVWYbd7wo641xBe6N8mFHktby5Qhm1Y0A3WI=", - "module": "sha256-zY7utICIrsZsSPv4g9qD+LhxYIAZqqRYSCK9s0zvge8=", - "pom": "sha256-nErnF9igv3TjT7iIbd6tQi885vi4SU3iDz5dtubUbD0=" + "tools/smali#smali-baksmali/3.0.9": { + "jar": "sha256-59AWaUVWWofzmX0a6od5IC27bLBYWjnuILq4ovW6h/Y=", + "module": "sha256-EUuFno80MDaDxZeXFjDZjhN4uqECyDLKaqWV6crpmFc=", + "pom": "sha256-zQln7+wAUQbcgIDEaH6kzd9uDlLXFZy+h2V9IfmrMCg=" }, - "tools/smali#smali-util/3.0.5": { - "jar": "sha256-gX2qXYe/ejne1ZeIubZ5P49e32pPSrAiYJgAiSHpqws=", - "module": "sha256-VPXL9pRllG21X3f7mSADg+uvTKFOnrMNhgKWqxIuLXY=", - "pom": "sha256-AGspI+VNhCw80NB5AejYtvODplboeiSZwBMKa1TI0hA=" + "tools/smali#smali-dexlib2/3.0.9": { + "jar": "sha256-i1R1BvYvkddLcPS+tJibmeH/YfxQslJel5bKNfCjUdw=", + "module": "sha256-VibaJU2AesYjncWu1J9uJ/AH7HxIQjgD/I+KceW0xmg=", + "pom": "sha256-ZwJyNJ5d+QqERMG+a2vYuNO4vsvXnKQycYaWQebE15s=" }, - "tools/smali#smali/3.0.5": { - "jar": "sha256-mi8PtL9o18ISBsImnaMLjckpcdGE6Dshpk+4X95anUo=", - "module": "sha256-MLc8dXT76IQo+olKXTqAKqsI3qREr1Lje/A7Jn1bOc8=", - "pom": "sha256-/dFrTiATTBzK1fz+w5ROrTk4sUZKT7nzv3scnQUUYy0=" + "tools/smali#smali-util/3.0.9": { + "jar": "sha256-RnN2KJS6QVYIH8XGQvdNbniu+LGpx3AtaR4xcdjMEVM=", + "module": "sha256-Y4tY28VAfLfHrK6mOrFQXQAOrFRmH3afsyjETxmk3Iw=", + "pom": "sha256-w9KFOqrcCdefH2UollwTAscc0O8s7GUkxMqN3iMmmhs=" + }, + "tools/smali#smali/3.0.9": { + "jar": "sha256-mOkXsbHk9apI50yX/ueGZFcl6beemELj1+UPZYllU/E=", + "module": "sha256-kw/ZTn4NmhcgCH8JfQhYDEzYe6nLi5zH7bb38cLAb3Q=", + "pom": "sha256-XWBbBHicxEd6s91kzPcHExEa+gZ757x434suD7fFzVw=" } }, "https://plugins.gradle.org/m2": { @@ -72,38 +76,61 @@ "module": "sha256-RoHRe/PJIF2DeOynBcAAywzJjcx40DATy2iJjGvSx0Q=", "pom": "sha256-q1ZuPYS2w/rHqPySXy279TzZdZywOvPAfQ3EN9OXqNo=" }, - "com/fasterxml#oss-parent/48": { - "pom": "sha256-EbuiLYYxgW4JtiOiAHR0U9ZJGmbqyPXAicc9ordJAU8=" + "com/fasterxml#oss-parent/55": { + "pom": "sha256-D14Y8rNev22Dn3/VSZcog/aWwhD5rjIwr9LCC6iGwE0=" }, - "com/fasterxml/jackson#jackson-bom/2.14.1": { - "pom": "sha256-eP35nlBQ/EhfQRfauMzL+2+mxoOF6184oJtlU3HUpsw=" + "com/fasterxml#oss-parent/58": { + "pom": "sha256-VnDmrBxN3MnUE8+HmXpdou+qTSq+Q5Njr57xAqCgnkA=" }, - "com/fasterxml/jackson#jackson-parent/2.14": { - "pom": "sha256-CQat2FWuOfkjV9Y/SFiJsI/KTEOl/kM1ItdTROB1exk=" + "com/fasterxml#oss-parent/61": { + "pom": "sha256-NklRPPWX6RhtoIVZhqjFQ+Er29gF7e75wSTbVt0DZUQ=" }, - "com/github/ben-manes#gradle-versions-plugin/0.51.0": { - "jar": "sha256-hDFJ4yuRdmIcz38dtEOECMWp+bWM1XIQU32bc4BUAh4=", - "module": "sha256-vUrCdcs524F7R32ZqxzkZ+BGdOdck8bWiScY1L7PnG4=", - "pom": "sha256-gzhEJF79GHeytCHNoI7uv1zx5O8SBcMXEEe1QGbdkB8=" + "com/fasterxml/jackson#jackson-bom/2.17.2": { + "pom": "sha256-H0crC8IATVz0IaxIhxQX+EGJ5481wElxg4f9i0T7nzI=" }, - "com/github/ben-manes/versions#com.github.ben-manes.versions.gradle.plugin/0.51.0": { - "pom": "sha256-oy92kCcy9iIN27EhlfozbDMfT2190MRscHcLOu4dR0E=" + "com/fasterxml/jackson#jackson-parent/2.17": { + "pom": "sha256-rubeSpcoOwQOQ/Ta1XXnt0eWzZhNiSdvfsdWc4DIop0=" }, - "com/github/johnrengelman#shadow/8.1.1": { - "jar": "sha256-CEGXVVWQpTuyG1lQijMwVZ9TbdtEjq/R7GdfVGIDb88=", - "module": "sha256-nQ87SqpniYcj6vbF6c0nOHj5V03azWSqNwJDYgzgLko=", - "pom": "sha256-Mu55f8hDI3xM5cSeX0FSxYoIlK/OCg6SY25qLU/JjDU=" + "com/fasterxml/woodstox#woodstox-core/7.1.0": { + "jar": "sha256-gSZpIKHNxHMGqKK0cmyZ7Imz+/McJHDk9eR32dhXyp8=", + "pom": "sha256-+ZXFCx0gl18KjW8OUyK8jRPHiuPcGCcXdoQUlypmzIU=" }, - "com/github/johnrengelman/shadow#com.github.johnrengelman.shadow.gradle.plugin/8.1.1": { - "pom": "sha256-PLOIa5ffbgZvEIwxayGfJiyXw8st9tp4kn5kXetkPLA=" + "com/github/ben-manes#gradle-versions-plugin/0.52.0": { + "jar": "sha256-zuihUdLgvp86hcouXYeg2lyRpIHt8bx/e1e1Ywj9PA0=", + "module": "sha256-r6cL5O0h646QJ2hPFfpeKXXz0uRtIpN76jmhDkj3nd0=", + "pom": "sha256-WESi8/+pqARY0m7ex3EjeuYxXN3yBp1Qp+hUFj5A8Q0=" + }, + "com/github/ben-manes/versions#com.github.ben-manes.versions.gradle.plugin/0.52.0": { + "pom": "sha256-sLbWCz+UCuWgFAfwNJ6d86Ayph+FXkoXt9vakSprU3Y=" + }, + "com/google/code/gson#gson-parent/2.10.1": { + "pom": "sha256-QkjgiCQmxhUYI4XWCGw+8yYudplXGJ4pMGKAuFSCuDM=" + }, + "com/google/code/gson#gson-parent/2.11.0": { + "pom": "sha256-issfO3Km8CaRasBzW62aqwKT1Sftt7NlMn3vE6k2e3o=" }, "com/google/code/gson#gson-parent/2.8.9": { "pom": "sha256-sW4CbmNCfBlyrQ/GhwPsN5sVduQRuknDL6mjGrC7z/s=" }, + "com/google/code/gson#gson/2.10.1": { + "jar": "sha256-QkHBSncnw0/uplB+yAExij1KkPBw5FJWgQefuU7kxZM=", + "pom": "sha256-0rEVY09cCF20ucn/wmWOieIx/b++IkISGhzZXU2Ujdc=" + }, + "com/google/code/gson#gson/2.11.0": { + "jar": "sha256-V5KNblpu3rKr03cKj5W6RNzkXzsjt6ncKzCcWBVSp4s=", + "pom": "sha256-wOVHvqmYiI5uJcWIapDnYicryItSdTQ90sBd7Wyi42A=" + }, "com/google/code/gson#gson/2.8.9": { "jar": "sha256-05mSkYVd5JXJTHQ3YbirUXbP6r4oGlqw2OjUUyb9cD4=", "pom": "sha256-r97W5qaQ+/OtSuZa2jl/CpCl9jCzA9G3QbnJeSb91N4=" }, + "com/google/errorprone#error_prone_annotations/2.27.0": { + "jar": "sha256-JMkjNyxY410LnxagKJKbua7cd1IYZ8J08r0HNd9bofU=", + "pom": "sha256-TKWjXWEjXhZUmsNG0eNFUc3w/ifoSqV+A8vrJV6k5do=" + }, + "com/google/errorprone#error_prone_parent/2.27.0": { + "pom": "sha256-+oGCnQSVWd9pJ/nJpv1rvQn4tQ5tRzaucsgwC2w9dlQ=" + }, "com/googlecode/concurrent-trees#concurrent-trees/2.6.1": { "jar": "sha256-BONySYTipcv1VgbPo3KlvT08XSohUzpwBOPN5Tl2H6U=", "pom": "sha256-Q8K5sULnBV0fKlgn8QlEkl0idH2XVrMlDAeqtHU4qXE=" @@ -112,6 +139,14 @@ "jar": "sha256-1lImlJcTxMYaeE9BxRFn57Axb5N2Q5jrup5DNrPZVMI=", "pom": "sha256-5O1sZpYgNm+ZOSBln+CsfLyD11PbwNwOseUplzr5byM=" }, + "com/gradleup/shadow#com.gradleup.shadow.gradle.plugin/8.3.8": { + "pom": "sha256-NmeaNDsKVsypSJCF8DHTkDXKf/e7cO4Fr3WBdje0JTM=" + }, + "com/gradleup/shadow#shadow-gradle-plugin/8.3.8": { + "jar": "sha256-wnObOTJnIDIJdNZ3yLFhjHyQpUVys/24cdbEDlOEphs=", + "module": "sha256-hfNPgoHsUWqBpvKFhILqz0p9JwuC9j5f42nLT6nVI0A=", + "pom": "sha256-IW0s1jeg6+c7BOanrcW7sXOcuHUg/ER7hQimRaSCgoY=" + }, "com/squareup/moshi#moshi-kotlin/1.12.0": { "jar": "sha256-HENsB8FZzRrwMrt5NRpIqY5/eBrIB8/4tXEamZtWZt8=", "module": "sha256-KnvKZtbM8WhVy1oKp8lRWPaIklomPv5MIEsjclSGH6E=", @@ -122,32 +157,16 @@ "module": "sha256-uGqTFURxITGVpEL4XKBG55oAHG1EbEHU0WiTbahW6+I=", "pom": "sha256-YbyUJDqTc9mUini25xAAl161EPtvf0aoHq/N3TgeR3k=" }, - "com/squareup/okhttp3#okhttp/4.11.0": { - "module": "sha256-VnwltR13eWF0Q5GE11JBK6l+2f22X8cYQNvFVjvrj6g=", - "pom": "sha256-ei1Cezixfgdtpk7o0hAuZIiNyyOK7l4tukp3UslKP94=" - }, "com/squareup/okhttp3#okhttp/4.12.0": { "jar": "sha256-sQUAgbFLt6On5VpNPvAbXc+rxFO0VzpPwBl2cZHV9OA=", "module": "sha256-YH4iD/ghW5Kdgpu/VPMyiU8UWbTXlZea6vy8wc6lTPM=", "pom": "sha256-fHNwQKlBlSLnxQzAJ0FqcP58dinlKyGZNa3mtBGcfTg=" }, - "com/squareup/okio#okio-jvm/3.2.0": { - "module": "sha256-p3jzkIXtar/NaHESmGxjhapXrC2IQLIdlGs8IJXzDqQ=", - "pom": "sha256-XEUflKdr6oYbbvK/hOj1cgBUWWjIZVWr3+0Tx8otSJ0=" - }, "com/squareup/okio#okio-jvm/3.6.0": { "jar": "sha256-Z1Q/Bzb8QirpJ+0OUEuYvF4mn9oNNQBXkzfLcT2ihBI=", "module": "sha256-scIZnhwMyWnvYcu+SvLsr5sGQRvd4By69vyRNN/gToo=", "pom": "sha256-YbTXxRWgiU/62SX9cFJiDBQlqGQz/TURO1+rDeiQpX8=" }, - "com/squareup/okio#okio/2.10.0": { - "module": "sha256-EcvqvDp2XJqAMkL6ICShGFPrCGXaU2xLBa/c27I0Y3A=", - "pom": "sha256-S5YGC20aK5bpDkKtcVitvjRpMWuA/qCBfGwzmT7hzHI=" - }, - "com/squareup/okio#okio/3.2.0": { - "module": "sha256-aB9c7BcN5FuVST6e5wWGjrNa34mO4G+W4i0ZclDBsQQ=", - "pom": "sha256-i0b1jZua6xF4Nh1YpoZfTa1mWTDF/3tV4LqmHvOpcqE=" - }, "com/squareup/okio#okio/3.6.0": { "module": "sha256-akesUDZOZZhFlAH7hvm2z832N7mzowRbHMM8v0xAghg=", "pom": "sha256-rrO3CiTBA+0MVFQfNfXFEdJ85gyuN2pZbX1lNpf4zJU=" @@ -156,69 +175,76 @@ "jar": "sha256-VllfsgsLhbyR0NUD2tULt/G5r8Du1d/6bLslkpAASE0=", "pom": "sha256-bLWVeBnfOTlW/TEaOgw/XuwevEm6Wy0J8/ROYWf6PnQ=" }, - "commons-io#commons-io/2.11.0": { - "jar": "sha256-lhsvbYfbrMXVSr9Fq3puJJX4m3VZiWLYxyPOqbwhCQg=", - "pom": "sha256-LgFv1+MkS18sIKytg02TqkeQSG7h5FZGQTYaPoMe71k=" + "commons-io#commons-io/2.19.0": { + "jar": "sha256-gkJokZtLYvn0DwjFQ4HeWZOwePWGZ+My0XNIrgGdcrk=", + "pom": "sha256-VCt6UC7WGVDRuDEStRsWF9NAfjpN9atWqY12Dg+MWVA=" }, "dev/equo/ide#solstice/1.7.5": { "jar": "sha256-BuFLxDrMMx2ra16iAfxnNk7RI/mCyF+lEx8IF+1lrk8=", "module": "sha256-eYp7cGdyE27iijLt2GOx6fgWE6NJhAXXS+ilyb6/9U8=", "pom": "sha256-20U7urXn2opDE5sNzTuuZykzIfKcTZH1p5XZ/2xS3d8=" }, - "io/fabric8#kubernetes-client-bom/5.12.2": { - "pom": "sha256-6qA8FpVlaNVKa6Q31J1Ay/DdjpOXf5hDGCQldrZQvDs=" + "jakarta/platform#jakarta.jakartaee-bom/9.1.0": { + "pom": "sha256-35jgJmIZ/buCVigm15o6IHdqi6Aqp4fw8HZaU4ZUyKQ=" }, - "io/netty#netty-bom/4.1.86.Final": { - "pom": "sha256-EnFsH+ZM9b2qcETTfROq46iIIbkdR5hCDEanR2kXiv0=" - }, - "jakarta/platform#jakarta.jakartaee-bom/9.0.0": { - "pom": "sha256-kZA9Ddh23sZ/i5I/EzK6cr8pWwa9OX0Y868ZMHzhos4=" - }, - "jakarta/platform#jakartaee-api-parent/9.0.0": { - "pom": "sha256-9l3PFLbh2RSOGYo5D6/hVfrKCTJT3ekAMH8+DqgsrTs=" - }, - "org/apache#apache/23": { - "pom": "sha256-vBBiTgYj82V3+sVjnKKTbTJA7RUvttjVM6tNJwVDSRw=" - }, - "org/apache#apache/27": { - "pom": "sha256-srD8aeIqZQw4kvHDZtdwdvKVdcZzjfTHpwpEhESEzfk=" + "jakarta/platform#jakartaee-api-parent/9.1.0": { + "pom": "sha256-p3AsSHAmgCeEtXl7YjMKi41lkr8PRzeyXGel6sgmWcA=" }, "org/apache#apache/29": { "pom": "sha256-PkkDcXSCC70N9jQgqXclWIY5iVTCoGKR+mH3J6w1s3c=" }, - "org/apache/ant#ant-launcher/1.10.13": { - "jar": "sha256-zXaVs7+2lkq3G2oLMdrWAAWud/5QITI2Rnmqzwj3eXA=", - "pom": "sha256-ApkvvDgFU1bzyU0B6qJJmcsCoJuqnB/fXqx2t8MVY8o=" + "org/apache#apache/33": { + "pom": "sha256-14vYUkxfg4ChkKZSVoZimpXf5RLfIRETg6bYwJI6RBU=" }, - "org/apache/ant#ant-parent/1.10.13": { - "pom": "sha256-blv8hwgiFD8f+7LG8I7EiHctsxSlKDMC9IFLEms0aTk=" + "org/apache/ant#ant-launcher/1.10.15": { + "jar": "sha256-XIVRmQMHoDIzbZjdrtVJo5ponwfU1Ma5UGAb8is9ahs=", + "pom": "sha256-ea+EKil53F/gAivAc8SYgQ7q2DvGKD7t803E3+MNrJU=" }, - "org/apache/ant#ant/1.10.13": { - "jar": "sha256-vvv8eedE6Yks+n25bfO26C3BfSVxr0KqQnl2/CIpmDg=", - "pom": "sha256-J5NR7tkLj3QbtIyVvmHD7CRU48ipr7Q7zB0LrB3aE3o=" + "org/apache/ant#ant-parent/1.10.15": { + "pom": "sha256-SYhPGHPFEHzCN/QoXER3R5uwgEvwc3OUgBsI114rvrA=" }, - "org/apache/commons#commons-parent/52": { - "pom": "sha256-ddvo806Y5MP/QtquSi+etMvNO18QR9VEYKzpBtu0UC4=" + "org/apache/ant#ant/1.10.15": { + "jar": "sha256-djrNpKaViMnqiBepUoUf8ML8S/+h0IHCVl3EB/KdV5Q=", + "pom": "sha256-R4DmHoeBbu4fIdGE7Jl7Zfk9tfS5BCwXitsp4j50JdY=" }, "org/apache/commons#commons-parent/58": { "pom": "sha256-LUsS4YiZBjq9fHUni1+pejcp2Ah4zuy2pA2UbpwNVZA=" }, - "org/apache/logging#logging-parent/7": { - "pom": "sha256-5YkR3J/GsXOhDlqp7bk8eZStBmAnBd0Gftz8bh6eFys=" + "org/apache/commons#commons-parent/81": { + "pom": "sha256-NI1OfBMb5hFMhUpxnOekQwenw5vTZghJd7JP0prQ7bQ=" }, - "org/apache/logging/log4j#log4j-api/2.20.0": { - "jar": "sha256-L0PupnnqZvFMoPE/7CqGAKwST1pSMdy034OT7dy5dVA=", - "pom": "sha256-zUWDKj1s0hlENcDWPKAV8ZSWjy++pPKRVTv3r7hOFjc=" + "org/apache/groovy#groovy-bom/4.0.22": { + "module": "sha256-Ul0/SGvArfFvN+YAL9RlqygCpb2l9MZWf778copo5mY=", + "pom": "sha256-Hh9rQiKue/1jMgA+33AgGDWZDb1GEGsWzduopT4832U=" }, - "org/apache/logging/log4j#log4j-bom/2.20.0": { - "pom": "sha256-+LtpLpWmt72mAehxAJWOg9AGG38SMlC2gSiUOhlenaE=" + "org/apache/logging#logging-parent/11.3.0": { + "pom": "sha256-pcmFtW/hxYQzOTtQkabznlufeFGN2PySE0aQWZtk19A=" }, - "org/apache/logging/log4j#log4j-core/2.20.0": { - "jar": "sha256-YTffhIza7Z9NUHb3VRPGyF2oC5U/TnrMo4CYt3B2P1U=", - "pom": "sha256-3nGsEAVR9KB3rsrQd70VPnHfeqacMELXZRbMXM4Ice4=" + "org/apache/logging/log4j#log4j-api/2.24.1": { + "jar": "sha256-bne7Ip/I3K8JA4vutekDCyLp4BtRtFiwGDzmaevMku8=", + "pom": "sha256-IzAaISnUEAiZJfSvQa7LUlhKPcxFJoI+EyNOyst+c+M=" }, - "org/apache/logging/log4j#log4j/2.20.0": { - "pom": "sha256-mje0qPZ+jUG8JHNxejAhYz1qPD8xBXnbmtC+PyRlnGk=" + "org/apache/logging/log4j#log4j-bom/2.24.1": { + "pom": "sha256-vGPPsrS5bbS9cwyWLoJPtpKMuEkCwUFuR3q1y3KwsNM=" + }, + "org/apache/logging/log4j#log4j-core/2.24.1": { + "jar": "sha256-ALzziEcsqApocBQYF2O2bXdxd/Isu/F5/WDhsaybybA=", + "pom": "sha256-JyQstBek3xl47t/GlYtFyJgg+WzH9NFtH0gr/CN24M0=" + }, + "org/apache/logging/log4j#log4j/2.24.1": { + "pom": "sha256-+NcAm1Rl2KhT0QuEG8Bve3JnXwza71OoDprNFDMkfto=" + }, + "org/apache/maven#maven-api-annotations/4.0.0-rc-3": { + "jar": "sha256-XTSQ9yrTp+gr6IsnYp83xZ/SUxuuURw7E4ZkINXYYr0=", + "pom": "sha256-83HUqkRgxMwP4x0W20WC2+eGHvzS5nqvGEPimR8Xx0I=" + }, + "org/apache/maven#maven-api-xml/4.0.0-rc-3": { + "jar": "sha256-8+OzZCNzxp1MdEHUDroHZeHXROmStiGURS9epUUd/bo=", + "pom": "sha256-XxSOOelo08K3a4426hN3mJ8KeetDpqWa5yPZElzLXGE=" + }, + "org/apache/maven#maven-xml/4.0.0-rc-3": { + "jar": "sha256-BjxCTLR/dRZBJdXuolFnuTHdaU40Jo1QJHN050IR3Rk=", + "pom": "sha256-nZZekiyqwDYkl9J7v6UaRI+UydcTYjZnnGhSNwb3KYI=" }, "org/beryx#badass-runtime-plugin/1.13.1": { "jar": "sha256-IW3RL1SacHD31B2wTupXAaF5Z0mzVerAzkMVLs0DGBc=", @@ -228,21 +254,23 @@ "org/beryx/runtime#org.beryx.runtime.gradle.plugin/1.13.1": { "pom": "sha256-7SsiPX22wuiujLyvq8E96b0kKfwfNMtEFVh0jJCBu+U=" }, - "org/codehaus/groovy#groovy-bom/3.0.14": { - "pom": "sha256-JODptzjecRjennNWD/0GA0u1zwfKE6fgNFnoi6nRric=" + "org/codehaus/plexus#plexus-utils/4.0.2": { + "jar": "sha256-iVcnTnX+LCeLFCjdFqDa7uHdOBUstu/4Fhd6wo/Mtpc=", + "pom": "sha256-UVHBO918w6VWlYOn9CZzkvAT/9MRXquNtfht5CCjZq8=" }, - "org/codehaus/plexus#plexus-utils/3.5.1": { - "jar": "sha256-huAlXUyHnGG0gz7X8TEk6LtnnfR967EnMm59t91JoHs=", - "pom": "sha256-lP9o7etIIE0SyZGJx2cWTTqfd4oTctHc4RpBRi5iNvI=" + "org/codehaus/plexus#plexus-xml/4.1.0": { + "jar": "sha256-huan8HSE6LH3r2bZfTujyz1pKlRhtLHQordnDPV0jok=", + "pom": "sha256-uKO6h7WsMXVJUEngIXiIDKJczJ6rGkR9OKGbU3xXgk4=" }, - "org/codehaus/plexus#plexus/10": { - "pom": "sha256-u6nFIQZLnKEyzpfMHMfrSvwtvjK8iMuHLIjpn2FiMB8=" + "org/codehaus/plexus#plexus/20": { + "pom": "sha256-p7WUsAL8eRczyOlEcNCQRfT9aak61cN1dS8gV/hGM7Q=" }, - "org/eclipse/ee4j#project/1.0.6": { - "pom": "sha256-Tn2DKdjafc8wd52CQkG+FF8nEIky9aWiTrkHZ3vI1y0=" + "org/codehaus/woodstox#stax2-api/4.2.2": { + "jar": "sha256-phxI1VPvrXi8Af/8SsUovruuZMuuwXCypeOc9h61Gr4=", + "pom": "sha256-TpAuxVb8ZZi0HClS7BVz7cgVA35zMOxJIuq2GUImhuI=" }, - "org/eclipse/jetty#jetty-bom/9.4.50.v20221201": { - "pom": "sha256-TN5uUz1gHq+LZazulWt3BsGBkvJ1XQI9fo0Zu31bOUM=" + "org/eclipse/ee4j#project/1.0.7": { + "pom": "sha256-IFwDmkLLrjVW776wSkg+s6PPlVC9db+EJg3I8oIY8QU=" }, "org/eclipse/jgit#org.eclipse.jgit-parent/6.7.0.202309050840-r": { "pom": "sha256-u56FQW2Y0HMfx2f41w6EaAQWAdZnKuItsqx5n3qjkR8=" @@ -263,6 +291,14 @@ "org/gradle/kotlin/kotlin-dsl#org.gradle.kotlin.kotlin-dsl.gradle.plugin/5.2.0": { "pom": "sha256-pXu0ObpCYKJW8tYIRx1wgRiQd6Ck3fsCjdGBe+W8Ejc=" }, + "org/gradle/toolchains#foojay-resolver/0.8.0": { + "jar": "sha256-+Q5pNRY46QueyYSOdZ0hhjWQfAklQRkRUAN7CyLlFAw=", + "module": "sha256-jDzPVNoHLGSkDgaIKqplIzbLKe7C6iMPBtaEOrs4TVE=", + "pom": "sha256-pxZyrK0MCu4576V1P1yU+aSjWh2sBl4ii8rDQt6nxUg=" + }, + "org/gradle/toolchains/foojay-resolver-convention#org.gradle.toolchains.foojay-resolver-convention.gradle.plugin/0.8.0": { + "pom": "sha256-O2ciN72cwejoyobvWnkgpnj2nQTS9L+9DFouedRcXLU=" + }, "org/jdom#jdom2/2.0.6.1": { "jar": "sha256-CyD0XjoP2PDRLNxTFrBndukCsTZdsAEYh2+RdcYPMCw=", "pom": "sha256-VXleEBi4rmR7k3lnz4EKmbCFgsI3TnhzwShzTIyRS/M=" @@ -275,9 +311,16 @@ "jar": "sha256-xf1yW/+rUYRr88d9sTg8YKquv+G3/i8A0j/ht98KQ50=", "pom": "sha256-h3IcuqZaPJfYsbqdIHhA8WTJ/jh1n8nqEP/iZWX40+k=" }, - "org/jetbrains/kotlin#kotlin-android-extensions/1.9.23": { - "jar": "sha256-Yf12SPkx/06b2/9JvwmHcFdj+7qce7ALJkgRo20RGsE=", - "pom": "sha256-0+vFk7FzrT4tHiVgtpwzFKRpDI2jJ0ch6DqWrtwWEaA=" + "org/jetbrains/kotlin#abi-tools-api/2.2.0": { + "jar": "sha256-hxeDiGZkLjvdR+yeAmC70wdujH6GvgXirahoMesq+Qo=", + "pom": "sha256-UwmmvuGytgrDtfXTXMS2zDiKFzOA17jeqgIJ6wgUnpA=" + }, + "org/jetbrains/kotlin#fus-statistics-gradle-plugin/2.2.0": { + "module": "sha256-5d0u34ivdW30d1ra13xS0AkDUav1EZLPGdP+YsZnyrg=", + "pom": "sha256-Qejc6FcbX7TuAzURlYL+IoBQqP8ZPiRg1SmMX5Dj1nU=" + }, + "org/jetbrains/kotlin#fus-statistics-gradle-plugin/2.2.0/gradle813": { + "jar": "sha256-0M+f8jrTjCEO7QzCWlExWjhOYf3BWlP+uGwAvuaRqug=" }, "org/jetbrains/kotlin#kotlin-assignment-compiler-plugin-embeddable/2.0.21": { "jar": "sha256-VNSBSyF3IXiP2GU5gSMImi/P91FQ17NdjnMKI34my9E=", @@ -290,6 +333,9 @@ "org/jetbrains/kotlin#kotlin-assignment/2.0.21/gradle85": { "jar": "sha256-USUeNCELiNTJCAXKZS6Xe93IR4OkVAY5ydIQkJhbrOY=" }, + "org/jetbrains/kotlin#kotlin-bom/2.0.21": { + "pom": "sha256-1Ufg3iVCLZY+IsepRPO13pQ8akmClbUtv/49KJXNm+g=" + }, "org/jetbrains/kotlin#kotlin-build-common/2.0.21": { "jar": "sha256-cLmHScMJc9O3YhCL37mROSB4swhzCKzTwa0zqg9GIV0=", "pom": "sha256-qNP7huk2cgYkCh2+6LMBCteRP+oY+9Rtv2EB+Yvj4V0=" @@ -298,62 +344,53 @@ "jar": "sha256-gBILdN8DYz1veeCIZBMe7jt6dIb2wF0vLtyGg3U8VNo=", "pom": "sha256-/iTcYG/sg+yY3Qi8i7HPmeVAXejpF8URnVoMt++sVZ0=" }, - "org/jetbrains/kotlin#kotlin-build-tools-api/1.9.23": { - "jar": "sha256-gvhH4lRXtGSDfv7x2oUC7JJTLedAbnkgUWbODs9PxSE=", - "pom": "sha256-CWkjtiXJfGZzZ5ZsxM6Sv5TE6f98U8sdOEhgEax1DVg=" + "org/jetbrains/kotlin#kotlin-build-statistics/2.2.0": { + "jar": "sha256-klfy37x4iCf2AnUPrijX6UWTLq2QQVP3f09sTE2Y5RE=", + "pom": "sha256-8Uct+ZZDqe4VJrFEka0vaNz8Zunr9WywFuSFzaj69sI=" }, "org/jetbrains/kotlin#kotlin-build-tools-api/2.0.21": { "jar": "sha256-j8orSvbEzyRWXZp/ZMMXhIlRjQSeEGmB22cY7yLK4Y4=", "pom": "sha256-zL2XaTA2Y0gWKVGY5JRFNPr7c9d4+M1NQ588h7CQ9JQ=" }, + "org/jetbrains/kotlin#kotlin-build-tools-api/2.2.0": { + "jar": "sha256-HezZmyKUN3QfNqAIxnip2PrjBxbodyFRMI9W9owQ844=", + "pom": "sha256-I6QFgttMPijHq6X8fpZHvI1e/d+dAFWp5CyaCJbVzjM=" + }, "org/jetbrains/kotlin#kotlin-build-tools-impl/2.0.21": { "jar": "sha256-um6iTa7URxf1AwcqkcWbDafpyvAAK9DsG+dzKUwSfcs=", "pom": "sha256-epPI22tqqFtPyvD0jKcBa5qEzSOWoGUreumt52eaTkE=" }, - "org/jetbrains/kotlin#kotlin-compiler-embeddable/1.9.23": { - "jar": "sha256-zJQGSXS/nr9ZlF4xIXzy0WoM66rySH6wdI/By9F4eUM=", - "pom": "sha256-WLI81NgtWqkWpcnMmbMhjuxVaWBoova3C+3fbDaR/RU=" - }, "org/jetbrains/kotlin#kotlin-compiler-embeddable/2.0.21": { "jar": "sha256-n6jN0d4NzP/hVMmX1CPsa19TzW2Rd+OnepsN4D+xvIE=", "pom": "sha256-vUZWpG7EGCUuW8Xhwg6yAp+yqODjzJTu3frH6HyM1bY=" }, - "org/jetbrains/kotlin#kotlin-compiler-runner/1.9.23": { - "jar": "sha256-yFlaPhcRx0U8f5YKrxKhcNtL2j1vy6Sf/I4yy/0ADKE=", - "pom": "sha256-KebjEpGbdf6aOHjflRHPQhDcJuWTQcsu4iSDt7Tgcv4=" - }, "org/jetbrains/kotlin#kotlin-compiler-runner/2.0.21": { "jar": "sha256-COYFvoEGD/YS0K65QFihm8SsmWJcNcRhxsCzAlYOkQQ=", "pom": "sha256-+Wdq1JVBFLgc39CR6bW0J7xkkc+pRIRmjWU9TRkCPm0=" }, - "org/jetbrains/kotlin#kotlin-daemon-client/1.9.23": { - "jar": "sha256-5jFUJUkZ/XBv6ZN8SNuTfqkGimMfht5lWlFLwWIPmI0=", - "pom": "sha256-X70GastuQIU5gCdsaDUWmSj2Zqt8RlEsJvJMnQMIF9M=" + "org/jetbrains/kotlin#kotlin-compiler-runner/2.2.0": { + "jar": "sha256-kHBq6Gcd77oBQI3RxUG6MJEskHDN8d3aGMUero1nkwQ=", + "pom": "sha256-iQfZfcaLv0CgrmZ5RZAvDtwWYdvPdDuuDf2nw7mp1Mg=" }, "org/jetbrains/kotlin#kotlin-daemon-client/2.0.21": { "jar": "sha256-Nx6gjk8DaILMjgZP/PZEWZDfREKVuh7GiSjnzCtbwBU=", "pom": "sha256-8oY4JGtQVSC/6TXxXz7POeS6VSb6RcjzKsfeejEjdAA=" }, - "org/jetbrains/kotlin#kotlin-daemon-embeddable/1.9.23": { - "jar": "sha256-bztmG5gmetJOL4+3rV0Gvn0u1hpdBcJn9OTKp433g9k=", - "pom": "sha256-WFRgOL5Go4NmOFPRMd12xPsnQ4MLqXt0sno1zxAtPQI=" + "org/jetbrains/kotlin#kotlin-daemon-client/2.2.0": { + "jar": "sha256-ISk9oBbkuhKhKKwm/ZIKdOi4f1dM+bxDxgo9LnZFp64=", + "pom": "sha256-HESKBvDKmGiVi+CHesnof8TgG8uTaHp8rBLTxNCd7uY=" }, "org/jetbrains/kotlin#kotlin-daemon-embeddable/2.0.21": { "jar": "sha256-saCnPFAi+N0FpjjGt2sr1zYYGKHzhg/yZEEzsd0r2wM=", "pom": "sha256-jbZ7QN1gJaLtBpKU8sm8+2uW2zFZz+927deEHCZq+/A=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-annotations/1.9.23": { - "jar": "sha256-HaitBgpbw4KwTxVycdPNrWgwcUovTfSvfEAIjUuSIWQ=", - "pom": "sha256-69aRc06Qr9Wj6PoqkTrw+Q6YL4a6IYWhcDIqGwiQpgU=" - }, "org/jetbrains/kotlin#kotlin-gradle-plugin-annotations/2.0.21": { "jar": "sha256-W0cHoy5GfvvhIsMY/2q9yhei/H2Mg/ZgN8mhILbcvC8=", "pom": "sha256-P+CLlUN7C074sWt39hqImzn1xGt+lx1N+63mbUQOodg=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-api/1.9.23": { - "jar": "sha256-WTzAhC1fwJe5XgpgK/+Mekifc3Q7hzywuO7JL86KQVs=", - "module": "sha256-zmi7IanW8gt7DnKf4y+aVHu2SyXjEPD14vcMUJ1n7cQ=", - "pom": "sha256-WMjnhsjGUvTpgqQlh5FZTL4L+JKiaGCVTKa1Ue7mN+8=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-annotations/2.2.0": { + "jar": "sha256-nRsH2uVVnD/JwtzhW9hcNtwedt/zd/ExJIm9ZmDBZUQ=", + "pom": "sha256-uvxt1O1fRcLhvCgXfCxkDie/t8WQEZ6GW7nkCZOLrEA=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin-api/2.0.21": { "jar": "sha256-Uur1LOMDtSneZ6vDusE+TxNZY1dUPfqDHE1y0tYxDlA=", @@ -363,40 +400,41 @@ "org/jetbrains/kotlin#kotlin-gradle-plugin-api/2.0.21/gradle85": { "jar": "sha256-Uur1LOMDtSneZ6vDusE+TxNZY1dUPfqDHE1y0tYxDlA=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-idea-proto/1.9.23": { - "jar": "sha256-i7/a0U08PFCzK/a/4PHHAnvlQoXEba95gnz5O1y0PX8=", - "pom": "sha256-x0cp9NYFkAEhZptBEO1FuvVeB1q1O2OmQrkLOv95NCI=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-api/2.2.0": { + "jar": "sha256-u6au4h0YX3LfiW80jw6nsRdcEc1mNzeZid+JnLSMl+E=", + "module": "sha256-AmOgtdQFEGmmFjJYOK5CGmxNAG3JsVWnpCkmYIiAC6c=", + "pom": "sha256-iG8sRJ+dvmQc0kPxk3FNegQlNrMCrEHHLVYOWmZmDIg=" + }, + "org/jetbrains/kotlin#kotlin-gradle-plugin-api/2.2.0/gradle813": { + "jar": "sha256-u6au4h0YX3LfiW80jw6nsRdcEc1mNzeZid+JnLSMl+E=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin-idea-proto/2.0.21": { "jar": "sha256-UzVXQrV7qOFvvfCiBDn4s0UnYHHtsUTns9puYL42MYg=", "pom": "sha256-OMyaLLf55K/UOcMQdvgzFThIsfftITMgCDXRtCDfbqs=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-idea/1.9.23": { - "jar": "sha256-jRr4djLZUUjxIqn6CuKQPBnub6t9AeAX924NLJoCLCA=", - "module": "sha256-G+uiuitRE94FM+UV4X9W1TZOm1QiX/MftNj+yfcV2Cw=", - "pom": "sha256-KemtQ1rc9Q/ljTiQ65lePyuNdQEZqaEsIfwwo2DNCOA=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-idea-proto/2.2.0": { + "jar": "sha256-QY4hdjJ20qlGFr6ZCCanRdWdTF2WY48LviERDSxWSTs=", + "pom": "sha256-w5AgQre9S2t3oY8+4f6ol9N7vroloD0Uqe7//hWCXn0=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin-idea/2.0.21": { "jar": "sha256-wfTqDBkmfx7tR0tUGwdxXEkWes+/AnqKL9B8u8gbjnI=", "module": "sha256-YqcNAg27B4BkexFVGIBHE+Z2BkBa6XoQ2P2jgpOI0Uk=", "pom": "sha256-1GjmNf3dsw9EQEuFixCyfcVm6Z1bVIusEMIjOp7OF74=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin-model/1.9.23": { - "jar": "sha256-Pljfrl5D/Ig2X1LfOjRCCMAQDJdacqlKLEoJ9mHTIxc=", - "module": "sha256-Evmlol5YCDEXnl2jBJoBMRi9B2zeCkUuZo8qsWCaz70=", - "pom": "sha256-sh8qITWUXCtLatLIi+Dnl1WH9HVgiTnn23sG2CfQNXg=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-idea/2.2.0": { + "jar": "sha256-7JacXwsJn4I4RiMiOPm9ZPPTdB5i6pBQrS5DL6150KA=", + "module": "sha256-r+m2AUJwBIVJuyAySjGdYkoFoLnmtBfmm2kHldfPDUs=", + "pom": "sha256-/ewxpJDZDsNuf5qj12xVDgqVq9Otg3lTvUn6E9pwFQ0=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin-model/2.0.21": { "jar": "sha256-lR13mJs1cAljH/HvsSsBYczzKcUpxUalKfih0x+bwDw=", "module": "sha256-6qn9n4b71E/2BwoZfce90ZgPDUHo20myUoA9A6pMVaw=", "pom": "sha256-5RVeYOyr2v1kUmVKaYALyyp37n0fxucH+tOo5p8HTCw=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugin/1.9.23": { - "module": "sha256-YL2BUHBNWByO6tTBlAh26LAor+ixS0lAEMUJIEclRKc=", - "pom": "sha256-TgznuA0cN7kRzb/kFf77ZdzvGCalGLF3vWAvlaloqMU=" - }, - "org/jetbrains/kotlin#kotlin-gradle-plugin/1.9.23/gradle82": { - "jar": "sha256-vMdKB8ad0RyUsmCx7ophiWlinMrqwubqCnedo8P37D8=" + "org/jetbrains/kotlin#kotlin-gradle-plugin-model/2.2.0": { + "jar": "sha256-Z6FKxCSqGWo0ax3Jn0QqbVc0WCrXt+epzN8oqc0rIJs=", + "module": "sha256-LC4w2DDqdpq6iX9PlvGeHoLY1qI/UzaJugn0GTMASYY=", + "pom": "sha256-bBzMOzcGY8KHIUn12briW/fpLqcVFepzxSlwlzbKMYk=" }, "org/jetbrains/kotlin#kotlin-gradle-plugin/2.0.21": { "module": "sha256-D5iXoGwHo+h9ZHExzDSQofctGuVMEH8T9yJp1TRLCHo=", @@ -405,33 +443,36 @@ "org/jetbrains/kotlin#kotlin-gradle-plugin/2.0.21/gradle85": { "jar": "sha256-nfXH/xOx/GislFDKY8UxEYkdb2R73ewPQ5iz5yJb9tk=" }, - "org/jetbrains/kotlin#kotlin-gradle-plugins-bom/1.9.23": { - "module": "sha256-1yNF4lW/IKOperXQEIa2CMXX0M8/Z3inHoXKy61BQlo=", - "pom": "sha256-2Ive7tm5RMrHGM3PKUD4FdgiXuzNIb7KB93QgfDSQow=" + "org/jetbrains/kotlin#kotlin-gradle-plugin/2.2.0": { + "module": "sha256-Y3w/yuVyOnQnAmwO2z3GeW3T/nmQ3CKG1PdJbt9dKYU=", + "pom": "sha256-E2FqOVx9n8Xc7iclKn9ocX2MaZTNEldL0dsxelGG1yE=" + }, + "org/jetbrains/kotlin#kotlin-gradle-plugin/2.2.0/gradle813": { + "jar": "sha256-g1xNwYoHMl9XkwUMfy52XSNcWWdJVo5HtZe0Sdhnlo0=" }, "org/jetbrains/kotlin#kotlin-gradle-plugins-bom/2.0.21": { "module": "sha256-8JRUh/5RlZ/fi2oUQXB6Ke1fGsMaIxx/3r4sPd0i/fE=", "pom": "sha256-Z1AT1Mvu4JyIkgriuiRvmfKKeJuHT2NASeAS+j7r9Mg=" }, - "org/jetbrains/kotlin#kotlin-klib-commonizer-api/1.9.23": { - "jar": "sha256-XfEWTbHDRdhtChqkFJCeNnr7l4L+P7yvDir3qL9iuDk=", - "pom": "sha256-sSWp19ccGThHr5KiJxxlUbPSl1VFSxyF03SySudVwz4=" + "org/jetbrains/kotlin#kotlin-gradle-plugins-bom/2.2.0": { + "module": "sha256-ur08SXopcd/GjlAlT/lwZak6Ixg+jto8OY+E9gzsErI=", + "pom": "sha256-2cRaL1cw6E6bhPpCxkoYdNy6ZmjyEsT+KXvqJdwAeHg=" }, "org/jetbrains/kotlin#kotlin-klib-commonizer-api/2.0.21": { "jar": "sha256-R1eJEWW2mPvazo9NpvK8DpiOrvnvNnE1SIZajycGmv0=", "pom": "sha256-Y/6HvSI1sSlAnHIqCbYsIKe3eueQGeIgMSSK9zawPFQ=" }, - "org/jetbrains/kotlin#kotlin-native-utils/1.9.23": { - "jar": "sha256-X9AUhb1z5he+VWv/SZL/ASquufDZwAhPN8tdiKO8rYQ=", - "pom": "sha256-eCaL6luL9QqV7nYxKuNjzAvWqt1d9HQwrBNaIG7467Y=" + "org/jetbrains/kotlin#kotlin-klib-commonizer-api/2.2.0": { + "jar": "sha256-8FcCw6bq725+hCNTvmT1jTMHGX4Vp/F5gE08VQcZ7mk=", + "pom": "sha256-6R0DUNf9G+4pyP9OP9bxcZBS7P6V98wXZtnVwnD3iQk=" }, "org/jetbrains/kotlin#kotlin-native-utils/2.0.21": { "jar": "sha256-ResIo5Kfl8SKkpEsliV3nRVAvG8/IS+56UYg0DJrzAA=", "pom": "sha256-ZpB3PnZJ0dD61V0GCaTiHh68mF3Q+iYenG/9OJhnBh0=" }, - "org/jetbrains/kotlin#kotlin-project-model/1.9.23": { - "jar": "sha256-j8s85RKrtFLX1DHbssMS1cRQXRdiSTtRsQavwUfZk2c=", - "pom": "sha256-nvSy89nZ9Zqwwr9+uO92MgUUmTjg540qIxxHiSHHl0U=" + "org/jetbrains/kotlin#kotlin-native-utils/2.2.0": { + "jar": "sha256-pOlvczba6EnznPK2NKU20CoqvfARS3M5Wty4yIGFDp4=", + "pom": "sha256-DafPXrsb0m4u/IkRhLzqM8tPKxwpNYEnr1MGHNataZY=" }, "org/jetbrains/kotlin#kotlin-reflect/1.6.10": { "jar": "sha256-MnesECrheq0QpVq+x1/1aWyNEJeQOWQ0tJbnUIeFQgM=", @@ -456,34 +497,18 @@ "jar": "sha256-nBEfjQit5FVWYnLVYZIa3CsstrekzO442YKcXjocpqM=", "pom": "sha256-lbLpKa+hBxvZUv0Tey5+gdBP4bu4G3V+vtBrIW5aRSQ=" }, - "org/jetbrains/kotlin#kotlin-scripting-common/1.9.23": { - "jar": "sha256-ii5Wfz2/Nz5hwBrNeIRjHshThGWrjul4rGMpb4zJr0Y=", - "pom": "sha256-/CiXW5TcQMDZD9EXXiKxtka60sY368+fT2qy1Oe8XdU=" - }, "org/jetbrains/kotlin#kotlin-scripting-common/2.0.21": { "jar": "sha256-+H3rKxTQaPmcuhghfYCvhUgcApxzGthwRFjprdnKIPg=", "pom": "sha256-hP6ezqjlV+/6iFbJAhMlrWPCHZ0TEh6q6xGZ9qZYZXU=" }, - "org/jetbrains/kotlin#kotlin-scripting-compiler-embeddable/1.9.23": { - "jar": "sha256-e4A5/wt3nVVs7QCSMDWr0TNPDl8qiHlhgtArpF+SbSA=", - "pom": "sha256-7Y6//r5Ume1iSG+oGBJ7td1QHXTEq5XFfnwB7z+NuWg=" - }, "org/jetbrains/kotlin#kotlin-scripting-compiler-embeddable/2.0.21": { "jar": "sha256-JBPCMP3YzUfrvronPk35TPO0TLPsldLLNUcsk3aMnxw=", "pom": "sha256-1Ch6fUD4+Birv3zJhH5/OSeC0Ufb7WqEQORzvE9r8ug=" }, - "org/jetbrains/kotlin#kotlin-scripting-compiler-impl-embeddable/1.9.23": { - "jar": "sha256-kOU90S9i3NgjQ8EsDLMUrc/wy8OYjtsRjR5miZYOnWM=", - "pom": "sha256-923kmO12xGroZlZnmAf3J2EiPD+hChExgyAGpKs5Xe0=" - }, "org/jetbrains/kotlin#kotlin-scripting-compiler-impl-embeddable/2.0.21": { "jar": "sha256-btD6W+slRmiDmJtWQfNoCUeSYLcBRTVQL9OHzmx7qDM=", "pom": "sha256-0ysb8kupKaL6MqbjRDIPp7nnvgbON/z3bvOm3ITiNrE=" }, - "org/jetbrains/kotlin#kotlin-scripting-jvm/1.9.23": { - "jar": "sha256-0/yn7JUf94Jvl6dZifjcr/YM+eHna73CIO33eDdqbmQ=", - "pom": "sha256-4u8r+y628hp7croS7cWaFQx/IXbCssVP4uhg7oAjDYc=" - }, "org/jetbrains/kotlin#kotlin-scripting-jvm/2.0.21": { "jar": "sha256-iEJ/D3pMR4RfoiIdKfbg4NfL5zw+34vKMLTYs6M2p3w=", "pom": "sha256-opCFi++0KZc09RtT7ZqUFaKU55um/CE8BMQnzch5nA0=" @@ -492,88 +517,92 @@ "module": "sha256-b134r2M2AKa5z7D8x2SvPVEZ83Zndne5G2rugWsdMKs=", "pom": "sha256-X0As+413MZW5ZwUBJMnom1+EsXJGThiUkpeJv1xMLyk=" }, - "org/jetbrains/kotlin#kotlin-stdlib-jdk7/1.8.21": { - "pom": "sha256-m7EH1dXjkwvFl38AekPNILfSTZGxweUo6m7g8kjxTTY=" + "org/jetbrains/kotlin#kotlin-stdlib-jdk7/2.0.21": { + "jar": "sha256-cS9IB2Dt7uSKhDaea+ifarUjdUCLsso74U72Y/cr7jE=", + "pom": "sha256-TXE+dTi5Kh15cX6nHPHQI1eoThFFDEbLkuMgee40224=" }, - "org/jetbrains/kotlin#kotlin-stdlib-jdk7/1.9.10": { - "jar": "sha256-rGNhv5rR7TgsIQPZcSxHzewWYjK0kD7VluiHawaBybc=", - "pom": "sha256-x/pnx5YTILidhaPKWaLhjCxlhQhFWV3K5LRq9pRe3NU=" - }, - "org/jetbrains/kotlin#kotlin-stdlib-jdk8/1.8.21": { - "pom": "sha256-ODnXKNfDCaXDaLAnC0S08ceHj/XKXTKpogT6o0kUWdg=" - }, - "org/jetbrains/kotlin#kotlin-stdlib-jdk8/1.9.10": { - "jar": "sha256-pMdNlNZM4avlN2D+A4ndlB9vxVjQ2rNeR8CFoR7IDyg=", - "pom": "sha256-X0uU3TBlp3ZMN/oV3irW2B9A1Z+Msz8X0YHGOE+3py4=" + "org/jetbrains/kotlin#kotlin-stdlib-jdk8/2.0.21": { + "jar": "sha256-FcjArLMRSDwGjRaXUBllR0tw39gKx5WA7KOgPPUeSh0=", + "pom": "sha256-MQ1tXGVBPjEQuUAr2AdfyuP0vlGdH9kHMTahj+cnvFc=" }, "org/jetbrains/kotlin#kotlin-stdlib/2.0.21": { "jar": "sha256-8xzFPxBafkjAk2g7vVQ3Vh0SM5IFE3dLRwgFZBvtvAk=", "module": "sha256-gf1tGBASSH7jJG7/TiustktYxG5bWqcpcaTd8b0VQe0=", "pom": "sha256-/LraTNLp85ZYKTVw72E3UjMdtp/R2tHKuqYFSEA+F9o=" }, - "org/jetbrains/kotlin#kotlin-tooling-core/1.9.23": { - "jar": "sha256-iTjrl+NjINqj5vsqYP0qBbIy/0pVcXPFAZ8EW4gy2fQ=", - "pom": "sha256-fiA0VIj7v1uf6ZeHNgvT7HRKb+qRppm9EbVhwygbB9g=" - }, "org/jetbrains/kotlin#kotlin-tooling-core/2.0.21": { "jar": "sha256-W28UhUj+ngdN9R9CJTREM78DdaxbOf/NPXvX1/YC1ik=", "pom": "sha256-MiVe/o/PESl703OozHf4sYXXOYTpGxieeRZlKb36XVo=" }, - "org/jetbrains/kotlin#kotlin-util-io/1.9.23": { - "jar": "sha256-em3OQOeKy+Zvx9Z463Qch3hFo8/Rx2xNK7+OyEXS2Sk=", - "pom": "sha256-rNHyN4Ce4nWpwJ5EAt1FOdBN7DaMCQbsecP4A6vwZ8g=" + "org/jetbrains/kotlin#kotlin-tooling-core/2.2.0": { + "jar": "sha256-dAFOxPPveM59p+Pmlk8sUmoxIdXFj++MopeeXzRFgvQ=", + "pom": "sha256-Fiq+zmN9Egvzs1mfJIETV3zey68Q1bInq3cFLmYykpM=" }, "org/jetbrains/kotlin#kotlin-util-io/2.0.21": { "jar": "sha256-Dv7kwg8+f5ErMceWxOR/nRTqaIA+x+1OXU8kJY46ph4=", "pom": "sha256-4gD5F2fbCFJsjZSt3OB7kPNCVBSwTs/XzPjkHJ8QmKA=" }, - "org/jetbrains/kotlin#kotlin-util-klib/1.9.23": { - "jar": "sha256-5AGLa4+8keTQo3q4HAUKgTloaAdRCM2FCCuSXHnTvG0=", - "pom": "sha256-+z5FhH1dIS5MK120RFGQPJ4fDjL2mH4fWbnMEcTDiYo=" + "org/jetbrains/kotlin#kotlin-util-io/2.2.0": { + "jar": "sha256-h//zwBlwqqkBGr3lZbtSoXmqbckDjFh4koHtK2jVji0=", + "pom": "sha256-NcfaTe0E3/GCIeDzgPo/NhIOvq2hOYOmEQtGWWaKbr0=" + }, + "org/jetbrains/kotlin#kotlin-util-klib-metadata/2.2.0": { + "jar": "sha256-nOOw3gU8uf8HoPcXyhQvKQp05NGdkzLbImq+D+thyB4=", + "pom": "sha256-XVJ2wbYor7xCBZ80CoTe/Uv7XroYJm3zdDYH5XftX4c=" }, "org/jetbrains/kotlin#kotlin-util-klib/2.0.21": { "jar": "sha256-oTtziWVUtI5L702KRjDqfpQBSaxMrcysBpFGORRlSeo=", "pom": "sha256-724nWZiUO5b1imSWQIUyDxAxdNYJ7GakqUnmASPHmPU=" }, + "org/jetbrains/kotlin#kotlin-util-klib/2.2.0": { + "jar": "sha256-FPB+vZrfvk6F+06/MSJSULL8P1Qo7OQ31O1j7D+prE0=", + "pom": "sha256-NU7YchvXXwfcCyQbiFg+7oLCTZIdN+lrctmNpi1ISEo=" + }, "org/jetbrains/kotlinx#kotlinx-coroutines-bom/1.6.4": { "pom": "sha256-qyYUhV+6ZqqKQlFNvj1aiEMV/+HtY/WTLnEKgAYkXOE=" }, - "org/jetbrains/kotlinx#kotlinx-coroutines-core-jvm/1.5.0": { - "jar": "sha256-eNbMcTX4TWkv83Uvz9H6G74JQNffcGUuTx6u7Ax4r7s=", - "module": "sha256-yIXdAoEHbFhDgm3jF+PLzcPYhZ2+71OuHPrNG5xg+W4=", - "pom": "sha256-U2IuA3eN+EQPwBIgGjW7S9/kAWTv7GErvvze7LL/wqs=" + "org/jetbrains/kotlinx#kotlinx-coroutines-bom/1.8.0": { + "pom": "sha256-Ejnp2+E5fNWXE0KVayURvDrOe2QYQuQ3KgiNz6i5rVU=" }, "org/jetbrains/kotlinx#kotlinx-coroutines-core-jvm/1.6.4": { "jar": "sha256-wkyLsnuzIMSpOHFQGn5eDGFgdjiQexl672dVE9TIIL4=", "module": "sha256-DZTIpBSD58Jwfr1pPhsTV6hBUpmM6FVQ67xUykMho6c=", "pom": "sha256-Cdlg+FkikDwuUuEmsX6fpQILQlxGnsYZRLPAGDVUciQ=" }, - "org/junit#junit-bom/5.7.2": { - "module": "sha256-87zrHFndT2mT9DBN/6WAFyuN9lp2zTb6T9ksBXjSitg=", - "pom": "sha256-zRSqqGmZH4ICHFhdVw0x/zQry6WLtEIztwGTdxuWSHs=" + "org/jetbrains/kotlinx#kotlinx-coroutines-core-jvm/1.8.0": { + "jar": "sha256-mGCQahk3SQv187BtLw4Q70UeZblbJp8i2vaKPR9QZcU=", + "module": "sha256-/2oi2kAECTh1HbCuIRd+dlF9vxJqdnlvVCZye/dsEig=", + "pom": "sha256-pWM6vVNGfOuRYi2B8umCCAh3FF4LduG3V4hxVDSIXQs=" }, - "org/junit#junit-bom/5.9.1": { - "module": "sha256-kCbBZWaQ+hRa117Og2dCEaoSrYkwqRsQfC9c3s4vGxw=", - "pom": "sha256-sWPBz8j8H9WLRXoA1YbATEbphtdZBOnKVMA6l9ZbSWw=" + "org/junit#junit-bom/5.10.3": { + "module": "sha256-qnlAydaDEuOdiaZShaqa9F8U2PQ02FDujZPbalbRZ7s=", + "pom": "sha256-EJN9RMQlmEy4c5Il00cS4aMUVkHKk6w/fvGG+iX2urw=" + }, + "org/junit#junit-bom/5.11.4": { + "module": "sha256-qaTye+lOmbnVcBYtJGqA9obSd9XTGutUgQR89R2vRuQ=", + "pom": "sha256-GdS3R7IEgFMltjNFUylvmGViJ3pKwcteWTpeTE9eQRU=" }, "org/junit#junit-bom/5.9.3": { "module": "sha256-tAH9JZAeWCpSSqU0PEs54ovFbiSWHBBpvytLv87ka5M=", "pom": "sha256-TQMpzZ5y8kIOXKFXJMv+b/puX9KIg2FRYnEZD9w0Ltc=" }, + "org/mockito#mockito-bom/4.11.0": { + "pom": "sha256-2FMadGyYj39o7V8YjN6pRQBq6pk+xd+eUk4NJ9YUkdo=" + }, "org/ow2#ow2/1.5.1": { "pom": "sha256-Mh3bt+5v5PU96mtM1tt0FU1r+kI5HB92OzYbn0hazwU=" }, - "org/ow2/asm#asm-commons/9.4": { - "jar": "sha256-DBKKnsPzPJiVknL20WzxQke1CPWJUVdLzb0rVtYyY2Q=", - "pom": "sha256-tCyiq8+IEXdqXdwCkPIQbX8xP4LHiw3czVzOTGOjUXk=" + "org/ow2/asm#asm-commons/9.8": { + "jar": "sha256-MwGhwctMWfzFKSZI2sHXxa7UwPBn376IhzuM3+d0BPQ=", + "pom": "sha256-95PnjwH3A3F9CUcuVs3yEv4piXDIguIRbo5Un7bRQMI=" }, - "org/ow2/asm#asm-tree/9.4": { - "jar": "sha256-xC1HnPJFZqIesgr37q7vToa9tKiGMGz3L0g7ZedbKs8=", - "pom": "sha256-x+nvk73YqzYwMs5TgvzGTQAtbFicF1IzI2zSmOUaPBY=" + "org/ow2/asm#asm-tree/9.8": { + "jar": "sha256-FLeIDLfIXu0QHicQQy/D/7gydVMqaolNxMQJXUmtWfE=", + "pom": "sha256-cUnn+qDhkSlvh5ru2SCciULTmPBpjSzKGpxijy4qj3c=" }, - "org/ow2/asm#asm/9.4": { - "jar": "sha256-OdDis9xFr2Wgmwl5RXUKlKEm4FLhJPk0aEQ6HQ4V84E=", - "pom": "sha256-SDdR5I+y0fQ8Ya06sA/6Rm7cAzPY/C/bWibpXTKYI5Q=" + "org/ow2/asm#asm/9.8": { + "jar": "sha256-h26raoPa7K1cpn65/KuwY8l7WuuM8fynqYns3hdSIFE=", + "pom": "sha256-wTZ8O7OD12Gef3l+ON91E4hfLu8ErntZCPaCImV7W6o=" }, "org/slf4j#slf4j-api/1.7.32": { "jar": "sha256-NiT4R0wa9G11+YvAl9eGSjI8gbOAiqQ2iabhxgHAJ74=", @@ -595,17 +624,17 @@ "org/sonatype/oss#oss-parent/7": { "pom": "sha256-tR+IZ8kranIkmVV/w6H96ne9+e9XRyL+kM5DailVlFQ=" }, - "org/springframework#spring-framework-bom/5.3.24": { - "module": "sha256-GZbh9hfLA/p26hGFD+Kh4gsOMKEEa6bV2zvbv0QRP84=", - "pom": "sha256-U1ITVmu77+Jjag1OjdGnOt5hLiQwyP/TENzCo7O5ukE=" + "org/springframework#spring-framework-bom/5.3.39": { + "module": "sha256-+ItA4qUDM7QLQvGB7uJyt17HXdhmbLFFvZCxW5fhg+M=", + "pom": "sha256-9tSBCT51dny6Gsfh2zj49pLL4+OHRGkzcada6yHGFIs=" }, "org/tukaani#xz/1.9": { "jar": "sha256-IRswbPxE+Plt86Cj3a91uoxSie7XfWDXL4ibuFX1NeU=", "pom": "sha256-CTvhsDMxvOKTLWglw36YJy12Ieap6fuTKJoAJRi43Vo=" }, - "org/vafer#jdependency/2.8.0": { - "jar": "sha256-v9LMfhv8eKqDtEwKVL8s3jikOC7CRyivaD2Y3GvngZI=", - "pom": "sha256-EBhn8/npJlei74mjELYE1D0JDJuQqj4LBS3NFqO78y0=" + "org/vafer#jdependency/2.13": { + "jar": "sha256-FFxghksjansSllUNMaSap1rWEpWBOO4NRxufywu+3T4=", + "pom": "sha256-3Ip1HRudXz2imiihDmKF62+3Q/TW46MleRsZX9B4eXs=" }, "se/patrikerdes#gradle-use-latest-versions-plugin/0.2.18": { "jar": "sha256-P9Qm3NYf3dX9FvhkBJyopVQtN1FAfhLNJs/FyeFay60=", @@ -624,45 +653,46 @@ "jar": "sha256-Ct3sZw/tzT8RPFyAkdeDKA0j9146y4QbYanNsHk3agg=", "pom": "sha256-JugjMBV9a4RLZ6gGSUXiBlgedyl3GD4+Mf7GBYqppZs=" }, - "ch/qos/logback#logback-classic/1.5.6": { - "jar": "sha256-YRXGysXtHZ24ENFPL39N1qnyHwrLuoAW5NqsoroPXrg=", - "pom": "sha256-SysA32EjwOKmHnG1vis/AHOWeLtLBplA1cScJN9T9Zo=" + "ch/qos/logback#logback-classic/1.5.18": { + "jar": "sha256-PhUz0DIfiBXu9GdQruARG0FVT5pGRMPE0tQEdEsJ9g8=", + "pom": "sha256-1VfNKrI95KR+zocGQhYqn5Rzn80LHDE+J4MlFO4gODM=" }, - "ch/qos/logback#logback-core/1.5.6": { - "jar": "sha256-iYx9EgGZ834azIEY2XqxWk0CsOcuJ7qfBYQ8s3ThYMY=", - "pom": "sha256-BpPQaN02h3R1rYCQbjHHvA1RlbgtTAB1HcGcHqUR5xE=" + "ch/qos/logback#logback-core/1.5.18": { + "jar": "sha256-hROee1e0ZPjl42Mm3YExdki+0ZnMxPmM1CWF+NdXECc=", + "pom": "sha256-x3JHKX1dm7ngTpLUyC51xujqviRUNokvkRQzW4t5DIM=" }, - "ch/qos/logback#logback-parent/1.5.6": { - "pom": "sha256-e9/LJJJGgaSRRNujSpJ7i9B5INCS6sw972H55kevTeg=" + "ch/qos/logback#logback-parent/1.5.18": { + "pom": "sha256-U8PiGxI7vTijAbQNDYFAlOrUehAj0h1hPMdI1w57nGk=" }, - "com/fifesoft#autocomplete/3.3.1": { - "jar": "sha256-C44PYoZELz7ejDWd1CAy75/fGmu6zoUSQY98ypCstck=", - "module": "sha256-L1G7pxftqDgbD+DkTUgZXiRO6lMjVNePJIhbLsicC3M=", - "pom": "sha256-+tECFvCORJesDE3pkY7IHBT7X7WiZlCd6K+G+n9cSP4=" + "com/fifesoft#autocomplete/3.3.2": { + "jar": "sha256-bn+4bT9V9p8TogCk2qagTht1P4/TadoFe015KtxpQ1A=", + "module": "sha256-fOqonK0zGDCGxKuU/sJF9outzqpxDfy2PZ8ajmJ9kao=", + "pom": "sha256-bKhazD7s8LTdfQIA0cMm+ZHInY4KADqVbI9dS4kc7t0=" }, - "com/fifesoft#rsyntaxtextarea/3.4.0": { - "jar": "sha256-5ng+3vkxIHl2TTDcpgdImWaBiUYQnfMjzdB9f6+sWEw=", - "module": "sha256-04S6z91b5oIuhBFEgtlsT0htPC6fHExgK4a12kM6urk=", - "pom": "sha256-9zzLgNZ8ZouF6jFU8wQVxzKjOBNA9nMfrLRRK4Dn4gQ=" + "com/fifesoft#rsyntaxtextarea/3.6.0": { + "jar": "sha256-vwDsEBV5jt1DPD363ww0oSo5W4wBD4+f2Oxv9PROuUw=", + "module": "sha256-xmVm3lcpsQkmEimKqWaVtUVpPUEILd60RR/sASa4/Ao=", + "pom": "sha256-Mqfj1XMX7NOR6CDwohJLT5jOHONfMnVRkuxDPDUH3bA=" }, - "com/formdev#flatlaf-extras/3.4.1": { - "jar": "sha256-dNrV+g2VLSxTWRHXYrC4GASAFtsI9fD+eafRzKGDBR8=", - "module": "sha256-7Ilq8ao7FDgpXP/7qonr1EDlmsPJJCeriVgf//mkrqk=", - "pom": "sha256-kTixZ2T8lnEAYetgExKlrG+RNMIxoZaEwHbAJ6r6OG8=" + "com/formdev#flatlaf-extras/3.6.1": { + "jar": "sha256-dmhnNOb5/Ol/Y5Im5fwl5eVDr3ImbveHqOHkxCJH88Y=", + "module": "sha256-hwgeutrjWeRL8vdhZkxF79z1xp3teqoo+xTr1YXu9yE=", + "pom": "sha256-aDdHBv0cyESicT7bzc4I8WXVpEvi13uQaeL5GfOIm48=" }, - "com/formdev#flatlaf-intellij-themes/3.4.1": { - "jar": "sha256-VuTWi5tRVrm3B7b9cV8DoRXv5+Bi9ep54j21HjQvfVI=", - "module": "sha256-tqXOKz+zuARVMSftJdybbvb9T5Nag5DsVhdymT30DWc=", - "pom": "sha256-CR+0CuMik01CkYtivUsLMr48YE/nL4bniFAdRMkKWwA=" + "com/formdev#flatlaf-intellij-themes/3.6.1": { + "jar": "sha256-YHXCEQhEQ4GDHIJhP62TYlLlpsUEtbLO+XMKbUMVfEo=", + "module": "sha256-g0//zIdFt5QhhAUrqR/BALgZvRN4BW1oce5lAh0nrEY=", + "pom": "sha256-PYMP6kurJWAhz8FBz/g/iX/dvMZCjIf6lGQaBLjBBIc=" }, - "com/formdev#flatlaf/3.4.1": { - "jar": "sha256-i0u9NHJ/gOdFVbK+PY3LmUQ0ZUmGxk9CmBYiR6nTX/w=", - "module": "sha256-502kfUULFIuZ6nNQZF59eq6gowVRb+S0AqKeNHLrdug=", - "pom": "sha256-/TzfkQf7kvOfkh3VrjNuddNKQiz3khC7dzX4a1coiHE=" + "com/formdev#flatlaf/3.6.1": { + "jar": "sha256-aHvjPh4++s4Wgf0ZRzLRbgCBJqR7YRa0MB5wcMkYxMk=", + "module": "sha256-phK1Rc8f/jb1GX7p5yXf6q96zvHPmHLOrMHlecqOf50=", + "pom": "sha256-u6AoVRioQLrEe0uVJIOcy35nOIuadLEylayrCsTEz3U=" }, - "com/github/akarnokd#rxjava2-swing/0.3.7": { - "jar": "sha256-umWvI1GP+Ucha7S+kDC7AavSQkHOEy3oPoUdC81S7n4=", - "pom": "sha256-VCbDiy18y9Z5qiBuF6TPrxPrk3IPPnjPjdckAjfNnLE=" + "com/github/akarnokd#rxjava3-swing/3.1.1": { + "jar": "sha256-2H3T5XYXeUxIRk1lpvp3kCWambem9Z0Geih+3fq9Pww=", + "module": "sha256-xMli/6423UM7+nbvHfXgd7g4uaVZlwczeMt4ND+IXsQ=", + "pom": "sha256-yL7WB6VweQo4smB1TTX5bOww/qPT+F5ocUXOM5t3MQ4=" }, "com/github/javafaker#javafaker/1.0.2": { "jar": "sha256-75WuRoCX83iIC+aajGdW+NFRgODwdUf7Cplhf/Qhsqw=", @@ -672,9 +702,9 @@ "jar": "sha256-j4ziM8M14I4ROj+Ved4QRvsZkn6CRosbvrzWy6h2C4E=", "pom": "sha256-R2QJlPzU46EZStsn0s/kEQII7qlCwgSDTZailCVt5hQ=" }, - "com/github/weisj#jsvg/1.4.0": { - "jar": "sha256-Lx6hn7lhHMovfQaGqbAxPLDfjNy6Bz31dLXNGmyKhqI=", - "pom": "sha256-GMmalZVvTdu7NNN5YLI7va+bbWNDWQgPVCCU7JQISPM=" + "com/github/weisj#jsvg/2.0.0": { + "jar": "sha256-gfya2lefw/SSTsNfkEwEPeE+6PuigDIuY4xwkgBvG1I=", + "pom": "sha256-Guxlwy/utQYjbKc4rAoRwCwdslicZZzWFfDomcAyFic=" }, "com/google#google/5": { "pom": "sha256-4J00XnPKP7yn8+BfMN63Tp053Wt5qT/ujFEfI0F7aCg=" @@ -683,23 +713,30 @@ "jar": "sha256-dmrSoHg/JoeWLIrXTO7MOKKLn3Ki0IXuQ4t4E+ko0Mc=", "pom": "sha256-GYidvfGyVLJgGl7mRbgUepdGRIgil2hMeYr+XWPXjf4=" }, - "com/google/code/gson#gson-parent/2.10.1": { - "pom": "sha256-QkjgiCQmxhUYI4XWCGw+8yYudplXGJ4pMGKAuFSCuDM=" + "com/google/code/gson#gson-parent/2.13.1": { + "pom": "sha256-+IEKzlDd/j/ag9ESbeZdmdXSUVoUo2uIvrG5mkdpeDY=" }, - "com/google/code/gson#gson/2.10.1": { - "jar": "sha256-QkHBSncnw0/uplB+yAExij1KkPBw5FJWgQefuU7kxZM=", - "pom": "sha256-0rEVY09cCF20ucn/wmWOieIx/b++IkISGhzZXU2Ujdc=" + "com/google/code/gson#gson/2.13.1": { + "jar": "sha256-lIVZQtSZLxEpRtPeHDNOcJI3uBJtgTC/B4B8AYpKISA=", + "pom": "sha256-wPZXItdcDljNGDWzBGBG9ga12mmZBBYfjba3j+ubQBo=" }, - "com/google/errorprone#error_prone_annotations/2.26.1": { - "jar": "sha256-3iXy2aIVZSm9dl9R2O/fwN+nMB4E77nMdbfxDPXQ4Ps=", - "pom": "sha256-rqfpkeLf3LR/X71QhYdTX3gCvLni/C1Ou1C+QbaE2p8=" + "com/google/errorprone#error_prone_annotations/2.36.0": { + "jar": "sha256-d0QOJwsLyaJJkDxaB2w2pyLEiGyk9CZ18pA6HFPtYaU=", + "pom": "sha256-15z9N8hfdta3VMdQHuHchEe3smQsI4LXeCUhZr0zHpw=" + }, + "com/google/errorprone#error_prone_annotations/2.38.0": { + "jar": "sha256-ZmHVM1CQpfxh3YadIJW8bB4hVuOqR6bkq6vfZMmaeIk=", + "pom": "sha256-MAe++K/zro6hLYHD/qy08Vl5ss9cPjj8kYmpjeoUEWc=" }, "com/google/errorprone#error_prone_annotations/2.7.1": { "jar": "sha256-zVJXwIokbPhiiBeuccuCK+GS75H2iByko/z/Tx3hz/M=", "pom": "sha256-Mahy4RScXzqLwF+03kVeXqYI7PrRryIst2N8psdi7iU=" }, - "com/google/errorprone#error_prone_parent/2.26.1": { - "pom": "sha256-SmrQDTGwpa3Nmk9gUGXVtEX65KBMv4J+XRrBB34vgU0=" + "com/google/errorprone#error_prone_parent/2.36.0": { + "pom": "sha256-Okz8imvtYetI6Wl5b8MeoNJwtj5nBZmUamGIOttwlNw=" + }, + "com/google/errorprone#error_prone_parent/2.38.0": { + "pom": "sha256-5iRYpqPmMIG8fFezwPrJ8E92zjL2BlMttp/is9R7k0w=" }, "com/google/errorprone#error_prone_parent/2.7.1": { "pom": "sha256-Cm4kLigQToCTQFrjeWlmCkOLccTBtz/E/3FtuJ2ojeY=" @@ -708,9 +745,9 @@ "jar": "sha256-oXHuTHNN0tqDfksWvp30Zhr6typBra8x64Tf2vk2yiY=", "pom": "sha256-6WBCznj+y6DaK+lkUilHyHtAopG1/TzWcqQ0kkEDxLk=" }, - "com/google/guava#failureaccess/1.0.2": { - "jar": "sha256-io+Bz5s1nj9t+mkaHndphcBh7y8iPJssgHU+G0WOgGQ=", - "pom": "sha256-GevG9L207bs9B7bumU+Ea1TvKVWCqbVjRxn/qfMdA7I=" + "com/google/guava#failureaccess/1.0.3": { + "jar": "sha256-y/w5BrGbj1XdfP1t/gqkUy6DQlDX8IC9jSEaPiRrWcs=", + "pom": "sha256-xUvv839tQtQ+FHItVKUiya1R75f8W3knfmKj6/iC87s=" }, "com/google/guava#guava-parent/26.0-android": { "pom": "sha256-+GmKtGypls6InBr8jKTyXrisawNNyJjUWDdCNgAWzAQ=" @@ -718,17 +755,20 @@ "com/google/guava#guava-parent/31.0.1-jre": { "pom": "sha256-s7a2qnCZwRgXrO6FsyL9kffuMq6mn+CD7jbIc17AZ4g=" }, - "com/google/guava#guava-parent/33.1.0-jre": { - "pom": "sha256-D73wcsyo4Fa6MVQrt18MFJCRRABYbUukIuz8fR38ecY=" + "com/google/guava#guava-parent/33.4.0-android": { + "pom": "sha256-ciDt5hAmWW+8cg7kuTJG+i0U8ygFhTK1nvBT3jl8fYM=" + }, + "com/google/guava#guava-parent/33.4.8-jre": { + "pom": "sha256-oDxRmaG+FEQ99/1AuoZzscaq4E3u9miM59Vz6kieOiA=" }, "com/google/guava#guava/31.0.1-jre": { "jar": "sha256-1b6U1l6HvSGfsxk60VF7qlWjuI/JHSHPc1gmq1rwh7k=", "pom": "sha256-K+VmkgwhxgxcyvKCeGfK/3ZmRuIRO3/MPunCSkCy85Y=" }, - "com/google/guava#guava/33.1.0-jre": { - "jar": "sha256-NGrsDrjImHNgyKJk5w/xDC+6dgRG6yfoqwfnjnh6df4=", - "module": "sha256-6qUNmCgORsANUYq/FUgp3pm1lm0bb+KLffHVvZB+dKg=", - "pom": "sha256-VXQa0W+Yzubm3Ard3UOAacxeP/KaJuMXXU/qKHaSVLc=" + "com/google/guava#guava/33.4.8-jre": { + "jar": "sha256-89f1f2f9Yi9NRo391pKzpeOQkkbCgBesMmNAXw/mF+0=", + "module": "sha256-WKM1cwMGmiGTDnuf6bhk3ov7i9RgdDPb5IJjRZYgz/w=", + "pom": "sha256-BDZdS27yLIz5NJ/mKAafw+gaLIODUUAu9OlfnnV77rw=" }, "com/google/guava#listenablefuture/9999.0-empty-to-avoid-conflict-with-guava": { "jar": "sha256-s3KgN9QjCqV/vv/e8w/WEj+cDC24XQrO0AyRuXTzP5k=", @@ -754,47 +794,90 @@ "com/google/protobuf#protobuf-bom/3.25.3": { "pom": "sha256-tG4/Jv4PRz/zMHfuEkX4jUuNs1zHn1VM0P2Td2akXlg=" }, + "com/google/protobuf#protobuf-bom/3.25.5": { + "pom": "sha256-CA4phBcyOLUOBkwiav/7sbAjNSApXHkKf9PWrkWT8GM=" + }, "com/google/protobuf#protobuf-java/3.25.3": { "jar": "sha256-6Q2N25Y7IKlypqWbUJOt4rB8vlRsqzJ5qvQ4MmA4X1g=", "pom": "sha256-we+sGuAPC7q2VkKOGWtjaYyRTQ3SK+EgcQvv/EgctUc=" }, + "com/google/protobuf#protobuf-java/3.25.5": { + "jar": "sha256-hUAkf62eBrrvqPtF6zE4AtAZ9IXxQwDg+da1Vu2I51M=", + "pom": "sha256-51IDIVeno5vpvjeGaEB1RSpGzVhrKGWr0z5wdWikyK8=" + }, "com/google/protobuf#protobuf-parent/3.25.3": { "pom": "sha256-vCdEYIzqOnotTNC3Thw/iBOMZM5aphudfwr9hGiCvno=" }, + "com/google/protobuf#protobuf-parent/3.25.5": { + "pom": "sha256-ZMwOOtboX1rsj53Pk0HRN56VJTZP9T4j4W2NWCRnPvc=" + }, "com/jakewharton/android/repackaged#dalvik-dx/14.0.0_r21": { "jar": "sha256-mxO8gL+G8ZP43pyVn1Ko/4P8haHMVS9RJvEUDam4WjY=", "module": "sha256-8Q+igZNroSWzuB8fbmJoN2l1y5JmY90lKT4zF1TiMMc=", "pom": "sha256-73W51oRyNhwuRsFGzwTSBjeicvTKTFEGqXBIcZn3aY4=" }, - "com/pinterest/ktlint#ktlint-cli-ruleset-core/1.2.1": { - "jar": "sha256-5O9GJ/nf6CD16tU35SVH2g5VYovaYakmdg8Mm8TqUAY=", - "module": "sha256-g3XiwjEiwLDsPtUmTSaTlX+/CGb2hpY3CWAK+gLf0m0=", - "pom": "sha256-A6DNgrSvn7+apstQemJBdvdEs6T/w7t3iisiE/aM95Q=" + "com/pinterest/ktlint#ktlint-cli-ruleset-core/1.7.0": { + "jar": "sha256-aSE1PN1bpHXYCnOdq8cRG+A1bCY71iUzOIytLhkaLx8=", + "module": "sha256-Luc8GbjqvMN3Q5uchyvvabocQoGcnkYeIXzA+1KQYbc=", + "pom": "sha256-BtZCBH2tttyxCPbScugcUQIDQvps9Vd6MTaUGhUXKGw=" }, - "com/pinterest/ktlint#ktlint-logger/1.2.1": { - "jar": "sha256-5jQ4/lurR/Gy/dmAV34yx8ANcBm1QywGoPHCzbwJa3w=", - "module": "sha256-fDiaF+bGkYRv60Rz/vwyz8Oeklk4UmkwDq3M2y8EW/A=", - "pom": "sha256-9lFUgbaf8dX/DxsAqldcN6Rvjz50k+MYHSM1pM1r42U=" + "com/pinterest/ktlint#ktlint-logger/1.7.0": { + "jar": "sha256-nQGDNMqltOMSvCrBB/HXftRIhTst7E58Fd/EUOq5haM=", + "module": "sha256-CDFkZ7kh8GXHcmSokGJC9C+GI9yQHzlpnoG4jVkOp1c=", + "pom": "sha256-aU9M6U00dtJSTyiglfKEzblHUg7C8RPlWzDA5j2hWvY=" }, - "com/pinterest/ktlint#ktlint-rule-engine-core/1.2.1": { - "jar": "sha256-7v513SmnxlyZFe9WZ5w6v9MEZeqKLSg0msepyW6AIsk=", - "module": "sha256-ejPrG4FlwhAEDn/ZsFtmRGphmGY/syZ+a0Re5gfQhHU=", - "pom": "sha256-E4IT0LNF7LNQaVLkMaOGV+84bz4Ou3jZR+jcs1ZB3Nw=" + "com/pinterest/ktlint#ktlint-rule-engine-core/1.7.0": { + "jar": "sha256-i+H0o/B4TLKBYRUegYPd9SfI+w17LcyrfhJihlRZ2TA=", + "module": "sha256-dSltcScSQp40bHV20PFr1xeFjz/YX2Tt0gjSa99wPUg=", + "pom": "sha256-Ad9xiZtE9FFVYi5KvBSRJh9+OzInhHypoyTfrvthlsw=" }, - "com/pinterest/ktlint#ktlint-rule-engine/1.2.1": { - "jar": "sha256-Aj/1a/e7WRYNECVrmooE8q++LcZDxA8qCZEVVKSRUrQ=", - "module": "sha256-Oxa+KQvuSddVUNz3jWWvCwm9W+LWaxh5kZSU3HH99y4=", - "pom": "sha256-iwzFIes9tn1sULMFiz1Gerket9Ko9JnfPg8iRaG8RSA=" + "com/pinterest/ktlint#ktlint-rule-engine/1.7.0": { + "jar": "sha256-JrQ2K546xfZ8rFsxcR+75s84P05Q0ukHrY3s+QSQWT8=", + "module": "sha256-+a25UlPFYcgDaNwMCl/wH5R+y6TjdkbWGJQkk+hBdEQ=", + "pom": "sha256-OYIMXIqpU1YlzGZsYNLLtxEQ1dxMpZP2/T6/JFssyl0=" }, - "com/pinterest/ktlint#ktlint-ruleset-standard/1.2.1": { - "jar": "sha256-ip6NR4pSAdmxmMLpQtWgs2ck9mJsxvgHkTLeugN2DBs=", - "module": "sha256-qK8UNNcp5XrEo0u11SoLNN1nCBmovG3m8MhxTxw8D9Q=", - "pom": "sha256-wdTdk387yItHaK0Vn9PO7BU6h5RsAo8tn65nrvAYLc4=" + "com/pinterest/ktlint#ktlint-ruleset-standard/1.7.0": { + "jar": "sha256-Glx/pWr/+1jAgfyDXz4iTKa74e9yAGReio8qMmS0u/E=", + "module": "sha256-kaym0lyJxMkR/uioivXjrW6f+gvekTD3pQ8K1bnJSEo=", + "pom": "sha256-/nAz5KR6NDQk5uRj1z268WxewmJD3cGUPvctYa99FNo=" }, "com/puppycrawl/tools#checkstyle/9.3": { "jar": "sha256-BGPjBJgPVGC5ZPSBzMJaEPslO2AQDBnlD8mSiSiVl38=", "pom": "sha256-p9y0ZmVtZ/oKUNkE/d8U/GtTmEa4FO3/djXHRdW9MDQ=" }, + "com/twelvemonkeys#twelvemonkeys/3.12.0": { + "pom": "sha256-ttCYdPvd2bslDReBepMe+OCTvBjnQob/BrBAVBmAxzA=" + }, + "com/twelvemonkeys/common#common-image/3.12.0": { + "jar": "sha256-YqOCHHJPrf2jRsHi2DsMUGoMQHS+JppSv04xksfdkrw=", + "pom": "sha256-Mvxj0YSlsUAz7Z6uKPTH91cL6IUMZ+80q1DIpb3qlX8=" + }, + "com/twelvemonkeys/common#common-io/3.12.0": { + "jar": "sha256-v6z+sCrKxH2/0fqwAC6uymVUfQQklJi2VDIMng/fZkc=", + "pom": "sha256-X7G3pgrtAmv+FsK7u0MDlUfe3Q1OYT6AEnuTtKLFY1k=" + }, + "com/twelvemonkeys/common#common-lang/3.12.0": { + "jar": "sha256-XGXlBLW2TYBoPg+nCh3RVN2D1N59o38h6VD1qcA7xm0=", + "pom": "sha256-nFFSKc9KTl73IdpjR/+hm5wCetXeEHmQWUBdf6MtjVI=" + }, + "com/twelvemonkeys/common#common/3.12.0": { + "pom": "sha256-2prJlYu3TvpH0EAuhjHAw4djh0qVMDcP9X8HMTLJVv8=" + }, + "com/twelvemonkeys/imageio#imageio-core/3.12.0": { + "jar": "sha256-NMb5G/OyF+0BFbzoKDI4+9AmRWKqaCtCJqOWDQ7emBU=", + "pom": "sha256-N9att80pHm9n9inza8bpGiV6VFjj7lgf7BJ/aZIYG3g=" + }, + "com/twelvemonkeys/imageio#imageio-metadata/3.12.0": { + "jar": "sha256-eX0Ca2fQfm1esAoatTpVrKq2+Apxxe4yVXIJPrkMDKo=", + "pom": "sha256-kIUqjzz4kZBqjShwC8/EQ/EZd1iEbm7lZR1pHBNCrpw=" + }, + "com/twelvemonkeys/imageio#imageio-webp/3.12.0": { + "jar": "sha256-Q9xEfM/jTFxcb10xGQJw4fm/ZfYDddaXriqP9DNGhSY=", + "pom": "sha256-YciGwb7ZmY5w46JD9w11sWV7CIAgf+FdOgbEh7LhQfg=" + }, + "com/twelvemonkeys/imageio#imageio/3.12.0": { + "pom": "sha256-ZI62q9rpluXh0kjqy1Gk3LYD4uwnHK6Mjh8PnLpK+Pk=" + }, "commons-beanutils#commons-beanutils/1.9.4": { "jar": "sha256-fZOMgXiQKARcCMBl6UvnX8KAUnYg1b1itRnVg4UyNoo=", "pom": "sha256-w1zKe2HUZ42VeMvAuQG4cXtTmr+SVEQdp4uP5g3gZNA=" @@ -807,26 +890,22 @@ "jar": "sha256-7urpF5FxRKaKdB1MDf9mqlxcX9hVk/8he87T/Iyng7g=", "pom": "sha256-1dgfzCiMDYxxHDAgB8raSqmiJu0aES1LqmTLHWMiFws=" }, - "commons-io#commons-io/2.11.0": { - "jar": "sha256-lhsvbYfbrMXVSr9Fq3puJJX4m3VZiWLYxyPOqbwhCQg=", - "pom": "sha256-LgFv1+MkS18sIKytg02TqkeQSG7h5FZGQTYaPoMe71k=" + "commons-io#commons-io/2.18.0": { + "jar": "sha256-88oPjWPEDiOlbVQQHGDV7e4Ta0LYS/uFvHljCTEJz4s=", + "pom": "sha256-Y9lpQetE35yQ0q2yrYw/aZwuBl5wcEXF2vcT/KUrz8o=" }, - "commons-io#commons-io/2.16.1": { - "jar": "sha256-9B97qs1xaJZEes6XWGIfYsHGsKkdiazuSI2ib8R3yE8=", - "pom": "sha256-V3fSkiUceJXASkxXAVaD7Ds1OhJIbJs+cXjpsLPDj/8=" + "commons-io#commons-io/2.20.0": { + "jar": "sha256-35C7oP48tYa38WTnj+j49No/LdXCf6ZF+IgQDMwl3XI=", + "pom": "sha256-vb34EHLBkO6aixgaXFj1vZF6dQ+xOiVt679T9dvTOio=" }, - "dev/dirs#directories/26": { - "jar": "sha256-bRj+Jaowt+CLkIzSEVHY+W4illxkCs13Ua3Zu/5hN9Q=", - "pom": "sha256-/I3n/GawcvT21bNv67uZx1DG75JxViX1o9hJlAWpRoI=" + "dev/drewhamilton/poko#poko-annotations-jvm/0.19.1": { + "jar": "sha256-cdioOz1YNLjnJqOB7m/aLRGdj2fqg91bs25Z1kSdJZk=", + "module": "sha256-JkMLbthSQENpG84PSk6kbY9UEn45bk7X014OAdGeo/Q=", + "pom": "sha256-XjiDNrVdrYtNO2UeNwBiYyKkijl+z6er8AD4BpKCtII=" }, - "dev/drewhamilton/poko#poko-annotations-jvm/0.15.2": { - "jar": "sha256-O8uWdwrFIHXEMSAeKf1eZ5JENVVd8i9eWrJgK3t3NjU=", - "module": "sha256-ZFxFBOI647Y2QStpkR6E8nK81dVDR+MStHVQPyKW/ow=", - "pom": "sha256-DoYUpIzw8+CiAxa0mUdqHrNL2j56gYMHk2NWNnf+x3E=" - }, - "dev/drewhamilton/poko#poko-annotations/0.15.2": { - "module": "sha256-uvNQLqdKKd+usAFL9ZL3zOpwdo6pl53mKwzsqlqqgdo=", - "pom": "sha256-HMwGrmeHr3B+lJIsKfUDXxWcHq/vZSlENWM/gktbqs0=" + "dev/drewhamilton/poko#poko-annotations/0.19.1": { + "module": "sha256-VDz/aksLlGs9IVBl/bWhx4vJv7+sec9q1YNYHaGXbRw=", + "pom": "sha256-MRkz5tRuSyQP0JEzo/vLDaUfhRoekSsF3dXf3lpu1UE=" }, "dk/brics/automaton#automaton/1.11-8": { "jar": "sha256-okR19sz+HMek/p404Fzmh7DODG6Mt4Hg7O07GGSCxh4=", @@ -840,10 +919,29 @@ "jar": "sha256-R1TZbq9TFPNaKH2lxnhIsoUGeGj8ptH1Ehp09n8GW2E=", "pom": "sha256-3q4p2lxR4/6dla9ujzkVbCvBt0niQtATbp4jIINIF5k=" }, - "io/github/oshai#kotlin-logging-jvm/6.0.9": { - "jar": "sha256-sJ09vL00jonj5Q41QCUVmB5qeaZHsQckg272yA64sUo=", - "module": "sha256-MM7rf5aCBVhG5DxreIDTwDdSbfHg54+P5w5B0xYsiTs=", - "pom": "sha256-Iu9UimQeopwR8p66nswpXd0tcJ2UKotZuqh0meyB+QE=" + "io/get-coursier/jniutils#windows-jni-utils/0.3.3": { + "jar": "sha256-q2jvzxYjVeIAB7I42BCLf/7AwGtGfuRMu0TsP4rDp+Y=", + "pom": "sha256-rVOQD5JoPzcUvkQuy0ZEIaX4+iiQwakbH74+Ds1ikUs=" + }, + "io/get-coursier/util#directories-jni/0.1.4": { + "jar": "sha256-1CoDcD6UwXUY7ww2opWkrvA+l3tbTY18J2/kqxc4fHY=", + "pom": "sha256-E1CMjTD6Y4XE9ckH1mG1UeIePnwSpCYaqYWJMK4q0Wk=" + }, + "io/get-coursier/util#directories/0.1.4": { + "jar": "sha256-j8ztl85qQSaEG7/j/RkFwIV98XqCYWBkd97RZATsshg=", + "pom": "sha256-sqk4rw2MgPXGuWdwwEEBCDrwxgJB4a+sLqnMy01k29c=" + }, + "io/github/java-diff-utils#java-diff-utils-parent/4.12": { + "pom": "sha256-2BHPnxGMwsrRMMlCetVcF01MCm8aAKwa4cm8vsXESxk=" + }, + "io/github/java-diff-utils#java-diff-utils/4.12": { + "jar": "sha256-mZCiA5d49rTMlHkBQcKGiGTqzuBiDGxFlFESGpAc1bU=", + "pom": "sha256-wm4JftyOxoBdExmBfSPU5JbMEBXMVdxSAhEtj2qRZfw=" + }, + "io/github/oshai#kotlin-logging-jvm/7.0.7": { + "jar": "sha256-w3P39MnvyFxPcPEVGfKht4eLwO11oyU2TQNK8/oh93Y=", + "module": "sha256-QO2e6r7AizgleZTXK0wOsvBwVYVzkPGaTvPjlX8Crw8=", + "pom": "sha256-22vD1rbK+1kdW7F3jJbFMPmFjR66+tJ8XJCBFVgdoho=" }, "io/github/skylot#jdwp/2.0.0": { "jar": "sha256-Z01piJwpSc+I/MIGr38ur7FTMWsy5GzO8Tz5FRw3jqw=", @@ -865,9 +963,10 @@ "module": "sha256-c/sJjfFrydnSxRr6bzwZ86n6PsYbZYS49oqimBD7cuU=", "pom": "sha256-kts/606ZJ53gDIRJPJTJhlOQMfRjdnvx63nwOymxQyM=" }, - "io/reactivex/rxjava2#rxjava/2.2.21": { - "jar": "sha256-Wd9lQahAAY8PTImark9MH0OD9MFv61JoYV++OE0oUBw=", - "pom": "sha256-slvs5QSD3po+Hf0lARwthTMCFu+Kgbhvar69vfmw8Sc=" + "io/reactivex/rxjava3#rxjava/3.1.11": { + "jar": "sha256-bipWqYGdD8L+DXjv7NPXyBpjxjneM8qlY5KTvP/umXo=", + "module": "sha256-tDIZwIxsAgw+sN8lRtrqd5IZP4lgRtVcozqZhfvajuc=", + "pom": "sha256-fpMFhj0zE0zUpy0It/Evre4hda2ef3Jzi0nIptw8BVA=" }, "javax/annotation#javax.annotation-api/1.2": { "jar": "sha256-WQmzlso6K+ENDuoyx073jYFuG06tId4deN4fiQ0DPgQ=", @@ -877,20 +976,16 @@ "jar": "sha256-kcdwRKUMSBY2wy2Rb9ickRinIZU5BFLIEGUID5V95/8=", "pom": "sha256-lD4SsQBieARjj6KFgFoKt4imgCZlMeZQkh6/5GIai/o=" }, - "net/bytebuddy#byte-buddy-agent/1.14.12": { - "jar": "sha256-KzCakwAJLgtpb3xHH9UdmWkAHfeEyKufB5l0N9dXrW0=", - "pom": "sha256-ZpifcNNV1gD9TZJtiDXke30b7/Z47r7FnRljY7XNTCw=" + "net/bytebuddy#byte-buddy-parent/1.15.11": { + "pom": "sha256-jcUZ16PnkhEqfNhB6vvsTwDbxjPQha3SDEXwq0dspJY=" }, - "net/bytebuddy#byte-buddy-parent/1.14.12": { - "pom": "sha256-m3/SvyklMayw6XTZVeSjbKQTMt0Nr+icJNj+Q5uuV7A=" + "net/bytebuddy#byte-buddy/1.15.11": { + "jar": "sha256-+giZiq4ee9roO94HEsUOhETXHA4MGWuyJHrejUrQ65A=", + "pom": "sha256-IFuLJUGWcX6B2tZyu4aacZr8lt8pf5fYEe/+H0NlPa4=" }, - "net/bytebuddy#byte-buddy/1.14.12": { - "jar": "sha256-lwY2E01hwYOxn49Y+mMeMNLyq8o0SzeEijk8rHhj3XA=", - "pom": "sha256-XamVxw3nt/SoSKhUN8fd7oA9GrfKwtfY33GUw9XicU0=" - }, - "net/fabricmc#mapping-io/0.6.1": { - "jar": "sha256-NN1+onSH7zXXAANQnBtIh/9fi/9yCjQ5gSrhvnUl5Ts=", - "pom": "sha256-e7jCDWqclH8GcXzKVjmdHaettyb9jPOvJ7iVVnckras=" + "net/fabricmc#mapping-io/0.7.1": { + "jar": "sha256-FBno7nlco8+G9wemovEOYTJX6cHOkaEQFgLAe3z/ekg=", + "pom": "sha256-/aPWtbhGGzJ4fdbZ2kiXw14usvGi093bSYRQu4t4SGs=" }, "net/java#jvnet-parent/3": { "pom": "sha256-MPV4nvo53b+WCVqto/wSYMRWH68vcUaGcXyy3FBJR1o=" @@ -943,27 +1038,28 @@ "org/apache#apache/25": { "pom": "sha256-5o/BmkjOxYKmcy/QsQ2/6f7KJQYJY974nlR/ijdZ03k=" }, - "org/apache#apache/27": { - "pom": "sha256-srD8aeIqZQw4kvHDZtdwdvKVdcZzjfTHpwpEhESEzfk=" + "org/apache#apache/32": { + "pom": "sha256-z9hywOwn9Trmj0PbwP7N7YrddzB5pTr705DkB7Qs5y8=" }, - "org/apache#apache/30": { - "pom": "sha256-Y91KOTqcDfyzFO/oOHGkHSQ7yNIAy8fy0ZfzDaeCOdg=" + "org/apache#apache/33": { + "pom": "sha256-14vYUkxfg4ChkKZSVoZimpXf5RLfIRETg6bYwJI6RBU=" }, - "org/apache#apache/31": { - "pom": "sha256-VV0MnqppwEKv+SSSe5OB6PgXQTbTVe6tRFIkRS5ikcw=" + "org/apache#apache/35": { + "pom": "sha256-6il9zRFBNui46LYwIw1Sp2wvxp9sXbJdZysYVwAHKLg=" }, - "org/apache/commons#commons-lang3/3.12.0": { - "jar": "sha256-2RnZBEhsA3+NGTQS2gyS4iqfokIwudZ6V4VcXDHH6U4=", - "pom": "sha256-gtMfHcxFg+/9dE6XkWWxbaZL+GvKYj/F0bA+2U9FyFo=" + "org/apache/commons#commons-lang3/3.17.0": { + "jar": "sha256-bucx31yOWil2ocoCO2uzIOqNNTn75kyKHVy3ZRJ8M7Q=", + "pom": "sha256-NRxuSUDpObHzMN9H9g8Tujg9uB7gCBga9UHzoqbSpWw=" }, - "org/apache/commons#commons-lang3/3.14.0": { - "jar": "sha256-e5a/PuaJSau1vEZVWawnDgVRWW+jRSP934kOxBjd4Tw=", - "pom": "sha256-EQQ4hjutN8KPkGv4cBbjjHqMdYujIeCdEdxaI2Oo554=" + "org/apache/commons#commons-lang3/3.18.0": { + "jar": "sha256-Tu6ujSDAeKu2SwFewVit04OsWBVxzdxFxo8MmuAjByA=", + "pom": "sha256-qiVLNztvbUa8ncqGMxsHKoq4brJeqZIf1Dlhg5LpihY=" }, "org/apache/commons#commons-lang3/3.5": { "pom": "sha256-Ref7ssIx25A6XVqtr8Y2oXOk1UVg94oR/0mAKO+eNF4=" }, "org/apache/commons#commons-lang3/3.8.1": { + "jar": "sha256-2sgH9lsHaY/zmxsHv+89h64/1G2Ru/iivAKyqDFhb2g=", "pom": "sha256-7I4J91QRaFIFvQ2deHLMNiLmfHbfRKCiJ7J4vqBEWNU=" }, "org/apache/commons#commons-parent/39": { @@ -978,18 +1074,21 @@ "org/apache/commons#commons-parent/47": { "pom": "sha256-io7LVwVTv58f+uIRqNTKnuYwwXr+WSkzaPunvZtC/Lc=" }, - "org/apache/commons#commons-parent/52": { - "pom": "sha256-ddvo806Y5MP/QtquSi+etMvNO18QR9VEYKzpBtu0UC4=" + "org/apache/commons#commons-parent/73": { + "pom": "sha256-TtRFYLB/hEhHnf0eg6Qiuk6D5gs25RsocaxQKm1cG+o=" }, - "org/apache/commons#commons-parent/64": { - "pom": "sha256-bxljiZToNXtO1zRpb5kgV++q+hI1ZzmYEzKZeY4szds=" + "org/apache/commons#commons-parent/78": { + "pom": "sha256-Ai0gLmVe3QTyoQ7L5FPZKXeSTTg4Ckyow1nxgXqAMg4=" }, - "org/apache/commons#commons-parent/69": { - "pom": "sha256-1Q2pw5vcqCPWGNG0oDtz8ZZJf8uGFv0NpyfIYjWSqbs=" + "org/apache/commons#commons-parent/81": { + "pom": "sha256-NI1OfBMb5hFMhUpxnOekQwenw5vTZghJd7JP0prQ7bQ=" }, - "org/apache/commons#commons-text/1.12.0": { - "jar": "sha256-3gIyV/8WYESla9GqkSToQ80F2sWAbMcFqTEfNVbVoV8=", - "pom": "sha256-stQ0HJIZgcs11VcPT8lzKgijSxUo3uhMBQfH8nGaM08=" + "org/apache/commons#commons-parent/85": { + "pom": "sha256-0Yn/LAAn6Wu2XTHm8iftKvlmFps2rx6XPdW6CJJtx7U=" + }, + "org/apache/commons#commons-text/1.13.1": { + "jar": "sha256-dkNL0t13irFA2Es8b/pAxA/mIZkJ9e0di4l3xa6OUMg=", + "pom": "sha256-IN2vRd2WmBsCi9dVqlwE0xrjd1pjNB4Wpq2x5oiqAFw=" }, "org/apache/httpcomponents#httpclient/4.5.14": { "jar": "sha256-yLx+HFGm1M5y9A0uu6vxxLaL/nbnMhBLBDgbSTR46dY=", @@ -1008,25 +1107,25 @@ "jar": "sha256-bJs90UKgncRo4jrTmq1vdaDyuFElEERp8CblKkdORk8=", "pom": "sha256-PLrYSbNdrP5s7DGtraLGI8AmwyYRQbDSbux+OZxs1/o=" }, - "org/apache/maven#maven-artifact/3.8.7": { - "jar": "sha256-I+scXCbz0bRpRkewcb6r/ZYIMZGwBjlHB3U68s7Y2wE=", - "pom": "sha256-gxFk5/0k5bBbLcO4l6ylvr6TV2odk8iUXzpEHJTg7VM=" + "org/apache/maven#maven-artifact/3.8.8": { + "jar": "sha256-gTIzqEhcuvl7H5osF873I7Bo9yYKQxnPSVjyIdBLmTc=", + "pom": "sha256-PGKRS2E++Q+BwFaN7kCNIlVrTZmoHnqk1yqlxO4r96U=" }, - "org/apache/maven#maven-builder-support/3.8.7": { - "jar": "sha256-JrRlNUXsw/A5mCssjxO8Km4OD6E3LAQb1FGUbMN6WcE=", - "pom": "sha256-eF8rsf6hlzTjoOogfGoJa2gYgzfv3M+kdZdH8dHexcM=" + "org/apache/maven#maven-builder-support/3.8.8": { + "jar": "sha256-xCXKFp1nIXJWqNGZEURpH88jNR4JQxiQryQL/u0zuQI=", + "pom": "sha256-5yV1kZJC/vDOa4r3vKjVCbySqR74GB/henR7ALSsJLg=" }, - "org/apache/maven#maven-core/3.8.7": { - "jar": "sha256-x2f6zVSrj27qlyzPqcHT86XaohD/M1PJitAj9SBWKUA=", - "pom": "sha256-Fapj0KvMZJA1ymqCqXHoAvKtPgLPohnhudlSDws0Edc=" + "org/apache/maven#maven-core/3.8.8": { + "jar": "sha256-UvAHZNJtyXrJ/68gtOmZgtVoI4SQ+Ulr17nVzBB0ARM=", + "pom": "sha256-T8+CkzH2CovIlcNn3SfXS7i1FRX7v3RqfaIgaf2sZrY=" }, - "org/apache/maven#maven-model-builder/3.8.7": { - "jar": "sha256-8cR7SinTJnUyxqHkmfDM1TB7MhqX6YWvRXMTjqXN62k=", - "pom": "sha256-tjB9TvfAo4Q2ojYY5fXJ6byIjHQWeEoRrIeHprx/QYw=" + "org/apache/maven#maven-model-builder/3.8.8": { + "jar": "sha256-KIwprNodJhOMilP/8ybuebvOhwxjyayHbn/owpRARNM=", + "pom": "sha256-TZejrh20z6o6m7JYeKm/EwWChhPT6p7PG5EZUu83K4U=" }, - "org/apache/maven#maven-model/3.8.7": { - "jar": "sha256-b8ra7iqIXEOxWPLjgz0KPsto78YuJepbEfd8wHFqey0=", - "pom": "sha256-4dR3hYwG/DpXn8LFga9XIG6xWH2MEFMHFbmJb2S3kPU=" + "org/apache/maven#maven-model/3.8.8": { + "jar": "sha256-w5JUi8Gj8MahgPiIvSNJYC3lseMAWf4OxG+B7UzhQSk=", + "pom": "sha256-jnOB7w/mmO2OAoKuvfL7LoZOSQTDBMJn5vBrfvlBhpA=" }, "org/apache/maven#maven-parent/34": { "pom": "sha256-Go+vemorhIrLJqlZlU7hFcDXnb51piBvs7jHwvRaI38=" @@ -1034,78 +1133,78 @@ "org/apache/maven#maven-parent/35": { "pom": "sha256-0u3UB3wKvJzIICiDxFlQMYBCRjbLOagwMewREjlLJXY=" }, - "org/apache/maven#maven-parent/37": { - "pom": "sha256-vPNwAwHoIh7xTaJ6Lwz/cfzQP8RSdr/YStrOQB6Ivrw=" + "org/apache/maven#maven-parent/42": { + "pom": "sha256-BFNN6jUKIYeXClt0REM4vPeLqOU31E8mKs+6FuuzMFY=" }, - "org/apache/maven#maven-plugin-api/3.8.7": { - "jar": "sha256-TwhLIvdvFOuKeVEB+4Nif/Ebbyx8sX9ADVQyLn0AD3Q=", - "pom": "sha256-SlHibCSg2IbD3uYyu1o3K9y5i51ExA6xL5eyTTR+YtM=" + "org/apache/maven#maven-plugin-api/3.8.8": { + "jar": "sha256-ssbRU9ArNcHzDXLfI3L8XSOrzOw8Hmib5tYAR+E5fsw=", + "pom": "sha256-toRbJDq/3eToUFDcZGLPkNFcxvKwPjy5Dnng3W9KJeQ=" }, - "org/apache/maven#maven-repository-metadata/3.8.7": { - "jar": "sha256-rgfBgNpa53hJFc85gOkN42HqTRvFM3uWlpT1Aznv2eE=", - "pom": "sha256-ApdQ3NGyUFtbQ2nJDiMpNfjCJB4TYCJw+PUhFHfpOVc=" + "org/apache/maven#maven-repository-metadata/3.8.8": { + "jar": "sha256-s5bTsIGzU1QeqaFHqy0+7lcjtGDRMO98sdlTZq6rfDE=", + "pom": "sha256-GdnwyEbhlBAvYMnufkQxedieKXo9Y3HjS+VeoTrSi7c=" }, - "org/apache/maven#maven-resolver-provider/3.8.7": { - "jar": "sha256-mKX0OimIB4VYzCL4ZBEkx0Vy3Z5gC8fX233projMEbo=", - "pom": "sha256-l+KYz4V0qpqrMqAV8f+EGCQhxYar5F3aBL4p7LXmz+c=" + "org/apache/maven#maven-resolver-provider/3.8.8": { + "jar": "sha256-GXqKbnx99m3R+nC7SVrHYW8OlvQ9NU1p/0eU1yXUdCc=", + "pom": "sha256-fUZO9DMa7AaZQZmz3HuIaCAGApMznhlKoIiLVsoOd5Y=" }, - "org/apache/maven#maven-settings-builder/3.8.7": { - "jar": "sha256-LNPZ0Q6EhrKdRu9Dbclru/r0NaRd0yjM+VX1r5acir4=", - "pom": "sha256-KYMgyvMQ6dhvd1H9ZJiwtCsO/VO8f6Z39e54Y+SJDTA=" + "org/apache/maven#maven-settings-builder/3.8.8": { + "jar": "sha256-52Wxca0/DZnCQmq/+JC0asGsaMeFY276tfYfzXPs1P8=", + "pom": "sha256-v1XOufu3YrVl0yo26kokuysPhbsab5f7OvteGAdJVuk=" }, - "org/apache/maven#maven-settings/3.8.7": { - "jar": "sha256-AMCY0r47gdoDf6LUEXm/FJOO2xLsOtosjfZAxKZ3ELs=", - "pom": "sha256-8QndYx6IMsCi8zplYaZtV4fRpC3n/tectirzGYpK/do=" + "org/apache/maven#maven-settings/3.8.8": { + "jar": "sha256-cNtcB0JaXmbtzqwSr23WDPYUMwl4zBlcMAnHXG/25Hw=", + "pom": "sha256-y/zk0UwU6bJYjGkyl3XZy7tvomXkFjIQgjWBljd7zBw=" }, - "org/apache/maven#maven/3.8.7": { - "pom": "sha256-Rz512QcJ1/0osDhELhNxzEsiA9ygKYSG/Iz6c9r6k7U=" + "org/apache/maven#maven/3.8.8": { + "pom": "sha256-6eaacQwJjVAXAdPwqqWnGJ/mfkb2yaeoVyGPpzHScyw=" }, "org/apache/maven/resolver#maven-resolver-api/1.6.3": { "pom": "sha256-EWZ4Z526PTbXmfZywm7iRDSA76Gxu7glDwbg3VqRp5U=" }, - "org/apache/maven/resolver#maven-resolver-api/1.9.2": { - "jar": "sha256-EponhdJmdE1jvMCy9gNMZYclsJwW6oq9tiB1++FcaVM=", - "pom": "sha256-6uSCfjoen3KyJkZ3MI3ri4lLwlBRQcQMo2DLhF5cYrs=" + "org/apache/maven/resolver#maven-resolver-api/1.9.22": { + "jar": "sha256-Y/X2ZeRKCe9VRjs7kf2gt4/wfdJLEGDVbnnBC24yy/s=", + "pom": "sha256-33XQa/rgI5QhTC2wja5mFcU/hLRWSHoo6nIt4/cIhgw=" }, - "org/apache/maven/resolver#maven-resolver-connector-basic/1.9.2": { - "jar": "sha256-Dp27II8dms3ER1V342+b8xDrTHAmRtb1FFsiNUQgu7c=", - "pom": "sha256-kJg8BUhLbAEIp4WnPZnsQMePvqlcA7GlWNASPmz0So4=" + "org/apache/maven/resolver#maven-resolver-connector-basic/1.9.22": { + "jar": "sha256-SraL3sl+7DGLKjvSfnyVTjFviQ35LVRLaK/Qv2ZslYg=", + "pom": "sha256-0bccYKNDZmPBG8IpuZD7qhUthp2kFKCnudv0Pitf5Jo=" }, - "org/apache/maven/resolver#maven-resolver-impl/1.9.2": { - "jar": "sha256-W7+Ig2GsjEwB7HkWkzby9fN0nuqFuz82uZwEXZdxeQk=", - "pom": "sha256-5D8kzPHEQYddzq8q27zReUNRAd2+ddcYxIAkkRDIwwg=" + "org/apache/maven/resolver#maven-resolver-impl/1.9.22": { + "jar": "sha256-5Nr7iswT1zY3fALSFw2GlDjddLmLhgdFkJ0jhya6vLs=", + "pom": "sha256-0MUBku9qyZ/kTgLFm3AIFsRQF7N623xufPQt3GHCgmQ=" }, - "org/apache/maven/resolver#maven-resolver-named-locks/1.9.2": { - "jar": "sha256-CH+Q13Vn9x6EwxUTrITYBJpghBIoO9q2DBIpggbxnsU=", - "pom": "sha256-DYWW4EC3N8qDTtljAPFU2mEMR1aA8NO4/LTFNTXvqhA=" + "org/apache/maven/resolver#maven-resolver-named-locks/1.9.22": { + "jar": "sha256-BoXynsO1SNm2kXxSfxPGZ2haM5S5Vaqlsl0FWYGLf8U=", + "pom": "sha256-AHMPD9M9VcKNALQX3s7nILAMrk0nUwgZsHE6XF2dnzc=" }, "org/apache/maven/resolver#maven-resolver-spi/1.6.3": { "pom": "sha256-H4lGxHHBZwPLsIBAvH0F1wcroiFQSnfWS+54Wj9T18M=" }, - "org/apache/maven/resolver#maven-resolver-spi/1.9.2": { - "jar": "sha256-foQ7A8TtWn2sxuPlIDcRoqo9p+W5JH420Dh/6Hee4VE=", - "pom": "sha256-B0inuyAQ2gaTPTiYaRXyBRvEOUfZdCuoxApXhBcmvQU=" + "org/apache/maven/resolver#maven-resolver-spi/1.9.22": { + "jar": "sha256-ma1yHkYx2b0MT54pyGlnJXfGbypnSlcjzjjv8Tx1y/0=", + "pom": "sha256-hBlkE6FTaSVD3GW9GfCnXcUKDctCotQW9NCpc/1uDtU=" }, - "org/apache/maven/resolver#maven-resolver-transport-file/1.9.2": { - "jar": "sha256-UH8quj6VSy1OwJrlQRNhpbNJ2EfFj1KlztaMm6575uY=", - "pom": "sha256-vA0UoJ1oUDOagAEwkqHq6ksp2r7X3EpnBG9/Zw2a+84=" + "org/apache/maven/resolver#maven-resolver-transport-file/1.9.22": { + "jar": "sha256-TyqFfYuDJJS66e9tfbe7hAk3iyiqvTYV8D+uvkKkrR0=", + "pom": "sha256-OFtpusk/R2tkT+Z0bdJgL4mYGKKWFgZaD4Xvi6glH6g=" }, - "org/apache/maven/resolver#maven-resolver-transport-wagon/1.9.2": { - "jar": "sha256-JKrTRTrDVxlzMLS1PJHkpkxL9QZcAT7TXx9pmwF5slY=", - "pom": "sha256-xMe/JvLjG7XSpIyXiABHW9sOV8J3WoYm0mr40CZ+VCc=" + "org/apache/maven/resolver#maven-resolver-transport-wagon/1.9.22": { + "jar": "sha256-JB6diNHTriQrC3/m6oIiYFkNetkFv/GHITj7zeecsho=", + "pom": "sha256-y7WYphz+zzYCdKmNv24l8J3YilS5K6o/jR0cdao2NLU=" }, "org/apache/maven/resolver#maven-resolver-util/1.6.3": { "pom": "sha256-0cNedvQWbxOwpR1WWs+Wfpw8eeLMtpzL9PrAmOS3xGY=" }, - "org/apache/maven/resolver#maven-resolver-util/1.9.2": { - "jar": "sha256-Rt5yjW4446EBmDZ1JEoith1NLIZqGdUCoPpncCE6K/U=", - "pom": "sha256-GPziLjKecX5/iPzIrqhCaUzwOMRkDrEVvRZEGUikTAc=" + "org/apache/maven/resolver#maven-resolver-util/1.9.22": { + "jar": "sha256-Sq6hWEw5KUypJvxHRyPZaERzYJ70SQxOsWnW6n2sprU=", + "pom": "sha256-qmEFB6UPNUewgQwY83GKxBxjbG4LqERfFhGjxuiD/tM=" }, "org/apache/maven/resolver#maven-resolver/1.6.3": { "pom": "sha256-lzl+51sTDuK7Sijg+7EllZWoNhM4q6CC+K8Uc5joo+w=" }, - "org/apache/maven/resolver#maven-resolver/1.9.2": { - "pom": "sha256-yjWN3m5VIZS7sOXRDbHH9cYiLda1v+PSPfmNqmxusNc=" + "org/apache/maven/resolver#maven-resolver/1.9.22": { + "pom": "sha256-MsdIma6Rm1K9wHysKKuixmUbcxcqufQRH3xSe2B2Cts=" }, "org/apache/maven/shared#maven-shared-components/34": { "pom": "sha256-ZNDttfIc//YAscOrfUX5dUzRi6X7+Ds9G7fEhJQ32OM=" @@ -1137,20 +1236,15 @@ "module": "sha256-4IAoExN1s1fR0oc06aT7QhbahLJAZByz7358fWKCI/w=", "pom": "sha256-MjVQgdEJCVw9XTdNWkO09MG3XVSemD71ByPidy5TAqA=" }, - "org/assertj#assertj-core/3.25.3": { - "jar": "sha256-f73/oZltQ8wI4lduAQCLB+V7utK0dBqmw6tzzoUREw4=", - "pom": "sha256-ORcjDqozvPE+oz3TN6yvqdMmxzlmC/S2/FbIjXj+ufI=" + "org/assertj#assertj-core/3.27.3": { + "jar": "sha256-W4omIF9tXqYK2c5lzkpAoq/kxIq+7GG9B0CgiMJOifU=", + "pom": "sha256-jrN+QWt4B+e/833QN8QMBrlWk6dgWcX7m+uFSaTO19w=" }, "org/checkerframework#checker-qual/3.12.0": { "jar": "sha256-/xB4WsKjV+xd6cKTy5gqLLtgXAMJ6kzBy5ubxtvn88s=", "module": "sha256-0EeUnBuBCRwsORN3H6wvMqL6VJuj1dVIzIwLbfpJN3c=", "pom": "sha256-d1t6425iggs7htwao5rzfArEuF/0j3/khakionkPRrk=" }, - "org/checkerframework#checker-qual/3.42.0": { - "jar": "sha256-zK7dM68LeJTZ8vO2RPTRnkOSjjKQLmGsTRB3eDD1qsc=", - "module": "sha256-4PpiK33mPq4RBH726RtMKtDx8OE8uQP/UggKR/V6V0Y=", - "pom": "sha256-v1/KqycvVMvPG753w72WPIIcmrrSBYcIvwvtPIdUlMo=" - }, "org/codehaus/plexus#plexus-cipher/2.0": { "jar": "sha256-mn8bXFqe/9Yerf2HMUUqL3ao55ER+sOR73XqgBvqIDo=", "pom": "sha256-BIQvMxsCJbhaXiBDlxDSKOp6YwKr5tU8nJhG+8W/mf8=" @@ -1187,12 +1281,16 @@ "org/codehaus/plexus#plexus/8": { "pom": "sha256-/6NJ2wTnq/ZYhb3FogYvQZfA/50/H04qpXILdyM/dCw=" }, - "org/ec4j/core#ec4j-core-parent/0.3.0": { - "pom": "sha256-kKMRBDNTwIfbP/LzSAKWc1ii5IgkXYh7OcIbZvc+3mU=" + "org/drjekyll#fontchooser/3.1.0": { + "jar": "sha256-RYqkEi6dlGd8zws9uZ20MSrUnSn8xoFd/biHq9klZYc=", + "pom": "sha256-l6K6GCYwhF2BknHP6GP08mPoGoh5DC3aopHpsdsbhaQ=" }, - "org/ec4j/core#ec4j-core/0.3.0": { - "jar": "sha256-yt7wIHB3B0sRoSvkQviats+T+8L4SHAtk3GpYRQU1Vg=", - "pom": "sha256-/RtdTKFRGzy8nJGvde82Eii0+fsQAZLTyGVHGETdxuk=" + "org/ec4j/core#ec4j-core-parent/1.1.1": { + "pom": "sha256-Id3ekeuJfAN3XBAVMgdn4mCWjuGRm6a4qYAuK6GX2VM=" + }, + "org/ec4j/core#ec4j-core/1.1.1": { + "jar": "sha256-1z3uRP77cl38ZYJnRl/lp2imZjE9is1wEgn1g28UMdg=", + "pom": "sha256-ms07s8BonmCVaYv2bmQxJkaReICt/2HTSSgQEmEpuTo=" }, "org/eclipse/jdt#ecj/3.33.0": { "jar": "sha256-92hsSWDPcMLrxcUApzqM/ARUG3MMGPHFwhMpiJsTf0U=", @@ -1201,8 +1299,8 @@ "org/eclipse/jdt/ecj/maven-metadata": { "xml": { "groupId": "org.eclipse.jdt", - "lastUpdated": "20241203050026", - "release": "3.40.0" + "lastUpdated": "20251208072715", + "release": "3.44.0" } }, "org/eclipse/sisu#org.eclipse.sisu.inject/0.3.5": { @@ -1219,26 +1317,42 @@ "org/eclipse/sisu#sisu-plexus/0.3.5": { "pom": "sha256-broJAu/Yma7A2NGaw8vFMSPNQROf4OHSnMXIdKeRud4=" }, - "org/hamcrest#hamcrest-core/2.2": { - "jar": "sha256-CU9dkrS32ciiv1PMadNWJDronDSZRXvLS5L37Tv5WHk=", - "pom": "sha256-9/3i//UQGl/Do54ogQuRHC2iAt3CvVB2X4nnxv+M590=" + "org/exbin/auxiliary#binary_data-array/0.2.2": { + "jar": "sha256-E5SjC6S8EJ3IJf9aMZSyEWMscaaT82vAd33avycWBd0=", + "pom": "sha256-kvRjJ0EaMLAQ33Zdvsfjj52DE76LqHX1B4BYoCb6eig=" }, - "org/hamcrest#hamcrest-library/2.2": { - "jar": "sha256-OFFSOiAaDUglwlphpu3FBxKCWjm9PQM5G5jEjKPLOWw=", - "pom": "sha256-9YrYNdJCZDElnYbk/jpPUWHmcdkWxcvs81c4vN6C/P8=" + "org/exbin/auxiliary#binary_data/0.2.2": { + "jar": "sha256-rgAvcDLYd1YeLscZ3V2k2sQUJ1pnIetMxp0LAo0mlYo=", + "pom": "sha256-EEVff+yMFFu9AWFQNVUoLkohKka26J16qlB52PHcXNM=" }, - "org/hamcrest#hamcrest/2.2": { - "jar": "sha256-XmKEaonwXNeM2cGlU/NA0AJFg4DDIEVd0fj8VJeoocE=", - "pom": "sha256-s2E3N2xLP8923DN+KhvFtpGirBqpZqtdJiCak4EvpX0=" + "org/exbin/bined#bined-core/0.2.2": { + "jar": "sha256-s2EfHQZ5gq91qKBt4fDgOCxqv4df9ULKcerdx6iZWQc=", + "pom": "sha256-qi0WGBuxvmpkEXlJmQVulE65yz6s3SA1Fxs/0If+pVM=" + }, + "org/exbin/bined#bined-highlight-swing/0.2.2": { + "jar": "sha256-nWFhxlGjovqhiVWGBoMM3Wm08GHZGfVfSobU89DUV60=", + "pom": "sha256-msvWUndKEQElhKRBNLDZdsfNvhLopzw4uJhiT+sAi6E=" + }, + "org/exbin/bined#bined-section/0.2.2": { + "jar": "sha256-WlgYCiy2PvXX6yJ9MjOwWrkAk5g+eadlhMxRHJNuYRs=", + "pom": "sha256-IUnZCF4LlMAtlSWTb+KdfaS1Km2sejVewz1FbQbszJU=" + }, + "org/exbin/bined#bined-swing-section/0.2.2": { + "jar": "sha256-Mqi1bgigoai2Zw1ov9K0CY0WEwSQFqJk08SACpZJlPc=", + "pom": "sha256-1iMUd4xy/0fwVzoQb+6H+QYLwnRr0WD+51YGzlVNxfM=" + }, + "org/exbin/bined#bined-swing/0.2.2": { + "jar": "sha256-Lr1LEy0t7rqVeHdBLsAXbjGEPhs79ZabG/s8goDKq5U=", + "pom": "sha256-ZWXG9Y5EVc/ZQGkQWR3HcpKQUd4Iqn4/GxM9nHhSJyI=" }, "org/javassist#javassist/3.28.0-GA": { "jar": "sha256-V9Cp6ShvgvTqqFESUYaZf4Eb784OIGD/ChWnf1qd2ac=", "pom": "sha256-w2p8E9o6SFKqiBvfnbYLnk0a8UbsKvtTmPltWYP21d0=" }, - "org/jcommander#jcommander/1.83": { - "jar": "sha256-5l9JwhGaGFm5B2Bh5WH7WVii+m/9tJ8FHKjVmgs/h+Q=", - "module": "sha256-4nbeXr/WJFWAgvhhhFxhYTNryhu8MNXFZIUeNR2bE0U=", - "pom": "sha256-BYh7BLFe8u4t+gZozEfCRaO4kLZzM+gjNgJEVAKLMCA=" + "org/jcommander#jcommander/2.0": { + "jar": "sha256-Yvwe3ArESwM9cGmEQ3UONv/rhzhssdeylLDqNDhOEiw=", + "module": "sha256-cnpzaYXHVZ6A3O6EQqd4SWAuzdb/9wGD5/7jIhaljIA=", + "pom": "sha256-pUoNL5BnLA3bVhrlKYANm1BjcqDNcoWwgm5jwxbC4aA=" }, "org/jetbrains#annotations/13.0": { "jar": "sha256-rOKhDcji1f00kl7KwD5JiLLA+FFlDJS4zvSbob0RFHg=", @@ -1248,190 +1362,203 @@ "jar": "sha256-ew8ZckCCy/y8ZuWr6iubySzwih6hHhkZM+1DgB6zzQU=", "pom": "sha256-yUkPZVEyMo3yz7z990P1P8ORbWwdEENxdabKbjpndxw=" }, - "org/jetbrains#annotations/24.1.0": { - "jar": "sha256-J6dw3HzlBQCRi7jDwGYMmCkGMOx5a1489rkPQDswM8Y=", - "pom": "sha256-Ljf9cCCkNkueXZ93xbZ0Kjvqkn3VYMoeOQ3IFcnFCCA=" + "org/jetbrains#annotations/26.0.2": { + "jar": "sha256-IDe+N4mA07qTM+l5VfOyzeOSqhJNBMpzzi7uZlcZkpc=", + "module": "sha256-vvC4NSst/Uy3FV7MKjkie/FqPghme6vsZQx2sau/zss=", + "pom": "sha256-fr7Oreja2nyxfv8+AUkiw5Ai0qN44+LSRh8o8Bb/x/c=" }, - "org/jetbrains/intellij/deps#trove4j/1.0.20200330": { - "jar": "sha256-xf1yW/+rUYRr88d9sTg8YKquv+G3/i8A0j/ht98KQ50=", - "pom": "sha256-h3IcuqZaPJfYsbqdIHhA8WTJ/jh1n8nqEP/iZWX40+k=" + "org/jetbrains#annotations/26.0.2/common": { + "jar": "sha256-T8x8YEE2qfo0VjsgfIj2tGjAHXgU6fcJeYpl7XYG7rI=" }, - "org/jetbrains/kotlin#kotlin-build-common/1.9.23": { - "jar": "sha256-IoJaHv4VSRN9GBPtedycyvVLSoonAKSsf3CNxmAki68=", - "pom": "sha256-2ePH5h9YSUkAFP6BC/wQSp6aRNVl7RhsWGu7P0/D0/s=" + "org/jetbrains/kotlin#abi-tools-api/2.2.0": { + "jar": "sha256-hxeDiGZkLjvdR+yeAmC70wdujH6GvgXirahoMesq+Qo=", + "pom": "sha256-UwmmvuGytgrDtfXTXMS2zDiKFzOA17jeqgIJ6wgUnpA=" }, - "org/jetbrains/kotlin#kotlin-build-tools-api/1.9.23": { - "jar": "sha256-gvhH4lRXtGSDfv7x2oUC7JJTLedAbnkgUWbODs9PxSE=", - "pom": "sha256-CWkjtiXJfGZzZ5ZsxM6Sv5TE6f98U8sdOEhgEax1DVg=" + "org/jetbrains/kotlin#abi-tools/2.2.0": { + "jar": "sha256-Pngn8qdqgpa3vvfzyzrPxJJA1gtTNwidRHyJIfbgi00=", + "pom": "sha256-avzEJec8EEvnrSCQF1u1wgHGQWV1sdX1suMFEDl6o1c=" }, - "org/jetbrains/kotlin#kotlin-build-tools-impl/1.9.23": { - "jar": "sha256-6sLwRmWHGVWn0K5FcZad8rCOfTN7LxIhAGb9PuAfWYE=", - "pom": "sha256-/OLyPE6fBzshdovfVqMa2W0zjNwD0FoVekWl/bL/7bE=" + "org/jetbrains/kotlin#kotlin-build-tools-api/2.2.0": { + "jar": "sha256-HezZmyKUN3QfNqAIxnip2PrjBxbodyFRMI9W9owQ844=", + "pom": "sha256-I6QFgttMPijHq6X8fpZHvI1e/d+dAFWp5CyaCJbVzjM=" }, - "org/jetbrains/kotlin#kotlin-compiler-embeddable/1.9.22": { - "jar": "sha256-K/6t7lmrGYjDNtvW5l2ZH3Zq4d2Gg/Km3tX6oCefDKA=", - "pom": "sha256-s9o0u29ClqzzoPRDRm8FBsbJnaXNliTW4LdFsiKHhOs=" + "org/jetbrains/kotlin#kotlin-build-tools-impl/2.2.0": { + "jar": "sha256-SofzwCcvFyhdYOmGQ+whn1Ppta1aI/O8TFQ6hkT4bxc=", + "pom": "sha256-6DgEIFq2l7pyL0YiprG1GS70ejDL35ApdwFJQ3hQTv8=" }, - "org/jetbrains/kotlin#kotlin-compiler-embeddable/1.9.23": { - "jar": "sha256-zJQGSXS/nr9ZlF4xIXzy0WoM66rySH6wdI/By9F4eUM=", - "pom": "sha256-WLI81NgtWqkWpcnMmbMhjuxVaWBoova3C+3fbDaR/RU=" + "org/jetbrains/kotlin#kotlin-compiler-embeddable/2.2.0": { + "jar": "sha256-svdD6luhL2ng815djUYGnXTI4oYQh1SKfg4Up4S8TPE=", + "pom": "sha256-FqFd0ZfPJBNJT3iMuWFE2aFGJnw9b38cFbejweBSNGo=" }, - "org/jetbrains/kotlin#kotlin-compiler-runner/1.9.23": { - "jar": "sha256-yFlaPhcRx0U8f5YKrxKhcNtL2j1vy6Sf/I4yy/0ADKE=", - "pom": "sha256-KebjEpGbdf6aOHjflRHPQhDcJuWTQcsu4iSDt7Tgcv4=" + "org/jetbrains/kotlin#kotlin-compiler-runner/2.2.0": { + "jar": "sha256-kHBq6Gcd77oBQI3RxUG6MJEskHDN8d3aGMUero1nkwQ=", + "pom": "sha256-iQfZfcaLv0CgrmZ5RZAvDtwWYdvPdDuuDf2nw7mp1Mg=" }, - "org/jetbrains/kotlin#kotlin-daemon-client/1.9.23": { - "jar": "sha256-5jFUJUkZ/XBv6ZN8SNuTfqkGimMfht5lWlFLwWIPmI0=", - "pom": "sha256-X70GastuQIU5gCdsaDUWmSj2Zqt8RlEsJvJMnQMIF9M=" + "org/jetbrains/kotlin#kotlin-daemon-client/2.2.0": { + "jar": "sha256-ISk9oBbkuhKhKKwm/ZIKdOi4f1dM+bxDxgo9LnZFp64=", + "pom": "sha256-HESKBvDKmGiVi+CHesnof8TgG8uTaHp8rBLTxNCd7uY=" }, - "org/jetbrains/kotlin#kotlin-daemon-embeddable/1.9.23": { - "jar": "sha256-bztmG5gmetJOL4+3rV0Gvn0u1hpdBcJn9OTKp433g9k=", - "pom": "sha256-WFRgOL5Go4NmOFPRMd12xPsnQ4MLqXt0sno1zxAtPQI=" + "org/jetbrains/kotlin#kotlin-daemon-embeddable/2.2.0": { + "jar": "sha256-omzI4thhkZfMTRFb6ndm6aqODx54duoETuG58wVlRgE=", + "pom": "sha256-vSrk4skWBWVKilUn2nV/KyJ2WA0fXq6+q9M0OvjVxGc=" }, - "org/jetbrains/kotlin#kotlin-klib-commonizer-embeddable/1.9.23": { - "jar": "sha256-uAo4tLuB+wPQ8wdHPQMtc7J3j6drA0Y4floQ3YM9co4=", - "pom": "sha256-iLBAO2Z/cVJX6gDXdiFkkzggk+727vUBslU6HVIHG2g=" + "org/jetbrains/kotlin#kotlin-klib-commonizer-embeddable/2.2.0": { + "jar": "sha256-KEF+GZd6pJjcCJk6riAf/CG5Tp/0IvUiUi1gj2BrkgY=", + "pom": "sha256-DDfkh0Gs5zKbymh/4hRTg4vRn+ZhE1uE5o5dBkM7ZIE=" + }, + "org/jetbrains/kotlin#kotlin-metadata-jvm/2.2.0": { + "jar": "sha256-UBIirn1jUn5V8uXmRfGNTv8sGQdMhbm8BVhm4+0rF78=", + "pom": "sha256-Vav6RtrO+hAxYMwE4MUeVgq6DKIyAD/bz7TtjN05m0U=" }, "org/jetbrains/kotlin#kotlin-reflect/1.6.10": { "jar": "sha256-MnesECrheq0QpVq+x1/1aWyNEJeQOWQ0tJbnUIeFQgM=", "pom": "sha256-V5BVJCdKAK4CiqzMJyg/a8WSWpNKBGwcxdBsjuTW1ak=" }, - "org/jetbrains/kotlin#kotlin-script-runtime/1.9.23": { - "jar": "sha256-dRN+QUoaW0tNCQ+BLQ416zC08MkjpT1pWFRWuyT8Hfg=", - "pom": "sha256-LWx0sGpUDpicq9BTChbnZYGQUl8vTVpDq5sa/nQU/F8=" + "org/jetbrains/kotlin#kotlin-script-runtime/2.2.0": { + "jar": "sha256-Ttl/0eDJux0JSO1eY8yRRWMTpZUYKVuSssFRSu9VYVA=", + "pom": "sha256-5QdIv0Z09lRgPnsbuDBjTsmevZwzDeukytzuwHZ8u1Y=" }, - "org/jetbrains/kotlin#kotlin-scripting-common/1.9.23": { - "jar": "sha256-ii5Wfz2/Nz5hwBrNeIRjHshThGWrjul4rGMpb4zJr0Y=", - "pom": "sha256-/CiXW5TcQMDZD9EXXiKxtka60sY368+fT2qy1Oe8XdU=" + "org/jetbrains/kotlin#kotlin-scripting-common/2.2.0": { + "jar": "sha256-fJrISZ+pGyAep4NlN8Yl3VKoJUnlfms/F1zAx56atgQ=", + "pom": "sha256-1M1vjH2tiOZ9iVzT23qNTH3I6N3Y6WeOH1619gHZsO0=" }, - "org/jetbrains/kotlin#kotlin-scripting-compiler-embeddable/1.9.23": { - "jar": "sha256-e4A5/wt3nVVs7QCSMDWr0TNPDl8qiHlhgtArpF+SbSA=", - "pom": "sha256-7Y6//r5Ume1iSG+oGBJ7td1QHXTEq5XFfnwB7z+NuWg=" + "org/jetbrains/kotlin#kotlin-scripting-compiler-embeddable/2.2.0": { + "jar": "sha256-ksfW7HxfBdisAcN+dHrGd9iS6ZusDeXlFmg7jzZAdys=", + "pom": "sha256-VjapUSxI/NqPgm+ypKwXPCnW6zV0ZHE9VNJaTUbsbBM=" }, - "org/jetbrains/kotlin#kotlin-scripting-compiler-impl-embeddable/1.9.23": { - "jar": "sha256-kOU90S9i3NgjQ8EsDLMUrc/wy8OYjtsRjR5miZYOnWM=", - "pom": "sha256-923kmO12xGroZlZnmAf3J2EiPD+hChExgyAGpKs5Xe0=" + "org/jetbrains/kotlin#kotlin-scripting-compiler-impl-embeddable/2.2.0": { + "jar": "sha256-HSbL3a7rb/1FgIU5bs6gsID8Io/gBtz4MD2ldxHzN0U=", + "pom": "sha256-oeMpM4wq8LRweB0ECGnpsZdS+KTesi9D9qiR68dPH4I=" }, - "org/jetbrains/kotlin#kotlin-scripting-dependencies-maven/1.9.23": { - "jar": "sha256-15BHfNrTlUm3vlMKHXBaa0RUgEFvYUMWLzIoaiqoeGI=", - "pom": "sha256-5FD5GXKvpLES34ljPbiGRj0XG01WNZx5lDT3Z5eRjb0=" + "org/jetbrains/kotlin#kotlin-scripting-dependencies-maven/2.2.0": { + "jar": "sha256-1/YC5xsRzjhWr2NNRzEEQJ3aywzqUciUi17WPGFZ5bE=", + "pom": "sha256-vHvp9GJDpRtWyXsLIaAOwOxxySBinhlMdzTkQCLzuf4=" }, - "org/jetbrains/kotlin#kotlin-scripting-dependencies/1.9.23": { - "jar": "sha256-b7saKennTbMR0UVWAsWG7ySIcG4ysN966mdMb87ZC90=", - "pom": "sha256-QmyeCV1+xxiGq0Ia/keHbTXG0H2HSvMtDvEJJjR7UwM=" + "org/jetbrains/kotlin#kotlin-scripting-dependencies/2.2.0": { + "jar": "sha256-WFLGye6JbeGFQqOe4WWGnMduAQ5FqicM8qbRsR2Dg/A=", + "pom": "sha256-SXIbK1M2aOnXhukKsJQhVII+JD+nHPpAvOJSq2IJp98=" }, - "org/jetbrains/kotlin#kotlin-scripting-ide-services/1.9.23": { - "jar": "sha256-NbieJKmqscF//YMTW8qrPvr2a1YIjw8UhqNV4bE/37k=", - "pom": "sha256-ZbprfsFiGKOpst4RgwSPCleY8bJKII9O/EGWBo/wViE=" + "org/jetbrains/kotlin#kotlin-scripting-ide-services/2.2.0": { + "jar": "sha256-19TCbvqj28E/dFm2z1RlD0QjLOMONg9UzLRW0NJ64C0=", + "pom": "sha256-Jgb5tbK1ENd5fmDmhIEzFTkkl/XuUslyyR/4zkHSKW0=" }, - "org/jetbrains/kotlin#kotlin-scripting-jvm-host/1.9.23": { - "jar": "sha256-GGE2U4yx0RFatixSOe2uz/R+ZFByPpch10z8wcvmSI8=", - "pom": "sha256-zlETvo0uISJ1iCOzwX24YciRO/ZmDkj3FY8pgT72pSo=" + "org/jetbrains/kotlin#kotlin-scripting-jvm-host/2.2.0": { + "jar": "sha256-np+Jt+aKK8uCADvZusX+/nBSZ7C/cwvVExKZ7XwKnZM=", + "pom": "sha256-8z74nSCrE/wI9GDiE7zWFrDMU2vA5PfUsgFNSMx5H/g=" }, - "org/jetbrains/kotlin#kotlin-scripting-jvm/1.9.23": { - "jar": "sha256-0/yn7JUf94Jvl6dZifjcr/YM+eHna73CIO33eDdqbmQ=", - "pom": "sha256-4u8r+y628hp7croS7cWaFQx/IXbCssVP4uhg7oAjDYc=" + "org/jetbrains/kotlin#kotlin-scripting-jvm/2.2.0": { + "jar": "sha256-YKjHQtYfRPIxH73IqGt2fRcboJ2XvnLWukUNN/fj/b8=", + "pom": "sha256-dii0nV53BennadESYAZtmmlXPW2Av4Iw0FRvWo54yJ4=" }, - "org/jetbrains/kotlin#kotlin-stdlib-common/1.9.23": { - "module": "sha256-hjnwBfqZd67wjDL8jnonedoi7iYkZNcnMpiq/Ug3Fc0=", - "pom": "sha256-OuBxRYdw47aGCafTGet5emeJ9fBAyqQUQJgJmGhb5PY=" + "org/jetbrains/kotlin#kotlin-stdlib-common/2.2.0": { + "module": "sha256-WPwNZk/Dpn5+a+n9vq7b0hLfo+Un90T4YeeSzacsDkc=", + "pom": "sha256-U3q0BzqEelm6dtmaZFqGCbU4L/pdJZGjVLL6MR9JlzM=" }, - "org/jetbrains/kotlin#kotlin-stdlib/1.9.23": { - "jar": "sha256-iRDMI4gH2G71UMsfCxDdXtQLNaTsGlJSX3YK7ehOrTc=", - "module": "sha256-UZUZOzfc2touHAqw1RLEIrKtdq81V4Q6G5w0gPTnHQ4=", - "pom": "sha256-wm0n8mcQrUDiPu2f/gpkuFkejBPSI8ypDFk+5j87KKs=" + "org/jetbrains/kotlin#kotlin-stdlib/2.2.0": { + "jar": "sha256-ZdEthaO4ZcFg25FHhRcSpksQ2t1osi7qIqlb+KhnDco=", + "module": "sha256-pbmP3NnbAX1ULhlyJdzuGNZYpW3h2yzEHhMZbWsXaaQ=", + "pom": "sha256-jDyCEAfBNBFVhzm589U4LrgVUds4lc/7iVYeVsD03BY=" }, - "org/jetbrains/kotlin#kotlin-stdlib/1.9.23/all": { - "jar": "sha256-zsOLwzAucqiq+c3kNrWpBx7gMx4q0F6E2LuJczTX6dQ=" + "org/jetbrains/kotlin#kotlin-stdlib/2.2.0/all": { + "jar": "sha256-4jAPqlnJNSk9q7Chg9LmEIqbARxCcHbD97oQ0ktzugo=" }, "org/jetbrains/kotlinx#atomicfu/0.23.1": { "jar": "sha256-fbhmDr5LkbtHjts2FsTjpQulnAfcpRfR4ShMA/6GrFc=", "module": "sha256-Pokf5ja1UQgZIQD884saObzRwlM+I8Ri/AdkTur8sg8=", "pom": "sha256-aIt5ABn0F87APmldZWexc7o7skGJVBZi8U/2ZEG1Pas=" }, + "org/jetbrains/kotlinx#kotlinx-coroutines-bom/1.10.2": { + "pom": "sha256-+vDGU45T3cBJmmNmTY52PCFlgLLhjnIsy98bQxpq/iY=" + }, "org/jetbrains/kotlinx#kotlinx-coroutines-bom/1.8.0": { "pom": "sha256-Ejnp2+E5fNWXE0KVayURvDrOe2QYQuQ3KgiNz6i5rVU=" }, - "org/jetbrains/kotlinx#kotlinx-coroutines-core-jvm/1.5.0": { - "jar": "sha256-eNbMcTX4TWkv83Uvz9H6G74JQNffcGUuTx6u7Ax4r7s=", - "module": "sha256-yIXdAoEHbFhDgm3jF+PLzcPYhZ2+71OuHPrNG5xg+W4=", - "pom": "sha256-U2IuA3eN+EQPwBIgGjW7S9/kAWTv7GErvvze7LL/wqs=" + "org/jetbrains/kotlinx#kotlinx-coroutines-core-jvm/1.10.2": { + "jar": "sha256-XKF1s43zMf1kFVs1zYyuElH6nuNpcJs21C4KKIzM4/0=", + "module": "sha256-6eSnS02/4PXr7tiNSfNUbD7DCJQZsg5SUEAxNcLGTFM=", + "pom": "sha256-ZY9Xa5bIMuc4JAatsZfWTY4ul94Q6W36NwDez6KmDe8=" }, "org/jetbrains/kotlinx#kotlinx-coroutines-core-jvm/1.8.0": { "jar": "sha256-mGCQahk3SQv187BtLw4Q70UeZblbJp8i2vaKPR9QZcU=", "module": "sha256-/2oi2kAECTh1HbCuIRd+dlF9vxJqdnlvVCZye/dsEig=", "pom": "sha256-pWM6vVNGfOuRYi2B8umCCAh3FF4LduG3V4hxVDSIXQs=" }, - "org/jetbrains/kotlinx#kotlinx-coroutines-core/1.8.0": { - "jar": "sha256-IKpDS2qTDqZtLmGwDe764J/qPTL5ZA0uDCcTEogOCt0=", - "module": "sha256-FE7s1TZd4+MNe0YibAWAUeOZVbXBieMfpMfP+5nWILo=", - "pom": "sha256-yglaS/iLR0+trOgzLBCXC3nLgBu/XfBHo5Ov4Ql28yE=" + "org/jetbrains/kotlinx#kotlinx-coroutines-core/1.10.2": { + "jar": "sha256-MZtlMAnUnHCYL5jfKcyE/HAlsJLLBXHI51MuOtQ2ba4=", + "module": "sha256-j+JUF35xGnzRijwG2CQvzpRfQcLMoT3BmzOuQqVDUBY=", + "pom": "sha256-UZ2lQACW80YqTa6AeDrQUEE9S8gex65T+udq7wzL7Uw=" }, "org/jetbrains/kotlinx#kotlinx-metadata-jvm/0.9.0": { "jar": "sha256-1C9LrGC4HE/c7xxmau1BgdAEAeXmluSW9Ek1/jL+pY8=", "pom": "sha256-stGZ96s08Nie6VlCizjwl2iJfasjZno+Ou+DgaHCfwM=" }, - "org/junit#junit-bom/5.10.0": { - "module": "sha256-6z7mEnYIAQaUqJgFbnQH0RcpYAOrpfXbgB30MLmIf88=", - "pom": "sha256-4AbdiJT5/Ht1/DK7Ev5e2L5lZn1bRU+Z4uC4xbuNMLM=" + "org/jspecify#jspecify/1.0.0": { + "jar": "sha256-H61ua+dVd4Hk0zcp1Jrhzcj92m/kd7sMxozjUer9+6s=", + "module": "sha256-0wfKd6VOGKwe8artTlu+AUvS9J8p4dL4E+R8J4KDGVs=", + "pom": "sha256-zauSmjuVIR9D0gkMXi0N/oRllg43i8MrNYQdqzJEM6Y=" }, "org/junit#junit-bom/5.10.2": { "module": "sha256-3iOxFLPkEZqP5usXvtWjhSgWaYus5nBxV51tkn67CAo=", "pom": "sha256-Fp3ZBKSw9lIM/+ZYzGIpK/6fPBSpifqSEgckzeQ6mWg=" }, - "org/junit#junit-bom/5.7.1": { - "module": "sha256-mFTjiU1kskhSB+AEa8oHs9QtFp54L0+oyc4imnj67gQ=", - "pom": "sha256-C5sUo9YhBvr+jGinF7h7h60YaFiZRRt1PAT6QbaFd4Q=" + "org/junit#junit-bom/5.10.3": { + "module": "sha256-qnlAydaDEuOdiaZShaqa9F8U2PQ02FDujZPbalbRZ7s=", + "pom": "sha256-EJN9RMQlmEy4c5Il00cS4aMUVkHKk6w/fvGG+iX2urw=" }, - "org/junit#junit-bom/5.7.2": { - "module": "sha256-87zrHFndT2mT9DBN/6WAFyuN9lp2zTb6T9ksBXjSitg=", - "pom": "sha256-zRSqqGmZH4ICHFhdVw0x/zQry6WLtEIztwGTdxuWSHs=" + "org/junit#junit-bom/5.11.0": { + "module": "sha256-9+2+Z/IgQnCMQQq8VHQI5cR29An1ViNqEXkiEnSi7S0=", + "pom": "sha256-5nRZ1IgkJKxjdPQNscj0ouiJRrNAugcsgL6TKivkZE0=" }, - "org/junit/jupiter#junit-jupiter-api/5.10.2": { - "jar": "sha256-r/93wYbNMXJ1gDhy+lEzqoAf1qxAvZHHimz4AJtLF8w=", - "module": "sha256-QRtKlsKm2wmY1uWOiZNn8NElQWPzBBydmOeu38o3RBk=", - "pom": "sha256-u12jBgImsbPOtUCEldxptZRlv1DX6+Y+75TyWQnPGQA=" + "org/junit#junit-bom/5.11.2": { + "module": "sha256-iDoFuJLxGFnzg23nm3IH4kfhQSVYPMuKO+9Ni8D1jyw=", + "pom": "sha256-9I6IU4qsFF6zrgNFqevQVbKPMpo13OjR6SgTJcqbDqI=" }, - "org/junit/jupiter#junit-jupiter-engine/5.10.2": { - "jar": "sha256-tt812nUKVGrpMjdvEbPA34QfDJDHyylEzTmttDKIbks=", - "module": "sha256-FD7yda5mlRGdeCEqkyRazrv5I1tTdbn0wdSvcy87Uwo=", - "pom": "sha256-q+csj7+anI+e55usKbpkedMrDf+quICApQKRHSTTlGM=" + "org/junit#junit-bom/5.11.4": { + "module": "sha256-qaTye+lOmbnVcBYtJGqA9obSd9XTGutUgQR89R2vRuQ=", + "pom": "sha256-GdS3R7IEgFMltjNFUylvmGViJ3pKwcteWTpeTE9eQRU=" }, - "org/junit/jupiter#junit-jupiter-params/5.10.2": { - "jar": "sha256-7bHkP/C4BnYm/7VeXp7sodmrJHgUGnx/JT0RWynMfPI=", - "module": "sha256-IMLmXVKjnIVJbo4XDgjG7Sk1x/NeZRAT2WTcG7dcgns=", - "pom": "sha256-8n19CW20igXW56/YQalUVEJOVcUj167RZoF4szpjy9c=" + "org/junit#junit-bom/5.13.1": { + "module": "sha256-M8B6uXJHkKblhZugfWkResUwQ5ckVFqBxBeeMnLHXeg=", + "pom": "sha256-+mhFHqgwVy7UP/5R11tqBfel5mWmAqUfSda+AgY6ZfM=" }, - "org/junit/jupiter#junit-jupiter/5.10.2": { - "jar": "sha256-Jj5DRH9LQPEmrWsdy9ffN5RIQTve244NJAxby7p8ek8=", - "module": "sha256-cjF2bPGyuJLGehQsljkU5rc/u1BhpschROt/jnJ3DsE=", - "pom": "sha256-1bcMXC10Ui2mEM04d28iW6wDSsJZGEO+6Xl6urOIDqs=" + "org/junit#junit-bom/5.13.3": { + "module": "sha256-XchNdO+YHQI8Y56wy8Sx+e+JEDQofOGxAe/7vA8VNLQ=", + "pom": "sha256-47k+m7iHGWnPEcDo/xD1B4QdsYhcoQV44pCEb2YP1o4=" }, - "org/junit/platform#junit-platform-commons/1.10.2": { - "jar": "sha256-tWpewACked9Jc7GLuiTJj+Dbj6oUyJB9PvRR2Mcf2K4=", - "module": "sha256-HoFCGmL4cryk0gIgs56hniexNfNre3gXBPkvrVQxlhg=", - "pom": "sha256-8/glx8o72JcU1IlEfHfHbifqOPAoX195ahAAoX/KS+c=" + "org/junit/jupiter#junit-jupiter-api/5.13.3": { + "jar": "sha256-GhWlIlOpcsgsDb93dZqYP1r+0Fg1hc3FsqO+qh9K4Kw=", + "module": "sha256-hUq9STPlOKRnrmaPQIXiLq9JobVWx7qTlcJPaGLo7go=", + "pom": "sha256-Fgjmn2le6NrTY+qN70VXEDixBTJlrJXCPMWXU8wXieA=" }, - "org/junit/platform#junit-platform-engine/1.10.2": { - "jar": "sha256-kFy6m0mYzMKdEjkIWn+x/g4oAk11JhUjVtgQ7ewKSaM=", - "module": "sha256-4dG63P7cJyRFQeC+XV6EtyoicNevYWhrJvEc/Edw2kI=", - "pom": "sha256-EqqGyhwNZIoiXU58aWBUwfx26IeCxcOft983muI7728=" + "org/junit/jupiter#junit-jupiter-engine/5.13.3": { + "jar": "sha256-CAfuJtQ4dXUYt978ojwDfyXIDZPkWecrmrmTlvtLR4s=", + "module": "sha256-uDM8bgb/7qSuxJ85np68jm6wKQf45t/4tQqhTy6jMKs=", + "pom": "sha256-Ce5Dgl8ueUIcFwdxEuScFRMn7qG7yGF2yG8nDSoS59g=" }, - "org/junit/platform#junit-platform-launcher/1.10.2": { - "jar": "sha256-rtT0L7kK2ps0fCMfE2VvwJEhuiDattxkamvZ1Nox5Ko=", - "module": "sha256-/1YhIQJQJSv9rbYiu+LqZuzsMahnc2zqSz1K3yGcp/8=", - "pom": "sha256-WjEXCOeQa7l0YpwayHC8EWV0ZbmJ2koHfkVBa9mHJeQ=" + "org/junit/jupiter#junit-jupiter-params/5.13.3": { + "jar": "sha256-34m86CksRP0zQlZK616On0XmR04rNB6JPOj/GGCJpRw=", + "module": "sha256-LdOgQUDf0bj7/9YiEoIFudRVN56Z5Agbns7ICDgK/E4=", + "pom": "sha256-uhWqOvoOKWedkNCL0jIgU/FtNIA3QMgdhBGH/cMrN4c=" }, - "org/mockito#mockito-core/5.11.0": { - "jar": "sha256-8HbJax9JuNm8QuRrCWmq9WhMQMi1tnnUAOXYgAc6DgA=", - "pom": "sha256-ugsbXXA1CUlPmo5EWCIjh54zSKTElmfwx35odG5IHHg=" + "org/junit/jupiter#junit-jupiter/5.13.3": { + "jar": "sha256-XPa4dfJ4pieolV8ttdvIuxpTu8azmjO25YGht7B5j1g=", + "module": "sha256-Mnri3hS5q1rQoIdUVdEFOb2gTlxXLm9KNYj6whBPhQA=", + "pom": "sha256-+miNXIymuGV9h2ZpDqq5n/oIVbqT3pjxEnYPj+GntpE=" }, - "org/objenesis#objenesis-parent/3.3": { - "pom": "sha256-MFw4SqLx4cf+U6ltpBw+w1JDuX1CjSSo93mBjMEL5P8=" + "org/junit/platform#junit-platform-commons/1.13.3": { + "jar": "sha256-As1mpV33UKEj2Pdh5lA+RVrBCP8bNl1EbodLo7xWyok=", + "module": "sha256-MmJyJpoK1TOz9tUlhMcPa8E0XRZ2xgxkO1IgGOXOvdM=", + "pom": "sha256-8DzdBrvQUhqlwlI20iAup4caOmajwFcDQFNORENpyXI=" }, - "org/objenesis#objenesis/3.3": { - "jar": "sha256-At/QsEOaVZHjW3CO0vVHTrCUj1Or90Y36Vm45O9pv+s=", - "pom": "sha256-ugxA2iZpoEi24k73BmpHHw+8v8xQnmo+hWyk3fphStM=" + "org/junit/platform#junit-platform-engine/1.13.3": { + "jar": "sha256-SQoqNyvSSR0KmzxgUx2E8TgbGh18oJ7rO/5542b46to=", + "module": "sha256-OQuYuO1TJ5k4x+T4L7+sLksnkKs7OPKjjRG+oj6GrG4=", + "pom": "sha256-zsTGtvETYww1W8+Yk3ltgCokl4v0ABt4XFKOWeFmZ8s=" + }, + "org/junit/platform#junit-platform-launcher/1.13.3": { + "jar": "sha256-rWJM6tV+q7CBE9e2GqGfkWrHJaTujH+zJeIgd2KwyH8=", + "module": "sha256-BZrZXmcB3PToGp9ki1uhBWU5TDy5r5bFfG2vcpE+KN0=", + "pom": "sha256-o1I7XgaHhSfkRj0Z7S3JtHo4pC1d7dTCfLIu8lxcOm0=" }, "org/opentest4j#opentest4j/1.3.0": { "jar": "sha256-SOLfY2yrZWPO1k3N/4q7I1VifLI27wvzdZhoLd90Lxs=", @@ -1457,13 +1584,13 @@ "jar": "sha256-PG+sJCTbPUqFO2afTj0dnDxVIjXhmjGWc/iHCDwjA6E=", "pom": "sha256-ku7iS8PIQ+SIHUbB3WUFRx7jFC+s+0ZrQoz+paVsa2A=" }, - "org/ow2/asm#asm/9.7": { - "jar": "sha256-rfRtXjSUC98Ujs3Sap7o7qlElqcgNP9xQQZrPupcTp0=", - "pom": "sha256-3gARXx2E86Cy7jpLb2GS0Gb4bRhdZ7nRUi8sgP6sXwA=" + "org/ow2/asm#asm/9.8": { + "jar": "sha256-h26raoPa7K1cpn65/KuwY8l7WuuM8fynqYns3hdSIFE=", + "pom": "sha256-wTZ8O7OD12Gef3l+ON91E4hfLu8ErntZCPaCImV7W6o=" }, - "org/reactivestreams#reactive-streams/1.0.3": { - "jar": "sha256-He4EgQctGckptiPhVeFNL2CF3AEVKaCg2+/ITPVx2GU=", - "pom": "sha256-zO1GcXX0JXgz9ssHUQ/5ezx1oG4aWNiCo515hT1RxgI=" + "org/reactivestreams#reactive-streams/1.0.4": { + "jar": "sha256-91yll3ibPaxY9hhXuawuEDSmj6Zy2zUFWo+0UJ4yXyg=", + "pom": "sha256-VLoj2HotQ4VAyZ74eUoIVvxXOiVrSYZ4KDw8Z+8Yrag=" }, "org/reflections#reflections/0.10.2": { "jar": "sha256-k4otCP5UBQ12ELlE2N3DoJNVcQ2ea+CqyDjbwE6aKCU=", @@ -1473,18 +1600,18 @@ "jar": "sha256-q1fKj9IjdywXNl0SH1npTsvwrlnQjAOjy1uBBxwBkZU=", "pom": "sha256-vZYkPX1CGM18x9RcDjD6E0gKGk+R01bt19/pPx/7aOY=" }, - "org/slf4j#slf4j-api/2.0.13": { - "jar": "sha256-58KkjoUVuh9J+mN9V7Ti9ZCz9b2XQHrGmcOqXvsSBKk=", - "pom": "sha256-UYBc/agMoqyCBBuQbZhl056YI+NYoO62I3nf7UdcFXE=" + "org/slf4j#slf4j-api/2.0.17": { + "jar": "sha256-e3UdlSBhlU1av+1xgcH2RdM2CRtnmJFZHWMynGIuuDI=", + "pom": "sha256-FQxAKH987NwhuTgMqsmOkoxPM8Aj22s0jfHFrJdwJr8=" }, - "org/slf4j#slf4j-bom/2.0.13": { - "pom": "sha256-evJy16c44rmHY3kf/diWBA6L6ymKiP1gYhRAeXbNMQo=" + "org/slf4j#slf4j-bom/2.0.17": { + "pom": "sha256-940ntkK0uIbrg5/BArXNn+fzDzdZn/5oGFvk4WCQMek=" }, "org/slf4j#slf4j-parent/1.7.36": { "pom": "sha256-uziNN/vN083mTDzt4hg4aTIY3EUfBAQMXfNgp47X6BI=" }, - "org/slf4j#slf4j-parent/2.0.13": { - "pom": "sha256-Z/rP1R8Gk1zqhWFaBHddcNgL/QOtDzdnA1H5IO0LtYo=" + "org/slf4j#slf4j-parent/2.0.17": { + "pom": "sha256-lc1x6FLf2ykSbli3uTnVfsKy5gJDkYUuC1Rd7ggrvzs=" }, "org/sonatype/oss#oss-parent/7": { "pom": "sha256-tR+IZ8kranIkmVV/w6H96ne9+e9XRyL+kM5DailVlFQ=" @@ -1498,9 +1625,9 @@ "org/yaml#snakeyaml/1.23/android": { "jar": "sha256-wPepBigXKXDT/21+qnoE9ztXKQs7jbqRbIKBp28iFMo=" }, - "tools/profiler#async-profiler/3.0": { - "jar": "sha256-j3mIYASdAfSi+FNZbSjIXSmD8MCY8WWjKQm32px0IJ8=", - "pom": "sha256-kcs0wRa8nJ0jcynAw9TJdrLcby37mv6e8uRUO5aJiVU=" + "tools/profiler#async-profiler/4.0": { + "jar": "sha256-F380ABWw5Stmc6+zigftsS1YzyeSCk3Jup526dDsqYY=", + "pom": "sha256-qdVKkeNTQa6fXHSe1n2we6ty/0wHeZIz0QSYCMYc1E4=" } } } diff --git a/pkgs/by-name/ja/jadx/nix-build.patch b/pkgs/by-name/ja/jadx/nix-build.patch new file mode 100644 index 000000000000..30beaa9135b9 --- /dev/null +++ b/pkgs/by-name/ja/jadx/nix-build.patch @@ -0,0 +1,216 @@ +diff --git a/build.gradle.kts b/build.gradle.kts +index 7e4d28a9..0fe94ff6 100644 +--- a/build.gradle.kts ++++ b/build.gradle.kts +@@ -115,46 +115,11 @@ fun isNonStable(version: String): Boolean { + destinationDirectory.set(layout.buildDirectory) + } + +-val distWin by tasks.registering(Zip::class) { +- group = "jadx" +- description = "Build Windows bundle" +- +- val guiTask = tasks.getByPath("jadx-gui:copyDistWin") +- dependsOn(guiTask) +- from(guiTask.outputs) +- +- destinationDirectory.set(layout.buildDirectory.dir("distWin")) +- archiveFileName.set("jadx-gui-$jadxVersion-win.zip") +- duplicatesStrategy = DuplicatesStrategy.EXCLUDE +-} +- +-val distWinWithJre by tasks.registering(Zip::class) { +- description = "Build Windows with JRE bundle" +- +- val guiTask = tasks.getByPath(":jadx-gui:copyDistWinWithJre") +- dependsOn(guiTask) +- from(guiTask.outputs) +- +- destinationDirectory.set(layout.buildDirectory.dir("distWinWithJre")) +- archiveFileName.set("jadx-gui-$jadxVersion-with-jre-win.zip") +- duplicatesStrategy = DuplicatesStrategy.EXCLUDE +-} +- + val dist by tasks.registering { + group = "jadx" + description = "Build jadx distribution zip bundles" + + dependsOn(pack) +- +- val os = DefaultNativePlatform.getCurrentOperatingSystem() +- if (os.isWindows) { +- if (project.hasProperty("bundleJRE")) { +- println("Build win bundle with JRE") +- dependsOn(distWinWithJre) +- } else { +- dependsOn(distWin) +- } +- } + } + + val cleanBuildDir by tasks.registering(Delete::class) { +diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts +index ff9e7e36..7a63af40 100644 +--- a/buildSrc/build.gradle.kts ++++ b/buildSrc/build.gradle.kts +@@ -4,8 +4,6 @@ + + dependencies { + implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.0") +- +- implementation("org.openrewrite:plugin:6.19.1") + } + + repositories { +diff --git a/buildSrc/src/main/kotlin/jadx-java.gradle.kts b/buildSrc/src/main/kotlin/jadx-java.gradle.kts +index ad65de18..ecb53db1 100644 +--- a/buildSrc/src/main/kotlin/jadx-java.gradle.kts ++++ b/buildSrc/src/main/kotlin/jadx-java.gradle.kts +@@ -3,8 +3,6 @@ + plugins { + java + checkstyle +- +- id("jadx-rewrite") + } + + val jadxVersion: String by rootProject.extra +diff --git a/buildSrc/src/main/kotlin/jadx-rewrite.gradle.kts b/buildSrc/src/main/kotlin/jadx-rewrite.gradle.kts +deleted file mode 100644 +index aab46d55..00000000 +--- a/buildSrc/src/main/kotlin/jadx-rewrite.gradle.kts ++++ /dev/null +@@ -1,35 +0,0 @@ +-plugins { +- id("org.openrewrite.rewrite") +-} +- +-repositories { +- mavenCentral() +-} +- +-dependencies { +- rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:3.13.0") +- rewrite("org.openrewrite.recipe:rewrite-logging-frameworks:3.11.0") +- rewrite("org.openrewrite.recipe:rewrite-migrate-java:3.13.0") +- rewrite("org.openrewrite.recipe:rewrite-static-analysis:2.12.0") +-} +- +-tasks { +- rewrite { +- // exclusion("src/test/java/jadx/tests/integration") +- +- // activeRecipe("org.openrewrite.java.migrate.Java8toJava11") +- +- // checkstyle auto fix +- // activeRecipe("org.openrewrite.staticanalysis.CodeCleanup") +- // setCheckstyleConfigFile(file("$rootDir/config/checkstyle/checkstyle.xml")) +- +- // logging +- // activeRecipe("org.openrewrite.java.logging.slf4j.Slf4jBestPractices") +- // activeRecipe("org.openrewrite.java.logging.slf4j.LoggersNamedForEnclosingClass") +- // activeRecipe("org.openrewrite.java.logging.slf4j.ParameterizedLogging") +- // activeRecipe("org.openrewrite.java.logging.PrintStackTraceToLogError") +- +- // testing +- activeRecipe("org.openrewrite.java.testing.assertj.Assertj") +- } +-} +diff --git a/jadx-gui/build.gradle.kts b/jadx-gui/build.gradle.kts +index b9d64ae7..4c1c23f8 100644 +--- a/jadx-gui/build.gradle.kts ++++ b/jadx-gui/build.gradle.kts +@@ -2,7 +2,6 @@ + id("jadx-kotlin") + id("application") + id("jadx-library") +- id("edu.sc.seis.launch4j") version "3.0.6" + id("com.gradleup.shadow") version "8.3.8" + id("org.beryx.runtime") version "1.13.1" + } +@@ -136,36 +135,6 @@ + } + } + +-launch4j { +- mainClassName.set(application.mainClass.get()) +- copyConfigurable.set(listOf()) +- dontWrapJar.set(true) +- icon.set("$projectDir/src/main/resources/logos/jadx-logo.ico") +- outfile.set("jadx-gui-$jadxVersion.exe") +- version.set(jadxVersion) +- copyright.set("Skylot") +- windowTitle.set("jadx") +- companyName.set("jadx") +- jreMinVersion.set("11") +- jvmOptions.set(escapeJVMOptions()) +- requires64Bit.set(true) +- downloadUrl.set("https://www.oracle.com/java/technologies/downloads/#jdk21-windows") +- supportUrl.set("https://github.com/skylot/jadx") +- +- bundledJrePath.set(if (project.hasProperty("bundleJRE")) "%EXEDIR%/jre" else "%JAVA_HOME%") +- classpath.set(tasks.getByName("shadowJar").outputs.files.map { "%EXEDIR%/lib/${it.name}" }.sorted().toList()) +- println("Launch4J classpath: ${classpath.get()}") +- +- chdir.set("") // don't change current dir +- libraryDir.set("") // don't add any libs +-} +- +-fun escapeJVMOptions(): List { +- return application.applicationDefaultJvmArgs +- .toList() +- .map { if (it.startsWith("-D")) "\"$it\"" else it } +-} +- + runtime { + addOptions("--strip-debug", "--compress", "zip-9", "--no-header-files", "--no-man-pages") + addModules( +@@ -186,48 +155,6 @@ fun escapeJVMOptions(): List { + } + } + +-val copyDistWin by tasks.registering(Copy::class) { +- description = "Copy files for Windows bundle" +- +- val libTask = tasks.getByName("shadowJar") +- dependsOn(libTask) +- from(libTask.outputs) { +- include("*.jar") +- into("lib") +- } +- val exeTask = tasks.getByName("createExe") +- dependsOn(exeTask) +- from(exeTask.outputs) { +- include("*.exe") +- } +- into(layout.buildDirectory.dir("jadx-gui-win")) +- duplicatesStrategy = DuplicatesStrategy.EXCLUDE +-} +- +-val copyDistWinWithJre by tasks.registering(Copy::class) { +- description = "Copy files for Windows with JRE bundle" +- +- val jreTask = tasks.runtime.get() +- dependsOn(jreTask) +- from(jreTask.jreDir) { +- include("**/*") +- into("jre") +- } +- val libTask = tasks.getByName("shadowJar") +- dependsOn(libTask) +- from(libTask.outputs) { +- include("*.jar") +- into("lib") +- } +- val exeTask = tasks.getByName("createExe") +- dependsOn(exeTask) +- from(exeTask.outputs) { +- include("*.exe") +- } +- into(layout.buildDirectory.dir("jadx-gui-with-jre-win")) +- duplicatesStrategy = DuplicatesStrategy.EXCLUDE +-} +- + val syncNLSLines by tasks.registering(JavaExec::class) { + group = "jadx-dev" + description = "Utility task to sync new/missing translation using EN as a reference" diff --git a/pkgs/by-name/ja/jadx/no-native-deps.diff b/pkgs/by-name/ja/jadx/no-native-deps.diff deleted file mode 100644 index e507c10133fd..000000000000 --- a/pkgs/by-name/ja/jadx/no-native-deps.diff +++ /dev/null @@ -1,68 +0,0 @@ -diff --git a/jadx-gui/build.gradle.kts b/jadx-gui/build.gradle.kts -index 09f2c05f..bdb641b0 100644 ---- a/jadx-gui/build.gradle.kts -+++ b/jadx-gui/build.gradle.kts -@@ -1,7 +1,6 @@ - plugins { - id("jadx-kotlin") - id("application") -- id("edu.sc.seis.launch4j") version "3.0.5" - id("com.github.johnrengelman.shadow") version "8.1.1" - id("org.beryx.runtime") version "1.13.1" - } -@@ -101,24 +100,6 @@ - } - } - --launch4j { -- mainClassName.set(application.mainClass.get()) -- copyConfigurable.set(listOf()) -- setJarTask(tasks.shadowJar.get()) -- icon.set("$projectDir/src/main/resources/logos/jadx-logo.ico") -- outfile.set("jadx-gui-$jadxVersion.exe") -- copyright.set("Skylot") -- windowTitle.set("jadx") -- companyName.set("jadx") -- jreMinVersion.set("11") -- jvmOptions.set(application.applicationDefaultJvmArgs.toSet()) -- requires64Bit.set(true) -- initialHeapPercent.set(5) -- maxHeapSize.set(4096) -- maxHeapPercent.set(70) -- downloadUrl.set("https://www.oracle.com/java/technologies/downloads/#jdk17-windows") -- bundledJrePath.set(if (project.hasProperty("bundleJRE")) "%EXEDIR%/jre" else "%JAVA_HOME%") --} - - runtime { - addOptions("--strip-debug", "--compress", "2", "--no-header-files", "--no-man-pages") -@@ -137,30 +118,6 @@ - } - } - --val copyDistWinWithJre by tasks.registering(Copy::class) { -- group = "jadx" -- dependsOn(tasks.named("runtime"), tasks.named("createExe")) -- from(runtime.jreDir) { -- include("**/*") -- into("jre") -- } -- from(tasks.named("createExe").get().outputs) { -- include("*.exe") -- } -- into(layout.buildDirectory.dir("jadx-gui-$jadxVersion-with-jre-win")) -- duplicatesStrategy = DuplicatesStrategy.EXCLUDE --} -- --val distWinWithJre by tasks.registering(Zip::class) { -- group = "jadx" -- dependsOn(copyDistWinWithJre) -- archiveFileName.set("jadx-gui-$jadxVersion-with-jre-win.zip") -- from(copyDistWinWithJre.get().outputs) { -- include("**/*") -- } -- into(layout.buildDirectory.asFile) -- duplicatesStrategy = DuplicatesStrategy.EXCLUDE --} - - val addNewNLSLines by tasks.registering(JavaExec::class) { - group = "jadx" diff --git a/pkgs/by-name/ja/jadx/package.nix b/pkgs/by-name/ja/jadx/package.nix index 13d6f05ac71d..979dd20f82a3 100644 --- a/pkgs/by-name/ja/jadx/package.nix +++ b/pkgs/by-name/ja/jadx/package.nix @@ -17,18 +17,18 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "jadx"; - version = "1.5.0"; + version = "1.5.3"; src = fetchFromGitHub { owner = "skylot"; repo = "jadx"; rev = "v${finalAttrs.version}"; - hash = "sha256-+F+PHAd1+FmdAlQkjYDBsUYCUzKXG19ZUEorfvBUEg0="; + hash = "sha256-YfA0o25A3jtqVTB8LsJGCS6+dk7zt9kWnxlzDceHjeg="; }; patches = [ - # Remove use of launch4j - contains platform binaries not able to be cached by mitmCache - ./no-native-deps.diff + # Remove launch4j (uncacheable Windows binaries) and OpenRewrite (build failures) + ./nix-build.patch ]; nativeBuildInputs = [ @@ -106,6 +106,9 @@ stdenv.mkDerivation (finalAttrs: { license = lib.licenses.asl20; platforms = lib.platforms.unix; mainProgram = "jadx-gui"; - maintainers = with lib.maintainers; [ emilytrau ]; + maintainers = with lib.maintainers; [ + emilytrau + Misaka13514 + ]; }; }) diff --git a/pkgs/by-name/ja/jaxodraw/package.nix b/pkgs/by-name/ja/jaxodraw/package.nix new file mode 100644 index 000000000000..4f4b9b864ab4 --- /dev/null +++ b/pkgs/by-name/ja/jaxodraw/package.nix @@ -0,0 +1,76 @@ +{ + lib, + maven, + fetchsvn, + makeWrapper, + makeDesktopItem, + copyDesktopItems, + jdk, + jre, +}: + +let + version = "2.1-0-unstable-2025-01-18"; + description = "Java program for drawing Feynman diagrams"; +in +maven.buildMavenPackage { + pname = "jaxodraw"; + inherit version; + + # pom.xml in the 2.1-0 source refers to non-existent ../pom/pom.xml and fails to build. + # src = fetchurl { + # url = "mirror://sourceforge/jaxodraw/jaxodraw-${version}-src.tar.gz"; + # hash = "sha256-EE0amcFKm/zUO4PzPhkPYZYykZw+ARJFu0/hlUOhu5s="; + # }; + + src = fetchsvn { + url = "https://svn.code.sf.net/p/jaxodraw/code/trunk/jaxodraw"; + rev = "3346"; + hash = "sha256-jZ2Jvrysb5TeoAw5gubhtn39gMxdAGh/vTsaSIEZ7zs="; + }; + + mvnJdk = jdk; + mvnParameters = "-PskipTests"; # Tests fail + mvnHash = "sha256-QfMyiz0zWFi3kUwH8pcgu7FiXleP/KO111avs1WWWG0="; + + nativeBuildInputs = [ + makeWrapper + copyDesktopItems + ]; + + desktopItems = [ + (makeDesktopItem { + name = "jaxodraw"; + desktopName = "JaxoDraw"; + exec = "jaxodraw"; + icon = "jaxodraw"; + categories = [ + "Science" + "Education" + "Physics" + ]; + comment = description; + }) + ]; + + installPhase = '' + runHook preInstall + + install -Dm644 target/jaxodraw-*-with-deps.jar $out/lib/jaxodraw/jaxodraw.jar + makeWrapper ${lib.getExe jre} $out/bin/jaxodraw \ + --add-flags "-jar $out/lib/jaxodraw/jaxodraw.jar" + + install -Dm644 src/site/resources/images/top.png $out/share/icons/hicolor/128x128/apps/jaxodraw.png + + runHook postInstall + ''; + + meta = { + inherit description; + homepage = "https://jaxodraw.sourceforge.io"; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ulysseszhan ]; + mainProgram = "jaxodraw"; + }; +} diff --git a/pkgs/by-name/js/json-fortran/package.nix b/pkgs/by-name/js/json-fortran/package.nix index 039f864779c9..c92f24d2ce4e 100644 --- a/pkgs/by-name/js/json-fortran/package.nix +++ b/pkgs/by-name/js/json-fortran/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "json-fortran"; - version = "9.1.0"; + version = "9.2.0"; src = fetchFromGitHub { owner = "jacobwilliams"; repo = "json-fortran"; rev = version; - hash = "sha256-MumYG9kfbtIMT0BQzHF2jZRT1yAUkfbQ/I0/LqRKnKk="; + hash = "sha256-DjNBB1qYXZcUSvjcWqunFeI275F3YojRDCRf61pIkYs="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ka/kanban/package.nix b/pkgs/by-name/ka/kanban/package.nix new file mode 100644 index 000000000000..b531fa012254 --- /dev/null +++ b/pkgs/by-name/ka/kanban/package.nix @@ -0,0 +1,38 @@ +{ + lib, + fetchFromGitHub, + rustPlatform, + nix-update-script, +}: + +rustPlatform.buildRustPackage (finalAttrs: { + pname = "kanban"; + version = "0.1.16"; + + src = fetchFromGitHub { + owner = "fulsomenko"; + repo = "kanban"; + tag = "v${finalAttrs.version}"; + hash = "sha256-WksL0AhooBTV+W1knU+tns/qvHDd0z6mE2HkC57BAcU="; + }; + + GIT_COMMIT_HASH = finalAttrs.src.rev; + + cargoHash = "sha256-Q/o5MHjVRrJpfhkzNNJ6j4oASV5wDg/0Zi43zPlp5p8="; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Terminal-based project management solution"; + longDescription = '' + A terminal-based kanban/project management tool inspired by lazygit, + built with Rust. Features include file persistence, keyboard-driven + navigation, multi-select capabilities, and sprint management. + ''; + homepage = "https://github.com/fulsomenko/kanban"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fulsomenko ]; + mainProgram = "kanban"; + platforms = lib.platforms.all; + }; +}) diff --git a/pkgs/by-name/ka/karere/package.nix b/pkgs/by-name/ka/karere/package.nix index 8fbcf36a4e29..2365d3b0fbc2 100644 --- a/pkgs/by-name/ka/karere/package.nix +++ b/pkgs/by-name/ka/karere/package.nix @@ -2,10 +2,12 @@ lib, stdenv, fetchFromGitHub, - vala, + rustPlatform, meson, ninja, pkg-config, + cargo, + rustc, wrapGAppsHook4, blueprint-compiler, desktop-file-utils, @@ -13,26 +15,32 @@ gtk4, libadwaita, webkitgtk_6_0, - json-glib, - libgee, + glib-networking, }: stdenv.mkDerivation (finalAttrs: { pname = "karere"; - version = "1.1.0"; + version = "2.0.9"; src = fetchFromGitHub { owner = "tobagin"; repo = "karere"; - rev = "v${finalAttrs.version}"; - hash = "sha256-4jV2vE7KtdpA9qjKR4xj/w6g1WZD/l8ezRtuFyzJtZ8="; + tag = "v${finalAttrs.version}"; + hash = "sha256-roxynxGiM43VHl+ngo/EMKEJ56XaYA6qaok/SzppFlY="; + }; + + cargoDeps = rustPlatform.fetchCargoVendor { + inherit (finalAttrs) pname version src; + hash = "sha256-BYG1TgCbkaQlquFy/tmjzdfypc8yno7w7SdBsgqOxkU="; }; nativeBuildInputs = [ - vala meson ninja pkg-config + cargo + rustc + rustPlatform.cargoSetupHook wrapGAppsHook4 blueprint-compiler desktop-file-utils @@ -43,8 +51,7 @@ stdenv.mkDerivation (finalAttrs: { gtk4 libadwaita webkitgtk_6_0 - json-glib - libgee + glib-networking ]; meta = { @@ -52,7 +59,10 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/tobagin/karere"; changelog = "https://github.com/tobagin/karere/blob/${finalAttrs.src.rev}/CHANGELOG.md"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ marcel ]; + maintainers = with lib.maintainers; [ + marcel + aleksana + ]; mainProgram = "karere"; }; }) diff --git a/pkgs/by-name/kd/kdash/package.nix b/pkgs/by-name/kd/kdash/package.nix index b3069ab51b10..fffee971aa87 100644 --- a/pkgs/by-name/kd/kdash/package.nix +++ b/pkgs/by-name/kd/kdash/package.nix @@ -31,6 +31,9 @@ rustPlatform.buildRustPackage rec { xorg.xcbutil ]; + # Fix for build failure with gcc15 + env.NIX_CFLAGS_COMPILE = "-std=gnu17"; + cargoHash = "sha256-72DuM64wj8WW6soagodOFIeHvVn1CPpb1T3Y7GQYsbs="; meta = { diff --git a/pkgs/by-name/ki/kind2/package.nix b/pkgs/by-name/ki/kind2/package.nix index 34ae627b4597..c571fd6d0058 100644 --- a/pkgs/by-name/ki/kind2/package.nix +++ b/pkgs/by-name/ki/kind2/package.nix @@ -23,7 +23,7 @@ rustPlatform.buildRustPackage rec { ''; # requires nightly features - RUSTC_BOOTSTRAP = true; + env.RUSTC_BOOTSTRAP = true; meta = { description = "Functional programming language and proof assistant"; diff --git a/pkgs/by-name/kn/knot-resolver_6/package.nix b/pkgs/by-name/kn/knot-resolver_6/package.nix index 6c571faaee84..0054e53d6dc8 100644 --- a/pkgs/by-name/kn/knot-resolver_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver_6/package.nix @@ -34,11 +34,11 @@ let # TODO: we could cut the `let` short here, but it would de-indent everything. unwrapped = stdenv.mkDerivation (finalAttrs: { pname = "knot-resolver_6"; - version = "6.0.17"; + version = "6.1.0"; src = fetchurl { url = "https://secure.nic.cz/files/knot-resolver/knot-resolver-${finalAttrs.version}.tar.xz"; - hash = "sha256-E9RJbvh66y+9OwBX4iEdRYUgUkHlCaDNQ0Hb5ejLXBw="; + hash = "sha256-eSHfdQcobZBXS79a5mSopTeAXOQLX6ixX10NM+LEONA="; }; outputs = [ @@ -48,12 +48,6 @@ let ]; patches = [ - (fetchpatch { - name = "test-cache-aarch64-darwin.patch"; - url = "https://gitlab.nic.cz/knot/knot-resolver/-/commit/d155d0dbe408a3327b39f70e122aea6fb2b86684.diff"; - excludes = [ "NEWS" ]; - hash = "sha256-3w33v8UfhGdA50BlkfHpQLFxg+5ELk0lp7RzgvkSzK8="; - }) # Install-time paths sometimes differ from run-time paths in nixpkgs. ./paths.patch ]; diff --git a/pkgs/by-name/ko/kord/package.nix b/pkgs/by-name/ko/kord/package.nix index ad3862b6f54f..682215044f71 100644 --- a/pkgs/by-name/ko/kord/package.nix +++ b/pkgs/by-name/ko/kord/package.nix @@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec { version = "0.6.1"; # kord depends on nightly features - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; src = fetchFromGitHub { owner = "twitchax"; diff --git a/pkgs/by-name/ku/kubectl-gadget/package.nix b/pkgs/by-name/ku/kubectl-gadget/package.nix index 3b40b4ba85cd..6962e3b252f8 100644 --- a/pkgs/by-name/ku/kubectl-gadget/package.nix +++ b/pkgs/by-name/ku/kubectl-gadget/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "kubectl-gadget"; - version = "0.47.0"; + version = "0.48.0"; src = fetchFromGitHub { owner = "inspektor-gadget"; repo = "inspektor-gadget"; - rev = "v${version}"; - hash = "sha256-ZGi7zsIphiXNLfVc6u+ZSGsgWWcMaBpyt1BpwS2WRCU="; + tag = "v${version}"; + hash = "sha256-g2nJYiGukgi6CEhIJRuqqpPT9XbfQGFVmQD4Ne8gul0="; }; - vendorHash = "sha256-0vpPBQ1ty4FZMj3bgB56Gu5pNdo7SyhxvGQOHos6m9s="; + vendorHash = "sha256-FLWpvCHeZUnlGZM1lxNoArqfSP2iQuYnhBRtD2ymclI="; env.CGO_ENABLED = 0; @@ -37,6 +37,7 @@ buildGoModule rec { description = "Collection of gadgets for troubleshooting Kubernetes applications using eBPF"; mainProgram = "kubectl-gadget"; homepage = "https://inspektor-gadget.io"; + changelog = "https://github.com/inspektor-gadget/inspektor-gadget/releases/tag/${src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ kranurag7 diff --git a/pkgs/by-name/le/lemon-graph/package.nix b/pkgs/by-name/le/lemon-graph/package.nix index 36a20337fb16..35c1e268a125 100644 --- a/pkgs/by-name/le/lemon-graph/package.nix +++ b/pkgs/by-name/le/lemon-graph/package.nix @@ -27,6 +27,9 @@ stdenv.mkDerivation rec { # fix cmake compatibility. vendored from https://github.com/The-OpenROAD-Project/lemon-graph/pull/2 ./cmake_version.patch + + # fix C++20 compatibility. vendored from https://github.com/The-OpenROAD-Project/lemon-graph/commit/f871b10396270cfd09ffddc4b6ead07722e9c232 + ./update_cxx20.patch ]; meta = { diff --git a/pkgs/by-name/le/lemon-graph/update_cxx20.patch b/pkgs/by-name/le/lemon-graph/update_cxx20.patch new file mode 100644 index 000000000000..a93e292c8fbf --- /dev/null +++ b/pkgs/by-name/le/lemon-graph/update_cxx20.patch @@ -0,0 +1,127 @@ +From f871b10396270cfd09ffddc4b6ead07722e9c232 Mon Sep 17 00:00:00 2001 +From: Matt Liberty +Date: Wed, 13 Nov 2024 03:48:00 +0000 +Subject: [PATCH] Update for c++20 + +Signed-off-by: Matt Liberty +--- + lemon/bits/array_map.h | 27 ++++++++++++++------------- + 1 file changed, 14 insertions(+), 13 deletions(-) + +diff --git a/lemon/bits/array_map.h b/lemon/bits/array_map.h +index 355ee00..f8a7133 100644 +--- a/lemon/bits/array_map.h ++++ b/lemon/bits/array_map.h +@@ -75,6 +75,7 @@ namespace lemon { + typedef typename Notifier::ObserverBase Parent; + + typedef std::allocator Allocator; ++ typedef std::allocator_traits AllocatorTraits; + + public: + +@@ -88,7 +89,7 @@ namespace lemon { + Item it; + for (nf->first(it); it != INVALID; nf->next(it)) { + int id = nf->id(it);; +- allocator.construct(&(values[id]), Value()); ++ AllocatorTraits::construct(allocator, &(values[id]), Value()); + } + } + +@@ -102,7 +103,7 @@ namespace lemon { + Item it; + for (nf->first(it); it != INVALID; nf->next(it)) { + int id = nf->id(it);; +- allocator.construct(&(values[id]), value); ++ AllocatorTraits::construct(allocator, &(values[id]), value); + } + } + +@@ -121,7 +122,7 @@ namespace lemon { + Item it; + for (nf->first(it); it != INVALID; nf->next(it)) { + int id = nf->id(it);; +- allocator.construct(&(values[id]), copy.values[id]); ++ AllocatorTraits::construct(allocator, &(values[id]), copy.values[id]); + } + } + +@@ -218,15 +219,15 @@ namespace lemon { + for (nf->first(it); it != INVALID; nf->next(it)) { + int jd = nf->id(it);; + if (id != jd) { +- allocator.construct(&(new_values[jd]), values[jd]); +- allocator.destroy(&(values[jd])); ++ AllocatorTraits::construct(allocator, &(new_values[jd]), values[jd]); ++ AllocatorTraits::destroy(allocator, &(values[jd])); + } + } + if (capacity != 0) allocator.deallocate(values, capacity); + values = new_values; + capacity = new_capacity; + } +- allocator.construct(&(values[id]), Value()); ++ AllocatorTraits::construct(allocator, &(values[id]), Value()); + } + + // \brief Adds more new keys to the map. +@@ -260,8 +261,8 @@ namespace lemon { + } + } + if (found) continue; +- allocator.construct(&(new_values[id]), values[id]); +- allocator.destroy(&(values[id])); ++ AllocatorTraits::construct(allocator, &(new_values[id]), values[id]); ++ AllocatorTraits::destroy(allocator, &(values[id])); + } + if (capacity != 0) allocator.deallocate(values, capacity); + values = new_values; +@@ -269,7 +270,7 @@ namespace lemon { + } + for (int i = 0; i < int(keys.size()); ++i) { + int id = nf->id(keys[i]); +- allocator.construct(&(values[id]), Value()); ++ AllocatorTraits::construct(allocator, &(values[id]), Value()); + } + } + +@@ -279,7 +280,7 @@ namespace lemon { + // and it overrides the erase() member function of the observer base. + virtual void erase(const Key& key) { + int id = Parent::notifier()->id(key); +- allocator.destroy(&(values[id])); ++ AllocatorTraits::destroy(allocator, &(values[id])); + } + + // \brief Erase more keys from the map. +@@ -289,7 +290,7 @@ namespace lemon { + virtual void erase(const std::vector& keys) { + for (int i = 0; i < int(keys.size()); ++i) { + int id = Parent::notifier()->id(keys[i]); +- allocator.destroy(&(values[id])); ++ AllocatorTraits::destroy(allocator, &(values[id])); + } + } + +@@ -303,7 +304,7 @@ namespace lemon { + Item it; + for (nf->first(it); it != INVALID; nf->next(it)) { + int id = nf->id(it);; +- allocator.construct(&(values[id]), Value()); ++ AllocatorTraits::construct(allocator, &(values[id]), Value()); + } + } + +@@ -317,7 +318,7 @@ namespace lemon { + Item it; + for (nf->first(it); it != INVALID; nf->next(it)) { + int id = nf->id(it); +- allocator.destroy(&(values[id])); ++ AllocatorTraits::destroy(allocator, &(values[id])); + } + allocator.deallocate(values, capacity); + capacity = 0; +-- +2.52.0 + diff --git a/pkgs/by-name/li/libamplsolver/package.nix b/pkgs/by-name/li/libamplsolver/package.nix index 7f4343dea2aa..129307101b48 100644 --- a/pkgs/by-name/li/libamplsolver/package.nix +++ b/pkgs/by-name/li/libamplsolver/package.nix @@ -25,9 +25,15 @@ stdenv.mkDerivation { }) ]; - # Allow install_name_tool rewrite paths on darwin. - # error: install_name_tool: changing install names or rpaths can't be redone for: /nix/store/...-libamplsolver-.../lib/libamplsolver.dylib (for architecture arm64) because larger updated load commands do not fit (the program must be relinked, and you may need to use -headerpad or -headerpad_max_install_names) - NIX_LDFLAGS = lib.optional stdenv.hostPlatform.isDarwin "-headerpad_max_install_names"; + env = { + # For non-trapping FP architectures like loongarch64 and riscv64 + NIX_CFLAGS_COMPILE = lib.optionalString ( + stdenv.hostPlatform.isRiscV64 || stdenv.hostPlatform.isLoongArch64 + ) "-DNO_fpu_control"; + # Allow install_name_tool rewrite paths on darwin. + # error: install_name_tool: changing install names or rpaths can't be redone for: /nix/store/...-libamplsolver-.../lib/libamplsolver.dylib (for architecture arm64) because larger updated load commands do not fit (the program must be relinked, and you may need to use -headerpad or -headerpad_max_install_names) + NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-headerpad_max_install_names"; + }; installPhase = '' runHook preInstall diff --git a/pkgs/by-name/li/libjpeg_turbo/mingw-boolean.patch b/pkgs/by-name/li/libjpeg_turbo/mingw-boolean.patch index e3e6abfc95cb..c68ee5afcfb6 100644 --- a/pkgs/by-name/li/libjpeg_turbo/mingw-boolean.patch +++ b/pkgs/by-name/li/libjpeg_turbo/mingw-boolean.patch @@ -2,7 +2,7 @@ Ported to updated libjpeg-turbo from https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-libjpeg-turbo/jpeg-typedefs.patch --- a/src/jmorecfg.h +++ b/src/jmorecfg.h -@@ -200,6 +200,13 @@ +@@ -200,6 +200,14 @@ */ #ifndef HAVE_BOOLEAN @@ -15,4 +15,5 @@ https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-libjpeg-turbo/jpeg +#if !defined(HAVE_BOOLEAN) && !defined(__RPCNDR_H__) typedef int boolean; #endif ++#endif #ifndef FALSE /* in case these macros already exist */ diff --git a/pkgs/by-name/li/librespot-ma/package.nix b/pkgs/by-name/li/librespot-ma/package.nix index dd1f8160d429..83f0c936bff8 100644 --- a/pkgs/by-name/li/librespot-ma/package.nix +++ b/pkgs/by-name/li/librespot-ma/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage { pname = "librespot-ma"; - version = "0.7.1-unstable-2025-11-06"; + version = "0.8.0-unstable-2025-12-05"; src = fetchFromGitHub { owner = "music-assistant"; repo = "librespot"; - rev = "2af61256649d6c1ed149791a53a20a595b617704"; - hash = "sha256-sarxS6YArK5luX4TRXJUKhreMqhZbsS/3fCVWHxPNpY="; + rev = "1d68d603027d89d1a60bf5a15f180e28382e2cfc"; + hash = "sha256-quKAiXqTwf6cgKi9qqksQRaGqV9UZjerHQZfqDVHCIs="; }; - cargoHash = "sha256-CI2BFmQNK1+J2qaKg6u6WM83jwBuWjeh9dROnrF3Kv0="; + cargoHash = "sha256-Kf3w6tD/MQaXXegtiCkFbUcYwr4OMw6ipLxNLxJ2NTQ="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/by-name/li/libxlsxwriter/package.nix b/pkgs/by-name/li/libxlsxwriter/package.nix index ee52431403f8..896c0f47ea00 100644 --- a/pkgs/by-name/li/libxlsxwriter/package.nix +++ b/pkgs/by-name/li/libxlsxwriter/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation rec { pname = "libxlsxwriter"; - version = "1.2.3"; + version = "1.2.4"; src = fetchFromGitHub { owner = "jmcnamara"; repo = "libxlsxwriter"; tag = "v${version}"; - hash = "sha256-1FUJLsnx0ZNTT66sK7/gbZVo6Se85nbYvtEyoxeOHTI="; + hash = "sha256-mbi2jxxlXVyBTXkmSraZn6vMQAJ61PX2vwG10q2Ixos="; }; buildInputs = [ diff --git a/pkgs/by-name/li/lightdm-slick-greeter/package.nix b/pkgs/by-name/li/lightdm-slick-greeter/package.nix index f8487237582e..ae76e71e78b5 100644 --- a/pkgs/by-name/li/lightdm-slick-greeter/package.nix +++ b/pkgs/by-name/li/lightdm-slick-greeter/package.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation rec { pname = "lightdm-slick-greeter"; - version = "2.2.5"; + version = "2.2.6"; src = fetchFromGitHub { owner = "linuxmint"; repo = "slick-greeter"; rev = version; - hash = "sha256-soXhVpzO4bJfZ5EV6uEDJOhwV9HJDfxUIuHi9AxaE0A="; + hash = "sha256-zYjtd/Lb9ialq+pzOml4FMfPq9maX848Or6lzyZj4qs="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ma/materialgram/package.nix b/pkgs/by-name/ma/materialgram/package.nix index 23250c7b9066..c84e123cb96d 100644 --- a/pkgs/by-name/ma/materialgram/package.nix +++ b/pkgs/by-name/ma/materialgram/package.nix @@ -11,12 +11,12 @@ telegram-desktop.override { unwrapped = telegram-desktop.unwrapped.overrideAttrs ( finalAttrs: previousAttrs: { pname = "materialgram-unwrapped"; - version = "6.2.3.1"; + version = "6.4.0.1"; src = fetchFromGitHub { owner = "kukuruzka165"; repo = "materialgram"; - hash = "sha256-wWg45n6Da/f2j3rT8PNNEN5uuX8rMzZNbHAA2wL8NLA="; + hash = "sha256-aNgvuuowyhEYUm5ie2vxCsdpaDuuZ/3xZJqWA0bN5Lc="; tag = "v${finalAttrs.version}"; fetchSubmodules = true; }; diff --git a/pkgs/by-name/mi/microcom/package.nix b/pkgs/by-name/mi/microcom/package.nix index 072029434496..7521791d1608 100644 --- a/pkgs/by-name/mi/microcom/package.nix +++ b/pkgs/by-name/mi/microcom/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "microcom"; - version = "2023.09.0"; + version = "2025.11.0"; src = fetchFromGitHub { owner = "pengutronix"; repo = "microcom"; rev = "v${version}"; - hash = "sha256-CT/myxOK4U3DzliGsa45WMIFcYLjcoxx6w5S1NL5c7Y="; + hash = "sha256-drQpUOl+QLBvwT++bEBk9Bt+tTQxrnFgfuoGIW5Bcyw="; }; nativeBuildInputs = [ autoreconfHook ]; diff --git a/pkgs/by-name/mi/mise/package.nix b/pkgs/by-name/mi/mise/package.nix index e206610d2580..22fae8337576 100644 --- a/pkgs/by-name/mi/mise/package.nix +++ b/pkgs/by-name/mi/mise/package.nix @@ -22,16 +22,16 @@ rustPlatform.buildRustPackage rec { pname = "mise"; - version = "2026.1.0"; + version = "2026.1.1"; src = fetchFromGitHub { owner = "jdx"; repo = "mise"; rev = "v${version}"; - hash = "sha256-AxNVHWqvLePR4SeVuzUZxLoR0ZGo97I3SJzGOCchjeU="; + hash = "sha256-z2sk7g0XleaV83udcxqvlyqit3NPcqbcttN6Zo9asdI="; }; - cargoHash = "sha256-Z8qZEmtFUeT4c78gIWxanVRJEjArLD65j3eaO7fjfz0="; + cargoHash = "sha256-zau4N7TsgcKmG5AUdUm1WL3AKqT7d8CqTnjnUgqYDvU="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/mm/mmtui/package.nix b/pkgs/by-name/mm/mmtui/package.nix index 732117b1dc8c..c2b7c12ac7ea 100644 --- a/pkgs/by-name/mm/mmtui/package.nix +++ b/pkgs/by-name/mm/mmtui/package.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage rec { pname = "mmtui"; - version = "0.1.1"; + version = "0.2.0"; src = fetchFromGitHub { owner = "SL-RU"; repo = "mmtui"; - tag = "v${version}"; - hash = "sha256-s+50kz6OODZ0xKz8oNF2YEzk+mLZ6gXXynl8g6Uwdo4="; + tag = "mmt-v${version}"; + hash = "sha256-ESnxy3TUWBb0akP471dK6wFQyJQSnjlIevA7ndLAjoE="; }; - cargoHash = "sha256-9F1YMepkWksTQRrkziNhLxVJnhoDH17lSKef5kOjp3Y="; + cargoHash = "sha256-Ck2mQ8PuA4apF6XKDtISmEtNFEHFRRlZwpYCDKCR/rc="; nativeBuildInputs = [ rustPlatform.bindgenHook diff --git a/pkgs/by-name/mo/modrinth-app-unwrapped/package.nix b/pkgs/by-name/mo/modrinth-app-unwrapped/package.nix index 41d2264f6e92..949e7a8ec225 100644 --- a/pkgs/by-name/mo/modrinth-app-unwrapped/package.nix +++ b/pkgs/by-name/mo/modrinth-app-unwrapped/package.nix @@ -31,13 +31,13 @@ in rustPlatform.buildRustPackage (finalAttrs: { pname = "modrinth-app-unwrapped"; - version = "0.10.23"; + version = "0.10.25"; src = fetchFromGitHub { owner = "modrinth"; repo = "code"; tag = "v${finalAttrs.version}"; - hash = "sha256-Or2KkcZnZCZOnUd++SmDgbUOwa6ZmRDaoo7gF3XvN6I="; + hash = "sha256-e+Oienb0jhz7XT9NZB5IAELi+YU3i60JIWBDG8LCEZw="; }; patches = [ @@ -67,7 +67,7 @@ rustPlatform.buildRustPackage (finalAttrs: { --replace-fail '1.0.0-local' '${finalAttrs.version}' ''; - cargoHash = "sha256-hWjoNwKA39YYhPSrQUNaM1nS+CtV9vff+aXpoQLPCOM="; + cargoHash = "sha256-pZwWqWkcq142iIO0Ier9NH56P1EWXAoRiqDCNyElXCA="; mitmCache = gradle.fetchDeps { inherit (finalAttrs) pname; data = ./deps.json; @@ -77,7 +77,7 @@ rustPlatform.buildRustPackage (finalAttrs: { inherit (finalAttrs) pname version src; pnpm = pnpm_9; fetcherVersion = 1; - hash = "sha256-jLuI8qNJgFkuBbKuBNKGuk/6v62iY7fNZX2t3U3olk0="; + hash = "sha256-4MRVk5k/HkCMA/OeRMZwwkCyqmSWkujqLe/8sPfYcwc="; }; nativeBuildInputs = [ @@ -160,7 +160,10 @@ rustPlatform.buildRustPackage (finalAttrs: { gpl3Plus unfreeRedistributable ]; - maintainers = with lib.maintainers; [ getchoo ]; + maintainers = with lib.maintainers; [ + getchoo + hythera + ]; mainProgram = "ModrinthApp"; platforms = with lib.platforms; linux ++ darwin; # This builds on architectures like aarch64, but the launcher itself does not support them yet. diff --git a/pkgs/by-name/mo/monkeysAudio/package.nix b/pkgs/by-name/mo/monkeysAudio/package.nix index b0bc66e9dfb9..09edda8fee6b 100644 --- a/pkgs/by-name/mo/monkeysAudio/package.nix +++ b/pkgs/by-name/mo/monkeysAudio/package.nix @@ -6,12 +6,12 @@ }: stdenv.mkDerivation (finalAttrs: { - version = "11.90"; + version = "11.91"; pname = "monkeys-audio"; src = fetchzip { url = "https://monkeysaudio.com/files/MAC_${builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip"; - hash = "sha256-S1vByCnpZPX/lfaLCPY0Cj2YXRHVtT/FzXuxebQVdRo="; + hash = "sha256-fCNq7xmE/JFYTAV0zlZWn3hnOZYperMryP9xwkt6y2U="; stripRoot = false; }; diff --git a/pkgs/by-name/mo/moon-buggy/package.nix b/pkgs/by-name/mo/moon-buggy/package.nix index 96642b26bc12..de7e810e1981 100644 --- a/pkgs/by-name/mo/moon-buggy/package.nix +++ b/pkgs/by-name/mo/moon-buggy/package.nix @@ -6,15 +6,15 @@ }: stdenv.mkDerivation rec { pname = "moon-buggy"; - version = "1.0.51"; + version = "1.1.0"; buildInputs = [ ncurses ]; src = fetchurl { - url = "http://m.seehuhn.de/programs/moon-buggy-${version}.tar.gz"; - sha256 = "0gyjwlpx0sd728dwwi7pwks4zfdy9rm1w1xbhwg6zip4r9nc2b9m"; + url = "http://www.seehuhn.de/programs/moon-buggy/moon-buggy-${version}.tar.gz"; + sha256 = "sha256-JZrm57GDjEBTKvXA8gzXxhc81cVS7eQIEUBkR1vPxbY="; }; meta = { diff --git a/pkgs/by-name/mo/mosh/package.nix b/pkgs/by-name/mo/mosh/package.nix index b5b016340d27..362835e86745 100644 --- a/pkgs/by-name/mo/mosh/package.nix +++ b/pkgs/by-name/mo/mosh/package.nix @@ -15,6 +15,8 @@ fetchpatch, withUtempter ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isMusl, libutempter, + # build server binary only when set to false (useful for perlless systems) + withClient ? true, }: stdenv.mkDerivation rec { @@ -41,6 +43,8 @@ stdenv.mkDerivation rec { zlib openssl bash-completion + ] + ++ lib.optionals withClient [ perl ] ++ lib.optional withUtempter libutempter; @@ -70,9 +74,17 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-completion" ] ++ lib.optional withUtempter "--with-utempter"; - postInstall = '' - wrapProgram $out/bin/mosh --prefix PERL5LIB : $PERL5LIB - ''; + postInstall = + if withClient then + '' + wrapProgram $out/bin/mosh --prefix PERL5LIB : $PERL5LIB + '' + else + '' + rm $out/bin/mosh + rm $out/bin/mosh-client + rm -r $out/share/{man,bash-completion} + ''; meta = { homepage = "https://mosh.org/"; diff --git a/pkgs/by-name/ms/msedit/package.nix b/pkgs/by-name/ms/msedit/package.nix index 8b9a2ed13745..3319b3e30d9a 100644 --- a/pkgs/by-name/ms/msedit/package.nix +++ b/pkgs/by-name/ms/msedit/package.nix @@ -19,14 +19,18 @@ rustPlatform.buildRustPackage (finalAttrs: { }; cargoHash = "sha256-U8U70nzTmpY6r8J661EJ4CGjx6vWrGovu5m25dvz5sY="; - # Requires nightly features - env.RUSTC_BOOTSTRAP = 1; - # Without -headerpad, the following error occurs on x86_64-darwin - # error: install_name_tool: changing install names or rpaths can't be redone for: ... because larger updated load commands do not fit (the program must be relinked, and you may need to use -headerpad or -headerpad_max_install_names) - NIX_LDFLAGS = lib.optionals (with stdenv.hostPlatform; isDarwin && isx86_64) [ - "-headerpad_max_install_names" - ]; + # Requires nightly features + env = { + RUSTC_BOOTSTRAP = 1; + # Without -headerpad, the following error occurs on x86_64-darwin + # error: install_name_tool: changing install names or rpaths can't be redone for: ... because larger updated load commands do not fit (the program must be relinked, and you may need to use -headerpad or -headerpad_max_install_names) + NIX_LDFLAGS = toString ( + lib.optionals (with stdenv.hostPlatform; isDarwin && isx86_64) [ + "-headerpad_max_install_names" + ] + ); + }; buildInputs = [ icu diff --git a/pkgs/by-name/mu/muffin/package.nix b/pkgs/by-name/mu/muffin/package.nix index 510c3336c3ce..3222e693173f 100644 --- a/pkgs/by-name/mu/muffin/package.nix +++ b/pkgs/by-name/mu/muffin/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { pname = "muffin"; - version = "6.6.0"; + version = "6.6.1"; outputs = [ "out" @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { owner = "linuxmint"; repo = "muffin"; rev = version; - hash = "sha256-yGbnqIKw+Ouk1onr2H+KckO/YQob1N1beLmfqQhOheU="; + hash = "sha256-65XVmSz/p8MYj4vbONCPFG3wdt7sCtHSX9Kg8UcYUf0="; }; patches = [ diff --git a/pkgs/by-name/my/mysql-workbench/package.nix b/pkgs/by-name/my/mysql-workbench/package.nix index f5c055528b47..42973cbfee3e 100644 --- a/pkgs/by-name/my/mysql-workbench/package.nix +++ b/pkgs/by-name/my/mysql-workbench/package.nix @@ -53,11 +53,11 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "mysql-workbench"; - version = "8.0.43"; + version = "8.0.45"; src = fetchurl { url = "https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-${finalAttrs.version}-src.tar.gz"; - hash = "sha256-E9fn72r35WrGzIOoDouIvJFZdpfw9sgDNHwEe/0DdUI="; + hash = "sha256-00sswmBIBtNmxMrJBDqzOhPLErXuXGs634JRHML/aKE="; }; patches = [ diff --git a/pkgs/by-name/nc/ncps/package.nix b/pkgs/by-name/nc/ncps/package.nix index c9d4d47349c3..4c03355bfc92 100644 --- a/pkgs/by-name/nc/ncps/package.nix +++ b/pkgs/by-name/nc/ncps/package.nix @@ -33,13 +33,13 @@ let finalAttrs = { pname = "ncps"; - version = "0.6.0"; + version = "0.6.1"; src = fetchFromGitHub { owner = "kalbasit"; repo = "ncps"; tag = "v${finalAttrs.version}"; - hash = "sha256-/Fa8cpBACbbB74W1HSQmsS06BLofnH094be6I2peX0U="; + hash = "sha256-GIAZ1fKIYCi+qPCIYJpi7q1AigEcIk60SxNUvzYnROA="; }; ldflags = [ diff --git a/pkgs/by-name/ne/nemo/package.nix b/pkgs/by-name/ne/nemo/package.nix index 9098e2b6e052..6c7285943c23 100644 --- a/pkgs/by-name/ne/nemo/package.nix +++ b/pkgs/by-name/ne/nemo/package.nix @@ -37,13 +37,13 @@ let in stdenv.mkDerivation rec { pname = "nemo"; - version = "6.6.2"; + version = "6.6.3"; src = fetchFromGitHub { owner = "linuxmint"; repo = "nemo"; rev = version; - hash = "sha256-5jgD2C71sQkqnAGsnsjK8W9qaLtNtGeYLXsV2+7u2jU="; + hash = "sha256-jsAKNKpNsheyugI6dVQAYYrOTmHLDjJCbjlWmAChFgU="; }; patches = [ diff --git a/pkgs/by-name/ne/neocmakelsp/package.nix b/pkgs/by-name/ne/neocmakelsp/package.nix index 53d3c8e88f4f..3e7c85414eff 100644 --- a/pkgs/by-name/ne/neocmakelsp/package.nix +++ b/pkgs/by-name/ne/neocmakelsp/package.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage rec { pname = "neocmakelsp"; - version = "0.9.0"; + version = "0.9.1"; src = fetchFromGitHub { owner = "Decodetalkers"; repo = "neocmakelsp"; rev = "v${version}"; - hash = "sha256-TFan3gJ5j2sCfM3p8a2bqPwqzn1hFN8ZyCAwAdHRZBU="; + hash = "sha256-4KgkI3wHBee4CAC5rQUV2YTckXfNz6nEZW9PvRygPKM="; }; - cargoHash = "sha256-lqD6o+QXapd6JWMEYUWpAmZK4EWkIlqc5ZN/fMmySTs="; + cargoHash = "sha256-cVl/UqD/8LhTCiy7ttIDcxfJQrKxGhzdLfh/disX+4c="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/ne/nextvi/package.nix b/pkgs/by-name/ne/nextvi/package.nix index d8a525841c6a..80db97f9d16c 100644 --- a/pkgs/by-name/ne/nextvi/package.nix +++ b/pkgs/by-name/ne/nextvi/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "nextvi"; - version = "3.1"; + version = "3.2"; src = fetchFromGitHub { owner = "kyx0r"; repo = "nextvi"; tag = finalAttrs.version; - hash = "sha256-joIb+kJd0Oe1Irpz5zo48G+27umrr3Q1kKoLwpRiD8w="; + hash = "sha256-tFV0VDMAiD099UBsdf1dC2KKFfUCFmJe4kEb/Z69U10="; }; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/ni/nix-ld/package.nix b/pkgs/by-name/ni/nix-ld/package.nix index 3c69baf06241..8290aaa03212 100644 --- a/pkgs/by-name/ni/nix-ld/package.nix +++ b/pkgs/by-name/ni/nix-ld/package.nix @@ -21,8 +21,10 @@ rustPlatform.buildRustPackage rec { hardeningDisable = [ "stackprotector" ]; - NIX_SYSTEM = stdenv.system; - RUSTC_BOOTSTRAP = "1"; + env = { + NIX_SYSTEM = stdenv.system; + RUSTC_BOOTSTRAP = "1"; + }; preCheck = '' export NIX_LD=${stdenv.cc.bintools.dynamicLinker} diff --git a/pkgs/by-name/ni/nixfmt/generated-package.nix b/pkgs/by-name/ni/nixfmt/generated-package.nix index fc2566739ac9..15d12a654017 100644 --- a/pkgs/by-name/ni/nixfmt/generated-package.nix +++ b/pkgs/by-name/ni/nixfmt/generated-package.nix @@ -5,6 +5,7 @@ base, bytestring, cmdargs, + containers, directory, fetchzip, file-embed, @@ -23,15 +24,16 @@ }: mkDerivation { pname = "nixfmt"; - version = "1.1.0"; + version = "1.2.0"; src = fetchzip { - url = "https://github.com/nixos/nixfmt/archive/v1.1.0.tar.gz"; - sha256 = "19sydkdw1579qmvzx0zq06s23bm6m6l9wp1kvsfhxawk8pkz2pc2"; + url = "https://github.com/nixos/nixfmt/archive/v1.2.0.tar.gz"; + sha256 = "1qvj1sddh7bgggqnj7cnhvfh4iz1pwzc9a9awc1g7y349yvpwad3"; }; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base + containers megaparsec mtl parser-combinators diff --git a/pkgs/by-name/ni/nixfmt/update.sh b/pkgs/by-name/ni/nixfmt/update.sh index 3a44a0c6279a..f6890b115ef2 100755 --- a/pkgs/by-name/ni/nixfmt/update.sh +++ b/pkgs/by-name/ni/nixfmt/update.sh @@ -1,5 +1,5 @@ #!/usr/bin/env nix-shell -#!nix-shell -i bash -p cabal2nix curl jq +#!nix-shell --pure -i bash -p cabal2nix curl cacert jq nix # # This script will update the nixfmt derivation to the latest version using # cabal2nix. @@ -24,4 +24,7 @@ cabal2nix --jailbreak \ "https://github.com/nixos/nixfmt/archive/${release_tag}.tar.gz" \ >> "$derivation_file" +nix-shell "$script_dir/../../../../" \ + --run "treefmt --no-cache $derivation_file" + echo "Finished." diff --git a/pkgs/by-name/nn/nnd/package.nix b/pkgs/by-name/nn/nnd/package.nix index 0e85981ae346..f7ba0cfc44c3 100644 --- a/pkgs/by-name/nn/nnd/package.nix +++ b/pkgs/by-name/nn/nnd/package.nix @@ -8,16 +8,16 @@ let in rustPlatform.buildRustPackage (finalAttrs: { pname = "nnd"; - version = "0.67"; + version = "0.68"; src = fetchFromGitHub { owner = "al13n321"; repo = "nnd"; tag = "v${finalAttrs.version}"; - hash = "sha256-qiWzTZlv01IjNUwjzcNRfQrmVyUMTsKtfhXuZydg/Pc="; + hash = "sha256-77WKsk/kKWJjSwikXtLDWY0pRf1pC6YkY9c9xDtheUI="; }; - cargoHash = "sha256-cx4V/DNafoqjfbtPl43Y09eF4fJ89x/ldx6qe70Qn/g="; + cargoHash = "sha256-I9TcZQqKjR4awufmT8fM883YDeyNZUozHaoZfEaE6+0="; meta = { description = "Debugger for Linux"; diff --git a/pkgs/by-name/om/omnix/package.nix b/pkgs/by-name/om/omnix/package.nix index 8c9b417100c7..014334cc9b93 100644 --- a/pkgs/by-name/om/omnix/package.nix +++ b/pkgs/by-name/om/omnix/package.nix @@ -11,16 +11,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "omnix"; - version = "1.3.0"; + version = "1.3.2"; src = fetchFromGitHub { owner = "juspay"; repo = "omnix"; tag = "v${finalAttrs.version}"; - hash = "sha256-wxBZLeYoYIQlZLsWpJty95fUmEbgHPCwbn392b9n3NY="; + hash = "sha256-D9rAVsSFooVWpSX//gTcRcmgiAjwZYNRMDIctMmwnho="; }; - cargoHash = "sha256-qZv/4P9f87Glif2VsdrY23JGw6bSSQYdekF6erY5owk="; + cargoHash = "sha256-3zWbhuZzqkxgM0Js3luR6+Yr5/UGn1EoL6OqxPt94JM="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/op/openbao/ui.nix b/pkgs/by-name/op/openbao/ui.nix index 31e229ae1eba..cfb8e311e1cd 100644 --- a/pkgs/by-name/op/openbao/ui.nix +++ b/pkgs/by-name/op/openbao/ui.nix @@ -2,33 +2,52 @@ stdenvNoCC, openbao, yarn-berry_3, - nodejs, + nodejs_22, }: +let + yarn = yarn-berry_3.override { nodejs = nodejs_22; }; + +in stdenvNoCC.mkDerivation (finalAttrs: { pname = openbao.pname + "-ui"; inherit (openbao) version src; sourceRoot = "${finalAttrs.src.name}/ui"; - offlineCache = yarn-berry_3.fetchYarnBerryDeps { + offlineCache = yarn.fetchYarnBerryDeps { inherit (finalAttrs) src sourceRoot; hash = "sha256-ZG/br4r2YzPPgsysx7MBy1WtUBkar1U84nkKecZ5bvU="; }; nativeBuildInputs = [ - yarn-berry_3.yarnBerryConfigHook - nodejs - yarn-berry_3 + yarn.yarnBerryConfigHook + nodejs_22 + yarn ]; env.YARN_ENABLE_SCRIPTS = 0; + preConfigure = '' + printYarnErrors() { + cat /build/*.log + } + failureHooks+=(printYarnErrors) + ''; + postConfigure = '' substituteInPlace .ember-cli \ --replace-fail "../http/web_ui" "$out" ''; - buildPhase = "yarn run ember build --environment=production"; + buildPhase = '' + runHook preBuild + yarn run ember build --environment=production + runHook postBuild + ''; dontInstall = true; + + meta = (builtins.removeAttrs openbao.meta [ "mainProgram" ]) // { + description = openbao.meta.description + " - web UI"; + }; }) diff --git a/pkgs/by-name/op/opencode/package.nix b/pkgs/by-name/op/opencode/package.nix index 0a856eb9c0d8..1e929fe4fa42 100644 --- a/pkgs/by-name/op/opencode/package.nix +++ b/pkgs/by-name/op/opencode/package.nix @@ -14,12 +14,12 @@ }: let pname = "opencode"; - version = "1.1.6"; + version = "1.1.8"; src = fetchFromGitHub { owner = "anomalyco"; repo = "opencode"; tag = "v${version}"; - hash = "sha256-CXABHBk+stVF57+5oGkuMRFJpwA6qb7AMpkFVWfs38c="; + hash = "sha256-i0PYcI3qM52jcl72dqHxiBUQH5n4oBXTlxJqvWNS8CQ="; }; node_modules = stdenvNoCC.mkDerivation { @@ -71,7 +71,7 @@ let # NOTE: Required else we get errors that our fixed-output derivation references store paths dontFixup = true; - outputHash = "sha256-tea/pSuUOELsSSMdwi0mmG5GsFZpqR5MlyQvVUno7dM="; + outputHash = "sha256-NbKp1XXTirox/UnBSn/VfLtPXnjrDJxU94MaAh22wk4="; outputHashAlgo = "sha256"; outputHashMode = "recursive"; }; diff --git a/pkgs/by-name/op/openroad/package.nix b/pkgs/by-name/op/openroad/package.nix index 33f61e9271f3..c6c251bc0053 100644 --- a/pkgs/by-name/op/openroad/package.nix +++ b/pkgs/by-name/op/openroad/package.nix @@ -96,6 +96,9 @@ stdenv.mkDerivation rec { patchShebangs --build etc/find_messages.py # Disable two tests that are failing curently. sed 's/^.*partition_gcd/# \0/g' -i src/par/test/CMakeLists.txt + # fix build with gcc15 + sed -e '39i #include ' -i src/gpl/src/placerBase.h + sed -e '37i #include ' -i src/gpl/src/routeBase.h ''; cmakeFlags = [ diff --git a/pkgs/by-name/op/opkssh/package.nix b/pkgs/by-name/op/opkssh/package.nix index 91194e4ef660..dfe71e26bbbb 100644 --- a/pkgs/by-name/op/opkssh/package.nix +++ b/pkgs/by-name/op/opkssh/package.nix @@ -8,18 +8,18 @@ buildGoModule (finalAttrs: { pname = "opkssh"; - version = "0.10.0"; + version = "0.11.0"; src = fetchFromGitHub { owner = "openpubkey"; repo = "opkssh"; tag = "v${finalAttrs.version}"; - hash = "sha256-av8XmHRNttZ17y9DnUQkMG+ZHjEytvfetBDPjhn+6+o="; + hash = "sha256-l1FizvOO4oCNHEJEClwOupnjQzthvGO/vRTq1PhJDao="; }; ldflags = [ "-X main.Version=${finalAttrs.version}" ]; - vendorHash = "sha256-vZb94nwfrqoWnFk1STDDiyqGn1Esqz5VvoQemXIzlNg="; + vendorHash = "sha256-AdQtYqhwhkvvr9bbSWylACg75nC/K7hxb13bP5itusM="; nativeInstallCheckInputs = [ versionCheckHook diff --git a/pkgs/by-name/ow/owmods-cli/package.nix b/pkgs/by-name/ow/owmods-cli/package.nix index 98c7ebbb85d1..59145e641333 100644 --- a/pkgs/by-name/ow/owmods-cli/package.nix +++ b/pkgs/by-name/ow/owmods-cli/package.nix @@ -16,16 +16,16 @@ rustPlatform.buildRustPackage rec { pname = "owmods-cli"; - version = "0.15.2"; + version = "0.15.4"; src = fetchFromGitHub { owner = "ow-mods"; repo = "ow-mod-man"; rev = "cli_v${version}"; - hash = "sha256-5ymU9X4J5UPLHxV+7WB29e5Wuq++wYA9bqI2YPjDtWs="; + hash = "sha256-Tu7+H8RCUxKqCtdkPDzEUnK2VUq+80R+kumHRJqf7RY="; }; - cargoHash = "sha256-Z/muI8JLjOFJBSIMWlvCyFW4JI3lP6/O0AI8Uj8AtBo="; + cargoHash = "sha256-/id7DC3W22musOI4r4b0RPqSnIQVn1yHYLZcTilShVk="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/by-name/pa/pactorio/package.nix b/pkgs/by-name/pa/pactorio/package.nix deleted file mode 100644 index fbd54eb5eb89..000000000000 --- a/pkgs/by-name/pa/pactorio/package.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ - lib, - rustPlatform, - fetchFromGitHub, - installShellFiles, - pkg-config, - bzip2, -}: - -rustPlatform.buildRustPackage rec { - pname = "pactorio"; - version = "0.6.0"; - - src = fetchFromGitHub { - owner = "figsoda"; - repo = "pactorio"; - rev = "v${version}"; - sha256 = "sha256-3+irejeDltf7x+gyJxWBgvPgpQx5uU3DewU23Z4Nr/A="; - }; - - cargoHash = "sha256-1rqYp9OZ7hkZhrU813uBQAOZNdQ3j+OQdM6ia+t5cOc="; - - nativeBuildInputs = [ - installShellFiles - pkg-config - ]; - - buildInputs = [ bzip2 ]; - - postInstall = '' - installManPage artifacts/pactorio.1 - installShellCompletion artifacts/pactorio.{bash,fish} --zsh artifacts/_pactorio - ''; - - GEN_ARTIFACTS = "artifacts"; - - meta = { - description = "Mod packager for factorio"; - mainProgram = "pactorio"; - homepage = "https://github.com/figsoda/pactorio"; - changelog = "https://github.com/figsoda/pactorio/blob/v${version}/CHANGELOG.md"; - license = lib.licenses.mpl20; - maintainers = [ ]; - }; -} diff --git a/pkgs/by-name/pe/perfect_dark/package.nix b/pkgs/by-name/pe/perfect_dark/package.nix index 2cba1d68edfe..c37418334bb3 100644 --- a/pkgs/by-name/pe/perfect_dark/package.nix +++ b/pkgs/by-name/pe/perfect_dark/package.nix @@ -22,13 +22,13 @@ assert lib.assertOneOf "romID" romID roms; stdenv.mkDerivation (finalAttrs: { pname = "perfect_dark"; - version = "0-unstable-2025-12-20"; + version = "0-unstable-2026-01-07"; src = fetchFromGitHub { owner = "fgsfdsfgs"; repo = "perfect_dark"; - rev = "2550ce72f4d211d493e3b9057046b16547073fe1"; - hash = "sha256-iRzrVTe2dXdO/ZVvcNKbWpe+z3sH2l6AReiig5i9WOQ="; + rev = "246d737663c3eae4c1cfdc0cb32f92b3fd353d8a"; + hash = "sha256-tSB4OAZv31zbyPy5MbQmnar1ev2FkJyA6FecnFds79I="; postFetch = '' pushd $out diff --git a/pkgs/by-name/ph/phrase-cli/package.nix b/pkgs/by-name/ph/phrase-cli/package.nix index bf10486eceda..6f0534320bd0 100644 --- a/pkgs/by-name/ph/phrase-cli/package.nix +++ b/pkgs/by-name/ph/phrase-cli/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "phrase-cli"; - version = "2.52.0"; + version = "2.53.0"; src = fetchFromGitHub { owner = "phrase"; repo = "phrase-cli"; rev = version; - sha256 = "sha256-y4AsxCtjm3E1nwmSgGelUAa5jajNXfpKLvEjxW7uNrI="; + sha256 = "sha256-G7hIJUGzgMB202Unzrycv9KTkJ88bmRbgVT0v5jA99M="; }; - vendorHash = "sha256-cdoSsESxH1twepMQHg+pl6az6pipbb1LxkpMyMxSCW4="; + vendorHash = "sha256-LyPS2E5v3n7RVV3YEsEUZJZWB5x32TTfeOHAZProuCs="; ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ]; diff --git a/pkgs/by-name/pi/pixieditor/package.nix b/pkgs/by-name/pi/pixieditor/package.nix index c3239695814d..cb836ae71fee 100644 --- a/pkgs/by-name/pi/pixieditor/package.nix +++ b/pkgs/by-name/pi/pixieditor/package.nix @@ -44,13 +44,13 @@ let in buildDotnetModule (finalAttrs: { pname = "pixieditor"; - version = "2.0.1.18"; + version = "2.0.1.19"; src = fetchFromGitHub { owner = "PixiEditor"; repo = "PixiEditor"; tag = finalAttrs.version; - hash = "sha256-mGgFr7K9/vs7g6yugmw2QR+PG2/itb048Su4AdkzBNc="; + hash = "sha256-gtbgcgTyPmx8wI0XaZ4pC0s7vR7qZBAQonUObQXAQpk="; fetchSubmodules = true; }; @@ -173,7 +173,7 @@ buildDotnetModule (finalAttrs: { PixiEditor is a universal 2D platform that aims to provide you with tools and features for all your 2D needs. Create beautiful sprites for your games, animations, edit images, create logos. All packed in an eye-friendly dark theme ''; - homepage = "https://pixieditor.com"; + homepage = "https://pixieditor.net/"; changelog = "https://github.com/PixiEditor/PixiEditor/releases/tag/${finalAttrs.version}"; mainProgram = "pixieditor"; license = lib.licenses.lgpl3Only; diff --git a/pkgs/by-name/pk/pkarr/package.nix b/pkgs/by-name/pk/pkarr/package.nix index 1cf10145d3e8..741aa951fb68 100644 --- a/pkgs/by-name/pk/pkarr/package.nix +++ b/pkgs/by-name/pk/pkarr/package.nix @@ -5,16 +5,16 @@ }: rustPlatform.buildRustPackage rec { pname = "pkarr"; - version = "5.0.1"; + version = "5.0.2"; src = fetchFromGitHub { owner = "pubky"; repo = "pkarr"; rev = "v${version}"; - hash = "sha256-564JL7EG/RB2k2JdxAENpP5UZtKtaGlrZfeYOgsLBEY="; + hash = "sha256-Sh7ly4jmW7XTizsxGV/iDsWjbhxEEall+dUNkEtYahc="; }; - cargoHash = "sha256-HG4cmKQleiWdYBrOgv1Aj/erWjZX5PMwIZpQSQc+sFU="; + cargoHash = "sha256-ikLXNXnU3ysZrB6pcZcusOziBlYM9fCaFvWM6CKe9Zg="; meta = { description = "Public Key Addressable Resource Records (sovereign TLDs) "; diff --git a/pkgs/by-name/po/poutine/package.nix b/pkgs/by-name/po/poutine/package.nix index d6de3256a338..bf33f009ded7 100644 --- a/pkgs/by-name/po/poutine/package.nix +++ b/pkgs/by-name/po/poutine/package.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "poutine"; - version = "1.0.4"; + version = "1.0.5"; src = fetchFromGitHub { owner = "boostsecurityio"; repo = "poutine"; tag = "v${version}"; - hash = "sha256-Rk4Fd/h83NKIVlz/QXOSLnCKfxfKFXUfvUF5FSjomQY="; + hash = "sha256-lAnErnkJY2qU+felYqsbeEBOlCj54unX2iycTWqVAhs="; }; vendorHash = "sha256-qp3Ko+01kk9AH0oCT2Si/si+74gT5KFtPFslwih/IBE="; diff --git a/pkgs/by-name/pr/programmer-calculator/package.nix b/pkgs/by-name/pr/programmer-calculator/package.nix index 16a32ce8057e..aa973bdf5472 100644 --- a/pkgs/by-name/pr/programmer-calculator/package.nix +++ b/pkgs/by-name/pr/programmer-calculator/package.nix @@ -7,20 +7,20 @@ gccStdenv.mkDerivation rec { pname = "programmer-calculator"; - version = "3.0"; + version = "3.0-unstable-2025-11-06"; src = fetchFromGitHub { owner = "alt-romes"; repo = "programmer-calculator"; - rev = "v${version}"; - sha256 = "sha256-9mv8Jac6j3fKWLLCu1Bd/T5dbegUB8rRgsj9MaQhFDw="; + rev = "153272c50b2491ddf25dfbfcf228a08a3b3ace69"; + sha256 = "sha256-24OYG3tVxcc/1i9HRrzW/jPY41KnKkugLziWnG1wQIw="; }; buildInputs = [ ncurses ]; installPhase = '' runHook preInstall - install -Dm 555 pcalc -t "$out/bin" + install -Dm 555 bin/pcalc -t "$out/bin" runHook postInstall ''; @@ -32,7 +32,7 @@ gccStdenv.mkDerivation rec { representations, sizes, and overall close to the bits ''; homepage = "https://alt-romes.github.io/programmer-calculator"; - changelog = "https://github.com/alt-romes/programmer-calculator/releases/tag/v${version}"; + changelog = "https://github.com/alt-romes/programmer-calculator/releases/tag/v${lib.versions.majorMinor version}"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ cjab ]; platforms = lib.platforms.all; diff --git a/pkgs/by-name/pr/proxysql/package.nix b/pkgs/by-name/pr/proxysql/package.nix index 1e05c1408633..885bf4d5de3d 100644 --- a/pkgs/by-name/pr/proxysql/package.nix +++ b/pkgs/by-name/pr/proxysql/package.nix @@ -227,7 +227,6 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "proxysql"; homepage = "https://proxysql.com/"; license = with lib.licenses; [ gpl3Only ]; - teams = [ lib.teams.helsinki-systems ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/qd/qdelay/package.nix b/pkgs/by-name/qd/qdelay/package.nix index 5aadb56b08f1..a3fb8ba2f499 100644 --- a/pkgs/by-name/qd/qdelay/package.nix +++ b/pkgs/by-name/qd/qdelay/package.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "qdelay"; - version = "1.0.4"; + version = "1.0.5"; src = fetchFromGitHub { owner = "tiagolr"; repo = "qdelay"; tag = "v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-6V9L8GTAHN3bzVZ00XlSwh71ZQrx4o37J8kOZtRzjC8="; + hash = "sha256-aPWGqr87ymZSofXa4YKGC7GOE5eB7qSuy9+6OPJl1vE="; }; nativeBuildInputs = [ diff --git a/pkgs/servers/x11/quartz-wm/default.nix b/pkgs/by-name/qu/quartz-wm/package.nix similarity index 93% rename from pkgs/servers/x11/quartz-wm/default.nix rename to pkgs/by-name/qu/quartz-wm/package.nix index 185cf1831f5a..65b3708a7f1b 100644 --- a/pkgs/servers/x11/quartz-wm/default.nix +++ b/pkgs/by-name/qu/quartz-wm/package.nix @@ -1,6 +1,6 @@ { lib, - stdenv, + clangStdenv, fetchgit, autoreconfHook, pixman, @@ -13,7 +13,7 @@ libXext, }: -stdenv.mkDerivation (finalAttrs: { +clangStdenv.mkDerivation (finalAttrs: { pname = "quartz-wm"; version = "1.3.2"; diff --git a/pkgs/by-name/ra/radicle-explorer/package.nix b/pkgs/by-name/ra/radicle-explorer/package.nix index 15686e7c5a94..908549bc7d56 100644 --- a/pkgs/by-name/ra/radicle-explorer/package.nix +++ b/pkgs/by-name/ra/radicle-explorer/package.nix @@ -75,7 +75,7 @@ lib.fix ( # radicle-httpd using a more limited sparse checkout we need to carry a # separate hash. src = radicle-httpd.src.override { - hash = "sha256-1OhZ0x21NlZIiTPCRpvdUsx5UmeLecTjVzH8DWllPr8="; + hash = "sha256-PzokSJkcyFDAaih5gekp4GCQMm0sfF7fAK7iZbX1/S4="; sparseCheckout = [ ]; }; @@ -114,6 +114,7 @@ lib.fix ( maintainers = with lib.maintainers; [ tazjin lorenzleutgeb + defelo ]; }; } diff --git a/pkgs/by-name/ra/radicle-httpd/package.nix b/pkgs/by-name/ra/radicle-httpd/package.nix index 7ff24edcab0d..ad75b7928b4b 100644 --- a/pkgs/by-name/ra/radicle-httpd/package.nix +++ b/pkgs/by-name/ra/radicle-httpd/package.nix @@ -9,25 +9,28 @@ rustPlatform, stdenv, xdg-utils, + versionCheckHook, + nixosTests, }: -rustPlatform.buildRustPackage rec { + +rustPlatform.buildRustPackage (finalAttrs: { pname = "radicle-httpd"; - version = "0.20.0"; - env.RADICLE_VERSION = version; + version = "0.22.0"; + + env.RADICLE_VERSION = finalAttrs.version; # You must update the radicle-explorer source hash when changing this. src = fetchFromRadicle { seed = "seed.radicle.xyz"; repo = "z4V1sjrXqjvFdnCUbxPFqd5p4DtH5"; - node = "z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM"; - tag = "v${version}"; + tag = "releases/${finalAttrs.version}"; sparseCheckout = [ "radicle-httpd" ]; - hash = "sha256-9rJH4ECqOJ9wnYxCbEFHXo3PlhbPdeOnF+Pf1MzX25c="; + hash = "sha256-NA5U+Ac6imbtNabvaeYATfUbbmT48uqWAcbJ+ukJcDs="; }; - sourceRoot = "${src.name}/radicle-httpd"; + sourceRoot = "${finalAttrs.src.name}/radicle-httpd"; - cargoHash = "sha256-1GWWtrSYzTXUAgjeWaxyOuDqTDuTMWleug8SmxTHXbI="; + cargoHash = "sha256-9xyuoOuoFWu7oItQporJuGA8EIfEMrCvPaRPnwYMzmM="; nativeBuildInputs = [ asciidoctor @@ -59,6 +62,15 @@ rustPlatform.buildRustPackage rec { done ''; + nativeInstallCheckInputs = [ versionCheckHook ]; + versionCheckProgramArg = "--version"; + doInstallCheck = true; + + passthru = { + tests = { inherit (nixosTests) radicle; }; + updateScript = ./update.sh; + }; + meta = { description = "Radicle JSON HTTP API Daemon"; longDescription = '' @@ -76,7 +88,8 @@ rustPlatform.buildRustPackage rec { maintainers = with lib.maintainers; [ gador lorenzleutgeb + defelo ]; mainProgram = "radicle-httpd"; }; -} +}) diff --git a/pkgs/by-name/ra/radicle-httpd/update.sh b/pkgs/by-name/ra/radicle-httpd/update.sh new file mode 100755 index 000000000000..212d9bf7210c --- /dev/null +++ b/pkgs/by-name/ra/radicle-httpd/update.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i bash -p coreutils gnugrep common-updater-scripts nix-update + +version=$(list-git-tags | grep -oP '^releases/\K\d+\.\d+\.\d+$' | sort -rV | head -1) +nix-update --version="$version" radicle-httpd +nix-update --version=skip radicle-explorer diff --git a/pkgs/by-name/re/recode/package.nix b/pkgs/by-name/re/recode/package.nix index 1e96a4b6e2ce..b58d5df8d0f6 100644 --- a/pkgs/by-name/re/recode/package.nix +++ b/pkgs/by-name/re/recode/package.nix @@ -3,6 +3,7 @@ stdenv, fetchurl, python3Packages, + perl, flex, texinfo, libiconv, @@ -11,16 +12,17 @@ stdenv.mkDerivation (finalAttrs: { pname = "recode"; - version = "3.7.14"; + version = "3.7.15"; # Use official tarball, avoid need to bootstrap/generate build system src = fetchurl { url = "https://github.com/rrthomas/recode/releases/download/v${finalAttrs.version}/recode-${finalAttrs.version}.tar.gz"; - hash = "sha256-eGqv1USFGisTsKN36sFQD4IM5iYVzMLmMLUB53Q7nzM="; + hash = "sha256-9ZBAf8UbrbNRlz/BMz7jMRHwXsg6j5VP2M8MXjBDmAY="; }; nativeBuildInputs = [ python3Packages.python + perl flex texinfo libiconv diff --git a/pkgs/by-name/re/regal/package.nix b/pkgs/by-name/re/regal/package.nix index 656340a378d1..af6438144b46 100644 --- a/pkgs/by-name/re/regal/package.nix +++ b/pkgs/by-name/re/regal/package.nix @@ -6,29 +6,32 @@ buildGoModule rec { name = "regal"; - version = "0.34.1"; + version = "0.37.0"; src = fetchFromGitHub { - owner = "StyraInc"; + owner = "open-policy-agent"; repo = "regal"; rev = "v${version}"; - hash = "sha256-gdoQ+u9YbwTq28b3gYsNA0SxYFigeKK2JUd0paz8WYQ="; + hash = "sha256-zAp4v1bKz+q+29jlhEccl7o9RWLA+Hn3Kp/UGBQlmA8="; }; - vendorHash = "sha256-FycDMCfvpUkW7KcTLMUBOjbU4JnKCJrWQalNKSY1RkM="; + vendorHash = "sha256-yvUvv8EL3WrsyBnzaGQK4DR+O5Ner9ehkZYCMnfRwRU="; + + # Only build the main binary, exclude build/lsp/main.go + subPackages = [ "." ]; ldflags = [ "-s" "-w" - "-X github.com/styrainc/regal/pkg/version.Version=${version}" - "-X github.com/styrainc/regal/pkg/version.Commit=${version}" + "-X github.com/open-policy-agent/regal/pkg/version.Version=${version}" + "-X github.com/open-policy-agent/regal/pkg/version.Commit=${version}" ]; meta = { description = "Linter and language server for Rego"; mainProgram = "regal"; - homepage = "https://github.com/StyraInc/regal"; - changelog = "https://github.com/StyraInc/regal/releases/tag/${src.rev}"; + homepage = "https://github.com/open-policy-agent/regal"; + changelog = "https://github.com/open-policy-agent/regal/releases/tag/${src.rev}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ rinx ]; }; diff --git a/pkgs/by-name/re/remind/package.nix b/pkgs/by-name/re/remind/package.nix index a7869b76f8da..0836507147fe 100644 --- a/pkgs/by-name/re/remind/package.nix +++ b/pkgs/by-name/re/remind/package.nix @@ -16,14 +16,14 @@ tcl.mkTclDerivation rec { pname = "remind"; - version = "06.01.05"; + version = "06.02.01"; src = fetchFromGitea { domain = "git.skoll.ca"; owner = "Skollsoft-Public"; repo = "Remind"; rev = version; - hash = "sha256-5S6s3PylXNGxxzYII2bwT59TFg8sIEUjENkRUDFTuFM="; + hash = "sha256-bdR0uLPUGAaB5w4BNPaPOuI9Eg3utyETlUlLIQmcxMs="; }; propagatedBuildInputs = lib.optionals withGui [ @@ -38,10 +38,7 @@ tcl.mkTclDerivation rec { substituteInPlace scripts/tkremind.in \ --replace-fail "exec wish" "exec ${lib.getExe' tk "wish"}" \ --replace-fail 'set Remind "remind"' "set Remind \"$out/bin/remind\"" \ - --replace-fail 'set Rem2PS "rem2ps"' "set Rem2PS \"$out/bin/rem2ps\"" \ --replace-fail 'set Rem2PDF "rem2pdf"' "set Rem2PDF \"$out/bin/rem2pdf\"" - substituteInPlace configure \ - --replace-fail 'f=-ffat-lto-objects' "" ''; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin (toString [ diff --git a/pkgs/by-name/ri/river-classic/package.nix b/pkgs/by-name/ri/river-classic/package.nix index 36672107c75f..4fb8c9af942d 100644 --- a/pkgs/by-name/ri/river-classic/package.nix +++ b/pkgs/by-name/ri/river-classic/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "river-classic"; - version = "0.3.13"; + version = "0.3.14"; outputs = [ "out" ] ++ lib.optionals withManpages [ "man" ]; @@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: { domain = "codeberg.org"; owner = "river"; repo = "river-classic"; - hash = "sha256-XLWvxSChYN5wyhr8R8/3Pfykw61k451XmvgoM45zkEk="; + hash = "sha256-UhWA7jmBDhktHqHds06C0GY+xzlQZZezYopsLmIAGgI="; tag = "v${finalAttrs.version}"; }; diff --git a/pkgs/by-name/ro/roc/package.nix b/pkgs/by-name/ro/roc/package.nix index 0081612abc77..687a63744e9c 100755 --- a/pkgs/by-name/ro/roc/package.nix +++ b/pkgs/by-name/ro/roc/package.nix @@ -31,6 +31,10 @@ rustPlatform.buildRustPackage { hash = "sha256-pPnOM4hpbAkGCV47aw5eHbpOujjFtJa3v/3/D8gybO8="; }; + dontUseZigBuild = true; + dontUseZigCheck = true; + dontUseZigInstall = true; + nativeBuildInputs = [ cmake zig_0_13 @@ -53,9 +57,6 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-wJViSHcezoIchWe4Py9j+9U+YJUA5ja/x94UipuWO2g="; - # prevents zig AccessDenied error github.com/ziglang/zig/issues/6810 - XDG_CACHE_HOME = "xdg_cache"; - preBuild = let llvmVersion = builtins.splitVersion llvmPackages.release_version; diff --git a/pkgs/by-name/ru/rustdesk/package.nix b/pkgs/by-name/ru/rustdesk/package.nix index 984957363d56..e523a6cfa9ed 100644 --- a/pkgs/by-name/ru/rustdesk/package.nix +++ b/pkgs/by-name/ru/rustdesk/package.nix @@ -38,17 +38,17 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "rustdesk"; - version = "1.4.4"; + version = "1.4.5"; src = fetchFromGitHub { owner = "rustdesk"; repo = "rustdesk"; tag = finalAttrs.version; fetchSubmodules = true; - hash = "sha256-o7jsVWiCkHaKFpAu27r/Lr1Q9g7uR/OYJdwsiQeDJUA="; + hash = "sha256-FRtYafsIKHnGPV8NaiaHxIHkon8/T2P83uq9taUD1Xc="; }; - cargoHash = "sha256-gd2vS+p+1QtOWZcRWJWahFGo5rFG+soqxx3vJYSYJUo="; + cargoHash = "sha256-mEtTo1ony5w/dzJcHieG9WywHirBoQ/C0WpiAr7pUVc="; patches = [ ./make-build-reproducible.patch diff --git a/pkgs/by-name/sa/sage/sage-src.nix b/pkgs/by-name/sa/sage/sage-src.nix index e810df08abcc..07c2957c14cd 100644 --- a/pkgs/by-name/sa/sage/sage-src.nix +++ b/pkgs/by-name/sa/sage/sage-src.nix @@ -89,6 +89,13 @@ stdenv.mkDerivation rec { url = "https://github.com/sagemath/sage/commit/fa00696112fde95e0c4241ad6063936200ce6f68.patch?full_index=1"; hash = "sha256-eFDpNu/2gcQATELmQ7/VzXI35xIzaVrD8bhhJ57e2gc="; }) + + # https://github.com/sagemath/sage/pull/41233, landed in 10.8.rc0 + (fetchpatch2 { + name = "flint-3.4-update.patch"; + url = "https://github.com/sagemath/sage/commit/9bd5304f1a222e215d7006a04854ff66616748bf.patch?full_index=1"; + hash = "sha256-7bgouXV3pM20IX5PM24ZpJWOBlZjQksGtjopgouEbyg="; + }) ]; patches = nixPatches ++ bugfixPatches ++ packageUpgradePatches; diff --git a/pkgs/by-name/sb/sbom2dot/package.nix b/pkgs/by-name/sb/sbom2dot/package.nix index f7f95abe2661..0b3d64c3dafc 100644 --- a/pkgs/by-name/sb/sbom2dot/package.nix +++ b/pkgs/by-name/sb/sbom2dot/package.nix @@ -2,6 +2,4 @@ python3Packages, }: -(python3Packages.toPythonApplication python3Packages.sbom2dot).overrideAttrs (previousAttrs: { - meta.mainProgram = "sbom2dot"; -}) +python3Packages.toPythonApplication python3Packages.sbom2dot diff --git a/pkgs/by-name/sb/sbom4files/package.nix b/pkgs/by-name/sb/sbom4files/package.nix index e02ab1880926..46a151b7f97a 100644 --- a/pkgs/by-name/sb/sbom4files/package.nix +++ b/pkgs/by-name/sb/sbom4files/package.nix @@ -2,6 +2,4 @@ python3Packages, }: -(python3Packages.toPythonApplication python3Packages.sbom4files).overrideAttrs (previousAttrs: { - meta.mainProgram = "sbom4files"; -}) +python3Packages.toPythonApplication python3Packages.sbom4files diff --git a/pkgs/by-name/sc/schemat/package.nix b/pkgs/by-name/sc/schemat/package.nix index 1ccc7a7b70b7..70abeeceb25a 100644 --- a/pkgs/by-name/sc/schemat/package.nix +++ b/pkgs/by-name/sc/schemat/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "schemat"; - version = "0.4.7"; + version = "0.4.12"; src = fetchFromGitHub { owner = "raviqqe"; repo = "schemat"; tag = "v${finalAttrs.version}"; - hash = "sha256-veGrwwERnMy+60paF/saEbVxTDyqNVT1hsfggGCzZt0="; + hash = "sha256-NUpY4VXrp6A+ACjID9uqD9G31acGtmByyVCjIDT05vI="; }; - cargoHash = "sha256-R43i06XW3DpP+6fPUo/CZhKOVXMyoTPuygJ01BpW1/I="; + cargoHash = "sha256-wPHD+ZOf9BdqpG1s/o8awxe7apbTF2Nr0i/00Vpvnes="; doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ]; diff --git a/pkgs/by-name/se/sentry-native/package.nix b/pkgs/by-name/se/sentry-native/package.nix index aa927474adf9..77af7df62157 100644 --- a/pkgs/by-name/se/sentry-native/package.nix +++ b/pkgs/by-name/se/sentry-native/package.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "sentry-native"; - version = "0.12.2"; + version = "0.12.3"; src = fetchFromGitHub { owner = "getsentry"; repo = "sentry-native"; tag = version; - hash = "sha256-G5h30KZVkRYwW84Si0I8qSgDuPTfFqQMoyctKB8Kq1s="; + hash = "sha256-0ch5qIsjOZFhmwm3SkNulecCtPl1xWS4NHyPU0BRit4="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/sh/shadow-tls/package.nix b/pkgs/by-name/sh/shadow-tls/package.nix index 960372fdf6b5..f985456e6329 100644 --- a/pkgs/by-name/sh/shadow-tls/package.nix +++ b/pkgs/by-name/sh/shadow-tls/package.nix @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-1oJCdqBa1pWpQ7QvZ0vZaOd73R+SzR9OPf+yoI+RwCY="; - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; # network required doCheck = false; diff --git a/pkgs/by-name/sh/shellhub-agent/package.nix b/pkgs/by-name/sh/shellhub-agent/package.nix index 3d7be4a627f7..d1f6c8a4b716 100644 --- a/pkgs/by-name/sh/shellhub-agent/package.nix +++ b/pkgs/by-name/sh/shellhub-agent/package.nix @@ -12,18 +12,18 @@ buildGoModule rec { pname = "shellhub-agent"; - version = "0.21.4"; + version = "0.21.5"; src = fetchFromGitHub { owner = "shellhub-io"; repo = "shellhub"; rev = "v${version}"; - hash = "sha256-Q53xxBclPH8oF+MS3gm99bOBhby7HQ+AqI6QeFTcmFc="; + hash = "sha256-0adBDz9oHb+Wo1/BucMPavX/4xZidjQYNVA3O475JEo="; }; modRoot = "./agent"; - vendorHash = "sha256-PiDciFxMevdWBww49+xTvZkYdyml5VmxoGG+E0PL658="; + vendorHash = "sha256-zBT3kQhn6RhgcP/5FBEhKo1oPl9GgFQqWGsBUgrDwW4="; ldflags = [ "-s" diff --git a/pkgs/by-name/sh/shore/package.nix b/pkgs/by-name/sh/shore/package.nix new file mode 100644 index 000000000000..0ecf8b259904 --- /dev/null +++ b/pkgs/by-name/sh/shore/package.nix @@ -0,0 +1,46 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, + pkg-config, + openssl, + versionCheckHook, +}: + +rustPlatform.buildRustPackage (finalAttrs: { + pname = "shore"; + version = "0.1.4"; + + src = fetchFromGitHub { + owner = "MoonKraken"; + repo = "shore"; + tag = finalAttrs.version; + hash = "sha256-K9GKMijLU1ii5O8P4fT5Vl3S3HoVmvcUyCiIC69dTdU="; + }; + + cargoHash = "sha256-HYdTODIHA1TGhu6BKrKFkvBlGtqVt89wYX9Ehn0EOC0="; + + env.OPENSSL_NO_VENDOR = true; + + nativeBuildInputs = [ + pkg-config + ]; + + buildInputs = [ + openssl + ]; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + versionCheckProgramArg = "--version"; + + meta = { + description = "CLI-based frontend for inference providers with vim inspired keybindings"; + homepage = "https://github.com/MoonKraken/shore"; + changelog = "https://github.com/MoonKraken/shore/releases/tag/${finalAttrs.src.tag}"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; + mainProgram = "shore"; + }; +}) diff --git a/pkgs/by-name/sk/sketchybar-app-font/package.nix b/pkgs/by-name/sk/sketchybar-app-font/package.nix index a3b517410dce..aa0ac0ab42ec 100644 --- a/pkgs/by-name/sk/sketchybar-app-font/package.nix +++ b/pkgs/by-name/sk/sketchybar-app-font/package.nix @@ -10,20 +10,20 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "sketchybar-app-font"; - version = "2.0.49"; + version = "2.0.51"; src = fetchFromGitHub { owner = "kvndrsslr"; repo = "sketchybar-app-font"; tag = "v${finalAttrs.version}"; - hash = "sha256-Dsp7cv9+g8PDunDnTGnWF4z88SmlJYErfWWylU9mAag="; + hash = "sha256-5HJ5dusFyWIljT6V2/hizwbkdBfFeMHrSJ1cyT+Xtno="; }; pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) pname version src; pnpm = pnpm_9; fetcherVersion = 1; - hash = "sha256-NGAgueJ+cuK/csjdf94KNklu+Xf91BHoWKVgEctX6eA="; + hash = "sha256-43VIPcLNPCUMxDmWnt3fRuriOKFp7w5rzxVHdjEz3lU="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/sn/snac2/package.nix b/pkgs/by-name/sn/snac2/package.nix index 90220aff68be..07b8548b7409 100644 --- a/pkgs/by-name/sn/snac2/package.nix +++ b/pkgs/by-name/sn/snac2/package.nix @@ -10,14 +10,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "snac2"; - version = "2.85"; + version = "2.86"; src = fetchFromGitea { domain = "codeberg.org"; owner = "grunfink"; repo = "snac2"; tag = finalAttrs.version; - hash = "sha256-jD3OnK37p7lgG116J0E9Mp8mWDxlqndKIYzxbCZBOhk="; + hash = "sha256-q2sdG8QGIZWCHpEM0MFaC6/K9Rcv2AW6W07c+40tFuM="; }; buildInputs = [ diff --git a/pkgs/by-name/sn/snakemake/package.nix b/pkgs/by-name/sn/snakemake/package.nix index b531989299cf..236118c73f33 100644 --- a/pkgs/by-name/sn/snakemake/package.nix +++ b/pkgs/by-name/sn/snakemake/package.nix @@ -10,14 +10,14 @@ python3Packages.buildPythonApplication rec { pname = "snakemake"; - version = "9.14.5"; + version = "9.14.6"; pyproject = true; src = fetchFromGitHub { owner = "snakemake"; repo = "snakemake"; tag = "v${version}"; - hash = "sha256-/OUlUT/5Exe24ZqBq8hKN6w5Tf9GV0JUpS6Gam4znm0="; + hash = "sha256-eGHhyMkPnC0QTxwWIWjNqX9fhzhQ3QPRAdboQVWwrRA="; }; postPatch = '' diff --git a/pkgs/by-name/st/steel/package.nix b/pkgs/by-name/st/steel/package.nix index f8a5eeedc06f..25645e0f421f 100644 --- a/pkgs/by-name/st/steel/package.nix +++ b/pkgs/by-name/st/steel/package.nix @@ -19,16 +19,16 @@ }: rustPlatform.buildRustPackage { pname = "steel"; - version = "0-unstable-2025-12-17"; + version = "0-unstable-2026-01-09"; src = fetchFromGitHub { owner = "mattwparas"; repo = "steel"; - rev = "b7c2306320ea05649ebcac3af7ecaa7aa0c77117"; - hash = "sha256-TjOTfka+ieAVHMjXymVDHlu29z6VoyB/7wYUGSiV/G4="; + rev = "b019511196ef987ee7e368590a852e385dfbae53"; + hash = "sha256-qG2W6gWSft5xWhna2RwZ847WtBstBEGTQroC598hjTM="; }; - cargoHash = "sha256-bXAgp83U48GsTAuki3tsoOK7X+UepKJIlS0bL5qMc8I="; + cargoHash = "sha256-mtRDasfCejM6o664+3XBZJ6sWw1BO+pYi/nrCaglsQ8="; nativeBuildInputs = [ curl diff --git a/pkgs/by-name/su/surrealdb/package.nix b/pkgs/by-name/su/surrealdb/package.nix index 058a18c22b6f..07ecf04cee85 100644 --- a/pkgs/by-name/su/surrealdb/package.nix +++ b/pkgs/by-name/su/surrealdb/package.nix @@ -10,16 +10,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "surrealdb"; - version = "2.4.0"; + version = "2.4.1"; src = fetchFromGitHub { owner = "surrealdb"; repo = "surrealdb"; tag = "v${finalAttrs.version}"; - hash = "sha256-I9TVV+gSn/VCId0Ar3Yn9NWLw6GPOJvwPi8RIedIQ0U="; + hash = "sha256-woItGD998p8EWerkrWESqGON0HQp7Vrbl/kiQi+IT7g="; }; - cargoHash = "sha256-aZb2+6Xnn7gq4Lwo411yBfOFlo3YabkdewYNJ2TGbzo="; + cargoHash = "sha256-RbmhhJ+bJcCM8h2mkc2dK2Xlm+izESXwvbNvxuVC7vg="; # error: linker `aarch64-linux-gnu-gcc` not found postPatch = '' diff --git a/pkgs/by-name/sw/swaynotificationcenter/package.nix b/pkgs/by-name/sw/swaynotificationcenter/package.nix index 61e505607a8b..02fc19e7eee7 100644 --- a/pkgs/by-name/sw/swaynotificationcenter/package.nix +++ b/pkgs/by-name/sw/swaynotificationcenter/package.nix @@ -62,6 +62,7 @@ stdenv.mkDerivation (finalAttrs: { sassc scdoc vala + wayland-scanner wrapGAppsHook3 ]; @@ -81,7 +82,6 @@ stdenv.mkDerivation (finalAttrs: { librsvg pantheon.granite7 # systemd # ends with broken permission - wayland-scanner ]; postPatch = '' @@ -90,6 +90,8 @@ stdenv.mkDerivation (finalAttrs: { substituteInPlace src/functions.vala --replace "/usr/local/etc/xdg/swaync" "$out/etc/xdg/swaync" ''; + strictDeps = true; + passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; command = "${xvfb-run}/bin/xvfb-run swaync --version"; diff --git a/pkgs/by-name/sw/switch-to-configuration-ng/src/src/main.rs b/pkgs/by-name/sw/switch-to-configuration-ng/src/src/main.rs index 22d5f4954faf..c016b7cbcf22 100644 --- a/pkgs/by-name/sw/switch-to-configuration-ng/src/src/main.rs +++ b/pkgs/by-name/sw/switch-to-configuration-ng/src/src/main.rs @@ -1452,6 +1452,13 @@ won't take effect until you reboot the system. .map(|mut child| child.wait()); // Handle the activation script requesting the restart or reload of a unit. + + if std::fs::exists(DRY_RESTART_BY_ACTIVATION_LIST_FILE)? + || std::fs::exists(DRY_RELOAD_BY_ACTIVATION_LIST_FILE)? + { + eprintln!("WARN: restarting or reloading systemd units from the activation script is deprecated and will be removed in NixOS 26.11."); + } + for unit in std::fs::read_to_string(DRY_RESTART_BY_ACTIVATION_LIST_FILE) .unwrap_or_default() .lines() @@ -1616,6 +1623,12 @@ won't take effect until you reboot the system. } } + if std::fs::exists(RESTART_BY_ACTIVATION_LIST_FILE)? + || std::fs::exists(RELOAD_BY_ACTIVATION_LIST_FILE)? + { + eprintln!("WARN: restarting or reloading systemd units from the activation script is deprecated and will be removed in NixOS 26.11."); + } + // Handle the activation script requesting the restart or reload of a unit. for unit in std::fs::read_to_string(RESTART_BY_ACTIVATION_LIST_FILE) .unwrap_or_default() diff --git a/pkgs/by-name/sy/syft/package.nix b/pkgs/by-name/sy/syft/package.nix index 7ffd9540356c..5d75c3fa90db 100644 --- a/pkgs/by-name/sy/syft/package.nix +++ b/pkgs/by-name/sy/syft/package.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "syft"; - version = "1.39.0"; + version = "1.40.0"; src = fetchFromGitHub { owner = "anchore"; repo = "syft"; tag = "v${version}"; - hash = "sha256-T+oaNXudP+Rj4X2VuSzIjBGsWLrWCwEZMJUs90G87gQ="; + hash = "sha256-aU7i+bjOB6lM5/i/lDuncbCiCQdwkQxglgr4lawof1Q="; # populate values that require us to use git. By doing this in postFetch we # can delete .git afterwards and maintain better reproducibility of the src. leaveDotGit = true; @@ -29,7 +29,7 @@ buildGoModule rec { # hash mismatch with darwin proxyVendor = true; - vendorHash = "sha256-2bOgqu4mAq8ig4M4fuTz4u/Jql9vJjILxBy3JsnPZsk="; + vendorHash = "sha256-W2Ea+2Pq2zPhVSWI/7NlG1/LeNfOE1kUnAB8Kp7AqgM="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/sy/synapse-admin-etkecc/package.nix b/pkgs/by-name/sy/synapse-admin-etkecc/package.nix index b5e83f20b5df..f3c334731130 100644 --- a/pkgs/by-name/sy/synapse-admin-etkecc/package.nix +++ b/pkgs/by-name/sy/synapse-admin-etkecc/package.nix @@ -17,18 +17,18 @@ assert lib.asserts.assertMsg ( stdenv.mkDerivation (finalAttrs: { pname = "synapse-admin-etkecc"; - version = "0.11.1-etke51"; + version = "0.11.1-etke52"; src = fetchFromGitHub { owner = "etkecc"; repo = "synapse-admin"; tag = "v${finalAttrs.version}"; - hash = "sha256-bKfWQ/lz8ms6xNUsZaNUNNhq/mNy4P7bk8dnd7dXiJ8="; + hash = "sha256-iK277gNgeAnv4V4D3J/9ozrw/yEH8jWESb2xJ6gbOfg="; }; yarnOfflineCache = fetchYarnDeps { yarnLock = finalAttrs.src + "/yarn.lock"; - hash = "sha256-TmZ/DoNXEa+o6uVZoXybt0JFoo3hpiiLHoUwbrNdpag="; + hash = "sha256-X26s09KrV37HVd6cImJK9i/emNp7PV2fKq1ys2+t7ak="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/sy/syndicate-server/package.nix b/pkgs/by-name/sy/syndicate-server/package.nix index 025b446e0e81..4f6219b3596a 100644 --- a/pkgs/by-name/sy/syndicate-server/package.nix +++ b/pkgs/by-name/sy/syndicate-server/package.nix @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec { ]; buildInputs = [ openssl ]; - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; doCheck = false; doInstallCheck = true; diff --git a/pkgs/by-name/to/topgrade/package.nix b/pkgs/by-name/to/topgrade/package.nix index 90c2282f89b9..55ee5d1f6b75 100644 --- a/pkgs/by-name/to/topgrade/package.nix +++ b/pkgs/by-name/to/topgrade/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage rec { pname = "topgrade"; - version = "16.7.0"; + version = "16.8.0"; src = fetchFromGitHub { owner = "topgrade-rs"; repo = "topgrade"; tag = "v${version}"; - hash = "sha256-1RbOb8YW17g+iqd/jbN5fZBBJmUgvefrm+b8zwpvMJg="; + hash = "sha256-6TimSkPxmDvXAPDlLbPYpnXg20dTbBKzv1Lj0tI973U="; }; - cargoHash = "sha256-naObSjHmUpx6JyjLt16xT+c4qeCtRDkJhSdcgIA8pBU="; + cargoHash = "sha256-DehLOUrqxGvlNw/12PyDOtyGuZThx/jqqjmKltqk7Ck="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/ty/ty/package.nix b/pkgs/by-name/ty/ty/package.nix index bd19dbd99a6d..a0625bf19b1f 100644 --- a/pkgs/by-name/ty/ty/package.nix +++ b/pkgs/by-name/ty/ty/package.nix @@ -14,14 +14,14 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "ty"; - version = "0.0.10"; + version = "0.0.11"; src = fetchFromGitHub { owner = "astral-sh"; repo = "ty"; tag = finalAttrs.version; fetchSubmodules = true; - hash = "sha256-nloCLGxW1T4INzBSx5BJR8sCUWK3c7lGE9D5SgCW7PQ="; + hash = "sha256-lelhsc6zl6Qe7W7YsXviqB3NEOuJAzewnOgFPtsCYGA="; }; # For Darwin platforms, remove the integration test for file notifications, @@ -35,7 +35,7 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoBuildFlags = [ "--package=ty" ]; - cargoHash = "sha256-Tg4MYpbRjW9qvIzRCceX0lEMLThe4bo1/+xyNOzb+T0="; + cargoHash = "sha256-BceNALWxHXxylbssvAbY0CMcQBHnOX22ckgGta1wTsc="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/ud/udiskie/package.nix b/pkgs/by-name/ud/udiskie/package.nix index bf4f93244bd0..519f01d1efc1 100644 --- a/pkgs/by-name/ud/udiskie/package.nix +++ b/pkgs/by-name/ud/udiskie/package.nix @@ -17,15 +17,15 @@ python3Packages.buildPythonApplication rec { pname = "udiskie"; - version = "2.5.8"; + version = "2.6.0"; pyproject = true; src = fetchFromGitHub { owner = "coldfix"; repo = "udiskie"; - rev = "v${version}"; - hash = "sha256-FFp1+7cCfkMI74rEAez8aJsaplEUa3madoSx+lwplzE="; + tag = "v${version}"; + hash = "sha256-ZagfjzSikXuVGeJdQm0YpW+IqbUfJ2b9Pnj/RLUmsik="; }; patches = [ @@ -90,7 +90,7 @@ python3Packages.buildPythonApplication rec { meta = { homepage = "https://github.com/coldfix/udiskie"; - changelog = "https://github.com/coldfix/udiskie/blob/${src.rev}/CHANGES.rst"; + changelog = "https://github.com/coldfix/udiskie/blob/${src.tag}/CHANGES.rst"; description = "Removable disk automounter for udisks"; longDescription = '' udiskie is a udisks2 front-end that allows to manage removeable media such diff --git a/pkgs/by-name/un/unpfs/package.nix b/pkgs/by-name/un/unpfs/package.nix index 4cf96dbdd0de..99d7d9662bdf 100644 --- a/pkgs/by-name/un/unpfs/package.nix +++ b/pkgs/by-name/un/unpfs/package.nix @@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-jRe1lgzfhzBUsS6wwwlqxxomap2TIDOyF3YBv20GJ14="; - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; postInstall = '' install -D -m 0444 ../../README* -t "$out/share/doc/${pname}" diff --git a/pkgs/by-name/un/untrunc-anthwlock/package.nix b/pkgs/by-name/un/untrunc-anthwlock/package.nix index f18f9df61fe6..bcdc5e6c7bed 100644 --- a/pkgs/by-name/un/untrunc-anthwlock/package.nix +++ b/pkgs/by-name/un/untrunc-anthwlock/package.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation { pname = "untrunc-anthwlock"; - version = "0-unstable-2024-08-14"; + version = "0-unstable-2026-01-09"; src = fetchFromGitHub { owner = "anthwlock"; repo = "untrunc"; - rev = "13cafedf59369db478af537fb909f0d7fd0eb85f"; - hash = "sha256-4GIPj8so7POEwxKZzFBoJTu76XKbGHYmXC/ILeo0dVE="; + rev = "8dc8ee2eb3ba5655906d6f462e8f5fc89fcbff97"; + hash = "sha256-WgzqHFryNbKbMusKVLYhOMCuAYDH1P9/l1K5PJi7E6U="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/up/upsun/versions.json b/pkgs/by-name/up/upsun/versions.json index 0d0a79c2bd3a..fc3506cc4d12 100644 --- a/pkgs/by-name/up/upsun/versions.json +++ b/pkgs/by-name/up/upsun/versions.json @@ -1,19 +1,19 @@ { - "version": "5.7.2", + "version": "5.8.0", "darwin-amd64": { - "hash": "sha256-o0bvIc9oaxT4g6IB0FlSwnPvRRhhQbd/+THGiB1Qcxc=", - "url": "https://github.com/platformsh/cli/releases/download/5.7.2/upsun_5.7.2_darwin_all.tar.gz" + "hash": "sha256-2nPuxOHrCa0j2HMYV8yeKfsRQOFdksp6KNQVQmSiS4I=", + "url": "https://github.com/platformsh/cli/releases/download/5.8.0/upsun_5.8.0_darwin_all.tar.gz" }, "darwin-arm64": { - "hash": "sha256-o0bvIc9oaxT4g6IB0FlSwnPvRRhhQbd/+THGiB1Qcxc=", - "url": "https://github.com/platformsh/cli/releases/download/5.7.2/upsun_5.7.2_darwin_all.tar.gz" + "hash": "sha256-2nPuxOHrCa0j2HMYV8yeKfsRQOFdksp6KNQVQmSiS4I=", + "url": "https://github.com/platformsh/cli/releases/download/5.8.0/upsun_5.8.0_darwin_all.tar.gz" }, "linux-amd64": { - "hash": "sha256-0VrFZOqfCRvGwjPkQVbKakEELu82BI/InnA6aeJMwIg=", - "url": "https://github.com/platformsh/cli/releases/download/5.7.2/upsun_5.7.2_linux_amd64.tar.gz" + "hash": "sha256-9t4dktUu0u3+bUuYLlhfUOyHbfIizLeOUj7AXQ0VQGI=", + "url": "https://github.com/platformsh/cli/releases/download/5.8.0/upsun_5.8.0_linux_amd64.tar.gz" }, "linux-arm64": { - "hash": "sha256-0n1e+1ebJKFE7phtk0OWyVMgE4uz0K8RELOPmmRGUD0=", - "url": "https://github.com/platformsh/cli/releases/download/5.7.2/upsun_5.7.2_linux_arm64.tar.gz" + "hash": "sha256-8p1SUUuwaSLbt6j+tjcefom08dyW0NW/F2uxDMWaiv4=", + "url": "https://github.com/platformsh/cli/releases/download/5.8.0/upsun_5.8.0_linux_arm64.tar.gz" } } diff --git a/pkgs/by-name/us/usage/package.nix b/pkgs/by-name/us/usage/package.nix index ba22f86b1c85..16ec3b452c15 100644 --- a/pkgs/by-name/us/usage/package.nix +++ b/pkgs/by-name/us/usage/package.nix @@ -5,22 +5,23 @@ fetchFromGitHub, installShellFiles, nix-update-script, + nodejs, usage, testers, }: rustPlatform.buildRustPackage (finalAttrs: { pname = "usage"; - version = "2.8.0"; + version = "2.11.0"; src = fetchFromGitHub { owner = "jdx"; repo = "usage"; tag = "v${finalAttrs.version}"; - hash = "sha256-/yDypNQdw6YS1M8YtwjdFyG8Lfh3wKkvVWyH2b/G65o="; + hash = "sha256-AFfI843y1fKdw2f4alz7WoeMQR2IPWDJ3SofCCMJVpQ="; }; - cargoHash = "sha256-3tSMgTVmoiME/wWE8uHZEjnfeS8Hqbm0DeUaWNgN944="; + cargoHash = "sha256-WC/q9yd1XJT/EtC9ES5fw6j45gyRo3k2eNEDwGmvDWo="; postPatch = '' substituteInPlace ./examples/*.sh \ @@ -29,8 +30,13 @@ rustPlatform.buildRustPackage (finalAttrs: { nativeBuildInputs = [ installShellFiles ]; + nativeCheckInputs = [ + # for some tests + nodejs + ]; + checkFlags = [ - # tries to build usage-cli itself + # has --include-bash-completion-lib so requires external lib downloaded on runtime "--skip=test_bash_completion_integration" ]; diff --git a/pkgs/by-name/uu/uutils-procps/package.nix b/pkgs/by-name/uu/uutils-procps/package.nix index 12c3a05b1a33..18527522dbe8 100644 --- a/pkgs/by-name/uu/uutils-procps/package.nix +++ b/pkgs/by-name/uu/uutils-procps/package.nix @@ -10,16 +10,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "uutils-procps"; - version = "0.0.1-unstable-2025-12-31"; + version = "0.0.1-unstable-2026-01-08"; src = fetchFromGitHub { owner = "uutils"; repo = "procps"; - rev = "644666759ec3e8f038a0d376b594e67a8780dc29"; - hash = "sha256-U/5thGk/1h4CkI63DllLUc3scrHbV4+djcxLiTC+3lM="; + rev = "d0dd746491844b5de4724bcb7d0a28674a8b33f9"; + hash = "sha256-gRkXVc3+0dqlvt/hAsAXnDFsOeN83ozPjieU4yLlOms="; }; - cargoHash = "sha256-kWT5PYE68TUcYnz82zxhiMIZFAn8Rf00Oj7oLsmzsG8="; + cargoHash = "sha256-wh9GHj/F/v1kTyZim7nGuuuFm92OsX8Mxj01GL0H/CE="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/by-name/va/vacuum-tube/package.nix b/pkgs/by-name/va/vacuum-tube/package.nix index 6457b79eb00f..3f13265bb8bd 100644 --- a/pkgs/by-name/va/vacuum-tube/package.nix +++ b/pkgs/by-name/va/vacuum-tube/package.nix @@ -10,16 +10,17 @@ buildNpmPackage rec { pname = "vacuum-tube"; - version = "1.4.2"; + version = "1.5.3"; src = fetchFromGitHub { owner = "shy1132"; repo = "VacuumTube"; tag = "v${version}"; - hash = "sha256-F1F1p+jQnCiVTZZez30JmykgC8oQLdZ8GEZTkdf3qRs="; + hash = "sha256-OHjTccQNrZZoXf26ABn9sIOVzTsVmBKdcRLsXUvnS6k="; }; - npmDepsHash = "sha256-BzoKKDllytCByjou48KzyLU1wtAzJoJwRNJb9OwRT9o="; + npmDepsHash = "sha256-1RfCyV0GSaI8UAnlPvepBU4LN2CkbvYt+JCtQy4B8LY="; + makeCacheWritable = true; env = { ELECTRON_SKIP_BINARY_DOWNLOAD = true; diff --git a/pkgs/by-name/ve/verco/package.nix b/pkgs/by-name/ve/verco/package.nix deleted file mode 100644 index 79923127e526..000000000000 --- a/pkgs/by-name/ve/verco/package.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - fetchFromGitHub, - lib, - rustPlatform, -}: - -rustPlatform.buildRustPackage rec { - pname = "verco"; - version = "6.12.0"; - - src = fetchFromGitHub { - owner = "vamolessa"; - repo = "verco"; - rev = "v${version}"; - sha256 = "sha256-M3Utrt350I67kqzEH130tgBIiI7rY8ODCSxgMohWWWM="; - }; - - cargoHash = "sha256-cpPEIFoEqc/4Md+/5e09B/ZQ+7cflLE+PY4ATAgWUvo="; - - meta = { - description = "Simple Git/Mercurial/PlasticSCM tui client based on keyboard shortcuts"; - homepage = "https://vamolessa.github.io/verco"; - license = lib.licenses.gpl3Only; - maintainers = [ ]; - mainProgram = "verco"; - }; -} diff --git a/pkgs/by-name/vf/vfox/package.nix b/pkgs/by-name/vf/vfox/package.nix index 5333cdc423a5..71b2e34346ab 100644 --- a/pkgs/by-name/vf/vfox/package.nix +++ b/pkgs/by-name/vf/vfox/package.nix @@ -8,13 +8,13 @@ buildGoModule (finalAttrs: { pname = "vfox"; - version = "0.9.2"; + version = "0.10.0"; src = fetchFromGitHub { owner = "version-fox"; repo = "vfox"; tag = "v${finalAttrs.version}"; - hash = "sha256-Dtu0A+BC/9sypnWvA8XOlmQFPsV5LUGCXpdarYeCdlU="; + hash = "sha256-dA/boWkJrFgVV6NeSiCwDxRuBxtjn9qf8shpFwED6TA="; }; vendorHash = "sha256-+5hJMip3wAR1k6n21I3QFYe++nw4J4Ip+43EujQl2ec="; diff --git a/pkgs/by-name/vi/vicinae/package.nix b/pkgs/by-name/vi/vicinae/package.nix index 8a4d1e0a8c32..cdd75be3c287 100644 --- a/pkgs/by-name/vi/vicinae/package.nix +++ b/pkgs/by-name/vi/vicinae/package.nix @@ -22,13 +22,13 @@ }: gcc15Stdenv.mkDerivation (finalAttrs: { pname = "vicinae"; - version = "0.18.2"; + version = "0.18.3"; src = fetchFromGitHub { owner = "vicinaehq"; repo = "vicinae"; tag = "v${finalAttrs.version}"; - hash = "sha256-OPBgcM2ZzbVEUS6lwRpJo2JBfiRK8TmYVSmZImEW2gA="; + hash = "sha256-TU8MKOBYgTvYIFI8Col3ePeGntOlux3yYqmbSi7FG70="; }; apiDeps = fetchNpmDeps { diff --git a/pkgs/by-name/vi/victoriametrics/package.nix b/pkgs/by-name/vi/victoriametrics/package.nix index bfd14dd38981..47fabecf15eb 100644 --- a/pkgs/by-name/vi/victoriametrics/package.nix +++ b/pkgs/by-name/vi/victoriametrics/package.nix @@ -13,13 +13,13 @@ buildGoModule (finalAttrs: { pname = "VictoriaMetrics"; - version = "1.132.0"; + version = "1.133.0"; src = fetchFromGitHub { owner = "VictoriaMetrics"; repo = "VictoriaMetrics"; tag = "v${finalAttrs.version}"; - hash = "sha256-s/RgWc8mJDsU9BL/HPCIGc/cy0Jsg5jxUPuDUcPLymI="; + hash = "sha256-Svl/yFacg1/XI0BaBWeWLRxwBwUZJjRELlYLky+ihus="; }; vendorHash = null; diff --git a/pkgs/by-name/vu/vulkan-tools/package.nix b/pkgs/by-name/vu/vulkan-tools/package.nix index 4934c99eeea7..e625496ae164 100644 --- a/pkgs/by-name/vu/vulkan-tools/package.nix +++ b/pkgs/by-name/vu/vulkan-tools/package.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { dontPatchELF = true; - env.PKG_CONFIG_WAYLAND_SCANNER_WAYLAND_SCANNER = lib.getExe buildPackages.wayland-scanner; + env.PKG_CONFIG_PATH = "${lib.getDev buildPackages.wayland-scanner}/lib/pkgconfig"; cmakeFlags = [ # Don't build the mock ICD as it may get used instead of other drivers, if installed diff --git a/pkgs/by-name/we/wezterm/package.nix b/pkgs/by-name/we/wezterm/package.nix index b9f1ca5575f6..14beafaf0070 100644 --- a/pkgs/by-name/we/wezterm/package.nix +++ b/pkgs/by-name/we/wezterm/package.nix @@ -28,14 +28,14 @@ rustPlatform.buildRustPackage rec { pname = "wezterm"; - version = "0-unstable-2025-10-23"; + version = "0-unstable-2026-01-08"; src = fetchFromGitHub { owner = "wezterm"; repo = "wezterm"; - rev = "b6e75fd7c8f9c9ad5af4efbba1d28df0969f6b17"; + rev = "3715c8744def1e9bedb038e5ace1d5dfb76e8d3b"; fetchSubmodules = true; - hash = "sha256-t99sVnRzfJUa6b6h55nFy/Xpkeeeph5ugZBl98N0jEg="; + hash = "sha256-RMUoYt6i4rIS0S2qOSv+7nlt8jzbIA5y10P01QjKi0I="; }; postPatch = '' @@ -58,7 +58,7 @@ rustPlatform.buildRustPackage rec { # https://github.com/wezterm/wezterm/blob/main/nix/flake.nix#L134 auditable = false; - cargoHash = "sha256-QjYxDcWTbLTmtQEK6/ujwaDwdY+4C6EIOZ8I0hYIx00="; + cargoHash = "sha256-am5i7Bsoiu1a4RWDy+dpuHgyZpQvKOlEMzCP8QxbeaQ="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/we/wezterm/update.sh b/pkgs/by-name/we/wezterm/update.sh index d04296c9bab3..25ee6b6050d2 100755 --- a/pkgs/by-name/we/wezterm/update.sh +++ b/pkgs/by-name/we/wezterm/update.sh @@ -22,8 +22,8 @@ NEW_VERSION="0-unstable-$COMMIT_DATE" FETCH_JSON=$(nix-prefetch-git --url "https://github.com/$OWNER/$REPO" --rev "$LATEST_REV" --fetch-submodules) FETCH_HASH=$(echo "$FETCH_JSON" | jq --raw-output .hash) -(cd "$NIXPKGS_ROOT" && nix-update wezterm) -(cd "$NIXPKGS_ROOT" && update-source-version "$PACKAGE_NIX_ATTR_PATH" "$NEW_VERSION" "$FETCH_HASH" --rev="$LATEST_REV") +(cd "$NIXPKGS_ROOT" && update-source-version "$PACKAGE_NIX_ATTR_PATH" "$NEW_VERSION" "$FETCH_HASH" --rev="$LATEST_REV" --ignore-same-version --print-changes) +(cd "$NIXPKGS_ROOT" && nix-update --version=skip "$PACKAGE_NIX_ATTR_PATH") sed -i -e "s#version = \".*\"#version = \"$NEW_VERSION\"#" "$NIXPKGS_ROOT/pkgs/by-name/we/wezterm/package.nix" diff --git a/pkgs/by-name/wi/witr/package.nix b/pkgs/by-name/wi/witr/package.nix index 48e2bc9bd00c..d6acbbcf4b66 100644 --- a/pkgs/by-name/wi/witr/package.nix +++ b/pkgs/by-name/wi/witr/package.nix @@ -6,13 +6,13 @@ }: buildGoModule (finalAttrs: { pname = "witr"; - version = "0.1.8"; + version = "0.2.0"; src = fetchFromGitHub { owner = "pranshuparmar"; repo = "witr"; tag = "v${finalAttrs.version}"; - hash = "sha256-GRgbqZ3G/cpCzsm4/T7IB/XoT1K7Gqique908W31lhg="; + hash = "sha256-gxfoqa7Q1kb9sIN3zwxmjAHQeWdoGNg0yxc5j8unp5g="; # populate values that require us to use git. By doing this in postFetch we # can delete .git afterwards and maintain better reproducibility of the src. leaveDotGit = true; diff --git a/pkgs/by-name/wr/wrangler/package.nix b/pkgs/by-name/wr/wrangler/package.nix index 12f26578b864..42b3c7126a25 100644 --- a/pkgs/by-name/wr/wrangler/package.nix +++ b/pkgs/by-name/wr/wrangler/package.nix @@ -19,13 +19,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "wrangler"; - version = "4.54.0"; + version = "4.57.0"; src = fetchFromGitHub { owner = "cloudflare"; repo = "workers-sdk"; rev = "wrangler@${finalAttrs.version}"; - hash = "sha256-aDBKdpAoeVmKRvgNfQ9UrwpoeRG+WWHJ9pu1jrnxA0M="; + hash = "sha256-tAQZcHNMYK+onIei54GQuiM9R/NLYnQThpI8bLARwCw="; }; pnpmDeps = fetchPnpmDeps { @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { ; pnpm = pnpm_9; fetcherVersion = 2; - hash = "sha256-TiaMBbx3diKkyYWD0tbqnLwvvjF4LfL/GhlONJ0iUH4="; + hash = "sha256-VHi11z0ykHuEzdUnUchvu6ZXYghRS1T81UsZENn8f6c="; }; # pnpm packageManager version in workers-sdk root package.json may not match nixpkgs postPatch = '' diff --git a/pkgs/by-name/x2/x2t/package.nix b/pkgs/by-name/x2/x2t/package.nix index 098ebb24eaaf..3519c6886459 100644 --- a/pkgs/by-name/x2/x2t/package.nix +++ b/pkgs/by-name/x2/x2t/package.nix @@ -8,12 +8,14 @@ glibc, harfbuzz, libheif, + nixosTests, x265, libde265, icu, jdk, lib, - nodejs, + # workaround https://github.com/NixOS/nixpkgs/issues/477805 + nodejs_22, # needs to be static and built with MD2 support! openssl, pkg-config, @@ -27,7 +29,7 @@ let qmake = qt5.qmake; - libv8 = nodejs.libv8; + libv8 = nodejs_22.libv8; fixIcu = writeScript "fix-icu.sh" '' substituteInPlace \ $BUILDRT/Common/3dParty/icu/icu.pri \ @@ -42,13 +44,6 @@ let "QMAKE_LFLAGS+=-licudata" "QMAKE_LFLAGS+=-L${icu}/lib" ]; - # see core/Common/3dParty/html/fetch.sh - katana-parser-src = fetchFromGitHub { - owner = "jasenhuang"; - repo = "katana-parser"; - rev = "be6df458d4540eee375c513958dcb862a391cdd1"; - hash = "sha256-SYJFLtrg8raGyr3zQIEzZDjHDmMmt+K0po3viipZW5c="; - }; # see core/Common/3dParty/html/fetch.py gumbo-parser-src = fetchFromGitHub { owner = "google"; @@ -56,6 +51,13 @@ let rev = "aa91b27b02c0c80c482e24348a457ed7c3c088e0"; hash = "sha256-+607iXJxeWKoCwb490pp3mqRZ1fWzxec0tJOEFeHoCs="; }; + # see core/Common/3dParty/html/fetch.sh + katana-parser-src = fetchFromGitHub { + owner = "jasenhuang"; + repo = "katana-parser"; + rev = "be6df458d4540eee375c513958dcb862a391cdd1"; + hash = "sha256-SYJFLtrg8raGyr3zQIEzZDjHDmMmt+K0po3viipZW5c="; + }; # see build_tools scripts/core_common/modules/googletest.py googletest-src = fetchFromGitHub { owner = "google"; @@ -117,26 +119,29 @@ let qmakeFlags = [ ]; dontStrip = false; - # Revisions that correspond to onlyoffice-documentserver 9.1.0 - core-rev = "82e281cf6bf89498e4de6018423b36576706c2b6"; + # Revisions that correspond to onlyoffice-documentserver 9.2.1 + core-rev = "a22f0bfb6032e91f218951ef1c0fc29f6d1ceb36"; core = fetchFromGitHub { owner = "ONLYOFFICE"; repo = "core"; # rev that the 'core' submodule in documentserver points at rev = core-rev; - hash = "sha256-LzbO2A29WxM0XTAO2LGTtg9omL0Pvoh+6+q3ux4i7do="; + hash = "sha256-RSoCRcUGnavcNdZEfmBdtxJbEXhiOvbA8IwSeGBkWcs="; }; web-apps = buildNpmPackage (finalAttrs: { name = "onlyoffice-core-webapps"; + # workaround for https://github.com/NixOS/nixpkgs/issues/477803 + nodejs = nodejs_22; + #src = /home/aengelen/d/onlyoffice/documentserver/web-apps; #sourceRoot = "/build/web-apps/build"; src = fetchFromGitHub { owner = "ONLYOFFICE"; repo = "web-apps"; # rev that the 'web-apps' submodule in documentserver points at - rev = "f63e9674a5d2d2e5a660ab726ec00a359fc3c750"; - hash = "sha256-kKm6+phd6a7kP/kv6/v/FFgh96Kbs6h6jIjpFtRJgps="; + rev = "c2074bbff69902490d49fa7fb511801a11c581f4"; + hash = "sha256-i+m8a1b8RaVmyUAC+FiEdSyXmPWse9XaJaaLL7iq73o="; }; sourceRoot = "${finalAttrs.src.name}/build"; @@ -175,8 +180,8 @@ let owner = "ONLYOFFICE"; repo = "sdkjs"; # rev that the 'sdkjs' submodule in documentserver points at - rev = "d169f841a7e9e46368c36236dd5820e3e10d4a98"; - hash = "sha256-GQwzz3P49sWjCxh41zyuUs5MyMjBQXaMKzxUUTHq0UE="; + rev = "1e81e7e844fcc602c639067cce7d7726749dc11b"; + hash = "sha256-9vDGU8paLUAk3GtLbawhog2EDtCVHzNPBjkryxyg6Gs="; }; sourceRoot = "${finalAttrs.src.name}/build"; @@ -738,7 +743,7 @@ buildCoreComponent "X2tConverter/build/Qt" { pname = "x2t"; # x2t is not 'directly' versioned, so we version it after the version # of documentserver it's pulled into as a submodule - version = "9.1.0"; + version = "9.2.1"; buildInputs = [ unicodeConverter @@ -814,6 +819,7 @@ buildCoreComponent "X2tConverter/build/Qt" { x2t = runCommand "x2t-test" { } '' (${x2t}/bin/x2t || true) | grep "OOX/binary file converter." && mkdir -p $out ''; + nixos-module = nixosTests.onlyoffice; }; passthru.components = { inherit diff --git a/pkgs/servers/x11/xorg/xcb-util-xrm.nix b/pkgs/by-name/xc/xcbutilxrm/package.nix similarity index 100% rename from pkgs/servers/x11/xorg/xcb-util-xrm.nix rename to pkgs/by-name/xc/xcbutilxrm/package.nix diff --git a/pkgs/by-name/xc/xclock/package.nix b/pkgs/by-name/xc/xclock/package.nix new file mode 100644 index 000000000000..ed01c2ba7cf6 --- /dev/null +++ b/pkgs/by-name/xc/xclock/package.nix @@ -0,0 +1,83 @@ +{ + lib, + stdenv, + fetchFromGitLab, + fetchpatch, + meson, + ninja, + pkg-config, + wrapWithXFileSearchPathHook, + libx11, + libxaw, + libxft, + libxkbfile, + libxmu, + libxrender, + libxt, + xorgproto, + nix-update-script, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "xclock"; + version = "1.1.1"; + + src = fetchFromGitLab { + domain = "gitlab.freedesktop.org"; + group = "xorg"; + owner = "app"; + repo = "xclock"; + tag = "xclock-${finalAttrs.version}"; + hash = "sha256-ZgUb+iVO45Az/C+2YJ1TXxcTLk3zQjM1GGv2E69WNfo="; + }; + + patches = [ + # meson build system patch + (fetchpatch { + url = "https://gitlab.freedesktop.org/xorg/app/xclock/-/commit/28e10bd26ac7e02fe8a4fb8016bb115f8d664032.patch"; + hash = "sha256-KdrS7VneJqwVPB+TRJoMmtR03Ju3PvvUMYfXz5tII6k="; + }) + ]; + + strictDeps = true; + + nativeBuildInputs = [ + meson + ninja + pkg-config + wrapWithXFileSearchPathHook + ]; + + buildInputs = [ + libx11 + libxaw + libxft + libxkbfile + libxmu + libxrender + libxt + xorgproto + ]; + + mesonFlags = [ + (lib.mesonOption "appdefaultdir" "${placeholder "out"}/share/X11/app-defaults") + ]; + + passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=xclock-(.*)" ]; }; + + meta = { + description = "analog / digital clock for X"; + longDescription = '' + xclock is the classic X Window System clock utility. It displays the time in analog or digital + form, continuously updated at a frequency which may be specified by the user. + ''; + homepage = "https://gitlab.freedesktop.org/xorg/app/xclock"; + license = with lib.licenses; [ + mitOpenGroup + hpnd + mit + ]; + mainProgram = "xclock"; + maintainers = [ ]; + platforms = lib.platforms.unix; + }; +}) diff --git a/pkgs/by-name/xf/xfd/package.nix b/pkgs/by-name/xf/xfd/package.nix new file mode 100644 index 000000000000..8c570195f841 --- /dev/null +++ b/pkgs/by-name/xf/xfd/package.nix @@ -0,0 +1,64 @@ +{ + lib, + stdenv, + fetchFromGitLab, + autoreconfHook, + pkg-config, + util-macros, + wrapWithXFileSearchPathHook, + fontconfig, + libxaw, + libxft, + libxkbfile, + libxmu, + libxrender, + libxt, + xorgproto, + nix-update-script, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "xfd"; + version = "1.1.4"; + + src = fetchFromGitLab { + domain = "gitlab.freedesktop.org"; + group = "xorg"; + owner = "app"; + repo = "xfd"; + tag = "xfd-${finalAttrs.version}"; + hash = "sha256-8kkoJILNlVgDIV029mF3err6es5V001FQqUnTtD9/LQ="; + }; + + strictDeps = true; + + nativeBuildInputs = [ + autoreconfHook + pkg-config + util-macros + wrapWithXFileSearchPathHook + ]; + + buildInputs = [ + fontconfig + libxaw + libxft + libxkbfile + libxmu + libxrender + libxt + xorgproto + ]; + + installFlags = [ "appdefaultdir=$out/share/X11/app-defaults" ]; + + passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=xfd-(.*)" ]; }; + + meta = { + description = "X font display utility, using either the X11 core protocol or libXft2."; + homepage = "https://gitlab.freedesktop.org/xorg/app/xfd"; + license = lib.licenses.mitOpenGroup; + mainProgram = "xfd"; + maintainers = [ ]; + platforms = lib.platforms.unix; + }; +}) diff --git a/pkgs/by-name/xf/xfs/package.nix b/pkgs/by-name/xf/xfs/package.nix new file mode 100644 index 000000000000..36aa4ae898b5 --- /dev/null +++ b/pkgs/by-name/xf/xfs/package.nix @@ -0,0 +1,55 @@ +{ + lib, + stdenv, + fetchurl, + pkg-config, + libxfont_2, + xorgproto, + xtrans, + writeScript, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "xfs"; + version = "1.2.2"; + + src = fetchurl { + url = "mirror://xorg/individual/app/xfs-${finalAttrs.version}.tar.xz"; + hash = "sha256-twvUYzHiQbMOXgDb3C6rt/P4iAzUQkSs3hPXl20Jjsw="; + }; + + strictDeps = true; + + nativeBuildInputs = [ pkg-config ]; + + buildInputs = [ + libxfont_2 + xorgproto + xtrans + ]; + + passthru = { + updateScript = writeScript "update-${finalAttrs.pname}" '' + #!/usr/bin/env nix-shell + #!nix-shell -i bash -p common-updater-scripts + version="$(list-directory-versions --pname ${finalAttrs.pname} \ + --url https://xorg.freedesktop.org/releases/individual/app/ \ + | sort -V | tail -n1)" + update-source-version ${finalAttrs.pname} "$version" + ''; + }; + + meta = { + description = "X Font Server, for X11 core protocol fonts"; + homepage = "https://gitlab.freedesktop.org/xorg/app/xfs"; + license = with lib.licenses; [ + mitOpenGroup + hpndSellVariant + x11 + hpnd + ]; + mainProgram = "xfs"; + maintainers = [ ]; + platforms = lib.platforms.unix; + broken = stdenv.hostPlatform.isStatic; + }; +}) diff --git a/pkgs/by-name/xk/xkbevd/package.nix b/pkgs/by-name/xk/xkbevd/package.nix new file mode 100644 index 000000000000..fa479d469a22 --- /dev/null +++ b/pkgs/by-name/xk/xkbevd/package.nix @@ -0,0 +1,58 @@ +{ + lib, + stdenv, + fetchFromGitLab, + autoreconfHook, + bison, + pkg-config, + util-macros, + libx11, + libxkbfile, + nix-update-script, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "xkbevd"; + version = "1.1.6"; + + src = fetchFromGitLab { + domain = "gitlab.freedesktop.org"; + group = "xorg"; + owner = "app"; + repo = "xkbevd"; + tag = "xkbevd-${finalAttrs.version}"; + hash = "sha256-n/detXvtRvysc5pjFc0Q27yLC2QsNUBo9AIXYkUG4PQ="; + }; + + strictDeps = true; + + nativeBuildInputs = [ + autoreconfHook + bison + pkg-config + util-macros + ]; + + buildInputs = [ + util-macros # unused dependency but the build fails if pkg-config can't find it + libx11 + libxkbfile + ]; + + passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=xkbevd-(.*)" ]; }; + + meta = { + description = "XKB event daemon"; + longDescription = '' + The xkbevd event daemon listens for specified XKB events and executes requested commands if + they occur. The configuration file consists of a list of event specification/action pairs + and/or variable definitions. + This command is very raw and is therefore only partially implemented; it is a rough prototype + for developers, not a general purpose tool for end users. + ''; + homepage = "https://gitlab.freedesktop.org/xorg/app/xkbevd"; + license = lib.licenses.hpnd; + mainProgram = "xkbevd"; + maintainers = [ ]; + platforms = lib.platforms.unix; + }; +}) diff --git a/pkgs/by-name/xk/xkbprint/package.nix b/pkgs/by-name/xk/xkbprint/package.nix new file mode 100644 index 000000000000..831e8e04306b --- /dev/null +++ b/pkgs/by-name/xk/xkbprint/package.nix @@ -0,0 +1,53 @@ +{ + lib, + stdenv, + fetchFromGitLab, + autoreconfHook, + pkg-config, + util-macros, + libx11, + libxkbfile, + xorgproto, + nix-update-script, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "xkbprint"; + version = "1.0.7"; + + src = fetchFromGitLab { + domain = "gitlab.freedesktop.org"; + group = "xorg"; + owner = "app"; + repo = "xkbprint"; + tag = "xkbprint-${finalAttrs.version}"; + hash = "sha256-JcVXwhEV6tTdgBNki7MuUPjjZOjVE83uBP/yc+ShycE="; + }; + + strictDeps = true; + + nativeBuildInputs = [ + autoreconfHook + pkg-config + util-macros + ]; + + buildInputs = [ + libx11 + libxkbfile + xorgproto + ]; + + passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=xkbprint-(.*)" ]; }; + + meta = { + description = "Generates a PostScript image of an XKB keyboard description."; + homepage = "https://gitlab.freedesktop.org/xorg/app/xkbprint"; + license = with lib.licenses; [ + hpnd + hpndDec + ]; + mainProgram = "xkbprint"; + maintainers = [ ]; + platforms = lib.platforms.unix; + }; +}) diff --git a/pkgs/by-name/xl/xload/package.nix b/pkgs/by-name/xl/xload/package.nix new file mode 100644 index 000000000000..f57b1f5bef3d --- /dev/null +++ b/pkgs/by-name/xl/xload/package.nix @@ -0,0 +1,64 @@ +{ + lib, + stdenv, + fetchFromGitLab, + autoreconfHook, + pkg-config, + util-macros, + wrapWithXFileSearchPathHook, + libx11, + libxaw, + libxmu, + xorgproto, + libxt, + nix-update-script, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "xload"; + version = "1.2.0"; + + src = fetchFromGitLab { + domain = "gitlab.freedesktop.org"; + group = "xorg"; + owner = "app"; + repo = "xload"; + tag = "xload-${finalAttrs.version}"; + hash = "sha256-Mm09uKP+LUW0xGrwcJth/XCUqJ1RDEspbYpL92vOdk4="; + }; + + strictDeps = true; + + nativeBuildInputs = [ + autoreconfHook + pkg-config + util-macros + wrapWithXFileSearchPathHook + ]; + + buildInputs = [ + libx11 + libxaw + libxmu + xorgproto + libxt + ]; + + installFlags = [ "appdefaultdir=$out/share/X11/app-defaults" ]; + + passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=xload-(.*)" ]; }; + + meta = { + description = "System load average display for X"; + longDescription = '' + xload displays a periodically updating histogram of the system load average. + ''; + homepage = "https://gitlab.freedesktop.org/xorg/app/xload"; + license = with lib.licenses; [ + x11 + mit + ]; + mainProgram = "xload"; + maintainers = [ ]; + platforms = lib.platforms.unix; + }; +}) diff --git a/pkgs/by-name/xp/xpr/package.nix b/pkgs/by-name/xp/xpr/package.nix new file mode 100644 index 000000000000..8a63eb0ebd0c --- /dev/null +++ b/pkgs/by-name/xp/xpr/package.nix @@ -0,0 +1,58 @@ +{ + lib, + stdenv, + fetchFromGitLab, + autoreconfHook, + pkg-config, + util-macros, + xorgproto, + libx11, + libxmu, + nix-update-script, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "xpr"; + version = "1.2.0"; + + src = fetchFromGitLab { + domain = "gitlab.freedesktop.org"; + group = "xorg"; + owner = "app"; + repo = "xpr"; + tag = "xpr-${finalAttrs.version}"; + hash = "sha256-q8WcQSzlAwbdIcXWyQjjHmvuqYa4k2e7O+VhShwBDUE="; + }; + + strictDeps = true; + + nativeBuildInputs = [ + autoreconfHook + pkg-config + util-macros + ]; + + buildInputs = [ + xorgproto + libx11 + libxmu + ]; + + passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=xpr-(.*)" ]; }; + + meta = { + description = "Utility to print an X window dump from xwd"; + longDescription = '' + xpr takes as input a window dump file produced by xwd and formats it for output on various + types of printers. + ''; + homepage = "https://gitlab.freedesktop.org/xorg/app/xpr"; + license = with lib.licenses; [ + mit + x11 + hpnd + ]; + mainProgram = "xpr"; + maintainers = [ ]; + platforms = lib.platforms.unix; + }; +}) diff --git a/pkgs/by-name/xv/xviewer/package.nix b/pkgs/by-name/xv/xviewer/package.nix index 615615211e00..f1e3b2a45077 100644 --- a/pkgs/by-name/xv/xviewer/package.nix +++ b/pkgs/by-name/xv/xviewer/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { pname = "xviewer"; - version = "3.4.15"; + version = "3.4.16"; src = fetchFromGitHub { owner = "linuxmint"; repo = "xviewer"; rev = version; - hash = "sha256-fAB7nbkGx6aNKwRA01013hAiGJ8pEovI0WClOqT0D10="; + hash = "sha256-ayd91gVLuSUVlCxaPSBbx7hg4tthVTaBEnl5V9YYbQw="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ya/yara-x/package.nix b/pkgs/by-name/ya/yara-x/package.nix index 74c88e380d57..fe69c9dcdc5e 100644 --- a/pkgs/by-name/ya/yara-x/package.nix +++ b/pkgs/by-name/ya/yara-x/package.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "yara-x"; - version = "1.10.0"; + version = "1.11.0"; src = fetchFromGitHub { owner = "VirusTotal"; repo = "yara-x"; tag = "v${finalAttrs.version}"; - hash = "sha256-aRFDutYFD476xq2TTVWB5CxF1pi3C24NJpfc5kD+aNA="; + hash = "sha256-UE5x9w9I4l9OqRVv6klveEvIap+El6vea6OsnnOJHus="; }; - cargoHash = "sha256-CT+walpFIFTaO480ATHO1E38K9Tw14QqLRYzztWQmeA="; + cargoHash = "sha256-rQ8uBgsJ86K0Qc3uTiFDPmcRU+dF5gu0b5pzMcGAAVU="; CARGO_PROFILE_RELEASE_LTO = "fat"; CARGO_PROFILE_RELEASE_CODEGEN_UNITS = "1"; diff --git a/pkgs/by-name/yo/yosys/fix-clang-build.patch b/pkgs/by-name/yo/yosys/fix-clang-build.patch deleted file mode 100644 index 63cec283ad65..000000000000 --- a/pkgs/by-name/yo/yosys/fix-clang-build.patch +++ /dev/null @@ -1,41 +0,0 @@ -diff --git a/tests/cxxrtl/run-test.sh b/tests/cxxrtl/run-test.sh -index ee299fc82..595cd3f88 100755 ---- a/tests/cxxrtl/run-test.sh -+++ b/tests/cxxrtl/run-test.sh -@@ -5,7 +5,7 @@ set -ex - run_subtest () { - local subtest=$1; shift - -- ${CC:-gcc} -std=c++11 -O2 -o cxxrtl-test-${subtest} -I../../backends/cxxrtl/runtime test_${subtest}.cc -lstdc++ -+ ${CXX:-gcc} -std=c++11 -O2 -o cxxrtl-test-${subtest} -I../../backends/cxxrtl/runtime test_${subtest}.cc -lstdc++ - ./cxxrtl-test-${subtest} - } - -@@ -14,4 +14,4 @@ run_subtest value_fuzz - - # Compile-only test. - ../../yosys -p "read_verilog test_unconnected_output.v; select =*; proc; clean; write_cxxrtl cxxrtl-test-unconnected_output.cc" --${CC:-gcc} -std=c++11 -c -o cxxrtl-test-unconnected_output -I../../backends/cxxrtl/runtime cxxrtl-test-unconnected_output.cc -+${CXX:-gcc} -std=c++11 -c -o cxxrtl-test-unconnected_output -I../../backends/cxxrtl/runtime cxxrtl-test-unconnected_output.cc -diff --git a/tests/fmt/run-test.sh b/tests/fmt/run-test.sh -index 998047f83..2a4a59f01 100644 ---- a/tests/fmt/run-test.sh -+++ b/tests/fmt/run-test.sh -@@ -51,7 +51,7 @@ test_cxxrtl () { - local subtest=$1; shift - - ../../yosys -p "read_verilog ${subtest}.v; proc; clean; write_cxxrtl -print-output std::cerr yosys-${subtest}.cc" -- ${CC:-gcc} -std=c++11 -o yosys-${subtest} -I../../backends/cxxrtl/runtime ${subtest}_tb.cc -lstdc++ -+ ${CXX:-gcc} -std=c++11 -o yosys-${subtest} -I../../backends/cxxrtl/runtime ${subtest}_tb.cc -lstdc++ - ./yosys-${subtest} 2>yosys-${subtest}.log - iverilog -o iverilog-${subtest} ${subtest}.v ${subtest}_tb.v - ./iverilog-${subtest} |grep -v '\$finish called' >iverilog-${subtest}.log -@@ -69,7 +69,7 @@ diff iverilog-always_full.log iverilog-always_full-1.log - - ../../yosys -p "read_verilog display_lm.v" >yosys-display_lm.log - ../../yosys -p "read_verilog display_lm.v; write_cxxrtl yosys-display_lm.cc" --${CC:-gcc} -std=c++11 -o yosys-display_lm_cc -I../../backends/cxxrtl/runtime display_lm_tb.cc -lstdc++ -+${CXX:-gcc} -std=c++11 -o yosys-display_lm_cc -I../../backends/cxxrtl/runtime display_lm_tb.cc -lstdc++ - ./yosys-display_lm_cc >yosys-display_lm_cc.log - for log in yosys-display_lm.log yosys-display_lm_cc.log; do - grep "^%l: \\\\bot\$" "$log" diff --git a/pkgs/by-name/yo/yosys/package.nix b/pkgs/by-name/yo/yosys/package.nix index f70bbde3d051..c4e06f4131bc 100644 --- a/pkgs/by-name/yo/yosys/package.nix +++ b/pkgs/by-name/yo/yosys/package.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchFromGitHub, - fetchpatch2, # nativeBuildInputs bison, @@ -88,13 +87,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "yosys"; - version = "0.55"; + version = "0.60"; src = fetchFromGitHub { owner = "YosysHQ"; repo = "yosys"; tag = "v${finalAttrs.version}"; - hash = "sha256-GddNbAtH5SPm7KTa5kCm/vGq4xOczx+jCnOSQl55gUI="; + hash = "sha256-BVrSq9nWbdu/PIXfwLW7ZkHTz6SrmsqJMSkVa6CsBm8="; fetchSubmodules = true; leaveDotGit = true; postFetch = '' @@ -126,6 +125,8 @@ stdenv.mkDerivation (finalAttrs: { (python3.withPackages ( pp: with pp; [ click + cxxheaderparser + pybind11 ] )) ] @@ -135,19 +136,6 @@ stdenv.mkDerivation (finalAttrs: { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - patches = [ - # Backport fix amaranth code compilation - # TODO remove when updating to 0.56 - # https://github.com/YosysHQ/yosys/pull/5182 - (fetchpatch2 { - name = "treat-zero-width-constant-as-zero.patch"; - url = "https://github.com/YosysHQ/yosys/commit/478b6a2b3fbab0fd4097b841914cbe8bb9f67268.patch"; - hash = "sha256-KeLoZfkXMk2KIPN9XBQdqWqohywQONlWUIvrGwgphKs="; - }) - ./plugin-search-dirs.patch - ./fix-clang-build.patch - ]; - postPatch = '' substituteInPlace ./Makefile \ --replace-fail 'echo UNKNOWN' 'echo ${builtins.substring 0 10 finalAttrs.src.rev}' @@ -165,6 +153,7 @@ stdenv.mkDerivation (finalAttrs: { fi '' + lib.optionalString enablePython '' + echo "PYOSYS_USE_UV := 0" >> Makefile.conf echo "ENABLE_PYOSYS := 1" >> Makefile.conf echo "PYTHON_DESTDIR := $out/${python3.sitePackages}" >> Makefile.conf echo "BOOST_PYTHON_LIB := -lboost_python${lib.versions.major python3.version}${lib.versions.minor python3.version}" >> Makefile.conf diff --git a/pkgs/by-name/yo/yosys/plugin-search-dirs.patch b/pkgs/by-name/yo/yosys/plugin-search-dirs.patch deleted file mode 100644 index 354eeddbc2e1..000000000000 --- a/pkgs/by-name/yo/yosys/plugin-search-dirs.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff --git i/passes/cmds/plugin.cc w/passes/cmds/plugin.cc -index 08b4aa8c4..f00f540e9 100644 ---- i/passes/cmds/plugin.cc -+++ w/passes/cmds/plugin.cc -@@ -87,15 +87,33 @@ void load_plugin(std::string filename, std::vector aliases) - - // We were unable to open the file, try to do so from the plugin directory - if (hdl == NULL && orig_filename.find('/') == std::string::npos) { -- hdl = dlopen([orig_filename]() { -- std::string new_path = proc_share_dirname() + "plugins/" + orig_filename; -+ std::string install_dir = proc_share_dirname() + "plugins"; - -- // Check if we need to append .so -- if (new_path.find(".so") == std::string::npos) -- new_path.append(".so"); -+ vector all_dirs; -+ all_dirs.push_back(install_dir); - -- return new_path; -- }().c_str(), RTLD_LAZY|RTLD_LOCAL); -+ char* plugin_dirs = getenv("NIX_YOSYS_PLUGIN_DIRS"); -+ if (plugin_dirs != NULL) { -+ std::string p(plugin_dirs), t; -+ std::stringstream ss(p); -+ -+ while(std::getline(ss, t, ':')) { -+ all_dirs.push_back(t); -+ } -+ } -+ -+ for (auto dir : all_dirs) { -+ hdl = dlopen([dir, orig_filename]() { -+ std::string new_path = dir + "/" + orig_filename; -+ -+ // Check if we need to append .so -+ if (new_path.find(".so") == std::string::npos) -+ new_path.append(".so"); -+ -+ return new_path; -+ }().c_str(), RTLD_LAZY|RTLD_LOCAL); -+ if (hdl != NULL) break; -+ } - } - - if (hdl == NULL) diff --git a/pkgs/by-name/zf/zf/package.nix b/pkgs/by-name/zf/zf/package.nix index 1f3cea51152d..1090bc7267c1 100644 --- a/pkgs/by-name/zf/zf/package.nix +++ b/pkgs/by-name/zf/zf/package.nix @@ -8,12 +8,6 @@ callPackage, }: -let - zig = zig_0_15; - zig_hook = zig.hook.overrideAttrs { - zig_default_flags = "-Dcpu=baseline -Doptimize=ReleaseFast --color off"; - }; -in stdenv.mkDerivation (finalAttrs: { pname = "zf"; upstreamVersion = "0.10.3"; @@ -29,16 +23,20 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ installShellFiles - zig_hook + zig_0_15 ]; deps = callPackage ./deps.nix { name = "${finalAttrs.pname}-cache-${finalAttrs.version}"; }; + dontSetZigDefaultFlags = true; + zigBuildFlags = [ "--system" "${finalAttrs.deps}" + "-Dcpu=baseline" + "-Doptimize=ReleaseFast" ]; postInstall = '' diff --git a/pkgs/by-name/zx/zx/package.nix b/pkgs/by-name/zx/zx/package.nix index ada370da25cd..32a8094310d6 100644 --- a/pkgs/by-name/zx/zx/package.nix +++ b/pkgs/by-name/zx/zx/package.nix @@ -4,6 +4,7 @@ buildGoModule, fetchFromGitHub, esbuild, + nodejs_22, versionCheckHook, nix-update-script, }: @@ -45,6 +46,8 @@ buildNpmPackage (finalAttrs: { npmDepsHash = "sha256-yr4oPr4tTFfl+uUc2RJnVkmzSVHrw2adzWuZ+R2bQaU="; + nodejs = nodejs_22; + makeCacheWritable = true; npmFlags = [ "--legacy-peer-deps" ]; diff --git a/pkgs/desktops/lomiri/services/lomiri-content-hub/default.nix b/pkgs/desktops/lomiri/services/lomiri-content-hub/default.nix index 472c4de0d005..e174ec60d954 100644 --- a/pkgs/desktops/lomiri/services/lomiri-content-hub/default.nix +++ b/pkgs/desktops/lomiri/services/lomiri-content-hub/default.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "lomiri-content-hub"; - version = "2.2.1"; + version = "2.2.2"; src = fetchFromGitLab { owner = "ubports"; repo = "development/core/lomiri-content-hub"; - rev = finalAttrs.version; - hash = "sha256-L0CX383AMu8XlNbGL01VvBxvawJwAWHhTh3ak0sjo20="; + tag = finalAttrs.version; + hash = "sha256-ukaEur2RgdIVPYm90OUCs0L+F9OQ3zaypreyx33iD5M="; }; outputs = [ @@ -59,10 +59,6 @@ stdenv.mkDerivation (finalAttrs: { # Don't override default theme search path (which honours XDG_DATA_DIRS) with a FHS assumption substituteInPlace import/Lomiri/Content/contenthubplugin.cpp \ --replace-fail 'QIcon::setThemeSearchPaths(QStringList() << ("/usr/share/icons/"));' "" - - # https://gitlab.com/ubports/development/core/lomiri-content-hub/-/merge_requests/54 - substituteInPlace src/com/lomiri/content/service/registry.h \ - --replace-fail '' '' ''; strictDeps = true; diff --git a/pkgs/development/compilers/ghc/9.6.6-debian-binary.nix b/pkgs/development/compilers/ghc/9.6.6-debian-binary.nix index 81af893586d7..e73d7b11dae2 100644 --- a/pkgs/development/compilers/ghc/9.6.6-debian-binary.nix +++ b/pkgs/development/compilers/ghc/9.6.6-debian-binary.nix @@ -24,9 +24,11 @@ let # We're using Debian's binary package, and patching it into a usable-in-Nixpkgs state. ghcDebs = { powerpc64-linux = { - variantSuffix = ""; src = { - url = "http://ftp.ports.debian.org/debian-ports/pool-ppc64/main/g/ghc/ghc_9.6.6-4_ppc64.deb"; + urls = [ + "http://ftp.ports.debian.org/debian-ports/pool-ppc64/main/g/ghc/ghc_9.6.6-4_ppc64.deb" + "https://snapshot.debian.org/archive/debian-ports/20250917T193713Z/pool-ppc64/main/g/ghc/ghc_9.6.6-4_ppc64.deb" + ]; sha256 = "722cc301b6ba70b342e5e3d9d0671440bcd749cd2f13dcccbd23c3f6a6060171"; }; exePathForLibraryCheck = null; @@ -76,7 +78,7 @@ in stdenv.mkDerivation (finalAttrs: { inherit version; - pname = "ghc-debian-binary${debUsed.variantSuffix}"; + pname = "ghc-debian-binary"; src = fetchurl debUsed.src; diff --git a/pkgs/development/compilers/rust/clippy.nix b/pkgs/development/compilers/rust/clippy.nix index fa33c9e9f315..e5f1b3544f0b 100644 --- a/pkgs/development/compilers/rust/clippy.nix +++ b/pkgs/development/compilers/rust/clippy.nix @@ -21,7 +21,7 @@ rustPlatform.buildRustPackage { buildInputs = [ rustc.llvm ]; # fixes: error: the option `Z` is only accepted on the nightly compiler - RUSTC_BOOTSTRAP = 1; + env.RUSTC_BOOTSTRAP = 1; # Without disabling the test the build fails with: # error: failed to run custom build command for `rustc_llvm v0.0.0 diff --git a/pkgs/development/compilers/rust/rustfmt.nix b/pkgs/development/compilers/rust/rustfmt.nix index b002d665518a..0398dcc9fe0a 100644 --- a/pkgs/development/compilers/rust/rustfmt.nix +++ b/pkgs/development/compilers/rust/rustfmt.nix @@ -38,13 +38,15 @@ rustPlatform.buildRustPackage { install_name_tool -add_rpath "${rustc.unwrapped}/lib" "$out/bin/git-rustfmt" ''; - # As of 1.0.0 and rustc 1.30 rustfmt requires a nightly compiler - RUSTC_BOOTSTRAP = 1; + env = { + # As of 1.0.0 and rustc 1.30 rustfmt requires a nightly compiler + RUSTC_BOOTSTRAP = 1; - # As of rustc 1.45.0, these env vars are required to build rustfmt (due to - # https://github.com/rust-lang/rust/pull/72001) - CFG_RELEASE = rustc.version; - CFG_RELEASE_CHANNEL = if asNightly then "nightly" else "stable"; + # As of rustc 1.45.0, these env vars are required to build rustfmt (due to + # https://github.com/rust-lang/rust/pull/72001) + CFG_RELEASE = rustc.version; + CFG_RELEASE_CHANNEL = if asNightly then "nightly" else "stable"; + }; postInstall = '' wrapProgram $out/bin/cargo-fmt \ diff --git a/pkgs/development/compilers/zig/generic.nix b/pkgs/development/compilers/zig/generic.nix index 3e9d5143824b..98a331a32fbd 100644 --- a/pkgs/development/compilers/zig/generic.nix +++ b/pkgs/development/compilers/zig/generic.nix @@ -5,7 +5,6 @@ cmake, llvmPackages, xcbuild, - targetPackages, libxml2, ninja, zlib, @@ -126,17 +125,52 @@ stdenv.mkDerivation (finalAttrs: { passthru = import ./passthru.nix { inherit - lib stdenv callPackage wrapCCWith wrapBintoolsWith overrideCC - targetPackages ; zig = finalAttrs.finalPackage; }; + env = { + # This zig_default_optimize_flag below is meant to avoid CPU feature impurity in + # Nixpkgs. However, this flagset is "unstable": it is specifically meant to + # be controlled by the upstream development team - being up to that team + # exposing or not that flags to the outside (especially the package manager + # teams). + + # Because of this hurdle, @andrewrk from Zig Software Foundation proposed + # some solutions for this issue. Hopefully they will be implemented in + # future releases of Zig. When this happens, this flagset should be + # revisited accordingly. + + # Below are some useful links describing the discovery process of this 'bug' + # in Nixpkgs: + + # https://github.com/NixOS/nixpkgs/issues/169461 + # https://github.com/NixOS/nixpkgs/issues/185644 + # https://github.com/NixOS/nixpkgs/pull/197046 + # https://github.com/NixOS/nixpkgs/pull/241741#issuecomment-1624227485 + # https://github.com/ziglang/zig/issues/14281#issuecomment-1624220653 + zig_default_cpu_flag = "-Dcpu=baseline"; + + zig_default_optimize_flag = + if lib.versionAtLeast finalAttrs.version "0.12" then + "--release=safe" + else if lib.versionAtLeast finalAttrs.version "0.11" then + "-Doptimize=ReleaseSafe" + else + "-Drelease-safe=true"; + }; + + setupHook = ./setup-hook.sh; + + # while xcrun is already included in the darwin stdenv, Zig also needs + # xcode-select (provided by xcbuild) for SDK detection + propagatedNativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ xcbuild ]; + meta = { description = "General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software"; homepage = "https://ziglang.org/"; diff --git a/pkgs/development/compilers/zig/hook.nix b/pkgs/development/compilers/zig/hook.nix deleted file mode 100644 index 2620414b6a2e..000000000000 --- a/pkgs/development/compilers/zig/hook.nix +++ /dev/null @@ -1,60 +0,0 @@ -{ - lib, - makeSetupHook, - zig, - stdenv, - xcbuild, - globalBuildFlags ? [ "-Dcpu=baseline" ], -}: - -makeSetupHook { - name = "zig-hook"; - - propagatedBuildInputs = [ - zig - ] - # while xcrun is already included in the darwin stdenv, Zig also needs - # xcode-select (provided by xcbuild) for SDK detection - ++ lib.optionals stdenv.hostPlatform.isDarwin [ xcbuild ]; - - substitutions = { - # This zig_default_flags below is meant to avoid CPU feature impurity in - # Nixpkgs. However, this flagset is "unstable": it is specifically meant to - # be controlled by the upstream development team - being up to that team - # exposing or not that flags to the outside (especially the package manager - # teams). - - # Because of this hurdle, @andrewrk from Zig Software Foundation proposed - # some solutions for this issue. Hopefully they will be implemented in - # future releases of Zig. When this happens, this flagset should be - # revisited accordingly. - - # Below are some useful links describing the discovery process of this 'bug' - # in Nixpkgs: - - # https://github.com/NixOS/nixpkgs/issues/169461 - # https://github.com/NixOS/nixpkgs/issues/185644 - # https://github.com/NixOS/nixpkgs/pull/197046 - # https://github.com/NixOS/nixpkgs/pull/241741#issuecomment-1624227485 - # https://github.com/ziglang/zig/issues/14281#issuecomment-1624220653 - - zig_default_flags = - let - releaseType = - if lib.versionAtLeast zig.version "0.12" then - "--release=safe" - else if lib.versionAtLeast zig.version "0.11" then - "-Doptimize=ReleaseSafe" - else - "-Drelease-safe=true"; - in - globalBuildFlags ++ [ releaseType ]; - }; - - passthru = { inherit zig; }; - - meta = { - description = "Setup hook for using the Zig compiler in Nixpkgs"; - inherit (zig.meta) maintainers platforms broken; - }; -} ./setup-hook.sh diff --git a/pkgs/development/compilers/zig/passthru.nix b/pkgs/development/compilers/zig/passthru.nix index 439df42d31d5..dbe371008f48 100644 --- a/pkgs/development/compilers/zig/passthru.nix +++ b/pkgs/development/compilers/zig/passthru.nix @@ -1,15 +1,15 @@ { - lib, stdenv, zig, callPackage, wrapCCWith, wrapBintoolsWith, overrideCC, - targetPackages, }: { - hook = callPackage ./hook.nix { inherit zig; }; + # Provided for backward compatibility, as the `zig` derivation now sets + # setupHook. + hook = zig; bintools-unwrapped = callPackage ./bintools.nix { inherit zig; }; bintools = wrapBintoolsWith { bintools = zig.bintools-unwrapped; }; diff --git a/pkgs/development/compilers/zig/setup-hook.sh b/pkgs/development/compilers/zig/setup-hook.sh index 1f6d8567838a..bbd322c5641c 100644 --- a/pkgs/development/compilers/zig/setup-hook.sh +++ b/pkgs/development/compilers/zig/setup-hook.sh @@ -1,96 +1,113 @@ # shellcheck shell=bash # shellcheck disable=SC2034 -readonly zigDefaultFlagsArray=(@zig_default_flags@) +readonly zigDefaultCpuFlag=@zig_default_cpu_flag@ +readonly zigDefaultOptimizeFlag=@zig_default_optimize_flag@ function zigSetGlobalCacheDir { - ZIG_GLOBAL_CACHE_DIR=$(mktemp -d) - export ZIG_GLOBAL_CACHE_DIR + ZIG_GLOBAL_CACHE_DIR=$(mktemp -d) + export ZIG_GLOBAL_CACHE_DIR } function zigBuildPhase { - runHook preBuild + runHook preBuild - local buildCores=1 + local buildCores=1 - # Parallel building is enabled by default. - if [ "${enableParallelBuilding-1}" ]; then - buildCores="$NIX_BUILD_CORES" - fi + # Parallel building is enabled by default. + if [ "${enableParallelBuilding-1}" ]; then + buildCores="$NIX_BUILD_CORES" + fi - local flagsArray=( - "-j$buildCores" - ) - concatTo flagsArray zigDefaultFlagsArray \ - zigBuildFlags zigBuildFlagsArray + local flagsArray=( + "-j$buildCores" + ) + concatTo flagsArray \ + zigBuildFlags zigBuildFlagsArray - echoCmd 'zig build flags' "${flagsArray[@]}" - TERM=dumb zig build "${flagsArray[@]}" --verbose + if [ -z "${dontSetZigDefaultFlags:-}" ]; then + concatTo flagsArray \ + zigDefaultCpuFlag zigDefaultOptimizeFlag + fi - runHook postBuild + echoCmd 'zig build flags' "${flagsArray[@]}" + TERM=dumb zig build "${flagsArray[@]}" --verbose + + runHook postBuild } function zigCheckPhase { - runHook preCheck + runHook preCheck - local buildCores=1 + local buildCores=1 - # Parallel building is enabled by default. - if [ "${enableParallelChecking-1}" ]; then - buildCores="$NIX_BUILD_CORES" - fi + # Parallel building is enabled by default. + if [ "${enableParallelChecking-1}" ]; then + buildCores="$NIX_BUILD_CORES" + fi - local flagsArray=( - "-j$buildCores" - ) - concatTo flagsArray zigDefaultFlagsArray \ - zigCheckFlags zigCheckFlagsArray + local flagsArray=( + "-j$buildCores" + ) + concatTo flagsArray \ + zigCheckFlags zigCheckFlagsArray - echoCmd 'zig check flags' "${flagsArray[@]}" - TERM=dumb zig build test "${flagsArray[@]}" --verbose + if [ -z "${dontSetZigDefaultFlags:-}" ]; then + concatTo flagsArray \ + zigDefaultCpuFlag zigDefaultOptimizeFlag + fi - runHook postCheck + echoCmd 'zig check flags' "${flagsArray[@]}" + TERM=dumb zig build test "${flagsArray[@]}" --verbose + + runHook postCheck } function zigInstallPhase { - runHook preInstall + runHook preInstall - local buildCores=1 + local buildCores=1 - # Parallel building is enabled by default. - if [ "${enableParallelInstalling-1}" ]; then - buildCores="$NIX_BUILD_CORES" - fi + # Parallel building is enabled by default. + if [ "${enableParallelInstalling-1}" ]; then + buildCores="$NIX_BUILD_CORES" + fi - local flagsArray=( - "-j$buildCores" - ) - concatTo flagsArray zigDefaultFlagsArray \ - zigBuildFlags zigBuildFlagsArray \ - zigInstallFlags zigInstallFlagsArray + local flagsArray=( + "-j$buildCores" + ) - if [ -z "${dontAddPrefix-}" ]; then - # Zig does not recognize `--prefix=/dir/`, only `--prefix /dir/` - flagsArray+=("${prefixKey:---prefix}" "$prefix") - fi + concatTo flagsArray \ + zigBuildFlags zigBuildFlagsArray \ + zigInstallFlags zigInstallFlagsArray - echoCmd 'zig install flags' "${flagsArray[@]}" - TERM=dumb zig build install "${flagsArray[@]}" --verbose + if [ -z "${dontSetZigDefaultFlags:-}" ]; then + concatTo flagsArray \ + zigDefaultCpuFlag zigDefaultOptimizeFlag + fi - runHook postInstall + if [ -z "${dontAddPrefix-}" ] && [ -n "$prefix" ]; then + # Zig does not recognize `--prefix=/dir/`, only `--prefix /dir/` + flagsArray+=("${prefixKey:---prefix}" "$prefix") + fi + + echoCmd 'zig install flags' "${flagsArray[@]}" + TERM=dumb zig build install "${flagsArray[@]}" --verbose + + runHook postInstall } # shellcheck disable=SC2154 -addEnvHooks "$targetOffset" zigSetGlobalCacheDir +addEnvHooks "$hostOffset" zigSetGlobalCacheDir if [ -z "${dontUseZigBuild-}" ] && [ -z "${buildPhase-}" ]; then - buildPhase=zigBuildPhase + buildPhase=zigBuildPhase fi if [ -z "${dontUseZigCheck-}" ] && [ -z "${checkPhase-}" ]; then - checkPhase=zigCheckPhase + checkPhase=zigCheckPhase fi if [ -z "${dontUseZigInstall-}" ] && [ -z "${installPhase-}" ]; then - installPhase=zigInstallPhase + installPhase=zigInstallPhase fi diff --git a/pkgs/development/coq-modules/metarocq/default.nix b/pkgs/development/coq-modules/metarocq/default.nix index ba2a7ba8c40a..0396573620c2 100644 --- a/pkgs/development/coq-modules/metarocq/default.nix +++ b/pkgs/development/coq-modules/metarocq/default.nix @@ -15,13 +15,14 @@ let case = case: out: { inherit case out; }; in lib.switch coq.coq-version [ - (case "9.1" "1.4-9.1") + (case "9.1" "1.4.1-9.1") (case "9.0" "1.4-9.0.1") ] null; release = { "1.4-9.0".sha256 = "sha256-5QecDAMkvgfDPZ7/jDfnOgcE+Eb1LTAozP7nz6nkuxg="; "1.4-9.0.1".sha256 = "sha256-zMUd2A6EG0LYK3L9ABQvS/Et4MDpSmf3Pxd9+IPNYkI="; "1.4-9.1".sha256 = "sha256-v6jFvUavIzyb/e6ytAaZjxQLFM9uW9TDUB77yRO74eE="; + "1.4.1-9.1".sha256 = "sha256-tzoAWX74lg7pArGVP11QBvDRKMvmGxXvrf3+1E3Y4DI="; }; releaseRev = v: "v${v}"; diff --git a/pkgs/development/haskell-modules/configuration-arm.nix b/pkgs/development/haskell-modules/configuration-arm.nix index c124a4e5fc1f..faa5ce5d223d 100644 --- a/pkgs/development/haskell-modules/configuration-arm.nix +++ b/pkgs/development/haskell-modules/configuration-arm.nix @@ -124,3 +124,19 @@ self: super: # android is not currently allowed as 'supported-platforms' by hackage2nix android-activity = unmarkBroken super.android-activity; } +// lib.optionalAttrs (with pkgs.stdenv.hostPlatform; !isDarwin) { + # 2026-01-09: RNG tests that need rng-instruction support fail on NixOS's + # aarch64-linux build infrastructure + botan-low = overrideCabal (drv: { + testFlags = + drv.testFlags or [ ] + ++ (lib.concatMap (x: [ "--skip" ] ++ [ x ]) [ + # botan-low-rng-tests + "/rdrand/rngInit/" + "/rdrand/rngGet/" + "/rdrand/rngReseed/" + "/rdrand/rngReseedFromRNGCtx/" + "/rdrand/rngAddEntropy/" + ]); + }) super.botan-low; +} diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index d566e4f66f9d..1b695f11b6cc 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -3390,146 +3390,6 @@ with haskellLib; stripe-concepts = doJailbreak super.stripe-concepts; stripe-signature = doJailbreak super.stripe-signature; stripe-wreq = doJailbreak super.stripe-wreq; - - # 2025-08-04: Disable failing testcases. It would feel bad to disable all the - # checks in a cryptography related package. - botan-low = overrideCabal (drv: { - testFlags = - drv.testFlags or [ ] - ++ (lib.concatMap (x: [ "--skip" ] ++ [ x ]) [ - # botan-low-cipher-tests - "/AES-128/SIV/can incrementally / online encipher a message/" - "/AES-128/SIV/can incrementally / online decipher a message/" - "/AES-128/SIV/has parity between online and offline/" - "/AES-192/SIV/can incrementally / online encipher a message/" - "/AES-192/SIV/can incrementally / online decipher a message/" - "/AES-192/SIV/has parity between online and offline/" - "/AES-256/SIV/can incrementally / online encipher a message/" - "/AES-256/SIV/can incrementally / online decipher a message/" - "/AES-256/SIV/has parity between online and offline/" - "/ARIA-128/SIV/can incrementally / online encipher a message/" - "/ARIA-128/SIV/can incrementally / online decipher a message/" - "/ARIA-128/SIV/has parity between online and offline/" - "/ARIA-192/SIV/can incrementally / online encipher a message/" - "/ARIA-192/SIV/can incrementally / online decipher a message/" - "/ARIA-192/SIV/has parity between online and offline/" - "/ARIA-256/SIV/can incrementally / online encipher a message/" - "/ARIA-256/SIV/can incrementally / online decipher a message/" - "/ARIA-256/SIV/has parity between online and offline/" - "/Camellia-128/SIV/can incrementally / online encipher a message/" - "/Camellia-128/SIV/can incrementally / online decipher a message/" - "/Camellia-128/SIV/has parity between online and offline/" - "/Camellia-192/SIV/can incrementally / online encipher a message/" - "/Camellia-192/SIV/can incrementally / online decipher a message/" - "/Camellia-192/SIV/has parity between online and offline/" - "/Camellia-256/SIV/can incrementally / online encipher a message/" - "/Camellia-256/SIV/can incrementally / online decipher a message/" - "/Camellia-256/SIV/has parity between online and offline/" - "/Noekeon/SIV/can incrementally / online encipher a message/" - "/Noekeon/SIV/can incrementally / online decipher a message/" - "/Noekeon/SIV/has parity between online and offline/" - "/SEED/SIV/can incrementally / online encipher a message/" - "/SEED/SIV/can incrementally / online decipher a message/" - "/SEED/SIV/has parity between online and offline/" - "/SM4/SIV/can incrementally / online encipher a message/" - "/SM4/SIV/can incrementally / online decipher a message/" - "/SM4/SIV/has parity between online and offline/" - "/Serpent/SIV/can incrementally / online encipher a message/" - "/Serpent/SIV/can incrementally / online decipher a message/" - "/Serpent/SIV/has parity between online and offline/" - "/Twofish/SIV/can incrementally / online encipher a message/" - "/Twofish/SIV/can incrementally / online decipher a message/" - "/Twofish/SIV/has parity between online and offline/" - "/AES-128/CCM/can incrementally / online encipher a message/" - "/AES-128/CCM/can incrementally / online decipher a message/" - "/AES-128/CCM/has parity between online and offline/" - "/AES-192/CCM/can incrementally / online encipher a message/" - "/AES-192/CCM/can incrementally / online decipher a message/" - "/AES-192/CCM/has parity between online and offline/" - "/AES-256/CCM/can incrementally / online encipher a message/" - "/AES-256/CCM/can incrementally / online decipher a message/" - "/AES-256/CCM/has parity between online and offline/" - "/ARIA-128/CCM/can incrementally / online encipher a message/" - "/ARIA-128/CCM/can incrementally / online decipher a message/" - "/ARIA-128/CCM/has parity between online and offline/" - "/ARIA-192/CCM/can incrementally / online encipher a message/" - "/ARIA-192/CCM/can incrementally / online decipher a message/" - "/ARIA-192/CCM/has parity between online and offline/" - "/ARIA-256/CCM/can incrementally / online encipher a message/" - "/ARIA-256/CCM/can incrementally / online decipher a message/" - "/ARIA-256/CCM/has parity between online and offline/" - "/Camellia-128/CCM/can incrementally / online encipher a message/" - "/Camellia-128/CCM/can incrementally / online decipher a message/" - "/Camellia-128/CCM/has parity between online and offline/" - "/Camellia-192/CCM/can incrementally / online encipher a message/" - "/Camellia-192/CCM/can incrementally / online decipher a message/" - "/Camellia-192/CCM/has parity between online and offline/" - "/Camellia-256/CCM/can incrementally / online encipher a message/" - "/Camellia-256/CCM/can incrementally / online decipher a message/" - "/Camellia-256/CCM/has parity between online and offline/" - "/Noekeon/CCM/can incrementally / online encipher a message/" - "/Noekeon/CCM/can incrementally / online decipher a message/" - "/Noekeon/CCM/has parity between online and offline/" - "/SEED/CCM/can incrementally / online encipher a message/" - "/SEED/CCM/can incrementally / online decipher a message/" - "/SEED/CCM/has parity between online and offline/" - "/SM4/CCM/can incrementally / online encipher a message/" - "/SM4/CCM/can incrementally / online decipher a message/" - "/SM4/CCM/has parity between online and offline/" - "/Serpent/CCM/can incrementally / online encipher a message/" - "/Serpent/CCM/can incrementally / online decipher a message/" - "/Serpent/CCM/has parity between online and offline/" - "/Twofish/CCM/can incrementally / online encipher a message/" - "/Twofish/CCM/can incrementally / online decipher a message/" - "/Twofish/CCM/has parity between online and offline/" - # botan-low-mpi-tests - "/can compute the modular inverse/" - # botan-low-pubkey-dsa-tests - "/modp/srp/1024/privKeyLoadDSA/" - "/modp/srp/1024/pubKeyLoadDSA/" - "/modp/srp/1536/privKeyLoadDSA/" - "/modp/srp/1536/pubKeyLoadDSA/" - "/modp/srp/2048/privKeyLoadDSA/" - "/modp/srp/2048/pubKeyLoadDSA/" - "/modp/srp/3072/privKeyLoadDSA/" - "/modp/srp/3072/pubKeyLoadDSA/" - "/modp/srp/4096/privKeyLoadDSA/" - "/modp/srp/4096/pubKeyLoadDSA/" - "/modp/srp/6144/privKeyLoadDSA/" - "/modp/srp/6144/pubKeyLoadDSA/" - "/modp/srp/8192/privKeyLoadDSA/" - "/modp/srp/8192/pubKeyLoadDSA/" - # botan-low-pubkey-decrypt-tests - "/SM2 sm2p256v1 SHA-256/decrypt/" - # botan-low-pubkey-encrypt-tests - "/SM2 sm2p256v1 SHA-256/encrypt/" - # botan-low-pwdhash-tests - "/Scrypt/pwdhashTimed/" - # botan-low-srp6-tests - "/ffdhe/ietf/2048/can negotiate a shared secret/" - "/ffdhe/ietf/3072/can negotiate a shared secret/" - "/ffdhe/ietf/4096/can negotiate a shared secret/" - "/ffdhe/ietf/6144/can negotiate a shared secret/" - "/ffdhe/ietf/8192/can negotiate a shared secret/" - "/modp/ietf/1024/can negotiate a shared secret/" - "/modp/ietf/1536/can negotiate a shared secret/" - "/modp/ietf/2048/can negotiate a shared secret/" - "/modp/ietf/3072/can negotiate a shared secret/" - "/modp/ietf/4096/can negotiate a shared secret/" - "/modp/ietf/6144/can negotiate a shared secret/" - "/modp/ietf/8192/can negotiate a shared secret/" - "/modp/srp/1024/can negotiate a shared secret/" - "/modp/srp/1536/can negotiate a shared secret/" - "/modp/srp/2048/can negotiate a shared secret/" - "/modp/srp/3072/can negotiate a shared secret/" - "/modp/srp/4096/can negotiate a shared secret/" - "/modp/srp/6144/can negotiate a shared secret/" - "/modp/srp/8192/can negotiate a shared secret/" - "/dsa/jce/1024/can negotiate a shared secret/" - "/dsa/botan/2048/can negotiate a shared secret/" - "/dsa/botan/3072/can negotiate a shared secret/" - ]); - }) super.botan-low; } // import ./configuration-tensorflow.nix { inherit pkgs haskellLib; } self super diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix index ebf85f05fc22..0c6c30554097 100644 --- a/pkgs/development/haskell-modules/configuration-darwin.nix +++ b/pkgs/development/haskell-modules/configuration-darwin.nix @@ -356,20 +356,6 @@ self: super: network = super.network.overrideAttrs (drv: { __darwinAllowLocalNetworking = true; }); - - # 2025-08-04: Some RNG tests fail only on Darwin - botan-low = overrideCabal (drv: { - testFlags = - drv.testFlags or [ ] - ++ (lib.concatMap (x: [ "--skip" ] ++ [ x ]) [ - # botan-low-rng-tests - "/rdrand/rngInit/" - "/rdrand/rngGet/" - "/rdrand/rngReseed/" - "/rdrand/rngReseedFromRNGCtx/" - "/rdrand/rngAddEntropy/" - ]); - }) super.botan-low; } // lib.optionalAttrs pkgs.stdenv.hostPlatform.isAarch64 { # aarch64-darwin diff --git a/pkgs/development/interpreters/elixir/1.19.nix b/pkgs/development/interpreters/elixir/1.19.nix index b7979d498f9c..9444d4958a01 100644 --- a/pkgs/development/interpreters/elixir/1.19.nix +++ b/pkgs/development/interpreters/elixir/1.19.nix @@ -1,6 +1,6 @@ import ./generic-builder.nix { - version = "1.19.4"; - hash = "sha256-lJC/xXkVIsX6AgL3ynU6C9AncBDwHPsUGxyYlTRdaMY="; + version = "1.19.5"; + hash = "sha256-ph7zu0F5q+/QZcsVIwpdU1icN84Rn3nIVpnRelpRIMQ="; # https://hexdocs.pm/elixir/1.19.0-rc.1/compatibility-and-deprecations.html#between-elixir-and-erlang-otp minimumOTPVersion = "26"; maximumOTPVersion = "28"; diff --git a/pkgs/development/python-modules/aioshelly/default.nix b/pkgs/development/python-modules/aioshelly/default.nix index aaebff39effa..c928da236af1 100644 --- a/pkgs/development/python-modules/aioshelly/default.nix +++ b/pkgs/development/python-modules/aioshelly/default.nix @@ -17,14 +17,14 @@ buildPythonPackage rec { pname = "aioshelly"; - version = "13.23.0"; + version = "13.23.1"; pyproject = true; src = fetchFromGitHub { owner = "home-assistant-libs"; repo = "aioshelly"; tag = version; - hash = "sha256-qjFxEKA6tSMYmGMV3Hx1GWEZ2BlRVi9SWSyp9djwTXU="; + hash = "sha256-vAYhOBfwDKWO0K4pHVf3qqpXTztb5Qzn8TEzk6ecbw0="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/aiosql/default.nix b/pkgs/development/python-modules/aiosql/default.nix index 9e38db84b485..dae16cb778b2 100644 --- a/pkgs/development/python-modules/aiosql/default.nix +++ b/pkgs/development/python-modules/aiosql/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "aiosql"; - version = "14.1"; + version = "15.0"; pyproject = true; outputs = [ @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "nackjicholson"; repo = "aiosql"; tag = version; - hash = "sha256-BNsjVVyYRfp3sNdzQwHy9nQveP2AHfXGK10DLybat9I="; + hash = "sha256-zKKp37tM0pBnWJuLmQhoQpWnUinLG/Nmnpv1rdM8wYM="; }; sphinxRoot = "docs/source"; diff --git a/pkgs/development/python-modules/apischema/default.nix b/pkgs/development/python-modules/apischema/default.nix index d1d823590fce..e3c2c235c596 100644 --- a/pkgs/development/python-modules/apischema/default.nix +++ b/pkgs/development/python-modules/apischema/default.nix @@ -5,7 +5,7 @@ graphql-core, pytest-asyncio, pytest8_3CheckHook, - pythonOlder, + pythonAtLeast, setuptools, }: @@ -14,7 +14,8 @@ buildPythonPackage rec { version = "0.18.3"; pyproject = true; - disabled = pythonOlder "3.7"; + # Hasn't been updated in two years + disabled = pythonAtLeast "3.14"; src = fetchFromGitHub { owner = "wyfo"; diff --git a/pkgs/development/python-modules/blinkpy/default.nix b/pkgs/development/python-modules/blinkpy/default.nix index 5d6d7b1f6d9a..00c597008bb6 100644 --- a/pkgs/development/python-modules/blinkpy/default.nix +++ b/pkgs/development/python-modules/blinkpy/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "blinkpy"; - version = "0.25.2"; + version = "0.25.3"; pyproject = true; src = fetchFromGitHub { owner = "fronzbot"; repo = "blinkpy"; tag = "v${version}"; - hash = "sha256-pjOs9OLBXzhoQm2p0Kicw5BdobZIIEY7/RHX/2bj3qY="; + hash = "sha256-1MROZbA6NDZ5mKmvcjyrYAx+tEP6Cyj2k1754v2W1Mw="; }; postPatch = '' diff --git a/pkgs/development/python-modules/cleanlab/default.nix b/pkgs/development/python-modules/cleanlab/default.nix index fc66e6ffbbfa..b1c392e3e037 100644 --- a/pkgs/development/python-modules/cleanlab/default.nix +++ b/pkgs/development/python-modules/cleanlab/default.nix @@ -5,6 +5,7 @@ # build-system setuptools, + setuptools-scm, # dependencies numpy, @@ -30,22 +31,21 @@ pythonAtLeast, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "cleanlab"; - version = "2.7.1"; + version = "2.8.0"; pyproject = true; src = fetchFromGitHub { owner = "cleanlab"; repo = "cleanlab"; - tag = "v${version}"; - hash = "sha256-KzVqBOLTxxkgvoGPYMeYb7zMuG8VwQwX6SYR/FUhfBw="; + tag = "v${finalAttrs.version}"; + hash = "sha256-sgDQJy0iNxs3bIVuqV7LVEFC0jjlWvnqFzKr7ZDGmPo="; }; - build-system = [ setuptools ]; - - pythonRelaxDeps = [ - "numpy" + build-system = [ + setuptools + setuptools-scm ]; dependencies = [ @@ -56,13 +56,6 @@ buildPythonPackage rec { pandas ]; - # This is ONLY turned off when we have testing enabled. - # The reason we do this is because of duplicate packages in the enclosure - # when using the packages in nativeCheckInputs. - # Affected packages: grpcio protobuf tensorboard tensorboard-plugin-profile - catchConflicts = (!doCheck); - doCheck = true; - nativeCheckInputs = [ cleanvision datasets @@ -111,7 +104,7 @@ buildPythonPackage rec { meta = { description = "Standard data-centric AI package for data quality and machine learning with messy, real-world data and labels"; homepage = "https://github.com/cleanlab/cleanlab"; - changelog = "https://github.com/cleanlab/cleanlab/releases/tag/v${version}"; + changelog = "https://github.com/cleanlab/cleanlab/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.agpl3Only; maintainers = with lib.maintainers; [ happysalada ]; # cleanlab is incompatible with datasets>=4.0.0 @@ -119,4 +112,4 @@ buildPythonPackage rec { # https://github.com/cleanlab/cleanlab/issues/1244 broken = lib.versionAtLeast datasets.version "4.0.0"; }; -} +}) diff --git a/pkgs/development/python-modules/commoncode/default.nix b/pkgs/development/python-modules/commoncode/default.nix index 3765e422b354..fd63dac63ef4 100644 --- a/pkgs/development/python-modules/commoncode/default.nix +++ b/pkgs/development/python-modules/commoncode/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "commoncode"; - version = "32.3.0"; + version = "32.4.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "nexB"; repo = "commoncode"; tag = "v${version}"; - hash = "sha256-FL9t8r53AJLR5D2XSEOq7qVHgvvHIbtPW5iVpSQCVsQ="; + hash = "sha256-k9E/Yz6G3IHJPf3BlscZNSL4Qk9WyGU3vXA+U+GwWA0="; }; dontConfigure = true; @@ -69,7 +69,7 @@ buildPythonPackage rec { meta = { description = "Set of common utilities, originally split from ScanCode"; homepage = "https://github.com/nexB/commoncode"; - changelog = "https://github.com/nexB/commoncode/blob/v${version}/CHANGELOG.rst"; + changelog = "https://github.com/nexB/commoncode/blob/${src.tag}/CHANGELOG.rst"; license = lib.licenses.asl20; maintainers = [ ]; }; diff --git a/pkgs/development/python-modules/cxxheaderparser/default.nix b/pkgs/development/python-modules/cxxheaderparser/default.nix index 08ca4d5c238a..00bb14afb027 100644 --- a/pkgs/development/python-modules/cxxheaderparser/default.nix +++ b/pkgs/development/python-modules/cxxheaderparser/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "cxxheaderparser"; - version = "1.6.2"; + version = "1.7.0"; pyproject = true; src = fetchFromGitHub { owner = "robotpy"; repo = "cxxheaderparser"; tag = version; - hash = "sha256-AvSwt8ED+w1WlLwa8DPP9+zG8g5c8p51mvQx8ZfDMqk="; + hash = "sha256-Go5oIYwB2DONPbgajQuXfgpUCiGZvgcTZuFJ5z5qC3U="; }; postPatch = '' diff --git a/pkgs/development/python-modules/dash/default.nix b/pkgs/development/python-modules/dash/default.nix index 3f185c962a25..44bc845ce39a 100644 --- a/pkgs/development/python-modules/dash/default.nix +++ b/pkgs/development/python-modules/dash/default.nix @@ -22,12 +22,15 @@ nest-asyncio, celery, + kombu, redis, diskcache, multiprocess, psutil, flask-compress, + flaky, + numpy, pytestCheckHook, pytest-mock, mock, @@ -36,14 +39,14 @@ buildPythonPackage rec { pname = "dash"; - version = "3.0.4"; + version = "3.3.0"; pyproject = true; src = fetchFromGitHub { owner = "plotly"; repo = "dash"; tag = "v${version}"; - hash = "sha256-KCGVdD1L+U2KbktU2GU19BQ6wRcmEeYtC/v8UrFTyto="; + hash = "sha256-8Vt109x4T+DhBXfQf7MKoexmWFc23uuU0Nn3Ia/Xm5I="; }; nativeBuildInputs = [ @@ -96,8 +99,10 @@ buildPythonPackage rec { optional-dependencies = { celery = [ celery + kombu redis - ]; + ] + ++ celery.optional-dependencies.redis; diskcache = [ diskcache multiprocess @@ -107,16 +112,23 @@ buildPythonPackage rec { }; nativeCheckInputs = [ + flaky + numpy + psutil pytestCheckHook pytest-mock mock pyyaml + redis + ]; + + enabledTestPaths = [ + "tests/unit" ]; disabledTestPaths = [ "tests/unit/test_browser.py" "tests/unit/test_app_runners.py" # Uses selenium - "tests/integration" ]; pythonImportsCheck = [ "dash" ]; diff --git a/pkgs/development/python-modules/dateparser/default.nix b/pkgs/development/python-modules/dateparser/default.nix index 2e5112558b6d..d521681f4b8f 100644 --- a/pkgs/development/python-modules/dateparser/default.nix +++ b/pkgs/development/python-modules/dateparser/default.nix @@ -3,6 +3,7 @@ buildPythonPackage, pythonOlder, fetchFromGitHub, + fetchpatch, setuptools, python-dateutil, pytz, @@ -35,6 +36,14 @@ buildPythonPackage rec { hash = "sha256-cUbY6c0JFzs1oZJOTnMXz3uCah2f50g8/3uWQXtwiGY="; }; + patches = [ + (fetchpatch { + # https://github.com/scrapinghub/dateparser/pull/1294 + url = "https://github.com/scrapinghub/dateparser/commit/6b23348b9367d43bebc9a40b00dda3363eb2acd5.patch"; + hash = "sha256-LriRbGdYxF51Nwrm7Dp4kivyMikzmhytNQo0txMGsVI="; + }) + ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/django-sesame/default.nix b/pkgs/development/python-modules/django-sesame/default.nix index 8db031ecf268..9ffa3ba51089 100644 --- a/pkgs/development/python-modules/django-sesame/default.nix +++ b/pkgs/development/python-modules/django-sesame/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "django-sesame"; - version = "3.2.3"; + version = "3.2.4"; pyproject = true; disabled = pythonOlder "3.8"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "aaugustin"; repo = "django-sesame"; tag = version; - hash = "sha256-JpbmcV5hAZkW15cizsAJhmTda4xtML0EY/PJdVSInUs="; + hash = "sha256-q9LvsPyFEbaE/TEOlQ5WodVvzAiv4x7C4vaiz1RJLu4="; }; nativeBuildInputs = [ poetry-core ]; diff --git a/pkgs/development/python-modules/garminconnect/default.nix b/pkgs/development/python-modules/garminconnect/default.nix index 3ed99ab97c4f..dc6fbd48cc90 100644 --- a/pkgs/development/python-modules/garminconnect/default.nix +++ b/pkgs/development/python-modules/garminconnect/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "garminconnect"; - version = "0.2.36"; + version = "0.2.38"; pyproject = true; src = fetchFromGitHub { owner = "cyberjunky"; repo = "python-garminconnect"; tag = version; - hash = "sha256-jbCp4R3Pg9idtIw5blEprf1wdewceA8YB62yht58jLI="; + hash = "sha256-d2R/ir/dxFnC4ZjLBHP+mm9JMtfPZ9VMxSRv35rE+CU="; }; pythonRelaxDeps = [ diff --git a/pkgs/development/python-modules/google-pasta/default.nix b/pkgs/development/python-modules/google-pasta/default.nix index f252434b319e..13c9f6ba4743 100644 --- a/pkgs/development/python-modules/google-pasta/default.nix +++ b/pkgs/development/python-modules/google-pasta/default.nix @@ -3,6 +3,7 @@ buildPythonPackage, fetchPypi, pytestCheckHook, + pythonAtLeast, setuptools, six, }: @@ -17,6 +18,9 @@ buildPythonPackage rec { hash = "sha256-yfLI38j5bQ1YCCmZIHIb4wye7DfyOJ8okE9FRWXIoW4="; }; + # Hasn't had a release in six years. Effectively unmaintained. + disabled = pythonAtLeast "3.14"; + postPatch = '' substituteInPlace pasta/augment/inline_test.py \ --replace-fail assertRaisesRegexp assertRaisesRegex diff --git a/pkgs/development/python-modules/hijridate/default.nix b/pkgs/development/python-modules/hijridate/default.nix index f440f6c427ce..afa2ca565f0d 100644 --- a/pkgs/development/python-modules/hijridate/default.nix +++ b/pkgs/development/python-modules/hijridate/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "hijridate"; - version = "2.5.0"; + version = "2.6.0"; pyproject = true; src = fetchFromGitHub { owner = "dralshehri"; repo = "hijridate"; tag = "v${version}"; - hash = "sha256-IT5OnFDuNQ9tMfuZ5pFqnAPd7nspIfAmeN6Pqtn0OwA="; + hash = "sha256-xnFF81l1ZqtH91NzYvjzXpXpN/zeHdARJYx6L5VNBSo="; }; build-system = [ diff --git a/pkgs/development/python-modules/http-message-signatures/default.nix b/pkgs/development/python-modules/http-message-signatures/default.nix index 71f7ba88ef6c..13b18a5a0e25 100644 --- a/pkgs/development/python-modules/http-message-signatures/default.nix +++ b/pkgs/development/python-modules/http-message-signatures/default.nix @@ -3,22 +3,22 @@ buildPythonPackage, cryptography, fetchFromGitHub, - pytestCheckHook, - hatchling, hatch-vcs, + hatchling, + pytestCheckHook, requests, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "http-message-signatures"; - version = "1.0.1"; + version = "2.0.0"; pyproject = true; src = fetchFromGitHub { owner = "pyauth"; repo = "http-message-signatures"; - tag = "v${version}"; - hash = "sha256-c5zwH28FFbEmLfL4nBBE2S1YEbwicoJo3UAYn/0zXEM="; + tag = "v${finalAttrs.version}"; + hash = "sha256-uHsH/kYph50cpLcy4lnu466odexUVvQAYk0ydgtcsM8="; }; build-system = [ @@ -26,9 +26,7 @@ buildPythonPackage rec { hatch-vcs ]; - dependencies = [ - cryptography - ]; + dependencies = [ cryptography ]; nativeCheckInputs = [ pytestCheckHook @@ -42,7 +40,8 @@ buildPythonPackage rec { meta = { description = "Requests authentication module for HTTP Signature"; homepage = "https://github.com/pyauth/http-message-signatures"; + changelog = "https://github.com/pyauth/http-message-signatures/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; -} +}) diff --git a/pkgs/development/python-modules/http-sf/default.nix b/pkgs/development/python-modules/http-sf/default.nix index 3ac2f394c719..48b9e3278959 100644 --- a/pkgs/development/python-modules/http-sf/default.nix +++ b/pkgs/development/python-modules/http-sf/default.nix @@ -6,16 +6,16 @@ typing-extensions, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "http-sf"; - version = "1.0.7"; + version = "1.1.1"; pyproject = true; src = fetchFromGitHub { owner = "mnot"; repo = "http-sf"; - tag = "v${version}"; - hash = "sha256-V/ZwThTNMqnqvgOs7c4JVjvGCTU15ryzTIMX2T4hUQE="; + tag = "v${finalAttrs.version}"; + hash = "sha256-yR1/X3brPgZhjmssShAaKDmmC3HW7AUByjYue9AcU4k="; }; build-system = [ setuptools ]; @@ -30,8 +30,8 @@ buildPythonPackage rec { meta = { description = "Module to parse and serialise HTTP structured field values"; homepage = "https://github.com/mnot/http-sf"; - changelog = "https://github.com/mnot/http-sf/releases/tag/${src.tag}"; + changelog = "https://github.com/mnot/http-sf/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; -} +}) diff --git a/pkgs/development/python-modules/huey/default.nix b/pkgs/development/python-modules/huey/default.nix index fcb133119e2f..57a2ded366c0 100644 --- a/pkgs/development/python-modules/huey/default.nix +++ b/pkgs/development/python-modules/huey/default.nix @@ -3,38 +3,35 @@ buildPythonPackage, fetchFromGitHub, setuptools, - wheel, redis, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "huey"; - version = "2.5.5"; - - format = "pyproject"; + version = "2.6.0"; + pyproject = true; src = fetchFromGitHub { owner = "coleifer"; repo = "huey"; - tag = version; - hash = "sha256-fpnaf0hk26Sm+d3pggW/GfT0oSbYpSm5xotejbOWeJY="; + tag = finalAttrs.version; + hash = "sha256-vXp8xISf8g1VjIus/Xr4wKFFaVg5x4CXgP8IUUKYl+o="; }; - nativeBuildInputs = [ - setuptools - wheel - ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ redis ]; + dependencies = [ redis ]; # connects to redis doCheck = false; + pythonImportsCheck = [ "huey" ]; + meta = { - changelog = "https://github.com/coleifer/huey/blob/${src.tag}/CHANGELOG.md"; - description = "Little task queue for python"; + description = "Module to queue tasks"; homepage = "https://github.com/coleifer/huey"; + changelog = "https://github.com/coleifer/huey/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = [ ]; }; -} +}) diff --git a/pkgs/development/python-modules/iamdata/default.nix b/pkgs/development/python-modules/iamdata/default.nix index 84bfc095319e..74e46397270b 100644 --- a/pkgs/development/python-modules/iamdata/default.nix +++ b/pkgs/development/python-modules/iamdata/default.nix @@ -8,14 +8,14 @@ buildPythonPackage (finalAttrs: { pname = "iamdata"; - version = "0.1.202601081"; + version = "0.1.202601091"; pyproject = true; src = fetchFromGitHub { owner = "cloud-copilot"; repo = "iam-data-python"; tag = "v${finalAttrs.version}"; - hash = "sha256-vn2Uyt9N6i8pHupTYXQC5EodGKR3tdYOh0tx6Fyezx4="; + hash = "sha256-LcaoTSP53u13zchMRIzMNJBzqd3YZjSt+U06bhd/Ui4="; }; __darwinAllowLocalNetworking = true; diff --git a/pkgs/development/python-modules/kantoku/default.nix b/pkgs/development/python-modules/kantoku/default.nix index 4ec5726a2341..c16798ca151c 100644 --- a/pkgs/development/python-modules/kantoku/default.nix +++ b/pkgs/development/python-modules/kantoku/default.nix @@ -3,6 +3,7 @@ stdenv, buildPythonPackage, fetchFromGitHub, + pythonAtLeast, flit-core, gevent, mock, @@ -14,7 +15,7 @@ tornado, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "kantoku"; version = "0.18.3"; pyproject = true; @@ -22,7 +23,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "bentoml"; repo = "kantoku"; - tag = version; + tag = finalAttrs.version; hash = "sha256-pI79B7TDZwL4Jz5e7PDPIf8iIGiwCOKFI2jReUt8UNg="; }; @@ -52,6 +53,13 @@ buildPythonPackage rec { # Assertion error when test_socketstats hits a permission error "test_resource_watcher_max_mem" "test_resource_watcher_max_mem_abs" + ] + ++ lib.optionals (pythonAtLeast "3.14") [ + "test_help_invalid_command" + "test_venv" + "test_venv_site_packages" + # Times out + "test_handler" ]; __darwinAllowLocalNetworking = true; @@ -59,8 +67,8 @@ buildPythonPackage rec { meta = { description = "A Process & Socket Manager built with zmq"; homepage = "https://github.com/bentoml/kantoku"; - changelog = "https://github.com/bentoml/kantoku/releases/tag/${version}"; + changelog = "https://github.com/bentoml/kantoku/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; -} +}) diff --git a/pkgs/development/python-modules/llvmlite/default.nix b/pkgs/development/python-modules/llvmlite/default.nix index 18a36351c067..383346cbf058 100644 --- a/pkgs/development/python-modules/llvmlite/default.nix +++ b/pkgs/development/python-modules/llvmlite/default.nix @@ -26,7 +26,7 @@ in buildPythonPackage rec { pname = "llvmlite"; - version = "0.45.0"; + version = "0.46.0"; pyproject = true; disabled = isPyPy || pythonAtLeast "3.14"; @@ -35,7 +35,7 @@ buildPythonPackage rec { owner = "numba"; repo = "llvmlite"; tag = "v${version}"; - hash = "sha256-xONYpDGsx6lhbAjAqwFx5Vo3PxeFsblhZxkxTSjMWOE="; + hash = "sha256-mQFNfcOLmFYvYQGcgLi7G6iJDoTCm7hJfPh5hH9jPGc="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/lsprotocol/2023.nix b/pkgs/development/python-modules/lsprotocol/2023.nix index 719014d3fa6d..2e9a97c58df7 100644 --- a/pkgs/development/python-modules/lsprotocol/2023.nix +++ b/pkgs/development/python-modules/lsprotocol/2023.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "lsprotocol"; - version = "2023.0.1"; + version = "2023.0.1"; # nixpkgs-update: no auto update pyproject = true; src = fetchFromGitHub { @@ -57,6 +57,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "lsprotocol" ]; + passthru.skipBulkUpdate = true; + meta = { description = "Python implementation of the Language Server Protocol"; homepage = "https://github.com/microsoft/lsprotocol"; diff --git a/pkgs/development/python-modules/monitorcontrol/default.nix b/pkgs/development/python-modules/monitorcontrol/default.nix index cd40bac4b4e7..86b0dd90e3ba 100644 --- a/pkgs/development/python-modules/monitorcontrol/default.nix +++ b/pkgs/development/python-modules/monitorcontrol/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "monitorcontrol"; - version = "4.1.1"; + version = "4.2.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "newAM"; repo = "monitorcontrol"; tag = version; - hash = "sha256-4A7Cj2PWANZOmMSB9rH++TAf6SgyQd0OFULKa4JRu0s="; + hash = "sha256-KyVLNZLpzmxABQQiHGniCcND7DwZwpT4gJC+sJihoag="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/msgraph-sdk/default.nix b/pkgs/development/python-modules/msgraph-sdk/default.nix index 366580a3211e..ebafdd8a8a9d 100644 --- a/pkgs/development/python-modules/msgraph-sdk/default.nix +++ b/pkgs/development/python-modules/msgraph-sdk/default.nix @@ -14,16 +14,16 @@ msgraph-core, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "msgraph-sdk"; - version = "1.51.0"; + version = "1.52.0"; pyproject = true; src = fetchFromGitHub { owner = "microsoftgraph"; repo = "msgraph-sdk-python"; - tag = "v${version}"; - hash = "sha256-ZpzbDQ+HF49WJdXeyKcUs6wgmy0/YLNFH21wQ9bE0/o="; + tag = "v${finalAttrs.version}"; + hash = "sha256-7HLPkyWlslMuYdoQ4K6Zm7YZ+qp93P/fZdxZrb4X6aI="; }; build-system = [ flit-core ]; @@ -48,8 +48,8 @@ buildPythonPackage rec { meta = { description = "Microsoft Graph SDK for Python"; homepage = "https://github.com/microsoftgraph/msgraph-sdk-python"; - changelog = "https://github.com/microsoftgraph/msgraph-sdk-python/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/microsoftgraph/msgraph-sdk-python/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; -} +}) diff --git a/pkgs/development/python-modules/netbox-dns/default.nix b/pkgs/development/python-modules/netbox-dns/default.nix index f251638f3d6a..ba08e2080f82 100644 --- a/pkgs/development/python-modules/netbox-dns/default.nix +++ b/pkgs/development/python-modules/netbox-dns/default.nix @@ -7,14 +7,14 @@ }: buildPythonPackage rec { pname = "netbox-plugin-dns"; - version = "1.4.4"; + version = "1.4.6"; pyproject = true; src = fetchFromGitHub { owner = "peteeckel"; repo = "netbox-plugin-dns"; tag = version; - hash = "sha256-166DFPSF1f0YF0T2bTEkmyI4M6PgBfimYyZX7fnNfrI="; + hash = "sha256-+7I3Kahh2LtOytTg/vb8bFVubGbWMwfKUMUsUpApqGE="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/nrgkick-api/default.nix b/pkgs/development/python-modules/nrgkick-api/default.nix index 3365274a6e0b..7c44c945535c 100644 --- a/pkgs/development/python-modules/nrgkick-api/default.nix +++ b/pkgs/development/python-modules/nrgkick-api/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "nrgkick-api"; - version = "1.4.0"; + version = "1.5.0"; pyproject = true; src = fetchFromGitHub { owner = "andijakl"; repo = "nrgkick-api"; tag = "v${version}"; - hash = "sha256-Azk3v4cNBdbwIssb1Eu8z4kEuzQqFTYy4PBbpu9MdhE="; + hash = "sha256-WtSL9fUJF2xsX53epFcY++KwjnAs3YiKHDb2a5x4tfE="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/numba/default.nix b/pkgs/development/python-modules/numba/default.nix index 81528b752c37..32c45c2f56c0 100644 --- a/pkgs/development/python-modules/numba/default.nix +++ b/pkgs/development/python-modules/numba/default.nix @@ -33,7 +33,7 @@ let cudatoolkit = cudaPackages.cuda_nvcc; in buildPythonPackage rec { - version = "0.62.0"; + version = "0.63.1"; pname = "numba"; pyproject = true; @@ -51,7 +51,7 @@ buildPythonPackage rec { postFetch = '' sed -i 's/git_refnames = "[^"]*"/git_refnames = " (tag: ${src.tag})"/' $out/numba/_version.py ''; - hash = "sha256-y/mvmzMwTHc/tWg4WFqFJOThbFiIF71OHLvtztkT+hE="; + hash = "sha256-M7Hdc1Qakclz7i/HujBUqVEWFsHj9ZGQDzb8Ze9AztA="; }; postPatch = '' diff --git a/pkgs/development/python-modules/peakrdl-rust/default.nix b/pkgs/development/python-modules/peakrdl-rust/default.nix index 7c829df04c84..fdca6b390897 100644 --- a/pkgs/development/python-modules/peakrdl-rust/default.nix +++ b/pkgs/development/python-modules/peakrdl-rust/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "peakrdl-rust"; - version = "0.4.1"; + version = "0.5.1"; pyproject = true; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "darsor"; repo = "PeakRDL-rust"; tag = "v${version}"; - hash = "sha256-9OEzfIvuVilbFlv0z07S6b7wVM95e+vdcDU8MphRlao="; + hash = "sha256-rcVM7ljFWlEXLxG7ASXE2iZ+WYazeMFE0sgTzkviOP0="; }; build-system = [ uv-build ]; diff --git a/pkgs/development/python-modules/pgmpy/default.nix b/pkgs/development/python-modules/pgmpy/default.nix index 2d0922df3a11..3a473f07c388 100644 --- a/pkgs/development/python-modules/pgmpy/default.nix +++ b/pkgs/development/python-modules/pgmpy/default.nix @@ -12,6 +12,7 @@ pandas, pyparsing, pyro-ppl, + scikit-base, scikit-learn, scipy, statsmodels, @@ -23,17 +24,18 @@ pytestCheckHook, pytest-cov-stub, mock, + writableTmpDirAsHomeHook, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "pgmpy"; - version = "1.0.0"; + version = "1.0.0-unstable-2025-12-20"; pyproject = true; src = fetchFromGitHub { owner = "pgmpy"; repo = "pgmpy"; - tag = "v${version}"; - hash = "sha256-WmRtek3lN7vEfXqoaZDiaNjMQ7R2PmJ/OEwxOV7m5sE="; + rev = "197e1e0444c77c00581a4c32763811e5b03f8503"; + hash = "sha256-TCnn3GrITW8HCrYVeeythiULV130b6uulkijkPpJOqA="; }; dependencies = [ @@ -45,6 +47,7 @@ buildPythonPackage rec { pandas pyparsing pyro-ppl + scikit-base scikit-learn scipy statsmodels @@ -67,6 +70,20 @@ buildPythonPackage rec { # AssertionError "test_estimate_example_smoke_test" + "test_gcm" + ]; + + enabledTestPaths = [ + "pgmpy/tests" + ]; + + disabledTestPaths = [ + # requires network access + "pgmpy/tests/test_datasets" + + # Very slow + "pgmpy/tests/test_estimators" + "pgmpy/tests/test_models" ]; nativeCheckInputs = [ @@ -74,6 +91,7 @@ buildPythonPackage rec { # xdoctest pytest-cov-stub mock + writableTmpDirAsHomeHook ]; pythonImportsCheck = [ "pgmpy" ]; @@ -81,8 +99,11 @@ buildPythonPackage rec { meta = { description = "Python Library for learning (Structure and Parameter), inference (Probabilistic and Causal), and simulations in Bayesian Networks"; homepage = "https://github.com/pgmpy/pgmpy"; - changelog = "https://github.com/pgmpy/pgmpy/releases/tag/${src.tag}"; + # changelog = "https://github.com/pgmpy/pgmpy/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ happysalada ]; + maintainers = with lib.maintainers; [ + happysalada + sarahec + ]; }; -} +}) diff --git a/pkgs/development/python-modules/pyopencl/default.nix b/pkgs/development/python-modules/pyopencl/default.nix index 6ce8be2b6c75..d6982c495f11 100644 --- a/pkgs/development/python-modules/pyopencl/default.nix +++ b/pkgs/development/python-modules/pyopencl/default.nix @@ -28,17 +28,17 @@ pocl, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "pyopencl"; - version = "2025.2.7"; + version = "2026.1"; pyproject = true; src = fetchFromGitHub { owner = "inducer"; repo = "pyopencl"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-LrV4NHn4I2kaZvXuWs706fvHUOR4sc+Pv8wVHPVKpPo="; + hash = "sha256-1P0An6yP7+ie893i1AkKlfXprhfikJGY3FTTnxQgWtI="; }; build-system = [ @@ -93,8 +93,8 @@ buildPythonPackage rec { meta = { description = "Python wrapper for OpenCL"; homepage = "https://github.com/pyopencl/pyopencl"; - changelog = "https://github.com/inducer/pyopencl/releases/tag/${src.tag}"; + changelog = "https://github.com/inducer/pyopencl/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; -} +}) diff --git a/pkgs/development/python-modules/pypugjs/default.nix b/pkgs/development/python-modules/pypugjs/default.nix index 3950a03a62f8..218f00110ff0 100644 --- a/pkgs/development/python-modules/pypugjs/default.nix +++ b/pkgs/development/python-modules/pypugjs/default.nix @@ -49,7 +49,7 @@ buildPythonPackage rec { pytestCheckHook ]; - pytestCheckFlags = [ "pypugjs/testsuite" ]; + pytestFlags = [ "pypugjs/testsuite" ]; pythonImportsCheck = [ "pypugjs" diff --git a/pkgs/development/python-modules/pysma/default.nix b/pkgs/development/python-modules/pysma/default.nix index 45265af0fc3b..71e9f563b301 100644 --- a/pkgs/development/python-modules/pysma/default.nix +++ b/pkgs/development/python-modules/pysma/default.nix @@ -12,16 +12,16 @@ uv-build, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "pysma"; - version = "1.0.3"; + version = "1.1.0"; pyproject = true; src = fetchFromGitHub { owner = "kellerza"; repo = "pysma"; - tag = "v${version}"; - hash = "sha256-T9QBIuKgbKmMUN2G+sZRW4DtgIk3H9rYMTxLtkXfEBI="; + tag = "v${finalAttrs.version}"; + hash = "sha256-fRYpWr3eny9Ore2uQhPgVDSb+M1KYy1cy9bE2+Em3xU="; }; postPatch = '' @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysma" ]; meta = { - changelog = "https://github.com/kellerza/pysma/blob/${src.tag}/CHANGELOG.md"; description = "Python library for interacting with SMA Solar's WebConnect"; homepage = "https://github.com/kellerza/pysma"; + changelog = "https://github.com/kellerza/pysma/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; -} +}) diff --git a/pkgs/development/python-modules/python-manilaclient/default.nix b/pkgs/development/python-modules/python-manilaclient/default.nix index af9cd074bcd1..cf794ff891e6 100644 --- a/pkgs/development/python-modules/python-manilaclient/default.nix +++ b/pkgs/development/python-modules/python-manilaclient/default.nix @@ -22,13 +22,13 @@ buildPythonPackage rec { pname = "python-manilaclient"; - version = "5.7.0"; + version = "5.7.1"; pyproject = true; src = fetchPypi { pname = "python_manilaclient"; inherit version; - hash = "sha256-ozpvEpIR1DdfG8+7RD0NisDfqa109GtMDEVB+H91uAQ="; + hash = "sha256-BdFUVnvSX7yitHSlP/GzD2jzvF8vh9B4QVVQrqYwW9Q="; }; build-system = [ diff --git a/pkgs/development/python-modules/python-neutronclient/default.nix b/pkgs/development/python-modules/python-neutronclient/default.nix index 217d4cdb0aab..65d10de5a8ca 100644 --- a/pkgs/development/python-modules/python-neutronclient/default.nix +++ b/pkgs/development/python-modules/python-neutronclient/default.nix @@ -14,7 +14,6 @@ oslo-log, oslo-serialization, oslo-utils, - os-client-config, keystoneauth1, python-keystoneclient, requests, @@ -33,14 +32,14 @@ buildPythonPackage rec { pname = "python-neutronclient"; - version = "11.6.0"; + version = "11.7.0"; pyproject = true; src = fetchFromGitHub { owner = "openstack"; repo = "python-neutronclient"; tag = version; - hash = "sha256-nz7KiFe8IWJypGCjFgrEgGTEsC0xlW3YG/QRNJUzcpc="; + hash = "sha256-nkKADTdqYaPMmQU8Fulc8rE5lmMwPjFonyvMNOBvulA="; }; env.PBR_VERSION = version; @@ -60,7 +59,6 @@ buildPythonPackage rec { oslo-log oslo-serialization oslo-utils - os-client-config keystoneauth1 python-keystoneclient requests diff --git a/pkgs/development/python-modules/python-sat/default.nix b/pkgs/development/python-modules/python-sat/default.nix index 9a983d763635..265a711492ab 100644 --- a/pkgs/development/python-modules/python-sat/default.nix +++ b/pkgs/development/python-modules/python-sat/default.nix @@ -9,7 +9,7 @@ }: buildPythonPackage rec { pname = "python-sat"; - version = "1.8.dev25"; + version = "1.8.dev26"; pyproject = true; build-system = [ setuptools ]; @@ -17,7 +17,7 @@ buildPythonPackage rec { src = fetchPypi { inherit version; pname = "python_sat"; - hash = "sha256-3eVCBXg95RyzMA8O8EOss1FKh+1EofnkKYJcVNuQAzY="; + hash = "sha256-CXyYqvm0j9GbB8WVeGC/o6rjRvJNDquaGLGGREgIfoc="; }; preBuild = '' diff --git a/pkgs/development/python-modules/sbom4files/default.nix b/pkgs/development/python-modules/sbom4files/default.nix index c5655d03a27f..8c882d48642d 100644 --- a/pkgs/development/python-modules/sbom4files/default.nix +++ b/pkgs/development/python-modules/sbom4files/default.nix @@ -37,6 +37,7 @@ buildPythonPackage rec { description = "SBOM generator for files within a directory"; homepage = "https://github.com/anthonyharrison/sbom4files"; license = lib.licenses.asl20; + mainProgram = "sbom4files"; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sentry-sdk/default.nix b/pkgs/development/python-modules/sentry-sdk/default.nix index 94fc196b980c..b609a83ff2c5 100644 --- a/pkgs/development/python-modules/sentry-sdk/default.nix +++ b/pkgs/development/python-modules/sentry-sdk/default.nix @@ -67,14 +67,14 @@ buildPythonPackage rec { pname = "sentry-sdk"; - version = "2.44.0"; + version = "2.48.0"; pyproject = true; src = fetchFromGitHub { owner = "getsentry"; repo = "sentry-python"; tag = version; - hash = "sha256-i2rd4JFcGYToWMJeOuHaCKnwKtC/LFrpnWCf1taGqhc="; + hash = "sha256-Y8zGs5xj0PB0zQMHmg9RwbCiarOC2s8k/5/yQr+sL4k="; }; postPatch = '' diff --git a/pkgs/development/python-modules/serialx/default.nix b/pkgs/development/python-modules/serialx/default.nix index a338ecf3ae0e..b423ad52d9d1 100644 --- a/pkgs/development/python-modules/serialx/default.nix +++ b/pkgs/development/python-modules/serialx/default.nix @@ -17,14 +17,14 @@ buildPythonPackage (finalAttrs: { pname = "serialx"; - version = "0.6.1"; + version = "0.6.2"; pyproject = true; src = fetchFromGitHub { owner = "puddly"; repo = "serialx"; tag = "v${finalAttrs.version}"; - hash = "sha256-hko0xVpqcmu7NhsS3MZRjfCY21E0g7qUDqAf5bqfw2I="; + hash = "sha256-AtRh6xrmuRf7+ZL8dSxq4cHFOtKNJox5iQF84eDOY80="; }; cargoDeps = rustPlatform.fetchCargoVendor { diff --git a/pkgs/development/python-modules/solo-python/default.nix b/pkgs/development/python-modules/solo-python/default.nix index 30f7c9b90e78..6c43296561df 100644 --- a/pkgs/development/python-modules/solo-python/default.nix +++ b/pkgs/development/python-modules/solo-python/default.nix @@ -17,20 +17,18 @@ buildPythonPackage rec { pname = "solo-python"; version = "0.1.1"; - format = "pyproject"; - - disabled = pythonOlder "3.6"; + pyproject = true; src = fetchFromGitHub { owner = "solokeys"; repo = "solo-python"; - rev = version; + tag = version; hash = "sha256-XVPYr7JwxeZfZ68+vQ7a7MNiAfJ2bvMbM3R1ryVJ+OU="; }; - nativeBuildInputs = [ flit ]; + build-system = [ flit ]; - propagatedBuildInputs = [ + dependencies = [ click cryptography ecdsa diff --git a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix index 33055fc29629..570e2137d191 100644 --- a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix +++ b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix @@ -9,14 +9,14 @@ buildPythonPackage (finalAttrs: { pname = "tencentcloud-sdk-python"; - version = "3.1.27"; + version = "3.1.29"; pyproject = true; src = fetchFromGitHub { owner = "TencentCloud"; repo = "tencentcloud-sdk-python"; tag = finalAttrs.version; - hash = "sha256-MHlWxmu74/+U8AevIPMOx/QdX26E8rlFrF7m8nIiwCU="; + hash = "sha256-uXn5UyJ6cwLclo5QnnKTEf5b29OdGrxE1CdGp2u4SqI="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/tensorflow-metadata/default.nix b/pkgs/development/python-modules/tensorflow-metadata/default.nix index 8a1352b704d8..c9cd7fae87f3 100644 --- a/pkgs/development/python-modules/tensorflow-metadata/default.nix +++ b/pkgs/development/python-modules/tensorflow-metadata/default.nix @@ -12,16 +12,16 @@ protobuf, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "tensorflow-metadata"; - version = "1.17.2"; + version = "1.17.3"; pyproject = true; src = fetchFromGitHub { owner = "tensorflow"; repo = "metadata"; - tag = "v${version}"; - hash = "sha256-YqFQOm8K4WFUlpWqkZm8pZpfupf7ZtJTODJodjLnzK4="; + tag = "v${finalAttrs.version}"; + hash = "sha256-4xj2JfQryGy7a9ho9/JJtyg+0H5VLQzq9JevOmOWJZk="; }; patches = [ ./build.patch ]; @@ -54,8 +54,8 @@ buildPythonPackage rec { meta = { description = "Standard representations for metadata that are useful when training machine learning models with TensorFlow"; homepage = "https://github.com/tensorflow/metadata"; - changelog = "https://github.com/tensorflow/metadata/releases/tag/v${version}"; + changelog = "https://github.com/tensorflow/metadata/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ ndl ]; }; -} +}) diff --git a/pkgs/development/python-modules/threadpool/default.nix b/pkgs/development/python-modules/threadpool/default.nix deleted file mode 100644 index e14ee1d3ba3b..000000000000 --- a/pkgs/development/python-modules/threadpool/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, -}: - -buildPythonPackage rec { - pname = "threadpool"; - version = "1.3.2"; - format = "setuptools"; - - src = fetchPypi { - inherit pname version; - sha256 = "197gzrxn9lbk0q1v079814c6s05cr4rwzyl6c1m6inkyif4yzr6c"; - }; - - meta = { - homepage = "https://chrisarndt.de/projects/threadpool/"; - description = "Easy to use object-oriented thread pool framework"; - license = lib.licenses.mit; - }; -} diff --git a/pkgs/development/python-modules/twilio/default.nix b/pkgs/development/python-modules/twilio/default.nix index 0a95661270a7..ce5913fb93ff 100644 --- a/pkgs/development/python-modules/twilio/default.nix +++ b/pkgs/development/python-modules/twilio/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pname = "twilio"; - version = "9.9.0"; + version = "9.9.1"; pyproject = true; src = fetchFromGitHub { owner = "twilio"; repo = "twilio-python"; tag = version; - hash = "sha256-apdEtXPfpUPtBw129ZF5SDnY/P9YIUkw1bfgVvL3yV4="; + hash = "sha256-ewG2VgxK8F2G/wogkGnhqZT9M9vrJu9Rdx4uXYNRhrI="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/uuid-utils/default.nix b/pkgs/development/python-modules/uuid-utils/default.nix index 122b3ee47087..b1f0a3d9d202 100644 --- a/pkgs/development/python-modules/uuid-utils/default.nix +++ b/pkgs/development/python-modules/uuid-utils/default.nix @@ -9,19 +9,19 @@ buildPythonPackage rec { pname = "uuid-utils"; - version = "0.12.0"; + version = "0.13.0"; pyproject = true; src = fetchFromGitHub { owner = "aminalaee"; repo = "uuid-utils"; tag = version; - hash = "sha256-oH+TA4UWet3ES247cQbl77hImcO5onfdn7uOIh2To4g="; + hash = "sha256-wq68t8j+q57WLLOex0HxPU3H6mb+YRn8X53wSpUxPxE="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit pname src version; - hash = "sha256-go032hrp47RlCIMkpUu8trIIRJX6g5yMHELH5l/KG7E="; + hash = "sha256-20O0l7/UCjF2mtKOzfZ9Pm0/hhiGZdHLMZhohJGaup0="; }; nativeBuildInputs = with rustPlatform; [ diff --git a/pkgs/development/python-modules/waterfurnace/default.nix b/pkgs/development/python-modules/waterfurnace/default.nix index 04c15bf09326..f590ab8d9a9e 100644 --- a/pkgs/development/python-modules/waterfurnace/default.nix +++ b/pkgs/development/python-modules/waterfurnace/default.nix @@ -9,16 +9,16 @@ websocket-client, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "waterfurnace"; - version = "1.2.0"; + version = "1.3.1"; pyproject = true; src = fetchFromGitHub { owner = "sdague"; repo = "waterfurnace"; - tag = "v${version}"; - sha256 = "sha256-lix8dU9PxlsXIzKNFuUJkd80cUYXfTXSnFLu1ULACkE="; + tag = "v${finalAttrs.version}"; + hash = "sha256-Mg2Kuw54Lc4vZCSAM8FE6l00XBBqLVZEkaoGrP+Fcyo="; }; build-system = [ setuptools ]; @@ -29,18 +29,16 @@ buildPythonPackage rec { websocket-client ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "waterfurnace" ]; meta = { description = "Python interface to waterfurnace geothermal systems"; - mainProgram = "waterfurnace"; homepage = "https://github.com/sdague/waterfurnace"; - changelog = "https://github.com/sdague/waterfurnace/blob/${src.tag}/HISTORY.rst"; + changelog = "https://github.com/sdague/waterfurnace/blob/${finalAttrs.src.tag}/HISTORY.rst"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; + mainProgram = "waterfurnace"; }; -} +}) diff --git a/pkgs/development/python-modules/wordcloud/default.nix b/pkgs/development/python-modules/wordcloud/default.nix index 0e236ae2de1b..8a8fb06a0ddf 100644 --- a/pkgs/development/python-modules/wordcloud/default.nix +++ b/pkgs/development/python-modules/wordcloud/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "wordcloud"; - version = "1.9.4"; + version = "1.9.5"; pyproject = true; @@ -28,7 +28,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - hash = "sha256-snPYpd7ZfT6tkEBGtJRk3LcRGe5534dQcqTBBcrdNHo="; + hash = "sha256-asfBN48ohtfoSWAKMG/r1B0NRrFc6HbWZaPlSfVAOws="; }; nativeBuildInputs = [ cython ]; diff --git a/pkgs/development/python-modules/yalexs-ble/default.nix b/pkgs/development/python-modules/yalexs-ble/default.nix index 037df76d0670..b190154ac3eb 100644 --- a/pkgs/development/python-modules/yalexs-ble/default.nix +++ b/pkgs/development/python-modules/yalexs-ble/default.nix @@ -14,16 +14,16 @@ pytestCheckHook, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "yalexs-ble"; - version = "3.2.4"; + version = "3.2.6"; pyproject = true; src = fetchFromGitHub { owner = "bdraco"; repo = "yalexs-ble"; - tag = "v${version}"; - hash = "sha256-BijvtiMAAP2lA43HFrGCt9qd7W2QBlzjfOCC8hhcu0k="; + tag = "v${finalAttrs.version}"; + hash = "sha256-kk9D6433xh4MRbpdJpep7XdEEO0rsEUS3I94iBjQ6kM="; }; build-system = [ poetry-core ]; @@ -48,8 +48,8 @@ buildPythonPackage rec { meta = { description = "Library for Yale BLE devices"; homepage = "https://github.com/bdraco/yalexs-ble"; - changelog = "https://github.com/bdraco/yalexs-ble/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/bdraco/yalexs-ble/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ fab ]; }; -} +}) diff --git a/pkgs/os-specific/linux/kernel/zen-kernels.nix b/pkgs/os-specific/linux/kernel/zen-kernels.nix index f2679c376c9d..bd682650e751 100644 --- a/pkgs/os-specific/linux/kernel/zen-kernels.nix +++ b/pkgs/os-specific/linux/kernel/zen-kernels.nix @@ -23,9 +23,9 @@ let }; # ./update-zen.py lqx lqx = { - version = "6.18.2"; # lqx + version = "6.18.4"; # lqx suffix = "lqx1"; # lqx - sha256 = "0g2nxdcyzswndz15s5xpia3p7jsdi9kvh8rk0d87zgwwz395zzvq"; # lqx + sha256 = "1ihg5mzh6ns43r4s7bzz9lna7hyqj1br9mc79whpbhpb6pj0xvvg"; # lqx isLqx = true; }; }; diff --git a/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix b/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix index e9127a574358..5272edf01d74 100644 --- a/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix +++ b/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix @@ -19,13 +19,13 @@ buildHomeAssistantComponent rec { owner = "danielcherubini"; domain = "elegoo_printer"; - version = "2.5.0"; + version = "2.5.1"; src = fetchFromGitHub { owner = "danielcherubini"; repo = "elegoo-homeassistant"; tag = "v${version}"; - hash = "sha256-zxFiT6vlaC+cxLKZz4rtdA6Cg41K+07KY5rsOyNxnWI="; + hash = "sha256-qug2UsLPhBL9LobUr+Tns1cmg+Z0rVaLS4J8jGCF79M="; }; dependencies = [ diff --git a/pkgs/servers/home-assistant/custom-components/powercalc/package.nix b/pkgs/servers/home-assistant/custom-components/powercalc/package.nix index 018d54e9efa4..ff32f454dd45 100644 --- a/pkgs/servers/home-assistant/custom-components/powercalc/package.nix +++ b/pkgs/servers/home-assistant/custom-components/powercalc/package.nix @@ -17,13 +17,13 @@ buildHomeAssistantComponent rec { owner = "bramstroker"; domain = "powercalc"; - version = "1.20.1"; + version = "1.20.2"; src = fetchFromGitHub { inherit owner; repo = "homeassistant-powercalc"; tag = "v${version}"; - hash = "sha256-LzXLsKFBDC/Lcdv62kAiQeyc/fu/eH6ukV76jwSb/Es="; + hash = "sha256-NzWivgvDUv41fSA/6g4mYIuoUCobVUdf3bbfmKl0kWg="; }; dependencies = [ numpy ]; diff --git a/pkgs/servers/jackett/default.nix b/pkgs/servers/jackett/default.nix index 16fa5388c3f7..730eaaefa257 100644 --- a/pkgs/servers/jackett/default.nix +++ b/pkgs/servers/jackett/default.nix @@ -11,13 +11,13 @@ buildDotnetModule rec { pname = "jackett"; - version = "0.24.739"; + version = "0.24.766"; src = fetchFromGitHub { owner = "jackett"; repo = "jackett"; tag = "v${version}"; - hash = "sha256-MRh1OHkH97kZs2e/S1+snYa1peKnYxp4bvCDWcYYGiE="; + hash = "sha256-l/SjjKrFGZr514VYTEBjq2k7P9hY4lB7IB2BpLWkOgM="; }; projectFile = "src/Jackett.Server/Jackett.Server.csproj"; diff --git a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile index 1f4e17fe1622..e38bc375ced8 100644 --- a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile +++ b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile @@ -312,3 +312,4 @@ gem "hashery", require: false gem "ttfunk", require: false gem "afm", require: false gem "pdf-reader", require: false +gem "openssl", "~> 3.3.1" diff --git a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock index ff122cf2b84d..a4f1addb9a51 100644 --- a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock +++ b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock @@ -383,7 +383,7 @@ GEM omniauth-twitter (1.4.0) omniauth-oauth (~> 1.1) rack - openssl (3.3.0) + openssl (3.3.2) openssl-signature_algorithm (1.3.0) openssl (> 2.0) optimist (3.2.1) @@ -826,6 +826,7 @@ DEPENDENCIES omniauth-google-oauth2 omniauth-oauth2 omniauth-twitter + openssl (~> 3.3.1) parallel parallel_tests pdf-reader @@ -1078,7 +1079,7 @@ CHECKSUMS omniauth-oauth (1.2.1) sha256=25bf22c90234280fa825200490f03ff1ce7d76f1a4fbd6c882c6c5b169c58da8 omniauth-oauth2 (1.7.3) sha256=3f5a8f99fa72e0f91d2abd7475ceb972a4ae67ed59e049f314c0c1bad81f4745 omniauth-twitter (1.4.0) sha256=c5cc6c77cd767745ffa9ebbd5fbd694a3fa99d1d2d82a4d7def0bf3b6131b264 - openssl (3.3.0) sha256=ff3a573fc97ab30f69483fddc80029f91669bf36532859bd182d1836f45aee79 + openssl (3.3.2) sha256=7f4e01215dc9c4be1fca71d692406be3e6340b39c1f71a47fea9c497decd0f6c openssl-signature_algorithm (1.3.0) sha256=a3b40b5e8276162d4a6e50c7c97cdaf1446f9b2c3946a6fa2c14628e0c957e80 optimist (3.2.1) sha256=8cf8a0fd69f3aa24ab48885d3a666717c27bc3d9edd6e976e18b9d771e72e34e ostruct (0.6.3) sha256=95a2ed4a4bd1d190784e666b47b2d3f078e4a9efda2fccf18f84ddc6538ed912 diff --git a/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix b/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix index 248c7b7f5dcc..5a8dea76201b 100644 --- a/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix +++ b/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix @@ -2125,10 +2125,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0ygfbbs3c61d32ymja2k6sznj5pr540cip9z91lhzcvsr4zmffpz"; + sha256 = "0v0grpg9gi59zr3imxy1745k9rp3dd095mkir8gvxi69blhh2kkz"; type = "gem"; }; - version = "3.3.0"; + version = "3.3.2"; }; openssl-signature_algorithm = { dependencies = [ "openssl" ]; diff --git a/pkgs/servers/web-apps/discourse/update.py b/pkgs/servers/web-apps/discourse/update.py index fd774b902274..be0e9ffb9e7a 100755 --- a/pkgs/servers/web-apps/discourse/update.py +++ b/pkgs/servers/web-apps/discourse/update.py @@ -236,6 +236,11 @@ def update(rev): with open(rubyenv_dir / fn, 'w') as f: f.write(repo.get_file(fn, version.tag)) + # Workaround for https://github.com/NixOS/nixpkgs/pull/469624 + # Can be removed when openssl gem is already new enough, i.e. with discourse 2025.11.1 + with open(rubyenv_dir / "Gemfile", "a") as f: + f.write('gem "openssl", "~> 3.3.1"') + # work around https://github.com/nix-community/bundix/issues/8 os.environ["BUNDLE_FORCE_RUBY_PLATFORM"] = "true" subprocess.check_output(['bundle', 'lock'], cwd=rubyenv_dir) diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index 86da7494d554..79141d56bf1e 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -116,6 +116,7 @@ xbitmaps, xcalc, xcb-proto, + xclock, xcmsdb, xcompmgr, xconsole, @@ -126,14 +127,19 @@ xdriinfo, xev, xeyes, + xfd, xfontsel, + xfs, xfsinfo, xgamma, xgc, xhost, + xkbevd, + xkbprint, xkbutils, xkeyboard-config, xkill, + xload, xlsatoms, xlsclients, xlsfonts, @@ -146,6 +152,7 @@ xorgproto, xorg-server, xorg-sgml-doctools, + xpr, xprop, xrandr, xrdb, @@ -197,6 +204,7 @@ self: with self; { xbacklight xbitmaps xcalc + xclock xcmsdb xcompmgr xconsole @@ -206,13 +214,18 @@ self: with self; { xdriinfo xev xeyes + xfd xfontsel + xfs xfsinfo xgamma xgc xhost + xkbevd + xkbprint xkbutils xkill + xload xlsatoms xlsclients xlsfonts @@ -221,6 +234,7 @@ self: with self; { xmodmap xmore xorgproto + xpr xprop xrandr xrdb @@ -364,58 +378,6 @@ self: with self; { }) ) { }; - # THIS IS A GENERATED FILE. DO NOT EDIT! - xclock = callPackage ( - { - stdenv, - pkg-config, - fetchurl, - libX11, - libXaw, - libXft, - libxkbfile, - libXmu, - xorgproto, - libXrender, - libXt, - wrapWithXFileSearchPathHook, - testers, - }: - stdenv.mkDerivation (finalAttrs: { - pname = "xclock"; - version = "1.1.1"; - builder = ./builder.sh; - src = fetchurl { - url = "mirror://xorg/individual/app/xclock-1.1.1.tar.xz"; - sha256 = "0b3l1zwz2b1cn46f8pd480b835j9anadf929vqpll107iyzylz6z"; - }; - hardeningDisable = [ - "bindnow" - "relro" - ]; - strictDeps = true; - nativeBuildInputs = [ - pkg-config - wrapWithXFileSearchPathHook - ]; - buildInputs = [ - libX11 - libXaw - libXft - libxkbfile - libXmu - xorgproto - libXrender - libXt - ]; - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { - pkgConfigModules = [ ]; - platforms = lib.platforms.unix; - }; - }) - ) { }; - # THIS IS A GENERATED FILE. DO NOT EDIT! xf86inputevdev = callPackage ( { @@ -2162,98 +2124,6 @@ self: with self; { }) ) { }; - # THIS IS A GENERATED FILE. DO NOT EDIT! - xfd = callPackage ( - { - stdenv, - pkg-config, - fetchurl, - libxkbfile, - fontconfig, - libXaw, - libXft, - libXmu, - xorgproto, - libXrender, - libXt, - gettext, - wrapWithXFileSearchPathHook, - testers, - }: - stdenv.mkDerivation (finalAttrs: { - pname = "xfd"; - version = "1.1.4"; - builder = ./builder.sh; - src = fetchurl { - url = "mirror://xorg/individual/app/xfd-1.1.4.tar.xz"; - sha256 = "1zbnj0z28dx2rm2h7pjwcz7z1jnl28gz0v9xn3hs2igxcvxhyiym"; - }; - hardeningDisable = [ - "bindnow" - "relro" - ]; - strictDeps = true; - nativeBuildInputs = [ - pkg-config - gettext - wrapWithXFileSearchPathHook - ]; - buildInputs = [ - libxkbfile - fontconfig - libXaw - libXft - libXmu - xorgproto - libXrender - libXt - ]; - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { - pkgConfigModules = [ ]; - platforms = lib.platforms.unix; - }; - }) - ) { }; - - # THIS IS A GENERATED FILE. DO NOT EDIT! - xfs = callPackage ( - { - stdenv, - pkg-config, - fetchurl, - libXfont2, - xorgproto, - xtrans, - testers, - }: - stdenv.mkDerivation (finalAttrs: { - pname = "xfs"; - version = "1.2.2"; - builder = ./builder.sh; - src = fetchurl { - url = "mirror://xorg/individual/app/xfs-1.2.2.tar.xz"; - sha256 = "1k4f15nrgmqkvsn48hnl1j4giwxpmcpdrnq0bq7b6hg265ix82xp"; - }; - hardeningDisable = [ - "bindnow" - "relro" - ]; - strictDeps = true; - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ - libXfont2 - xorgproto - xtrans - ]; - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { - pkgConfigModules = [ ]; - platforms = lib.platforms.unix; - }; - }) - ) { }; - # THIS IS A GENERATED FILE. DO NOT EDIT! xinit = callPackage ( { @@ -2372,166 +2242,6 @@ self: with self; { }) ) { }; - # THIS IS A GENERATED FILE. DO NOT EDIT! - xkbevd = callPackage ( - { - stdenv, - pkg-config, - fetchurl, - libX11, - libxkbfile, - testers, - }: - stdenv.mkDerivation (finalAttrs: { - pname = "xkbevd"; - version = "1.1.6"; - builder = ./builder.sh; - src = fetchurl { - url = "mirror://xorg/individual/app/xkbevd-1.1.6.tar.xz"; - sha256 = "0gh73dsf4ic683k9zn2nj9bpff6dmv3gzcb3zx186mpq9kw03d6r"; - }; - hardeningDisable = [ - "bindnow" - "relro" - ]; - strictDeps = true; - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ - libX11 - libxkbfile - ]; - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { - pkgConfigModules = [ ]; - platforms = lib.platforms.unix; - }; - }) - ) { }; - - # THIS IS A GENERATED FILE. DO NOT EDIT! - xkbprint = callPackage ( - { - stdenv, - pkg-config, - fetchurl, - libX11, - libxkbfile, - xorgproto, - testers, - }: - stdenv.mkDerivation (finalAttrs: { - pname = "xkbprint"; - version = "1.0.7"; - builder = ./builder.sh; - src = fetchurl { - url = "mirror://xorg/individual/app/xkbprint-1.0.7.tar.xz"; - sha256 = "1k2rm8lvc2klcdz2s3mymb9a2ahgwqwkgg67v3phv7ij6304jkqw"; - }; - hardeningDisable = [ - "bindnow" - "relro" - ]; - strictDeps = true; - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ - libX11 - libxkbfile - xorgproto - ]; - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { - pkgConfigModules = [ ]; - platforms = lib.platforms.unix; - }; - }) - ) { }; - - # THIS IS A GENERATED FILE. DO NOT EDIT! - xload = callPackage ( - { - stdenv, - pkg-config, - fetchurl, - libX11, - libXaw, - libXmu, - xorgproto, - libXt, - gettext, - wrapWithXFileSearchPathHook, - testers, - }: - stdenv.mkDerivation (finalAttrs: { - pname = "xload"; - version = "1.2.0"; - builder = ./builder.sh; - src = fetchurl { - url = "mirror://xorg/individual/app/xload-1.2.0.tar.xz"; - sha256 = "104snn0rpnc91bmgj797cj6sgmkrp43n9mg20wbmr8p14kbfc3rc"; - }; - hardeningDisable = [ - "bindnow" - "relro" - ]; - strictDeps = true; - nativeBuildInputs = [ - pkg-config - gettext - wrapWithXFileSearchPathHook - ]; - buildInputs = [ - libX11 - libXaw - libXmu - xorgproto - libXt - ]; - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { - pkgConfigModules = [ ]; - platforms = lib.platforms.unix; - }; - }) - ) { }; - - # THIS IS A GENERATED FILE. DO NOT EDIT! - xpr = callPackage ( - { - stdenv, - pkg-config, - fetchurl, - libX11, - libXmu, - xorgproto, - testers, - }: - stdenv.mkDerivation (finalAttrs: { - pname = "xpr"; - version = "1.2.0"; - builder = ./builder.sh; - src = fetchurl { - url = "mirror://xorg/individual/app/xpr-1.2.0.tar.xz"; - sha256 = "1hyf6mc2l7lzkf21d5j4z6glg9y455hlsg8lv2lz028k6gw0554b"; - }; - hardeningDisable = [ - "bindnow" - "relro" - ]; - strictDeps = true; - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ - libX11 - libXmu - xorgproto - ]; - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { - pkgConfigModules = [ ]; - platforms = lib.platforms.unix; - }; - }) - ) { }; - # THIS IS A GENERATED FILE. DO NOT EDIT! xtrap = callPackage ( { diff --git a/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl b/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl index 158a0f96bb46..9c2c32c17c80 100755 --- a/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl +++ b/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl @@ -448,6 +448,7 @@ print OUT < 0.3.0" +gem 'mini_portile2', '~> 2.8.0' diff --git a/pkgs/tools/security/metasploit/Gemfile.lock b/pkgs/tools/security/metasploit/Gemfile.lock index c04ba2f51c90..67d02785acca 100644 --- a/pkgs/tools/security/metasploit/Gemfile.lock +++ b/pkgs/tools/security/metasploit/Gemfile.lock @@ -1,14 +1,14 @@ GIT remote: https://github.com/rapid7/metasploit-framework - revision: ce6990ff84c944186dfa104b3aa1edd98962b468 - ref: refs/tags/6.4.53 + revision: a8698e72f54049c520b47322b7d5e4df59110abc + ref: refs/tags/6.4.106 specs: - metasploit-framework (6.4.53) + metasploit-framework (6.4.106) aarch64 abbrev - actionpack (~> 7.0.0) - activerecord (~> 7.0.0) - activesupport (~> 7.0.0) + actionpack (~> 7.2.0) + activerecord (~> 7.2.0) + activesupport (~> 7.2.0) aws-sdk-ec2 aws-sdk-ec2instanceconnect aws-sdk-iam @@ -22,8 +22,8 @@ GIT bootsnap bson chunky_png - concurrent-ruby (= 1.3.4) csv + date (= 3.4.1) dnsruby drb ed25519 @@ -31,7 +31,7 @@ GIT em-http-request eventmachine faker - faraday (= 2.7.11) + faraday faraday-retry faye-websocket ffi (< 1.17.0) @@ -40,16 +40,17 @@ GIT getoptlong hrr_rb_ssh-ed25519 http-cookie - irb (~> 1.7.4) + irb jsobfu json + lru_redux metasm metasploit-concern metasploit-credential metasploit-model - metasploit-payloads (= 2.0.189) - metasploit_data_models - metasploit_payloads-mettle (= 1.0.35) + metasploit-payloads (= 2.0.237) + metasploit_data_models (>= 6.0.7) + metasploit_payloads-mettle (= 1.0.45) mqtt msgpack (~> 1.6.0) mutex_m @@ -62,22 +63,25 @@ GIT network_interface nexpose nokogiri - octokit (~> 4.0) + octokit openssl-ccm openvas-omp ostruct packetfu + parallel patch_finder pcaprub pdf-reader pg puma + rack (~> 2.2) railties rasn1 (= 0.14.0) rb-readline recog redcarpet reline + rest-client rex-arch rex-bin_tools rex-core @@ -96,16 +100,20 @@ GIT rex-struct2 rex-text rex-zip + rexml (= 3.4.1) + rinda ruby-macho ruby-mysql - ruby_smb (~> 3.3.3) + ruby_smb (~> 3.3.15) rubyntlm rubyzip - sinatra + sinatra (~> 3.2) sqlite3 (= 1.7.3) sshkey + stringio (= 3.1.1) swagger-blocks - thin + syslog + thin (~> 1.x) tzinfo tzinfo-data unix-crypt @@ -120,88 +128,109 @@ GIT GEM remote: https://rubygems.org/ specs: - Ascii85 (1.1.1) + Ascii85 (2.0.1) aarch64 (2.1.0) racc (~> 1.6) abbrev (0.1.2) - actionpack (7.0.8.6) - actionview (= 7.0.8.6) - activesupport (= 7.0.8.6) - rack (~> 2.0, >= 2.2.4) + actionpack (7.2.3) + actionview (= 7.2.3) + activesupport (= 7.2.3) + cgi + nokogiri (>= 1.8.5) + racc + rack (>= 2.2.4, < 3.3) + rack-session (>= 1.0.1) rack-test (>= 0.6.3) - rails-dom-testing (~> 2.0) - rails-html-sanitizer (~> 1.0, >= 1.2.0) - actionview (7.0.8.6) - activesupport (= 7.0.8.6) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + useragent (~> 0.16) + actionview (7.2.3) + activesupport (= 7.2.3) builder (~> 3.1) - erubi (~> 1.4) - rails-dom-testing (~> 2.0) - rails-html-sanitizer (~> 1.1, >= 1.2.0) - activemodel (7.0.8.6) - activesupport (= 7.0.8.6) - activerecord (7.0.8.6) - activemodel (= 7.0.8.6) - activesupport (= 7.0.8.6) - activesupport (7.0.8.6) - concurrent-ruby (~> 1.0, >= 1.0.2) + cgi + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activemodel (7.2.3) + activesupport (= 7.2.3) + activerecord (7.2.3) + activemodel (= 7.2.3) + activesupport (= 7.2.3) + timeout (>= 0.4.0) + activesupport (7.2.3) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - tzinfo (~> 2.0) - addressable (2.8.7) - public_suffix (>= 2.0.2, < 7.0) - afm (0.2.2) - arel-helpers (2.15.0) - activerecord (>= 3.1.0, < 8) - aws-eventstream (1.3.0) - aws-partitions (1.999.0) - aws-sdk-core (3.211.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + addressable (2.8.8) + public_suffix (>= 2.0.2, < 8.0) + afm (1.0.0) + arel-helpers (2.17.0) + activerecord (>= 3.1.0) + aws-eventstream (1.4.0) + aws-partitions (1.1201.0) + aws-sdk-core (3.241.2) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) + base64 + bigdecimal jmespath (~> 1, >= 1.6.1) - aws-sdk-ec2 (1.486.0) - aws-sdk-core (~> 3, >= 3.210.0) + logger + aws-sdk-ec2 (1.588.0) + aws-sdk-core (~> 3, >= 3.241.0) aws-sigv4 (~> 1.5) - aws-sdk-ec2instanceconnect (1.52.0) - aws-sdk-core (~> 3, >= 3.210.0) + aws-sdk-ec2instanceconnect (1.67.0) + aws-sdk-core (~> 3, >= 3.241.0) aws-sigv4 (~> 1.5) - aws-sdk-iam (1.112.0) - aws-sdk-core (~> 3, >= 3.210.0) + aws-sdk-iam (1.138.0) + aws-sdk-core (~> 3, >= 3.241.0) aws-sigv4 (~> 1.5) - aws-sdk-kms (1.95.0) - aws-sdk-core (~> 3, >= 3.210.0) + aws-sdk-kms (1.119.0) + aws-sdk-core (~> 3, >= 3.241.0) aws-sigv4 (~> 1.5) - aws-sdk-s3 (1.169.0) - aws-sdk-core (~> 3, >= 3.210.0) + aws-sdk-s3 (1.210.1) + aws-sdk-core (~> 3, >= 3.241.0) aws-sdk-kms (~> 1) aws-sigv4 (~> 1.5) - aws-sdk-ssm (1.183.0) - aws-sdk-core (~> 3, >= 3.210.0) + aws-sdk-ssm (1.208.0) + aws-sdk-core (~> 3, >= 3.241.0) aws-sigv4 (~> 1.5) - aws-sigv4 (1.10.1) + aws-sigv4 (1.12.1) aws-eventstream (~> 1, >= 1.0.2) - base64 (0.2.0) - bcrypt (3.1.20) - bcrypt_pbkdf (1.1.1) - benchmark (0.4.0) - bigdecimal (3.1.8) + base64 (0.3.0) + bcrypt (3.1.21) + bcrypt_pbkdf (1.1.2) + benchmark (0.5.0) + bigdecimal (4.0.1) bindata (2.4.15) - bootsnap (1.18.4) + bootsnap (1.20.1) msgpack (~> 1.2) - bson (5.0.1) + bson (5.2.0) builder (3.3.0) + cgi (0.5.1) chunky_png (1.4.0) - concurrent-ruby (1.3.4) + concurrent-ruby (1.3.6) + connection_pool (3.0.2) cookiejar (0.3.4) crass (1.0.6) - csv (3.3.0) + csv (3.3.5) daemons (1.4.1) - date (3.3.4) - dnsruby (1.72.2) + date (3.4.1) + dnsruby (1.73.1) + base64 (>= 0.2) + logger (~> 1.6) simpleidn (~> 0.2.1) domain_name (0.6.20240107) - drb (2.2.1) - ed25519 (1.3.0) + drb (2.2.3) + ed25519 (1.4.0) elftools (1.3.1) bindata (~> 2) em-http-request (1.1.7) @@ -213,23 +242,26 @@ GEM em-socksify (0.3.3) base64 eventmachine (>= 1.0.0.beta.4) - erubi (1.13.0) + erb (6.0.1) + erubi (1.13.1) eventmachine (1.2.7) - faker (3.5.1) + faker (3.5.3) i18n (>= 1.8.11, < 2) - faraday (2.7.11) - base64 - faraday-net_http (>= 2.0, < 3.1) - ruby2_keywords (>= 0.0.4) - faraday-net_http (3.0.2) - faraday-retry (2.2.1) + faraday (2.14.0) + faraday-net_http (>= 2.0, < 3.5) + json + logger + faraday-net_http (3.4.2) + net-http (~> 0.5) + faraday-retry (2.4.0) faraday (~> 2.0) - faye-websocket (0.11.3) + faye-websocket (0.12.0) eventmachine (>= 0.12.0) - websocket-driver (>= 0.5.1) + websocket-driver (>= 0.8.0) ffi (1.16.3) - fiddle (1.1.6) + fiddle (1.1.8) filesize (0.2.0) + forwardable (1.4.0) getoptlong (0.2.1) gssapi (1.3.1) ffi (>= 1.0.1) @@ -241,194 +273,261 @@ GEM hrr_rb_ssh-ed25519 (0.4.2) ed25519 (~> 1.2) hrr_rb_ssh (>= 0.4) - http-cookie (1.0.7) + http-accept (1.7.0) + http-cookie (1.1.0) domain_name (~> 0.5) - http_parser.rb (0.8.0) - httpclient (2.8.3) - i18n (1.14.6) + http_parser.rb (0.8.1) + httpclient (2.9.0) + mutex_m + i18n (1.14.8) concurrent-ruby (~> 1.0) - io-console (0.7.2) - irb (1.7.4) - reline (>= 0.3.6) + io-console (0.8.2) + ipaddr (1.2.8) + irb (1.16.0) + pp (>= 0.6.0) + rdoc (>= 4.0.0) + reline (>= 0.4.2) jmespath (1.6.2) jsobfu (0.4.2) rkelly-remix - json (2.7.5) + json (2.18.0) little-plugger (1.1.4) - logger (1.6.6) + logger (1.7.0) logging (2.4.0) little-plugger (~> 1.1) multi_json (~> 1.14) - loofah (2.23.1) + loofah (2.25.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) + lru_redux (1.1.0) metasm (1.0.5) - metasploit-concern (5.0.3) + metasploit-concern (5.0.5) activemodel (~> 7.0) activesupport (~> 7.0) + drb + mutex_m railties (~> 7.0) zeitwerk - metasploit-credential (6.0.11) + metasploit-credential (6.0.16) + bigdecimal + csv + drb metasploit-concern metasploit-model metasploit_data_models (>= 5.0.0) + mutex_m net-ssh pg railties rex-socket rubyntlm rubyzip - metasploit-model (5.0.2) + metasploit-model (5.0.4) activemodel (~> 7.0) activesupport (~> 7.0) + bigdecimal + drb + mutex_m railties (~> 7.0) - metasploit-payloads (2.0.189) - metasploit_data_models (6.0.5) + metasploit-payloads (2.0.237) + metasploit_data_models (6.0.11) activerecord (~> 7.0) activesupport (~> 7.0) arel-helpers + bigdecimal + drb metasploit-concern metasploit-model (>= 3.1) + mutex_m pg railties (~> 7.0) recog webrick - metasploit_payloads-mettle (1.0.35) - method_source (1.1.0) - mini_portile2 (2.8.7) - minitest (5.25.1) - mqtt (0.6.0) + metasploit_payloads-mettle (1.0.45) + mime-types (3.7.0) + logger + mime-types-data (~> 3.2025, >= 3.2025.0507) + mime-types-data (3.2025.0924) + mini_portile2 (2.8.9) + minitest (6.0.1) + prism (~> 1.5) + mqtt (0.7.0) + logger msgpack (1.6.1) - multi_json (1.15.0) - mustermann (3.0.3) + multi_json (1.19.1) + mustermann (3.0.4) ruby2_keywords (~> 0.0.1) - mutex_m (0.2.0) + mutex_m (0.3.0) nessus_rest (0.1.6) - net-imap (0.5.0) + net-http (0.9.1) + uri (>= 0.11.1) + net-imap (0.6.2) date net-protocol - net-ldap (0.19.0) + net-ldap (0.20.0) + base64 + ostruct net-protocol (0.2.2) timeout net-sftp (4.0.0) net-ssh (>= 5.0.0, < 8.0.0) - net-smtp (0.5.0) + net-smtp (0.5.1) net-protocol net-ssh (7.3.0) + netrc (0.11.0) network_interface (0.0.4) nexpose (7.3.0) - nio4r (2.7.4) - nokogiri (1.16.7) + nio4r (2.7.5) + nokogiri (1.19.0) mini_portile2 (~> 2.8.2) racc (~> 1.4) nori (2.7.1) bigdecimal - octokit (4.25.1) + octokit (10.0.0) faraday (>= 1, < 3) sawyer (~> 0.9) - openssl-ccm (1.2.3) - openssl-cmac (2.0.2) + openssl (3.3.2) + openssl-ccm (1.3.0) + openssl (~> 3.0) + openssl-cmac (2.1.0) + openssl (~> 3.0) openvas-omp (0.0.4) - ostruct (0.6.1) + ostruct (0.6.3) packetfu (2.0.0) pcaprub (~> 0.13.1) + parallel (1.27.0) patch_finder (1.0.2) pcaprub (0.13.3) - pdf-reader (2.12.0) - Ascii85 (~> 1.0) - afm (~> 0.2.1) + pdf-reader (2.15.1) + Ascii85 (>= 1.0, < 3.0, != 2.0.0) + afm (>= 0.2.1, < 2) hashery (~> 2.0) ruby-rc4 ttfunk - pg (1.5.9) - public_suffix (6.0.1) - puma (6.4.3) + pg (1.6.3) + pp (0.6.3) + prettyprint + prettyprint (0.2.0) + prism (1.7.0) + psych (5.3.1) + date + stringio + public_suffix (7.0.2) + puma (7.1.0) nio4r (~> 2.0) racc (1.8.1) - rack (2.2.10) + rack (2.2.21) rack-protection (3.2.0) base64 (>= 0.1.0) rack (~> 2.2, >= 2.2.4) - rack-test (2.1.0) + rack-session (1.0.2) + rack (< 3) + rack-test (2.2.0) rack (>= 1.3) - rails-dom-testing (2.2.0) + rackup (1.0.1) + rack (< 3) + webrick + rails-dom-testing (2.3.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.0) + rails-html-sanitizer (1.6.2) loofah (~> 2.21) - nokogiri (~> 1.14) - railties (7.0.8.6) - actionpack (= 7.0.8.6) - activesupport (= 7.0.8.6) - method_source + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.2.3) + actionpack (= 7.2.3) + activesupport (= 7.2.3) + cgi + irb (~> 1.13) + rackup (>= 1.0.0) rake (>= 12.2) - thor (~> 1.0) - zeitwerk (~> 2.5) - rake (13.2.1) + thor (~> 1.0, >= 1.2.2) + tsort (>= 0.2) + zeitwerk (~> 2.6) + rake (13.3.1) rasn1 (0.14.0) strptime (~> 0.2.5) rb-readline (0.5.5) - recog (3.1.11) + rdoc (7.0.3) + erb + psych (>= 4.0.0) + tsort + recog (3.1.25) nokogiri - redcarpet (3.6.0) - reline (0.5.10) + redcarpet (3.6.1) + reline (0.6.3) io-console (~> 0.5) - rex-arch (0.1.16) + rest-client (2.1.0) + http-accept (>= 1.7.0, < 2.0) + http-cookie (>= 1.0.2, < 2.0) + mime-types (>= 1.16, < 4.0) + netrc (~> 0.8) + rex-arch (0.1.18) rex-text - rex-bin_tools (0.1.9) + rex-bin_tools (0.1.12) metasm rex-arch rex-core rex-struct2 rex-text - rex-core (0.1.32) - rex-encoder (0.1.7) + rex-core (0.1.35) + rex-encoder (0.1.8) metasm rex-arch rex-text - rex-exploitation (0.1.40) + rex-exploitation (0.1.44) + bigdecimal jsobfu metasm + racc rex-arch rex-encoder rex-text rexml - rex-java (0.1.7) - rex-mime (0.1.8) + rex-java (0.1.8) + rex-mime (0.1.12) + bigdecimal rex-text - rex-nop (0.1.3) + rex-nop (0.1.4) rex-arch - rex-ole (0.1.8) + rex-ole (0.1.9) rex-text - rex-powershell (0.1.100) + rex-powershell (0.1.103) + bigdecimal rex-random_identifier rex-text ruby-rc4 - rex-random_identifier (0.1.13) + rex-random_identifier (0.1.21) + bigdecimal rex-text - rex-registry (0.1.5) - rex-rop_builder (0.1.5) + rex-registry (0.1.6) + rex-rop_builder (0.1.6) metasm rex-core rex-text - rex-socket (0.1.57) + rex-socket (0.1.64) + dnsruby rex-core - rex-sslscan (0.1.10) + rex-sslscan (0.1.13) rex-core rex-socket rex-text - rex-struct2 (0.1.4) - rex-text (0.2.59) - rex-zip (0.1.5) + rex-struct2 (0.1.5) + rex-text (0.2.61) + bigdecimal + rex-zip (0.1.6) rex-text - rexml (3.3.9) + rexml (3.4.1) + rinda (0.2.0) + drb + forwardable + ipaddr rkelly-remix (0.0.7) ruby-macho (4.1.0) - ruby-mysql (4.1.0) + ruby-mysql (4.2.1) ruby-rc4 (0.1.5) ruby2_keywords (0.0.5) - ruby_smb (3.3.11) + ruby_smb (3.3.16) bindata (= 2.4.15) openssl-ccm openssl-cmac @@ -436,10 +535,11 @@ GEM windows_error (>= 0.1.4) rubyntlm (0.6.5) base64 - rubyzip (2.3.2) - sawyer (0.9.2) + rubyzip (3.2.2) + sawyer (0.9.3) addressable (>= 2.3.5) faraday (>= 0.17.3, < 3) + securerandom (0.4.1) simpleidn (0.2.3) sinatra (3.2.0) mustermann (~> 3.0) @@ -449,6 +549,7 @@ GEM sqlite3 (1.7.3) mini_portile2 (~> 2.8.0) sshkey (3.0.0) + stringio (3.1.1) strptime (0.2.5) swagger-blocks (3.0.0) syslog (0.3.0) @@ -457,20 +558,23 @@ GEM daemons (~> 1.0, >= 1.0.9) eventmachine (~> 1.0, >= 1.0.4) rack (>= 1, < 3) - thor (1.3.2) - tilt (2.4.0) - timeout (0.4.1) - ttfunk (1.8.0) - bigdecimal (~> 3.1) + thor (1.5.0) + tilt (2.6.1) + timeout (0.6.0) + tsort (0.2.0) + ttfunk (1.7.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - tzinfo-data (1.2024.2) + tzinfo-data (1.2025.3) tzinfo (>= 1.0.0) unix-crypt (1.3.1) + uri (1.1.1) + useragent (0.16.11) warden (1.2.9) rack (>= 2.0.9) - webrick (1.8.2) - websocket-driver (0.7.6) + webrick (1.9.2) + websocket-driver (0.8.0) + base64 websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) win32api (0.1.0) @@ -490,14 +594,15 @@ GEM activesupport (>= 4.2, < 8.0) xmlrpc (0.3.3) webrick - zeitwerk (2.6.18) + zeitwerk (2.7.4) PLATFORMS ruby DEPENDENCIES metasploit-framework! + mini_portile2 (~> 2.8.0) syslog (~> 0.3.0) BUNDLED WITH - 2.5.22 + 2.7.2 diff --git a/pkgs/tools/security/metasploit/default.nix b/pkgs/tools/security/metasploit/default.nix index 9e583db985da..9e9110eb0b6c 100644 --- a/pkgs/tools/security/metasploit/default.nix +++ b/pkgs/tools/security/metasploit/default.nix @@ -18,13 +18,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "metasploit-framework"; - version = "6.4.53"; + version = "6.4.106"; src = fetchFromGitHub { owner = "rapid7"; repo = "metasploit-framework"; tag = finalAttrs.version; - hash = "sha256-yHat9U8EZbUWo4j9ut6K9IPtPFm130pfSmIuhtQhFoQ="; + hash = "sha256-FpSx6CuVa2fOCoJesQcK+Nft+6k8iPDKyGvTec8TMbo="; }; nativeBuildInputs = [ @@ -37,6 +37,17 @@ stdenv.mkDerivation (finalAttrs: { dontPatchELF = true; # stay away from exploit executables + postPatch = '' + # Patch the boot script to disable bootsnap. + # Bootsnap tries to write cache files to the frozen /nix/store, causing a crash on startup. + sed -i '/bootsnap\/setup/d' config/boot.rb + + # Remove the strict version check for ActionView. + # Metasploit upstream enforces a specific patch version (e.g., 7.2.2.2), but our bundler + # environment may resolve to a newer, compatible version (e.g., 7.2.3), causing the app to raise an exception. + sed -i "/ActionView::VERSION::STRING == /d" config/application.rb + ''; + installPhase = '' runHook preInstall @@ -81,6 +92,7 @@ stdenv.mkDerivation (finalAttrs: { maintainers = with lib.maintainers; [ fab makefu + Misaka13514 ]; mainProgram = "msfconsole"; }; diff --git a/pkgs/tools/security/metasploit/gemset.nix b/pkgs/tools/security/metasploit/gemset.nix index 0d7c23000d41..c8bf5e9f4538 100644 --- a/pkgs/tools/security/metasploit/gemset.nix +++ b/pkgs/tools/security/metasploit/gemset.nix @@ -24,240 +24,240 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "19ywl4jp77b51c01hsyzwia093fnj73pw1ipgyj4pk3h2b9faj5n"; + sha256 = "1kq7fbgb5yfsjd1na2ghc7assk18ca24kbvsx90p0xwm8v3f851a"; type = "gem"; }; - version = "7.0.8.6"; + version = "7.2.3"; }; actionview = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0girx71db1aq5b70ln3qq03z9d7xjdyp297v1a8rdal7k89y859c"; + sha256 = "1cpc91crvavdgvc3jqj1nqr9q6s581bm64894pbh8f5l85x7shhz"; type = "gem"; }; - version = "7.0.8.6"; + version = "7.2.3"; }; activemodel = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1f6szahjsb4pr2xvlvk4kghk9291xh9c14s8cqwy6wwpm1vcglim"; + sha256 = "1nrr8w3hxkssgx13bcph8lb876hg57w01fbapy7fj4ijp6p6dbxv"; type = "gem"; }; - version = "7.0.8.6"; + version = "7.2.3"; }; activerecord = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "14qs1jc9hwnsm4dzvnai8b36bcq1d7rcqgjxy0dc6wza670lqapf"; + sha256 = "1mx087zngip62400z44p969l6fja1fjxliq6kym6npzbii3vgb3g"; type = "gem"; }; - version = "7.0.8.6"; + version = "7.2.3"; }; activesupport = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0gj20cysajda05z3r7pl1g9y84nzsqak5dvk9nrz13jpy6297dj1"; + sha256 = "043vbilaw855c91n5l7g0k0wxj63kngj911685qy74xc1mvwjxan"; type = "gem"; }; - version = "7.0.8.6"; + version = "7.2.3"; }; addressable = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0cl2qpvwiffym62z991ynks7imsm87qmgxf0yfsmlwzkgi9qcaa6"; + sha256 = "0mxhjgihzsx45l9wh2n0ywl9w0c6k70igm5r0d63dxkcagwvh4vw"; type = "gem"; }; - version = "2.8.7"; + version = "2.8.8"; }; afm = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "06kj9hgd0z8pj27bxp2diwqh6fv7qhwwm17z64rhdc4sfn76jgn8"; + sha256 = "0ia5iw9xvvy1igaxsa08vvv4b5ry9ipyr18917pi8w0y4kvddm2v"; type = "gem"; }; - version = "0.2.2"; + version = "1.0.0"; }; arel-helpers = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0agzw7ix33a8framb8mnmhwf9qm9bwrcmlk8mzzm0w37fmlnm167"; + sha256 = "0vfg1ay25y2pxnp0dapdy22dczhpmdqy7rh4v876gvy36a6kpwha"; type = "gem"; }; - version = "2.15.0"; + version = "2.17.0"; }; Ascii85 = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1c62cx96r0v265mywnlik43qx0wf6bjbzl54qa47x6dzjg861mvk"; + sha256 = "0nmyxpngg5rycyryhq9l9hapz1y3iqyflskyksxkqm0832a5vjqm"; type = "gem"; }; - version = "1.1.1"; + version = "2.0.1"; }; aws-eventstream = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0gvdg4yx4p9av2glmp7vsxhs0n8fj1ga9kq2xdb8f95j7b04qhzi"; + sha256 = "0fqqdqg15rgwgz3mn4pj91agd20csk9gbrhi103d20328dfghsqi"; type = "gem"; }; - version = "1.3.0"; + version = "1.4.0"; }; aws-partitions = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1f2y7ycq7i3y7p5klsi3gk3p5r5p1vkq6w7dq4zk9grq2hw9f7cv"; + sha256 = "00c7qzr1dnv82ajyaz6hjhn9qvk5yryi9wbwhdw9ck8af56hjxja"; type = "gem"; }; - version = "1.999.0"; + version = "1.1201.0"; }; aws-sdk-core = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "16mvscjhxdyhlvk2rpbxdzqmyikcf64xavb35grk4dkh0pg390rk"; + sha256 = "17qwgdnnvkc97f249q2i7sqvffkpmph5704gyaqrylhpfflz8v4z"; type = "gem"; }; - version = "3.211.0"; + version = "3.241.2"; }; aws-sdk-ec2 = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "12lbxp1ccsd1d0v45c1rh7j2s2ajkl5iw0fpa66yghdpjvagxgk4"; + sha256 = "0z94vvvy10fg459a3kkmr4r767rp81inyx722lp04s5vp519yxlw"; type = "gem"; }; - version = "1.486.0"; + version = "1.588.0"; }; aws-sdk-ec2instanceconnect = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0cjzjj3x5v0b99vasphw8hn61jnw8wx56qh9n1a269a4yahprr1l"; + sha256 = "0cl1ajpdlsnwh4g88bmp1i3l323l0zvvzlygm5pj9x5bmpn35ji2"; type = "gem"; }; - version = "1.52.0"; + version = "1.67.0"; }; aws-sdk-iam = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1abcvm6d3w23hg8wj6f16948aj91wliahjjwsbh69p3dryi9fh7f"; + sha256 = "07akwflj7zmpbyywsp94bwlxbvk46h5pxxk3xavbk802id7dnzvd"; type = "gem"; }; - version = "1.112.0"; + version = "1.138.0"; }; aws-sdk-kms = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0ppxhw2qyj69achpmksp1sh2y6k0x44928ln2am9pifx8b30ir9a"; + sha256 = "0wikgvniig4m84frj86h52fc7507ss3b3q9sis53v50qmwzwk6gm"; type = "gem"; }; - version = "1.95.0"; + version = "1.119.0"; }; aws-sdk-s3 = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1jnf9k9d91ki3yvy12q4kph5wvd8l3ziwwh0qsmar5xhyb7zbwrz"; + sha256 = "018h0hq7k1r2i2mf0gdx0l9cmz82sixcfmbvqfb0difli1rygq2g"; type = "gem"; }; - version = "1.169.0"; + version = "1.210.1"; }; aws-sdk-ssm = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "06cb5ibhwq7ri0g5mfmmvjapqvv7cblwa8i01k9ciisvqjkzbs3v"; + sha256 = "197jfhw70n2qlzigj091byh7ivfq7aswri6ic8vxgwb5x7zmcxjj"; type = "gem"; }; - version = "1.183.0"; + version = "1.208.0"; }; aws-sigv4 = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1fq3lbvkgm1vk5wa8l7vdnq3vjnlmsnyf4bbd0jq3qadyd9hf54a"; + sha256 = "003ch8qzh3mppsxch83ns0jra8d222ahxs96p9cdrl0grfazywv9"; type = "gem"; }; - version = "1.10.1"; + version = "1.12.1"; }; base64 = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "01qml0yilb9basf7is2614skjp8384h2pycfx86cr8023arfj98g"; + sha256 = "0yx9yn47a8lkfcjmigk79fykxvr80r4m1i35q82sxzynpbm7lcr7"; type = "gem"; }; - version = "0.2.0"; + version = "0.3.0"; }; bcrypt = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "16a0g2q40biv93i1hch3gw8rbmhp77qnnifj1k0a6m7dng3zh444"; + sha256 = "1krd99p9828n07rcjjms56jaqv7v6s9pn7y6bppcfhhaflyn2r2r"; type = "gem"; }; - version = "3.1.20"; + version = "3.1.21"; }; bcrypt_pbkdf = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "04rb3rp9bdxn1y3qiflfpj7ccwb8ghrfbydh5vfz1l9px3fpg41g"; + sha256 = "1xjcp484qc4j4z42b087npgj50sd6yixchznp4z9p1k6rqilqhf2"; type = "gem"; }; - version = "1.1.1"; + version = "1.1.2"; }; benchmark = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0jl71qcgamm96dzyqk695j24qszhcc7liw74qc83fpjljp2gh4hg"; + sha256 = "0v1337j39w1z7x9zs4q7ag0nfv4vs4xlsjx2la0wpv8s6hig2pa6"; type = "gem"; }; - version = "0.4.0"; + version = "0.5.0"; }; bigdecimal = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1gi7zqgmqwi5lizggs1jhc3zlwaqayy9rx2ah80sxy24bbnng558"; + sha256 = "19y406nx17arzsbc515mjmr6k5p59afprspa1k423yd9cp8d61wb"; type = "gem"; }; - version = "3.1.8"; + version = "4.0.1"; }; bindata = { groups = [ "default" ]; @@ -274,20 +274,20 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0mdgj9yw1hmx3xh2qxyjc31y8igmxzd9h0c245ay2zkz76pl4k5c"; + sha256 = "14qb2gy6ypnqri92v9x8szbq7fzw27pc1z5cl367n5f5cpd2rmks"; type = "gem"; }; - version = "1.18.4"; + version = "1.20.1"; }; bson = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "19gzm5prhbrv6ibyxi0czsm8fjsh0lrsxngfg0q0vzjjwfdd30ap"; + sha256 = "0216p1mw6p26hdgk13hxfa36jn451y4rllfc642yi8fglglc2s64"; type = "gem"; }; - version = "5.0.1"; + version = "5.2.0"; }; builder = { groups = [ "default" ]; @@ -299,6 +299,16 @@ }; version = "3.3.0"; }; + cgi = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "1s8qdw1nfh3njd47q154njlfyc2llcgi4ik13vz39adqd7yclgz9"; + type = "gem"; + }; + version = "0.5.1"; + }; chunky_png = { groups = [ "default" ]; platforms = [ ]; @@ -314,10 +324,20 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0chwfdq2a6kbj6xz9l6zrdfnyghnh32si82la1dnpa5h75ir5anl"; + sha256 = "1aymcakhzl83k77g2f2krz07bg1cbafbcd2ghvwr4lky3rz86mkb"; type = "gem"; }; - version = "1.3.4"; + version = "1.3.6"; + }; + connection_pool = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "02ifws3c4x7b54fv17sm4cca18d2pfw1saxpdji2lbd1f6xgbzrk"; + type = "gem"; + }; + version = "3.0.2"; }; cookiejar = { groups = [ "default" ]; @@ -344,10 +364,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0zfn40dvgjk1xv1z8l11hr9jfg3jncwsc9yhzsz4l4rivkpivg8b"; + sha256 = "0gz7r2kazwwwyrwi95hbnhy54kwkfac5swh2gy5p5vw36fn38lbf"; type = "gem"; }; - version = "3.3.0"; + version = "3.3.5"; }; daemons = { groups = [ "default" ]; @@ -364,20 +384,20 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "149jknsq999gnhy865n33fkk22s0r447k76x9pmcnnwldfv2q7wp"; + sha256 = "0kz6mc4b9m49iaans6cbx031j9y7ldghpi5fzsdh0n3ixwa8w9mz"; type = "gem"; }; - version = "3.3.4"; + version = "3.4.1"; }; dnsruby = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "066dpkgka17fkn5cv7sk2f4jmwb5d1jila1cnhm77cnd01k5mqcm"; + sha256 = "14p9i49ffm8y5vrzwhzgzjp11q8szycyiwz3nnnxws17zvsjgwvc"; type = "gem"; }; - version = "1.72.2"; + version = "1.73.1"; }; domain_name = { groups = [ "default" ]; @@ -394,20 +414,20 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0h5kbj9hvg5hb3c7l425zpds0vb42phvln2knab8nmazg2zp5m79"; + sha256 = "0wrkl7yiix268s2md1h6wh91311w95ikd8fy8m5gx589npyxc00b"; type = "gem"; }; - version = "2.2.1"; + version = "2.2.3"; }; ed25519 = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0zb2dr2ihb1qiknn5iaj1ha1w9p7lj9yq5waasndlfadz225ajji"; + sha256 = "01n5rbyws1ijwc5dw7s88xx3zzacxx9k97qn8x11b6k8k18pzs8n"; type = "gem"; }; - version = "1.3.0"; + version = "1.4.0"; }; elftools = { groups = [ "default" ]; @@ -439,15 +459,25 @@ }; version = "0.3.3"; }; + erb = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "1rcpq49pyaiclpjp3c3qjl25r95hqvin2q2dczaynaj7qncxvv18"; + type = "gem"; + }; + version = "6.0.1"; + }; erubi = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0qnd6ff4az22ysnmni3730c41b979xinilahzg86bn7gv93ip9pw"; + sha256 = "1naaxsqkv5b3vklab5sbb9sdpszrjzlfsbqpy7ncbnw510xi10m0"; type = "gem"; }; - version = "1.13.0"; + version = "1.13.1"; }; eventmachine = { groups = [ "default" ]; @@ -464,50 +494,50 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1z4vhl6lbd0la2j0ab05sz8wq5mqvpikzhjrc142z24x4zmgpl8s"; + sha256 = "0rfp6y0pc2slv83vcnayiypfjsanja5qg9wfm6wwq5dvq0nlhqdr"; type = "gem"; }; - version = "3.5.1"; + version = "3.5.3"; }; faraday = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0vn7jwss2v6jhnxvjsiwbs3irjwhbx9zxn4l6fhd4rkcfyxzdnw5"; + sha256 = "1ka175ci0q9ylpcy651pjj580diplkaskycn4n7jcmbyv7jwz6c6"; type = "gem"; }; - version = "2.7.11"; + version = "2.14.0"; }; faraday-net_http = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "13byv3mp1gsjyv8k0ih4612y6vw5kqva6i03wcg4w2fqpsd950k8"; + sha256 = "0v4hfmc7d4lrqqj2wl366rm9551gd08zkv2ppwwnjlnkc217aizi"; type = "gem"; }; - version = "3.0.2"; + version = "3.4.2"; }; faraday-retry = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "023ncwlagnf2irx2ckyj1pg1f1x436jgr4a5y45mih298p8zwij1"; + sha256 = "1ghys6d46j8mxkqprnlz1ks1y1w0lsa2vca7ybx2crg5ny7w8ybv"; type = "gem"; }; - version = "2.2.1"; + version = "2.4.0"; }; faye-websocket = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "01xkpv5b4fjc5n6n1fq6z1ris991av2fbadvs8r71i9r34b8g48h"; + sha256 = "1qa2mf22893cf4w5zfqmmwli2rjpjrr51r7fp89hlv9hs3y7v7xd"; type = "gem"; }; - version = "0.11.3"; + version = "0.12.0"; }; ffi = { groups = [ "default" ]; @@ -524,10 +554,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1as92bp6pgkab73kj3mh5d1idjr9wykczz7r9i1pkn82wq4xks3r"; + sha256 = "1vifygrkw22gcd4wzh8gc4pv6h1zpk6kll6mmprrf5174wvfxa3z"; type = "gem"; }; - version = "1.1.6"; + version = "1.1.8"; }; filesize = { groups = [ "default" ]; @@ -539,6 +569,16 @@ }; version = "0.2.0"; }; + forwardable = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0f78rjpnhm4lgp1qzadnr6kr02b6afh1lvy7w607k4qjk3641kgi"; + type = "gem"; + }; + version = "1.4.0"; + }; getoptlong = { groups = [ "default" ]; platforms = [ ]; @@ -599,65 +639,85 @@ }; version = "0.4.2"; }; + http-accept = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "09m1facypsdjynfwrcv19xcb1mqg8z6kk31g8r33pfxzh838c9n6"; + type = "gem"; + }; + version = "1.7.0"; + }; http-cookie = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0lr2yk5g5vvf9nzlmkn3p7mhh9mn55gpdc7kl2w21xs46fgkjynb"; + sha256 = "06dvmngd4hwrr6k774i1h6c50h2l8nww9f1id0wvrvi72l6yd99q"; type = "gem"; }; - version = "1.0.7"; + version = "1.1.0"; }; "http_parser.rb" = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1gj4fmls0mf52dlr928gaq0c0cb0m3aqa9kaa6l0ikl2zbqk42as"; + sha256 = "0yh924g697spcv4hfigyxgidhyy6a7b9007rnac57airbcadzs4s"; type = "gem"; }; - version = "0.8.0"; + version = "0.8.1"; }; httpclient = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "19mxmvghp7ki3klsxwrlwr431li7hm1lczhhj8z4qihl2acy8l99"; + sha256 = "1j4qwj1nv66v3n9s4xqf64x2galvjm630bwa5xngicllwic5jr2b"; type = "gem"; }; - version = "2.8.3"; + version = "2.9.0"; }; i18n = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0k31wcgnvcvd14snz0pfqj976zv6drfsnq6x8acz10fiyms9l8nw"; + sha256 = "1994i044vdmzzkyr76g8rpl1fq1532wf0sb21xg5r1ilj5iphmr8"; type = "gem"; }; - version = "1.14.6"; + version = "1.14.8"; }; io-console = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "08d2lx42pa8jjav0lcjbzfzmw61b8imxr9041pva8xzqabrczp7h"; + sha256 = "1k0lk3pwadm2myvpg893n8jshmrf2sigrd4ki15lymy7gixaxqyn"; type = "gem"; }; - version = "0.7.2"; + version = "0.8.2"; + }; + ipaddr = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0zjk58qc9mqwinprrvahvawhd4mq920z085pxhclmzykzmlnybq8"; + type = "gem"; + }; + version = "1.2.8"; }; irb = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "158ca10kj3qqnql5g8f1g2arsnhgdl79mg74manpf8ldkwjjn3n8"; + sha256 = "01h8bdksg0cr8bw5dhlhr29ix33rp822jmshy6rdqz4lmk4mdgia"; type = "gem"; }; - version = "1.7.4"; + version = "1.16.0"; }; jmespath = { groups = [ "default" ]; @@ -684,10 +744,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0pkcvzvarzs5y87srla1m6rgng8mm7y4gnshlpawddsci3rlhd7b"; + sha256 = "01fmiz052cvnxgdnhb3qwcy88xbv7l3liz0fkvs5qgqqwjp0c1di"; type = "gem"; }; - version = "2.7.5"; + version = "2.18.0"; }; little-plugger = { groups = [ "default" ]; @@ -704,10 +764,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "05s008w9vy7is3njblmavrbdzyrwwc1fsziffdr58w9pwqj8sqfx"; + sha256 = "00q2zznygpbls8asz5knjvvj2brr3ghmqxgr83xnrdj4rk3xwvhr"; type = "gem"; }; - version = "1.6.6"; + version = "1.7.0"; }; logging = { groups = [ "default" ]; @@ -724,10 +784,20 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0ppp2cgli5avzk0z3dwnah6y65ymyr793yja28p2fs9vrci7986h"; + sha256 = "1rk0n13c9nmk8di2x5gqk5r04vf8bkp7ff6z0b44wsmc7fndfpnz"; type = "gem"; }; - version = "2.23.1"; + version = "2.25.0"; + }; + lru_redux = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "1yxghzg7476sivz8yyr9nkak2dlbls0b89vc2kg52k0nmg6d0wgf"; + type = "gem"; + }; + version = "1.1.0"; }; metasm = { groups = [ "default" ]; @@ -744,112 +814,122 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0bqil5zzak47zcvcndn90lvxq0rxqb63vm4md3h7l3920drwfg58"; + sha256 = "15ffx2xm9rvdpzx866z0cz6qig5knjdvndynwavdb804kd51pjpz"; type = "gem"; }; - version = "5.0.3"; + version = "5.0.5"; }; metasploit-credential = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1vf7kj428pcak7zm22vmbmy09hkmcgp8fz855il9wg6cdi1zxlr6"; + sha256 = "0fn91ylz0ji7yb7c8flgzxbfpjmvwz3a3gnp5c731l7klmzzgpjd"; type = "gem"; }; - version = "6.0.11"; + version = "6.0.16"; }; metasploit-framework = { groups = [ "default" ]; platforms = [ ]; source = { fetchSubmodules = false; - rev = "ce6990ff84c944186dfa104b3aa1edd98962b468"; - sha256 = "110n47a8cbk299glmpxmb4yfv0zlibgbmzc8lcbbar849zsssxn8"; + rev = "a8698e72f54049c520b47322b7d5e4df59110abc"; + sha256 = "1fii2g7pklvbr35g121wm7xyvmzq183v2pl21b76fswm5glb350n"; type = "git"; url = "https://github.com/rapid7/metasploit-framework"; }; - version = "6.4.53"; + version = "6.4.106"; }; metasploit-model = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0vn50jnvdanmqbjm9xmp0i4xwzc9g3c6g2c4b59i2bz47kwp1pi7"; + sha256 = "1rlp50vg4gwxm9vj6abln4837j40ynmbpkqaipwjscmkbk2pdjk7"; type = "gem"; }; - version = "5.0.2"; + version = "5.0.4"; }; metasploit-payloads = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0nxr3bs30h2dqmjll322zrgcrkam82k7y5s2l5mx2siy4s4xvlbv"; + sha256 = "07kr41hz8hiwqrysmql0vds0s503w7dykxbri4b6svyjfr9wmhr5"; type = "gem"; }; - version = "2.0.189"; + version = "2.0.237"; }; metasploit_data_models = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0gycp29xx68yyy0rynzd08zp7j0l3q8nqc2q9y3k67aqkf5b6pil"; + sha256 = "0dqvv58w47jbwrm1zmqgmm7z144afxv7s7jvgqkmzym5jz21pmbl"; type = "gem"; }; - version = "6.0.5"; + version = "6.0.11"; }; metasploit_payloads-mettle = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0fsnr4i0660nhlkq9iyy5x214l2ds3akf6jnngf2hlp8j01w1x4w"; + sha256 = "1cf4253l2225yika6av9pds5q2gl4ycvi6ddh07xzqcc1d7gm7iy"; type = "gem"; }; - version = "1.0.35"; + version = "1.0.45"; }; - method_source = { + mime-types = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1igmc3sq9ay90f8xjvfnswd1dybj1s3fi0dwd53inwsvqk4h24qq"; + sha256 = "0mjyxl7c0xzyqdqa8r45hqg7jcw2prp3hkp39mdf223g4hfgdsyw"; type = "gem"; }; - version = "1.1.0"; + version = "3.7.0"; + }; + mime-types-data = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0a27k4jcrx7pvb0p59fn1frh14iy087c2aygrdkmgwsrbshvqxpj"; + type = "gem"; + }; + version = "3.2025.0924"; }; mini_portile2 = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1q1f2sdw3y3y9mnym9dhjgsjr72sq975cfg5c4yx7gwv8nmzbvhk"; + sha256 = "12f2830x7pq3kj0v8nz0zjvaw02sv01bqs1zwdrc04704kwcgmqc"; type = "gem"; }; - version = "2.8.7"; + version = "2.8.9"; }; minitest = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1n1akmc6bibkbxkzm1p1wmfb4n9vv397knkgz0ffykb3h1d7kdix"; + sha256 = "1fslin1vyh60snwygx8jnaj4kwhk83f3m0v2j2b7bsg2917wfm3q"; type = "gem"; }; - version = "5.25.1"; + version = "6.0.1"; }; mqtt = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "14iacsn0l8kl5pw9giaz2p3i06dwwj0mad9m0949bl5g8g35vsb3"; + sha256 = "0fyy6ybrm2bgj1nvmh6q9a9sa5sa2hcqvav8789hi13k7cjkkhaj"; type = "gem"; }; - version = "0.6.0"; + version = "0.7.0"; }; msgpack = { groups = [ "default" ]; @@ -866,30 +946,30 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0pb1g1y3dsiahavspyzkdy39j4q377009f6ix0bh1ag4nqw43l0z"; + sha256 = "1drisvysgvnjlz49a0qcbs294id6mvj3i8iik5rvym68ybwfzvvs"; type = "gem"; }; - version = "1.15.0"; + version = "1.19.1"; }; mustermann = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "123ycmq6pkivv29bqbv79jv2cs04xakzd0fz1lalgvfs5nxfky6i"; + sha256 = "08ma2fmxlm6i7lih4mc3har2fzsbj1pl4hhva65kljf6nfvdryl5"; type = "gem"; }; - version = "3.0.3"; + version = "3.0.4"; }; mutex_m = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1ma093ayps1m92q845hmpk0dmadicvifkbf05rpq9pifhin0rvxn"; + sha256 = "0l875dw0lk7b2ywa54l0wjcggs94vb7gs8khfw9li75n2sn09jyg"; type = "gem"; }; - version = "0.2.0"; + version = "0.3.0"; }; nessus_rest = { groups = [ "default" ]; @@ -901,25 +981,35 @@ }; version = "0.1.6"; }; + net-http = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "15k96fj6qwbaiv6g52l538ass95ds1qwgynqdridz29yqrkhpfi5"; + type = "gem"; + }; + version = "0.9.1"; + }; net-imap = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "182ap7y5ysmr1xqy23ygssz3as1wcy3r5qcdm1whd1n1yfc1aa5q"; + sha256 = "1imc50a9ic3ynsl3k0japhmb0ggrgp2c186cfqbcclv892nsrjh8"; type = "gem"; }; - version = "0.5.0"; + version = "0.6.2"; }; net-ldap = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0g9gz39bs2iy4ky4fhjphimqd9m9wdsaz50anxgwg3yjrff3famy"; + sha256 = "0wjkrvcwnxa6ggq0nfz004f1blm1c67fv7c6614sraak0wshn25j"; type = "gem"; }; - version = "0.19.0"; + version = "0.20.0"; }; net-protocol = { groups = [ "default" ]; @@ -946,10 +1036,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0amlhz8fhnjfmsiqcjajip57ici2xhw089x7zqyhpk51drg43h2z"; + sha256 = "0dh7nzjp0fiaqq1jz90nv4nxhc2w359d7c199gmzq965cfps15pd"; type = "gem"; }; - version = "0.5.0"; + version = "0.5.1"; }; net-ssh = { groups = [ "default" ]; @@ -961,6 +1051,16 @@ }; version = "7.3.0"; }; + netrc = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0gzfmcywp1da8nzfqsql2zqi648mfnx6qwkig3cv36n9m0yy676y"; + type = "gem"; + }; + version = "0.11.0"; + }; network_interface = { groups = [ "default" ]; platforms = [ ]; @@ -986,10 +1086,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1a9www524fl1ykspznz54i0phfqya4x45hqaz67in9dvw1lfwpfr"; + sha256 = "18fwy5yqnvgixq3cn0h63lm8jaxsjjxkmj8rhiv8wpzv9271d43c"; type = "gem"; }; - version = "2.7.4"; + version = "2.7.5"; }; nokogiri = { dependencies = [ @@ -1000,10 +1100,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "15gysw8rassqgdq3kwgl4mhqmrgh7nk2qvrcqp4ijyqazgywn6gq"; + sha256 = "15anyh2ir3kdji93kw770xxwm5rspn9rzx9b9zh1h9gnclcd4173"; type = "gem"; }; - version = "1.16.7"; + version = "1.19.0"; }; nori = { groups = [ "default" ]; @@ -1020,30 +1120,40 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "15lvy06h276jryxg19258b2yqaykf0567sp0n16yipywhbp94860"; + sha256 = "1s14kbjfm9vdvcrwqdarfdbfsjqs1jxpglp60plvfdvnkd9rmsc2"; type = "gem"; }; - version = "4.25.1"; + version = "10.0.0"; + }; + openssl = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0v0grpg9gi59zr3imxy1745k9rp3dd095mkir8gvxi69blhh2kkz"; + type = "gem"; + }; + version = "3.3.2"; }; openssl-ccm = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1mqr538wcfjc1q9qxsc2pz0s81kw1f3xk7k1qy903n5b3bh9vri3"; + sha256 = "19x7fdvfp2nw5nrglb65p5gi5y9lw07qh9g0z9q9fiyzdhpp80dy"; type = "gem"; }; - version = "1.2.3"; + version = "1.3.0"; }; openssl-cmac = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1mml6105j6ryd9d019gbwzkdjmvycjlxxld0qzg9vs70f1qdihcc"; + sha256 = "0i6i06finmlpc7y9ianf0mq9h8m6957n0nz2b6i7rdfwh8d72z85"; type = "gem"; }; - version = "2.0.2"; + version = "2.1.0"; }; openvas-omp = { groups = [ "default" ]; @@ -1060,10 +1170,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "05xqijcf80sza5pnlp1c8whdaay8x5dc13214ngh790zrizgp8q9"; + sha256 = "04nrir9wdpc4izqwqbysxyly8y7hsfr4fsv69rw91lfi9d5fv8lm"; type = "gem"; }; - version = "0.6.1"; + version = "0.6.3"; }; packetfu = { groups = [ "default" ]; @@ -1075,6 +1185,16 @@ }; version = "2.0.0"; }; + parallel = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0c719bfgcszqvk9z47w2p8j2wkz5y35k48ywwas5yxbbh3hm3haa"; + type = "gem"; + }; + version = "1.27.0"; + }; patch_finder = { groups = [ "default" ]; platforms = [ ]; @@ -1100,40 +1220,80 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0n0pp7blk3np3fqsb54l34fsamrww80cp3dhlhskfayg7542mrv1"; + sha256 = "1kk8f1f5kkdwsbskv0vikcwx5xaivv19y9zl97x1fcaam23akihq"; type = "gem"; }; - version = "2.12.0"; + version = "2.15.1"; }; pg = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1p2gqqrm895fzr9vi8d118zhql67bm8ydjvgqbq1crdnfggzn7kn"; + sha256 = "16caca7lcz5pwl82snarqrayjj9j7abmxqw92267blhk7rbd120k"; type = "gem"; }; - version = "1.5.9"; + version = "1.6.3"; + }; + pp = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "1xlxmg86k5kifci1xvlmgw56x88dmqf04zfzn7zcr4qb8ladal99"; + type = "gem"; + }; + version = "0.6.3"; + }; + prettyprint = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "14zicq3plqi217w6xahv7b8f7aj5kpxv1j1w98344ix9h5ay3j9b"; + type = "gem"; + }; + version = "0.2.0"; + }; + prism = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "00silqnlzzm97gn21lm39q95hjn058waqky44j25r67p9drjy1hh"; + type = "gem"; + }; + version = "1.7.0"; + }; + psych = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0x0r3gc66abv8i4dw0x0370b5hrshjfp6kpp7wbp178cy775fypb"; + type = "gem"; + }; + version = "5.3.1"; }; public_suffix = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0vqcw3iwby3yc6avs1vb3gfd0vcp2v7q310665dvxfswmcf4xm31"; + sha256 = "0mx84s7gn3xabb320hw8060v7amg6gmcyyhfzp0kawafiq60j54i"; type = "gem"; }; - version = "6.0.1"; + version = "7.0.2"; }; puma = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0gml1rixrfb0naciq3mrnqkpcvm9ahgps1c04hzxh4b801f69914"; + sha256 = "1pa9zpr51kqnsq549p6apvnr95s9flx6bnwqii24s8jg2b5i0p74"; type = "gem"; }; - version = "6.4.3"; + version = "7.1.0"; }; racc = { groups = [ "default" ]; @@ -1150,10 +1310,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0ax778fsfvlhj7c11n0d1wdcb8bxvkb190a9lha5d91biwzyx9g4"; + sha256 = "0fgpa9qm5qgza69fjnagg2alxs2wmj41aq7z4kj5yib50wpzgqhl"; type = "gem"; }; - version = "2.2.10"; + version = "2.2.21"; }; rack-protection = { groups = [ "default" ]; @@ -1165,55 +1325,75 @@ }; version = "3.2.0"; }; + rack-session = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0xhxhlsz6shh8nm44jsmd9276zcnyzii364vhcvf0k8b8bjia8d0"; + type = "gem"; + }; + version = "1.0.2"; + }; rack-test = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1ysx29gk9k14a14zsp5a8czys140wacvp91fja8xcja0j1hzqq8c"; + sha256 = "0qy4ylhcfdn65a5mz2hly7g9vl0g13p5a0rmm6sc0sih5ilkcnh0"; type = "gem"; }; - version = "2.1.0"; + version = "2.2.0"; + }; + rackup = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0jf2ncj2nx56vh96hh2nh6h4r530nccxh87z7c2f37wq515611ms"; + type = "gem"; + }; + version = "1.0.1"; }; rails-dom-testing = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0fx9dx1ag0s1lr6lfr34lbx5i1bvn3bhyf3w3mx6h7yz90p725g5"; + sha256 = "07awj8bp7jib54d0khqw391ryw8nphvqgw4bb12cl4drlx9pkk4a"; type = "gem"; }; - version = "2.2.0"; + version = "2.3.0"; }; rails-html-sanitizer = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1pm4z853nyz1bhhqr7fzl44alnx4bjachcr6rh6qjj375sfz3sc6"; + sha256 = "0q55i6mpad20m2x1lg5pkqfpbmmapk0sjsrvr1sqgnj2hb5f5z1m"; type = "gem"; }; - version = "1.6.0"; + version = "1.6.2"; }; railties = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1fcn0ix814074gqicc0k1178f7ahmysiv3pfq8g00phdwj0p3w0g"; + sha256 = "08h44mkf91861agp7xw778gqpf5mppydsfgphgkj7wp6pyk11c3f"; type = "gem"; }; - version = "7.0.8.6"; + version = "7.2.3"; }; rake = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "17850wcwkgi30p7yqh60960ypn7yibacjjha0av78zaxwvd3ijs6"; + sha256 = "175iisqb211n0qbfyqd8jz2g01q6xj038zjf4q0nm8k6kz88k7lc"; type = "gem"; }; - version = "13.2.1"; + version = "13.3.1"; }; rasn1 = { groups = [ "default" ]; @@ -1235,225 +1415,255 @@ }; version = "0.5.5"; }; + rdoc = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "1yc1xa3wckwwan518qii22jagqzlr5bypflx3nkvpdqr3ncd1qyz"; + type = "gem"; + }; + version = "7.0.3"; + }; recog = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1h10ahhirxwffsw0g7lyzj1wldna136z11iyskiwib1h9whqihc5"; + sha256 = "1s99rxjfd52yvnpna85b1yv7f7wcgr8ffirc3m19n5v4mi04da8i"; type = "gem"; }; - version = "3.1.11"; + version = "3.1.25"; }; redcarpet = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1sg9sbf9pm91l7lac7fs4silabyn0vflxwaa2x3lrzsm0ff8ilca"; + sha256 = "0iglapqs4av4za9yfaac0lna7s16fq2xn36wpk380m55d8792i6l"; type = "gem"; }; - version = "3.6.0"; + version = "3.6.1"; }; reline = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0rl1jmxs7pay58l7lkxkrn6nkdpk52k8rvnfwqsd1swjlxlwjq0n"; + sha256 = "0d8q5c4nh2g9pp758kizh8sfrvngynrjlm0i1zn3cnsnfd4v160i"; type = "gem"; }; - version = "0.5.10"; + version = "0.6.3"; + }; + rest-client = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "1qs74yzl58agzx9dgjhcpgmzfn61fqkk33k1js2y5yhlvc5l19im"; + type = "gem"; + }; + version = "2.1.0"; }; rex-arch = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0pl2kqqsy0gxwdlni1vr6hkqcjyncxnss5lrv35i3f0y5gnjf087"; + sha256 = "1b0sa6p171zm5c8axzliipmkk7yq73g3dz8kq1zmqj7v3birbiaf"; type = "gem"; }; - version = "0.1.16"; + version = "0.1.18"; }; rex-bin_tools = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0hdkjv9g04d9k6mq1j9fxg9l6ifzym5i204majhzb9hqkfgslw5p"; + sha256 = "1ih0n4cd44jj8n939rxbfsjfa9z62xj9risvvnki910gzv7mgx4j"; type = "gem"; }; - version = "0.1.9"; + version = "0.1.12"; }; rex-core = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0468gxcwhzp5y7lahkf0cg4vyy01wb2fk6w1rx4fgh1l9330a64b"; + sha256 = "09px9sp412qr226ngm7gik9nnd1m9bg9wbsanr7xhn80w71wn5b4"; type = "gem"; }; - version = "0.1.32"; + version = "0.1.35"; }; rex-encoder = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1rlpxmw4amqf04vn14my6aim5iya0wh5gpi1hrvnqq9xnhkpk2qs"; + sha256 = "1b1m0qmjv62npd1m8q8p9w0857pix11mwbl8wxgylc43b03m2klx"; type = "gem"; }; - version = "0.1.7"; + version = "0.1.8"; }; rex-exploitation = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1c4m82vgdp3zp7slcfsv0l30h4ij8fsvqv026xny2nxw514hxk0c"; + sha256 = "1lpafc8qivps37wc35pklpx5pzcp0prs9201sb5rv7l7x7a4fybr"; type = "gem"; }; - version = "0.1.40"; + version = "0.1.44"; }; rex-java = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1ynqlq1xqnw9asqnkszbjds972xm98fz92yq5ywrxz7p3x66ybbp"; + sha256 = "0l5q63yhr25di2g79mjgnkwwhwxwqkbp6wbjybn5qqcbspxp66pm"; type = "gem"; }; - version = "0.1.7"; + version = "0.1.8"; }; rex-mime = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0gi2xidygk6j7zwml6225d221bc3s7n2if5g1v1w45ksl19499b3"; + sha256 = "140zxkpbpgxd7ci4xf5qbkmc2imqhhkjw59jz9yqjcl6cb8y5gyv"; type = "gem"; }; - version = "0.1.8"; + version = "0.1.12"; }; rex-nop = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1vavmdzv5aw20izhrbf2f180dwvrraw8i9bh4yz5gsapjizcqrhy"; + sha256 = "0blajyinziiab8x4a2ghylrv3f111ya4j2nx0qvjcraxyzzgaasj"; type = "gem"; }; - version = "0.1.3"; + version = "0.1.4"; }; rex-ole = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0vbiqg120gqd0kfa7kw2jg4jy4y2favsm6kqvysxfjfwp6vfycl6"; + sha256 = "1gr6yli7hb4v4sgzm7997xwccv0ij5yyjfxa0imsv5xwkkqvqxv8"; type = "gem"; }; - version = "0.1.8"; + version = "0.1.9"; }; rex-powershell = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1p1m6hxmlfdiq2x5b5h54k5052si1ky8dh1r9kr9qlq38a94l2n4"; + sha256 = "0i6s7iayy4ambrc7i1s9sm1h1y6khww4ppahawfkgrhb5cfcr5zj"; type = "gem"; }; - version = "0.1.100"; + version = "0.1.103"; }; rex-random_identifier = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0bd7narnxbdadm61g22gvwfxq2cd38qk5kg0yjh7yfh1a1q6z53d"; + sha256 = "1awnn8rc7g9kjxwfx4xkplhvi2vxxpjf2m9d2yj9s8firh9wlyws"; type = "gem"; }; - version = "0.1.13"; + version = "0.1.21"; }; rex-registry = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1sbcs0lkl8b57d5xdlfffrpwxpvvwfcfbgzqc9p7xgmqb1xl2s62"; + sha256 = "07kvpxkg37vi8z7g3sj12rx605vg4v8gsp05ns124a1980mmysw7"; type = "gem"; }; - version = "0.1.5"; + version = "0.1.6"; }; rex-rop_builder = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1gbc9sssyzbq1s2nk0ajc9y0x4v10cp4za4f4gbssrjw4d3zf9dl"; + sha256 = "0i5i5sbij7zwjzjkwnf1rlklpi03r0ibzc3c9n9kv1x5wcn04p04"; type = "gem"; }; - version = "0.1.5"; + version = "0.1.6"; }; rex-socket = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1qmj5pya6ssghi3dfdmrykkbazhqlhq86ahwijdvrfr2q3g76p86"; + sha256 = "11cwgr4nr6jm62as4qkmhgq7wf9v1s5r9g92hkf6586i5xalwz9k"; type = "gem"; }; - version = "0.1.57"; + version = "0.1.64"; }; rex-sslscan = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0plcz9jwpg1yw206ljky3mk6dk31j24jdmcpnky5k9m2npsp0jlf"; + sha256 = "183rnr3y9pfq9q8v7a72nm97nqhcks6skx4z7y569nn506f1k7v7"; type = "gem"; }; - version = "0.1.10"; + version = "0.1.13"; }; rex-struct2 = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1p6afmicm1adlngp196604rrgb1nsly10y8nphva5h5vncismscz"; + sha256 = "1k8pv062kg7pc3d7yz4vywkwvs321rsbq63piiyzcirkillwn29d"; type = "gem"; }; - version = "0.1.4"; + version = "0.1.5"; }; rex-text = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "01d0wp4m1qlrfccv5w64bzp04pw36sinvdzmjzvq30sykbdlgjsv"; + sha256 = "1z5cawbl959hf9ll9m2dm5zj2cra0isgl82d7vrih38ja31zwpdh"; type = "gem"; }; - version = "0.2.59"; + version = "0.2.61"; }; rex-zip = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "15jjb3ldndi9p5x7pb3dllkrm4cy3p7dccy4rxz0vh5m4vlqbhsd"; + sha256 = "0iyvf7hi2327hl4a3vssb6s7nxglcwmlm39rklrraz0xqwpmrbla"; type = "gem"; }; - version = "0.1.5"; + version = "0.1.6"; }; rexml = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1j9p66pmfgxnzp76ksssyfyqqrg7281dyi3xyknl3wwraaw7a66p"; + sha256 = "1jmbf6lf7pcyacpb939xjjpn1f84c3nw83dy3p1lwjx0l2ljfif7"; type = "gem"; }; - version = "3.3.9"; + version = "3.4.1"; + }; + rinda = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "1yh31fmf30z5vzvcvsm0w871acqfhr022821pj08xdy9ffpncidv"; + type = "gem"; + }; + version = "0.2.0"; }; rkelly-remix = { groups = [ "default" ]; @@ -1480,10 +1690,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1g6wcnzqsbqg2q1lfbhlz4z9rq306az2xx8kk8dnr60dziy1a5b5"; + sha256 = "1l0gfxxpz3yry94q11vmk8s3hb9wmzghcdc12b90yhzk8szi6bwv"; type = "gem"; }; - version = "4.1.0"; + version = "4.2.1"; }; ruby-rc4 = { groups = [ "default" ]; @@ -1510,10 +1720,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1vj22vmrygib1maa8bwh4xfqnvamh5pk39cffqv1mp8q5gv26vc7"; + sha256 = "0vx0aky54jpjx21yngrprxib0dyyfnax4j526amva5ha7vjw9fyy"; type = "gem"; }; - version = "3.3.11"; + version = "3.3.16"; }; rubyntlm = { groups = [ "default" ]; @@ -1530,20 +1740,30 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0grps9197qyxakbpw02pda59v45lfgbgiyw48i0mq9f2bn9y6mrz"; + sha256 = "0g2vx9bwl9lgn3w5zacl52ax57k4zqrsxg05ixf42986bww9kvf0"; type = "gem"; }; - version = "2.3.2"; + version = "3.2.2"; }; sawyer = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1jks1qjbmqm8f9kvwa81vqj39avaj9wdnzc531xm29a55bb74fps"; + sha256 = "0hayryyz46nlkcb6j0ij0kxq6i3ryiigwfc6ccvp0108hhlij3qd"; type = "gem"; }; - version = "0.9.2"; + version = "0.9.3"; + }; + securerandom = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "1cd0iriqfsf1z91qg271sm88xjnfd92b832z49p1nd542ka96lfc"; + type = "gem"; + }; + version = "0.4.1"; }; simpleidn = { groups = [ "default" ]; @@ -1585,6 +1805,16 @@ }; version = "3.0.0"; }; + stringio = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "07mfqb40b2wh53k33h91zva78f9zwcdnl85jiq74wnaw2wa6wiak"; + type = "gem"; + }; + version = "3.1.1"; + }; strptime = { groups = [ "default" ]; platforms = [ ]; @@ -1630,40 +1860,50 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1nmymd86a0vb39pzj2cwv57avdrl6pl3lf5bsz58q594kqxjkw7f"; + sha256 = "0wsy88vg2mazl039392hqrcwvs5nb9kq8jhhrrclir2px1gybag3"; type = "gem"; }; - version = "1.3.2"; + version = "1.5.0"; }; tilt = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "0kds7wkxmb038cwp6ravnwn8k65ixc68wpm8j5jx5bhx8ndg4x6z"; + sha256 = "0w27v04d7rnxjr3f65w1m7xyvr6ch6szjj2v5wv1wz6z5ax9pa9m"; type = "gem"; }; - version = "2.4.0"; + version = "2.6.1"; }; timeout = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "16mvvsmx90023wrhf8dxc1lpqh0m8alk65shb7xcya6a9gflw7vg"; + sha256 = "1bz11pq7n1g51f50jqmgyf5b1v64p1pfqmy5l21y6vpr37b2lwkd"; type = "gem"; }; - version = "0.4.1"; + version = "0.6.0"; + }; + tsort = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "17q8h020dw73wjmql50lqw5ddsngg67jfw8ncjv476l5ys9sfl4n"; + type = "gem"; + }; + version = "0.2.0"; }; ttfunk = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1ji0kn8jkf1rpskv3ijzxvqwixg4p6sk8kg0vmwyjinci7jcgjx7"; + sha256 = "15iaxz9iak5643bq2bc0jkbjv8w2zn649lxgvh5wg48q9d4blw13"; type = "gem"; }; - version = "1.8.0"; + version = "1.7.0"; }; tzinfo = { groups = [ "default" ]; @@ -1680,10 +1920,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1cw6xv9a525mcs7202bq9768aic1dwx353prm1bss4fp2nq24a3j"; + sha256 = "0qlm97fqcwhvfa7jg2gnq8la3mnk617b5bwsc460mi75wpqy4imm"; type = "gem"; }; - version = "1.2024.2"; + version = "1.2025.3"; }; unix-crypt = { groups = [ "default" ]; @@ -1695,6 +1935,26 @@ }; version = "1.3.1"; }; + uri = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "1ijpbj7mdrq7rhpq2kb51yykhrs2s54wfs6sm9z3icgz4y6sb7rp"; + type = "gem"; + }; + version = "1.1.1"; + }; + useragent = { + groups = [ "default" ]; + platforms = [ ]; + source = { + remotes = [ "https://rubygems.org" ]; + sha256 = "0i1q2xdjam4d7gwwc35lfnz0wyyzvnca0zslcfxm9fabml9n83kh"; + type = "gem"; + }; + version = "0.16.11"; + }; warden = { groups = [ "default" ]; platforms = [ ]; @@ -1710,20 +1970,20 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "089gy5494j560b242vi173wnbj2913hwlwnjkpzld58r96ilc5s3"; + sha256 = "0ca1hr2rxrfw7s613rp4r4bxb454i3ylzniv9b9gxpklqigs3d5y"; type = "gem"; }; - version = "1.8.2"; + version = "1.9.2"; }; websocket-driver = { groups = [ "default" ]; platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1nyh873w4lvahcl8kzbjfca26656d5c6z3md4sbqg5y1gfz0157n"; + sha256 = "0qj9dmkmgahmadgh88kydb7cv15w13l1fj3kk9zz28iwji5vl3gd"; type = "gem"; }; - version = "0.7.6"; + version = "0.8.0"; }; websocket-extensions = { groups = [ "default" ]; @@ -1790,9 +2050,9 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "10cpfdswql21vildiin0q7drg5zfzf2sahnk9hv3nyzzjqwj2bdx"; + sha256 = "12zcvhzfnlghzw03czy2ifdlyfpq0kcbqcmxqakfkbxxavrr1vrb"; type = "gem"; }; - version = "2.6.18"; + version = "2.7.4"; }; } diff --git a/pkgs/tools/security/metasploit/update.sh b/pkgs/tools/security/metasploit/update.sh index 45f820d7870a..76d7cf0ca945 100755 --- a/pkgs/tools/security/metasploit/update.sh +++ b/pkgs/tools/security/metasploit/update.sh @@ -9,7 +9,7 @@ echo "Updating metasploit to $latest" sed -i "s#refs/tags/.*#refs/tags/$latest\"#" Gemfile -bundler install +BUNDLE_FORCE_RUBY_PLATFORM=true bundle lock --update bundix sed -i '/[ ]*dependencies =/d' gemset.nix diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 455034d43cc9..d4f5aad043eb 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -267,6 +267,7 @@ mapAliases { _2048-cli-curses = throw "'_2048-cli-curses' has been removed due to archived upstream. Consider using '_2048-in-terminal' instead."; # Added 2025-06-07 _2048-cli-terminal = throw "'_2048-cli-curses' has been removed due to archived upstream. Consider using '_2048-in-terminal' instead."; # Added 2025-06-07 a4term = throw "'a4term' has been renamed to/replaced by 'a4'"; # Converted to throw 2025-10-27 + abbreviate = throw "'abbreviate' has been removed, as it has been unmaintained upstream since July 2024"; # Added 2026-01-01 abseil-cpp_202301 = throw "abseil-cpp_202301 has been removed as it was unused in tree"; # Added 2025-08-09 abseil-cpp_202501 = throw "abseil-cpp_202501 has been removed as it was unused in tree"; # Added 2025-09-15 adjustor = throw "adjustor has been removed as it part of the 'handheld-daemon' package"; # Added 2025-11-16 @@ -288,6 +289,7 @@ mapAliases { androidndkPkgs_24 = throw "androidndkPkgs_24 has been removed, as it is EOL"; # Added 2025-08-09 androidndkPkgs_25 = throw "androidndkPkgs_25 has been removed, as it is EOL"; # Added 2025-08-09 androidndkPkgs_26 = throw "androidndkPkgs_26 has been removed, as it is EOL"; # Added 2025-08-09 + anew = throw "'anew' has been removed, as it has been unmaintained upstream since March 2022"; # Added 2026-01-01 ansible-language-server = throw "ansible-language-server was removed, because it was unmaintained in nixpkgs."; # Added 2025-09-24 ansible-later = throw "ansible-later has been discontinued. The author recommends switching to ansible-lint"; # Added 2025-08-24 ansible_2_16 = throw "ansible_2_16 has been removed, as it is EOL"; # Added 2025-11-10 @@ -318,8 +320,10 @@ mapAliases { asio_1_10 = throw "'asio_1_10' has been removed as it is outdated and unused. Use 'asio' instead"; # Added 2025-12-03 asitop = throw "'asitop' has been renamed to/replaced by 'macpm'"; # Converted to throw 2025-10-27 asterisk_18 = throw "asterisk_18: Asterisk 18 is end of life and has been removed"; # Added 2025-10-19 + astronomer = throw "'astronomer' has been removed, as it has been unmaintained upstream since August 2020"; # Added 2026-01-01 atlassian-cli = appfire-cli; # Added 2025-09-29 ats = throw "'ats' has been removed as it is unmaintained for 10 years and broken"; # Added 2025-05-17 + audio-recorder = throw "'audio-recorder' has been removed, as it is unmaintained upstream and broken. Consider using 'gnome-sound-recorder' or 'reco' instead"; # Added 2026-01-02 august = throw "'august' has been removed, as it has been unmaintained since august 2023"; # Added 2025-12-25 AusweisApp2 = throw "'AusweisApp2' has been renamed to/replaced by 'ausweisapp'"; # Converted to throw 2025-10-27 autoconf213 = throw "'autoconf213' has been removed in favor of 'autoconf'"; # Added 2025-07-21 @@ -398,6 +402,8 @@ mapAliases { cataract = throw "'cataract' has been removed due to a lack of maintenace"; # Added 2025-08-25 cataract-unstable = throw "'cataract-unstable' has been removed due to a lack of maintenace"; # Added 2025-08-25 catch = throw "catch has been removed. Please upgrade to catch2 or catch2_3"; # Added 2025-08-21 + catnip-gtk4 = throw "'catnip-gtk4' has been removed, as it has been unmaintained upstream since June 2023, use cavasik or cavalier instead"; # Added 2026-01-01 + cdwe = throw "'cdwe' has been removed, as it has been unmaintained upstream since June 2023"; # Added 2026-01-01 cereal_1_3_0 = throw "cereal_1_3_0 has been removed as it was unused; use cereal intsead"; # Added 2025-09-12 cereal_1_3_2 = throw "cereal_1_3_2 is now the only version and has been renamed to cereal"; # Added 2025-09-12 certmgr-selfsigned = throw "'certmgr-selfsigned' has been renamed to/replaced by 'certmgr'"; # Converted to throw 2025-10-27 @@ -449,6 +455,7 @@ mapAliases { clang_17 = throw "clang_17 has been removed, as it is unmaintained and obsolete"; # Added 2025-08-09 clasp = throw "'clasp' has been renamed to/replaced by 'clingo'"; # Converted to throw 2025-10-27 cli-visualizer = throw "'cli-visualizer' has been removed as the upstream repository is gone"; # Added 2025-06-05 + clima = throw "'clima' has been removed, as it has been unmaintained upstream since December 2024, use glow instead"; # Added 2026-01-01 clipbuzz = throw "clipbuzz has been removed, as it does not build with supported Zig versions"; # Added 2025-08-09 cloudlogoffline = throw "cloudlogoffline has been removed"; # Added 2025-05-18 cockroachdb-bin = throw "'cockroachdb-bin' has been renamed to/replaced by 'cockroachdb'"; # Converted to throw 2025-10-27 @@ -1269,6 +1276,7 @@ mapAliases { ossec-server = throw "'ossec-server' has been removed due to lack of maintenance"; # Added 2025-11-08 overrideLibcxx = throw "overrideLibcxx has been removed, as it was no longer used and Darwin now uses libc++ from the latest SDK; see the Nixpkgs 25.11 release notes for details"; # Added 2025-09-15 overrideSDK = throw "overrideSDK has been removed as it was a legacy compatibility stub. See for migration instructions"; # Added 2025-08-04 + pactorio = throw "'pactorio' has been removed, as it has been unmaintained upstream since February 2024"; # Added 2026-01-01 pacup = throw "'pacup' has been renamed to/replaced by 'perlPackages.pacup'"; # Converted to throw 2025-10-27 PageEdit = throw "'PageEdit' has been renamed to/replaced by 'pageedit'"; # Converted to throw 2025-10-27 pal = throw "pal has been removed, as it was broken"; # Added 2025-08-25 @@ -1695,6 +1703,7 @@ mapAliases { vdirsyncerStable = throw "'vdirsyncerStable' has been renamed to/replaced by 'vdirsyncer'"; # Converted to throw 2025-10-27 ventoy-bin = throw "'ventoy-bin' has been renamed to/replaced by 'ventoy'"; # Converted to throw 2025-10-27 ventoy-bin-full = throw "'ventoy-bin-full' has been renamed to/replaced by 'ventoy-full'"; # Converted to throw 2025-10-27 + verco = throw "'verco' has been removed, as it has been unmaintained upstream since November 2023"; # Added 2026-01-01 verilog = throw "'verilog' has been renamed to/replaced by 'iverilog'"; # Converted to throw 2025-10-27 veriT = verit; # Added 2025-08-21 video2midi = throw "'video2midi' has been removed due to lack of maintenance"; # Added 2026-01-01 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ebed7cfafd07..0941aef14f3b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8420,8 +8420,6 @@ with pkgs; xcb-util-cursor = xorg.xcbutilcursor; xcb-util-cursor-HEAD = callPackage ../development/libraries/xcb-util-cursor/HEAD.nix { }; - xcbutilxrm = callPackage ../servers/x11/xorg/xcb-util-xrm.nix { }; - xgboostWithCuda = xgboost.override { cudaSupport = true; }; zlib = callPackage ../development/libraries/zlib { @@ -9427,10 +9425,6 @@ with pkgs; virtualenv-clone = with python3Packages; toPythonApplication virtualenv-clone; - quartz-wm = callPackage ../servers/x11/quartz-wm { - stdenv = clangStdenv; - }; - xorg = let # Use `lib.callPackageWith __splicedPackages` rather than plain `callPackage` diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index 1b90e4bfdb66..3318b17ba926 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -44,11 +44,7 @@ pkgs.releaseTools.sourceTarball { checkPhase = '' echo "generating packages.json" - ( - echo -n '{"version":2,"packages":' - NIX_STATE_DIR=$TMPDIR NIX_PATH= nix-env -f $src -qa --meta --json --show-trace --arg config 'import ${./packages-config.nix}' - echo -n '}' - ) | sed "s|$src/||g" | jq -c > packages.json + NIX_STATE_DIR=$TMPDIR NIX_PATH= nix-instantiate --eval --raw --expr "import $src/pkgs/top-level/packages-info.nix {}" | sed "s|$src/||g" | jq -c > packages.json # Arbitrary number. The index has ~115k packages as of April 2024. if [ $(jq -r '.packages | length' < packages.json) -lt 100000 ]; then diff --git a/pkgs/top-level/packages-config.nix b/pkgs/top-level/packages-config.nix index cb09d08eed98..afa74ac4eec1 100644 --- a/pkgs/top-level/packages-config.nix +++ b/pkgs/top-level/packages-config.nix @@ -2,6 +2,7 @@ { # Ensures no aliases are in the results. allowAliases = false; + allowVariants = false; # Enable recursion into attribute sets that nix-env normally doesn't look into # so that we can get a more complete picture of the available packages for the diff --git a/pkgs/top-level/packages-info.nix b/pkgs/top-level/packages-info.nix new file mode 100644 index 000000000000..cfa10484822d --- /dev/null +++ b/pkgs/top-level/packages-info.nix @@ -0,0 +1,52 @@ +{ + trace ? false, +}: + +let + pkgs = import ../.. { config = import ./packages-config.nix; }; + inherit (pkgs) lib; + generateInfo = + path: value: + let + result = + if path == [ "AAAAAASomeThingsFailToEvaluate" ] || !(lib.isAttrs value) then + [ ] + else if lib.isDerivation value then + [ + { + name = lib.showAttrPath path; + value = { + ${if value ? "meta" then "meta" else null} = value.meta; + ${if value ? "name" then "name" else null} = value.name; + ${if value ? "outputName" then "outputName" else null} = value.outputName; + ${if value ? "outputs" then "outputs" else null} = lib.listToAttrs ( + lib.map (x: { + name = x; + value = null; + }) value.outputs + ); + ${if value ? "pname" then "pname" else null} = value.pname; + ${if value ? "system" then "system" else null} = value.system; + ${if value ? "version" then "version" else null} = value.version; + }; + } + ] + else if value.recurseForDerivations or false then + lib.pipe value [ + (lib.mapAttrsToList ( + name: value: + lib.addErrorContext "while evaluating package set attribute path '${ + lib.showAttrPath (path ++ [ name ]) + }'" (generateInfo (path ++ [ name ]) value) + )) + lib.concatLists + ] + else + [ ]; + in + lib.traceIf trace "** ${lib.showAttrPath path}" (lib.deepSeq result result); +in +lib.strings.toJSON { + version = "2"; + packages = lib.listToAttrs (generateInfo [ ] (lib.recurseIntoAttrs pkgs)); +} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 2f3492e9628a..0378e92e1de0 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -488,6 +488,7 @@ mapAliases { Theano = throw "'Theano' has been renamed to/replaced by 'theano'"; # Converted to throw 2025-10-29 TheanoWithCuda = throw "'TheanoWithCuda' has been renamed to/replaced by 'theanoWithCuda'"; # Converted to throw 2025-10-29 TheanoWithoutCuda = throw "'TheanoWithoutCuda' has been renamed to/replaced by 'theanoWithoutCuda'"; # Converted to throw 2025-10-29 + threadpool = throw "'threadpool' has been removed, since it is obsolete"; # Added 2026-01-09 tikzplotlib = throw "tikzplotlib was removed because it is incompatible with recent versions of matplotlib and webcolors"; # added 2025-11-11 torchtnt-nightly = throw "'torchtnt-nightly' was only needed as a test dependency for 'torcheval', but these tests are no longer run"; # added 2025-11-12 torrent_parser = throw "'torrent_parser' has been renamed to/replaced by 'torrent-parser'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3cc9852d57ac..7bf7e72fe977 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17614,9 +17614,7 @@ self: super: with self; { solidpython2 = callPackage ../development/python-modules/solidpython2 { }; - solo-python = disabledIf (!pythonAtLeast "3.6") ( - callPackage ../development/python-modules/solo-python { } - ); + solo-python = callPackage ../development/python-modules/solo-python { }; somajo = callPackage ../development/python-modules/somajo { }; @@ -18861,8 +18859,6 @@ self: super: with self; { threadloop = callPackage ../development/python-modules/threadloop { }; - threadpool = callPackage ../development/python-modules/threadpool { }; - threadpoolctl = callPackage ../development/python-modules/threadpoolctl { }; threat9-test-bed = callPackage ../development/python-modules/threat9-test-bed { };