Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
43809f19 136fe626

+1773 -3929
+13 -8
maintainers/maintainer-list.nix
··· 3368 3368 githubId = 115711; 3369 3369 name = "bpaulin"; 3370 3370 }; 3371 + bpeetz = { 3372 + name = "Benedikt Peetz"; 3373 + email = "benedikt.peetz@b-peetz.de"; 3374 + matrix = "@soispha:vhack.eu"; 3375 + github = "bpeetz"; 3376 + githubId = 140968250; 3377 + keys = [ { fingerprint = "8321 ED3A 8DB9 99A5 1F3B F80F F268 2914 EA42 DE26"; } ]; 3378 + }; 3371 3379 Br1ght0ne = { 3372 3380 email = "brightone@protonmail.com"; 3373 3381 github = "Br1ght0ne"; ··· 15677 15685 githubId = 20619776; 15678 15686 name = "moni"; 15679 15687 }; 15688 + monkieeboi = { 15689 + name = "MonkieeBoi"; 15690 + github = "MonkieeBoi"; 15691 + githubId = 53400613; 15692 + }; 15680 15693 monsieurp = { 15681 15694 email = "monsieurp@gentoo.org"; 15682 15695 github = "monsieurp"; ··· 22016 22029 github = "SohamG"; 22017 22030 githubId = 7116239; 22018 22031 keys = [ { fingerprint = "E067 520F 5EF2 C175 3F60 50C0 BA46 725F 6A26 7442"; } ]; 22019 - }; 22020 - soispha = { 22021 - name = "Soispha"; 22022 - email = "soispha@vhack.eu"; 22023 - matrix = "@soispha:vhack.eu"; 22024 - github = "soispha"; 22025 - githubId = 132207423; 22026 - keys = [ { fingerprint = "9606 FC74 9FCE 1636 0723 D4AD A5E9 4010 C3A6 42AD"; } ]; 22027 22032 }; 22028 22033 solson = { 22029 22034 email = "scott@solson.me";
+2 -1
nixos/modules/tasks/network-interfaces-scripted.nix
··· 77 77 (hasAttr dev cfg.macvlans) || 78 78 (hasAttr dev cfg.sits) || 79 79 (hasAttr dev cfg.vlans) || 80 + (hasAttr dev cfg.greTunnels) || 80 81 (hasAttr dev cfg.vswitches) 81 82 then [ "${dev}-netdev.service" ] 82 83 else optional (!config.boot.isContainer) (subsystemDevice dev); ··· 94 95 networkSetup = lib.mkIf needNetworkSetup 95 96 { description = "Networking Setup"; 96 97 97 - after = [ "network-pre.target" "systemd-udevd.service" "systemd-sysctl.service" ]; 98 + after = [ "network-pre.target" ]; 98 99 before = [ "network.target" "shutdown.target" ]; 99 100 wants = [ "network.target" ]; 100 101 # exclude bridges from the partOf relationship to fix container networking bug #47210
+2 -1
nixos/tests/dnsdist.nix
··· 92 92 almost_expiration = server.succeed("date --date '14min'").strip() 93 93 94 94 with subtest("The DNSCrypt client can connect to the server"): 95 - client.wait_until_succeeds("journalctl -u dnscrypt-proxy2 --grep '\[server\] OK'") 95 + client.wait_until_succeeds("journalctl -u dnscrypt-proxy2 --grep '\\[server\\] OK'") 96 96 97 97 with subtest("DNS queries over UDP are working"): 98 98 client.wait_for_open_port(53) 99 + client.wait_until_succeeds("host -U 192.168.0.1", timeout=60) 99 100 client.succeed("host -U 192.168.0.1 | grep -qF ns.example.org") 100 101 101 102 with subtest("DNS queries over TCP are working"):
+1 -1
nixos/tests/redlib.nix
··· 3 3 { 4 4 name = "redlib"; 5 5 meta.maintainers = with lib.maintainers; [ 6 - soispha 6 + bpeetz 7 7 Guanran928 8 8 ]; 9 9
+10
pkgs/applications/editors/vscode/extensions/charliermarsh.ruff/default.nix
··· 2 2 stdenvNoCC, 3 3 lib, 4 4 vscode-utils, 5 + ruff, 5 6 }: 6 7 7 8 vscode-utils.buildVscodeMarketplaceExtension { ··· 32 33 version = "2024.34.0"; 33 34 } 34 35 // sources.${stdenvNoCC.system} or (throw "Unsupported system ${stdenvNoCC.system}"); 36 + 37 + postInstall = '' 38 + test -x "$out/$installPrefix/bundled/libs/bin/ruff" || { 39 + echo "Replacing the bundled ruff binary failed, because 'bundled/libs/bin/ruff' is missing." 40 + echo "Update the package to the match the new path/behavior." 41 + exit 1 42 + } 43 + ln -sf ${lib.getExe ruff} "$out/$installPrefix/bundled/libs/bin/ruff" 44 + ''; 35 45 36 46 meta = { 37 47 license = lib.licenses.mit;
+13 -8
pkgs/applications/emulators/ripes/default.nix pkgs/by-name/ri/ripes/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 pkg-config, 6 - qtbase, 7 - qtsvg, 8 - qtcharts, 9 - wrapQtAppsHook, 6 + qt6, 7 + cereal, 10 8 cmake, 11 9 python3, 12 10 unstableGitUpdater, ··· 25 23 hash = "sha256-aNJTM/s4GNhWVXQxK1R/rIN/NmeKglibQZMh8ENjIzo="; 26 24 }; 27 25 26 + postPatch = '' 27 + rm -r external/VSRTL/external/cereal 28 + substituteInPlace {src/serializers.h,src/io/iobase.h} \ 29 + --replace-fail "VSRTL/external/cereal/include/cereal/cereal.hpp" "cereal/cereal.hpp" 30 + ''; 31 + 28 32 nativeBuildInputs = [ 29 33 cmake 30 34 pkg-config 31 35 python3 32 - wrapQtAppsHook 36 + qt6.wrapQtAppsHook 33 37 ]; 34 38 35 39 buildInputs = [ 36 - qtbase 37 - qtsvg 38 - qtcharts 40 + cereal 41 + qt6.qtbase 42 + qt6.qtsvg 43 + qt6.qtcharts 39 44 ]; 40 45 41 46 installPhase =
+2 -2
pkgs/applications/misc/lyx/default.nix
··· 13 13 }: 14 14 15 15 mkDerivation rec { 16 - version = "2.4.2.1"; 16 + version = "2.4.3"; 17 17 pname = "lyx"; 18 18 19 19 src = fetchurl { 20 20 url = "ftp://ftp.lyx.org/pub/lyx/stable/2.4.x/${pname}-${version}.tar.xz"; 21 - hash = "sha256-HSscer45Hi+0kQneLI4Tp9/mBfJ99o9om/lH36/HpNk="; 21 + hash = "sha256-+mdh9ZilkVr1CkI90qYHBIvbxUCm1XI4X+Qi31ge6/Y="; 22 22 }; 23 23 24 24 # LaTeX is used from $PATH, as people often want to have it with extra pkgs
+2 -1
pkgs/applications/networking/browsers/firefox-bin/default.nix
··· 20 20 , runtimeShell 21 21 , systemLocale ? config.i18n.defaultLocale or "en_US" 22 22 , patchelfUnstable # have to use patchelfUnstable to support --no-clobber-old-sections 23 + , applicationName? "Firefox" 23 24 }: 24 25 25 26 let ··· 97 98 ''; 98 99 99 100 passthru = { 100 - inherit binaryName; 101 + inherit applicationName binaryName; 101 102 libName = "firefox-bin-${version}"; 102 103 ffmpegSupport = true; 103 104 gssSupport = true;
+11 -9
pkgs/applications/networking/browsers/firefox/common.nix
··· 5 5 , updateScript ? null 6 6 , binaryName ? "firefox" 7 7 , application ? "browser" 8 - , applicationName ? "Mozilla Firefox" 8 + , applicationName ? "Firefox" 9 9 , branding ? null 10 10 , requireSigning ? true 11 11 , allowAddonSideload ? false ··· 119 119 , pipewireSupport ? waylandSupport && webrtcSupport 120 120 , pulseaudioSupport ? stdenv.hostPlatform.isLinux, libpulseaudio 121 121 , sndioSupport ? stdenv.hostPlatform.isLinux, sndio 122 - , waylandSupport ? true, libxkbcommon, libdrm 122 + , waylandSupport ? !stdenv.hostPlatform.isDarwin, libxkbcommon, libdrm 123 123 124 124 ## privacy-related options 125 125 ··· 200 200 done 201 201 ''; 202 202 203 - distributionIni = pkgs.writeText "distribution.ini" (lib.generators.toINI {} { 203 + distributionIni = let 204 + platform = if stdenv.hostPlatform.isDarwin then "Nix on MacOS" else "NixOS"; 205 + in 206 + pkgs.writeText "distribution.ini" (lib.generators.toINI {} { 204 207 # Some light branding indicating this build uses our distro preferences 205 208 Global = { 206 209 id = "nixos"; 207 210 version = "1.0"; 208 - about = "${applicationName} for NixOS"; 211 + about = "${applicationName} for ${platform}"; 209 212 }; 210 213 Preferences = { 211 214 # These values are exposed through telemetry ··· 593 596 594 597 postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' 595 598 mkdir -p $out/Applications 596 - cp -r dist/${binaryName}/*.app $out/Applications 599 + cp -r dist/${binaryName}/*.app "$out/Applications/${applicationName}.app" 597 600 598 - appBundlePath=(dist/${binaryName}/*.app) 599 - appBundle=''${appBundlePath[0]#dist/${binaryName}} 600 - resourceDir=$out/Applications/$appBundle/Contents/Resources 601 + resourceDir="$out/Applications/${applicationName}.app/Contents/Resources" 601 602 602 603 '' + lib.optionalString (!stdenv.hostPlatform.isDarwin) '' 603 604 # Remove SDK cruft. FIXME: move to a separate output? ··· 622 623 # Some basic testing 623 624 doInstallCheck = true; 624 625 installCheckPhase = lib.optionalString buildStdenv.hostPlatform.isDarwin '' 625 - bindir=$out/Applications/$appBundle/Contents/MacOS 626 + bindir="$out/Applications/${applicationName}.app/Contents/MacOS" 626 627 '' + lib.optionalString (!buildStdenv.hostPlatform.isDarwin) '' 627 628 bindir=$out/bin 628 629 '' + '' ··· 630 631 ''; 631 632 632 633 passthru = { 634 + inherit applicationName; 633 635 inherit application extraPatches; 634 636 inherit updateScript; 635 637 inherit alsaSupport;
+1 -1
pkgs/applications/networking/browsers/firefox/packages/firefox-beta.nix
··· 11 11 pname = "firefox-beta"; 12 12 binaryName = pname; 13 13 version = "135.0b9"; 14 - applicationName = "Mozilla Firefox Beta"; 14 + applicationName = "Firefox Beta"; 15 15 src = fetchurl { 16 16 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 17 17 sha512 = "3007c2a8743e4444226e66f0c11f53f01255c09702deda7de83bbe134a19c324b8b49de78d3211b20bb82c7b2040127145d2e39ed8aa81c653ac4397c46476f6";
+1 -1
pkgs/applications/networking/browsers/firefox/packages/firefox-devedition.nix
··· 11 11 pname = "firefox-devedition"; 12 12 binaryName = pname; 13 13 version = "135.0b9"; 14 - applicationName = "Mozilla Firefox Developer Edition"; 14 + applicationName = "Firefox Developer Edition"; 15 15 requireSigning = false; 16 16 branding = "browser/branding/aurora"; 17 17 src = fetchurl {
+1
pkgs/applications/networking/browsers/firefox/packages/firefox-esr-128.nix
··· 10 10 buildMozillaMach rec { 11 11 pname = "firefox"; 12 12 version = "128.7.0esr"; 13 + applicationName = "Firefox ESR"; 13 14 src = fetchurl { 14 15 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 15 16 sha512 = "26f9661b395b85a44b42bd72ef1ad976c614216c68f6c2dd834d0ac8b84b9c9f398b8ac550a47396995d96e6bb5fa9a50064d7f2f526bddd45aed5039ef131b8";
+56 -24
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 1 - { stdenv, lib, makeDesktopItem, makeWrapper, lndir, config 1 + { stdenv, lib, makeDesktopItem, makeBinaryWrapper, lndir, config 2 2 , buildPackages 3 3 , jq, xdg-utils, writeText 4 4 ··· 23 23 browser: 24 24 25 25 let 26 + isDarwin = stdenv.hostPlatform.isDarwin; 26 27 wrapper = 27 - { applicationName ? browser.binaryName or (lib.getName browser) 28 + { applicationName ? browser.binaryName or (lib.getName browser) # Note: this is actually *binary* name and is different from browser.applicationName, which is *app* name! 28 29 , pname ? applicationName 29 30 , version ? lib.getVersion browser 30 - , desktopName ? # applicationName with first letter capitalized 31 - (lib.toUpper (lib.substring 0 1 applicationName) + lib.substring 1 (-1) applicationName) 32 31 , nameSuffix ? "" 33 32 , icon ? applicationName 34 33 , wmClass ? applicationName ··· 82 81 ++ gtk_modules; 83 82 gtk_modules = [ libcanberra-gtk3 ]; 84 83 85 - launcherName = "${applicationName}${nameSuffix}"; 84 + # Darwin does not rename bundled binaries 85 + launcherName = "${applicationName}${lib.optionalString (!isDarwin) nameSuffix}"; 86 86 87 87 ######################### 88 88 # # ··· 164 164 name = launcherName; 165 165 exec = "${launcherName} --name ${wmClass} %U"; 166 166 inherit icon; 167 - inherit desktopName; 167 + desktopName = browser.applicationName; 168 168 startupNotify = true; 169 169 startupWMClass = wmClass; 170 170 terminal = false; ··· 219 219 }; 220 220 })); 221 221 222 - nativeBuildInputs = [ makeWrapper lndir jq ]; 222 + nativeBuildInputs = [ makeBinaryWrapper lndir jq ]; 223 223 buildInputs = [ browser.gtk3 ]; 224 224 225 225 makeWrapperArgs = [ ··· 279 279 ''ln -sfLt ''${MOZ_HOME:-~/.mozilla}/native-messaging-hosts ${ext}/lib/mozilla/native-messaging-hosts/*'' 280 280 ]) allNativeMessagingHosts); 281 281 282 - buildCommand = '' 283 - if [ ! -x "${browser}/bin/${applicationName}" ] 282 + buildCommand = let 283 + appPath = "Applications/${browser.applicationName}.app"; 284 + executablePrefix = if isDarwin then "${appPath}/Contents/MacOS" else "bin"; 285 + executablePath="${executablePrefix}/${applicationName}"; 286 + finalBinaryPath = "${executablePath}" + lib.optionalString (!isDarwin) "${nameSuffix}"; 287 + sourceBinary="${browser}/${executablePath}"; 288 + libDir = if isDarwin then "${appPath}/Contents/Resources" else "lib/${libName}"; 289 + prefsDir = if isDarwin then "${libDir}/browser/defaults/preferences" else "${libDir}/defaults/pref"; 290 + in '' 291 + if [ ! -x "${sourceBinary}" ] 284 292 then 285 - echo "cannot find executable file \`${browser}/bin/${applicationName}'" 293 + echo "cannot find executable file \`${sourceBinary}'" 286 294 exit 1 287 295 fi 288 296 ··· 314 322 315 323 cd "$out" 316 324 325 + '' + lib.optionalString isDarwin '' 326 + cd "${appPath}" 327 + 328 + # These files have to be copied and not symlinked, otherwise tabs crash. 329 + # Maybe related to how omni.ja file is mmapped into memory. See: 330 + # https://github.com/mozilla/gecko-dev/blob/b1662b447f306e6554647914090d4b73ac8e1664/modules/libjar/nsZipArchive.cpp#L204 331 + for file in $(find . -type l -name "omni.ja"); do 332 + rm "$file" 333 + cp "${browser}/${appPath}/$file" "$file" 334 + done 335 + 336 + # Copy any embedded .app directories; plugin-container fails to start otherwise. 337 + for dir in $(find . -type d -name '*.app'); do 338 + rm -r "$dir" 339 + cp -r "${browser}/${appPath}/$dir" "$dir" 340 + done 341 + 342 + cd .. 343 + 344 + '' + '' 345 + 317 346 # create the wrapper 318 347 319 - executablePrefix="$out/bin" 320 - executablePath="$executablePrefix/${applicationName}" 348 + executablePrefix="$out/${executablePrefix}" 349 + executablePath="$out/${executablePath}" 321 350 oldWrapperArgs=() 322 351 323 352 if [[ -L $executablePath ]]; then ··· 348 377 349 378 appendToVar makeWrapperArgs --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" 350 379 concatTo makeWrapperArgs oldWrapperArgs 351 - makeWrapper "$oldExe" "''${executablePath}${nameSuffix}" "''${makeWrapperArgs[@]}" 380 + 381 + makeWrapper "$oldExe" "$out/${finalBinaryPath}" "''${makeWrapperArgs[@]}" 382 + 352 383 ############################# 353 384 # # 354 385 # END EXTRA PREF CHANGES # 355 386 # # 356 387 ############################# 357 - 388 + '' + lib.optionalString (!isDarwin) '' 358 389 if [ -e "${browser}/share/icons" ]; then 359 390 mkdir -p "$out/share" 360 391 ln -s "${browser}/share/icons" "$out/share/icons" ··· 389 420 # # 390 421 ######################### 391 422 # user customization 392 - mkdir -p $out/lib/${libName} 423 + libDir="$out/${libDir}" 393 424 394 425 # creating policies.json 395 - mkdir -p "$out/lib/${libName}/distribution" 426 + mkdir -p "$libDir/distribution" 396 427 397 - POL_PATH="$out/lib/${libName}/distribution/policies.json" 428 + POL_PATH="$libDir/distribution/policies.json" 398 429 rm -f "$POL_PATH" 399 430 cat ${policiesJson} >> "$POL_PATH" 400 431 ··· 405 436 done 406 437 407 438 # preparing for autoconfig 408 - mkdir -p "$out/lib/${libName}/defaults/pref" 439 + prefsDir="$out/${prefsDir}" 440 + mkdir -p "$prefsDir" 409 441 410 - echo 'pref("general.config.filename", "mozilla.cfg");' > "$out/lib/${libName}/defaults/pref/autoconfig.js" 411 - echo 'pref("general.config.obscure_value", 0);' >> "$out/lib/${libName}/defaults/pref/autoconfig.js" 442 + echo 'pref("general.config.filename", "mozilla.cfg");' > "$prefsDir/autoconfig.js" 443 + echo 'pref("general.config.obscure_value", 0);' >> "$prefsDir/autoconfig.js" 412 444 413 - cat > "$out/lib/${libName}/mozilla.cfg" << EOF 445 + cat > "$libDir/mozilla.cfg" << EOF 414 446 ${mozillaCfg} 415 447 EOF 416 448 417 449 extraPrefsFiles=(${builtins.toString extraPrefsFiles}) 418 450 for extraPrefsFile in "''${extraPrefsFiles[@]}"; do 419 - cat "$extraPrefsFile" >> "$out/lib/${libName}/mozilla.cfg" 451 + cat "$extraPrefsFile" >> "$libDir/mozilla.cfg" 420 452 done 421 453 422 - cat >> "$out/lib/${libName}/mozilla.cfg" << EOF 454 + cat >> "$libDir/mozilla.cfg" << EOF 423 455 ${extraPrefs} 424 456 EOF 425 457 426 - mkdir -p $out/lib/${libName}/distribution/extensions 458 + mkdir -p "$libDir/distribution/extensions" 427 459 428 460 ############################# 429 461 # #
+2 -2
pkgs/applications/networking/instant-messengers/dino/default.nix
··· 25 25 26 26 stdenv.mkDerivation (finalAttrs: { 27 27 pname = "dino"; 28 - version = "0.4.4"; 28 + version = "0.4.5"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "dino"; 32 32 repo = "dino"; 33 33 rev = "v${finalAttrs.version}"; 34 - sha256 = "sha256-I0ASeEjdXyxhz52QisU0q8mIBTKMfjaspJbxRIyOhD4="; 34 + sha256 = "sha256-lF2cUalCrVD6274Ey8wggEXNvKXydlRjvX+815geL1c="; 35 35 }; 36 36 37 37 postPatch = ''
+2
pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
··· 24 24 systemLocale ? config.i18n.defaultLocale or "en_US", 25 25 patchelfUnstable, # have to use patchelfUnstable to support --no-clobber-old-sections 26 26 generated, 27 + applicationName ? "Thunderbird", 27 28 }: 28 29 29 30 let ··· 120 121 }; 121 122 122 123 passthru = { 124 + inherit applicationName; 123 125 binaryName = "thunderbird"; 124 126 gssSupport = true; 125 127 gtk3 = gtk3;
+4 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 28 28 version, 29 29 sha512, 30 30 updateScript, 31 + applicationName ? "Thunderbird", 31 32 }: 32 33 (buildMozillaMach rec { 33 34 pname = "thunderbird"; 34 - inherit version updateScript; 35 + inherit version updateScript applicationName; 35 36 application = "comm/mail"; 36 - applicationName = "Mozilla Thunderbird"; 37 37 binaryName = pname; 38 38 src = fetchurl { 39 39 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; ··· 98 98 thunderbird-esr = thunderbird-128; 99 99 100 100 thunderbird-128 = common { 101 + applicationName = "Thunderbird ESR"; 102 + 101 103 version = "128.7.1esr"; 102 104 sha512 = "3f84e1f1a83379da1f154b66dbb5f941d04548ad017aab32aa9520f4315edb524e3754ac1fe9a7ae27f7aa33e2881c6783f11ccc53cda713f107760b7d880667"; 103 105
+1 -1
pkgs/applications/networking/mailreaders/thunderbird/wrapper.nix
··· 26 26 buildCommand = 27 27 old.buildCommand 28 28 + '' 29 - wrapProgram $out/bin/${browser.binaryName} \ 29 + wrapProgram "$executablePath" \ 30 30 --prefix LD_LIBRARY_PATH ':' "${lib.makeLibraryPath [ gpgme ]}" \ 31 31 --prefix PATH ':' "${lib.makeBinPath [ gnupg ]}" 32 32 '';
+2 -2
pkgs/applications/video/haruna/default.nix
··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 pname = "haruna"; 29 - version = "1.3.2"; 29 + version = "1.3.3"; 30 30 31 31 src = fetchFromGitLab { 32 32 owner = "multimedia"; 33 33 repo = "haruna"; 34 34 rev = "v${version}"; 35 - hash = "sha256-B4L3RG1Lq//7TGeZ1ho4LLiHRa9ourm9wL9VWljbXQo="; 35 + hash = "sha256-EoB8qoCiB6jvHqfhkGHhiq9/79MBLt6GguvRIwY90B0="; 36 36 domain = "invent.kde.org"; 37 37 }; 38 38
+1 -1
pkgs/applications/virtualization/qemu/default.nix
··· 269 269 ''; 270 270 271 271 # Add a ‘qemu-kvm’ wrapper for compatibility/convenience. 272 - postInstall = lib.optionalString (!minimal) '' 272 + postInstall = lib.optionalString (!minimal && !xenSupport) '' 273 273 ln -s $out/bin/qemu-system-${stdenv.hostPlatform.qemuArch} $out/bin/qemu-kvm 274 274 ''; 275 275
+5 -14
pkgs/build-support/rust/build-rust-package/default.nix
··· 4 4 fetchCargoTarball, 5 5 fetchCargoVendor, 6 6 stdenv, 7 - callPackage, 8 7 cargoBuildHook, 9 8 cargoCheckHook, 10 9 cargoInstallHook, ··· 24 23 excludeDrvArgNames = [ 25 24 "depsExtraArgs" 26 25 "cargoUpdateHook" 27 - "cargoDeps" 28 26 "cargoLock" 29 27 ]; 30 28 ··· 74 72 ... 75 73 }@args: 76 74 77 - let 78 - 79 - cargoDeps' = 75 + lib.optionalAttrs (stdenv.hostPlatform.isDarwin && buildType == "debug") { 76 + RUSTFLAGS = "-C split-debuginfo=packed " + (args.RUSTFLAGS or ""); 77 + } 78 + // { 79 + cargoDeps = 80 80 if cargoVendorDir != null then 81 81 null 82 82 else if cargoDeps != null then ··· 122 122 } 123 123 // depsExtraArgs 124 124 ); 125 - 126 - target = stdenv.hostPlatform.rust.rustcTargetSpec; 127 - targetIsJSON = lib.hasSuffix ".json" target; 128 - in 129 - lib.optionalAttrs (stdenv.hostPlatform.isDarwin && buildType == "debug") { 130 - RUSTFLAGS = "-C split-debuginfo=packed " + (args.RUSTFLAGS or ""); 131 - } 132 - // { 133 - cargoDeps = cargoDeps'; 134 125 inherit buildAndTestSubdir; 135 126 136 127 cargoBuildType = buildType;
+17 -12
pkgs/by-name/ab/ablog/package.nix
··· 1 1 { 2 2 lib, 3 - python3, 3 + python3Packages, 4 4 fetchFromGitHub, 5 5 gitUpdater, 6 6 }: 7 7 8 - python3.pkgs.buildPythonApplication rec { 8 + python3Packages.buildPythonApplication rec { 9 9 pname = "ablog"; 10 - version = "0.11.11"; 10 + version = "0.11.12"; 11 11 format = "pyproject"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "sunpy"; 15 15 repo = "ablog"; 16 - rev = "v${version}"; 17 - hash = "sha256-Hx4iLO+Of2o4tmIDS17SxyswbW2+KMoD4BjB4q1KU9M="; 16 + tag = "v${version}"; 17 + hash = "sha256-bPTaxkuIKeypfnZItG9cl51flHBIx/yg0qENuiqQgY4="; 18 18 }; 19 19 20 - nativeBuildInputs = with python3.pkgs; [ 20 + build-system = with python3Packages; [ 21 21 setuptools 22 22 setuptools-scm 23 - wheel 24 23 ]; 25 24 26 - propagatedBuildInputs = with python3.pkgs; [ 25 + nativeBuildInputs = with python3Packages; [ wheel ]; 26 + 27 + dependencies = with python3Packages; [ 27 28 docutils 28 29 feedgen 29 30 invoke ··· 33 34 watchdog 34 35 ]; 35 36 36 - nativeCheckInputs = with python3.pkgs; [ 37 + nativeCheckInputs = with python3Packages; [ 37 38 pytestCheckHook 38 39 defusedxml 39 40 ]; ··· 47 48 "ignore::sphinx.deprecation.RemovedInSphinx90Warning" # Ignore ImportError 48 49 ]; 49 50 51 + # assert "post 1" not in html 52 + # AssertionError 53 + disabledTests = [ "test_not_safe_for_parallel_read" ]; 54 + 50 55 passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 51 56 52 - meta = with lib; { 57 + meta = { 53 58 description = "ABlog for blogging with Sphinx"; 54 59 mainProgram = "ablog"; 55 60 homepage = "https://ablog.readthedocs.io/en/latest/"; 56 - license = licenses.mit; 57 - maintainers = with maintainers; [ rgrinberg ]; 61 + license = lib.licenses.mit; 62 + maintainers = with lib.maintainers; [ rgrinberg ]; 58 63 }; 59 64 }
+3 -3
pkgs/by-name/bp/bpftop/package.nix
··· 10 10 }: 11 11 let 12 12 pname = "bpftop"; 13 - version = "0.5.2"; 13 + version = "0.6.0"; 14 14 in 15 15 rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } { 16 16 inherit pname version; ··· 18 18 owner = "Netflix"; 19 19 repo = "bpftop"; 20 20 tag = "v${version}"; 21 - hash = "sha256-WH/oCnkBcvoouBbkAcyawfAuNR3VsTl5+ZATLpi9d4w="; 21 + hash = "sha256-oilSWF3dCbJIPtkxwj76qReh5Rp8ZRiH2nVriK6d3fk="; 22 22 }; 23 23 24 24 useFetchCargoVendor = true; 25 - cargoHash = "sha256-fXNu0u+YdT5UaKReT4WuQINKz/zFnwXS1r+xEH6g9FU="; 25 + cargoHash = "sha256-k5cRj66OSXsCXUPWrBYrOFq8aohaB/afd8IGj0QqvuE="; 26 26 27 27 buildInputs = [ 28 28 elfutils
+2 -2
pkgs/by-name/ca/camunda-modeler/package.nix
··· 10 10 11 11 stdenvNoCC.mkDerivation rec { 12 12 pname = "camunda-modeler"; 13 - version = "5.30.0"; 13 + version = "5.32.0"; 14 14 15 15 src = fetchurl { 16 16 url = "https://github.com/camunda/camunda-modeler/releases/download/v${version}/camunda-modeler-${version}-linux-x64.tar.gz"; 17 - hash = "sha256-zv4gry/PcudNDSUNmnhB1nrGoKI1D3pswoXpHqouQAw="; 17 + hash = "sha256-JOJrRvrf3Kz+ObDfyYYSAVfovQ15ZcpNPMHXJ+grZvA="; 18 18 }; 19 19 sourceRoot = "camunda-modeler-${version}-linux-x64"; 20 20
+2 -2
pkgs/by-name/cl/claws-mail/package.nix
··· 275 275 in 276 276 stdenv.mkDerivation rec { 277 277 pname = "claws-mail"; 278 - version = "4.3.0"; 278 + version = "4.3.1"; 279 279 280 280 src = fetchurl { 281 281 url = "https://claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz"; 282 - hash = "sha256-ldwdiI65FvAoRn+gw8v0W6/2Z4eTt7+zX6u6Ap1YHOE="; 282 + hash = "sha256-2K3yEMdnq1glLfxas8aeYD1//bcoGh4zQNLYYGL0aKY="; 283 283 }; 284 284 285 285 outputs = [
+2 -2
pkgs/by-name/co/codeql/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "codeql"; 14 - version = "2.20.4"; 14 + version = "2.20.5"; 15 15 16 16 dontConfigure = true; 17 17 dontBuild = true; ··· 19 19 20 20 src = fetchzip { 21 21 url = "https://github.com/github/codeql-cli-binaries/releases/download/v${version}/codeql.zip"; 22 - hash = "sha256-oxqprZwPW6qwp3ilPhtQ+cxXeyzC4xZm9L9bkiFgxys="; 22 + hash = "sha256-B6qO+kO2geYFwba4By1h1IwzlGyktWJlJ9sbR2jTrro="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+44
pkgs/by-name/co/copilot-language-server/package-lock.json
··· 1 + { 2 + "name": "@github/copilot-language-server", 3 + "version": "1.273.0", 4 + "lockfileVersion": 3, 5 + "requires": true, 6 + "packages": { 7 + "": { 8 + "name": "@github/copilot-language-server", 9 + "version": "1.273.0", 10 + "license": "https://docs.github.com/en/site-policy/github-terms/github-terms-for-additional-products-and-features", 11 + "dependencies": { 12 + "vscode-languageserver-protocol": "^3.17.5" 13 + }, 14 + "bin": { 15 + "copilot-language-server": "dist/language-server.js" 16 + } 17 + }, 18 + "node_modules/vscode-jsonrpc": { 19 + "version": "8.2.0", 20 + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz", 21 + "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==", 22 + "license": "MIT", 23 + "engines": { 24 + "node": ">=14.0.0" 25 + } 26 + }, 27 + "node_modules/vscode-languageserver-protocol": { 28 + "version": "3.17.5", 29 + "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz", 30 + "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==", 31 + "license": "MIT", 32 + "dependencies": { 33 + "vscode-jsonrpc": "8.2.0", 34 + "vscode-languageserver-types": "3.17.5" 35 + } 36 + }, 37 + "node_modules/vscode-languageserver-types": { 38 + "version": "3.17.5", 39 + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", 40 + "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", 41 + "license": "MIT" 42 + } 43 + } 44 + }
+49
pkgs/by-name/co/copilot-language-server/package.nix
··· 1 + { 2 + lib, 3 + buildNpmPackage, 4 + fetchurl, 5 + }: 6 + 7 + buildNpmPackage rec { 8 + pname = "copilot-language-server"; 9 + version = "1.273.0"; 10 + 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@github/copilot-language-server/-/copilot-language-server-${version}.tgz"; 13 + hash = "sha256-S3LhyNg8sSJPl+vnMir4AbyerORz0b1S7JyjCeoXW2E="; 14 + }; 15 + 16 + npmDepsHash = "sha256-ikITGNY6a6SKOSTBU9q4sQMX51mOxMix+a1Bt+h9wGw="; 17 + 18 + postPatch = '' 19 + ln -s ${./package-lock.json} package-lock.json 20 + ''; 21 + 22 + postInstall = '' 23 + ln -s $out/lib/node_modules/@github/copilot-language-server/dist $out/lib/node_modules/@github/dist 24 + ''; 25 + 26 + dontNpmBuild = true; 27 + 28 + passthru.updateScript = ./update.sh; 29 + 30 + meta = { 31 + description = "Use GitHub Copilot with any editor or IDE via the Language Server Protocol"; 32 + homepage = "https://github.com/features/copilot"; 33 + license = { 34 + deprecated = false; 35 + free = false; 36 + fullName = "GitHub Copilot Product Specific Terms"; 37 + redistributable = false; 38 + shortName = "GitHub Copilot License"; 39 + url = "https://github.com/customer-terms/github-copilot-product-specific-terms"; 40 + }; 41 + mainProgram = "copilot-language-server"; 42 + platforms = [ 43 + "x86_64-linux" 44 + "x86_64-darwin" 45 + "aarch64-darwin" 46 + ]; 47 + maintainers = with lib.maintainers; [ arunoruto ]; 48 + }; 49 + }
+30
pkgs/by-name/co/copilot-language-server/update.sh
··· 1 + #! /usr/bin/env nix-shell 2 + #! nix-shell -i bash -p gnused nix nodejs prefetch-npm-deps wget 3 + 4 + set -euo pipefail 5 + pushd "$(dirname "${BASH_SOURCE[0]}")" 6 + 7 + version=$(npm view @github/copilot-language-server version) 8 + tarball="copilot-language-server-$version.tgz" 9 + url="https://registry.npmjs.org/@github/copilot-language-server/-/$tarball" 10 + 11 + if [[ "$UPDATE_NIX_OLD_VERSION" == "$version" ]]; then 12 + echo "Already up to date!" 13 + exit 0 14 + fi 15 + 16 + sed -i 's#version = "[^"]*"#version = "'"$version"'"#' package.nix 17 + 18 + sha256=$(nix-prefetch-url "$url") 19 + src_hash=$(nix-hash --to-sri --type sha256 "$sha256") 20 + sed -i 's#hash = "[^"]*"#hash = "'"$src_hash"'"#' package.nix 21 + 22 + rm -f package-lock.json package.json *.tgz 23 + wget "$url" 24 + tar xf "$tarball" --strip-components=1 package/package.json 25 + npm i --package-lock-only --ignore-scripts 26 + npm_hash=$(prefetch-npm-deps package-lock.json) 27 + sed -i 's#npmDepsHash = "[^"]*"#npmDepsHash = "'"$npm_hash"'"#' package.nix 28 + rm -f package.json *.tgz 29 + 30 + popd
+2 -2
pkgs/by-name/co/cosmic-icons/package.nix
··· 9 9 }: 10 10 stdenvNoCC.mkDerivation { 11 11 pname = "cosmic-icons"; 12 - version = "1.0.0-alpha.5.1"; 12 + version = "1.0.0-alpha.6"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "pop-os"; 16 16 repo = "cosmic-icons"; 17 - rev = "epoch-1.0.0-alpha.5.1"; 17 + rev = "epoch-1.0.0-alpha.6"; 18 18 hash = "sha256-j5H2+BOWxq2jShN15QCvj9rY6OK+vlUbyR9R07Ka2rA="; 19 19 }; 20 20
+1 -1
pkgs/by-name/fi/firefoxpwa/package.nix
··· 151 151 homepage = "https://pwasforfirefox.filips.si/"; 152 152 changelog = "https://github.com/filips123/PWAsForFirefox/releases/tag/v${version}"; 153 153 license = lib.licenses.mpl20; 154 - platforms = lib.platforms.unix; 154 + platforms = lib.platforms.linux; 155 155 maintainers = with lib.maintainers; [ 156 156 camillemndn 157 157 pasqui23
+2 -2
pkgs/by-name/ic/icewm/package.nix
··· 41 41 42 42 stdenv.mkDerivation (finalAttrs: { 43 43 pname = "icewm"; 44 - version = "3.6.0"; 44 + version = "3.7.0"; 45 45 46 46 src = fetchFromGitHub { 47 47 owner = "ice-wm"; 48 48 repo = "icewm"; 49 49 rev = finalAttrs.version; 50 - hash = "sha256-gxRKLukwdyCvqQ+gRYb4cv/8B52nRAFwdcps6FcKFXk="; 50 + hash = "sha256-RUT/zJcoDiNMit7XlxVb2lctta7NxcGAiFe3Mj7jUyM="; 51 51 }; 52 52 53 53 strictDeps = true;
+3 -3
pkgs/by-name/in/inputplumber/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "inputplumber"; 13 - version = "0.45.1"; 13 + version = "0.48.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "ShadowBlip"; 17 17 repo = "InputPlumber"; 18 18 tag = "v${version}"; 19 - hash = "sha256-mapuj/9VCrzux5yS3+NeMw1xG70+xglshOs9O+RIHKM="; 19 + hash = "sha256-9/4+gNuG02uoXDflRh3q5T+hqAKu/j+1FQnXVJVTpiI="; 20 20 }; 21 21 22 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-QUTMzHAdB4GJMO+LZP5VFTJRvRHUa6XIcP+1bRSaGdg="; 23 + cargoHash = "sha256-cRSY9a5qOvYrdvNSDoDjgrIo+SRlD24oAWriudbKS1E="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config
+2 -2
pkgs/by-name/jb/jbang/package.nix
··· 9 9 }: 10 10 11 11 stdenv.mkDerivation rec { 12 - version = "0.122.0"; 12 + version = "0.123.0"; 13 13 pname = "jbang"; 14 14 15 15 src = fetchzip { 16 16 url = "https://github.com/jbangdev/jbang/releases/download/v${version}/${pname}-${version}.tar"; 17 - sha256 = "sha256-uBzIk4Ivy/XLFlsUpGejV45T8MIseE2l8AVprWJi3hI="; 17 + sha256 = "sha256-KzltlTI8uyJGhkPIbA/ZUd4OZp5ORrgQB8Y19nhDAW4="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/by-name/js/json-fortran/package.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "json-fortran"; 11 - version = "9.0.2"; 11 + version = "9.0.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "jacobwilliams"; 15 15 repo = pname; 16 16 rev = version; 17 - hash = "sha256-mAdagehmj1s6nTDaJqwaYrirfkyIwiTWYge0ZWQBc6g="; 17 + hash = "sha256-MMHMyEPZYz7dkYX1OA9D1kgRCTpzTVussJbh4rWHlyU="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+1 -1
pkgs/by-name/li/licensure/package.nix
··· 44 44 homepage = "https://github.com/chasinglogic/licensure"; 45 45 license = licenses.gpl3Plus; 46 46 mainProgram = "licensure"; 47 - maintainers = [ maintainers.soispha ]; 47 + maintainers = [ maintainers.bpeetz ]; 48 48 platforms = platforms.linux ++ platforms.darwin; 49 49 }; 50 50 }
+2 -2
pkgs/by-name/li/liquibase/package.nix
··· 26 26 27 27 stdenv.mkDerivation (finalAttrs: { 28 28 pname = "liquibase"; 29 - version = "4.29.2"; 29 + version = "4.31.1"; 30 30 31 31 src = fetchurl { 32 32 url = "https://github.com/liquibase/liquibase/releases/download/v${finalAttrs.version}/liquibase-${finalAttrs.version}.tar.gz"; 33 - hash = "sha256-HQF6IGqVqzB2pS9mBnnC2AufIXSULLBxXjXVOTHiDuk="; 33 + hash = "sha256-BVWAi1mUHUl/DBEUw/IiVpiv3hHGDRkciORJUGpgo+o="; 34 34 }; 35 35 36 36 nativeBuildInputs = [ makeWrapper ];
+10
pkgs/by-name/ma/maim/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + fetchpatch, 5 6 cmake, 6 7 pkg-config, 7 8 zlib, ··· 50 51 libXcomposite 51 52 slop 52 53 icu 54 + ]; 55 + 56 + patches = [ 57 + # Use C++17 as required by icu 58 + (fetchpatch { 59 + name = "maim-c++-17.patch"; 60 + url = "https://github.com/naelstrof/maim/commit/e7fe09b6734baeb59081b8805be542c92178cf0f.patch"; 61 + sha256 = "0z9zvrr8msfli88jmhxm5knysi385s48j2w7zpacc7qhf4c5zh8c"; 62 + }) 53 63 ]; 54 64 55 65 doCheck = false;
+3
pkgs/by-name/mi/midori-unwrapped/package.nix
··· 53 53 54 54 passthru = { 55 55 inherit gtk3; 56 + applicationName = "Midori"; 56 57 }; 57 58 58 59 meta = with lib; { ··· 65 66 raskin 66 67 ramkromberg 67 68 ]; 69 + # https://github.com/NixOS/nixpkgs/issues/374354 70 + broken = true; 68 71 }; 69 72 }
+3 -3
pkgs/by-name/mi/mieru/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "mieru"; 9 - version = "3.11.2"; 9 + version = "3.12.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "enfein"; 13 13 repo = "mieru"; 14 14 rev = "v${version}"; 15 - hash = "sha256-Qb+uZiKnrGNoSqH0QR+QUBtmFM3AE/2WziTtkPxu55o="; 15 + hash = "sha256-F7YawlcIH/V+qudXjfFKIrVNjds+fhw6BdlCe2VDdUc="; 16 16 }; 17 17 18 - vendorHash = "sha256-AOtq6bGijQqpNMNZA3XeMjzKAo7tWTpdrKB6KxQsdMM="; 18 + vendorHash = "sha256-pKcdvP38fZ2KFYNDx6I4TfmnnvWKzFDvz80xMkUojqM="; 19 19 proxyVendor = true; 20 20 21 21 ldflags = [
+1 -1
pkgs/by-name/mi/migra/package.nix
··· 54 54 description = "Like diff but for PostgreSQL schemas"; 55 55 homepage = "https://github.com/djrobstep/migra"; 56 56 license = with licenses; [ unlicense ]; 57 - maintainers = with maintainers; [ soispha ]; 57 + maintainers = with maintainers; [ bpeetz ]; 58 58 }; 59 59 }
+3 -3
pkgs/by-name/mu/museum/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "museum"; 12 - version = "0.9.81"; 12 + version = "0.9.98"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "ente-io"; 16 16 repo = "ente"; 17 17 sparseCheckout = [ "server" ]; 18 18 rev = "photos-v${version}"; 19 - hash = "sha256-4vX3UWbYYCjNxtSNUAE9hg9NokeJFPTjLvHYTkQlB0w="; 19 + hash = "sha256-yC0bt7TUO4agvkWtd7Q0DuPlgFngQynSKaCZ4eaBWdE="; 20 20 }; 21 21 22 - vendorHash = "sha256-Vz9AodHoClSmo51ExdOS4bWH13i1Sug++LQMIsZY2xY="; 22 + vendorHash = "sha256-loq/YPf+oMWJ6FgtZsgJqkUQhCG8wL7F3kDblKbrc/c="; 23 23 24 24 sourceRoot = "${src.name}/server"; 25 25
+3 -3
pkgs/by-name/na/navidrome/package.nix
··· 18 18 19 19 buildGo123Module rec { 20 20 pname = "navidrome"; 21 - version = "0.54.3"; 21 + version = "0.54.5"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "navidrome"; 25 25 repo = "navidrome"; 26 26 rev = "v${version}"; 27 - hash = "sha256-mOJSgX+1id8tZU8KVjWbf2LycrzdudhUV/9pxKa4yHw="; 27 + hash = "sha256-74sN2qZVjsD5i3BkJKYcpL3vZsVIg0H5RI70oRdZpi0="; 28 28 }; 29 29 30 - vendorHash = "sha256-LpSmSbReQ3yHFvHhN/LERWQjf72/ELTjk4qhO4lyzW0="; 30 + vendorHash = "sha256-bI0iDhATvNylKnI81eeUpgsm8YqySPyinPgBbcO0y4I="; 31 31 32 32 npmRoot = "ui"; 33 33
+10 -4
pkgs/by-name/pr/prismlauncher-unwrapped/package.nix
··· 5 5 cmake, 6 6 cmark, 7 7 extra-cmake-modules, 8 + fetchpatch, 8 9 gamemode, 9 10 ghc_filesystem, 10 11 jdk17, ··· 14 15 stripJavaArchivesHook, 15 16 tomlplusplus, 16 17 zlib, 17 - 18 18 msaClientID ? null, 19 19 gamemodeSupport ? stdenv.hostPlatform.isLinux, 20 20 }: 21 - 22 21 let 23 22 libnbtplusplus = fetchFromGitHub { 24 23 owner = "PrismLauncher"; ··· 27 26 hash = "sha256-yy0q+bky80LtK1GWzz7qpM+aAGrOqLuewbid8WT1ilk="; 28 27 }; 29 28 in 30 - 31 29 assert lib.assertMsg ( 32 30 gamemodeSupport -> stdenv.hostPlatform.isLinux 33 31 ) "gamemodeSupport is only available on Linux."; 34 - 35 32 stdenv.mkDerivation (finalAttrs: { 36 33 pname = "prismlauncher-unwrapped"; 37 34 version = "9.2"; ··· 86 83 (lib.cmakeFeature "MACOSX_SPARKLE_UPDATE_FEED_URL" "''") 87 84 (lib.cmakeFeature "CMAKE_INSTALL_PREFIX" "${placeholder "out"}/Applications/") 88 85 ]; 86 + 87 + patches = [ 88 + # This patch allows Mangohud 0.8 to run correctly with Prism Launcher. 89 + # This should be removed on the next Prism Launcher release. 90 + (fetchpatch { 91 + url = "https://github.com/PrismLauncher/PrismLauncher/commit/3295b0717a8c4805022eccb74fee2304361d8dab.patch"; 92 + hash = "sha256-A7DrmI00dFUNZLoMFDfym7e5rSFg6V4/MjVxAnQwT6E="; 93 + }) 94 + ]; 89 95 90 96 doCheck = true; 91 97
+2 -2
pkgs/by-name/re/re-flex/package.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "re-flex"; 9 - version = "5.1.1"; 9 + version = "5.2.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Genivia"; 13 13 repo = "RE-flex"; 14 14 rev = "v${version}"; 15 - hash = "sha256-QSstDLUYmqTyxu/KyQTVuKkzIdFZ5MsXlHAcTvhTvr8="; 15 + hash = "sha256-oLpgY8m0hwLrTVkUwxVW7O7vr4Hl7Bn+uIQwFEVSfvc="; 16 16 }; 17 17 18 18 outputs = [ "out" "bin" "dev" ];
+1 -1
pkgs/by-name/re/redlib/package.nix
··· 78 78 license = lib.licenses.agpl3Only; 79 79 mainProgram = "redlib"; 80 80 maintainers = with lib.maintainers; [ 81 - soispha 81 + bpeetz 82 82 Guanran928 83 83 ]; 84 84 };
+3 -3
pkgs/by-name/sc/sccache/package.nix
··· 9 9 }: 10 10 11 11 rustPlatform.buildRustPackage rec { 12 - version = "0.9.1"; 12 + version = "0.10.0"; 13 13 pname = "sccache"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "mozilla"; 17 17 repo = "sccache"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-MR/zfE87Z4TXc3ta3192lG/tD7YiVrn0HCLr5O29Izo="; 19 + sha256 = "sha256-VEDMeRFQKNPS3V6/DhMWxHR7YWsCzAXTzp0lO+COl08="; 20 20 }; 21 21 22 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-Cv+tIivwqNqnA8anDWWEgQKpDFktG4rGZ+qZejBoDAE="; 23 + cargoHash = "sha256-1kfKBN4uRbU5LjbC0cLgMqoGnOSEAdC0S7EzXlfaDPo="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config
+3 -3
pkgs/by-name/sf/sftpgo/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "sftpgo"; 11 - version = "2.6.5"; 11 + version = "2.6.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "drakkan"; 15 15 repo = "sftpgo"; 16 16 tag = "v${version}"; 17 - hash = "sha256-dxHEcdsdH7/9NQA5m5TwkabsUMUM+Jrp1AnEW/f/Lpw="; 17 + hash = "sha256-SembD+BM5Zetexh0iLTfrq/I1tz2BCwGUn6OyFeTHF4="; 18 18 }; 19 19 20 - vendorHash = "sha256-XSqReUYfqH/NOYnvjJQLbnD4fEJjps7i0fWtujdYqV4="; 20 + vendorHash = "sha256-7hS4E7PXlydHFi4ul5+hyUPOvozialXW/m1tDLqbQUs="; 21 21 22 22 ldflags = [ 23 23 "-s"
+2 -2
pkgs/by-name/so/socket_wrapper/package.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "socket_wrapper"; 11 - version = "1.4.3"; 11 + version = "1.4.4"; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://samba/cwrap/socket_wrapper-${version}.tar.gz"; 15 - sha256 = "sha256-CWz7TqucebUtss51JsVeUI8GZb/qxsS8ZqPIMh2HU1g="; 15 + sha256 = "sha256-KJAALRQ3tvt//cZ8NzTxPQ4r99Y7sJfWA6n24uBdw8g="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+19 -19
pkgs/by-name/te/tectonic-unwrapped/package.nix
··· 8 8 9 9 { 10 10 lib, 11 - stdenv, 11 + clangStdenv, 12 12 fetchFromGitHub, 13 13 rustPlatform, 14 - darwin, 15 14 fontconfig, 16 15 harfbuzzFull, 17 16 openssl, ··· 20 19 fetchpatch2, 21 20 }: 22 21 23 - rustPlatform.buildRustPackage rec { 22 + let 23 + 24 + buildRustPackage = rustPlatform.buildRustPackage.override { 25 + # use clang to work around build failure with GCC 14 26 + # see: https://github.com/tectonic-typesetting/tectonic/issues/1263 27 + stdenv = clangStdenv; 28 + }; 29 + 30 + in 31 + 32 + buildRustPackage rec { 24 33 pname = "tectonic"; 25 34 version = "0.15.0"; 26 35 ··· 56 65 57 66 buildFeatures = [ "external-harfbuzz" ]; 58 67 59 - buildInputs = 60 - [ 61 - icu 62 - fontconfig 63 - harfbuzzFull 64 - openssl 65 - ] 66 - ++ lib.optionals stdenv.hostPlatform.isDarwin ( 67 - with darwin.apple_sdk.frameworks; 68 - [ 69 - ApplicationServices 70 - Cocoa 71 - Foundation 72 - ] 73 - ); 68 + buildInputs = [ 69 + icu 70 + fontconfig 71 + harfbuzzFull 72 + openssl 73 + ]; 74 74 75 75 postInstall = 76 76 '' 77 77 # Makes it possible to automatically use the V2 CLI API 78 78 ln -s $out/bin/tectonic $out/bin/nextonic 79 79 '' 80 - + lib.optionalString stdenv.hostPlatform.isLinux '' 80 + + lib.optionalString clangStdenv.hostPlatform.isLinux '' 81 81 substituteInPlace dist/appimage/tectonic.desktop \ 82 82 --replace Exec=tectonic Exec=$out/bin/tectonic 83 83 install -D dist/appimage/tectonic.desktop -t $out/share/applications/
+3 -3
pkgs/by-name/te/terser/package.nix
··· 2 2 3 3 buildNpmPackage rec { 4 4 pname = "terser"; 5 - version = "5.36.0"; 5 + version = "5.38.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "terser"; 9 9 repo = "terser"; 10 10 rev = "v${version}"; 11 - hash = "sha256-iPxcr7B2raTBFidPTwiETGusSy79tRYNzoJObyVYSWY="; 11 + hash = "sha256-iVl5L5qxpXkBfiW8OqsMr4iZ0UQiN4TSAYXz9d29bnA="; 12 12 }; 13 13 14 - npmDepsHash = "sha256-o5bCrvjVLmnxvYJJTp1qENR0l0C32D+2LfMKitt6zuY="; 14 + npmDepsHash = "sha256-84MWjkiv1/W+JyUtrjY9Rk0UIkZWIv07Q1qLSVYNcO4="; 15 15 16 16 meta = with lib; { 17 17 description = "JavaScript parser, mangler and compressor toolkit for ES6+";
+42
pkgs/by-name/te/texpresso/tectonic.nix
··· 1 + { 2 + tectonic-unwrapped, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + }: 6 + 7 + tectonic-unwrapped.overrideAttrs ( 8 + finalAttrs: prevAttrs: { 9 + pname = "texpresso-tonic"; 10 + version = "0.15.0-unstable-2024-04-19"; 11 + src = fetchFromGitHub { 12 + owner = "let-def"; 13 + repo = "tectonic"; 14 + rev = "b38cb3b2529bba947d520ac29fbb7873409bd270"; 15 + hash = "sha256-ap7fEPHsASAphIQkjcvk1CC7egTdxaUh7IpSS5os4W8="; 16 + fetchSubmodules = true; 17 + }; 18 + useFetchCargoVendor = true; 19 + cargoHash = "sha256-mqhbIv5r/5EDRDfP2BymXv9se2NCKxzRGqNqwqbD9A0="; 20 + # rebuild cargoDeps by hand because `.overrideAttrs cargoHash` 21 + # does not reconstruct cargoDeps (a known limitation): 22 + cargoDeps = rustPlatform.fetchCargoVendor { 23 + inherit (finalAttrs) src; 24 + name = "${finalAttrs.pname}-${finalAttrs.version}"; 25 + hash = finalAttrs.cargoHash; 26 + patches = finalAttrs.cargoPatches; 27 + }; 28 + # binary has a different name, bundled tests won't work 29 + doCheck = false; 30 + postInstall = '' 31 + ${prevAttrs.postInstall or ""} 32 + 33 + # Remove the broken `nextonic` symlink 34 + # It points to `tectonic`, which doesn't exist because the exe is 35 + # renamed to texpresso-tonic 36 + rm $out/bin/nextonic 37 + ''; 38 + meta = prevAttrs.meta // { 39 + mainProgram = "texpresso-tonic"; 40 + }; 41 + } 42 + )
+3 -3
pkgs/by-name/uv/uv/package.nix
··· 20 20 21 21 rustPlatform.buildRustPackage rec { 22 22 pname = "uv"; 23 - version = "0.6.2"; 23 + version = "0.6.3"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "astral-sh"; 27 27 repo = "uv"; 28 28 tag = version; 29 - hash = "sha256-kzmdxOS5ln9/VIyPIs1mHYGZG5R8KxJDZpX+I6ucsPg="; 29 + hash = "sha256-eT+pCw5azFhUS9ChOsJm7zXKAr/PeJeakBcoGolL+lI="; 30 30 }; 31 31 32 32 useFetchCargoVendor = true; 33 - cargoHash = "sha256-XoXksl5N8tyJWE/J3N6fFuIrmGaehnmFEKGrMvfzdq0="; 33 + cargoHash = "sha256-tCbNMV2r05bIo/xa1TmzocL8ccJyVCDKV735epPxd24="; 34 34 35 35 buildInputs = [ 36 36 rust-jemalloc-sys
+1
pkgs/by-name/vi/vimb-unwrapped/package.nix
··· 36 36 37 37 passthru = { 38 38 inherit gtk3; 39 + applicationName = "Vimb"; 39 40 }; 40 41 41 42 makeFlags = [ "PREFIX=${placeholder "out"}" ];
+71
pkgs/by-name/wa/waywall/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + libGL, 6 + libspng, 7 + libxkbcommon, 8 + luajit, 9 + meson, 10 + ninja, 11 + pkg-config, 12 + wayland, 13 + wayland-protocols, 14 + wayland-scanner, 15 + xorg, 16 + xwayland, 17 + }: 18 + stdenv.mkDerivation { 19 + pname = "waywall"; 20 + version = "0-unstable-2025-02-07"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "tesselslate"; 24 + repo = "waywall"; 25 + rev = "be96e20997c5886af9661d9832b7902aba1e5311"; 26 + hash = "sha256-77GbBzHjyZuauhl0vlguUS/7jBT4qNjOLYGWBVTPjEY="; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + meson 31 + ninja 32 + pkg-config 33 + wayland-scanner 34 + ]; 35 + 36 + buildInputs = [ 37 + libGL 38 + libspng 39 + libxkbcommon 40 + luajit 41 + wayland 42 + wayland-protocols 43 + xorg.libxcb 44 + xwayland 45 + ]; 46 + 47 + installPhase = '' 48 + runHook preInstall 49 + 50 + install -Dm755 waywall/waywall -t $out/bin 51 + 52 + runHook postInstall 53 + ''; 54 + 55 + meta = { 56 + description = "Wayland compositor for Minecraft speedrunning"; 57 + longDescription = '' 58 + Waywall is a Wayland compositor that provides various convenient 59 + features (key rebinding, Ninjabrain Bot support, etc) for Minecraft 60 + speedrunning. It is designed to be nested within an existing Wayland 61 + session and is intended as a successor to resetti. 62 + ''; 63 + homepage = "https://tesselslate.github.io/waywall/"; 64 + license = lib.licenses.gpl3Only; 65 + maintainers = with lib.maintainers; [ 66 + monkieeboi 67 + ]; 68 + platforms = lib.platforms.linux; 69 + mainProgram = "waywall"; 70 + }; 71 + }
+4 -4
pkgs/by-name/zr/zrok/package.nix
··· 18 18 19 19 hash = 20 20 { 21 - x86_64-linux = "sha256-eF+PazWfQjWvrQrrf1D/8wEJgzQZGzpWEEYsJTN07pM="; 22 - aarch64-linux = "sha256-y8Vqh4I8BW2KfK6TVbRAT1Hx0G0oAJrkCDihgO8VH18="; 23 - armv7l-linux = "sha256-RSwBFM6glrVbl7KttGT7kl/sB8ctyVhu+MZUXSmFyYY="; 21 + x86_64-linux = "sha256-3W6y79GXhBzy4YTafUuct6kWc6yvVdhJGL+Byg+AXog="; 22 + aarch64-linux = "sha256-qhl+yT1lAf/xXhEoMZ7lkGZWKnwI0ANQrHO1BHcGrfo="; 23 + armv7l-linux = "sha256-EYbvN+Z7KFVoJk1KNljgypjbBnJJ4dM+YFl8RQri5jw="; 24 24 } 25 25 .${system} or throwSystem; 26 26 in 27 27 stdenv.mkDerivation (finalAttrs: { 28 28 pname = "zrok"; 29 - version = "0.4.45"; 29 + version = "0.4.46"; 30 30 31 31 src = fetchzip { 32 32 url = "https://github.com/openziti/zrok/releases/download/v${finalAttrs.version}/zrok_${finalAttrs.version}_${plat}.tar.gz";
+5 -2
pkgs/desktops/deepin/apps/deepin-editor/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "deepin-editor"; 19 - version = "6.5.8"; 19 + version = "6.5.15"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "linuxdeepin"; 23 23 repo = pname; 24 24 rev = version; 25 - hash = "sha256-QMq7DIggMhY4EseIa7/tvgxGwZn07OitOm1YjrzMFHg="; 25 + hash = "sha256-aMxEESZ/noGtEDpQZz1asR0M+wnAfQT1FXLaQB6B0Zs="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ ··· 49 49 strictDeps = true; 50 50 51 51 cmakeFlags = [ "-DVERSION=${version}" ]; 52 + 53 + # Fix build with icu4c: "error: parameter declared 'auto'" 54 + env.NIX_CFLAGS_COMPILE = toString [ "--std=c++17" ]; 52 55 53 56 meta = { 54 57 description = "Desktop text editor that supports common text editing features";
+5 -1
pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix
··· 80 80 81 81 cmakeFlags = [ "-DVERSION=${version}" ]; 82 82 83 - env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; 83 + # To build with icu4c need at least c++17 84 + env.NIX_CFLAGS_COMPILE = toString [ 85 + "-Wno-error=incompatible-pointer-types" 86 + "--std=c++17" 87 + ]; 84 88 85 89 strictDeps = true; 86 90
-1
pkgs/development/node-packages/node-packages.json
··· 149 149 , "reveal.js" 150 150 , "rimraf" 151 151 , "rollup" 152 - , {"rust-analyzer-build-deps": "../../applications/editors/vscode/extensions/rust-lang.rust-analyzer/build-deps"} 153 152 , "sass" 154 153 , "semver" 155 154 , "serve"
+1098 -3530
pkgs/development/node-packages/node-packages.nix
··· 39 39 sha512 = "30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="; 40 40 }; 41 41 }; 42 - "@angular-devkit/architect-0.1901.7" = { 42 + "@angular-devkit/architect-0.1901.8" = { 43 43 name = "_at_angular-devkit_slash_architect"; 44 44 packageName = "@angular-devkit/architect"; 45 - version = "0.1901.7"; 45 + version = "0.1901.8"; 46 46 src = fetchurl { 47 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1901.7.tgz"; 48 - sha512 = "qltyebfbej7joIKZVH8EFfrVDrkw0p9N9ja3A0XeU1sl2vlepHNAQdVm0Os8Vy2XjjyHvT5bXWE3G3/221qEKw=="; 47 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1901.8.tgz"; 48 + sha512 = "DzvlL1Zg+zOnVmMN3CjE5KzjZAltRZwOwwcso72iWenBPvl/trKzPDlA6ySmpRonm+AR9i9JrdLEUlwczW6/bQ=="; 49 49 }; 50 50 }; 51 - "@angular-devkit/core-19.1.7" = { 51 + "@angular-devkit/core-19.1.8" = { 52 52 name = "_at_angular-devkit_slash_core"; 53 53 packageName = "@angular-devkit/core"; 54 - version = "19.1.7"; 54 + version = "19.1.8"; 55 55 src = fetchurl { 56 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-19.1.7.tgz"; 57 - sha512 = "q0I6L9KTqyQ7D5M8H+fWLT+yjapvMNb7SRdfU6GzmexO66Dpo83q4HDzuDKIPDF29Yl0ELs9ICJqe9yUXh6yDQ=="; 56 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-19.1.8.tgz"; 57 + sha512 = "j1zHKvOsGwu5YwAZGuzi835R9vcW7PkfxmSRIJeVl+vawgk31K3zFb4UPH8AY/NPWYqXIAnwpka3HC1+JrWLWA=="; 58 58 }; 59 59 }; 60 - "@angular-devkit/schematics-19.1.7" = { 60 + "@angular-devkit/schematics-19.1.8" = { 61 61 name = "_at_angular-devkit_slash_schematics"; 62 62 packageName = "@angular-devkit/schematics"; 63 - version = "19.1.7"; 63 + version = "19.1.8"; 64 64 src = fetchurl { 65 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.1.7.tgz"; 66 - sha512 = "AP6FvhMybCYs3gs+vzEAzSU1K//AFT3SVTRFv+C3WMO5dLeAHeGzM8I2dxD5EHQQtqIE/8apP6CxGrnpA5YlFg=="; 65 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.1.8.tgz"; 66 + sha512 = "2JGUMD3zjfY8G4RYpypm2/1YEO+O4DtFycUvptIpsBYyULgnEbJ3tlp2oRiXI2vp9tC8IyWqa/swlA8DTI6ZYQ=="; 67 67 }; 68 68 }; 69 69 "@apidevtools/json-schema-ref-parser-11.7.2" = { ··· 300 300 sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw=="; 301 301 }; 302 302 }; 303 - "@aws-sdk/client-s3-3.749.0" = { 303 + "@aws-sdk/client-s3-3.750.0" = { 304 304 name = "_at_aws-sdk_slash_client-s3"; 305 305 packageName = "@aws-sdk/client-s3"; 306 - version = "3.749.0"; 306 + version = "3.750.0"; 307 307 src = fetchurl { 308 - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.749.0.tgz"; 309 - sha512 = "Xi+DaBeYRIa2d+1QTAlBdbRIc9j3+H+H5aMbxIrlyIYE2NOz+4fhIgpUYuF4ln63p9Fby5Wh36DhHJYyN4uE0w=="; 308 + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.750.0.tgz"; 309 + sha512 = "S9G9noCeBxchoMVkHYrRi1A1xW/VOTP2W7X34lP+Y7Wpl32yMA7IJo0fAGAuTc0q1Nu6/pXDm+oDG7rhTCA1tg=="; 310 310 }; 311 311 }; 312 312 "@aws-sdk/client-sso-3.296.0" = { ··· 318 318 sha512 = "0P0x++jhlmhzViFPOHvTb7+Z6tSV9aONwB8CchIseg2enSPBbGfml7y5gQu1jdOTDS6pBUmrPZ+9sOI4/GvAfA=="; 319 319 }; 320 320 }; 321 - "@aws-sdk/client-sso-3.749.0" = { 321 + "@aws-sdk/client-sso-3.750.0" = { 322 322 name = "_at_aws-sdk_slash_client-sso"; 323 323 packageName = "@aws-sdk/client-sso"; 324 - version = "3.749.0"; 324 + version = "3.750.0"; 325 325 src = fetchurl { 326 - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.749.0.tgz"; 327 - sha512 = "ecmuDu8EPya1LDpGRtpgN7C9PHayDh8EaW37ZBKhuxA7cg099yvTFqsGngwRXbhNjKJ4oVa9OUe0EDnu60atYA=="; 326 + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.750.0.tgz"; 327 + sha512 = "y0Rx6pTQXw0E61CaptpZF65qNggjqOgymq/RYZU5vWba5DGQ+iqGt8Yq8s+jfBoBBNXshxq8l8Dl5Uq/JTY1wg=="; 328 328 }; 329 329 }; 330 330 "@aws-sdk/client-sso-oidc-3.296.0" = { ··· 345 345 sha512 = "ew7hSVNpitnLCIRVhnI2L1HZB/yYpRQFReR62fOqCUnpKqm6WGga37bnvgYbY5y0Rv23C0VHARovwunVg1gabA=="; 346 346 }; 347 347 }; 348 - "@aws-sdk/client-sts-3.749.0" = { 348 + "@aws-sdk/client-sts-3.750.0" = { 349 349 name = "_at_aws-sdk_slash_client-sts"; 350 350 packageName = "@aws-sdk/client-sts"; 351 - version = "3.749.0"; 351 + version = "3.750.0"; 352 352 src = fetchurl { 353 - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.749.0.tgz"; 354 - sha512 = "4/IRLUVeH1JEVCOA98E943aAgeu/pHdEFiWElDSYnhYWu1hhqfo9IEJwR3F+anaPFi6jn39T6oQzj2ThEUCVUA=="; 353 + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.750.0.tgz"; 354 + sha512 = "MdzI7nTP4Th+Xam+u0HPZAnS0172Xfi96RLx99Dg/UR7tgIvj2bbhIeGQIDihwB7TdFh1WxOaNHJjm9asgJepg=="; 355 355 }; 356 356 }; 357 357 "@aws-sdk/config-resolver-3.296.0" = { ··· 363 363 sha512 = "Ecdp7fmIitHo49NRCyIEHb9xlI43J7qkvhcwaKGGqN5jvoh0YhR2vNr195wWG8Ip/9PwsD4QV4g/XT5EY7XkMA=="; 364 364 }; 365 365 }; 366 - "@aws-sdk/core-3.749.0" = { 366 + "@aws-sdk/core-3.750.0" = { 367 367 name = "_at_aws-sdk_slash_core"; 368 368 packageName = "@aws-sdk/core"; 369 - version = "3.749.0"; 369 + version = "3.750.0"; 370 370 src = fetchurl { 371 - url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.749.0.tgz"; 372 - sha512 = "w5Jj573+XKwrDNZUjUJDXL5upx+RCw64TLq3Zk8FVg9MsgkzAPorQ9qmzffi6os+PWngd3pFmD8q5y+Y35LpFQ=="; 371 + url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.750.0.tgz"; 372 + sha512 = "bZ5K7N5L4+Pa2epbVpUQqd1XLG2uU8BGs/Sd+2nbgTf+lNQJyIxAg/Qsrjz9MzmY8zzQIeRQEkNmR6yVAfCmmQ=="; 373 373 }; 374 374 }; 375 375 "@aws-sdk/credential-provider-env-3.296.0" = { ··· 381 381 sha512 = "eDWSU3p04gytkkVXnYn05YzrP5SEaj/DQiafd4y+iBl8IFfF3zM6982rs6qFhvpwrHeSbLqHNfKR1HDWVwfG5g=="; 382 382 }; 383 383 }; 384 - "@aws-sdk/credential-provider-env-3.749.0" = { 384 + "@aws-sdk/credential-provider-env-3.750.0" = { 385 385 name = "_at_aws-sdk_slash_credential-provider-env"; 386 386 packageName = "@aws-sdk/credential-provider-env"; 387 - version = "3.749.0"; 387 + version = "3.750.0"; 388 388 src = fetchurl { 389 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.749.0.tgz"; 390 - sha512 = "bhB1ds5QzcSfmCTbjVessXy8xHJROota6wOhFtBsL1aZRQyNN2a9h2QS6xkxjmqVE3yHBsPz+OiSOeLn0kxm7Q=="; 389 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.750.0.tgz"; 390 + sha512 = "In6bsG0p/P31HcH4DBRKBbcDS/3SHvEPjfXV8ODPWZO/l3/p7IRoYBdQ07C9R+VMZU2D0+/Sc/DWK/TUNDk1+Q=="; 391 391 }; 392 392 }; 393 - "@aws-sdk/credential-provider-http-3.749.0" = { 393 + "@aws-sdk/credential-provider-http-3.750.0" = { 394 394 name = "_at_aws-sdk_slash_credential-provider-http"; 395 395 packageName = "@aws-sdk/credential-provider-http"; 396 - version = "3.749.0"; 396 + version = "3.750.0"; 397 397 src = fetchurl { 398 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.749.0.tgz"; 399 - sha512 = "enFGT8uvETbE6+4bDA2aTOrA/83GrIVPpg2g2r7MwJb36jreXA3KDXaP/5jQsxyIZW70cnYNl/Cawdd4ZXs7CQ=="; 398 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.750.0.tgz"; 399 + sha512 = "wFB9qqfa20AB0dElsQz5ZlZT5o+a+XzpEpmg0erylmGYqEOvh8NQWfDUVpRmQuGq9VbvW/8cIbxPoNqEbPtuWQ=="; 400 400 }; 401 401 }; 402 402 "@aws-sdk/credential-provider-imds-3.296.0" = { ··· 417 417 sha512 = "U0ecY0GX2jeDAgmTzaVO9YgjlLUfb8wgZSu1OwbOxCJscL/5eFkhcF0/xJQXDbRgcj4H4dlquqeSWsBVl/PgvQ=="; 418 418 }; 419 419 }; 420 - "@aws-sdk/credential-provider-ini-3.749.0" = { 420 + "@aws-sdk/credential-provider-ini-3.750.0" = { 421 421 name = "_at_aws-sdk_slash_credential-provider-ini"; 422 422 packageName = "@aws-sdk/credential-provider-ini"; 423 - version = "3.749.0"; 423 + version = "3.750.0"; 424 424 src = fetchurl { 425 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.749.0.tgz"; 426 - sha512 = "OB4AGK61lQdoW2mTmaMBw8L+eBo7wF3YJZXwqFI7M2cQe9WtfuKGIxbYWMBMzoLvEtmsbzeppoZZUezooaIclg=="; 425 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.750.0.tgz"; 426 + sha512 = "2YIZmyEr5RUd3uxXpxOLD9G67Bibm4I/65M6vKFP17jVMUT+R1nL7mKqmhEVO2p+BoeV+bwMyJ/jpTYG368PCg=="; 427 427 }; 428 428 }; 429 429 "@aws-sdk/credential-provider-node-3.296.0" = { ··· 435 435 sha512 = "oCkmh2b1DQhHkhd/qA9jiSIOkrBBK7cMg1/PVIgLw8e15NkzUHBObLJ/ZQw6ZzCxZzjlMYaFv9oCB8hyO8txmA=="; 436 436 }; 437 437 }; 438 - "@aws-sdk/credential-provider-node-3.749.0" = { 438 + "@aws-sdk/credential-provider-node-3.750.0" = { 439 439 name = "_at_aws-sdk_slash_credential-provider-node"; 440 440 packageName = "@aws-sdk/credential-provider-node"; 441 - version = "3.749.0"; 441 + version = "3.750.0"; 442 442 src = fetchurl { 443 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.749.0.tgz"; 444 - sha512 = "1QGstZmGmgmY0rLSTAURlBJdR4s2PRYiZh6dS4HkzzQu7xVDWoCMD+2F7dolsNA8ChTNx2OvBW80n3O9QPICCg=="; 443 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.750.0.tgz"; 444 + sha512 = "THWHHAceLwsOiowPEmKyhWVDlEUxH07GHSw5AQFDvNQtGKOQl0HSIFO1mKObT2Q2Vqzji9Bq8H58SO5BFtNPRw=="; 445 445 }; 446 446 }; 447 447 "@aws-sdk/credential-provider-process-3.296.0" = { ··· 453 453 sha512 = "AY7sTX2dGi8ripuCpcJLYHOZB2wJ6NnseyK/kK5TfJn/pgboKwuGtz0hkJCVprNWomKa6IpHksm7vLQ4O2E+UA=="; 454 454 }; 455 455 }; 456 - "@aws-sdk/credential-provider-process-3.749.0" = { 456 + "@aws-sdk/credential-provider-process-3.750.0" = { 457 457 name = "_at_aws-sdk_slash_credential-provider-process"; 458 458 packageName = "@aws-sdk/credential-provider-process"; 459 - version = "3.749.0"; 459 + version = "3.750.0"; 460 460 src = fetchurl { 461 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.749.0.tgz"; 462 - sha512 = "C/cgg/AhRabybZRY9mJ6KDz8uqfasWKuFIFGzTpeb/MIDIL53ZqP61CspiQJTRvC4zlFGqvm43XefphfrBGGlQ=="; 461 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.750.0.tgz"; 462 + sha512 = "Q78SCH1n0m7tpu36sJwfrUSxI8l611OyysjQeMiIOliVfZICEoHcLHLcLkiR+tnIpZ3rk7d2EQ6R1jwlXnalMQ=="; 463 463 }; 464 464 }; 465 465 "@aws-sdk/credential-provider-sso-3.296.0" = { ··· 471 471 sha512 = "zPFHDX/niXfcQrKQhmBv1XPYEe4b7im4vRKrzjYXgDRpG2M3LP0KaWIwN6Ap+GRYBNBthen86vhTlmKGzyU5YA=="; 472 472 }; 473 473 }; 474 - "@aws-sdk/credential-provider-sso-3.749.0" = { 474 + "@aws-sdk/credential-provider-sso-3.750.0" = { 475 475 name = "_at_aws-sdk_slash_credential-provider-sso"; 476 476 packageName = "@aws-sdk/credential-provider-sso"; 477 - version = "3.749.0"; 477 + version = "3.750.0"; 478 478 src = fetchurl { 479 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.749.0.tgz"; 480 - sha512 = "bQNgWcYk10fYOvFwcLskYYVNLO3KMgmV1ip9ieapJb9JDg6bSBaXNjIDhdpK4biTOfrV+adtDO5EU93ogpmAWA=="; 479 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.750.0.tgz"; 480 + sha512 = "FGYrDjXN/FOQVi/t8fHSv8zCk+NEvtFnuc4cZUj5OIbM4vrfFc5VaPyn41Uza3iv6Qq9rZg0QOwWnqK8lNrqUw=="; 481 481 }; 482 482 }; 483 483 "@aws-sdk/credential-provider-web-identity-3.296.0" = { ··· 489 489 sha512 = "Rl6Ohoekxe+pccA55XXQDW5wApbg3rGWr6FkmPRcg7Ld6Vfe+HL8OtfsFf83/0eoFerevbif+00BdknXWT05LA=="; 490 490 }; 491 491 }; 492 - "@aws-sdk/credential-provider-web-identity-3.749.0" = { 492 + "@aws-sdk/credential-provider-web-identity-3.750.0" = { 493 493 name = "_at_aws-sdk_slash_credential-provider-web-identity"; 494 494 packageName = "@aws-sdk/credential-provider-web-identity"; 495 - version = "3.749.0"; 495 + version = "3.750.0"; 496 496 src = fetchurl { 497 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.749.0.tgz"; 498 - sha512 = "jzHk6i4G4dnXL+L+qeILguDCiIhA1rNvJzB5lTts4R8OdmNkG12bGbYL8bL4O1b5qCimlo7HS0IZIby0pS7rcg=="; 497 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.750.0.tgz"; 498 + sha512 = "Nz8zs3YJ+GOTSrq+LyzbbC1Ffpt7pK38gcOyNZv76pP5MswKTUKNYBJehqwa+i7FcFQHsCk3TdhR8MT1ZR23uA=="; 499 499 }; 500 500 }; 501 - "@aws-sdk/crt-loader-3.749.0" = { 501 + "@aws-sdk/crt-loader-3.750.0" = { 502 502 name = "_at_aws-sdk_slash_crt-loader"; 503 503 packageName = "@aws-sdk/crt-loader"; 504 - version = "3.749.0"; 504 + version = "3.750.0"; 505 505 src = fetchurl { 506 - url = "https://registry.npmjs.org/@aws-sdk/crt-loader/-/crt-loader-3.749.0.tgz"; 507 - sha512 = "HLakuc/wWQbeG2VfHS6UHflV0HbTDnLQrooOu0RgQaGmmXxcyx26lPGMtxsAylSQ2+Rw1p55ViIal27pclf0gQ=="; 506 + url = "https://registry.npmjs.org/@aws-sdk/crt-loader/-/crt-loader-3.750.0.tgz"; 507 + sha512 = "L92XdDaDKQi1ldocQnBjUpu5o47GMdGaZ2TTUDOnOZyIggb15lNsfknJaLz3Q74rx09qkY1OYe8zsTKBB7lMmQ=="; 508 508 }; 509 509 }; 510 510 "@aws-sdk/eventstream-codec-3.296.0" = { ··· 606 606 sha512 = "SCIt10cr5dud7hvwveU4wkLjvkGssJ3GrcbHCds2NwI+JHmpcaaNYLAqi305JAuT29T36U5ssTFDSmrrEOcfag=="; 607 607 }; 608 608 }; 609 - "@aws-sdk/lib-storage-3.749.0" = { 609 + "@aws-sdk/lib-storage-3.750.0" = { 610 610 name = "_at_aws-sdk_slash_lib-storage"; 611 611 packageName = "@aws-sdk/lib-storage"; 612 - version = "3.749.0"; 612 + version = "3.750.0"; 613 613 src = fetchurl { 614 - url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.749.0.tgz"; 615 - sha512 = "eYvsRWzukHeZ3k/hFt66or33JJg5zAm/jtstbxZaKRq/H1VfWkKh1QyQHu0UiOXZnjEkTFNJujwGME8JmAWpRg=="; 614 + url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.750.0.tgz"; 615 + sha512 = "2IHbhUzlKtiAZVW7S5jkJfVDj5pJC9TldHGJLYRAR9GReG9HhK6mI7kLnYE9jf3GchWfe/Bn3wqSwh3BIf0OZQ=="; 616 616 }; 617 617 }; 618 618 "@aws-sdk/md5-js-3.296.0" = { ··· 687 687 sha512 = "F5wVMhLIgA86PKsK/Az7LGIiNVDdZjoSn0+boe6fYW/AIAmgJhPf//500Md0GsKsLOCcPcxiQC43a0hVT2zbew=="; 688 688 }; 689 689 }; 690 - "@aws-sdk/middleware-flexible-checksums-3.749.0" = { 690 + "@aws-sdk/middleware-flexible-checksums-3.750.0" = { 691 691 name = "_at_aws-sdk_slash_middleware-flexible-checksums"; 692 692 packageName = "@aws-sdk/middleware-flexible-checksums"; 693 - version = "3.749.0"; 693 + version = "3.750.0"; 694 694 src = fetchurl { 695 - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.749.0.tgz"; 696 - sha512 = "LebOuHbO5BPeke0EB7I7aU7EK807XEyHeCQ3El4CztkGr7cY37PiYP5E0bsSs/4dlK534en/oD0dBA82gZ3xcg=="; 695 + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.750.0.tgz"; 696 + sha512 = "ach0d2buDnX2TUausUbiXXFWFo3IegLnCrA+Rw8I9AYVpLN9lTaRwAYJwYC6zEuW9Golff8MwkYsp/OaC5tKMw=="; 697 697 }; 698 698 }; 699 699 "@aws-sdk/middleware-host-header-3.296.0" = { ··· 786 786 sha512 = "zH4uZKEqumo01wn+dTwrYnvOui9GjDiuBHdECnSjnA0Mkxo/tfMPYzYD7mE8kUlBz7HfQcXeXlyaApj9fPkxvg=="; 787 787 }; 788 788 }; 789 - "@aws-sdk/middleware-sdk-s3-3.749.0" = { 789 + "@aws-sdk/middleware-sdk-s3-3.750.0" = { 790 790 name = "_at_aws-sdk_slash_middleware-sdk-s3"; 791 791 packageName = "@aws-sdk/middleware-sdk-s3"; 792 - version = "3.749.0"; 792 + version = "3.750.0"; 793 793 src = fetchurl { 794 - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.749.0.tgz"; 795 - sha512 = "A7OaNkSFzI2vCRarSKEzoVejAyiLY1M1Z6PR3TE2woAPUUAgRv5UlFOXSymBx1Ya3HUQzWky7mnpnKAFyRGzSg=="; 794 + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.750.0.tgz"; 795 + sha512 = "3H6Z46cmAQCHQ0z8mm7/cftY5ifiLfCjbObrbyyp2fhQs9zk6gCKzIX8Zjhw0RMd93FZi3ebRuKJWmMglf4Itw=="; 796 796 }; 797 797 }; 798 798 "@aws-sdk/middleware-sdk-sts-3.296.0" = { ··· 858 858 sha512 = "L7jacxSt6gxX1gD3tQtfwHqBDk5rT2wWD3rxBa6rs7f81b9ObgY/sPT2IgRT7JNCVzvKLYFxJaTklDj65mY1SQ=="; 859 859 }; 860 860 }; 861 - "@aws-sdk/middleware-user-agent-3.749.0" = { 861 + "@aws-sdk/middleware-user-agent-3.750.0" = { 862 862 name = "_at_aws-sdk_slash_middleware-user-agent"; 863 863 packageName = "@aws-sdk/middleware-user-agent"; 864 - version = "3.749.0"; 864 + version = "3.750.0"; 865 865 src = fetchurl { 866 - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.749.0.tgz"; 867 - sha512 = "dNRkZtiM8OoGb/h2Fgrgvty9ltYEubzsD5FH+VN14RrluertLQMmqHrgvq7JoAXFf7MJy+uwhRu4V6pf1sZR/w=="; 866 + url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.750.0.tgz"; 867 + sha512 = "YYcslDsP5+2NZoN3UwuhZGkhAHPSli7HlJHBafBrvjGV/I9f8FuOO1d1ebxGdEP4HyRXUGyh+7Ur4q+Psk0ryw=="; 868 868 }; 869 869 }; 870 - "@aws-sdk/nested-clients-3.749.0" = { 870 + "@aws-sdk/nested-clients-3.750.0" = { 871 871 name = "_at_aws-sdk_slash_nested-clients"; 872 872 packageName = "@aws-sdk/nested-clients"; 873 - version = "3.749.0"; 873 + version = "3.750.0"; 874 874 src = fetchurl { 875 - url = "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.749.0.tgz"; 876 - sha512 = "5L8OuVojcVQAZw+iVXTaw88AZTlMw8fD51lB6spzbZdNLl6dd5Iz1JVJAOUl2mTAZXRiN5Q9VECwY1yMgWweAw=="; 875 + url = "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.750.0.tgz"; 876 + sha512 = "OH68BRF0rt9nDloq4zsfeHI0G21lj11a66qosaljtEP66PWm7tQ06feKbFkXHT5E1K3QhJW3nVyK8v2fEBY5fg=="; 877 877 }; 878 878 }; 879 879 "@aws-sdk/node-config-provider-3.296.0" = { ··· 939 939 sha512 = "Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ=="; 940 940 }; 941 941 }; 942 - "@aws-sdk/s3-presigned-post-3.749.0" = { 942 + "@aws-sdk/s3-presigned-post-3.750.0" = { 943 943 name = "_at_aws-sdk_slash_s3-presigned-post"; 944 944 packageName = "@aws-sdk/s3-presigned-post"; 945 - version = "3.749.0"; 945 + version = "3.750.0"; 946 946 src = fetchurl { 947 - url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.749.0.tgz"; 948 - sha512 = "CpIP8PhXLt/ooEqhaRsxF+gcOB83p+TkAqdqgxp2SJhsIvHqEwjjhrk31IZe1IXDMjpgbt6VvZ2lGJLAUBytNw=="; 947 + url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.750.0.tgz"; 948 + sha512 = "pKCc/ZMj4rSnMwRyRiMfmTIPj5ODc0VM11+Lkywl+rEWru9kH05fww6TYximZuiBcixbaMVkQ4ePXj6DNsRB4w=="; 949 949 }; 950 950 }; 951 951 "@aws-sdk/s3-request-presigner-3.296.0" = { ··· 957 957 sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw=="; 958 958 }; 959 959 }; 960 - "@aws-sdk/s3-request-presigner-3.749.0" = { 960 + "@aws-sdk/s3-request-presigner-3.750.0" = { 961 961 name = "_at_aws-sdk_slash_s3-request-presigner"; 962 962 packageName = "@aws-sdk/s3-request-presigner"; 963 - version = "3.749.0"; 963 + version = "3.750.0"; 964 964 src = fetchurl { 965 - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.749.0.tgz"; 966 - sha512 = "ZUBBJvKGXNuLTsHymBjGsr6WoouRVojURouAc8ueePWxTCt0u/mOOP0KRFVfwmM166YMr+QWr/ym4bJ8aHLAkA=="; 965 + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.750.0.tgz"; 966 + sha512 = "G4GNngNQlh9EyJZj2WKOOikX0Fev1WSxTV/XJugaHlpnVriebvi3GzolrgxUpRrcGpFGWjmAxLi/gYxTUla1ow=="; 967 967 }; 968 968 }; 969 969 "@aws-sdk/service-error-classification-3.296.0" = { ··· 993 993 sha512 = "NQyJ/FClty4VmF1WoV4rOkbN0Unn0zevzy8iJrYhqxE3Sc7lySM4Btnsd4Iqelm2dR6l+jNRApGgD8NvoGjGig=="; 994 994 }; 995 995 }; 996 - "@aws-sdk/signature-v4-crt-3.749.0" = { 996 + "@aws-sdk/signature-v4-crt-3.750.0" = { 997 997 name = "_at_aws-sdk_slash_signature-v4-crt"; 998 998 packageName = "@aws-sdk/signature-v4-crt"; 999 - version = "3.749.0"; 999 + version = "3.750.0"; 1000 1000 src = fetchurl { 1001 - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.749.0.tgz"; 1002 - sha512 = "h1cOkh7q8Q26Fx4CrxZEGORtZM0J2J33zTOQ97Rl/CL0Wyp9tGthC7lb7205iJcaZXQ40YL2qzqPdUzlAldCtg=="; 1001 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.750.0.tgz"; 1002 + sha512 = "8GET9edlujvrCHi4C6mnlViiQmYsena6HiSAHIeLh6vu7WgCDI1Gpgo2UI7Z93TRjyhp/c95ifKVjJDeauPPrw=="; 1003 1003 }; 1004 1004 }; 1005 1005 "@aws-sdk/signature-v4-multi-region-3.296.0" = { ··· 1011 1011 sha512 = "BNMXS0YJEgflPhO2KxXG4f0iTMOGdyxslDMNGmMWGGQm6bbwtqZ7Y9ZyMQYKfzk3GUPpfGQcaaSNiGfURPOCOg=="; 1012 1012 }; 1013 1013 }; 1014 - "@aws-sdk/signature-v4-multi-region-3.749.0" = { 1014 + "@aws-sdk/signature-v4-multi-region-3.750.0" = { 1015 1015 name = "_at_aws-sdk_slash_signature-v4-multi-region"; 1016 1016 packageName = "@aws-sdk/signature-v4-multi-region"; 1017 - version = "3.749.0"; 1017 + version = "3.750.0"; 1018 1018 src = fetchurl { 1019 - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.749.0.tgz"; 1020 - sha512 = "8ZR3vnJn1Tgg/qpalkyQMUILzZhw6XV1aCDxYMevqHYu6/f0ujvytJjiUd+j92sfxgN781f6bWpt/jVY0jarxg=="; 1019 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.750.0.tgz"; 1020 + sha512 = "RA9hv1Irro/CrdPcOEXKwJ0DJYJwYCsauGEdRXihrRfy8MNSR9E+mD5/Fr5Rxjaq5AHM05DYnN3mg/DU6VwzSw=="; 1021 1021 }; 1022 1022 }; 1023 1023 "@aws-sdk/smithy-client-3.296.0" = { ··· 1038 1038 sha512 = "yC1ku7A5S+o/CLlgbgDB2bx8+Wq43qj8xfohmTuIhpiP2m/NyUiRVv6S6ARONLI6bVeo1T2/BFk5Q9DfE2xzAQ=="; 1039 1039 }; 1040 1040 }; 1041 - "@aws-sdk/token-providers-3.749.0" = { 1041 + "@aws-sdk/token-providers-3.750.0" = { 1042 1042 name = "_at_aws-sdk_slash_token-providers"; 1043 1043 packageName = "@aws-sdk/token-providers"; 1044 - version = "3.749.0"; 1044 + version = "3.750.0"; 1045 1045 src = fetchurl { 1046 - url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.749.0.tgz"; 1047 - sha512 = "s3ExVWoNZan6U7ljMqjiHq3bOe4EqL+U+cVPwqNxAsMaJpGyCiA8VQFlXNGg0EPAFbz/0DVBcozYht6/vyH3sg=="; 1046 + url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.750.0.tgz"; 1047 + sha512 = "X/KzqZw41iWolwNdc8e3RMcNSMR364viHv78u6AefXOO5eRM40c4/LuST1jDzq35/LpnqRhL7/MuixOetw+sFw=="; 1048 1048 }; 1049 1049 }; 1050 1050 "@aws-sdk/types-3.296.0" = { ··· 1290 1290 sha512 = "AMWac8aIBnaa9nxAEpZ752j29a/UQTViRfR5gnCX38ECBKGfOQMpgYnee5HdlMr4GHJj0WkOzQxBtInW4pV58g=="; 1291 1291 }; 1292 1292 }; 1293 - "@aws-sdk/util-user-agent-node-3.749.0" = { 1293 + "@aws-sdk/util-user-agent-node-3.750.0" = { 1294 1294 name = "_at_aws-sdk_slash_util-user-agent-node"; 1295 1295 packageName = "@aws-sdk/util-user-agent-node"; 1296 - version = "3.749.0"; 1296 + version = "3.750.0"; 1297 1297 src = fetchurl { 1298 - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.749.0.tgz"; 1299 - sha512 = "uBzolGGrwvZKhpYlGIy9tw6gRdqVs2zyjjXUiifdgbr3WiQXJe8sE1KhLjzyN/VOPcZB0rY34ybqiKEDOymOeQ=="; 1298 + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.750.0.tgz"; 1299 + sha512 = "84HJj9G9zbrHX2opLk9eHfDceB+UIHVrmflMzWHpsmo9fDuro/flIBqaVDlE021Osj6qIM0SJJcnL6s23j7JEw=="; 1300 1300 }; 1301 1301 }; 1302 1302 "@aws-sdk/util-utf8-3.295.0" = { ··· 1443 1443 sha512 = "EknvVmtBuSIic47xkOqyNabAme0RYTw52BTMz8eBgU1ysTyMrD1uOoM+JdS0J/4Yfp98IBT3osqq3BfwSaNaGQ=="; 1444 1444 }; 1445 1445 }; 1446 - "@azure/identity-4.6.0" = { 1447 - name = "_at_azure_slash_identity"; 1448 - packageName = "@azure/identity"; 1449 - version = "4.6.0"; 1450 - src = fetchurl { 1451 - url = "https://registry.npmjs.org/@azure/identity/-/identity-4.6.0.tgz"; 1452 - sha512 = "ANpO1iAvcZmpD4QY7/kaE/P2n66pRXsDp3nMUC6Ow3c9KfXOZF7qMU9VgqPw8m7adP7TVIbVyrCEmD9cth3KQQ=="; 1453 - }; 1454 - }; 1455 1446 "@azure/logger-1.1.4" = { 1456 1447 name = "_at_azure_slash_logger"; 1457 1448 packageName = "@azure/logger"; ··· 1470 1461 sha512 = "OHHEWMB5+Zrix8yKvLVzU3rKDFvh7SOzAzXfICD7YgUXLxfHpTPX2pzOotrri1kskwhHqIj4a5LvhZlIqE7C7g=="; 1471 1462 }; 1472 1463 }; 1473 - "@azure/msal-browser-4.2.1" = { 1474 - name = "_at_azure_slash_msal-browser"; 1475 - packageName = "@azure/msal-browser"; 1476 - version = "4.2.1"; 1477 - src = fetchurl { 1478 - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-4.2.1.tgz"; 1479 - sha512 = "pJX+HNVxEEvxqj3xvnFKMi/Yb6jadwOWN2QkDagj2GV2XXxJg3qq5zkE+czVw6Cmf4QiXxct+J0WF23sE8vZyA=="; 1480 - }; 1481 - }; 1482 1464 "@azure/msal-common-14.16.0" = { 1483 1465 name = "_at_azure_slash_msal-common"; 1484 1466 packageName = "@azure/msal-common"; ··· 1486 1468 src = fetchurl { 1487 1469 url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.16.0.tgz"; 1488 1470 sha512 = "1KOZj9IpcDSwpNiQNjt0jDYZpQvNZay7QAEi/5DLubay40iGYtLzya/jbjRPLyOTZhEKyL1MzPuw2HqBCjceYA=="; 1489 - }; 1490 - }; 1491 - "@azure/msal-common-15.1.1" = { 1492 - name = "_at_azure_slash_msal-common"; 1493 - packageName = "@azure/msal-common"; 1494 - version = "15.1.1"; 1495 - src = fetchurl { 1496 - url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.1.1.tgz"; 1497 - sha512 = "bvLWYq9fleAcTJ6H+hfkG91On6vI/UhGyOB7Z6r0Bsa+KTL3zPtigmGCOJgdxrEklOYD88X9SehexLDH/5NRKQ=="; 1498 1471 }; 1499 1472 }; 1500 1473 "@azure/msal-node-2.16.2" = { ··· 2127 2100 sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; 2128 2101 }; 2129 2102 }; 2130 - "@cspell/cspell-bundled-dicts-8.17.3" = { 2103 + "@cspell/cspell-bundled-dicts-8.17.5" = { 2131 2104 name = "_at_cspell_slash_cspell-bundled-dicts"; 2132 2105 packageName = "@cspell/cspell-bundled-dicts"; 2133 - version = "8.17.3"; 2106 + version = "8.17.5"; 2134 2107 src = fetchurl { 2135 - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.17.3.tgz"; 2136 - sha512 = "6uOF726o3JnExAUKM20OJJXZo+Qf9Jt64nkVwnVXx7Upqr5I9Pb1npYPEAIpUA03SnWYmKwUIqhAmkwrN+bLPA=="; 2108 + url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.17.5.tgz"; 2109 + sha512 = "b/Ntabar+g4gsRNwOct909cvatO/auHhNvBzJZfyFQzryI1nqHMaSFuDsrrtzbhQkGJ4GiMAKCXZC2EOdHMgmw=="; 2137 2110 }; 2138 2111 }; 2139 - "@cspell/cspell-json-reporter-8.17.3" = { 2112 + "@cspell/cspell-json-reporter-8.17.5" = { 2140 2113 name = "_at_cspell_slash_cspell-json-reporter"; 2141 2114 packageName = "@cspell/cspell-json-reporter"; 2142 - version = "8.17.3"; 2115 + version = "8.17.5"; 2143 2116 src = fetchurl { 2144 - url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.17.3.tgz"; 2145 - sha512 = "RWSfyHOin/d9CqLjz00JMvPkag3yUSsQZr6G9BnCT5cMEO/ws8wQZzA54CNj/LAOccbknTX65SSroPPAtxs56w=="; 2117 + url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.17.5.tgz"; 2118 + sha512 = "+eVFCdnda74Frv8hguHYwDtxvqDuJJ/luFRl4dC5oknPMRab0JCHM1DDYjp3NzsehTex0HmcxplxqVW6QoDosg=="; 2146 2119 }; 2147 2120 }; 2148 - "@cspell/cspell-pipe-8.17.3" = { 2121 + "@cspell/cspell-pipe-8.17.5" = { 2149 2122 name = "_at_cspell_slash_cspell-pipe"; 2150 2123 packageName = "@cspell/cspell-pipe"; 2151 - version = "8.17.3"; 2124 + version = "8.17.5"; 2152 2125 src = fetchurl { 2153 - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.17.3.tgz"; 2154 - sha512 = "DqqSWKt9NLWPGloYxZTpzUhgdW8ObMkZmOOF6TyqpJ4IbckEct8ULgskNorTNRlmmjLniaNgvg6JSHuYO3Urxw=="; 2126 + url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.17.5.tgz"; 2127 + sha512 = "VOIfFdIo3FYQFcSpIyGkqHupOx0LgfBrWs79IKnTT1II27VUHPF+0oGq0WWf4c2Zpd8tzdHvS3IUhGarWZq69g=="; 2155 2128 }; 2156 2129 }; 2157 - "@cspell/cspell-resolver-8.17.3" = { 2130 + "@cspell/cspell-resolver-8.17.5" = { 2158 2131 name = "_at_cspell_slash_cspell-resolver"; 2159 2132 packageName = "@cspell/cspell-resolver"; 2160 - version = "8.17.3"; 2133 + version = "8.17.5"; 2161 2134 src = fetchurl { 2162 - url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.17.3.tgz"; 2163 - sha512 = "yQlVaIsWiax6RRuuacZs++kl6Y9rwH9ZkVlsG9fhdeCJ5Xf3WCW+vmX1chzhhKDzRr8CF9fsvb1uagd/5/bBYA=="; 2135 + url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.17.5.tgz"; 2136 + sha512 = "5MhYInligPbGctWxoklAKxtg+sxvtJCuRKGSQHHA0JlCOLSsducypl780P6zvpjLK59XmdfC+wtFONxSmRbsuA=="; 2164 2137 }; 2165 2138 }; 2166 - "@cspell/cspell-service-bus-8.17.3" = { 2139 + "@cspell/cspell-service-bus-8.17.5" = { 2167 2140 name = "_at_cspell_slash_cspell-service-bus"; 2168 2141 packageName = "@cspell/cspell-service-bus"; 2169 - version = "8.17.3"; 2142 + version = "8.17.5"; 2170 2143 src = fetchurl { 2171 - url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.17.3.tgz"; 2172 - sha512 = "CC3nob/Kbuesz5WTW+LjAHnDFXJrA49pW5ckmbufJxNnoAk7EJez/qr7/ELMTf6Fl3A5xZ776Lhq7738Hy/fmQ=="; 2144 + url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.17.5.tgz"; 2145 + sha512 = "Ur3IK0R92G/2J6roopG9cU/EhoYAMOx2um7KYlq93cdrly8RBAK2NCcGCL7DbjQB6C9RYEAV60ueMUnQ45RrCQ=="; 2173 2146 }; 2174 2147 }; 2175 - "@cspell/cspell-types-8.17.3" = { 2148 + "@cspell/cspell-types-8.17.5" = { 2176 2149 name = "_at_cspell_slash_cspell-types"; 2177 2150 packageName = "@cspell/cspell-types"; 2178 - version = "8.17.3"; 2151 + version = "8.17.5"; 2179 2152 src = fetchurl { 2180 - url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.17.3.tgz"; 2181 - sha512 = "ozgeuSioX9z2wtlargfgdw3LKwDFAfm8gxu+xwNREvXiLsevb+lb7ZlY5/ay+MahqR5Hfs7XzYzBLTKL/ldn9g=="; 2153 + url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.17.5.tgz"; 2154 + sha512 = "91y2+0teunRSRZj940ORDA3kdjyenrUiM+4j6nQQH24sAIAJdRmQl2LG3eUTmeaSReJGkZIpnToQ6DyU5cC88Q=="; 2182 2155 }; 2183 2156 }; 2184 2157 "@cspell/dict-ada-4.1.0" = { ··· 2262 2235 sha512 = "sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw=="; 2263 2236 }; 2264 2237 }; 2265 - "@cspell/dict-cpp-6.0.3" = { 2238 + "@cspell/dict-cpp-6.0.4" = { 2266 2239 name = "_at_cspell_slash_dict-cpp"; 2267 2240 packageName = "@cspell/dict-cpp"; 2268 - version = "6.0.3"; 2241 + version = "6.0.4"; 2269 2242 src = fetchurl { 2270 - url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.3.tgz"; 2271 - sha512 = "OFrVXdxCeGKnon36Pe3yFjBuY4kzzEwWFf3vDz+cJTodZDkjFkBifQeTtt5YfimgF8cfAJZXkBCsxjipAgmAiw=="; 2243 + url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.4.tgz"; 2244 + sha512 = "IvXx3TlM+OL0CFriapk7ZHmeY89dSSdo/BZ3DGf+WUS+BWd64H+z/xr3xkkqY0Eu6MV/vdzNfkLm5zl45FDMGg=="; 2272 2245 }; 2273 2246 }; 2274 2247 "@cspell/dict-cryptocurrencies-1.0.10" = { ··· 2433 2406 sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; 2434 2407 }; 2435 2408 }; 2436 - "@cspell/dict-en_us-4.3.31" = { 2409 + "@cspell/dict-en_us-4.3.33" = { 2437 2410 name = "_at_cspell_slash_dict-en_us"; 2438 2411 packageName = "@cspell/dict-en_us"; 2439 - version = "4.3.31"; 2412 + version = "4.3.33"; 2440 2413 src = fetchurl { 2441 - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.31.tgz"; 2442 - sha512 = "MDc+1B0aFwQONS0JZ6w7ks2KFGkUcaNTFJ8kI6GHvFRmEl3zP5NJDwFEXFsoEdLDb86j2myauSWMJXR3JFuwbA=="; 2414 + url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.33.tgz"; 2415 + sha512 = "HniqQjzPVn24NEkHooBIw1cH+iO3AKMA9oDTwazUYQP1/ldqXsz6ce4+fdHia2nqypmic/lHVkQgIVhP48q/sA=="; 2443 2416 }; 2444 2417 }; 2445 2418 "@cspell/dict-filetypes-1.1.8" = { ··· 2505 2478 sha512 = "Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g=="; 2506 2479 }; 2507 2480 }; 2508 - "@cspell/dict-fullstack-3.2.4" = { 2481 + "@cspell/dict-fullstack-3.2.5" = { 2509 2482 name = "_at_cspell_slash_dict-fullstack"; 2510 2483 packageName = "@cspell/dict-fullstack"; 2511 - version = "3.2.4"; 2484 + version = "3.2.5"; 2512 2485 src = fetchurl { 2513 - url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.4.tgz"; 2514 - sha512 = "JRRvaOLBZ13BO9sP395W+06tyO1Jy/87aFlKe9xQiCWMiwpCo2kGq0xBGq0PDWe253lYLs+GKrNmLU0fSxrObg=="; 2486 + url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.5.tgz"; 2487 + sha512 = "XNmNdovPUS9Vc2JvfBscy8zZfwyxR11sB4fxU2lXh7LzUvOn2/OkKAzj41JTdiWfVnJ/yvsRkspe+b7kr+DIQw=="; 2515 2488 }; 2516 2489 }; 2517 2490 "@cspell/dict-gaming-terms-1.1.0" = { ··· 2766 2739 sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ=="; 2767 2740 }; 2768 2741 }; 2769 - "@cspell/dict-npm-5.1.26" = { 2742 + "@cspell/dict-npm-5.1.27" = { 2770 2743 name = "_at_cspell_slash_dict-npm"; 2771 2744 packageName = "@cspell/dict-npm"; 2772 - version = "5.1.26"; 2745 + version = "5.1.27"; 2773 2746 src = fetchurl { 2774 - url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.26.tgz"; 2775 - sha512 = "JU0/9P4nLPPC3Py+sF42tUKm9J4KAvwXaJubp2a4QwhCPzFVlOJTP2tTseFlLbdZn23d61pt0hZ+Jhyy7N76Mg=="; 2747 + url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.27.tgz"; 2748 + sha512 = "LGss1yrjhxSmxL4VfMC+UBDMVHfqHudgC7b39M74EVys+nNC4/lqDHacb6Aw7i6aUn9mzdNIkdTTD+LdDcHvPA=="; 2776 2749 }; 2777 2750 }; 2778 2751 "@cspell/dict-php-1.0.25" = { ··· 2991 2964 sha512 = "0dPtI0lwHcAgSiQFx8CzvqjdoXROcH+1LyqgROCpBgppommWpVhbQ0eubnKotFEXgpUCONVkeZJ6Ql8NbTEu+w=="; 2992 2965 }; 2993 2966 }; 2994 - "@cspell/dynamic-import-8.17.3" = { 2967 + "@cspell/dynamic-import-8.17.5" = { 2995 2968 name = "_at_cspell_slash_dynamic-import"; 2996 2969 packageName = "@cspell/dynamic-import"; 2997 - version = "8.17.3"; 2970 + version = "8.17.5"; 2998 2971 src = fetchurl { 2999 - url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.17.3.tgz"; 3000 - sha512 = "Kg6IJhGHPv+9OxpxaXUpcqgnHEOhMLRWHLyx7FADZ+CJyO4AVeWQfhpTRM6KXhzIl7dPlLG1g8JAQxaoy88KTw=="; 2972 + url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.17.5.tgz"; 2973 + sha512 = "tY+cVkRou+0VKvH+K1NXv8/R7mOlW3BDGSs9fcgvhatj0m00Yf8blFC7tE4VVI9Qh2bkC/KDFqM24IqZbuwXUQ=="; 3001 2974 }; 3002 2975 }; 3003 - "@cspell/filetypes-8.17.3" = { 2976 + "@cspell/filetypes-8.17.5" = { 3004 2977 name = "_at_cspell_slash_filetypes"; 3005 2978 packageName = "@cspell/filetypes"; 3006 - version = "8.17.3"; 2979 + version = "8.17.5"; 3007 2980 src = fetchurl { 3008 - url = "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.17.3.tgz"; 3009 - sha512 = "UFqRmJPccOSo+RYP/jZ4cr0s7ni37GrvnNAg1H/qIIxfmBYsexTAmsNzMqxp1M31NeI1Cx3LL7PspPMT0ms+7w=="; 2981 + url = "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.17.5.tgz"; 2982 + sha512 = "Fj6py2Rl+FEnMiXhRQUM1A5QmyeCLxi6dY/vQ0qfH6tp6KSaBiaC8wuPUKhr8hKyTd3+8lkUbobDhUf6xtMEXg=="; 3010 2983 }; 3011 2984 }; 3012 - "@cspell/strong-weak-map-8.17.3" = { 2985 + "@cspell/strong-weak-map-8.17.5" = { 3013 2986 name = "_at_cspell_slash_strong-weak-map"; 3014 2987 packageName = "@cspell/strong-weak-map"; 3015 - version = "8.17.3"; 2988 + version = "8.17.5"; 3016 2989 src = fetchurl { 3017 - url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.17.3.tgz"; 3018 - sha512 = "l/CaFc3CITI/dC+whEBZ05Om0KXR3V2whhVOWOBPIqA5lCjWAyvWWvmFD+CxWd0Hs6Qcb/YDnMyJW14aioXN4g=="; 2990 + url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.17.5.tgz"; 2991 + sha512 = "Z4eo+rZJr1086wZWycBiIG/n7gGvVoqn28I7ZicS8xedRYu/4yp2loHgLn4NpxG3e46+dNWs4La6vinod+UydQ=="; 3019 2992 }; 3020 2993 }; 3021 - "@cspell/url-8.17.3" = { 2994 + "@cspell/url-8.17.5" = { 3022 2995 name = "_at_cspell_slash_url"; 3023 2996 packageName = "@cspell/url"; 3024 - version = "8.17.3"; 2997 + version = "8.17.5"; 3025 2998 src = fetchurl { 3026 - url = "https://registry.npmjs.org/@cspell/url/-/url-8.17.3.tgz"; 3027 - sha512 = "gcsCz8g0qY94C8RXiAlUH/89n84Q9RSptP91XrvnLOT+Xva9Aibd7ywd5k9ameuf8Nagyl0ezB1MInZ30S9SRw=="; 2999 + url = "https://registry.npmjs.org/@cspell/url/-/url-8.17.5.tgz"; 3000 + sha512 = "GNQqST7zI85dAFVyao6oiTeg5rNhO9FH1ZAd397qQhvwfxrrniNfuoewu8gPXyP0R4XBiiaCwhBL7w9S/F5guw=="; 3028 3001 }; 3029 3002 }; 3030 3003 "@cspotcode/source-map-support-0.8.1" = { ··· 3036 3009 sha512 = "IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="; 3037 3010 }; 3038 3011 }; 3039 - "@csstools/color-helpers-5.0.1" = { 3012 + "@csstools/color-helpers-5.0.2" = { 3040 3013 name = "_at_csstools_slash_color-helpers"; 3041 3014 packageName = "@csstools/color-helpers"; 3042 - version = "5.0.1"; 3015 + version = "5.0.2"; 3043 3016 src = fetchurl { 3044 - url = "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.1.tgz"; 3045 - sha512 = "MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA=="; 3017 + url = "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.2.tgz"; 3018 + sha512 = "JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA=="; 3046 3019 }; 3047 3020 }; 3048 - "@csstools/css-calc-2.1.1" = { 3021 + "@csstools/css-calc-2.1.2" = { 3049 3022 name = "_at_csstools_slash_css-calc"; 3050 3023 packageName = "@csstools/css-calc"; 3051 - version = "2.1.1"; 3024 + version = "2.1.2"; 3052 3025 src = fetchurl { 3053 - url = "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.1.tgz"; 3054 - sha512 = "rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag=="; 3026 + url = "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.2.tgz"; 3027 + sha512 = "TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw=="; 3055 3028 }; 3056 3029 }; 3057 - "@csstools/css-color-parser-3.0.7" = { 3030 + "@csstools/css-color-parser-3.0.8" = { 3058 3031 name = "_at_csstools_slash_css-color-parser"; 3059 3032 packageName = "@csstools/css-color-parser"; 3060 - version = "3.0.7"; 3033 + version = "3.0.8"; 3061 3034 src = fetchurl { 3062 - url = "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.7.tgz"; 3063 - sha512 = "nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA=="; 3035 + url = "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.8.tgz"; 3036 + sha512 = "pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ=="; 3064 3037 }; 3065 3038 }; 3066 3039 "@csstools/css-parser-algorithms-3.0.4" = { ··· 3198 3171 sha512 = "0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw=="; 3199 3172 }; 3200 3173 }; 3201 - "@electron-forge/core-7.6.1" = { 3174 + "@electron-forge/core-7.7.0" = { 3202 3175 name = "_at_electron-forge_slash_core"; 3203 3176 packageName = "@electron-forge/core"; 3204 - version = "7.6.1"; 3177 + version = "7.7.0"; 3205 3178 src = fetchurl { 3206 - url = "https://registry.npmjs.org/@electron-forge/core/-/core-7.6.1.tgz"; 3207 - sha512 = "gODx2GcBl6Y6ls1DeBidhKC0nmI2/xfx89WcSEDa5M3NKm/bBQo1EPjpwG6F+2r4e8KDkY/KrRbIli+wL1zQ7w=="; 3179 + url = "https://registry.npmjs.org/@electron-forge/core/-/core-7.7.0.tgz"; 3180 + sha512 = "BWhg1Zw1bhpDuZowGH3lXDiL9zZBsYFNjtqyMqmkjcEm5xf9Dzs8mpRpNjtkpf3jit3LB4PNGMLj3c8ix0h4vQ=="; 3208 3181 }; 3209 3182 }; 3210 - "@electron-forge/core-utils-7.6.1" = { 3183 + "@electron-forge/core-utils-7.7.0" = { 3211 3184 name = "_at_electron-forge_slash_core-utils"; 3212 3185 packageName = "@electron-forge/core-utils"; 3213 - version = "7.6.1"; 3186 + version = "7.7.0"; 3214 3187 src = fetchurl { 3215 - url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-7.6.1.tgz"; 3216 - sha512 = "RGA3azq0r5bGk8DDmVDP1EML071JEa44hpZEgSsv9zmdC86aTh0cANyDE6sVarAwLx4LQ+zrFE3KSb63j1HD5w=="; 3188 + url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-7.7.0.tgz"; 3189 + sha512 = "kgOkiLzqnySkcpt26rBg8AoZsI1ID3f6s/dQlzfRJisWZTKTu4ryiMcaC0F07DVjaYFnEl9SQ86IvkTcyS97mQ=="; 3217 3190 }; 3218 3191 }; 3219 - "@electron-forge/maker-base-7.6.1" = { 3192 + "@electron-forge/maker-base-7.7.0" = { 3220 3193 name = "_at_electron-forge_slash_maker-base"; 3221 3194 packageName = "@electron-forge/maker-base"; 3222 - version = "7.6.1"; 3195 + version = "7.7.0"; 3223 3196 src = fetchurl { 3224 - url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-7.6.1.tgz"; 3225 - sha512 = "kA6k0z4fFbqfjV++bbYVC46TckiqyqIo/gTW/QexsT6xlutXUbnNevhoRPVfGigftSAjE6T26DwTogC9hNDkwg=="; 3197 + url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-7.7.0.tgz"; 3198 + sha512 = "9u+mmBLBAUHuH0+IGw94EGVTDD4CPKX05h5pp5/PIaijy16ss5dymK4vEp3s2XJMFlza2PsCgLLYBgDcAE2Dqg=="; 3226 3199 }; 3227 3200 }; 3228 - "@electron-forge/plugin-base-7.6.1" = { 3201 + "@electron-forge/plugin-base-7.7.0" = { 3229 3202 name = "_at_electron-forge_slash_plugin-base"; 3230 3203 packageName = "@electron-forge/plugin-base"; 3231 - version = "7.6.1"; 3204 + version = "7.7.0"; 3232 3205 src = fetchurl { 3233 - url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-7.6.1.tgz"; 3234 - sha512 = "RWt+a8At55dVwEgr8BnnmBN05QzZq+DbOHNPeSJEM2d4ZyLUZXTkkwSF+ZMVk5mQCfIf75l+6BEzkXOcVvti2Q=="; 3206 + url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-7.7.0.tgz"; 3207 + sha512 = "6wisQ4ZKOWey48wFF+JHzih7AuQuVma5KauwNEju2Dh2ibwDMJmPy0FWVolMSg7XUIMbGKLADGilxX6XRv8qNQ=="; 3235 3208 }; 3236 3209 }; 3237 - "@electron-forge/publisher-base-7.6.1" = { 3210 + "@electron-forge/publisher-base-7.7.0" = { 3238 3211 name = "_at_electron-forge_slash_publisher-base"; 3239 3212 packageName = "@electron-forge/publisher-base"; 3240 - version = "7.6.1"; 3213 + version = "7.7.0"; 3241 3214 src = fetchurl { 3242 - url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-7.6.1.tgz"; 3243 - sha512 = "VE0DJJYcMRGMxEbeC20q+ynCpra9oqkM6oXd8O1jRyTit9F+PZlscT/p5vLANrTW5vGrV6CXLyyloPxWxOf8DA=="; 3215 + url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-7.7.0.tgz"; 3216 + sha512 = "jHKvUc1peBBSl2t5d1x6M3CNyCMyNB+NnTO9LmA1dWFQ3oRDFwromIH5KjRqPJj6l4AyH0/XJogdO7Nn4Eyn6Q=="; 3244 3217 }; 3245 3218 }; 3246 - "@electron-forge/shared-types-7.6.1" = { 3219 + "@electron-forge/shared-types-7.7.0" = { 3247 3220 name = "_at_electron-forge_slash_shared-types"; 3248 3221 packageName = "@electron-forge/shared-types"; 3249 - version = "7.6.1"; 3222 + version = "7.7.0"; 3250 3223 src = fetchurl { 3251 - url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-7.6.1.tgz"; 3252 - sha512 = "i6VdZGG8SYEBirpk+FP7bEMYtCNf9wBkK81IcPco8LP0KbsvgR8y7aUSVxG8DLoVwYB5yr0N9MYXOfNp1gkQ7A=="; 3224 + url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-7.7.0.tgz"; 3225 + sha512 = "1zQsmudkAuHv0HnJtSJY3pvTeuN3fnSa9BR6cbeUlcpOfrnG4OTG03FqerHfyIWaBRVy7jGgif0NhKKE9azKyg=="; 3253 3226 }; 3254 3227 }; 3255 - "@electron-forge/template-base-7.6.1" = { 3228 + "@electron-forge/template-base-7.7.0" = { 3256 3229 name = "_at_electron-forge_slash_template-base"; 3257 3230 packageName = "@electron-forge/template-base"; 3258 - version = "7.6.1"; 3231 + version = "7.7.0"; 3259 3232 src = fetchurl { 3260 - url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-7.6.1.tgz"; 3261 - sha512 = "Pk65CIe6jYJa/hv25o0ueyuAOrRTi3qz92g5cYnj+YZzndNmrem1sNQvNKkavw0w0TKEUC5Y0EZ4ejLSYhVIQA=="; 3233 + url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-7.7.0.tgz"; 3234 + sha512 = "jwnhEHNIyQfbwJ6R8SuZIJApHKBykDr/rSgUF3km9nr2qAUSoUUV7RaJa/uiQJMtvamXenuo5K84C2NzumzS3A=="; 3262 3235 }; 3263 3236 }; 3264 - "@electron-forge/template-vite-7.6.1" = { 3237 + "@electron-forge/template-vite-7.7.0" = { 3265 3238 name = "_at_electron-forge_slash_template-vite"; 3266 3239 packageName = "@electron-forge/template-vite"; 3267 - version = "7.6.1"; 3240 + version = "7.7.0"; 3268 3241 src = fetchurl { 3269 - url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-7.6.1.tgz"; 3270 - sha512 = "DxRBCXgnpFQHueG3M6yDN1x2pTYDycHXIddLExUydA9bsrxVwlu8Oo7Mm5XOEltebITD/bZ0iQniOVkzUov37g=="; 3242 + url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-7.7.0.tgz"; 3243 + sha512 = "6p+U6FDWrmF7XgSLkrO07OOgJcrrrArbnExSckGJdBnupxmIDf1Y+exwfHHKdxX6/FfkA6JST5nRGjgA5CFqcw=="; 3271 3244 }; 3272 3245 }; 3273 - "@electron-forge/template-vite-typescript-7.6.1" = { 3246 + "@electron-forge/template-vite-typescript-7.7.0" = { 3274 3247 name = "_at_electron-forge_slash_template-vite-typescript"; 3275 3248 packageName = "@electron-forge/template-vite-typescript"; 3276 - version = "7.6.1"; 3249 + version = "7.7.0"; 3277 3250 src = fetchurl { 3278 - url = "https://registry.npmjs.org/@electron-forge/template-vite-typescript/-/template-vite-typescript-7.6.1.tgz"; 3279 - sha512 = "7aMq7/woR2xUNbCYCRa/dwinnjoYKuamn17hYBwmyRNJ+YKV9btVK6lq+WR4sJmFM5Fv3qOJlUwrNyxH+HoUCQ=="; 3251 + url = "https://registry.npmjs.org/@electron-forge/template-vite-typescript/-/template-vite-typescript-7.7.0.tgz"; 3252 + sha512 = "32C/+PF+hIloTdbRx7OutvqnTkkC7BHeQxNw4/zG2TfQ3cjl7JUD6A2UvTUHtv5KHkK2hDw6ZdahPwpJO41YSA=="; 3280 3253 }; 3281 3254 }; 3282 - "@electron-forge/template-webpack-7.6.1" = { 3255 + "@electron-forge/template-webpack-7.7.0" = { 3283 3256 name = "_at_electron-forge_slash_template-webpack"; 3284 3257 packageName = "@electron-forge/template-webpack"; 3285 - version = "7.6.1"; 3258 + version = "7.7.0"; 3286 3259 src = fetchurl { 3287 - url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-7.6.1.tgz"; 3288 - sha512 = "8HXJ7eh5mjphC2tBfBOroEfM71DsWt3yrkEQMGzW6Lc5u2itkCQrEAINm3nuLscWrqLRk4ZsfT1f1VzdwAraXg=="; 3260 + url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-7.7.0.tgz"; 3261 + sha512 = "7Hb1wejKqtvPXqhelubUNAh39FtClB/4JDtWzyAsL2iC3XeB5qh6pITz8+nW/rF2qW/JAepc/lnreqKn34P2ig=="; 3289 3262 }; 3290 3263 }; 3291 - "@electron-forge/template-webpack-typescript-7.6.1" = { 3264 + "@electron-forge/template-webpack-typescript-7.7.0" = { 3292 3265 name = "_at_electron-forge_slash_template-webpack-typescript"; 3293 3266 packageName = "@electron-forge/template-webpack-typescript"; 3294 - version = "7.6.1"; 3267 + version = "7.7.0"; 3295 3268 src = fetchurl { 3296 - url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-7.6.1.tgz"; 3297 - sha512 = "ECEd70QOAi7r2ZibIU2U9rh0CVND7oJP5BnKRCP20uUCxdQdO7RTMRDXesm41VTRa1uZ+64pRdOQTDFHB6xitA=="; 3269 + url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-7.7.0.tgz"; 3270 + sha512 = "w1vRAjGy0MjjdEDYPpZcpkMo2e3z5uEwfJdwVOpBeha7p2WM/Y6go21K+7pSqGp8Xmq4zlE20hq5MEx8Bs8eZg=="; 3298 3271 }; 3299 3272 }; 3300 - "@electron-forge/tracer-7.6.1" = { 3273 + "@electron-forge/tracer-7.7.0" = { 3301 3274 name = "_at_electron-forge_slash_tracer"; 3302 3275 packageName = "@electron-forge/tracer"; 3303 - version = "7.6.1"; 3276 + version = "7.7.0"; 3304 3277 src = fetchurl { 3305 - url = "https://registry.npmjs.org/@electron-forge/tracer/-/tracer-7.6.1.tgz"; 3306 - sha512 = "nZzVzXT4xdueWYoSbgStS5LfcifW/e/WJj9VOt6xYpFxYOsQHpLkkCAc6nH0gxn+60kiU4FMU0p2kSQ2eQhWuA=="; 3278 + url = "https://registry.npmjs.org/@electron-forge/tracer/-/tracer-7.7.0.tgz"; 3279 + sha512 = "R/JiGFzWhwfVyc6ioT4l5FFChRLS4Z2tWPeQfPcyoemdpzKpI1rvMHti42gzWXFW8GdzkhG0G3ZWfKiF3y3x/Q=="; 3307 3280 }; 3308 3281 }; 3309 3282 "@electron/asar-3.3.1" = { ··· 3398 3371 sha512 = "Ce3xE2JvTSEbASFbRbA1gAIcMcZWdS2yUYRaQbeM0nbOzaZrUYfa3ePtcriYRZOZmr+CkKA+zbjhvTpIOAYVcw=="; 3399 3372 }; 3400 3373 }; 3401 - "@emnapi/core-1.3.1" = { 3402 - name = "_at_emnapi_slash_core"; 3403 - packageName = "@emnapi/core"; 3404 - version = "1.3.1"; 3405 - src = fetchurl { 3406 - url = "https://registry.npmjs.org/@emnapi/core/-/core-1.3.1.tgz"; 3407 - sha512 = "pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog=="; 3408 - }; 3409 - }; 3410 - "@emnapi/runtime-1.3.1" = { 3411 - name = "_at_emnapi_slash_runtime"; 3412 - packageName = "@emnapi/runtime"; 3413 - version = "1.3.1"; 3414 - src = fetchurl { 3415 - url = "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz"; 3416 - sha512 = "kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw=="; 3417 - }; 3418 - }; 3419 - "@emnapi/wasi-threads-1.0.1" = { 3420 - name = "_at_emnapi_slash_wasi-threads"; 3421 - packageName = "@emnapi/wasi-threads"; 3422 - version = "1.0.1"; 3423 - src = fetchurl { 3424 - url = "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.1.tgz"; 3425 - sha512 = "iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw=="; 3426 - }; 3427 - }; 3428 3374 "@eslint-community/eslint-utils-4.4.1" = { 3429 3375 name = "_at_eslint-community_slash_eslint-utils"; 3430 3376 packageName = "@eslint-community/eslint-utils"; ··· 3452 3398 sha512 = "GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w=="; 3453 3399 }; 3454 3400 }; 3455 - "@eslint/core-0.10.0" = { 3401 + "@eslint/core-0.12.0" = { 3456 3402 name = "_at_eslint_slash_core"; 3457 3403 packageName = "@eslint/core"; 3458 - version = "0.10.0"; 3459 - src = fetchurl { 3460 - url = "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz"; 3461 - sha512 = "gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw=="; 3462 - }; 3463 - }; 3464 - "@eslint/core-0.11.0" = { 3465 - name = "_at_eslint_slash_core"; 3466 - packageName = "@eslint/core"; 3467 - version = "0.11.0"; 3404 + version = "0.12.0"; 3468 3405 src = fetchurl { 3469 - url = "https://registry.npmjs.org/@eslint/core/-/core-0.11.0.tgz"; 3470 - sha512 = "DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA=="; 3406 + url = "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz"; 3407 + sha512 = "cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg=="; 3471 3408 }; 3472 3409 }; 3473 3410 "@eslint/eslintrc-0.4.3" = { ··· 3479 3416 sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 3480 3417 }; 3481 3418 }; 3482 - "@eslint/eslintrc-2.1.4" = { 3419 + "@eslint/eslintrc-3.3.0" = { 3483 3420 name = "_at_eslint_slash_eslintrc"; 3484 3421 packageName = "@eslint/eslintrc"; 3485 - version = "2.1.4"; 3486 - src = fetchurl { 3487 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz"; 3488 - sha512 = "269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ=="; 3489 - }; 3490 - }; 3491 - "@eslint/eslintrc-3.2.0" = { 3492 - name = "_at_eslint_slash_eslintrc"; 3493 - packageName = "@eslint/eslintrc"; 3494 - version = "3.2.0"; 3495 - src = fetchurl { 3496 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz"; 3497 - sha512 = "grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w=="; 3498 - }; 3499 - }; 3500 - "@eslint/js-8.57.1" = { 3501 - name = "_at_eslint_slash_js"; 3502 - packageName = "@eslint/js"; 3503 - version = "8.57.1"; 3422 + version = "3.3.0"; 3504 3423 src = fetchurl { 3505 - url = "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz"; 3506 - sha512 = "d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q=="; 3424 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.0.tgz"; 3425 + sha512 = "yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ=="; 3507 3426 }; 3508 3427 }; 3509 - "@eslint/js-9.20.0" = { 3428 + "@eslint/js-9.21.0" = { 3510 3429 name = "_at_eslint_slash_js"; 3511 3430 packageName = "@eslint/js"; 3512 - version = "9.20.0"; 3431 + version = "9.21.0"; 3513 3432 src = fetchurl { 3514 - url = "https://registry.npmjs.org/@eslint/js/-/js-9.20.0.tgz"; 3515 - sha512 = "iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ=="; 3433 + url = "https://registry.npmjs.org/@eslint/js/-/js-9.21.0.tgz"; 3434 + sha512 = "BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw=="; 3516 3435 }; 3517 3436 }; 3518 3437 "@eslint/object-schema-2.1.6" = { ··· 3524 3443 sha512 = "RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA=="; 3525 3444 }; 3526 3445 }; 3527 - "@eslint/plugin-kit-0.2.5" = { 3446 + "@eslint/plugin-kit-0.2.7" = { 3528 3447 name = "_at_eslint_slash_plugin-kit"; 3529 3448 packageName = "@eslint/plugin-kit"; 3530 - version = "0.2.5"; 3449 + version = "0.2.7"; 3531 3450 src = fetchurl { 3532 - url = "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz"; 3533 - sha512 = "lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A=="; 3451 + url = "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz"; 3452 + sha512 = "JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g=="; 3534 3453 }; 3535 3454 }; 3536 3455 "@ethereumjs/rlp-4.0.1" = { ··· 3695 3614 sha512 = "foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="; 3696 3615 }; 3697 3616 }; 3698 - "@hpcc-js/wasm-2.22.4" = { 3699 - name = "_at_hpcc-js_slash_wasm"; 3700 - packageName = "@hpcc-js/wasm"; 3701 - version = "2.22.4"; 3702 - src = fetchurl { 3703 - url = "https://registry.npmjs.org/@hpcc-js/wasm/-/wasm-2.22.4.tgz"; 3704 - sha512 = "58JkRkxZffiBAbZhc7z+9iaaAOmn1cyxLL3rRwsUvco/I0Wwb7uVAlHM9HiU6XASe2k11jrIjCFff1t9QKjlqg=="; 3705 - }; 3706 - }; 3707 3617 "@httptoolkit/websocket-stream-6.0.1" = { 3708 3618 name = "_at_httptoolkit_slash_websocket-stream"; 3709 3619 packageName = "@httptoolkit/websocket-stream"; ··· 3731 3641 sha512 = "YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="; 3732 3642 }; 3733 3643 }; 3734 - "@humanwhocodes/config-array-0.13.0" = { 3735 - name = "_at_humanwhocodes_slash_config-array"; 3736 - packageName = "@humanwhocodes/config-array"; 3737 - version = "0.13.0"; 3738 - src = fetchurl { 3739 - url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz"; 3740 - sha512 = "DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw=="; 3741 - }; 3742 - }; 3743 3644 "@humanwhocodes/config-array-0.5.0" = { 3744 3645 name = "_at_humanwhocodes_slash_config-array"; 3745 3646 packageName = "@humanwhocodes/config-array"; ··· 3767 3668 sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; 3768 3669 }; 3769 3670 }; 3770 - "@humanwhocodes/object-schema-2.0.3" = { 3771 - name = "_at_humanwhocodes_slash_object-schema"; 3772 - packageName = "@humanwhocodes/object-schema"; 3773 - version = "2.0.3"; 3774 - src = fetchurl { 3775 - url = "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz"; 3776 - sha512 = "93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA=="; 3777 - }; 3778 - }; 3779 3671 "@humanwhocodes/retry-0.3.1" = { 3780 3672 name = "_at_humanwhocodes_slash_retry"; 3781 3673 packageName = "@humanwhocodes/retry"; ··· 3785 3677 sha512 = "JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="; 3786 3678 }; 3787 3679 }; 3788 - "@humanwhocodes/retry-0.4.1" = { 3680 + "@humanwhocodes/retry-0.4.2" = { 3789 3681 name = "_at_humanwhocodes_slash_retry"; 3790 3682 packageName = "@humanwhocodes/retry"; 3791 - version = "0.4.1"; 3792 - src = fetchurl { 3793 - url = "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz"; 3794 - sha512 = "c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA=="; 3795 - }; 3796 - }; 3797 - "@hutson/parse-repository-url-3.0.2" = { 3798 - name = "_at_hutson_slash_parse-repository-url"; 3799 - packageName = "@hutson/parse-repository-url"; 3800 - version = "3.0.2"; 3683 + version = "0.4.2"; 3801 3684 src = fetchurl { 3802 - url = "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz"; 3803 - sha512 = "H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q=="; 3685 + url = "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz"; 3686 + sha512 = "xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ=="; 3804 3687 }; 3805 3688 }; 3806 3689 "@hutson/parse-repository-url-5.0.0" = { ··· 4098 3981 src = fetchurl { 4099 3982 url = "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz"; 4100 3983 sha512 = "wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w=="; 4101 - }; 4102 - }; 4103 - "@isaacs/string-locale-compare-1.1.0" = { 4104 - name = "_at_isaacs_slash_string-locale-compare"; 4105 - packageName = "@isaacs/string-locale-compare"; 4106 - version = "1.1.0"; 4107 - src = fetchurl { 4108 - url = "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz"; 4109 - sha512 = "SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ=="; 4110 - }; 4111 - }; 4112 - "@jest/schemas-29.6.3" = { 4113 - name = "_at_jest_slash_schemas"; 4114 - packageName = "@jest/schemas"; 4115 - version = "29.6.3"; 4116 - src = fetchurl { 4117 - url = "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz"; 4118 - sha512 = "mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA=="; 4119 3984 }; 4120 3985 }; 4121 3986 "@jimp/bmp-0.16.13" = { ··· 4613 4478 sha512 = "uyKjxCe1ou11RJz6koBr5vXtyaGjTA45hF+H88GNW96vms7jKqmYdMm067Az1OKwl38h02lQRQ2tmoEzV7u74w=="; 4614 4479 }; 4615 4480 }; 4616 - "@jsii/check-node-1.106.0" = { 4481 + "@jsii/check-node-1.107.0" = { 4617 4482 name = "_at_jsii_slash_check-node"; 4618 4483 packageName = "@jsii/check-node"; 4619 - version = "1.106.0"; 4484 + version = "1.107.0"; 4620 4485 src = fetchurl { 4621 - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.106.0.tgz"; 4622 - sha512 = "/T/TUsbHdEbZRFR4Rem9+UXVvgMYncEkrIeC52oIHJ8BDSgqlDsIARio/Eu5DOftF4avSLV/sshR6n19mpK1oA=="; 4486 + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.107.0.tgz"; 4487 + sha512 = "ud21048xxEVbbzjFlE7GQSuypW7/8P6Dyu+jjTwp6wGFbnbpxZiupIMdp6eSVSqo9M3rC14SyjNq2liXoSYBZg=="; 4623 4488 }; 4624 4489 }; 4625 - "@jsii/spec-1.106.0" = { 4626 - name = "_at_jsii_slash_spec"; 4627 - packageName = "@jsii/spec"; 4628 - version = "1.106.0"; 4490 + "@jsii/check-node-1.108.0" = { 4491 + name = "_at_jsii_slash_check-node"; 4492 + packageName = "@jsii/check-node"; 4493 + version = "1.108.0"; 4629 4494 src = fetchurl { 4630 - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.106.0.tgz"; 4631 - sha512 = "pAIvqEGf0YLmtzFtUKWNEGkCmXMHENy7k+rzCD147wnM4jHhvEL1mEvxi99aA2VcmvLYaAYNOs/XozT+s+kLqQ=="; 4495 + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.108.0.tgz"; 4496 + sha512 = "wa8AGH31Cl0x1jU/KtM6JB32IurBmK1YiX5ZnCndifRCehLnS8DmJCPYrzJbKD4xqmHigaq6696fAnM/L7qIsw=="; 4632 4497 }; 4633 4498 }; 4634 - "@lerna/create-8.1.9" = { 4635 - name = "_at_lerna_slash_create"; 4636 - packageName = "@lerna/create"; 4637 - version = "8.1.9"; 4499 + "@jsii/spec-1.108.0" = { 4500 + name = "_at_jsii_slash_spec"; 4501 + packageName = "@jsii/spec"; 4502 + version = "1.108.0"; 4638 4503 src = fetchurl { 4639 - url = "https://registry.npmjs.org/@lerna/create/-/create-8.1.9.tgz"; 4640 - sha512 = "DPnl5lPX4v49eVxEbJnAizrpMdMTBz1qykZrAbBul9rfgk531v8oAt+Pm6O/rpAleRombNM7FJb5rYGzBJatOQ=="; 4504 + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.108.0.tgz"; 4505 + sha512 = "YtebmBRy19UT1pKmxqlTqfW1OcFFjuU2zxxi+QFfM8KG1ahBlpcuz+3DE9gG1qTASIJJJI0fd8PaAiZ5gE40sQ=="; 4641 4506 }; 4642 4507 }; 4643 4508 "@lezer/common-1.2.3" = { ··· 4802 4667 sha512 = "llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg=="; 4803 4668 }; 4804 4669 }; 4805 - "@microsoft/rush-lib-5.149.0" = { 4670 + "@microsoft/rush-lib-5.149.1" = { 4806 4671 name = "_at_microsoft_slash_rush-lib"; 4807 4672 packageName = "@microsoft/rush-lib"; 4808 - version = "5.149.0"; 4673 + version = "5.149.1"; 4809 4674 src = fetchurl { 4810 - url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.149.0.tgz"; 4811 - sha512 = "731PSPEbT3ltCiNDMFBJOxoKnoefIMNqRseYT8Q4Col57/veiKkO4P4UDN6Lyn3BKUZNT9mV/VjOWKr65LUnhQ=="; 4675 + url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.149.1.tgz"; 4676 + sha512 = "x7787VxNas7xSQEilLJsUEW25jAtiTej11nSGEVXRrY/L78f6MD0xenCN8uVnWFn5Zxdj5+zoto0Xyktglgx7Q=="; 4812 4677 }; 4813 4678 }; 4814 4679 "@mischnic/json-sourcemap-0.1.1" = { ··· 4827 4692 src = fetchurl { 4828 4693 url = "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz"; 4829 4694 sha512 = "Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw=="; 4830 - }; 4831 - }; 4832 - "@napi-rs/wasm-runtime-0.2.4" = { 4833 - name = "_at_napi-rs_slash_wasm-runtime"; 4834 - packageName = "@napi-rs/wasm-runtime"; 4835 - version = "0.2.4"; 4836 - src = fetchurl { 4837 - url = "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.4.tgz"; 4838 - sha512 = "9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ=="; 4839 4695 }; 4840 4696 }; 4841 4697 "@noble/curves-1.4.2" = { ··· 4883 4739 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 4884 4740 }; 4885 4741 }; 4886 - "@npmcli/agent-2.2.2" = { 4887 - name = "_at_npmcli_slash_agent"; 4888 - packageName = "@npmcli/agent"; 4889 - version = "2.2.2"; 4890 - src = fetchurl { 4891 - url = "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz"; 4892 - sha512 = "OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og=="; 4893 - }; 4894 - }; 4895 4742 "@npmcli/agent-3.0.0" = { 4896 4743 name = "_at_npmcli_slash_agent"; 4897 4744 packageName = "@npmcli/agent"; ··· 4899 4746 src = fetchurl { 4900 4747 url = "https://registry.npmjs.org/@npmcli/agent/-/agent-3.0.0.tgz"; 4901 4748 sha512 = "S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q=="; 4902 - }; 4903 - }; 4904 - "@npmcli/arborist-7.5.4" = { 4905 - name = "_at_npmcli_slash_arborist"; 4906 - packageName = "@npmcli/arborist"; 4907 - version = "7.5.4"; 4908 - src = fetchurl { 4909 - url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-7.5.4.tgz"; 4910 - sha512 = "nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g=="; 4911 4749 }; 4912 4750 }; 4913 4751 "@npmcli/config-6.4.1" = { ··· 4946 4784 sha512 = "yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ=="; 4947 4785 }; 4948 4786 }; 4949 - "@npmcli/fs-3.1.1" = { 4950 - name = "_at_npmcli_slash_fs"; 4951 - packageName = "@npmcli/fs"; 4952 - version = "3.1.1"; 4953 - src = fetchurl { 4954 - url = "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz"; 4955 - sha512 = "q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg=="; 4956 - }; 4957 - }; 4958 4787 "@npmcli/fs-4.0.0" = { 4959 4788 name = "_at_npmcli_slash_fs"; 4960 4789 packageName = "@npmcli/fs"; ··· 4973 4802 sha512 = "liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ=="; 4974 4803 }; 4975 4804 }; 4976 - "@npmcli/git-6.0.1" = { 4805 + "@npmcli/git-6.0.3" = { 4977 4806 name = "_at_npmcli_slash_git"; 4978 4807 packageName = "@npmcli/git"; 4979 - version = "6.0.1"; 4980 - src = fetchurl { 4981 - url = "https://registry.npmjs.org/@npmcli/git/-/git-6.0.1.tgz"; 4982 - sha512 = "BBWMMxeQzalmKadyimwb2/VVQyJB01PH0HhVSNLHNBDZN/M/h/02P6f8fxedIiFhpMj11SO9Ep5tKTBE7zL2nw=="; 4983 - }; 4984 - }; 4985 - "@npmcli/installed-package-contents-2.1.0" = { 4986 - name = "_at_npmcli_slash_installed-package-contents"; 4987 - packageName = "@npmcli/installed-package-contents"; 4988 - version = "2.1.0"; 4808 + version = "6.0.3"; 4989 4809 src = fetchurl { 4990 - url = "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz"; 4991 - sha512 = "c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w=="; 4810 + url = "https://registry.npmjs.org/@npmcli/git/-/git-6.0.3.tgz"; 4811 + sha512 = "GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ=="; 4992 4812 }; 4993 4813 }; 4994 4814 "@npmcli/installed-package-contents-3.0.0" = { ··· 5009 4829 sha512 = "tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA=="; 5010 4830 }; 5011 4831 }; 5012 - "@npmcli/metavuln-calculator-7.1.1" = { 5013 - name = "_at_npmcli_slash_metavuln-calculator"; 5014 - packageName = "@npmcli/metavuln-calculator"; 5015 - version = "7.1.1"; 5016 - src = fetchurl { 5017 - url = "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-7.1.1.tgz"; 5018 - sha512 = "Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g=="; 5019 - }; 5020 - }; 5021 4832 "@npmcli/move-file-1.1.2" = { 5022 4833 name = "_at_npmcli_slash_move-file"; 5023 4834 packageName = "@npmcli/move-file"; ··· 5045 4856 sha512 = "pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg=="; 5046 4857 }; 5047 4858 }; 5048 - "@npmcli/node-gyp-3.0.0" = { 5049 - name = "_at_npmcli_slash_node-gyp"; 5050 - packageName = "@npmcli/node-gyp"; 5051 - version = "3.0.0"; 5052 - src = fetchurl { 5053 - url = "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz"; 5054 - sha512 = "gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA=="; 5055 - }; 5056 - }; 5057 4859 "@npmcli/node-gyp-4.0.0" = { 5058 4860 name = "_at_npmcli_slash_node-gyp"; 5059 4861 packageName = "@npmcli/node-gyp"; ··· 5061 4863 src = fetchurl { 5062 4864 url = "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-4.0.0.tgz"; 5063 4865 sha512 = "+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA=="; 5064 - }; 5065 - }; 5066 - "@npmcli/package-json-5.2.0" = { 5067 - name = "_at_npmcli_slash_package-json"; 5068 - packageName = "@npmcli/package-json"; 5069 - version = "5.2.0"; 5070 - src = fetchurl { 5071 - url = "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.0.tgz"; 5072 - sha512 = "qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ=="; 5073 4866 }; 5074 4867 }; 5075 4868 "@npmcli/package-json-5.2.1" = { ··· 5108 4901 sha512 = "/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ=="; 5109 4902 }; 5110 4903 }; 5111 - "@npmcli/query-3.1.0" = { 5112 - name = "_at_npmcli_slash_query"; 5113 - packageName = "@npmcli/query"; 5114 - version = "3.1.0"; 5115 - src = fetchurl { 5116 - url = "https://registry.npmjs.org/@npmcli/query/-/query-3.1.0.tgz"; 5117 - sha512 = "C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ=="; 5118 - }; 5119 - }; 5120 - "@npmcli/redact-2.0.1" = { 5121 - name = "_at_npmcli_slash_redact"; 5122 - packageName = "@npmcli/redact"; 5123 - version = "2.0.1"; 5124 - src = fetchurl { 5125 - url = "https://registry.npmjs.org/@npmcli/redact/-/redact-2.0.1.tgz"; 5126 - sha512 = "YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw=="; 5127 - }; 5128 - }; 5129 4904 "@npmcli/redact-3.1.1" = { 5130 4905 name = "_at_npmcli_slash_redact"; 5131 4906 packageName = "@npmcli/redact"; ··· 5135 4910 sha512 = "3Hc2KGIkrvJWJqTbvueXzBeZlmvoOxc2jyX00yzr3+sNFquJg0N8hH4SAPLPVrkWIRQICVpVgjrss971awXVnA=="; 5136 4911 }; 5137 4912 }; 5138 - "@npmcli/run-script-8.1.0" = { 5139 - name = "_at_npmcli_slash_run-script"; 5140 - packageName = "@npmcli/run-script"; 5141 - version = "8.1.0"; 5142 - src = fetchurl { 5143 - url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-8.1.0.tgz"; 5144 - sha512 = "y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg=="; 5145 - }; 5146 - }; 5147 4913 "@npmcli/run-script-9.0.2" = { 5148 4914 name = "_at_npmcli_slash_run-script"; 5149 4915 packageName = "@npmcli/run-script"; ··· 5151 4917 src = fetchurl { 5152 4918 url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-9.0.2.tgz"; 5153 4919 sha512 = "cJXiUlycdizQwvqE1iaAb4VRUM3RX09/8q46zjvy+ct9GhfZRWd7jXYVc1tn/CfRlGPVkX/u4sstRlepsm7hfw=="; 5154 - }; 5155 - }; 5156 - "@nx/devkit-20.4.4" = { 5157 - name = "_at_nx_slash_devkit"; 5158 - packageName = "@nx/devkit"; 5159 - version = "20.4.4"; 5160 - src = fetchurl { 5161 - url = "https://registry.npmjs.org/@nx/devkit/-/devkit-20.4.4.tgz"; 5162 - sha512 = "gwTsgHIIVKjLDPAC32/cWMJRMabT7g64guyQdu9Rp+xbIJfSI+NSYVGftMHljxY1eWbYpN392y9UEVkYjQfzvg=="; 5163 4920 }; 5164 4921 }; 5165 4922 "@oclif/core-1.26.2" = { ··· 5234 4991 sha512 = "yx6KAqlt3TAHBduS2fMQtJDL2ufIHnDRArrJEOoTTuizxqmjLT+psGYOHpmMl3gvQpFJ11Hs76guUUktzAF9Bg=="; 5235 4992 }; 5236 4993 }; 5237 - "@octokit/auth-token-3.0.4" = { 5238 - name = "_at_octokit_slash_auth-token"; 5239 - packageName = "@octokit/auth-token"; 5240 - version = "3.0.4"; 5241 - src = fetchurl { 5242 - url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.4.tgz"; 5243 - sha512 = "TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ=="; 5244 - }; 5245 - }; 5246 - "@octokit/core-4.2.4" = { 5247 - name = "_at_octokit_slash_core"; 5248 - packageName = "@octokit/core"; 5249 - version = "4.2.4"; 5250 - src = fetchurl { 5251 - url = "https://registry.npmjs.org/@octokit/core/-/core-4.2.4.tgz"; 5252 - sha512 = "rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ=="; 5253 - }; 5254 - }; 5255 - "@octokit/endpoint-7.0.6" = { 5256 - name = "_at_octokit_slash_endpoint"; 5257 - packageName = "@octokit/endpoint"; 5258 - version = "7.0.6"; 5259 - src = fetchurl { 5260 - url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.6.tgz"; 5261 - sha512 = "5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg=="; 5262 - }; 5263 - }; 5264 - "@octokit/graphql-5.0.6" = { 5265 - name = "_at_octokit_slash_graphql"; 5266 - packageName = "@octokit/graphql"; 5267 - version = "5.0.6"; 5268 - src = fetchurl { 5269 - url = "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.6.tgz"; 5270 - sha512 = "Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw=="; 5271 - }; 5272 - }; 5273 - "@octokit/openapi-types-18.1.1" = { 5274 - name = "_at_octokit_slash_openapi-types"; 5275 - packageName = "@octokit/openapi-types"; 5276 - version = "18.1.1"; 5277 - src = fetchurl { 5278 - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.1.1.tgz"; 5279 - sha512 = "VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw=="; 5280 - }; 5281 - }; 5282 - "@octokit/plugin-enterprise-rest-6.0.1" = { 5283 - name = "_at_octokit_slash_plugin-enterprise-rest"; 5284 - packageName = "@octokit/plugin-enterprise-rest"; 5285 - version = "6.0.1"; 5286 - src = fetchurl { 5287 - url = "https://registry.npmjs.org/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz"; 5288 - sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw=="; 5289 - }; 5290 - }; 5291 - "@octokit/plugin-paginate-rest-6.1.2" = { 5292 - name = "_at_octokit_slash_plugin-paginate-rest"; 5293 - packageName = "@octokit/plugin-paginate-rest"; 5294 - version = "6.1.2"; 5295 - src = fetchurl { 5296 - url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz"; 5297 - sha512 = "qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ=="; 5298 - }; 5299 - }; 5300 - "@octokit/plugin-request-log-1.0.4" = { 5301 - name = "_at_octokit_slash_plugin-request-log"; 5302 - packageName = "@octokit/plugin-request-log"; 5303 - version = "1.0.4"; 5304 - src = fetchurl { 5305 - url = "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz"; 5306 - sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA=="; 5307 - }; 5308 - }; 5309 - "@octokit/plugin-rest-endpoint-methods-7.2.3" = { 5310 - name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 5311 - packageName = "@octokit/plugin-rest-endpoint-methods"; 5312 - version = "7.2.3"; 5313 - src = fetchurl { 5314 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz"; 5315 - sha512 = "I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA=="; 5316 - }; 5317 - }; 5318 - "@octokit/request-6.2.8" = { 5319 - name = "_at_octokit_slash_request"; 5320 - packageName = "@octokit/request"; 5321 - version = "6.2.8"; 5322 - src = fetchurl { 5323 - url = "https://registry.npmjs.org/@octokit/request/-/request-6.2.8.tgz"; 5324 - sha512 = "ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw=="; 5325 - }; 5326 - }; 5327 - "@octokit/request-error-3.0.3" = { 5328 - name = "_at_octokit_slash_request-error"; 5329 - packageName = "@octokit/request-error"; 5330 - version = "3.0.3"; 5331 - src = fetchurl { 5332 - url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz"; 5333 - sha512 = "crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ=="; 5334 - }; 5335 - }; 5336 - "@octokit/rest-19.0.11" = { 5337 - name = "_at_octokit_slash_rest"; 5338 - packageName = "@octokit/rest"; 5339 - version = "19.0.11"; 5340 - src = fetchurl { 5341 - url = "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.11.tgz"; 5342 - sha512 = "m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw=="; 5343 - }; 5344 - }; 5345 - "@octokit/tsconfig-1.0.2" = { 5346 - name = "_at_octokit_slash_tsconfig"; 5347 - packageName = "@octokit/tsconfig"; 5348 - version = "1.0.2"; 5349 - src = fetchurl { 5350 - url = "https://registry.npmjs.org/@octokit/tsconfig/-/tsconfig-1.0.2.tgz"; 5351 - sha512 = "I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA=="; 5352 - }; 5353 - }; 5354 - "@octokit/types-10.0.0" = { 5355 - name = "_at_octokit_slash_types"; 5356 - packageName = "@octokit/types"; 5357 - version = "10.0.0"; 5358 - src = fetchurl { 5359 - url = "https://registry.npmjs.org/@octokit/types/-/types-10.0.0.tgz"; 5360 - sha512 = "Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg=="; 5361 - }; 5362 - }; 5363 - "@octokit/types-9.3.2" = { 5364 - name = "_at_octokit_slash_types"; 5365 - packageName = "@octokit/types"; 5366 - version = "9.3.2"; 5367 - src = fetchurl { 5368 - url = "https://registry.npmjs.org/@octokit/types/-/types-9.3.2.tgz"; 5369 - sha512 = "D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA=="; 5370 - }; 5371 - }; 5372 4994 "@one-ini/wasm-0.1.1" = { 5373 4995 name = "_at_one-ini_slash_wasm"; 5374 4996 packageName = "@one-ini/wasm"; ··· 6224 5846 sha512 = "8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw=="; 6225 5847 }; 6226 5848 }; 6227 - "@prisma/prisma-schema-wasm-6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0" = { 5849 + "@prisma/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d" = { 6228 5850 name = "_at_prisma_slash_prisma-schema-wasm"; 6229 5851 packageName = "@prisma/prisma-schema-wasm"; 6230 - version = "6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0"; 5852 + version = "6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d"; 6231 5853 src = fetchurl { 6232 - url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0.tgz"; 6233 - sha512 = "eUGf3d4K5XaQwfxr61Cbjq7ZpU+xrp5FVpt+NV+ZZQ9hxvKBL+tzi5gA4qufJ6BFC1WohgBSjelYbW+UUt3vXw=="; 5854 + url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d.tgz"; 5855 + sha512 = "nq1XcNXsdYbCnMFwG7QyCRLb0M4ubQrhq+7HLu7ugLJonDUy17il5qnxk9tVjkgRoEAm1QNZmqG5dXGfAN2fmQ=="; 6234 5856 }; 6235 5857 }; 6236 - "@prisma/schema-files-loader-6.3.1" = { 5858 + "@prisma/schema-files-loader-6.4.1" = { 6237 5859 name = "_at_prisma_slash_schema-files-loader"; 6238 5860 packageName = "@prisma/schema-files-loader"; 6239 - version = "6.3.1"; 5861 + version = "6.4.1"; 6240 5862 src = fetchurl { 6241 - url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-6.3.1.tgz"; 6242 - sha512 = "kdH6RL0Yy8a2Lqb96UJBp40Q8+Hei9qukEDlhg8an2E8uIPaerL72ME8f6EfI9zYu33ddc69MH2dES1DfYdY/A=="; 5863 + url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-6.4.1.tgz"; 5864 + sha512 = "6Rh9BA7nliCJ2ns8/ioEgtezsm9Sydv5vH2Ja2SgZ5c30GbY1QInmmz9jVCsm5qol0iHsnSOPSRHR2FSQW+Mmw=="; 6243 5865 }; 6244 5866 }; 6245 5867 "@protobufjs/aspromise-1.1.2" = { ··· 6359 5981 sha512 = "USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ=="; 6360 5982 }; 6361 5983 }; 6362 - "@rushstack/heft-config-file-0.16.5" = { 5984 + "@rushstack/heft-config-file-0.16.6" = { 6363 5985 name = "_at_rushstack_slash_heft-config-file"; 6364 5986 packageName = "@rushstack/heft-config-file"; 6365 - version = "0.16.5"; 5987 + version = "0.16.6"; 6366 5988 src = fetchurl { 6367 - url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.16.5.tgz"; 6368 - sha512 = "XzV4QdwK8LL2U0wjDtPp+bjEU0juj3jP+eCfwSIBZPVsH3VDdiXC2AlJVa6Jiht7hY2M9LPT3PJ5zha2w80lCA=="; 5989 + url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.16.6.tgz"; 5990 + sha512 = "V83ucRqVt9quigDNgUggikNSAGtnfKUzzTcr18jYa/BzLyLdg9ITjr2RxVHzl7eNlJFiENr9vZdgaS45YjmhqA=="; 6369 5991 }; 6370 5992 }; 6371 - "@rushstack/lookup-by-path-0.5.5" = { 5993 + "@rushstack/lookup-by-path-0.5.6" = { 6372 5994 name = "_at_rushstack_slash_lookup-by-path"; 6373 5995 packageName = "@rushstack/lookup-by-path"; 6374 - version = "0.5.5"; 5996 + version = "0.5.6"; 6375 5997 src = fetchurl { 6376 - url = "https://registry.npmjs.org/@rushstack/lookup-by-path/-/lookup-by-path-0.5.5.tgz"; 6377 - sha512 = "PqE78ucRsIJk1+vCZIhKV0UMlBLwQswgulcbOgxEwv+yIlgvx7mEPGJlrwSWvgNvMnu/Rwd9nqAluvxJM2JdGA=="; 5998 + url = "https://registry.npmjs.org/@rushstack/lookup-by-path/-/lookup-by-path-0.5.6.tgz"; 5999 + sha512 = "TJ7eobYV7hBBDzo9JGJC7bxvWUgizZtCZs3Wl0avx5ko09G5AYmz1jkPK3Y/UK/rpGQWYUKwuk5fTSbH+IPoqQ=="; 6378 6000 }; 6379 6001 }; 6380 6002 "@rushstack/node-core-library-5.11.0" = { ··· 6386 6008 sha512 = "I8+VzG9A0F3nH2rLpPd7hF8F7l5Xb7D+ldrWVZYegXM6CsKkvWc670RlgK3WX8/AseZfXA/vVrh0bpXe2Y2UDQ=="; 6387 6009 }; 6388 6010 }; 6389 - "@rushstack/package-deps-hash-4.3.6" = { 6011 + "@rushstack/package-deps-hash-4.3.7" = { 6390 6012 name = "_at_rushstack_slash_package-deps-hash"; 6391 6013 packageName = "@rushstack/package-deps-hash"; 6392 - version = "4.3.6"; 6014 + version = "4.3.7"; 6393 6015 src = fetchurl { 6394 - url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.3.6.tgz"; 6395 - sha512 = "Vl8DlhiMspBd2PnRPlbXMpPTcwFh2JdrutItFD6os8duXWWHX7tiE4BQJNMYbEPZCvPkwrGj1EnWoFaKQM/5Xw=="; 6016 + url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.3.7.tgz"; 6017 + sha512 = "fSwL7Zg54tQ2D4L2rfpkx0Wajk01DjM/afmGcw4VB2AlSWmJGqKkPhXvfacQRv0Y4n2faJICZgplfxlNcq7g9g=="; 6396 6018 }; 6397 6019 }; 6398 - "@rushstack/package-extractor-0.10.10" = { 6020 + "@rushstack/package-extractor-0.10.11" = { 6399 6021 name = "_at_rushstack_slash_package-extractor"; 6400 6022 packageName = "@rushstack/package-extractor"; 6401 - version = "0.10.10"; 6023 + version = "0.10.11"; 6402 6024 src = fetchurl { 6403 - url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.10.10.tgz"; 6404 - sha512 = "F0DVbn6ILKKfoNZ7RhJAFT2dIEB20Z/8g2Gmm19pjKZbOazyd+FRwnts/ogwlTBmic88Ogca8QOJZT8HCLB7Sw=="; 6025 + url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.10.11.tgz"; 6026 + sha512 = "7VGPYGYFD2LnS5eJREidPKfLbsG67yw1/iEzSvnCmkB/IDz5JNBLtP8nwqGTKb1dDXb6ZoSrQ+DWa451WQY9HQ=="; 6405 6027 }; 6406 6028 }; 6407 6029 "@rushstack/rig-package-0.5.3" = { ··· 6413 6035 sha512 = "olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow=="; 6414 6036 }; 6415 6037 }; 6416 - "@rushstack/rush-amazon-s3-build-cache-plugin-5.149.0" = { 6038 + "@rushstack/rush-amazon-s3-build-cache-plugin-5.149.1" = { 6417 6039 name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin"; 6418 6040 packageName = "@rushstack/rush-amazon-s3-build-cache-plugin"; 6419 - version = "5.149.0"; 6041 + version = "5.149.1"; 6420 6042 src = fetchurl { 6421 - url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.149.0.tgz"; 6422 - sha512 = "svQbg/oJYlUskaYkjDXwGzTSxX8/QJd/4zVs3kxV6RbuvIsHAVpHtU6IUk+Hm+uHTQIfcdBH4UdBoOADzeHN/g=="; 6043 + url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.149.1.tgz"; 6044 + sha512 = "OQGF623+jEb8XWz5MjvUMW7v0q6zjf7NcnWRMyH/hkRkt83oJtbh+EKu5WW/9z0wLt6yvFo9iGqe+pJP0RiD0A=="; 6423 6045 }; 6424 6046 }; 6425 - "@rushstack/rush-azure-storage-build-cache-plugin-5.149.0" = { 6047 + "@rushstack/rush-azure-storage-build-cache-plugin-5.149.1" = { 6426 6048 name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin"; 6427 6049 packageName = "@rushstack/rush-azure-storage-build-cache-plugin"; 6428 - version = "5.149.0"; 6050 + version = "5.149.1"; 6429 6051 src = fetchurl { 6430 - url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.149.0.tgz"; 6431 - sha512 = "IB1Sx617FQm5sYqXU+/BLy/K8pg2FskqLqzyfcXyCEPV/nki1z8FmvHdsBIzL0iwoTlIqY9/UMWclUk4OMk7gg=="; 6052 + url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.149.1.tgz"; 6053 + sha512 = "tyVJI/TZsvb8ThQC7l8VAOUkxw3pako+8xyi5trEfNHa7O3PPqNJ9L6xGuOKrQltDhUmWDk+zijEENXR8Y3a8A=="; 6432 6054 }; 6433 6055 }; 6434 - "@rushstack/rush-http-build-cache-plugin-5.149.0" = { 6056 + "@rushstack/rush-http-build-cache-plugin-5.149.1" = { 6435 6057 name = "_at_rushstack_slash_rush-http-build-cache-plugin"; 6436 6058 packageName = "@rushstack/rush-http-build-cache-plugin"; 6437 - version = "5.149.0"; 6059 + version = "5.149.1"; 6438 6060 src = fetchurl { 6439 - url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.149.0.tgz"; 6440 - sha512 = "LE0ecAabAxzJ7rHibwDGo6zfQL4x8TBqkcLbIHUMlB4CyreF+RzUOXVoi8USbD75b1y7dJBnprl/rPW0dKIGqw=="; 6061 + url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.149.1.tgz"; 6062 + sha512 = "9E6iFKIgzZm58lANqa7eOqBMAtGxC5jSSgprbZ6X/BSD/F9Ao++txD1YQdkI3ZgQBCeZEW9w2q9v73fkkIgkMw=="; 6441 6063 }; 6442 6064 }; 6443 - "@rushstack/rush-sdk-5.149.0" = { 6065 + "@rushstack/rush-sdk-5.149.1" = { 6444 6066 name = "_at_rushstack_slash_rush-sdk"; 6445 6067 packageName = "@rushstack/rush-sdk"; 6446 - version = "5.149.0"; 6068 + version = "5.149.1"; 6447 6069 src = fetchurl { 6448 - url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.149.0.tgz"; 6449 - sha512 = "JHxD/8ssiju4gJa9QW+K8WaXAOfzQNSv260E3Xx/RIYRIgq4tHkk9Pqpg+bsw17XvE4jbjTL2GBXVJyOEE160Q=="; 6070 + url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.149.1.tgz"; 6071 + sha512 = "jfgO6EfQ19RbHCtn2A8M3AUYE8OD08mHExZQOt0uoUg59mr6cN0faHTuCnzvnHf0CjxaiW+VzsiRt0xKePkVwQ=="; 6450 6072 }; 6451 6073 }; 6452 - "@rushstack/stream-collator-4.1.84" = { 6074 + "@rushstack/stream-collator-4.1.85" = { 6453 6075 name = "_at_rushstack_slash_stream-collator"; 6454 6076 packageName = "@rushstack/stream-collator"; 6455 - version = "4.1.84"; 6077 + version = "4.1.85"; 6456 6078 src = fetchurl { 6457 - url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.84.tgz"; 6458 - sha512 = "H6nVTPh8TrnF392H2iISkm4mkU7QH2FFYgw0TwSJvEPJ6+ukU2kpffq1NPF6wnyzt7fyxCmY9EY8nVGsdS9BSA=="; 6079 + url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.85.tgz"; 6080 + sha512 = "o1p16mx0vIb7ZprnZJt3LLTZBT5rBYG+sua6LQ49gIf25CBhZuFSVazjhQP6gGCl4eiLZwdIiV5ETQ6tDv1kmg=="; 6459 6081 }; 6460 6082 }; 6461 6083 "@rushstack/terminal-0.15.0" = { ··· 6485 6107 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 6486 6108 }; 6487 6109 }; 6488 - "@schematics/angular-19.1.7" = { 6110 + "@schematics/angular-19.1.8" = { 6489 6111 name = "_at_schematics_slash_angular"; 6490 6112 packageName = "@schematics/angular"; 6491 - version = "19.1.7"; 6113 + version = "19.1.8"; 6492 6114 src = fetchurl { 6493 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-19.1.7.tgz"; 6494 - sha512 = "BB8yMGmYDZzSb8Nu+Ln0TKyeoS3++f9STCYw30NwM3IViHxJJYxu/zowzwSa9TjftIzdCpbOaPxGS0vU9UOUDQ=="; 6115 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-19.1.8.tgz"; 6116 + sha512 = "ytgClbMPn+i+w1S3QukR/Vdge+sfU9aX49ao+XRwoWdOssHUjmVjQcCEdzu0ucSrNPZnhm34bdDPzADLhln60w=="; 6495 6117 }; 6496 6118 }; 6497 6119 "@scure/base-1.1.9" = { ··· 6656 6278 sha512 = "83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg=="; 6657 6279 }; 6658 6280 }; 6281 + "@shutterstock/p-map-iterable-1.1.2" = { 6282 + name = "_at_shutterstock_slash_p-map-iterable"; 6283 + packageName = "@shutterstock/p-map-iterable"; 6284 + version = "1.1.2"; 6285 + src = fetchurl { 6286 + url = "https://registry.npmjs.org/@shutterstock/p-map-iterable/-/p-map-iterable-1.1.2.tgz"; 6287 + sha512 = "zNPPB2cro7fr+gPsNPoEir6pzYfJngkik7EnsSD5uMqwzGB8qtMmausS5XO10KM5c1Hfw/hpe1oXf/UoHNZFlg=="; 6288 + }; 6289 + }; 6659 6290 "@sideway/address-4.1.5" = { 6660 6291 name = "_at_sideway_slash_address"; 6661 6292 packageName = "@sideway/address"; ··· 6683 6314 sha512 = "RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="; 6684 6315 }; 6685 6316 }; 6686 - "@sigstore/bundle-2.3.2" = { 6687 - name = "_at_sigstore_slash_bundle"; 6688 - packageName = "@sigstore/bundle"; 6689 - version = "2.3.2"; 6690 - src = fetchurl { 6691 - url = "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.3.2.tgz"; 6692 - sha512 = "wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA=="; 6693 - }; 6694 - }; 6695 6317 "@sigstore/bundle-3.1.0" = { 6696 6318 name = "_at_sigstore_slash_bundle"; 6697 6319 packageName = "@sigstore/bundle"; ··· 6701 6323 sha512 = "Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag=="; 6702 6324 }; 6703 6325 }; 6704 - "@sigstore/core-1.1.0" = { 6705 - name = "_at_sigstore_slash_core"; 6706 - packageName = "@sigstore/core"; 6707 - version = "1.1.0"; 6708 - src = fetchurl { 6709 - url = "https://registry.npmjs.org/@sigstore/core/-/core-1.1.0.tgz"; 6710 - sha512 = "JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg=="; 6711 - }; 6712 - }; 6713 6326 "@sigstore/core-2.0.0" = { 6714 6327 name = "_at_sigstore_slash_core"; 6715 6328 packageName = "@sigstore/core"; ··· 6719 6332 sha512 = "nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg=="; 6720 6333 }; 6721 6334 }; 6722 - "@sigstore/protobuf-specs-0.3.3" = { 6723 - name = "_at_sigstore_slash_protobuf-specs"; 6724 - packageName = "@sigstore/protobuf-specs"; 6725 - version = "0.3.3"; 6726 - src = fetchurl { 6727 - url = "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.3.3.tgz"; 6728 - sha512 = "RpacQhBlwpBWd7KEJsRKcBQalbV28fvkxwTOJIqhIuDysMMaJW47V4OqW30iJB9uRpqOSxxEAQFdr8tTattReQ=="; 6729 - }; 6730 - }; 6731 6335 "@sigstore/protobuf-specs-0.4.0" = { 6732 6336 name = "_at_sigstore_slash_protobuf-specs"; 6733 6337 packageName = "@sigstore/protobuf-specs"; ··· 6737 6341 sha512 = "o09cLSIq9EKyRXwryWDOJagkml9XgQCoCSRjHOnHLnvsivaW7Qznzz6yjfV7PHJHhIvyp8OH7OX8w0Dc5bQK7A=="; 6738 6342 }; 6739 6343 }; 6740 - "@sigstore/sign-2.3.2" = { 6741 - name = "_at_sigstore_slash_sign"; 6742 - packageName = "@sigstore/sign"; 6743 - version = "2.3.2"; 6744 - src = fetchurl { 6745 - url = "https://registry.npmjs.org/@sigstore/sign/-/sign-2.3.2.tgz"; 6746 - sha512 = "5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA=="; 6747 - }; 6748 - }; 6749 6344 "@sigstore/sign-3.1.0" = { 6750 6345 name = "_at_sigstore_slash_sign"; 6751 6346 packageName = "@sigstore/sign"; ··· 6755 6350 sha512 = "knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw=="; 6756 6351 }; 6757 6352 }; 6758 - "@sigstore/tuf-2.3.4" = { 6759 - name = "_at_sigstore_slash_tuf"; 6760 - packageName = "@sigstore/tuf"; 6761 - version = "2.3.4"; 6762 - src = fetchurl { 6763 - url = "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.3.4.tgz"; 6764 - sha512 = "44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw=="; 6765 - }; 6766 - }; 6767 6353 "@sigstore/tuf-3.1.0" = { 6768 6354 name = "_at_sigstore_slash_tuf"; 6769 6355 packageName = "@sigstore/tuf"; ··· 6771 6357 src = fetchurl { 6772 6358 url = "https://registry.npmjs.org/@sigstore/tuf/-/tuf-3.1.0.tgz"; 6773 6359 sha512 = "suVMQEA+sKdOz5hwP9qNcEjX6B45R+hFFr4LAWzbRc5O+U2IInwvay/bpG5a4s+qR35P/JK/PiKiRGjfuLy1IA=="; 6774 - }; 6775 - }; 6776 - "@sigstore/verify-1.2.1" = { 6777 - name = "_at_sigstore_slash_verify"; 6778 - packageName = "@sigstore/verify"; 6779 - version = "1.2.1"; 6780 - src = fetchurl { 6781 - url = "https://registry.npmjs.org/@sigstore/verify/-/verify-1.2.1.tgz"; 6782 - sha512 = "8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g=="; 6783 6360 }; 6784 6361 }; 6785 6362 "@sigstore/verify-2.1.0" = { ··· 6809 6386 sha512 = "XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ=="; 6810 6387 }; 6811 6388 }; 6812 - "@sinclair/typebox-0.27.8" = { 6813 - name = "_at_sinclair_slash_typebox"; 6814 - packageName = "@sinclair/typebox"; 6815 - version = "0.27.8"; 6816 - src = fetchurl { 6817 - url = "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz"; 6818 - sha512 = "+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA=="; 6819 - }; 6820 - }; 6821 6389 "@sindresorhus/chunkify-0.2.0" = { 6822 6390 name = "_at_sindresorhus_slash_chunkify"; 6823 6391 packageName = "@sindresorhus/chunkify"; ··· 6935 6503 sha512 = "Igfg8lKu3dRVkTSEm98QpZUvKEOa71jDX4vKRcvJVyRc3UgN3j7vFMf0s7xLQhYmKa8kyJGQgUJDOV5V3neVlQ=="; 6936 6504 }; 6937 6505 }; 6938 - "@smithy/core-3.1.4" = { 6506 + "@smithy/core-3.1.5" = { 6939 6507 name = "_at_smithy_slash_core"; 6940 6508 packageName = "@smithy/core"; 6941 - version = "3.1.4"; 6509 + version = "3.1.5"; 6942 6510 src = fetchurl { 6943 - url = "https://registry.npmjs.org/@smithy/core/-/core-3.1.4.tgz"; 6944 - sha512 = "wFExFGK+7r2wYriOqe7RRIBNpvxwiS95ih09+GSLRBdoyK/O1uZA7K7pKesj5CBvwJuSBeXwLyR88WwIAY+DGA=="; 6511 + url = "https://registry.npmjs.org/@smithy/core/-/core-3.1.5.tgz"; 6512 + sha512 = "HLclGWPkCsekQgsyzxLhCQLa8THWXtB5PxyYN+2O6nkyLt550KQKTlbV2D1/j5dNIQapAZM1+qFnpBFxZQkgCA=="; 6945 6513 }; 6946 6514 }; 6947 6515 "@smithy/credential-provider-imds-4.0.1" = { ··· 7079 6647 sha512 = "OGXo7w5EkB5pPiac7KNzVtfCW2vKBTZNuCctn++TTSOMpe6RZO/n6WEC1AxJINn3+vWLKW49uad3lo/u0WJ9oQ=="; 7080 6648 }; 7081 6649 }; 7082 - "@smithy/middleware-endpoint-4.0.5" = { 6650 + "@smithy/middleware-endpoint-4.0.6" = { 7083 6651 name = "_at_smithy_slash_middleware-endpoint"; 7084 6652 packageName = "@smithy/middleware-endpoint"; 7085 - version = "4.0.5"; 6653 + version = "4.0.6"; 7086 6654 src = fetchurl { 7087 - url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.5.tgz"; 7088 - sha512 = "cPzGZV7qStHwboFrm6GfrzQE+YDiCzWcTh4+7wKrP/ZQ4gkw+r7qDjV8GjM4N0UYsuUyLfpzLGg5hxsYTU11WA=="; 6655 + url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.6.tgz"; 6656 + sha512 = "ftpmkTHIFqgaFugcjzLZv3kzPEFsBFSnq1JsIkr2mwFzCraZVhQk2gqN51OOeRxqhbPTkRFj39Qd2V91E/mQxg=="; 7089 6657 }; 7090 6658 }; 7091 - "@smithy/middleware-retry-4.0.6" = { 6659 + "@smithy/middleware-retry-4.0.7" = { 7092 6660 name = "_at_smithy_slash_middleware-retry"; 7093 6661 packageName = "@smithy/middleware-retry"; 7094 - version = "4.0.6"; 6662 + version = "4.0.7"; 7095 6663 src = fetchurl { 7096 - url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.0.6.tgz"; 7097 - sha512 = "s8QzuOQnbdvRymD9Gt9c9zMq10wUQAHQ3z72uirrBHCwZcLTrL5iCOuVTMdka2IXOYhQE890WD5t6G24+F+Qcg=="; 6664 + url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.0.7.tgz"; 6665 + sha512 = "58j9XbUPLkqAcV1kHzVX/kAR16GT+j7DUZJqwzsxh1jtz7G82caZiGyyFgUvogVfNTg3TeAOIJepGc8TXF4AVQ=="; 7098 6666 }; 7099 6667 }; 7100 6668 "@smithy/middleware-serde-4.0.2" = { ··· 7124 6692 sha512 = "8mRTjvCtVET8+rxvmzRNRR0hH2JjV0DFOmwXPrISmTIJEfnCBugpYYGAsCj8t41qd+RB5gbheSQ/6aKZCQvFLQ=="; 7125 6693 }; 7126 6694 }; 7127 - "@smithy/node-http-handler-4.0.2" = { 6695 + "@smithy/node-http-handler-4.0.3" = { 7128 6696 name = "_at_smithy_slash_node-http-handler"; 7129 6697 packageName = "@smithy/node-http-handler"; 7130 - version = "4.0.2"; 6698 + version = "4.0.3"; 7131 6699 src = fetchurl { 7132 - url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.0.2.tgz"; 7133 - sha512 = "X66H9aah9hisLLSnGuzRYba6vckuFtGE+a5DcHLliI/YlqKrGoxhisD5XbX44KyoeRzoNlGr94eTsMVHFAzPOw=="; 6700 + url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.0.3.tgz"; 6701 + sha512 = "dYCLeINNbYdvmMLtW0VdhW1biXt+PPCGazzT5ZjKw46mOtdgToQEwjqZSS9/EN8+tNs/RO0cEWG044+YZs97aA=="; 7134 6702 }; 7135 6703 }; 7136 6704 "@smithy/property-provider-4.0.1" = { ··· 7196 6764 sha512 = "nCe6fQ+ppm1bQuw5iKoeJ0MJfz2os7Ic3GBjOkLOPtavbD1ONoyE3ygjBfz2ythFWm4YnRm6OxW+8p/m9uCoIA=="; 7197 6765 }; 7198 6766 }; 7199 - "@smithy/smithy-client-4.1.5" = { 6767 + "@smithy/smithy-client-4.1.6" = { 7200 6768 name = "_at_smithy_slash_smithy-client"; 7201 6769 packageName = "@smithy/smithy-client"; 7202 - version = "4.1.5"; 6770 + version = "4.1.6"; 7203 6771 src = fetchurl { 7204 - url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.1.5.tgz"; 7205 - sha512 = "DMXYoYeL4QkElr216n1yodTFeATbfb4jwYM9gKn71Rw/FNA1/Sm36tkTSCsZEs7mgpG3OINmkxL9vgVFzyGPaw=="; 6772 + url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.1.6.tgz"; 6773 + sha512 = "UYDolNg6h2O0L+cJjtgSyKKvEKCOa/8FHYJnBobyeoeWDmNpXjwOAtw16ezyeu1ETuuLEOZbrynK0ZY1Lx9Jbw=="; 7206 6774 }; 7207 6775 }; 7208 6776 "@smithy/types-4.1.0" = { ··· 7277 6845 sha512 = "L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w=="; 7278 6846 }; 7279 6847 }; 7280 - "@smithy/util-defaults-mode-browser-4.0.6" = { 6848 + "@smithy/util-defaults-mode-browser-4.0.7" = { 7281 6849 name = "_at_smithy_slash_util-defaults-mode-browser"; 7282 6850 packageName = "@smithy/util-defaults-mode-browser"; 7283 - version = "4.0.6"; 6851 + version = "4.0.7"; 7284 6852 src = fetchurl { 7285 - url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.6.tgz"; 7286 - sha512 = "N8+VCt+piupH1A7DgSVDNrVHqRLz8r6DvBkpS7EWHiIxsUk4jqGuQLjqC/gnCzmwGkVBdNruHoYAzzaSQ8e80w=="; 6853 + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.7.tgz"; 6854 + sha512 = "CZgDDrYHLv0RUElOsmZtAnp1pIjwDVCSuZWOPhIOBvG36RDfX1Q9+6lS61xBf+qqvHoqRjHxgINeQz47cYFC2Q=="; 7287 6855 }; 7288 6856 }; 7289 - "@smithy/util-defaults-mode-node-4.0.6" = { 6857 + "@smithy/util-defaults-mode-node-4.0.7" = { 7290 6858 name = "_at_smithy_slash_util-defaults-mode-node"; 7291 6859 packageName = "@smithy/util-defaults-mode-node"; 7292 - version = "4.0.6"; 6860 + version = "4.0.7"; 7293 6861 src = fetchurl { 7294 - url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.6.tgz"; 7295 - sha512 = "9zhx1shd1VwSSVvLZB8CM3qQ3RPD3le7A3h/UPuyh/PC7g4OaWDi2xUNzamsVoSmCGtmUBONl56lM2EU6LcH7A=="; 6862 + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.7.tgz"; 6863 + sha512 = "79fQW3hnfCdrfIi1soPbK3zmooRFnLpSx3Vxi6nUlqaaQeC5dm8plt4OTNDNqEEEDkvKghZSaoti684dQFVrGQ=="; 7296 6864 }; 7297 6865 }; 7298 6866 "@smithy/util-endpoints-3.0.1" = { ··· 7331 6899 sha512 = "WmRHqNVwn3kI3rKk1LsKcVgPBG6iLTBGC1iYOV3GQegwJ3E8yjzHytPt26VNzOWr1qu0xE03nK0Ug8S7T7oufw=="; 7332 6900 }; 7333 6901 }; 7334 - "@smithy/util-stream-4.1.1" = { 6902 + "@smithy/util-stream-4.1.2" = { 7335 6903 name = "_at_smithy_slash_util-stream"; 7336 6904 packageName = "@smithy/util-stream"; 7337 - version = "4.1.1"; 6905 + version = "4.1.2"; 7338 6906 src = fetchurl { 7339 - url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.1.1.tgz"; 7340 - sha512 = "+Xvh8nhy0Wjv1y71rBVyV3eJU3356XsFQNI8dEZVNrQju7Eib8G31GWtO+zMa9kTCGd41Mflu+ZKfmQL/o2XzQ=="; 6907 + url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.1.2.tgz"; 6908 + sha512 = "44PKEqQ303d3rlQuiDpcCcu//hV8sn+u2JBo84dWCE0rvgeiVl0IlLMagbU++o0jCWhYCsHaAt9wZuZqNe05Hw=="; 7341 6909 }; 7342 6910 }; 7343 6911 "@smithy/util-uri-escape-4.0.0" = { ··· 7574 7142 sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; 7575 7143 }; 7576 7144 }; 7577 - "@swc-node/core-1.13.3" = { 7578 - name = "_at_swc-node_slash_core"; 7579 - packageName = "@swc-node/core"; 7580 - version = "1.13.3"; 7581 - src = fetchurl { 7582 - url = "https://registry.npmjs.org/@swc-node/core/-/core-1.13.3.tgz"; 7583 - sha512 = "OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA=="; 7584 - }; 7585 - }; 7586 - "@swc-node/register-1.10.9" = { 7587 - name = "_at_swc-node_slash_register"; 7588 - packageName = "@swc-node/register"; 7589 - version = "1.10.9"; 7590 - src = fetchurl { 7591 - url = "https://registry.npmjs.org/@swc-node/register/-/register-1.10.9.tgz"; 7592 - sha512 = "iXy2sjP0phPEpK2yivjRC3PAgoLaT4sjSk0LDWCTdcTBJmR4waEog0E6eJbvoOkLkOtWw37SB8vCkl/bbh4+8A=="; 7593 - }; 7594 - }; 7595 - "@swc-node/sourcemap-support-0.5.1" = { 7596 - name = "_at_swc-node_slash_sourcemap-support"; 7597 - packageName = "@swc-node/sourcemap-support"; 7598 - version = "0.5.1"; 7599 - src = fetchurl { 7600 - url = "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.5.1.tgz"; 7601 - sha512 = "JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg=="; 7602 - }; 7603 - }; 7604 - "@swc/core-1.10.16" = { 7145 + "@swc/core-1.10.18" = { 7605 7146 name = "_at_swc_slash_core"; 7606 7147 packageName = "@swc/core"; 7607 - version = "1.10.16"; 7148 + version = "1.10.18"; 7608 7149 src = fetchurl { 7609 - url = "https://registry.npmjs.org/@swc/core/-/core-1.10.16.tgz"; 7610 - sha512 = "nOINg/OUcZazCW7B55QV2/UB8QAqz9FYe4+z229+4RYboBTZ102K7ebOEjY5sKn59JgAkhjZTz+5BKmXpDFopw=="; 7150 + url = "https://registry.npmjs.org/@swc/core/-/core-1.10.18.tgz"; 7151 + sha512 = "IUWKD6uQYGRy8w2X9EZrtYg1O3SCijlHbCXzMaHQYc1X7yjijQh4H3IVL9ssZZyVp2ZDfQZu4bD5DWxxvpyjvg=="; 7611 7152 }; 7612 7153 }; 7613 7154 "@swc/counter-0.1.3" = { ··· 7628 7169 sha512 = "JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g=="; 7629 7170 }; 7630 7171 }; 7631 - "@swc/types-0.1.17" = { 7172 + "@swc/types-0.1.18" = { 7632 7173 name = "_at_swc_slash_types"; 7633 7174 packageName = "@swc/types"; 7634 - version = "0.1.17"; 7175 + version = "0.1.18"; 7635 7176 src = fetchurl { 7636 - url = "https://registry.npmjs.org/@swc/types/-/types-0.1.17.tgz"; 7637 - sha512 = "V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ=="; 7177 + url = "https://registry.npmjs.org/@swc/types/-/types-0.1.18.tgz"; 7178 + sha512 = "NZghLaQvF3eFdj2DUjGkpwaunbZYaRcxciHINnwA4n3FrLAI8hKFOBqs2wkcOiLQfWkIdfuG6gBkNFrkPNji5g=="; 7638 7179 }; 7639 7180 }; 7640 - "@swc/wasm-1.10.16" = { 7181 + "@swc/wasm-1.10.18" = { 7641 7182 name = "_at_swc_slash_wasm"; 7642 7183 packageName = "@swc/wasm"; 7643 - version = "1.10.16"; 7184 + version = "1.10.18"; 7644 7185 src = fetchurl { 7645 - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.10.16.tgz"; 7646 - sha512 = "ZfGQkLM3rmohm+JEMdtSi2713AI8z4giK5rCV5UiVAYYM0APjl4C2KaUD4RMcKUkP04oiUjHNkkmk6u1MMdYzA=="; 7186 + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.10.18.tgz"; 7187 + sha512 = "TgoMYjQ2/9UfUaw7WuKj7Svew6kaNOqkjV4nKoc2tf34e+7GxL2KPoXvM2b1RkPxNocv85glcQpS9KMk8FqpBA=="; 7647 7188 }; 7648 7189 }; 7649 7190 "@szmarczak/http-timer-1.1.2" = { ··· 7727 7268 sha512 = "9pQN6pJAJOU3McmdJWTcyq7LLFW8Lj5q+DadyKcvp+sxMkEpktKX5sbfJgJuOvjk6+1xWl7pe0YL1US1vaO/1w=="; 7728 7269 }; 7729 7270 }; 7730 - "@tinyhttp/app-2.5.0" = { 7271 + "@tinyhttp/app-2.5.2" = { 7731 7272 name = "_at_tinyhttp_slash_app"; 7732 7273 packageName = "@tinyhttp/app"; 7733 - version = "2.5.0"; 7274 + version = "2.5.2"; 7734 7275 src = fetchurl { 7735 - url = "https://registry.npmjs.org/@tinyhttp/app/-/app-2.5.0.tgz"; 7736 - sha512 = "mwVY6RhTqF/s49tqNqpkRWbXAC7OmfpxR6YI6atp9xDauUOv3n1hv38AKy89Ga8HC8G2p1KR9vPD66VmF6VMnw=="; 7276 + url = "https://registry.npmjs.org/@tinyhttp/app/-/app-2.5.2.tgz"; 7277 + sha512 = "DcB3Y8GQppLQlO2VxRYF7LzTEAoZb+VRQXuIsErcu2fNaM1xdx6NQZDso5rlZUiaeg6KYYRfU34N4XkZbv6jSA=="; 7737 7278 }; 7738 7279 }; 7739 7280 "@tinyhttp/content-disposition-2.2.2" = { ··· 7799 7340 sha512 = "j80fPKimGqdmMh6962y+BtQsnYPVCzZfJw0HXjyH70VaJBHLKGF+iYhcKqzI3yef6QBNa8DKIPsbEYpuwApXTw=="; 7800 7341 }; 7801 7342 }; 7802 - "@tinyhttp/forwarded-2.1.1" = { 7343 + "@tinyhttp/forwarded-2.1.2" = { 7803 7344 name = "_at_tinyhttp_slash_forwarded"; 7804 7345 packageName = "@tinyhttp/forwarded"; 7805 - version = "2.1.1"; 7346 + version = "2.1.2"; 7806 7347 src = fetchurl { 7807 - url = "https://registry.npmjs.org/@tinyhttp/forwarded/-/forwarded-2.1.1.tgz"; 7808 - sha512 = "nO3kq0R1LRl2+CAMlnggm22zE6sT8gfvGbNvSitV6F9eaUSurHP0A8YZFMihSkugHxK+uIegh1TKrqgD8+lyGQ=="; 7348 + url = "https://registry.npmjs.org/@tinyhttp/forwarded/-/forwarded-2.1.2.tgz"; 7349 + sha512 = "9H/eulJ68ElY/+zYpTpNhZ7vxGV+cnwaR6+oQSm7bVgZMyuQfgROW/qvZuhmgDTIxnGMXst+Ba4ij6w6Krcs3w=="; 7809 7350 }; 7810 7351 }; 7811 7352 "@tinyhttp/logger-2.0.0" = { ··· 7817 7358 sha512 = "8DfLQjGDIaIJeivYamVrrpmwmsGwS8wt2DGvzlcY5HEBagdiI4QJy/veAFcUHuaJqufn4wLwmn4q5VUkW8BCpQ=="; 7818 7359 }; 7819 7360 }; 7820 - "@tinyhttp/proxy-addr-2.2.0" = { 7361 + "@tinyhttp/proxy-addr-2.2.1" = { 7821 7362 name = "_at_tinyhttp_slash_proxy-addr"; 7822 7363 packageName = "@tinyhttp/proxy-addr"; 7823 - version = "2.2.0"; 7364 + version = "2.2.1"; 7824 7365 src = fetchurl { 7825 - url = "https://registry.npmjs.org/@tinyhttp/proxy-addr/-/proxy-addr-2.2.0.tgz"; 7826 - sha512 = "WM/PPL9xNvrs7/8Om5nhKbke5FHrP3EfjOOR+wBnjgESfibqn0K7wdUTnzSLp1lBmemr88os1XvzwymSgaibyA=="; 7366 + url = "https://registry.npmjs.org/@tinyhttp/proxy-addr/-/proxy-addr-2.2.1.tgz"; 7367 + sha512 = "BicqMqVI91hHq2BQmnqJUh0FQUnx7DncwSGgu2ghlh+JZG2rHK2ZN/rXkfhrx1rrUw6hnd0L36O8GPMh01+dDQ=="; 7827 7368 }; 7828 7369 }; 7829 - "@tinyhttp/req-2.2.4" = { 7370 + "@tinyhttp/req-2.2.5" = { 7830 7371 name = "_at_tinyhttp_slash_req"; 7831 7372 packageName = "@tinyhttp/req"; 7832 - version = "2.2.4"; 7373 + version = "2.2.5"; 7833 7374 src = fetchurl { 7834 - url = "https://registry.npmjs.org/@tinyhttp/req/-/req-2.2.4.tgz"; 7835 - sha512 = "lQAZIAo0NOeghxFOZS57tQzxpHSPPLs9T68Krq2BncEBImKwqaDKUt7M9Y5Kb+rvC/GwIL3LeErhkg7f5iG4IQ=="; 7375 + url = "https://registry.npmjs.org/@tinyhttp/req/-/req-2.2.5.tgz"; 7376 + sha512 = "trfsXwtmsNjMcGKcLJ+45h912kLRqBQCQD06ams3Tq0kf4gHLxjHjoYOC1Z9yGjOn81XllRx8wqvnvr+Kbe3gw=="; 7836 7377 }; 7837 7378 }; 7838 - "@tinyhttp/res-2.2.4" = { 7379 + "@tinyhttp/res-2.2.5" = { 7839 7380 name = "_at_tinyhttp_slash_res"; 7840 7381 packageName = "@tinyhttp/res"; 7841 - version = "2.2.4"; 7382 + version = "2.2.5"; 7842 7383 src = fetchurl { 7843 - url = "https://registry.npmjs.org/@tinyhttp/res/-/res-2.2.4.tgz"; 7844 - sha512 = "ETBRShnO19oJyIg2XQHQoofXPWeTXPAuwnIVYkU8WaftvXd/Vz4y5+WFQDHUzKlmdGOw5fAFnrEU7pIVMeFeVA=="; 7384 + url = "https://registry.npmjs.org/@tinyhttp/res/-/res-2.2.5.tgz"; 7385 + sha512 = "yBsqjWygpuKAVz4moWlP4hqzwiDDqfrn2mA0wviJAcgvGiyOErtlQwXY7aj3aPiCpURvxvEFO//Gdy6yV+xEpA=="; 7845 7386 }; 7846 7387 }; 7847 7388 "@tinyhttp/router-2.2.3" = { ··· 7988 7529 sha512 = "vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA=="; 7989 7530 }; 7990 7531 }; 7991 - "@tsconfig/strictest-2.0.5" = { 7992 - name = "_at_tsconfig_slash_strictest"; 7993 - packageName = "@tsconfig/strictest"; 7994 - version = "2.0.5"; 7995 - src = fetchurl { 7996 - url = "https://registry.npmjs.org/@tsconfig/strictest/-/strictest-2.0.5.tgz"; 7997 - sha512 = "ec4tjL2Rr0pkZ5hww65c+EEPYwxOi4Ryv+0MtjeaSQRJyq322Q27eOQiFbuNgw2hpL4hB1/W/HBGk3VKS43osg=="; 7998 - }; 7999 - }; 8000 7532 "@tufjs/canonical-json-2.0.0" = { 8001 7533 name = "_at_tufjs_slash_canonical-json"; 8002 7534 packageName = "@tufjs/canonical-json"; ··· 8006 7538 sha512 = "yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA=="; 8007 7539 }; 8008 7540 }; 8009 - "@tufjs/models-2.0.1" = { 8010 - name = "_at_tufjs_slash_models"; 8011 - packageName = "@tufjs/models"; 8012 - version = "2.0.1"; 8013 - src = fetchurl { 8014 - url = "https://registry.npmjs.org/@tufjs/models/-/models-2.0.1.tgz"; 8015 - sha512 = "92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg=="; 8016 - }; 8017 - }; 8018 7541 "@tufjs/models-3.0.1" = { 8019 7542 name = "_at_tufjs_slash_models"; 8020 7543 packageName = "@tufjs/models"; ··· 8022 7545 src = fetchurl { 8023 7546 url = "https://registry.npmjs.org/@tufjs/models/-/models-3.0.1.tgz"; 8024 7547 sha512 = "UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA=="; 8025 - }; 8026 - }; 8027 - "@tybys/wasm-util-0.9.0" = { 8028 - name = "_at_tybys_slash_wasm-util"; 8029 - packageName = "@tybys/wasm-util"; 8030 - version = "0.9.0"; 8031 - src = fetchurl { 8032 - url = "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz"; 8033 - sha512 = "6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw=="; 8034 7548 }; 8035 7549 }; 8036 7550 "@types/acorn-4.0.6" = { ··· 8483 7997 sha512 = "fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ=="; 8484 7998 }; 8485 7999 }; 8486 - "@types/node-16.11.68" = { 8487 - name = "_at_types_slash_node"; 8488 - packageName = "@types/node"; 8489 - version = "16.11.68"; 8490 - src = fetchurl { 8491 - url = "https://registry.npmjs.org/@types/node/-/node-16.11.68.tgz"; 8492 - sha512 = "JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ=="; 8493 - }; 8494 - }; 8495 8000 "@types/node-16.18.11" = { 8496 8001 name = "_at_types_slash_node"; 8497 8002 packageName = "@types/node"; ··· 8546 8051 sha512 = "LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A=="; 8547 8052 }; 8548 8053 }; 8549 - "@types/node-22.13.4" = { 8054 + "@types/node-22.13.5" = { 8550 8055 name = "_at_types_slash_node"; 8551 8056 packageName = "@types/node"; 8552 - version = "22.13.4"; 8057 + version = "22.13.5"; 8553 8058 src = fetchurl { 8554 - url = "https://registry.npmjs.org/@types/node/-/node-22.13.4.tgz"; 8555 - sha512 = "ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg=="; 8059 + url = "https://registry.npmjs.org/@types/node/-/node-22.13.5.tgz"; 8060 + sha512 = "+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg=="; 8556 8061 }; 8557 8062 }; 8558 8063 "@types/node-6.14.13" = { ··· 8600 8105 sha512 = "hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ=="; 8601 8106 }; 8602 8107 }; 8603 - "@types/react-19.0.9" = { 8108 + "@types/react-19.0.10" = { 8604 8109 name = "_at_types_slash_react"; 8605 8110 packageName = "@types/react"; 8606 - version = "19.0.9"; 8111 + version = "19.0.10"; 8607 8112 src = fetchurl { 8608 - url = "https://registry.npmjs.org/@types/react/-/react-19.0.9.tgz"; 8609 - sha512 = "FedNTYgmMwSZmD1Sru/W1gJKuiYCN/3SuBkmZkcxX+FpO5zL76B22A9YNfAKg4HQO3Neh/30AiynP6BELdU0qQ=="; 8113 + url = "https://registry.npmjs.org/@types/react/-/react-19.0.10.tgz"; 8114 + sha512 = "JuRQ9KXLEjaUNjTWpzuR231Z2WpIwczOkBEIvbHNCzQefFIT0L8IqE6NV6ULLyC1SI/i234JnDoMkfg+RjQj2g=="; 8610 8115 }; 8611 8116 }; 8612 8117 "@types/responselike-1.0.3" = { ··· 8708 8213 sha512 = "XOfUup9r3Y06nFAZh3WvO0rBU4OtlfPB/vgxpjg+NRdGU6CN6djdc6OEiH+PcqHCY6eFLo9Ista73uarf4gnBg=="; 8709 8214 }; 8710 8215 }; 8711 - "@types/vscode-1.78.1" = { 8712 - name = "_at_types_slash_vscode"; 8713 - packageName = "@types/vscode"; 8714 - version = "1.78.1"; 8715 - src = fetchurl { 8716 - url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.78.1.tgz"; 8717 - sha512 = "wEA+54axejHu7DhcUfnFBan1IqFD1gBDxAFz8LoX06NbNDMRJv/T6OGthOs52yZccasKfN588EyffHWABkR0fg=="; 8718 - }; 8719 - }; 8720 8216 "@types/wrap-ansi-3.0.0" = { 8721 8217 name = "_at_types_slash_wrap-ansi"; 8722 8218 packageName = "@types/wrap-ansi"; ··· 8753 8249 sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="; 8754 8250 }; 8755 8251 }; 8756 - "@typescript-eslint/eslint-plugin-6.21.0" = { 8757 - name = "_at_typescript-eslint_slash_eslint-plugin"; 8758 - packageName = "@typescript-eslint/eslint-plugin"; 8759 - version = "6.21.0"; 8760 - src = fetchurl { 8761 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz"; 8762 - sha512 = "oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA=="; 8763 - }; 8764 - }; 8765 - "@typescript-eslint/parser-6.21.0" = { 8766 - name = "_at_typescript-eslint_slash_parser"; 8767 - packageName = "@typescript-eslint/parser"; 8768 - version = "6.21.0"; 8769 - src = fetchurl { 8770 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz"; 8771 - sha512 = "tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ=="; 8772 - }; 8773 - }; 8774 - "@typescript-eslint/scope-manager-6.21.0" = { 8775 - name = "_at_typescript-eslint_slash_scope-manager"; 8776 - packageName = "@typescript-eslint/scope-manager"; 8777 - version = "6.21.0"; 8778 - src = fetchurl { 8779 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz"; 8780 - sha512 = "OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg=="; 8781 - }; 8782 - }; 8783 - "@typescript-eslint/type-utils-6.21.0" = { 8784 - name = "_at_typescript-eslint_slash_type-utils"; 8785 - packageName = "@typescript-eslint/type-utils"; 8786 - version = "6.21.0"; 8787 - src = fetchurl { 8788 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz"; 8789 - sha512 = "rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag=="; 8790 - }; 8791 - }; 8792 - "@typescript-eslint/types-6.21.0" = { 8793 - name = "_at_typescript-eslint_slash_types"; 8794 - packageName = "@typescript-eslint/types"; 8795 - version = "6.21.0"; 8796 - src = fetchurl { 8797 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz"; 8798 - sha512 = "1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg=="; 8799 - }; 8800 - }; 8801 - "@typescript-eslint/typescript-estree-6.21.0" = { 8802 - name = "_at_typescript-eslint_slash_typescript-estree"; 8803 - packageName = "@typescript-eslint/typescript-estree"; 8804 - version = "6.21.0"; 8805 - src = fetchurl { 8806 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz"; 8807 - sha512 = "6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ=="; 8808 - }; 8809 - }; 8810 - "@typescript-eslint/utils-6.21.0" = { 8811 - name = "_at_typescript-eslint_slash_utils"; 8812 - packageName = "@typescript-eslint/utils"; 8813 - version = "6.21.0"; 8814 - src = fetchurl { 8815 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz"; 8816 - sha512 = "NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ=="; 8817 - }; 8818 - }; 8819 - "@typescript-eslint/visitor-keys-6.21.0" = { 8820 - name = "_at_typescript-eslint_slash_visitor-keys"; 8821 - packageName = "@typescript-eslint/visitor-keys"; 8822 - version = "6.21.0"; 8823 - src = fetchurl { 8824 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz"; 8825 - sha512 = "JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A=="; 8826 - }; 8827 - }; 8828 8252 "@ungap/structured-clone-1.3.0" = { 8829 8253 name = "_at_ungap_slash_structured-clone"; 8830 8254 packageName = "@ungap/structured-clone"; ··· 8834 8258 sha512 = "WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="; 8835 8259 }; 8836 8260 }; 8837 - "@vercel/build-utils-10.1.0" = { 8261 + "@vercel/build-utils-10.2.0" = { 8838 8262 name = "_at_vercel_slash_build-utils"; 8839 8263 packageName = "@vercel/build-utils"; 8840 - version = "10.1.0"; 8264 + version = "10.2.0"; 8841 8265 src = fetchurl { 8842 - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-10.1.0.tgz"; 8843 - sha512 = "JPff3brfZx0mTl+0Cmzz220MmnTSYnBgVqVvT6a8lVALJHr75sKaNxZy0/hWZe8ev+w2JwLGMmJwP2TKHtKeHA=="; 8266 + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-10.2.0.tgz"; 8267 + sha512 = "NBEPnxVA23RwHNqYk1Afpoz7sbZAmVJccY9L48LQlymDBX6lP+JTrYSXGTjUKXYIH3BJsLCe/9U3kUJ7Touk7Q=="; 8844 8268 }; 8845 8269 }; 8846 8270 "@vercel/error-utils-2.0.3" = { ··· 8852 8276 sha512 = "CqC01WZxbLUxoiVdh9B/poPbNpY9U+tO1N9oWHwTl5YAZxcqXmmWJ8KNMFItJCUUWdY3J3xv8LvAuQv2KZ5YdQ=="; 8853 8277 }; 8854 8278 }; 8855 - "@vercel/fun-1.1.4" = { 8279 + "@vercel/fun-1.1.5" = { 8856 8280 name = "_at_vercel_slash_fun"; 8857 8281 packageName = "@vercel/fun"; 8858 - version = "1.1.4"; 8282 + version = "1.1.5"; 8859 8283 src = fetchurl { 8860 - url = "https://registry.npmjs.org/@vercel/fun/-/fun-1.1.4.tgz"; 8861 - sha512 = "E23Gyp3iJaLK1o/10dJPsQt186Ux7c06k81o7o6/07KiHSkVS5pQELOJybN+WDhg7x3OLywKjMcCJQhRTkdF0A=="; 8284 + url = "https://registry.npmjs.org/@vercel/fun/-/fun-1.1.5.tgz"; 8285 + sha512 = "vRuR7qlsl8CgdeQIhfgLDtbMEuxqltx6JWFahB7Q5VOKMo/sFZV1rCxIHsHsJP4yYY2hoZqlT/EUkfG1tfPicg=="; 8862 8286 }; 8863 8287 }; 8864 8288 "@vercel/gatsby-plugin-vercel-analytics-1.0.11" = { ··· 8870 8294 sha512 = "iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw=="; 8871 8295 }; 8872 8296 }; 8873 - "@vercel/gatsby-plugin-vercel-builder-2.0.73" = { 8297 + "@vercel/gatsby-plugin-vercel-builder-2.0.74" = { 8874 8298 name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; 8875 8299 packageName = "@vercel/gatsby-plugin-vercel-builder"; 8876 - version = "2.0.73"; 8300 + version = "2.0.74"; 8877 8301 src = fetchurl { 8878 - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.73.tgz"; 8879 - sha512 = "89rAairrWTjSDHf2dYPNnjDO0jn7fX4R0rmWGZOFnZ8Kn8zaagzSTyFFSAv169eIwRapSiiS+Xi0N28M/mP3Zg=="; 8302 + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.74.tgz"; 8303 + sha512 = "2F8ze7krSuPfblZK2PSAX8KE3UO1Tq9zaEk3fU7JIkb46lbDftV0GjRIqcuiK1fR1eoApqHILqD81vvgKW8OAA=="; 8880 8304 }; 8881 8305 }; 8882 8306 "@vercel/go-3.2.1" = { ··· 8888 8312 sha512 = "ezjmuUvLigH9V4egEaX0SZ+phILx8lb+Zkp1iTqKI+yl/ibPAtVo5o+dLSRAXU9U01LBmaLu3O8Oxd/JpWYCOw=="; 8889 8313 }; 8890 8314 }; 8891 - "@vercel/hydrogen-1.1.0" = { 8315 + "@vercel/hydrogen-1.2.0" = { 8892 8316 name = "_at_vercel_slash_hydrogen"; 8893 8317 packageName = "@vercel/hydrogen"; 8894 - version = "1.1.0"; 8318 + version = "1.2.0"; 8895 8319 src = fetchurl { 8896 - url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-1.1.0.tgz"; 8897 - sha512 = "DNBj664OY5j8LBIp9EOLO+zjbSMT95YrfXp3/uhnpdHSmUBE5Iha4bJqV/4b3VL6b4lGFlTsK2jlyQZXWnPs+A=="; 8320 + url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-1.2.0.tgz"; 8321 + sha512 = "kdZp8cTVLoNmnu24wtoQPu9ZO+uB00zvDMTOXlQmNdq/V3k0mQa/Q5k2B8nliBQ3BMiBasoXxMKv59+F8rYvDw=="; 8898 8322 }; 8899 8323 }; 8900 - "@vercel/next-4.6.2" = { 8324 + "@vercel/next-4.7.1" = { 8901 8325 name = "_at_vercel_slash_next"; 8902 8326 packageName = "@vercel/next"; 8903 - version = "4.6.2"; 8327 + version = "4.7.1"; 8904 8328 src = fetchurl { 8905 - url = "https://registry.npmjs.org/@vercel/next/-/next-4.6.2.tgz"; 8906 - sha512 = "+2w9At3cnf5dZRsEMXCSs4xA6UP3UhzVoNa/5/mVY3/hfADEfU/thKwOybQEHPkMbNuFwIYjnJkFZcsI8iOWxg=="; 8329 + url = "https://registry.npmjs.org/@vercel/next/-/next-4.7.1.tgz"; 8330 + sha512 = "Q8GxgDpn5m3uhHhzyOYWO26yypN5Ztr36U+5YzT3fIwhCiUPYfIWm1LMnAj23S9qV5WMAbIHYgdURTz4EBV+xA=="; 8907 8331 }; 8908 8332 }; 8909 8333 "@vercel/nft-0.27.10" = { ··· 8915 8339 sha512 = "zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg=="; 8916 8340 }; 8917 8341 }; 8918 - "@vercel/node-5.1.7" = { 8342 + "@vercel/node-5.1.8" = { 8919 8343 name = "_at_vercel_slash_node"; 8920 8344 packageName = "@vercel/node"; 8921 - version = "5.1.7"; 8345 + version = "5.1.8"; 8922 8346 src = fetchurl { 8923 - url = "https://registry.npmjs.org/@vercel/node/-/node-5.1.7.tgz"; 8924 - sha512 = "aOfpTss3DBeqTCxZHNUgB6ckDp2DUDV9+nuW0wf5sToHLmeMzlUGNwY48CPSly1CFyi5jYE4fyfn9dBaAustWQ=="; 8347 + url = "https://registry.npmjs.org/@vercel/node/-/node-5.1.8.tgz"; 8348 + sha512 = "fID4QklP0yDv8Gvv0EZWmsacNhSTyoS0f4mU4HA2pwY4847wpGSFrD5tGFsOhf+3hgGAWbwsJ+dA799jCEcyiQ=="; 8925 8349 }; 8926 8350 }; 8927 8351 "@vercel/python-4.7.1" = { ··· 8933 8357 sha512 = "H4g/5e8unII4oQ+KN5IUvTZSzHmj+lLYDkAK15QGYgAxBtE/mHUvEZpPPo7DPUDIyfq8ybWB1bmk7H5kEahubQ=="; 8934 8358 }; 8935 8359 }; 8936 - "@vercel/redwood-2.2.0" = { 8360 + "@vercel/redwood-2.3.0" = { 8937 8361 name = "_at_vercel_slash_redwood"; 8938 8362 packageName = "@vercel/redwood"; 8939 - version = "2.2.0"; 8363 + version = "2.3.0"; 8940 8364 src = fetchurl { 8941 - url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.2.0.tgz"; 8942 - sha512 = "THk4lL66eTKioXwun2uIp7EdW/NFFqJnaAnRwNxUrdpU9oHbDsDx3QRIeiOFMVBsaJZqZd9YZ/OMaOMGKotybQ=="; 8365 + url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.3.0.tgz"; 8366 + sha512 = "MybbGdMZY0/CrpgEGafJZ+8HlqubWnEpl/KX3WClCZPrT2qcyZyJEh9AVN7/KIpQUdB2MQLIRVMQFQ+kKcRdsA=="; 8943 8367 }; 8944 8368 }; 8945 - "@vercel/remix-builder-5.3.3" = { 8369 + "@vercel/remix-builder-5.4.0" = { 8946 8370 name = "_at_vercel_slash_remix-builder"; 8947 8371 packageName = "@vercel/remix-builder"; 8948 - version = "5.3.3"; 8949 - src = fetchurl { 8950 - url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-5.3.3.tgz"; 8951 - sha512 = "SaGEYOMv/AlzWl5FdT2tC6v1SoRKGRcVx05WSscwXP2EHrx9rLiP5fWCGPnbhnxT7Kk/P5ZcyRV5eLovA/Ki0A=="; 8952 - }; 8953 - }; 8954 - "@vercel/routing-utils-5.0.2" = { 8955 - name = "_at_vercel_slash_routing-utils"; 8956 - packageName = "@vercel/routing-utils"; 8957 - version = "5.0.2"; 8372 + version = "5.4.0"; 8958 8373 src = fetchurl { 8959 - url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-5.0.2.tgz"; 8960 - sha512 = "uJViB3+HEo+kzHYELs7cQWX5k0kCNvq9G/8nJQX8mP5Ta0fG68CBRmOaaG8A+2xbtTp/QuGORIwV8CsI9ebcNg=="; 8374 + url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-5.4.0.tgz"; 8375 + sha512 = "qCZq2ZVtWKQhJSTo1fu79xxb0Ne94u9DxIqyJ11s75PqUzeqROau7Y6we9CNTEBvl/zbcXNTjidHkIlfXjBrlQ=="; 8961 8376 }; 8962 8377 }; 8963 8378 "@vercel/ruby-2.2.0" = { ··· 8969 8384 sha512 = "FJF9gKVNHAljGOgV6zS5ou2N7ZgjOqMMtcPA5lsJEUI5/AZzVDWCmtcowTP80wEtHuupkd7d7M399FA082kXYQ=="; 8970 8385 }; 8971 8386 }; 8972 - "@vercel/static-build-2.6.6" = { 8387 + "@vercel/static-build-2.7.0" = { 8973 8388 name = "_at_vercel_slash_static-build"; 8974 8389 packageName = "@vercel/static-build"; 8975 - version = "2.6.6"; 8390 + version = "2.7.0"; 8976 8391 src = fetchurl { 8977 - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.6.6.tgz"; 8978 - sha512 = "8O9PQkaIRODuWNXYpNIjq+Snvj/1ylvoaHRtBbUpvbiJIj9vFy1nzIyBLx8wucbt72Q0axYHGOWJsHE1x8Dnwg=="; 8392 + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.7.0.tgz"; 8393 + sha512 = "WX/0eZGShQAHgB+9OdcQbyHogfWHrYRG9uTLMH9c4a5lJzlw/41n3SN+RUzcxzwXK5/GhVu4ZQQS2aSMOPAHaA=="; 8979 8394 }; 8980 8395 }; 8981 8396 "@vercel/static-config-3.0.0" = { ··· 8987 8402 sha512 = "2qtvcBJ1bGY0dYGYh3iM7yGKkk971FujLEDXzuW5wcZsPr1GSEjO/w2iSr3qve6nDDtBImsGoDEnus5FI4+fIw=="; 8988 8403 }; 8989 8404 }; 8990 - "@vscode/test-electron-2.4.1" = { 8991 - name = "_at_vscode_slash_test-electron"; 8992 - packageName = "@vscode/test-electron"; 8993 - version = "2.4.1"; 8994 - src = fetchurl { 8995 - url = "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.4.1.tgz"; 8996 - sha512 = "Gc6EdaLANdktQ1t+zozoBVRynfIsMKMc94Svu1QreOBC8y76x4tvaK32TljrLi1LI2+PK58sDVbL7ALdqf3VRQ=="; 8997 - }; 8998 - }; 8999 - "@vscode/vsce-2.32.0" = { 9000 - name = "_at_vscode_slash_vsce"; 9001 - packageName = "@vscode/vsce"; 9002 - version = "2.32.0"; 9003 - src = fetchurl { 9004 - url = "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.32.0.tgz"; 9005 - sha512 = "3EFJfsgrSftIqt3EtdRcAygy/OJ3hstyI1cDmIgkU9CFZW5C+3djr6mfosndCUqcVYuyjmxOK1xmFp/Bq7+NIg=="; 9006 - }; 9007 - }; 9008 - "@vscode/vsce-sign-2.0.5" = { 9009 - name = "_at_vscode_slash_vsce-sign"; 9010 - packageName = "@vscode/vsce-sign"; 9011 - version = "2.0.5"; 9012 - src = fetchurl { 9013 - url = "https://registry.npmjs.org/@vscode/vsce-sign/-/vsce-sign-2.0.5.tgz"; 9014 - sha512 = "GfYWrsT/vypTMDMgWDm75iDmAOMe7F71sZECJ+Ws6/xyIfmB3ELVnVN+LwMFAvmXY+e6eWhR2EzNGF/zAhWY3Q=="; 9015 - }; 9016 - }; 9017 8405 "@vue/compiler-core-3.5.13" = { 9018 8406 name = "_at_vue_slash_compiler-core"; 9019 8407 packageName = "@vue/compiler-core"; ··· 9806 9194 sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; 9807 9195 }; 9808 9196 }; 9809 - "@yarnpkg/parsers-3.0.2" = { 9810 - name = "_at_yarnpkg_slash_parsers"; 9811 - packageName = "@yarnpkg/parsers"; 9812 - version = "3.0.2"; 9813 - src = fetchurl { 9814 - url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.2.tgz"; 9815 - sha512 = "/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA=="; 9816 - }; 9817 - }; 9818 9197 "@zeit/schemas-2.36.0" = { 9819 9198 name = "_at_zeit_slash_schemas"; 9820 9199 packageName = "@zeit/schemas"; ··· 9833 9212 sha512 = "odWb1qUzt0dIOEUPyWBEpFDYQPRjEMr/dbHHAfgBkVkYR9aO7Zo+I7oYWrXIxl+cKlC7+49ftPm8uJxL1MA9kw=="; 9834 9213 }; 9835 9214 }; 9836 - "@zkochan/js-yaml-0.0.7" = { 9837 - name = "_at_zkochan_slash_js-yaml"; 9838 - packageName = "@zkochan/js-yaml"; 9839 - version = "0.0.7"; 9840 - src = fetchurl { 9841 - url = "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.7.tgz"; 9842 - sha512 = "nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ=="; 9843 - }; 9844 - }; 9845 9215 "JSONStream-0.10.0" = { 9846 9216 name = "JSONStream"; 9847 9217 packageName = "JSONStream"; ··· 10346 9716 sha512 = "S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg=="; 10347 9717 }; 10348 9718 }; 10349 - "anser-2.3.2" = { 10350 - name = "anser"; 10351 - packageName = "anser"; 10352 - version = "2.3.2"; 10353 - src = fetchurl { 10354 - url = "https://registry.npmjs.org/anser/-/anser-2.3.2.tgz"; 10355 - sha512 = "PMqBCBvrOVDRqLGooQb+z+t1Q0PiPyurUQeZRR5uHBOVZcW8B04KMmnT12USnhpNX2wCPagWzLVppQMUG3u0Dw=="; 10356 - }; 10357 - }; 10358 9719 "ansi-0.3.1" = { 10359 9720 name = "ansi"; 10360 9721 packageName = "ansi"; ··· 10542 9903 src = fetchurl { 10543 9904 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 10544 9905 sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 10545 - }; 10546 - }; 10547 - "ansi-styles-5.2.0" = { 10548 - name = "ansi-styles"; 10549 - packageName = "ansi-styles"; 10550 - version = "5.2.0"; 10551 - src = fetchurl { 10552 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz"; 10553 - sha512 = "Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="; 10554 9906 }; 10555 9907 }; 10556 9908 "ansi-styles-6.2.1" = { ··· 11597 10949 sha512 = "qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ=="; 11598 10950 }; 11599 10951 }; 11600 - "azure-devops-node-api-12.5.0" = { 11601 - name = "azure-devops-node-api"; 11602 - packageName = "azure-devops-node-api"; 11603 - version = "12.5.0"; 11604 - src = fetchurl { 11605 - url = "https://registry.npmjs.org/azure-devops-node-api/-/azure-devops-node-api-12.5.0.tgz"; 11606 - sha512 = "R5eFskGvOm3U/GzeAuxRkUsAl0hrAwGgWn6zAd2KrZmrEhWZVqLew4OOupbQlXUuojUzpGtq62SmdhJ06N88og=="; 11607 - }; 11608 - }; 11609 10952 "b4a-1.6.7" = { 11610 10953 name = "b4a"; 11611 10954 packageName = "b4a"; ··· 11633 10976 sha512 = "+qeGXSbHZwinZzO6R3wP+6XDKup83Pgg2B3TQt2zwfDdgC7NqT9Kd3ws7iqk53zAO/8iOIRU6VUyUzt2LDE3Eg=="; 11634 10977 }; 11635 10978 }; 11636 - "babel-plugin-macros-3.1.0" = { 11637 - name = "babel-plugin-macros"; 11638 - packageName = "babel-plugin-macros"; 11639 - version = "3.1.0"; 11640 - src = fetchurl { 11641 - url = "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz"; 11642 - sha512 = "Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg=="; 11643 - }; 11644 - }; 11645 10979 "babel-plugin-syntax-jsx-6.18.0" = { 11646 10980 name = "babel-plugin-syntax-jsx"; 11647 10981 packageName = "babel-plugin-syntax-jsx"; ··· 11939 11273 sha512 = "3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA=="; 11940 11274 }; 11941 11275 }; 11942 - "before-after-hook-2.2.3" = { 11943 - name = "before-after-hook"; 11944 - packageName = "before-after-hook"; 11945 - version = "2.2.3"; 11946 - src = fetchurl { 11947 - url = "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz"; 11948 - sha512 = "NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ=="; 11949 - }; 11950 - }; 11951 11276 "bencode-0.7.0" = { 11952 11277 name = "bencode"; 11953 11278 packageName = "bencode"; ··· 12054 11379 src = fetchurl { 12055 11380 url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"; 12056 11381 sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="; 12057 - }; 12058 - }; 12059 - "bin-links-4.0.4" = { 12060 - name = "bin-links"; 12061 - packageName = "bin-links"; 12062 - version = "4.0.4"; 12063 - src = fetchurl { 12064 - url = "https://registry.npmjs.org/bin-links/-/bin-links-4.0.4.tgz"; 12065 - sha512 = "cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA=="; 12066 11382 }; 12067 11383 }; 12068 11384 "binary-extensions-1.13.1" = { ··· 13010 12326 sha512 = "ovBpjmsgd/teRmgcPh23d4gJvxDoXtAzEL9xTfMU8Yc2kqCDb7L9jAG0XHl1nzuGl+h3ebCIF1i62UFyA9V/2Q=="; 13011 12327 }; 13012 12328 }; 13013 - "byte-size-8.1.1" = { 13014 - name = "byte-size"; 13015 - packageName = "byte-size"; 13016 - version = "8.1.1"; 13017 - src = fetchurl { 13018 - url = "https://registry.npmjs.org/byte-size/-/byte-size-8.1.1.tgz"; 13019 - sha512 = "tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg=="; 13020 - }; 13021 - }; 13022 12329 "bytes-3.0.0" = { 13023 12330 name = "bytes"; 13024 12331 packageName = "bytes"; ··· 13073 12380 sha512 = "/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ=="; 13074 12381 }; 13075 12382 }; 13076 - "cacache-18.0.4" = { 13077 - name = "cacache"; 13078 - packageName = "cacache"; 13079 - version = "18.0.4"; 13080 - src = fetchurl { 13081 - url = "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz"; 13082 - sha512 = "B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ=="; 13083 - }; 13084 - }; 13085 12383 "cacache-19.0.1" = { 13086 12384 name = "cacache"; 13087 12385 packageName = "cacache"; ··· 13379 12677 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 13380 12678 }; 13381 12679 }; 13382 - "caniuse-lite-1.0.30001699" = { 12680 + "caniuse-lite-1.0.30001700" = { 13383 12681 name = "caniuse-lite"; 13384 12682 packageName = "caniuse-lite"; 13385 - version = "1.0.30001699"; 12683 + version = "1.0.30001700"; 13386 12684 src = fetchurl { 13387 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001699.tgz"; 13388 - sha512 = "b+uH5BakXZ9Do9iK+CkDmctUSEqZl+SP056vc5usa0PL+ev5OHw003rZXcnjNDv3L8P5j6rwT6C0BPKSikW08w=="; 12685 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz"; 12686 + sha512 = "2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ=="; 13389 12687 }; 13390 12688 }; 13391 12689 "canvas-2.11.2" = { ··· 13460 12758 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 13461 12759 }; 13462 12760 }; 13463 - "cdk8s-2.69.40" = { 12761 + "cdk8s-2.69.43" = { 13464 12762 name = "cdk8s"; 13465 12763 packageName = "cdk8s"; 13466 - version = "2.69.40"; 12764 + version = "2.69.43"; 13467 12765 src = fetchurl { 13468 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.69.40.tgz"; 13469 - sha512 = "Ht2rysYwDROWqJCAFqqfDo/2tATrtMe9ibS7kXpSzarDO9h/l55AjyMGeWY7TAszdXGJCQTKOhVudvO1yAnhxQ=="; 12766 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.69.43.tgz"; 12767 + sha512 = "H7De5ozBSa00VlLN7MfA392fGVCV1nOkeEf3tHs/6aahOxd6mOcXkmxZvEl4/iG+TGx8IAnwyg2K3qRMRniqhg=="; 13470 12768 }; 13471 12769 }; 13472 12770 "cdk8s-plus-28-2.5.6" = { ··· 13701 12999 src = fetchurl { 13702 13000 url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz"; 13703 13001 sha512 = "8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA=="; 13704 - }; 13705 - }; 13706 - "cheerio-1.0.0" = { 13707 - name = "cheerio"; 13708 - packageName = "cheerio"; 13709 - version = "1.0.0"; 13710 - src = fetchurl { 13711 - url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0.tgz"; 13712 - sha512 = "quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww=="; 13713 13002 }; 13714 13003 }; 13715 13004 "cheerio-1.0.0-rc.12" = { ··· 14090 13379 sha512 = "tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A=="; 14091 13380 }; 14092 13381 }; 14093 - "cli-spinners-2.6.1" = { 14094 - name = "cli-spinners"; 14095 - packageName = "cli-spinners"; 14096 - version = "2.6.1"; 14097 - src = fetchurl { 14098 - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz"; 14099 - sha512 = "x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g=="; 14100 - }; 14101 - }; 14102 13382 "cli-spinners-2.9.2" = { 14103 13383 name = "cli-spinners"; 14104 13384 packageName = "cli-spinners"; ··· 14396 13676 sha512 = "A5C0Cyf2H8sKsHqX0tvIWRXw5/PK++3Dc0lDbsugr90nOECLLuSPahVQBG8pgmgiXgm/TzBWMqI2rWdZwHduAw=="; 14397 13677 }; 14398 13678 }; 14399 - "cmd-shim-6.0.3" = { 14400 - name = "cmd-shim"; 14401 - packageName = "cmd-shim"; 14402 - version = "6.0.3"; 14403 - src = fetchurl { 14404 - url = "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.3.tgz"; 14405 - sha512 = "FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA=="; 14406 - }; 14407 - }; 14408 13679 "cmdln-3.2.1" = { 14409 13680 name = "cmdln"; 14410 13681 packageName = "cmdln"; ··· 14432 13703 sha512 = "QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ=="; 14433 13704 }; 14434 13705 }; 14435 - "cockatiel-3.2.1" = { 14436 - name = "cockatiel"; 14437 - packageName = "cockatiel"; 14438 - version = "3.2.1"; 14439 - src = fetchurl { 14440 - url = "https://registry.npmjs.org/cockatiel/-/cockatiel-3.2.1.tgz"; 14441 - sha512 = "gfrHV6ZPkquExvMh9IOkKsBzNDk6sDuZ6DdBGUBkvFnTCqCxzpuq48RySgP0AnaqQkw2zynOFj9yly6T1Q2G5Q=="; 14442 - }; 14443 - }; 14444 13706 "code-block-writer-10.1.1" = { 14445 13707 name = "code-block-writer"; 14446 13708 packageName = "code-block-writer"; ··· 14486 13748 sha512 = "lxsbbcSMxCdT+9wUv1AvBH9791andoWDcQ6s7ZK6KsMZ+UkRLO3obzhi7Zm+RIA3lHecqzaGmOKyRnu0Dx/Zew=="; 14487 13749 }; 14488 13750 }; 14489 - "codemaker-1.106.0" = { 13751 + "codemaker-1.108.0" = { 14490 13752 name = "codemaker"; 14491 13753 packageName = "codemaker"; 14492 - version = "1.106.0"; 13754 + version = "1.108.0"; 14493 13755 src = fetchurl { 14494 - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.106.0.tgz"; 14495 - sha512 = "1aLNQCF/3DVxXol6eRqoLZnYulAwWPGq8BMF8pMZu+CaNkR7c0T5otMcbAXcskRLChiFt+BjVWS3JPVeBOHD4w=="; 13756 + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.108.0.tgz"; 13757 + sha512 = "EwMvLf3tkBXllS4hZbr3WYm4kZiAH5Spd01MaRd+yJ636RfwIvpGgCGVqYbjW0RJ7yyfnakZ0HvCc8PxqyYWbA=="; 14496 13758 }; 14497 13759 }; 14498 13760 "collapse-white-space-2.1.0" = { ··· 14639 13901 sha512 = "BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w=="; 14640 13902 }; 14641 13903 }; 14642 - "columnify-1.6.0" = { 14643 - name = "columnify"; 14644 - packageName = "columnify"; 14645 - version = "1.6.0"; 14646 - src = fetchurl { 14647 - url = "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz"; 14648 - sha512 = "lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q=="; 14649 - }; 14650 - }; 14651 13904 "combine-errors-3.0.3" = { 14652 13905 name = "combine-errors"; 14653 13906 packageName = "combine-errors"; ··· 14871 14124 src = fetchurl { 14872 14125 url = "https://registry.npmjs.org/commist/-/commist-1.1.0.tgz"; 14873 14126 sha512 = "rraC8NXWOEjhADbZe9QBNzLAN5Q3fsTPQtBV+fEVj6xKIgDgNiEVE6ZNfHpZOqfQ21YUzfVNUXLOEZquYvQPPg=="; 14874 - }; 14875 - }; 14876 - "common-ancestor-path-1.0.1" = { 14877 - name = "common-ancestor-path"; 14878 - packageName = "common-ancestor-path"; 14879 - version = "1.0.1"; 14880 - src = fetchurl { 14881 - url = "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz"; 14882 - sha512 = "L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w=="; 14883 14127 }; 14884 14128 }; 14885 14129 "common-tags-1.8.2" = { ··· 15378 14622 sha512 = "eOvlTO6OcySPyyyk8pKz2dP4jjElYunj9hn9/s0OB+gapTO8zwS9UQWrZ1pmF2hFs3vw1xhonOLGcGjy/zgsuA=="; 15379 14623 }; 15380 14624 }; 15381 - "conventional-changelog-core-5.0.1" = { 15382 - name = "conventional-changelog-core"; 15383 - packageName = "conventional-changelog-core"; 15384 - version = "5.0.1"; 15385 - src = fetchurl { 15386 - url = "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-5.0.1.tgz"; 15387 - sha512 = "Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A=="; 15388 - }; 15389 - }; 15390 14625 "conventional-changelog-core-8.0.0" = { 15391 14626 name = "conventional-changelog-core"; 15392 14627 packageName = "conventional-changelog-core"; ··· 15441 14676 sha512 = "gGNphSb/opc76n2eWaO6ma4/Wqu3tpa2w7i9WYqI6Cs2fncDSI2/ihOfMvXveeTTeld0oFvwMVNV+IYQIk3F3g=="; 15442 14677 }; 15443 14678 }; 15444 - "conventional-changelog-preset-loader-3.0.0" = { 15445 - name = "conventional-changelog-preset-loader"; 15446 - packageName = "conventional-changelog-preset-loader"; 15447 - version = "3.0.0"; 15448 - src = fetchurl { 15449 - url = "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-3.0.0.tgz"; 15450 - sha512 = "qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA=="; 15451 - }; 15452 - }; 15453 14679 "conventional-changelog-preset-loader-5.0.0" = { 15454 14680 name = "conventional-changelog-preset-loader"; 15455 14681 packageName = "conventional-changelog-preset-loader"; ··· 15459 14685 sha512 = "SetDSntXLk8Jh1NOAl1Gu5uLiCNSYenB5tm0YVeZKePRIgDW9lQImromTwLa3c/Gae298tsgOM+/CYT9XAl0NA=="; 15460 14686 }; 15461 14687 }; 15462 - "conventional-changelog-writer-6.0.1" = { 15463 - name = "conventional-changelog-writer"; 15464 - packageName = "conventional-changelog-writer"; 15465 - version = "6.0.1"; 15466 - src = fetchurl { 15467 - url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz"; 15468 - sha512 = "359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ=="; 15469 - }; 15470 - }; 15471 - "conventional-changelog-writer-8.0.0" = { 14688 + "conventional-changelog-writer-8.0.1" = { 15472 14689 name = "conventional-changelog-writer"; 15473 14690 packageName = "conventional-changelog-writer"; 15474 - version = "8.0.0"; 15475 - src = fetchurl { 15476 - url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.0.0.tgz"; 15477 - sha512 = "TQcoYGRatlAnT2qEWDON/XSfnVG38JzA7E0wcGScu7RElQBkg9WWgZd1peCWFcWDh1xfb2CfsrcvOn1bbSzztA=="; 15478 - }; 15479 - }; 15480 - "conventional-commits-filter-3.0.0" = { 15481 - name = "conventional-commits-filter"; 15482 - packageName = "conventional-commits-filter"; 15483 - version = "3.0.0"; 14691 + version = "8.0.1"; 15484 14692 src = fetchurl { 15485 - url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz"; 15486 - sha512 = "1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q=="; 14693 + url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.0.1.tgz"; 14694 + sha512 = "hlqcy3xHred2gyYg/zXSMXraY2mjAYYo0msUCpK+BGyaVJMFCKWVXPIHiaacGO2GGp13kvHWXFhYmxT4QQqW3Q=="; 15487 14695 }; 15488 14696 }; 15489 14697 "conventional-commits-filter-5.0.0" = { ··· 15495 14703 sha512 = "tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q=="; 15496 14704 }; 15497 14705 }; 15498 - "conventional-commits-parser-4.0.0" = { 15499 - name = "conventional-commits-parser"; 15500 - packageName = "conventional-commits-parser"; 15501 - version = "4.0.0"; 15502 - src = fetchurl { 15503 - url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz"; 15504 - sha512 = "WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg=="; 15505 - }; 15506 - }; 15507 14706 "conventional-commits-parser-5.0.0" = { 15508 14707 name = "conventional-commits-parser"; 15509 14708 packageName = "conventional-commits-parser"; ··· 15513 14712 sha512 = "ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA=="; 15514 14713 }; 15515 14714 }; 15516 - "conventional-commits-parser-6.0.0" = { 14715 + "conventional-commits-parser-6.1.0" = { 15517 14716 name = "conventional-commits-parser"; 15518 14717 packageName = "conventional-commits-parser"; 15519 - version = "6.0.0"; 15520 - src = fetchurl { 15521 - url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.0.0.tgz"; 15522 - sha512 = "TbsINLp48XeMXR8EvGjTnKGsZqBemisPoyWESlpRyR8lif0lcwzqz+NMtYSj1ooF/WYjSuu7wX0CtdeeMEQAmA=="; 15523 - }; 15524 - }; 15525 - "conventional-recommended-bump-7.0.1" = { 15526 - name = "conventional-recommended-bump"; 15527 - packageName = "conventional-recommended-bump"; 15528 - version = "7.0.1"; 14718 + version = "6.1.0"; 15529 14719 src = fetchurl { 15530 - url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz"; 15531 - sha512 = "Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA=="; 14720 + url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.1.0.tgz"; 14721 + sha512 = "5nxDo7TwKB5InYBl4ZC//1g9GRwB/F3TXOGR9hgUjMGfvSP4Vu5NkpNro2+1+TIEy1vwxApl5ircECr2ri5JIw=="; 15532 14722 }; 15533 14723 }; 15534 14724 "convert-hrtime-3.0.0" = { ··· 16017 15207 sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="; 16018 15208 }; 16019 15209 }; 16020 - "cspell-config-lib-8.17.3" = { 15210 + "cspell-config-lib-8.17.5" = { 16021 15211 name = "cspell-config-lib"; 16022 15212 packageName = "cspell-config-lib"; 16023 - version = "8.17.3"; 15213 + version = "8.17.5"; 16024 15214 src = fetchurl { 16025 - url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.17.3.tgz"; 16026 - sha512 = "+N32Q6xck3D2RqZIFwq8s0TnzHYMpyh4bgNtYqW5DIP3TLDiA4/MJGjwmLKAg/s9dkre6n8/++vVli3MZAOhIg=="; 15215 + url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.17.5.tgz"; 15216 + sha512 = "XDc+UJO5RZ9S9e2Ajz332XjT7dv6Og2UqCiSnAlvHt7t/MacLHSPARZFIivheObNkWZ7E1iWI681RxKoH4o40w=="; 16027 15217 }; 16028 15218 }; 16029 15219 "cspell-dict-vimlang-1.0.1" = { ··· 16035 15225 sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; 16036 15226 }; 16037 15227 }; 16038 - "cspell-dictionary-8.17.3" = { 15228 + "cspell-dictionary-8.17.5" = { 16039 15229 name = "cspell-dictionary"; 16040 15230 packageName = "cspell-dictionary"; 16041 - version = "8.17.3"; 15231 + version = "8.17.5"; 16042 15232 src = fetchurl { 16043 - url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.17.3.tgz"; 16044 - sha512 = "89I/lpQKdkX17RCFrUIJnc70Rjfpup/o+ynHZen0hUxGTfLsEJPrK6H2oGvic3Yrv5q8IOtwM1p8vqPqBkBheA=="; 15233 + url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.17.5.tgz"; 15234 + sha512 = "O/Uuhv1RuDu+5WYQml0surudweaTvr+2YJSmPSdlihByUSiogCbpGqwrRow7wQv/C5p1W1FlFjotvUfoR0fxHA=="; 16045 15235 }; 16046 15236 }; 16047 - "cspell-gitignore-8.17.3" = { 15237 + "cspell-gitignore-8.17.5" = { 16048 15238 name = "cspell-gitignore"; 16049 15239 packageName = "cspell-gitignore"; 16050 - version = "8.17.3"; 15240 + version = "8.17.5"; 16051 15241 src = fetchurl { 16052 - url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.17.3.tgz"; 16053 - sha512 = "rQamjb8R+Nwib/Bpcgf+xv5IdsOHgbP+fe4hCgv0jjgUPkeOR2c4dGwc0WS+2UkJbc+wQohpzBGDLRYGSB/hQw=="; 15242 + url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.17.5.tgz"; 15243 + sha512 = "I27fgOUZzH14jeIYo65LooB60fZ42f6OJL1lOR9Mk6IrIlDyUtzherGR+xx5KshK2katYkX42Qu4zsVYM6VFPA=="; 16054 15244 }; 16055 15245 }; 16056 15246 "cspell-glob-0.1.25" = { ··· 16062 15252 sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; 16063 15253 }; 16064 15254 }; 16065 - "cspell-glob-8.17.3" = { 15255 + "cspell-glob-8.17.5" = { 16066 15256 name = "cspell-glob"; 16067 15257 packageName = "cspell-glob"; 16068 - version = "8.17.3"; 15258 + version = "8.17.5"; 16069 15259 src = fetchurl { 16070 - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.17.3.tgz"; 16071 - sha512 = "0ov9A0E6OuOO7KOxlGCxJ09LR/ubZ6xcGwWc5bu+jp/8onUowQfe+9vZdznj/o8/vcf5JkDzyhRSBsdhWKqoAg=="; 15260 + url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.17.5.tgz"; 15261 + sha512 = "OXquou7UykInlGV5et5lNKYYrW0dwa28aEF995x1ocANND7o0bbHmFlbgyci/Lp4uFQai8sifmfFJbuIg2IC/A=="; 16072 15262 }; 16073 15263 }; 16074 - "cspell-grammar-8.17.3" = { 15264 + "cspell-grammar-8.17.5" = { 16075 15265 name = "cspell-grammar"; 16076 15266 packageName = "cspell-grammar"; 16077 - version = "8.17.3"; 15267 + version = "8.17.5"; 16078 15268 src = fetchurl { 16079 - url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.17.3.tgz"; 16080 - sha512 = "wfjkkvHthnKJtEaTgx3cPUPquGRXfgXSCwvMJaDyUi36KBlopXX38PejBTdmuqrvp7bINLSuHErml9wAfL5Fxw=="; 15269 + url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.17.5.tgz"; 15270 + sha512 = "st2n+FVw25MvMbsGb3TeJNRr6Oih4g14rjOd/UJN0qn+ceH360SAShUFqSd4kHHu2ADazI/TESFU6FRtMTPNOg=="; 16081 15271 }; 16082 15272 }; 16083 15273 "cspell-io-4.1.7" = { ··· 16089 15279 sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; 16090 15280 }; 16091 15281 }; 16092 - "cspell-io-8.17.3" = { 15282 + "cspell-io-8.17.5" = { 16093 15283 name = "cspell-io"; 16094 15284 packageName = "cspell-io"; 16095 - version = "8.17.3"; 15285 + version = "8.17.5"; 16096 15286 src = fetchurl { 16097 - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.17.3.tgz"; 16098 - sha512 = "NwEVb3Kr8loV1C8Stz9QSMgUrBkxqf2s7A9H2/RBnfvQBt9CWZS6NgoNxTPwHj3h1sUNl9reDkMQQzkKtgWGBQ=="; 15287 + url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.17.5.tgz"; 15288 + sha512 = "oevM/8l0s6nc1NCYPqNFumrW50QSHoa6wqUT8cWs09gtZdE2AWG0U6bIE8ZEVz6e6FxS+6IenGKTdUUwP0+3fg=="; 16099 15289 }; 16100 15290 }; 16101 15291 "cspell-lib-4.3.12" = { ··· 16107 15297 sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; 16108 15298 }; 16109 15299 }; 16110 - "cspell-lib-8.17.3" = { 15300 + "cspell-lib-8.17.5" = { 16111 15301 name = "cspell-lib"; 16112 15302 packageName = "cspell-lib"; 16113 - version = "8.17.3"; 15303 + version = "8.17.5"; 16114 15304 src = fetchurl { 16115 - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.17.3.tgz"; 16116 - sha512 = "KpwYIj8HwFyTzCCQcyezlmomvyNfPwZQmqTh4V126sFvf9HLoMdfyq8KYDZmZ//4HzwrF/ufJOF3CpuVUiJHfA=="; 15305 + url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.17.5.tgz"; 15306 + sha512 = "S3KuOrcST1d2BYmTXA+hnbRdho5n3w5GUvEaCx3QZQBwAPfLpAwJbe2yig1TxBpyEJ5LqP02i/mDg1pUCOP0hQ=="; 16117 15307 }; 16118 15308 }; 16119 15309 "cspell-trie-lib-4.2.8" = { ··· 16125 15315 sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; 16126 15316 }; 16127 15317 }; 16128 - "cspell-trie-lib-8.17.3" = { 15318 + "cspell-trie-lib-8.17.5" = { 16129 15319 name = "cspell-trie-lib"; 16130 15320 packageName = "cspell-trie-lib"; 16131 - version = "8.17.3"; 15321 + version = "8.17.5"; 16132 15322 src = fetchurl { 16133 - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.17.3.tgz"; 16134 - sha512 = "6LE5BeT2Rwv0bkQckpxX0K1fnFCWfeJ8zVPFtYOaix0trtqj0VNuwWzYDnxyW+OwMioCH29yRAMODa+JDFfUrA=="; 15323 + url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.17.5.tgz"; 15324 + sha512 = "9hjI3nRQxtGEua6CgnLbK3sGHLx9dXR/BHwI/csRL4dN5GGRkE5X3CCoy1RJVL7iGFLIzi43+L10xeFRmWniKw=="; 16135 15325 }; 16136 15326 }; 16137 15327 "cspell-util-bundle-4.1.11" = { ··· 16440 15630 sha512 = "MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw=="; 16441 15631 }; 16442 15632 }; 16443 - "d3-7.9.0" = { 16444 - name = "d3"; 16445 - packageName = "d3"; 16446 - version = "7.9.0"; 16447 - src = fetchurl { 16448 - url = "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz"; 16449 - sha512 = "e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA=="; 16450 - }; 16451 - }; 16452 15633 "d3-array-3.2.4" = { 16453 15634 name = "d3-array"; 16454 15635 packageName = "d3-array"; ··· 16458 15639 sha512 = "tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg=="; 16459 15640 }; 16460 15641 }; 16461 - "d3-axis-3.0.0" = { 16462 - name = "d3-axis"; 16463 - packageName = "d3-axis"; 16464 - version = "3.0.0"; 16465 - src = fetchurl { 16466 - url = "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz"; 16467 - sha512 = "IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw=="; 16468 - }; 16469 - }; 16470 - "d3-brush-3.0.0" = { 16471 - name = "d3-brush"; 16472 - packageName = "d3-brush"; 16473 - version = "3.0.0"; 16474 - src = fetchurl { 16475 - url = "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz"; 16476 - sha512 = "ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ=="; 16477 - }; 16478 - }; 16479 - "d3-chord-3.0.1" = { 16480 - name = "d3-chord"; 16481 - packageName = "d3-chord"; 16482 - version = "3.0.1"; 16483 - src = fetchurl { 16484 - url = "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz"; 16485 - sha512 = "VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g=="; 16486 - }; 16487 - }; 16488 15642 "d3-color-3.1.0" = { 16489 15643 name = "d3-color"; 16490 15644 packageName = "d3-color"; ··· 16494 15648 sha512 = "zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="; 16495 15649 }; 16496 15650 }; 16497 - "d3-contour-4.0.2" = { 16498 - name = "d3-contour"; 16499 - packageName = "d3-contour"; 16500 - version = "4.0.2"; 16501 - src = fetchurl { 16502 - url = "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz"; 16503 - sha512 = "4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA=="; 16504 - }; 16505 - }; 16506 15651 "d3-delaunay-6.0.4" = { 16507 15652 name = "d3-delaunay"; 16508 15653 packageName = "d3-delaunay"; ··· 16521 15666 sha512 = "rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg=="; 16522 15667 }; 16523 15668 }; 16524 - "d3-drag-3.0.0" = { 16525 - name = "d3-drag"; 16526 - packageName = "d3-drag"; 16527 - version = "3.0.0"; 16528 - src = fetchurl { 16529 - url = "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz"; 16530 - sha512 = "pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg=="; 16531 - }; 16532 - }; 16533 15669 "d3-dsv-3.0.1" = { 16534 15670 name = "d3-dsv"; 16535 15671 packageName = "d3-dsv"; ··· 16539 15675 sha512 = "UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q=="; 16540 15676 }; 16541 15677 }; 16542 - "d3-ease-3.0.1" = { 16543 - name = "d3-ease"; 16544 - packageName = "d3-ease"; 16545 - version = "3.0.1"; 16546 - src = fetchurl { 16547 - url = "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz"; 16548 - sha512 = "wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w=="; 16549 - }; 16550 - }; 16551 - "d3-fetch-3.0.1" = { 16552 - name = "d3-fetch"; 16553 - packageName = "d3-fetch"; 16554 - version = "3.0.1"; 16555 - src = fetchurl { 16556 - url = "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz"; 16557 - sha512 = "kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw=="; 16558 - }; 16559 - }; 16560 15678 "d3-force-3.0.0" = { 16561 15679 name = "d3-force"; 16562 15680 packageName = "d3-force"; ··· 16593 15711 sha512 = "p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg=="; 16594 15712 }; 16595 15713 }; 16596 - "d3-graphviz-5.6.0" = { 16597 - name = "d3-graphviz"; 16598 - packageName = "d3-graphviz"; 16599 - version = "5.6.0"; 16600 - src = fetchurl { 16601 - url = "https://registry.npmjs.org/d3-graphviz/-/d3-graphviz-5.6.0.tgz"; 16602 - sha512 = "46OOyRv5Ioo9kZBc919FVIYPD/ObtdSZxOK1hv+qwmD7TunpPvvmsI1dSdxhVgH4GragJxFZ31+TQC5aOuXzzw=="; 16603 - }; 16604 - }; 16605 15714 "d3-hierarchy-3.1.2" = { 16606 15715 name = "d3-hierarchy"; 16607 15716 packageName = "d3-hierarchy"; ··· 16629 15738 sha512 = "p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ=="; 16630 15739 }; 16631 15740 }; 16632 - "d3-polygon-3.0.1" = { 16633 - name = "d3-polygon"; 16634 - packageName = "d3-polygon"; 16635 - version = "3.0.1"; 16636 - src = fetchurl { 16637 - url = "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz"; 16638 - sha512 = "3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg=="; 16639 - }; 16640 - }; 16641 15741 "d3-quadtree-3.0.1" = { 16642 15742 name = "d3-quadtree"; 16643 15743 packageName = "d3-quadtree"; ··· 16647 15747 sha512 = "04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw=="; 16648 15748 }; 16649 15749 }; 16650 - "d3-random-3.0.1" = { 16651 - name = "d3-random"; 16652 - packageName = "d3-random"; 16653 - version = "3.0.1"; 16654 - src = fetchurl { 16655 - url = "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz"; 16656 - sha512 = "FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ=="; 16657 - }; 16658 - }; 16659 15750 "d3-scale-4.0.2" = { 16660 15751 name = "d3-scale"; 16661 15752 packageName = "d3-scale"; ··· 16672 15763 src = fetchurl { 16673 15764 url = "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz"; 16674 15765 sha512 = "A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ=="; 16675 - }; 16676 - }; 16677 - "d3-selection-3.0.0" = { 16678 - name = "d3-selection"; 16679 - packageName = "d3-selection"; 16680 - version = "3.0.0"; 16681 - src = fetchurl { 16682 - url = "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz"; 16683 - sha512 = "fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ=="; 16684 15766 }; 16685 15767 }; 16686 15768 "d3-shape-3.2.0" = { ··· 16719 15801 sha512 = "ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA=="; 16720 15802 }; 16721 15803 }; 16722 - "d3-transition-3.0.1" = { 16723 - name = "d3-transition"; 16724 - packageName = "d3-transition"; 16725 - version = "3.0.1"; 16726 - src = fetchurl { 16727 - url = "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz"; 16728 - sha512 = "ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w=="; 16729 - }; 16730 - }; 16731 - "d3-zoom-3.0.0" = { 16732 - name = "d3-zoom"; 16733 - packageName = "d3-zoom"; 16734 - version = "3.0.0"; 16735 - src = fetchurl { 16736 - url = "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz"; 16737 - sha512 = "b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw=="; 16738 - }; 16739 - }; 16740 - "dargs-7.0.0" = { 16741 - name = "dargs"; 16742 - packageName = "dargs"; 16743 - version = "7.0.0"; 16744 - src = fetchurl { 16745 - url = "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz"; 16746 - sha512 = "2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg=="; 16747 - }; 16748 - }; 16749 15804 "dargs-8.1.0" = { 16750 15805 name = "dargs"; 16751 15806 packageName = "dargs"; ··· 16906 15961 src = fetchurl { 16907 15962 url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; 16908 15963 sha512 = "GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw=="; 16909 - }; 16910 - }; 16911 - "dateformat-3.0.3" = { 16912 - name = "dateformat"; 16913 - packageName = "dateformat"; 16914 - version = "3.0.3"; 16915 - src = fetchurl { 16916 - url = "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz"; 16917 - sha512 = "jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q=="; 16918 15964 }; 16919 15965 }; 16920 15966 "dayjs-1.11.12" = { ··· 17187 16233 sha512 = "1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw=="; 17188 16234 }; 17189 16235 }; 17190 - "dedent-1.5.3" = { 17191 - name = "dedent"; 17192 - packageName = "dedent"; 17193 - version = "1.5.3"; 17194 - src = fetchurl { 17195 - url = "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz"; 17196 - sha512 = "NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ=="; 17197 - }; 17198 - }; 17199 16236 "deep-equal-1.1.2" = { 17200 16237 name = "deep-equal"; 17201 16238 packageName = "deep-equal"; ··· 17493 16530 sha512 = "S0OhIK7sIyAsph8hVH/LMCTDL3jozKtlrPx3dMQrlE2nAlXTquTT+AcOufphDMTQqLkfn4acvfiem9I1IWZ4jQ=="; 17494 16531 }; 17495 16532 }; 17496 - "deprecation-2.3.1" = { 17497 - name = "deprecation"; 17498 - packageName = "deprecation"; 17499 - version = "2.3.1"; 17500 - src = fetchurl { 17501 - url = "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz"; 17502 - sha512 = "xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ=="; 17503 - }; 17504 - }; 17505 16533 "deps-regex-0.2.0" = { 17506 16534 name = "deps-regex"; 17507 16535 packageName = "deps-regex"; ··· 17610 16638 sha512 = "CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg=="; 17611 16639 }; 17612 16640 }; 17613 - "detect-package-manager-3.0.2" = { 17614 - name = "detect-package-manager"; 17615 - packageName = "detect-package-manager"; 17616 - version = "3.0.2"; 17617 - src = fetchurl { 17618 - url = "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-3.0.2.tgz"; 17619 - sha512 = "8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ=="; 17620 - }; 17621 - }; 17622 16641 "detect-port-1.6.1" = { 17623 16642 name = "detect-port"; 17624 16643 packageName = "detect-port"; ··· 17725 16744 src = fetchurl { 17726 16745 url = "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz"; 17727 16746 sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; 17728 - }; 17729 - }; 17730 - "diff-sequences-29.6.3" = { 17731 - name = "diff-sequences"; 17732 - packageName = "diff-sequences"; 17733 - version = "29.6.3"; 17734 - src = fetchurl { 17735 - url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz"; 17736 - sha512 = "EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q=="; 17737 16747 }; 17738 16748 }; 17739 16749 "diff2html-3.4.51" = { ··· 18447 17457 sha512 = "UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA=="; 18448 17458 }; 18449 17459 }; 18450 - "electron-to-chromium-1.5.101" = { 17460 + "electron-to-chromium-1.5.104" = { 18451 17461 name = "electron-to-chromium"; 18452 17462 packageName = "electron-to-chromium"; 18453 - version = "1.5.101"; 17463 + version = "1.5.104"; 18454 17464 src = fetchurl { 18455 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.101.tgz"; 18456 - sha512 = "L0ISiQrP/56Acgu4/i/kfPwWSgrzYZUnQrC0+QPFuhqlLP1Ir7qzPPDVS9BcKIyWTRU8+o6CC8dKw38tSWhYIA=="; 17465 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.104.tgz"; 17466 + sha512 = "Us9M2L4cO/zMBqVkJtnj353nQhMju9slHm62NprKTmdF3HH8wYOtNvDFq/JB2+ZRoGLzdvYDiATlMHs98XBM1g=="; 18457 17467 }; 18458 17468 }; 18459 17469 "elegant-spinner-1.0.1" = { ··· 18591 17601 sha512 = "ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A=="; 18592 17602 }; 18593 17603 }; 18594 - "encoding-sniffer-0.2.0" = { 18595 - name = "encoding-sniffer"; 18596 - packageName = "encoding-sniffer"; 18597 - version = "0.2.0"; 18598 - src = fetchurl { 18599 - url = "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz"; 18600 - sha512 = "ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg=="; 18601 - }; 18602 - }; 18603 17604 "end-of-stream-0.1.5" = { 18604 17605 name = "end-of-stream"; 18605 17606 packageName = "end-of-stream"; ··· 18735 17736 sha512 = "ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg=="; 18736 17737 }; 18737 17738 }; 18738 - "enquirer-2.3.6" = { 18739 - name = "enquirer"; 18740 - packageName = "enquirer"; 18741 - version = "2.3.6"; 18742 - src = fetchurl { 18743 - url = "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"; 18744 - sha512 = "yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg=="; 18745 - }; 18746 - }; 18747 17739 "enquirer-2.4.1" = { 18748 17740 name = "enquirer"; 18749 17741 packageName = "enquirer"; ··· 18769 17761 src = fetchurl { 18770 17762 url = "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz"; 18771 17763 sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="; 18772 - }; 18773 - }; 18774 - "entities-2.1.0" = { 18775 - name = "entities"; 18776 - packageName = "entities"; 18777 - version = "2.1.0"; 18778 - src = fetchurl { 18779 - url = "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz"; 18780 - sha512 = "hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w=="; 18781 17764 }; 18782 17765 }; 18783 17766 "entities-2.2.0" = { ··· 18834 17817 sha512 = "dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A=="; 18835 17818 }; 18836 17819 }; 18837 - "envinfo-7.13.0" = { 18838 - name = "envinfo"; 18839 - packageName = "envinfo"; 18840 - version = "7.13.0"; 18841 - src = fetchurl { 18842 - url = "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz"; 18843 - sha512 = "cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q=="; 18844 - }; 18845 - }; 18846 17820 "envinfo-7.14.0" = { 18847 17821 name = "envinfo"; 18848 17822 packageName = "envinfo"; ··· 19113 18087 sha512 = "wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA=="; 19114 18088 }; 19115 18089 }; 19116 - "esbuild-0.23.1" = { 18090 + "esbuild-0.24.2" = { 19117 18091 name = "esbuild"; 19118 18092 packageName = "esbuild"; 19119 - version = "0.23.1"; 18093 + version = "0.24.2"; 19120 18094 src = fetchurl { 19121 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz"; 19122 - sha512 = "VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg=="; 18095 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz"; 18096 + sha512 = "+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA=="; 19123 18097 }; 19124 18098 }; 19125 - "esbuild-0.24.2" = { 18099 + "esbuild-0.25.0" = { 19126 18100 name = "esbuild"; 19127 18101 packageName = "esbuild"; 19128 - version = "0.24.2"; 18102 + version = "0.25.0"; 19129 18103 src = fetchurl { 19130 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz"; 19131 - sha512 = "+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA=="; 18104 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz"; 18105 + sha512 = "BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw=="; 19132 18106 }; 19133 18107 }; 19134 18108 "esbuild-android-64-0.14.47" = { ··· 19455 18429 sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; 19456 18430 }; 19457 18431 }; 19458 - "eslint-8.57.1" = { 18432 + "eslint-9.21.0" = { 19459 18433 name = "eslint"; 19460 18434 packageName = "eslint"; 19461 - version = "8.57.1"; 19462 - src = fetchurl { 19463 - url = "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz"; 19464 - sha512 = "ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA=="; 19465 - }; 19466 - }; 19467 - "eslint-9.20.1" = { 19468 - name = "eslint"; 19469 - packageName = "eslint"; 19470 - version = "9.20.1"; 19471 - src = fetchurl { 19472 - url = "https://registry.npmjs.org/eslint/-/eslint-9.20.1.tgz"; 19473 - sha512 = "m1mM33o6dBUjxl2qb6wv6nGNwCAsns1eKtaQ4l/NPHeTvhiUPbtdfMyktxN4B3fgHIgsYh1VT3V9txblpQHq+g=="; 19474 - }; 19475 - }; 19476 - "eslint-config-prettier-8.10.0" = { 19477 - name = "eslint-config-prettier"; 19478 - packageName = "eslint-config-prettier"; 19479 - version = "8.10.0"; 18435 + version = "9.21.0"; 19480 18436 src = fetchurl { 19481 - url = "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz"; 19482 - sha512 = "SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg=="; 18437 + url = "https://registry.npmjs.org/eslint/-/eslint-9.21.0.tgz"; 18438 + sha512 = "KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg=="; 19483 18439 }; 19484 18440 }; 19485 18441 "eslint-formatter-pretty-5.0.0" = { ··· 19516 18472 src = fetchurl { 19517 18473 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"; 19518 18474 sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; 19519 - }; 19520 - }; 19521 - "eslint-scope-7.2.2" = { 19522 - name = "eslint-scope"; 19523 - packageName = "eslint-scope"; 19524 - version = "7.2.2"; 19525 - src = fetchurl { 19526 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz"; 19527 - sha512 = "dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg=="; 19528 18475 }; 19529 18476 }; 19530 18477 "eslint-scope-8.2.0" = { ··· 19633 18580 src = fetchurl { 19634 18581 url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"; 19635 18582 sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; 19636 - }; 19637 - }; 19638 - "espree-9.6.1" = { 19639 - name = "espree"; 19640 - packageName = "espree"; 19641 - version = "9.6.1"; 19642 - src = fetchurl { 19643 - url = "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz"; 19644 - sha512 = "oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ=="; 19645 18583 }; 19646 18584 }; 19647 18585 "esprima-2.7.3" = { ··· 19932 18870 sha512 = "Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw=="; 19933 18871 }; 19934 18872 }; 19935 - "execa-5.0.0" = { 19936 - name = "execa"; 19937 - packageName = "execa"; 19938 - version = "5.0.0"; 19939 - src = fetchurl { 19940 - url = "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz"; 19941 - sha512 = "ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ=="; 19942 - }; 19943 - }; 19944 18873 "execa-5.1.1" = { 19945 18874 name = "execa"; 19946 18875 packageName = "execa"; ··· 20463 19392 sha512 = "xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw=="; 20464 19393 }; 20465 19394 }; 20466 - "fast-xml-parser-4.5.1" = { 19395 + "fast-xml-parser-4.5.3" = { 20467 19396 name = "fast-xml-parser"; 20468 19397 packageName = "fast-xml-parser"; 20469 - version = "4.5.1"; 19398 + version = "4.5.3"; 20470 19399 src = fetchurl { 20471 - url = "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.1.tgz"; 20472 - sha512 = "y655CeyUQ+jj7KBbYMc4FG01V8ZQqjN+gDYGJ50RtfsUB8iG9AmwmwoAgeKLJdmueKKMrH1RJ7yXHTSoczdv5w=="; 19400 + url = "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz"; 19401 + sha512 = "RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig=="; 20473 19402 }; 20474 19403 }; 20475 19404 "fastest-levenshtein-1.0.16" = { ··· 21102 20031 sha512 = "+X3/0hl9in0FJPsPB5/xTpkxxMzDSoA4cyon46HtXhrfEbpqBvKxpR+HJGqMjKv4jcBmoLjEtTVIAADJjLjv8A=="; 21103 20032 }; 21104 20033 }; 21105 - "flatted-3.3.2" = { 20034 + "flatted-3.3.3" = { 21106 20035 name = "flatted"; 21107 20036 packageName = "flatted"; 21108 - version = "3.3.2"; 20037 + version = "3.3.3"; 21109 20038 src = fetchurl { 21110 - url = "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz"; 21111 - sha512 = "AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA=="; 20039 + url = "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz"; 20040 + sha512 = "GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg=="; 21112 20041 }; 21113 20042 }; 21114 20043 "flatten-0.0.1" = { ··· 21255 20184 sha512 = "J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw=="; 21256 20185 }; 21257 20186 }; 21258 - "foreground-child-3.3.0" = { 20187 + "foreground-child-3.3.1" = { 21259 20188 name = "foreground-child"; 21260 20189 packageName = "foreground-child"; 21261 - version = "3.3.0"; 20190 + version = "3.3.1"; 21262 20191 src = fetchurl { 21263 - url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz"; 21264 - sha512 = "Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg=="; 20192 + url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz"; 20193 + sha512 = "gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw=="; 21265 20194 }; 21266 20195 }; 21267 20196 "forever-agent-0.6.1" = { ··· 21433 20362 src = fetchurl { 21434 20363 url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz"; 21435 20364 sha512 = "OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g=="; 21436 - }; 21437 - }; 21438 - "front-matter-4.0.2" = { 21439 - name = "front-matter"; 21440 - packageName = "front-matter"; 21441 - version = "4.0.2"; 21442 - src = fetchurl { 21443 - url = "https://registry.npmjs.org/front-matter/-/front-matter-4.0.2.tgz"; 21444 - sha512 = "I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg=="; 21445 20365 }; 21446 20366 }; 21447 20367 "fs-chunk-store-1.7.0" = { ··· 21894 20814 sha512 = "vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ=="; 21895 20815 }; 21896 20816 }; 21897 - "get-installed-path-2.1.1" = { 21898 - name = "get-installed-path"; 21899 - packageName = "get-installed-path"; 21900 - version = "2.1.1"; 21901 - src = fetchurl { 21902 - url = "https://registry.npmjs.org/get-installed-path/-/get-installed-path-2.1.1.tgz"; 21903 - sha512 = "Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA=="; 21904 - }; 21905 - }; 21906 - "get-intrinsic-1.2.7" = { 20817 + "get-intrinsic-1.3.0" = { 21907 20818 name = "get-intrinsic"; 21908 20819 packageName = "get-intrinsic"; 21909 - version = "1.2.7"; 20820 + version = "1.3.0"; 21910 20821 src = fetchurl { 21911 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz"; 21912 - sha512 = "VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA=="; 20822 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz"; 20823 + sha512 = "9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="; 21913 20824 }; 21914 20825 }; 21915 20826 "get-package-info-1.0.0" = { ··· 21930 20841 sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; 21931 20842 }; 21932 20843 }; 21933 - "get-pkg-repo-4.2.1" = { 21934 - name = "get-pkg-repo"; 21935 - packageName = "get-pkg-repo"; 21936 - version = "4.2.1"; 21937 - src = fetchurl { 21938 - url = "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz"; 21939 - sha512 = "2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA=="; 21940 - }; 21941 - }; 21942 20844 "get-port-4.2.0" = { 21943 20845 name = "get-port"; 21944 20846 packageName = "get-port"; ··· 21946 20848 src = fetchurl { 21947 20849 url = "https://registry.npmjs.org/get-port/-/get-port-4.2.0.tgz"; 21948 20850 sha512 = "/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw=="; 21949 - }; 21950 - }; 21951 - "get-port-5.1.1" = { 21952 - name = "get-port"; 21953 - packageName = "get-port"; 21954 - version = "5.1.1"; 21955 - src = fetchurl { 21956 - url = "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz"; 21957 - sha512 = "g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ=="; 21958 20851 }; 21959 20852 }; 21960 20853 "get-proto-1.0.1" = { ··· 22065 20958 sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="; 22066 20959 }; 22067 20960 }; 22068 - "get-stream-6.0.0" = { 22069 - name = "get-stream"; 22070 - packageName = "get-stream"; 22071 - version = "6.0.0"; 22072 - src = fetchurl { 22073 - url = "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz"; 22074 - sha512 = "A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg=="; 22075 - }; 22076 - }; 22077 20961 "get-stream-6.0.1" = { 22078 20962 name = "get-stream"; 22079 20963 packageName = "get-stream"; ··· 22173 21057 sha512 = "PdNkH2snpXsKIzho6OWMZKEl+KZG6Zm+1ghQIDi0tEq1sz/S1tDjvNuYrX2ZpomalHAB89OUQim8O6vN+jesNQ=="; 22174 21058 }; 22175 21059 }; 22176 - "git-raw-commits-3.0.0" = { 22177 - name = "git-raw-commits"; 22178 - packageName = "git-raw-commits"; 22179 - version = "3.0.0"; 22180 - src = fetchurl { 22181 - url = "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-3.0.0.tgz"; 22182 - sha512 = "b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw=="; 22183 - }; 22184 - }; 22185 21060 "git-raw-commits-4.0.0" = { 22186 21061 name = "git-raw-commits"; 22187 21062 packageName = "git-raw-commits"; ··· 22200 21075 sha512 = "I2ZXrXeOc0KrCvC7swqtIFXFN+rbjnC7b2T943tvemIOVNl+XP8YnA9UVwqFhzzLClnSA60KR/qEjLpXzs73Qg=="; 22201 21076 }; 22202 21077 }; 22203 - "git-remote-origin-url-2.0.0" = { 22204 - name = "git-remote-origin-url"; 22205 - packageName = "git-remote-origin-url"; 22206 - version = "2.0.0"; 22207 - src = fetchurl { 22208 - url = "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz"; 22209 - sha512 = "eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw=="; 22210 - }; 22211 - }; 22212 21078 "git-repo-info-2.1.1" = { 22213 21079 name = "git-repo-info"; 22214 21080 packageName = "git-repo-info"; ··· 22218 21084 sha512 = "8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg=="; 22219 21085 }; 22220 21086 }; 22221 - "git-semver-tags-5.0.1" = { 22222 - name = "git-semver-tags"; 22223 - packageName = "git-semver-tags"; 22224 - version = "5.0.1"; 22225 - src = fetchurl { 22226 - url = "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-5.0.1.tgz"; 22227 - sha512 = "hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA=="; 22228 - }; 22229 - }; 22230 21087 "git-semver-tags-8.0.0" = { 22231 21088 name = "git-semver-tags"; 22232 21089 packageName = "git-semver-tags"; ··· 22245 21102 sha512 = "W2Zo3sCiq5Hqv1/FLsNmGomkXdyimmkHncGzqjBHh7nWx+CbH5dkWGb6CiFdknooL7wfeZJ3gz14KrXl/gotCw=="; 22246 21103 }; 22247 21104 }; 22248 - "git-up-7.0.0" = { 22249 - name = "git-up"; 22250 - packageName = "git-up"; 22251 - version = "7.0.0"; 22252 - src = fetchurl { 22253 - url = "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz"; 22254 - sha512 = "ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ=="; 22255 - }; 22256 - }; 22257 - "git-url-parse-14.0.0" = { 22258 - name = "git-url-parse"; 22259 - packageName = "git-url-parse"; 22260 - version = "14.0.0"; 22261 - src = fetchurl { 22262 - url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-14.0.0.tgz"; 22263 - sha512 = "NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ=="; 22264 - }; 22265 - }; 22266 - "gitconfiglocal-1.0.0" = { 22267 - name = "gitconfiglocal"; 22268 - packageName = "gitconfiglocal"; 22269 - version = "1.0.0"; 22270 - src = fetchurl { 22271 - url = "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz"; 22272 - sha512 = "spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ=="; 22273 - }; 22274 - }; 22275 21105 "github-from-package-0.0.0" = { 22276 21106 name = "github-from-package"; 22277 21107 packageName = "github-from-package"; ··· 22378 21208 src = fetchurl { 22379 21209 url = "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz"; 22380 21210 sha512 = "r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ=="; 22381 - }; 22382 - }; 22383 - "glob-9.3.5" = { 22384 - name = "glob"; 22385 - packageName = "glob"; 22386 - version = "9.3.5"; 22387 - src = fetchurl { 22388 - url = "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz"; 22389 - sha512 = "e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q=="; 22390 21211 }; 22391 21212 }; 22392 21213 "glob-base-0.3.0" = { ··· 22812 21633 sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; 22813 21634 }; 22814 21635 }; 22815 - "graphemer-1.4.0" = { 22816 - name = "graphemer"; 22817 - packageName = "graphemer"; 22818 - version = "1.4.0"; 22819 - src = fetchurl { 22820 - url = "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz"; 22821 - sha512 = "EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="; 22822 - }; 22823 - }; 22824 21636 "graphlib-2.1.8" = { 22825 21637 name = "graphlib"; 22826 21638 packageName = "graphlib"; ··· 23271 22083 sha512 = "yGkCfPkkfCyiLfK6KEl/orMDr/zgCnq/NaO9HfULx6/Zga5fso5eqQA5Ov/JZVqACygvw9shRYWgXNcG2ilo7w=="; 23272 22084 }; 23273 22085 }; 23274 - "hast-util-to-html-9.0.4" = { 22086 + "hast-util-to-html-9.0.5" = { 23275 22087 name = "hast-util-to-html"; 23276 22088 packageName = "hast-util-to-html"; 23277 - version = "9.0.4"; 22089 + version = "9.0.5"; 23278 22090 src = fetchurl { 23279 - url = "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz"; 23280 - sha512 = "wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA=="; 22091 + url = "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz"; 22092 + sha512 = "OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw=="; 23281 22093 }; 23282 22094 }; 23283 22095 "hast-util-to-nlcst-2.2.0" = { ··· 24117 22929 sha512 = "PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ=="; 24118 22930 }; 24119 22931 }; 24120 - "ignore-walk-6.0.5" = { 24121 - name = "ignore-walk"; 24122 - packageName = "ignore-walk"; 24123 - version = "6.0.5"; 24124 - src = fetchurl { 24125 - url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.5.tgz"; 24126 - sha512 = "VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A=="; 24127 - }; 24128 - }; 24129 22932 "ignore-walk-7.0.0" = { 24130 22933 name = "ignore-walk"; 24131 22934 packageName = "ignore-walk"; ··· 24268 23071 src = fetchurl { 24269 23072 url = "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz"; 24270 23073 sha512 = "rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw=="; 24271 - }; 24272 - }; 24273 - "import-local-3.1.0" = { 24274 - name = "import-local"; 24275 - packageName = "import-local"; 24276 - version = "3.1.0"; 24277 - src = fetchurl { 24278 - url = "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz"; 24279 - sha512 = "ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg=="; 24280 23074 }; 24281 23075 }; 24282 23076 "import-local-3.2.0" = { ··· 24486 23280 sha512 = "+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw=="; 24487 23281 }; 24488 23282 }; 24489 - "init-package-json-6.0.3" = { 24490 - name = "init-package-json"; 24491 - packageName = "init-package-json"; 24492 - version = "6.0.3"; 24493 - src = fetchurl { 24494 - url = "https://registry.npmjs.org/init-package-json/-/init-package-json-6.0.3.tgz"; 24495 - sha512 = "Zfeb5ol+H+eqJWHTaGca9BovufyGeIfr4zaaBorPmJBMrJ+KBnN+kQx2ZtXdsotUTgldHmHQV44xvUWOUA7E2w=="; 24496 - }; 24497 - }; 24498 23283 "ink-3.2.0" = { 24499 23284 name = "ink"; 24500 23285 packageName = "ink"; ··· 25989 24774 sha512 = "ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="; 25990 24775 }; 25991 24776 }; 25992 - "is-ssh-1.4.1" = { 25993 - name = "is-ssh"; 25994 - packageName = "is-ssh"; 25995 - version = "1.4.1"; 25996 - src = fetchurl { 25997 - url = "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.1.tgz"; 25998 - sha512 = "JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg=="; 25999 - }; 26000 - }; 26001 24777 "is-stream-1.1.0" = { 26002 24778 name = "is-stream"; 26003 24779 packageName = "is-stream"; ··· 26005 24781 src = fetchurl { 26006 24782 url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; 26007 24783 sha512 = "uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ=="; 26008 - }; 26009 - }; 26010 - "is-stream-2.0.0" = { 26011 - name = "is-stream"; 26012 - packageName = "is-stream"; 26013 - version = "2.0.0"; 26014 - src = fetchurl { 26015 - url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"; 26016 - sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 26017 24784 }; 26018 24785 }; 26019 24786 "is-stream-2.0.1" = { ··· 26068 24835 src = fetchurl { 26069 24836 url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz"; 26070 24837 sha512 = "9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="; 26071 - }; 26072 - }; 26073 - "is-text-path-1.0.1" = { 26074 - name = "is-text-path"; 26075 - packageName = "is-text-path"; 26076 - version = "1.0.1"; 26077 - src = fetchurl { 26078 - url = "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz"; 26079 - sha512 = "xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w=="; 26080 24838 }; 26081 24839 }; 26082 24840 "is-text-path-2.0.0" = { ··· 26430 25188 sha512 = "OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="; 26431 25189 }; 26432 25190 }; 26433 - "jackspeak-4.0.3" = { 25191 + "jackspeak-4.1.0" = { 26434 25192 name = "jackspeak"; 26435 25193 packageName = "jackspeak"; 26436 - version = "4.0.3"; 25194 + version = "4.1.0"; 26437 25195 src = fetchurl { 26438 - url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.3.tgz"; 26439 - sha512 = "oSwM7q8PTHQWuZAlp995iPpPJ4Vkl7qT0ZRD+9duL9j2oBy6KcTfyxc8mEuHJYC+z/kbps80aJLkaNzTOrf/kw=="; 25196 + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz"; 25197 + sha512 = "9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw=="; 26440 25198 }; 26441 25199 }; 26442 25200 "jade-0.27.0" = { ··· 26455 25213 src = fetchurl { 26456 25214 url = "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz"; 26457 25215 sha512 = "2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA=="; 26458 - }; 26459 - }; 26460 - "jest-diff-29.7.0" = { 26461 - name = "jest-diff"; 26462 - packageName = "jest-diff"; 26463 - version = "29.7.0"; 26464 - src = fetchurl { 26465 - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz"; 26466 - sha512 = "LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw=="; 26467 - }; 26468 - }; 26469 - "jest-get-type-29.6.3" = { 26470 - name = "jest-get-type"; 26471 - packageName = "jest-get-type"; 26472 - version = "29.6.3"; 26473 - src = fetchurl { 26474 - url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz"; 26475 - sha512 = "zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw=="; 26476 25216 }; 26477 25217 }; 26478 25218 "jest-worker-27.5.1" = { ··· 26745 25485 sha512 = "qxiV/NMucgvHHupZJ36QACejcgZ3qY1FzjVHMOBmDHm+dISZ39p7dH7Hiq2ErMEwCDzdvQgR1OwCsUnrBH6oVQ=="; 26746 25486 }; 26747 25487 }; 26748 - "jsii-5.5.21" = { 25488 + "jsii-5.5.23" = { 26749 25489 name = "jsii"; 26750 25490 packageName = "jsii"; 26751 - version = "5.5.21"; 25491 + version = "5.5.23"; 26752 25492 src = fetchurl { 26753 - url = "https://registry.npmjs.org/jsii/-/jsii-5.5.21.tgz"; 26754 - sha512 = "ISmQCWc1HFUrXlMDWo0PZ5ggEg1uFv1vE0dGcKV25yyaWPPc6ai2RoiG0PEZIc3fRa2edT5yTFPf2tttet+Wxw=="; 25493 + url = "https://registry.npmjs.org/jsii/-/jsii-5.5.23.tgz"; 25494 + sha512 = "HtAu1yGOVbl8dHHinkOOO3Ri01dDc/RrZ7IYlw/OSwhSgH0LB+x8tBWbhcacYE20mMIc/2GbADZOrcVj5byyBg=="; 26755 25495 }; 26756 25496 }; 26757 - "jsii-5.7.5" = { 25497 + "jsii-5.7.6" = { 26758 25498 name = "jsii"; 26759 25499 packageName = "jsii"; 26760 - version = "5.7.5"; 25500 + version = "5.7.6"; 26761 25501 src = fetchurl { 26762 - url = "https://registry.npmjs.org/jsii/-/jsii-5.7.5.tgz"; 26763 - sha512 = "3cEcpDjiA3bunGbEejnst43y7Oi/MoQECaAcj+m6Pn3JJhk1DZY0M+SuOlKv2z8FxPR1ODf7+ZdwXZOMj5xVMg=="; 25502 + url = "https://registry.npmjs.org/jsii/-/jsii-5.7.6.tgz"; 25503 + sha512 = "yh+LxT7tUTs30R5nbmI5hcjHaxqHdrYyd9jjR9uDWbkW4Aj8yvqX7U6eaOzQZPvolnBZ1pvgelIfO/KRqzSfog=="; 26764 25504 }; 26765 25505 }; 26766 25506 "jsii-pacmak-1.102.0" = { ··· 26772 25512 sha512 = "3/nqBYNH8n/5IWI0sBFBYl1yATokEDUDQtYFLjzk7oXNWpUJ23/encI78Cs55ZS6UXcfWN3xczGLqCWnsgEpnw=="; 26773 25513 }; 26774 25514 }; 26775 - "jsii-pacmak-1.106.0" = { 25515 + "jsii-pacmak-1.108.0" = { 26776 25516 name = "jsii-pacmak"; 26777 25517 packageName = "jsii-pacmak"; 26778 - version = "1.106.0"; 25518 + version = "1.108.0"; 26779 25519 src = fetchurl { 26780 - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.106.0.tgz"; 26781 - sha512 = "cNSzPszHaFg5AYwOQhp+eM/KpOJupdeyyycrzR6AtxwSmRN6x4K7YybZY/Rk0zfqGds9ukOYv0euGLZuXzXt1w=="; 25520 + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.108.0.tgz"; 25521 + sha512 = "qj/dGQkALH/YTMGUIyg+EgFD9+WXyrJPug8cwQureNyRK90gHLrTMo7oFQhhTlW2OVH6WAGlQO5FPLtkbujgmQ=="; 26782 25522 }; 26783 25523 }; 26784 - "jsii-reflect-1.106.0" = { 25524 + "jsii-reflect-1.108.0" = { 26785 25525 name = "jsii-reflect"; 26786 25526 packageName = "jsii-reflect"; 26787 - version = "1.106.0"; 25527 + version = "1.108.0"; 26788 25528 src = fetchurl { 26789 - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.106.0.tgz"; 26790 - sha512 = "3t+a8kT4G5fYnQAM7eS8bgUpK+Vj1sFgABqLIC2Oae+8rUb6J+v7xTSvqWEOlO0FI608/BwalWsXsvW+Mtogmw=="; 25529 + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.108.0.tgz"; 25530 + sha512 = "szlgEA2zFJhtSId2/GYHqosofkXgmkdo+baMMbv0HWt1UuwUK+pI+nYP9WX7mkNoNgIS1tVLre6AZZAZ7RmOfg=="; 26791 25531 }; 26792 25532 }; 26793 25533 "jsii-rosetta-5.4.30" = { ··· 26799 25539 sha512 = "DyJlVO1L7p37poEtja3ktr3zGv15kvnkVrJ+uPuv5+QOvSs2XTTzi2qsgt/l7N/6yXelQ2LDvSDzXfEY08UZjg=="; 26800 25540 }; 26801 25541 }; 26802 - "jsii-rosetta-5.7.4" = { 25542 + "jsii-rosetta-5.7.6" = { 26803 25543 name = "jsii-rosetta"; 26804 25544 packageName = "jsii-rosetta"; 26805 - version = "5.7.4"; 25545 + version = "5.7.6"; 26806 25546 src = fetchurl { 26807 - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.7.4.tgz"; 26808 - sha512 = "7wBOpEWUofrdxn+9iG2GW85fZ6M+LDjJDm3pG5eTvbPOK0ip5u7ec4C3ZhTkuAh/z22Xo29+qNndvUI169siyg=="; 25547 + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.7.6.tgz"; 25548 + sha512 = "yimRfvgFM4+ZctGBWadQe3Yplxpp21iSWZzYGncMCV+oaZ1IlTrq4AxGjcoij+bQFdp97hAXoDg66pFmvWOkBg=="; 26809 25549 }; 26810 25550 }; 26811 25551 "jsii-srcmak-0.1.1236" = { ··· 26986 25726 src = fetchurl { 26987 25727 url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 26988 25728 sha512 = "Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="; 26989 - }; 26990 - }; 26991 - "json-stringify-nice-1.1.4" = { 26992 - name = "json-stringify-nice"; 26993 - packageName = "json-stringify-nice"; 26994 - version = "1.1.4"; 26995 - src = fetchurl { 26996 - url = "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz"; 26997 - sha512 = "5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw=="; 26998 25729 }; 26999 25730 }; 27000 25731 "json-stringify-pretty-compact-4.0.0" = { ··· 27051 25782 sha512 = "o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w=="; 27052 25783 }; 27053 25784 }; 27054 - "jsonc-parser-3.2.0" = { 27055 - name = "jsonc-parser"; 27056 - packageName = "jsonc-parser"; 27057 - version = "3.2.0"; 27058 - src = fetchurl { 27059 - url = "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz"; 27060 - sha512 = "gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w=="; 27061 - }; 27062 - }; 27063 25785 "jsonc-parser-3.3.1" = { 27064 25786 name = "jsonc-parser"; 27065 25787 packageName = "jsonc-parser"; ··· 27148 25870 src = fetchurl { 27149 25871 url = "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-10.2.0.tgz"; 27150 25872 sha512 = "T9V+8iNYKFL2n2rF+w02LBOT2JjDnTjioaNFrxRy0Bv1y/hNsqR/EBK7Ojy2ythRHwmz2cRIls+9JitQGZC/sw=="; 25873 + }; 25874 + }; 25875 + "jsonpath-plus-10.3.0" = { 25876 + name = "jsonpath-plus"; 25877 + packageName = "jsonpath-plus"; 25878 + version = "10.3.0"; 25879 + src = fetchurl { 25880 + url = "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-10.3.0.tgz"; 25881 + sha512 = "8TNmfeTCk2Le33A3vRRwtuworG/L5RrgMvdjhKZxvyShO+mBu2fP50OWUjRLNtvw344DdDarFh9buFAZs5ujeA=="; 27151 25882 }; 27152 25883 }; 27153 25884 "jsonpointer-5.0.1" = { ··· 27204 25935 sha512 = "gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ=="; 27205 25936 }; 27206 25937 }; 27207 - "jszip-3.10.1" = { 27208 - name = "jszip"; 27209 - packageName = "jszip"; 27210 - version = "3.10.1"; 27211 - src = fetchurl { 27212 - url = "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz"; 27213 - sha512 = "xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g=="; 27214 - }; 27215 - }; 27216 25938 "jszip-3.8.0" = { 27217 25939 name = "jszip"; 27218 25940 packageName = "jszip"; ··· 27240 25962 sha512 = "Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ=="; 27241 25963 }; 27242 25964 }; 27243 - "just-diff-6.0.2" = { 27244 - name = "just-diff"; 27245 - packageName = "just-diff"; 27246 - version = "6.0.2"; 27247 - src = fetchurl { 27248 - url = "https://registry.npmjs.org/just-diff/-/just-diff-6.0.2.tgz"; 27249 - sha512 = "S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA=="; 27250 - }; 27251 - }; 27252 - "just-diff-apply-5.5.0" = { 27253 - name = "just-diff-apply"; 27254 - packageName = "just-diff-apply"; 27255 - version = "5.5.0"; 27256 - src = fetchurl { 27257 - url = "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-5.5.0.tgz"; 27258 - sha512 = "OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw=="; 27259 - }; 27260 - }; 27261 25965 "jwa-1.4.1" = { 27262 25966 name = "jwa"; 27263 25967 packageName = "jwa"; ··· 27744 26448 sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; 27745 26449 }; 27746 26450 }; 27747 - "libnpmaccess-8.0.6" = { 27748 - name = "libnpmaccess"; 27749 - packageName = "libnpmaccess"; 27750 - version = "8.0.6"; 27751 - src = fetchurl { 27752 - url = "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-8.0.6.tgz"; 27753 - sha512 = "uM8DHDEfYG6G5gVivVl+yQd4pH3uRclHC59lzIbSvy7b5FEwR+mU49Zq1jEyRtRFv7+M99mUW9S0wL/4laT4lw=="; 27754 - }; 27755 - }; 27756 - "libnpmpublish-9.0.9" = { 27757 - name = "libnpmpublish"; 27758 - packageName = "libnpmpublish"; 27759 - version = "9.0.9"; 27760 - src = fetchurl { 27761 - url = "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-9.0.9.tgz"; 27762 - sha512 = "26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg=="; 27763 - }; 27764 - }; 27765 26451 "lie-3.1.1" = { 27766 26452 name = "lie"; 27767 26453 packageName = "lie"; ··· 27850 26536 src = fetchurl { 27851 26537 url = "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz"; 27852 26538 sha512 = "7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="; 27853 - }; 27854 - }; 27855 - "lines-and-columns-2.0.3" = { 27856 - name = "lines-and-columns"; 27857 - packageName = "lines-and-columns"; 27858 - version = "2.0.3"; 27859 - src = fetchurl { 27860 - url = "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz"; 27861 - sha512 = "cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w=="; 27862 26539 }; 27863 26540 }; 27864 26541 "lines-and-columns-2.0.4" = { ··· 28032 26709 sha512 = "3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ=="; 28033 26710 }; 28034 26711 }; 28035 - "load-json-file-4.0.0" = { 28036 - name = "load-json-file"; 28037 - packageName = "load-json-file"; 28038 - version = "4.0.0"; 28039 - src = fetchurl { 28040 - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"; 28041 - sha512 = "Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw=="; 28042 - }; 28043 - }; 28044 26712 "load-json-file-6.2.0" = { 28045 26713 name = "load-json-file"; 28046 26714 packageName = "load-json-file"; ··· 28552 27220 src = fetchurl { 28553 27221 url = "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz"; 28554 27222 sha512 = "DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA=="; 28555 - }; 28556 - }; 28557 - "lodash.ismatch-4.4.0" = { 28558 - name = "lodash.ismatch"; 28559 - packageName = "lodash.ismatch"; 28560 - version = "4.4.0"; 28561 - src = fetchurl { 28562 - url = "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz"; 28563 - sha512 = "fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g=="; 28564 27223 }; 28565 27224 }; 28566 27225 "lodash.isnil-4.0.0" = { ··· 29049 27708 sha512 = "WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g=="; 29050 27709 }; 29051 27710 }; 29052 - "long-5.3.0" = { 27711 + "long-5.3.1" = { 29053 27712 name = "long"; 29054 27713 packageName = "long"; 29055 - version = "5.3.0"; 27714 + version = "5.3.1"; 29056 27715 src = fetchurl { 29057 - url = "https://registry.npmjs.org/long/-/long-5.3.0.tgz"; 29058 - sha512 = "5vvY5yF1zF/kXk+L94FRiTDa1Znom46UjPCH6/XbSvS8zBKMFBHTJk8KDMqJ+2J6QezQFi7k1k8v21ClJYHPaw=="; 27716 + url = "https://registry.npmjs.org/long/-/long-5.3.1.tgz"; 27717 + sha512 = "ka87Jz3gcx/I7Hal94xaN2tZEOPoUOEVftkQqZx2EeQRN7LGdfLlI3FvZ+7WDplm+vK2Urx9ULrvSowtdCieng=="; 29059 27718 }; 29060 27719 }; 29061 27720 "long-timeout-0.1.1" = { ··· 29428 28087 sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 29429 28088 }; 29430 28089 }; 29431 - "make-dir-4.0.0" = { 29432 - name = "make-dir"; 29433 - packageName = "make-dir"; 29434 - version = "4.0.0"; 29435 - src = fetchurl { 29436 - url = "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz"; 29437 - sha512 = "hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw=="; 29438 - }; 29439 - }; 29440 28090 "make-error-1.3.6" = { 29441 28091 name = "make-error"; 29442 28092 packageName = "make-error"; ··· 29455 28105 sha512 = "NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w=="; 29456 28106 }; 29457 28107 }; 29458 - "make-fetch-happen-13.0.1" = { 29459 - name = "make-fetch-happen"; 29460 - packageName = "make-fetch-happen"; 29461 - version = "13.0.1"; 29462 - src = fetchurl { 29463 - url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz"; 29464 - sha512 = "cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA=="; 29465 - }; 29466 - }; 29467 28108 "make-fetch-happen-14.0.3" = { 29468 28109 name = "make-fetch-happen"; 29469 28110 packageName = "make-fetch-happen"; ··· 29543 28184 src = fetchurl { 29544 28185 url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"; 29545 28186 sha512 = "4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w=="; 29546 - }; 29547 - }; 29548 - "markdown-it-12.3.2" = { 29549 - name = "markdown-it"; 29550 - packageName = "markdown-it"; 29551 - version = "12.3.2"; 29552 - src = fetchurl { 29553 - url = "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz"; 29554 - sha512 = "TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg=="; 29555 28187 }; 29556 28188 }; 29557 28189 "markdown-it-13.0.2" = { ··· 30254 28886 src = fetchurl { 30255 28887 url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz"; 30256 28888 sha512 = "TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA=="; 30257 - }; 30258 - }; 30259 - "meow-8.1.2" = { 30260 - name = "meow"; 30261 - packageName = "meow"; 30262 - version = "8.1.2"; 30263 - src = fetchurl { 30264 - url = "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz"; 30265 - sha512 = "r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q=="; 30266 28889 }; 30267 28890 }; 30268 28891 "meow-9.0.0" = { ··· 31228 29851 sha512 = "ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ=="; 31229 29852 }; 31230 29853 }; 31231 - "minimatch-3.0.5" = { 31232 - name = "minimatch"; 31233 - packageName = "minimatch"; 31234 - version = "3.0.5"; 31235 - src = fetchurl { 31236 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz"; 31237 - sha512 = "tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw=="; 31238 - }; 31239 - }; 31240 29854 "minimatch-3.0.8" = { 31241 29855 name = "minimatch"; 31242 29856 packageName = "minimatch"; ··· 31282 29896 sha512 = "sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw=="; 31283 29897 }; 31284 29898 }; 31285 - "minimatch-8.0.4" = { 31286 - name = "minimatch"; 31287 - packageName = "minimatch"; 31288 - version = "8.0.4"; 31289 - src = fetchurl { 31290 - url = "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz"; 31291 - sha512 = "W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA=="; 31292 - }; 31293 - }; 31294 29899 "minimatch-9.0.1" = { 31295 29900 name = "minimatch"; 31296 29901 packageName = "minimatch"; ··· 31307 29912 src = fetchurl { 31308 29913 url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz"; 31309 29914 sha512 = "PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg=="; 31310 - }; 31311 - }; 31312 - "minimatch-9.0.3" = { 31313 - name = "minimatch"; 31314 - packageName = "minimatch"; 31315 - version = "9.0.3"; 31316 - src = fetchurl { 31317 - url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz"; 31318 - sha512 = "RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="; 31319 29915 }; 31320 29916 }; 31321 29917 "minimatch-9.0.5" = { ··· 31372 29968 sha512 = "DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="; 31373 29969 }; 31374 29970 }; 31375 - "minipass-4.2.8" = { 31376 - name = "minipass"; 31377 - packageName = "minipass"; 31378 - version = "4.2.8"; 31379 - src = fetchurl { 31380 - url = "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz"; 31381 - sha512 = "fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ=="; 31382 - }; 31383 - }; 31384 29971 "minipass-5.0.0" = { 31385 29972 name = "minipass"; 31386 29973 packageName = "minipass"; ··· 31433 30020 src = fetchurl { 31434 30021 url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz"; 31435 30022 sha512 = "LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA=="; 31436 - }; 31437 - }; 31438 - "minipass-fetch-3.0.5" = { 31439 - name = "minipass-fetch"; 31440 - packageName = "minipass-fetch"; 31441 - version = "3.0.5"; 31442 - src = fetchurl { 31443 - url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz"; 31444 - sha512 = "2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg=="; 31445 30023 }; 31446 30024 }; 31447 30025 "minipass-fetch-4.0.0" = { ··· 31588 30166 sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; 31589 30167 }; 31590 30168 }; 31591 - "modify-values-1.0.1" = { 31592 - name = "modify-values"; 31593 - packageName = "modify-values"; 31594 - version = "1.0.1"; 31595 - src = fetchurl { 31596 - url = "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz"; 31597 - sha512 = "xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw=="; 31598 - }; 31599 - }; 31600 30169 "module-deps-6.2.3" = { 31601 30170 name = "module-deps"; 31602 30171 packageName = "module-deps"; ··· 31687 30256 sha512 = "tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="; 31688 30257 }; 31689 30258 }; 31690 - "mrmime-2.0.0" = { 30259 + "mrmime-2.0.1" = { 31691 30260 name = "mrmime"; 31692 30261 packageName = "mrmime"; 31693 - version = "2.0.0"; 30262 + version = "2.0.1"; 31694 30263 src = fetchurl { 31695 - url = "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz"; 31696 - sha512 = "eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw=="; 30264 + url = "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz"; 30265 + sha512 = "Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ=="; 31697 30266 }; 31698 30267 }; 31699 30268 "ms-0.7.3" = { ··· 31903 30472 sha512 = "2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="; 31904 30473 }; 31905 30474 }; 31906 - "nan-2.22.0" = { 30475 + "nan-2.22.1" = { 31907 30476 name = "nan"; 31908 30477 packageName = "nan"; 31909 - version = "2.22.0"; 30478 + version = "2.22.1"; 31910 30479 src = fetchurl { 31911 - url = "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz"; 31912 - sha512 = "nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw=="; 30480 + url = "https://registry.npmjs.org/nan/-/nan-2.22.1.tgz"; 30481 + sha512 = "pfRR4ZcNTSm2ZFHaztuvbICf+hyiG6ecA06SfAxoPmuHjvMu0KUIae7Y8GyVkbBqeEIidsmXeYooWIX9+qjfRQ=="; 31913 30482 }; 31914 30483 }; 31915 30484 "nanoid-3.3.7" = { ··· 32480 31049 sha512 = "08ARB91bUi6zNKzVmaj3QO7cr397uiDT2nJ63cHjyNtCTWIgvS47j3eT0WfzUwS9+6Z5YshRaoasFkXCKrIYbA=="; 32481 31050 }; 32482 31051 }; 32483 - "node-gyp-10.3.1" = { 32484 - name = "node-gyp"; 32485 - packageName = "node-gyp"; 32486 - version = "10.3.1"; 32487 - src = fetchurl { 32488 - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-10.3.1.tgz"; 32489 - sha512 = "Pp3nFHBThHzVtNY7U6JfPjvT/DTE8+o/4xKsLQtBoU+j2HLsGlhcfzflAoUreaJbNmYnX+LlLi0qjV8kpyO6xQ=="; 32490 - }; 32491 - }; 32492 31052 "node-gyp-11.1.0" = { 32493 31053 name = "node-gyp"; 32494 31054 packageName = "node-gyp"; ··· 32543 31103 sha512 = "+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw=="; 32544 31104 }; 32545 31105 }; 32546 - "node-machine-id-1.1.12" = { 32547 - name = "node-machine-id"; 32548 - packageName = "node-machine-id"; 32549 - version = "1.1.12"; 32550 - src = fetchurl { 32551 - url = "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz"; 32552 - sha512 = "QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ=="; 32553 - }; 32554 - }; 32555 31106 "node-notifier-10.0.1" = { 32556 31107 name = "node-notifier"; 32557 31108 packageName = "node-notifier"; ··· 32885 31436 sha512 = "x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ=="; 32886 31437 }; 32887 31438 }; 32888 - "npm-bundled-3.0.1" = { 32889 - name = "npm-bundled"; 32890 - packageName = "npm-bundled"; 32891 - version = "3.0.1"; 32892 - src = fetchurl { 32893 - url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.1.tgz"; 32894 - sha512 = "+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ=="; 32895 - }; 32896 - }; 32897 31439 "npm-bundled-4.0.0" = { 32898 31440 name = "npm-bundled"; 32899 31441 packageName = "npm-bundled"; ··· 32975 31517 sha512 = "TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w=="; 32976 31518 }; 32977 31519 }; 32978 - "npm-package-arg-11.0.2" = { 32979 - name = "npm-package-arg"; 32980 - packageName = "npm-package-arg"; 32981 - version = "11.0.2"; 32982 - src = fetchurl { 32983 - url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.2.tgz"; 32984 - sha512 = "IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw=="; 32985 - }; 32986 - }; 32987 31520 "npm-package-arg-11.0.3" = { 32988 31521 name = "npm-package-arg"; 32989 31522 packageName = "npm-package-arg"; ··· 33029 31562 sha512 = "KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ=="; 33030 31563 }; 33031 31564 }; 33032 - "npm-packlist-8.0.2" = { 33033 - name = "npm-packlist"; 33034 - packageName = "npm-packlist"; 33035 - version = "8.0.2"; 33036 - src = fetchurl { 33037 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.2.tgz"; 33038 - sha512 = "shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA=="; 33039 - }; 33040 - }; 33041 31565 "npm-packlist-9.0.0" = { 33042 31566 name = "npm-packlist"; 33043 31567 packageName = "npm-packlist"; ··· 33074 31598 sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg=="; 33075 31599 }; 33076 31600 }; 33077 - "npm-registry-fetch-17.1.0" = { 33078 - name = "npm-registry-fetch"; 33079 - packageName = "npm-registry-fetch"; 33080 - version = "17.1.0"; 33081 - src = fetchurl { 33082 - url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-17.1.0.tgz"; 33083 - sha512 = "5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA=="; 33084 - }; 33085 - }; 33086 31601 "npm-registry-fetch-18.0.2" = { 33087 31602 name = "npm-registry-fetch"; 33088 31603 packageName = "npm-registry-fetch"; ··· 33270 31785 src = fetchurl { 33271 31786 url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz"; 33272 31787 sha512 = "F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ=="; 33273 - }; 33274 - }; 33275 - "nx-20.4.4" = { 33276 - name = "nx"; 33277 - packageName = "nx"; 33278 - version = "20.4.4"; 33279 - src = fetchurl { 33280 - url = "https://registry.npmjs.org/nx/-/nx-20.4.4.tgz"; 33281 - sha512 = "gOR9YFDbDTnOQYy6oqJ60ExgCiJJnz+o1TxrmP6cRmpRVv+5RmuZWQ9fXPtaj4SA69jbNqhSVyopT8oO6I+Gaw=="; 33282 31788 }; 33283 31789 }; 33284 31790 "oas-kit-common-1.0.8" = { ··· 33650 32156 sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; 33651 32157 }; 33652 32158 }; 33653 - "oo-ascii-tree-1.106.0" = { 32159 + "oo-ascii-tree-1.108.0" = { 33654 32160 name = "oo-ascii-tree"; 33655 32161 packageName = "oo-ascii-tree"; 33656 - version = "1.106.0"; 32162 + version = "1.108.0"; 33657 32163 src = fetchurl { 33658 - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.106.0.tgz"; 33659 - sha512 = "0PZkjIiJUW3jEx7durxcri7JciR8VbJpf2K3qiVbGG4x0MTq6Xm/H84GjBI6tamSx/DV1PMFDfwMs3hm8zfOCw=="; 32164 + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.108.0.tgz"; 32165 + sha512 = "aR++8J29Te6L+1pVi9phOvsMVdEj7245vpcJqmrzDOGHpJdZ3zm1hdh44pYfzV1PiDgG3S3fwtlLZilulwVAgg=="; 33660 32166 }; 33661 32167 }; 33662 32168 "open-0.0.2" = { ··· 33839 32345 sha512 = "WfnNWLS3vr8omCm8nKYKaRbapuy6pEbx1O0B+eP5sUf/a++sT9/h8PflqBoHsY9N+YdzUT12T8snXigq13QpJg=="; 33840 32346 }; 33841 32347 }; 33842 - "ora-5.3.0" = { 33843 - name = "ora"; 33844 - packageName = "ora"; 33845 - version = "5.3.0"; 33846 - src = fetchurl { 33847 - url = "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz"; 33848 - sha512 = "zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g=="; 33849 - }; 33850 - }; 33851 32348 "ora-5.4.1" = { 33852 32349 name = "ora"; 33853 32350 packageName = "ora"; ··· 33866 32363 sha512 = "ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ=="; 33867 32364 }; 33868 32365 }; 33869 - "ora-7.0.1" = { 33870 - name = "ora"; 33871 - packageName = "ora"; 33872 - version = "7.0.1"; 33873 - src = fetchurl { 33874 - url = "https://registry.npmjs.org/ora/-/ora-7.0.1.tgz"; 33875 - sha512 = "0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw=="; 33876 - }; 33877 - }; 33878 32366 "ora-8.2.0" = { 33879 32367 name = "ora"; 33880 32368 packageName = "ora"; ··· 33956 32444 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; 33957 32445 }; 33958 32446 }; 33959 - "ovsx-0.8.4" = { 33960 - name = "ovsx"; 33961 - packageName = "ovsx"; 33962 - version = "0.8.4"; 33963 - src = fetchurl { 33964 - url = "https://registry.npmjs.org/ovsx/-/ovsx-0.8.4.tgz"; 33965 - sha512 = "RMtGSVNM4NWSF9uVWCUqaYiA7ID8Vqm/rSk2W37eYVrDLOI/3do2IRY7rQYkvJqb6sS6LAnALODBkD50tIM1kw=="; 33966 - }; 33967 - }; 33968 32447 "own-keys-1.0.1" = { 33969 32448 name = "own-keys"; 33970 32449 packageName = "own-keys"; ··· 33972 32451 src = fetchurl { 33973 32452 url = "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz"; 33974 32453 sha512 = "qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg=="; 33975 - }; 33976 - }; 33977 - "oxc-resolver-1.12.0" = { 33978 - name = "oxc-resolver"; 33979 - packageName = "oxc-resolver"; 33980 - version = "1.12.0"; 33981 - src = fetchurl { 33982 - url = "https://registry.npmjs.org/oxc-resolver/-/oxc-resolver-1.12.0.tgz"; 33983 - sha512 = "YlaCIArvWNKCWZFRrMjhh2l5jK80eXnpYP+bhRc1J/7cW3TiyEY0ngJo73o/5n8hA3+4yLdTmXLNTQ3Ncz50LQ=="; 33984 32454 }; 33985 32455 }; 33986 32456 "p-cancelable-1.1.0" = { ··· 34199 32669 sha512 = "VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA=="; 34200 32670 }; 34201 32671 }; 34202 - "p-map-series-2.1.0" = { 34203 - name = "p-map-series"; 34204 - packageName = "p-map-series"; 34205 - version = "2.1.0"; 34206 - src = fetchurl { 34207 - url = "https://registry.npmjs.org/p-map-series/-/p-map-series-2.1.0.tgz"; 34208 - sha512 = "RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q=="; 34209 - }; 34210 - }; 34211 32672 "p-memoize-7.1.1" = { 34212 32673 name = "p-memoize"; 34213 32674 packageName = "p-memoize"; ··· 34217 32678 sha512 = "DZ/bONJILHkQ721hSr/E9wMz5Am/OTJ9P6LhLFo2Tu+jL8044tgc9LwHO8g4PiaYePnlVVRAJcKmgy8J9MVFrA=="; 34218 32679 }; 34219 32680 }; 34220 - "p-pipe-3.1.0" = { 34221 - name = "p-pipe"; 34222 - packageName = "p-pipe"; 34223 - version = "3.1.0"; 34224 - src = fetchurl { 34225 - url = "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz"; 34226 - sha512 = "08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw=="; 34227 - }; 34228 - }; 34229 - "p-queue-6.6.2" = { 34230 - name = "p-queue"; 34231 - packageName = "p-queue"; 34232 - version = "6.6.2"; 34233 - src = fetchurl { 34234 - url = "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz"; 34235 - sha512 = "RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ=="; 34236 - }; 34237 - }; 34238 - "p-reduce-2.1.0" = { 34239 - name = "p-reduce"; 34240 - packageName = "p-reduce"; 34241 - version = "2.1.0"; 34242 - src = fetchurl { 34243 - url = "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz"; 34244 - sha512 = "2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw=="; 34245 - }; 34246 - }; 34247 32681 "p-reflect-2.1.0" = { 34248 32682 name = "p-reflect"; 34249 32683 packageName = "p-reflect"; ··· 34260 32694 src = fetchurl { 34261 32695 url = "https://registry.npmjs.org/p-settle/-/p-settle-4.1.1.tgz"; 34262 32696 sha512 = "6THGh13mt3gypcNMm0ADqVNCcYa3BK6DWsuJWFCuEKP1rpY+OKGp7gaZwVmLspmic01+fsg/fN57MfvDzZ/PuQ=="; 34263 - }; 34264 - }; 34265 - "p-timeout-3.2.0" = { 34266 - name = "p-timeout"; 34267 - packageName = "p-timeout"; 34268 - version = "3.2.0"; 34269 - src = fetchurl { 34270 - url = "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz"; 34271 - sha512 = "rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg=="; 34272 32697 }; 34273 32698 }; 34274 32699 "p-timeout-5.1.0" = { ··· 34307 32732 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 34308 32733 }; 34309 32734 }; 34310 - "p-waterfall-2.1.1" = { 34311 - name = "p-waterfall"; 34312 - packageName = "p-waterfall"; 34313 - version = "2.1.1"; 34314 - src = fetchurl { 34315 - url = "https://registry.npmjs.org/p-waterfall/-/p-waterfall-2.1.1.tgz"; 34316 - sha512 = "RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw=="; 34317 - }; 34318 - }; 34319 - "pac-proxy-agent-7.1.0" = { 32735 + "pac-proxy-agent-7.2.0" = { 34320 32736 name = "pac-proxy-agent"; 34321 32737 packageName = "pac-proxy-agent"; 34322 - version = "7.1.0"; 32738 + version = "7.2.0"; 34323 32739 src = fetchurl { 34324 - url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.1.0.tgz"; 34325 - sha512 = "Z5FnLVVZSnX7WjBg0mhDtydeRZ1xMcATZThjySQUHqr+0ksP8kqaw23fNKkaaN/Z8gwLUs/W7xdl0I75eP2Xyw=="; 32740 + url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz"; 32741 + sha512 = "TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA=="; 34326 32742 }; 34327 32743 }; 34328 32744 "pac-resolver-7.0.1" = { ··· 34388 32804 sha512 = "UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="; 34389 32805 }; 34390 32806 }; 34391 - "pacote-18.0.6" = { 34392 - name = "pacote"; 34393 - packageName = "pacote"; 34394 - version = "18.0.6"; 34395 - src = fetchurl { 34396 - url = "https://registry.npmjs.org/pacote/-/pacote-18.0.6.tgz"; 34397 - sha512 = "+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A=="; 34398 - }; 34399 - }; 34400 32807 "pacote-20.0.0" = { 34401 32808 name = "pacote"; 34402 32809 packageName = "pacote"; ··· 34494 32901 src = fetchurl { 34495 32902 url = "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz"; 34496 32903 sha512 = "0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA=="; 34497 - }; 34498 - }; 34499 - "parse-conflict-json-3.0.1" = { 34500 - name = "parse-conflict-json"; 34501 - packageName = "parse-conflict-json"; 34502 - version = "3.0.1"; 34503 - src = fetchurl { 34504 - url = "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-3.0.1.tgz"; 34505 - sha512 = "01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw=="; 34506 32904 }; 34507 32905 }; 34508 32906 "parse-english-5.0.0" = { ··· 34676 33074 sha512 = "1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q=="; 34677 33075 }; 34678 33076 }; 34679 - "parse-path-7.0.1" = { 34680 - name = "parse-path"; 34681 - packageName = "parse-path"; 34682 - version = "7.0.1"; 34683 - src = fetchurl { 34684 - url = "https://registry.npmjs.org/parse-path/-/parse-path-7.0.1.tgz"; 34685 - sha512 = "6ReLMptznuuOEzLoGEa+I1oWRSj2Zna5jLWC+l6zlfAI4dbbSaIES29ThzuPkbhNahT65dWzfoZEO6cfJw2Ksg=="; 34686 - }; 34687 - }; 34688 - "parse-semver-1.1.1" = { 34689 - name = "parse-semver"; 34690 - packageName = "parse-semver"; 34691 - version = "1.1.1"; 34692 - src = fetchurl { 34693 - url = "https://registry.npmjs.org/parse-semver/-/parse-semver-1.1.1.tgz"; 34694 - sha512 = "Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ=="; 34695 - }; 34696 - }; 34697 33077 "parse-torrent-11.0.18" = { 34698 33078 name = "parse-torrent"; 34699 33079 packageName = "parse-torrent"; ··· 34739 33119 sha512 = "u2MgLOjZPDDer1oRg1c+H/+54iIQYY5TKgQ5G8KrGLT1Dcwdo7Lj+QfQR123+u8J0AMSFGbQUvsBlSB7uIJcCA=="; 34740 33120 }; 34741 33121 }; 34742 - "parse-url-8.1.0" = { 34743 - name = "parse-url"; 34744 - packageName = "parse-url"; 34745 - version = "8.1.0"; 34746 - src = fetchurl { 34747 - url = "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz"; 34748 - sha512 = "xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w=="; 34749 - }; 34750 - }; 34751 33122 "parse5-3.0.3" = { 34752 33123 name = "parse5"; 34753 33124 packageName = "parse5"; ··· 34791 33162 src = fetchurl { 34792 33163 url = "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz"; 34793 33164 sha512 = "ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g=="; 34794 - }; 34795 - }; 34796 - "parse5-parser-stream-7.1.2" = { 34797 - name = "parse5-parser-stream"; 34798 - packageName = "parse5-parser-stream"; 34799 - version = "7.1.2"; 34800 - src = fetchurl { 34801 - url = "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz"; 34802 - sha512 = "JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow=="; 34803 33165 }; 34804 33166 }; 34805 33167 "parseqs-0.0.5" = { ··· 35396 33758 sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 35397 33759 }; 35398 33760 }; 35399 - "pify-5.0.0" = { 35400 - name = "pify"; 35401 - packageName = "pify"; 35402 - version = "5.0.0"; 35403 - src = fetchurl { 35404 - url = "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz"; 35405 - sha512 = "eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA=="; 35406 - }; 35407 - }; 35408 33761 "pinkie-2.0.4" = { 35409 33762 name = "pinkie"; 35410 33763 packageName = "pinkie"; ··· 35684 34037 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 35685 34038 }; 35686 34039 }; 35687 - "postcss-8.5.2" = { 34040 + "postcss-8.5.3" = { 35688 34041 name = "postcss"; 35689 34042 packageName = "postcss"; 35690 - version = "8.5.2"; 34043 + version = "8.5.3"; 35691 34044 src = fetchurl { 35692 - url = "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz"; 35693 - sha512 = "MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA=="; 34045 + url = "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz"; 34046 + sha512 = "dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="; 35694 34047 }; 35695 34048 }; 35696 34049 "postcss-calc-10.1.1" = { ··· 36215 34568 sha512 = "tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q=="; 36216 34569 }; 36217 34570 }; 36218 - "prettier-3.5.1" = { 34571 + "prettier-3.5.2" = { 36219 34572 name = "prettier"; 36220 34573 packageName = "prettier"; 36221 - version = "3.5.1"; 34574 + version = "3.5.2"; 36222 34575 src = fetchurl { 36223 - url = "https://registry.npmjs.org/prettier/-/prettier-3.5.1.tgz"; 36224 - sha512 = "hPpFQvHwL3Qv5AdRvBFMhnKo4tYxp0ReXiPn2bxkiohEX6mBeBwEpBSQTkD458RaaDKQMYSp4hX4UtfUTA5wDw=="; 34576 + url = "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz"; 34577 + sha512 = "lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg=="; 36225 34578 }; 36226 34579 }; 36227 34580 "prettier-bytes-1.0.4" = { ··· 36240 34593 src = fetchurl { 36241 34594 url = "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz"; 36242 34595 sha512 = "EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw=="; 36243 - }; 36244 - }; 36245 - "pretty-format-29.7.0" = { 36246 - name = "pretty-format"; 36247 - packageName = "pretty-format"; 36248 - version = "29.7.0"; 36249 - src = fetchurl { 36250 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz"; 36251 - sha512 = "Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ=="; 36252 34596 }; 36253 34597 }; 36254 34598 "pretty-hrtime-1.0.3" = { ··· 36375 34719 src = fetchurl { 36376 34720 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 36377 34721 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 36378 - }; 36379 - }; 36380 - "proggy-2.0.0" = { 36381 - name = "proggy"; 36382 - packageName = "proggy"; 36383 - version = "2.0.0"; 36384 - src = fetchurl { 36385 - url = "https://registry.npmjs.org/proggy/-/proggy-2.0.0.tgz"; 36386 - sha512 = "69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A=="; 36387 34722 }; 36388 34723 }; 36389 34724 "progress-1.1.8" = { ··· 36431 34766 sha512 = "rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg=="; 36432 34767 }; 36433 34768 }; 36434 - "promise-all-reject-late-1.0.1" = { 36435 - name = "promise-all-reject-late"; 36436 - packageName = "promise-all-reject-late"; 36437 - version = "1.0.1"; 36438 - src = fetchurl { 36439 - url = "https://registry.npmjs.org/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz"; 36440 - sha512 = "vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw=="; 36441 - }; 36442 - }; 36443 - "promise-call-limit-3.0.2" = { 36444 - name = "promise-call-limit"; 36445 - packageName = "promise-call-limit"; 36446 - version = "3.0.2"; 36447 - src = fetchurl { 36448 - url = "https://registry.npmjs.org/promise-call-limit/-/promise-call-limit-3.0.2.tgz"; 36449 - sha512 = "mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw=="; 36450 - }; 36451 - }; 36452 34769 "promise-inflight-1.0.1" = { 36453 34770 name = "promise-inflight"; 36454 34771 packageName = "promise-inflight"; ··· 36494 34811 sha512 = "NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="; 36495 34812 }; 36496 34813 }; 36497 - "promzard-1.0.2" = { 36498 - name = "promzard"; 36499 - packageName = "promzard"; 36500 - version = "1.0.2"; 36501 - src = fetchurl { 36502 - url = "https://registry.npmjs.org/promzard/-/promzard-1.0.2.tgz"; 36503 - sha512 = "2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ=="; 36504 - }; 36505 - }; 36506 34814 "proper-lockfile-4.1.2" = { 36507 34815 name = "proper-lockfile"; 36508 34816 packageName = "proper-lockfile"; ··· 36521 34829 sha512 = "PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig=="; 36522 34830 }; 36523 34831 }; 34832 + "property-information-7.0.0" = { 34833 + name = "property-information"; 34834 + packageName = "property-information"; 34835 + version = "7.0.0"; 34836 + src = fetchurl { 34837 + url = "https://registry.npmjs.org/property-information/-/property-information-7.0.0.tgz"; 34838 + sha512 = "7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg=="; 34839 + }; 34840 + }; 36524 34841 "proto-list-1.2.4" = { 36525 34842 name = "proto-list"; 36526 34843 packageName = "proto-list"; ··· 36537 34854 src = fetchurl { 36538 34855 url = "https://registry.npmjs.org/protobufjs/-/protobufjs-7.4.0.tgz"; 36539 34856 sha512 = "mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw=="; 36540 - }; 36541 - }; 36542 - "protocols-2.0.2" = { 36543 - name = "protocols"; 36544 - packageName = "protocols"; 36545 - version = "2.0.2"; 36546 - src = fetchurl { 36547 - url = "https://registry.npmjs.org/protocols/-/protocols-2.0.2.tgz"; 36548 - sha512 = "hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ=="; 36549 34857 }; 36550 34858 }; 36551 34859 "proxy-addr-2.0.7" = { ··· 37232 35540 sha512 = "nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew=="; 37233 35541 }; 37234 35542 }; 37235 - "react-is-18.3.1" = { 37236 - name = "react-is"; 37237 - packageName = "react-is"; 37238 - version = "18.3.1"; 37239 - src = fetchurl { 37240 - url = "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz"; 37241 - sha512 = "/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="; 37242 - }; 37243 - }; 37244 35543 "react-reconciler-0.26.2" = { 37245 35544 name = "react-reconciler"; 37246 35545 packageName = "react-reconciler"; ··· 37277 35576 sha512 = "rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ=="; 37278 35577 }; 37279 35578 }; 37280 - "read-3.0.1" = { 37281 - name = "read"; 37282 - packageName = "read"; 37283 - version = "3.0.1"; 37284 - src = fetchurl { 37285 - url = "https://registry.npmjs.org/read/-/read-3.0.1.tgz"; 37286 - sha512 = "SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw=="; 37287 - }; 37288 - }; 37289 35579 "read-all-stream-3.1.0" = { 37290 35580 name = "read-all-stream"; 37291 35581 packageName = "read-all-stream"; ··· 37320 35610 src = fetchurl { 37321 35611 url = "https://registry.npmjs.org/read-chunk/-/read-chunk-3.2.0.tgz"; 37322 35612 sha512 = "CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ=="; 37323 - }; 37324 - }; 37325 - "read-cmd-shim-4.0.0" = { 37326 - name = "read-cmd-shim"; 37327 - packageName = "read-cmd-shim"; 37328 - version = "4.0.0"; 37329 - src = fetchurl { 37330 - url = "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz"; 37331 - sha512 = "yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q=="; 37332 35613 }; 37333 35614 }; 37334 35615 "read-only-stream-2.0.0" = { ··· 37394 35675 sha512 = "eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA=="; 37395 35676 }; 37396 35677 }; 37397 - "read-pkg-3.0.0" = { 37398 - name = "read-pkg"; 37399 - packageName = "read-pkg"; 37400 - version = "3.0.0"; 37401 - src = fetchurl { 37402 - url = "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz"; 37403 - sha512 = "BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA=="; 37404 - }; 37405 - }; 37406 35678 "read-pkg-5.2.0" = { 37407 35679 name = "read-pkg"; 37408 35680 packageName = "read-pkg"; ··· 37455 35727 src = fetchurl { 37456 35728 url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; 37457 35729 sha512 = "1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w=="; 37458 - }; 37459 - }; 37460 - "read-pkg-up-3.0.0" = { 37461 - name = "read-pkg-up"; 37462 - packageName = "read-pkg-up"; 37463 - version = "3.0.0"; 37464 - src = fetchurl { 37465 - url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz"; 37466 - sha512 = "YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw=="; 37467 35730 }; 37468 35731 }; 37469 35732 "read-pkg-up-7.0.1" = { ··· 38888 37151 sha512 = "/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A=="; 38889 37152 }; 38890 37153 }; 38891 - "resolve-package-1.0.1" = { 38892 - name = "resolve-package"; 38893 - packageName = "resolve-package"; 38894 - version = "1.0.1"; 38895 - src = fetchurl { 38896 - url = "https://registry.npmjs.org/resolve-package/-/resolve-package-1.0.1.tgz"; 38897 - sha512 = "rzB7NnQpOkPHBWFPP3prUMqOP6yg3HkRGgcvR+lDyvyHoY3fZLFLYDkPXh78SPVBAE6VTCk/V+j8we4djg6o4g=="; 38898 - }; 38899 - }; 38900 37154 "resolve-pkg-maps-1.0.0" = { 38901 37155 name = "resolve-pkg-maps"; 38902 37156 packageName = "resolve-pkg-maps"; ··· 38913 37167 src = fetchurl { 38914 37168 url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"; 38915 37169 sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg=="; 38916 - }; 38917 - }; 38918 - "resolve.exports-2.0.3" = { 38919 - name = "resolve.exports"; 38920 - packageName = "resolve.exports"; 38921 - version = "2.0.3"; 38922 - src = fetchurl { 38923 - url = "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz"; 38924 - sha512 = "OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A=="; 38925 37170 }; 38926 37171 }; 38927 37172 "resp-modifier-6.0.2" = { ··· 39158 37403 sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 39159 37404 }; 39160 37405 }; 39161 - "rimraf-4.4.1" = { 39162 - name = "rimraf"; 39163 - packageName = "rimraf"; 39164 - version = "4.4.1"; 39165 - src = fetchurl { 39166 - url = "https://registry.npmjs.org/rimraf/-/rimraf-4.4.1.tgz"; 39167 - sha512 = "Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og=="; 39168 - }; 39169 - }; 39170 37406 "rimraf-5.0.10" = { 39171 37407 name = "rimraf"; 39172 37408 packageName = "rimraf"; ··· 39203 37439 sha512 = "IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg=="; 39204 37440 }; 39205 37441 }; 39206 - "rollup-4.34.7" = { 37442 + "rollup-4.34.8" = { 39207 37443 name = "rollup"; 39208 37444 packageName = "rollup"; 39209 - version = "4.34.7"; 37445 + version = "4.34.8"; 39210 37446 src = fetchurl { 39211 - url = "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz"; 39212 - sha512 = "8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ=="; 37447 + url = "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz"; 37448 + sha512 = "489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ=="; 39213 37449 }; 39214 37450 }; 39215 37451 "round-to-6.0.0" = { ··· 39390 37626 src = fetchurl { 39391 37627 url = "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz"; 39392 37628 sha512 = "AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg=="; 37629 + }; 37630 + }; 37631 + "rxjs-7.8.2" = { 37632 + name = "rxjs"; 37633 + packageName = "rxjs"; 37634 + version = "7.8.2"; 37635 + src = fetchurl { 37636 + url = "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz"; 37637 + sha512 = "dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA=="; 39393 37638 }; 39394 37639 }; 39395 37640 "s3-stream-upload-2.0.2" = { ··· 40328 38573 sha512 = "bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="; 40329 38574 }; 40330 38575 }; 40331 - "sigstore-2.3.1" = { 40332 - name = "sigstore"; 40333 - packageName = "sigstore"; 40334 - version = "2.3.1"; 40335 - src = fetchurl { 40336 - url = "https://registry.npmjs.org/sigstore/-/sigstore-2.3.1.tgz"; 40337 - sha512 = "8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ=="; 40338 - }; 40339 - }; 40340 38576 "sigstore-3.1.0" = { 40341 38577 name = "sigstore"; 40342 38578 packageName = "sigstore"; ··· 40877 39113 sha512 = "s8cs2bcsQCzo/P2T/uoU6Js4dS/jnX8+4xunziNoq9qmSpZNCrRIAIvp4avsz0ST18HycV4z/7myJ7jsHWB2XQ=="; 40878 39114 }; 40879 39115 }; 40880 - "sort-keys-2.0.0" = { 40881 - name = "sort-keys"; 40882 - packageName = "sort-keys"; 40883 - version = "2.0.0"; 40884 - src = fetchurl { 40885 - url = "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz"; 40886 - sha512 = "/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg=="; 40887 - }; 40888 - }; 40889 39116 "sort-keys-4.2.0" = { 40890 39117 name = "sort-keys"; 40891 39118 packageName = "sort-keys"; ··· 41334 39561 src = fetchurl { 41335 39562 url = "https://registry.npmjs.org/sshpk-agent/-/sshpk-agent-1.2.1.tgz"; 41336 39563 sha512 = "qszxcSCziI1IEv7SbVc51dqmyck1f520I92duwBWGRFtPQXz52ErYr6cAPEVWa4EkWNI4fMbPgagi2/oNpuuRg=="; 41337 - }; 41338 - }; 41339 - "ssri-10.0.6" = { 41340 - name = "ssri"; 41341 - packageName = "ssri"; 41342 - version = "10.0.6"; 41343 - src = fetchurl { 41344 - url = "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz"; 41345 - sha512 = "MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ=="; 41346 39564 }; 41347 39565 }; 41348 39566 "ssri-12.0.0" = { ··· 42146 40364 sha512 = "k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg=="; 42147 40365 }; 42148 40366 }; 42149 - "strnum-1.0.5" = { 40367 + "strnum-1.1.1" = { 42150 40368 name = "strnum"; 42151 40369 packageName = "strnum"; 42152 - version = "1.0.5"; 40370 + version = "1.1.1"; 42153 40371 src = fetchurl { 42154 - url = "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz"; 42155 - sha512 = "J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA=="; 42156 - }; 42157 - }; 42158 - "strong-log-transformer-2.1.0" = { 42159 - name = "strong-log-transformer"; 42160 - packageName = "strong-log-transformer"; 42161 - version = "2.1.0"; 42162 - src = fetchurl { 42163 - url = "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz"; 42164 - sha512 = "B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA=="; 40372 + url = "https://registry.npmjs.org/strnum/-/strnum-1.1.1.tgz"; 40373 + sha512 = "O7aCHfYCamLCctjAiaucmE+fHf2DYHkus2OKCn4Wv03sykfFtgeECn505X6K4mPl8CRNd/qurC9guq+ynoN4pw=="; 42165 40374 }; 42166 40375 }; 42167 40376 "strtok3-6.3.0" = { ··· 42326 40535 sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 42327 40536 }; 42328 40537 }; 42329 - "svelte-5.20.1" = { 40538 + "svelte-5.20.4" = { 42330 40539 name = "svelte"; 42331 40540 packageName = "svelte"; 42332 - version = "5.20.1"; 40541 + version = "5.20.4"; 42333 40542 src = fetchurl { 42334 - url = "https://registry.npmjs.org/svelte/-/svelte-5.20.1.tgz"; 42335 - sha512 = "aCARru2WTdzJl55Ws8SK27+kvQwd8tijl4kY7NoDUXUHtTHhxMa8Lf6QNZKmU7cuPu3jjFloDO1j5HgYJNIIWg=="; 40543 + url = "https://registry.npmjs.org/svelte/-/svelte-5.20.4.tgz"; 40544 + sha512 = "2Mo/AfObaw9zuD0u1JJ7sOVzRCGcpETEyDkLbtkcctWpCMCIyT0iz83xD8JT29SR7O4SgswuPRIDYReYF/607A=="; 42336 40545 }; 42337 40546 }; 42338 40547 "sver-1.8.4" = { ··· 42479 40688 sha512 = "zTvf0mcggrGeTe/2jJ6ECkJHAQPIYEwDoqsiqBjI24mvRmQbInK5jq33fyypaCBxX08hMkfmdOqj6haT33EqWw=="; 42480 40689 }; 42481 40690 }; 42482 - "tailwindcss-4.0.6" = { 40691 + "tailwindcss-4.0.8" = { 42483 40692 name = "tailwindcss"; 42484 40693 packageName = "tailwindcss"; 42485 - version = "4.0.6"; 40694 + version = "4.0.8"; 42486 40695 src = fetchurl { 42487 - url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.6.tgz"; 42488 - sha512 = "mysewHYJKaXgNOW6pp5xon/emCsfAMnO8WMaGKZZ35fomnR/T5gYnRg2/yRTTrtXiEl1tiVkeRt0eMO6HxEZqw=="; 40696 + url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.8.tgz"; 40697 + sha512 = "Me7N5CKR+D2A1xdWA5t5+kjjT7bwnxZOE6/yDI/ixJdJokszsn2n++mdU5yJwrsTpqFX2B9ZNMBJDwcqk9C9lw=="; 42489 40698 }; 42490 40699 }; 42491 40700 "tapable-0.2.9" = { ··· 42515 40724 sha512 = "FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA=="; 42516 40725 }; 42517 40726 }; 42518 - "tar-4.4.18" = { 42519 - name = "tar"; 42520 - packageName = "tar"; 42521 - version = "4.4.18"; 42522 - src = fetchurl { 42523 - url = "https://registry.npmjs.org/tar/-/tar-4.4.18.tgz"; 42524 - sha512 = "ZuOtqqmkV9RE1+4odd+MhBpibmCxNP6PJhH/h2OqNuotTX7/XHPZQJv2pKvWMplFH9SIZZhitehh6vBH6LO8Pg=="; 42525 - }; 42526 - }; 42527 40727 "tar-4.4.19" = { 42528 40728 name = "tar"; 42529 40729 packageName = "tar"; ··· 42668 40868 sha512 = "yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA=="; 42669 40869 }; 42670 40870 }; 42671 - "temp-dir-1.0.0" = { 42672 - name = "temp-dir"; 42673 - packageName = "temp-dir"; 42674 - version = "1.0.0"; 42675 - src = fetchurl { 42676 - url = "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz"; 42677 - sha512 = "xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ=="; 42678 - }; 42679 - }; 42680 40871 "temp-dir-3.0.0" = { 42681 40872 name = "temp-dir"; 42682 40873 packageName = "temp-dir"; ··· 42776 40967 sha512 = "/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA=="; 42777 40968 }; 42778 40969 }; 42779 - "text-extensions-1.9.0" = { 42780 - name = "text-extensions"; 42781 - packageName = "text-extensions"; 42782 - version = "1.9.0"; 42783 - src = fetchurl { 42784 - url = "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz"; 42785 - sha512 = "wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ=="; 42786 - }; 42787 - }; 42788 40970 "text-extensions-2.4.0" = { 42789 40971 name = "text-extensions"; 42790 40972 packageName = "text-extensions"; ··· 43046 41228 sha512 = "KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="; 43047 41229 }; 43048 41230 }; 43049 - "tinyglobby-0.2.10" = { 41231 + "tinyglobby-0.2.12" = { 43050 41232 name = "tinyglobby"; 43051 41233 packageName = "tinyglobby"; 43052 - version = "0.2.10"; 41234 + version = "0.2.12"; 43053 41235 src = fetchurl { 43054 - url = "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.10.tgz"; 43055 - sha512 = "Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew=="; 41236 + url = "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz"; 41237 + sha512 = "qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww=="; 43056 41238 }; 43057 41239 }; 43058 41240 "tkwidgets-0.5.27" = { ··· 43406 41588 sha512 = "BA/cp8KBvbBDkunxIuoBqzz3pYHL7J8QdzbKohK09urOpHFYqEe/xWGKkECEQG+LvfREd1GNqH3643GYFX8wSQ=="; 43407 41589 }; 43408 41590 }; 43409 - "treeverse-3.0.0" = { 43410 - name = "treeverse"; 43411 - packageName = "treeverse"; 43412 - version = "3.0.0"; 43413 - src = fetchurl { 43414 - url = "https://registry.npmjs.org/treeverse/-/treeverse-3.0.0.tgz"; 43415 - sha512 = "gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ=="; 43416 - }; 43417 - }; 43418 41591 "trim-lines-3.0.1" = { 43419 41592 name = "trim-lines"; 43420 41593 packageName = "trim-lines"; ··· 43496 41669 sha512 = "0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="; 43497 41670 }; 43498 41671 }; 43499 - "ts-api-utils-1.4.3" = { 43500 - name = "ts-api-utils"; 43501 - packageName = "ts-api-utils"; 43502 - version = "1.4.3"; 43503 - src = fetchurl { 43504 - url = "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz"; 43505 - sha512 = "i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw=="; 43506 - }; 43507 - }; 43508 41672 "ts-morph-12.0.0" = { 43509 41673 name = "ts-morph"; 43510 41674 packageName = "ts-morph"; ··· 43550 41714 sha512 = "ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg=="; 43551 41715 }; 43552 41716 }; 43553 - "tsconfig-paths-4.2.0" = { 43554 - name = "tsconfig-paths"; 43555 - packageName = "tsconfig-paths"; 43556 - version = "4.2.0"; 43557 - src = fetchurl { 43558 - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz"; 43559 - sha512 = "NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg=="; 43560 - }; 43561 - }; 43562 41717 "tslib-1.14.1" = { 43563 41718 name = "tslib"; 43564 41719 packageName = "tslib"; ··· 43604 41759 sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; 43605 41760 }; 43606 41761 }; 43607 - "tsx-4.19.2" = { 41762 + "tsx-4.19.3" = { 43608 41763 name = "tsx"; 43609 41764 packageName = "tsx"; 43610 - version = "4.19.2"; 41765 + version = "4.19.3"; 43611 41766 src = fetchurl { 43612 - url = "https://registry.npmjs.org/tsx/-/tsx-4.19.2.tgz"; 43613 - sha512 = "pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g=="; 41767 + url = "https://registry.npmjs.org/tsx/-/tsx-4.19.3.tgz"; 41768 + sha512 = "4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ=="; 43614 41769 }; 43615 41770 }; 43616 41771 "tty-browserify-0.0.1" = { ··· 43622 41777 sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="; 43623 41778 }; 43624 41779 }; 43625 - "tuf-js-2.2.1" = { 43626 - name = "tuf-js"; 43627 - packageName = "tuf-js"; 43628 - version = "2.2.1"; 43629 - src = fetchurl { 43630 - url = "https://registry.npmjs.org/tuf-js/-/tuf-js-2.2.1.tgz"; 43631 - sha512 = "GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA=="; 43632 - }; 43633 - }; 43634 41780 "tuf-js-3.0.1" = { 43635 41781 name = "tuf-js"; 43636 41782 packageName = "tuf-js"; ··· 43647 41793 src = fetchurl { 43648 41794 url = "https://registry.npmjs.org/tumblr/-/tumblr-0.4.1.tgz"; 43649 41795 sha512 = "MB/C4h4n43kq8SpHtwIL/DlUXJfTWR7lG9AUJVJsLeW38q0mTXHoHtlnAqt27CsLFZC864i9P508pRXW3fjkJA=="; 43650 - }; 43651 - }; 43652 - "tunnel-0.0.6" = { 43653 - name = "tunnel"; 43654 - packageName = "tunnel"; 43655 - version = "0.0.6"; 43656 - src = fetchurl { 43657 - url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz"; 43658 - sha512 = "1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg=="; 43659 41796 }; 43660 41797 }; 43661 41798 "tunnel-agent-0.4.3" = { ··· 43775 41912 sha512 = "t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="; 43776 41913 }; 43777 41914 }; 43778 - "type-fest-0.4.1" = { 43779 - name = "type-fest"; 43780 - packageName = "type-fest"; 43781 - version = "0.4.1"; 43782 - src = fetchurl { 43783 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.4.1.tgz"; 43784 - sha512 = "IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw=="; 43785 - }; 43786 - }; 43787 41915 "type-fest-0.6.0" = { 43788 41916 name = "type-fest"; 43789 41917 packageName = "type-fest"; ··· 43829 41957 sha512 = "tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g=="; 43830 41958 }; 43831 41959 }; 43832 - "type-fest-4.34.1" = { 41960 + "type-fest-4.35.0" = { 43833 41961 name = "type-fest"; 43834 41962 packageName = "type-fest"; 43835 - version = "4.34.1"; 41963 + version = "4.35.0"; 43836 41964 src = fetchurl { 43837 - url = "https://registry.npmjs.org/type-fest/-/type-fest-4.34.1.tgz"; 43838 - sha512 = "6kSc32kT0rbwxD6QL1CYe8IqdzN/J/ILMrNK+HMQCKH3insCDRY/3ITb0vcBss0a3t72fzh2YSzj8ko1HgwT3g=="; 41965 + url = "https://registry.npmjs.org/type-fest/-/type-fest-4.35.0.tgz"; 41966 + sha512 = "2/AwEFQDFEy30iOLjrvHDIH7e4HEWH+f1Yl1bI5XMqzuoCUqwYCdxachgsgv0og/JdVZUhbfjcJAoHj5L1753A=="; 43839 41967 }; 43840 41968 }; 43841 41969 "type-is-1.6.18" = { ··· 43883 42011 sha512 = "3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="; 43884 42012 }; 43885 42013 }; 43886 - "typed-rest-client-1.8.11" = { 43887 - name = "typed-rest-client"; 43888 - packageName = "typed-rest-client"; 43889 - version = "1.8.11"; 43890 - src = fetchurl { 43891 - url = "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.8.11.tgz"; 43892 - sha512 = "5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA=="; 43893 - }; 43894 - }; 43895 42014 "typedarray-0.0.6" = { 43896 42015 name = "typedarray"; 43897 42016 packageName = "typedarray"; ··· 43973 42092 sha512 = "84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw=="; 43974 42093 }; 43975 42094 }; 43976 - "typescript-5.8.0-dev.20250216" = { 42095 + "typescript-5.9.0-dev.20250224" = { 43977 42096 name = "typescript"; 43978 42097 packageName = "typescript"; 43979 - version = "5.8.0-dev.20250216"; 42098 + version = "5.9.0-dev.20250224"; 43980 42099 src = fetchurl { 43981 - url = "https://registry.npmjs.org/typescript/-/typescript-5.8.0-dev.20250216.tgz"; 43982 - sha512 = "yk0nq9GDx1NVK8gi8NgJULq3NJxkepX/B8ZQtopaLM0cUbjBhZLcXeHUs+LBv8AUUGq9alZGPQuC/W/IG/yoXA=="; 42100 + url = "https://registry.npmjs.org/typescript/-/typescript-5.9.0-dev.20250224.tgz"; 42101 + sha512 = "hE9YCxxyOJDBJhEo6w3veHldQw5ry0nhuTzaPU2UZe37YsBIC5kaOVdzeA+IUh4cgYWKe60B1vuC4GN8Q4a0SA=="; 43983 42102 }; 43984 42103 }; 43985 42104 "typical-2.6.1" = { ··· 44259 42378 src = fetchurl { 44260 42379 url = "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz"; 44261 42380 sha512 = "72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g=="; 44262 - }; 44263 - }; 44264 - "undici-6.21.1" = { 44265 - name = "undici"; 44266 - packageName = "undici"; 44267 - version = "6.21.1"; 44268 - src = fetchurl { 44269 - url = "https://registry.npmjs.org/undici/-/undici-6.21.1.tgz"; 44270 - sha512 = "q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ=="; 44271 42381 }; 44272 42382 }; 44273 42383 "undici-types-5.26.5" = { ··· 44477 42587 sha512 = "ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A=="; 44478 42588 }; 44479 42589 }; 44480 - "unique-filename-3.0.0" = { 44481 - name = "unique-filename"; 44482 - packageName = "unique-filename"; 44483 - version = "3.0.0"; 44484 - src = fetchurl { 44485 - url = "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz"; 44486 - sha512 = "afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g=="; 44487 - }; 44488 - }; 44489 42590 "unique-filename-4.0.0" = { 44490 42591 name = "unique-filename"; 44491 42592 packageName = "unique-filename"; ··· 44511 42612 src = fetchurl { 44512 42613 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz"; 44513 42614 sha512 = "8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w=="; 44514 - }; 44515 - }; 44516 - "unique-slug-4.0.0" = { 44517 - name = "unique-slug"; 44518 - packageName = "unique-slug"; 44519 - version = "4.0.0"; 44520 - src = fetchurl { 44521 - url = "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz"; 44522 - sha512 = "WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ=="; 44523 42615 }; 44524 42616 }; 44525 42617 "unique-slug-5.0.0" = { ··· 44900 42992 sha512 = "L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw=="; 44901 42993 }; 44902 42994 }; 44903 - "universal-user-agent-6.0.1" = { 44904 - name = "universal-user-agent"; 44905 - packageName = "universal-user-agent"; 44906 - version = "6.0.1"; 44907 - src = fetchurl { 44908 - url = "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz"; 44909 - sha512 = "yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ=="; 44910 - }; 44911 - }; 44912 42995 "universalify-0.1.2" = { 44913 42996 name = "universalify"; 44914 42997 packageName = "universalify"; ··· 45033 43116 src = fetchurl { 45034 43117 url = "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz"; 45035 43118 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 45036 - }; 45037 - }; 45038 - "upath-2.0.1" = { 45039 - name = "upath"; 45040 - packageName = "upath"; 45041 - version = "2.0.1"; 45042 - src = fetchurl { 45043 - url = "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz"; 45044 - sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 45045 43119 }; 45046 43120 }; 45047 43121 "update-browserslist-db-1.1.2" = { ··· 45665 43739 sha512 = "Hq72JaTpcTFdWiNA4Y22Amej2GH3BFmBaKPPlDZ4/oC8HNn2ISHLkFrJU4Ds8R3jcUi7oo5Y9jcMHKjES+N9wQ=="; 45666 43740 }; 45667 43741 }; 45668 - "vega-5.31.0" = { 43742 + "vega-5.32.0" = { 45669 43743 name = "vega"; 45670 43744 packageName = "vega"; 45671 - version = "5.31.0"; 43745 + version = "5.32.0"; 45672 43746 src = fetchurl { 45673 - url = "https://registry.npmjs.org/vega/-/vega-5.31.0.tgz"; 45674 - sha512 = "ZZ+8kcKqCeRi7pBdS7kfBpfhV2gDpa6N950GKGWFw0QL4fH319A9o8FAJzdY8zK0WW0PKrivZSoRmK9fWUxnhg=="; 43747 + url = "https://registry.npmjs.org/vega/-/vega-5.32.0.tgz"; 43748 + sha512 = "jANt/5+SpV7b7owB5u8+M1TZ/TrF1fK6WlcvKDW38tH3Gb6hM1nzIhv10E41w3GBmwF29BU/qH2ruNkaYKjI5g=="; 45675 43749 }; 45676 43750 }; 45677 43751 "vega-canvas-1.2.7" = { ··· 45728 43802 sha512 = "fFeDTh4UtOxlZWL54jf1ZqJHinyerWq/ROiqrQxqLkNJRJ86RmxYTgXwt65UoZ/l4VUv9eAd2qoJeDEf610Umw=="; 45729 43803 }; 45730 43804 }; 43805 + "vega-expression-5.2.0" = { 43806 + name = "vega-expression"; 43807 + packageName = "vega-expression"; 43808 + version = "5.2.0"; 43809 + src = fetchurl { 43810 + url = "https://registry.npmjs.org/vega-expression/-/vega-expression-5.2.0.tgz"; 43811 + sha512 = "WRMa4ny3iZIVAzDlBh3ipY2QUuLk2hnJJbfbncPgvTF7BUgbIbKq947z+JicWksYbokl8n1JHXJoqi3XvpG0Zw=="; 43812 + }; 43813 + }; 45731 43814 "vega-force-4.2.2" = { 45732 43815 name = "vega-force"; 45733 43816 packageName = "vega-force"; ··· 45746 43829 sha512 = "wQhw7KR46wKJAip28FF/CicW+oiJaPAwMKdrxlnTA0Nv8Bf7bloRlc+O3kON4b4H1iALLr9KgRcYTOeXNs2MOA=="; 45747 43830 }; 45748 43831 }; 45749 - "vega-functions-5.16.0" = { 43832 + "vega-functions-5.17.0" = { 45750 43833 name = "vega-functions"; 45751 43834 packageName = "vega-functions"; 45752 - version = "5.16.0"; 43835 + version = "5.17.0"; 45753 43836 src = fetchurl { 45754 - url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.16.0.tgz"; 45755 - sha512 = "uXjSDbbGcFLCQTZZI+OiZK0U+2dLWC26ONdO0g9RhPzXXzR3niPcFOA0bc/OeiHdTexqsLjOiXxR/K2BckB8gQ=="; 43837 + url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.17.0.tgz"; 43838 + sha512 = "EoGvdCtv1Y4M/hLy83Kf0HTs4qInUfrBoanrnhbguzRl00rx7orjcv+bNZFHbCe4HkfVpbOnTrYmz3K2ivaOLw=="; 45756 43839 }; 45757 43840 }; 45758 43841 "vega-geo-4.4.3" = { ··· 45791 43874 sha512 = "dUfIpxTLF2magoMaur+jXGvwMxjtdlDZaIS8lFj6N7IhUST6nIvBzuUlRM+zLYepI5GHtCLOnqdKU4XV0NggCA=="; 45792 43875 }; 45793 43876 }; 45794 - "vega-parser-6.4.1" = { 43877 + "vega-parser-6.5.0" = { 45795 43878 name = "vega-parser"; 45796 43879 packageName = "vega-parser"; 45797 - version = "6.4.1"; 43880 + version = "6.5.0"; 45798 43881 src = fetchurl { 45799 - url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.4.1.tgz"; 45800 - sha512 = "ZjF5aQfRe3yD5e2zYZcWWkUn9zGzUonMIirWTp3S3UBCujz+aT0+Ls6wbHdAH6hCPj3PVVkSWuuLkGEIUpWqyQ=="; 43882 + url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.5.0.tgz"; 43883 + sha512 = "dPxFKn6IlDyWi6CgHGGv8htSPBAyLHWlJNNGD17eMXh+Kjn4hupSNOIboRcYb8gL5HYt1tYwS6oYZXK84Bc4tg=="; 45801 43884 }; 45802 43885 }; 45803 43886 "vega-projection-1.6.2" = { ··· 45845 43928 sha512 = "LFY9+sLIxRfdDI9ZTKjLoijMkIAzPLBWHpPkwv4NPYgdyx+0qFmv+puBpAUGUY9VZqAZ736Uj5NJY9zw+/M3yQ=="; 45846 43929 }; 45847 43930 }; 45848 - "vega-selections-5.5.0" = { 43931 + "vega-selections-5.6.0" = { 45849 43932 name = "vega-selections"; 45850 43933 packageName = "vega-selections"; 45851 - version = "5.5.0"; 43934 + version = "5.6.0"; 45852 43935 src = fetchurl { 45853 - url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.5.0.tgz"; 45854 - sha512 = "TkpklUg9yhKjnTEs3Ls0eSI2aMJ8+tRicrFAKlDyrEBNMSSEaMsSJ84Ro5xpRra+GMBkGXFYgwTPC7y3tj20Gg=="; 43936 + url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.6.0.tgz"; 43937 + sha512 = "UE2w78rUUbaV3Ph+vQbQDwh8eywIJYRxBiZdxEG/Tr/KtFMLdy2BDgNZuuDO1Nv8jImPJwONmqjNhNDYwM0VJQ=="; 45855 43938 }; 45856 43939 }; 45857 43940 "vega-statistics-1.9.0" = { ··· 45881 43964 sha512 = "Qxo+xeEEftY1jYyKgzOGc9NuW4/MqGm1YPZ5WrL9eXg2G0410Ne+xL/MFIjHF4hRX+3mgFF4Io2hPpfy/thjLg=="; 45882 43965 }; 45883 43966 }; 45884 - "vega-typings-1.4.0" = { 43967 + "vega-typings-1.5.0" = { 45885 43968 name = "vega-typings"; 45886 43969 packageName = "vega-typings"; 45887 - version = "1.4.0"; 43970 + version = "1.5.0"; 45888 43971 src = fetchurl { 45889 - url = "https://registry.npmjs.org/vega-typings/-/vega-typings-1.4.0.tgz"; 45890 - sha512 = "UTXjuasq0Q8uMuzz/qow4moVHFJ5atYdQu871QZJ/zgWY3Po4du3dIGBVQN4fYEv6seKhDvxpEFke2rqx81Wqw=="; 43972 + url = "https://registry.npmjs.org/vega-typings/-/vega-typings-1.5.0.tgz"; 43973 + sha512 = "tcZ2HwmiQEOXIGyBMP8sdCnoFoVqHn4KQ4H0MQiHwzFU1hb1EXURhfc+Uamthewk4h/9BICtAM3AFQMjBGpjQA=="; 45891 43974 }; 45892 43975 }; 45893 43976 "vega-util-1.17.3" = { ··· 45899 43982 sha512 = "nSNpZLUrRvFo46M5OK4O6x6f08WD1yOcEzHNlqivF+sDLSsVpstaF6fdJYwrbf/debFi2L9Tkp4gZQtssup9iQ=="; 45900 43983 }; 45901 43984 }; 45902 - "vega-view-5.14.0" = { 43985 + "vega-view-5.15.0" = { 45903 43986 name = "vega-view"; 45904 43987 packageName = "vega-view"; 45905 - version = "5.14.0"; 43988 + version = "5.15.0"; 45906 43989 src = fetchurl { 45907 - url = "https://registry.npmjs.org/vega-view/-/vega-view-5.14.0.tgz"; 45908 - sha512 = "gg2ukCviKG6Nofmr0Y6hFbr9romRMzmXHe3ljNJ5QyRnkwmQ7HbTvXOyS9cZZ0VtuhSRw+uiyd0Pg+nep0IhwA=="; 43990 + url = "https://registry.npmjs.org/vega-view/-/vega-view-5.15.0.tgz"; 43991 + sha512 = "bm8STHPsI8BjVu2gYlWU8KEVOA2JyTzdtb9cJj8NW6HpN72UxTYsg5y22u9vfcLYjzjmolrlr0756VXR0uI1Cg=="; 45909 43992 }; 45910 43993 }; 45911 43994 "vega-view-transforms-4.6.1" = { ··· 46284 44367 src = fetchurl { 46285 44368 url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.1.tgz"; 46286 44369 sha512 = "kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ=="; 46287 - }; 46288 - }; 46289 - "vscode-languageclient-8.1.0" = { 46290 - name = "vscode-languageclient"; 46291 - packageName = "vscode-languageclient"; 46292 - version = "8.1.0"; 46293 - src = fetchurl { 46294 - url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-8.1.0.tgz"; 46295 - sha512 = "GL4QdbYUF/XxQlAsvYWZRV3V34kOkpRlvV60/72ghHfsYFnS/v2MANZ9P6sHmxFcZKOse8O+L9G7Czg0NUWing=="; 46296 44370 }; 46297 44371 }; 46298 44372 "vscode-languageserver-5.2.1" = { ··· 47348 45422 sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 47349 45423 }; 47350 45424 }; 47351 - "write-file-atomic-5.0.1" = { 47352 - name = "write-file-atomic"; 47353 - packageName = "write-file-atomic"; 47354 - version = "5.0.1"; 47355 - src = fetchurl { 47356 - url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz"; 47357 - sha512 = "+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw=="; 47358 - }; 47359 - }; 47360 - "write-json-file-3.2.0" = { 47361 - name = "write-json-file"; 47362 - packageName = "write-json-file"; 47363 - version = "3.2.0"; 47364 - src = fetchurl { 47365 - url = "https://registry.npmjs.org/write-json-file/-/write-json-file-3.2.0.tgz"; 47366 - sha512 = "3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ=="; 47367 - }; 47368 - }; 47369 - "write-pkg-4.0.0" = { 47370 - name = "write-pkg"; 47371 - packageName = "write-pkg"; 47372 - version = "4.0.0"; 47373 - src = fetchurl { 47374 - url = "https://registry.npmjs.org/write-pkg/-/write-pkg-4.0.0.tgz"; 47375 - sha512 = "v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA=="; 47376 - }; 47377 - }; 47378 45425 "write-yaml-file-4.2.0" = { 47379 45426 name = "write-yaml-file"; 47380 45427 packageName = "write-yaml-file"; ··· 47447 45494 sha512 = "6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ=="; 47448 45495 }; 47449 45496 }; 47450 - "ws-8.18.0" = { 45497 + "ws-8.18.1" = { 47451 45498 name = "ws"; 47452 45499 packageName = "ws"; 47453 - version = "8.18.0"; 45500 + version = "8.18.1"; 47454 45501 src = fetchurl { 47455 - url = "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz"; 47456 - sha512 = "8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw=="; 45502 + url = "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz"; 45503 + sha512 = "RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w=="; 47457 45504 }; 47458 45505 }; 47459 45506 "xcase-2.0.1" = { ··· 48023 46070 sha512 = "A1pf6fzh6eYkK0L4Qp7g9jzJSDrM6nN0bOn5T0IbY4Yo3w+YkWlHFkJP7mzknMXjqusHFHlKsK2N+4OLsK2MRA=="; 48024 46071 }; 48025 46072 }; 48026 - "yazl-2.5.1" = { 48027 - name = "yazl"; 48028 - packageName = "yazl"; 48029 - version = "2.5.1"; 48030 - src = fetchurl { 48031 - url = "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz"; 48032 - sha512 = "phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw=="; 48033 - }; 48034 - }; 48035 46073 "yeast-0.1.2" = { 48036 46074 name = "yeast"; 48037 46075 packageName = "yeast"; ··· 48191 46229 "@angular/cli" = nodeEnv.buildNodePackage { 48192 46230 name = "_at_angular_slash_cli"; 48193 46231 packageName = "@angular/cli"; 48194 - version = "19.1.7"; 46232 + version = "19.1.8"; 48195 46233 src = fetchurl { 48196 - url = "https://registry.npmjs.org/@angular/cli/-/cli-19.1.7.tgz"; 48197 - sha512 = "qVEy0R4QKQ2QAGfpj2mPVxRxgOVst+rIgZBtLwf/mrbN9YyzJUaBKvaVslUpOqkvoW9mX5myf0iZkT5NykrIoA=="; 46234 + url = "https://registry.npmjs.org/@angular/cli/-/cli-19.1.8.tgz"; 46235 + sha512 = "JmdLj8110DNWaxL03K7I06+nLyBfXgiIqYyrQx5QO9AodGkKHK5rE+7VD8MjZhUymua57HToD0oHaQgThJwTJQ=="; 48198 46236 }; 48199 46237 dependencies = [ 48200 - sources."@angular-devkit/architect-0.1901.7" 48201 - sources."@angular-devkit/core-19.1.7" 48202 - sources."@angular-devkit/schematics-19.1.7" 46238 + sources."@angular-devkit/architect-0.1901.8" 46239 + sources."@angular-devkit/core-19.1.8" 46240 + sources."@angular-devkit/schematics-19.1.8" 48203 46241 ( 48204 46242 sources."@inquirer/checkbox-4.1.2" 48205 46243 // { ··· 48270 46308 sources."@npmcli/agent-3.0.0" 48271 46309 sources."@npmcli/fs-4.0.0" 48272 46310 ( 48273 - sources."@npmcli/git-6.0.1" 46311 + sources."@npmcli/git-6.0.3" 48274 46312 // { 48275 46313 dependencies = [ 48276 46314 sources."isexe-3.1.1" ··· 48300 46338 ]; 48301 46339 } 48302 46340 ) 48303 - sources."@schematics/angular-19.1.7" 46341 + sources."@schematics/angular-19.1.8" 48304 46342 sources."@sigstore/bundle-3.1.0" 48305 46343 sources."@sigstore/core-2.0.0" 48306 46344 sources."@sigstore/protobuf-specs-0.4.0" ··· 48309 46347 sources."@sigstore/verify-2.1.0" 48310 46348 sources."@tufjs/canonical-json-2.0.0" 48311 46349 sources."@tufjs/models-3.0.1" 48312 - sources."@types/node-22.13.4" 46350 + sources."@types/node-22.13.5" 48313 46351 sources."@yarnpkg/lockfile-1.1.0" 48314 46352 sources."abbrev-3.0.0" 48315 46353 sources."agent-base-7.1.3" ··· 48375 46413 sources."external-editor-3.1.0" 48376 46414 sources."fast-deep-equal-3.1.3" 48377 46415 sources."fast-uri-3.0.6" 48378 - sources."foreground-child-3.3.0" 46416 + sources."foreground-child-3.3.1" 48379 46417 sources."fs-minipass-3.0.3" 48380 46418 sources."function-bind-1.1.2" 48381 46419 sources."get-caller-file-2.0.5" ··· 48535 46573 sources."path-scurry-1.11.1" 48536 46574 sources."picomatch-4.0.2" 48537 46575 sources."proc-log-5.0.0" 48538 - sources."promise-inflight-1.0.1" 48539 46576 sources."promise-retry-2.0.1" 48540 46577 sources."readable-stream-3.6.2" 48541 46578 sources."readdirp-4.1.2" ··· 48692 46729 sources."balanced-match-1.0.2" 48693 46730 sources."brace-expansion-1.1.11" 48694 46731 sources."browserslist-4.24.4" 48695 - sources."caniuse-lite-1.0.30001699" 46732 + sources."caniuse-lite-1.0.30001700" 48696 46733 sources."commander-6.2.1" 48697 46734 sources."concat-map-0.0.1" 48698 46735 sources."convert-source-map-2.0.0" 48699 46736 sources."debug-4.4.0" 48700 - sources."electron-to-chromium-1.5.101" 46737 + sources."electron-to-chromium-1.5.104" 48701 46738 sources."escalade-3.2.0" 48702 46739 sources."fs-readdir-recursive-1.1.0" 48703 46740 sources."fs.realpath-1.0.0" ··· 48761 46798 sources."@commitlint/top-level-19.5.0" 48762 46799 sources."@commitlint/types-19.5.0" 48763 46800 sources."@types/conventional-commits-parser-5.0.1" 48764 - sources."@types/node-22.13.4" 46801 + sources."@types/node-22.13.5" 48765 46802 sources."JSONStream-1.3.5" 48766 46803 sources."ajv-8.17.1" 48767 46804 sources."ansi-regex-5.0.1" ··· 48861 46898 "@microsoft/rush" = nodeEnv.buildNodePackage { 48862 46899 name = "_at_microsoft_slash_rush"; 48863 46900 packageName = "@microsoft/rush"; 48864 - version = "5.149.0"; 46901 + version = "5.149.1"; 48865 46902 src = fetchurl { 48866 - url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.149.0.tgz"; 48867 - sha512 = "1+Mvmt7i+KQi6qqmgxcXgDjOk5pRalZIvXqR7SCHeVOgGmW3pFs5pTS9sgfYVfrsP/rYg7XvJjAdyReiatZ7QA=="; 46903 + url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.149.1.tgz"; 46904 + sha512 = "nn1Dy2KfRiS4elzp2kXjciaXUYiHqp/0BE6OnGB3Ahiqx25NzQOs6SOHPliYso0PxSPCuCGalEUDMFtvNJTtAw=="; 48868 46905 }; 48869 46906 dependencies = [ 48870 46907 ( ··· 48985 47022 sources."@jridgewell/trace-mapping-0.3.25" 48986 47023 sources."@jsep-plugin/assignment-1.3.0" 48987 47024 sources."@jsep-plugin/regex-1.0.4" 48988 - sources."@microsoft/rush-lib-5.149.0" 47025 + sources."@microsoft/rush-lib-5.149.1" 48989 47026 sources."@nodelib/fs.scandir-2.1.5" 48990 47027 sources."@nodelib/fs.stat-2.0.5" 48991 47028 sources."@nodelib/fs.walk-1.2.8" ··· 49055 47092 ]; 49056 47093 } 49057 47094 ) 49058 - sources."@rushstack/heft-config-file-0.16.5" 49059 - sources."@rushstack/lookup-by-path-0.5.5" 47095 + sources."@rushstack/heft-config-file-0.16.6" 47096 + sources."@rushstack/lookup-by-path-0.5.6" 49060 47097 ( 49061 47098 sources."@rushstack/node-core-library-5.11.0" 49062 47099 // { ··· 49065 47102 ]; 49066 47103 } 49067 47104 ) 49068 - sources."@rushstack/package-deps-hash-4.3.6" 47105 + sources."@rushstack/package-deps-hash-4.3.7" 49069 47106 ( 49070 - sources."@rushstack/package-extractor-0.10.10" 47107 + sources."@rushstack/package-extractor-0.10.11" 49071 47108 // { 49072 47109 dependencies = [ 49073 47110 sources."brace-expansion-1.1.11" ··· 49083 47120 ]; 49084 47121 } 49085 47122 ) 49086 - sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.149.0" 49087 - sources."@rushstack/rush-azure-storage-build-cache-plugin-5.149.0" 49088 - sources."@rushstack/rush-http-build-cache-plugin-5.149.0" 49089 - sources."@rushstack/rush-sdk-5.149.0" 49090 - sources."@rushstack/stream-collator-4.1.84" 47123 + sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.149.1" 47124 + sources."@rushstack/rush-azure-storage-build-cache-plugin-5.149.1" 47125 + sources."@rushstack/rush-http-build-cache-plugin-5.149.1" 47126 + sources."@rushstack/rush-sdk-5.149.1" 47127 + sources."@rushstack/stream-collator-4.1.85" 49091 47128 ( 49092 47129 sources."@rushstack/terminal-0.15.0" 49093 47130 // { ··· 49110 47147 sources."@types/lodash-4.17.15" 49111 47148 sources."@types/minimatch-3.0.5" 49112 47149 sources."@types/minimist-1.2.5" 49113 - sources."@types/node-22.13.4" 47150 + sources."@types/node-22.13.5" 49114 47151 sources."@types/normalize-package-data-2.4.4" 49115 47152 sources."@types/parse-json-4.0.2" 49116 47153 sources."@vue/compiler-core-3.5.13" ··· 49282 47319 sources."external-editor-3.1.0" 49283 47320 sources."fast-deep-equal-3.1.3" 49284 47321 sources."fast-glob-3.3.3" 49285 - sources."fast-xml-parser-4.5.1" 47322 + sources."fast-xml-parser-4.5.3" 49286 47323 sources."fastq-1.19.0" 49287 47324 sources."figures-3.0.0" 49288 47325 sources."fill-range-7.1.1" ··· 49434 47471 sources."json-schema-traverse-1.0.0" 49435 47472 sources."json5-2.2.3" 49436 47473 sources."jsonfile-6.1.0" 49437 - sources."jsonpath-plus-10.2.0" 47474 + sources."jsonpath-plus-10.3.0" 49438 47475 ( 49439 47476 sources."jsonwebtoken-9.0.2" 49440 47477 // { ··· 49617 47654 ]; 49618 47655 } 49619 47656 ) 49620 - sources."postcss-8.5.2" 47657 + sources."postcss-8.5.3" 49621 47658 ( 49622 47659 sources."preferred-pm-3.1.4" 49623 47660 // { ··· 49745 47782 sources."strip-final-newline-2.0.0" 49746 47783 sources."strip-indent-3.0.0" 49747 47784 sources."strip-json-comments-2.0.1" 49748 - sources."strnum-1.0.5" 47785 + sources."strnum-1.1.1" 49749 47786 sources."supports-color-7.2.0" 49750 47787 sources."supports-preserve-symlinks-flag-1.0.0" 49751 47788 sources."tapable-2.2.1" ··· 49817 47854 "@shopify/cli" = nodeEnv.buildNodePackage { 49818 47855 name = "_at_shopify_slash_cli"; 49819 47856 packageName = "@shopify/cli"; 49820 - version = "3.75.0"; 47857 + version = "3.75.4"; 49821 47858 src = fetchurl { 49822 - url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.75.0.tgz"; 49823 - sha512 = "0O8C0L4+luExYuhF882rS3CKKVgL0p8ztr1BAK2XPmJPkfh6P+5OeyN+5brzpia3YMavmPD7is9aPpZB7HfG8A=="; 47859 + url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.75.4.tgz"; 47860 + sha512 = "4+jcMOZiw6Nsm3007liTKA2inI9LwgM1HljCpLhT9aFMZZ+qqF1tbixBL08hbc1C44AuKsYuQtCrY531PBEIrA=="; 49824 47861 }; 49825 47862 dependencies = [ 49826 47863 sources."@ast-grep/napi-0.33.0" ··· 49845 47882 sha512 = "8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ=="; 49846 47883 }; 49847 47884 dependencies = [ 49848 - sources."tailwindcss-4.0.6" 47885 + sources."tailwindcss-4.0.8" 49849 47886 ]; 49850 47887 buildInputs = globalBuildInputs; 49851 47888 meta = { ··· 49867 47904 }; 49868 47905 dependencies = [ 49869 47906 sources."mini-svg-data-uri-1.4.4" 49870 - sources."tailwindcss-4.0.6" 47907 + sources."tailwindcss-4.0.8" 49871 47908 ]; 49872 47909 buildInputs = globalBuildInputs; 49873 47910 meta = { ··· 49888 47925 sha512 = "5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g=="; 49889 47926 }; 49890 47927 dependencies = [ 49891 - sources."tailwindcss-4.0.6" 47928 + sources."tailwindcss-4.0.8" 49892 47929 ]; 49893 47930 buildInputs = globalBuildInputs; 49894 47931 meta = { ··· 49914 47951 sources."lodash.isplainobject-4.0.6" 49915 47952 sources."lodash.merge-4.6.2" 49916 47953 sources."postcss-selector-parser-6.0.10" 49917 - sources."tailwindcss-4.0.6" 47954 + sources."tailwindcss-4.0.8" 49918 47955 sources."util-deprecate-1.0.2" 49919 47956 ]; 49920 47957 buildInputs = globalBuildInputs; ··· 49964 48001 ]; 49965 48002 } 49966 48003 ) 49967 - sources."@aws-sdk/client-s3-3.749.0" 49968 - sources."@aws-sdk/client-sso-3.749.0" 49969 - sources."@aws-sdk/client-sts-3.749.0" 49970 - sources."@aws-sdk/core-3.749.0" 49971 - sources."@aws-sdk/credential-provider-env-3.749.0" 49972 - sources."@aws-sdk/credential-provider-http-3.749.0" 49973 - sources."@aws-sdk/credential-provider-ini-3.749.0" 49974 - sources."@aws-sdk/credential-provider-node-3.749.0" 49975 - sources."@aws-sdk/credential-provider-process-3.749.0" 49976 - sources."@aws-sdk/credential-provider-sso-3.749.0" 49977 - sources."@aws-sdk/credential-provider-web-identity-3.749.0" 48004 + sources."@aws-sdk/client-s3-3.750.0" 48005 + sources."@aws-sdk/client-sso-3.750.0" 48006 + sources."@aws-sdk/client-sts-3.750.0" 48007 + sources."@aws-sdk/core-3.750.0" 48008 + sources."@aws-sdk/credential-provider-env-3.750.0" 48009 + sources."@aws-sdk/credential-provider-http-3.750.0" 48010 + sources."@aws-sdk/credential-provider-ini-3.750.0" 48011 + sources."@aws-sdk/credential-provider-node-3.750.0" 48012 + sources."@aws-sdk/credential-provider-process-3.750.0" 48013 + sources."@aws-sdk/credential-provider-sso-3.750.0" 48014 + sources."@aws-sdk/credential-provider-web-identity-3.750.0" 49978 48015 ( 49979 - sources."@aws-sdk/lib-storage-3.749.0" 48016 + sources."@aws-sdk/lib-storage-3.750.0" 49980 48017 // { 49981 48018 dependencies = [ 49982 48019 sources."buffer-5.6.0" ··· 49986 48023 sources."@aws-sdk/middleware-bucket-endpoint-3.734.0" 49987 48024 sources."@aws-sdk/middleware-expect-continue-3.734.0" 49988 48025 ( 49989 - sources."@aws-sdk/middleware-flexible-checksums-3.749.0" 48026 + sources."@aws-sdk/middleware-flexible-checksums-3.750.0" 49990 48027 // { 49991 48028 dependencies = [ 49992 48029 sources."@smithy/is-array-buffer-4.0.0" ··· 49997 48034 sources."@aws-sdk/middleware-location-constraint-3.734.0" 49998 48035 sources."@aws-sdk/middleware-logger-3.734.0" 49999 48036 sources."@aws-sdk/middleware-recursion-detection-3.734.0" 50000 - sources."@aws-sdk/middleware-sdk-s3-3.749.0" 48037 + sources."@aws-sdk/middleware-sdk-s3-3.750.0" 50001 48038 sources."@aws-sdk/middleware-ssec-3.734.0" 50002 - sources."@aws-sdk/middleware-user-agent-3.749.0" 50003 - sources."@aws-sdk/nested-clients-3.749.0" 48039 + sources."@aws-sdk/middleware-user-agent-3.750.0" 48040 + sources."@aws-sdk/nested-clients-3.750.0" 50004 48041 sources."@aws-sdk/region-config-resolver-3.734.0" 50005 - sources."@aws-sdk/s3-presigned-post-3.749.0" 50006 - sources."@aws-sdk/s3-request-presigner-3.749.0" 50007 - sources."@aws-sdk/signature-v4-multi-region-3.749.0" 50008 - sources."@aws-sdk/token-providers-3.749.0" 48042 + sources."@aws-sdk/s3-presigned-post-3.750.0" 48043 + sources."@aws-sdk/s3-request-presigner-3.750.0" 48044 + sources."@aws-sdk/signature-v4-multi-region-3.750.0" 48045 + sources."@aws-sdk/token-providers-3.750.0" 50009 48046 sources."@aws-sdk/types-3.734.0" 50010 48047 sources."@aws-sdk/util-arn-parser-3.723.0" 50011 48048 sources."@aws-sdk/util-endpoints-3.743.0" 50012 48049 sources."@aws-sdk/util-format-url-3.734.0" 50013 48050 sources."@aws-sdk/util-locate-window-3.723.0" 50014 48051 sources."@aws-sdk/util-user-agent-browser-3.734.0" 50015 - sources."@aws-sdk/util-user-agent-node-3.749.0" 48052 + sources."@aws-sdk/util-user-agent-node-3.750.0" 50016 48053 sources."@aws-sdk/util-utf8-browser-3.259.0" 50017 48054 sources."@aws-sdk/xml-builder-3.734.0" 50018 48055 sources."@buttercup/fetch-0.2.1" ··· 50024 48061 sources."@smithy/chunked-blob-reader-5.0.0" 50025 48062 sources."@smithy/chunked-blob-reader-native-4.0.0" 50026 48063 sources."@smithy/config-resolver-4.0.1" 50027 - sources."@smithy/core-3.1.4" 48064 + sources."@smithy/core-3.1.5" 50028 48065 sources."@smithy/credential-provider-imds-4.0.1" 50029 48066 sources."@smithy/eventstream-codec-4.0.1" 50030 48067 sources."@smithy/eventstream-serde-browser-4.0.1" ··· 50047 48084 sources."@smithy/is-array-buffer-2.2.0" 50048 48085 sources."@smithy/md5-js-4.0.1" 50049 48086 sources."@smithy/middleware-content-length-4.0.1" 50050 - sources."@smithy/middleware-endpoint-4.0.5" 50051 - sources."@smithy/middleware-retry-4.0.6" 48087 + sources."@smithy/middleware-endpoint-4.0.6" 48088 + sources."@smithy/middleware-retry-4.0.7" 50052 48089 sources."@smithy/middleware-serde-4.0.2" 50053 48090 sources."@smithy/middleware-stack-4.0.1" 50054 48091 sources."@smithy/node-config-provider-4.0.1" 50055 - sources."@smithy/node-http-handler-4.0.2" 48092 + sources."@smithy/node-http-handler-4.0.3" 50056 48093 sources."@smithy/property-provider-4.0.1" 50057 48094 sources."@smithy/protocol-http-5.0.1" 50058 48095 sources."@smithy/querystring-builder-4.0.1" ··· 50067 48104 ]; 50068 48105 } 50069 48106 ) 50070 - sources."@smithy/smithy-client-4.1.5" 48107 + sources."@smithy/smithy-client-4.1.6" 50071 48108 sources."@smithy/types-4.1.0" 50072 48109 sources."@smithy/url-parser-4.0.1" 50073 48110 ( ··· 50083 48120 sources."@smithy/util-body-length-node-4.0.0" 50084 48121 sources."@smithy/util-buffer-from-2.2.0" 50085 48122 sources."@smithy/util-config-provider-4.0.0" 50086 - sources."@smithy/util-defaults-mode-browser-4.0.6" 50087 - sources."@smithy/util-defaults-mode-node-4.0.6" 48123 + sources."@smithy/util-defaults-mode-browser-4.0.7" 48124 + sources."@smithy/util-defaults-mode-node-4.0.7" 50088 48125 sources."@smithy/util-endpoints-3.0.1" 50089 48126 sources."@smithy/util-hex-encoding-4.0.0" 50090 48127 sources."@smithy/util-middleware-4.0.1" 50091 48128 sources."@smithy/util-retry-4.0.1" 50092 48129 ( 50093 - sources."@smithy/util-stream-4.1.1" 48130 + sources."@smithy/util-stream-4.1.2" 50094 48131 // { 50095 48132 dependencies = [ 50096 48133 sources."@smithy/is-array-buffer-4.0.0" ··· 50117 48154 sources."@types/http-cache-semantics-4.0.4" 50118 48155 sources."@types/http-errors-2.0.4" 50119 48156 sources."@types/mime-1.3.5" 50120 - sources."@types/node-22.13.4" 48157 + sources."@types/node-22.13.5" 50121 48158 sources."@types/qs-6.9.18" 50122 48159 sources."@types/range-parser-1.2.7" 50123 48160 sources."@types/send-0.17.4" ··· 50279 48316 sources."fresh-0.5.2" 50280 48317 sources."fs.realpath-1.0.0" 50281 48318 sources."function-bind-1.1.2" 50282 - sources."get-intrinsic-1.2.7" 48319 + sources."get-intrinsic-1.3.0" 50283 48320 sources."get-proto-1.0.1" 50284 48321 sources."get-stream-6.0.1" 50285 48322 sources."glob-7.2.3" ··· 50501 48538 ]; 50502 48539 } 50503 48540 ) 50504 - sources."strnum-1.0.5" 48541 + sources."strnum-1.1.1" 50505 48542 sources."supports-color-8.1.1" 50506 48543 sources."tdigest-0.1.2" 50507 48544 sources."toidentifier-1.0.1" ··· 50909 48946 sources."extend-3.0.2" 50910 48947 sources."fault-2.0.1" 50911 48948 sources."find-up-6.3.0" 50912 - sources."foreground-child-3.3.0" 48949 + sources."foreground-child-3.3.1" 50913 48950 sources."form-data-encoder-2.1.4" 50914 48951 sources."format-0.2.2" 50915 48952 sources."from-0.1.7" ··· 51417 49454 aws-cdk = nodeEnv.buildNodePackage { 51418 49455 name = "aws-cdk"; 51419 49456 packageName = "aws-cdk"; 51420 - version = "2.178.2"; 49457 + version = "2.1000.3"; 51421 49458 src = fetchurl { 51422 - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.178.2.tgz"; 51423 - sha512 = "ojMCMnBGinvDUD6+BOOlUOB9pjsYXoQdFVbf4bvi3dy3nwn557r0j6qDUcJMeikzPJ6YWzfAdL0fYxBZg4xcOg=="; 49459 + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.1000.3.tgz"; 49460 + sha512 = "y0sU603gGWpVTwqDw9MKVHg3e1t49Mvve6t3YDOvjeKY195Vu6dgHlHjW4h8n1vX04r49NKfpoApG60V8sMbdw=="; 51424 49461 }; 51425 49462 buildInputs = globalBuildInputs; 51426 49463 meta = { 51427 - description = "CDK Toolkit, the command line tool for CDK apps"; 49464 + description = "AWS CDK CLI, the command line tool for CDK apps"; 51428 49465 homepage = "https://github.com/aws/aws-cdk"; 51429 49466 license = "Apache-2.0"; 51430 49467 }; ··· 51869 49906 sources."to-regex-range-5.0.1" 51870 49907 sources."to-vfile-8.0.0" 51871 49908 sources."trough-2.2.0" 51872 - sources."type-fest-4.34.1" 49909 + sources."type-fest-4.35.0" 51873 49910 sources."unicorn-magic-0.3.0" 51874 49911 sources."unified-11.0.5" 51875 49912 sources."unified-lint-rule-3.0.1" ··· 52063 50100 sources."fs.realpath-1.0.0" 52064 50101 sources."function-bind-1.1.2" 52065 50102 sources."get-assigned-identifiers-1.2.0" 52066 - sources."get-intrinsic-1.2.7" 50103 + sources."get-intrinsic-1.3.0" 52067 50104 sources."get-proto-1.0.1" 52068 50105 sources."glob-7.2.3" 52069 50106 sources."gopd-1.2.0" ··· 52219 50256 dependencies = [ 52220 50257 sources."@socket.io/component-emitter-3.1.2" 52221 50258 sources."@types/cors-2.8.17" 52222 - sources."@types/node-22.13.4" 50259 + sources."@types/node-22.13.5" 52223 50260 sources."accepts-1.3.8" 52224 50261 sources."ansi-regex-5.0.1" 52225 50262 sources."ansi-styles-4.3.0" ··· 52436 50473 cdk8s-cli = nodeEnv.buildNodePackage { 52437 50474 name = "cdk8s-cli"; 52438 50475 packageName = "cdk8s-cli"; 52439 - version = "2.198.326"; 50476 + version = "2.198.334"; 52440 50477 src = fetchurl { 52441 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.326.tgz"; 52442 - sha512 = "IRRbqG2OG4IweXpM/bvxZRu9bxIPNy9aHgGJ9bL0eREsnkvcIfjARBg0aWzP6q/Lo+C+8ryXkx1aPZRrF9i06Q=="; 50478 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.334.tgz"; 50479 + sha512 = "ULWw7NOJ3n5+Eywel2OPqvXFqpNTfQtFAH3eBmlKeE+GBvVZ7omUjQgqknvJLbvvkCjfpfm+UA/rVhlxm/Nmjg=="; 52443 50480 }; 52444 50481 dependencies = [ 52445 - sources."@jsii/check-node-1.106.0" 52446 - sources."@jsii/spec-1.106.0" 50482 + sources."@jsii/check-node-1.108.0" 50483 + sources."@jsii/spec-1.108.0" 52447 50484 sources."@nodelib/fs.scandir-2.1.5" 52448 50485 sources."@nodelib/fs.stat-2.0.5" 52449 50486 sources."@nodelib/fs.walk-1.2.8" ··· 52459 50496 sources."braces-3.0.3" 52460 50497 sources."camelcase-6.3.0" 52461 50498 sources."case-1.6.3" 52462 - sources."cdk8s-2.69.40" 50499 + sources."cdk8s-2.69.43" 52463 50500 sources."cdk8s-plus-28-2.5.6" 52464 50501 sources."chalk-4.1.2" 52465 50502 sources."cliui-7.0.4" 52466 50503 sources."clone-2.1.2" 52467 50504 ( 52468 - sources."codemaker-1.106.0" 50505 + sources."codemaker-1.108.0" 52469 50506 // { 52470 50507 dependencies = [ 52471 50508 sources."fs-extra-10.1.0" ··· 52488 50525 sources."downlevel-dts-0.11.0" 52489 50526 // { 52490 50527 dependencies = [ 52491 - sources."typescript-5.8.0-dev.20250216" 50528 + sources."typescript-5.9.0-dev.20250224" 52492 50529 ]; 52493 50530 } 52494 50531 ) ··· 52502 50539 sources."fastq-1.19.0" 52503 50540 sources."fill-range-7.1.1" 52504 50541 sources."find-up-4.1.0" 52505 - sources."flatted-3.3.2" 50542 + sources."flatted-3.3.3" 52506 50543 ( 52507 50544 sources."fs-extra-8.1.0" 52508 50545 // { ··· 52529 50566 sources."is-glob-4.0.3" 52530 50567 sources."is-number-7.0.0" 52531 50568 ( 52532 - sources."jsii-5.7.5" 50569 + sources."jsii-5.7.6" 52533 50570 // { 52534 50571 dependencies = [ 50572 + sources."@jsii/check-node-1.107.0" 52535 50573 sources."cliui-8.0.1" 52536 50574 sources."yargs-17.7.2" 52537 50575 sources."yargs-parser-21.1.1" ··· 52539 50577 } 52540 50578 ) 52541 50579 ( 52542 - sources."jsii-pacmak-1.106.0" 50580 + sources."jsii-pacmak-1.108.0" 52543 50581 // { 52544 50582 dependencies = [ 52545 50583 sources."fs-extra-10.1.0" ··· 52548 50586 } 52549 50587 ) 52550 50588 ( 52551 - sources."jsii-reflect-1.106.0" 50589 + sources."jsii-reflect-1.108.0" 52552 50590 // { 52553 50591 dependencies = [ 52554 50592 sources."fs-extra-10.1.0" ··· 52557 50595 } 52558 50596 ) 52559 50597 ( 52560 - sources."jsii-rosetta-5.7.4" 50598 + sources."jsii-rosetta-5.7.6" 52561 50599 // { 52562 50600 dependencies = [ 50601 + sources."@jsii/check-node-1.107.0" 52563 50602 sources."cliui-8.0.1" 52564 50603 sources."yargs-17.7.2" 52565 50604 sources."yargs-parser-21.1.1" ··· 52570 50609 sources."jsii-srcmak-0.1.1236" 52571 50610 // { 52572 50611 dependencies = [ 50612 + sources."@jsii/check-node-1.107.0" 52573 50613 sources."cliui-8.0.1" 52574 50614 sources."fs-extra-9.1.0" 52575 - sources."jsii-5.5.21" 50615 + sources."jsii-5.5.23" 52576 50616 sources."typescript-5.5.4" 52577 50617 sources."yargs-17.7.2" 52578 50618 sources."yargs-parser-21.1.1" ··· 52596 50636 sources."ncp-2.0.0" 52597 50637 sources."no-case-3.0.4" 52598 50638 sources."once-1.4.0" 52599 - sources."oo-ascii-tree-1.106.0" 50639 + sources."oo-ascii-tree-1.108.0" 52600 50640 sources."p-limit-2.3.0" 52601 50641 sources."p-locate-4.1.0" 52602 50642 sources."p-try-2.2.0" ··· 52946 50986 sources."@jridgewell/sourcemap-codec-1.5.0" 52947 50987 sources."@jridgewell/trace-mapping-0.3.25" 52948 50988 sources."@jsii/check-node-1.102.0" 52949 - sources."@jsii/spec-1.106.0" 50989 + sources."@jsii/spec-1.108.0" 52950 50990 sources."@nodelib/fs.scandir-2.1.5" 52951 50991 sources."@nodelib/fs.stat-2.0.5" 52952 50992 sources."@nodelib/fs.walk-1.2.8" ··· 52958 50998 sources."@sentry/utils-7.120.1" 52959 50999 sources."@types/mute-stream-0.0.1" 52960 51000 sources."@types/node-18.19.67" 52961 - sources."@types/react-19.0.9" 51001 + sources."@types/react-19.0.10" 52962 51002 sources."@types/wrap-ansi-3.0.0" 52963 51003 sources."@types/yauzl-2.10.3" 52964 51004 sources."@types/yoga-layout-1.9.2" ··· 53068 51108 sources."downlevel-dts-0.11.0" 53069 51109 // { 53070 51110 dependencies = [ 53071 - sources."typescript-5.8.0-dev.20250216" 51111 + sources."typescript-5.9.0-dev.20250224" 53072 51112 ]; 53073 51113 } 53074 51114 ) ··· 53120 51160 ) 53121 51161 sources."fill-range-7.1.1" 53122 51162 sources."find-up-3.0.0" 53123 - sources."flatted-3.3.2" 51163 + sources."flatted-3.3.3" 53124 51164 sources."follow-redirects-1.15.9" 53125 51165 sources."for-each-0.3.5" 53126 51166 ( 53127 - sources."foreground-child-3.3.0" 51167 + sources."foreground-child-3.3.1" 53128 51168 // { 53129 51169 dependencies = [ 53130 51170 sources."signal-exit-4.1.0" ··· 53138 51178 sources."functions-have-names-1.2.3" 53139 51179 sources."get-caller-file-2.0.5" 53140 51180 sources."get-east-asian-width-1.3.0" 53141 - sources."get-intrinsic-1.2.7" 51181 + sources."get-intrinsic-1.3.0" 53142 51182 sources."get-proto-1.0.1" 53143 51183 sources."get-stream-6.0.1" 53144 51184 sources."github-from-package-0.0.0" ··· 53278 51318 } 53279 51319 ) 53280 51320 ( 53281 - sources."jsii-reflect-1.106.0" 51321 + sources."jsii-reflect-1.108.0" 53282 51322 // { 53283 51323 dependencies = [ 53284 - sources."@jsii/check-node-1.106.0" 51324 + sources."@jsii/check-node-1.108.0" 53285 51325 sources."cliui-7.0.4" 53286 51326 sources."fs-extra-10.1.0" 53287 51327 sources."jsonfile-6.1.0" ··· 53337 51377 sources."mkdirp-classic-0.5.3" 53338 51378 sources."ms-2.1.3" 53339 51379 sources."mute-stream-1.0.0" 53340 - sources."nan-2.22.0" 51380 + sources."nan-2.22.1" 53341 51381 sources."napi-build-utils-2.0.0" 53342 51382 sources."node-abi-3.74.0" 53343 51383 sources."node-fetch-2.7.0" ··· 53353 51393 sources."obliterator-2.0.5" 53354 51394 sources."once-1.4.0" 53355 51395 sources."onetime-5.1.2" 53356 - sources."oo-ascii-tree-1.106.0" 51396 + sources."oo-ascii-tree-1.108.0" 53357 51397 sources."open-7.4.2" 53358 51398 sources."os-tmpdir-1.0.2" 53359 51399 sources."p-limit-2.3.0" ··· 53479 51519 sources."to-regex-range-5.0.1" 53480 51520 sources."tr46-0.0.3" 53481 51521 sources."tunnel-agent-0.6.0" 53482 - sources."type-fest-4.34.1" 51522 + sources."type-fest-4.35.0" 53483 51523 sources."typescript-5.4.5" 53484 51524 sources."undici-types-5.26.5" 53485 51525 sources."universalify-0.1.2" ··· 53508 51548 sources."wrap-ansi-7.0.0" 53509 51549 sources."wrap-ansi-cjs-7.0.0" 53510 51550 sources."wrappy-1.0.2" 53511 - sources."ws-8.18.0" 51551 + sources."ws-8.18.1" 53512 51552 sources."xml-js-1.6.11" 53513 51553 sources."xmlbuilder-15.1.1" 53514 51554 sources."xstate-4.38.3" ··· 53965 52005 coc-lists = nodeEnv.buildNodePackage { 53966 52006 name = "coc-lists"; 53967 52007 packageName = "coc-lists"; 53968 - version = "1.5.1"; 52008 + version = "1.5.3"; 53969 52009 src = fetchurl { 53970 - url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.5.1.tgz"; 53971 - sha512 = "tJYhsDHadL6YYEsHAUc+tFi8MYklHmPx3AcjiUHTYRAtkAyKoZb+BPpAwG8gvfSqdkCxu55eHLeJ9lGhXNztZA=="; 52010 + url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.5.3.tgz"; 52011 + sha512 = "fVy45jPoie8ZrO28GLWA7M1ewYaybDmb3fujUYWhHelTl4r2F/mk3UVGnpb7+7gMmDJ0T3LkJqh0Qe538/wFTQ=="; 53972 52012 }; 53973 52013 buildInputs = globalBuildInputs; 53974 52014 meta = { ··· 54099 52139 coc-rust-analyzer = nodeEnv.buildNodePackage { 54100 52140 name = "coc-rust-analyzer"; 54101 52141 packageName = "coc-rust-analyzer"; 54102 - version = "0.80.4"; 52142 + version = "0.81.0"; 54103 52143 src = fetchurl { 54104 - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.80.4.tgz"; 54105 - sha512 = "FXoLxN7DnzXyA+IlyF88gSoQCbrF6PrH0xHB5M2pqRZnWQIVdt4UmhlvdfwK77DIXTcDyRh4Q6vsnfJkgV0mlQ=="; 52144 + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.81.0.tgz"; 52145 + sha512 = "skbRCe1Yjoa3r/a0dHviJxGMS8s+PFzl7lmimCUxxT3kKxairDeetNfRBw+wsDJmKBzXGhy1KH+6Cmt3WJYz5w=="; 54106 52146 }; 54107 52147 buildInputs = globalBuildInputs; 54108 52148 meta = { ··· 54465 52505 sources."callsites-3.1.0" 54466 52506 sources."camelcase-5.3.1" 54467 52507 sources."camelcase-keys-6.2.2" 54468 - sources."caniuse-lite-1.0.30001699" 52508 + sources."caniuse-lite-1.0.30001700" 54469 52509 sources."chalk-4.1.2" 54470 52510 sources."character-entities-1.2.4" 54471 52511 sources."character-entities-legacy-1.1.4" ··· 54500 52540 sources."domelementtype-1.3.1" 54501 52541 sources."domhandler-2.4.2" 54502 52542 sources."domutils-1.7.0" 54503 - sources."electron-to-chromium-1.5.101" 52543 + sources."electron-to-chromium-1.5.104" 54504 52544 sources."emoji-regex-8.0.0" 54505 52545 sources."entities-1.1.2" 54506 52546 sources."error-ex-1.3.2" ··· 54517 52557 sources."fill-range-7.1.1" 54518 52558 sources."find-up-4.1.0" 54519 52559 sources."flat-cache-3.2.0" 54520 - sources."flatted-3.3.2" 52560 + sources."flatted-3.3.3" 54521 52561 sources."fs.realpath-1.0.0" 54522 52562 sources."function-bind-1.1.2" 54523 52563 sources."gensync-1.0.0-beta.2" ··· 54968 53008 sources."fast-uri-3.0.6" 54969 53009 sources."file-entry-cache-6.0.1" 54970 53010 sources."flat-cache-3.2.0" 54971 - sources."flatted-3.3.2" 53011 + sources."flatted-3.3.3" 54972 53012 sources."fs.realpath-1.0.0" 54973 53013 sources."function-bind-1.1.2" 54974 53014 sources."functional-red-black-tree-1.0.1" 54975 - sources."get-intrinsic-1.2.7" 53015 + sources."get-intrinsic-1.3.0" 54976 53016 sources."get-proto-1.0.1" 54977 53017 sources."glob-7.2.3" 54978 53018 sources."glob-parent-5.1.2" ··· 55414 53454 sources."conventional-changelog-jquery-6.0.0" 55415 53455 sources."conventional-changelog-jshint-5.0.0" 55416 53456 sources."conventional-changelog-preset-loader-5.0.0" 55417 - sources."conventional-changelog-writer-8.0.0" 53457 + sources."conventional-changelog-writer-8.0.1" 55418 53458 sources."conventional-commits-filter-5.0.0" 55419 - sources."conventional-commits-parser-6.0.0" 53459 + sources."conventional-commits-parser-6.1.0" 55420 53460 sources."dot-prop-5.3.0" 55421 53461 sources."find-up-simple-1.0.0" 55422 53462 sources."git-raw-commits-5.0.0" ··· 55443 53483 sources."spdx-license-ids-3.0.21" 55444 53484 sources."temp-dir-3.0.0" 55445 53485 sources."tempfile-5.0.0" 55446 - sources."type-fest-4.34.1" 53486 + sources."type-fest-4.35.0" 55447 53487 sources."uglify-js-3.19.3" 55448 53488 sources."unicorn-magic-0.1.0" 55449 53489 sources."validate-npm-package-license-3.0.4" ··· 55546 53586 sources."@cycle/run-3.4.0" 55547 53587 sources."@cycle/time-0.10.1" 55548 53588 sources."@types/cookiejar-2.1.5" 55549 - sources."@types/node-22.13.4" 53589 + sources."@types/node-22.13.5" 55550 53590 sources."@types/superagent-3.8.2" 55551 53591 sources."ansi-escapes-3.2.0" 55552 53592 sources."ansi-regex-2.1.1" ··· 55602 53642 sources."form-data-2.5.3" 55603 53643 sources."formidable-1.2.6" 55604 53644 sources."function-bind-1.1.2" 55605 - sources."get-intrinsic-1.2.7" 53645 + sources."get-intrinsic-1.3.0" 55606 53646 sources."get-proto-1.0.1" 55607 53647 sources."globalthis-1.0.4" 55608 53648 sources."gopd-1.2.0" ··· 55732 53772 cspell = nodeEnv.buildNodePackage { 55733 53773 name = "cspell"; 55734 53774 packageName = "cspell"; 55735 - version = "8.17.3"; 53775 + version = "8.17.5"; 55736 53776 src = fetchurl { 55737 - url = "https://registry.npmjs.org/cspell/-/cspell-8.17.3.tgz"; 55738 - sha512 = "fBZg674Dir9y/FWMwm2JyixM/1eB2vnqHJjRxOgGS/ZiZ3QdQ3LkK02Aqvlni8ffWYDZnYnYY9rfWmql9bb42w=="; 53777 + url = "https://registry.npmjs.org/cspell/-/cspell-8.17.5.tgz"; 53778 + sha512 = "l3Cfp87d7Yrodem675irdxV6+7+OsdR+jNwYHe33Dgnd6ePEfooYrvmfGdXF9rlQrNLUQp/HqYgHJzSq19UEsg=="; 55739 53779 }; 55740 53780 dependencies = [ 55741 - sources."@cspell/cspell-bundled-dicts-8.17.3" 55742 - sources."@cspell/cspell-json-reporter-8.17.3" 55743 - sources."@cspell/cspell-pipe-8.17.3" 55744 - sources."@cspell/cspell-resolver-8.17.3" 55745 - sources."@cspell/cspell-service-bus-8.17.3" 55746 - sources."@cspell/cspell-types-8.17.3" 53781 + sources."@cspell/cspell-bundled-dicts-8.17.5" 53782 + sources."@cspell/cspell-json-reporter-8.17.5" 53783 + sources."@cspell/cspell-pipe-8.17.5" 53784 + sources."@cspell/cspell-resolver-8.17.5" 53785 + sources."@cspell/cspell-service-bus-8.17.5" 53786 + sources."@cspell/cspell-types-8.17.5" 55747 53787 sources."@cspell/dict-ada-4.1.0" 55748 53788 sources."@cspell/dict-al-1.1.0" 55749 53789 sources."@cspell/dict-aws-4.0.9" 55750 53790 sources."@cspell/dict-bash-4.2.0" 55751 53791 sources."@cspell/dict-companies-3.1.14" 55752 - sources."@cspell/dict-cpp-6.0.3" 53792 + sources."@cspell/dict-cpp-6.0.4" 55753 53793 sources."@cspell/dict-cryptocurrencies-5.0.4" 55754 53794 sources."@cspell/dict-csharp-4.0.6" 55755 53795 sources."@cspell/dict-css-4.0.17" ··· 55761 53801 sources."@cspell/dict-elixir-4.0.7" 55762 53802 sources."@cspell/dict-en-common-misspellings-2.0.9" 55763 53803 sources."@cspell/dict-en-gb-1.1.33" 55764 - sources."@cspell/dict-en_us-4.3.31" 53804 + sources."@cspell/dict-en_us-4.3.33" 55765 53805 sources."@cspell/dict-filetypes-3.0.11" 55766 53806 sources."@cspell/dict-flutter-1.1.0" 55767 53807 sources."@cspell/dict-fonts-4.0.4" 55768 53808 sources."@cspell/dict-fsharp-1.1.0" 55769 - sources."@cspell/dict-fullstack-3.2.4" 53809 + sources."@cspell/dict-fullstack-3.2.5" 55770 53810 sources."@cspell/dict-gaming-terms-1.1.0" 55771 53811 sources."@cspell/dict-git-3.0.4" 55772 53812 sources."@cspell/dict-golang-6.0.18" ··· 55785 53825 sources."@cspell/dict-markdown-2.0.9" 55786 53826 sources."@cspell/dict-monkeyc-1.0.10" 55787 53827 sources."@cspell/dict-node-5.0.6" 55788 - sources."@cspell/dict-npm-5.1.26" 53828 + sources."@cspell/dict-npm-5.1.27" 55789 53829 sources."@cspell/dict-php-4.0.14" 55790 53830 sources."@cspell/dict-powershell-5.0.14" 55791 53831 sources."@cspell/dict-public-licenses-2.0.13" ··· 55802 53842 sources."@cspell/dict-terraform-1.1.0" 55803 53843 sources."@cspell/dict-typescript-3.2.0" 55804 53844 sources."@cspell/dict-vue-3.0.4" 55805 - sources."@cspell/dynamic-import-8.17.3" 55806 - sources."@cspell/filetypes-8.17.3" 55807 - sources."@cspell/strong-weak-map-8.17.3" 55808 - sources."@cspell/url-8.17.3" 53845 + sources."@cspell/dynamic-import-8.17.5" 53846 + sources."@cspell/filetypes-8.17.5" 53847 + sources."@cspell/strong-weak-map-8.17.5" 53848 + sources."@cspell/url-8.17.5" 55809 53849 sources."array-timsort-1.0.3" 55810 53850 sources."braces-3.0.3" 55811 53851 sources."callsites-3.1.0" ··· 55815 53855 sources."commander-13.1.0" 55816 53856 sources."comment-json-4.2.5" 55817 53857 sources."core-util-is-1.0.3" 55818 - sources."cspell-config-lib-8.17.3" 55819 - sources."cspell-dictionary-8.17.3" 55820 - sources."cspell-gitignore-8.17.3" 55821 - sources."cspell-glob-8.17.3" 55822 - sources."cspell-grammar-8.17.3" 55823 - sources."cspell-io-8.17.3" 55824 - sources."cspell-lib-8.17.3" 55825 - sources."cspell-trie-lib-8.17.3" 53858 + sources."cspell-config-lib-8.17.5" 53859 + sources."cspell-dictionary-8.17.5" 53860 + sources."cspell-gitignore-8.17.5" 53861 + sources."cspell-glob-8.17.5" 53862 + sources."cspell-grammar-8.17.5" 53863 + sources."cspell-io-8.17.5" 53864 + sources."cspell-lib-8.17.5" 53865 + sources."cspell-trie-lib-8.17.5" 55826 53866 sources."env-paths-3.0.0" 55827 53867 sources."esprima-4.0.1" 55828 53868 sources."fast-equals-5.2.2" ··· 55839 53879 sources."fill-range-7.1.1" 55840 53880 sources."find-up-simple-1.0.0" 55841 53881 sources."flat-cache-5.0.0" 55842 - sources."flatted-3.3.2" 53882 + sources."flatted-3.3.3" 55843 53883 sources."gensequence-7.0.0" 55844 53884 sources."get-stdin-9.0.0" 55845 53885 sources."global-directory-4.0.1" ··· 55865 53905 sources."resolve-from-5.0.0" 55866 53906 sources."semver-7.7.1" 55867 53907 ( 55868 - sources."tinyglobby-0.2.10" 53908 + sources."tinyglobby-0.2.12" 55869 53909 // { 55870 53910 dependencies = [ 55871 53911 sources."picomatch-4.0.2" ··· 56065 54105 } 56066 54106 ) 56067 54107 sources."@oclif/screen-3.0.8" 56068 - sources."@swc/core-1.10.16" 54108 + sources."@swc/core-1.10.18" 56069 54109 sources."@swc/counter-0.1.3" 56070 54110 sources."@swc/helpers-0.5.15" 56071 - sources."@swc/types-0.1.17" 56072 - sources."@swc/wasm-1.10.16" 54111 + sources."@swc/types-0.1.18" 54112 + sources."@swc/wasm-1.10.18" 56073 54113 sources."@tsconfig/node10-1.0.11" 56074 54114 sources."@tsconfig/node12-1.0.11" 56075 54115 sources."@tsconfig/node14-1.0.3" 56076 54116 sources."@tsconfig/node16-1.0.4" 56077 54117 sources."@types/cli-progress-3.11.6" 56078 - sources."@types/node-22.13.4" 54118 + sources."@types/node-22.13.5" 56079 54119 sources."acorn-8.14.0" 56080 54120 sources."acorn-walk-8.3.4" 56081 54121 sources."ansi-escapes-4.3.2" ··· 56167 54207 sources."fs-constants-1.0.0" 56168 54208 sources."fs-extra-9.1.0" 56169 54209 sources."function-bind-1.1.2" 56170 - sources."get-intrinsic-1.2.7" 54210 + sources."get-intrinsic-1.3.0" 56171 54211 sources."get-package-type-0.1.0" 56172 54212 sources."get-proto-1.0.1" 56173 54213 sources."glob-parent-5.1.2" ··· 56254 54294 sources."reusify-1.0.4" 56255 54295 sources."run-async-2.4.1" 56256 54296 sources."run-parallel-1.2.0" 56257 - sources."rxjs-7.8.1" 54297 + sources."rxjs-7.8.2" 56258 54298 sources."safe-buffer-5.2.1" 56259 54299 sources."safer-buffer-2.1.2" 56260 54300 sources."semver-7.7.1" ··· 56311 54351 elasticdump = nodeEnv.buildNodePackage { 56312 54352 name = "elasticdump"; 56313 54353 packageName = "elasticdump"; 56314 - version = "6.118.0"; 54354 + version = "6.119.1"; 56315 54355 src = fetchurl { 56316 - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.118.0.tgz"; 56317 - sha512 = "VClh40kZmuJNMk6U46cXb9D94SvlV/5WO4Jvuz2D6wVDfboWG7d15apQ6+Hm8rHRZEsiWagDXQe+zQ7L7BtVFQ=="; 54356 + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.119.1.tgz"; 54357 + sha512 = "8fO3I4N1cIw0406jkuNQFMPCe5kRzuQJ+0/ASovZF7qHTSz8sBbzubcgKYsSLeVi7C8kr3lAsb1SdHRuOB/krQ=="; 56318 54358 }; 56319 54359 dependencies = [ 56320 54360 sources."@fast-csv/format-4.3.5" 56321 54361 sources."@fast-csv/parse-4.3.6" 54362 + sources."@shutterstock/p-map-iterable-1.1.2" 56322 54363 sources."@types/node-14.18.63" 56323 54364 sources."JSONStream-1.5.0" 54365 + sources."aggregate-error-3.1.0" 56324 54366 sources."ajv-6.12.6" 56325 54367 sources."asn1-0.2.6" 56326 54368 sources."assert-plus-1.0.0" ··· 56340 54382 sources."call-bind-apply-helpers-1.0.2" 56341 54383 sources."call-bound-1.0.3" 56342 54384 sources."caseless-0.12.0" 54385 + sources."clean-stack-2.2.0" 56343 54386 sources."combined-stream-1.0.8" 56344 54387 sources."core-util-is-1.0.2" 56345 54388 sources."dashdash-1.14.1" ··· 56351 54394 sources."es-define-property-1.0.1" 56352 54395 sources."es-errors-1.3.0" 56353 54396 sources."es-object-atoms-1.1.1" 56354 - sources."eventemitter3-4.0.7" 56355 54397 sources."events-1.1.1" 56356 54398 sources."extend-3.0.2" 56357 54399 sources."extends-classes-1.0.5" ··· 56363 54405 sources."forever-agent-0.6.1" 56364 54406 sources."form-data-2.3.3" 56365 54407 sources."function-bind-1.1.2" 56366 - sources."get-intrinsic-1.2.7" 54408 + sources."get-intrinsic-1.3.0" 56367 54409 sources."get-proto-1.0.1" 56368 54410 sources."getpass-0.1.7" 56369 54411 sources."gopd-1.2.0" ··· 56376 54418 sources."http-signature-1.2.0" 56377 54419 sources."http-status-1.8.1" 56378 54420 sources."ieee754-1.1.13" 54421 + sources."indent-string-4.0.0" 56379 54422 sources."inherits-2.0.4" 56380 54423 sources."ini-2.0.0" 56381 54424 ( ··· 56418 54461 sources."mime-types-2.1.35" 56419 54462 sources."minimist-1.2.8" 56420 54463 sources."oauth-sign-0.9.0" 56421 - sources."p-finally-1.0.0" 56422 - sources."p-queue-6.6.2" 56423 - sources."p-timeout-3.2.0" 56424 54464 sources."performance-now-2.1.0" 56425 54465 sources."possible-typed-array-names-1.1.0" 56426 54466 sources."process-nextick-args-2.0.1" ··· 56516 54556 "@electron-forge/cli" = nodeEnv.buildNodePackage { 56517 54557 name = "_at_electron-forge_slash_cli"; 56518 54558 packageName = "@electron-forge/cli"; 56519 - version = "7.6.1"; 54559 + version = "7.7.0"; 56520 54560 src = fetchurl { 56521 - url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-7.6.1.tgz"; 56522 - sha512 = "Z9OwK5cAVDOj7MWWt9Gw0/4OJO/db+rshLSXg0I+ySv4xrJmZK1w6QEeOrm7eHjuAqKA+gzIaHsRsT0klCL2lg=="; 54561 + url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-7.7.0.tgz"; 54562 + sha512 = "QfnjghmlHMb7dyArR5cbPA+MP9ff/ulWZi6R/a5MkHlKyhrysRfjzDtZDsmkEv9mGQgRwylssgXrZrKHGlxFkw=="; 56523 54563 }; 56524 54564 dependencies = [ 56525 - sources."@electron-forge/core-7.6.1" 56526 - sources."@electron-forge/core-utils-7.6.1" 56527 - sources."@electron-forge/maker-base-7.6.1" 56528 - sources."@electron-forge/plugin-base-7.6.1" 56529 - sources."@electron-forge/publisher-base-7.6.1" 56530 - sources."@electron-forge/shared-types-7.6.1" 56531 - sources."@electron-forge/template-base-7.6.1" 56532 - sources."@electron-forge/template-vite-7.6.1" 56533 - sources."@electron-forge/template-vite-typescript-7.6.1" 56534 - sources."@electron-forge/template-webpack-7.6.1" 56535 - sources."@electron-forge/template-webpack-typescript-7.6.1" 56536 - sources."@electron-forge/tracer-7.6.1" 54565 + sources."@electron-forge/core-7.7.0" 54566 + sources."@electron-forge/core-utils-7.7.0" 54567 + sources."@electron-forge/maker-base-7.7.0" 54568 + sources."@electron-forge/plugin-base-7.7.0" 54569 + sources."@electron-forge/publisher-base-7.7.0" 54570 + sources."@electron-forge/shared-types-7.7.0" 54571 + sources."@electron-forge/template-base-7.7.0" 54572 + sources."@electron-forge/template-vite-7.7.0" 54573 + sources."@electron-forge/template-vite-typescript-7.7.0" 54574 + sources."@electron-forge/template-webpack-7.7.0" 54575 + sources."@electron-forge/template-webpack-typescript-7.7.0" 54576 + sources."@electron-forge/tracer-7.7.0" 56537 54577 ( 56538 54578 sources."@electron/asar-3.3.1" 56539 54579 // { ··· 56612 54652 sources."@types/cacheable-request-6.0.3" 56613 54653 sources."@types/http-cache-semantics-4.0.4" 56614 54654 sources."@types/keyv-3.1.4" 56615 - sources."@types/node-22.13.4" 54655 + sources."@types/node-22.13.5" 56616 54656 sources."@types/responselike-1.0.3" 56617 54657 sources."@types/yauzl-2.10.3" 56618 54658 sources."@xmldom/xmldom-0.8.10" ··· 56669 54709 sources."color-convert-2.0.1" 56670 54710 sources."color-name-1.1.4" 56671 54711 sources."colorette-2.0.20" 56672 - sources."commander-4.1.1" 54712 + sources."commander-11.1.0" 56673 54713 sources."compare-version-0.1.2" 56674 54714 sources."concat-map-0.0.1" 56675 54715 sources."cross-dirname-0.1.0" ··· 56693 54733 sources."defaults-1.0.4" 56694 54734 sources."defer-to-connect-2.0.1" 56695 54735 sources."detect-libc-2.0.3" 56696 - sources."detect-package-manager-3.0.2" 56697 54736 sources."dir-compare-4.2.0" 56698 54737 sources."eastasianwidth-0.2.0" 56699 54738 sources."emoji-regex-8.0.0" ··· 56706 54745 sources."escape-string-regexp-1.0.5" 56707 54746 sources."eventemitter3-5.0.1" 56708 54747 ( 56709 - sources."execa-5.1.1" 54748 + sources."execa-1.0.0" 56710 54749 // { 56711 54750 dependencies = [ 56712 - sources."get-stream-6.0.1" 54751 + sources."cross-spawn-6.0.6" 54752 + sources."get-stream-4.1.0" 54753 + sources."path-key-2.0.1" 54754 + sources."semver-5.7.2" 54755 + sources."shebang-command-1.2.0" 54756 + sources."shebang-regex-1.0.0" 54757 + sources."which-1.3.1" 56713 54758 ]; 56714 54759 } 56715 54760 ) 56716 - sources."expand-tilde-2.0.2" 56717 54761 sources."exponential-backoff-3.1.2" 56718 54762 sources."extract-zip-2.0.1" 56719 54763 sources."fast-glob-3.3.3" ··· 56739 54783 sources."function-bind-1.1.2" 56740 54784 sources."galactus-1.0.0" 56741 54785 sources."get-caller-file-2.0.5" 56742 - sources."get-installed-path-2.1.1" 56743 54786 ( 56744 54787 sources."get-package-info-1.0.0" 56745 54788 // { ··· 56751 54794 sources."get-stream-5.2.0" 56752 54795 sources."glob-7.2.3" 56753 54796 sources."glob-parent-5.1.2" 56754 - sources."global-modules-1.0.0" 56755 - ( 56756 - sources."global-prefix-1.0.2" 56757 - // { 56758 - dependencies = [ 56759 - sources."which-1.3.1" 56760 - ]; 56761 - } 56762 - ) 54797 + sources."global-dirs-3.0.1" 56763 54798 sources."got-11.8.6" 56764 54799 sources."graceful-fs-4.2.11" 56765 54800 sources."has-flag-4.0.0" 56766 54801 sources."hasown-2.0.2" 56767 - sources."homedir-polyfill-1.0.3" 56768 54802 sources."hosted-git-info-2.8.9" 56769 54803 sources."http-cache-semantics-4.1.1" 56770 54804 sources."http-proxy-agent-5.0.0" 56771 54805 sources."http2-wrapper-1.0.3" 56772 54806 sources."https-proxy-agent-5.0.1" 56773 - sources."human-signals-2.1.0" 56774 54807 sources."humanize-ms-1.2.1" 56775 54808 sources."iconv-lite-0.6.3" 56776 54809 sources."ieee754-1.2.1" ··· 56779 54812 sources."infer-owner-1.0.4" 56780 54813 sources."inflight-1.0.6" 56781 54814 sources."inherits-2.0.4" 56782 - sources."ini-1.3.8" 54815 + sources."ini-2.0.0" 56783 54816 sources."interpret-3.1.1" 56784 54817 sources."ip-address-9.0.5" 56785 54818 sources."is-arrayish-0.2.1" ··· 56790 54823 sources."is-interactive-1.0.0" 56791 54824 sources."is-lambda-1.0.1" 56792 54825 sources."is-number-7.0.0" 56793 - sources."is-stream-2.0.1" 54826 + sources."is-stream-1.1.0" 56794 54827 sources."is-unicode-supported-0.1.0" 56795 - sources."is-windows-1.0.2" 56796 54828 sources."isbinaryfile-4.0.10" 56797 54829 sources."isexe-2.0.0" 56798 54830 sources."jsbn-1.1.0" ··· 56838 54870 sources."make-fetch-happen-10.2.1" 56839 54871 sources."map-age-cleaner-0.1.3" 56840 54872 sources."mem-4.3.0" 56841 - sources."merge-stream-2.0.0" 56842 54873 sources."merge2-1.4.1" 56843 54874 sources."micromatch-4.0.8" 56844 54875 sources."mimic-fn-2.1.0" ··· 56869 54900 } 56870 54901 ) 56871 54902 sources."normalize-url-6.1.0" 56872 - sources."npm-run-path-4.0.1" 54903 + ( 54904 + sources."npm-run-path-2.0.2" 54905 + // { 54906 + dependencies = [ 54907 + sources."path-key-2.0.1" 54908 + ]; 54909 + } 54910 + ) 56873 54911 sources."once-1.4.0" 56874 54912 sources."onetime-5.1.2" 56875 54913 sources."ora-5.4.1" ··· 56890 54928 sources."p-try-1.0.0" 56891 54929 sources."parse-author-2.0.0" 56892 54930 sources."parse-json-2.2.0" 56893 - sources."parse-passwd-1.0.0" 56894 54931 sources."path-exists-3.0.0" 56895 54932 sources."path-is-absolute-1.0.1" 56896 54933 sources."path-key-3.1.1" ··· 56932 54969 sources."resedit-2.0.3" 56933 54970 sources."resolve-1.22.10" 56934 54971 sources."resolve-alpn-1.2.1" 56935 - sources."resolve-dir-1.0.1" 56936 - sources."resolve-package-1.0.1" 56937 54972 sources."responselike-2.0.1" 56938 54973 sources."restore-cursor-3.1.0" 56939 54974 sources."retry-0.12.0" ··· 56972 55007 sources."strip-ansi-6.0.1" 56973 55008 sources."strip-bom-3.0.0" 56974 55009 sources."strip-eof-1.0.0" 56975 - sources."strip-final-newline-2.0.0" 56976 55010 sources."strip-outer-1.0.1" 56977 55011 sources."sudo-prompt-9.2.1" 56978 55012 sources."sumchecker-3.0.1" ··· 56994 55028 sources."unique-filename-2.0.1" 56995 55029 sources."unique-slug-3.0.0" 56996 55030 sources."universalify-2.0.1" 56997 - ( 56998 - sources."username-5.1.0" 56999 - // { 57000 - dependencies = [ 57001 - sources."cross-spawn-6.0.6" 57002 - sources."execa-1.0.0" 57003 - sources."get-stream-4.1.0" 57004 - sources."is-stream-1.1.0" 57005 - sources."npm-run-path-2.0.2" 57006 - sources."path-key-2.0.1" 57007 - sources."semver-5.7.2" 57008 - sources."shebang-command-1.2.0" 57009 - sources."shebang-regex-1.0.0" 57010 - sources."which-1.3.1" 57011 - ]; 57012 - } 57013 - ) 55031 + sources."username-5.1.0" 57014 55032 sources."util-deprecate-1.0.2" 57015 55033 sources."validate-npm-package-license-3.0.4" 57016 55034 sources."wcwidth-1.0.1" ··· 57065 55083 }; 57066 55084 dependencies = [ 57067 55085 sources."@alcalzone/ansi-tokenize-0.1.3" 57068 - sources."@types/react-19.0.9" 55086 + sources."@types/react-19.0.10" 57069 55087 sources."ajv-8.17.1" 57070 55088 sources."ajv-formats-2.1.1" 57071 55089 sources."ansi-escapes-7.0.0" ··· 57111 55129 // { 57112 55130 dependencies = [ 57113 55131 sources."signal-exit-3.0.7" 57114 - sources."type-fest-4.34.1" 55132 + sources."type-fest-4.35.0" 57115 55133 ]; 57116 55134 } 57117 55135 ) ··· 57119 55137 sources."ink-text-input-6.0.0" 57120 55138 // { 57121 55139 dependencies = [ 57122 - sources."type-fest-4.34.1" 55140 + sources."type-fest-4.35.0" 57123 55141 ]; 57124 55142 } 57125 55143 ) ··· 57204 55222 sources."which-2.0.2" 57205 55223 sources."widest-line-5.0.0" 57206 55224 sources."wrap-ansi-9.0.0" 57207 - sources."ws-8.18.0" 55225 + sources."ws-8.18.1" 57208 55226 sources."yoga-wasm-web-0.3.3" 57209 55227 ]; 57210 55228 buildInputs = globalBuildInputs; ··· 57283 55301 sources."@babel/helper-validator-identifier-7.25.9" 57284 55302 sources."@puppeteer/browsers-2.3.0" 57285 55303 sources."@tootallnate/quickjs-emscripten-0.23.0" 57286 - sources."@types/node-22.13.4" 57287 - sources."@types/react-19.0.9" 55304 + sources."@types/node-22.13.5" 55305 + sources."@types/react-19.0.10" 57288 55306 sources."@types/yauzl-2.10.3" 57289 55307 sources."agent-base-7.1.3" 57290 55308 sources."ansi-escapes-7.0.0" ··· 57382 55400 sources."node-gyp-build-4.8.4" 57383 55401 sources."once-1.4.0" 57384 55402 sources."onetime-5.1.2" 57385 - sources."pac-proxy-agent-7.1.0" 55403 + sources."pac-proxy-agent-7.2.0" 57386 55404 sources."pac-resolver-7.0.1" 57387 55405 sources."parent-module-1.0.1" 57388 55406 sources."parse-json-5.2.0" ··· 57435 55453 sources."text-decoder-1.2.3" 57436 55454 sources."through-2.3.8" 57437 55455 sources."tslib-2.8.1" 57438 - sources."type-fest-4.34.1" 55456 + sources."type-fest-4.35.0" 57439 55457 sources."typescript-5.7.3" 57440 55458 sources."unbzip2-stream-1.4.3" 57441 55459 sources."undici-types-6.20.0" ··· 57445 55463 sources."widest-line-5.0.0" 57446 55464 sources."wrap-ansi-9.0.0" 57447 55465 sources."wrappy-1.0.2" 57448 - sources."ws-8.18.0" 55466 + sources."ws-8.18.1" 57449 55467 sources."y18n-5.0.8" 57450 55468 ( 57451 55469 sources."yargs-17.7.2" ··· 57494 55512 ) 57495 55513 sources."@eslint-community/regexpp-4.12.1" 57496 55514 sources."@eslint/config-array-0.19.2" 57497 - sources."@eslint/core-0.11.0" 57498 - sources."@eslint/eslintrc-3.2.0" 57499 - sources."@eslint/js-9.20.0" 55515 + sources."@eslint/core-0.12.0" 55516 + sources."@eslint/eslintrc-3.3.0" 55517 + sources."@eslint/js-9.21.0" 57500 55518 sources."@eslint/object-schema-2.1.6" 57501 - ( 57502 - sources."@eslint/plugin-kit-0.2.5" 57503 - // { 57504 - dependencies = [ 57505 - sources."@eslint/core-0.10.0" 57506 - ]; 57507 - } 57508 - ) 55519 + sources."@eslint/plugin-kit-0.2.7" 57509 55520 sources."@grpc/grpc-js-1.12.6" 57510 55521 sources."@grpc/proto-loader-0.7.13" 57511 55522 sources."@humanfs/core-0.19.1" ··· 57518 55529 } 57519 55530 ) 57520 55531 sources."@humanwhocodes/module-importer-1.0.1" 57521 - sources."@humanwhocodes/retry-0.4.1" 55532 + sources."@humanwhocodes/retry-0.4.2" 57522 55533 sources."@inquirer/checkbox-4.1.2" 57523 55534 sources."@inquirer/confirm-5.1.6" 57524 55535 sources."@inquirer/core-10.1.7" ··· 57569 55580 sources."@types/hast-3.0.4" 57570 55581 sources."@types/json-schema-7.0.15" 57571 55582 sources."@types/mdast-4.0.4" 57572 - sources."@types/node-22.13.4" 55583 + sources."@types/node-22.13.5" 57573 55584 sources."@types/unist-3.0.3" 57574 55585 sources."@ungap/structured-clone-1.3.0" 57575 55586 sources."acorn-8.14.0" ··· 57643 55654 sources."dot-prop-9.0.0" 57644 55655 // { 57645 55656 dependencies = [ 57646 - sources."type-fest-4.34.1" 55657 + sources."type-fest-4.35.0" 57647 55658 ]; 57648 55659 } 57649 55660 ) ··· 57663 55674 sources."escape-goat-4.0.0" 57664 55675 sources."escape-string-regexp-4.0.0" 57665 55676 ( 57666 - sources."eslint-9.20.1" 55677 + sources."eslint-9.21.0" 57667 55678 // { 57668 55679 dependencies = [ 57669 55680 sources."chalk-4.1.2" ··· 57698 55709 sources."fill-range-7.1.1" 57699 55710 sources."find-up-5.0.0" 57700 55711 sources."flat-cache-4.0.1" 57701 - sources."flatted-3.3.2" 55712 + sources."flatted-3.3.3" 57702 55713 sources."fn-annotate-1.2.0" 57703 55714 sources."fs-constants-1.0.0" 57704 55715 sources."get-caller-file-2.0.5" ··· 57723 55734 } 57724 55735 ) 57725 55736 sources."has-flag-4.0.0" 57726 - sources."hast-util-to-html-9.0.4" 55737 + sources."hast-util-to-html-9.0.5" 57727 55738 sources."hast-util-whitespace-3.0.0" 57728 55739 sources."html-void-elements-3.0.0" 57729 55740 sources."iconv-lite-0.4.24" ··· 57758 55769 sources."locate-path-6.0.0" 57759 55770 sources."lodash.camelcase-4.3.0" 57760 55771 sources."lodash.merge-4.6.2" 57761 - sources."long-5.3.0" 55772 + sources."long-5.3.1" 57762 55773 sources."lower-case-2.0.2" 57763 55774 sources."luxon-3.5.0" 57764 55775 sources."mdast-util-to-hast-13.2.0" ··· 57793 55804 sources."path-key-3.1.1" 57794 55805 sources."picomatch-2.3.1" 57795 55806 sources."prelude-ls-1.2.1" 57796 - sources."property-information-6.5.0" 55807 + sources."property-information-7.0.0" 57797 55808 sources."proto-list-1.2.4" 57798 55809 sources."protobufjs-7.4.0" 57799 55810 sources."pump-3.0.2" ··· 57820 55831 sources."run-applescript-7.0.0" 57821 55832 sources."run-async-3.0.0" 57822 55833 sources."run-parallel-1.2.0" 57823 - sources."rxjs-7.8.1" 55834 + sources."rxjs-7.8.2" 57824 55835 sources."safe-buffer-5.2.1" 57825 55836 sources."safer-buffer-2.1.2" 57826 55837 sources."semver-7.7.1" ··· 57866 55877 sources."emoji-regex-10.4.0" 57867 55878 sources."string-width-7.2.0" 57868 55879 sources."strip-ansi-7.1.0" 57869 - sources."type-fest-4.34.1" 55880 + sources."type-fest-4.35.0" 57870 55881 sources."widest-line-5.0.0" 57871 55882 sources."wrap-ansi-9.0.0" 57872 55883 ]; ··· 58034 56045 } 58035 56046 ) 58036 56047 sources."run-async-3.0.0" 58037 - sources."rxjs-7.8.1" 56048 + sources."rxjs-7.8.2" 58038 56049 sources."safe-buffer-5.2.1" 58039 56050 sources."safer-buffer-2.1.2" 58040 56051 sources."shebang-command-2.0.0" ··· 58106 56117 sources."@scure/bip39-1.3.0" 58107 56118 sources."@types/atob-2.1.4" 58108 56119 sources."@types/inquirer-6.5.0" 58109 - sources."@types/node-22.13.4" 56120 + sources."@types/node-22.13.5" 58110 56121 sources."@types/through-0.0.33" 58111 56122 sources."ajv-6.12.6" 58112 56123 sources."ansi-escapes-4.3.2" ··· 58461 56472 sources."fsevents-1.2.13" 58462 56473 sources."function-bind-1.1.2" 58463 56474 sources."functions-have-names-1.2.3" 58464 - sources."get-intrinsic-1.2.7" 56475 + sources."get-intrinsic-1.3.0" 58465 56476 sources."get-proto-1.0.1" 58466 56477 sources."get-value-2.0.6" 58467 56478 sources."glob-7.2.3" ··· 58551 56562 sources."mkdirp-0.5.6" 58552 56563 sources."ms-2.1.3" 58553 56564 sources."mute-stream-0.0.8" 58554 - sources."nan-2.22.0" 56565 + sources."nan-2.22.1" 58555 56566 ( 58556 56567 sources."nanomatch-1.2.13" 58557 56568 // { ··· 58904 56915 sources."@types/common-tags-1.8.4" 58905 56916 sources."@types/http-cache-semantics-4.0.4" 58906 56917 sources."@types/keyv-3.1.4" 58907 - sources."@types/node-22.13.4" 56918 + sources."@types/node-22.13.5" 58908 56919 sources."@types/responselike-1.0.3" 58909 56920 sources."@types/yoga-layout-1.9.2" 58910 56921 sources."abort-controller-3.0.0" ··· 58935 56946 } 58936 56947 ) 58937 56948 sources."camelcase-6.3.0" 58938 - sources."caniuse-lite-1.0.30001699" 56949 + sources."caniuse-lite-1.0.30001700" 58939 56950 sources."chalk-4.1.2" 58940 56951 sources."chardet-0.7.0" 58941 56952 sources."ci-info-2.0.0" ··· 58997 57008 sources."domhandler-4.3.1" 58998 57009 sources."domutils-2.8.0" 58999 57010 sources."dot-prop-5.3.0" 59000 - sources."electron-to-chromium-1.5.101" 57011 + sources."electron-to-chromium-1.5.104" 59001 57012 sources."emoji-regex-8.0.0" 59002 57013 ( 59003 57014 sources."encoding-0.1.13" ··· 59264 57275 sources."es-errors-1.3.0" 59265 57276 sources."es-object-atoms-1.1.1" 59266 57277 sources."function-bind-1.1.2" 59267 - sources."get-intrinsic-1.2.7" 57278 + sources."get-intrinsic-1.3.0" 59268 57279 sources."get-proto-1.0.1" 59269 57280 sources."gopd-1.2.0" 59270 57281 sources."has-flag-4.0.0" ··· 59760 57771 ) 59761 57772 sources."moment-2.30.1" 59762 57773 sources."mv-2.1.1" 59763 - sources."nan-2.22.0" 57774 + sources."nan-2.22.1" 59764 57775 sources."ncp-2.0.0" 59765 57776 sources."once-1.4.0" 59766 57777 sources."optimist-0.6.1" ··· 59894 57905 ) 59895 57906 sources."@aws-sdk/config-resolver-3.296.0" 59896 57907 ( 59897 - sources."@aws-sdk/core-3.749.0" 57908 + sources."@aws-sdk/core-3.750.0" 59898 57909 // { 59899 57910 dependencies = [ 59900 57911 sources."@aws-sdk/types-3.734.0" ··· 59910 57921 sources."@aws-sdk/credential-provider-sso-3.296.0" 59911 57922 sources."@aws-sdk/credential-provider-web-identity-3.296.0" 59912 57923 ( 59913 - sources."@aws-sdk/crt-loader-3.749.0" 57924 + sources."@aws-sdk/crt-loader-3.750.0" 59914 57925 // { 59915 57926 dependencies = [ 59916 - sources."@aws-sdk/middleware-user-agent-3.749.0" 57927 + sources."@aws-sdk/middleware-user-agent-3.750.0" 59917 57928 sources."@aws-sdk/types-3.734.0" 59918 57929 sources."@aws-sdk/util-endpoints-3.743.0" 59919 - sources."@aws-sdk/util-user-agent-node-3.749.0" 57930 + sources."@aws-sdk/util-user-agent-node-3.750.0" 59920 57931 ]; 59921 57932 } 59922 57933 ) ··· 59967 57978 sources."@aws-sdk/shared-ini-file-loader-3.296.0" 59968 57979 sources."@aws-sdk/signature-v4-3.296.0" 59969 57980 ( 59970 - sources."@aws-sdk/signature-v4-crt-3.749.0" 57981 + sources."@aws-sdk/signature-v4-crt-3.750.0" 59971 57982 // { 59972 57983 dependencies = [ 59973 - sources."@aws-sdk/middleware-sdk-s3-3.749.0" 59974 - sources."@aws-sdk/signature-v4-multi-region-3.749.0" 57984 + sources."@aws-sdk/middleware-sdk-s3-3.750.0" 57985 + sources."@aws-sdk/signature-v4-multi-region-3.750.0" 59975 57986 sources."@aws-sdk/types-3.734.0" 59976 57987 sources."@aws-sdk/util-arn-parser-3.723.0" 59977 57988 ]; ··· 60008 58019 sources."@aws-sdk/xml-builder-3.295.0" 60009 58020 sources."@babel/runtime-7.26.9" 60010 58021 sources."@cronvel/get-pixels-3.4.1" 60011 - sources."@csstools/color-helpers-5.0.1" 60012 - sources."@csstools/css-calc-2.1.1" 60013 - sources."@csstools/css-color-parser-3.0.7" 58022 + sources."@csstools/color-helpers-5.0.2" 58023 + sources."@csstools/css-calc-2.1.2" 58024 + sources."@csstools/css-color-parser-3.0.8" 60014 58025 sources."@csstools/css-parser-algorithms-3.0.4" 60015 58026 sources."@csstools/css-tokenizer-3.0.3" 60016 58027 sources."@gar/promisify-1.1.3" ··· 60058 58069 sources."@npmcli/fs-1.1.1" 60059 58070 sources."@npmcli/move-file-1.1.2" 60060 58071 sources."@smithy/abort-controller-4.0.1" 60061 - sources."@smithy/core-3.1.4" 58072 + sources."@smithy/core-3.1.5" 60062 58073 sources."@smithy/fetch-http-handler-5.0.1" 60063 58074 sources."@smithy/is-array-buffer-4.0.0" 60064 - sources."@smithy/middleware-endpoint-4.0.5" 58075 + sources."@smithy/middleware-endpoint-4.0.6" 60065 58076 sources."@smithy/middleware-serde-4.0.2" 60066 58077 sources."@smithy/middleware-stack-4.0.1" 60067 58078 sources."@smithy/node-config-provider-4.0.1" 60068 - sources."@smithy/node-http-handler-4.0.2" 58079 + sources."@smithy/node-http-handler-4.0.3" 60069 58080 sources."@smithy/property-provider-4.0.1" 60070 58081 sources."@smithy/protocol-http-5.0.1" 60071 58082 sources."@smithy/querystring-builder-4.0.1" 60072 58083 sources."@smithy/querystring-parser-4.0.1" 60073 58084 sources."@smithy/shared-ini-file-loader-4.0.1" 60074 58085 sources."@smithy/signature-v4-5.0.1" 60075 - sources."@smithy/smithy-client-4.1.5" 58086 + sources."@smithy/smithy-client-4.1.6" 60076 58087 sources."@smithy/types-4.1.0" 60077 58088 sources."@smithy/url-parser-4.0.1" 60078 58089 sources."@smithy/util-base64-4.0.0" ··· 60082 58093 sources."@smithy/util-endpoints-3.0.1" 60083 58094 sources."@smithy/util-hex-encoding-4.0.0" 60084 58095 sources."@smithy/util-middleware-4.0.1" 60085 - sources."@smithy/util-stream-4.1.1" 58096 + sources."@smithy/util-stream-4.1.2" 60086 58097 sources."@smithy/util-uri-escape-4.0.0" 60087 58098 sources."@smithy/util-utf8-4.0.0" 60088 58099 sources."@tokenizer/token-0.3.0" 60089 58100 sources."@tootallnate/once-1.1.2" 60090 58101 sources."@types/nanoid-3.0.0" 60091 - sources."@types/node-22.13.4" 58102 + sources."@types/node-22.13.5" 60092 58103 sources."@types/ws-8.5.14" 60093 58104 sources."abbrev-1.1.1" 60094 58105 sources."abort-controller-3.0.0" ··· 60320 58331 sources."for-each-property-0.0.4" 60321 58332 sources."for-each-property-deep-0.0.3" 60322 58333 ( 60323 - sources."foreground-child-3.3.0" 58334 + sources."foreground-child-3.3.1" 60324 58335 // { 60325 58336 dependencies = [ 60326 58337 sources."signal-exit-4.1.0" ··· 60351 58362 sources."fs.realpath-1.0.0" 60352 58363 sources."function-bind-1.1.2" 60353 58364 sources."gauge-3.0.2" 60354 - sources."get-intrinsic-1.2.7" 58365 + sources."get-intrinsic-1.3.0" 60355 58366 sources."get-proto-1.0.1" 60356 58367 sources."get-prototype-chain-1.0.1" 60357 58368 sources."get-stdin-5.0.1" ··· 60653 58664 sources."ms-2.1.3" 60654 58665 sources."multiparty-4.2.3" 60655 58666 sources."mustache-4.2.0" 60656 - sources."nan-2.22.0" 58667 + sources."nan-2.22.1" 60657 58668 sources."nanoid-3.3.7" 60658 58669 sources."napi-build-utils-2.0.0" 60659 58670 sources."ndarray-1.0.19" ··· 60935 58946 ) 60936 58947 sources."strip-final-newline-2.0.0" 60937 58948 sources."strip-json-comments-2.0.1" 60938 - sources."strnum-1.0.5" 58949 + sources."strnum-1.1.1" 60939 58950 sources."strtok3-6.3.0" 60940 58951 sources."supports-color-7.2.0" 60941 58952 sources."symbol-tree-3.2.4" ··· 61062 59073 } 61063 59074 ) 61064 59075 sources."wrappy-1.0.2" 61065 - sources."ws-8.18.0" 59076 + sources."ws-8.18.1" 61066 59077 sources."xml-name-validator-5.0.0" 61067 59078 sources."xml2js-0.4.23" 61068 59079 sources."xmlbuilder-11.0.1" ··· 61105 59116 sources."eastasianwidth-0.2.0" 61106 59117 sources."editorconfig-1.0.4" 61107 59118 sources."emoji-regex-9.2.2" 61108 - sources."foreground-child-3.3.0" 59119 + sources."foreground-child-3.3.1" 61109 59120 ( 61110 59121 sources."glob-10.4.5" 61111 59122 // { ··· 61379 59390 sources."form-data-4.0.2" 61380 59391 sources."formidable-2.1.2" 61381 59392 sources."function-bind-1.1.2" 61382 - sources."get-intrinsic-1.2.7" 59393 + sources."get-intrinsic-1.3.0" 61383 59394 sources."get-proto-1.0.1" 61384 59395 sources."gopd-1.2.0" 61385 59396 sources."graphlib-2.1.8" ··· 61438 59449 dependencies = [ 61439 59450 sources."@polka/url-1.0.0-next.28" 61440 59451 sources."@tinyhttp/accepts-2.2.3" 61441 - sources."@tinyhttp/app-2.5.0" 59452 + sources."@tinyhttp/app-2.5.2" 61442 59453 sources."@tinyhttp/content-disposition-2.2.2" 61443 59454 sources."@tinyhttp/content-type-0.1.4" 61444 59455 sources."@tinyhttp/cookie-2.1.1" ··· 61446 59457 sources."@tinyhttp/cors-2.0.1" 61447 59458 sources."@tinyhttp/encode-url-2.1.1" 61448 59459 sources."@tinyhttp/etag-2.1.2" 61449 - sources."@tinyhttp/forwarded-2.1.1" 59460 + sources."@tinyhttp/forwarded-2.1.2" 61450 59461 sources."@tinyhttp/logger-2.0.0" 61451 - sources."@tinyhttp/proxy-addr-2.2.0" 61452 - sources."@tinyhttp/req-2.2.4" 61453 - sources."@tinyhttp/res-2.2.4" 59462 + sources."@tinyhttp/proxy-addr-2.2.1" 59463 + sources."@tinyhttp/req-2.2.5" 59464 + sources."@tinyhttp/res-2.2.5" 61454 59465 sources."@tinyhttp/router-2.2.3" 61455 59466 sources."@tinyhttp/send-2.2.3" 61456 59467 sources."@tinyhttp/type-is-2.2.4" ··· 61471 59482 sources."lowdb-7.0.1" 61472 59483 sources."milliparsec-4.0.0" 61473 59484 sources."mime-4.0.4" 61474 - sources."mrmime-2.0.0" 59485 + sources."mrmime-2.0.1" 61475 59486 sources."negotiator-0.6.4" 61476 59487 sources."readdirp-4.1.2" 61477 59488 sources."regexparam-2.0.2" ··· 61479 59490 sources."sort-on-6.1.0" 61480 59491 sources."steno-4.0.2" 61481 59492 sources."totalist-3.0.1" 61482 - sources."type-fest-4.34.1" 59493 + sources."type-fest-4.35.0" 61483 59494 ]; 61484 59495 buildInputs = globalBuildInputs; 61485 59496 meta = { ··· 61719 59730 sources."fsevents-1.2.13" 61720 59731 sources."function-bind-1.1.2" 61721 59732 sources."get-caller-file-1.0.3" 61722 - sources."get-intrinsic-1.2.7" 59733 + sources."get-intrinsic-1.3.0" 61723 59734 sources."get-proto-1.0.1" 61724 59735 sources."get-value-2.0.6" 61725 59736 sources."getpass-0.1.7" ··· 61844 59855 sources."mkdirp-0.5.6" 61845 59856 sources."morgan-1.10.0" 61846 59857 sources."ms-2.0.0" 61847 - sources."nan-2.22.0" 59858 + sources."nan-2.22.1" 61848 59859 ( 61849 59860 sources."nanomatch-1.2.13" 61850 59861 // { ··· 62292 60303 sources."@xmpp/websocket-0.13.3" 62293 60304 // { 62294 60305 dependencies = [ 62295 - sources."ws-8.18.0" 60306 + sources."ws-8.18.1" 62296 60307 ]; 62297 60308 } 62298 60309 ) ··· 62363 60374 sources."call-bind-1.0.8" 62364 60375 sources."call-bind-apply-helpers-1.0.2" 62365 60376 sources."call-bound-1.0.3" 62366 - sources."caniuse-lite-1.0.30001699" 60377 + sources."caniuse-lite-1.0.30001700" 62367 60378 sources."canvas-2.11.2" 62368 60379 sources."chalk-4.1.2" 62369 60380 sources."chardet-1.6.1" ··· 62428 60439 sources."dotenv-8.6.0" 62429 60440 sources."dunder-proto-1.0.1" 62430 60441 sources."ee-first-1.1.1" 62431 - sources."electron-to-chromium-1.5.101" 60442 + sources."electron-to-chromium-1.5.104" 62432 60443 sources."emoji-regex-8.0.0" 62433 60444 sources."encodeurl-2.0.0" 62434 60445 ( ··· 62533 60544 sources."gauge-3.0.2" 62534 60545 sources."gensync-1.0.0-beta.2" 62535 60546 sources."get-caller-file-2.0.5" 62536 - sources."get-intrinsic-1.2.7" 60547 + sources."get-intrinsic-1.3.0" 62537 60548 sources."get-proto-1.0.1" 62538 60549 sources."get-symbol-description-1.1.0" 62539 60550 sources."github-from-package-0.0.0" ··· 62679 60690 sources."mkdirp-classic-0.5.3" 62680 60691 sources."ms-2.1.3" 62681 60692 sources."multistream-4.1.0" 62682 - sources."nan-2.22.0" 60693 + sources."nan-2.22.1" 62683 60694 sources."napi-build-utils-1.0.2" 62684 60695 sources."negotiator-0.6.3" 62685 60696 sources."node-abi-3.74.0" ··· 63175 61186 } 63176 61187 ) 63177 61188 sources."ms-2.1.3" 63178 - sources."nan-2.22.0" 61189 + sources."nan-2.22.1" 63179 61190 ( 63180 61191 sources."nanomatch-1.2.13" 63181 61192 // { ··· 63521 61532 sources."fresh-0.5.2" 63522 61533 sources."fsevents-1.2.13" 63523 61534 sources."function-bind-1.1.2" 63524 - sources."get-intrinsic-1.2.7" 61535 + sources."get-intrinsic-1.3.0" 63525 61536 sources."get-proto-1.0.1" 63526 61537 sources."get-value-2.0.6" 63527 61538 sources."getpass-0.1.7" ··· 63635 61646 } 63636 61647 ) 63637 61648 sources."ms-2.0.0" 63638 - sources."nan-2.22.0" 61649 + sources."nan-2.22.1" 63639 61650 ( 63640 61651 sources."nanomatch-1.2.13" 63641 61652 // { ··· 64007 62018 sources."@types/commander-2.12.5" 64008 62019 sources."@types/diff-3.5.8" 64009 62020 sources."@types/get-stdin-5.0.1" 64010 - sources."@types/node-22.13.4" 62021 + sources."@types/node-22.13.5" 64011 62022 sources."commander-2.20.3" 64012 62023 sources."diff-3.5.0" 64013 62024 sources."get-stdin-5.0.1" ··· 64193 62204 sources."function-bind-1.1.2" 64194 62205 sources."generate-function-2.3.1" 64195 62206 sources."generate-object-property-1.2.0" 64196 - sources."get-intrinsic-1.2.7" 62207 + sources."get-intrinsic-1.3.0" 64197 62208 sources."get-proto-1.0.1" 64198 62209 sources."getpass-0.1.7" 64199 62210 sources."glob-7.2.3" ··· 64533 62544 sources."fill-range-7.1.1" 64534 62545 sources."find-up-5.0.0" 64535 62546 sources."flat-5.0.2" 64536 - sources."foreground-child-3.3.0" 62547 + sources."foreground-child-3.3.1" 64537 62548 sources."get-caller-file-2.0.5" 64538 62549 ( 64539 62550 sources."glob-10.4.5" ··· 64670 62681 sources."form-data-4.0.2" 64671 62682 sources."formidable-2.1.2" 64672 62683 sources."function-bind-1.1.2" 64673 - sources."get-intrinsic-1.2.7" 62684 + sources."get-intrinsic-1.3.0" 64674 62685 sources."get-proto-1.0.1" 64675 62686 sources."gopd-1.2.0" 64676 62687 sources."graphlib-2.1.8" ··· 65035 63046 sources."@pnpm/npm-conf-2.3.1" 65036 63047 sources."@samverschueren/stream-to-observable-0.3.1" 65037 63048 sources."@sindresorhus/merge-streams-2.3.0" 65038 - sources."@types/node-22.13.4" 63049 + sources."@types/node-22.13.5" 65039 63050 sources."@types/normalize-package-data-2.4.4" 65040 63051 sources."ansi-align-3.0.1" 65041 63052 sources."ansi-escapes-4.3.2" ··· 65054 63065 sources."emoji-regex-10.4.0" 65055 63066 sources."string-width-7.2.0" 65056 63067 sources."strip-ansi-7.1.0" 65057 - sources."type-fest-4.34.1" 63068 + sources."type-fest-4.35.0" 65058 63069 sources."wrap-ansi-9.0.0" 65059 63070 ]; 65060 63071 } ··· 65112 63123 sources."dot-prop-9.0.0" 65113 63124 // { 65114 63125 dependencies = [ 65115 - sources."type-fest-4.34.1" 63126 + sources."type-fest-4.35.0" 65116 63127 ]; 65117 63128 } 65118 63129 ) ··· 65414 63425 sources."read-package-up-11.0.0" 65415 63426 // { 65416 63427 dependencies = [ 65417 - sources."type-fest-4.34.1" 63428 + sources."type-fest-4.35.0" 65418 63429 ]; 65419 63430 } 65420 63431 ) ··· 65423 63434 // { 65424 63435 dependencies = [ 65425 63436 sources."parse-json-8.1.0" 65426 - sources."type-fest-4.34.1" 63437 + sources."type-fest-4.35.0" 65427 63438 sources."unicorn-magic-0.1.0" 65428 63439 ]; 65429 63440 } ··· 65454 63465 sources."run-async-3.0.0" 65455 63466 sources."run-parallel-1.2.0" 65456 63467 ( 65457 - sources."rxjs-7.8.1" 63468 + sources."rxjs-7.8.2" 65458 63469 // { 65459 63470 dependencies = [ 65460 63471 sources."tslib-2.8.1" ··· 65570 63581 sources."@inquirer/figures-1.0.10" 65571 63582 sources."@inquirer/select-4.0.9" 65572 63583 sources."@inquirer/type-3.0.4" 65573 - sources."@types/node-22.13.4" 63584 + sources."@types/node-22.13.5" 65574 63585 sources."ansi-escapes-4.3.2" 65575 63586 sources."ansi-regex-5.0.1" 65576 63587 sources."ansi-styles-4.3.0" ··· 65704 63715 sources."@types/hast-3.0.4" 65705 63716 sources."@types/json-schema-7.0.15" 65706 63717 sources."@types/mdast-4.0.4" 65707 - sources."@types/node-22.13.4" 63718 + sources."@types/node-22.13.5" 65708 63719 sources."@types/unist-3.0.3" 65709 63720 sources."@types/urijs-1.19.25" 65710 63721 sources."@ungap/structured-clone-1.3.0" ··· 65787 63798 sources."function.prototype.name-1.1.8" 65788 63799 sources."functions-have-names-1.2.3" 65789 63800 sources."get-caller-file-2.0.5" 65790 - sources."get-intrinsic-1.2.7" 63801 + sources."get-intrinsic-1.3.0" 65791 63802 sources."get-proto-1.0.1" 65792 63803 sources."get-stream-6.0.1" 65793 63804 sources."get-symbol-description-1.1.0" ··· 65803 63814 sources."has-symbols-1.1.0" 65804 63815 sources."has-tostringtag-1.0.2" 65805 63816 sources."hasown-2.0.2" 65806 - sources."hast-util-to-html-9.0.4" 63817 + sources."hast-util-to-html-9.0.5" 65807 63818 sources."hast-util-whitespace-3.0.0" 65808 63819 sources."html-void-elements-3.0.0" 65809 63820 sources."http2-client-1.3.5" ··· 65931 63942 sources."picomatch-2.3.1" 65932 63943 sources."pony-cause-1.1.1" 65933 63944 sources."possible-typed-array-names-1.1.0" 65934 - sources."property-information-6.5.0" 63945 + sources."property-information-7.0.0" 65935 63946 sources."punycode.js-2.3.1" 65936 63947 sources."queue-microtask-1.2.3" 65937 63948 sources."readdirp-4.1.2" ··· 66165 64176 sources."@parcel/utils-2.13.3" 66166 64177 sources."@parcel/watcher-2.5.1" 66167 64178 sources."@parcel/workers-2.13.3" 66168 - sources."@swc/core-1.10.16" 64179 + sources."@swc/core-1.10.18" 66169 64180 sources."@swc/counter-0.1.3" 66170 64181 sources."@swc/helpers-0.5.15" 66171 - sources."@swc/types-0.1.17" 64182 + sources."@swc/types-0.1.18" 66172 64183 sources."@trysound/sax-0.2.0" 66173 64184 sources."abab-2.0.6" 66174 64185 sources."acorn-8.14.0" ··· 66203 64214 sources."buffer-from-1.1.2" 66204 64215 sources."callsites-3.1.0" 66205 64216 sources."caniuse-api-3.0.0" 66206 - sources."caniuse-lite-1.0.30001699" 64217 + sources."caniuse-lite-1.0.30001700" 66207 64218 sources."caseless-0.12.0" 66208 64219 sources."chalk-4.1.2" 66209 64220 sources."chrome-trace-event-1.0.4" ··· 66273 64284 sources."dotenv-expand-11.0.7" 66274 64285 sources."eastasianwidth-0.2.0" 66275 64286 sources."ecc-jsbn-0.1.2" 66276 - sources."electron-to-chromium-1.5.101" 64287 + sources."electron-to-chromium-1.5.104" 66277 64288 sources."emoji-regex-9.2.2" 66278 64289 sources."entities-3.0.1" 66279 64290 sources."env-paths-2.2.1" ··· 66289 64300 sources."fast-json-stable-stringify-2.1.0" 66290 64301 sources."fast-levenshtein-2.0.6" 66291 64302 sources."fill-range-7.1.1" 66292 - sources."foreground-child-3.3.0" 64303 + sources."foreground-child-3.3.1" 66293 64304 sources."forever-agent-0.6.1" 66294 64305 sources."form-data-2.3.3" 66295 64306 sources."fs.realpath-1.0.0" ··· 66399 64410 sources."picocolors-1.1.1" 66400 64411 sources."picomatch-2.3.1" 66401 64412 sources."pn-1.1.0" 66402 - sources."postcss-8.5.2" 64413 + sources."postcss-8.5.3" 66403 64414 sources."postcss-calc-10.1.1" 66404 64415 sources."postcss-colormin-7.0.2" 66405 64416 sources."postcss-convert-values-7.0.4" ··· 66740 64751 sources."gelf-stream-1.1.1" 66741 64752 sources."gelfling-0.3.1" 66742 64753 sources."get-caller-file-2.0.5" 66743 - sources."get-intrinsic-1.2.7" 64754 + sources."get-intrinsic-1.3.0" 66744 64755 sources."get-proto-1.0.1" 66745 64756 sources."getpass-0.1.7" 66746 64757 sources."glob-7.2.3" ··· 66803 64814 sources."ms-2.0.0" 66804 64815 sources."msgpack5-3.6.1" 66805 64816 sources."mv-2.1.1" 66806 - sources."nan-2.22.0" 64817 + sources."nan-2.22.1" 66807 64818 sources."ncp-2.0.0" 66808 64819 sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" 66809 64820 sources."neo-async-2.6.2" ··· 67087 65098 sources."function-bind-1.1.2" 67088 65099 sources."functions-have-names-1.2.3" 67089 65100 sources."get-browser-rtc-1.1.0" 67090 - sources."get-intrinsic-1.2.7" 65101 + sources."get-intrinsic-1.3.0" 67091 65102 sources."get-proto-1.0.1" 67092 65103 sources."get-stdin-4.0.1" 67093 65104 sources."glob-7.2.3" ··· 67513 65524 sources."fs.realpath-1.0.0" 67514 65525 sources."function-bind-1.1.2" 67515 65526 sources."get-browser-rtc-1.1.0" 67516 - sources."get-intrinsic-1.2.7" 65527 + sources."get-intrinsic-1.3.0" 67517 65528 sources."get-proto-1.0.1" 67518 65529 sources."getpass-0.1.7" 67519 65530 sources."glob-7.2.3" ··· 67855 65866 postcss = nodeEnv.buildNodePackage { 67856 65867 name = "postcss"; 67857 65868 packageName = "postcss"; 67858 - version = "8.5.2"; 65869 + version = "8.5.3"; 67859 65870 src = fetchurl { 67860 - url = "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz"; 67861 - sha512 = "MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA=="; 65871 + url = "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz"; 65872 + sha512 = "dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="; 67862 65873 }; 67863 65874 dependencies = [ 67864 65875 sources."nanoid-3.3.8" ··· 67899 65910 sources."color-name-1.1.4" 67900 65911 sources."dependency-graph-0.11.0" 67901 65912 sources."emoji-regex-8.0.0" 67902 - sources."esbuild-0.23.1" 65913 + sources."esbuild-0.25.0" 67903 65914 sources."escalade-3.2.0" 67904 65915 sources."fast-glob-3.3.3" 67905 65916 sources."fastq-1.19.0" ··· 67928 65939 sources."picocolors-1.1.1" 67929 65940 sources."picomatch-2.3.1" 67930 65941 sources."pify-2.3.0" 67931 - sources."postcss-8.5.2" 65942 + sources."postcss-8.5.3" 67932 65943 sources."postcss-load-config-5.1.0" 67933 65944 sources."postcss-reporter-7.1.0" 67934 65945 sources."pretty-hrtime-1.0.3" ··· 67945 65956 sources."strip-ansi-6.0.1" 67946 65957 sources."thenby-1.3.4" 67947 65958 sources."to-regex-range-5.0.1" 67948 - sources."tsx-4.19.2" 65959 + sources."tsx-4.19.3" 67949 65960 sources."unicorn-magic-0.3.0" 67950 65961 sources."universalify-2.0.1" 67951 65962 sources."wrap-ansi-7.0.0" ··· 68021 66032 prettier = nodeEnv.buildNodePackage { 68022 66033 name = "prettier"; 68023 66034 packageName = "prettier"; 68024 - version = "3.5.1"; 66035 + version = "3.5.2"; 68025 66036 src = fetchurl { 68026 - url = "https://registry.npmjs.org/prettier/-/prettier-3.5.1.tgz"; 68027 - sha512 = "hPpFQvHwL3Qv5AdRvBFMhnKo4tYxp0ReXiPn2bxkiohEX6mBeBwEpBSQTkD458RaaDKQMYSp4hX4UtfUTA5wDw=="; 66037 + url = "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz"; 66038 + sha512 = "lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg=="; 68028 66039 }; 68029 66040 buildInputs = globalBuildInputs; 68030 66041 meta = { ··· 68039 66050 prettier-plugin-toml = nodeEnv.buildNodePackage { 68040 66051 name = "prettier-plugin-toml"; 68041 66052 packageName = "prettier-plugin-toml"; 68042 - version = "2.0.1"; 66053 + version = "2.0.2"; 68043 66054 src = fetchurl { 68044 - url = "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.1.tgz"; 68045 - sha512 = "99z1YOkViECHtXQjGIigd3talI/ybUI1zB3yniAwUrlWBXupNXThB1hM6bwSMUEj2/+tomTlMtT98F5t4s8IWA=="; 66055 + url = "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.2.tgz"; 66056 + sha512 = "tUIIhyfdVX5DMsLGKX/2qaEwi3W48OkUSR7XC91PRI5jFzhexmaYWkrSP1Xh/eWUcEc0TVMQenM3lB09xLQstQ=="; 68046 66057 }; 68047 66058 dependencies = [ 68048 66059 sources."@taplo/core-0.1.1" 68049 66060 sources."@taplo/lib-0.4.0-alpha.2" 68050 - sources."prettier-3.5.1" 66061 + sources."prettier-3.5.2" 68051 66062 ]; 68052 66063 buildInputs = globalBuildInputs; 68053 66064 meta = { 68054 66065 description = "An opinionated `toml` formatter plugin for Prettier"; 68055 - homepage = "https://github.com/un-ts/prettier/tree/master/packages/prettier"; 66066 + homepage = "https://github.com/un-ts/prettier/tree/master/packages/toml"; 68056 66067 license = "MIT"; 68057 66068 }; 68058 66069 production = true; ··· 68062 66073 "@prisma/language-server" = nodeEnv.buildNodePackage { 68063 66074 name = "_at_prisma_slash_language-server"; 68064 66075 packageName = "@prisma/language-server"; 68065 - version = "6.3.1"; 66076 + version = "6.4.1"; 68066 66077 src = fetchurl { 68067 - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-6.3.1.tgz"; 68068 - sha512 = "bKWHhfQruyz+zCt+fQPuJbvrBp/UgID6QmNyH4urfCTXLk085IbvN+yDpZW1qRLBFvB1+Uk1ZW8ls1nSJrAg5Q=="; 66078 + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-6.4.1.tgz"; 66079 + sha512 = "gCB2QOaw1oFN53I6QB0oNaAPTF3DB9xpSfd9G2wsqoInMwufu+fGJP+d97wqSOmHlavQZJ3//yTQkk7Ws/HzYA=="; 68069 66080 }; 68070 66081 dependencies = [ 68071 - sources."@prisma/prisma-schema-wasm-6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0" 68072 - sources."@prisma/schema-files-loader-6.3.1" 66082 + sources."@prisma/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d" 66083 + sources."@prisma/schema-files-loader-6.4.1" 68073 66084 sources."@types/js-levenshtein-1.1.3" 68074 66085 sources."fs-extra-11.1.1" 68075 66086 sources."graceful-fs-4.2.11" ··· 68121 66132 ) 68122 66133 sources."eastasianwidth-0.2.0" 68123 66134 sources."emoji-regex-9.2.2" 68124 - sources."foreground-child-3.3.0" 66135 + sources."foreground-child-3.3.1" 68125 66136 sources."fs.realpath-1.0.0" 68126 66137 sources."gaze-1.1.3" 68127 66138 ( ··· 68337 66348 sources."function-bind-1.1.2" 68338 66349 sources."gaze-1.1.3" 68339 66350 sources."get-assigned-identifiers-1.2.0" 68340 - sources."get-intrinsic-1.2.7" 66351 + sources."get-intrinsic-1.3.0" 68341 66352 sources."get-proto-1.0.1" 68342 66353 ( 68343 66354 sources."glob-7.2.3" ··· 68667 66678 sources."cross-spawn-7.0.6" 68668 66679 sources."eastasianwidth-0.2.0" 68669 66680 sources."emoji-regex-9.2.2" 68670 - sources."foreground-child-3.3.0" 66681 + sources."foreground-child-3.3.1" 68671 66682 sources."glob-11.0.1" 68672 66683 sources."is-fullwidth-code-point-3.0.0" 68673 66684 sources."isexe-2.0.0" 68674 - sources."jackspeak-4.0.3" 66685 + sources."jackspeak-4.1.0" 68675 66686 sources."lru-cache-11.0.2" 68676 66687 sources."minimatch-10.0.1" 68677 66688 sources."minipass-7.1.2" ··· 68727 66738 rollup = nodeEnv.buildNodePackage { 68728 66739 name = "rollup"; 68729 66740 packageName = "rollup"; 68730 - version = "4.34.7"; 66741 + version = "4.34.8"; 68731 66742 src = fetchurl { 68732 - url = "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz"; 68733 - sha512 = "8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ=="; 66743 + url = "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz"; 66744 + sha512 = "489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ=="; 68734 66745 }; 68735 66746 dependencies = [ 68736 66747 sources."@types/estree-1.0.6" ··· 68745 66756 bypassCache = true; 68746 66757 reconstructLock = true; 68747 66758 }; 68748 - "rust-analyzer-build-deps-../../applications/editors/vscode/extensions/rust-lang.rust-analyzer/build-deps" = 68749 - nodeEnv.buildNodePackage { 68750 - name = "rust-analyzer"; 68751 - packageName = "rust-analyzer"; 68752 - version = "0.3.2029"; 68753 - src = ../../applications/editors/vscode/extensions/rust-lang.rust-analyzer/build-deps; 68754 - dependencies = [ 68755 - sources."@azure/abort-controller-2.1.2" 68756 - sources."@azure/core-auth-1.9.0" 68757 - sources."@azure/core-client-1.9.2" 68758 - sources."@azure/core-rest-pipeline-1.19.0" 68759 - sources."@azure/core-tracing-1.2.0" 68760 - sources."@azure/core-util-1.11.0" 68761 - sources."@azure/identity-4.6.0" 68762 - sources."@azure/logger-1.1.4" 68763 - ( 68764 - sources."@azure/msal-browser-4.2.1" 68765 - // { 68766 - dependencies = [ 68767 - sources."@azure/msal-common-15.1.1" 68768 - ]; 68769 - } 68770 - ) 68771 - sources."@azure/msal-common-14.16.0" 68772 - sources."@azure/msal-node-2.16.2" 68773 - sources."@eslint-community/eslint-utils-4.4.1" 68774 - sources."@eslint-community/regexpp-4.12.1" 68775 - ( 68776 - sources."@eslint/eslintrc-2.1.4" 68777 - // { 68778 - dependencies = [ 68779 - sources."brace-expansion-1.1.11" 68780 - sources."minimatch-3.1.2" 68781 - ]; 68782 - } 68783 - ) 68784 - sources."@eslint/js-8.57.1" 68785 - sources."@hpcc-js/wasm-2.22.4" 68786 - ( 68787 - sources."@humanwhocodes/config-array-0.13.0" 68788 - // { 68789 - dependencies = [ 68790 - sources."brace-expansion-1.1.11" 68791 - sources."minimatch-3.1.2" 68792 - ]; 68793 - } 68794 - ) 68795 - sources."@humanwhocodes/module-importer-1.0.1" 68796 - sources."@humanwhocodes/object-schema-2.0.3" 68797 - sources."@nodelib/fs.scandir-2.1.5" 68798 - sources."@nodelib/fs.stat-2.0.5" 68799 - sources."@nodelib/fs.walk-1.2.8" 68800 - sources."@tsconfig/strictest-2.0.5" 68801 - sources."@types/json-schema-7.0.15" 68802 - sources."@types/node-16.11.68" 68803 - sources."@types/semver-7.5.8" 68804 - sources."@types/vscode-1.78.1" 68805 - sources."@typescript-eslint/eslint-plugin-6.21.0" 68806 - sources."@typescript-eslint/parser-6.21.0" 68807 - sources."@typescript-eslint/scope-manager-6.21.0" 68808 - sources."@typescript-eslint/type-utils-6.21.0" 68809 - sources."@typescript-eslint/types-6.21.0" 68810 - ( 68811 - sources."@typescript-eslint/typescript-estree-6.21.0" 68812 - // { 68813 - dependencies = [ 68814 - sources."minimatch-9.0.3" 68815 - ]; 68816 - } 68817 - ) 68818 - sources."@typescript-eslint/utils-6.21.0" 68819 - sources."@typescript-eslint/visitor-keys-6.21.0" 68820 - sources."@ungap/structured-clone-1.3.0" 68821 - sources."@vscode/test-electron-2.4.1" 68822 - ( 68823 - sources."@vscode/vsce-2.32.0" 68824 - // { 68825 - dependencies = [ 68826 - sources."ansi-styles-3.2.1" 68827 - sources."brace-expansion-1.1.11" 68828 - sources."chalk-2.4.2" 68829 - sources."color-convert-1.9.3" 68830 - sources."color-name-1.1.3" 68831 - sources."commander-6.2.1" 68832 - sources."minimatch-3.1.2" 68833 - ]; 68834 - } 68835 - ) 68836 - sources."@vscode/vsce-sign-2.0.5" 68837 - sources."acorn-8.14.0" 68838 - sources."acorn-jsx-5.3.2" 68839 - sources."agent-base-7.1.3" 68840 - sources."ajv-6.12.6" 68841 - sources."anser-2.3.2" 68842 - sources."ansi-regex-5.0.1" 68843 - sources."ansi-styles-4.3.0" 68844 - sources."argparse-2.0.1" 68845 - sources."array-union-2.1.0" 68846 - sources."asynckit-0.4.0" 68847 - sources."azure-devops-node-api-12.5.0" 68848 - sources."balanced-match-1.0.2" 68849 - sources."base64-js-1.5.1" 68850 - sources."bl-5.1.0" 68851 - sources."boolbase-1.0.0" 68852 - sources."brace-expansion-2.0.1" 68853 - sources."braces-3.0.3" 68854 - sources."buffer-6.0.3" 68855 - sources."buffer-crc32-0.2.13" 68856 - sources."buffer-equal-constant-time-1.0.1" 68857 - sources."call-bind-apply-helpers-1.0.2" 68858 - sources."call-bound-1.0.3" 68859 - sources."callsites-3.1.0" 68860 - sources."chalk-5.4.1" 68861 - sources."cheerio-1.0.0" 68862 - sources."cheerio-select-2.1.0" 68863 - sources."ci-info-2.0.0" 68864 - sources."cli-cursor-4.0.0" 68865 - sources."cli-spinners-2.9.2" 68866 - sources."cliui-8.0.1" 68867 - sources."cockatiel-3.2.1" 68868 - sources."color-convert-2.0.1" 68869 - sources."color-name-1.1.4" 68870 - sources."combined-stream-1.0.8" 68871 - sources."commander-7.2.0" 68872 - sources."concat-map-0.0.1" 68873 - sources."core-util-is-1.0.3" 68874 - sources."cross-spawn-7.0.6" 68875 - sources."css-select-5.1.0" 68876 - sources."css-what-6.1.0" 68877 - sources."d3-7.9.0" 68878 - sources."d3-array-3.2.4" 68879 - sources."d3-axis-3.0.0" 68880 - sources."d3-brush-3.0.0" 68881 - sources."d3-chord-3.0.1" 68882 - sources."d3-color-3.1.0" 68883 - sources."d3-contour-4.0.2" 68884 - sources."d3-delaunay-6.0.4" 68885 - sources."d3-dispatch-3.0.1" 68886 - sources."d3-drag-3.0.0" 68887 - sources."d3-dsv-3.0.1" 68888 - sources."d3-ease-3.0.1" 68889 - sources."d3-fetch-3.0.1" 68890 - sources."d3-force-3.0.0" 68891 - sources."d3-format-3.1.0" 68892 - sources."d3-geo-3.1.1" 68893 - sources."d3-graphviz-5.6.0" 68894 - sources."d3-hierarchy-3.1.2" 68895 - sources."d3-interpolate-3.0.1" 68896 - sources."d3-path-3.1.0" 68897 - sources."d3-polygon-3.0.1" 68898 - sources."d3-quadtree-3.0.1" 68899 - sources."d3-random-3.0.1" 68900 - sources."d3-scale-4.0.2" 68901 - sources."d3-scale-chromatic-3.1.0" 68902 - sources."d3-selection-3.0.0" 68903 - sources."d3-shape-3.2.0" 68904 - sources."d3-time-3.1.0" 68905 - sources."d3-time-format-4.1.0" 68906 - sources."d3-timer-3.0.1" 68907 - sources."d3-transition-3.0.1" 68908 - sources."d3-zoom-3.0.0" 68909 - sources."debug-4.4.0" 68910 - sources."deep-is-0.1.4" 68911 - sources."define-lazy-prop-2.0.0" 68912 - sources."delaunator-5.0.1" 68913 - sources."delayed-stream-1.0.0" 68914 - sources."dir-glob-3.0.1" 68915 - sources."doctrine-3.0.0" 68916 - sources."dom-serializer-2.0.0" 68917 - sources."domelementtype-2.3.0" 68918 - sources."domhandler-5.0.3" 68919 - sources."domutils-3.2.2" 68920 - sources."dunder-proto-1.0.1" 68921 - sources."eastasianwidth-0.2.0" 68922 - sources."ecdsa-sig-formatter-1.0.11" 68923 - sources."emoji-regex-8.0.0" 68924 - sources."encoding-sniffer-0.2.0" 68925 - sources."entities-4.5.0" 68926 - sources."es-define-property-1.0.1" 68927 - sources."es-errors-1.3.0" 68928 - sources."es-object-atoms-1.1.1" 68929 - sources."es-set-tostringtag-2.1.0" 68930 - sources."escalade-3.2.0" 68931 - sources."escape-string-regexp-1.0.5" 68932 - ( 68933 - sources."eslint-8.57.1" 68934 - // { 68935 - dependencies = [ 68936 - sources."brace-expansion-1.1.11" 68937 - sources."chalk-4.1.2" 68938 - sources."escape-string-regexp-4.0.0" 68939 - sources."glob-parent-6.0.2" 68940 - sources."has-flag-4.0.0" 68941 - sources."minimatch-3.1.2" 68942 - sources."supports-color-7.2.0" 68943 - ]; 68944 - } 68945 - ) 68946 - sources."eslint-config-prettier-8.10.0" 68947 - sources."eslint-scope-7.2.2" 68948 - sources."eslint-visitor-keys-3.4.3" 68949 - sources."espree-9.6.1" 68950 - sources."esquery-1.6.0" 68951 - sources."esrecurse-4.3.0" 68952 - sources."estraverse-5.3.0" 68953 - sources."esutils-2.0.3" 68954 - sources."events-3.3.0" 68955 - sources."fast-deep-equal-3.1.3" 68956 - sources."fast-glob-3.3.3" 68957 - sources."fast-json-stable-stringify-2.1.0" 68958 - sources."fast-levenshtein-2.0.6" 68959 - sources."fastq-1.19.0" 68960 - sources."fd-slicer-1.1.0" 68961 - sources."file-entry-cache-6.0.1" 68962 - sources."fill-range-7.1.1" 68963 - sources."find-up-5.0.0" 68964 - sources."flat-cache-3.2.0" 68965 - sources."flatted-3.3.2" 68966 - sources."follow-redirects-1.15.9" 68967 - sources."form-data-4.0.2" 68968 - sources."fs.realpath-1.0.0" 68969 - sources."function-bind-1.1.2" 68970 - sources."get-caller-file-2.0.5" 68971 - sources."get-intrinsic-1.2.7" 68972 - sources."get-proto-1.0.1" 68973 - ( 68974 - sources."glob-7.2.3" 68975 - // { 68976 - dependencies = [ 68977 - sources."brace-expansion-1.1.11" 68978 - sources."minimatch-3.1.2" 68979 - ]; 68980 - } 68981 - ) 68982 - sources."glob-parent-5.1.2" 68983 - sources."globals-13.24.0" 68984 - sources."globby-11.1.0" 68985 - sources."gopd-1.2.0" 68986 - sources."graphemer-1.4.0" 68987 - sources."has-flag-3.0.0" 68988 - sources."has-symbols-1.1.0" 68989 - sources."has-tostringtag-1.0.2" 68990 - sources."hasown-2.0.2" 68991 - sources."hosted-git-info-4.1.0" 68992 - sources."htmlparser2-9.1.0" 68993 - sources."http-proxy-agent-7.0.2" 68994 - sources."https-proxy-agent-7.0.6" 68995 - sources."iconv-lite-0.6.3" 68996 - sources."ieee754-1.2.1" 68997 - sources."ignore-5.3.2" 68998 - sources."immediate-3.0.6" 68999 - sources."import-fresh-3.3.1" 69000 - sources."imurmurhash-0.1.4" 69001 - sources."inflight-1.0.6" 69002 - sources."inherits-2.0.4" 69003 - sources."internmap-2.0.3" 69004 - sources."is-ci-2.0.0" 69005 - sources."is-docker-2.2.1" 69006 - sources."is-extglob-2.1.1" 69007 - sources."is-fullwidth-code-point-3.0.0" 69008 - sources."is-glob-4.0.3" 69009 - sources."is-interactive-2.0.0" 69010 - sources."is-number-7.0.0" 69011 - sources."is-path-inside-3.0.3" 69012 - sources."is-unicode-supported-1.3.0" 69013 - sources."is-wsl-2.2.0" 69014 - sources."isarray-1.0.0" 69015 - sources."isexe-2.0.0" 69016 - sources."js-yaml-4.1.0" 69017 - sources."json-buffer-3.0.1" 69018 - sources."json-schema-traverse-0.4.1" 69019 - sources."json-stable-stringify-without-jsonify-1.0.1" 69020 - sources."jsonc-parser-3.3.1" 69021 - ( 69022 - sources."jsonwebtoken-9.0.2" 69023 - // { 69024 - dependencies = [ 69025 - sources."jwa-1.4.1" 69026 - sources."jws-3.2.2" 69027 - ]; 69028 - } 69029 - ) 69030 - ( 69031 - sources."jszip-3.10.1" 69032 - // { 69033 - dependencies = [ 69034 - sources."readable-stream-2.3.8" 69035 - sources."safe-buffer-5.1.2" 69036 - sources."string_decoder-1.1.1" 69037 - ]; 69038 - } 69039 - ) 69040 - sources."jwa-2.0.0" 69041 - sources."jws-4.0.0" 69042 - sources."keyv-4.5.4" 69043 - sources."leven-3.1.0" 69044 - sources."levn-0.4.1" 69045 - sources."lie-3.3.0" 69046 - sources."linkify-it-3.0.3" 69047 - sources."locate-path-6.0.0" 69048 - sources."lodash.includes-4.3.0" 69049 - sources."lodash.isboolean-3.0.3" 69050 - sources."lodash.isinteger-4.0.4" 69051 - sources."lodash.isnumber-3.0.3" 69052 - sources."lodash.isplainobject-4.0.6" 69053 - sources."lodash.isstring-4.0.1" 69054 - sources."lodash.merge-4.6.2" 69055 - sources."lodash.once-4.1.1" 69056 - sources."log-symbols-5.1.0" 69057 - sources."lru-cache-6.0.0" 69058 - ( 69059 - sources."markdown-it-12.3.2" 69060 - // { 69061 - dependencies = [ 69062 - sources."entities-2.1.0" 69063 - ]; 69064 - } 69065 - ) 69066 - sources."math-intrinsics-1.1.0" 69067 - sources."mdurl-1.0.1" 69068 - sources."merge2-1.4.1" 69069 - sources."micromatch-4.0.8" 69070 - sources."mime-1.6.0" 69071 - sources."mime-db-1.52.0" 69072 - sources."mime-types-2.1.35" 69073 - sources."mimic-fn-2.1.0" 69074 - sources."minimatch-5.1.6" 69075 - sources."ms-2.1.3" 69076 - sources."mute-stream-0.0.8" 69077 - sources."natural-compare-1.4.0" 69078 - sources."nth-check-2.1.1" 69079 - sources."object-inspect-1.13.4" 69080 - sources."once-1.4.0" 69081 - sources."onetime-5.1.2" 69082 - sources."open-8.4.2" 69083 - sources."optionator-0.9.4" 69084 - ( 69085 - sources."ora-7.0.1" 69086 - // { 69087 - dependencies = [ 69088 - sources."ansi-regex-6.1.0" 69089 - sources."emoji-regex-10.4.0" 69090 - sources."string-width-6.1.0" 69091 - sources."strip-ansi-7.1.0" 69092 - ]; 69093 - } 69094 - ) 69095 - ( 69096 - sources."ovsx-0.8.4" 69097 - // { 69098 - dependencies = [ 69099 - sources."commander-6.2.1" 69100 - ]; 69101 - } 69102 - ) 69103 - sources."p-limit-3.1.0" 69104 - sources."p-locate-5.0.0" 69105 - sources."pako-1.0.11" 69106 - sources."parent-module-1.0.1" 69107 - ( 69108 - sources."parse-semver-1.1.1" 69109 - // { 69110 - dependencies = [ 69111 - sources."semver-5.7.2" 69112 - ]; 69113 - } 69114 - ) 69115 - sources."parse5-7.2.1" 69116 - sources."parse5-htmlparser2-tree-adapter-7.1.0" 69117 - sources."parse5-parser-stream-7.1.2" 69118 - sources."path-exists-4.0.0" 69119 - sources."path-is-absolute-1.0.1" 69120 - sources."path-key-3.1.1" 69121 - sources."path-type-4.0.0" 69122 - sources."pend-1.2.0" 69123 - sources."picomatch-2.3.1" 69124 - sources."prelude-ls-1.2.1" 69125 - sources."prettier-3.5.1" 69126 - sources."process-nextick-args-2.0.1" 69127 - sources."punycode-2.3.1" 69128 - sources."qs-6.14.0" 69129 - sources."queue-microtask-1.2.3" 69130 - sources."read-1.0.7" 69131 - sources."readable-stream-3.6.2" 69132 - sources."require-directory-2.1.1" 69133 - sources."resolve-from-4.0.0" 69134 - sources."restore-cursor-4.0.0" 69135 - sources."reusify-1.0.4" 69136 - sources."rimraf-3.0.2" 69137 - sources."robust-predicates-3.0.2" 69138 - sources."run-parallel-1.2.0" 69139 - sources."rw-1.3.3" 69140 - sources."safe-buffer-5.2.1" 69141 - sources."safer-buffer-2.1.2" 69142 - sources."sax-1.4.1" 69143 - sources."semver-7.7.1" 69144 - sources."setimmediate-1.0.5" 69145 - sources."shebang-command-2.0.0" 69146 - sources."shebang-regex-3.0.0" 69147 - sources."side-channel-1.1.0" 69148 - sources."side-channel-list-1.0.0" 69149 - sources."side-channel-map-1.0.1" 69150 - sources."side-channel-weakmap-1.0.2" 69151 - sources."signal-exit-3.0.7" 69152 - sources."slash-3.0.0" 69153 - sources."stdin-discarder-0.1.0" 69154 - sources."stoppable-1.1.0" 69155 - sources."string-width-4.2.3" 69156 - sources."string_decoder-1.3.0" 69157 - sources."strip-ansi-6.0.1" 69158 - sources."strip-json-comments-3.1.1" 69159 - sources."supports-color-5.5.0" 69160 - sources."text-table-0.2.0" 69161 - sources."tmp-0.2.3" 69162 - sources."to-regex-range-5.0.1" 69163 - sources."ts-api-utils-1.4.3" 69164 - sources."tslib-2.8.1" 69165 - sources."tunnel-0.0.6" 69166 - sources."type-check-0.4.0" 69167 - sources."type-fest-0.20.2" 69168 - sources."typed-rest-client-1.8.11" 69169 - sources."typescript-5.7.3" 69170 - sources."uc.micro-1.0.6" 69171 - sources."underscore-1.13.7" 69172 - sources."undici-6.21.1" 69173 - sources."uri-js-4.4.1" 69174 - sources."url-join-4.0.1" 69175 - sources."util-deprecate-1.0.2" 69176 - sources."uuid-8.3.2" 69177 - sources."vscode-jsonrpc-8.1.0" 69178 - sources."vscode-languageclient-8.1.0" 69179 - sources."vscode-languageserver-protocol-3.17.3" 69180 - sources."vscode-languageserver-types-3.17.3" 69181 - sources."whatwg-encoding-3.1.1" 69182 - sources."whatwg-mimetype-4.0.0" 69183 - sources."which-2.0.2" 69184 - sources."word-wrap-1.2.5" 69185 - sources."wrap-ansi-7.0.0" 69186 - sources."wrappy-1.0.2" 69187 - sources."xml2js-0.5.0" 69188 - sources."xmlbuilder-11.0.1" 69189 - sources."y18n-5.0.8" 69190 - sources."yallist-4.0.0" 69191 - sources."yargs-17.7.2" 69192 - sources."yargs-parser-21.1.1" 69193 - sources."yauzl-2.10.0" 69194 - sources."yazl-2.5.1" 69195 - sources."yocto-queue-0.1.0" 69196 - ]; 69197 - buildInputs = globalBuildInputs; 69198 - meta = { 69199 - }; 69200 - production = true; 69201 - bypassCache = true; 69202 - reconstructLock = true; 69203 - }; 69204 66759 sass = nodeEnv.buildNodePackage { 69205 66760 name = "sass"; 69206 66761 packageName = "sass"; 69207 - version = "1.85.0"; 66762 + version = "1.85.1"; 69208 66763 src = fetchurl { 69209 - url = "https://registry.npmjs.org/sass/-/sass-1.85.0.tgz"; 69210 - sha512 = "3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww=="; 66764 + url = "https://registry.npmjs.org/sass/-/sass-1.85.1.tgz"; 66765 + sha512 = "Uk8WpxM5v+0cMR0XjX9KfRIacmSG86RH4DCCZjLU2rFh5tyutt9siAXJ7G+YfxQ99Q6wrRMbMlVl6KqUms71ag=="; 69211 66766 }; 69212 66767 dependencies = [ 69213 66768 sources."chokidar-4.0.3" ··· 69463 67018 sources."minimist-1.2.8" 69464 67019 sources."mkdirp-0.5.6" 69465 67020 sources."mv-2.1.1" 69466 - sources."nan-2.22.0" 67021 + sources."nan-2.22.1" 69467 67022 sources."ncp-2.0.0" 69468 67023 sources."negotiator-0.5.3" 69469 67024 sources."node-uuid-1.4.8" ··· 69589 67144 dependencies = [ 69590 67145 sources."@socket.io/component-emitter-3.1.2" 69591 67146 sources."@types/cors-2.8.17" 69592 - sources."@types/node-22.13.4" 67147 + sources."@types/node-22.13.5" 69593 67148 sources."accepts-1.3.8" 69594 67149 sources."base64id-2.0.0" 69595 67150 sources."bufferutil-4.0.9" ··· 69826 67381 sources."picomatch-4.0.2" 69827 67382 sources."readdirp-4.1.2" 69828 67383 sources."sade-1.8.1" 69829 - sources."svelte-5.20.1" 67384 + sources."svelte-5.20.4" 69830 67385 sources."typescript-5.7.3" 69831 67386 sources."zimmerframe-1.1.2" 69832 67387 ]; ··· 69958 67513 sources."@types/cors-2.8.17" 69959 67514 sources."@types/http-cache-semantics-4.0.4" 69960 67515 sources."@types/keyv-3.1.4" 69961 - sources."@types/node-22.13.4" 67516 + sources."@types/node-22.13.5" 69962 67517 sources."@types/responselike-1.0.3" 69963 67518 sources."abort-controller-3.0.0" 69964 67519 sources."abstract-logging-2.0.1" ··· 70069 67624 sources."forwarded-0.2.0" 70070 67625 sources."fresh-0.5.2" 70071 67626 sources."function-bind-1.1.2" 70072 - sources."get-intrinsic-1.2.7" 67627 + sources."get-intrinsic-1.3.0" 70073 67628 sources."get-proto-1.0.1" 70074 67629 sources."get-stream-5.2.0" 70075 67630 sources."gopd-1.2.0" ··· 70477 68032 sources."fs.realpath-1.0.0" 70478 68033 sources."function-bind-1.1.2" 70479 68034 sources."gauge-2.7.4" 70480 - sources."get-intrinsic-1.2.7" 68035 + sources."get-intrinsic-1.3.0" 70481 68036 sources."get-proto-1.0.1" 70482 68037 sources."get-stream-4.1.0" 70483 68038 sources."getpass-0.1.7" ··· 70573 68128 sources."mkdirp-0.5.6" 70574 68129 sources."ms-2.0.0" 70575 68130 sources."mute-stream-0.0.8" 70576 - sources."nan-2.22.0" 68131 + sources."nan-2.22.1" 70577 68132 ( 70578 68133 sources."needle-2.9.1" 70579 68134 // { ··· 71042 68597 sources."@types/cacheable-request-6.0.3" 71043 68598 sources."@types/http-cache-semantics-4.0.4" 71044 68599 sources."@types/keyv-3.1.4" 71045 - sources."@types/node-22.13.4" 68600 + sources."@types/node-22.13.5" 71046 68601 sources."@types/responselike-1.0.3" 71047 68602 sources."abbrev-1.1.1" 71048 68603 sources."abstract-logging-2.0.1" ··· 71597 69152 sources."@types/cacheable-request-6.0.3" 71598 69153 sources."@types/http-cache-semantics-4.0.4" 71599 69154 sources."@types/keyv-3.1.4" 71600 - sources."@types/node-22.13.4" 69155 + sources."@types/node-22.13.5" 71601 69156 sources."@types/responselike-1.0.3" 71602 69157 sources."abbrev-1.1.1" 71603 69158 sources."abstract-logging-2.0.1" ··· 72614 70169 sources."@jridgewell/resolve-uri-3.1.2" 72615 70170 sources."@jridgewell/sourcemap-codec-1.5.0" 72616 70171 sources."@jridgewell/trace-mapping-0.3.9" 72617 - sources."@swc/core-1.10.16" 70172 + sources."@swc/core-1.10.18" 72618 70173 sources."@swc/counter-0.1.3" 72619 70174 sources."@swc/helpers-0.5.15" 72620 - sources."@swc/types-0.1.17" 72621 - sources."@swc/wasm-1.10.16" 70175 + sources."@swc/types-0.1.18" 70176 + sources."@swc/wasm-1.10.18" 72622 70177 sources."@tsconfig/node10-1.0.11" 72623 70178 sources."@tsconfig/node12-1.0.11" 72624 70179 sources."@tsconfig/node14-1.0.3" 72625 70180 sources."@tsconfig/node16-1.0.4" 72626 - sources."@types/node-22.13.4" 70181 + sources."@types/node-22.13.5" 72627 70182 sources."acorn-8.14.0" 72628 70183 sources."acorn-walk-8.3.4" 72629 70184 sources."arg-4.1.3" ··· 72705 70260 sources."@types/debug-4.1.12" 72706 70261 sources."@types/is-empty-1.2.3" 72707 70262 sources."@types/ms-2.1.0" 72708 - sources."@types/node-22.13.4" 70263 + sources."@types/node-22.13.5" 72709 70264 sources."@types/supports-color-8.1.3" 72710 70265 sources."@types/unist-3.0.3" 72711 70266 sources."abbrev-2.0.0" ··· 72726 70281 sources."error-ex-1.3.2" 72727 70282 sources."extend-3.0.2" 72728 70283 sources."find-up-6.3.0" 72729 - sources."foreground-child-3.3.0" 70284 + sources."foreground-child-3.3.1" 72730 70285 sources."glob-10.4.5" 72731 70286 sources."hosted-git-info-7.0.2" 72732 70287 sources."ignore-6.0.2" ··· 72857 70412 vega-cli = nodeEnv.buildNodePackage { 72858 70413 name = "vega-cli"; 72859 70414 packageName = "vega-cli"; 72860 - version = "5.31.0"; 70415 + version = "5.32.0"; 72861 70416 src = fetchurl { 72862 - url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.31.0.tgz"; 72863 - sha512 = "iAKvyBj2Z6OGJudMugQ0HOw8JCRvapUm4BwMyrDWjV6RyTFczWgIJEhJdvbyn+UabTT4rrzHgDQcxmgzBcepxw=="; 70417 + url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.32.0.tgz"; 70418 + sha512 = "k3PQ6HDp/GgJUBNKN/KdyfVX1JoVGtjdH8uYZKxXZo7Fmky9yMmdw8+vLzcLinaLDsUdUPhh8oiTC6+wdjipAA=="; 72864 70419 }; 72865 70420 dependencies = [ 72866 70421 sources."@mapbox/node-pre-gyp-1.0.11" ··· 72950 70505 ) 72951 70506 sources."mkdirp-1.0.4" 72952 70507 sources."ms-2.1.3" 72953 - sources."nan-2.22.0" 70508 + sources."nan-2.22.1" 72954 70509 sources."node-fetch-2.7.0" 72955 70510 sources."nopt-5.0.0" 72956 70511 sources."npmlog-5.0.1" ··· 72983 70538 ) 72984 70539 sources."tr46-0.0.3" 72985 70540 sources."util-deprecate-1.0.2" 72986 - sources."vega-5.31.0" 70541 + sources."vega-5.32.0" 72987 70542 sources."vega-canvas-1.2.7" 72988 70543 sources."vega-crossfilter-4.1.3" 72989 70544 sources."vega-dataflow-5.7.7" 72990 70545 sources."vega-encode-4.10.2" 72991 70546 sources."vega-event-selector-3.0.1" 72992 - sources."vega-expression-5.1.2" 70547 + sources."vega-expression-5.2.0" 72993 70548 sources."vega-force-4.2.2" 72994 70549 sources."vega-format-1.1.3" 72995 - sources."vega-functions-5.16.0" 70550 + sources."vega-functions-5.17.0" 72996 70551 sources."vega-geo-4.4.3" 72997 70552 sources."vega-hierarchy-4.1.3" 72998 70553 sources."vega-label-1.3.1" 72999 70554 sources."vega-loader-4.5.3" 73000 - sources."vega-parser-6.4.1" 70555 + sources."vega-parser-6.5.0" 73001 70556 sources."vega-projection-1.6.2" 73002 70557 sources."vega-regression-1.3.1" 73003 70558 sources."vega-runtime-6.2.1" 73004 70559 sources."vega-scale-7.4.2" 73005 70560 sources."vega-scenegraph-4.13.1" 73006 - sources."vega-selections-5.5.0" 70561 + sources."vega-selections-5.6.0" 73007 70562 sources."vega-statistics-1.9.0" 73008 70563 sources."vega-time-2.1.3" 73009 70564 sources."vega-transforms-4.12.1" 73010 - sources."vega-typings-1.4.0" 70565 + sources."vega-typings-1.5.0" 73011 70566 sources."vega-util-1.17.3" 73012 - sources."vega-view-5.14.0" 70567 + sources."vega-view-5.15.0" 73013 70568 sources."vega-view-transforms-4.6.1" 73014 70569 sources."vega-voronoi-4.2.4" 73015 70570 sources."vega-wordcloud-4.1.6" ··· 73095 70650 ) 73096 70651 sources."tr46-0.0.3" 73097 70652 sources."tslib-2.8.1" 73098 - sources."vega-5.31.0" 70653 + ( 70654 + sources."vega-5.32.0" 70655 + // { 70656 + dependencies = [ 70657 + sources."vega-expression-5.2.0" 70658 + ]; 70659 + } 70660 + ) 73099 70661 sources."vega-canvas-1.2.7" 73100 70662 sources."vega-crossfilter-4.1.3" 73101 70663 sources."vega-dataflow-5.7.7" ··· 73104 70666 sources."vega-expression-5.1.2" 73105 70667 sources."vega-force-4.2.2" 73106 70668 sources."vega-format-1.1.3" 73107 - sources."vega-functions-5.16.0" 70669 + ( 70670 + sources."vega-functions-5.17.0" 70671 + // { 70672 + dependencies = [ 70673 + sources."vega-expression-5.2.0" 70674 + ]; 70675 + } 70676 + ) 73108 70677 sources."vega-geo-4.4.3" 73109 70678 sources."vega-hierarchy-4.1.3" 73110 70679 sources."vega-label-1.3.1" 73111 70680 sources."vega-loader-4.5.3" 73112 - sources."vega-parser-6.4.1" 70681 + sources."vega-parser-6.5.0" 73113 70682 sources."vega-projection-1.6.2" 73114 70683 sources."vega-regression-1.3.1" 73115 70684 sources."vega-runtime-6.2.1" 73116 70685 sources."vega-scale-7.4.2" 73117 70686 sources."vega-scenegraph-4.13.1" 73118 - sources."vega-selections-5.5.0" 70687 + ( 70688 + sources."vega-selections-5.6.0" 70689 + // { 70690 + dependencies = [ 70691 + sources."vega-expression-5.2.0" 70692 + ]; 70693 + } 70694 + ) 73119 70695 sources."vega-statistics-1.9.0" 73120 70696 sources."vega-time-2.1.3" 73121 70697 sources."vega-transforms-4.12.1" 73122 - sources."vega-typings-1.4.0" 70698 + ( 70699 + sources."vega-typings-1.5.0" 70700 + // { 70701 + dependencies = [ 70702 + sources."vega-expression-5.2.0" 70703 + ]; 70704 + } 70705 + ) 73123 70706 sources."vega-util-1.17.3" 73124 - sources."vega-view-5.14.0" 70707 + sources."vega-view-5.15.0" 73125 70708 sources."vega-view-transforms-4.6.1" 73126 70709 sources."vega-voronoi-4.2.4" 73127 70710 sources."vega-wordcloud-4.1.6" ··· 73145 70728 vercel = nodeEnv.buildNodePackage { 73146 70729 name = "vercel"; 73147 70730 packageName = "vercel"; 73148 - version = "41.1.4"; 70731 + version = "41.2.1"; 73149 70732 src = fetchurl { 73150 - url = "https://registry.npmjs.org/vercel/-/vercel-41.1.4.tgz"; 73151 - sha512 = "arUsQbSQPGxmxoBr1w5fUrghGnWK85Dkj805R8U4syJHYtsKQOUcyp7hB+3Y3z61QPHwUDGVoP2gt15eKEe3Sg=="; 70733 + url = "https://registry.npmjs.org/vercel/-/vercel-41.2.1.tgz"; 70734 + sha512 = "PNYkkVkQVeGd7xFIOzVmnMMrBfWZRbdfeZn7YSJ4FqLufQcWmI5T+nn4oHKyYPDRDWus46tQ7ONXpA3vH6tkvQ=="; 73152 70735 }; 73153 70736 dependencies = [ 73154 70737 sources."@cspotcode/source-map-support-0.8.1" ··· 73188 70771 sources."@nodelib/fs.walk-1.2.8" 73189 70772 sources."@rollup/pluginutils-5.1.4" 73190 70773 sources."@sinclair/typebox-0.25.24" 73191 - sources."@swc/core-1.10.16" 70774 + sources."@swc/core-1.10.18" 73192 70775 sources."@swc/counter-0.1.3" 73193 70776 sources."@swc/helpers-0.5.15" 73194 - sources."@swc/types-0.1.17" 73195 - sources."@swc/wasm-1.10.16" 70777 + sources."@swc/types-0.1.18" 70778 + sources."@swc/wasm-1.10.18" 73196 70779 sources."@tootallnate/once-2.0.0" 73197 - ( 73198 - sources."@ts-morph/common-0.11.1" 73199 - // { 73200 - dependencies = [ 73201 - sources."mkdirp-1.0.4" 73202 - ]; 73203 - } 73204 - ) 70780 + sources."@ts-morph/common-0.11.1" 73205 70781 sources."@tsconfig/node10-1.0.11" 73206 70782 sources."@tsconfig/node12-1.0.11" 73207 70783 sources."@tsconfig/node14-1.0.3" ··· 73209 70785 sources."@types/estree-1.0.6" 73210 70786 sources."@types/json-schema-7.0.15" 73211 70787 sources."@types/node-16.18.11" 73212 - sources."@vercel/build-utils-10.1.0" 70788 + sources."@vercel/build-utils-10.2.0" 73213 70789 sources."@vercel/error-utils-2.0.3" 73214 - sources."@vercel/fun-1.1.4" 70790 + sources."@vercel/fun-1.1.5" 73215 70791 sources."@vercel/gatsby-plugin-vercel-analytics-1.0.11" 73216 - sources."@vercel/gatsby-plugin-vercel-builder-2.0.73" 70792 + sources."@vercel/gatsby-plugin-vercel-builder-2.0.74" 73217 70793 sources."@vercel/go-3.2.1" 73218 - sources."@vercel/hydrogen-1.1.0" 73219 - sources."@vercel/next-4.6.2" 70794 + sources."@vercel/hydrogen-1.2.0" 70795 + sources."@vercel/next-4.7.1" 73220 70796 sources."@vercel/nft-0.27.10" 73221 70797 ( 73222 - sources."@vercel/node-5.1.7" 70798 + sources."@vercel/node-5.1.8" 73223 70799 // { 73224 70800 dependencies = [ 73225 70801 sources."async-listen-3.0.0" ··· 73230 70806 ) 73231 70807 sources."@vercel/python-4.7.1" 73232 70808 ( 73233 - sources."@vercel/redwood-2.2.0" 70809 + sources."@vercel/redwood-2.3.0" 73234 70810 // { 73235 70811 dependencies = [ 73236 70812 sources."semver-6.3.1" ··· 73238 70814 } 73239 70815 ) 73240 70816 ( 73241 - sources."@vercel/remix-builder-5.3.3" 73242 - // { 73243 - dependencies = [ 73244 - sources."path-to-regexp-6.1.0" 73245 - sources."path-to-regexp-updated-6.3.0" 73246 - ]; 73247 - } 73248 - ) 73249 - ( 73250 - sources."@vercel/routing-utils-5.0.2" 70817 + sources."@vercel/remix-builder-5.4.0" 73251 70818 // { 73252 70819 dependencies = [ 73253 - sources."ajv-6.12.6" 73254 - sources."json-schema-traverse-0.4.1" 73255 70820 sources."path-to-regexp-6.1.0" 73256 70821 sources."path-to-regexp-updated-6.3.0" 73257 70822 ]; 73258 70823 } 73259 70824 ) 73260 70825 sources."@vercel/ruby-2.2.0" 73261 - sources."@vercel/static-build-2.6.6" 70826 + sources."@vercel/static-build-2.7.0" 73262 70827 sources."@vercel/static-config-3.0.0" 73263 70828 sources."abbrev-3.0.0" 73264 70829 sources."acorn-8.14.0" ··· 73279 70844 sources."buffer-crc32-0.2.13" 73280 70845 sources."bytes-3.1.0" 73281 70846 sources."chokidar-4.0.0" 73282 - sources."chownr-1.1.4" 70847 + sources."chownr-2.0.0" 73283 70848 sources."cjs-module-lexer-1.2.3" 73284 70849 sources."code-block-writer-10.1.1" 73285 70850 sources."color-convert-2.0.1" ··· 73348 70913 sources."events-intercept-2.0.0" 73349 70914 sources."fast-deep-equal-3.1.3" 73350 70915 sources."fast-glob-3.3.3" 73351 - sources."fast-json-stable-stringify-2.1.0" 73352 70916 sources."fastq-1.19.0" 73353 70917 sources."fd-slicer-1.1.0" 73354 70918 sources."file-uri-to-path-1.0.0" 73355 70919 sources."fill-range-7.1.1" 73356 - sources."foreground-child-3.3.0" 70920 + sources."foreground-child-3.3.1" 73357 70921 sources."fs-extra-11.1.0" 73358 - sources."fs-minipass-1.2.7" 70922 + ( 70923 + sources."fs-minipass-2.1.0" 70924 + // { 70925 + dependencies = [ 70926 + sources."minipass-3.3.6" 70927 + ]; 70928 + } 70929 + ) 73359 70930 sources."fs.realpath-1.0.0" 73360 70931 sources."generic-pool-3.4.2" 73361 70932 sources."glob-7.2.3" ··· 73376 70947 sources."json-schema-to-ts-1.6.4" 73377 70948 sources."json-schema-traverse-1.0.0" 73378 70949 sources."jsonfile-6.1.0" 73379 - ( 73380 - sources."lru-cache-6.0.0" 73381 - // { 73382 - dependencies = [ 73383 - sources."yallist-4.0.0" 73384 - ]; 73385 - } 73386 - ) 70950 + sources."lru-cache-6.0.0" 73387 70951 sources."make-error-1.3.6" 73388 70952 sources."merge2-1.4.1" 73389 70953 sources."micro-9.3.5-canary.3" ··· 73396 70960 } 73397 70961 ) 73398 70962 sources."minimatch-3.1.2" 73399 - sources."minimist-1.2.8" 73400 - sources."minipass-2.9.0" 73401 - sources."minizlib-1.3.3" 73402 - sources."mkdirp-0.5.6" 70963 + sources."minipass-5.0.0" 70964 + ( 70965 + sources."minizlib-2.1.2" 70966 + // { 70967 + dependencies = [ 70968 + sources."minipass-3.3.6" 70969 + ]; 70970 + } 70971 + ) 70972 + sources."mkdirp-1.0.4" 73403 70973 sources."mri-1.2.0" 73404 70974 sources."ms-2.1.1" 73405 70975 sources."node-fetch-2.6.7" ··· 73426 70996 // { 73427 70997 dependencies = [ 73428 70998 sources."lru-cache-10.4.3" 73429 - sources."minipass-7.1.2" 73430 70999 ]; 73431 71000 } 73432 71001 ) ··· 73455 71024 ]; 73456 71025 } 73457 71026 ) 73458 - sources."rollup-4.34.7" 71027 + sources."rollup-4.34.8" 73459 71028 sources."run-parallel-1.2.0" 73460 - sources."safe-buffer-5.2.1" 73461 71029 sources."safer-buffer-2.1.2" 73462 71030 sources."semver-7.5.4" 73463 71031 sources."setprototypeof-1.1.1" ··· 73487 71055 } 73488 71056 ) 73489 71057 sources."strip-ansi-cjs-6.0.1" 73490 - sources."tar-4.4.18" 71058 + sources."tar-6.2.1" 73491 71059 sources."time-span-4.0.0" 73492 71060 sources."tinyexec-0.3.2" 73493 71061 sources."to-regex-range-5.0.1" ··· 73525 71093 sources."wrappy-1.0.2" 73526 71094 sources."xdg-app-paths-5.1.0" 73527 71095 sources."xdg-portable-7.3.0" 73528 - sources."yallist-3.1.1" 71096 + sources."yallist-4.0.0" 73529 71097 sources."yauzl-2.10.0" 73530 71098 sources."yauzl-clone-1.0.4" 73531 71099 sources."yauzl-promise-2.1.3" ··· 73768 71336 sources."@types/eslint-scope-3.7.7" 73769 71337 sources."@types/estree-1.0.6" 73770 71338 sources."@types/json-schema-7.0.15" 73771 - sources."@types/node-22.13.4" 71339 + sources."@types/node-22.13.5" 73772 71340 sources."@webassemblyjs/ast-1.14.1" 73773 71341 sources."@webassemblyjs/floating-point-hex-parser-1.13.2" 73774 71342 sources."@webassemblyjs/helper-api-error-1.13.2" ··· 73792 71360 sources."ajv-keywords-5.1.0" 73793 71361 sources."browserslist-4.24.4" 73794 71362 sources."buffer-from-1.1.2" 73795 - sources."caniuse-lite-1.0.30001699" 71363 + sources."caniuse-lite-1.0.30001700" 73796 71364 sources."chrome-trace-event-1.0.4" 73797 71365 sources."commander-2.20.3" 73798 - sources."electron-to-chromium-1.5.101" 71366 + sources."electron-to-chromium-1.5.104" 73799 71367 sources."enhanced-resolve-5.18.1" 73800 71368 sources."es-module-lexer-1.6.0" 73801 71369 sources."escalade-3.2.0" ··· 74183 71751 sources."run-parallel-limit-1.1.0" 74184 71752 sources."run-series-1.1.9" 74185 71753 sources."rusha-0.8.14" 74186 - sources."rxjs-7.8.1" 71754 + sources."rxjs-7.8.2" 74187 71755 sources."safe-buffer-5.1.2" 74188 71756 sources."safer-buffer-2.1.2" 74189 71757 sources."sax-1.1.4" ··· 74274 71842 sources."winreg-1.2.5" 74275 71843 sources."wrap-ansi-6.2.0" 74276 71844 sources."wrappy-1.0.2" 74277 - sources."ws-8.18.0" 71845 + sources."ws-8.18.1" 74278 71846 sources."xml2js-0.4.23" 74279 71847 sources."xmlbuilder-11.0.1" 74280 71848 sources."y18n-5.0.8"
+4 -4
pkgs/development/node-packages/overrides.nix
··· 179 179 version = esbuild-version; 180 180 src = fetchurl { 181 181 url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-${esbuild-version}.tgz"; 182 - sha512 = "sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ=="; 182 + sha512 = "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw=="; 183 183 }; 184 184 }; 185 185 esbuild-linux-arm64 = { ··· 188 188 version = esbuild-version; 189 189 src = fetchurl { 190 190 url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-${esbuild-version}.tgz"; 191 - sha512 = "sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g=="; 191 + sha512 = "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg=="; 192 192 }; 193 193 }; 194 194 esbuild-darwin-x64 = { ··· 197 197 version = esbuild-version; 198 198 src = fetchurl { 199 199 url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-${esbuild-version}.tgz"; 200 - sha512 = "sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw=="; 200 + sha512 = "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg=="; 201 201 }; 202 202 }; 203 203 esbuild-darwin-arm64 = { ··· 206 206 version = esbuild-version; 207 207 src = fetchurl { 208 208 url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-${esbuild-version}.tgz"; 209 - sha512 = "sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q=="; 209 + sha512 = "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw=="; 210 210 }; 211 211 }; 212 212 in{
+2 -2
pkgs/development/python-modules/atlassian-python-api/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "atlassian-python-api"; 20 - version = "3.41.16"; 20 + version = "3.41.19"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.7"; ··· 26 26 owner = "atlassian-api"; 27 27 repo = pname; 28 28 tag = version; 29 - hash = "sha256-HhFGM8EPGCT3WqVf6WP6VvwsppvzFvHg+ys7GhUUwW0="; 29 + hash = "sha256-i++I3sloBp0v+kB1mmS/CSlSpjOvaFYDTBh+FZr2NS0="; 30 30 }; 31 31 32 32 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/berkeleydb/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "berkeleydb"; 13 - version = "18.1.12"; 13 + version = "18.1.13"; 14 14 pyproject = true; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-SVqBecajayLQ+i9ogfp4PPdSIUooV2BSlgX2CBAd6yg="; 18 + hash = "sha256-PPxNayvSqi8iMDnvh3dzys+RaSyYb9GuFKU/kT7nSrg="; 19 19 }; 20 20 21 21 build-system = [ setuptools ];
+6 -6
pkgs/development/python-modules/blake3/Cargo.lock
··· 1 1 # This file is automatically @generated by Cargo. 2 2 # It is not intended for manual editing. 3 - version = 4 3 + version = 3 4 4 5 5 [[package]] 6 6 name = "arrayref" ··· 22 22 23 23 [[package]] 24 24 name = "blake3" 25 - version = "1.0.1" 25 + version = "1.0.4" 26 26 dependencies = [ 27 27 "blake3 1.5.5", 28 28 "hex", ··· 47 47 48 48 [[package]] 49 49 name = "cc" 50 - version = "1.2.9" 50 + version = "1.2.10" 51 51 source = "registry+https://github.com/rust-lang/crates.io-index" 52 - checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b" 52 + checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229" 53 53 dependencies = [ 54 54 "shlex", 55 55 ] ··· 277 277 278 278 [[package]] 279 279 name = "unicode-ident" 280 - version = "1.0.14" 280 + version = "1.0.15" 281 281 source = "registry+https://github.com/rust-lang/crates.io-index" 282 - checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" 282 + checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243" 283 283 284 284 [[package]] 285 285 name = "unindent"
+2 -2
pkgs/development/python-modules/blake3/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "blake3"; 15 - version = "1.0.2"; 15 + version = "1.0.4"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "oconnor663"; 20 20 repo = "blake3-py"; 21 21 tag = version; 22 - hash = "sha256-Wdy/zAepuMRTyOskC6gxCFkUVCAzR05eZNO/PFjT9sE="; 22 + hash = "sha256-ziAL3F+8YahtrTf4/pYWdsdDfhoh7pND6DAZOn/S2lo="; 23 23 }; 24 24 25 25 postPatch = ''
+2 -2
pkgs/development/python-modules/django-stubs-ext/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "django-stubs-ext"; 16 - version = "5.1.2"; 16 + version = "5.1.3"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 21 21 src = fetchPypi { 22 22 pname = "django_stubs_ext"; 23 23 inherit version; 24 - hash = "sha256-QhwMMCWmjjq44W8GX62bqTM17O/i3ZKgz/l6ZlaAJmw="; 24 + hash = "sha256-PmD4Izfw1Ao2LzSb8VU5FEuW5M6029Ajm+HNcfanStA="; 25 25 }; 26 26 27 27 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/gflanguages/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "gflanguages"; 17 - version = "0.7.2"; 17 + version = "0.7.3"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.7"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-8Zl/UupcmC4fF+j1rLcMGibyNlbAwkSapmnkKP9AZLM="; 24 + hash = "sha256-BRbPD61qb1/CBPhv/jGmiLDdd2mHFqCughYDuaeBo54="; 25 25 }; 26 26 27 27 # Relax the dependency on protobuf 3. Other packages in the Google Fonts
+3 -3
pkgs/development/python-modules/luqum/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "luqum"; 16 - version = "0.13.0"; 16 + version = "1.0.0"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "jurismarches"; 23 23 repo = "luqum"; 24 24 tag = version; 25 - hash = "sha256-lcJCLl0crCl3Y5UlWBMZJR2UtVP96gaJNRxwY9Xn7TM="; 25 + hash = "sha256-X1P7sACcp2yVjW3xWmD88iDT4T9dSDi8yxwDFaRbEsc="; 26 26 }; 27 27 28 28 postPatch = '' ··· 52 52 meta = with lib; { 53 53 description = "Lucene query parser generating ElasticSearch queries"; 54 54 homepage = "https://github.com/jurismarches/luqum"; 55 - changelog = "https://github.com/jurismarches/luqum/releases/tag/${version}"; 55 + changelog = "https://github.com/jurismarches/luqum/releases/tag/${src.tag}"; 56 56 license = licenses.asl20; 57 57 maintainers = with maintainers; [ happysalada ]; 58 58 };
+1 -1
pkgs/development/python-modules/manim-slides/default.nix
··· 95 95 homepage = "https://github.com/jeertmans/manim-slides"; 96 96 license = lib.licenses.mit; 97 97 mainProgram = "manim-slides"; 98 - maintainers = with lib.maintainers; [ soispha ]; 98 + maintainers = with lib.maintainers; [ bpeetz ]; 99 99 }; 100 100 }
+2 -2
pkgs/development/python-modules/mockito/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "mockito"; 13 - version = "1.5.3"; 13 + version = "1.5.4"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-txkoQOfXDsJGOcxeGO/uXUGMg62GwP0r9+ccPkKuCqc="; 20 + hash = "sha256-8A7Vh8MpZt8yk8KUytsxdpRgrfxBVPUrkGcpRqpLMt8="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ hatchling ];
+2 -2
pkgs/development/python-modules/pyworld/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pyworld"; 11 - version = "0.3.4"; 11 + version = "0.3.5"; 12 12 format = "setuptools"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-EGxw7np9jJukiNgCLyAzcGkppA8CZCVrjofaWquYMDo="; 16 + hash = "sha256-G5PlPN22eg5PqjTWz5GaxsZi/rHIwO2QHXG1las5aqM="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cython ];
+3 -3
pkgs/development/python-modules/pyytlounge/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pyytlounge"; 15 - version = "2.1.1"; 15 + version = "2.2.1"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "FabioGNR"; 20 20 repo = "pyytlounge"; 21 - rev = "v${version}"; 22 - hash = "sha256-0QPa3EzOBv5fuw3FGgmoN4KiC4KHo1Z+Svjcneoe0pc="; 21 + tag = "v${version}"; 22 + hash = "sha256-ZK52xh6IGhINQMakfjG759earUgvNoTNeBcUlFBSALo="; 23 23 }; 24 24 25 25 build-system = [ hatchling ];
+1 -1
pkgs/development/python-modules/schemainspect/default.nix
··· 108 108 description = "Schema inspection for PostgreSQL, and potentially others"; 109 109 homepage = "https://github.com/djrobstep/schemainspect"; 110 110 license = with licenses; [ unlicense ]; 111 - maintainers = with maintainers; [ soispha ]; 111 + maintainers = with maintainers; [ bpeetz ]; 112 112 }; 113 113 }
+1 -1
pkgs/development/python-modules/sqlbag/default.nix
··· 82 82 description = "Handy python code for doing database things"; 83 83 homepage = "https://github.com/djrobstep/sqlbag"; 84 84 license = with licenses; [ unlicense ]; 85 - maintainers = with maintainers; [ soispha ]; 85 + maintainers = with maintainers; [ bpeetz ]; 86 86 broken = true; # Fails to build against the current flask version 87 87 }; 88 88 }
+2 -2
pkgs/development/python-modules/verlib2/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "verlib2"; 11 - version = "0.2.1"; 11 + version = "0.3.1"; 12 12 pyproject = true; 13 13 14 14 # This tarball doesn't include tests unfortunately, and the GitHub tarball ··· 19 19 # should work for us as well. 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-0+JmanzxCUK/E0dNdQkuuNdavUGqZ6p5UAQ/WUGdnT8="; 22 + hash = "sha256-KGLxlSjbQA0TAlOitxx8NhbuFOHVS/aDO8CSnSzd0UE="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+6 -5
pkgs/development/python-modules/visions/default.nix
··· 13 13 numpy, 14 14 pandas, 15 15 pillow, 16 + puremagic, 16 17 pydot, 17 18 pygraphviz, 18 19 shapely, ··· 20 21 21 22 buildPythonPackage rec { 22 23 pname = "visions"; 23 - version = "0.7.6"; 24 + version = "0.8.1"; 24 25 pyproject = true; 25 26 26 27 disabled = pythonOlder "3.8"; ··· 28 29 src = fetchFromGitHub { 29 30 owner = "dylan-profiler"; 30 31 repo = "visions"; 31 - rev = "5fe9dd0c2a5ada0162a005c880bac5296686a5aa"; # no 0.7.6 tag in github 32 - hash = "sha256-SZzDXm+faAvrfSOT0fwwAf9IH7upNybwKxbjw1CrHj8="; 32 + rev = "v${version}"; 33 + hash = "sha256-MHseb1XJ0t7jQ45VXKQclYPgddrzmJAC7cde8qqYhNQ="; 33 34 }; 34 35 35 36 nativeBuildInputs = [ setuptools ]; 36 37 37 - propagatedBuildInputs = [ 38 + dependencies = [ 38 39 attrs 39 - imagehash 40 40 multimethod 41 41 networkx 42 42 numpy 43 43 pandas 44 + puremagic 44 45 ]; 45 46 46 47 optional-dependencies = {
+3 -3
pkgs/development/tools/gauge/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gauge"; 9 - version = "1.6.13"; 9 + version = "1.6.14"; 10 10 11 11 patches = [ 12 12 # adds a check which adds an error message when trying to ··· 18 18 owner = "getgauge"; 19 19 repo = "gauge"; 20 20 rev = "v${version}"; 21 - hash = "sha256-oyZDz3SX68rlnAG+JzKeIKyKUjQ+ttTrzthHUwW0b54="; 21 + hash = "sha256-eWVU1uAUAM7GGMI6uTpn+89rdwhNVq4sMIfll6NE2XY="; 22 22 }; 23 23 24 - vendorHash = "sha256-nqyzNbD2j6b34QpFiv2yVxEVkrZkuzcwAt9uqAB2iA4="; 24 + vendorHash = "sha256-VrJhi8PUdZ/M8wV/MzxTY/dhUgEQF9BMK7NRb9GVm1g="; 25 25 26 26 excludedPackages = [ 27 27 "build"
+2 -2
pkgs/misc/lilypond/unstable.nix
··· 5 5 }: 6 6 7 7 lilypond.overrideAttrs (oldAttrs: rec { 8 - version = "2.25.22"; 8 + version = "2.25.24"; 9 9 src = fetchurl { 10 10 url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz"; 11 - hash = "sha256-+p0D//hU/AKVJ6DuPhoK9EOqZxZpTVRugabxidmHYLU="; 11 + hash = "sha256-1n6mJBbZcfQYsmrjWxcG/EtIyF9uHNRVT7fX3+zoXc4="; 12 12 }; 13 13 14 14 passthru.updateScript = {
+2 -2
pkgs/servers/monitoring/prometheus/pve-exporter.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "prometheus_pve_exporter"; 10 - version = "3.4.7"; 10 + version = "3.5.1"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - hash = "sha256-AxjtVgow1aV0vSuSre6s9c7Ru2/U6Q6knmq7B05YCnM="; 14 + hash = "sha256-L5gSPBgip/eR2AxwYhu0BsSIZL64UosKG4DzcdZpzP0="; 15 15 }; 16 16 17 17 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/servers/sql/postgresql/ext/timescaledb.nix
··· 13 13 14 14 buildPostgresqlExtension rec { 15 15 pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}"; 16 - version = "2.18.1"; 16 + version = "2.18.2"; 17 17 18 18 nativeBuildInputs = [ cmake ]; 19 19 buildInputs = [ ··· 25 25 owner = "timescale"; 26 26 repo = "timescaledb"; 27 27 rev = version; 28 - hash = "sha256-Ckrs22lPQb+zx9JNHHB3TQDx9ry+q8+FimvR3OT3npg="; 28 + hash = "sha256-/PKk8/cS6jqL+mhSqFU6gybqDx3ld77RLF/uB+1XJCQ="; 29 29 }; 30 30 31 31 cmakeFlags =
+113 -113
pkgs/tools/admin/pulumi-bin/data.nix
··· 1 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 2 { }: 3 3 { 4 - version = "3.150.0"; 4 + version = "3.152.0"; 5 5 pulumiPkgs = { 6 6 x86_64-linux = [ 7 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.150.0-linux-x64.tar.gz"; 9 - sha256 = "0pdr4przwkbr10c4cyfcvsh0x5lsmdvqcxdifnl7la04si6mla3b"; 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.152.0-linux-x64.tar.gz"; 9 + sha256 = "0zd3wldchwv5ism4klnmmiid56wwz1iirsg8rb9lyj8lj66br3q2"; 10 10 } 11 11 { 12 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.33.1-linux-amd64.tar.gz"; 13 - sha256 = "1k78fsnifcrknr4xlzy30j4rjcz8811h7pnw1dsnqvqzcrjs9zas"; 12 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.35.0-linux-amd64.tar.gz"; 13 + sha256 = "0m25l1iai6ja6n79jb1zzvmz1d087hy1ddhisb8r53nv8awdjz5b"; 14 14 } 15 15 { 16 16 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-linux-amd64.tar.gz"; ··· 21 21 sha256 = "0jg062yhp0nx2lhixs3r7lvjzg0q5h3v1f8pvsp04y8hixq7jip8"; 22 22 } 23 23 { 24 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.2-linux-amd64.tar.gz"; 25 - sha256 = "105qpgq5kc1v82jks5v64i1jx9mw8spmj59dg74sil58lik5wpl8"; 24 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.3-linux-amd64.tar.gz"; 25 + sha256 = "1cn2ii8ryh46axdvnzksx5zlnd59y1bd9janid8g0pvdz9rxgvdq"; 26 26 } 27 27 { 28 28 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-linux-amd64.tar.gz"; 29 29 sha256 = "06kazf5r3r3cdr2cxk2afj1wjmjj0kda038j9vdpfirzpjyy47l3"; 30 30 } 31 31 { 32 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.68.0-linux-amd64.tar.gz"; 33 - sha256 = "0zg8vfqs8m87j6sp3hybzzx8ji6v3v404q5gpmfjrylfs7a4zw8w"; 32 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.69.0-linux-amd64.tar.gz"; 33 + sha256 = "1xd2jg11d4sy1lgwq2bwkqvq3fzjvxvdzax3dwa0nybc3750yd2i"; 34 34 } 35 35 { 36 36 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-linux-amd64.tar.gz"; ··· 41 41 sha256 = "0h3zym30gj8lyj294zj3dimdl2wdir2vmymvv6wr392f9i22m2yn"; 42 42 } 43 43 { 44 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.19.0-linux-amd64.tar.gz"; 45 - sha256 = "19d2q12zs0dmsr6djhy7y35bqjax9mhixa4gz8lv4g78zc9vfkkx"; 44 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.20.0-linux-amd64.tar.gz"; 45 + sha256 = "1dbgwhx1ba92wh9478b24lf3c0w3d2v1q6z7dniyccjimfgdwd29"; 46 46 } 47 47 { 48 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.0-linux-amd64.tar.gz"; 49 - sha256 = "06lgx2260z1b4qgzdkgjbc43f5aya48m0fsys63mgk4pjrjz9hnw"; 48 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.1-linux-amd64.tar.gz"; 49 + sha256 = "1cxwnbms0dyf3a828apfr6x6j3aqwbzwf9gnvmxq7p3kvqzrc7mv"; 50 50 } 51 51 { 52 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.3-linux-amd64.tar.gz"; 53 - sha256 = "0fq1zzbr119zq8minj7rqw5y6552zqqf1lcgy0c059bvd633fxdq"; 52 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.4-linux-amd64.tar.gz"; 53 + sha256 = "1093zzn3yv85bxwf60ig1fh1jdl8zqzql2bmkjs9hk1cxh7wfll3"; 54 54 } 55 55 { 56 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.43.0-linux-amd64.tar.gz"; 57 - sha256 = "0dbvr0r7plvrh5yp03rsnjhhmnw7dl70pg29l216v4iz2ymrc5zk"; 56 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.44.0-linux-amd64.tar.gz"; 57 + sha256 = "0m18f2m5vv1sqyillbiqg67jgddxh05ssb7gmky3n0dfd01ygwqy"; 58 58 } 59 59 { 60 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.39.1-linux-amd64.tar.gz"; 61 - sha256 = "1k39p62sdl3146c8vmz4c8a4p595sk2c2xr8h7q6wrby9dsfxv5y"; 60 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.40.0-linux-amd64.tar.gz"; 61 + sha256 = "01ra2yy0s8qkfz5rz1aybvcvm4b8cxd6s07412naf962li0brjfh"; 62 62 } 63 63 { 64 64 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-linux-amd64.tar.gz"; ··· 73 73 sha256 = "191j823pngyicvgvkjfik9n0nsws2zsqqzykzsad74w59i9cr90c"; 74 74 } 75 75 { 76 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.18.0-linux-amd64.tar.gz"; 77 - sha256 = "08irlwbwy3c41rl90i85a50d3xy4ygsv4bswh3xwd9jdc32rs6xh"; 76 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.20.0-linux-amd64.tar.gz"; 77 + sha256 = "0lfa7kz3vc7hamsl270xijs7szhbdm09hmll6593q6x9wgmaadal"; 78 78 } 79 79 { 80 80 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-linux-amd64.tar.gz"; ··· 97 97 sha256 = "1zayrlizwvp3x56wqvsv5bwznbyryfzgri4xwxw78mvq8zslxpcd"; 98 98 } 99 99 { 100 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.32.0-linux-amd64.tar.gz"; 101 - sha256 = "0j4mlargny1fpc1jxc4md301yqpdp96phpnc9y481gprd8y4jy2x"; 100 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.34.1-linux-amd64.tar.gz"; 101 + sha256 = "06zmvgm45kdwbwqxyz701vff2bw6064d1m1d7gwlmcg318yg8b6a"; 102 102 } 103 103 { 104 104 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-linux-amd64.tar.gz"; 105 105 sha256 = "0991xkdk0jb87q7gjjb34765k8ing9qbm4zhp8ymsqkhhq7h363i"; 106 106 } 107 107 { 108 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.8-linux-amd64.tar.gz"; 109 - sha256 = "0ixhghlybbfmw2gsfc9rj2xagm3z581pi5hnxjw90999fixi1n5x"; 108 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.9-linux-amd64.tar.gz"; 109 + sha256 = "0v4sfah9qvphg8v7p2nwv9x33jis48y2xf1nnlc5lnidqqpfmdkr"; 110 110 } 111 111 { 112 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.2-linux-amd64.tar.gz"; 113 - sha256 = "14djq1m1fk582jcjr131xm26r0gd6si13zyp5l6n01njr30avnpj"; 112 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.3-linux-amd64.tar.gz"; 113 + sha256 = "07jg8jd99s75ias1f97inyqb5mag7ypf2jhnqyhcl49sjiswmqrx"; 114 114 } 115 115 { 116 116 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-linux-amd64.tar.gz"; ··· 125 125 sha256 = "147dmg9gv8b3pifmqwjz9skvidryb8wkayvghdd6pziyqncbqwzb"; 126 126 } 127 127 { 128 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.0-linux-amd64.tar.gz"; 129 - sha256 = "124pag54vhis0j0b5f35h95ljs5xh2mbq85933vadmzsds7lb884"; 128 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.1-linux-amd64.tar.gz"; 129 + sha256 = "0a6ada48c8mkv7w01lv6wckjxav6hg46gg89f0sf0yi0s219isxn"; 130 130 } 131 131 { 132 132 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-linux-amd64.tar.gz"; ··· 163 163 ]; 164 164 x86_64-darwin = [ 165 165 { 166 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.150.0-darwin-x64.tar.gz"; 167 - sha256 = "1c07s1xcys8r7jdnikkv0s03b7y003cvybijqmwxfq89wn95g5x9"; 166 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.152.0-darwin-x64.tar.gz"; 167 + sha256 = "074kh9ylwzq9z7kijgk3gagnnxn5kh95pv2785zly3qj7vk53br2"; 168 168 } 169 169 { 170 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.33.1-darwin-amd64.tar.gz"; 171 - sha256 = "1hxyr5wzasqr7spxvw450vz82ckf9g53zhz9dkzj6yzpg1dbw8qd"; 170 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.35.0-darwin-amd64.tar.gz"; 171 + sha256 = "1rj4fn0m182c6laihgx3h92zyqw77qajxygv3k8md4f0b4wvnd7q"; 172 172 } 173 173 { 174 174 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-darwin-amd64.tar.gz"; ··· 179 179 sha256 = "1mm51klxsqsgdz53m7zfbw3fh5vwwn1l1rxzwd1hjhm3giasqfv9"; 180 180 } 181 181 { 182 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.2-darwin-amd64.tar.gz"; 183 - sha256 = "0gpk3imvizrxsp1j6w17dvzzgpk05i979159l0wlgg9vc0xkbf2q"; 182 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.3-darwin-amd64.tar.gz"; 183 + sha256 = "19a5sfg2j74ji73cszsqak4gdyk1x7l7p0rpss8j5xnwbyw1y0nf"; 184 184 } 185 185 { 186 186 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-darwin-amd64.tar.gz"; 187 187 sha256 = "1yclkdpmm8y92wbyhb87h3vdhcibhcvfppv1nvwhqd3bbx3zk1rb"; 188 188 } 189 189 { 190 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.68.0-darwin-amd64.tar.gz"; 191 - sha256 = "1ck9377yshn8742k1757xmx2wkpybfdpbfq86nz7i83xnm67vwg4"; 190 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.69.0-darwin-amd64.tar.gz"; 191 + sha256 = "11kffaw8f061qd1pkvb5l22ixmqydilb43a5s35h2y54jfwyfk0f"; 192 192 } 193 193 { 194 194 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-darwin-amd64.tar.gz"; ··· 199 199 sha256 = "1j952sjqhp42a1s8fxn5li8mjfvl9as3ydhwdpslx8pzc8ykr2zj"; 200 200 } 201 201 { 202 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.19.0-darwin-amd64.tar.gz"; 203 - sha256 = "1038d064l47m2058d9vpbl81d793h9q58whhxqs7vmc2wg99050c"; 202 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.20.0-darwin-amd64.tar.gz"; 203 + sha256 = "01ry0xj3hghqcp0jp5jfmxnkgk1cf9nz356glma21dsfv5c9h2gc"; 204 204 } 205 205 { 206 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.0-darwin-amd64.tar.gz"; 207 - sha256 = "1j1fcf4h0vbrrrfhrxqj3nns5c0ix4l9g0m154pgxs3lb4cxwsa0"; 206 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.1-darwin-amd64.tar.gz"; 207 + sha256 = "03gbylbr6d5h7mmiw5g96nxlg8snw12zgj45dmfbx65v1qxkvn7q"; 208 208 } 209 209 { 210 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.3-darwin-amd64.tar.gz"; 211 - sha256 = "15ym540lhzwi5k2nplcsxgf1yxxndiznmjda38wwky9hxxvgc260"; 210 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.4-darwin-amd64.tar.gz"; 211 + sha256 = "1f064fmzyr1d1axl6vdggh1jp6p1akqiy7jbywwzy0rcqipqd2mr"; 212 212 } 213 213 { 214 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.43.0-darwin-amd64.tar.gz"; 215 - sha256 = "16jmnc1mnxb652agd08qaqdzfqgnqd6al3wrvmac07gd4frq719k"; 214 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.44.0-darwin-amd64.tar.gz"; 215 + sha256 = "1gb8v5k8gxpk9ydxhbanj9fixs1hc07438w6dmypapnicngiyi3f"; 216 216 } 217 217 { 218 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.39.1-darwin-amd64.tar.gz"; 219 - sha256 = "1158ggixh1h8xpq5q12zlffjr5clxgix75fy0dwshf3r4269bmch"; 218 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.40.0-darwin-amd64.tar.gz"; 219 + sha256 = "06wn2l7x3470rzhd6wkvb0kg44yam0a743chkndyzkf3g95mw0c3"; 220 220 } 221 221 { 222 222 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-darwin-amd64.tar.gz"; ··· 231 231 sha256 = "0qqzfdibgwzgnv79as3l6k8hh4nviq2i0xsgzsvjkklzf2szyh8k"; 232 232 } 233 233 { 234 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.18.0-darwin-amd64.tar.gz"; 235 - sha256 = "001s7nrmhsbrz49ilphr5882mk7lqq4w6qdfi2i24jjcbbij8v9w"; 234 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.20.0-darwin-amd64.tar.gz"; 235 + sha256 = "1vnv7njpcf7x2vmjhrrpqgjn82wkbq1rr32yankzbrfyzkpsmwck"; 236 236 } 237 237 { 238 238 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-darwin-amd64.tar.gz"; ··· 255 255 sha256 = "11874cc1x1insma8fgw251g73jxxhkfrk4c5ad801vvn986jigip"; 256 256 } 257 257 { 258 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.32.0-darwin-amd64.tar.gz"; 259 - sha256 = "13lm4b6yl4xxgl0axn3mdnki0f80qmk8iq8w8v36yq3qcdwhp0ah"; 258 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.34.1-darwin-amd64.tar.gz"; 259 + sha256 = "16vcckj74i7s3i6fhmgxl6c8mpj1c3zcra51vpagnf2c48fmsg6v"; 260 260 } 261 261 { 262 262 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-darwin-amd64.tar.gz"; 263 263 sha256 = "120zpffjxa0fywlrsxx6ymzmvrk6wr3lph6l9sm6dhd9ik6810li"; 264 264 } 265 265 { 266 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.8-darwin-amd64.tar.gz"; 267 - sha256 = "089bqwh5vpamnswnrakzph4myw3nf0xrgh8snnq2m8lb2k4wkp4p"; 266 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.9-darwin-amd64.tar.gz"; 267 + sha256 = "0dl22mjxiaxzasd58cnb9rrxnqlkx84bhkyd7pk0jys7ra375r44"; 268 268 } 269 269 { 270 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.2-darwin-amd64.tar.gz"; 271 - sha256 = "0b81ih0387ksbajb8r1n5vh2l40mmwbmg8maxv18xnl8lmqlfw43"; 270 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.3-darwin-amd64.tar.gz"; 271 + sha256 = "14fllfabpb8xliwsl4psdqaffvk86i1yi59aigax1f3zz0y73705"; 272 272 } 273 273 { 274 274 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-darwin-amd64.tar.gz"; ··· 283 283 sha256 = "02mq6mnjbfkhwfm9fsgixw8imnxyrgl3zjh2v7z6la0qn888k9yi"; 284 284 } 285 285 { 286 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.0-darwin-amd64.tar.gz"; 287 - sha256 = "17m6h1ign1b8rymidjk2lg0p43y0yzcgd8fvbjfmmxy6p4pcdjz4"; 286 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.1-darwin-amd64.tar.gz"; 287 + sha256 = "065gjq19n1ws8ig2nli78ayq1hwhrk5bs9hazibvmiad4q189bmv"; 288 288 } 289 289 { 290 290 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-darwin-amd64.tar.gz"; ··· 321 321 ]; 322 322 aarch64-linux = [ 323 323 { 324 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.150.0-linux-arm64.tar.gz"; 325 - sha256 = "1dyw5yfxb5l9bbjafdr5x5sm6j045cj44gigr50px5gci7h7cy3c"; 324 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.152.0-linux-arm64.tar.gz"; 325 + sha256 = "1xi3g6wwnhmfsw176px1ijbrixl1klspyagdb3s2lf1wfzrx5chi"; 326 326 } 327 327 { 328 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.33.1-linux-arm64.tar.gz"; 329 - sha256 = "06sxs66cdavs7bgs3b0mr1ywlsfgbdf1ikhyicllq9nnf8hw11ca"; 328 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.35.0-linux-arm64.tar.gz"; 329 + sha256 = "0jb91frd5y0bqbps1yqjqvdcdjs5xnyycs1iil5hrlr3c5gzmbhk"; 330 330 } 331 331 { 332 332 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-linux-arm64.tar.gz"; ··· 337 337 sha256 = "1ihf580aad9cz95211jxk7l4mvwnxhlvdmxlr70h4drjp377y59h"; 338 338 } 339 339 { 340 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.2-linux-arm64.tar.gz"; 341 - sha256 = "1jbgwycdpixvz6cc8vm66akim9d2mlmbb7h241n3mjvdndhsjkab"; 340 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.3-linux-arm64.tar.gz"; 341 + sha256 = "0n2kiqcqpkqiapzvh1a5cz1sv0431k4c0s62wczbynyj8f838ywk"; 342 342 } 343 343 { 344 344 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-linux-arm64.tar.gz"; 345 345 sha256 = "0xpfjwdhapyfc1562pxbvgmcmljvvsxdiymrwvcfhn08sdgpmas2"; 346 346 } 347 347 { 348 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.68.0-linux-arm64.tar.gz"; 349 - sha256 = "013bjgdd5ih4cznxf6b3nfhm9r3ah9s2z0w247c7ad14paiw1l21"; 348 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.69.0-linux-arm64.tar.gz"; 349 + sha256 = "0m5m2kb5kfdkwbjhpbzk9l4s56s6y32bgkjg6gvfggg6gxrrxvg6"; 350 350 } 351 351 { 352 352 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-linux-arm64.tar.gz"; ··· 357 357 sha256 = "1d4a5xyx55mscqq4wqgvilfagk8mg49xnhwp5vx1i274kgdq7a7z"; 358 358 } 359 359 { 360 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.19.0-linux-arm64.tar.gz"; 361 - sha256 = "1xcv4py5g7wdah5xdfz01ppp5x9wa8ha27zi3afx83d5anz3g49n"; 360 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.20.0-linux-arm64.tar.gz"; 361 + sha256 = "00mhcz8lyjlgxwan69br5bq1bvzglcnclwmpplcrzpwsqiwbgwss"; 362 362 } 363 363 { 364 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.0-linux-arm64.tar.gz"; 365 - sha256 = "06bdmy0jl25qjqclkl8yc408hmkycf6ypxskwz4inr0s1lz6q5xb"; 364 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.1-linux-arm64.tar.gz"; 365 + sha256 = "1v27xjbbpw4cvabxqg0yhb3z568q76n7qqly7s0inqzy6mqixpjs"; 366 366 } 367 367 { 368 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.3-linux-arm64.tar.gz"; 369 - sha256 = "0i4hwjj4j4q9qrrzb47k243hgcs7rhdk2xir6af5h4nds9z0h4yh"; 368 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.4-linux-arm64.tar.gz"; 369 + sha256 = "0lybz7g4zv08ycnpfwck1n2lsw98h75paamgdq7ha271yn1k58yx"; 370 370 } 371 371 { 372 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.43.0-linux-arm64.tar.gz"; 373 - sha256 = "0jb7m7x7m330ijn7v4720qi1ldbj9blkj50qzpxivazwa5s42dgk"; 372 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.44.0-linux-arm64.tar.gz"; 373 + sha256 = "0pqas89fgsiz74qbvqpvj60nvhcy06574v4g2qvbavm6rnz24k6h"; 374 374 } 375 375 { 376 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.39.1-linux-arm64.tar.gz"; 377 - sha256 = "01xn8k4swvxwph3h2wkskjshr9h920gzs9lkr9jwnc3f6s7j2n6p"; 376 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.40.0-linux-arm64.tar.gz"; 377 + sha256 = "1yq1bmrh15ji5fnibs87ngnbf3qc02jk7sknh1fj2k93nv1kxzha"; 378 378 } 379 379 { 380 380 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-linux-arm64.tar.gz"; ··· 389 389 sha256 = "1dyg5k7giny2d26yw222kahdnbfwmhr8d1nkrn3i1ycqsb1g573j"; 390 390 } 391 391 { 392 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.18.0-linux-arm64.tar.gz"; 393 - sha256 = "1db1va4mf5brc6lhf4sj89pr6c6va2m6gb77dqnk2x6xf6qnffvx"; 392 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.20.0-linux-arm64.tar.gz"; 393 + sha256 = "1vkdjyywikqkw1capz6ky3ggdqmiwaz9gxr0mx5g8sbd4vzssx0l"; 394 394 } 395 395 { 396 396 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-linux-arm64.tar.gz"; ··· 413 413 sha256 = "0a2sgn0jn3vfn8i69iaigksvfnmfs2dm44chzgmwpgfyif7wzk9l"; 414 414 } 415 415 { 416 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.32.0-linux-arm64.tar.gz"; 417 - sha256 = "1sh5mkmz7n9jncay79dy9k9nb1x27ayrqkhki47q2rbz7qkrspkx"; 416 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.34.1-linux-arm64.tar.gz"; 417 + sha256 = "1xqb3c6kfabng7aflp4acgp1dclxv7fv2l56wr23s15p5q3ck8r4"; 418 418 } 419 419 { 420 420 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-linux-arm64.tar.gz"; 421 421 sha256 = "1d8vl712v82azbjdi8j7s69h839ni7pdgg96273s7cfx276x5nq3"; 422 422 } 423 423 { 424 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.8-linux-arm64.tar.gz"; 425 - sha256 = "04cdylvp7g1x7zsh78x2h78mav907nl9gbqa7l6ccfihfgfc1g47"; 424 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.9-linux-arm64.tar.gz"; 425 + sha256 = "0qx0drh92m5k5q3mc104jv0zcg5xyx16fbc9vrgr1m07axr5x5cf"; 426 426 } 427 427 { 428 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.2-linux-arm64.tar.gz"; 429 - sha256 = "14j85z6yg45y38yl1dk6qjl429xhs7alka2s7m600g8a6xs064z2"; 428 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.3-linux-arm64.tar.gz"; 429 + sha256 = "0s05pdxscpq5n6i744pcrgvws8fy96mv80k6g2vb3gn25dw247b8"; 430 430 } 431 431 { 432 432 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-linux-arm64.tar.gz"; ··· 441 441 sha256 = "1qghb1kj1flr36hcpk2r85ly833hm3z80lvwdw8rh2gz8ch6wi21"; 442 442 } 443 443 { 444 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.0-linux-arm64.tar.gz"; 445 - sha256 = "0v70agspybl0qmcmhhjqr8k47vvvhvipfw17hm54pr4v4bi3irmz"; 444 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.1-linux-arm64.tar.gz"; 445 + sha256 = "1f1pqscwrwrakdxwp0ly1iawcaqbn70zahayav133cqi22rb26ps"; 446 446 } 447 447 { 448 448 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-linux-arm64.tar.gz"; ··· 479 479 ]; 480 480 aarch64-darwin = [ 481 481 { 482 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.150.0-darwin-arm64.tar.gz"; 483 - sha256 = "0hbc63ki7h7m99f2v83rg1kicsl3jd4pjvc1fcmvs4zfzhwyvxl3"; 482 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.152.0-darwin-arm64.tar.gz"; 483 + sha256 = "0ikp8m4z7b8k6ql4blc617fgmdjllnwjwwma6yicv9n23cnmk8gp"; 484 484 } 485 485 { 486 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.33.1-darwin-arm64.tar.gz"; 487 - sha256 = "1inxcss49ikfmxsyvv30c3ikqzzmr2p4643y40mv4fri6dnbk9dp"; 486 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.35.0-darwin-arm64.tar.gz"; 487 + sha256 = "1lbv0bd6kz0d50306b9y27xllf2lmmwnj5fz15p36p1dawz029r1"; 488 488 } 489 489 { 490 490 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-darwin-arm64.tar.gz"; ··· 495 495 sha256 = "1m71v28yr25ikj0sfd8h9dfnpd53g4jhs6lcxjzz9mb645vvsl0h"; 496 496 } 497 497 { 498 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.2-darwin-arm64.tar.gz"; 499 - sha256 = "0rzyr14v0cwrvwh383snh6sxdspszk8yi391h0vm0x8wvaq1a5ba"; 498 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.3-darwin-arm64.tar.gz"; 499 + sha256 = "1g3badq0zhjs69lyh6d9mpj0c77jqlgapbm03scbamgjzq0zzbdl"; 500 500 } 501 501 { 502 502 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-darwin-arm64.tar.gz"; 503 503 sha256 = "09ss5j92ra4bs5vmsqq2sgs30nalsb1bs3s0njn72fsc1cd6n0qz"; 504 504 } 505 505 { 506 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.68.0-darwin-arm64.tar.gz"; 507 - sha256 = "1zs9vgmz9hwv1impdfibg0ks8i5mdc9pis676qcvs7phlbg3yvn4"; 506 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.69.0-darwin-arm64.tar.gz"; 507 + sha256 = "1n3h0imw151grqz64r5wa0pm6wjad53sy01li1v800q993fxga7w"; 508 508 } 509 509 { 510 510 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-darwin-arm64.tar.gz"; ··· 515 515 sha256 = "1x4ij8qv9jq39fbacirjvk96hc117da5ll3fzrmgpkvjc1mall01"; 516 516 } 517 517 { 518 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.19.0-darwin-arm64.tar.gz"; 519 - sha256 = "065600j782v38w4hrbyqn0l6871s2j8s08xk560m145jnzza9p4x"; 518 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.20.0-darwin-arm64.tar.gz"; 519 + sha256 = "114njwjir2zk6fzfxiyjch97js6p0v2cr41v199zm2ff0h90727q"; 520 520 } 521 521 { 522 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.0-darwin-arm64.tar.gz"; 523 - sha256 = "0cmmmgdh5g6cmrhmmmfhn22bd3xw7xckfkdyvgcnn6x42wfyp0l9"; 522 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.1-darwin-arm64.tar.gz"; 523 + sha256 = "1kpwxfav3395khvy8ga0j12m572791krgmklby4sarfjgg0b6j3z"; 524 524 } 525 525 { 526 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.3-darwin-arm64.tar.gz"; 527 - sha256 = "1ydh3yl29kpqxwsmrrrlghlpmww1s16rjc116wb000gnj60c0bx5"; 526 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.4-darwin-arm64.tar.gz"; 527 + sha256 = "01sqq37yghlk0772j1vd3l124a2fcwkkz3fb8lsilk33gwb7hjgk"; 528 528 } 529 529 { 530 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.43.0-darwin-arm64.tar.gz"; 531 - sha256 = "1hh85s0fkybq9g5lzyh7qvb5sm3kwv5ma8lzzkrm10pqvf2jv01f"; 530 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.44.0-darwin-arm64.tar.gz"; 531 + sha256 = "1h2shfpdf8x2v0c2m0w3dbm1swd5vrhn2jsyp6m92qp5cgywy8lm"; 532 532 } 533 533 { 534 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.39.1-darwin-arm64.tar.gz"; 535 - sha256 = "0p595chxlk73spf0swf9b3fyj4j0c4hblpr8x1h5v6h673lwqd86"; 534 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.40.0-darwin-arm64.tar.gz"; 535 + sha256 = "0ydfg59ifgm0y09zis282f9aaqq31xkkh2nq5r9fgxs7wnxk9694"; 536 536 } 537 537 { 538 538 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-darwin-arm64.tar.gz"; ··· 547 547 sha256 = "17cm719jsh6rc7lwd64kg7qdlxlclvwrky9598f85kbvnv6n0xa8"; 548 548 } 549 549 { 550 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.18.0-darwin-arm64.tar.gz"; 551 - sha256 = "10vjyhk84phr632s1ns2d6vkzi415ris1sh8az6jwnp510cnqmin"; 550 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.20.0-darwin-arm64.tar.gz"; 551 + sha256 = "1l3jl4nwvhp58lybv4lll2qb8d400nx6kb504prh84i67my685ni"; 552 552 } 553 553 { 554 554 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-darwin-arm64.tar.gz"; ··· 571 571 sha256 = "0ssxxb7067ybz2wgvz2s9v67g39f53p7q22n9mcrq4185j9c3a4r"; 572 572 } 573 573 { 574 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.32.0-darwin-arm64.tar.gz"; 575 - sha256 = "12qy4ypskf1g1mmcwk7a8lnjjmsnblprb9i120ppvdbb64j06iv0"; 574 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.34.1-darwin-arm64.tar.gz"; 575 + sha256 = "04jsz384k1b794afanbrb289gp197qbpnhnw4gpbcpdk0g4biy5f"; 576 576 } 577 577 { 578 578 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-darwin-arm64.tar.gz"; 579 579 sha256 = "1rl99l5bvc5yhy5z3millws7xzdlcypwxyvhmy6k1lqx200pwm13"; 580 580 } 581 581 { 582 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.8-darwin-arm64.tar.gz"; 583 - sha256 = "1b8p0m7zy3ajq2my9zwinkiamj1bjbg3988s30697rz2fs9vxx6x"; 582 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.9-darwin-arm64.tar.gz"; 583 + sha256 = "06vpfyxrxx1syzy01qq1ii3d0f734vpyrlvqb93nyprbhckrlsvx"; 584 584 } 585 585 { 586 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.2-darwin-arm64.tar.gz"; 587 - sha256 = "073b4a0ywk0ln1pk6diaqipbf6j1a06gvgsgmyfplgv2frii3z7g"; 586 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.3-darwin-arm64.tar.gz"; 587 + sha256 = "196q5r38hssgdi6zfag6yfm3h2wvlqc57xbhca3kjfbri1cyl9ic"; 588 588 } 589 589 { 590 590 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-darwin-arm64.tar.gz"; ··· 599 599 sha256 = "022x01wxl7zj65n25slijnb0is266xrg26sbb1z408bipv4svxgk"; 600 600 } 601 601 { 602 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.0-darwin-arm64.tar.gz"; 603 - sha256 = "1r2zcxm2lgxl7x7v7shmq6r2ain90shb53vxdgjcnzjh3mhi92f5"; 602 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.1-darwin-arm64.tar.gz"; 603 + sha256 = "1maffq6lhh7cgsp23vaaxd00rvxnkrbzgafjhdbnxavc5x78fvw4"; 604 604 } 605 605 { 606 606 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-darwin-arm64.tar.gz";
+14 -14
pkgs/tools/typesetting/tex/texpresso/default.nix pkgs/by-name/te/texpresso/package.nix
··· 13 13 openjpeg, 14 14 gumbo, 15 15 libjpeg, 16 - texpresso-tectonic, 16 + callPackage, 17 17 }: 18 18 19 - stdenv.mkDerivation rec { 19 + stdenv.mkDerivation (finalAttrs: { 20 20 pname = "texpresso"; 21 21 version = "0-unstable-2025-01-29"; 22 + 23 + src = fetchFromGitHub { 24 + owner = "let-def"; 25 + repo = "texpresso"; 26 + rev = "c42a5912f501f180984840fa8adf9ffc09c5ac13"; 27 + hash = "sha256-T/vou7OcGtNoodCrznmjBLxg6ZAFDCjhpYgNyZaf44g="; 28 + }; 22 29 23 30 postPatch = '' 24 31 substituteInPlace Makefile \ ··· 39 46 libjpeg 40 47 ]; 41 48 42 - src = fetchFromGitHub { 43 - owner = "let-def"; 44 - repo = "texpresso"; 45 - rev = "c42a5912f501f180984840fa8adf9ffc09c5ac13"; 46 - hash = "sha256-T/vou7OcGtNoodCrznmjBLxg6ZAFDCjhpYgNyZaf44g="; 47 - }; 48 - 49 49 buildFlags = [ "texpresso" ]; 50 50 51 51 env.NIX_CFLAGS_COMPILE = toString ( ··· 56 56 57 57 installPhase = '' 58 58 runHook preInstall 59 - install -Dm0755 -t "$out/bin/" "build/${pname}" 59 + install -Dm0755 -t "$out/bin/" "build/${finalAttrs.pname}" 60 60 runHook postInstall 61 61 ''; 62 62 63 63 # needs to have texpresso-tonic on its path 64 64 postInstall = '' 65 65 wrapProgram $out/bin/texpresso \ 66 - --prefix PATH : ${lib.makeBinPath [ texpresso-tectonic ]} 66 + --prefix PATH : ${lib.makeBinPath [ finalAttrs.finalPackage.passthru.tectonic ]} 67 67 ''; 68 68 69 69 passthru = { 70 - tectonic = texpresso-tectonic; 70 + tectonic = callPackage ./tectonic.nix { }; 71 71 updateScript = writeScript "update-texpresso" '' 72 72 #!/usr/bin/env nix-shell 73 73 #!nix-shell -i bash -p curl jq nix-update ··· 79 79 }; 80 80 81 81 meta = { 82 - inherit (src.meta) homepage; 82 + inherit (finalAttrs.src.meta) homepage; 83 83 description = "Live rendering and error reporting for LaTeX"; 84 84 maintainers = with lib.maintainers; [ nickhu ]; 85 85 license = lib.licenses.mit; 86 86 platforms = lib.platforms.unix; 87 87 }; 88 - } 88 + })
-33
pkgs/tools/typesetting/tex/texpresso/tectonic.nix
··· 1 - { tectonic-unwrapped, fetchFromGitHub }: 2 - tectonic-unwrapped.override (old: { 3 - rustPlatform = old.rustPlatform // { 4 - buildRustPackage = 5 - args: 6 - old.rustPlatform.buildRustPackage ( 7 - args 8 - // { 9 - pname = "texpresso-tonic"; 10 - src = fetchFromGitHub { 11 - owner = "let-def"; 12 - repo = "tectonic"; 13 - rev = "b38cb3b2529bba947d520ac29fbb7873409bd270"; 14 - hash = "sha256-ap7fEPHsASAphIQkjcvk1CC7egTdxaUh7IpSS5os4W8="; 15 - fetchSubmodules = true; 16 - }; 17 - useFetchCargoVendor = true; 18 - cargoHash = "sha256-mqhbIv5r/5EDRDfP2BymXv9se2NCKxzRGqNqwqbD9A0="; 19 - # binary has a different name, bundled tests won't work 20 - doCheck = false; 21 - postInstall = '' 22 - ${args.postInstall or ""} 23 - 24 - # Remove the broken `nextonic` symlink 25 - # It points to `tectonic`, which doesn't exist because the exe is 26 - # renamed to texpresso-tonic 27 - rm $out/bin/nextonic 28 - ''; 29 - meta.mainProgram = "texpresso-tonic"; 30 - } 31 - ); 32 - }; 33 - })
+5 -17
pkgs/top-level/all-packages.nix
··· 1404 1404 1405 1405 py65 = with python3.pkgs; toPythonApplication py65; 1406 1406 1407 - ripes = qt6Packages.callPackage ../applications/emulators/ripes { }; 1408 - 1409 1407 rmg-wayland = callPackage ../by-name/rm/rmg/package.nix { 1410 1408 withWayland = true; 1411 1409 }; ··· 10624 10622 fmt = fmt_11; 10625 10623 }; 10626 10624 10627 - texpresso = callPackage ../tools/typesetting/tex/texpresso { 10628 - texpresso-tectonic = callPackage ../tools/typesetting/tex/texpresso/tectonic.nix { }; 10629 - }; 10630 - 10631 10625 tinyxml = tinyxml2; 10632 10626 10633 10627 tinyxml2 = callPackage ../development/libraries/tinyxml/2.6.2.nix { }; ··· 13390 13384 firefox-esr-unwrapped = firefox-esr-128-unwrapped; 13391 13385 13392 13386 firefox = wrapFirefox firefox-unwrapped { }; 13393 - firefox-beta = wrapFirefox firefox-beta-unwrapped { 13394 - desktopName = "Firefox Beta"; 13395 - }; 13396 - firefox-devedition = wrapFirefox firefox-devedition-unwrapped { 13397 - desktopName = "Firefox Developer Edition"; 13398 - }; 13387 + firefox-beta = wrapFirefox firefox-beta-unwrapped { }; 13388 + firefox-devedition = wrapFirefox firefox-devedition-unwrapped { }; 13399 13389 13400 13390 firefox-mobile = callPackage ../applications/networking/browsers/firefox/mobile-config.nix { }; 13401 13391 13402 13392 firefox-esr-128 = wrapFirefox firefox-esr-128-unwrapped { 13403 13393 nameSuffix = "-esr"; 13404 - desktopName = "Firefox ESR"; 13405 13394 wmClass = "firefox-esr"; 13406 13395 icon = "firefox-esr"; 13407 13396 }; 13408 13397 firefox-esr = firefox-esr-128; 13409 13398 13410 13399 firefox-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { 13400 + inherit (firefox-unwrapped.passthru) applicationName; 13411 13401 channel = "release"; 13412 13402 generated = import ../applications/networking/browsers/firefox-bin/release_sources.nix; 13413 13403 }; ··· 13417 13407 }; 13418 13408 13419 13409 firefox-beta-bin-unwrapped = firefox-bin-unwrapped.override { 13410 + inherit (firefox-beta-unwrapped.passthru) applicationName; 13420 13411 channel = "beta"; 13421 13412 generated = import ../applications/networking/browsers/firefox-bin/beta_sources.nix; 13422 13413 }; 13423 13414 13424 13415 firefox-beta-bin = res.wrapFirefox firefox-beta-bin-unwrapped { 13425 13416 pname = "firefox-beta-bin"; 13426 - desktopName = "Firefox Beta"; 13427 13417 }; 13428 13418 13429 13419 firefox-devedition-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { 13420 + inherit (firefox-devedition-unwrapped.passthru) applicationName; 13430 13421 channel = "developer-edition"; 13431 13422 generated = import ../applications/networking/browsers/firefox-bin/developer-edition_sources.nix; 13432 13423 }; 13433 13424 13434 13425 firefox-devedition-bin = res.wrapFirefox firefox-devedition-bin-unwrapped { 13435 13426 pname = "firefox-devedition-bin"; 13436 - desktopName = "Firefox DevEdition"; 13437 13427 wmClass = "firefox-aurora"; 13438 13428 }; 13439 13429 ··· 15232 15222 thunderbird-128 = wrapThunderbird thunderbirdPackages.thunderbird-128 { }; 15233 15223 15234 15224 thunderbird-bin = wrapThunderbird thunderbird-bin-unwrapped { 15235 - applicationName = "thunderbird"; 15236 15225 pname = "thunderbird-bin"; 15237 - desktopName = "Thunderbird"; 15238 15226 }; 15239 15227 thunderbird-bin-unwrapped = callPackage ../applications/networking/mailreaders/thunderbird-bin { 15240 15228 generated = import ../applications/networking/mailreaders/thunderbird-bin/release_sources.nix;