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 githubId = 115711; 3369 name = "bpaulin"; 3370 }; 3371 Br1ght0ne = { 3372 email = "brightone@protonmail.com"; 3373 github = "Br1ght0ne"; ··· 15677 githubId = 20619776; 15678 name = "moni"; 15679 }; 15680 monsieurp = { 15681 email = "monsieurp@gentoo.org"; 15682 github = "monsieurp"; ··· 22016 github = "SohamG"; 22017 githubId = 7116239; 22018 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 }; 22028 solson = { 22029 email = "scott@solson.me";
··· 3368 githubId = 115711; 3369 name = "bpaulin"; 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 + }; 3379 Br1ght0ne = { 3380 email = "brightone@protonmail.com"; 3381 github = "Br1ght0ne"; ··· 15685 githubId = 20619776; 15686 name = "moni"; 15687 }; 15688 + monkieeboi = { 15689 + name = "MonkieeBoi"; 15690 + github = "MonkieeBoi"; 15691 + githubId = 53400613; 15692 + }; 15693 monsieurp = { 15694 email = "monsieurp@gentoo.org"; 15695 github = "monsieurp"; ··· 22029 github = "SohamG"; 22030 githubId = 7116239; 22031 keys = [ { fingerprint = "E067 520F 5EF2 C175 3F60 50C0 BA46 725F 6A26 7442"; } ]; 22032 }; 22033 solson = { 22034 email = "scott@solson.me";
+2 -1
nixos/modules/tasks/network-interfaces-scripted.nix
··· 77 (hasAttr dev cfg.macvlans) || 78 (hasAttr dev cfg.sits) || 79 (hasAttr dev cfg.vlans) || 80 (hasAttr dev cfg.vswitches) 81 then [ "${dev}-netdev.service" ] 82 else optional (!config.boot.isContainer) (subsystemDevice dev); ··· 94 networkSetup = lib.mkIf needNetworkSetup 95 { description = "Networking Setup"; 96 97 - after = [ "network-pre.target" "systemd-udevd.service" "systemd-sysctl.service" ]; 98 before = [ "network.target" "shutdown.target" ]; 99 wants = [ "network.target" ]; 100 # exclude bridges from the partOf relationship to fix container networking bug #47210
··· 77 (hasAttr dev cfg.macvlans) || 78 (hasAttr dev cfg.sits) || 79 (hasAttr dev cfg.vlans) || 80 + (hasAttr dev cfg.greTunnels) || 81 (hasAttr dev cfg.vswitches) 82 then [ "${dev}-netdev.service" ] 83 else optional (!config.boot.isContainer) (subsystemDevice dev); ··· 95 networkSetup = lib.mkIf needNetworkSetup 96 { description = "Networking Setup"; 97 98 + after = [ "network-pre.target" ]; 99 before = [ "network.target" "shutdown.target" ]; 100 wants = [ "network.target" ]; 101 # exclude bridges from the partOf relationship to fix container networking bug #47210
+2 -1
nixos/tests/dnsdist.nix
··· 92 almost_expiration = server.succeed("date --date '14min'").strip() 93 94 with subtest("The DNSCrypt client can connect to the server"): 95 - client.wait_until_succeeds("journalctl -u dnscrypt-proxy2 --grep '\[server\] OK'") 96 97 with subtest("DNS queries over UDP are working"): 98 client.wait_for_open_port(53) 99 client.succeed("host -U 192.168.0.1 | grep -qF ns.example.org") 100 101 with subtest("DNS queries over TCP are working"):
··· 92 almost_expiration = server.succeed("date --date '14min'").strip() 93 94 with subtest("The DNSCrypt client can connect to the server"): 95 + client.wait_until_succeeds("journalctl -u dnscrypt-proxy2 --grep '\\[server\\] OK'") 96 97 with subtest("DNS queries over UDP are working"): 98 client.wait_for_open_port(53) 99 + client.wait_until_succeeds("host -U 192.168.0.1", timeout=60) 100 client.succeed("host -U 192.168.0.1 | grep -qF ns.example.org") 101 102 with subtest("DNS queries over TCP are working"):
+1 -1
nixos/tests/redlib.nix
··· 3 { 4 name = "redlib"; 5 meta.maintainers = with lib.maintainers; [ 6 - soispha 7 Guanran928 8 ]; 9
··· 3 { 4 name = "redlib"; 5 meta.maintainers = with lib.maintainers; [ 6 + bpeetz 7 Guanran928 8 ]; 9
+10
pkgs/applications/editors/vscode/extensions/charliermarsh.ruff/default.nix
··· 2 stdenvNoCC, 3 lib, 4 vscode-utils, 5 }: 6 7 vscode-utils.buildVscodeMarketplaceExtension { ··· 32 version = "2024.34.0"; 33 } 34 // sources.${stdenvNoCC.system} or (throw "Unsupported system ${stdenvNoCC.system}"); 35 36 meta = { 37 license = lib.licenses.mit;
··· 2 stdenvNoCC, 3 lib, 4 vscode-utils, 5 + ruff, 6 }: 7 8 vscode-utils.buildVscodeMarketplaceExtension { ··· 33 version = "2024.34.0"; 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 + ''; 45 46 meta = { 47 license = lib.licenses.mit;
+13 -8
pkgs/applications/emulators/ripes/default.nix pkgs/by-name/ri/ripes/package.nix
··· 3 stdenv, 4 fetchFromGitHub, 5 pkg-config, 6 - qtbase, 7 - qtsvg, 8 - qtcharts, 9 - wrapQtAppsHook, 10 cmake, 11 python3, 12 unstableGitUpdater, ··· 25 hash = "sha256-aNJTM/s4GNhWVXQxK1R/rIN/NmeKglibQZMh8ENjIzo="; 26 }; 27 28 nativeBuildInputs = [ 29 cmake 30 pkg-config 31 python3 32 - wrapQtAppsHook 33 ]; 34 35 buildInputs = [ 36 - qtbase 37 - qtsvg 38 - qtcharts 39 ]; 40 41 installPhase =
··· 3 stdenv, 4 fetchFromGitHub, 5 pkg-config, 6 + qt6, 7 + cereal, 8 cmake, 9 python3, 10 unstableGitUpdater, ··· 23 hash = "sha256-aNJTM/s4GNhWVXQxK1R/rIN/NmeKglibQZMh8ENjIzo="; 24 }; 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 + 32 nativeBuildInputs = [ 33 cmake 34 pkg-config 35 python3 36 + qt6.wrapQtAppsHook 37 ]; 38 39 buildInputs = [ 40 + cereal 41 + qt6.qtbase 42 + qt6.qtsvg 43 + qt6.qtcharts 44 ]; 45 46 installPhase =
+2 -2
pkgs/applications/misc/lyx/default.nix
··· 13 }: 14 15 mkDerivation rec { 16 - version = "2.4.2.1"; 17 pname = "lyx"; 18 19 src = fetchurl { 20 url = "ftp://ftp.lyx.org/pub/lyx/stable/2.4.x/${pname}-${version}.tar.xz"; 21 - hash = "sha256-HSscer45Hi+0kQneLI4Tp9/mBfJ99o9om/lH36/HpNk="; 22 }; 23 24 # LaTeX is used from $PATH, as people often want to have it with extra pkgs
··· 13 }: 14 15 mkDerivation rec { 16 + version = "2.4.3"; 17 pname = "lyx"; 18 19 src = fetchurl { 20 url = "ftp://ftp.lyx.org/pub/lyx/stable/2.4.x/${pname}-${version}.tar.xz"; 21 + hash = "sha256-+mdh9ZilkVr1CkI90qYHBIvbxUCm1XI4X+Qi31ge6/Y="; 22 }; 23 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 , runtimeShell 21 , systemLocale ? config.i18n.defaultLocale or "en_US" 22 , patchelfUnstable # have to use patchelfUnstable to support --no-clobber-old-sections 23 }: 24 25 let ··· 97 ''; 98 99 passthru = { 100 - inherit binaryName; 101 libName = "firefox-bin-${version}"; 102 ffmpegSupport = true; 103 gssSupport = true;
··· 20 , runtimeShell 21 , systemLocale ? config.i18n.defaultLocale or "en_US" 22 , patchelfUnstable # have to use patchelfUnstable to support --no-clobber-old-sections 23 + , applicationName? "Firefox" 24 }: 25 26 let ··· 98 ''; 99 100 passthru = { 101 + inherit applicationName binaryName; 102 libName = "firefox-bin-${version}"; 103 ffmpegSupport = true; 104 gssSupport = true;
+11 -9
pkgs/applications/networking/browsers/firefox/common.nix
··· 5 , updateScript ? null 6 , binaryName ? "firefox" 7 , application ? "browser" 8 - , applicationName ? "Mozilla Firefox" 9 , branding ? null 10 , requireSigning ? true 11 , allowAddonSideload ? false ··· 119 , pipewireSupport ? waylandSupport && webrtcSupport 120 , pulseaudioSupport ? stdenv.hostPlatform.isLinux, libpulseaudio 121 , sndioSupport ? stdenv.hostPlatform.isLinux, sndio 122 - , waylandSupport ? true, libxkbcommon, libdrm 123 124 ## privacy-related options 125 ··· 200 done 201 ''; 202 203 - distributionIni = pkgs.writeText "distribution.ini" (lib.generators.toINI {} { 204 # Some light branding indicating this build uses our distro preferences 205 Global = { 206 id = "nixos"; 207 version = "1.0"; 208 - about = "${applicationName} for NixOS"; 209 }; 210 Preferences = { 211 # These values are exposed through telemetry ··· 593 594 postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' 595 mkdir -p $out/Applications 596 - cp -r dist/${binaryName}/*.app $out/Applications 597 598 - appBundlePath=(dist/${binaryName}/*.app) 599 - appBundle=''${appBundlePath[0]#dist/${binaryName}} 600 - resourceDir=$out/Applications/$appBundle/Contents/Resources 601 602 '' + lib.optionalString (!stdenv.hostPlatform.isDarwin) '' 603 # Remove SDK cruft. FIXME: move to a separate output? ··· 622 # Some basic testing 623 doInstallCheck = true; 624 installCheckPhase = lib.optionalString buildStdenv.hostPlatform.isDarwin '' 625 - bindir=$out/Applications/$appBundle/Contents/MacOS 626 '' + lib.optionalString (!buildStdenv.hostPlatform.isDarwin) '' 627 bindir=$out/bin 628 '' + '' ··· 630 ''; 631 632 passthru = { 633 inherit application extraPatches; 634 inherit updateScript; 635 inherit alsaSupport;
··· 5 , updateScript ? null 6 , binaryName ? "firefox" 7 , application ? "browser" 8 + , applicationName ? "Firefox" 9 , branding ? null 10 , requireSigning ? true 11 , allowAddonSideload ? false ··· 119 , pipewireSupport ? waylandSupport && webrtcSupport 120 , pulseaudioSupport ? stdenv.hostPlatform.isLinux, libpulseaudio 121 , sndioSupport ? stdenv.hostPlatform.isLinux, sndio 122 + , waylandSupport ? !stdenv.hostPlatform.isDarwin, libxkbcommon, libdrm 123 124 ## privacy-related options 125 ··· 200 done 201 ''; 202 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 {} { 207 # Some light branding indicating this build uses our distro preferences 208 Global = { 209 id = "nixos"; 210 version = "1.0"; 211 + about = "${applicationName} for ${platform}"; 212 }; 213 Preferences = { 214 # These values are exposed through telemetry ··· 596 597 postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' 598 mkdir -p $out/Applications 599 + cp -r dist/${binaryName}/*.app "$out/Applications/${applicationName}.app" 600 601 + resourceDir="$out/Applications/${applicationName}.app/Contents/Resources" 602 603 '' + lib.optionalString (!stdenv.hostPlatform.isDarwin) '' 604 # Remove SDK cruft. FIXME: move to a separate output? ··· 623 # Some basic testing 624 doInstallCheck = true; 625 installCheckPhase = lib.optionalString buildStdenv.hostPlatform.isDarwin '' 626 + bindir="$out/Applications/${applicationName}.app/Contents/MacOS" 627 '' + lib.optionalString (!buildStdenv.hostPlatform.isDarwin) '' 628 bindir=$out/bin 629 '' + '' ··· 631 ''; 632 633 passthru = { 634 + inherit applicationName; 635 inherit application extraPatches; 636 inherit updateScript; 637 inherit alsaSupport;
+1 -1
pkgs/applications/networking/browsers/firefox/packages/firefox-beta.nix
··· 11 pname = "firefox-beta"; 12 binaryName = pname; 13 version = "135.0b9"; 14 - applicationName = "Mozilla Firefox Beta"; 15 src = fetchurl { 16 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 17 sha512 = "3007c2a8743e4444226e66f0c11f53f01255c09702deda7de83bbe134a19c324b8b49de78d3211b20bb82c7b2040127145d2e39ed8aa81c653ac4397c46476f6";
··· 11 pname = "firefox-beta"; 12 binaryName = pname; 13 version = "135.0b9"; 14 + applicationName = "Firefox Beta"; 15 src = fetchurl { 16 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 17 sha512 = "3007c2a8743e4444226e66f0c11f53f01255c09702deda7de83bbe134a19c324b8b49de78d3211b20bb82c7b2040127145d2e39ed8aa81c653ac4397c46476f6";
+1 -1
pkgs/applications/networking/browsers/firefox/packages/firefox-devedition.nix
··· 11 pname = "firefox-devedition"; 12 binaryName = pname; 13 version = "135.0b9"; 14 - applicationName = "Mozilla Firefox Developer Edition"; 15 requireSigning = false; 16 branding = "browser/branding/aurora"; 17 src = fetchurl {
··· 11 pname = "firefox-devedition"; 12 binaryName = pname; 13 version = "135.0b9"; 14 + applicationName = "Firefox Developer Edition"; 15 requireSigning = false; 16 branding = "browser/branding/aurora"; 17 src = fetchurl {
+1
pkgs/applications/networking/browsers/firefox/packages/firefox-esr-128.nix
··· 10 buildMozillaMach rec { 11 pname = "firefox"; 12 version = "128.7.0esr"; 13 src = fetchurl { 14 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 15 sha512 = "26f9661b395b85a44b42bd72ef1ad976c614216c68f6c2dd834d0ac8b84b9c9f398b8ac550a47396995d96e6bb5fa9a50064d7f2f526bddd45aed5039ef131b8";
··· 10 buildMozillaMach rec { 11 pname = "firefox"; 12 version = "128.7.0esr"; 13 + applicationName = "Firefox ESR"; 14 src = fetchurl { 15 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 16 sha512 = "26f9661b395b85a44b42bd72ef1ad976c614216c68f6c2dd834d0ac8b84b9c9f398b8ac550a47396995d96e6bb5fa9a50064d7f2f526bddd45aed5039ef131b8";
+56 -24
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 1 - { stdenv, lib, makeDesktopItem, makeWrapper, lndir, config 2 , buildPackages 3 , jq, xdg-utils, writeText 4 ··· 23 browser: 24 25 let 26 wrapper = 27 - { applicationName ? browser.binaryName or (lib.getName browser) 28 , pname ? applicationName 29 , 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 , nameSuffix ? "" 33 , icon ? applicationName 34 , wmClass ? applicationName ··· 82 ++ gtk_modules; 83 gtk_modules = [ libcanberra-gtk3 ]; 84 85 - launcherName = "${applicationName}${nameSuffix}"; 86 87 ######################### 88 # # ··· 164 name = launcherName; 165 exec = "${launcherName} --name ${wmClass} %U"; 166 inherit icon; 167 - inherit desktopName; 168 startupNotify = true; 169 startupWMClass = wmClass; 170 terminal = false; ··· 219 }; 220 })); 221 222 - nativeBuildInputs = [ makeWrapper lndir jq ]; 223 buildInputs = [ browser.gtk3 ]; 224 225 makeWrapperArgs = [ ··· 279 ''ln -sfLt ''${MOZ_HOME:-~/.mozilla}/native-messaging-hosts ${ext}/lib/mozilla/native-messaging-hosts/*'' 280 ]) allNativeMessagingHosts); 281 282 - buildCommand = '' 283 - if [ ! -x "${browser}/bin/${applicationName}" ] 284 then 285 - echo "cannot find executable file \`${browser}/bin/${applicationName}'" 286 exit 1 287 fi 288 ··· 314 315 cd "$out" 316 317 # create the wrapper 318 319 - executablePrefix="$out/bin" 320 - executablePath="$executablePrefix/${applicationName}" 321 oldWrapperArgs=() 322 323 if [[ -L $executablePath ]]; then ··· 348 349 appendToVar makeWrapperArgs --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" 350 concatTo makeWrapperArgs oldWrapperArgs 351 - makeWrapper "$oldExe" "''${executablePath}${nameSuffix}" "''${makeWrapperArgs[@]}" 352 ############################# 353 # # 354 # END EXTRA PREF CHANGES # 355 # # 356 ############################# 357 - 358 if [ -e "${browser}/share/icons" ]; then 359 mkdir -p "$out/share" 360 ln -s "${browser}/share/icons" "$out/share/icons" ··· 389 # # 390 ######################### 391 # user customization 392 - mkdir -p $out/lib/${libName} 393 394 # creating policies.json 395 - mkdir -p "$out/lib/${libName}/distribution" 396 397 - POL_PATH="$out/lib/${libName}/distribution/policies.json" 398 rm -f "$POL_PATH" 399 cat ${policiesJson} >> "$POL_PATH" 400 ··· 405 done 406 407 # preparing for autoconfig 408 - mkdir -p "$out/lib/${libName}/defaults/pref" 409 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" 412 413 - cat > "$out/lib/${libName}/mozilla.cfg" << EOF 414 ${mozillaCfg} 415 EOF 416 417 extraPrefsFiles=(${builtins.toString extraPrefsFiles}) 418 for extraPrefsFile in "''${extraPrefsFiles[@]}"; do 419 - cat "$extraPrefsFile" >> "$out/lib/${libName}/mozilla.cfg" 420 done 421 422 - cat >> "$out/lib/${libName}/mozilla.cfg" << EOF 423 ${extraPrefs} 424 EOF 425 426 - mkdir -p $out/lib/${libName}/distribution/extensions 427 428 ############################# 429 # #
··· 1 + { stdenv, lib, makeDesktopItem, makeBinaryWrapper, lndir, config 2 , buildPackages 3 , jq, xdg-utils, writeText 4 ··· 23 browser: 24 25 let 26 + isDarwin = stdenv.hostPlatform.isDarwin; 27 wrapper = 28 + { applicationName ? browser.binaryName or (lib.getName browser) # Note: this is actually *binary* name and is different from browser.applicationName, which is *app* name! 29 , pname ? applicationName 30 , version ? lib.getVersion browser 31 , nameSuffix ? "" 32 , icon ? applicationName 33 , wmClass ? applicationName ··· 81 ++ gtk_modules; 82 gtk_modules = [ libcanberra-gtk3 ]; 83 84 + # Darwin does not rename bundled binaries 85 + launcherName = "${applicationName}${lib.optionalString (!isDarwin) nameSuffix}"; 86 87 ######################### 88 # # ··· 164 name = launcherName; 165 exec = "${launcherName} --name ${wmClass} %U"; 166 inherit icon; 167 + desktopName = browser.applicationName; 168 startupNotify = true; 169 startupWMClass = wmClass; 170 terminal = false; ··· 219 }; 220 })); 221 222 + nativeBuildInputs = [ makeBinaryWrapper lndir jq ]; 223 buildInputs = [ browser.gtk3 ]; 224 225 makeWrapperArgs = [ ··· 279 ''ln -sfLt ''${MOZ_HOME:-~/.mozilla}/native-messaging-hosts ${ext}/lib/mozilla/native-messaging-hosts/*'' 280 ]) allNativeMessagingHosts); 281 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}" ] 292 then 293 + echo "cannot find executable file \`${sourceBinary}'" 294 exit 1 295 fi 296 ··· 322 323 cd "$out" 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 + 346 # create the wrapper 347 348 + executablePrefix="$out/${executablePrefix}" 349 + executablePath="$out/${executablePath}" 350 oldWrapperArgs=() 351 352 if [[ -L $executablePath ]]; then ··· 377 378 appendToVar makeWrapperArgs --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" 379 concatTo makeWrapperArgs oldWrapperArgs 380 + 381 + makeWrapper "$oldExe" "$out/${finalBinaryPath}" "''${makeWrapperArgs[@]}" 382 + 383 ############################# 384 # # 385 # END EXTRA PREF CHANGES # 386 # # 387 ############################# 388 + '' + lib.optionalString (!isDarwin) '' 389 if [ -e "${browser}/share/icons" ]; then 390 mkdir -p "$out/share" 391 ln -s "${browser}/share/icons" "$out/share/icons" ··· 420 # # 421 ######################### 422 # user customization 423 + libDir="$out/${libDir}" 424 425 # creating policies.json 426 + mkdir -p "$libDir/distribution" 427 428 + POL_PATH="$libDir/distribution/policies.json" 429 rm -f "$POL_PATH" 430 cat ${policiesJson} >> "$POL_PATH" 431 ··· 436 done 437 438 # preparing for autoconfig 439 + prefsDir="$out/${prefsDir}" 440 + mkdir -p "$prefsDir" 441 442 + echo 'pref("general.config.filename", "mozilla.cfg");' > "$prefsDir/autoconfig.js" 443 + echo 'pref("general.config.obscure_value", 0);' >> "$prefsDir/autoconfig.js" 444 445 + cat > "$libDir/mozilla.cfg" << EOF 446 ${mozillaCfg} 447 EOF 448 449 extraPrefsFiles=(${builtins.toString extraPrefsFiles}) 450 for extraPrefsFile in "''${extraPrefsFiles[@]}"; do 451 + cat "$extraPrefsFile" >> "$libDir/mozilla.cfg" 452 done 453 454 + cat >> "$libDir/mozilla.cfg" << EOF 455 ${extraPrefs} 456 EOF 457 458 + mkdir -p "$libDir/distribution/extensions" 459 460 ############################# 461 # #
+2 -2
pkgs/applications/networking/instant-messengers/dino/default.nix
··· 25 26 stdenv.mkDerivation (finalAttrs: { 27 pname = "dino"; 28 - version = "0.4.4"; 29 30 src = fetchFromGitHub { 31 owner = "dino"; 32 repo = "dino"; 33 rev = "v${finalAttrs.version}"; 34 - sha256 = "sha256-I0ASeEjdXyxhz52QisU0q8mIBTKMfjaspJbxRIyOhD4="; 35 }; 36 37 postPatch = ''
··· 25 26 stdenv.mkDerivation (finalAttrs: { 27 pname = "dino"; 28 + version = "0.4.5"; 29 30 src = fetchFromGitHub { 31 owner = "dino"; 32 repo = "dino"; 33 rev = "v${finalAttrs.version}"; 34 + sha256 = "sha256-lF2cUalCrVD6274Ey8wggEXNvKXydlRjvX+815geL1c="; 35 }; 36 37 postPatch = ''
+2
pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
··· 24 systemLocale ? config.i18n.defaultLocale or "en_US", 25 patchelfUnstable, # have to use patchelfUnstable to support --no-clobber-old-sections 26 generated, 27 }: 28 29 let ··· 120 }; 121 122 passthru = { 123 binaryName = "thunderbird"; 124 gssSupport = true; 125 gtk3 = gtk3;
··· 24 systemLocale ? config.i18n.defaultLocale or "en_US", 25 patchelfUnstable, # have to use patchelfUnstable to support --no-clobber-old-sections 26 generated, 27 + applicationName ? "Thunderbird", 28 }: 29 30 let ··· 121 }; 122 123 passthru = { 124 + inherit applicationName; 125 binaryName = "thunderbird"; 126 gssSupport = true; 127 gtk3 = gtk3;
+4 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 28 version, 29 sha512, 30 updateScript, 31 }: 32 (buildMozillaMach rec { 33 pname = "thunderbird"; 34 - inherit version updateScript; 35 application = "comm/mail"; 36 - applicationName = "Mozilla Thunderbird"; 37 binaryName = pname; 38 src = fetchurl { 39 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; ··· 98 thunderbird-esr = thunderbird-128; 99 100 thunderbird-128 = common { 101 version = "128.7.1esr"; 102 sha512 = "3f84e1f1a83379da1f154b66dbb5f941d04548ad017aab32aa9520f4315edb524e3754ac1fe9a7ae27f7aa33e2881c6783f11ccc53cda713f107760b7d880667"; 103
··· 28 version, 29 sha512, 30 updateScript, 31 + applicationName ? "Thunderbird", 32 }: 33 (buildMozillaMach rec { 34 pname = "thunderbird"; 35 + inherit version updateScript applicationName; 36 application = "comm/mail"; 37 binaryName = pname; 38 src = fetchurl { 39 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; ··· 98 thunderbird-esr = thunderbird-128; 99 100 thunderbird-128 = common { 101 + applicationName = "Thunderbird ESR"; 102 + 103 version = "128.7.1esr"; 104 sha512 = "3f84e1f1a83379da1f154b66dbb5f941d04548ad017aab32aa9520f4315edb524e3754ac1fe9a7ae27f7aa33e2881c6783f11ccc53cda713f107760b7d880667"; 105
+1 -1
pkgs/applications/networking/mailreaders/thunderbird/wrapper.nix
··· 26 buildCommand = 27 old.buildCommand 28 + '' 29 - wrapProgram $out/bin/${browser.binaryName} \ 30 --prefix LD_LIBRARY_PATH ':' "${lib.makeLibraryPath [ gpgme ]}" \ 31 --prefix PATH ':' "${lib.makeBinPath [ gnupg ]}" 32 '';
··· 26 buildCommand = 27 old.buildCommand 28 + '' 29 + wrapProgram "$executablePath" \ 30 --prefix LD_LIBRARY_PATH ':' "${lib.makeLibraryPath [ gpgme ]}" \ 31 --prefix PATH ':' "${lib.makeBinPath [ gnupg ]}" 32 '';
+2 -2
pkgs/applications/video/haruna/default.nix
··· 26 27 stdenv.mkDerivation rec { 28 pname = "haruna"; 29 - version = "1.3.2"; 30 31 src = fetchFromGitLab { 32 owner = "multimedia"; 33 repo = "haruna"; 34 rev = "v${version}"; 35 - hash = "sha256-B4L3RG1Lq//7TGeZ1ho4LLiHRa9ourm9wL9VWljbXQo="; 36 domain = "invent.kde.org"; 37 }; 38
··· 26 27 stdenv.mkDerivation rec { 28 pname = "haruna"; 29 + version = "1.3.3"; 30 31 src = fetchFromGitLab { 32 owner = "multimedia"; 33 repo = "haruna"; 34 rev = "v${version}"; 35 + hash = "sha256-EoB8qoCiB6jvHqfhkGHhiq9/79MBLt6GguvRIwY90B0="; 36 domain = "invent.kde.org"; 37 }; 38
+1 -1
pkgs/applications/virtualization/qemu/default.nix
··· 269 ''; 270 271 # Add a ‘qemu-kvm’ wrapper for compatibility/convenience. 272 - postInstall = lib.optionalString (!minimal) '' 273 ln -s $out/bin/qemu-system-${stdenv.hostPlatform.qemuArch} $out/bin/qemu-kvm 274 ''; 275
··· 269 ''; 270 271 # Add a ‘qemu-kvm’ wrapper for compatibility/convenience. 272 + postInstall = lib.optionalString (!minimal && !xenSupport) '' 273 ln -s $out/bin/qemu-system-${stdenv.hostPlatform.qemuArch} $out/bin/qemu-kvm 274 ''; 275
+5 -14
pkgs/build-support/rust/build-rust-package/default.nix
··· 4 fetchCargoTarball, 5 fetchCargoVendor, 6 stdenv, 7 - callPackage, 8 cargoBuildHook, 9 cargoCheckHook, 10 cargoInstallHook, ··· 24 excludeDrvArgNames = [ 25 "depsExtraArgs" 26 "cargoUpdateHook" 27 - "cargoDeps" 28 "cargoLock" 29 ]; 30 ··· 74 ... 75 }@args: 76 77 - let 78 - 79 - cargoDeps' = 80 if cargoVendorDir != null then 81 null 82 else if cargoDeps != null then ··· 122 } 123 // depsExtraArgs 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 inherit buildAndTestSubdir; 135 136 cargoBuildType = buildType;
··· 4 fetchCargoTarball, 5 fetchCargoVendor, 6 stdenv, 7 cargoBuildHook, 8 cargoCheckHook, 9 cargoInstallHook, ··· 23 excludeDrvArgNames = [ 24 "depsExtraArgs" 25 "cargoUpdateHook" 26 "cargoLock" 27 ]; 28 ··· 72 ... 73 }@args: 74 75 + lib.optionalAttrs (stdenv.hostPlatform.isDarwin && buildType == "debug") { 76 + RUSTFLAGS = "-C split-debuginfo=packed " + (args.RUSTFLAGS or ""); 77 + } 78 + // { 79 + cargoDeps = 80 if cargoVendorDir != null then 81 null 82 else if cargoDeps != null then ··· 122 } 123 // depsExtraArgs 124 ); 125 inherit buildAndTestSubdir; 126 127 cargoBuildType = buildType;
+17 -12
pkgs/by-name/ab/ablog/package.nix
··· 1 { 2 lib, 3 - python3, 4 fetchFromGitHub, 5 gitUpdater, 6 }: 7 8 - python3.pkgs.buildPythonApplication rec { 9 pname = "ablog"; 10 - version = "0.11.11"; 11 format = "pyproject"; 12 13 src = fetchFromGitHub { 14 owner = "sunpy"; 15 repo = "ablog"; 16 - rev = "v${version}"; 17 - hash = "sha256-Hx4iLO+Of2o4tmIDS17SxyswbW2+KMoD4BjB4q1KU9M="; 18 }; 19 20 - nativeBuildInputs = with python3.pkgs; [ 21 setuptools 22 setuptools-scm 23 - wheel 24 ]; 25 26 - propagatedBuildInputs = with python3.pkgs; [ 27 docutils 28 feedgen 29 invoke ··· 33 watchdog 34 ]; 35 36 - nativeCheckInputs = with python3.pkgs; [ 37 pytestCheckHook 38 defusedxml 39 ]; ··· 47 "ignore::sphinx.deprecation.RemovedInSphinx90Warning" # Ignore ImportError 48 ]; 49 50 passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 51 52 - meta = with lib; { 53 description = "ABlog for blogging with Sphinx"; 54 mainProgram = "ablog"; 55 homepage = "https://ablog.readthedocs.io/en/latest/"; 56 - license = licenses.mit; 57 - maintainers = with maintainers; [ rgrinberg ]; 58 }; 59 }
··· 1 { 2 lib, 3 + python3Packages, 4 fetchFromGitHub, 5 gitUpdater, 6 }: 7 8 + python3Packages.buildPythonApplication rec { 9 pname = "ablog"; 10 + version = "0.11.12"; 11 format = "pyproject"; 12 13 src = fetchFromGitHub { 14 owner = "sunpy"; 15 repo = "ablog"; 16 + tag = "v${version}"; 17 + hash = "sha256-bPTaxkuIKeypfnZItG9cl51flHBIx/yg0qENuiqQgY4="; 18 }; 19 20 + build-system = with python3Packages; [ 21 setuptools 22 setuptools-scm 23 ]; 24 25 + nativeBuildInputs = with python3Packages; [ wheel ]; 26 + 27 + dependencies = with python3Packages; [ 28 docutils 29 feedgen 30 invoke ··· 34 watchdog 35 ]; 36 37 + nativeCheckInputs = with python3Packages; [ 38 pytestCheckHook 39 defusedxml 40 ]; ··· 48 "ignore::sphinx.deprecation.RemovedInSphinx90Warning" # Ignore ImportError 49 ]; 50 51 + # assert "post 1" not in html 52 + # AssertionError 53 + disabledTests = [ "test_not_safe_for_parallel_read" ]; 54 + 55 passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 56 57 + meta = { 58 description = "ABlog for blogging with Sphinx"; 59 mainProgram = "ablog"; 60 homepage = "https://ablog.readthedocs.io/en/latest/"; 61 + license = lib.licenses.mit; 62 + maintainers = with lib.maintainers; [ rgrinberg ]; 63 }; 64 }
+3 -3
pkgs/by-name/bp/bpftop/package.nix
··· 10 }: 11 let 12 pname = "bpftop"; 13 - version = "0.5.2"; 14 in 15 rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } { 16 inherit pname version; ··· 18 owner = "Netflix"; 19 repo = "bpftop"; 20 tag = "v${version}"; 21 - hash = "sha256-WH/oCnkBcvoouBbkAcyawfAuNR3VsTl5+ZATLpi9d4w="; 22 }; 23 24 useFetchCargoVendor = true; 25 - cargoHash = "sha256-fXNu0u+YdT5UaKReT4WuQINKz/zFnwXS1r+xEH6g9FU="; 26 27 buildInputs = [ 28 elfutils
··· 10 }: 11 let 12 pname = "bpftop"; 13 + version = "0.6.0"; 14 in 15 rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } { 16 inherit pname version; ··· 18 owner = "Netflix"; 19 repo = "bpftop"; 20 tag = "v${version}"; 21 + hash = "sha256-oilSWF3dCbJIPtkxwj76qReh5Rp8ZRiH2nVriK6d3fk="; 22 }; 23 24 useFetchCargoVendor = true; 25 + cargoHash = "sha256-k5cRj66OSXsCXUPWrBYrOFq8aohaB/afd8IGj0QqvuE="; 26 27 buildInputs = [ 28 elfutils
+2 -2
pkgs/by-name/ca/camunda-modeler/package.nix
··· 10 11 stdenvNoCC.mkDerivation rec { 12 pname = "camunda-modeler"; 13 - version = "5.30.0"; 14 15 src = fetchurl { 16 url = "https://github.com/camunda/camunda-modeler/releases/download/v${version}/camunda-modeler-${version}-linux-x64.tar.gz"; 17 - hash = "sha256-zv4gry/PcudNDSUNmnhB1nrGoKI1D3pswoXpHqouQAw="; 18 }; 19 sourceRoot = "camunda-modeler-${version}-linux-x64"; 20
··· 10 11 stdenvNoCC.mkDerivation rec { 12 pname = "camunda-modeler"; 13 + version = "5.32.0"; 14 15 src = fetchurl { 16 url = "https://github.com/camunda/camunda-modeler/releases/download/v${version}/camunda-modeler-${version}-linux-x64.tar.gz"; 17 + hash = "sha256-JOJrRvrf3Kz+ObDfyYYSAVfovQ15ZcpNPMHXJ+grZvA="; 18 }; 19 sourceRoot = "camunda-modeler-${version}-linux-x64"; 20
+2 -2
pkgs/by-name/cl/claws-mail/package.nix
··· 275 in 276 stdenv.mkDerivation rec { 277 pname = "claws-mail"; 278 - version = "4.3.0"; 279 280 src = fetchurl { 281 url = "https://claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz"; 282 - hash = "sha256-ldwdiI65FvAoRn+gw8v0W6/2Z4eTt7+zX6u6Ap1YHOE="; 283 }; 284 285 outputs = [
··· 275 in 276 stdenv.mkDerivation rec { 277 pname = "claws-mail"; 278 + version = "4.3.1"; 279 280 src = fetchurl { 281 url = "https://claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz"; 282 + hash = "sha256-2K3yEMdnq1glLfxas8aeYD1//bcoGh4zQNLYYGL0aKY="; 283 }; 284 285 outputs = [
+2 -2
pkgs/by-name/co/codeql/package.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "codeql"; 14 - version = "2.20.4"; 15 16 dontConfigure = true; 17 dontBuild = true; ··· 19 20 src = fetchzip { 21 url = "https://github.com/github/codeql-cli-binaries/releases/download/v${version}/codeql.zip"; 22 - hash = "sha256-oxqprZwPW6qwp3ilPhtQ+cxXeyzC4xZm9L9bkiFgxys="; 23 }; 24 25 nativeBuildInputs = [
··· 11 12 stdenv.mkDerivation rec { 13 pname = "codeql"; 14 + version = "2.20.5"; 15 16 dontConfigure = true; 17 dontBuild = true; ··· 19 20 src = fetchzip { 21 url = "https://github.com/github/codeql-cli-binaries/releases/download/v${version}/codeql.zip"; 22 + hash = "sha256-B6qO+kO2geYFwba4By1h1IwzlGyktWJlJ9sbR2jTrro="; 23 }; 24 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 }: 10 stdenvNoCC.mkDerivation { 11 pname = "cosmic-icons"; 12 - version = "1.0.0-alpha.5.1"; 13 14 src = fetchFromGitHub { 15 owner = "pop-os"; 16 repo = "cosmic-icons"; 17 - rev = "epoch-1.0.0-alpha.5.1"; 18 hash = "sha256-j5H2+BOWxq2jShN15QCvj9rY6OK+vlUbyR9R07Ka2rA="; 19 }; 20
··· 9 }: 10 stdenvNoCC.mkDerivation { 11 pname = "cosmic-icons"; 12 + version = "1.0.0-alpha.6"; 13 14 src = fetchFromGitHub { 15 owner = "pop-os"; 16 repo = "cosmic-icons"; 17 + rev = "epoch-1.0.0-alpha.6"; 18 hash = "sha256-j5H2+BOWxq2jShN15QCvj9rY6OK+vlUbyR9R07Ka2rA="; 19 }; 20
+1 -1
pkgs/by-name/fi/firefoxpwa/package.nix
··· 151 homepage = "https://pwasforfirefox.filips.si/"; 152 changelog = "https://github.com/filips123/PWAsForFirefox/releases/tag/v${version}"; 153 license = lib.licenses.mpl20; 154 - platforms = lib.platforms.unix; 155 maintainers = with lib.maintainers; [ 156 camillemndn 157 pasqui23
··· 151 homepage = "https://pwasforfirefox.filips.si/"; 152 changelog = "https://github.com/filips123/PWAsForFirefox/releases/tag/v${version}"; 153 license = lib.licenses.mpl20; 154 + platforms = lib.platforms.linux; 155 maintainers = with lib.maintainers; [ 156 camillemndn 157 pasqui23
+2 -2
pkgs/by-name/ic/icewm/package.nix
··· 41 42 stdenv.mkDerivation (finalAttrs: { 43 pname = "icewm"; 44 - version = "3.6.0"; 45 46 src = fetchFromGitHub { 47 owner = "ice-wm"; 48 repo = "icewm"; 49 rev = finalAttrs.version; 50 - hash = "sha256-gxRKLukwdyCvqQ+gRYb4cv/8B52nRAFwdcps6FcKFXk="; 51 }; 52 53 strictDeps = true;
··· 41 42 stdenv.mkDerivation (finalAttrs: { 43 pname = "icewm"; 44 + version = "3.7.0"; 45 46 src = fetchFromGitHub { 47 owner = "ice-wm"; 48 repo = "icewm"; 49 rev = finalAttrs.version; 50 + hash = "sha256-RUT/zJcoDiNMit7XlxVb2lctta7NxcGAiFe3Mj7jUyM="; 51 }; 52 53 strictDeps = true;
+3 -3
pkgs/by-name/in/inputplumber/package.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "inputplumber"; 13 - version = "0.45.1"; 14 15 src = fetchFromGitHub { 16 owner = "ShadowBlip"; 17 repo = "InputPlumber"; 18 tag = "v${version}"; 19 - hash = "sha256-mapuj/9VCrzux5yS3+NeMw1xG70+xglshOs9O+RIHKM="; 20 }; 21 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-QUTMzHAdB4GJMO+LZP5VFTJRvRHUa6XIcP+1bRSaGdg="; 24 25 nativeBuildInputs = [ 26 pkg-config
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "inputplumber"; 13 + version = "0.48.0"; 14 15 src = fetchFromGitHub { 16 owner = "ShadowBlip"; 17 repo = "InputPlumber"; 18 tag = "v${version}"; 19 + hash = "sha256-9/4+gNuG02uoXDflRh3q5T+hqAKu/j+1FQnXVJVTpiI="; 20 }; 21 22 useFetchCargoVendor = true; 23 + cargoHash = "sha256-cRSY9a5qOvYrdvNSDoDjgrIo+SRlD24oAWriudbKS1E="; 24 25 nativeBuildInputs = [ 26 pkg-config
+2 -2
pkgs/by-name/jb/jbang/package.nix
··· 9 }: 10 11 stdenv.mkDerivation rec { 12 - version = "0.122.0"; 13 pname = "jbang"; 14 15 src = fetchzip { 16 url = "https://github.com/jbangdev/jbang/releases/download/v${version}/${pname}-${version}.tar"; 17 - sha256 = "sha256-uBzIk4Ivy/XLFlsUpGejV45T8MIseE2l8AVprWJi3hI="; 18 }; 19 20 nativeBuildInputs = [ makeWrapper ];
··· 9 }: 10 11 stdenv.mkDerivation rec { 12 + version = "0.123.0"; 13 pname = "jbang"; 14 15 src = fetchzip { 16 url = "https://github.com/jbangdev/jbang/releases/download/v${version}/${pname}-${version}.tar"; 17 + sha256 = "sha256-KzltlTI8uyJGhkPIbA/ZUd4OZp5ORrgQB8Y19nhDAW4="; 18 }; 19 20 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/by-name/js/json-fortran/package.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "json-fortran"; 11 - version = "9.0.2"; 12 13 src = fetchFromGitHub { 14 owner = "jacobwilliams"; 15 repo = pname; 16 rev = version; 17 - hash = "sha256-mAdagehmj1s6nTDaJqwaYrirfkyIwiTWYge0ZWQBc6g="; 18 }; 19 20 nativeBuildInputs = [
··· 8 9 stdenv.mkDerivation rec { 10 pname = "json-fortran"; 11 + version = "9.0.3"; 12 13 src = fetchFromGitHub { 14 owner = "jacobwilliams"; 15 repo = pname; 16 rev = version; 17 + hash = "sha256-MMHMyEPZYz7dkYX1OA9D1kgRCTpzTVussJbh4rWHlyU="; 18 }; 19 20 nativeBuildInputs = [
+1 -1
pkgs/by-name/li/licensure/package.nix
··· 44 homepage = "https://github.com/chasinglogic/licensure"; 45 license = licenses.gpl3Plus; 46 mainProgram = "licensure"; 47 - maintainers = [ maintainers.soispha ]; 48 platforms = platforms.linux ++ platforms.darwin; 49 }; 50 }
··· 44 homepage = "https://github.com/chasinglogic/licensure"; 45 license = licenses.gpl3Plus; 46 mainProgram = "licensure"; 47 + maintainers = [ maintainers.bpeetz ]; 48 platforms = platforms.linux ++ platforms.darwin; 49 }; 50 }
+2 -2
pkgs/by-name/li/liquibase/package.nix
··· 26 27 stdenv.mkDerivation (finalAttrs: { 28 pname = "liquibase"; 29 - version = "4.29.2"; 30 31 src = fetchurl { 32 url = "https://github.com/liquibase/liquibase/releases/download/v${finalAttrs.version}/liquibase-${finalAttrs.version}.tar.gz"; 33 - hash = "sha256-HQF6IGqVqzB2pS9mBnnC2AufIXSULLBxXjXVOTHiDuk="; 34 }; 35 36 nativeBuildInputs = [ makeWrapper ];
··· 26 27 stdenv.mkDerivation (finalAttrs: { 28 pname = "liquibase"; 29 + version = "4.31.1"; 30 31 src = fetchurl { 32 url = "https://github.com/liquibase/liquibase/releases/download/v${finalAttrs.version}/liquibase-${finalAttrs.version}.tar.gz"; 33 + hash = "sha256-BVWAi1mUHUl/DBEUw/IiVpiv3hHGDRkciORJUGpgo+o="; 34 }; 35 36 nativeBuildInputs = [ makeWrapper ];
+10
pkgs/by-name/ma/maim/package.nix
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 cmake, 6 pkg-config, 7 zlib, ··· 50 libXcomposite 51 slop 52 icu 53 ]; 54 55 doCheck = false;
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 + fetchpatch, 6 cmake, 7 pkg-config, 8 zlib, ··· 51 libXcomposite 52 slop 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 + }) 63 ]; 64 65 doCheck = false;
+3
pkgs/by-name/mi/midori-unwrapped/package.nix
··· 53 54 passthru = { 55 inherit gtk3; 56 }; 57 58 meta = with lib; { ··· 65 raskin 66 ramkromberg 67 ]; 68 }; 69 }
··· 53 54 passthru = { 55 inherit gtk3; 56 + applicationName = "Midori"; 57 }; 58 59 meta = with lib; { ··· 66 raskin 67 ramkromberg 68 ]; 69 + # https://github.com/NixOS/nixpkgs/issues/374354 70 + broken = true; 71 }; 72 }
+3 -3
pkgs/by-name/mi/mieru/package.nix
··· 6 7 buildGoModule rec { 8 pname = "mieru"; 9 - version = "3.11.2"; 10 11 src = fetchFromGitHub { 12 owner = "enfein"; 13 repo = "mieru"; 14 rev = "v${version}"; 15 - hash = "sha256-Qb+uZiKnrGNoSqH0QR+QUBtmFM3AE/2WziTtkPxu55o="; 16 }; 17 18 - vendorHash = "sha256-AOtq6bGijQqpNMNZA3XeMjzKAo7tWTpdrKB6KxQsdMM="; 19 proxyVendor = true; 20 21 ldflags = [
··· 6 7 buildGoModule rec { 8 pname = "mieru"; 9 + version = "3.12.0"; 10 11 src = fetchFromGitHub { 12 owner = "enfein"; 13 repo = "mieru"; 14 rev = "v${version}"; 15 + hash = "sha256-F7YawlcIH/V+qudXjfFKIrVNjds+fhw6BdlCe2VDdUc="; 16 }; 17 18 + vendorHash = "sha256-pKcdvP38fZ2KFYNDx6I4TfmnnvWKzFDvz80xMkUojqM="; 19 proxyVendor = true; 20 21 ldflags = [
+1 -1
pkgs/by-name/mi/migra/package.nix
··· 54 description = "Like diff but for PostgreSQL schemas"; 55 homepage = "https://github.com/djrobstep/migra"; 56 license = with licenses; [ unlicense ]; 57 - maintainers = with maintainers; [ soispha ]; 58 }; 59 }
··· 54 description = "Like diff but for PostgreSQL schemas"; 55 homepage = "https://github.com/djrobstep/migra"; 56 license = with licenses; [ unlicense ]; 57 + maintainers = with maintainers; [ bpeetz ]; 58 }; 59 }
+3 -3
pkgs/by-name/mu/museum/package.nix
··· 9 10 buildGoModule rec { 11 pname = "museum"; 12 - version = "0.9.81"; 13 14 src = fetchFromGitHub { 15 owner = "ente-io"; 16 repo = "ente"; 17 sparseCheckout = [ "server" ]; 18 rev = "photos-v${version}"; 19 - hash = "sha256-4vX3UWbYYCjNxtSNUAE9hg9NokeJFPTjLvHYTkQlB0w="; 20 }; 21 22 - vendorHash = "sha256-Vz9AodHoClSmo51ExdOS4bWH13i1Sug++LQMIsZY2xY="; 23 24 sourceRoot = "${src.name}/server"; 25
··· 9 10 buildGoModule rec { 11 pname = "museum"; 12 + version = "0.9.98"; 13 14 src = fetchFromGitHub { 15 owner = "ente-io"; 16 repo = "ente"; 17 sparseCheckout = [ "server" ]; 18 rev = "photos-v${version}"; 19 + hash = "sha256-yC0bt7TUO4agvkWtd7Q0DuPlgFngQynSKaCZ4eaBWdE="; 20 }; 21 22 + vendorHash = "sha256-loq/YPf+oMWJ6FgtZsgJqkUQhCG8wL7F3kDblKbrc/c="; 23 24 sourceRoot = "${src.name}/server"; 25
+3 -3
pkgs/by-name/na/navidrome/package.nix
··· 18 19 buildGo123Module rec { 20 pname = "navidrome"; 21 - version = "0.54.3"; 22 23 src = fetchFromGitHub { 24 owner = "navidrome"; 25 repo = "navidrome"; 26 rev = "v${version}"; 27 - hash = "sha256-mOJSgX+1id8tZU8KVjWbf2LycrzdudhUV/9pxKa4yHw="; 28 }; 29 30 - vendorHash = "sha256-LpSmSbReQ3yHFvHhN/LERWQjf72/ELTjk4qhO4lyzW0="; 31 32 npmRoot = "ui"; 33
··· 18 19 buildGo123Module rec { 20 pname = "navidrome"; 21 + version = "0.54.5"; 22 23 src = fetchFromGitHub { 24 owner = "navidrome"; 25 repo = "navidrome"; 26 rev = "v${version}"; 27 + hash = "sha256-74sN2qZVjsD5i3BkJKYcpL3vZsVIg0H5RI70oRdZpi0="; 28 }; 29 30 + vendorHash = "sha256-bI0iDhATvNylKnI81eeUpgsm8YqySPyinPgBbcO0y4I="; 31 32 npmRoot = "ui"; 33
+10 -4
pkgs/by-name/pr/prismlauncher-unwrapped/package.nix
··· 5 cmake, 6 cmark, 7 extra-cmake-modules, 8 gamemode, 9 ghc_filesystem, 10 jdk17, ··· 14 stripJavaArchivesHook, 15 tomlplusplus, 16 zlib, 17 - 18 msaClientID ? null, 19 gamemodeSupport ? stdenv.hostPlatform.isLinux, 20 }: 21 - 22 let 23 libnbtplusplus = fetchFromGitHub { 24 owner = "PrismLauncher"; ··· 27 hash = "sha256-yy0q+bky80LtK1GWzz7qpM+aAGrOqLuewbid8WT1ilk="; 28 }; 29 in 30 - 31 assert lib.assertMsg ( 32 gamemodeSupport -> stdenv.hostPlatform.isLinux 33 ) "gamemodeSupport is only available on Linux."; 34 - 35 stdenv.mkDerivation (finalAttrs: { 36 pname = "prismlauncher-unwrapped"; 37 version = "9.2"; ··· 86 (lib.cmakeFeature "MACOSX_SPARKLE_UPDATE_FEED_URL" "''") 87 (lib.cmakeFeature "CMAKE_INSTALL_PREFIX" "${placeholder "out"}/Applications/") 88 ]; 89 90 doCheck = true; 91
··· 5 cmake, 6 cmark, 7 extra-cmake-modules, 8 + fetchpatch, 9 gamemode, 10 ghc_filesystem, 11 jdk17, ··· 15 stripJavaArchivesHook, 16 tomlplusplus, 17 zlib, 18 msaClientID ? null, 19 gamemodeSupport ? stdenv.hostPlatform.isLinux, 20 }: 21 let 22 libnbtplusplus = fetchFromGitHub { 23 owner = "PrismLauncher"; ··· 26 hash = "sha256-yy0q+bky80LtK1GWzz7qpM+aAGrOqLuewbid8WT1ilk="; 27 }; 28 in 29 assert lib.assertMsg ( 30 gamemodeSupport -> stdenv.hostPlatform.isLinux 31 ) "gamemodeSupport is only available on Linux."; 32 stdenv.mkDerivation (finalAttrs: { 33 pname = "prismlauncher-unwrapped"; 34 version = "9.2"; ··· 83 (lib.cmakeFeature "MACOSX_SPARKLE_UPDATE_FEED_URL" "''") 84 (lib.cmakeFeature "CMAKE_INSTALL_PREFIX" "${placeholder "out"}/Applications/") 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 + ]; 95 96 doCheck = true; 97
+2 -2
pkgs/by-name/re/re-flex/package.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "re-flex"; 9 - version = "5.1.1"; 10 11 src = fetchFromGitHub { 12 owner = "Genivia"; 13 repo = "RE-flex"; 14 rev = "v${version}"; 15 - hash = "sha256-QSstDLUYmqTyxu/KyQTVuKkzIdFZ5MsXlHAcTvhTvr8="; 16 }; 17 18 outputs = [ "out" "bin" "dev" ];
··· 6 7 stdenv.mkDerivation rec { 8 pname = "re-flex"; 9 + version = "5.2.2"; 10 11 src = fetchFromGitHub { 12 owner = "Genivia"; 13 repo = "RE-flex"; 14 rev = "v${version}"; 15 + hash = "sha256-oLpgY8m0hwLrTVkUwxVW7O7vr4Hl7Bn+uIQwFEVSfvc="; 16 }; 17 18 outputs = [ "out" "bin" "dev" ];
+1 -1
pkgs/by-name/re/redlib/package.nix
··· 78 license = lib.licenses.agpl3Only; 79 mainProgram = "redlib"; 80 maintainers = with lib.maintainers; [ 81 - soispha 82 Guanran928 83 ]; 84 };
··· 78 license = lib.licenses.agpl3Only; 79 mainProgram = "redlib"; 80 maintainers = with lib.maintainers; [ 81 + bpeetz 82 Guanran928 83 ]; 84 };
+3 -3
pkgs/by-name/sc/sccache/package.nix
··· 9 }: 10 11 rustPlatform.buildRustPackage rec { 12 - version = "0.9.1"; 13 pname = "sccache"; 14 15 src = fetchFromGitHub { 16 owner = "mozilla"; 17 repo = "sccache"; 18 rev = "v${version}"; 19 - sha256 = "sha256-MR/zfE87Z4TXc3ta3192lG/tD7YiVrn0HCLr5O29Izo="; 20 }; 21 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-Cv+tIivwqNqnA8anDWWEgQKpDFktG4rGZ+qZejBoDAE="; 24 25 nativeBuildInputs = [ 26 pkg-config
··· 9 }: 10 11 rustPlatform.buildRustPackage rec { 12 + version = "0.10.0"; 13 pname = "sccache"; 14 15 src = fetchFromGitHub { 16 owner = "mozilla"; 17 repo = "sccache"; 18 rev = "v${version}"; 19 + sha256 = "sha256-VEDMeRFQKNPS3V6/DhMWxHR7YWsCzAXTzp0lO+COl08="; 20 }; 21 22 useFetchCargoVendor = true; 23 + cargoHash = "sha256-1kfKBN4uRbU5LjbC0cLgMqoGnOSEAdC0S7EzXlfaDPo="; 24 25 nativeBuildInputs = [ 26 pkg-config
+3 -3
pkgs/by-name/sf/sftpgo/package.nix
··· 8 9 buildGoModule rec { 10 pname = "sftpgo"; 11 - version = "2.6.5"; 12 13 src = fetchFromGitHub { 14 owner = "drakkan"; 15 repo = "sftpgo"; 16 tag = "v${version}"; 17 - hash = "sha256-dxHEcdsdH7/9NQA5m5TwkabsUMUM+Jrp1AnEW/f/Lpw="; 18 }; 19 20 - vendorHash = "sha256-XSqReUYfqH/NOYnvjJQLbnD4fEJjps7i0fWtujdYqV4="; 21 22 ldflags = [ 23 "-s"
··· 8 9 buildGoModule rec { 10 pname = "sftpgo"; 11 + version = "2.6.6"; 12 13 src = fetchFromGitHub { 14 owner = "drakkan"; 15 repo = "sftpgo"; 16 tag = "v${version}"; 17 + hash = "sha256-SembD+BM5Zetexh0iLTfrq/I1tz2BCwGUn6OyFeTHF4="; 18 }; 19 20 + vendorHash = "sha256-7hS4E7PXlydHFi4ul5+hyUPOvozialXW/m1tDLqbQUs="; 21 22 ldflags = [ 23 "-s"
+2 -2
pkgs/by-name/so/socket_wrapper/package.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "socket_wrapper"; 11 - version = "1.4.3"; 12 13 src = fetchurl { 14 url = "mirror://samba/cwrap/socket_wrapper-${version}.tar.gz"; 15 - sha256 = "sha256-CWz7TqucebUtss51JsVeUI8GZb/qxsS8ZqPIMh2HU1g="; 16 }; 17 18 nativeBuildInputs = [
··· 8 9 stdenv.mkDerivation rec { 10 pname = "socket_wrapper"; 11 + version = "1.4.4"; 12 13 src = fetchurl { 14 url = "mirror://samba/cwrap/socket_wrapper-${version}.tar.gz"; 15 + sha256 = "sha256-KJAALRQ3tvt//cZ8NzTxPQ4r99Y7sJfWA6n24uBdw8g="; 16 }; 17 18 nativeBuildInputs = [
+19 -19
pkgs/by-name/te/tectonic-unwrapped/package.nix
··· 8 9 { 10 lib, 11 - stdenv, 12 fetchFromGitHub, 13 rustPlatform, 14 - darwin, 15 fontconfig, 16 harfbuzzFull, 17 openssl, ··· 20 fetchpatch2, 21 }: 22 23 - rustPlatform.buildRustPackage rec { 24 pname = "tectonic"; 25 version = "0.15.0"; 26 ··· 56 57 buildFeatures = [ "external-harfbuzz" ]; 58 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 - ); 74 75 postInstall = 76 '' 77 # Makes it possible to automatically use the V2 CLI API 78 ln -s $out/bin/tectonic $out/bin/nextonic 79 '' 80 - + lib.optionalString stdenv.hostPlatform.isLinux '' 81 substituteInPlace dist/appimage/tectonic.desktop \ 82 --replace Exec=tectonic Exec=$out/bin/tectonic 83 install -D dist/appimage/tectonic.desktop -t $out/share/applications/
··· 8 9 { 10 lib, 11 + clangStdenv, 12 fetchFromGitHub, 13 rustPlatform, 14 fontconfig, 15 harfbuzzFull, 16 openssl, ··· 19 fetchpatch2, 20 }: 21 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 { 33 pname = "tectonic"; 34 version = "0.15.0"; 35 ··· 65 66 buildFeatures = [ "external-harfbuzz" ]; 67 68 + buildInputs = [ 69 + icu 70 + fontconfig 71 + harfbuzzFull 72 + openssl 73 + ]; 74 75 postInstall = 76 '' 77 # Makes it possible to automatically use the V2 CLI API 78 ln -s $out/bin/tectonic $out/bin/nextonic 79 '' 80 + + lib.optionalString clangStdenv.hostPlatform.isLinux '' 81 substituteInPlace dist/appimage/tectonic.desktop \ 82 --replace Exec=tectonic Exec=$out/bin/tectonic 83 install -D dist/appimage/tectonic.desktop -t $out/share/applications/
+3 -3
pkgs/by-name/te/terser/package.nix
··· 2 3 buildNpmPackage rec { 4 pname = "terser"; 5 - version = "5.36.0"; 6 7 src = fetchFromGitHub { 8 owner = "terser"; 9 repo = "terser"; 10 rev = "v${version}"; 11 - hash = "sha256-iPxcr7B2raTBFidPTwiETGusSy79tRYNzoJObyVYSWY="; 12 }; 13 14 - npmDepsHash = "sha256-o5bCrvjVLmnxvYJJTp1qENR0l0C32D+2LfMKitt6zuY="; 15 16 meta = with lib; { 17 description = "JavaScript parser, mangler and compressor toolkit for ES6+";
··· 2 3 buildNpmPackage rec { 4 pname = "terser"; 5 + version = "5.38.0"; 6 7 src = fetchFromGitHub { 8 owner = "terser"; 9 repo = "terser"; 10 rev = "v${version}"; 11 + hash = "sha256-iVl5L5qxpXkBfiW8OqsMr4iZ0UQiN4TSAYXz9d29bnA="; 12 }; 13 14 + npmDepsHash = "sha256-84MWjkiv1/W+JyUtrjY9Rk0UIkZWIv07Q1qLSVYNcO4="; 15 16 meta = with lib; { 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 21 rustPlatform.buildRustPackage rec { 22 pname = "uv"; 23 - version = "0.6.2"; 24 25 src = fetchFromGitHub { 26 owner = "astral-sh"; 27 repo = "uv"; 28 tag = version; 29 - hash = "sha256-kzmdxOS5ln9/VIyPIs1mHYGZG5R8KxJDZpX+I6ucsPg="; 30 }; 31 32 useFetchCargoVendor = true; 33 - cargoHash = "sha256-XoXksl5N8tyJWE/J3N6fFuIrmGaehnmFEKGrMvfzdq0="; 34 35 buildInputs = [ 36 rust-jemalloc-sys
··· 20 21 rustPlatform.buildRustPackage rec { 22 pname = "uv"; 23 + version = "0.6.3"; 24 25 src = fetchFromGitHub { 26 owner = "astral-sh"; 27 repo = "uv"; 28 tag = version; 29 + hash = "sha256-eT+pCw5azFhUS9ChOsJm7zXKAr/PeJeakBcoGolL+lI="; 30 }; 31 32 useFetchCargoVendor = true; 33 + cargoHash = "sha256-tCbNMV2r05bIo/xa1TmzocL8ccJyVCDKV735epPxd24="; 34 35 buildInputs = [ 36 rust-jemalloc-sys
+1
pkgs/by-name/vi/vimb-unwrapped/package.nix
··· 36 37 passthru = { 38 inherit gtk3; 39 }; 40 41 makeFlags = [ "PREFIX=${placeholder "out"}" ];
··· 36 37 passthru = { 38 inherit gtk3; 39 + applicationName = "Vimb"; 40 }; 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 19 hash = 20 { 21 - x86_64-linux = "sha256-eF+PazWfQjWvrQrrf1D/8wEJgzQZGzpWEEYsJTN07pM="; 22 - aarch64-linux = "sha256-y8Vqh4I8BW2KfK6TVbRAT1Hx0G0oAJrkCDihgO8VH18="; 23 - armv7l-linux = "sha256-RSwBFM6glrVbl7KttGT7kl/sB8ctyVhu+MZUXSmFyYY="; 24 } 25 .${system} or throwSystem; 26 in 27 stdenv.mkDerivation (finalAttrs: { 28 pname = "zrok"; 29 - version = "0.4.45"; 30 31 src = fetchzip { 32 url = "https://github.com/openziti/zrok/releases/download/v${finalAttrs.version}/zrok_${finalAttrs.version}_${plat}.tar.gz";
··· 18 19 hash = 20 { 21 + x86_64-linux = "sha256-3W6y79GXhBzy4YTafUuct6kWc6yvVdhJGL+Byg+AXog="; 22 + aarch64-linux = "sha256-qhl+yT1lAf/xXhEoMZ7lkGZWKnwI0ANQrHO1BHcGrfo="; 23 + armv7l-linux = "sha256-EYbvN+Z7KFVoJk1KNljgypjbBnJJ4dM+YFl8RQri5jw="; 24 } 25 .${system} or throwSystem; 26 in 27 stdenv.mkDerivation (finalAttrs: { 28 pname = "zrok"; 29 + version = "0.4.46"; 30 31 src = fetchzip { 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 17 stdenv.mkDerivation rec { 18 pname = "deepin-editor"; 19 - version = "6.5.8"; 20 21 src = fetchFromGitHub { 22 owner = "linuxdeepin"; 23 repo = pname; 24 rev = version; 25 - hash = "sha256-QMq7DIggMhY4EseIa7/tvgxGwZn07OitOm1YjrzMFHg="; 26 }; 27 28 nativeBuildInputs = [ ··· 49 strictDeps = true; 50 51 cmakeFlags = [ "-DVERSION=${version}" ]; 52 53 meta = { 54 description = "Desktop text editor that supports common text editing features";
··· 16 17 stdenv.mkDerivation rec { 18 pname = "deepin-editor"; 19 + version = "6.5.15"; 20 21 src = fetchFromGitHub { 22 owner = "linuxdeepin"; 23 repo = pname; 24 rev = version; 25 + hash = "sha256-aMxEESZ/noGtEDpQZz1asR0M+wnAfQT1FXLaQB6B0Zs="; 26 }; 27 28 nativeBuildInputs = [ ··· 49 strictDeps = true; 50 51 cmakeFlags = [ "-DVERSION=${version}" ]; 52 + 53 + # Fix build with icu4c: "error: parameter declared 'auto'" 54 + env.NIX_CFLAGS_COMPILE = toString [ "--std=c++17" ]; 55 56 meta = { 57 description = "Desktop text editor that supports common text editing features";
+5 -1
pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix
··· 80 81 cmakeFlags = [ "-DVERSION=${version}" ]; 82 83 - env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; 84 85 strictDeps = true; 86
··· 80 81 cmakeFlags = [ "-DVERSION=${version}" ]; 82 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 + ]; 88 89 strictDeps = true; 90
-1
pkgs/development/node-packages/node-packages.json
··· 149 , "reveal.js" 150 , "rimraf" 151 , "rollup" 152 - , {"rust-analyzer-build-deps": "../../applications/editors/vscode/extensions/rust-lang.rust-analyzer/build-deps"} 153 , "sass" 154 , "semver" 155 , "serve"
··· 149 , "reveal.js" 150 , "rimraf" 151 , "rollup" 152 , "sass" 153 , "semver" 154 , "serve"
+1098 -3530
pkgs/development/node-packages/node-packages.nix
··· 39 sha512 = "30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="; 40 }; 41 }; 42 - "@angular-devkit/architect-0.1901.7" = { 43 name = "_at_angular-devkit_slash_architect"; 44 packageName = "@angular-devkit/architect"; 45 - version = "0.1901.7"; 46 src = fetchurl { 47 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1901.7.tgz"; 48 - sha512 = "qltyebfbej7joIKZVH8EFfrVDrkw0p9N9ja3A0XeU1sl2vlepHNAQdVm0Os8Vy2XjjyHvT5bXWE3G3/221qEKw=="; 49 }; 50 }; 51 - "@angular-devkit/core-19.1.7" = { 52 name = "_at_angular-devkit_slash_core"; 53 packageName = "@angular-devkit/core"; 54 - version = "19.1.7"; 55 src = fetchurl { 56 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-19.1.7.tgz"; 57 - sha512 = "q0I6L9KTqyQ7D5M8H+fWLT+yjapvMNb7SRdfU6GzmexO66Dpo83q4HDzuDKIPDF29Yl0ELs9ICJqe9yUXh6yDQ=="; 58 }; 59 }; 60 - "@angular-devkit/schematics-19.1.7" = { 61 name = "_at_angular-devkit_slash_schematics"; 62 packageName = "@angular-devkit/schematics"; 63 - version = "19.1.7"; 64 src = fetchurl { 65 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.1.7.tgz"; 66 - sha512 = "AP6FvhMybCYs3gs+vzEAzSU1K//AFT3SVTRFv+C3WMO5dLeAHeGzM8I2dxD5EHQQtqIE/8apP6CxGrnpA5YlFg=="; 67 }; 68 }; 69 "@apidevtools/json-schema-ref-parser-11.7.2" = { ··· 300 sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw=="; 301 }; 302 }; 303 - "@aws-sdk/client-s3-3.749.0" = { 304 name = "_at_aws-sdk_slash_client-s3"; 305 packageName = "@aws-sdk/client-s3"; 306 - version = "3.749.0"; 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=="; 310 }; 311 }; 312 "@aws-sdk/client-sso-3.296.0" = { ··· 318 sha512 = "0P0x++jhlmhzViFPOHvTb7+Z6tSV9aONwB8CchIseg2enSPBbGfml7y5gQu1jdOTDS6pBUmrPZ+9sOI4/GvAfA=="; 319 }; 320 }; 321 - "@aws-sdk/client-sso-3.749.0" = { 322 name = "_at_aws-sdk_slash_client-sso"; 323 packageName = "@aws-sdk/client-sso"; 324 - version = "3.749.0"; 325 src = fetchurl { 326 - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.749.0.tgz"; 327 - sha512 = "ecmuDu8EPya1LDpGRtpgN7C9PHayDh8EaW37ZBKhuxA7cg099yvTFqsGngwRXbhNjKJ4oVa9OUe0EDnu60atYA=="; 328 }; 329 }; 330 "@aws-sdk/client-sso-oidc-3.296.0" = { ··· 345 sha512 = "ew7hSVNpitnLCIRVhnI2L1HZB/yYpRQFReR62fOqCUnpKqm6WGga37bnvgYbY5y0Rv23C0VHARovwunVg1gabA=="; 346 }; 347 }; 348 - "@aws-sdk/client-sts-3.749.0" = { 349 name = "_at_aws-sdk_slash_client-sts"; 350 packageName = "@aws-sdk/client-sts"; 351 - version = "3.749.0"; 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=="; 355 }; 356 }; 357 "@aws-sdk/config-resolver-3.296.0" = { ··· 363 sha512 = "Ecdp7fmIitHo49NRCyIEHb9xlI43J7qkvhcwaKGGqN5jvoh0YhR2vNr195wWG8Ip/9PwsD4QV4g/XT5EY7XkMA=="; 364 }; 365 }; 366 - "@aws-sdk/core-3.749.0" = { 367 name = "_at_aws-sdk_slash_core"; 368 packageName = "@aws-sdk/core"; 369 - version = "3.749.0"; 370 src = fetchurl { 371 - url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.749.0.tgz"; 372 - sha512 = "w5Jj573+XKwrDNZUjUJDXL5upx+RCw64TLq3Zk8FVg9MsgkzAPorQ9qmzffi6os+PWngd3pFmD8q5y+Y35LpFQ=="; 373 }; 374 }; 375 "@aws-sdk/credential-provider-env-3.296.0" = { ··· 381 sha512 = "eDWSU3p04gytkkVXnYn05YzrP5SEaj/DQiafd4y+iBl8IFfF3zM6982rs6qFhvpwrHeSbLqHNfKR1HDWVwfG5g=="; 382 }; 383 }; 384 - "@aws-sdk/credential-provider-env-3.749.0" = { 385 name = "_at_aws-sdk_slash_credential-provider-env"; 386 packageName = "@aws-sdk/credential-provider-env"; 387 - version = "3.749.0"; 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=="; 391 }; 392 }; 393 - "@aws-sdk/credential-provider-http-3.749.0" = { 394 name = "_at_aws-sdk_slash_credential-provider-http"; 395 packageName = "@aws-sdk/credential-provider-http"; 396 - version = "3.749.0"; 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=="; 400 }; 401 }; 402 "@aws-sdk/credential-provider-imds-3.296.0" = { ··· 417 sha512 = "U0ecY0GX2jeDAgmTzaVO9YgjlLUfb8wgZSu1OwbOxCJscL/5eFkhcF0/xJQXDbRgcj4H4dlquqeSWsBVl/PgvQ=="; 418 }; 419 }; 420 - "@aws-sdk/credential-provider-ini-3.749.0" = { 421 name = "_at_aws-sdk_slash_credential-provider-ini"; 422 packageName = "@aws-sdk/credential-provider-ini"; 423 - version = "3.749.0"; 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=="; 427 }; 428 }; 429 "@aws-sdk/credential-provider-node-3.296.0" = { ··· 435 sha512 = "oCkmh2b1DQhHkhd/qA9jiSIOkrBBK7cMg1/PVIgLw8e15NkzUHBObLJ/ZQw6ZzCxZzjlMYaFv9oCB8hyO8txmA=="; 436 }; 437 }; 438 - "@aws-sdk/credential-provider-node-3.749.0" = { 439 name = "_at_aws-sdk_slash_credential-provider-node"; 440 packageName = "@aws-sdk/credential-provider-node"; 441 - version = "3.749.0"; 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=="; 445 }; 446 }; 447 "@aws-sdk/credential-provider-process-3.296.0" = { ··· 453 sha512 = "AY7sTX2dGi8ripuCpcJLYHOZB2wJ6NnseyK/kK5TfJn/pgboKwuGtz0hkJCVprNWomKa6IpHksm7vLQ4O2E+UA=="; 454 }; 455 }; 456 - "@aws-sdk/credential-provider-process-3.749.0" = { 457 name = "_at_aws-sdk_slash_credential-provider-process"; 458 packageName = "@aws-sdk/credential-provider-process"; 459 - version = "3.749.0"; 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=="; 463 }; 464 }; 465 "@aws-sdk/credential-provider-sso-3.296.0" = { ··· 471 sha512 = "zPFHDX/niXfcQrKQhmBv1XPYEe4b7im4vRKrzjYXgDRpG2M3LP0KaWIwN6Ap+GRYBNBthen86vhTlmKGzyU5YA=="; 472 }; 473 }; 474 - "@aws-sdk/credential-provider-sso-3.749.0" = { 475 name = "_at_aws-sdk_slash_credential-provider-sso"; 476 packageName = "@aws-sdk/credential-provider-sso"; 477 - version = "3.749.0"; 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=="; 481 }; 482 }; 483 "@aws-sdk/credential-provider-web-identity-3.296.0" = { ··· 489 sha512 = "Rl6Ohoekxe+pccA55XXQDW5wApbg3rGWr6FkmPRcg7Ld6Vfe+HL8OtfsFf83/0eoFerevbif+00BdknXWT05LA=="; 490 }; 491 }; 492 - "@aws-sdk/credential-provider-web-identity-3.749.0" = { 493 name = "_at_aws-sdk_slash_credential-provider-web-identity"; 494 packageName = "@aws-sdk/credential-provider-web-identity"; 495 - version = "3.749.0"; 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=="; 499 }; 500 }; 501 - "@aws-sdk/crt-loader-3.749.0" = { 502 name = "_at_aws-sdk_slash_crt-loader"; 503 packageName = "@aws-sdk/crt-loader"; 504 - version = "3.749.0"; 505 src = fetchurl { 506 - url = "https://registry.npmjs.org/@aws-sdk/crt-loader/-/crt-loader-3.749.0.tgz"; 507 - sha512 = "HLakuc/wWQbeG2VfHS6UHflV0HbTDnLQrooOu0RgQaGmmXxcyx26lPGMtxsAylSQ2+Rw1p55ViIal27pclf0gQ=="; 508 }; 509 }; 510 "@aws-sdk/eventstream-codec-3.296.0" = { ··· 606 sha512 = "SCIt10cr5dud7hvwveU4wkLjvkGssJ3GrcbHCds2NwI+JHmpcaaNYLAqi305JAuT29T36U5ssTFDSmrrEOcfag=="; 607 }; 608 }; 609 - "@aws-sdk/lib-storage-3.749.0" = { 610 name = "_at_aws-sdk_slash_lib-storage"; 611 packageName = "@aws-sdk/lib-storage"; 612 - version = "3.749.0"; 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=="; 616 }; 617 }; 618 "@aws-sdk/md5-js-3.296.0" = { ··· 687 sha512 = "F5wVMhLIgA86PKsK/Az7LGIiNVDdZjoSn0+boe6fYW/AIAmgJhPf//500Md0GsKsLOCcPcxiQC43a0hVT2zbew=="; 688 }; 689 }; 690 - "@aws-sdk/middleware-flexible-checksums-3.749.0" = { 691 name = "_at_aws-sdk_slash_middleware-flexible-checksums"; 692 packageName = "@aws-sdk/middleware-flexible-checksums"; 693 - version = "3.749.0"; 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=="; 697 }; 698 }; 699 "@aws-sdk/middleware-host-header-3.296.0" = { ··· 786 sha512 = "zH4uZKEqumo01wn+dTwrYnvOui9GjDiuBHdECnSjnA0Mkxo/tfMPYzYD7mE8kUlBz7HfQcXeXlyaApj9fPkxvg=="; 787 }; 788 }; 789 - "@aws-sdk/middleware-sdk-s3-3.749.0" = { 790 name = "_at_aws-sdk_slash_middleware-sdk-s3"; 791 packageName = "@aws-sdk/middleware-sdk-s3"; 792 - version = "3.749.0"; 793 src = fetchurl { 794 - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.749.0.tgz"; 795 - sha512 = "A7OaNkSFzI2vCRarSKEzoVejAyiLY1M1Z6PR3TE2woAPUUAgRv5UlFOXSymBx1Ya3HUQzWky7mnpnKAFyRGzSg=="; 796 }; 797 }; 798 "@aws-sdk/middleware-sdk-sts-3.296.0" = { ··· 858 sha512 = "L7jacxSt6gxX1gD3tQtfwHqBDk5rT2wWD3rxBa6rs7f81b9ObgY/sPT2IgRT7JNCVzvKLYFxJaTklDj65mY1SQ=="; 859 }; 860 }; 861 - "@aws-sdk/middleware-user-agent-3.749.0" = { 862 name = "_at_aws-sdk_slash_middleware-user-agent"; 863 packageName = "@aws-sdk/middleware-user-agent"; 864 - version = "3.749.0"; 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=="; 868 }; 869 }; 870 - "@aws-sdk/nested-clients-3.749.0" = { 871 name = "_at_aws-sdk_slash_nested-clients"; 872 packageName = "@aws-sdk/nested-clients"; 873 - version = "3.749.0"; 874 src = fetchurl { 875 - url = "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.749.0.tgz"; 876 - sha512 = "5L8OuVojcVQAZw+iVXTaw88AZTlMw8fD51lB6spzbZdNLl6dd5Iz1JVJAOUl2mTAZXRiN5Q9VECwY1yMgWweAw=="; 877 }; 878 }; 879 "@aws-sdk/node-config-provider-3.296.0" = { ··· 939 sha512 = "Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ=="; 940 }; 941 }; 942 - "@aws-sdk/s3-presigned-post-3.749.0" = { 943 name = "_at_aws-sdk_slash_s3-presigned-post"; 944 packageName = "@aws-sdk/s3-presigned-post"; 945 - version = "3.749.0"; 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=="; 949 }; 950 }; 951 "@aws-sdk/s3-request-presigner-3.296.0" = { ··· 957 sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw=="; 958 }; 959 }; 960 - "@aws-sdk/s3-request-presigner-3.749.0" = { 961 name = "_at_aws-sdk_slash_s3-request-presigner"; 962 packageName = "@aws-sdk/s3-request-presigner"; 963 - version = "3.749.0"; 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=="; 967 }; 968 }; 969 "@aws-sdk/service-error-classification-3.296.0" = { ··· 993 sha512 = "NQyJ/FClty4VmF1WoV4rOkbN0Unn0zevzy8iJrYhqxE3Sc7lySM4Btnsd4Iqelm2dR6l+jNRApGgD8NvoGjGig=="; 994 }; 995 }; 996 - "@aws-sdk/signature-v4-crt-3.749.0" = { 997 name = "_at_aws-sdk_slash_signature-v4-crt"; 998 packageName = "@aws-sdk/signature-v4-crt"; 999 - version = "3.749.0"; 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=="; 1003 }; 1004 }; 1005 "@aws-sdk/signature-v4-multi-region-3.296.0" = { ··· 1011 sha512 = "BNMXS0YJEgflPhO2KxXG4f0iTMOGdyxslDMNGmMWGGQm6bbwtqZ7Y9ZyMQYKfzk3GUPpfGQcaaSNiGfURPOCOg=="; 1012 }; 1013 }; 1014 - "@aws-sdk/signature-v4-multi-region-3.749.0" = { 1015 name = "_at_aws-sdk_slash_signature-v4-multi-region"; 1016 packageName = "@aws-sdk/signature-v4-multi-region"; 1017 - version = "3.749.0"; 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=="; 1021 }; 1022 }; 1023 "@aws-sdk/smithy-client-3.296.0" = { ··· 1038 sha512 = "yC1ku7A5S+o/CLlgbgDB2bx8+Wq43qj8xfohmTuIhpiP2m/NyUiRVv6S6ARONLI6bVeo1T2/BFk5Q9DfE2xzAQ=="; 1039 }; 1040 }; 1041 - "@aws-sdk/token-providers-3.749.0" = { 1042 name = "_at_aws-sdk_slash_token-providers"; 1043 packageName = "@aws-sdk/token-providers"; 1044 - version = "3.749.0"; 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=="; 1048 }; 1049 }; 1050 "@aws-sdk/types-3.296.0" = { ··· 1290 sha512 = "AMWac8aIBnaa9nxAEpZ752j29a/UQTViRfR5gnCX38ECBKGfOQMpgYnee5HdlMr4GHJj0WkOzQxBtInW4pV58g=="; 1291 }; 1292 }; 1293 - "@aws-sdk/util-user-agent-node-3.749.0" = { 1294 name = "_at_aws-sdk_slash_util-user-agent-node"; 1295 packageName = "@aws-sdk/util-user-agent-node"; 1296 - version = "3.749.0"; 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=="; 1300 }; 1301 }; 1302 "@aws-sdk/util-utf8-3.295.0" = { ··· 1443 sha512 = "EknvVmtBuSIic47xkOqyNabAme0RYTw52BTMz8eBgU1ysTyMrD1uOoM+JdS0J/4Yfp98IBT3osqq3BfwSaNaGQ=="; 1444 }; 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 "@azure/logger-1.1.4" = { 1456 name = "_at_azure_slash_logger"; 1457 packageName = "@azure/logger"; ··· 1470 sha512 = "OHHEWMB5+Zrix8yKvLVzU3rKDFvh7SOzAzXfICD7YgUXLxfHpTPX2pzOotrri1kskwhHqIj4a5LvhZlIqE7C7g=="; 1471 }; 1472 }; 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 "@azure/msal-common-14.16.0" = { 1483 name = "_at_azure_slash_msal-common"; 1484 packageName = "@azure/msal-common"; ··· 1486 src = fetchurl { 1487 url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.16.0.tgz"; 1488 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 }; 1499 }; 1500 "@azure/msal-node-2.16.2" = { ··· 2127 sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; 2128 }; 2129 }; 2130 - "@cspell/cspell-bundled-dicts-8.17.3" = { 2131 name = "_at_cspell_slash_cspell-bundled-dicts"; 2132 packageName = "@cspell/cspell-bundled-dicts"; 2133 - version = "8.17.3"; 2134 src = fetchurl { 2135 - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.17.3.tgz"; 2136 - sha512 = "6uOF726o3JnExAUKM20OJJXZo+Qf9Jt64nkVwnVXx7Upqr5I9Pb1npYPEAIpUA03SnWYmKwUIqhAmkwrN+bLPA=="; 2137 }; 2138 }; 2139 - "@cspell/cspell-json-reporter-8.17.3" = { 2140 name = "_at_cspell_slash_cspell-json-reporter"; 2141 packageName = "@cspell/cspell-json-reporter"; 2142 - version = "8.17.3"; 2143 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=="; 2146 }; 2147 }; 2148 - "@cspell/cspell-pipe-8.17.3" = { 2149 name = "_at_cspell_slash_cspell-pipe"; 2150 packageName = "@cspell/cspell-pipe"; 2151 - version = "8.17.3"; 2152 src = fetchurl { 2153 - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.17.3.tgz"; 2154 - sha512 = "DqqSWKt9NLWPGloYxZTpzUhgdW8ObMkZmOOF6TyqpJ4IbckEct8ULgskNorTNRlmmjLniaNgvg6JSHuYO3Urxw=="; 2155 }; 2156 }; 2157 - "@cspell/cspell-resolver-8.17.3" = { 2158 name = "_at_cspell_slash_cspell-resolver"; 2159 packageName = "@cspell/cspell-resolver"; 2160 - version = "8.17.3"; 2161 src = fetchurl { 2162 - url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.17.3.tgz"; 2163 - sha512 = "yQlVaIsWiax6RRuuacZs++kl6Y9rwH9ZkVlsG9fhdeCJ5Xf3WCW+vmX1chzhhKDzRr8CF9fsvb1uagd/5/bBYA=="; 2164 }; 2165 }; 2166 - "@cspell/cspell-service-bus-8.17.3" = { 2167 name = "_at_cspell_slash_cspell-service-bus"; 2168 packageName = "@cspell/cspell-service-bus"; 2169 - version = "8.17.3"; 2170 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=="; 2173 }; 2174 }; 2175 - "@cspell/cspell-types-8.17.3" = { 2176 name = "_at_cspell_slash_cspell-types"; 2177 packageName = "@cspell/cspell-types"; 2178 - version = "8.17.3"; 2179 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=="; 2182 }; 2183 }; 2184 "@cspell/dict-ada-4.1.0" = { ··· 2262 sha512 = "sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw=="; 2263 }; 2264 }; 2265 - "@cspell/dict-cpp-6.0.3" = { 2266 name = "_at_cspell_slash_dict-cpp"; 2267 packageName = "@cspell/dict-cpp"; 2268 - version = "6.0.3"; 2269 src = fetchurl { 2270 - url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.3.tgz"; 2271 - sha512 = "OFrVXdxCeGKnon36Pe3yFjBuY4kzzEwWFf3vDz+cJTodZDkjFkBifQeTtt5YfimgF8cfAJZXkBCsxjipAgmAiw=="; 2272 }; 2273 }; 2274 "@cspell/dict-cryptocurrencies-1.0.10" = { ··· 2433 sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; 2434 }; 2435 }; 2436 - "@cspell/dict-en_us-4.3.31" = { 2437 name = "_at_cspell_slash_dict-en_us"; 2438 packageName = "@cspell/dict-en_us"; 2439 - version = "4.3.31"; 2440 src = fetchurl { 2441 - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.31.tgz"; 2442 - sha512 = "MDc+1B0aFwQONS0JZ6w7ks2KFGkUcaNTFJ8kI6GHvFRmEl3zP5NJDwFEXFsoEdLDb86j2myauSWMJXR3JFuwbA=="; 2443 }; 2444 }; 2445 "@cspell/dict-filetypes-1.1.8" = { ··· 2505 sha512 = "Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g=="; 2506 }; 2507 }; 2508 - "@cspell/dict-fullstack-3.2.4" = { 2509 name = "_at_cspell_slash_dict-fullstack"; 2510 packageName = "@cspell/dict-fullstack"; 2511 - version = "3.2.4"; 2512 src = fetchurl { 2513 - url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.4.tgz"; 2514 - sha512 = "JRRvaOLBZ13BO9sP395W+06tyO1Jy/87aFlKe9xQiCWMiwpCo2kGq0xBGq0PDWe253lYLs+GKrNmLU0fSxrObg=="; 2515 }; 2516 }; 2517 "@cspell/dict-gaming-terms-1.1.0" = { ··· 2766 sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ=="; 2767 }; 2768 }; 2769 - "@cspell/dict-npm-5.1.26" = { 2770 name = "_at_cspell_slash_dict-npm"; 2771 packageName = "@cspell/dict-npm"; 2772 - version = "5.1.26"; 2773 src = fetchurl { 2774 - url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.26.tgz"; 2775 - sha512 = "JU0/9P4nLPPC3Py+sF42tUKm9J4KAvwXaJubp2a4QwhCPzFVlOJTP2tTseFlLbdZn23d61pt0hZ+Jhyy7N76Mg=="; 2776 }; 2777 }; 2778 "@cspell/dict-php-1.0.25" = { ··· 2991 sha512 = "0dPtI0lwHcAgSiQFx8CzvqjdoXROcH+1LyqgROCpBgppommWpVhbQ0eubnKotFEXgpUCONVkeZJ6Ql8NbTEu+w=="; 2992 }; 2993 }; 2994 - "@cspell/dynamic-import-8.17.3" = { 2995 name = "_at_cspell_slash_dynamic-import"; 2996 packageName = "@cspell/dynamic-import"; 2997 - version = "8.17.3"; 2998 src = fetchurl { 2999 - url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.17.3.tgz"; 3000 - sha512 = "Kg6IJhGHPv+9OxpxaXUpcqgnHEOhMLRWHLyx7FADZ+CJyO4AVeWQfhpTRM6KXhzIl7dPlLG1g8JAQxaoy88KTw=="; 3001 }; 3002 }; 3003 - "@cspell/filetypes-8.17.3" = { 3004 name = "_at_cspell_slash_filetypes"; 3005 packageName = "@cspell/filetypes"; 3006 - version = "8.17.3"; 3007 src = fetchurl { 3008 - url = "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.17.3.tgz"; 3009 - sha512 = "UFqRmJPccOSo+RYP/jZ4cr0s7ni37GrvnNAg1H/qIIxfmBYsexTAmsNzMqxp1M31NeI1Cx3LL7PspPMT0ms+7w=="; 3010 }; 3011 }; 3012 - "@cspell/strong-weak-map-8.17.3" = { 3013 name = "_at_cspell_slash_strong-weak-map"; 3014 packageName = "@cspell/strong-weak-map"; 3015 - version = "8.17.3"; 3016 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=="; 3019 }; 3020 }; 3021 - "@cspell/url-8.17.3" = { 3022 name = "_at_cspell_slash_url"; 3023 packageName = "@cspell/url"; 3024 - version = "8.17.3"; 3025 src = fetchurl { 3026 - url = "https://registry.npmjs.org/@cspell/url/-/url-8.17.3.tgz"; 3027 - sha512 = "gcsCz8g0qY94C8RXiAlUH/89n84Q9RSptP91XrvnLOT+Xva9Aibd7ywd5k9ameuf8Nagyl0ezB1MInZ30S9SRw=="; 3028 }; 3029 }; 3030 "@cspotcode/source-map-support-0.8.1" = { ··· 3036 sha512 = "IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="; 3037 }; 3038 }; 3039 - "@csstools/color-helpers-5.0.1" = { 3040 name = "_at_csstools_slash_color-helpers"; 3041 packageName = "@csstools/color-helpers"; 3042 - version = "5.0.1"; 3043 src = fetchurl { 3044 - url = "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.1.tgz"; 3045 - sha512 = "MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA=="; 3046 }; 3047 }; 3048 - "@csstools/css-calc-2.1.1" = { 3049 name = "_at_csstools_slash_css-calc"; 3050 packageName = "@csstools/css-calc"; 3051 - version = "2.1.1"; 3052 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=="; 3055 }; 3056 }; 3057 - "@csstools/css-color-parser-3.0.7" = { 3058 name = "_at_csstools_slash_css-color-parser"; 3059 packageName = "@csstools/css-color-parser"; 3060 - version = "3.0.7"; 3061 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=="; 3064 }; 3065 }; 3066 "@csstools/css-parser-algorithms-3.0.4" = { ··· 3198 sha512 = "0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw=="; 3199 }; 3200 }; 3201 - "@electron-forge/core-7.6.1" = { 3202 name = "_at_electron-forge_slash_core"; 3203 packageName = "@electron-forge/core"; 3204 - version = "7.6.1"; 3205 src = fetchurl { 3206 - url = "https://registry.npmjs.org/@electron-forge/core/-/core-7.6.1.tgz"; 3207 - sha512 = "gODx2GcBl6Y6ls1DeBidhKC0nmI2/xfx89WcSEDa5M3NKm/bBQo1EPjpwG6F+2r4e8KDkY/KrRbIli+wL1zQ7w=="; 3208 }; 3209 }; 3210 - "@electron-forge/core-utils-7.6.1" = { 3211 name = "_at_electron-forge_slash_core-utils"; 3212 packageName = "@electron-forge/core-utils"; 3213 - version = "7.6.1"; 3214 src = fetchurl { 3215 - url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-7.6.1.tgz"; 3216 - sha512 = "RGA3azq0r5bGk8DDmVDP1EML071JEa44hpZEgSsv9zmdC86aTh0cANyDE6sVarAwLx4LQ+zrFE3KSb63j1HD5w=="; 3217 }; 3218 }; 3219 - "@electron-forge/maker-base-7.6.1" = { 3220 name = "_at_electron-forge_slash_maker-base"; 3221 packageName = "@electron-forge/maker-base"; 3222 - version = "7.6.1"; 3223 src = fetchurl { 3224 - url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-7.6.1.tgz"; 3225 - sha512 = "kA6k0z4fFbqfjV++bbYVC46TckiqyqIo/gTW/QexsT6xlutXUbnNevhoRPVfGigftSAjE6T26DwTogC9hNDkwg=="; 3226 }; 3227 }; 3228 - "@electron-forge/plugin-base-7.6.1" = { 3229 name = "_at_electron-forge_slash_plugin-base"; 3230 packageName = "@electron-forge/plugin-base"; 3231 - version = "7.6.1"; 3232 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=="; 3235 }; 3236 }; 3237 - "@electron-forge/publisher-base-7.6.1" = { 3238 name = "_at_electron-forge_slash_publisher-base"; 3239 packageName = "@electron-forge/publisher-base"; 3240 - version = "7.6.1"; 3241 src = fetchurl { 3242 - url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-7.6.1.tgz"; 3243 - sha512 = "VE0DJJYcMRGMxEbeC20q+ynCpra9oqkM6oXd8O1jRyTit9F+PZlscT/p5vLANrTW5vGrV6CXLyyloPxWxOf8DA=="; 3244 }; 3245 }; 3246 - "@electron-forge/shared-types-7.6.1" = { 3247 name = "_at_electron-forge_slash_shared-types"; 3248 packageName = "@electron-forge/shared-types"; 3249 - version = "7.6.1"; 3250 src = fetchurl { 3251 - url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-7.6.1.tgz"; 3252 - sha512 = "i6VdZGG8SYEBirpk+FP7bEMYtCNf9wBkK81IcPco8LP0KbsvgR8y7aUSVxG8DLoVwYB5yr0N9MYXOfNp1gkQ7A=="; 3253 }; 3254 }; 3255 - "@electron-forge/template-base-7.6.1" = { 3256 name = "_at_electron-forge_slash_template-base"; 3257 packageName = "@electron-forge/template-base"; 3258 - version = "7.6.1"; 3259 src = fetchurl { 3260 - url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-7.6.1.tgz"; 3261 - sha512 = "Pk65CIe6jYJa/hv25o0ueyuAOrRTi3qz92g5cYnj+YZzndNmrem1sNQvNKkavw0w0TKEUC5Y0EZ4ejLSYhVIQA=="; 3262 }; 3263 }; 3264 - "@electron-forge/template-vite-7.6.1" = { 3265 name = "_at_electron-forge_slash_template-vite"; 3266 packageName = "@electron-forge/template-vite"; 3267 - version = "7.6.1"; 3268 src = fetchurl { 3269 - url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-7.6.1.tgz"; 3270 - sha512 = "DxRBCXgnpFQHueG3M6yDN1x2pTYDycHXIddLExUydA9bsrxVwlu8Oo7Mm5XOEltebITD/bZ0iQniOVkzUov37g=="; 3271 }; 3272 }; 3273 - "@electron-forge/template-vite-typescript-7.6.1" = { 3274 name = "_at_electron-forge_slash_template-vite-typescript"; 3275 packageName = "@electron-forge/template-vite-typescript"; 3276 - version = "7.6.1"; 3277 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=="; 3280 }; 3281 }; 3282 - "@electron-forge/template-webpack-7.6.1" = { 3283 name = "_at_electron-forge_slash_template-webpack"; 3284 packageName = "@electron-forge/template-webpack"; 3285 - version = "7.6.1"; 3286 src = fetchurl { 3287 - url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-7.6.1.tgz"; 3288 - sha512 = "8HXJ7eh5mjphC2tBfBOroEfM71DsWt3yrkEQMGzW6Lc5u2itkCQrEAINm3nuLscWrqLRk4ZsfT1f1VzdwAraXg=="; 3289 }; 3290 }; 3291 - "@electron-forge/template-webpack-typescript-7.6.1" = { 3292 name = "_at_electron-forge_slash_template-webpack-typescript"; 3293 packageName = "@electron-forge/template-webpack-typescript"; 3294 - version = "7.6.1"; 3295 src = fetchurl { 3296 - url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-7.6.1.tgz"; 3297 - sha512 = "ECEd70QOAi7r2ZibIU2U9rh0CVND7oJP5BnKRCP20uUCxdQdO7RTMRDXesm41VTRa1uZ+64pRdOQTDFHB6xitA=="; 3298 }; 3299 }; 3300 - "@electron-forge/tracer-7.6.1" = { 3301 name = "_at_electron-forge_slash_tracer"; 3302 packageName = "@electron-forge/tracer"; 3303 - version = "7.6.1"; 3304 src = fetchurl { 3305 - url = "https://registry.npmjs.org/@electron-forge/tracer/-/tracer-7.6.1.tgz"; 3306 - sha512 = "nZzVzXT4xdueWYoSbgStS5LfcifW/e/WJj9VOt6xYpFxYOsQHpLkkCAc6nH0gxn+60kiU4FMU0p2kSQ2eQhWuA=="; 3307 }; 3308 }; 3309 "@electron/asar-3.3.1" = { ··· 3398 sha512 = "Ce3xE2JvTSEbASFbRbA1gAIcMcZWdS2yUYRaQbeM0nbOzaZrUYfa3ePtcriYRZOZmr+CkKA+zbjhvTpIOAYVcw=="; 3399 }; 3400 }; 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 "@eslint-community/eslint-utils-4.4.1" = { 3429 name = "_at_eslint-community_slash_eslint-utils"; 3430 packageName = "@eslint-community/eslint-utils"; ··· 3452 sha512 = "GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w=="; 3453 }; 3454 }; 3455 - "@eslint/core-0.10.0" = { 3456 name = "_at_eslint_slash_core"; 3457 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"; 3468 src = fetchurl { 3469 - url = "https://registry.npmjs.org/@eslint/core/-/core-0.11.0.tgz"; 3470 - sha512 = "DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA=="; 3471 }; 3472 }; 3473 "@eslint/eslintrc-0.4.3" = { ··· 3479 sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 3480 }; 3481 }; 3482 - "@eslint/eslintrc-2.1.4" = { 3483 name = "_at_eslint_slash_eslintrc"; 3484 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"; 3504 src = fetchurl { 3505 - url = "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz"; 3506 - sha512 = "d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q=="; 3507 }; 3508 }; 3509 - "@eslint/js-9.20.0" = { 3510 name = "_at_eslint_slash_js"; 3511 packageName = "@eslint/js"; 3512 - version = "9.20.0"; 3513 src = fetchurl { 3514 - url = "https://registry.npmjs.org/@eslint/js/-/js-9.20.0.tgz"; 3515 - sha512 = "iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ=="; 3516 }; 3517 }; 3518 "@eslint/object-schema-2.1.6" = { ··· 3524 sha512 = "RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA=="; 3525 }; 3526 }; 3527 - "@eslint/plugin-kit-0.2.5" = { 3528 name = "_at_eslint_slash_plugin-kit"; 3529 packageName = "@eslint/plugin-kit"; 3530 - version = "0.2.5"; 3531 src = fetchurl { 3532 - url = "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz"; 3533 - sha512 = "lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A=="; 3534 }; 3535 }; 3536 "@ethereumjs/rlp-4.0.1" = { ··· 3695 sha512 = "foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="; 3696 }; 3697 }; 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 "@httptoolkit/websocket-stream-6.0.1" = { 3708 name = "_at_httptoolkit_slash_websocket-stream"; 3709 packageName = "@httptoolkit/websocket-stream"; ··· 3731 sha512 = "YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="; 3732 }; 3733 }; 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 "@humanwhocodes/config-array-0.5.0" = { 3744 name = "_at_humanwhocodes_slash_config-array"; 3745 packageName = "@humanwhocodes/config-array"; ··· 3767 sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; 3768 }; 3769 }; 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 "@humanwhocodes/retry-0.3.1" = { 3780 name = "_at_humanwhocodes_slash_retry"; 3781 packageName = "@humanwhocodes/retry"; ··· 3785 sha512 = "JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="; 3786 }; 3787 }; 3788 - "@humanwhocodes/retry-0.4.1" = { 3789 name = "_at_humanwhocodes_slash_retry"; 3790 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"; 3801 src = fetchurl { 3802 - url = "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz"; 3803 - sha512 = "H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q=="; 3804 }; 3805 }; 3806 "@hutson/parse-repository-url-5.0.0" = { ··· 4098 src = fetchurl { 4099 url = "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz"; 4100 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 }; 4120 }; 4121 "@jimp/bmp-0.16.13" = { ··· 4613 sha512 = "uyKjxCe1ou11RJz6koBr5vXtyaGjTA45hF+H88GNW96vms7jKqmYdMm067Az1OKwl38h02lQRQ2tmoEzV7u74w=="; 4614 }; 4615 }; 4616 - "@jsii/check-node-1.106.0" = { 4617 name = "_at_jsii_slash_check-node"; 4618 packageName = "@jsii/check-node"; 4619 - version = "1.106.0"; 4620 src = fetchurl { 4621 - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.106.0.tgz"; 4622 - sha512 = "/T/TUsbHdEbZRFR4Rem9+UXVvgMYncEkrIeC52oIHJ8BDSgqlDsIARio/Eu5DOftF4avSLV/sshR6n19mpK1oA=="; 4623 }; 4624 }; 4625 - "@jsii/spec-1.106.0" = { 4626 - name = "_at_jsii_slash_spec"; 4627 - packageName = "@jsii/spec"; 4628 - version = "1.106.0"; 4629 src = fetchurl { 4630 - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.106.0.tgz"; 4631 - sha512 = "pAIvqEGf0YLmtzFtUKWNEGkCmXMHENy7k+rzCD147wnM4jHhvEL1mEvxi99aA2VcmvLYaAYNOs/XozT+s+kLqQ=="; 4632 }; 4633 }; 4634 - "@lerna/create-8.1.9" = { 4635 - name = "_at_lerna_slash_create"; 4636 - packageName = "@lerna/create"; 4637 - version = "8.1.9"; 4638 src = fetchurl { 4639 - url = "https://registry.npmjs.org/@lerna/create/-/create-8.1.9.tgz"; 4640 - sha512 = "DPnl5lPX4v49eVxEbJnAizrpMdMTBz1qykZrAbBul9rfgk531v8oAt+Pm6O/rpAleRombNM7FJb5rYGzBJatOQ=="; 4641 }; 4642 }; 4643 "@lezer/common-1.2.3" = { ··· 4802 sha512 = "llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg=="; 4803 }; 4804 }; 4805 - "@microsoft/rush-lib-5.149.0" = { 4806 name = "_at_microsoft_slash_rush-lib"; 4807 packageName = "@microsoft/rush-lib"; 4808 - version = "5.149.0"; 4809 src = fetchurl { 4810 - url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.149.0.tgz"; 4811 - sha512 = "731PSPEbT3ltCiNDMFBJOxoKnoefIMNqRseYT8Q4Col57/veiKkO4P4UDN6Lyn3BKUZNT9mV/VjOWKr65LUnhQ=="; 4812 }; 4813 }; 4814 "@mischnic/json-sourcemap-0.1.1" = { ··· 4827 src = fetchurl { 4828 url = "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz"; 4829 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 }; 4840 }; 4841 "@noble/curves-1.4.2" = { ··· 4883 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 4884 }; 4885 }; 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 "@npmcli/agent-3.0.0" = { 4896 name = "_at_npmcli_slash_agent"; 4897 packageName = "@npmcli/agent"; ··· 4899 src = fetchurl { 4900 url = "https://registry.npmjs.org/@npmcli/agent/-/agent-3.0.0.tgz"; 4901 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 }; 4912 }; 4913 "@npmcli/config-6.4.1" = { ··· 4946 sha512 = "yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ=="; 4947 }; 4948 }; 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 "@npmcli/fs-4.0.0" = { 4959 name = "_at_npmcli_slash_fs"; 4960 packageName = "@npmcli/fs"; ··· 4973 sha512 = "liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ=="; 4974 }; 4975 }; 4976 - "@npmcli/git-6.0.1" = { 4977 name = "_at_npmcli_slash_git"; 4978 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"; 4989 src = fetchurl { 4990 - url = "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz"; 4991 - sha512 = "c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w=="; 4992 }; 4993 }; 4994 "@npmcli/installed-package-contents-3.0.0" = { ··· 5009 sha512 = "tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA=="; 5010 }; 5011 }; 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 "@npmcli/move-file-1.1.2" = { 5022 name = "_at_npmcli_slash_move-file"; 5023 packageName = "@npmcli/move-file"; ··· 5045 sha512 = "pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg=="; 5046 }; 5047 }; 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 "@npmcli/node-gyp-4.0.0" = { 5058 name = "_at_npmcli_slash_node-gyp"; 5059 packageName = "@npmcli/node-gyp"; ··· 5061 src = fetchurl { 5062 url = "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-4.0.0.tgz"; 5063 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 }; 5074 }; 5075 "@npmcli/package-json-5.2.1" = { ··· 5108 sha512 = "/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ=="; 5109 }; 5110 }; 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 "@npmcli/redact-3.1.1" = { 5130 name = "_at_npmcli_slash_redact"; 5131 packageName = "@npmcli/redact"; ··· 5135 sha512 = "3Hc2KGIkrvJWJqTbvueXzBeZlmvoOxc2jyX00yzr3+sNFquJg0N8hH4SAPLPVrkWIRQICVpVgjrss971awXVnA=="; 5136 }; 5137 }; 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 "@npmcli/run-script-9.0.2" = { 5148 name = "_at_npmcli_slash_run-script"; 5149 packageName = "@npmcli/run-script"; ··· 5151 src = fetchurl { 5152 url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-9.0.2.tgz"; 5153 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 }; 5164 }; 5165 "@oclif/core-1.26.2" = { ··· 5234 sha512 = "yx6KAqlt3TAHBduS2fMQtJDL2ufIHnDRArrJEOoTTuizxqmjLT+psGYOHpmMl3gvQpFJ11Hs76guUUktzAF9Bg=="; 5235 }; 5236 }; 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 "@one-ini/wasm-0.1.1" = { 5373 name = "_at_one-ini_slash_wasm"; 5374 packageName = "@one-ini/wasm"; ··· 6224 sha512 = "8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw=="; 6225 }; 6226 }; 6227 - "@prisma/prisma-schema-wasm-6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0" = { 6228 name = "_at_prisma_slash_prisma-schema-wasm"; 6229 packageName = "@prisma/prisma-schema-wasm"; 6230 - version = "6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0"; 6231 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=="; 6234 }; 6235 }; 6236 - "@prisma/schema-files-loader-6.3.1" = { 6237 name = "_at_prisma_slash_schema-files-loader"; 6238 packageName = "@prisma/schema-files-loader"; 6239 - version = "6.3.1"; 6240 src = fetchurl { 6241 - url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-6.3.1.tgz"; 6242 - sha512 = "kdH6RL0Yy8a2Lqb96UJBp40Q8+Hei9qukEDlhg8an2E8uIPaerL72ME8f6EfI9zYu33ddc69MH2dES1DfYdY/A=="; 6243 }; 6244 }; 6245 "@protobufjs/aspromise-1.1.2" = { ··· 6359 sha512 = "USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ=="; 6360 }; 6361 }; 6362 - "@rushstack/heft-config-file-0.16.5" = { 6363 name = "_at_rushstack_slash_heft-config-file"; 6364 packageName = "@rushstack/heft-config-file"; 6365 - version = "0.16.5"; 6366 src = fetchurl { 6367 - url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.16.5.tgz"; 6368 - sha512 = "XzV4QdwK8LL2U0wjDtPp+bjEU0juj3jP+eCfwSIBZPVsH3VDdiXC2AlJVa6Jiht7hY2M9LPT3PJ5zha2w80lCA=="; 6369 }; 6370 }; 6371 - "@rushstack/lookup-by-path-0.5.5" = { 6372 name = "_at_rushstack_slash_lookup-by-path"; 6373 packageName = "@rushstack/lookup-by-path"; 6374 - version = "0.5.5"; 6375 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=="; 6378 }; 6379 }; 6380 "@rushstack/node-core-library-5.11.0" = { ··· 6386 sha512 = "I8+VzG9A0F3nH2rLpPd7hF8F7l5Xb7D+ldrWVZYegXM6CsKkvWc670RlgK3WX8/AseZfXA/vVrh0bpXe2Y2UDQ=="; 6387 }; 6388 }; 6389 - "@rushstack/package-deps-hash-4.3.6" = { 6390 name = "_at_rushstack_slash_package-deps-hash"; 6391 packageName = "@rushstack/package-deps-hash"; 6392 - version = "4.3.6"; 6393 src = fetchurl { 6394 - url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.3.6.tgz"; 6395 - sha512 = "Vl8DlhiMspBd2PnRPlbXMpPTcwFh2JdrutItFD6os8duXWWHX7tiE4BQJNMYbEPZCvPkwrGj1EnWoFaKQM/5Xw=="; 6396 }; 6397 }; 6398 - "@rushstack/package-extractor-0.10.10" = { 6399 name = "_at_rushstack_slash_package-extractor"; 6400 packageName = "@rushstack/package-extractor"; 6401 - version = "0.10.10"; 6402 src = fetchurl { 6403 - url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.10.10.tgz"; 6404 - sha512 = "F0DVbn6ILKKfoNZ7RhJAFT2dIEB20Z/8g2Gmm19pjKZbOazyd+FRwnts/ogwlTBmic88Ogca8QOJZT8HCLB7Sw=="; 6405 }; 6406 }; 6407 "@rushstack/rig-package-0.5.3" = { ··· 6413 sha512 = "olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow=="; 6414 }; 6415 }; 6416 - "@rushstack/rush-amazon-s3-build-cache-plugin-5.149.0" = { 6417 name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin"; 6418 packageName = "@rushstack/rush-amazon-s3-build-cache-plugin"; 6419 - version = "5.149.0"; 6420 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=="; 6423 }; 6424 }; 6425 - "@rushstack/rush-azure-storage-build-cache-plugin-5.149.0" = { 6426 name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin"; 6427 packageName = "@rushstack/rush-azure-storage-build-cache-plugin"; 6428 - version = "5.149.0"; 6429 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=="; 6432 }; 6433 }; 6434 - "@rushstack/rush-http-build-cache-plugin-5.149.0" = { 6435 name = "_at_rushstack_slash_rush-http-build-cache-plugin"; 6436 packageName = "@rushstack/rush-http-build-cache-plugin"; 6437 - version = "5.149.0"; 6438 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=="; 6441 }; 6442 }; 6443 - "@rushstack/rush-sdk-5.149.0" = { 6444 name = "_at_rushstack_slash_rush-sdk"; 6445 packageName = "@rushstack/rush-sdk"; 6446 - version = "5.149.0"; 6447 src = fetchurl { 6448 - url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.149.0.tgz"; 6449 - sha512 = "JHxD/8ssiju4gJa9QW+K8WaXAOfzQNSv260E3Xx/RIYRIgq4tHkk9Pqpg+bsw17XvE4jbjTL2GBXVJyOEE160Q=="; 6450 }; 6451 }; 6452 - "@rushstack/stream-collator-4.1.84" = { 6453 name = "_at_rushstack_slash_stream-collator"; 6454 packageName = "@rushstack/stream-collator"; 6455 - version = "4.1.84"; 6456 src = fetchurl { 6457 - url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.84.tgz"; 6458 - sha512 = "H6nVTPh8TrnF392H2iISkm4mkU7QH2FFYgw0TwSJvEPJ6+ukU2kpffq1NPF6wnyzt7fyxCmY9EY8nVGsdS9BSA=="; 6459 }; 6460 }; 6461 "@rushstack/terminal-0.15.0" = { ··· 6485 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 6486 }; 6487 }; 6488 - "@schematics/angular-19.1.7" = { 6489 name = "_at_schematics_slash_angular"; 6490 packageName = "@schematics/angular"; 6491 - version = "19.1.7"; 6492 src = fetchurl { 6493 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-19.1.7.tgz"; 6494 - sha512 = "BB8yMGmYDZzSb8Nu+Ln0TKyeoS3++f9STCYw30NwM3IViHxJJYxu/zowzwSa9TjftIzdCpbOaPxGS0vU9UOUDQ=="; 6495 }; 6496 }; 6497 "@scure/base-1.1.9" = { ··· 6656 sha512 = "83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg=="; 6657 }; 6658 }; 6659 "@sideway/address-4.1.5" = { 6660 name = "_at_sideway_slash_address"; 6661 packageName = "@sideway/address"; ··· 6683 sha512 = "RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="; 6684 }; 6685 }; 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 "@sigstore/bundle-3.1.0" = { 6696 name = "_at_sigstore_slash_bundle"; 6697 packageName = "@sigstore/bundle"; ··· 6701 sha512 = "Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag=="; 6702 }; 6703 }; 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 "@sigstore/core-2.0.0" = { 6714 name = "_at_sigstore_slash_core"; 6715 packageName = "@sigstore/core"; ··· 6719 sha512 = "nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg=="; 6720 }; 6721 }; 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 "@sigstore/protobuf-specs-0.4.0" = { 6732 name = "_at_sigstore_slash_protobuf-specs"; 6733 packageName = "@sigstore/protobuf-specs"; ··· 6737 sha512 = "o09cLSIq9EKyRXwryWDOJagkml9XgQCoCSRjHOnHLnvsivaW7Qznzz6yjfV7PHJHhIvyp8OH7OX8w0Dc5bQK7A=="; 6738 }; 6739 }; 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 "@sigstore/sign-3.1.0" = { 6750 name = "_at_sigstore_slash_sign"; 6751 packageName = "@sigstore/sign"; ··· 6755 sha512 = "knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw=="; 6756 }; 6757 }; 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 "@sigstore/tuf-3.1.0" = { 6768 name = "_at_sigstore_slash_tuf"; 6769 packageName = "@sigstore/tuf"; ··· 6771 src = fetchurl { 6772 url = "https://registry.npmjs.org/@sigstore/tuf/-/tuf-3.1.0.tgz"; 6773 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 }; 6784 }; 6785 "@sigstore/verify-2.1.0" = { ··· 6809 sha512 = "XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ=="; 6810 }; 6811 }; 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 "@sindresorhus/chunkify-0.2.0" = { 6822 name = "_at_sindresorhus_slash_chunkify"; 6823 packageName = "@sindresorhus/chunkify"; ··· 6935 sha512 = "Igfg8lKu3dRVkTSEm98QpZUvKEOa71jDX4vKRcvJVyRc3UgN3j7vFMf0s7xLQhYmKa8kyJGQgUJDOV5V3neVlQ=="; 6936 }; 6937 }; 6938 - "@smithy/core-3.1.4" = { 6939 name = "_at_smithy_slash_core"; 6940 packageName = "@smithy/core"; 6941 - version = "3.1.4"; 6942 src = fetchurl { 6943 - url = "https://registry.npmjs.org/@smithy/core/-/core-3.1.4.tgz"; 6944 - sha512 = "wFExFGK+7r2wYriOqe7RRIBNpvxwiS95ih09+GSLRBdoyK/O1uZA7K7pKesj5CBvwJuSBeXwLyR88WwIAY+DGA=="; 6945 }; 6946 }; 6947 "@smithy/credential-provider-imds-4.0.1" = { ··· 7079 sha512 = "OGXo7w5EkB5pPiac7KNzVtfCW2vKBTZNuCctn++TTSOMpe6RZO/n6WEC1AxJINn3+vWLKW49uad3lo/u0WJ9oQ=="; 7080 }; 7081 }; 7082 - "@smithy/middleware-endpoint-4.0.5" = { 7083 name = "_at_smithy_slash_middleware-endpoint"; 7084 packageName = "@smithy/middleware-endpoint"; 7085 - version = "4.0.5"; 7086 src = fetchurl { 7087 - url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.5.tgz"; 7088 - sha512 = "cPzGZV7qStHwboFrm6GfrzQE+YDiCzWcTh4+7wKrP/ZQ4gkw+r7qDjV8GjM4N0UYsuUyLfpzLGg5hxsYTU11WA=="; 7089 }; 7090 }; 7091 - "@smithy/middleware-retry-4.0.6" = { 7092 name = "_at_smithy_slash_middleware-retry"; 7093 packageName = "@smithy/middleware-retry"; 7094 - version = "4.0.6"; 7095 src = fetchurl { 7096 - url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.0.6.tgz"; 7097 - sha512 = "s8QzuOQnbdvRymD9Gt9c9zMq10wUQAHQ3z72uirrBHCwZcLTrL5iCOuVTMdka2IXOYhQE890WD5t6G24+F+Qcg=="; 7098 }; 7099 }; 7100 "@smithy/middleware-serde-4.0.2" = { ··· 7124 sha512 = "8mRTjvCtVET8+rxvmzRNRR0hH2JjV0DFOmwXPrISmTIJEfnCBugpYYGAsCj8t41qd+RB5gbheSQ/6aKZCQvFLQ=="; 7125 }; 7126 }; 7127 - "@smithy/node-http-handler-4.0.2" = { 7128 name = "_at_smithy_slash_node-http-handler"; 7129 packageName = "@smithy/node-http-handler"; 7130 - version = "4.0.2"; 7131 src = fetchurl { 7132 - url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.0.2.tgz"; 7133 - sha512 = "X66H9aah9hisLLSnGuzRYba6vckuFtGE+a5DcHLliI/YlqKrGoxhisD5XbX44KyoeRzoNlGr94eTsMVHFAzPOw=="; 7134 }; 7135 }; 7136 "@smithy/property-provider-4.0.1" = { ··· 7196 sha512 = "nCe6fQ+ppm1bQuw5iKoeJ0MJfz2os7Ic3GBjOkLOPtavbD1ONoyE3ygjBfz2ythFWm4YnRm6OxW+8p/m9uCoIA=="; 7197 }; 7198 }; 7199 - "@smithy/smithy-client-4.1.5" = { 7200 name = "_at_smithy_slash_smithy-client"; 7201 packageName = "@smithy/smithy-client"; 7202 - version = "4.1.5"; 7203 src = fetchurl { 7204 - url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.1.5.tgz"; 7205 - sha512 = "DMXYoYeL4QkElr216n1yodTFeATbfb4jwYM9gKn71Rw/FNA1/Sm36tkTSCsZEs7mgpG3OINmkxL9vgVFzyGPaw=="; 7206 }; 7207 }; 7208 "@smithy/types-4.1.0" = { ··· 7277 sha512 = "L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w=="; 7278 }; 7279 }; 7280 - "@smithy/util-defaults-mode-browser-4.0.6" = { 7281 name = "_at_smithy_slash_util-defaults-mode-browser"; 7282 packageName = "@smithy/util-defaults-mode-browser"; 7283 - version = "4.0.6"; 7284 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=="; 7287 }; 7288 }; 7289 - "@smithy/util-defaults-mode-node-4.0.6" = { 7290 name = "_at_smithy_slash_util-defaults-mode-node"; 7291 packageName = "@smithy/util-defaults-mode-node"; 7292 - version = "4.0.6"; 7293 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=="; 7296 }; 7297 }; 7298 "@smithy/util-endpoints-3.0.1" = { ··· 7331 sha512 = "WmRHqNVwn3kI3rKk1LsKcVgPBG6iLTBGC1iYOV3GQegwJ3E8yjzHytPt26VNzOWr1qu0xE03nK0Ug8S7T7oufw=="; 7332 }; 7333 }; 7334 - "@smithy/util-stream-4.1.1" = { 7335 name = "_at_smithy_slash_util-stream"; 7336 packageName = "@smithy/util-stream"; 7337 - version = "4.1.1"; 7338 src = fetchurl { 7339 - url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.1.1.tgz"; 7340 - sha512 = "+Xvh8nhy0Wjv1y71rBVyV3eJU3356XsFQNI8dEZVNrQju7Eib8G31GWtO+zMa9kTCGd41Mflu+ZKfmQL/o2XzQ=="; 7341 }; 7342 }; 7343 "@smithy/util-uri-escape-4.0.0" = { ··· 7574 sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; 7575 }; 7576 }; 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" = { 7605 name = "_at_swc_slash_core"; 7606 packageName = "@swc/core"; 7607 - version = "1.10.16"; 7608 src = fetchurl { 7609 - url = "https://registry.npmjs.org/@swc/core/-/core-1.10.16.tgz"; 7610 - sha512 = "nOINg/OUcZazCW7B55QV2/UB8QAqz9FYe4+z229+4RYboBTZ102K7ebOEjY5sKn59JgAkhjZTz+5BKmXpDFopw=="; 7611 }; 7612 }; 7613 "@swc/counter-0.1.3" = { ··· 7628 sha512 = "JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g=="; 7629 }; 7630 }; 7631 - "@swc/types-0.1.17" = { 7632 name = "_at_swc_slash_types"; 7633 packageName = "@swc/types"; 7634 - version = "0.1.17"; 7635 src = fetchurl { 7636 - url = "https://registry.npmjs.org/@swc/types/-/types-0.1.17.tgz"; 7637 - sha512 = "V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ=="; 7638 }; 7639 }; 7640 - "@swc/wasm-1.10.16" = { 7641 name = "_at_swc_slash_wasm"; 7642 packageName = "@swc/wasm"; 7643 - version = "1.10.16"; 7644 src = fetchurl { 7645 - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.10.16.tgz"; 7646 - sha512 = "ZfGQkLM3rmohm+JEMdtSi2713AI8z4giK5rCV5UiVAYYM0APjl4C2KaUD4RMcKUkP04oiUjHNkkmk6u1MMdYzA=="; 7647 }; 7648 }; 7649 "@szmarczak/http-timer-1.1.2" = { ··· 7727 sha512 = "9pQN6pJAJOU3McmdJWTcyq7LLFW8Lj5q+DadyKcvp+sxMkEpktKX5sbfJgJuOvjk6+1xWl7pe0YL1US1vaO/1w=="; 7728 }; 7729 }; 7730 - "@tinyhttp/app-2.5.0" = { 7731 name = "_at_tinyhttp_slash_app"; 7732 packageName = "@tinyhttp/app"; 7733 - version = "2.5.0"; 7734 src = fetchurl { 7735 - url = "https://registry.npmjs.org/@tinyhttp/app/-/app-2.5.0.tgz"; 7736 - sha512 = "mwVY6RhTqF/s49tqNqpkRWbXAC7OmfpxR6YI6atp9xDauUOv3n1hv38AKy89Ga8HC8G2p1KR9vPD66VmF6VMnw=="; 7737 }; 7738 }; 7739 "@tinyhttp/content-disposition-2.2.2" = { ··· 7799 sha512 = "j80fPKimGqdmMh6962y+BtQsnYPVCzZfJw0HXjyH70VaJBHLKGF+iYhcKqzI3yef6QBNa8DKIPsbEYpuwApXTw=="; 7800 }; 7801 }; 7802 - "@tinyhttp/forwarded-2.1.1" = { 7803 name = "_at_tinyhttp_slash_forwarded"; 7804 packageName = "@tinyhttp/forwarded"; 7805 - version = "2.1.1"; 7806 src = fetchurl { 7807 - url = "https://registry.npmjs.org/@tinyhttp/forwarded/-/forwarded-2.1.1.tgz"; 7808 - sha512 = "nO3kq0R1LRl2+CAMlnggm22zE6sT8gfvGbNvSitV6F9eaUSurHP0A8YZFMihSkugHxK+uIegh1TKrqgD8+lyGQ=="; 7809 }; 7810 }; 7811 "@tinyhttp/logger-2.0.0" = { ··· 7817 sha512 = "8DfLQjGDIaIJeivYamVrrpmwmsGwS8wt2DGvzlcY5HEBagdiI4QJy/veAFcUHuaJqufn4wLwmn4q5VUkW8BCpQ=="; 7818 }; 7819 }; 7820 - "@tinyhttp/proxy-addr-2.2.0" = { 7821 name = "_at_tinyhttp_slash_proxy-addr"; 7822 packageName = "@tinyhttp/proxy-addr"; 7823 - version = "2.2.0"; 7824 src = fetchurl { 7825 - url = "https://registry.npmjs.org/@tinyhttp/proxy-addr/-/proxy-addr-2.2.0.tgz"; 7826 - sha512 = "WM/PPL9xNvrs7/8Om5nhKbke5FHrP3EfjOOR+wBnjgESfibqn0K7wdUTnzSLp1lBmemr88os1XvzwymSgaibyA=="; 7827 }; 7828 }; 7829 - "@tinyhttp/req-2.2.4" = { 7830 name = "_at_tinyhttp_slash_req"; 7831 packageName = "@tinyhttp/req"; 7832 - version = "2.2.4"; 7833 src = fetchurl { 7834 - url = "https://registry.npmjs.org/@tinyhttp/req/-/req-2.2.4.tgz"; 7835 - sha512 = "lQAZIAo0NOeghxFOZS57tQzxpHSPPLs9T68Krq2BncEBImKwqaDKUt7M9Y5Kb+rvC/GwIL3LeErhkg7f5iG4IQ=="; 7836 }; 7837 }; 7838 - "@tinyhttp/res-2.2.4" = { 7839 name = "_at_tinyhttp_slash_res"; 7840 packageName = "@tinyhttp/res"; 7841 - version = "2.2.4"; 7842 src = fetchurl { 7843 - url = "https://registry.npmjs.org/@tinyhttp/res/-/res-2.2.4.tgz"; 7844 - sha512 = "ETBRShnO19oJyIg2XQHQoofXPWeTXPAuwnIVYkU8WaftvXd/Vz4y5+WFQDHUzKlmdGOw5fAFnrEU7pIVMeFeVA=="; 7845 }; 7846 }; 7847 "@tinyhttp/router-2.2.3" = { ··· 7988 sha512 = "vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA=="; 7989 }; 7990 }; 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 "@tufjs/canonical-json-2.0.0" = { 8001 name = "_at_tufjs_slash_canonical-json"; 8002 packageName = "@tufjs/canonical-json"; ··· 8006 sha512 = "yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA=="; 8007 }; 8008 }; 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 "@tufjs/models-3.0.1" = { 8019 name = "_at_tufjs_slash_models"; 8020 packageName = "@tufjs/models"; ··· 8022 src = fetchurl { 8023 url = "https://registry.npmjs.org/@tufjs/models/-/models-3.0.1.tgz"; 8024 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 }; 8035 }; 8036 "@types/acorn-4.0.6" = { ··· 8483 sha512 = "fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ=="; 8484 }; 8485 }; 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 "@types/node-16.18.11" = { 8496 name = "_at_types_slash_node"; 8497 packageName = "@types/node"; ··· 8546 sha512 = "LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A=="; 8547 }; 8548 }; 8549 - "@types/node-22.13.4" = { 8550 name = "_at_types_slash_node"; 8551 packageName = "@types/node"; 8552 - version = "22.13.4"; 8553 src = fetchurl { 8554 - url = "https://registry.npmjs.org/@types/node/-/node-22.13.4.tgz"; 8555 - sha512 = "ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg=="; 8556 }; 8557 }; 8558 "@types/node-6.14.13" = { ··· 8600 sha512 = "hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ=="; 8601 }; 8602 }; 8603 - "@types/react-19.0.9" = { 8604 name = "_at_types_slash_react"; 8605 packageName = "@types/react"; 8606 - version = "19.0.9"; 8607 src = fetchurl { 8608 - url = "https://registry.npmjs.org/@types/react/-/react-19.0.9.tgz"; 8609 - sha512 = "FedNTYgmMwSZmD1Sru/W1gJKuiYCN/3SuBkmZkcxX+FpO5zL76B22A9YNfAKg4HQO3Neh/30AiynP6BELdU0qQ=="; 8610 }; 8611 }; 8612 "@types/responselike-1.0.3" = { ··· 8708 sha512 = "XOfUup9r3Y06nFAZh3WvO0rBU4OtlfPB/vgxpjg+NRdGU6CN6djdc6OEiH+PcqHCY6eFLo9Ista73uarf4gnBg=="; 8709 }; 8710 }; 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 "@types/wrap-ansi-3.0.0" = { 8721 name = "_at_types_slash_wrap-ansi"; 8722 packageName = "@types/wrap-ansi"; ··· 8753 sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="; 8754 }; 8755 }; 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 "@ungap/structured-clone-1.3.0" = { 8829 name = "_at_ungap_slash_structured-clone"; 8830 packageName = "@ungap/structured-clone"; ··· 8834 sha512 = "WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="; 8835 }; 8836 }; 8837 - "@vercel/build-utils-10.1.0" = { 8838 name = "_at_vercel_slash_build-utils"; 8839 packageName = "@vercel/build-utils"; 8840 - version = "10.1.0"; 8841 src = fetchurl { 8842 - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-10.1.0.tgz"; 8843 - sha512 = "JPff3brfZx0mTl+0Cmzz220MmnTSYnBgVqVvT6a8lVALJHr75sKaNxZy0/hWZe8ev+w2JwLGMmJwP2TKHtKeHA=="; 8844 }; 8845 }; 8846 "@vercel/error-utils-2.0.3" = { ··· 8852 sha512 = "CqC01WZxbLUxoiVdh9B/poPbNpY9U+tO1N9oWHwTl5YAZxcqXmmWJ8KNMFItJCUUWdY3J3xv8LvAuQv2KZ5YdQ=="; 8853 }; 8854 }; 8855 - "@vercel/fun-1.1.4" = { 8856 name = "_at_vercel_slash_fun"; 8857 packageName = "@vercel/fun"; 8858 - version = "1.1.4"; 8859 src = fetchurl { 8860 - url = "https://registry.npmjs.org/@vercel/fun/-/fun-1.1.4.tgz"; 8861 - sha512 = "E23Gyp3iJaLK1o/10dJPsQt186Ux7c06k81o7o6/07KiHSkVS5pQELOJybN+WDhg7x3OLywKjMcCJQhRTkdF0A=="; 8862 }; 8863 }; 8864 "@vercel/gatsby-plugin-vercel-analytics-1.0.11" = { ··· 8870 sha512 = "iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw=="; 8871 }; 8872 }; 8873 - "@vercel/gatsby-plugin-vercel-builder-2.0.73" = { 8874 name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; 8875 packageName = "@vercel/gatsby-plugin-vercel-builder"; 8876 - version = "2.0.73"; 8877 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=="; 8880 }; 8881 }; 8882 "@vercel/go-3.2.1" = { ··· 8888 sha512 = "ezjmuUvLigH9V4egEaX0SZ+phILx8lb+Zkp1iTqKI+yl/ibPAtVo5o+dLSRAXU9U01LBmaLu3O8Oxd/JpWYCOw=="; 8889 }; 8890 }; 8891 - "@vercel/hydrogen-1.1.0" = { 8892 name = "_at_vercel_slash_hydrogen"; 8893 packageName = "@vercel/hydrogen"; 8894 - version = "1.1.0"; 8895 src = fetchurl { 8896 - url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-1.1.0.tgz"; 8897 - sha512 = "DNBj664OY5j8LBIp9EOLO+zjbSMT95YrfXp3/uhnpdHSmUBE5Iha4bJqV/4b3VL6b4lGFlTsK2jlyQZXWnPs+A=="; 8898 }; 8899 }; 8900 - "@vercel/next-4.6.2" = { 8901 name = "_at_vercel_slash_next"; 8902 packageName = "@vercel/next"; 8903 - version = "4.6.2"; 8904 src = fetchurl { 8905 - url = "https://registry.npmjs.org/@vercel/next/-/next-4.6.2.tgz"; 8906 - sha512 = "+2w9At3cnf5dZRsEMXCSs4xA6UP3UhzVoNa/5/mVY3/hfADEfU/thKwOybQEHPkMbNuFwIYjnJkFZcsI8iOWxg=="; 8907 }; 8908 }; 8909 "@vercel/nft-0.27.10" = { ··· 8915 sha512 = "zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg=="; 8916 }; 8917 }; 8918 - "@vercel/node-5.1.7" = { 8919 name = "_at_vercel_slash_node"; 8920 packageName = "@vercel/node"; 8921 - version = "5.1.7"; 8922 src = fetchurl { 8923 - url = "https://registry.npmjs.org/@vercel/node/-/node-5.1.7.tgz"; 8924 - sha512 = "aOfpTss3DBeqTCxZHNUgB6ckDp2DUDV9+nuW0wf5sToHLmeMzlUGNwY48CPSly1CFyi5jYE4fyfn9dBaAustWQ=="; 8925 }; 8926 }; 8927 "@vercel/python-4.7.1" = { ··· 8933 sha512 = "H4g/5e8unII4oQ+KN5IUvTZSzHmj+lLYDkAK15QGYgAxBtE/mHUvEZpPPo7DPUDIyfq8ybWB1bmk7H5kEahubQ=="; 8934 }; 8935 }; 8936 - "@vercel/redwood-2.2.0" = { 8937 name = "_at_vercel_slash_redwood"; 8938 packageName = "@vercel/redwood"; 8939 - version = "2.2.0"; 8940 src = fetchurl { 8941 - url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.2.0.tgz"; 8942 - sha512 = "THk4lL66eTKioXwun2uIp7EdW/NFFqJnaAnRwNxUrdpU9oHbDsDx3QRIeiOFMVBsaJZqZd9YZ/OMaOMGKotybQ=="; 8943 }; 8944 }; 8945 - "@vercel/remix-builder-5.3.3" = { 8946 name = "_at_vercel_slash_remix-builder"; 8947 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"; 8958 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=="; 8961 }; 8962 }; 8963 "@vercel/ruby-2.2.0" = { ··· 8969 sha512 = "FJF9gKVNHAljGOgV6zS5ou2N7ZgjOqMMtcPA5lsJEUI5/AZzVDWCmtcowTP80wEtHuupkd7d7M399FA082kXYQ=="; 8970 }; 8971 }; 8972 - "@vercel/static-build-2.6.6" = { 8973 name = "_at_vercel_slash_static-build"; 8974 packageName = "@vercel/static-build"; 8975 - version = "2.6.6"; 8976 src = fetchurl { 8977 - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.6.6.tgz"; 8978 - sha512 = "8O9PQkaIRODuWNXYpNIjq+Snvj/1ylvoaHRtBbUpvbiJIj9vFy1nzIyBLx8wucbt72Q0axYHGOWJsHE1x8Dnwg=="; 8979 }; 8980 }; 8981 "@vercel/static-config-3.0.0" = { ··· 8987 sha512 = "2qtvcBJ1bGY0dYGYh3iM7yGKkk971FujLEDXzuW5wcZsPr1GSEjO/w2iSr3qve6nDDtBImsGoDEnus5FI4+fIw=="; 8988 }; 8989 }; 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 "@vue/compiler-core-3.5.13" = { 9018 name = "_at_vue_slash_compiler-core"; 9019 packageName = "@vue/compiler-core"; ··· 9806 sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; 9807 }; 9808 }; 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 "@zeit/schemas-2.36.0" = { 9819 name = "_at_zeit_slash_schemas"; 9820 packageName = "@zeit/schemas"; ··· 9833 sha512 = "odWb1qUzt0dIOEUPyWBEpFDYQPRjEMr/dbHHAfgBkVkYR9aO7Zo+I7oYWrXIxl+cKlC7+49ftPm8uJxL1MA9kw=="; 9834 }; 9835 }; 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 "JSONStream-0.10.0" = { 9846 name = "JSONStream"; 9847 packageName = "JSONStream"; ··· 10346 sha512 = "S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg=="; 10347 }; 10348 }; 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 "ansi-0.3.1" = { 10359 name = "ansi"; 10360 packageName = "ansi"; ··· 10542 src = fetchurl { 10543 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 10544 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 }; 10555 }; 10556 "ansi-styles-6.2.1" = { ··· 11597 sha512 = "qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ=="; 11598 }; 11599 }; 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 "b4a-1.6.7" = { 11610 name = "b4a"; 11611 packageName = "b4a"; ··· 11633 sha512 = "+qeGXSbHZwinZzO6R3wP+6XDKup83Pgg2B3TQt2zwfDdgC7NqT9Kd3ws7iqk53zAO/8iOIRU6VUyUzt2LDE3Eg=="; 11634 }; 11635 }; 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 "babel-plugin-syntax-jsx-6.18.0" = { 11646 name = "babel-plugin-syntax-jsx"; 11647 packageName = "babel-plugin-syntax-jsx"; ··· 11939 sha512 = "3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA=="; 11940 }; 11941 }; 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 "bencode-0.7.0" = { 11952 name = "bencode"; 11953 packageName = "bencode"; ··· 12054 src = fetchurl { 12055 url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"; 12056 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 }; 12067 }; 12068 "binary-extensions-1.13.1" = { ··· 13010 sha512 = "ovBpjmsgd/teRmgcPh23d4gJvxDoXtAzEL9xTfMU8Yc2kqCDb7L9jAG0XHl1nzuGl+h3ebCIF1i62UFyA9V/2Q=="; 13011 }; 13012 }; 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 "bytes-3.0.0" = { 13023 name = "bytes"; 13024 packageName = "bytes"; ··· 13073 sha512 = "/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ=="; 13074 }; 13075 }; 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 "cacache-19.0.1" = { 13086 name = "cacache"; 13087 packageName = "cacache"; ··· 13379 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 13380 }; 13381 }; 13382 - "caniuse-lite-1.0.30001699" = { 13383 name = "caniuse-lite"; 13384 packageName = "caniuse-lite"; 13385 - version = "1.0.30001699"; 13386 src = fetchurl { 13387 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001699.tgz"; 13388 - sha512 = "b+uH5BakXZ9Do9iK+CkDmctUSEqZl+SP056vc5usa0PL+ev5OHw003rZXcnjNDv3L8P5j6rwT6C0BPKSikW08w=="; 13389 }; 13390 }; 13391 "canvas-2.11.2" = { ··· 13460 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 13461 }; 13462 }; 13463 - "cdk8s-2.69.40" = { 13464 name = "cdk8s"; 13465 packageName = "cdk8s"; 13466 - version = "2.69.40"; 13467 src = fetchurl { 13468 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.69.40.tgz"; 13469 - sha512 = "Ht2rysYwDROWqJCAFqqfDo/2tATrtMe9ibS7kXpSzarDO9h/l55AjyMGeWY7TAszdXGJCQTKOhVudvO1yAnhxQ=="; 13470 }; 13471 }; 13472 "cdk8s-plus-28-2.5.6" = { ··· 13701 src = fetchurl { 13702 url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz"; 13703 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 }; 13714 }; 13715 "cheerio-1.0.0-rc.12" = { ··· 14090 sha512 = "tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A=="; 14091 }; 14092 }; 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 "cli-spinners-2.9.2" = { 14103 name = "cli-spinners"; 14104 packageName = "cli-spinners"; ··· 14396 sha512 = "A5C0Cyf2H8sKsHqX0tvIWRXw5/PK++3Dc0lDbsugr90nOECLLuSPahVQBG8pgmgiXgm/TzBWMqI2rWdZwHduAw=="; 14397 }; 14398 }; 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 "cmdln-3.2.1" = { 14409 name = "cmdln"; 14410 packageName = "cmdln"; ··· 14432 sha512 = "QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ=="; 14433 }; 14434 }; 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 "code-block-writer-10.1.1" = { 14445 name = "code-block-writer"; 14446 packageName = "code-block-writer"; ··· 14486 sha512 = "lxsbbcSMxCdT+9wUv1AvBH9791andoWDcQ6s7ZK6KsMZ+UkRLO3obzhi7Zm+RIA3lHecqzaGmOKyRnu0Dx/Zew=="; 14487 }; 14488 }; 14489 - "codemaker-1.106.0" = { 14490 name = "codemaker"; 14491 packageName = "codemaker"; 14492 - version = "1.106.0"; 14493 src = fetchurl { 14494 - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.106.0.tgz"; 14495 - sha512 = "1aLNQCF/3DVxXol6eRqoLZnYulAwWPGq8BMF8pMZu+CaNkR7c0T5otMcbAXcskRLChiFt+BjVWS3JPVeBOHD4w=="; 14496 }; 14497 }; 14498 "collapse-white-space-2.1.0" = { ··· 14639 sha512 = "BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w=="; 14640 }; 14641 }; 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 "combine-errors-3.0.3" = { 14652 name = "combine-errors"; 14653 packageName = "combine-errors"; ··· 14871 src = fetchurl { 14872 url = "https://registry.npmjs.org/commist/-/commist-1.1.0.tgz"; 14873 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 }; 14884 }; 14885 "common-tags-1.8.2" = { ··· 15378 sha512 = "eOvlTO6OcySPyyyk8pKz2dP4jjElYunj9hn9/s0OB+gapTO8zwS9UQWrZ1pmF2hFs3vw1xhonOLGcGjy/zgsuA=="; 15379 }; 15380 }; 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 "conventional-changelog-core-8.0.0" = { 15391 name = "conventional-changelog-core"; 15392 packageName = "conventional-changelog-core"; ··· 15441 sha512 = "gGNphSb/opc76n2eWaO6ma4/Wqu3tpa2w7i9WYqI6Cs2fncDSI2/ihOfMvXveeTTeld0oFvwMVNV+IYQIk3F3g=="; 15442 }; 15443 }; 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 "conventional-changelog-preset-loader-5.0.0" = { 15454 name = "conventional-changelog-preset-loader"; 15455 packageName = "conventional-changelog-preset-loader"; ··· 15459 sha512 = "SetDSntXLk8Jh1NOAl1Gu5uLiCNSYenB5tm0YVeZKePRIgDW9lQImromTwLa3c/Gae298tsgOM+/CYT9XAl0NA=="; 15460 }; 15461 }; 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" = { 15472 name = "conventional-changelog-writer"; 15473 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"; 15484 src = fetchurl { 15485 - url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz"; 15486 - sha512 = "1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q=="; 15487 }; 15488 }; 15489 "conventional-commits-filter-5.0.0" = { ··· 15495 sha512 = "tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q=="; 15496 }; 15497 }; 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 "conventional-commits-parser-5.0.0" = { 15508 name = "conventional-commits-parser"; 15509 packageName = "conventional-commits-parser"; ··· 15513 sha512 = "ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA=="; 15514 }; 15515 }; 15516 - "conventional-commits-parser-6.0.0" = { 15517 name = "conventional-commits-parser"; 15518 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"; 15529 src = fetchurl { 15530 - url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz"; 15531 - sha512 = "Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA=="; 15532 }; 15533 }; 15534 "convert-hrtime-3.0.0" = { ··· 16017 sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="; 16018 }; 16019 }; 16020 - "cspell-config-lib-8.17.3" = { 16021 name = "cspell-config-lib"; 16022 packageName = "cspell-config-lib"; 16023 - version = "8.17.3"; 16024 src = fetchurl { 16025 - url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.17.3.tgz"; 16026 - sha512 = "+N32Q6xck3D2RqZIFwq8s0TnzHYMpyh4bgNtYqW5DIP3TLDiA4/MJGjwmLKAg/s9dkre6n8/++vVli3MZAOhIg=="; 16027 }; 16028 }; 16029 "cspell-dict-vimlang-1.0.1" = { ··· 16035 sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; 16036 }; 16037 }; 16038 - "cspell-dictionary-8.17.3" = { 16039 name = "cspell-dictionary"; 16040 packageName = "cspell-dictionary"; 16041 - version = "8.17.3"; 16042 src = fetchurl { 16043 - url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.17.3.tgz"; 16044 - sha512 = "89I/lpQKdkX17RCFrUIJnc70Rjfpup/o+ynHZen0hUxGTfLsEJPrK6H2oGvic3Yrv5q8IOtwM1p8vqPqBkBheA=="; 16045 }; 16046 }; 16047 - "cspell-gitignore-8.17.3" = { 16048 name = "cspell-gitignore"; 16049 packageName = "cspell-gitignore"; 16050 - version = "8.17.3"; 16051 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=="; 16054 }; 16055 }; 16056 "cspell-glob-0.1.25" = { ··· 16062 sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; 16063 }; 16064 }; 16065 - "cspell-glob-8.17.3" = { 16066 name = "cspell-glob"; 16067 packageName = "cspell-glob"; 16068 - version = "8.17.3"; 16069 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=="; 16072 }; 16073 }; 16074 - "cspell-grammar-8.17.3" = { 16075 name = "cspell-grammar"; 16076 packageName = "cspell-grammar"; 16077 - version = "8.17.3"; 16078 src = fetchurl { 16079 - url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.17.3.tgz"; 16080 - sha512 = "wfjkkvHthnKJtEaTgx3cPUPquGRXfgXSCwvMJaDyUi36KBlopXX38PejBTdmuqrvp7bINLSuHErml9wAfL5Fxw=="; 16081 }; 16082 }; 16083 "cspell-io-4.1.7" = { ··· 16089 sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; 16090 }; 16091 }; 16092 - "cspell-io-8.17.3" = { 16093 name = "cspell-io"; 16094 packageName = "cspell-io"; 16095 - version = "8.17.3"; 16096 src = fetchurl { 16097 - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.17.3.tgz"; 16098 - sha512 = "NwEVb3Kr8loV1C8Stz9QSMgUrBkxqf2s7A9H2/RBnfvQBt9CWZS6NgoNxTPwHj3h1sUNl9reDkMQQzkKtgWGBQ=="; 16099 }; 16100 }; 16101 "cspell-lib-4.3.12" = { ··· 16107 sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; 16108 }; 16109 }; 16110 - "cspell-lib-8.17.3" = { 16111 name = "cspell-lib"; 16112 packageName = "cspell-lib"; 16113 - version = "8.17.3"; 16114 src = fetchurl { 16115 - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.17.3.tgz"; 16116 - sha512 = "KpwYIj8HwFyTzCCQcyezlmomvyNfPwZQmqTh4V126sFvf9HLoMdfyq8KYDZmZ//4HzwrF/ufJOF3CpuVUiJHfA=="; 16117 }; 16118 }; 16119 "cspell-trie-lib-4.2.8" = { ··· 16125 sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; 16126 }; 16127 }; 16128 - "cspell-trie-lib-8.17.3" = { 16129 name = "cspell-trie-lib"; 16130 packageName = "cspell-trie-lib"; 16131 - version = "8.17.3"; 16132 src = fetchurl { 16133 - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.17.3.tgz"; 16134 - sha512 = "6LE5BeT2Rwv0bkQckpxX0K1fnFCWfeJ8zVPFtYOaix0trtqj0VNuwWzYDnxyW+OwMioCH29yRAMODa+JDFfUrA=="; 16135 }; 16136 }; 16137 "cspell-util-bundle-4.1.11" = { ··· 16440 sha512 = "MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw=="; 16441 }; 16442 }; 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 "d3-array-3.2.4" = { 16453 name = "d3-array"; 16454 packageName = "d3-array"; ··· 16458 sha512 = "tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg=="; 16459 }; 16460 }; 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 "d3-color-3.1.0" = { 16489 name = "d3-color"; 16490 packageName = "d3-color"; ··· 16494 sha512 = "zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="; 16495 }; 16496 }; 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 "d3-delaunay-6.0.4" = { 16507 name = "d3-delaunay"; 16508 packageName = "d3-delaunay"; ··· 16521 sha512 = "rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg=="; 16522 }; 16523 }; 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 "d3-dsv-3.0.1" = { 16534 name = "d3-dsv"; 16535 packageName = "d3-dsv"; ··· 16539 sha512 = "UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q=="; 16540 }; 16541 }; 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 "d3-force-3.0.0" = { 16561 name = "d3-force"; 16562 packageName = "d3-force"; ··· 16593 sha512 = "p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg=="; 16594 }; 16595 }; 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 "d3-hierarchy-3.1.2" = { 16606 name = "d3-hierarchy"; 16607 packageName = "d3-hierarchy"; ··· 16629 sha512 = "p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ=="; 16630 }; 16631 }; 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 "d3-quadtree-3.0.1" = { 16642 name = "d3-quadtree"; 16643 packageName = "d3-quadtree"; ··· 16647 sha512 = "04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw=="; 16648 }; 16649 }; 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 "d3-scale-4.0.2" = { 16660 name = "d3-scale"; 16661 packageName = "d3-scale"; ··· 16672 src = fetchurl { 16673 url = "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz"; 16674 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 }; 16685 }; 16686 "d3-shape-3.2.0" = { ··· 16719 sha512 = "ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA=="; 16720 }; 16721 }; 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 "dargs-8.1.0" = { 16750 name = "dargs"; 16751 packageName = "dargs"; ··· 16906 src = fetchurl { 16907 url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; 16908 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 }; 16919 }; 16920 "dayjs-1.11.12" = { ··· 17187 sha512 = "1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw=="; 17188 }; 17189 }; 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 "deep-equal-1.1.2" = { 17200 name = "deep-equal"; 17201 packageName = "deep-equal"; ··· 17493 sha512 = "S0OhIK7sIyAsph8hVH/LMCTDL3jozKtlrPx3dMQrlE2nAlXTquTT+AcOufphDMTQqLkfn4acvfiem9I1IWZ4jQ=="; 17494 }; 17495 }; 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 "deps-regex-0.2.0" = { 17506 name = "deps-regex"; 17507 packageName = "deps-regex"; ··· 17610 sha512 = "CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg=="; 17611 }; 17612 }; 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 "detect-port-1.6.1" = { 17623 name = "detect-port"; 17624 packageName = "detect-port"; ··· 17725 src = fetchurl { 17726 url = "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz"; 17727 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 }; 17738 }; 17739 "diff2html-3.4.51" = { ··· 18447 sha512 = "UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA=="; 18448 }; 18449 }; 18450 - "electron-to-chromium-1.5.101" = { 18451 name = "electron-to-chromium"; 18452 packageName = "electron-to-chromium"; 18453 - version = "1.5.101"; 18454 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=="; 18457 }; 18458 }; 18459 "elegant-spinner-1.0.1" = { ··· 18591 sha512 = "ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A=="; 18592 }; 18593 }; 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 "end-of-stream-0.1.5" = { 18604 name = "end-of-stream"; 18605 packageName = "end-of-stream"; ··· 18735 sha512 = "ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg=="; 18736 }; 18737 }; 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 "enquirer-2.4.1" = { 18748 name = "enquirer"; 18749 packageName = "enquirer"; ··· 18769 src = fetchurl { 18770 url = "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz"; 18771 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 }; 18782 }; 18783 "entities-2.2.0" = { ··· 18834 sha512 = "dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A=="; 18835 }; 18836 }; 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 "envinfo-7.14.0" = { 18847 name = "envinfo"; 18848 packageName = "envinfo"; ··· 19113 sha512 = "wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA=="; 19114 }; 19115 }; 19116 - "esbuild-0.23.1" = { 19117 name = "esbuild"; 19118 packageName = "esbuild"; 19119 - version = "0.23.1"; 19120 src = fetchurl { 19121 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz"; 19122 - sha512 = "VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg=="; 19123 }; 19124 }; 19125 - "esbuild-0.24.2" = { 19126 name = "esbuild"; 19127 packageName = "esbuild"; 19128 - version = "0.24.2"; 19129 src = fetchurl { 19130 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz"; 19131 - sha512 = "+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA=="; 19132 }; 19133 }; 19134 "esbuild-android-64-0.14.47" = { ··· 19455 sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; 19456 }; 19457 }; 19458 - "eslint-8.57.1" = { 19459 name = "eslint"; 19460 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"; 19480 src = fetchurl { 19481 - url = "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz"; 19482 - sha512 = "SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg=="; 19483 }; 19484 }; 19485 "eslint-formatter-pretty-5.0.0" = { ··· 19516 src = fetchurl { 19517 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"; 19518 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 }; 19529 }; 19530 "eslint-scope-8.2.0" = { ··· 19633 src = fetchurl { 19634 url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"; 19635 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 }; 19646 }; 19647 "esprima-2.7.3" = { ··· 19932 sha512 = "Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw=="; 19933 }; 19934 }; 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 "execa-5.1.1" = { 19945 name = "execa"; 19946 packageName = "execa"; ··· 20463 sha512 = "xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw=="; 20464 }; 20465 }; 20466 - "fast-xml-parser-4.5.1" = { 20467 name = "fast-xml-parser"; 20468 packageName = "fast-xml-parser"; 20469 - version = "4.5.1"; 20470 src = fetchurl { 20471 - url = "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.1.tgz"; 20472 - sha512 = "y655CeyUQ+jj7KBbYMc4FG01V8ZQqjN+gDYGJ50RtfsUB8iG9AmwmwoAgeKLJdmueKKMrH1RJ7yXHTSoczdv5w=="; 20473 }; 20474 }; 20475 "fastest-levenshtein-1.0.16" = { ··· 21102 sha512 = "+X3/0hl9in0FJPsPB5/xTpkxxMzDSoA4cyon46HtXhrfEbpqBvKxpR+HJGqMjKv4jcBmoLjEtTVIAADJjLjv8A=="; 21103 }; 21104 }; 21105 - "flatted-3.3.2" = { 21106 name = "flatted"; 21107 packageName = "flatted"; 21108 - version = "3.3.2"; 21109 src = fetchurl { 21110 - url = "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz"; 21111 - sha512 = "AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA=="; 21112 }; 21113 }; 21114 "flatten-0.0.1" = { ··· 21255 sha512 = "J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw=="; 21256 }; 21257 }; 21258 - "foreground-child-3.3.0" = { 21259 name = "foreground-child"; 21260 packageName = "foreground-child"; 21261 - version = "3.3.0"; 21262 src = fetchurl { 21263 - url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz"; 21264 - sha512 = "Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg=="; 21265 }; 21266 }; 21267 "forever-agent-0.6.1" = { ··· 21433 src = fetchurl { 21434 url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz"; 21435 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 }; 21446 }; 21447 "fs-chunk-store-1.7.0" = { ··· 21894 sha512 = "vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ=="; 21895 }; 21896 }; 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" = { 21907 name = "get-intrinsic"; 21908 packageName = "get-intrinsic"; 21909 - version = "1.2.7"; 21910 src = fetchurl { 21911 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz"; 21912 - sha512 = "VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA=="; 21913 }; 21914 }; 21915 "get-package-info-1.0.0" = { ··· 21930 sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; 21931 }; 21932 }; 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 "get-port-4.2.0" = { 21943 name = "get-port"; 21944 packageName = "get-port"; ··· 21946 src = fetchurl { 21947 url = "https://registry.npmjs.org/get-port/-/get-port-4.2.0.tgz"; 21948 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 }; 21959 }; 21960 "get-proto-1.0.1" = { ··· 22065 sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="; 22066 }; 22067 }; 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 "get-stream-6.0.1" = { 22078 name = "get-stream"; 22079 packageName = "get-stream"; ··· 22173 sha512 = "PdNkH2snpXsKIzho6OWMZKEl+KZG6Zm+1ghQIDi0tEq1sz/S1tDjvNuYrX2ZpomalHAB89OUQim8O6vN+jesNQ=="; 22174 }; 22175 }; 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 "git-raw-commits-4.0.0" = { 22186 name = "git-raw-commits"; 22187 packageName = "git-raw-commits"; ··· 22200 sha512 = "I2ZXrXeOc0KrCvC7swqtIFXFN+rbjnC7b2T943tvemIOVNl+XP8YnA9UVwqFhzzLClnSA60KR/qEjLpXzs73Qg=="; 22201 }; 22202 }; 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 "git-repo-info-2.1.1" = { 22213 name = "git-repo-info"; 22214 packageName = "git-repo-info"; ··· 22218 sha512 = "8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg=="; 22219 }; 22220 }; 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 "git-semver-tags-8.0.0" = { 22231 name = "git-semver-tags"; 22232 packageName = "git-semver-tags"; ··· 22245 sha512 = "W2Zo3sCiq5Hqv1/FLsNmGomkXdyimmkHncGzqjBHh7nWx+CbH5dkWGb6CiFdknooL7wfeZJ3gz14KrXl/gotCw=="; 22246 }; 22247 }; 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 "github-from-package-0.0.0" = { 22276 name = "github-from-package"; 22277 packageName = "github-from-package"; ··· 22378 src = fetchurl { 22379 url = "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz"; 22380 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 }; 22391 }; 22392 "glob-base-0.3.0" = { ··· 22812 sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; 22813 }; 22814 }; 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 "graphlib-2.1.8" = { 22825 name = "graphlib"; 22826 packageName = "graphlib"; ··· 23271 sha512 = "yGkCfPkkfCyiLfK6KEl/orMDr/zgCnq/NaO9HfULx6/Zga5fso5eqQA5Ov/JZVqACygvw9shRYWgXNcG2ilo7w=="; 23272 }; 23273 }; 23274 - "hast-util-to-html-9.0.4" = { 23275 name = "hast-util-to-html"; 23276 packageName = "hast-util-to-html"; 23277 - version = "9.0.4"; 23278 src = fetchurl { 23279 - url = "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz"; 23280 - sha512 = "wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA=="; 23281 }; 23282 }; 23283 "hast-util-to-nlcst-2.2.0" = { ··· 24117 sha512 = "PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ=="; 24118 }; 24119 }; 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 "ignore-walk-7.0.0" = { 24130 name = "ignore-walk"; 24131 packageName = "ignore-walk"; ··· 24268 src = fetchurl { 24269 url = "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz"; 24270 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 }; 24281 }; 24282 "import-local-3.2.0" = { ··· 24486 sha512 = "+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw=="; 24487 }; 24488 }; 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 "ink-3.2.0" = { 24499 name = "ink"; 24500 packageName = "ink"; ··· 25989 sha512 = "ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="; 25990 }; 25991 }; 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 "is-stream-1.1.0" = { 26002 name = "is-stream"; 26003 packageName = "is-stream"; ··· 26005 src = fetchurl { 26006 url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; 26007 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 }; 26018 }; 26019 "is-stream-2.0.1" = { ··· 26068 src = fetchurl { 26069 url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz"; 26070 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 }; 26081 }; 26082 "is-text-path-2.0.0" = { ··· 26430 sha512 = "OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="; 26431 }; 26432 }; 26433 - "jackspeak-4.0.3" = { 26434 name = "jackspeak"; 26435 packageName = "jackspeak"; 26436 - version = "4.0.3"; 26437 src = fetchurl { 26438 - url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.3.tgz"; 26439 - sha512 = "oSwM7q8PTHQWuZAlp995iPpPJ4Vkl7qT0ZRD+9duL9j2oBy6KcTfyxc8mEuHJYC+z/kbps80aJLkaNzTOrf/kw=="; 26440 }; 26441 }; 26442 "jade-0.27.0" = { ··· 26455 src = fetchurl { 26456 url = "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz"; 26457 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 }; 26477 }; 26478 "jest-worker-27.5.1" = { ··· 26745 sha512 = "qxiV/NMucgvHHupZJ36QACejcgZ3qY1FzjVHMOBmDHm+dISZ39p7dH7Hiq2ErMEwCDzdvQgR1OwCsUnrBH6oVQ=="; 26746 }; 26747 }; 26748 - "jsii-5.5.21" = { 26749 name = "jsii"; 26750 packageName = "jsii"; 26751 - version = "5.5.21"; 26752 src = fetchurl { 26753 - url = "https://registry.npmjs.org/jsii/-/jsii-5.5.21.tgz"; 26754 - sha512 = "ISmQCWc1HFUrXlMDWo0PZ5ggEg1uFv1vE0dGcKV25yyaWPPc6ai2RoiG0PEZIc3fRa2edT5yTFPf2tttet+Wxw=="; 26755 }; 26756 }; 26757 - "jsii-5.7.5" = { 26758 name = "jsii"; 26759 packageName = "jsii"; 26760 - version = "5.7.5"; 26761 src = fetchurl { 26762 - url = "https://registry.npmjs.org/jsii/-/jsii-5.7.5.tgz"; 26763 - sha512 = "3cEcpDjiA3bunGbEejnst43y7Oi/MoQECaAcj+m6Pn3JJhk1DZY0M+SuOlKv2z8FxPR1ODf7+ZdwXZOMj5xVMg=="; 26764 }; 26765 }; 26766 "jsii-pacmak-1.102.0" = { ··· 26772 sha512 = "3/nqBYNH8n/5IWI0sBFBYl1yATokEDUDQtYFLjzk7oXNWpUJ23/encI78Cs55ZS6UXcfWN3xczGLqCWnsgEpnw=="; 26773 }; 26774 }; 26775 - "jsii-pacmak-1.106.0" = { 26776 name = "jsii-pacmak"; 26777 packageName = "jsii-pacmak"; 26778 - version = "1.106.0"; 26779 src = fetchurl { 26780 - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.106.0.tgz"; 26781 - sha512 = "cNSzPszHaFg5AYwOQhp+eM/KpOJupdeyyycrzR6AtxwSmRN6x4K7YybZY/Rk0zfqGds9ukOYv0euGLZuXzXt1w=="; 26782 }; 26783 }; 26784 - "jsii-reflect-1.106.0" = { 26785 name = "jsii-reflect"; 26786 packageName = "jsii-reflect"; 26787 - version = "1.106.0"; 26788 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=="; 26791 }; 26792 }; 26793 "jsii-rosetta-5.4.30" = { ··· 26799 sha512 = "DyJlVO1L7p37poEtja3ktr3zGv15kvnkVrJ+uPuv5+QOvSs2XTTzi2qsgt/l7N/6yXelQ2LDvSDzXfEY08UZjg=="; 26800 }; 26801 }; 26802 - "jsii-rosetta-5.7.4" = { 26803 name = "jsii-rosetta"; 26804 packageName = "jsii-rosetta"; 26805 - version = "5.7.4"; 26806 src = fetchurl { 26807 - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.7.4.tgz"; 26808 - sha512 = "7wBOpEWUofrdxn+9iG2GW85fZ6M+LDjJDm3pG5eTvbPOK0ip5u7ec4C3ZhTkuAh/z22Xo29+qNndvUI169siyg=="; 26809 }; 26810 }; 26811 "jsii-srcmak-0.1.1236" = { ··· 26986 src = fetchurl { 26987 url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 26988 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 }; 26999 }; 27000 "json-stringify-pretty-compact-4.0.0" = { ··· 27051 sha512 = "o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w=="; 27052 }; 27053 }; 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 "jsonc-parser-3.3.1" = { 27064 name = "jsonc-parser"; 27065 packageName = "jsonc-parser"; ··· 27148 src = fetchurl { 27149 url = "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-10.2.0.tgz"; 27150 sha512 = "T9V+8iNYKFL2n2rF+w02LBOT2JjDnTjioaNFrxRy0Bv1y/hNsqR/EBK7Ojy2ythRHwmz2cRIls+9JitQGZC/sw=="; 27151 }; 27152 }; 27153 "jsonpointer-5.0.1" = { ··· 27204 sha512 = "gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ=="; 27205 }; 27206 }; 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 "jszip-3.8.0" = { 27217 name = "jszip"; 27218 packageName = "jszip"; ··· 27240 sha512 = "Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ=="; 27241 }; 27242 }; 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 "jwa-1.4.1" = { 27262 name = "jwa"; 27263 packageName = "jwa"; ··· 27744 sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; 27745 }; 27746 }; 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 "lie-3.1.1" = { 27766 name = "lie"; 27767 packageName = "lie"; ··· 27850 src = fetchurl { 27851 url = "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz"; 27852 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 }; 27863 }; 27864 "lines-and-columns-2.0.4" = { ··· 28032 sha512 = "3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ=="; 28033 }; 28034 }; 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 "load-json-file-6.2.0" = { 28045 name = "load-json-file"; 28046 packageName = "load-json-file"; ··· 28552 src = fetchurl { 28553 url = "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz"; 28554 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 }; 28565 }; 28566 "lodash.isnil-4.0.0" = { ··· 29049 sha512 = "WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g=="; 29050 }; 29051 }; 29052 - "long-5.3.0" = { 29053 name = "long"; 29054 packageName = "long"; 29055 - version = "5.3.0"; 29056 src = fetchurl { 29057 - url = "https://registry.npmjs.org/long/-/long-5.3.0.tgz"; 29058 - sha512 = "5vvY5yF1zF/kXk+L94FRiTDa1Znom46UjPCH6/XbSvS8zBKMFBHTJk8KDMqJ+2J6QezQFi7k1k8v21ClJYHPaw=="; 29059 }; 29060 }; 29061 "long-timeout-0.1.1" = { ··· 29428 sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 29429 }; 29430 }; 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 "make-error-1.3.6" = { 29441 name = "make-error"; 29442 packageName = "make-error"; ··· 29455 sha512 = "NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w=="; 29456 }; 29457 }; 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 "make-fetch-happen-14.0.3" = { 29468 name = "make-fetch-happen"; 29469 packageName = "make-fetch-happen"; ··· 29543 src = fetchurl { 29544 url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"; 29545 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 }; 29556 }; 29557 "markdown-it-13.0.2" = { ··· 30254 src = fetchurl { 30255 url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz"; 30256 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 }; 30267 }; 30268 "meow-9.0.0" = { ··· 31228 sha512 = "ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ=="; 31229 }; 31230 }; 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 "minimatch-3.0.8" = { 31241 name = "minimatch"; 31242 packageName = "minimatch"; ··· 31282 sha512 = "sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw=="; 31283 }; 31284 }; 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 "minimatch-9.0.1" = { 31295 name = "minimatch"; 31296 packageName = "minimatch"; ··· 31307 src = fetchurl { 31308 url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz"; 31309 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 }; 31320 }; 31321 "minimatch-9.0.5" = { ··· 31372 sha512 = "DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="; 31373 }; 31374 }; 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 "minipass-5.0.0" = { 31385 name = "minipass"; 31386 packageName = "minipass"; ··· 31433 src = fetchurl { 31434 url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz"; 31435 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 }; 31446 }; 31447 "minipass-fetch-4.0.0" = { ··· 31588 sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; 31589 }; 31590 }; 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 "module-deps-6.2.3" = { 31601 name = "module-deps"; 31602 packageName = "module-deps"; ··· 31687 sha512 = "tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="; 31688 }; 31689 }; 31690 - "mrmime-2.0.0" = { 31691 name = "mrmime"; 31692 packageName = "mrmime"; 31693 - version = "2.0.0"; 31694 src = fetchurl { 31695 - url = "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz"; 31696 - sha512 = "eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw=="; 31697 }; 31698 }; 31699 "ms-0.7.3" = { ··· 31903 sha512 = "2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="; 31904 }; 31905 }; 31906 - "nan-2.22.0" = { 31907 name = "nan"; 31908 packageName = "nan"; 31909 - version = "2.22.0"; 31910 src = fetchurl { 31911 - url = "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz"; 31912 - sha512 = "nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw=="; 31913 }; 31914 }; 31915 "nanoid-3.3.7" = { ··· 32480 sha512 = "08ARB91bUi6zNKzVmaj3QO7cr397uiDT2nJ63cHjyNtCTWIgvS47j3eT0WfzUwS9+6Z5YshRaoasFkXCKrIYbA=="; 32481 }; 32482 }; 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 "node-gyp-11.1.0" = { 32493 name = "node-gyp"; 32494 packageName = "node-gyp"; ··· 32543 sha512 = "+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw=="; 32544 }; 32545 }; 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 "node-notifier-10.0.1" = { 32556 name = "node-notifier"; 32557 packageName = "node-notifier"; ··· 32885 sha512 = "x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ=="; 32886 }; 32887 }; 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 "npm-bundled-4.0.0" = { 32898 name = "npm-bundled"; 32899 packageName = "npm-bundled"; ··· 32975 sha512 = "TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w=="; 32976 }; 32977 }; 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 "npm-package-arg-11.0.3" = { 32988 name = "npm-package-arg"; 32989 packageName = "npm-package-arg"; ··· 33029 sha512 = "KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ=="; 33030 }; 33031 }; 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 "npm-packlist-9.0.0" = { 33042 name = "npm-packlist"; 33043 packageName = "npm-packlist"; ··· 33074 sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg=="; 33075 }; 33076 }; 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 "npm-registry-fetch-18.0.2" = { 33087 name = "npm-registry-fetch"; 33088 packageName = "npm-registry-fetch"; ··· 33270 src = fetchurl { 33271 url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz"; 33272 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 }; 33283 }; 33284 "oas-kit-common-1.0.8" = { ··· 33650 sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; 33651 }; 33652 }; 33653 - "oo-ascii-tree-1.106.0" = { 33654 name = "oo-ascii-tree"; 33655 packageName = "oo-ascii-tree"; 33656 - version = "1.106.0"; 33657 src = fetchurl { 33658 - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.106.0.tgz"; 33659 - sha512 = "0PZkjIiJUW3jEx7durxcri7JciR8VbJpf2K3qiVbGG4x0MTq6Xm/H84GjBI6tamSx/DV1PMFDfwMs3hm8zfOCw=="; 33660 }; 33661 }; 33662 "open-0.0.2" = { ··· 33839 sha512 = "WfnNWLS3vr8omCm8nKYKaRbapuy6pEbx1O0B+eP5sUf/a++sT9/h8PflqBoHsY9N+YdzUT12T8snXigq13QpJg=="; 33840 }; 33841 }; 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 "ora-5.4.1" = { 33852 name = "ora"; 33853 packageName = "ora"; ··· 33866 sha512 = "ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ=="; 33867 }; 33868 }; 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 "ora-8.2.0" = { 33879 name = "ora"; 33880 packageName = "ora"; ··· 33956 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; 33957 }; 33958 }; 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 "own-keys-1.0.1" = { 33969 name = "own-keys"; 33970 packageName = "own-keys"; ··· 33972 src = fetchurl { 33973 url = "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz"; 33974 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 }; 33985 }; 33986 "p-cancelable-1.1.0" = { ··· 34199 sha512 = "VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA=="; 34200 }; 34201 }; 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 "p-memoize-7.1.1" = { 34212 name = "p-memoize"; 34213 packageName = "p-memoize"; ··· 34217 sha512 = "DZ/bONJILHkQ721hSr/E9wMz5Am/OTJ9P6LhLFo2Tu+jL8044tgc9LwHO8g4PiaYePnlVVRAJcKmgy8J9MVFrA=="; 34218 }; 34219 }; 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 "p-reflect-2.1.0" = { 34248 name = "p-reflect"; 34249 packageName = "p-reflect"; ··· 34260 src = fetchurl { 34261 url = "https://registry.npmjs.org/p-settle/-/p-settle-4.1.1.tgz"; 34262 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 }; 34273 }; 34274 "p-timeout-5.1.0" = { ··· 34307 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 34308 }; 34309 }; 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" = { 34320 name = "pac-proxy-agent"; 34321 packageName = "pac-proxy-agent"; 34322 - version = "7.1.0"; 34323 src = fetchurl { 34324 - url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.1.0.tgz"; 34325 - sha512 = "Z5FnLVVZSnX7WjBg0mhDtydeRZ1xMcATZThjySQUHqr+0ksP8kqaw23fNKkaaN/Z8gwLUs/W7xdl0I75eP2Xyw=="; 34326 }; 34327 }; 34328 "pac-resolver-7.0.1" = { ··· 34388 sha512 = "UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="; 34389 }; 34390 }; 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 "pacote-20.0.0" = { 34401 name = "pacote"; 34402 packageName = "pacote"; ··· 34494 src = fetchurl { 34495 url = "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz"; 34496 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 }; 34507 }; 34508 "parse-english-5.0.0" = { ··· 34676 sha512 = "1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q=="; 34677 }; 34678 }; 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 "parse-torrent-11.0.18" = { 34698 name = "parse-torrent"; 34699 packageName = "parse-torrent"; ··· 34739 sha512 = "u2MgLOjZPDDer1oRg1c+H/+54iIQYY5TKgQ5G8KrGLT1Dcwdo7Lj+QfQR123+u8J0AMSFGbQUvsBlSB7uIJcCA=="; 34740 }; 34741 }; 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 "parse5-3.0.3" = { 34752 name = "parse5"; 34753 packageName = "parse5"; ··· 34791 src = fetchurl { 34792 url = "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz"; 34793 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 }; 34804 }; 34805 "parseqs-0.0.5" = { ··· 35396 sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 35397 }; 35398 }; 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 "pinkie-2.0.4" = { 35409 name = "pinkie"; 35410 packageName = "pinkie"; ··· 35684 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 35685 }; 35686 }; 35687 - "postcss-8.5.2" = { 35688 name = "postcss"; 35689 packageName = "postcss"; 35690 - version = "8.5.2"; 35691 src = fetchurl { 35692 - url = "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz"; 35693 - sha512 = "MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA=="; 35694 }; 35695 }; 35696 "postcss-calc-10.1.1" = { ··· 36215 sha512 = "tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q=="; 36216 }; 36217 }; 36218 - "prettier-3.5.1" = { 36219 name = "prettier"; 36220 packageName = "prettier"; 36221 - version = "3.5.1"; 36222 src = fetchurl { 36223 - url = "https://registry.npmjs.org/prettier/-/prettier-3.5.1.tgz"; 36224 - sha512 = "hPpFQvHwL3Qv5AdRvBFMhnKo4tYxp0ReXiPn2bxkiohEX6mBeBwEpBSQTkD458RaaDKQMYSp4hX4UtfUTA5wDw=="; 36225 }; 36226 }; 36227 "prettier-bytes-1.0.4" = { ··· 36240 src = fetchurl { 36241 url = "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz"; 36242 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 }; 36253 }; 36254 "pretty-hrtime-1.0.3" = { ··· 36375 src = fetchurl { 36376 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 36377 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 }; 36388 }; 36389 "progress-1.1.8" = { ··· 36431 sha512 = "rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg=="; 36432 }; 36433 }; 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 "promise-inflight-1.0.1" = { 36453 name = "promise-inflight"; 36454 packageName = "promise-inflight"; ··· 36494 sha512 = "NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="; 36495 }; 36496 }; 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 "proper-lockfile-4.1.2" = { 36507 name = "proper-lockfile"; 36508 packageName = "proper-lockfile"; ··· 36521 sha512 = "PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig=="; 36522 }; 36523 }; 36524 "proto-list-1.2.4" = { 36525 name = "proto-list"; 36526 packageName = "proto-list"; ··· 36537 src = fetchurl { 36538 url = "https://registry.npmjs.org/protobufjs/-/protobufjs-7.4.0.tgz"; 36539 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 }; 36550 }; 36551 "proxy-addr-2.0.7" = { ··· 37232 sha512 = "nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew=="; 37233 }; 37234 }; 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 "react-reconciler-0.26.2" = { 37245 name = "react-reconciler"; 37246 packageName = "react-reconciler"; ··· 37277 sha512 = "rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ=="; 37278 }; 37279 }; 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 "read-all-stream-3.1.0" = { 37290 name = "read-all-stream"; 37291 packageName = "read-all-stream"; ··· 37320 src = fetchurl { 37321 url = "https://registry.npmjs.org/read-chunk/-/read-chunk-3.2.0.tgz"; 37322 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 }; 37333 }; 37334 "read-only-stream-2.0.0" = { ··· 37394 sha512 = "eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA=="; 37395 }; 37396 }; 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 "read-pkg-5.2.0" = { 37407 name = "read-pkg"; 37408 packageName = "read-pkg"; ··· 37455 src = fetchurl { 37456 url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; 37457 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 }; 37468 }; 37469 "read-pkg-up-7.0.1" = { ··· 38888 sha512 = "/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A=="; 38889 }; 38890 }; 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 "resolve-pkg-maps-1.0.0" = { 38901 name = "resolve-pkg-maps"; 38902 packageName = "resolve-pkg-maps"; ··· 38913 src = fetchurl { 38914 url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"; 38915 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 }; 38926 }; 38927 "resp-modifier-6.0.2" = { ··· 39158 sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 39159 }; 39160 }; 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 "rimraf-5.0.10" = { 39171 name = "rimraf"; 39172 packageName = "rimraf"; ··· 39203 sha512 = "IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg=="; 39204 }; 39205 }; 39206 - "rollup-4.34.7" = { 39207 name = "rollup"; 39208 packageName = "rollup"; 39209 - version = "4.34.7"; 39210 src = fetchurl { 39211 - url = "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz"; 39212 - sha512 = "8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ=="; 39213 }; 39214 }; 39215 "round-to-6.0.0" = { ··· 39390 src = fetchurl { 39391 url = "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz"; 39392 sha512 = "AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg=="; 39393 }; 39394 }; 39395 "s3-stream-upload-2.0.2" = { ··· 40328 sha512 = "bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="; 40329 }; 40330 }; 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 "sigstore-3.1.0" = { 40341 name = "sigstore"; 40342 packageName = "sigstore"; ··· 40877 sha512 = "s8cs2bcsQCzo/P2T/uoU6Js4dS/jnX8+4xunziNoq9qmSpZNCrRIAIvp4avsz0ST18HycV4z/7myJ7jsHWB2XQ=="; 40878 }; 40879 }; 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 "sort-keys-4.2.0" = { 40890 name = "sort-keys"; 40891 packageName = "sort-keys"; ··· 41334 src = fetchurl { 41335 url = "https://registry.npmjs.org/sshpk-agent/-/sshpk-agent-1.2.1.tgz"; 41336 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 }; 41347 }; 41348 "ssri-12.0.0" = { ··· 42146 sha512 = "k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg=="; 42147 }; 42148 }; 42149 - "strnum-1.0.5" = { 42150 name = "strnum"; 42151 packageName = "strnum"; 42152 - version = "1.0.5"; 42153 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=="; 42165 }; 42166 }; 42167 "strtok3-6.3.0" = { ··· 42326 sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 42327 }; 42328 }; 42329 - "svelte-5.20.1" = { 42330 name = "svelte"; 42331 packageName = "svelte"; 42332 - version = "5.20.1"; 42333 src = fetchurl { 42334 - url = "https://registry.npmjs.org/svelte/-/svelte-5.20.1.tgz"; 42335 - sha512 = "aCARru2WTdzJl55Ws8SK27+kvQwd8tijl4kY7NoDUXUHtTHhxMa8Lf6QNZKmU7cuPu3jjFloDO1j5HgYJNIIWg=="; 42336 }; 42337 }; 42338 "sver-1.8.4" = { ··· 42479 sha512 = "zTvf0mcggrGeTe/2jJ6ECkJHAQPIYEwDoqsiqBjI24mvRmQbInK5jq33fyypaCBxX08hMkfmdOqj6haT33EqWw=="; 42480 }; 42481 }; 42482 - "tailwindcss-4.0.6" = { 42483 name = "tailwindcss"; 42484 packageName = "tailwindcss"; 42485 - version = "4.0.6"; 42486 src = fetchurl { 42487 - url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.6.tgz"; 42488 - sha512 = "mysewHYJKaXgNOW6pp5xon/emCsfAMnO8WMaGKZZ35fomnR/T5gYnRg2/yRTTrtXiEl1tiVkeRt0eMO6HxEZqw=="; 42489 }; 42490 }; 42491 "tapable-0.2.9" = { ··· 42515 sha512 = "FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA=="; 42516 }; 42517 }; 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 "tar-4.4.19" = { 42528 name = "tar"; 42529 packageName = "tar"; ··· 42668 sha512 = "yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA=="; 42669 }; 42670 }; 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 "temp-dir-3.0.0" = { 42681 name = "temp-dir"; 42682 packageName = "temp-dir"; ··· 42776 sha512 = "/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA=="; 42777 }; 42778 }; 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 "text-extensions-2.4.0" = { 42789 name = "text-extensions"; 42790 packageName = "text-extensions"; ··· 43046 sha512 = "KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="; 43047 }; 43048 }; 43049 - "tinyglobby-0.2.10" = { 43050 name = "tinyglobby"; 43051 packageName = "tinyglobby"; 43052 - version = "0.2.10"; 43053 src = fetchurl { 43054 - url = "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.10.tgz"; 43055 - sha512 = "Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew=="; 43056 }; 43057 }; 43058 "tkwidgets-0.5.27" = { ··· 43406 sha512 = "BA/cp8KBvbBDkunxIuoBqzz3pYHL7J8QdzbKohK09urOpHFYqEe/xWGKkECEQG+LvfREd1GNqH3643GYFX8wSQ=="; 43407 }; 43408 }; 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 "trim-lines-3.0.1" = { 43419 name = "trim-lines"; 43420 packageName = "trim-lines"; ··· 43496 sha512 = "0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="; 43497 }; 43498 }; 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 "ts-morph-12.0.0" = { 43509 name = "ts-morph"; 43510 packageName = "ts-morph"; ··· 43550 sha512 = "ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg=="; 43551 }; 43552 }; 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 "tslib-1.14.1" = { 43563 name = "tslib"; 43564 packageName = "tslib"; ··· 43604 sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; 43605 }; 43606 }; 43607 - "tsx-4.19.2" = { 43608 name = "tsx"; 43609 packageName = "tsx"; 43610 - version = "4.19.2"; 43611 src = fetchurl { 43612 - url = "https://registry.npmjs.org/tsx/-/tsx-4.19.2.tgz"; 43613 - sha512 = "pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g=="; 43614 }; 43615 }; 43616 "tty-browserify-0.0.1" = { ··· 43622 sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="; 43623 }; 43624 }; 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 "tuf-js-3.0.1" = { 43635 name = "tuf-js"; 43636 packageName = "tuf-js"; ··· 43647 src = fetchurl { 43648 url = "https://registry.npmjs.org/tumblr/-/tumblr-0.4.1.tgz"; 43649 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 }; 43660 }; 43661 "tunnel-agent-0.4.3" = { ··· 43775 sha512 = "t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="; 43776 }; 43777 }; 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 "type-fest-0.6.0" = { 43788 name = "type-fest"; 43789 packageName = "type-fest"; ··· 43829 sha512 = "tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g=="; 43830 }; 43831 }; 43832 - "type-fest-4.34.1" = { 43833 name = "type-fest"; 43834 packageName = "type-fest"; 43835 - version = "4.34.1"; 43836 src = fetchurl { 43837 - url = "https://registry.npmjs.org/type-fest/-/type-fest-4.34.1.tgz"; 43838 - sha512 = "6kSc32kT0rbwxD6QL1CYe8IqdzN/J/ILMrNK+HMQCKH3insCDRY/3ITb0vcBss0a3t72fzh2YSzj8ko1HgwT3g=="; 43839 }; 43840 }; 43841 "type-is-1.6.18" = { ··· 43883 sha512 = "3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="; 43884 }; 43885 }; 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 "typedarray-0.0.6" = { 43896 name = "typedarray"; 43897 packageName = "typedarray"; ··· 43973 sha512 = "84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw=="; 43974 }; 43975 }; 43976 - "typescript-5.8.0-dev.20250216" = { 43977 name = "typescript"; 43978 packageName = "typescript"; 43979 - version = "5.8.0-dev.20250216"; 43980 src = fetchurl { 43981 - url = "https://registry.npmjs.org/typescript/-/typescript-5.8.0-dev.20250216.tgz"; 43982 - sha512 = "yk0nq9GDx1NVK8gi8NgJULq3NJxkepX/B8ZQtopaLM0cUbjBhZLcXeHUs+LBv8AUUGq9alZGPQuC/W/IG/yoXA=="; 43983 }; 43984 }; 43985 "typical-2.6.1" = { ··· 44259 src = fetchurl { 44260 url = "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz"; 44261 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 }; 44272 }; 44273 "undici-types-5.26.5" = { ··· 44477 sha512 = "ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A=="; 44478 }; 44479 }; 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 "unique-filename-4.0.0" = { 44490 name = "unique-filename"; 44491 packageName = "unique-filename"; ··· 44511 src = fetchurl { 44512 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz"; 44513 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 }; 44524 }; 44525 "unique-slug-5.0.0" = { ··· 44900 sha512 = "L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw=="; 44901 }; 44902 }; 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 "universalify-0.1.2" = { 44913 name = "universalify"; 44914 packageName = "universalify"; ··· 45033 src = fetchurl { 45034 url = "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz"; 45035 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 }; 45046 }; 45047 "update-browserslist-db-1.1.2" = { ··· 45665 sha512 = "Hq72JaTpcTFdWiNA4Y22Amej2GH3BFmBaKPPlDZ4/oC8HNn2ISHLkFrJU4Ds8R3jcUi7oo5Y9jcMHKjES+N9wQ=="; 45666 }; 45667 }; 45668 - "vega-5.31.0" = { 45669 name = "vega"; 45670 packageName = "vega"; 45671 - version = "5.31.0"; 45672 src = fetchurl { 45673 - url = "https://registry.npmjs.org/vega/-/vega-5.31.0.tgz"; 45674 - sha512 = "ZZ+8kcKqCeRi7pBdS7kfBpfhV2gDpa6N950GKGWFw0QL4fH319A9o8FAJzdY8zK0WW0PKrivZSoRmK9fWUxnhg=="; 45675 }; 45676 }; 45677 "vega-canvas-1.2.7" = { ··· 45728 sha512 = "fFeDTh4UtOxlZWL54jf1ZqJHinyerWq/ROiqrQxqLkNJRJ86RmxYTgXwt65UoZ/l4VUv9eAd2qoJeDEf610Umw=="; 45729 }; 45730 }; 45731 "vega-force-4.2.2" = { 45732 name = "vega-force"; 45733 packageName = "vega-force"; ··· 45746 sha512 = "wQhw7KR46wKJAip28FF/CicW+oiJaPAwMKdrxlnTA0Nv8Bf7bloRlc+O3kON4b4H1iALLr9KgRcYTOeXNs2MOA=="; 45747 }; 45748 }; 45749 - "vega-functions-5.16.0" = { 45750 name = "vega-functions"; 45751 packageName = "vega-functions"; 45752 - version = "5.16.0"; 45753 src = fetchurl { 45754 - url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.16.0.tgz"; 45755 - sha512 = "uXjSDbbGcFLCQTZZI+OiZK0U+2dLWC26ONdO0g9RhPzXXzR3niPcFOA0bc/OeiHdTexqsLjOiXxR/K2BckB8gQ=="; 45756 }; 45757 }; 45758 "vega-geo-4.4.3" = { ··· 45791 sha512 = "dUfIpxTLF2magoMaur+jXGvwMxjtdlDZaIS8lFj6N7IhUST6nIvBzuUlRM+zLYepI5GHtCLOnqdKU4XV0NggCA=="; 45792 }; 45793 }; 45794 - "vega-parser-6.4.1" = { 45795 name = "vega-parser"; 45796 packageName = "vega-parser"; 45797 - version = "6.4.1"; 45798 src = fetchurl { 45799 - url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.4.1.tgz"; 45800 - sha512 = "ZjF5aQfRe3yD5e2zYZcWWkUn9zGzUonMIirWTp3S3UBCujz+aT0+Ls6wbHdAH6hCPj3PVVkSWuuLkGEIUpWqyQ=="; 45801 }; 45802 }; 45803 "vega-projection-1.6.2" = { ··· 45845 sha512 = "LFY9+sLIxRfdDI9ZTKjLoijMkIAzPLBWHpPkwv4NPYgdyx+0qFmv+puBpAUGUY9VZqAZ736Uj5NJY9zw+/M3yQ=="; 45846 }; 45847 }; 45848 - "vega-selections-5.5.0" = { 45849 name = "vega-selections"; 45850 packageName = "vega-selections"; 45851 - version = "5.5.0"; 45852 src = fetchurl { 45853 - url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.5.0.tgz"; 45854 - sha512 = "TkpklUg9yhKjnTEs3Ls0eSI2aMJ8+tRicrFAKlDyrEBNMSSEaMsSJ84Ro5xpRra+GMBkGXFYgwTPC7y3tj20Gg=="; 45855 }; 45856 }; 45857 "vega-statistics-1.9.0" = { ··· 45881 sha512 = "Qxo+xeEEftY1jYyKgzOGc9NuW4/MqGm1YPZ5WrL9eXg2G0410Ne+xL/MFIjHF4hRX+3mgFF4Io2hPpfy/thjLg=="; 45882 }; 45883 }; 45884 - "vega-typings-1.4.0" = { 45885 name = "vega-typings"; 45886 packageName = "vega-typings"; 45887 - version = "1.4.0"; 45888 src = fetchurl { 45889 - url = "https://registry.npmjs.org/vega-typings/-/vega-typings-1.4.0.tgz"; 45890 - sha512 = "UTXjuasq0Q8uMuzz/qow4moVHFJ5atYdQu871QZJ/zgWY3Po4du3dIGBVQN4fYEv6seKhDvxpEFke2rqx81Wqw=="; 45891 }; 45892 }; 45893 "vega-util-1.17.3" = { ··· 45899 sha512 = "nSNpZLUrRvFo46M5OK4O6x6f08WD1yOcEzHNlqivF+sDLSsVpstaF6fdJYwrbf/debFi2L9Tkp4gZQtssup9iQ=="; 45900 }; 45901 }; 45902 - "vega-view-5.14.0" = { 45903 name = "vega-view"; 45904 packageName = "vega-view"; 45905 - version = "5.14.0"; 45906 src = fetchurl { 45907 - url = "https://registry.npmjs.org/vega-view/-/vega-view-5.14.0.tgz"; 45908 - sha512 = "gg2ukCviKG6Nofmr0Y6hFbr9romRMzmXHe3ljNJ5QyRnkwmQ7HbTvXOyS9cZZ0VtuhSRw+uiyd0Pg+nep0IhwA=="; 45909 }; 45910 }; 45911 "vega-view-transforms-4.6.1" = { ··· 46284 src = fetchurl { 46285 url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.1.tgz"; 46286 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 }; 46297 }; 46298 "vscode-languageserver-5.2.1" = { ··· 47348 sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 47349 }; 47350 }; 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 "write-yaml-file-4.2.0" = { 47379 name = "write-yaml-file"; 47380 packageName = "write-yaml-file"; ··· 47447 sha512 = "6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ=="; 47448 }; 47449 }; 47450 - "ws-8.18.0" = { 47451 name = "ws"; 47452 packageName = "ws"; 47453 - version = "8.18.0"; 47454 src = fetchurl { 47455 - url = "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz"; 47456 - sha512 = "8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw=="; 47457 }; 47458 }; 47459 "xcase-2.0.1" = { ··· 48023 sha512 = "A1pf6fzh6eYkK0L4Qp7g9jzJSDrM6nN0bOn5T0IbY4Yo3w+YkWlHFkJP7mzknMXjqusHFHlKsK2N+4OLsK2MRA=="; 48024 }; 48025 }; 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 "yeast-0.1.2" = { 48036 name = "yeast"; 48037 packageName = "yeast"; ··· 48191 "@angular/cli" = nodeEnv.buildNodePackage { 48192 name = "_at_angular_slash_cli"; 48193 packageName = "@angular/cli"; 48194 - version = "19.1.7"; 48195 src = fetchurl { 48196 - url = "https://registry.npmjs.org/@angular/cli/-/cli-19.1.7.tgz"; 48197 - sha512 = "qVEy0R4QKQ2QAGfpj2mPVxRxgOVst+rIgZBtLwf/mrbN9YyzJUaBKvaVslUpOqkvoW9mX5myf0iZkT5NykrIoA=="; 48198 }; 48199 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" 48203 ( 48204 sources."@inquirer/checkbox-4.1.2" 48205 // { ··· 48270 sources."@npmcli/agent-3.0.0" 48271 sources."@npmcli/fs-4.0.0" 48272 ( 48273 - sources."@npmcli/git-6.0.1" 48274 // { 48275 dependencies = [ 48276 sources."isexe-3.1.1" ··· 48300 ]; 48301 } 48302 ) 48303 - sources."@schematics/angular-19.1.7" 48304 sources."@sigstore/bundle-3.1.0" 48305 sources."@sigstore/core-2.0.0" 48306 sources."@sigstore/protobuf-specs-0.4.0" ··· 48309 sources."@sigstore/verify-2.1.0" 48310 sources."@tufjs/canonical-json-2.0.0" 48311 sources."@tufjs/models-3.0.1" 48312 - sources."@types/node-22.13.4" 48313 sources."@yarnpkg/lockfile-1.1.0" 48314 sources."abbrev-3.0.0" 48315 sources."agent-base-7.1.3" ··· 48375 sources."external-editor-3.1.0" 48376 sources."fast-deep-equal-3.1.3" 48377 sources."fast-uri-3.0.6" 48378 - sources."foreground-child-3.3.0" 48379 sources."fs-minipass-3.0.3" 48380 sources."function-bind-1.1.2" 48381 sources."get-caller-file-2.0.5" ··· 48535 sources."path-scurry-1.11.1" 48536 sources."picomatch-4.0.2" 48537 sources."proc-log-5.0.0" 48538 - sources."promise-inflight-1.0.1" 48539 sources."promise-retry-2.0.1" 48540 sources."readable-stream-3.6.2" 48541 sources."readdirp-4.1.2" ··· 48692 sources."balanced-match-1.0.2" 48693 sources."brace-expansion-1.1.11" 48694 sources."browserslist-4.24.4" 48695 - sources."caniuse-lite-1.0.30001699" 48696 sources."commander-6.2.1" 48697 sources."concat-map-0.0.1" 48698 sources."convert-source-map-2.0.0" 48699 sources."debug-4.4.0" 48700 - sources."electron-to-chromium-1.5.101" 48701 sources."escalade-3.2.0" 48702 sources."fs-readdir-recursive-1.1.0" 48703 sources."fs.realpath-1.0.0" ··· 48761 sources."@commitlint/top-level-19.5.0" 48762 sources."@commitlint/types-19.5.0" 48763 sources."@types/conventional-commits-parser-5.0.1" 48764 - sources."@types/node-22.13.4" 48765 sources."JSONStream-1.3.5" 48766 sources."ajv-8.17.1" 48767 sources."ansi-regex-5.0.1" ··· 48861 "@microsoft/rush" = nodeEnv.buildNodePackage { 48862 name = "_at_microsoft_slash_rush"; 48863 packageName = "@microsoft/rush"; 48864 - version = "5.149.0"; 48865 src = fetchurl { 48866 - url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.149.0.tgz"; 48867 - sha512 = "1+Mvmt7i+KQi6qqmgxcXgDjOk5pRalZIvXqR7SCHeVOgGmW3pFs5pTS9sgfYVfrsP/rYg7XvJjAdyReiatZ7QA=="; 48868 }; 48869 dependencies = [ 48870 ( ··· 48985 sources."@jridgewell/trace-mapping-0.3.25" 48986 sources."@jsep-plugin/assignment-1.3.0" 48987 sources."@jsep-plugin/regex-1.0.4" 48988 - sources."@microsoft/rush-lib-5.149.0" 48989 sources."@nodelib/fs.scandir-2.1.5" 48990 sources."@nodelib/fs.stat-2.0.5" 48991 sources."@nodelib/fs.walk-1.2.8" ··· 49055 ]; 49056 } 49057 ) 49058 - sources."@rushstack/heft-config-file-0.16.5" 49059 - sources."@rushstack/lookup-by-path-0.5.5" 49060 ( 49061 sources."@rushstack/node-core-library-5.11.0" 49062 // { ··· 49065 ]; 49066 } 49067 ) 49068 - sources."@rushstack/package-deps-hash-4.3.6" 49069 ( 49070 - sources."@rushstack/package-extractor-0.10.10" 49071 // { 49072 dependencies = [ 49073 sources."brace-expansion-1.1.11" ··· 49083 ]; 49084 } 49085 ) 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" 49091 ( 49092 sources."@rushstack/terminal-0.15.0" 49093 // { ··· 49110 sources."@types/lodash-4.17.15" 49111 sources."@types/minimatch-3.0.5" 49112 sources."@types/minimist-1.2.5" 49113 - sources."@types/node-22.13.4" 49114 sources."@types/normalize-package-data-2.4.4" 49115 sources."@types/parse-json-4.0.2" 49116 sources."@vue/compiler-core-3.5.13" ··· 49282 sources."external-editor-3.1.0" 49283 sources."fast-deep-equal-3.1.3" 49284 sources."fast-glob-3.3.3" 49285 - sources."fast-xml-parser-4.5.1" 49286 sources."fastq-1.19.0" 49287 sources."figures-3.0.0" 49288 sources."fill-range-7.1.1" ··· 49434 sources."json-schema-traverse-1.0.0" 49435 sources."json5-2.2.3" 49436 sources."jsonfile-6.1.0" 49437 - sources."jsonpath-plus-10.2.0" 49438 ( 49439 sources."jsonwebtoken-9.0.2" 49440 // { ··· 49617 ]; 49618 } 49619 ) 49620 - sources."postcss-8.5.2" 49621 ( 49622 sources."preferred-pm-3.1.4" 49623 // { ··· 49745 sources."strip-final-newline-2.0.0" 49746 sources."strip-indent-3.0.0" 49747 sources."strip-json-comments-2.0.1" 49748 - sources."strnum-1.0.5" 49749 sources."supports-color-7.2.0" 49750 sources."supports-preserve-symlinks-flag-1.0.0" 49751 sources."tapable-2.2.1" ··· 49817 "@shopify/cli" = nodeEnv.buildNodePackage { 49818 name = "_at_shopify_slash_cli"; 49819 packageName = "@shopify/cli"; 49820 - version = "3.75.0"; 49821 src = fetchurl { 49822 - url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.75.0.tgz"; 49823 - sha512 = "0O8C0L4+luExYuhF882rS3CKKVgL0p8ztr1BAK2XPmJPkfh6P+5OeyN+5brzpia3YMavmPD7is9aPpZB7HfG8A=="; 49824 }; 49825 dependencies = [ 49826 sources."@ast-grep/napi-0.33.0" ··· 49845 sha512 = "8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ=="; 49846 }; 49847 dependencies = [ 49848 - sources."tailwindcss-4.0.6" 49849 ]; 49850 buildInputs = globalBuildInputs; 49851 meta = { ··· 49867 }; 49868 dependencies = [ 49869 sources."mini-svg-data-uri-1.4.4" 49870 - sources."tailwindcss-4.0.6" 49871 ]; 49872 buildInputs = globalBuildInputs; 49873 meta = { ··· 49888 sha512 = "5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g=="; 49889 }; 49890 dependencies = [ 49891 - sources."tailwindcss-4.0.6" 49892 ]; 49893 buildInputs = globalBuildInputs; 49894 meta = { ··· 49914 sources."lodash.isplainobject-4.0.6" 49915 sources."lodash.merge-4.6.2" 49916 sources."postcss-selector-parser-6.0.10" 49917 - sources."tailwindcss-4.0.6" 49918 sources."util-deprecate-1.0.2" 49919 ]; 49920 buildInputs = globalBuildInputs; ··· 49964 ]; 49965 } 49966 ) 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" 49978 ( 49979 - sources."@aws-sdk/lib-storage-3.749.0" 49980 // { 49981 dependencies = [ 49982 sources."buffer-5.6.0" ··· 49986 sources."@aws-sdk/middleware-bucket-endpoint-3.734.0" 49987 sources."@aws-sdk/middleware-expect-continue-3.734.0" 49988 ( 49989 - sources."@aws-sdk/middleware-flexible-checksums-3.749.0" 49990 // { 49991 dependencies = [ 49992 sources."@smithy/is-array-buffer-4.0.0" ··· 49997 sources."@aws-sdk/middleware-location-constraint-3.734.0" 49998 sources."@aws-sdk/middleware-logger-3.734.0" 49999 sources."@aws-sdk/middleware-recursion-detection-3.734.0" 50000 - sources."@aws-sdk/middleware-sdk-s3-3.749.0" 50001 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" 50004 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" 50009 sources."@aws-sdk/types-3.734.0" 50010 sources."@aws-sdk/util-arn-parser-3.723.0" 50011 sources."@aws-sdk/util-endpoints-3.743.0" 50012 sources."@aws-sdk/util-format-url-3.734.0" 50013 sources."@aws-sdk/util-locate-window-3.723.0" 50014 sources."@aws-sdk/util-user-agent-browser-3.734.0" 50015 - sources."@aws-sdk/util-user-agent-node-3.749.0" 50016 sources."@aws-sdk/util-utf8-browser-3.259.0" 50017 sources."@aws-sdk/xml-builder-3.734.0" 50018 sources."@buttercup/fetch-0.2.1" ··· 50024 sources."@smithy/chunked-blob-reader-5.0.0" 50025 sources."@smithy/chunked-blob-reader-native-4.0.0" 50026 sources."@smithy/config-resolver-4.0.1" 50027 - sources."@smithy/core-3.1.4" 50028 sources."@smithy/credential-provider-imds-4.0.1" 50029 sources."@smithy/eventstream-codec-4.0.1" 50030 sources."@smithy/eventstream-serde-browser-4.0.1" ··· 50047 sources."@smithy/is-array-buffer-2.2.0" 50048 sources."@smithy/md5-js-4.0.1" 50049 sources."@smithy/middleware-content-length-4.0.1" 50050 - sources."@smithy/middleware-endpoint-4.0.5" 50051 - sources."@smithy/middleware-retry-4.0.6" 50052 sources."@smithy/middleware-serde-4.0.2" 50053 sources."@smithy/middleware-stack-4.0.1" 50054 sources."@smithy/node-config-provider-4.0.1" 50055 - sources."@smithy/node-http-handler-4.0.2" 50056 sources."@smithy/property-provider-4.0.1" 50057 sources."@smithy/protocol-http-5.0.1" 50058 sources."@smithy/querystring-builder-4.0.1" ··· 50067 ]; 50068 } 50069 ) 50070 - sources."@smithy/smithy-client-4.1.5" 50071 sources."@smithy/types-4.1.0" 50072 sources."@smithy/url-parser-4.0.1" 50073 ( ··· 50083 sources."@smithy/util-body-length-node-4.0.0" 50084 sources."@smithy/util-buffer-from-2.2.0" 50085 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" 50088 sources."@smithy/util-endpoints-3.0.1" 50089 sources."@smithy/util-hex-encoding-4.0.0" 50090 sources."@smithy/util-middleware-4.0.1" 50091 sources."@smithy/util-retry-4.0.1" 50092 ( 50093 - sources."@smithy/util-stream-4.1.1" 50094 // { 50095 dependencies = [ 50096 sources."@smithy/is-array-buffer-4.0.0" ··· 50117 sources."@types/http-cache-semantics-4.0.4" 50118 sources."@types/http-errors-2.0.4" 50119 sources."@types/mime-1.3.5" 50120 - sources."@types/node-22.13.4" 50121 sources."@types/qs-6.9.18" 50122 sources."@types/range-parser-1.2.7" 50123 sources."@types/send-0.17.4" ··· 50279 sources."fresh-0.5.2" 50280 sources."fs.realpath-1.0.0" 50281 sources."function-bind-1.1.2" 50282 - sources."get-intrinsic-1.2.7" 50283 sources."get-proto-1.0.1" 50284 sources."get-stream-6.0.1" 50285 sources."glob-7.2.3" ··· 50501 ]; 50502 } 50503 ) 50504 - sources."strnum-1.0.5" 50505 sources."supports-color-8.1.1" 50506 sources."tdigest-0.1.2" 50507 sources."toidentifier-1.0.1" ··· 50909 sources."extend-3.0.2" 50910 sources."fault-2.0.1" 50911 sources."find-up-6.3.0" 50912 - sources."foreground-child-3.3.0" 50913 sources."form-data-encoder-2.1.4" 50914 sources."format-0.2.2" 50915 sources."from-0.1.7" ··· 51417 aws-cdk = nodeEnv.buildNodePackage { 51418 name = "aws-cdk"; 51419 packageName = "aws-cdk"; 51420 - version = "2.178.2"; 51421 src = fetchurl { 51422 - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.178.2.tgz"; 51423 - sha512 = "ojMCMnBGinvDUD6+BOOlUOB9pjsYXoQdFVbf4bvi3dy3nwn557r0j6qDUcJMeikzPJ6YWzfAdL0fYxBZg4xcOg=="; 51424 }; 51425 buildInputs = globalBuildInputs; 51426 meta = { 51427 - description = "CDK Toolkit, the command line tool for CDK apps"; 51428 homepage = "https://github.com/aws/aws-cdk"; 51429 license = "Apache-2.0"; 51430 }; ··· 51869 sources."to-regex-range-5.0.1" 51870 sources."to-vfile-8.0.0" 51871 sources."trough-2.2.0" 51872 - sources."type-fest-4.34.1" 51873 sources."unicorn-magic-0.3.0" 51874 sources."unified-11.0.5" 51875 sources."unified-lint-rule-3.0.1" ··· 52063 sources."fs.realpath-1.0.0" 52064 sources."function-bind-1.1.2" 52065 sources."get-assigned-identifiers-1.2.0" 52066 - sources."get-intrinsic-1.2.7" 52067 sources."get-proto-1.0.1" 52068 sources."glob-7.2.3" 52069 sources."gopd-1.2.0" ··· 52219 dependencies = [ 52220 sources."@socket.io/component-emitter-3.1.2" 52221 sources."@types/cors-2.8.17" 52222 - sources."@types/node-22.13.4" 52223 sources."accepts-1.3.8" 52224 sources."ansi-regex-5.0.1" 52225 sources."ansi-styles-4.3.0" ··· 52436 cdk8s-cli = nodeEnv.buildNodePackage { 52437 name = "cdk8s-cli"; 52438 packageName = "cdk8s-cli"; 52439 - version = "2.198.326"; 52440 src = fetchurl { 52441 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.326.tgz"; 52442 - sha512 = "IRRbqG2OG4IweXpM/bvxZRu9bxIPNy9aHgGJ9bL0eREsnkvcIfjARBg0aWzP6q/Lo+C+8ryXkx1aPZRrF9i06Q=="; 52443 }; 52444 dependencies = [ 52445 - sources."@jsii/check-node-1.106.0" 52446 - sources."@jsii/spec-1.106.0" 52447 sources."@nodelib/fs.scandir-2.1.5" 52448 sources."@nodelib/fs.stat-2.0.5" 52449 sources."@nodelib/fs.walk-1.2.8" ··· 52459 sources."braces-3.0.3" 52460 sources."camelcase-6.3.0" 52461 sources."case-1.6.3" 52462 - sources."cdk8s-2.69.40" 52463 sources."cdk8s-plus-28-2.5.6" 52464 sources."chalk-4.1.2" 52465 sources."cliui-7.0.4" 52466 sources."clone-2.1.2" 52467 ( 52468 - sources."codemaker-1.106.0" 52469 // { 52470 dependencies = [ 52471 sources."fs-extra-10.1.0" ··· 52488 sources."downlevel-dts-0.11.0" 52489 // { 52490 dependencies = [ 52491 - sources."typescript-5.8.0-dev.20250216" 52492 ]; 52493 } 52494 ) ··· 52502 sources."fastq-1.19.0" 52503 sources."fill-range-7.1.1" 52504 sources."find-up-4.1.0" 52505 - sources."flatted-3.3.2" 52506 ( 52507 sources."fs-extra-8.1.0" 52508 // { ··· 52529 sources."is-glob-4.0.3" 52530 sources."is-number-7.0.0" 52531 ( 52532 - sources."jsii-5.7.5" 52533 // { 52534 dependencies = [ 52535 sources."cliui-8.0.1" 52536 sources."yargs-17.7.2" 52537 sources."yargs-parser-21.1.1" ··· 52539 } 52540 ) 52541 ( 52542 - sources."jsii-pacmak-1.106.0" 52543 // { 52544 dependencies = [ 52545 sources."fs-extra-10.1.0" ··· 52548 } 52549 ) 52550 ( 52551 - sources."jsii-reflect-1.106.0" 52552 // { 52553 dependencies = [ 52554 sources."fs-extra-10.1.0" ··· 52557 } 52558 ) 52559 ( 52560 - sources."jsii-rosetta-5.7.4" 52561 // { 52562 dependencies = [ 52563 sources."cliui-8.0.1" 52564 sources."yargs-17.7.2" 52565 sources."yargs-parser-21.1.1" ··· 52570 sources."jsii-srcmak-0.1.1236" 52571 // { 52572 dependencies = [ 52573 sources."cliui-8.0.1" 52574 sources."fs-extra-9.1.0" 52575 - sources."jsii-5.5.21" 52576 sources."typescript-5.5.4" 52577 sources."yargs-17.7.2" 52578 sources."yargs-parser-21.1.1" ··· 52596 sources."ncp-2.0.0" 52597 sources."no-case-3.0.4" 52598 sources."once-1.4.0" 52599 - sources."oo-ascii-tree-1.106.0" 52600 sources."p-limit-2.3.0" 52601 sources."p-locate-4.1.0" 52602 sources."p-try-2.2.0" ··· 52946 sources."@jridgewell/sourcemap-codec-1.5.0" 52947 sources."@jridgewell/trace-mapping-0.3.25" 52948 sources."@jsii/check-node-1.102.0" 52949 - sources."@jsii/spec-1.106.0" 52950 sources."@nodelib/fs.scandir-2.1.5" 52951 sources."@nodelib/fs.stat-2.0.5" 52952 sources."@nodelib/fs.walk-1.2.8" ··· 52958 sources."@sentry/utils-7.120.1" 52959 sources."@types/mute-stream-0.0.1" 52960 sources."@types/node-18.19.67" 52961 - sources."@types/react-19.0.9" 52962 sources."@types/wrap-ansi-3.0.0" 52963 sources."@types/yauzl-2.10.3" 52964 sources."@types/yoga-layout-1.9.2" ··· 53068 sources."downlevel-dts-0.11.0" 53069 // { 53070 dependencies = [ 53071 - sources."typescript-5.8.0-dev.20250216" 53072 ]; 53073 } 53074 ) ··· 53120 ) 53121 sources."fill-range-7.1.1" 53122 sources."find-up-3.0.0" 53123 - sources."flatted-3.3.2" 53124 sources."follow-redirects-1.15.9" 53125 sources."for-each-0.3.5" 53126 ( 53127 - sources."foreground-child-3.3.0" 53128 // { 53129 dependencies = [ 53130 sources."signal-exit-4.1.0" ··· 53138 sources."functions-have-names-1.2.3" 53139 sources."get-caller-file-2.0.5" 53140 sources."get-east-asian-width-1.3.0" 53141 - sources."get-intrinsic-1.2.7" 53142 sources."get-proto-1.0.1" 53143 sources."get-stream-6.0.1" 53144 sources."github-from-package-0.0.0" ··· 53278 } 53279 ) 53280 ( 53281 - sources."jsii-reflect-1.106.0" 53282 // { 53283 dependencies = [ 53284 - sources."@jsii/check-node-1.106.0" 53285 sources."cliui-7.0.4" 53286 sources."fs-extra-10.1.0" 53287 sources."jsonfile-6.1.0" ··· 53337 sources."mkdirp-classic-0.5.3" 53338 sources."ms-2.1.3" 53339 sources."mute-stream-1.0.0" 53340 - sources."nan-2.22.0" 53341 sources."napi-build-utils-2.0.0" 53342 sources."node-abi-3.74.0" 53343 sources."node-fetch-2.7.0" ··· 53353 sources."obliterator-2.0.5" 53354 sources."once-1.4.0" 53355 sources."onetime-5.1.2" 53356 - sources."oo-ascii-tree-1.106.0" 53357 sources."open-7.4.2" 53358 sources."os-tmpdir-1.0.2" 53359 sources."p-limit-2.3.0" ··· 53479 sources."to-regex-range-5.0.1" 53480 sources."tr46-0.0.3" 53481 sources."tunnel-agent-0.6.0" 53482 - sources."type-fest-4.34.1" 53483 sources."typescript-5.4.5" 53484 sources."undici-types-5.26.5" 53485 sources."universalify-0.1.2" ··· 53508 sources."wrap-ansi-7.0.0" 53509 sources."wrap-ansi-cjs-7.0.0" 53510 sources."wrappy-1.0.2" 53511 - sources."ws-8.18.0" 53512 sources."xml-js-1.6.11" 53513 sources."xmlbuilder-15.1.1" 53514 sources."xstate-4.38.3" ··· 53965 coc-lists = nodeEnv.buildNodePackage { 53966 name = "coc-lists"; 53967 packageName = "coc-lists"; 53968 - version = "1.5.1"; 53969 src = fetchurl { 53970 - url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.5.1.tgz"; 53971 - sha512 = "tJYhsDHadL6YYEsHAUc+tFi8MYklHmPx3AcjiUHTYRAtkAyKoZb+BPpAwG8gvfSqdkCxu55eHLeJ9lGhXNztZA=="; 53972 }; 53973 buildInputs = globalBuildInputs; 53974 meta = { ··· 54099 coc-rust-analyzer = nodeEnv.buildNodePackage { 54100 name = "coc-rust-analyzer"; 54101 packageName = "coc-rust-analyzer"; 54102 - version = "0.80.4"; 54103 src = fetchurl { 54104 - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.80.4.tgz"; 54105 - sha512 = "FXoLxN7DnzXyA+IlyF88gSoQCbrF6PrH0xHB5M2pqRZnWQIVdt4UmhlvdfwK77DIXTcDyRh4Q6vsnfJkgV0mlQ=="; 54106 }; 54107 buildInputs = globalBuildInputs; 54108 meta = { ··· 54465 sources."callsites-3.1.0" 54466 sources."camelcase-5.3.1" 54467 sources."camelcase-keys-6.2.2" 54468 - sources."caniuse-lite-1.0.30001699" 54469 sources."chalk-4.1.2" 54470 sources."character-entities-1.2.4" 54471 sources."character-entities-legacy-1.1.4" ··· 54500 sources."domelementtype-1.3.1" 54501 sources."domhandler-2.4.2" 54502 sources."domutils-1.7.0" 54503 - sources."electron-to-chromium-1.5.101" 54504 sources."emoji-regex-8.0.0" 54505 sources."entities-1.1.2" 54506 sources."error-ex-1.3.2" ··· 54517 sources."fill-range-7.1.1" 54518 sources."find-up-4.1.0" 54519 sources."flat-cache-3.2.0" 54520 - sources."flatted-3.3.2" 54521 sources."fs.realpath-1.0.0" 54522 sources."function-bind-1.1.2" 54523 sources."gensync-1.0.0-beta.2" ··· 54968 sources."fast-uri-3.0.6" 54969 sources."file-entry-cache-6.0.1" 54970 sources."flat-cache-3.2.0" 54971 - sources."flatted-3.3.2" 54972 sources."fs.realpath-1.0.0" 54973 sources."function-bind-1.1.2" 54974 sources."functional-red-black-tree-1.0.1" 54975 - sources."get-intrinsic-1.2.7" 54976 sources."get-proto-1.0.1" 54977 sources."glob-7.2.3" 54978 sources."glob-parent-5.1.2" ··· 55414 sources."conventional-changelog-jquery-6.0.0" 55415 sources."conventional-changelog-jshint-5.0.0" 55416 sources."conventional-changelog-preset-loader-5.0.0" 55417 - sources."conventional-changelog-writer-8.0.0" 55418 sources."conventional-commits-filter-5.0.0" 55419 - sources."conventional-commits-parser-6.0.0" 55420 sources."dot-prop-5.3.0" 55421 sources."find-up-simple-1.0.0" 55422 sources."git-raw-commits-5.0.0" ··· 55443 sources."spdx-license-ids-3.0.21" 55444 sources."temp-dir-3.0.0" 55445 sources."tempfile-5.0.0" 55446 - sources."type-fest-4.34.1" 55447 sources."uglify-js-3.19.3" 55448 sources."unicorn-magic-0.1.0" 55449 sources."validate-npm-package-license-3.0.4" ··· 55546 sources."@cycle/run-3.4.0" 55547 sources."@cycle/time-0.10.1" 55548 sources."@types/cookiejar-2.1.5" 55549 - sources."@types/node-22.13.4" 55550 sources."@types/superagent-3.8.2" 55551 sources."ansi-escapes-3.2.0" 55552 sources."ansi-regex-2.1.1" ··· 55602 sources."form-data-2.5.3" 55603 sources."formidable-1.2.6" 55604 sources."function-bind-1.1.2" 55605 - sources."get-intrinsic-1.2.7" 55606 sources."get-proto-1.0.1" 55607 sources."globalthis-1.0.4" 55608 sources."gopd-1.2.0" ··· 55732 cspell = nodeEnv.buildNodePackage { 55733 name = "cspell"; 55734 packageName = "cspell"; 55735 - version = "8.17.3"; 55736 src = fetchurl { 55737 - url = "https://registry.npmjs.org/cspell/-/cspell-8.17.3.tgz"; 55738 - sha512 = "fBZg674Dir9y/FWMwm2JyixM/1eB2vnqHJjRxOgGS/ZiZ3QdQ3LkK02Aqvlni8ffWYDZnYnYY9rfWmql9bb42w=="; 55739 }; 55740 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" 55747 sources."@cspell/dict-ada-4.1.0" 55748 sources."@cspell/dict-al-1.1.0" 55749 sources."@cspell/dict-aws-4.0.9" 55750 sources."@cspell/dict-bash-4.2.0" 55751 sources."@cspell/dict-companies-3.1.14" 55752 - sources."@cspell/dict-cpp-6.0.3" 55753 sources."@cspell/dict-cryptocurrencies-5.0.4" 55754 sources."@cspell/dict-csharp-4.0.6" 55755 sources."@cspell/dict-css-4.0.17" ··· 55761 sources."@cspell/dict-elixir-4.0.7" 55762 sources."@cspell/dict-en-common-misspellings-2.0.9" 55763 sources."@cspell/dict-en-gb-1.1.33" 55764 - sources."@cspell/dict-en_us-4.3.31" 55765 sources."@cspell/dict-filetypes-3.0.11" 55766 sources."@cspell/dict-flutter-1.1.0" 55767 sources."@cspell/dict-fonts-4.0.4" 55768 sources."@cspell/dict-fsharp-1.1.0" 55769 - sources."@cspell/dict-fullstack-3.2.4" 55770 sources."@cspell/dict-gaming-terms-1.1.0" 55771 sources."@cspell/dict-git-3.0.4" 55772 sources."@cspell/dict-golang-6.0.18" ··· 55785 sources."@cspell/dict-markdown-2.0.9" 55786 sources."@cspell/dict-monkeyc-1.0.10" 55787 sources."@cspell/dict-node-5.0.6" 55788 - sources."@cspell/dict-npm-5.1.26" 55789 sources."@cspell/dict-php-4.0.14" 55790 sources."@cspell/dict-powershell-5.0.14" 55791 sources."@cspell/dict-public-licenses-2.0.13" ··· 55802 sources."@cspell/dict-terraform-1.1.0" 55803 sources."@cspell/dict-typescript-3.2.0" 55804 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" 55809 sources."array-timsort-1.0.3" 55810 sources."braces-3.0.3" 55811 sources."callsites-3.1.0" ··· 55815 sources."commander-13.1.0" 55816 sources."comment-json-4.2.5" 55817 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" 55826 sources."env-paths-3.0.0" 55827 sources."esprima-4.0.1" 55828 sources."fast-equals-5.2.2" ··· 55839 sources."fill-range-7.1.1" 55840 sources."find-up-simple-1.0.0" 55841 sources."flat-cache-5.0.0" 55842 - sources."flatted-3.3.2" 55843 sources."gensequence-7.0.0" 55844 sources."get-stdin-9.0.0" 55845 sources."global-directory-4.0.1" ··· 55865 sources."resolve-from-5.0.0" 55866 sources."semver-7.7.1" 55867 ( 55868 - sources."tinyglobby-0.2.10" 55869 // { 55870 dependencies = [ 55871 sources."picomatch-4.0.2" ··· 56065 } 56066 ) 56067 sources."@oclif/screen-3.0.8" 56068 - sources."@swc/core-1.10.16" 56069 sources."@swc/counter-0.1.3" 56070 sources."@swc/helpers-0.5.15" 56071 - sources."@swc/types-0.1.17" 56072 - sources."@swc/wasm-1.10.16" 56073 sources."@tsconfig/node10-1.0.11" 56074 sources."@tsconfig/node12-1.0.11" 56075 sources."@tsconfig/node14-1.0.3" 56076 sources."@tsconfig/node16-1.0.4" 56077 sources."@types/cli-progress-3.11.6" 56078 - sources."@types/node-22.13.4" 56079 sources."acorn-8.14.0" 56080 sources."acorn-walk-8.3.4" 56081 sources."ansi-escapes-4.3.2" ··· 56167 sources."fs-constants-1.0.0" 56168 sources."fs-extra-9.1.0" 56169 sources."function-bind-1.1.2" 56170 - sources."get-intrinsic-1.2.7" 56171 sources."get-package-type-0.1.0" 56172 sources."get-proto-1.0.1" 56173 sources."glob-parent-5.1.2" ··· 56254 sources."reusify-1.0.4" 56255 sources."run-async-2.4.1" 56256 sources."run-parallel-1.2.0" 56257 - sources."rxjs-7.8.1" 56258 sources."safe-buffer-5.2.1" 56259 sources."safer-buffer-2.1.2" 56260 sources."semver-7.7.1" ··· 56311 elasticdump = nodeEnv.buildNodePackage { 56312 name = "elasticdump"; 56313 packageName = "elasticdump"; 56314 - version = "6.118.0"; 56315 src = fetchurl { 56316 - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.118.0.tgz"; 56317 - sha512 = "VClh40kZmuJNMk6U46cXb9D94SvlV/5WO4Jvuz2D6wVDfboWG7d15apQ6+Hm8rHRZEsiWagDXQe+zQ7L7BtVFQ=="; 56318 }; 56319 dependencies = [ 56320 sources."@fast-csv/format-4.3.5" 56321 sources."@fast-csv/parse-4.3.6" 56322 sources."@types/node-14.18.63" 56323 sources."JSONStream-1.5.0" 56324 sources."ajv-6.12.6" 56325 sources."asn1-0.2.6" 56326 sources."assert-plus-1.0.0" ··· 56340 sources."call-bind-apply-helpers-1.0.2" 56341 sources."call-bound-1.0.3" 56342 sources."caseless-0.12.0" 56343 sources."combined-stream-1.0.8" 56344 sources."core-util-is-1.0.2" 56345 sources."dashdash-1.14.1" ··· 56351 sources."es-define-property-1.0.1" 56352 sources."es-errors-1.3.0" 56353 sources."es-object-atoms-1.1.1" 56354 - sources."eventemitter3-4.0.7" 56355 sources."events-1.1.1" 56356 sources."extend-3.0.2" 56357 sources."extends-classes-1.0.5" ··· 56363 sources."forever-agent-0.6.1" 56364 sources."form-data-2.3.3" 56365 sources."function-bind-1.1.2" 56366 - sources."get-intrinsic-1.2.7" 56367 sources."get-proto-1.0.1" 56368 sources."getpass-0.1.7" 56369 sources."gopd-1.2.0" ··· 56376 sources."http-signature-1.2.0" 56377 sources."http-status-1.8.1" 56378 sources."ieee754-1.1.13" 56379 sources."inherits-2.0.4" 56380 sources."ini-2.0.0" 56381 ( ··· 56418 sources."mime-types-2.1.35" 56419 sources."minimist-1.2.8" 56420 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 sources."performance-now-2.1.0" 56425 sources."possible-typed-array-names-1.1.0" 56426 sources."process-nextick-args-2.0.1" ··· 56516 "@electron-forge/cli" = nodeEnv.buildNodePackage { 56517 name = "_at_electron-forge_slash_cli"; 56518 packageName = "@electron-forge/cli"; 56519 - version = "7.6.1"; 56520 src = fetchurl { 56521 - url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-7.6.1.tgz"; 56522 - sha512 = "Z9OwK5cAVDOj7MWWt9Gw0/4OJO/db+rshLSXg0I+ySv4xrJmZK1w6QEeOrm7eHjuAqKA+gzIaHsRsT0klCL2lg=="; 56523 }; 56524 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" 56537 ( 56538 sources."@electron/asar-3.3.1" 56539 // { ··· 56612 sources."@types/cacheable-request-6.0.3" 56613 sources."@types/http-cache-semantics-4.0.4" 56614 sources."@types/keyv-3.1.4" 56615 - sources."@types/node-22.13.4" 56616 sources."@types/responselike-1.0.3" 56617 sources."@types/yauzl-2.10.3" 56618 sources."@xmldom/xmldom-0.8.10" ··· 56669 sources."color-convert-2.0.1" 56670 sources."color-name-1.1.4" 56671 sources."colorette-2.0.20" 56672 - sources."commander-4.1.1" 56673 sources."compare-version-0.1.2" 56674 sources."concat-map-0.0.1" 56675 sources."cross-dirname-0.1.0" ··· 56693 sources."defaults-1.0.4" 56694 sources."defer-to-connect-2.0.1" 56695 sources."detect-libc-2.0.3" 56696 - sources."detect-package-manager-3.0.2" 56697 sources."dir-compare-4.2.0" 56698 sources."eastasianwidth-0.2.0" 56699 sources."emoji-regex-8.0.0" ··· 56706 sources."escape-string-regexp-1.0.5" 56707 sources."eventemitter3-5.0.1" 56708 ( 56709 - sources."execa-5.1.1" 56710 // { 56711 dependencies = [ 56712 - sources."get-stream-6.0.1" 56713 ]; 56714 } 56715 ) 56716 - sources."expand-tilde-2.0.2" 56717 sources."exponential-backoff-3.1.2" 56718 sources."extract-zip-2.0.1" 56719 sources."fast-glob-3.3.3" ··· 56739 sources."function-bind-1.1.2" 56740 sources."galactus-1.0.0" 56741 sources."get-caller-file-2.0.5" 56742 - sources."get-installed-path-2.1.1" 56743 ( 56744 sources."get-package-info-1.0.0" 56745 // { ··· 56751 sources."get-stream-5.2.0" 56752 sources."glob-7.2.3" 56753 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 - ) 56763 sources."got-11.8.6" 56764 sources."graceful-fs-4.2.11" 56765 sources."has-flag-4.0.0" 56766 sources."hasown-2.0.2" 56767 - sources."homedir-polyfill-1.0.3" 56768 sources."hosted-git-info-2.8.9" 56769 sources."http-cache-semantics-4.1.1" 56770 sources."http-proxy-agent-5.0.0" 56771 sources."http2-wrapper-1.0.3" 56772 sources."https-proxy-agent-5.0.1" 56773 - sources."human-signals-2.1.0" 56774 sources."humanize-ms-1.2.1" 56775 sources."iconv-lite-0.6.3" 56776 sources."ieee754-1.2.1" ··· 56779 sources."infer-owner-1.0.4" 56780 sources."inflight-1.0.6" 56781 sources."inherits-2.0.4" 56782 - sources."ini-1.3.8" 56783 sources."interpret-3.1.1" 56784 sources."ip-address-9.0.5" 56785 sources."is-arrayish-0.2.1" ··· 56790 sources."is-interactive-1.0.0" 56791 sources."is-lambda-1.0.1" 56792 sources."is-number-7.0.0" 56793 - sources."is-stream-2.0.1" 56794 sources."is-unicode-supported-0.1.0" 56795 - sources."is-windows-1.0.2" 56796 sources."isbinaryfile-4.0.10" 56797 sources."isexe-2.0.0" 56798 sources."jsbn-1.1.0" ··· 56838 sources."make-fetch-happen-10.2.1" 56839 sources."map-age-cleaner-0.1.3" 56840 sources."mem-4.3.0" 56841 - sources."merge-stream-2.0.0" 56842 sources."merge2-1.4.1" 56843 sources."micromatch-4.0.8" 56844 sources."mimic-fn-2.1.0" ··· 56869 } 56870 ) 56871 sources."normalize-url-6.1.0" 56872 - sources."npm-run-path-4.0.1" 56873 sources."once-1.4.0" 56874 sources."onetime-5.1.2" 56875 sources."ora-5.4.1" ··· 56890 sources."p-try-1.0.0" 56891 sources."parse-author-2.0.0" 56892 sources."parse-json-2.2.0" 56893 - sources."parse-passwd-1.0.0" 56894 sources."path-exists-3.0.0" 56895 sources."path-is-absolute-1.0.1" 56896 sources."path-key-3.1.1" ··· 56932 sources."resedit-2.0.3" 56933 sources."resolve-1.22.10" 56934 sources."resolve-alpn-1.2.1" 56935 - sources."resolve-dir-1.0.1" 56936 - sources."resolve-package-1.0.1" 56937 sources."responselike-2.0.1" 56938 sources."restore-cursor-3.1.0" 56939 sources."retry-0.12.0" ··· 56972 sources."strip-ansi-6.0.1" 56973 sources."strip-bom-3.0.0" 56974 sources."strip-eof-1.0.0" 56975 - sources."strip-final-newline-2.0.0" 56976 sources."strip-outer-1.0.1" 56977 sources."sudo-prompt-9.2.1" 56978 sources."sumchecker-3.0.1" ··· 56994 sources."unique-filename-2.0.1" 56995 sources."unique-slug-3.0.0" 56996 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 - ) 57014 sources."util-deprecate-1.0.2" 57015 sources."validate-npm-package-license-3.0.4" 57016 sources."wcwidth-1.0.1" ··· 57065 }; 57066 dependencies = [ 57067 sources."@alcalzone/ansi-tokenize-0.1.3" 57068 - sources."@types/react-19.0.9" 57069 sources."ajv-8.17.1" 57070 sources."ajv-formats-2.1.1" 57071 sources."ansi-escapes-7.0.0" ··· 57111 // { 57112 dependencies = [ 57113 sources."signal-exit-3.0.7" 57114 - sources."type-fest-4.34.1" 57115 ]; 57116 } 57117 ) ··· 57119 sources."ink-text-input-6.0.0" 57120 // { 57121 dependencies = [ 57122 - sources."type-fest-4.34.1" 57123 ]; 57124 } 57125 ) ··· 57204 sources."which-2.0.2" 57205 sources."widest-line-5.0.0" 57206 sources."wrap-ansi-9.0.0" 57207 - sources."ws-8.18.0" 57208 sources."yoga-wasm-web-0.3.3" 57209 ]; 57210 buildInputs = globalBuildInputs; ··· 57283 sources."@babel/helper-validator-identifier-7.25.9" 57284 sources."@puppeteer/browsers-2.3.0" 57285 sources."@tootallnate/quickjs-emscripten-0.23.0" 57286 - sources."@types/node-22.13.4" 57287 - sources."@types/react-19.0.9" 57288 sources."@types/yauzl-2.10.3" 57289 sources."agent-base-7.1.3" 57290 sources."ansi-escapes-7.0.0" ··· 57382 sources."node-gyp-build-4.8.4" 57383 sources."once-1.4.0" 57384 sources."onetime-5.1.2" 57385 - sources."pac-proxy-agent-7.1.0" 57386 sources."pac-resolver-7.0.1" 57387 sources."parent-module-1.0.1" 57388 sources."parse-json-5.2.0" ··· 57435 sources."text-decoder-1.2.3" 57436 sources."through-2.3.8" 57437 sources."tslib-2.8.1" 57438 - sources."type-fest-4.34.1" 57439 sources."typescript-5.7.3" 57440 sources."unbzip2-stream-1.4.3" 57441 sources."undici-types-6.20.0" ··· 57445 sources."widest-line-5.0.0" 57446 sources."wrap-ansi-9.0.0" 57447 sources."wrappy-1.0.2" 57448 - sources."ws-8.18.0" 57449 sources."y18n-5.0.8" 57450 ( 57451 sources."yargs-17.7.2" ··· 57494 ) 57495 sources."@eslint-community/regexpp-4.12.1" 57496 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" 57500 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 - ) 57509 sources."@grpc/grpc-js-1.12.6" 57510 sources."@grpc/proto-loader-0.7.13" 57511 sources."@humanfs/core-0.19.1" ··· 57518 } 57519 ) 57520 sources."@humanwhocodes/module-importer-1.0.1" 57521 - sources."@humanwhocodes/retry-0.4.1" 57522 sources."@inquirer/checkbox-4.1.2" 57523 sources."@inquirer/confirm-5.1.6" 57524 sources."@inquirer/core-10.1.7" ··· 57569 sources."@types/hast-3.0.4" 57570 sources."@types/json-schema-7.0.15" 57571 sources."@types/mdast-4.0.4" 57572 - sources."@types/node-22.13.4" 57573 sources."@types/unist-3.0.3" 57574 sources."@ungap/structured-clone-1.3.0" 57575 sources."acorn-8.14.0" ··· 57643 sources."dot-prop-9.0.0" 57644 // { 57645 dependencies = [ 57646 - sources."type-fest-4.34.1" 57647 ]; 57648 } 57649 ) ··· 57663 sources."escape-goat-4.0.0" 57664 sources."escape-string-regexp-4.0.0" 57665 ( 57666 - sources."eslint-9.20.1" 57667 // { 57668 dependencies = [ 57669 sources."chalk-4.1.2" ··· 57698 sources."fill-range-7.1.1" 57699 sources."find-up-5.0.0" 57700 sources."flat-cache-4.0.1" 57701 - sources."flatted-3.3.2" 57702 sources."fn-annotate-1.2.0" 57703 sources."fs-constants-1.0.0" 57704 sources."get-caller-file-2.0.5" ··· 57723 } 57724 ) 57725 sources."has-flag-4.0.0" 57726 - sources."hast-util-to-html-9.0.4" 57727 sources."hast-util-whitespace-3.0.0" 57728 sources."html-void-elements-3.0.0" 57729 sources."iconv-lite-0.4.24" ··· 57758 sources."locate-path-6.0.0" 57759 sources."lodash.camelcase-4.3.0" 57760 sources."lodash.merge-4.6.2" 57761 - sources."long-5.3.0" 57762 sources."lower-case-2.0.2" 57763 sources."luxon-3.5.0" 57764 sources."mdast-util-to-hast-13.2.0" ··· 57793 sources."path-key-3.1.1" 57794 sources."picomatch-2.3.1" 57795 sources."prelude-ls-1.2.1" 57796 - sources."property-information-6.5.0" 57797 sources."proto-list-1.2.4" 57798 sources."protobufjs-7.4.0" 57799 sources."pump-3.0.2" ··· 57820 sources."run-applescript-7.0.0" 57821 sources."run-async-3.0.0" 57822 sources."run-parallel-1.2.0" 57823 - sources."rxjs-7.8.1" 57824 sources."safe-buffer-5.2.1" 57825 sources."safer-buffer-2.1.2" 57826 sources."semver-7.7.1" ··· 57866 sources."emoji-regex-10.4.0" 57867 sources."string-width-7.2.0" 57868 sources."strip-ansi-7.1.0" 57869 - sources."type-fest-4.34.1" 57870 sources."widest-line-5.0.0" 57871 sources."wrap-ansi-9.0.0" 57872 ]; ··· 58034 } 58035 ) 58036 sources."run-async-3.0.0" 58037 - sources."rxjs-7.8.1" 58038 sources."safe-buffer-5.2.1" 58039 sources."safer-buffer-2.1.2" 58040 sources."shebang-command-2.0.0" ··· 58106 sources."@scure/bip39-1.3.0" 58107 sources."@types/atob-2.1.4" 58108 sources."@types/inquirer-6.5.0" 58109 - sources."@types/node-22.13.4" 58110 sources."@types/through-0.0.33" 58111 sources."ajv-6.12.6" 58112 sources."ansi-escapes-4.3.2" ··· 58461 sources."fsevents-1.2.13" 58462 sources."function-bind-1.1.2" 58463 sources."functions-have-names-1.2.3" 58464 - sources."get-intrinsic-1.2.7" 58465 sources."get-proto-1.0.1" 58466 sources."get-value-2.0.6" 58467 sources."glob-7.2.3" ··· 58551 sources."mkdirp-0.5.6" 58552 sources."ms-2.1.3" 58553 sources."mute-stream-0.0.8" 58554 - sources."nan-2.22.0" 58555 ( 58556 sources."nanomatch-1.2.13" 58557 // { ··· 58904 sources."@types/common-tags-1.8.4" 58905 sources."@types/http-cache-semantics-4.0.4" 58906 sources."@types/keyv-3.1.4" 58907 - sources."@types/node-22.13.4" 58908 sources."@types/responselike-1.0.3" 58909 sources."@types/yoga-layout-1.9.2" 58910 sources."abort-controller-3.0.0" ··· 58935 } 58936 ) 58937 sources."camelcase-6.3.0" 58938 - sources."caniuse-lite-1.0.30001699" 58939 sources."chalk-4.1.2" 58940 sources."chardet-0.7.0" 58941 sources."ci-info-2.0.0" ··· 58997 sources."domhandler-4.3.1" 58998 sources."domutils-2.8.0" 58999 sources."dot-prop-5.3.0" 59000 - sources."electron-to-chromium-1.5.101" 59001 sources."emoji-regex-8.0.0" 59002 ( 59003 sources."encoding-0.1.13" ··· 59264 sources."es-errors-1.3.0" 59265 sources."es-object-atoms-1.1.1" 59266 sources."function-bind-1.1.2" 59267 - sources."get-intrinsic-1.2.7" 59268 sources."get-proto-1.0.1" 59269 sources."gopd-1.2.0" 59270 sources."has-flag-4.0.0" ··· 59760 ) 59761 sources."moment-2.30.1" 59762 sources."mv-2.1.1" 59763 - sources."nan-2.22.0" 59764 sources."ncp-2.0.0" 59765 sources."once-1.4.0" 59766 sources."optimist-0.6.1" ··· 59894 ) 59895 sources."@aws-sdk/config-resolver-3.296.0" 59896 ( 59897 - sources."@aws-sdk/core-3.749.0" 59898 // { 59899 dependencies = [ 59900 sources."@aws-sdk/types-3.734.0" ··· 59910 sources."@aws-sdk/credential-provider-sso-3.296.0" 59911 sources."@aws-sdk/credential-provider-web-identity-3.296.0" 59912 ( 59913 - sources."@aws-sdk/crt-loader-3.749.0" 59914 // { 59915 dependencies = [ 59916 - sources."@aws-sdk/middleware-user-agent-3.749.0" 59917 sources."@aws-sdk/types-3.734.0" 59918 sources."@aws-sdk/util-endpoints-3.743.0" 59919 - sources."@aws-sdk/util-user-agent-node-3.749.0" 59920 ]; 59921 } 59922 ) ··· 59967 sources."@aws-sdk/shared-ini-file-loader-3.296.0" 59968 sources."@aws-sdk/signature-v4-3.296.0" 59969 ( 59970 - sources."@aws-sdk/signature-v4-crt-3.749.0" 59971 // { 59972 dependencies = [ 59973 - sources."@aws-sdk/middleware-sdk-s3-3.749.0" 59974 - sources."@aws-sdk/signature-v4-multi-region-3.749.0" 59975 sources."@aws-sdk/types-3.734.0" 59976 sources."@aws-sdk/util-arn-parser-3.723.0" 59977 ]; ··· 60008 sources."@aws-sdk/xml-builder-3.295.0" 60009 sources."@babel/runtime-7.26.9" 60010 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" 60014 sources."@csstools/css-parser-algorithms-3.0.4" 60015 sources."@csstools/css-tokenizer-3.0.3" 60016 sources."@gar/promisify-1.1.3" ··· 60058 sources."@npmcli/fs-1.1.1" 60059 sources."@npmcli/move-file-1.1.2" 60060 sources."@smithy/abort-controller-4.0.1" 60061 - sources."@smithy/core-3.1.4" 60062 sources."@smithy/fetch-http-handler-5.0.1" 60063 sources."@smithy/is-array-buffer-4.0.0" 60064 - sources."@smithy/middleware-endpoint-4.0.5" 60065 sources."@smithy/middleware-serde-4.0.2" 60066 sources."@smithy/middleware-stack-4.0.1" 60067 sources."@smithy/node-config-provider-4.0.1" 60068 - sources."@smithy/node-http-handler-4.0.2" 60069 sources."@smithy/property-provider-4.0.1" 60070 sources."@smithy/protocol-http-5.0.1" 60071 sources."@smithy/querystring-builder-4.0.1" 60072 sources."@smithy/querystring-parser-4.0.1" 60073 sources."@smithy/shared-ini-file-loader-4.0.1" 60074 sources."@smithy/signature-v4-5.0.1" 60075 - sources."@smithy/smithy-client-4.1.5" 60076 sources."@smithy/types-4.1.0" 60077 sources."@smithy/url-parser-4.0.1" 60078 sources."@smithy/util-base64-4.0.0" ··· 60082 sources."@smithy/util-endpoints-3.0.1" 60083 sources."@smithy/util-hex-encoding-4.0.0" 60084 sources."@smithy/util-middleware-4.0.1" 60085 - sources."@smithy/util-stream-4.1.1" 60086 sources."@smithy/util-uri-escape-4.0.0" 60087 sources."@smithy/util-utf8-4.0.0" 60088 sources."@tokenizer/token-0.3.0" 60089 sources."@tootallnate/once-1.1.2" 60090 sources."@types/nanoid-3.0.0" 60091 - sources."@types/node-22.13.4" 60092 sources."@types/ws-8.5.14" 60093 sources."abbrev-1.1.1" 60094 sources."abort-controller-3.0.0" ··· 60320 sources."for-each-property-0.0.4" 60321 sources."for-each-property-deep-0.0.3" 60322 ( 60323 - sources."foreground-child-3.3.0" 60324 // { 60325 dependencies = [ 60326 sources."signal-exit-4.1.0" ··· 60351 sources."fs.realpath-1.0.0" 60352 sources."function-bind-1.1.2" 60353 sources."gauge-3.0.2" 60354 - sources."get-intrinsic-1.2.7" 60355 sources."get-proto-1.0.1" 60356 sources."get-prototype-chain-1.0.1" 60357 sources."get-stdin-5.0.1" ··· 60653 sources."ms-2.1.3" 60654 sources."multiparty-4.2.3" 60655 sources."mustache-4.2.0" 60656 - sources."nan-2.22.0" 60657 sources."nanoid-3.3.7" 60658 sources."napi-build-utils-2.0.0" 60659 sources."ndarray-1.0.19" ··· 60935 ) 60936 sources."strip-final-newline-2.0.0" 60937 sources."strip-json-comments-2.0.1" 60938 - sources."strnum-1.0.5" 60939 sources."strtok3-6.3.0" 60940 sources."supports-color-7.2.0" 60941 sources."symbol-tree-3.2.4" ··· 61062 } 61063 ) 61064 sources."wrappy-1.0.2" 61065 - sources."ws-8.18.0" 61066 sources."xml-name-validator-5.0.0" 61067 sources."xml2js-0.4.23" 61068 sources."xmlbuilder-11.0.1" ··· 61105 sources."eastasianwidth-0.2.0" 61106 sources."editorconfig-1.0.4" 61107 sources."emoji-regex-9.2.2" 61108 - sources."foreground-child-3.3.0" 61109 ( 61110 sources."glob-10.4.5" 61111 // { ··· 61379 sources."form-data-4.0.2" 61380 sources."formidable-2.1.2" 61381 sources."function-bind-1.1.2" 61382 - sources."get-intrinsic-1.2.7" 61383 sources."get-proto-1.0.1" 61384 sources."gopd-1.2.0" 61385 sources."graphlib-2.1.8" ··· 61438 dependencies = [ 61439 sources."@polka/url-1.0.0-next.28" 61440 sources."@tinyhttp/accepts-2.2.3" 61441 - sources."@tinyhttp/app-2.5.0" 61442 sources."@tinyhttp/content-disposition-2.2.2" 61443 sources."@tinyhttp/content-type-0.1.4" 61444 sources."@tinyhttp/cookie-2.1.1" ··· 61446 sources."@tinyhttp/cors-2.0.1" 61447 sources."@tinyhttp/encode-url-2.1.1" 61448 sources."@tinyhttp/etag-2.1.2" 61449 - sources."@tinyhttp/forwarded-2.1.1" 61450 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" 61454 sources."@tinyhttp/router-2.2.3" 61455 sources."@tinyhttp/send-2.2.3" 61456 sources."@tinyhttp/type-is-2.2.4" ··· 61471 sources."lowdb-7.0.1" 61472 sources."milliparsec-4.0.0" 61473 sources."mime-4.0.4" 61474 - sources."mrmime-2.0.0" 61475 sources."negotiator-0.6.4" 61476 sources."readdirp-4.1.2" 61477 sources."regexparam-2.0.2" ··· 61479 sources."sort-on-6.1.0" 61480 sources."steno-4.0.2" 61481 sources."totalist-3.0.1" 61482 - sources."type-fest-4.34.1" 61483 ]; 61484 buildInputs = globalBuildInputs; 61485 meta = { ··· 61719 sources."fsevents-1.2.13" 61720 sources."function-bind-1.1.2" 61721 sources."get-caller-file-1.0.3" 61722 - sources."get-intrinsic-1.2.7" 61723 sources."get-proto-1.0.1" 61724 sources."get-value-2.0.6" 61725 sources."getpass-0.1.7" ··· 61844 sources."mkdirp-0.5.6" 61845 sources."morgan-1.10.0" 61846 sources."ms-2.0.0" 61847 - sources."nan-2.22.0" 61848 ( 61849 sources."nanomatch-1.2.13" 61850 // { ··· 62292 sources."@xmpp/websocket-0.13.3" 62293 // { 62294 dependencies = [ 62295 - sources."ws-8.18.0" 62296 ]; 62297 } 62298 ) ··· 62363 sources."call-bind-1.0.8" 62364 sources."call-bind-apply-helpers-1.0.2" 62365 sources."call-bound-1.0.3" 62366 - sources."caniuse-lite-1.0.30001699" 62367 sources."canvas-2.11.2" 62368 sources."chalk-4.1.2" 62369 sources."chardet-1.6.1" ··· 62428 sources."dotenv-8.6.0" 62429 sources."dunder-proto-1.0.1" 62430 sources."ee-first-1.1.1" 62431 - sources."electron-to-chromium-1.5.101" 62432 sources."emoji-regex-8.0.0" 62433 sources."encodeurl-2.0.0" 62434 ( ··· 62533 sources."gauge-3.0.2" 62534 sources."gensync-1.0.0-beta.2" 62535 sources."get-caller-file-2.0.5" 62536 - sources."get-intrinsic-1.2.7" 62537 sources."get-proto-1.0.1" 62538 sources."get-symbol-description-1.1.0" 62539 sources."github-from-package-0.0.0" ··· 62679 sources."mkdirp-classic-0.5.3" 62680 sources."ms-2.1.3" 62681 sources."multistream-4.1.0" 62682 - sources."nan-2.22.0" 62683 sources."napi-build-utils-1.0.2" 62684 sources."negotiator-0.6.3" 62685 sources."node-abi-3.74.0" ··· 63175 } 63176 ) 63177 sources."ms-2.1.3" 63178 - sources."nan-2.22.0" 63179 ( 63180 sources."nanomatch-1.2.13" 63181 // { ··· 63521 sources."fresh-0.5.2" 63522 sources."fsevents-1.2.13" 63523 sources."function-bind-1.1.2" 63524 - sources."get-intrinsic-1.2.7" 63525 sources."get-proto-1.0.1" 63526 sources."get-value-2.0.6" 63527 sources."getpass-0.1.7" ··· 63635 } 63636 ) 63637 sources."ms-2.0.0" 63638 - sources."nan-2.22.0" 63639 ( 63640 sources."nanomatch-1.2.13" 63641 // { ··· 64007 sources."@types/commander-2.12.5" 64008 sources."@types/diff-3.5.8" 64009 sources."@types/get-stdin-5.0.1" 64010 - sources."@types/node-22.13.4" 64011 sources."commander-2.20.3" 64012 sources."diff-3.5.0" 64013 sources."get-stdin-5.0.1" ··· 64193 sources."function-bind-1.1.2" 64194 sources."generate-function-2.3.1" 64195 sources."generate-object-property-1.2.0" 64196 - sources."get-intrinsic-1.2.7" 64197 sources."get-proto-1.0.1" 64198 sources."getpass-0.1.7" 64199 sources."glob-7.2.3" ··· 64533 sources."fill-range-7.1.1" 64534 sources."find-up-5.0.0" 64535 sources."flat-5.0.2" 64536 - sources."foreground-child-3.3.0" 64537 sources."get-caller-file-2.0.5" 64538 ( 64539 sources."glob-10.4.5" ··· 64670 sources."form-data-4.0.2" 64671 sources."formidable-2.1.2" 64672 sources."function-bind-1.1.2" 64673 - sources."get-intrinsic-1.2.7" 64674 sources."get-proto-1.0.1" 64675 sources."gopd-1.2.0" 64676 sources."graphlib-2.1.8" ··· 65035 sources."@pnpm/npm-conf-2.3.1" 65036 sources."@samverschueren/stream-to-observable-0.3.1" 65037 sources."@sindresorhus/merge-streams-2.3.0" 65038 - sources."@types/node-22.13.4" 65039 sources."@types/normalize-package-data-2.4.4" 65040 sources."ansi-align-3.0.1" 65041 sources."ansi-escapes-4.3.2" ··· 65054 sources."emoji-regex-10.4.0" 65055 sources."string-width-7.2.0" 65056 sources."strip-ansi-7.1.0" 65057 - sources."type-fest-4.34.1" 65058 sources."wrap-ansi-9.0.0" 65059 ]; 65060 } ··· 65112 sources."dot-prop-9.0.0" 65113 // { 65114 dependencies = [ 65115 - sources."type-fest-4.34.1" 65116 ]; 65117 } 65118 ) ··· 65414 sources."read-package-up-11.0.0" 65415 // { 65416 dependencies = [ 65417 - sources."type-fest-4.34.1" 65418 ]; 65419 } 65420 ) ··· 65423 // { 65424 dependencies = [ 65425 sources."parse-json-8.1.0" 65426 - sources."type-fest-4.34.1" 65427 sources."unicorn-magic-0.1.0" 65428 ]; 65429 } ··· 65454 sources."run-async-3.0.0" 65455 sources."run-parallel-1.2.0" 65456 ( 65457 - sources."rxjs-7.8.1" 65458 // { 65459 dependencies = [ 65460 sources."tslib-2.8.1" ··· 65570 sources."@inquirer/figures-1.0.10" 65571 sources."@inquirer/select-4.0.9" 65572 sources."@inquirer/type-3.0.4" 65573 - sources."@types/node-22.13.4" 65574 sources."ansi-escapes-4.3.2" 65575 sources."ansi-regex-5.0.1" 65576 sources."ansi-styles-4.3.0" ··· 65704 sources."@types/hast-3.0.4" 65705 sources."@types/json-schema-7.0.15" 65706 sources."@types/mdast-4.0.4" 65707 - sources."@types/node-22.13.4" 65708 sources."@types/unist-3.0.3" 65709 sources."@types/urijs-1.19.25" 65710 sources."@ungap/structured-clone-1.3.0" ··· 65787 sources."function.prototype.name-1.1.8" 65788 sources."functions-have-names-1.2.3" 65789 sources."get-caller-file-2.0.5" 65790 - sources."get-intrinsic-1.2.7" 65791 sources."get-proto-1.0.1" 65792 sources."get-stream-6.0.1" 65793 sources."get-symbol-description-1.1.0" ··· 65803 sources."has-symbols-1.1.0" 65804 sources."has-tostringtag-1.0.2" 65805 sources."hasown-2.0.2" 65806 - sources."hast-util-to-html-9.0.4" 65807 sources."hast-util-whitespace-3.0.0" 65808 sources."html-void-elements-3.0.0" 65809 sources."http2-client-1.3.5" ··· 65931 sources."picomatch-2.3.1" 65932 sources."pony-cause-1.1.1" 65933 sources."possible-typed-array-names-1.1.0" 65934 - sources."property-information-6.5.0" 65935 sources."punycode.js-2.3.1" 65936 sources."queue-microtask-1.2.3" 65937 sources."readdirp-4.1.2" ··· 66165 sources."@parcel/utils-2.13.3" 66166 sources."@parcel/watcher-2.5.1" 66167 sources."@parcel/workers-2.13.3" 66168 - sources."@swc/core-1.10.16" 66169 sources."@swc/counter-0.1.3" 66170 sources."@swc/helpers-0.5.15" 66171 - sources."@swc/types-0.1.17" 66172 sources."@trysound/sax-0.2.0" 66173 sources."abab-2.0.6" 66174 sources."acorn-8.14.0" ··· 66203 sources."buffer-from-1.1.2" 66204 sources."callsites-3.1.0" 66205 sources."caniuse-api-3.0.0" 66206 - sources."caniuse-lite-1.0.30001699" 66207 sources."caseless-0.12.0" 66208 sources."chalk-4.1.2" 66209 sources."chrome-trace-event-1.0.4" ··· 66273 sources."dotenv-expand-11.0.7" 66274 sources."eastasianwidth-0.2.0" 66275 sources."ecc-jsbn-0.1.2" 66276 - sources."electron-to-chromium-1.5.101" 66277 sources."emoji-regex-9.2.2" 66278 sources."entities-3.0.1" 66279 sources."env-paths-2.2.1" ··· 66289 sources."fast-json-stable-stringify-2.1.0" 66290 sources."fast-levenshtein-2.0.6" 66291 sources."fill-range-7.1.1" 66292 - sources."foreground-child-3.3.0" 66293 sources."forever-agent-0.6.1" 66294 sources."form-data-2.3.3" 66295 sources."fs.realpath-1.0.0" ··· 66399 sources."picocolors-1.1.1" 66400 sources."picomatch-2.3.1" 66401 sources."pn-1.1.0" 66402 - sources."postcss-8.5.2" 66403 sources."postcss-calc-10.1.1" 66404 sources."postcss-colormin-7.0.2" 66405 sources."postcss-convert-values-7.0.4" ··· 66740 sources."gelf-stream-1.1.1" 66741 sources."gelfling-0.3.1" 66742 sources."get-caller-file-2.0.5" 66743 - sources."get-intrinsic-1.2.7" 66744 sources."get-proto-1.0.1" 66745 sources."getpass-0.1.7" 66746 sources."glob-7.2.3" ··· 66803 sources."ms-2.0.0" 66804 sources."msgpack5-3.6.1" 66805 sources."mv-2.1.1" 66806 - sources."nan-2.22.0" 66807 sources."ncp-2.0.0" 66808 sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" 66809 sources."neo-async-2.6.2" ··· 67087 sources."function-bind-1.1.2" 67088 sources."functions-have-names-1.2.3" 67089 sources."get-browser-rtc-1.1.0" 67090 - sources."get-intrinsic-1.2.7" 67091 sources."get-proto-1.0.1" 67092 sources."get-stdin-4.0.1" 67093 sources."glob-7.2.3" ··· 67513 sources."fs.realpath-1.0.0" 67514 sources."function-bind-1.1.2" 67515 sources."get-browser-rtc-1.1.0" 67516 - sources."get-intrinsic-1.2.7" 67517 sources."get-proto-1.0.1" 67518 sources."getpass-0.1.7" 67519 sources."glob-7.2.3" ··· 67855 postcss = nodeEnv.buildNodePackage { 67856 name = "postcss"; 67857 packageName = "postcss"; 67858 - version = "8.5.2"; 67859 src = fetchurl { 67860 - url = "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz"; 67861 - sha512 = "MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA=="; 67862 }; 67863 dependencies = [ 67864 sources."nanoid-3.3.8" ··· 67899 sources."color-name-1.1.4" 67900 sources."dependency-graph-0.11.0" 67901 sources."emoji-regex-8.0.0" 67902 - sources."esbuild-0.23.1" 67903 sources."escalade-3.2.0" 67904 sources."fast-glob-3.3.3" 67905 sources."fastq-1.19.0" ··· 67928 sources."picocolors-1.1.1" 67929 sources."picomatch-2.3.1" 67930 sources."pify-2.3.0" 67931 - sources."postcss-8.5.2" 67932 sources."postcss-load-config-5.1.0" 67933 sources."postcss-reporter-7.1.0" 67934 sources."pretty-hrtime-1.0.3" ··· 67945 sources."strip-ansi-6.0.1" 67946 sources."thenby-1.3.4" 67947 sources."to-regex-range-5.0.1" 67948 - sources."tsx-4.19.2" 67949 sources."unicorn-magic-0.3.0" 67950 sources."universalify-2.0.1" 67951 sources."wrap-ansi-7.0.0" ··· 68021 prettier = nodeEnv.buildNodePackage { 68022 name = "prettier"; 68023 packageName = "prettier"; 68024 - version = "3.5.1"; 68025 src = fetchurl { 68026 - url = "https://registry.npmjs.org/prettier/-/prettier-3.5.1.tgz"; 68027 - sha512 = "hPpFQvHwL3Qv5AdRvBFMhnKo4tYxp0ReXiPn2bxkiohEX6mBeBwEpBSQTkD458RaaDKQMYSp4hX4UtfUTA5wDw=="; 68028 }; 68029 buildInputs = globalBuildInputs; 68030 meta = { ··· 68039 prettier-plugin-toml = nodeEnv.buildNodePackage { 68040 name = "prettier-plugin-toml"; 68041 packageName = "prettier-plugin-toml"; 68042 - version = "2.0.1"; 68043 src = fetchurl { 68044 - url = "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.1.tgz"; 68045 - sha512 = "99z1YOkViECHtXQjGIigd3talI/ybUI1zB3yniAwUrlWBXupNXThB1hM6bwSMUEj2/+tomTlMtT98F5t4s8IWA=="; 68046 }; 68047 dependencies = [ 68048 sources."@taplo/core-0.1.1" 68049 sources."@taplo/lib-0.4.0-alpha.2" 68050 - sources."prettier-3.5.1" 68051 ]; 68052 buildInputs = globalBuildInputs; 68053 meta = { 68054 description = "An opinionated `toml` formatter plugin for Prettier"; 68055 - homepage = "https://github.com/un-ts/prettier/tree/master/packages/prettier"; 68056 license = "MIT"; 68057 }; 68058 production = true; ··· 68062 "@prisma/language-server" = nodeEnv.buildNodePackage { 68063 name = "_at_prisma_slash_language-server"; 68064 packageName = "@prisma/language-server"; 68065 - version = "6.3.1"; 68066 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=="; 68069 }; 68070 dependencies = [ 68071 - sources."@prisma/prisma-schema-wasm-6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0" 68072 - sources."@prisma/schema-files-loader-6.3.1" 68073 sources."@types/js-levenshtein-1.1.3" 68074 sources."fs-extra-11.1.1" 68075 sources."graceful-fs-4.2.11" ··· 68121 ) 68122 sources."eastasianwidth-0.2.0" 68123 sources."emoji-regex-9.2.2" 68124 - sources."foreground-child-3.3.0" 68125 sources."fs.realpath-1.0.0" 68126 sources."gaze-1.1.3" 68127 ( ··· 68337 sources."function-bind-1.1.2" 68338 sources."gaze-1.1.3" 68339 sources."get-assigned-identifiers-1.2.0" 68340 - sources."get-intrinsic-1.2.7" 68341 sources."get-proto-1.0.1" 68342 ( 68343 sources."glob-7.2.3" ··· 68667 sources."cross-spawn-7.0.6" 68668 sources."eastasianwidth-0.2.0" 68669 sources."emoji-regex-9.2.2" 68670 - sources."foreground-child-3.3.0" 68671 sources."glob-11.0.1" 68672 sources."is-fullwidth-code-point-3.0.0" 68673 sources."isexe-2.0.0" 68674 - sources."jackspeak-4.0.3" 68675 sources."lru-cache-11.0.2" 68676 sources."minimatch-10.0.1" 68677 sources."minipass-7.1.2" ··· 68727 rollup = nodeEnv.buildNodePackage { 68728 name = "rollup"; 68729 packageName = "rollup"; 68730 - version = "4.34.7"; 68731 src = fetchurl { 68732 - url = "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz"; 68733 - sha512 = "8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ=="; 68734 }; 68735 dependencies = [ 68736 sources."@types/estree-1.0.6" ··· 68745 bypassCache = true; 68746 reconstructLock = true; 68747 }; 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 sass = nodeEnv.buildNodePackage { 69205 name = "sass"; 69206 packageName = "sass"; 69207 - version = "1.85.0"; 69208 src = fetchurl { 69209 - url = "https://registry.npmjs.org/sass/-/sass-1.85.0.tgz"; 69210 - sha512 = "3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww=="; 69211 }; 69212 dependencies = [ 69213 sources."chokidar-4.0.3" ··· 69463 sources."minimist-1.2.8" 69464 sources."mkdirp-0.5.6" 69465 sources."mv-2.1.1" 69466 - sources."nan-2.22.0" 69467 sources."ncp-2.0.0" 69468 sources."negotiator-0.5.3" 69469 sources."node-uuid-1.4.8" ··· 69589 dependencies = [ 69590 sources."@socket.io/component-emitter-3.1.2" 69591 sources."@types/cors-2.8.17" 69592 - sources."@types/node-22.13.4" 69593 sources."accepts-1.3.8" 69594 sources."base64id-2.0.0" 69595 sources."bufferutil-4.0.9" ··· 69826 sources."picomatch-4.0.2" 69827 sources."readdirp-4.1.2" 69828 sources."sade-1.8.1" 69829 - sources."svelte-5.20.1" 69830 sources."typescript-5.7.3" 69831 sources."zimmerframe-1.1.2" 69832 ]; ··· 69958 sources."@types/cors-2.8.17" 69959 sources."@types/http-cache-semantics-4.0.4" 69960 sources."@types/keyv-3.1.4" 69961 - sources."@types/node-22.13.4" 69962 sources."@types/responselike-1.0.3" 69963 sources."abort-controller-3.0.0" 69964 sources."abstract-logging-2.0.1" ··· 70069 sources."forwarded-0.2.0" 70070 sources."fresh-0.5.2" 70071 sources."function-bind-1.1.2" 70072 - sources."get-intrinsic-1.2.7" 70073 sources."get-proto-1.0.1" 70074 sources."get-stream-5.2.0" 70075 sources."gopd-1.2.0" ··· 70477 sources."fs.realpath-1.0.0" 70478 sources."function-bind-1.1.2" 70479 sources."gauge-2.7.4" 70480 - sources."get-intrinsic-1.2.7" 70481 sources."get-proto-1.0.1" 70482 sources."get-stream-4.1.0" 70483 sources."getpass-0.1.7" ··· 70573 sources."mkdirp-0.5.6" 70574 sources."ms-2.0.0" 70575 sources."mute-stream-0.0.8" 70576 - sources."nan-2.22.0" 70577 ( 70578 sources."needle-2.9.1" 70579 // { ··· 71042 sources."@types/cacheable-request-6.0.3" 71043 sources."@types/http-cache-semantics-4.0.4" 71044 sources."@types/keyv-3.1.4" 71045 - sources."@types/node-22.13.4" 71046 sources."@types/responselike-1.0.3" 71047 sources."abbrev-1.1.1" 71048 sources."abstract-logging-2.0.1" ··· 71597 sources."@types/cacheable-request-6.0.3" 71598 sources."@types/http-cache-semantics-4.0.4" 71599 sources."@types/keyv-3.1.4" 71600 - sources."@types/node-22.13.4" 71601 sources."@types/responselike-1.0.3" 71602 sources."abbrev-1.1.1" 71603 sources."abstract-logging-2.0.1" ··· 72614 sources."@jridgewell/resolve-uri-3.1.2" 72615 sources."@jridgewell/sourcemap-codec-1.5.0" 72616 sources."@jridgewell/trace-mapping-0.3.9" 72617 - sources."@swc/core-1.10.16" 72618 sources."@swc/counter-0.1.3" 72619 sources."@swc/helpers-0.5.15" 72620 - sources."@swc/types-0.1.17" 72621 - sources."@swc/wasm-1.10.16" 72622 sources."@tsconfig/node10-1.0.11" 72623 sources."@tsconfig/node12-1.0.11" 72624 sources."@tsconfig/node14-1.0.3" 72625 sources."@tsconfig/node16-1.0.4" 72626 - sources."@types/node-22.13.4" 72627 sources."acorn-8.14.0" 72628 sources."acorn-walk-8.3.4" 72629 sources."arg-4.1.3" ··· 72705 sources."@types/debug-4.1.12" 72706 sources."@types/is-empty-1.2.3" 72707 sources."@types/ms-2.1.0" 72708 - sources."@types/node-22.13.4" 72709 sources."@types/supports-color-8.1.3" 72710 sources."@types/unist-3.0.3" 72711 sources."abbrev-2.0.0" ··· 72726 sources."error-ex-1.3.2" 72727 sources."extend-3.0.2" 72728 sources."find-up-6.3.0" 72729 - sources."foreground-child-3.3.0" 72730 sources."glob-10.4.5" 72731 sources."hosted-git-info-7.0.2" 72732 sources."ignore-6.0.2" ··· 72857 vega-cli = nodeEnv.buildNodePackage { 72858 name = "vega-cli"; 72859 packageName = "vega-cli"; 72860 - version = "5.31.0"; 72861 src = fetchurl { 72862 - url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.31.0.tgz"; 72863 - sha512 = "iAKvyBj2Z6OGJudMugQ0HOw8JCRvapUm4BwMyrDWjV6RyTFczWgIJEhJdvbyn+UabTT4rrzHgDQcxmgzBcepxw=="; 72864 }; 72865 dependencies = [ 72866 sources."@mapbox/node-pre-gyp-1.0.11" ··· 72950 ) 72951 sources."mkdirp-1.0.4" 72952 sources."ms-2.1.3" 72953 - sources."nan-2.22.0" 72954 sources."node-fetch-2.7.0" 72955 sources."nopt-5.0.0" 72956 sources."npmlog-5.0.1" ··· 72983 ) 72984 sources."tr46-0.0.3" 72985 sources."util-deprecate-1.0.2" 72986 - sources."vega-5.31.0" 72987 sources."vega-canvas-1.2.7" 72988 sources."vega-crossfilter-4.1.3" 72989 sources."vega-dataflow-5.7.7" 72990 sources."vega-encode-4.10.2" 72991 sources."vega-event-selector-3.0.1" 72992 - sources."vega-expression-5.1.2" 72993 sources."vega-force-4.2.2" 72994 sources."vega-format-1.1.3" 72995 - sources."vega-functions-5.16.0" 72996 sources."vega-geo-4.4.3" 72997 sources."vega-hierarchy-4.1.3" 72998 sources."vega-label-1.3.1" 72999 sources."vega-loader-4.5.3" 73000 - sources."vega-parser-6.4.1" 73001 sources."vega-projection-1.6.2" 73002 sources."vega-regression-1.3.1" 73003 sources."vega-runtime-6.2.1" 73004 sources."vega-scale-7.4.2" 73005 sources."vega-scenegraph-4.13.1" 73006 - sources."vega-selections-5.5.0" 73007 sources."vega-statistics-1.9.0" 73008 sources."vega-time-2.1.3" 73009 sources."vega-transforms-4.12.1" 73010 - sources."vega-typings-1.4.0" 73011 sources."vega-util-1.17.3" 73012 - sources."vega-view-5.14.0" 73013 sources."vega-view-transforms-4.6.1" 73014 sources."vega-voronoi-4.2.4" 73015 sources."vega-wordcloud-4.1.6" ··· 73095 ) 73096 sources."tr46-0.0.3" 73097 sources."tslib-2.8.1" 73098 - sources."vega-5.31.0" 73099 sources."vega-canvas-1.2.7" 73100 sources."vega-crossfilter-4.1.3" 73101 sources."vega-dataflow-5.7.7" ··· 73104 sources."vega-expression-5.1.2" 73105 sources."vega-force-4.2.2" 73106 sources."vega-format-1.1.3" 73107 - sources."vega-functions-5.16.0" 73108 sources."vega-geo-4.4.3" 73109 sources."vega-hierarchy-4.1.3" 73110 sources."vega-label-1.3.1" 73111 sources."vega-loader-4.5.3" 73112 - sources."vega-parser-6.4.1" 73113 sources."vega-projection-1.6.2" 73114 sources."vega-regression-1.3.1" 73115 sources."vega-runtime-6.2.1" 73116 sources."vega-scale-7.4.2" 73117 sources."vega-scenegraph-4.13.1" 73118 - sources."vega-selections-5.5.0" 73119 sources."vega-statistics-1.9.0" 73120 sources."vega-time-2.1.3" 73121 sources."vega-transforms-4.12.1" 73122 - sources."vega-typings-1.4.0" 73123 sources."vega-util-1.17.3" 73124 - sources."vega-view-5.14.0" 73125 sources."vega-view-transforms-4.6.1" 73126 sources."vega-voronoi-4.2.4" 73127 sources."vega-wordcloud-4.1.6" ··· 73145 vercel = nodeEnv.buildNodePackage { 73146 name = "vercel"; 73147 packageName = "vercel"; 73148 - version = "41.1.4"; 73149 src = fetchurl { 73150 - url = "https://registry.npmjs.org/vercel/-/vercel-41.1.4.tgz"; 73151 - sha512 = "arUsQbSQPGxmxoBr1w5fUrghGnWK85Dkj805R8U4syJHYtsKQOUcyp7hB+3Y3z61QPHwUDGVoP2gt15eKEe3Sg=="; 73152 }; 73153 dependencies = [ 73154 sources."@cspotcode/source-map-support-0.8.1" ··· 73188 sources."@nodelib/fs.walk-1.2.8" 73189 sources."@rollup/pluginutils-5.1.4" 73190 sources."@sinclair/typebox-0.25.24" 73191 - sources."@swc/core-1.10.16" 73192 sources."@swc/counter-0.1.3" 73193 sources."@swc/helpers-0.5.15" 73194 - sources."@swc/types-0.1.17" 73195 - sources."@swc/wasm-1.10.16" 73196 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 - ) 73205 sources."@tsconfig/node10-1.0.11" 73206 sources."@tsconfig/node12-1.0.11" 73207 sources."@tsconfig/node14-1.0.3" ··· 73209 sources."@types/estree-1.0.6" 73210 sources."@types/json-schema-7.0.15" 73211 sources."@types/node-16.18.11" 73212 - sources."@vercel/build-utils-10.1.0" 73213 sources."@vercel/error-utils-2.0.3" 73214 - sources."@vercel/fun-1.1.4" 73215 sources."@vercel/gatsby-plugin-vercel-analytics-1.0.11" 73216 - sources."@vercel/gatsby-plugin-vercel-builder-2.0.73" 73217 sources."@vercel/go-3.2.1" 73218 - sources."@vercel/hydrogen-1.1.0" 73219 - sources."@vercel/next-4.6.2" 73220 sources."@vercel/nft-0.27.10" 73221 ( 73222 - sources."@vercel/node-5.1.7" 73223 // { 73224 dependencies = [ 73225 sources."async-listen-3.0.0" ··· 73230 ) 73231 sources."@vercel/python-4.7.1" 73232 ( 73233 - sources."@vercel/redwood-2.2.0" 73234 // { 73235 dependencies = [ 73236 sources."semver-6.3.1" ··· 73238 } 73239 ) 73240 ( 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" 73251 // { 73252 dependencies = [ 73253 - sources."ajv-6.12.6" 73254 - sources."json-schema-traverse-0.4.1" 73255 sources."path-to-regexp-6.1.0" 73256 sources."path-to-regexp-updated-6.3.0" 73257 ]; 73258 } 73259 ) 73260 sources."@vercel/ruby-2.2.0" 73261 - sources."@vercel/static-build-2.6.6" 73262 sources."@vercel/static-config-3.0.0" 73263 sources."abbrev-3.0.0" 73264 sources."acorn-8.14.0" ··· 73279 sources."buffer-crc32-0.2.13" 73280 sources."bytes-3.1.0" 73281 sources."chokidar-4.0.0" 73282 - sources."chownr-1.1.4" 73283 sources."cjs-module-lexer-1.2.3" 73284 sources."code-block-writer-10.1.1" 73285 sources."color-convert-2.0.1" ··· 73348 sources."events-intercept-2.0.0" 73349 sources."fast-deep-equal-3.1.3" 73350 sources."fast-glob-3.3.3" 73351 - sources."fast-json-stable-stringify-2.1.0" 73352 sources."fastq-1.19.0" 73353 sources."fd-slicer-1.1.0" 73354 sources."file-uri-to-path-1.0.0" 73355 sources."fill-range-7.1.1" 73356 - sources."foreground-child-3.3.0" 73357 sources."fs-extra-11.1.0" 73358 - sources."fs-minipass-1.2.7" 73359 sources."fs.realpath-1.0.0" 73360 sources."generic-pool-3.4.2" 73361 sources."glob-7.2.3" ··· 73376 sources."json-schema-to-ts-1.6.4" 73377 sources."json-schema-traverse-1.0.0" 73378 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 - ) 73387 sources."make-error-1.3.6" 73388 sources."merge2-1.4.1" 73389 sources."micro-9.3.5-canary.3" ··· 73396 } 73397 ) 73398 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" 73403 sources."mri-1.2.0" 73404 sources."ms-2.1.1" 73405 sources."node-fetch-2.6.7" ··· 73426 // { 73427 dependencies = [ 73428 sources."lru-cache-10.4.3" 73429 - sources."minipass-7.1.2" 73430 ]; 73431 } 73432 ) ··· 73455 ]; 73456 } 73457 ) 73458 - sources."rollup-4.34.7" 73459 sources."run-parallel-1.2.0" 73460 - sources."safe-buffer-5.2.1" 73461 sources."safer-buffer-2.1.2" 73462 sources."semver-7.5.4" 73463 sources."setprototypeof-1.1.1" ··· 73487 } 73488 ) 73489 sources."strip-ansi-cjs-6.0.1" 73490 - sources."tar-4.4.18" 73491 sources."time-span-4.0.0" 73492 sources."tinyexec-0.3.2" 73493 sources."to-regex-range-5.0.1" ··· 73525 sources."wrappy-1.0.2" 73526 sources."xdg-app-paths-5.1.0" 73527 sources."xdg-portable-7.3.0" 73528 - sources."yallist-3.1.1" 73529 sources."yauzl-2.10.0" 73530 sources."yauzl-clone-1.0.4" 73531 sources."yauzl-promise-2.1.3" ··· 73768 sources."@types/eslint-scope-3.7.7" 73769 sources."@types/estree-1.0.6" 73770 sources."@types/json-schema-7.0.15" 73771 - sources."@types/node-22.13.4" 73772 sources."@webassemblyjs/ast-1.14.1" 73773 sources."@webassemblyjs/floating-point-hex-parser-1.13.2" 73774 sources."@webassemblyjs/helper-api-error-1.13.2" ··· 73792 sources."ajv-keywords-5.1.0" 73793 sources."browserslist-4.24.4" 73794 sources."buffer-from-1.1.2" 73795 - sources."caniuse-lite-1.0.30001699" 73796 sources."chrome-trace-event-1.0.4" 73797 sources."commander-2.20.3" 73798 - sources."electron-to-chromium-1.5.101" 73799 sources."enhanced-resolve-5.18.1" 73800 sources."es-module-lexer-1.6.0" 73801 sources."escalade-3.2.0" ··· 74183 sources."run-parallel-limit-1.1.0" 74184 sources."run-series-1.1.9" 74185 sources."rusha-0.8.14" 74186 - sources."rxjs-7.8.1" 74187 sources."safe-buffer-5.1.2" 74188 sources."safer-buffer-2.1.2" 74189 sources."sax-1.1.4" ··· 74274 sources."winreg-1.2.5" 74275 sources."wrap-ansi-6.2.0" 74276 sources."wrappy-1.0.2" 74277 - sources."ws-8.18.0" 74278 sources."xml2js-0.4.23" 74279 sources."xmlbuilder-11.0.1" 74280 sources."y18n-5.0.8"
··· 39 sha512 = "30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="; 40 }; 41 }; 42 + "@angular-devkit/architect-0.1901.8" = { 43 name = "_at_angular-devkit_slash_architect"; 44 packageName = "@angular-devkit/architect"; 45 + version = "0.1901.8"; 46 src = fetchurl { 47 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1901.8.tgz"; 48 + sha512 = "DzvlL1Zg+zOnVmMN3CjE5KzjZAltRZwOwwcso72iWenBPvl/trKzPDlA6ySmpRonm+AR9i9JrdLEUlwczW6/bQ=="; 49 }; 50 }; 51 + "@angular-devkit/core-19.1.8" = { 52 name = "_at_angular-devkit_slash_core"; 53 packageName = "@angular-devkit/core"; 54 + version = "19.1.8"; 55 src = fetchurl { 56 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-19.1.8.tgz"; 57 + sha512 = "j1zHKvOsGwu5YwAZGuzi835R9vcW7PkfxmSRIJeVl+vawgk31K3zFb4UPH8AY/NPWYqXIAnwpka3HC1+JrWLWA=="; 58 }; 59 }; 60 + "@angular-devkit/schematics-19.1.8" = { 61 name = "_at_angular-devkit_slash_schematics"; 62 packageName = "@angular-devkit/schematics"; 63 + version = "19.1.8"; 64 src = fetchurl { 65 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.1.8.tgz"; 66 + sha512 = "2JGUMD3zjfY8G4RYpypm2/1YEO+O4DtFycUvptIpsBYyULgnEbJ3tlp2oRiXI2vp9tC8IyWqa/swlA8DTI6ZYQ=="; 67 }; 68 }; 69 "@apidevtools/json-schema-ref-parser-11.7.2" = { ··· 300 sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw=="; 301 }; 302 }; 303 + "@aws-sdk/client-s3-3.750.0" = { 304 name = "_at_aws-sdk_slash_client-s3"; 305 packageName = "@aws-sdk/client-s3"; 306 + version = "3.750.0"; 307 src = fetchurl { 308 + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.750.0.tgz"; 309 + sha512 = "S9G9noCeBxchoMVkHYrRi1A1xW/VOTP2W7X34lP+Y7Wpl32yMA7IJo0fAGAuTc0q1Nu6/pXDm+oDG7rhTCA1tg=="; 310 }; 311 }; 312 "@aws-sdk/client-sso-3.296.0" = { ··· 318 sha512 = "0P0x++jhlmhzViFPOHvTb7+Z6tSV9aONwB8CchIseg2enSPBbGfml7y5gQu1jdOTDS6pBUmrPZ+9sOI4/GvAfA=="; 319 }; 320 }; 321 + "@aws-sdk/client-sso-3.750.0" = { 322 name = "_at_aws-sdk_slash_client-sso"; 323 packageName = "@aws-sdk/client-sso"; 324 + version = "3.750.0"; 325 src = fetchurl { 326 + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.750.0.tgz"; 327 + sha512 = "y0Rx6pTQXw0E61CaptpZF65qNggjqOgymq/RYZU5vWba5DGQ+iqGt8Yq8s+jfBoBBNXshxq8l8Dl5Uq/JTY1wg=="; 328 }; 329 }; 330 "@aws-sdk/client-sso-oidc-3.296.0" = { ··· 345 sha512 = "ew7hSVNpitnLCIRVhnI2L1HZB/yYpRQFReR62fOqCUnpKqm6WGga37bnvgYbY5y0Rv23C0VHARovwunVg1gabA=="; 346 }; 347 }; 348 + "@aws-sdk/client-sts-3.750.0" = { 349 name = "_at_aws-sdk_slash_client-sts"; 350 packageName = "@aws-sdk/client-sts"; 351 + version = "3.750.0"; 352 src = fetchurl { 353 + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.750.0.tgz"; 354 + sha512 = "MdzI7nTP4Th+Xam+u0HPZAnS0172Xfi96RLx99Dg/UR7tgIvj2bbhIeGQIDihwB7TdFh1WxOaNHJjm9asgJepg=="; 355 }; 356 }; 357 "@aws-sdk/config-resolver-3.296.0" = { ··· 363 sha512 = "Ecdp7fmIitHo49NRCyIEHb9xlI43J7qkvhcwaKGGqN5jvoh0YhR2vNr195wWG8Ip/9PwsD4QV4g/XT5EY7XkMA=="; 364 }; 365 }; 366 + "@aws-sdk/core-3.750.0" = { 367 name = "_at_aws-sdk_slash_core"; 368 packageName = "@aws-sdk/core"; 369 + version = "3.750.0"; 370 src = fetchurl { 371 + url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.750.0.tgz"; 372 + sha512 = "bZ5K7N5L4+Pa2epbVpUQqd1XLG2uU8BGs/Sd+2nbgTf+lNQJyIxAg/Qsrjz9MzmY8zzQIeRQEkNmR6yVAfCmmQ=="; 373 }; 374 }; 375 "@aws-sdk/credential-provider-env-3.296.0" = { ··· 381 sha512 = "eDWSU3p04gytkkVXnYn05YzrP5SEaj/DQiafd4y+iBl8IFfF3zM6982rs6qFhvpwrHeSbLqHNfKR1HDWVwfG5g=="; 382 }; 383 }; 384 + "@aws-sdk/credential-provider-env-3.750.0" = { 385 name = "_at_aws-sdk_slash_credential-provider-env"; 386 packageName = "@aws-sdk/credential-provider-env"; 387 + version = "3.750.0"; 388 src = fetchurl { 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 }; 392 }; 393 + "@aws-sdk/credential-provider-http-3.750.0" = { 394 name = "_at_aws-sdk_slash_credential-provider-http"; 395 packageName = "@aws-sdk/credential-provider-http"; 396 + version = "3.750.0"; 397 src = fetchurl { 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 }; 401 }; 402 "@aws-sdk/credential-provider-imds-3.296.0" = { ··· 417 sha512 = "U0ecY0GX2jeDAgmTzaVO9YgjlLUfb8wgZSu1OwbOxCJscL/5eFkhcF0/xJQXDbRgcj4H4dlquqeSWsBVl/PgvQ=="; 418 }; 419 }; 420 + "@aws-sdk/credential-provider-ini-3.750.0" = { 421 name = "_at_aws-sdk_slash_credential-provider-ini"; 422 packageName = "@aws-sdk/credential-provider-ini"; 423 + version = "3.750.0"; 424 src = fetchurl { 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 }; 428 }; 429 "@aws-sdk/credential-provider-node-3.296.0" = { ··· 435 sha512 = "oCkmh2b1DQhHkhd/qA9jiSIOkrBBK7cMg1/PVIgLw8e15NkzUHBObLJ/ZQw6ZzCxZzjlMYaFv9oCB8hyO8txmA=="; 436 }; 437 }; 438 + "@aws-sdk/credential-provider-node-3.750.0" = { 439 name = "_at_aws-sdk_slash_credential-provider-node"; 440 packageName = "@aws-sdk/credential-provider-node"; 441 + version = "3.750.0"; 442 src = fetchurl { 443 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.750.0.tgz"; 444 + sha512 = "THWHHAceLwsOiowPEmKyhWVDlEUxH07GHSw5AQFDvNQtGKOQl0HSIFO1mKObT2Q2Vqzji9Bq8H58SO5BFtNPRw=="; 445 }; 446 }; 447 "@aws-sdk/credential-provider-process-3.296.0" = { ··· 453 sha512 = "AY7sTX2dGi8ripuCpcJLYHOZB2wJ6NnseyK/kK5TfJn/pgboKwuGtz0hkJCVprNWomKa6IpHksm7vLQ4O2E+UA=="; 454 }; 455 }; 456 + "@aws-sdk/credential-provider-process-3.750.0" = { 457 name = "_at_aws-sdk_slash_credential-provider-process"; 458 packageName = "@aws-sdk/credential-provider-process"; 459 + version = "3.750.0"; 460 src = fetchurl { 461 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.750.0.tgz"; 462 + sha512 = "Q78SCH1n0m7tpu36sJwfrUSxI8l611OyysjQeMiIOliVfZICEoHcLHLcLkiR+tnIpZ3rk7d2EQ6R1jwlXnalMQ=="; 463 }; 464 }; 465 "@aws-sdk/credential-provider-sso-3.296.0" = { ··· 471 sha512 = "zPFHDX/niXfcQrKQhmBv1XPYEe4b7im4vRKrzjYXgDRpG2M3LP0KaWIwN6Ap+GRYBNBthen86vhTlmKGzyU5YA=="; 472 }; 473 }; 474 + "@aws-sdk/credential-provider-sso-3.750.0" = { 475 name = "_at_aws-sdk_slash_credential-provider-sso"; 476 packageName = "@aws-sdk/credential-provider-sso"; 477 + version = "3.750.0"; 478 src = fetchurl { 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 }; 482 }; 483 "@aws-sdk/credential-provider-web-identity-3.296.0" = { ··· 489 sha512 = "Rl6Ohoekxe+pccA55XXQDW5wApbg3rGWr6FkmPRcg7Ld6Vfe+HL8OtfsFf83/0eoFerevbif+00BdknXWT05LA=="; 490 }; 491 }; 492 + "@aws-sdk/credential-provider-web-identity-3.750.0" = { 493 name = "_at_aws-sdk_slash_credential-provider-web-identity"; 494 packageName = "@aws-sdk/credential-provider-web-identity"; 495 + version = "3.750.0"; 496 src = fetchurl { 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 }; 500 }; 501 + "@aws-sdk/crt-loader-3.750.0" = { 502 name = "_at_aws-sdk_slash_crt-loader"; 503 packageName = "@aws-sdk/crt-loader"; 504 + version = "3.750.0"; 505 src = fetchurl { 506 + url = "https://registry.npmjs.org/@aws-sdk/crt-loader/-/crt-loader-3.750.0.tgz"; 507 + sha512 = "L92XdDaDKQi1ldocQnBjUpu5o47GMdGaZ2TTUDOnOZyIggb15lNsfknJaLz3Q74rx09qkY1OYe8zsTKBB7lMmQ=="; 508 }; 509 }; 510 "@aws-sdk/eventstream-codec-3.296.0" = { ··· 606 sha512 = "SCIt10cr5dud7hvwveU4wkLjvkGssJ3GrcbHCds2NwI+JHmpcaaNYLAqi305JAuT29T36U5ssTFDSmrrEOcfag=="; 607 }; 608 }; 609 + "@aws-sdk/lib-storage-3.750.0" = { 610 name = "_at_aws-sdk_slash_lib-storage"; 611 packageName = "@aws-sdk/lib-storage"; 612 + version = "3.750.0"; 613 src = fetchurl { 614 + url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.750.0.tgz"; 615 + sha512 = "2IHbhUzlKtiAZVW7S5jkJfVDj5pJC9TldHGJLYRAR9GReG9HhK6mI7kLnYE9jf3GchWfe/Bn3wqSwh3BIf0OZQ=="; 616 }; 617 }; 618 "@aws-sdk/md5-js-3.296.0" = { ··· 687 sha512 = "F5wVMhLIgA86PKsK/Az7LGIiNVDdZjoSn0+boe6fYW/AIAmgJhPf//500Md0GsKsLOCcPcxiQC43a0hVT2zbew=="; 688 }; 689 }; 690 + "@aws-sdk/middleware-flexible-checksums-3.750.0" = { 691 name = "_at_aws-sdk_slash_middleware-flexible-checksums"; 692 packageName = "@aws-sdk/middleware-flexible-checksums"; 693 + version = "3.750.0"; 694 src = fetchurl { 695 + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.750.0.tgz"; 696 + sha512 = "ach0d2buDnX2TUausUbiXXFWFo3IegLnCrA+Rw8I9AYVpLN9lTaRwAYJwYC6zEuW9Golff8MwkYsp/OaC5tKMw=="; 697 }; 698 }; 699 "@aws-sdk/middleware-host-header-3.296.0" = { ··· 786 sha512 = "zH4uZKEqumo01wn+dTwrYnvOui9GjDiuBHdECnSjnA0Mkxo/tfMPYzYD7mE8kUlBz7HfQcXeXlyaApj9fPkxvg=="; 787 }; 788 }; 789 + "@aws-sdk/middleware-sdk-s3-3.750.0" = { 790 name = "_at_aws-sdk_slash_middleware-sdk-s3"; 791 packageName = "@aws-sdk/middleware-sdk-s3"; 792 + version = "3.750.0"; 793 src = fetchurl { 794 + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.750.0.tgz"; 795 + sha512 = "3H6Z46cmAQCHQ0z8mm7/cftY5ifiLfCjbObrbyyp2fhQs9zk6gCKzIX8Zjhw0RMd93FZi3ebRuKJWmMglf4Itw=="; 796 }; 797 }; 798 "@aws-sdk/middleware-sdk-sts-3.296.0" = { ··· 858 sha512 = "L7jacxSt6gxX1gD3tQtfwHqBDk5rT2wWD3rxBa6rs7f81b9ObgY/sPT2IgRT7JNCVzvKLYFxJaTklDj65mY1SQ=="; 859 }; 860 }; 861 + "@aws-sdk/middleware-user-agent-3.750.0" = { 862 name = "_at_aws-sdk_slash_middleware-user-agent"; 863 packageName = "@aws-sdk/middleware-user-agent"; 864 + version = "3.750.0"; 865 src = fetchurl { 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 }; 869 }; 870 + "@aws-sdk/nested-clients-3.750.0" = { 871 name = "_at_aws-sdk_slash_nested-clients"; 872 packageName = "@aws-sdk/nested-clients"; 873 + version = "3.750.0"; 874 src = fetchurl { 875 + url = "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.750.0.tgz"; 876 + sha512 = "OH68BRF0rt9nDloq4zsfeHI0G21lj11a66qosaljtEP66PWm7tQ06feKbFkXHT5E1K3QhJW3nVyK8v2fEBY5fg=="; 877 }; 878 }; 879 "@aws-sdk/node-config-provider-3.296.0" = { ··· 939 sha512 = "Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ=="; 940 }; 941 }; 942 + "@aws-sdk/s3-presigned-post-3.750.0" = { 943 name = "_at_aws-sdk_slash_s3-presigned-post"; 944 packageName = "@aws-sdk/s3-presigned-post"; 945 + version = "3.750.0"; 946 src = fetchurl { 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 }; 950 }; 951 "@aws-sdk/s3-request-presigner-3.296.0" = { ··· 957 sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw=="; 958 }; 959 }; 960 + "@aws-sdk/s3-request-presigner-3.750.0" = { 961 name = "_at_aws-sdk_slash_s3-request-presigner"; 962 packageName = "@aws-sdk/s3-request-presigner"; 963 + version = "3.750.0"; 964 src = fetchurl { 965 + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.750.0.tgz"; 966 + sha512 = "G4GNngNQlh9EyJZj2WKOOikX0Fev1WSxTV/XJugaHlpnVriebvi3GzolrgxUpRrcGpFGWjmAxLi/gYxTUla1ow=="; 967 }; 968 }; 969 "@aws-sdk/service-error-classification-3.296.0" = { ··· 993 sha512 = "NQyJ/FClty4VmF1WoV4rOkbN0Unn0zevzy8iJrYhqxE3Sc7lySM4Btnsd4Iqelm2dR6l+jNRApGgD8NvoGjGig=="; 994 }; 995 }; 996 + "@aws-sdk/signature-v4-crt-3.750.0" = { 997 name = "_at_aws-sdk_slash_signature-v4-crt"; 998 packageName = "@aws-sdk/signature-v4-crt"; 999 + version = "3.750.0"; 1000 src = fetchurl { 1001 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.750.0.tgz"; 1002 + sha512 = "8GET9edlujvrCHi4C6mnlViiQmYsena6HiSAHIeLh6vu7WgCDI1Gpgo2UI7Z93TRjyhp/c95ifKVjJDeauPPrw=="; 1003 }; 1004 }; 1005 "@aws-sdk/signature-v4-multi-region-3.296.0" = { ··· 1011 sha512 = "BNMXS0YJEgflPhO2KxXG4f0iTMOGdyxslDMNGmMWGGQm6bbwtqZ7Y9ZyMQYKfzk3GUPpfGQcaaSNiGfURPOCOg=="; 1012 }; 1013 }; 1014 + "@aws-sdk/signature-v4-multi-region-3.750.0" = { 1015 name = "_at_aws-sdk_slash_signature-v4-multi-region"; 1016 packageName = "@aws-sdk/signature-v4-multi-region"; 1017 + version = "3.750.0"; 1018 src = fetchurl { 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 }; 1022 }; 1023 "@aws-sdk/smithy-client-3.296.0" = { ··· 1038 sha512 = "yC1ku7A5S+o/CLlgbgDB2bx8+Wq43qj8xfohmTuIhpiP2m/NyUiRVv6S6ARONLI6bVeo1T2/BFk5Q9DfE2xzAQ=="; 1039 }; 1040 }; 1041 + "@aws-sdk/token-providers-3.750.0" = { 1042 name = "_at_aws-sdk_slash_token-providers"; 1043 packageName = "@aws-sdk/token-providers"; 1044 + version = "3.750.0"; 1045 src = fetchurl { 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 }; 1049 }; 1050 "@aws-sdk/types-3.296.0" = { ··· 1290 sha512 = "AMWac8aIBnaa9nxAEpZ752j29a/UQTViRfR5gnCX38ECBKGfOQMpgYnee5HdlMr4GHJj0WkOzQxBtInW4pV58g=="; 1291 }; 1292 }; 1293 + "@aws-sdk/util-user-agent-node-3.750.0" = { 1294 name = "_at_aws-sdk_slash_util-user-agent-node"; 1295 packageName = "@aws-sdk/util-user-agent-node"; 1296 + version = "3.750.0"; 1297 src = fetchurl { 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 }; 1301 }; 1302 "@aws-sdk/util-utf8-3.295.0" = { ··· 1443 sha512 = "EknvVmtBuSIic47xkOqyNabAme0RYTw52BTMz8eBgU1ysTyMrD1uOoM+JdS0J/4Yfp98IBT3osqq3BfwSaNaGQ=="; 1444 }; 1445 }; 1446 "@azure/logger-1.1.4" = { 1447 name = "_at_azure_slash_logger"; 1448 packageName = "@azure/logger"; ··· 1461 sha512 = "OHHEWMB5+Zrix8yKvLVzU3rKDFvh7SOzAzXfICD7YgUXLxfHpTPX2pzOotrri1kskwhHqIj4a5LvhZlIqE7C7g=="; 1462 }; 1463 }; 1464 "@azure/msal-common-14.16.0" = { 1465 name = "_at_azure_slash_msal-common"; 1466 packageName = "@azure/msal-common"; ··· 1468 src = fetchurl { 1469 url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.16.0.tgz"; 1470 sha512 = "1KOZj9IpcDSwpNiQNjt0jDYZpQvNZay7QAEi/5DLubay40iGYtLzya/jbjRPLyOTZhEKyL1MzPuw2HqBCjceYA=="; 1471 }; 1472 }; 1473 "@azure/msal-node-2.16.2" = { ··· 2100 sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; 2101 }; 2102 }; 2103 + "@cspell/cspell-bundled-dicts-8.17.5" = { 2104 name = "_at_cspell_slash_cspell-bundled-dicts"; 2105 packageName = "@cspell/cspell-bundled-dicts"; 2106 + version = "8.17.5"; 2107 src = fetchurl { 2108 + url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.17.5.tgz"; 2109 + sha512 = "b/Ntabar+g4gsRNwOct909cvatO/auHhNvBzJZfyFQzryI1nqHMaSFuDsrrtzbhQkGJ4GiMAKCXZC2EOdHMgmw=="; 2110 }; 2111 }; 2112 + "@cspell/cspell-json-reporter-8.17.5" = { 2113 name = "_at_cspell_slash_cspell-json-reporter"; 2114 packageName = "@cspell/cspell-json-reporter"; 2115 + version = "8.17.5"; 2116 src = fetchurl { 2117 + url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.17.5.tgz"; 2118 + sha512 = "+eVFCdnda74Frv8hguHYwDtxvqDuJJ/luFRl4dC5oknPMRab0JCHM1DDYjp3NzsehTex0HmcxplxqVW6QoDosg=="; 2119 }; 2120 }; 2121 + "@cspell/cspell-pipe-8.17.5" = { 2122 name = "_at_cspell_slash_cspell-pipe"; 2123 packageName = "@cspell/cspell-pipe"; 2124 + version = "8.17.5"; 2125 src = fetchurl { 2126 + url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.17.5.tgz"; 2127 + sha512 = "VOIfFdIo3FYQFcSpIyGkqHupOx0LgfBrWs79IKnTT1II27VUHPF+0oGq0WWf4c2Zpd8tzdHvS3IUhGarWZq69g=="; 2128 }; 2129 }; 2130 + "@cspell/cspell-resolver-8.17.5" = { 2131 name = "_at_cspell_slash_cspell-resolver"; 2132 packageName = "@cspell/cspell-resolver"; 2133 + version = "8.17.5"; 2134 src = fetchurl { 2135 + url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.17.5.tgz"; 2136 + sha512 = "5MhYInligPbGctWxoklAKxtg+sxvtJCuRKGSQHHA0JlCOLSsducypl780P6zvpjLK59XmdfC+wtFONxSmRbsuA=="; 2137 }; 2138 }; 2139 + "@cspell/cspell-service-bus-8.17.5" = { 2140 name = "_at_cspell_slash_cspell-service-bus"; 2141 packageName = "@cspell/cspell-service-bus"; 2142 + version = "8.17.5"; 2143 src = fetchurl { 2144 + url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.17.5.tgz"; 2145 + sha512 = "Ur3IK0R92G/2J6roopG9cU/EhoYAMOx2um7KYlq93cdrly8RBAK2NCcGCL7DbjQB6C9RYEAV60ueMUnQ45RrCQ=="; 2146 }; 2147 }; 2148 + "@cspell/cspell-types-8.17.5" = { 2149 name = "_at_cspell_slash_cspell-types"; 2150 packageName = "@cspell/cspell-types"; 2151 + version = "8.17.5"; 2152 src = fetchurl { 2153 + url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.17.5.tgz"; 2154 + sha512 = "91y2+0teunRSRZj940ORDA3kdjyenrUiM+4j6nQQH24sAIAJdRmQl2LG3eUTmeaSReJGkZIpnToQ6DyU5cC88Q=="; 2155 }; 2156 }; 2157 "@cspell/dict-ada-4.1.0" = { ··· 2235 sha512 = "sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw=="; 2236 }; 2237 }; 2238 + "@cspell/dict-cpp-6.0.4" = { 2239 name = "_at_cspell_slash_dict-cpp"; 2240 packageName = "@cspell/dict-cpp"; 2241 + version = "6.0.4"; 2242 src = fetchurl { 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=="; 2245 }; 2246 }; 2247 "@cspell/dict-cryptocurrencies-1.0.10" = { ··· 2406 sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; 2407 }; 2408 }; 2409 + "@cspell/dict-en_us-4.3.33" = { 2410 name = "_at_cspell_slash_dict-en_us"; 2411 packageName = "@cspell/dict-en_us"; 2412 + version = "4.3.33"; 2413 src = fetchurl { 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=="; 2416 }; 2417 }; 2418 "@cspell/dict-filetypes-1.1.8" = { ··· 2478 sha512 = "Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g=="; 2479 }; 2480 }; 2481 + "@cspell/dict-fullstack-3.2.5" = { 2482 name = "_at_cspell_slash_dict-fullstack"; 2483 packageName = "@cspell/dict-fullstack"; 2484 + version = "3.2.5"; 2485 src = fetchurl { 2486 + url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.5.tgz"; 2487 + sha512 = "XNmNdovPUS9Vc2JvfBscy8zZfwyxR11sB4fxU2lXh7LzUvOn2/OkKAzj41JTdiWfVnJ/yvsRkspe+b7kr+DIQw=="; 2488 }; 2489 }; 2490 "@cspell/dict-gaming-terms-1.1.0" = { ··· 2739 sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ=="; 2740 }; 2741 }; 2742 + "@cspell/dict-npm-5.1.27" = { 2743 name = "_at_cspell_slash_dict-npm"; 2744 packageName = "@cspell/dict-npm"; 2745 + version = "5.1.27"; 2746 src = fetchurl { 2747 + url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.27.tgz"; 2748 + sha512 = "LGss1yrjhxSmxL4VfMC+UBDMVHfqHudgC7b39M74EVys+nNC4/lqDHacb6Aw7i6aUn9mzdNIkdTTD+LdDcHvPA=="; 2749 }; 2750 }; 2751 "@cspell/dict-php-1.0.25" = { ··· 2964 sha512 = "0dPtI0lwHcAgSiQFx8CzvqjdoXROcH+1LyqgROCpBgppommWpVhbQ0eubnKotFEXgpUCONVkeZJ6Ql8NbTEu+w=="; 2965 }; 2966 }; 2967 + "@cspell/dynamic-import-8.17.5" = { 2968 name = "_at_cspell_slash_dynamic-import"; 2969 packageName = "@cspell/dynamic-import"; 2970 + version = "8.17.5"; 2971 src = fetchurl { 2972 + url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.17.5.tgz"; 2973 + sha512 = "tY+cVkRou+0VKvH+K1NXv8/R7mOlW3BDGSs9fcgvhatj0m00Yf8blFC7tE4VVI9Qh2bkC/KDFqM24IqZbuwXUQ=="; 2974 }; 2975 }; 2976 + "@cspell/filetypes-8.17.5" = { 2977 name = "_at_cspell_slash_filetypes"; 2978 packageName = "@cspell/filetypes"; 2979 + version = "8.17.5"; 2980 src = fetchurl { 2981 + url = "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.17.5.tgz"; 2982 + sha512 = "Fj6py2Rl+FEnMiXhRQUM1A5QmyeCLxi6dY/vQ0qfH6tp6KSaBiaC8wuPUKhr8hKyTd3+8lkUbobDhUf6xtMEXg=="; 2983 }; 2984 }; 2985 + "@cspell/strong-weak-map-8.17.5" = { 2986 name = "_at_cspell_slash_strong-weak-map"; 2987 packageName = "@cspell/strong-weak-map"; 2988 + version = "8.17.5"; 2989 src = fetchurl { 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=="; 2992 }; 2993 }; 2994 + "@cspell/url-8.17.5" = { 2995 name = "_at_cspell_slash_url"; 2996 packageName = "@cspell/url"; 2997 + version = "8.17.5"; 2998 src = fetchurl { 2999 + url = "https://registry.npmjs.org/@cspell/url/-/url-8.17.5.tgz"; 3000 + sha512 = "GNQqST7zI85dAFVyao6oiTeg5rNhO9FH1ZAd397qQhvwfxrrniNfuoewu8gPXyP0R4XBiiaCwhBL7w9S/F5guw=="; 3001 }; 3002 }; 3003 "@cspotcode/source-map-support-0.8.1" = { ··· 3009 sha512 = "IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="; 3010 }; 3011 }; 3012 + "@csstools/color-helpers-5.0.2" = { 3013 name = "_at_csstools_slash_color-helpers"; 3014 packageName = "@csstools/color-helpers"; 3015 + version = "5.0.2"; 3016 src = fetchurl { 3017 + url = "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.2.tgz"; 3018 + sha512 = "JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA=="; 3019 }; 3020 }; 3021 + "@csstools/css-calc-2.1.2" = { 3022 name = "_at_csstools_slash_css-calc"; 3023 packageName = "@csstools/css-calc"; 3024 + version = "2.1.2"; 3025 src = fetchurl { 3026 + url = "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.2.tgz"; 3027 + sha512 = "TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw=="; 3028 }; 3029 }; 3030 + "@csstools/css-color-parser-3.0.8" = { 3031 name = "_at_csstools_slash_css-color-parser"; 3032 packageName = "@csstools/css-color-parser"; 3033 + version = "3.0.8"; 3034 src = fetchurl { 3035 + url = "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.8.tgz"; 3036 + sha512 = "pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ=="; 3037 }; 3038 }; 3039 "@csstools/css-parser-algorithms-3.0.4" = { ··· 3171 sha512 = "0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw=="; 3172 }; 3173 }; 3174 + "@electron-forge/core-7.7.0" = { 3175 name = "_at_electron-forge_slash_core"; 3176 packageName = "@electron-forge/core"; 3177 + version = "7.7.0"; 3178 src = fetchurl { 3179 + url = "https://registry.npmjs.org/@electron-forge/core/-/core-7.7.0.tgz"; 3180 + sha512 = "BWhg1Zw1bhpDuZowGH3lXDiL9zZBsYFNjtqyMqmkjcEm5xf9Dzs8mpRpNjtkpf3jit3LB4PNGMLj3c8ix0h4vQ=="; 3181 }; 3182 }; 3183 + "@electron-forge/core-utils-7.7.0" = { 3184 name = "_at_electron-forge_slash_core-utils"; 3185 packageName = "@electron-forge/core-utils"; 3186 + version = "7.7.0"; 3187 src = fetchurl { 3188 + url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-7.7.0.tgz"; 3189 + sha512 = "kgOkiLzqnySkcpt26rBg8AoZsI1ID3f6s/dQlzfRJisWZTKTu4ryiMcaC0F07DVjaYFnEl9SQ86IvkTcyS97mQ=="; 3190 }; 3191 }; 3192 + "@electron-forge/maker-base-7.7.0" = { 3193 name = "_at_electron-forge_slash_maker-base"; 3194 packageName = "@electron-forge/maker-base"; 3195 + version = "7.7.0"; 3196 src = fetchurl { 3197 + url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-7.7.0.tgz"; 3198 + sha512 = "9u+mmBLBAUHuH0+IGw94EGVTDD4CPKX05h5pp5/PIaijy16ss5dymK4vEp3s2XJMFlza2PsCgLLYBgDcAE2Dqg=="; 3199 }; 3200 }; 3201 + "@electron-forge/plugin-base-7.7.0" = { 3202 name = "_at_electron-forge_slash_plugin-base"; 3203 packageName = "@electron-forge/plugin-base"; 3204 + version = "7.7.0"; 3205 src = fetchurl { 3206 + url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-7.7.0.tgz"; 3207 + sha512 = "6wisQ4ZKOWey48wFF+JHzih7AuQuVma5KauwNEju2Dh2ibwDMJmPy0FWVolMSg7XUIMbGKLADGilxX6XRv8qNQ=="; 3208 }; 3209 }; 3210 + "@electron-forge/publisher-base-7.7.0" = { 3211 name = "_at_electron-forge_slash_publisher-base"; 3212 packageName = "@electron-forge/publisher-base"; 3213 + version = "7.7.0"; 3214 src = fetchurl { 3215 + url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-7.7.0.tgz"; 3216 + sha512 = "jHKvUc1peBBSl2t5d1x6M3CNyCMyNB+NnTO9LmA1dWFQ3oRDFwromIH5KjRqPJj6l4AyH0/XJogdO7Nn4Eyn6Q=="; 3217 }; 3218 }; 3219 + "@electron-forge/shared-types-7.7.0" = { 3220 name = "_at_electron-forge_slash_shared-types"; 3221 packageName = "@electron-forge/shared-types"; 3222 + version = "7.7.0"; 3223 src = fetchurl { 3224 + url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-7.7.0.tgz"; 3225 + sha512 = "1zQsmudkAuHv0HnJtSJY3pvTeuN3fnSa9BR6cbeUlcpOfrnG4OTG03FqerHfyIWaBRVy7jGgif0NhKKE9azKyg=="; 3226 }; 3227 }; 3228 + "@electron-forge/template-base-7.7.0" = { 3229 name = "_at_electron-forge_slash_template-base"; 3230 packageName = "@electron-forge/template-base"; 3231 + version = "7.7.0"; 3232 src = fetchurl { 3233 + url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-7.7.0.tgz"; 3234 + sha512 = "jwnhEHNIyQfbwJ6R8SuZIJApHKBykDr/rSgUF3km9nr2qAUSoUUV7RaJa/uiQJMtvamXenuo5K84C2NzumzS3A=="; 3235 }; 3236 }; 3237 + "@electron-forge/template-vite-7.7.0" = { 3238 name = "_at_electron-forge_slash_template-vite"; 3239 packageName = "@electron-forge/template-vite"; 3240 + version = "7.7.0"; 3241 src = fetchurl { 3242 + url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-7.7.0.tgz"; 3243 + sha512 = "6p+U6FDWrmF7XgSLkrO07OOgJcrrrArbnExSckGJdBnupxmIDf1Y+exwfHHKdxX6/FfkA6JST5nRGjgA5CFqcw=="; 3244 }; 3245 }; 3246 + "@electron-forge/template-vite-typescript-7.7.0" = { 3247 name = "_at_electron-forge_slash_template-vite-typescript"; 3248 packageName = "@electron-forge/template-vite-typescript"; 3249 + version = "7.7.0"; 3250 src = fetchurl { 3251 + url = "https://registry.npmjs.org/@electron-forge/template-vite-typescript/-/template-vite-typescript-7.7.0.tgz"; 3252 + sha512 = "32C/+PF+hIloTdbRx7OutvqnTkkC7BHeQxNw4/zG2TfQ3cjl7JUD6A2UvTUHtv5KHkK2hDw6ZdahPwpJO41YSA=="; 3253 }; 3254 }; 3255 + "@electron-forge/template-webpack-7.7.0" = { 3256 name = "_at_electron-forge_slash_template-webpack"; 3257 packageName = "@electron-forge/template-webpack"; 3258 + version = "7.7.0"; 3259 src = fetchurl { 3260 + url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-7.7.0.tgz"; 3261 + sha512 = "7Hb1wejKqtvPXqhelubUNAh39FtClB/4JDtWzyAsL2iC3XeB5qh6pITz8+nW/rF2qW/JAepc/lnreqKn34P2ig=="; 3262 }; 3263 }; 3264 + "@electron-forge/template-webpack-typescript-7.7.0" = { 3265 name = "_at_electron-forge_slash_template-webpack-typescript"; 3266 packageName = "@electron-forge/template-webpack-typescript"; 3267 + version = "7.7.0"; 3268 src = fetchurl { 3269 + url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-7.7.0.tgz"; 3270 + sha512 = "w1vRAjGy0MjjdEDYPpZcpkMo2e3z5uEwfJdwVOpBeha7p2WM/Y6go21K+7pSqGp8Xmq4zlE20hq5MEx8Bs8eZg=="; 3271 }; 3272 }; 3273 + "@electron-forge/tracer-7.7.0" = { 3274 name = "_at_electron-forge_slash_tracer"; 3275 packageName = "@electron-forge/tracer"; 3276 + version = "7.7.0"; 3277 src = fetchurl { 3278 + url = "https://registry.npmjs.org/@electron-forge/tracer/-/tracer-7.7.0.tgz"; 3279 + sha512 = "R/JiGFzWhwfVyc6ioT4l5FFChRLS4Z2tWPeQfPcyoemdpzKpI1rvMHti42gzWXFW8GdzkhG0G3ZWfKiF3y3x/Q=="; 3280 }; 3281 }; 3282 "@electron/asar-3.3.1" = { ··· 3371 sha512 = "Ce3xE2JvTSEbASFbRbA1gAIcMcZWdS2yUYRaQbeM0nbOzaZrUYfa3ePtcriYRZOZmr+CkKA+zbjhvTpIOAYVcw=="; 3372 }; 3373 }; 3374 "@eslint-community/eslint-utils-4.4.1" = { 3375 name = "_at_eslint-community_slash_eslint-utils"; 3376 packageName = "@eslint-community/eslint-utils"; ··· 3398 sha512 = "GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w=="; 3399 }; 3400 }; 3401 + "@eslint/core-0.12.0" = { 3402 name = "_at_eslint_slash_core"; 3403 packageName = "@eslint/core"; 3404 + version = "0.12.0"; 3405 src = fetchurl { 3406 + url = "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz"; 3407 + sha512 = "cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg=="; 3408 }; 3409 }; 3410 "@eslint/eslintrc-0.4.3" = { ··· 3416 sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 3417 }; 3418 }; 3419 + "@eslint/eslintrc-3.3.0" = { 3420 name = "_at_eslint_slash_eslintrc"; 3421 packageName = "@eslint/eslintrc"; 3422 + version = "3.3.0"; 3423 src = fetchurl { 3424 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.0.tgz"; 3425 + sha512 = "yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ=="; 3426 }; 3427 }; 3428 + "@eslint/js-9.21.0" = { 3429 name = "_at_eslint_slash_js"; 3430 packageName = "@eslint/js"; 3431 + version = "9.21.0"; 3432 src = fetchurl { 3433 + url = "https://registry.npmjs.org/@eslint/js/-/js-9.21.0.tgz"; 3434 + sha512 = "BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw=="; 3435 }; 3436 }; 3437 "@eslint/object-schema-2.1.6" = { ··· 3443 sha512 = "RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA=="; 3444 }; 3445 }; 3446 + "@eslint/plugin-kit-0.2.7" = { 3447 name = "_at_eslint_slash_plugin-kit"; 3448 packageName = "@eslint/plugin-kit"; 3449 + version = "0.2.7"; 3450 src = fetchurl { 3451 + url = "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz"; 3452 + sha512 = "JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g=="; 3453 }; 3454 }; 3455 "@ethereumjs/rlp-4.0.1" = { ··· 3614 sha512 = "foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="; 3615 }; 3616 }; 3617 "@httptoolkit/websocket-stream-6.0.1" = { 3618 name = "_at_httptoolkit_slash_websocket-stream"; 3619 packageName = "@httptoolkit/websocket-stream"; ··· 3641 sha512 = "YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="; 3642 }; 3643 }; 3644 "@humanwhocodes/config-array-0.5.0" = { 3645 name = "_at_humanwhocodes_slash_config-array"; 3646 packageName = "@humanwhocodes/config-array"; ··· 3668 sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; 3669 }; 3670 }; 3671 "@humanwhocodes/retry-0.3.1" = { 3672 name = "_at_humanwhocodes_slash_retry"; 3673 packageName = "@humanwhocodes/retry"; ··· 3677 sha512 = "JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="; 3678 }; 3679 }; 3680 + "@humanwhocodes/retry-0.4.2" = { 3681 name = "_at_humanwhocodes_slash_retry"; 3682 packageName = "@humanwhocodes/retry"; 3683 + version = "0.4.2"; 3684 src = fetchurl { 3685 + url = "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz"; 3686 + sha512 = "xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ=="; 3687 }; 3688 }; 3689 "@hutson/parse-repository-url-5.0.0" = { ··· 3981 src = fetchurl { 3982 url = "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz"; 3983 sha512 = "wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w=="; 3984 }; 3985 }; 3986 "@jimp/bmp-0.16.13" = { ··· 4478 sha512 = "uyKjxCe1ou11RJz6koBr5vXtyaGjTA45hF+H88GNW96vms7jKqmYdMm067Az1OKwl38h02lQRQ2tmoEzV7u74w=="; 4479 }; 4480 }; 4481 + "@jsii/check-node-1.107.0" = { 4482 name = "_at_jsii_slash_check-node"; 4483 packageName = "@jsii/check-node"; 4484 + version = "1.107.0"; 4485 src = fetchurl { 4486 + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.107.0.tgz"; 4487 + sha512 = "ud21048xxEVbbzjFlE7GQSuypW7/8P6Dyu+jjTwp6wGFbnbpxZiupIMdp6eSVSqo9M3rC14SyjNq2liXoSYBZg=="; 4488 }; 4489 }; 4490 + "@jsii/check-node-1.108.0" = { 4491 + name = "_at_jsii_slash_check-node"; 4492 + packageName = "@jsii/check-node"; 4493 + version = "1.108.0"; 4494 src = fetchurl { 4495 + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.108.0.tgz"; 4496 + sha512 = "wa8AGH31Cl0x1jU/KtM6JB32IurBmK1YiX5ZnCndifRCehLnS8DmJCPYrzJbKD4xqmHigaq6696fAnM/L7qIsw=="; 4497 }; 4498 }; 4499 + "@jsii/spec-1.108.0" = { 4500 + name = "_at_jsii_slash_spec"; 4501 + packageName = "@jsii/spec"; 4502 + version = "1.108.0"; 4503 src = fetchurl { 4504 + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.108.0.tgz"; 4505 + sha512 = "YtebmBRy19UT1pKmxqlTqfW1OcFFjuU2zxxi+QFfM8KG1ahBlpcuz+3DE9gG1qTASIJJJI0fd8PaAiZ5gE40sQ=="; 4506 }; 4507 }; 4508 "@lezer/common-1.2.3" = { ··· 4667 sha512 = "llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg=="; 4668 }; 4669 }; 4670 + "@microsoft/rush-lib-5.149.1" = { 4671 name = "_at_microsoft_slash_rush-lib"; 4672 packageName = "@microsoft/rush-lib"; 4673 + version = "5.149.1"; 4674 src = fetchurl { 4675 + url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.149.1.tgz"; 4676 + sha512 = "x7787VxNas7xSQEilLJsUEW25jAtiTej11nSGEVXRrY/L78f6MD0xenCN8uVnWFn5Zxdj5+zoto0Xyktglgx7Q=="; 4677 }; 4678 }; 4679 "@mischnic/json-sourcemap-0.1.1" = { ··· 4692 src = fetchurl { 4693 url = "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz"; 4694 sha512 = "Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw=="; 4695 }; 4696 }; 4697 "@noble/curves-1.4.2" = { ··· 4739 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 4740 }; 4741 }; 4742 "@npmcli/agent-3.0.0" = { 4743 name = "_at_npmcli_slash_agent"; 4744 packageName = "@npmcli/agent"; ··· 4746 src = fetchurl { 4747 url = "https://registry.npmjs.org/@npmcli/agent/-/agent-3.0.0.tgz"; 4748 sha512 = "S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q=="; 4749 }; 4750 }; 4751 "@npmcli/config-6.4.1" = { ··· 4784 sha512 = "yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ=="; 4785 }; 4786 }; 4787 "@npmcli/fs-4.0.0" = { 4788 name = "_at_npmcli_slash_fs"; 4789 packageName = "@npmcli/fs"; ··· 4802 sha512 = "liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ=="; 4803 }; 4804 }; 4805 + "@npmcli/git-6.0.3" = { 4806 name = "_at_npmcli_slash_git"; 4807 packageName = "@npmcli/git"; 4808 + version = "6.0.3"; 4809 src = fetchurl { 4810 + url = "https://registry.npmjs.org/@npmcli/git/-/git-6.0.3.tgz"; 4811 + sha512 = "GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ=="; 4812 }; 4813 }; 4814 "@npmcli/installed-package-contents-3.0.0" = { ··· 4829 sha512 = "tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA=="; 4830 }; 4831 }; 4832 "@npmcli/move-file-1.1.2" = { 4833 name = "_at_npmcli_slash_move-file"; 4834 packageName = "@npmcli/move-file"; ··· 4856 sha512 = "pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg=="; 4857 }; 4858 }; 4859 "@npmcli/node-gyp-4.0.0" = { 4860 name = "_at_npmcli_slash_node-gyp"; 4861 packageName = "@npmcli/node-gyp"; ··· 4863 src = fetchurl { 4864 url = "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-4.0.0.tgz"; 4865 sha512 = "+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA=="; 4866 }; 4867 }; 4868 "@npmcli/package-json-5.2.1" = { ··· 4901 sha512 = "/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ=="; 4902 }; 4903 }; 4904 "@npmcli/redact-3.1.1" = { 4905 name = "_at_npmcli_slash_redact"; 4906 packageName = "@npmcli/redact"; ··· 4910 sha512 = "3Hc2KGIkrvJWJqTbvueXzBeZlmvoOxc2jyX00yzr3+sNFquJg0N8hH4SAPLPVrkWIRQICVpVgjrss971awXVnA=="; 4911 }; 4912 }; 4913 "@npmcli/run-script-9.0.2" = { 4914 name = "_at_npmcli_slash_run-script"; 4915 packageName = "@npmcli/run-script"; ··· 4917 src = fetchurl { 4918 url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-9.0.2.tgz"; 4919 sha512 = "cJXiUlycdizQwvqE1iaAb4VRUM3RX09/8q46zjvy+ct9GhfZRWd7jXYVc1tn/CfRlGPVkX/u4sstRlepsm7hfw=="; 4920 }; 4921 }; 4922 "@oclif/core-1.26.2" = { ··· 4991 sha512 = "yx6KAqlt3TAHBduS2fMQtJDL2ufIHnDRArrJEOoTTuizxqmjLT+psGYOHpmMl3gvQpFJ11Hs76guUUktzAF9Bg=="; 4992 }; 4993 }; 4994 "@one-ini/wasm-0.1.1" = { 4995 name = "_at_one-ini_slash_wasm"; 4996 packageName = "@one-ini/wasm"; ··· 5846 sha512 = "8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw=="; 5847 }; 5848 }; 5849 + "@prisma/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d" = { 5850 name = "_at_prisma_slash_prisma-schema-wasm"; 5851 packageName = "@prisma/prisma-schema-wasm"; 5852 + version = "6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d"; 5853 src = fetchurl { 5854 + url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d.tgz"; 5855 + sha512 = "nq1XcNXsdYbCnMFwG7QyCRLb0M4ubQrhq+7HLu7ugLJonDUy17il5qnxk9tVjkgRoEAm1QNZmqG5dXGfAN2fmQ=="; 5856 }; 5857 }; 5858 + "@prisma/schema-files-loader-6.4.1" = { 5859 name = "_at_prisma_slash_schema-files-loader"; 5860 packageName = "@prisma/schema-files-loader"; 5861 + version = "6.4.1"; 5862 src = fetchurl { 5863 + url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-6.4.1.tgz"; 5864 + sha512 = "6Rh9BA7nliCJ2ns8/ioEgtezsm9Sydv5vH2Ja2SgZ5c30GbY1QInmmz9jVCsm5qol0iHsnSOPSRHR2FSQW+Mmw=="; 5865 }; 5866 }; 5867 "@protobufjs/aspromise-1.1.2" = { ··· 5981 sha512 = "USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ=="; 5982 }; 5983 }; 5984 + "@rushstack/heft-config-file-0.16.6" = { 5985 name = "_at_rushstack_slash_heft-config-file"; 5986 packageName = "@rushstack/heft-config-file"; 5987 + version = "0.16.6"; 5988 src = fetchurl { 5989 + url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.16.6.tgz"; 5990 + sha512 = "V83ucRqVt9quigDNgUggikNSAGtnfKUzzTcr18jYa/BzLyLdg9ITjr2RxVHzl7eNlJFiENr9vZdgaS45YjmhqA=="; 5991 }; 5992 }; 5993 + "@rushstack/lookup-by-path-0.5.6" = { 5994 name = "_at_rushstack_slash_lookup-by-path"; 5995 packageName = "@rushstack/lookup-by-path"; 5996 + version = "0.5.6"; 5997 src = fetchurl { 5998 + url = "https://registry.npmjs.org/@rushstack/lookup-by-path/-/lookup-by-path-0.5.6.tgz"; 5999 + sha512 = "TJ7eobYV7hBBDzo9JGJC7bxvWUgizZtCZs3Wl0avx5ko09G5AYmz1jkPK3Y/UK/rpGQWYUKwuk5fTSbH+IPoqQ=="; 6000 }; 6001 }; 6002 "@rushstack/node-core-library-5.11.0" = { ··· 6008 sha512 = "I8+VzG9A0F3nH2rLpPd7hF8F7l5Xb7D+ldrWVZYegXM6CsKkvWc670RlgK3WX8/AseZfXA/vVrh0bpXe2Y2UDQ=="; 6009 }; 6010 }; 6011 + "@rushstack/package-deps-hash-4.3.7" = { 6012 name = "_at_rushstack_slash_package-deps-hash"; 6013 packageName = "@rushstack/package-deps-hash"; 6014 + version = "4.3.7"; 6015 src = fetchurl { 6016 + url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.3.7.tgz"; 6017 + sha512 = "fSwL7Zg54tQ2D4L2rfpkx0Wajk01DjM/afmGcw4VB2AlSWmJGqKkPhXvfacQRv0Y4n2faJICZgplfxlNcq7g9g=="; 6018 }; 6019 }; 6020 + "@rushstack/package-extractor-0.10.11" = { 6021 name = "_at_rushstack_slash_package-extractor"; 6022 packageName = "@rushstack/package-extractor"; 6023 + version = "0.10.11"; 6024 src = fetchurl { 6025 + url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.10.11.tgz"; 6026 + sha512 = "7VGPYGYFD2LnS5eJREidPKfLbsG67yw1/iEzSvnCmkB/IDz5JNBLtP8nwqGTKb1dDXb6ZoSrQ+DWa451WQY9HQ=="; 6027 }; 6028 }; 6029 "@rushstack/rig-package-0.5.3" = { ··· 6035 sha512 = "olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow=="; 6036 }; 6037 }; 6038 + "@rushstack/rush-amazon-s3-build-cache-plugin-5.149.1" = { 6039 name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin"; 6040 packageName = "@rushstack/rush-amazon-s3-build-cache-plugin"; 6041 + version = "5.149.1"; 6042 src = fetchurl { 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=="; 6045 }; 6046 }; 6047 + "@rushstack/rush-azure-storage-build-cache-plugin-5.149.1" = { 6048 name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin"; 6049 packageName = "@rushstack/rush-azure-storage-build-cache-plugin"; 6050 + version = "5.149.1"; 6051 src = fetchurl { 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=="; 6054 }; 6055 }; 6056 + "@rushstack/rush-http-build-cache-plugin-5.149.1" = { 6057 name = "_at_rushstack_slash_rush-http-build-cache-plugin"; 6058 packageName = "@rushstack/rush-http-build-cache-plugin"; 6059 + version = "5.149.1"; 6060 src = fetchurl { 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=="; 6063 }; 6064 }; 6065 + "@rushstack/rush-sdk-5.149.1" = { 6066 name = "_at_rushstack_slash_rush-sdk"; 6067 packageName = "@rushstack/rush-sdk"; 6068 + version = "5.149.1"; 6069 src = fetchurl { 6070 + url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.149.1.tgz"; 6071 + sha512 = "jfgO6EfQ19RbHCtn2A8M3AUYE8OD08mHExZQOt0uoUg59mr6cN0faHTuCnzvnHf0CjxaiW+VzsiRt0xKePkVwQ=="; 6072 }; 6073 }; 6074 + "@rushstack/stream-collator-4.1.85" = { 6075 name = "_at_rushstack_slash_stream-collator"; 6076 packageName = "@rushstack/stream-collator"; 6077 + version = "4.1.85"; 6078 src = fetchurl { 6079 + url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.85.tgz"; 6080 + sha512 = "o1p16mx0vIb7ZprnZJt3LLTZBT5rBYG+sua6LQ49gIf25CBhZuFSVazjhQP6gGCl4eiLZwdIiV5ETQ6tDv1kmg=="; 6081 }; 6082 }; 6083 "@rushstack/terminal-0.15.0" = { ··· 6107 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 6108 }; 6109 }; 6110 + "@schematics/angular-19.1.8" = { 6111 name = "_at_schematics_slash_angular"; 6112 packageName = "@schematics/angular"; 6113 + version = "19.1.8"; 6114 src = fetchurl { 6115 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-19.1.8.tgz"; 6116 + sha512 = "ytgClbMPn+i+w1S3QukR/Vdge+sfU9aX49ao+XRwoWdOssHUjmVjQcCEdzu0ucSrNPZnhm34bdDPzADLhln60w=="; 6117 }; 6118 }; 6119 "@scure/base-1.1.9" = { ··· 6278 sha512 = "83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg=="; 6279 }; 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 + }; 6290 "@sideway/address-4.1.5" = { 6291 name = "_at_sideway_slash_address"; 6292 packageName = "@sideway/address"; ··· 6314 sha512 = "RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="; 6315 }; 6316 }; 6317 "@sigstore/bundle-3.1.0" = { 6318 name = "_at_sigstore_slash_bundle"; 6319 packageName = "@sigstore/bundle"; ··· 6323 sha512 = "Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag=="; 6324 }; 6325 }; 6326 "@sigstore/core-2.0.0" = { 6327 name = "_at_sigstore_slash_core"; 6328 packageName = "@sigstore/core"; ··· 6332 sha512 = "nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg=="; 6333 }; 6334 }; 6335 "@sigstore/protobuf-specs-0.4.0" = { 6336 name = "_at_sigstore_slash_protobuf-specs"; 6337 packageName = "@sigstore/protobuf-specs"; ··· 6341 sha512 = "o09cLSIq9EKyRXwryWDOJagkml9XgQCoCSRjHOnHLnvsivaW7Qznzz6yjfV7PHJHhIvyp8OH7OX8w0Dc5bQK7A=="; 6342 }; 6343 }; 6344 "@sigstore/sign-3.1.0" = { 6345 name = "_at_sigstore_slash_sign"; 6346 packageName = "@sigstore/sign"; ··· 6350 sha512 = "knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw=="; 6351 }; 6352 }; 6353 "@sigstore/tuf-3.1.0" = { 6354 name = "_at_sigstore_slash_tuf"; 6355 packageName = "@sigstore/tuf"; ··· 6357 src = fetchurl { 6358 url = "https://registry.npmjs.org/@sigstore/tuf/-/tuf-3.1.0.tgz"; 6359 sha512 = "suVMQEA+sKdOz5hwP9qNcEjX6B45R+hFFr4LAWzbRc5O+U2IInwvay/bpG5a4s+qR35P/JK/PiKiRGjfuLy1IA=="; 6360 }; 6361 }; 6362 "@sigstore/verify-2.1.0" = { ··· 6386 sha512 = "XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ=="; 6387 }; 6388 }; 6389 "@sindresorhus/chunkify-0.2.0" = { 6390 name = "_at_sindresorhus_slash_chunkify"; 6391 packageName = "@sindresorhus/chunkify"; ··· 6503 sha512 = "Igfg8lKu3dRVkTSEm98QpZUvKEOa71jDX4vKRcvJVyRc3UgN3j7vFMf0s7xLQhYmKa8kyJGQgUJDOV5V3neVlQ=="; 6504 }; 6505 }; 6506 + "@smithy/core-3.1.5" = { 6507 name = "_at_smithy_slash_core"; 6508 packageName = "@smithy/core"; 6509 + version = "3.1.5"; 6510 src = fetchurl { 6511 + url = "https://registry.npmjs.org/@smithy/core/-/core-3.1.5.tgz"; 6512 + sha512 = "HLclGWPkCsekQgsyzxLhCQLa8THWXtB5PxyYN+2O6nkyLt550KQKTlbV2D1/j5dNIQapAZM1+qFnpBFxZQkgCA=="; 6513 }; 6514 }; 6515 "@smithy/credential-provider-imds-4.0.1" = { ··· 6647 sha512 = "OGXo7w5EkB5pPiac7KNzVtfCW2vKBTZNuCctn++TTSOMpe6RZO/n6WEC1AxJINn3+vWLKW49uad3lo/u0WJ9oQ=="; 6648 }; 6649 }; 6650 + "@smithy/middleware-endpoint-4.0.6" = { 6651 name = "_at_smithy_slash_middleware-endpoint"; 6652 packageName = "@smithy/middleware-endpoint"; 6653 + version = "4.0.6"; 6654 src = fetchurl { 6655 + url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.6.tgz"; 6656 + sha512 = "ftpmkTHIFqgaFugcjzLZv3kzPEFsBFSnq1JsIkr2mwFzCraZVhQk2gqN51OOeRxqhbPTkRFj39Qd2V91E/mQxg=="; 6657 }; 6658 }; 6659 + "@smithy/middleware-retry-4.0.7" = { 6660 name = "_at_smithy_slash_middleware-retry"; 6661 packageName = "@smithy/middleware-retry"; 6662 + version = "4.0.7"; 6663 src = fetchurl { 6664 + url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.0.7.tgz"; 6665 + sha512 = "58j9XbUPLkqAcV1kHzVX/kAR16GT+j7DUZJqwzsxh1jtz7G82caZiGyyFgUvogVfNTg3TeAOIJepGc8TXF4AVQ=="; 6666 }; 6667 }; 6668 "@smithy/middleware-serde-4.0.2" = { ··· 6692 sha512 = "8mRTjvCtVET8+rxvmzRNRR0hH2JjV0DFOmwXPrISmTIJEfnCBugpYYGAsCj8t41qd+RB5gbheSQ/6aKZCQvFLQ=="; 6693 }; 6694 }; 6695 + "@smithy/node-http-handler-4.0.3" = { 6696 name = "_at_smithy_slash_node-http-handler"; 6697 packageName = "@smithy/node-http-handler"; 6698 + version = "4.0.3"; 6699 src = fetchurl { 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=="; 6702 }; 6703 }; 6704 "@smithy/property-provider-4.0.1" = { ··· 6764 sha512 = "nCe6fQ+ppm1bQuw5iKoeJ0MJfz2os7Ic3GBjOkLOPtavbD1ONoyE3ygjBfz2ythFWm4YnRm6OxW+8p/m9uCoIA=="; 6765 }; 6766 }; 6767 + "@smithy/smithy-client-4.1.6" = { 6768 name = "_at_smithy_slash_smithy-client"; 6769 packageName = "@smithy/smithy-client"; 6770 + version = "4.1.6"; 6771 src = fetchurl { 6772 + url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.1.6.tgz"; 6773 + sha512 = "UYDolNg6h2O0L+cJjtgSyKKvEKCOa/8FHYJnBobyeoeWDmNpXjwOAtw16ezyeu1ETuuLEOZbrynK0ZY1Lx9Jbw=="; 6774 }; 6775 }; 6776 "@smithy/types-4.1.0" = { ··· 6845 sha512 = "L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w=="; 6846 }; 6847 }; 6848 + "@smithy/util-defaults-mode-browser-4.0.7" = { 6849 name = "_at_smithy_slash_util-defaults-mode-browser"; 6850 packageName = "@smithy/util-defaults-mode-browser"; 6851 + version = "4.0.7"; 6852 src = fetchurl { 6853 + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.7.tgz"; 6854 + sha512 = "CZgDDrYHLv0RUElOsmZtAnp1pIjwDVCSuZWOPhIOBvG36RDfX1Q9+6lS61xBf+qqvHoqRjHxgINeQz47cYFC2Q=="; 6855 }; 6856 }; 6857 + "@smithy/util-defaults-mode-node-4.0.7" = { 6858 name = "_at_smithy_slash_util-defaults-mode-node"; 6859 packageName = "@smithy/util-defaults-mode-node"; 6860 + version = "4.0.7"; 6861 src = fetchurl { 6862 + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.7.tgz"; 6863 + sha512 = "79fQW3hnfCdrfIi1soPbK3zmooRFnLpSx3Vxi6nUlqaaQeC5dm8plt4OTNDNqEEEDkvKghZSaoti684dQFVrGQ=="; 6864 }; 6865 }; 6866 "@smithy/util-endpoints-3.0.1" = { ··· 6899 sha512 = "WmRHqNVwn3kI3rKk1LsKcVgPBG6iLTBGC1iYOV3GQegwJ3E8yjzHytPt26VNzOWr1qu0xE03nK0Ug8S7T7oufw=="; 6900 }; 6901 }; 6902 + "@smithy/util-stream-4.1.2" = { 6903 name = "_at_smithy_slash_util-stream"; 6904 packageName = "@smithy/util-stream"; 6905 + version = "4.1.2"; 6906 src = fetchurl { 6907 + url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.1.2.tgz"; 6908 + sha512 = "44PKEqQ303d3rlQuiDpcCcu//hV8sn+u2JBo84dWCE0rvgeiVl0IlLMagbU++o0jCWhYCsHaAt9wZuZqNe05Hw=="; 6909 }; 6910 }; 6911 "@smithy/util-uri-escape-4.0.0" = { ··· 7142 sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; 7143 }; 7144 }; 7145 + "@swc/core-1.10.18" = { 7146 name = "_at_swc_slash_core"; 7147 packageName = "@swc/core"; 7148 + version = "1.10.18"; 7149 src = fetchurl { 7150 + url = "https://registry.npmjs.org/@swc/core/-/core-1.10.18.tgz"; 7151 + sha512 = "IUWKD6uQYGRy8w2X9EZrtYg1O3SCijlHbCXzMaHQYc1X7yjijQh4H3IVL9ssZZyVp2ZDfQZu4bD5DWxxvpyjvg=="; 7152 }; 7153 }; 7154 "@swc/counter-0.1.3" = { ··· 7169 sha512 = "JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g=="; 7170 }; 7171 }; 7172 + "@swc/types-0.1.18" = { 7173 name = "_at_swc_slash_types"; 7174 packageName = "@swc/types"; 7175 + version = "0.1.18"; 7176 src = fetchurl { 7177 + url = "https://registry.npmjs.org/@swc/types/-/types-0.1.18.tgz"; 7178 + sha512 = "NZghLaQvF3eFdj2DUjGkpwaunbZYaRcxciHINnwA4n3FrLAI8hKFOBqs2wkcOiLQfWkIdfuG6gBkNFrkPNji5g=="; 7179 }; 7180 }; 7181 + "@swc/wasm-1.10.18" = { 7182 name = "_at_swc_slash_wasm"; 7183 packageName = "@swc/wasm"; 7184 + version = "1.10.18"; 7185 src = fetchurl { 7186 + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.10.18.tgz"; 7187 + sha512 = "TgoMYjQ2/9UfUaw7WuKj7Svew6kaNOqkjV4nKoc2tf34e+7GxL2KPoXvM2b1RkPxNocv85glcQpS9KMk8FqpBA=="; 7188 }; 7189 }; 7190 "@szmarczak/http-timer-1.1.2" = { ··· 7268 sha512 = "9pQN6pJAJOU3McmdJWTcyq7LLFW8Lj5q+DadyKcvp+sxMkEpktKX5sbfJgJuOvjk6+1xWl7pe0YL1US1vaO/1w=="; 7269 }; 7270 }; 7271 + "@tinyhttp/app-2.5.2" = { 7272 name = "_at_tinyhttp_slash_app"; 7273 packageName = "@tinyhttp/app"; 7274 + version = "2.5.2"; 7275 src = fetchurl { 7276 + url = "https://registry.npmjs.org/@tinyhttp/app/-/app-2.5.2.tgz"; 7277 + sha512 = "DcB3Y8GQppLQlO2VxRYF7LzTEAoZb+VRQXuIsErcu2fNaM1xdx6NQZDso5rlZUiaeg6KYYRfU34N4XkZbv6jSA=="; 7278 }; 7279 }; 7280 "@tinyhttp/content-disposition-2.2.2" = { ··· 7340 sha512 = "j80fPKimGqdmMh6962y+BtQsnYPVCzZfJw0HXjyH70VaJBHLKGF+iYhcKqzI3yef6QBNa8DKIPsbEYpuwApXTw=="; 7341 }; 7342 }; 7343 + "@tinyhttp/forwarded-2.1.2" = { 7344 name = "_at_tinyhttp_slash_forwarded"; 7345 packageName = "@tinyhttp/forwarded"; 7346 + version = "2.1.2"; 7347 src = fetchurl { 7348 + url = "https://registry.npmjs.org/@tinyhttp/forwarded/-/forwarded-2.1.2.tgz"; 7349 + sha512 = "9H/eulJ68ElY/+zYpTpNhZ7vxGV+cnwaR6+oQSm7bVgZMyuQfgROW/qvZuhmgDTIxnGMXst+Ba4ij6w6Krcs3w=="; 7350 }; 7351 }; 7352 "@tinyhttp/logger-2.0.0" = { ··· 7358 sha512 = "8DfLQjGDIaIJeivYamVrrpmwmsGwS8wt2DGvzlcY5HEBagdiI4QJy/veAFcUHuaJqufn4wLwmn4q5VUkW8BCpQ=="; 7359 }; 7360 }; 7361 + "@tinyhttp/proxy-addr-2.2.1" = { 7362 name = "_at_tinyhttp_slash_proxy-addr"; 7363 packageName = "@tinyhttp/proxy-addr"; 7364 + version = "2.2.1"; 7365 src = fetchurl { 7366 + url = "https://registry.npmjs.org/@tinyhttp/proxy-addr/-/proxy-addr-2.2.1.tgz"; 7367 + sha512 = "BicqMqVI91hHq2BQmnqJUh0FQUnx7DncwSGgu2ghlh+JZG2rHK2ZN/rXkfhrx1rrUw6hnd0L36O8GPMh01+dDQ=="; 7368 }; 7369 }; 7370 + "@tinyhttp/req-2.2.5" = { 7371 name = "_at_tinyhttp_slash_req"; 7372 packageName = "@tinyhttp/req"; 7373 + version = "2.2.5"; 7374 src = fetchurl { 7375 + url = "https://registry.npmjs.org/@tinyhttp/req/-/req-2.2.5.tgz"; 7376 + sha512 = "trfsXwtmsNjMcGKcLJ+45h912kLRqBQCQD06ams3Tq0kf4gHLxjHjoYOC1Z9yGjOn81XllRx8wqvnvr+Kbe3gw=="; 7377 }; 7378 }; 7379 + "@tinyhttp/res-2.2.5" = { 7380 name = "_at_tinyhttp_slash_res"; 7381 packageName = "@tinyhttp/res"; 7382 + version = "2.2.5"; 7383 src = fetchurl { 7384 + url = "https://registry.npmjs.org/@tinyhttp/res/-/res-2.2.5.tgz"; 7385 + sha512 = "yBsqjWygpuKAVz4moWlP4hqzwiDDqfrn2mA0wviJAcgvGiyOErtlQwXY7aj3aPiCpURvxvEFO//Gdy6yV+xEpA=="; 7386 }; 7387 }; 7388 "@tinyhttp/router-2.2.3" = { ··· 7529 sha512 = "vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA=="; 7530 }; 7531 }; 7532 "@tufjs/canonical-json-2.0.0" = { 7533 name = "_at_tufjs_slash_canonical-json"; 7534 packageName = "@tufjs/canonical-json"; ··· 7538 sha512 = "yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA=="; 7539 }; 7540 }; 7541 "@tufjs/models-3.0.1" = { 7542 name = "_at_tufjs_slash_models"; 7543 packageName = "@tufjs/models"; ··· 7545 src = fetchurl { 7546 url = "https://registry.npmjs.org/@tufjs/models/-/models-3.0.1.tgz"; 7547 sha512 = "UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA=="; 7548 }; 7549 }; 7550 "@types/acorn-4.0.6" = { ··· 7997 sha512 = "fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ=="; 7998 }; 7999 }; 8000 "@types/node-16.18.11" = { 8001 name = "_at_types_slash_node"; 8002 packageName = "@types/node"; ··· 8051 sha512 = "LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A=="; 8052 }; 8053 }; 8054 + "@types/node-22.13.5" = { 8055 name = "_at_types_slash_node"; 8056 packageName = "@types/node"; 8057 + version = "22.13.5"; 8058 src = fetchurl { 8059 + url = "https://registry.npmjs.org/@types/node/-/node-22.13.5.tgz"; 8060 + sha512 = "+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg=="; 8061 }; 8062 }; 8063 "@types/node-6.14.13" = { ··· 8105 sha512 = "hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ=="; 8106 }; 8107 }; 8108 + "@types/react-19.0.10" = { 8109 name = "_at_types_slash_react"; 8110 packageName = "@types/react"; 8111 + version = "19.0.10"; 8112 src = fetchurl { 8113 + url = "https://registry.npmjs.org/@types/react/-/react-19.0.10.tgz"; 8114 + sha512 = "JuRQ9KXLEjaUNjTWpzuR231Z2WpIwczOkBEIvbHNCzQefFIT0L8IqE6NV6ULLyC1SI/i234JnDoMkfg+RjQj2g=="; 8115 }; 8116 }; 8117 "@types/responselike-1.0.3" = { ··· 8213 sha512 = "XOfUup9r3Y06nFAZh3WvO0rBU4OtlfPB/vgxpjg+NRdGU6CN6djdc6OEiH+PcqHCY6eFLo9Ista73uarf4gnBg=="; 8214 }; 8215 }; 8216 "@types/wrap-ansi-3.0.0" = { 8217 name = "_at_types_slash_wrap-ansi"; 8218 packageName = "@types/wrap-ansi"; ··· 8249 sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="; 8250 }; 8251 }; 8252 "@ungap/structured-clone-1.3.0" = { 8253 name = "_at_ungap_slash_structured-clone"; 8254 packageName = "@ungap/structured-clone"; ··· 8258 sha512 = "WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="; 8259 }; 8260 }; 8261 + "@vercel/build-utils-10.2.0" = { 8262 name = "_at_vercel_slash_build-utils"; 8263 packageName = "@vercel/build-utils"; 8264 + version = "10.2.0"; 8265 src = fetchurl { 8266 + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-10.2.0.tgz"; 8267 + sha512 = "NBEPnxVA23RwHNqYk1Afpoz7sbZAmVJccY9L48LQlymDBX6lP+JTrYSXGTjUKXYIH3BJsLCe/9U3kUJ7Touk7Q=="; 8268 }; 8269 }; 8270 "@vercel/error-utils-2.0.3" = { ··· 8276 sha512 = "CqC01WZxbLUxoiVdh9B/poPbNpY9U+tO1N9oWHwTl5YAZxcqXmmWJ8KNMFItJCUUWdY3J3xv8LvAuQv2KZ5YdQ=="; 8277 }; 8278 }; 8279 + "@vercel/fun-1.1.5" = { 8280 name = "_at_vercel_slash_fun"; 8281 packageName = "@vercel/fun"; 8282 + version = "1.1.5"; 8283 src = fetchurl { 8284 + url = "https://registry.npmjs.org/@vercel/fun/-/fun-1.1.5.tgz"; 8285 + sha512 = "vRuR7qlsl8CgdeQIhfgLDtbMEuxqltx6JWFahB7Q5VOKMo/sFZV1rCxIHsHsJP4yYY2hoZqlT/EUkfG1tfPicg=="; 8286 }; 8287 }; 8288 "@vercel/gatsby-plugin-vercel-analytics-1.0.11" = { ··· 8294 sha512 = "iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw=="; 8295 }; 8296 }; 8297 + "@vercel/gatsby-plugin-vercel-builder-2.0.74" = { 8298 name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; 8299 packageName = "@vercel/gatsby-plugin-vercel-builder"; 8300 + version = "2.0.74"; 8301 src = fetchurl { 8302 + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.74.tgz"; 8303 + sha512 = "2F8ze7krSuPfblZK2PSAX8KE3UO1Tq9zaEk3fU7JIkb46lbDftV0GjRIqcuiK1fR1eoApqHILqD81vvgKW8OAA=="; 8304 }; 8305 }; 8306 "@vercel/go-3.2.1" = { ··· 8312 sha512 = "ezjmuUvLigH9V4egEaX0SZ+phILx8lb+Zkp1iTqKI+yl/ibPAtVo5o+dLSRAXU9U01LBmaLu3O8Oxd/JpWYCOw=="; 8313 }; 8314 }; 8315 + "@vercel/hydrogen-1.2.0" = { 8316 name = "_at_vercel_slash_hydrogen"; 8317 packageName = "@vercel/hydrogen"; 8318 + version = "1.2.0"; 8319 src = fetchurl { 8320 + url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-1.2.0.tgz"; 8321 + sha512 = "kdZp8cTVLoNmnu24wtoQPu9ZO+uB00zvDMTOXlQmNdq/V3k0mQa/Q5k2B8nliBQ3BMiBasoXxMKv59+F8rYvDw=="; 8322 }; 8323 }; 8324 + "@vercel/next-4.7.1" = { 8325 name = "_at_vercel_slash_next"; 8326 packageName = "@vercel/next"; 8327 + version = "4.7.1"; 8328 src = fetchurl { 8329 + url = "https://registry.npmjs.org/@vercel/next/-/next-4.7.1.tgz"; 8330 + sha512 = "Q8GxgDpn5m3uhHhzyOYWO26yypN5Ztr36U+5YzT3fIwhCiUPYfIWm1LMnAj23S9qV5WMAbIHYgdURTz4EBV+xA=="; 8331 }; 8332 }; 8333 "@vercel/nft-0.27.10" = { ··· 8339 sha512 = "zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg=="; 8340 }; 8341 }; 8342 + "@vercel/node-5.1.8" = { 8343 name = "_at_vercel_slash_node"; 8344 packageName = "@vercel/node"; 8345 + version = "5.1.8"; 8346 src = fetchurl { 8347 + url = "https://registry.npmjs.org/@vercel/node/-/node-5.1.8.tgz"; 8348 + sha512 = "fID4QklP0yDv8Gvv0EZWmsacNhSTyoS0f4mU4HA2pwY4847wpGSFrD5tGFsOhf+3hgGAWbwsJ+dA799jCEcyiQ=="; 8349 }; 8350 }; 8351 "@vercel/python-4.7.1" = { ··· 8357 sha512 = "H4g/5e8unII4oQ+KN5IUvTZSzHmj+lLYDkAK15QGYgAxBtE/mHUvEZpPPo7DPUDIyfq8ybWB1bmk7H5kEahubQ=="; 8358 }; 8359 }; 8360 + "@vercel/redwood-2.3.0" = { 8361 name = "_at_vercel_slash_redwood"; 8362 packageName = "@vercel/redwood"; 8363 + version = "2.3.0"; 8364 src = fetchurl { 8365 + url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.3.0.tgz"; 8366 + sha512 = "MybbGdMZY0/CrpgEGafJZ+8HlqubWnEpl/KX3WClCZPrT2qcyZyJEh9AVN7/KIpQUdB2MQLIRVMQFQ+kKcRdsA=="; 8367 }; 8368 }; 8369 + "@vercel/remix-builder-5.4.0" = { 8370 name = "_at_vercel_slash_remix-builder"; 8371 packageName = "@vercel/remix-builder"; 8372 + version = "5.4.0"; 8373 src = fetchurl { 8374 + url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-5.4.0.tgz"; 8375 + sha512 = "qCZq2ZVtWKQhJSTo1fu79xxb0Ne94u9DxIqyJ11s75PqUzeqROau7Y6we9CNTEBvl/zbcXNTjidHkIlfXjBrlQ=="; 8376 }; 8377 }; 8378 "@vercel/ruby-2.2.0" = { ··· 8384 sha512 = "FJF9gKVNHAljGOgV6zS5ou2N7ZgjOqMMtcPA5lsJEUI5/AZzVDWCmtcowTP80wEtHuupkd7d7M399FA082kXYQ=="; 8385 }; 8386 }; 8387 + "@vercel/static-build-2.7.0" = { 8388 name = "_at_vercel_slash_static-build"; 8389 packageName = "@vercel/static-build"; 8390 + version = "2.7.0"; 8391 src = fetchurl { 8392 + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.7.0.tgz"; 8393 + sha512 = "WX/0eZGShQAHgB+9OdcQbyHogfWHrYRG9uTLMH9c4a5lJzlw/41n3SN+RUzcxzwXK5/GhVu4ZQQS2aSMOPAHaA=="; 8394 }; 8395 }; 8396 "@vercel/static-config-3.0.0" = { ··· 8402 sha512 = "2qtvcBJ1bGY0dYGYh3iM7yGKkk971FujLEDXzuW5wcZsPr1GSEjO/w2iSr3qve6nDDtBImsGoDEnus5FI4+fIw=="; 8403 }; 8404 }; 8405 "@vue/compiler-core-3.5.13" = { 8406 name = "_at_vue_slash_compiler-core"; 8407 packageName = "@vue/compiler-core"; ··· 9194 sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; 9195 }; 9196 }; 9197 "@zeit/schemas-2.36.0" = { 9198 name = "_at_zeit_slash_schemas"; 9199 packageName = "@zeit/schemas"; ··· 9212 sha512 = "odWb1qUzt0dIOEUPyWBEpFDYQPRjEMr/dbHHAfgBkVkYR9aO7Zo+I7oYWrXIxl+cKlC7+49ftPm8uJxL1MA9kw=="; 9213 }; 9214 }; 9215 "JSONStream-0.10.0" = { 9216 name = "JSONStream"; 9217 packageName = "JSONStream"; ··· 9716 sha512 = "S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg=="; 9717 }; 9718 }; 9719 "ansi-0.3.1" = { 9720 name = "ansi"; 9721 packageName = "ansi"; ··· 9903 src = fetchurl { 9904 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 9905 sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 9906 }; 9907 }; 9908 "ansi-styles-6.2.1" = { ··· 10949 sha512 = "qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ=="; 10950 }; 10951 }; 10952 "b4a-1.6.7" = { 10953 name = "b4a"; 10954 packageName = "b4a"; ··· 10976 sha512 = "+qeGXSbHZwinZzO6R3wP+6XDKup83Pgg2B3TQt2zwfDdgC7NqT9Kd3ws7iqk53zAO/8iOIRU6VUyUzt2LDE3Eg=="; 10977 }; 10978 }; 10979 "babel-plugin-syntax-jsx-6.18.0" = { 10980 name = "babel-plugin-syntax-jsx"; 10981 packageName = "babel-plugin-syntax-jsx"; ··· 11273 sha512 = "3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA=="; 11274 }; 11275 }; 11276 "bencode-0.7.0" = { 11277 name = "bencode"; 11278 packageName = "bencode"; ··· 11379 src = fetchurl { 11380 url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"; 11381 sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="; 11382 }; 11383 }; 11384 "binary-extensions-1.13.1" = { ··· 12326 sha512 = "ovBpjmsgd/teRmgcPh23d4gJvxDoXtAzEL9xTfMU8Yc2kqCDb7L9jAG0XHl1nzuGl+h3ebCIF1i62UFyA9V/2Q=="; 12327 }; 12328 }; 12329 "bytes-3.0.0" = { 12330 name = "bytes"; 12331 packageName = "bytes"; ··· 12380 sha512 = "/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ=="; 12381 }; 12382 }; 12383 "cacache-19.0.1" = { 12384 name = "cacache"; 12385 packageName = "cacache"; ··· 12677 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 12678 }; 12679 }; 12680 + "caniuse-lite-1.0.30001700" = { 12681 name = "caniuse-lite"; 12682 packageName = "caniuse-lite"; 12683 + version = "1.0.30001700"; 12684 src = fetchurl { 12685 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz"; 12686 + sha512 = "2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ=="; 12687 }; 12688 }; 12689 "canvas-2.11.2" = { ··· 12758 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 12759 }; 12760 }; 12761 + "cdk8s-2.69.43" = { 12762 name = "cdk8s"; 12763 packageName = "cdk8s"; 12764 + version = "2.69.43"; 12765 src = fetchurl { 12766 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.69.43.tgz"; 12767 + sha512 = "H7De5ozBSa00VlLN7MfA392fGVCV1nOkeEf3tHs/6aahOxd6mOcXkmxZvEl4/iG+TGx8IAnwyg2K3qRMRniqhg=="; 12768 }; 12769 }; 12770 "cdk8s-plus-28-2.5.6" = { ··· 12999 src = fetchurl { 13000 url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz"; 13001 sha512 = "8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA=="; 13002 }; 13003 }; 13004 "cheerio-1.0.0-rc.12" = { ··· 13379 sha512 = "tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A=="; 13380 }; 13381 }; 13382 "cli-spinners-2.9.2" = { 13383 name = "cli-spinners"; 13384 packageName = "cli-spinners"; ··· 13676 sha512 = "A5C0Cyf2H8sKsHqX0tvIWRXw5/PK++3Dc0lDbsugr90nOECLLuSPahVQBG8pgmgiXgm/TzBWMqI2rWdZwHduAw=="; 13677 }; 13678 }; 13679 "cmdln-3.2.1" = { 13680 name = "cmdln"; 13681 packageName = "cmdln"; ··· 13703 sha512 = "QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ=="; 13704 }; 13705 }; 13706 "code-block-writer-10.1.1" = { 13707 name = "code-block-writer"; 13708 packageName = "code-block-writer"; ··· 13748 sha512 = "lxsbbcSMxCdT+9wUv1AvBH9791andoWDcQ6s7ZK6KsMZ+UkRLO3obzhi7Zm+RIA3lHecqzaGmOKyRnu0Dx/Zew=="; 13749 }; 13750 }; 13751 + "codemaker-1.108.0" = { 13752 name = "codemaker"; 13753 packageName = "codemaker"; 13754 + version = "1.108.0"; 13755 src = fetchurl { 13756 + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.108.0.tgz"; 13757 + sha512 = "EwMvLf3tkBXllS4hZbr3WYm4kZiAH5Spd01MaRd+yJ636RfwIvpGgCGVqYbjW0RJ7yyfnakZ0HvCc8PxqyYWbA=="; 13758 }; 13759 }; 13760 "collapse-white-space-2.1.0" = { ··· 13901 sha512 = "BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w=="; 13902 }; 13903 }; 13904 "combine-errors-3.0.3" = { 13905 name = "combine-errors"; 13906 packageName = "combine-errors"; ··· 14124 src = fetchurl { 14125 url = "https://registry.npmjs.org/commist/-/commist-1.1.0.tgz"; 14126 sha512 = "rraC8NXWOEjhADbZe9QBNzLAN5Q3fsTPQtBV+fEVj6xKIgDgNiEVE6ZNfHpZOqfQ21YUzfVNUXLOEZquYvQPPg=="; 14127 }; 14128 }; 14129 "common-tags-1.8.2" = { ··· 14622 sha512 = "eOvlTO6OcySPyyyk8pKz2dP4jjElYunj9hn9/s0OB+gapTO8zwS9UQWrZ1pmF2hFs3vw1xhonOLGcGjy/zgsuA=="; 14623 }; 14624 }; 14625 "conventional-changelog-core-8.0.0" = { 14626 name = "conventional-changelog-core"; 14627 packageName = "conventional-changelog-core"; ··· 14676 sha512 = "gGNphSb/opc76n2eWaO6ma4/Wqu3tpa2w7i9WYqI6Cs2fncDSI2/ihOfMvXveeTTeld0oFvwMVNV+IYQIk3F3g=="; 14677 }; 14678 }; 14679 "conventional-changelog-preset-loader-5.0.0" = { 14680 name = "conventional-changelog-preset-loader"; 14681 packageName = "conventional-changelog-preset-loader"; ··· 14685 sha512 = "SetDSntXLk8Jh1NOAl1Gu5uLiCNSYenB5tm0YVeZKePRIgDW9lQImromTwLa3c/Gae298tsgOM+/CYT9XAl0NA=="; 14686 }; 14687 }; 14688 + "conventional-changelog-writer-8.0.1" = { 14689 name = "conventional-changelog-writer"; 14690 packageName = "conventional-changelog-writer"; 14691 + version = "8.0.1"; 14692 src = fetchurl { 14693 + url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.0.1.tgz"; 14694 + sha512 = "hlqcy3xHred2gyYg/zXSMXraY2mjAYYo0msUCpK+BGyaVJMFCKWVXPIHiaacGO2GGp13kvHWXFhYmxT4QQqW3Q=="; 14695 }; 14696 }; 14697 "conventional-commits-filter-5.0.0" = { ··· 14703 sha512 = "tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q=="; 14704 }; 14705 }; 14706 "conventional-commits-parser-5.0.0" = { 14707 name = "conventional-commits-parser"; 14708 packageName = "conventional-commits-parser"; ··· 14712 sha512 = "ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA=="; 14713 }; 14714 }; 14715 + "conventional-commits-parser-6.1.0" = { 14716 name = "conventional-commits-parser"; 14717 packageName = "conventional-commits-parser"; 14718 + version = "6.1.0"; 14719 src = fetchurl { 14720 + url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.1.0.tgz"; 14721 + sha512 = "5nxDo7TwKB5InYBl4ZC//1g9GRwB/F3TXOGR9hgUjMGfvSP4Vu5NkpNro2+1+TIEy1vwxApl5ircECr2ri5JIw=="; 14722 }; 14723 }; 14724 "convert-hrtime-3.0.0" = { ··· 15207 sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="; 15208 }; 15209 }; 15210 + "cspell-config-lib-8.17.5" = { 15211 name = "cspell-config-lib"; 15212 packageName = "cspell-config-lib"; 15213 + version = "8.17.5"; 15214 src = fetchurl { 15215 + url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.17.5.tgz"; 15216 + sha512 = "XDc+UJO5RZ9S9e2Ajz332XjT7dv6Og2UqCiSnAlvHt7t/MacLHSPARZFIivheObNkWZ7E1iWI681RxKoH4o40w=="; 15217 }; 15218 }; 15219 "cspell-dict-vimlang-1.0.1" = { ··· 15225 sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; 15226 }; 15227 }; 15228 + "cspell-dictionary-8.17.5" = { 15229 name = "cspell-dictionary"; 15230 packageName = "cspell-dictionary"; 15231 + version = "8.17.5"; 15232 src = fetchurl { 15233 + url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.17.5.tgz"; 15234 + sha512 = "O/Uuhv1RuDu+5WYQml0surudweaTvr+2YJSmPSdlihByUSiogCbpGqwrRow7wQv/C5p1W1FlFjotvUfoR0fxHA=="; 15235 }; 15236 }; 15237 + "cspell-gitignore-8.17.5" = { 15238 name = "cspell-gitignore"; 15239 packageName = "cspell-gitignore"; 15240 + version = "8.17.5"; 15241 src = fetchurl { 15242 + url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.17.5.tgz"; 15243 + sha512 = "I27fgOUZzH14jeIYo65LooB60fZ42f6OJL1lOR9Mk6IrIlDyUtzherGR+xx5KshK2katYkX42Qu4zsVYM6VFPA=="; 15244 }; 15245 }; 15246 "cspell-glob-0.1.25" = { ··· 15252 sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; 15253 }; 15254 }; 15255 + "cspell-glob-8.17.5" = { 15256 name = "cspell-glob"; 15257 packageName = "cspell-glob"; 15258 + version = "8.17.5"; 15259 src = fetchurl { 15260 + url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.17.5.tgz"; 15261 + sha512 = "OXquou7UykInlGV5et5lNKYYrW0dwa28aEF995x1ocANND7o0bbHmFlbgyci/Lp4uFQai8sifmfFJbuIg2IC/A=="; 15262 }; 15263 }; 15264 + "cspell-grammar-8.17.5" = { 15265 name = "cspell-grammar"; 15266 packageName = "cspell-grammar"; 15267 + version = "8.17.5"; 15268 src = fetchurl { 15269 + url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.17.5.tgz"; 15270 + sha512 = "st2n+FVw25MvMbsGb3TeJNRr6Oih4g14rjOd/UJN0qn+ceH360SAShUFqSd4kHHu2ADazI/TESFU6FRtMTPNOg=="; 15271 }; 15272 }; 15273 "cspell-io-4.1.7" = { ··· 15279 sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; 15280 }; 15281 }; 15282 + "cspell-io-8.17.5" = { 15283 name = "cspell-io"; 15284 packageName = "cspell-io"; 15285 + version = "8.17.5"; 15286 src = fetchurl { 15287 + url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.17.5.tgz"; 15288 + sha512 = "oevM/8l0s6nc1NCYPqNFumrW50QSHoa6wqUT8cWs09gtZdE2AWG0U6bIE8ZEVz6e6FxS+6IenGKTdUUwP0+3fg=="; 15289 }; 15290 }; 15291 "cspell-lib-4.3.12" = { ··· 15297 sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; 15298 }; 15299 }; 15300 + "cspell-lib-8.17.5" = { 15301 name = "cspell-lib"; 15302 packageName = "cspell-lib"; 15303 + version = "8.17.5"; 15304 src = fetchurl { 15305 + url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.17.5.tgz"; 15306 + sha512 = "S3KuOrcST1d2BYmTXA+hnbRdho5n3w5GUvEaCx3QZQBwAPfLpAwJbe2yig1TxBpyEJ5LqP02i/mDg1pUCOP0hQ=="; 15307 }; 15308 }; 15309 "cspell-trie-lib-4.2.8" = { ··· 15315 sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; 15316 }; 15317 }; 15318 + "cspell-trie-lib-8.17.5" = { 15319 name = "cspell-trie-lib"; 15320 packageName = "cspell-trie-lib"; 15321 + version = "8.17.5"; 15322 src = fetchurl { 15323 + url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.17.5.tgz"; 15324 + sha512 = "9hjI3nRQxtGEua6CgnLbK3sGHLx9dXR/BHwI/csRL4dN5GGRkE5X3CCoy1RJVL7iGFLIzi43+L10xeFRmWniKw=="; 15325 }; 15326 }; 15327 "cspell-util-bundle-4.1.11" = { ··· 15630 sha512 = "MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw=="; 15631 }; 15632 }; 15633 "d3-array-3.2.4" = { 15634 name = "d3-array"; 15635 packageName = "d3-array"; ··· 15639 sha512 = "tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg=="; 15640 }; 15641 }; 15642 "d3-color-3.1.0" = { 15643 name = "d3-color"; 15644 packageName = "d3-color"; ··· 15648 sha512 = "zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="; 15649 }; 15650 }; 15651 "d3-delaunay-6.0.4" = { 15652 name = "d3-delaunay"; 15653 packageName = "d3-delaunay"; ··· 15666 sha512 = "rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg=="; 15667 }; 15668 }; 15669 "d3-dsv-3.0.1" = { 15670 name = "d3-dsv"; 15671 packageName = "d3-dsv"; ··· 15675 sha512 = "UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q=="; 15676 }; 15677 }; 15678 "d3-force-3.0.0" = { 15679 name = "d3-force"; 15680 packageName = "d3-force"; ··· 15711 sha512 = "p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg=="; 15712 }; 15713 }; 15714 "d3-hierarchy-3.1.2" = { 15715 name = "d3-hierarchy"; 15716 packageName = "d3-hierarchy"; ··· 15738 sha512 = "p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ=="; 15739 }; 15740 }; 15741 "d3-quadtree-3.0.1" = { 15742 name = "d3-quadtree"; 15743 packageName = "d3-quadtree"; ··· 15747 sha512 = "04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw=="; 15748 }; 15749 }; 15750 "d3-scale-4.0.2" = { 15751 name = "d3-scale"; 15752 packageName = "d3-scale"; ··· 15763 src = fetchurl { 15764 url = "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz"; 15765 sha512 = "A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ=="; 15766 }; 15767 }; 15768 "d3-shape-3.2.0" = { ··· 15801 sha512 = "ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA=="; 15802 }; 15803 }; 15804 "dargs-8.1.0" = { 15805 name = "dargs"; 15806 packageName = "dargs"; ··· 15961 src = fetchurl { 15962 url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; 15963 sha512 = "GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw=="; 15964 }; 15965 }; 15966 "dayjs-1.11.12" = { ··· 16233 sha512 = "1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw=="; 16234 }; 16235 }; 16236 "deep-equal-1.1.2" = { 16237 name = "deep-equal"; 16238 packageName = "deep-equal"; ··· 16530 sha512 = "S0OhIK7sIyAsph8hVH/LMCTDL3jozKtlrPx3dMQrlE2nAlXTquTT+AcOufphDMTQqLkfn4acvfiem9I1IWZ4jQ=="; 16531 }; 16532 }; 16533 "deps-regex-0.2.0" = { 16534 name = "deps-regex"; 16535 packageName = "deps-regex"; ··· 16638 sha512 = "CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg=="; 16639 }; 16640 }; 16641 "detect-port-1.6.1" = { 16642 name = "detect-port"; 16643 packageName = "detect-port"; ··· 16744 src = fetchurl { 16745 url = "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz"; 16746 sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; 16747 }; 16748 }; 16749 "diff2html-3.4.51" = { ··· 17457 sha512 = "UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA=="; 17458 }; 17459 }; 17460 + "electron-to-chromium-1.5.104" = { 17461 name = "electron-to-chromium"; 17462 packageName = "electron-to-chromium"; 17463 + version = "1.5.104"; 17464 src = fetchurl { 17465 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.104.tgz"; 17466 + sha512 = "Us9M2L4cO/zMBqVkJtnj353nQhMju9slHm62NprKTmdF3HH8wYOtNvDFq/JB2+ZRoGLzdvYDiATlMHs98XBM1g=="; 17467 }; 17468 }; 17469 "elegant-spinner-1.0.1" = { ··· 17601 sha512 = "ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A=="; 17602 }; 17603 }; 17604 "end-of-stream-0.1.5" = { 17605 name = "end-of-stream"; 17606 packageName = "end-of-stream"; ··· 17736 sha512 = "ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg=="; 17737 }; 17738 }; 17739 "enquirer-2.4.1" = { 17740 name = "enquirer"; 17741 packageName = "enquirer"; ··· 17761 src = fetchurl { 17762 url = "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz"; 17763 sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="; 17764 }; 17765 }; 17766 "entities-2.2.0" = { ··· 17817 sha512 = "dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A=="; 17818 }; 17819 }; 17820 "envinfo-7.14.0" = { 17821 name = "envinfo"; 17822 packageName = "envinfo"; ··· 18087 sha512 = "wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA=="; 18088 }; 18089 }; 18090 + "esbuild-0.24.2" = { 18091 name = "esbuild"; 18092 packageName = "esbuild"; 18093 + version = "0.24.2"; 18094 src = fetchurl { 18095 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz"; 18096 + sha512 = "+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA=="; 18097 }; 18098 }; 18099 + "esbuild-0.25.0" = { 18100 name = "esbuild"; 18101 packageName = "esbuild"; 18102 + version = "0.25.0"; 18103 src = fetchurl { 18104 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz"; 18105 + sha512 = "BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw=="; 18106 }; 18107 }; 18108 "esbuild-android-64-0.14.47" = { ··· 18429 sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; 18430 }; 18431 }; 18432 + "eslint-9.21.0" = { 18433 name = "eslint"; 18434 packageName = "eslint"; 18435 + version = "9.21.0"; 18436 src = fetchurl { 18437 + url = "https://registry.npmjs.org/eslint/-/eslint-9.21.0.tgz"; 18438 + sha512 = "KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg=="; 18439 }; 18440 }; 18441 "eslint-formatter-pretty-5.0.0" = { ··· 18472 src = fetchurl { 18473 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"; 18474 sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; 18475 }; 18476 }; 18477 "eslint-scope-8.2.0" = { ··· 18580 src = fetchurl { 18581 url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"; 18582 sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; 18583 }; 18584 }; 18585 "esprima-2.7.3" = { ··· 18870 sha512 = "Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw=="; 18871 }; 18872 }; 18873 "execa-5.1.1" = { 18874 name = "execa"; 18875 packageName = "execa"; ··· 19392 sha512 = "xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw=="; 19393 }; 19394 }; 19395 + "fast-xml-parser-4.5.3" = { 19396 name = "fast-xml-parser"; 19397 packageName = "fast-xml-parser"; 19398 + version = "4.5.3"; 19399 src = fetchurl { 19400 + url = "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz"; 19401 + sha512 = "RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig=="; 19402 }; 19403 }; 19404 "fastest-levenshtein-1.0.16" = { ··· 20031 sha512 = "+X3/0hl9in0FJPsPB5/xTpkxxMzDSoA4cyon46HtXhrfEbpqBvKxpR+HJGqMjKv4jcBmoLjEtTVIAADJjLjv8A=="; 20032 }; 20033 }; 20034 + "flatted-3.3.3" = { 20035 name = "flatted"; 20036 packageName = "flatted"; 20037 + version = "3.3.3"; 20038 src = fetchurl { 20039 + url = "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz"; 20040 + sha512 = "GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg=="; 20041 }; 20042 }; 20043 "flatten-0.0.1" = { ··· 20184 sha512 = "J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw=="; 20185 }; 20186 }; 20187 + "foreground-child-3.3.1" = { 20188 name = "foreground-child"; 20189 packageName = "foreground-child"; 20190 + version = "3.3.1"; 20191 src = fetchurl { 20192 + url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz"; 20193 + sha512 = "gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw=="; 20194 }; 20195 }; 20196 "forever-agent-0.6.1" = { ··· 20362 src = fetchurl { 20363 url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz"; 20364 sha512 = "OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g=="; 20365 }; 20366 }; 20367 "fs-chunk-store-1.7.0" = { ··· 20814 sha512 = "vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ=="; 20815 }; 20816 }; 20817 + "get-intrinsic-1.3.0" = { 20818 name = "get-intrinsic"; 20819 packageName = "get-intrinsic"; 20820 + version = "1.3.0"; 20821 src = fetchurl { 20822 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz"; 20823 + sha512 = "9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="; 20824 }; 20825 }; 20826 "get-package-info-1.0.0" = { ··· 20841 sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; 20842 }; 20843 }; 20844 "get-port-4.2.0" = { 20845 name = "get-port"; 20846 packageName = "get-port"; ··· 20848 src = fetchurl { 20849 url = "https://registry.npmjs.org/get-port/-/get-port-4.2.0.tgz"; 20850 sha512 = "/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw=="; 20851 }; 20852 }; 20853 "get-proto-1.0.1" = { ··· 20958 sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="; 20959 }; 20960 }; 20961 "get-stream-6.0.1" = { 20962 name = "get-stream"; 20963 packageName = "get-stream"; ··· 21057 sha512 = "PdNkH2snpXsKIzho6OWMZKEl+KZG6Zm+1ghQIDi0tEq1sz/S1tDjvNuYrX2ZpomalHAB89OUQim8O6vN+jesNQ=="; 21058 }; 21059 }; 21060 "git-raw-commits-4.0.0" = { 21061 name = "git-raw-commits"; 21062 packageName = "git-raw-commits"; ··· 21075 sha512 = "I2ZXrXeOc0KrCvC7swqtIFXFN+rbjnC7b2T943tvemIOVNl+XP8YnA9UVwqFhzzLClnSA60KR/qEjLpXzs73Qg=="; 21076 }; 21077 }; 21078 "git-repo-info-2.1.1" = { 21079 name = "git-repo-info"; 21080 packageName = "git-repo-info"; ··· 21084 sha512 = "8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg=="; 21085 }; 21086 }; 21087 "git-semver-tags-8.0.0" = { 21088 name = "git-semver-tags"; 21089 packageName = "git-semver-tags"; ··· 21102 sha512 = "W2Zo3sCiq5Hqv1/FLsNmGomkXdyimmkHncGzqjBHh7nWx+CbH5dkWGb6CiFdknooL7wfeZJ3gz14KrXl/gotCw=="; 21103 }; 21104 }; 21105 "github-from-package-0.0.0" = { 21106 name = "github-from-package"; 21107 packageName = "github-from-package"; ··· 21208 src = fetchurl { 21209 url = "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz"; 21210 sha512 = "r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ=="; 21211 }; 21212 }; 21213 "glob-base-0.3.0" = { ··· 21633 sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; 21634 }; 21635 }; 21636 "graphlib-2.1.8" = { 21637 name = "graphlib"; 21638 packageName = "graphlib"; ··· 22083 sha512 = "yGkCfPkkfCyiLfK6KEl/orMDr/zgCnq/NaO9HfULx6/Zga5fso5eqQA5Ov/JZVqACygvw9shRYWgXNcG2ilo7w=="; 22084 }; 22085 }; 22086 + "hast-util-to-html-9.0.5" = { 22087 name = "hast-util-to-html"; 22088 packageName = "hast-util-to-html"; 22089 + version = "9.0.5"; 22090 src = fetchurl { 22091 + url = "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz"; 22092 + sha512 = "OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw=="; 22093 }; 22094 }; 22095 "hast-util-to-nlcst-2.2.0" = { ··· 22929 sha512 = "PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ=="; 22930 }; 22931 }; 22932 "ignore-walk-7.0.0" = { 22933 name = "ignore-walk"; 22934 packageName = "ignore-walk"; ··· 23071 src = fetchurl { 23072 url = "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz"; 23073 sha512 = "rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw=="; 23074 }; 23075 }; 23076 "import-local-3.2.0" = { ··· 23280 sha512 = "+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw=="; 23281 }; 23282 }; 23283 "ink-3.2.0" = { 23284 name = "ink"; 23285 packageName = "ink"; ··· 24774 sha512 = "ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="; 24775 }; 24776 }; 24777 "is-stream-1.1.0" = { 24778 name = "is-stream"; 24779 packageName = "is-stream"; ··· 24781 src = fetchurl { 24782 url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; 24783 sha512 = "uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ=="; 24784 }; 24785 }; 24786 "is-stream-2.0.1" = { ··· 24835 src = fetchurl { 24836 url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz"; 24837 sha512 = "9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="; 24838 }; 24839 }; 24840 "is-text-path-2.0.0" = { ··· 25188 sha512 = "OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="; 25189 }; 25190 }; 25191 + "jackspeak-4.1.0" = { 25192 name = "jackspeak"; 25193 packageName = "jackspeak"; 25194 + version = "4.1.0"; 25195 src = fetchurl { 25196 + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz"; 25197 + sha512 = "9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw=="; 25198 }; 25199 }; 25200 "jade-0.27.0" = { ··· 25213 src = fetchurl { 25214 url = "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz"; 25215 sha512 = "2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA=="; 25216 }; 25217 }; 25218 "jest-worker-27.5.1" = { ··· 25485 sha512 = "qxiV/NMucgvHHupZJ36QACejcgZ3qY1FzjVHMOBmDHm+dISZ39p7dH7Hiq2ErMEwCDzdvQgR1OwCsUnrBH6oVQ=="; 25486 }; 25487 }; 25488 + "jsii-5.5.23" = { 25489 name = "jsii"; 25490 packageName = "jsii"; 25491 + version = "5.5.23"; 25492 src = fetchurl { 25493 + url = "https://registry.npmjs.org/jsii/-/jsii-5.5.23.tgz"; 25494 + sha512 = "HtAu1yGOVbl8dHHinkOOO3Ri01dDc/RrZ7IYlw/OSwhSgH0LB+x8tBWbhcacYE20mMIc/2GbADZOrcVj5byyBg=="; 25495 }; 25496 }; 25497 + "jsii-5.7.6" = { 25498 name = "jsii"; 25499 packageName = "jsii"; 25500 + version = "5.7.6"; 25501 src = fetchurl { 25502 + url = "https://registry.npmjs.org/jsii/-/jsii-5.7.6.tgz"; 25503 + sha512 = "yh+LxT7tUTs30R5nbmI5hcjHaxqHdrYyd9jjR9uDWbkW4Aj8yvqX7U6eaOzQZPvolnBZ1pvgelIfO/KRqzSfog=="; 25504 }; 25505 }; 25506 "jsii-pacmak-1.102.0" = { ··· 25512 sha512 = "3/nqBYNH8n/5IWI0sBFBYl1yATokEDUDQtYFLjzk7oXNWpUJ23/encI78Cs55ZS6UXcfWN3xczGLqCWnsgEpnw=="; 25513 }; 25514 }; 25515 + "jsii-pacmak-1.108.0" = { 25516 name = "jsii-pacmak"; 25517 packageName = "jsii-pacmak"; 25518 + version = "1.108.0"; 25519 src = fetchurl { 25520 + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.108.0.tgz"; 25521 + sha512 = "qj/dGQkALH/YTMGUIyg+EgFD9+WXyrJPug8cwQureNyRK90gHLrTMo7oFQhhTlW2OVH6WAGlQO5FPLtkbujgmQ=="; 25522 }; 25523 }; 25524 + "jsii-reflect-1.108.0" = { 25525 name = "jsii-reflect"; 25526 packageName = "jsii-reflect"; 25527 + version = "1.108.0"; 25528 src = fetchurl { 25529 + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.108.0.tgz"; 25530 + sha512 = "szlgEA2zFJhtSId2/GYHqosofkXgmkdo+baMMbv0HWt1UuwUK+pI+nYP9WX7mkNoNgIS1tVLre6AZZAZ7RmOfg=="; 25531 }; 25532 }; 25533 "jsii-rosetta-5.4.30" = { ··· 25539 sha512 = "DyJlVO1L7p37poEtja3ktr3zGv15kvnkVrJ+uPuv5+QOvSs2XTTzi2qsgt/l7N/6yXelQ2LDvSDzXfEY08UZjg=="; 25540 }; 25541 }; 25542 + "jsii-rosetta-5.7.6" = { 25543 name = "jsii-rosetta"; 25544 packageName = "jsii-rosetta"; 25545 + version = "5.7.6"; 25546 src = fetchurl { 25547 + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.7.6.tgz"; 25548 + sha512 = "yimRfvgFM4+ZctGBWadQe3Yplxpp21iSWZzYGncMCV+oaZ1IlTrq4AxGjcoij+bQFdp97hAXoDg66pFmvWOkBg=="; 25549 }; 25550 }; 25551 "jsii-srcmak-0.1.1236" = { ··· 25726 src = fetchurl { 25727 url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 25728 sha512 = "Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="; 25729 }; 25730 }; 25731 "json-stringify-pretty-compact-4.0.0" = { ··· 25782 sha512 = "o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w=="; 25783 }; 25784 }; 25785 "jsonc-parser-3.3.1" = { 25786 name = "jsonc-parser"; 25787 packageName = "jsonc-parser"; ··· 25870 src = fetchurl { 25871 url = "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-10.2.0.tgz"; 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=="; 25882 }; 25883 }; 25884 "jsonpointer-5.0.1" = { ··· 25935 sha512 = "gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ=="; 25936 }; 25937 }; 25938 "jszip-3.8.0" = { 25939 name = "jszip"; 25940 packageName = "jszip"; ··· 25962 sha512 = "Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ=="; 25963 }; 25964 }; 25965 "jwa-1.4.1" = { 25966 name = "jwa"; 25967 packageName = "jwa"; ··· 26448 sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; 26449 }; 26450 }; 26451 "lie-3.1.1" = { 26452 name = "lie"; 26453 packageName = "lie"; ··· 26536 src = fetchurl { 26537 url = "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz"; 26538 sha512 = "7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="; 26539 }; 26540 }; 26541 "lines-and-columns-2.0.4" = { ··· 26709 sha512 = "3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ=="; 26710 }; 26711 }; 26712 "load-json-file-6.2.0" = { 26713 name = "load-json-file"; 26714 packageName = "load-json-file"; ··· 27220 src = fetchurl { 27221 url = "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz"; 27222 sha512 = "DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA=="; 27223 }; 27224 }; 27225 "lodash.isnil-4.0.0" = { ··· 27708 sha512 = "WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g=="; 27709 }; 27710 }; 27711 + "long-5.3.1" = { 27712 name = "long"; 27713 packageName = "long"; 27714 + version = "5.3.1"; 27715 src = fetchurl { 27716 + url = "https://registry.npmjs.org/long/-/long-5.3.1.tgz"; 27717 + sha512 = "ka87Jz3gcx/I7Hal94xaN2tZEOPoUOEVftkQqZx2EeQRN7LGdfLlI3FvZ+7WDplm+vK2Urx9ULrvSowtdCieng=="; 27718 }; 27719 }; 27720 "long-timeout-0.1.1" = { ··· 28087 sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 28088 }; 28089 }; 28090 "make-error-1.3.6" = { 28091 name = "make-error"; 28092 packageName = "make-error"; ··· 28105 sha512 = "NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w=="; 28106 }; 28107 }; 28108 "make-fetch-happen-14.0.3" = { 28109 name = "make-fetch-happen"; 28110 packageName = "make-fetch-happen"; ··· 28184 src = fetchurl { 28185 url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"; 28186 sha512 = "4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w=="; 28187 }; 28188 }; 28189 "markdown-it-13.0.2" = { ··· 28886 src = fetchurl { 28887 url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz"; 28888 sha512 = "TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA=="; 28889 }; 28890 }; 28891 "meow-9.0.0" = { ··· 29851 sha512 = "ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ=="; 29852 }; 29853 }; 29854 "minimatch-3.0.8" = { 29855 name = "minimatch"; 29856 packageName = "minimatch"; ··· 29896 sha512 = "sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw=="; 29897 }; 29898 }; 29899 "minimatch-9.0.1" = { 29900 name = "minimatch"; 29901 packageName = "minimatch"; ··· 29912 src = fetchurl { 29913 url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz"; 29914 sha512 = "PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg=="; 29915 }; 29916 }; 29917 "minimatch-9.0.5" = { ··· 29968 sha512 = "DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="; 29969 }; 29970 }; 29971 "minipass-5.0.0" = { 29972 name = "minipass"; 29973 packageName = "minipass"; ··· 30020 src = fetchurl { 30021 url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz"; 30022 sha512 = "LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA=="; 30023 }; 30024 }; 30025 "minipass-fetch-4.0.0" = { ··· 30166 sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; 30167 }; 30168 }; 30169 "module-deps-6.2.3" = { 30170 name = "module-deps"; 30171 packageName = "module-deps"; ··· 30256 sha512 = "tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="; 30257 }; 30258 }; 30259 + "mrmime-2.0.1" = { 30260 name = "mrmime"; 30261 packageName = "mrmime"; 30262 + version = "2.0.1"; 30263 src = fetchurl { 30264 + url = "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz"; 30265 + sha512 = "Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ=="; 30266 }; 30267 }; 30268 "ms-0.7.3" = { ··· 30472 sha512 = "2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="; 30473 }; 30474 }; 30475 + "nan-2.22.1" = { 30476 name = "nan"; 30477 packageName = "nan"; 30478 + version = "2.22.1"; 30479 src = fetchurl { 30480 + url = "https://registry.npmjs.org/nan/-/nan-2.22.1.tgz"; 30481 + sha512 = "pfRR4ZcNTSm2ZFHaztuvbICf+hyiG6ecA06SfAxoPmuHjvMu0KUIae7Y8GyVkbBqeEIidsmXeYooWIX9+qjfRQ=="; 30482 }; 30483 }; 30484 "nanoid-3.3.7" = { ··· 31049 sha512 = "08ARB91bUi6zNKzVmaj3QO7cr397uiDT2nJ63cHjyNtCTWIgvS47j3eT0WfzUwS9+6Z5YshRaoasFkXCKrIYbA=="; 31050 }; 31051 }; 31052 "node-gyp-11.1.0" = { 31053 name = "node-gyp"; 31054 packageName = "node-gyp"; ··· 31103 sha512 = "+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw=="; 31104 }; 31105 }; 31106 "node-notifier-10.0.1" = { 31107 name = "node-notifier"; 31108 packageName = "node-notifier"; ··· 31436 sha512 = "x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ=="; 31437 }; 31438 }; 31439 "npm-bundled-4.0.0" = { 31440 name = "npm-bundled"; 31441 packageName = "npm-bundled"; ··· 31517 sha512 = "TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w=="; 31518 }; 31519 }; 31520 "npm-package-arg-11.0.3" = { 31521 name = "npm-package-arg"; 31522 packageName = "npm-package-arg"; ··· 31562 sha512 = "KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ=="; 31563 }; 31564 }; 31565 "npm-packlist-9.0.0" = { 31566 name = "npm-packlist"; 31567 packageName = "npm-packlist"; ··· 31598 sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg=="; 31599 }; 31600 }; 31601 "npm-registry-fetch-18.0.2" = { 31602 name = "npm-registry-fetch"; 31603 packageName = "npm-registry-fetch"; ··· 31785 src = fetchurl { 31786 url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz"; 31787 sha512 = "F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ=="; 31788 }; 31789 }; 31790 "oas-kit-common-1.0.8" = { ··· 32156 sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; 32157 }; 32158 }; 32159 + "oo-ascii-tree-1.108.0" = { 32160 name = "oo-ascii-tree"; 32161 packageName = "oo-ascii-tree"; 32162 + version = "1.108.0"; 32163 src = fetchurl { 32164 + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.108.0.tgz"; 32165 + sha512 = "aR++8J29Te6L+1pVi9phOvsMVdEj7245vpcJqmrzDOGHpJdZ3zm1hdh44pYfzV1PiDgG3S3fwtlLZilulwVAgg=="; 32166 }; 32167 }; 32168 "open-0.0.2" = { ··· 32345 sha512 = "WfnNWLS3vr8omCm8nKYKaRbapuy6pEbx1O0B+eP5sUf/a++sT9/h8PflqBoHsY9N+YdzUT12T8snXigq13QpJg=="; 32346 }; 32347 }; 32348 "ora-5.4.1" = { 32349 name = "ora"; 32350 packageName = "ora"; ··· 32363 sha512 = "ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ=="; 32364 }; 32365 }; 32366 "ora-8.2.0" = { 32367 name = "ora"; 32368 packageName = "ora"; ··· 32444 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; 32445 }; 32446 }; 32447 "own-keys-1.0.1" = { 32448 name = "own-keys"; 32449 packageName = "own-keys"; ··· 32451 src = fetchurl { 32452 url = "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz"; 32453 sha512 = "qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg=="; 32454 }; 32455 }; 32456 "p-cancelable-1.1.0" = { ··· 32669 sha512 = "VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA=="; 32670 }; 32671 }; 32672 "p-memoize-7.1.1" = { 32673 name = "p-memoize"; 32674 packageName = "p-memoize"; ··· 32678 sha512 = "DZ/bONJILHkQ721hSr/E9wMz5Am/OTJ9P6LhLFo2Tu+jL8044tgc9LwHO8g4PiaYePnlVVRAJcKmgy8J9MVFrA=="; 32679 }; 32680 }; 32681 "p-reflect-2.1.0" = { 32682 name = "p-reflect"; 32683 packageName = "p-reflect"; ··· 32694 src = fetchurl { 32695 url = "https://registry.npmjs.org/p-settle/-/p-settle-4.1.1.tgz"; 32696 sha512 = "6THGh13mt3gypcNMm0ADqVNCcYa3BK6DWsuJWFCuEKP1rpY+OKGp7gaZwVmLspmic01+fsg/fN57MfvDzZ/PuQ=="; 32697 }; 32698 }; 32699 "p-timeout-5.1.0" = { ··· 32732 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 32733 }; 32734 }; 32735 + "pac-proxy-agent-7.2.0" = { 32736 name = "pac-proxy-agent"; 32737 packageName = "pac-proxy-agent"; 32738 + version = "7.2.0"; 32739 src = fetchurl { 32740 + url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz"; 32741 + sha512 = "TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA=="; 32742 }; 32743 }; 32744 "pac-resolver-7.0.1" = { ··· 32804 sha512 = "UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="; 32805 }; 32806 }; 32807 "pacote-20.0.0" = { 32808 name = "pacote"; 32809 packageName = "pacote"; ··· 32901 src = fetchurl { 32902 url = "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz"; 32903 sha512 = "0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA=="; 32904 }; 32905 }; 32906 "parse-english-5.0.0" = { ··· 33074 sha512 = "1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q=="; 33075 }; 33076 }; 33077 "parse-torrent-11.0.18" = { 33078 name = "parse-torrent"; 33079 packageName = "parse-torrent"; ··· 33119 sha512 = "u2MgLOjZPDDer1oRg1c+H/+54iIQYY5TKgQ5G8KrGLT1Dcwdo7Lj+QfQR123+u8J0AMSFGbQUvsBlSB7uIJcCA=="; 33120 }; 33121 }; 33122 "parse5-3.0.3" = { 33123 name = "parse5"; 33124 packageName = "parse5"; ··· 33162 src = fetchurl { 33163 url = "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz"; 33164 sha512 = "ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g=="; 33165 }; 33166 }; 33167 "parseqs-0.0.5" = { ··· 33758 sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 33759 }; 33760 }; 33761 "pinkie-2.0.4" = { 33762 name = "pinkie"; 33763 packageName = "pinkie"; ··· 34037 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 34038 }; 34039 }; 34040 + "postcss-8.5.3" = { 34041 name = "postcss"; 34042 packageName = "postcss"; 34043 + version = "8.5.3"; 34044 src = fetchurl { 34045 + url = "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz"; 34046 + sha512 = "dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="; 34047 }; 34048 }; 34049 "postcss-calc-10.1.1" = { ··· 34568 sha512 = "tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q=="; 34569 }; 34570 }; 34571 + "prettier-3.5.2" = { 34572 name = "prettier"; 34573 packageName = "prettier"; 34574 + version = "3.5.2"; 34575 src = fetchurl { 34576 + url = "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz"; 34577 + sha512 = "lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg=="; 34578 }; 34579 }; 34580 "prettier-bytes-1.0.4" = { ··· 34593 src = fetchurl { 34594 url = "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz"; 34595 sha512 = "EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw=="; 34596 }; 34597 }; 34598 "pretty-hrtime-1.0.3" = { ··· 34719 src = fetchurl { 34720 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 34721 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 34722 }; 34723 }; 34724 "progress-1.1.8" = { ··· 34766 sha512 = "rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg=="; 34767 }; 34768 }; 34769 "promise-inflight-1.0.1" = { 34770 name = "promise-inflight"; 34771 packageName = "promise-inflight"; ··· 34811 sha512 = "NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="; 34812 }; 34813 }; 34814 "proper-lockfile-4.1.2" = { 34815 name = "proper-lockfile"; 34816 packageName = "proper-lockfile"; ··· 34829 sha512 = "PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig=="; 34830 }; 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 + }; 34841 "proto-list-1.2.4" = { 34842 name = "proto-list"; 34843 packageName = "proto-list"; ··· 34854 src = fetchurl { 34855 url = "https://registry.npmjs.org/protobufjs/-/protobufjs-7.4.0.tgz"; 34856 sha512 = "mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw=="; 34857 }; 34858 }; 34859 "proxy-addr-2.0.7" = { ··· 35540 sha512 = "nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew=="; 35541 }; 35542 }; 35543 "react-reconciler-0.26.2" = { 35544 name = "react-reconciler"; 35545 packageName = "react-reconciler"; ··· 35576 sha512 = "rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ=="; 35577 }; 35578 }; 35579 "read-all-stream-3.1.0" = { 35580 name = "read-all-stream"; 35581 packageName = "read-all-stream"; ··· 35610 src = fetchurl { 35611 url = "https://registry.npmjs.org/read-chunk/-/read-chunk-3.2.0.tgz"; 35612 sha512 = "CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ=="; 35613 }; 35614 }; 35615 "read-only-stream-2.0.0" = { ··· 35675 sha512 = "eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA=="; 35676 }; 35677 }; 35678 "read-pkg-5.2.0" = { 35679 name = "read-pkg"; 35680 packageName = "read-pkg"; ··· 35727 src = fetchurl { 35728 url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; 35729 sha512 = "1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w=="; 35730 }; 35731 }; 35732 "read-pkg-up-7.0.1" = { ··· 37151 sha512 = "/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A=="; 37152 }; 37153 }; 37154 "resolve-pkg-maps-1.0.0" = { 37155 name = "resolve-pkg-maps"; 37156 packageName = "resolve-pkg-maps"; ··· 37167 src = fetchurl { 37168 url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"; 37169 sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg=="; 37170 }; 37171 }; 37172 "resp-modifier-6.0.2" = { ··· 37403 sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 37404 }; 37405 }; 37406 "rimraf-5.0.10" = { 37407 name = "rimraf"; 37408 packageName = "rimraf"; ··· 37439 sha512 = "IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg=="; 37440 }; 37441 }; 37442 + "rollup-4.34.8" = { 37443 name = "rollup"; 37444 packageName = "rollup"; 37445 + version = "4.34.8"; 37446 src = fetchurl { 37447 + url = "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz"; 37448 + sha512 = "489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ=="; 37449 }; 37450 }; 37451 "round-to-6.0.0" = { ··· 37626 src = fetchurl { 37627 url = "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz"; 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=="; 37638 }; 37639 }; 37640 "s3-stream-upload-2.0.2" = { ··· 38573 sha512 = "bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="; 38574 }; 38575 }; 38576 "sigstore-3.1.0" = { 38577 name = "sigstore"; 38578 packageName = "sigstore"; ··· 39113 sha512 = "s8cs2bcsQCzo/P2T/uoU6Js4dS/jnX8+4xunziNoq9qmSpZNCrRIAIvp4avsz0ST18HycV4z/7myJ7jsHWB2XQ=="; 39114 }; 39115 }; 39116 "sort-keys-4.2.0" = { 39117 name = "sort-keys"; 39118 packageName = "sort-keys"; ··· 39561 src = fetchurl { 39562 url = "https://registry.npmjs.org/sshpk-agent/-/sshpk-agent-1.2.1.tgz"; 39563 sha512 = "qszxcSCziI1IEv7SbVc51dqmyck1f520I92duwBWGRFtPQXz52ErYr6cAPEVWa4EkWNI4fMbPgagi2/oNpuuRg=="; 39564 }; 39565 }; 39566 "ssri-12.0.0" = { ··· 40364 sha512 = "k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg=="; 40365 }; 40366 }; 40367 + "strnum-1.1.1" = { 40368 name = "strnum"; 40369 packageName = "strnum"; 40370 + version = "1.1.1"; 40371 src = fetchurl { 40372 + url = "https://registry.npmjs.org/strnum/-/strnum-1.1.1.tgz"; 40373 + sha512 = "O7aCHfYCamLCctjAiaucmE+fHf2DYHkus2OKCn4Wv03sykfFtgeECn505X6K4mPl8CRNd/qurC9guq+ynoN4pw=="; 40374 }; 40375 }; 40376 "strtok3-6.3.0" = { ··· 40535 sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 40536 }; 40537 }; 40538 + "svelte-5.20.4" = { 40539 name = "svelte"; 40540 packageName = "svelte"; 40541 + version = "5.20.4"; 40542 src = fetchurl { 40543 + url = "https://registry.npmjs.org/svelte/-/svelte-5.20.4.tgz"; 40544 + sha512 = "2Mo/AfObaw9zuD0u1JJ7sOVzRCGcpETEyDkLbtkcctWpCMCIyT0iz83xD8JT29SR7O4SgswuPRIDYReYF/607A=="; 40545 }; 40546 }; 40547 "sver-1.8.4" = { ··· 40688 sha512 = "zTvf0mcggrGeTe/2jJ6ECkJHAQPIYEwDoqsiqBjI24mvRmQbInK5jq33fyypaCBxX08hMkfmdOqj6haT33EqWw=="; 40689 }; 40690 }; 40691 + "tailwindcss-4.0.8" = { 40692 name = "tailwindcss"; 40693 packageName = "tailwindcss"; 40694 + version = "4.0.8"; 40695 src = fetchurl { 40696 + url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.8.tgz"; 40697 + sha512 = "Me7N5CKR+D2A1xdWA5t5+kjjT7bwnxZOE6/yDI/ixJdJokszsn2n++mdU5yJwrsTpqFX2B9ZNMBJDwcqk9C9lw=="; 40698 }; 40699 }; 40700 "tapable-0.2.9" = { ··· 40724 sha512 = "FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA=="; 40725 }; 40726 }; 40727 "tar-4.4.19" = { 40728 name = "tar"; 40729 packageName = "tar"; ··· 40868 sha512 = "yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA=="; 40869 }; 40870 }; 40871 "temp-dir-3.0.0" = { 40872 name = "temp-dir"; 40873 packageName = "temp-dir"; ··· 40967 sha512 = "/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA=="; 40968 }; 40969 }; 40970 "text-extensions-2.4.0" = { 40971 name = "text-extensions"; 40972 packageName = "text-extensions"; ··· 41228 sha512 = "KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="; 41229 }; 41230 }; 41231 + "tinyglobby-0.2.12" = { 41232 name = "tinyglobby"; 41233 packageName = "tinyglobby"; 41234 + version = "0.2.12"; 41235 src = fetchurl { 41236 + url = "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz"; 41237 + sha512 = "qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww=="; 41238 }; 41239 }; 41240 "tkwidgets-0.5.27" = { ··· 41588 sha512 = "BA/cp8KBvbBDkunxIuoBqzz3pYHL7J8QdzbKohK09urOpHFYqEe/xWGKkECEQG+LvfREd1GNqH3643GYFX8wSQ=="; 41589 }; 41590 }; 41591 "trim-lines-3.0.1" = { 41592 name = "trim-lines"; 41593 packageName = "trim-lines"; ··· 41669 sha512 = "0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="; 41670 }; 41671 }; 41672 "ts-morph-12.0.0" = { 41673 name = "ts-morph"; 41674 packageName = "ts-morph"; ··· 41714 sha512 = "ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg=="; 41715 }; 41716 }; 41717 "tslib-1.14.1" = { 41718 name = "tslib"; 41719 packageName = "tslib"; ··· 41759 sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; 41760 }; 41761 }; 41762 + "tsx-4.19.3" = { 41763 name = "tsx"; 41764 packageName = "tsx"; 41765 + version = "4.19.3"; 41766 src = fetchurl { 41767 + url = "https://registry.npmjs.org/tsx/-/tsx-4.19.3.tgz"; 41768 + sha512 = "4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ=="; 41769 }; 41770 }; 41771 "tty-browserify-0.0.1" = { ··· 41777 sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="; 41778 }; 41779 }; 41780 "tuf-js-3.0.1" = { 41781 name = "tuf-js"; 41782 packageName = "tuf-js"; ··· 41793 src = fetchurl { 41794 url = "https://registry.npmjs.org/tumblr/-/tumblr-0.4.1.tgz"; 41795 sha512 = "MB/C4h4n43kq8SpHtwIL/DlUXJfTWR7lG9AUJVJsLeW38q0mTXHoHtlnAqt27CsLFZC864i9P508pRXW3fjkJA=="; 41796 }; 41797 }; 41798 "tunnel-agent-0.4.3" = { ··· 41912 sha512 = "t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="; 41913 }; 41914 }; 41915 "type-fest-0.6.0" = { 41916 name = "type-fest"; 41917 packageName = "type-fest"; ··· 41957 sha512 = "tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g=="; 41958 }; 41959 }; 41960 + "type-fest-4.35.0" = { 41961 name = "type-fest"; 41962 packageName = "type-fest"; 41963 + version = "4.35.0"; 41964 src = fetchurl { 41965 + url = "https://registry.npmjs.org/type-fest/-/type-fest-4.35.0.tgz"; 41966 + sha512 = "2/AwEFQDFEy30iOLjrvHDIH7e4HEWH+f1Yl1bI5XMqzuoCUqwYCdxachgsgv0og/JdVZUhbfjcJAoHj5L1753A=="; 41967 }; 41968 }; 41969 "type-is-1.6.18" = { ··· 42011 sha512 = "3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="; 42012 }; 42013 }; 42014 "typedarray-0.0.6" = { 42015 name = "typedarray"; 42016 packageName = "typedarray"; ··· 42092 sha512 = "84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw=="; 42093 }; 42094 }; 42095 + "typescript-5.9.0-dev.20250224" = { 42096 name = "typescript"; 42097 packageName = "typescript"; 42098 + version = "5.9.0-dev.20250224"; 42099 src = fetchurl { 42100 + url = "https://registry.npmjs.org/typescript/-/typescript-5.9.0-dev.20250224.tgz"; 42101 + sha512 = "hE9YCxxyOJDBJhEo6w3veHldQw5ry0nhuTzaPU2UZe37YsBIC5kaOVdzeA+IUh4cgYWKe60B1vuC4GN8Q4a0SA=="; 42102 }; 42103 }; 42104 "typical-2.6.1" = { ··· 42378 src = fetchurl { 42379 url = "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz"; 42380 sha512 = "72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g=="; 42381 }; 42382 }; 42383 "undici-types-5.26.5" = { ··· 42587 sha512 = "ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A=="; 42588 }; 42589 }; 42590 "unique-filename-4.0.0" = { 42591 name = "unique-filename"; 42592 packageName = "unique-filename"; ··· 42612 src = fetchurl { 42613 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz"; 42614 sha512 = "8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w=="; 42615 }; 42616 }; 42617 "unique-slug-5.0.0" = { ··· 42992 sha512 = "L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw=="; 42993 }; 42994 }; 42995 "universalify-0.1.2" = { 42996 name = "universalify"; 42997 packageName = "universalify"; ··· 43116 src = fetchurl { 43117 url = "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz"; 43118 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 43119 }; 43120 }; 43121 "update-browserslist-db-1.1.2" = { ··· 43739 sha512 = "Hq72JaTpcTFdWiNA4Y22Amej2GH3BFmBaKPPlDZ4/oC8HNn2ISHLkFrJU4Ds8R3jcUi7oo5Y9jcMHKjES+N9wQ=="; 43740 }; 43741 }; 43742 + "vega-5.32.0" = { 43743 name = "vega"; 43744 packageName = "vega"; 43745 + version = "5.32.0"; 43746 src = fetchurl { 43747 + url = "https://registry.npmjs.org/vega/-/vega-5.32.0.tgz"; 43748 + sha512 = "jANt/5+SpV7b7owB5u8+M1TZ/TrF1fK6WlcvKDW38tH3Gb6hM1nzIhv10E41w3GBmwF29BU/qH2ruNkaYKjI5g=="; 43749 }; 43750 }; 43751 "vega-canvas-1.2.7" = { ··· 43802 sha512 = "fFeDTh4UtOxlZWL54jf1ZqJHinyerWq/ROiqrQxqLkNJRJ86RmxYTgXwt65UoZ/l4VUv9eAd2qoJeDEf610Umw=="; 43803 }; 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 + }; 43814 "vega-force-4.2.2" = { 43815 name = "vega-force"; 43816 packageName = "vega-force"; ··· 43829 sha512 = "wQhw7KR46wKJAip28FF/CicW+oiJaPAwMKdrxlnTA0Nv8Bf7bloRlc+O3kON4b4H1iALLr9KgRcYTOeXNs2MOA=="; 43830 }; 43831 }; 43832 + "vega-functions-5.17.0" = { 43833 name = "vega-functions"; 43834 packageName = "vega-functions"; 43835 + version = "5.17.0"; 43836 src = fetchurl { 43837 + url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.17.0.tgz"; 43838 + sha512 = "EoGvdCtv1Y4M/hLy83Kf0HTs4qInUfrBoanrnhbguzRl00rx7orjcv+bNZFHbCe4HkfVpbOnTrYmz3K2ivaOLw=="; 43839 }; 43840 }; 43841 "vega-geo-4.4.3" = { ··· 43874 sha512 = "dUfIpxTLF2magoMaur+jXGvwMxjtdlDZaIS8lFj6N7IhUST6nIvBzuUlRM+zLYepI5GHtCLOnqdKU4XV0NggCA=="; 43875 }; 43876 }; 43877 + "vega-parser-6.5.0" = { 43878 name = "vega-parser"; 43879 packageName = "vega-parser"; 43880 + version = "6.5.0"; 43881 src = fetchurl { 43882 + url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.5.0.tgz"; 43883 + sha512 = "dPxFKn6IlDyWi6CgHGGv8htSPBAyLHWlJNNGD17eMXh+Kjn4hupSNOIboRcYb8gL5HYt1tYwS6oYZXK84Bc4tg=="; 43884 }; 43885 }; 43886 "vega-projection-1.6.2" = { ··· 43928 sha512 = "LFY9+sLIxRfdDI9ZTKjLoijMkIAzPLBWHpPkwv4NPYgdyx+0qFmv+puBpAUGUY9VZqAZ736Uj5NJY9zw+/M3yQ=="; 43929 }; 43930 }; 43931 + "vega-selections-5.6.0" = { 43932 name = "vega-selections"; 43933 packageName = "vega-selections"; 43934 + version = "5.6.0"; 43935 src = fetchurl { 43936 + url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.6.0.tgz"; 43937 + sha512 = "UE2w78rUUbaV3Ph+vQbQDwh8eywIJYRxBiZdxEG/Tr/KtFMLdy2BDgNZuuDO1Nv8jImPJwONmqjNhNDYwM0VJQ=="; 43938 }; 43939 }; 43940 "vega-statistics-1.9.0" = { ··· 43964 sha512 = "Qxo+xeEEftY1jYyKgzOGc9NuW4/MqGm1YPZ5WrL9eXg2G0410Ne+xL/MFIjHF4hRX+3mgFF4Io2hPpfy/thjLg=="; 43965 }; 43966 }; 43967 + "vega-typings-1.5.0" = { 43968 name = "vega-typings"; 43969 packageName = "vega-typings"; 43970 + version = "1.5.0"; 43971 src = fetchurl { 43972 + url = "https://registry.npmjs.org/vega-typings/-/vega-typings-1.5.0.tgz"; 43973 + sha512 = "tcZ2HwmiQEOXIGyBMP8sdCnoFoVqHn4KQ4H0MQiHwzFU1hb1EXURhfc+Uamthewk4h/9BICtAM3AFQMjBGpjQA=="; 43974 }; 43975 }; 43976 "vega-util-1.17.3" = { ··· 43982 sha512 = "nSNpZLUrRvFo46M5OK4O6x6f08WD1yOcEzHNlqivF+sDLSsVpstaF6fdJYwrbf/debFi2L9Tkp4gZQtssup9iQ=="; 43983 }; 43984 }; 43985 + "vega-view-5.15.0" = { 43986 name = "vega-view"; 43987 packageName = "vega-view"; 43988 + version = "5.15.0"; 43989 src = fetchurl { 43990 + url = "https://registry.npmjs.org/vega-view/-/vega-view-5.15.0.tgz"; 43991 + sha512 = "bm8STHPsI8BjVu2gYlWU8KEVOA2JyTzdtb9cJj8NW6HpN72UxTYsg5y22u9vfcLYjzjmolrlr0756VXR0uI1Cg=="; 43992 }; 43993 }; 43994 "vega-view-transforms-4.6.1" = { ··· 44367 src = fetchurl { 44368 url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.1.tgz"; 44369 sha512 = "kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ=="; 44370 }; 44371 }; 44372 "vscode-languageserver-5.2.1" = { ··· 45422 sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 45423 }; 45424 }; 45425 "write-yaml-file-4.2.0" = { 45426 name = "write-yaml-file"; 45427 packageName = "write-yaml-file"; ··· 45494 sha512 = "6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ=="; 45495 }; 45496 }; 45497 + "ws-8.18.1" = { 45498 name = "ws"; 45499 packageName = "ws"; 45500 + version = "8.18.1"; 45501 src = fetchurl { 45502 + url = "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz"; 45503 + sha512 = "RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w=="; 45504 }; 45505 }; 45506 "xcase-2.0.1" = { ··· 46070 sha512 = "A1pf6fzh6eYkK0L4Qp7g9jzJSDrM6nN0bOn5T0IbY4Yo3w+YkWlHFkJP7mzknMXjqusHFHlKsK2N+4OLsK2MRA=="; 46071 }; 46072 }; 46073 "yeast-0.1.2" = { 46074 name = "yeast"; 46075 packageName = "yeast"; ··· 46229 "@angular/cli" = nodeEnv.buildNodePackage { 46230 name = "_at_angular_slash_cli"; 46231 packageName = "@angular/cli"; 46232 + version = "19.1.8"; 46233 src = fetchurl { 46234 + url = "https://registry.npmjs.org/@angular/cli/-/cli-19.1.8.tgz"; 46235 + sha512 = "JmdLj8110DNWaxL03K7I06+nLyBfXgiIqYyrQx5QO9AodGkKHK5rE+7VD8MjZhUymua57HToD0oHaQgThJwTJQ=="; 46236 }; 46237 dependencies = [ 46238 + sources."@angular-devkit/architect-0.1901.8" 46239 + sources."@angular-devkit/core-19.1.8" 46240 + sources."@angular-devkit/schematics-19.1.8" 46241 ( 46242 sources."@inquirer/checkbox-4.1.2" 46243 // { ··· 46308 sources."@npmcli/agent-3.0.0" 46309 sources."@npmcli/fs-4.0.0" 46310 ( 46311 + sources."@npmcli/git-6.0.3" 46312 // { 46313 dependencies = [ 46314 sources."isexe-3.1.1" ··· 46338 ]; 46339 } 46340 ) 46341 + sources."@schematics/angular-19.1.8" 46342 sources."@sigstore/bundle-3.1.0" 46343 sources."@sigstore/core-2.0.0" 46344 sources."@sigstore/protobuf-specs-0.4.0" ··· 46347 sources."@sigstore/verify-2.1.0" 46348 sources."@tufjs/canonical-json-2.0.0" 46349 sources."@tufjs/models-3.0.1" 46350 + sources."@types/node-22.13.5" 46351 sources."@yarnpkg/lockfile-1.1.0" 46352 sources."abbrev-3.0.0" 46353 sources."agent-base-7.1.3" ··· 46413 sources."external-editor-3.1.0" 46414 sources."fast-deep-equal-3.1.3" 46415 sources."fast-uri-3.0.6" 46416 + sources."foreground-child-3.3.1" 46417 sources."fs-minipass-3.0.3" 46418 sources."function-bind-1.1.2" 46419 sources."get-caller-file-2.0.5" ··· 46573 sources."path-scurry-1.11.1" 46574 sources."picomatch-4.0.2" 46575 sources."proc-log-5.0.0" 46576 sources."promise-retry-2.0.1" 46577 sources."readable-stream-3.6.2" 46578 sources."readdirp-4.1.2" ··· 46729 sources."balanced-match-1.0.2" 46730 sources."brace-expansion-1.1.11" 46731 sources."browserslist-4.24.4" 46732 + sources."caniuse-lite-1.0.30001700" 46733 sources."commander-6.2.1" 46734 sources."concat-map-0.0.1" 46735 sources."convert-source-map-2.0.0" 46736 sources."debug-4.4.0" 46737 + sources."electron-to-chromium-1.5.104" 46738 sources."escalade-3.2.0" 46739 sources."fs-readdir-recursive-1.1.0" 46740 sources."fs.realpath-1.0.0" ··· 46798 sources."@commitlint/top-level-19.5.0" 46799 sources."@commitlint/types-19.5.0" 46800 sources."@types/conventional-commits-parser-5.0.1" 46801 + sources."@types/node-22.13.5" 46802 sources."JSONStream-1.3.5" 46803 sources."ajv-8.17.1" 46804 sources."ansi-regex-5.0.1" ··· 46898 "@microsoft/rush" = nodeEnv.buildNodePackage { 46899 name = "_at_microsoft_slash_rush"; 46900 packageName = "@microsoft/rush"; 46901 + version = "5.149.1"; 46902 src = fetchurl { 46903 + url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.149.1.tgz"; 46904 + sha512 = "nn1Dy2KfRiS4elzp2kXjciaXUYiHqp/0BE6OnGB3Ahiqx25NzQOs6SOHPliYso0PxSPCuCGalEUDMFtvNJTtAw=="; 46905 }; 46906 dependencies = [ 46907 ( ··· 47022 sources."@jridgewell/trace-mapping-0.3.25" 47023 sources."@jsep-plugin/assignment-1.3.0" 47024 sources."@jsep-plugin/regex-1.0.4" 47025 + sources."@microsoft/rush-lib-5.149.1" 47026 sources."@nodelib/fs.scandir-2.1.5" 47027 sources."@nodelib/fs.stat-2.0.5" 47028 sources."@nodelib/fs.walk-1.2.8" ··· 47092 ]; 47093 } 47094 ) 47095 + sources."@rushstack/heft-config-file-0.16.6" 47096 + sources."@rushstack/lookup-by-path-0.5.6" 47097 ( 47098 sources."@rushstack/node-core-library-5.11.0" 47099 // { ··· 47102 ]; 47103 } 47104 ) 47105 + sources."@rushstack/package-deps-hash-4.3.7" 47106 ( 47107 + sources."@rushstack/package-extractor-0.10.11" 47108 // { 47109 dependencies = [ 47110 sources."brace-expansion-1.1.11" ··· 47120 ]; 47121 } 47122 ) 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" 47128 ( 47129 sources."@rushstack/terminal-0.15.0" 47130 // { ··· 47147 sources."@types/lodash-4.17.15" 47148 sources."@types/minimatch-3.0.5" 47149 sources."@types/minimist-1.2.5" 47150 + sources."@types/node-22.13.5" 47151 sources."@types/normalize-package-data-2.4.4" 47152 sources."@types/parse-json-4.0.2" 47153 sources."@vue/compiler-core-3.5.13" ··· 47319 sources."external-editor-3.1.0" 47320 sources."fast-deep-equal-3.1.3" 47321 sources."fast-glob-3.3.3" 47322 + sources."fast-xml-parser-4.5.3" 47323 sources."fastq-1.19.0" 47324 sources."figures-3.0.0" 47325 sources."fill-range-7.1.1" ··· 47471 sources."json-schema-traverse-1.0.0" 47472 sources."json5-2.2.3" 47473 sources."jsonfile-6.1.0" 47474 + sources."jsonpath-plus-10.3.0" 47475 ( 47476 sources."jsonwebtoken-9.0.2" 47477 // { ··· 47654 ]; 47655 } 47656 ) 47657 + sources."postcss-8.5.3" 47658 ( 47659 sources."preferred-pm-3.1.4" 47660 // { ··· 47782 sources."strip-final-newline-2.0.0" 47783 sources."strip-indent-3.0.0" 47784 sources."strip-json-comments-2.0.1" 47785 + sources."strnum-1.1.1" 47786 sources."supports-color-7.2.0" 47787 sources."supports-preserve-symlinks-flag-1.0.0" 47788 sources."tapable-2.2.1" ··· 47854 "@shopify/cli" = nodeEnv.buildNodePackage { 47855 name = "_at_shopify_slash_cli"; 47856 packageName = "@shopify/cli"; 47857 + version = "3.75.4"; 47858 src = fetchurl { 47859 + url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.75.4.tgz"; 47860 + sha512 = "4+jcMOZiw6Nsm3007liTKA2inI9LwgM1HljCpLhT9aFMZZ+qqF1tbixBL08hbc1C44AuKsYuQtCrY531PBEIrA=="; 47861 }; 47862 dependencies = [ 47863 sources."@ast-grep/napi-0.33.0" ··· 47882 sha512 = "8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ=="; 47883 }; 47884 dependencies = [ 47885 + sources."tailwindcss-4.0.8" 47886 ]; 47887 buildInputs = globalBuildInputs; 47888 meta = { ··· 47904 }; 47905 dependencies = [ 47906 sources."mini-svg-data-uri-1.4.4" 47907 + sources."tailwindcss-4.0.8" 47908 ]; 47909 buildInputs = globalBuildInputs; 47910 meta = { ··· 47925 sha512 = "5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g=="; 47926 }; 47927 dependencies = [ 47928 + sources."tailwindcss-4.0.8" 47929 ]; 47930 buildInputs = globalBuildInputs; 47931 meta = { ··· 47951 sources."lodash.isplainobject-4.0.6" 47952 sources."lodash.merge-4.6.2" 47953 sources."postcss-selector-parser-6.0.10" 47954 + sources."tailwindcss-4.0.8" 47955 sources."util-deprecate-1.0.2" 47956 ]; 47957 buildInputs = globalBuildInputs; ··· 48001 ]; 48002 } 48003 ) 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" 48015 ( 48016 + sources."@aws-sdk/lib-storage-3.750.0" 48017 // { 48018 dependencies = [ 48019 sources."buffer-5.6.0" ··· 48023 sources."@aws-sdk/middleware-bucket-endpoint-3.734.0" 48024 sources."@aws-sdk/middleware-expect-continue-3.734.0" 48025 ( 48026 + sources."@aws-sdk/middleware-flexible-checksums-3.750.0" 48027 // { 48028 dependencies = [ 48029 sources."@smithy/is-array-buffer-4.0.0" ··· 48034 sources."@aws-sdk/middleware-location-constraint-3.734.0" 48035 sources."@aws-sdk/middleware-logger-3.734.0" 48036 sources."@aws-sdk/middleware-recursion-detection-3.734.0" 48037 + sources."@aws-sdk/middleware-sdk-s3-3.750.0" 48038 sources."@aws-sdk/middleware-ssec-3.734.0" 48039 + sources."@aws-sdk/middleware-user-agent-3.750.0" 48040 + sources."@aws-sdk/nested-clients-3.750.0" 48041 sources."@aws-sdk/region-config-resolver-3.734.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" 48046 sources."@aws-sdk/types-3.734.0" 48047 sources."@aws-sdk/util-arn-parser-3.723.0" 48048 sources."@aws-sdk/util-endpoints-3.743.0" 48049 sources."@aws-sdk/util-format-url-3.734.0" 48050 sources."@aws-sdk/util-locate-window-3.723.0" 48051 sources."@aws-sdk/util-user-agent-browser-3.734.0" 48052 + sources."@aws-sdk/util-user-agent-node-3.750.0" 48053 sources."@aws-sdk/util-utf8-browser-3.259.0" 48054 sources."@aws-sdk/xml-builder-3.734.0" 48055 sources."@buttercup/fetch-0.2.1" ··· 48061 sources."@smithy/chunked-blob-reader-5.0.0" 48062 sources."@smithy/chunked-blob-reader-native-4.0.0" 48063 sources."@smithy/config-resolver-4.0.1" 48064 + sources."@smithy/core-3.1.5" 48065 sources."@smithy/credential-provider-imds-4.0.1" 48066 sources."@smithy/eventstream-codec-4.0.1" 48067 sources."@smithy/eventstream-serde-browser-4.0.1" ··· 48084 sources."@smithy/is-array-buffer-2.2.0" 48085 sources."@smithy/md5-js-4.0.1" 48086 sources."@smithy/middleware-content-length-4.0.1" 48087 + sources."@smithy/middleware-endpoint-4.0.6" 48088 + sources."@smithy/middleware-retry-4.0.7" 48089 sources."@smithy/middleware-serde-4.0.2" 48090 sources."@smithy/middleware-stack-4.0.1" 48091 sources."@smithy/node-config-provider-4.0.1" 48092 + sources."@smithy/node-http-handler-4.0.3" 48093 sources."@smithy/property-provider-4.0.1" 48094 sources."@smithy/protocol-http-5.0.1" 48095 sources."@smithy/querystring-builder-4.0.1" ··· 48104 ]; 48105 } 48106 ) 48107 + sources."@smithy/smithy-client-4.1.6" 48108 sources."@smithy/types-4.1.0" 48109 sources."@smithy/url-parser-4.0.1" 48110 ( ··· 48120 sources."@smithy/util-body-length-node-4.0.0" 48121 sources."@smithy/util-buffer-from-2.2.0" 48122 sources."@smithy/util-config-provider-4.0.0" 48123 + sources."@smithy/util-defaults-mode-browser-4.0.7" 48124 + sources."@smithy/util-defaults-mode-node-4.0.7" 48125 sources."@smithy/util-endpoints-3.0.1" 48126 sources."@smithy/util-hex-encoding-4.0.0" 48127 sources."@smithy/util-middleware-4.0.1" 48128 sources."@smithy/util-retry-4.0.1" 48129 ( 48130 + sources."@smithy/util-stream-4.1.2" 48131 // { 48132 dependencies = [ 48133 sources."@smithy/is-array-buffer-4.0.0" ··· 48154 sources."@types/http-cache-semantics-4.0.4" 48155 sources."@types/http-errors-2.0.4" 48156 sources."@types/mime-1.3.5" 48157 + sources."@types/node-22.13.5" 48158 sources."@types/qs-6.9.18" 48159 sources."@types/range-parser-1.2.7" 48160 sources."@types/send-0.17.4" ··· 48316 sources."fresh-0.5.2" 48317 sources."fs.realpath-1.0.0" 48318 sources."function-bind-1.1.2" 48319 + sources."get-intrinsic-1.3.0" 48320 sources."get-proto-1.0.1" 48321 sources."get-stream-6.0.1" 48322 sources."glob-7.2.3" ··· 48538 ]; 48539 } 48540 ) 48541 + sources."strnum-1.1.1" 48542 sources."supports-color-8.1.1" 48543 sources."tdigest-0.1.2" 48544 sources."toidentifier-1.0.1" ··· 48946 sources."extend-3.0.2" 48947 sources."fault-2.0.1" 48948 sources."find-up-6.3.0" 48949 + sources."foreground-child-3.3.1" 48950 sources."form-data-encoder-2.1.4" 48951 sources."format-0.2.2" 48952 sources."from-0.1.7" ··· 49454 aws-cdk = nodeEnv.buildNodePackage { 49455 name = "aws-cdk"; 49456 packageName = "aws-cdk"; 49457 + version = "2.1000.3"; 49458 src = fetchurl { 49459 + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.1000.3.tgz"; 49460 + sha512 = "y0sU603gGWpVTwqDw9MKVHg3e1t49Mvve6t3YDOvjeKY195Vu6dgHlHjW4h8n1vX04r49NKfpoApG60V8sMbdw=="; 49461 }; 49462 buildInputs = globalBuildInputs; 49463 meta = { 49464 + description = "AWS CDK CLI, the command line tool for CDK apps"; 49465 homepage = "https://github.com/aws/aws-cdk"; 49466 license = "Apache-2.0"; 49467 }; ··· 49906 sources."to-regex-range-5.0.1" 49907 sources."to-vfile-8.0.0" 49908 sources."trough-2.2.0" 49909 + sources."type-fest-4.35.0" 49910 sources."unicorn-magic-0.3.0" 49911 sources."unified-11.0.5" 49912 sources."unified-lint-rule-3.0.1" ··· 50100 sources."fs.realpath-1.0.0" 50101 sources."function-bind-1.1.2" 50102 sources."get-assigned-identifiers-1.2.0" 50103 + sources."get-intrinsic-1.3.0" 50104 sources."get-proto-1.0.1" 50105 sources."glob-7.2.3" 50106 sources."gopd-1.2.0" ··· 50256 dependencies = [ 50257 sources."@socket.io/component-emitter-3.1.2" 50258 sources."@types/cors-2.8.17" 50259 + sources."@types/node-22.13.5" 50260 sources."accepts-1.3.8" 50261 sources."ansi-regex-5.0.1" 50262 sources."ansi-styles-4.3.0" ··· 50473 cdk8s-cli = nodeEnv.buildNodePackage { 50474 name = "cdk8s-cli"; 50475 packageName = "cdk8s-cli"; 50476 + version = "2.198.334"; 50477 src = fetchurl { 50478 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.334.tgz"; 50479 + sha512 = "ULWw7NOJ3n5+Eywel2OPqvXFqpNTfQtFAH3eBmlKeE+GBvVZ7omUjQgqknvJLbvvkCjfpfm+UA/rVhlxm/Nmjg=="; 50480 }; 50481 dependencies = [ 50482 + sources."@jsii/check-node-1.108.0" 50483 + sources."@jsii/spec-1.108.0" 50484 sources."@nodelib/fs.scandir-2.1.5" 50485 sources."@nodelib/fs.stat-2.0.5" 50486 sources."@nodelib/fs.walk-1.2.8" ··· 50496 sources."braces-3.0.3" 50497 sources."camelcase-6.3.0" 50498 sources."case-1.6.3" 50499 + sources."cdk8s-2.69.43" 50500 sources."cdk8s-plus-28-2.5.6" 50501 sources."chalk-4.1.2" 50502 sources."cliui-7.0.4" 50503 sources."clone-2.1.2" 50504 ( 50505 + sources."codemaker-1.108.0" 50506 // { 50507 dependencies = [ 50508 sources."fs-extra-10.1.0" ··· 50525 sources."downlevel-dts-0.11.0" 50526 // { 50527 dependencies = [ 50528 + sources."typescript-5.9.0-dev.20250224" 50529 ]; 50530 } 50531 ) ··· 50539 sources."fastq-1.19.0" 50540 sources."fill-range-7.1.1" 50541 sources."find-up-4.1.0" 50542 + sources."flatted-3.3.3" 50543 ( 50544 sources."fs-extra-8.1.0" 50545 // { ··· 50566 sources."is-glob-4.0.3" 50567 sources."is-number-7.0.0" 50568 ( 50569 + sources."jsii-5.7.6" 50570 // { 50571 dependencies = [ 50572 + sources."@jsii/check-node-1.107.0" 50573 sources."cliui-8.0.1" 50574 sources."yargs-17.7.2" 50575 sources."yargs-parser-21.1.1" ··· 50577 } 50578 ) 50579 ( 50580 + sources."jsii-pacmak-1.108.0" 50581 // { 50582 dependencies = [ 50583 sources."fs-extra-10.1.0" ··· 50586 } 50587 ) 50588 ( 50589 + sources."jsii-reflect-1.108.0" 50590 // { 50591 dependencies = [ 50592 sources."fs-extra-10.1.0" ··· 50595 } 50596 ) 50597 ( 50598 + sources."jsii-rosetta-5.7.6" 50599 // { 50600 dependencies = [ 50601 + sources."@jsii/check-node-1.107.0" 50602 sources."cliui-8.0.1" 50603 sources."yargs-17.7.2" 50604 sources."yargs-parser-21.1.1" ··· 50609 sources."jsii-srcmak-0.1.1236" 50610 // { 50611 dependencies = [ 50612 + sources."@jsii/check-node-1.107.0" 50613 sources."cliui-8.0.1" 50614 sources."fs-extra-9.1.0" 50615 + sources."jsii-5.5.23" 50616 sources."typescript-5.5.4" 50617 sources."yargs-17.7.2" 50618 sources."yargs-parser-21.1.1" ··· 50636 sources."ncp-2.0.0" 50637 sources."no-case-3.0.4" 50638 sources."once-1.4.0" 50639 + sources."oo-ascii-tree-1.108.0" 50640 sources."p-limit-2.3.0" 50641 sources."p-locate-4.1.0" 50642 sources."p-try-2.2.0" ··· 50986 sources."@jridgewell/sourcemap-codec-1.5.0" 50987 sources."@jridgewell/trace-mapping-0.3.25" 50988 sources."@jsii/check-node-1.102.0" 50989 + sources."@jsii/spec-1.108.0" 50990 sources."@nodelib/fs.scandir-2.1.5" 50991 sources."@nodelib/fs.stat-2.0.5" 50992 sources."@nodelib/fs.walk-1.2.8" ··· 50998 sources."@sentry/utils-7.120.1" 50999 sources."@types/mute-stream-0.0.1" 51000 sources."@types/node-18.19.67" 51001 + sources."@types/react-19.0.10" 51002 sources."@types/wrap-ansi-3.0.0" 51003 sources."@types/yauzl-2.10.3" 51004 sources."@types/yoga-layout-1.9.2" ··· 51108 sources."downlevel-dts-0.11.0" 51109 // { 51110 dependencies = [ 51111 + sources."typescript-5.9.0-dev.20250224" 51112 ]; 51113 } 51114 ) ··· 51160 ) 51161 sources."fill-range-7.1.1" 51162 sources."find-up-3.0.0" 51163 + sources."flatted-3.3.3" 51164 sources."follow-redirects-1.15.9" 51165 sources."for-each-0.3.5" 51166 ( 51167 + sources."foreground-child-3.3.1" 51168 // { 51169 dependencies = [ 51170 sources."signal-exit-4.1.0" ··· 51178 sources."functions-have-names-1.2.3" 51179 sources."get-caller-file-2.0.5" 51180 sources."get-east-asian-width-1.3.0" 51181 + sources."get-intrinsic-1.3.0" 51182 sources."get-proto-1.0.1" 51183 sources."get-stream-6.0.1" 51184 sources."github-from-package-0.0.0" ··· 51318 } 51319 ) 51320 ( 51321 + sources."jsii-reflect-1.108.0" 51322 // { 51323 dependencies = [ 51324 + sources."@jsii/check-node-1.108.0" 51325 sources."cliui-7.0.4" 51326 sources."fs-extra-10.1.0" 51327 sources."jsonfile-6.1.0" ··· 51377 sources."mkdirp-classic-0.5.3" 51378 sources."ms-2.1.3" 51379 sources."mute-stream-1.0.0" 51380 + sources."nan-2.22.1" 51381 sources."napi-build-utils-2.0.0" 51382 sources."node-abi-3.74.0" 51383 sources."node-fetch-2.7.0" ··· 51393 sources."obliterator-2.0.5" 51394 sources."once-1.4.0" 51395 sources."onetime-5.1.2" 51396 + sources."oo-ascii-tree-1.108.0" 51397 sources."open-7.4.2" 51398 sources."os-tmpdir-1.0.2" 51399 sources."p-limit-2.3.0" ··· 51519 sources."to-regex-range-5.0.1" 51520 sources."tr46-0.0.3" 51521 sources."tunnel-agent-0.6.0" 51522 + sources."type-fest-4.35.0" 51523 sources."typescript-5.4.5" 51524 sources."undici-types-5.26.5" 51525 sources."universalify-0.1.2" ··· 51548 sources."wrap-ansi-7.0.0" 51549 sources."wrap-ansi-cjs-7.0.0" 51550 sources."wrappy-1.0.2" 51551 + sources."ws-8.18.1" 51552 sources."xml-js-1.6.11" 51553 sources."xmlbuilder-15.1.1" 51554 sources."xstate-4.38.3" ··· 52005 coc-lists = nodeEnv.buildNodePackage { 52006 name = "coc-lists"; 52007 packageName = "coc-lists"; 52008 + version = "1.5.3"; 52009 src = fetchurl { 52010 + url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.5.3.tgz"; 52011 + sha512 = "fVy45jPoie8ZrO28GLWA7M1ewYaybDmb3fujUYWhHelTl4r2F/mk3UVGnpb7+7gMmDJ0T3LkJqh0Qe538/wFTQ=="; 52012 }; 52013 buildInputs = globalBuildInputs; 52014 meta = { ··· 52139 coc-rust-analyzer = nodeEnv.buildNodePackage { 52140 name = "coc-rust-analyzer"; 52141 packageName = "coc-rust-analyzer"; 52142 + version = "0.81.0"; 52143 src = fetchurl { 52144 + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.81.0.tgz"; 52145 + sha512 = "skbRCe1Yjoa3r/a0dHviJxGMS8s+PFzl7lmimCUxxT3kKxairDeetNfRBw+wsDJmKBzXGhy1KH+6Cmt3WJYz5w=="; 52146 }; 52147 buildInputs = globalBuildInputs; 52148 meta = { ··· 52505 sources."callsites-3.1.0" 52506 sources."camelcase-5.3.1" 52507 sources."camelcase-keys-6.2.2" 52508 + sources."caniuse-lite-1.0.30001700" 52509 sources."chalk-4.1.2" 52510 sources."character-entities-1.2.4" 52511 sources."character-entities-legacy-1.1.4" ··· 52540 sources."domelementtype-1.3.1" 52541 sources."domhandler-2.4.2" 52542 sources."domutils-1.7.0" 52543 + sources."electron-to-chromium-1.5.104" 52544 sources."emoji-regex-8.0.0" 52545 sources."entities-1.1.2" 52546 sources."error-ex-1.3.2" ··· 52557 sources."fill-range-7.1.1" 52558 sources."find-up-4.1.0" 52559 sources."flat-cache-3.2.0" 52560 + sources."flatted-3.3.3" 52561 sources."fs.realpath-1.0.0" 52562 sources."function-bind-1.1.2" 52563 sources."gensync-1.0.0-beta.2" ··· 53008 sources."fast-uri-3.0.6" 53009 sources."file-entry-cache-6.0.1" 53010 sources."flat-cache-3.2.0" 53011 + sources."flatted-3.3.3" 53012 sources."fs.realpath-1.0.0" 53013 sources."function-bind-1.1.2" 53014 sources."functional-red-black-tree-1.0.1" 53015 + sources."get-intrinsic-1.3.0" 53016 sources."get-proto-1.0.1" 53017 sources."glob-7.2.3" 53018 sources."glob-parent-5.1.2" ··· 53454 sources."conventional-changelog-jquery-6.0.0" 53455 sources."conventional-changelog-jshint-5.0.0" 53456 sources."conventional-changelog-preset-loader-5.0.0" 53457 + sources."conventional-changelog-writer-8.0.1" 53458 sources."conventional-commits-filter-5.0.0" 53459 + sources."conventional-commits-parser-6.1.0" 53460 sources."dot-prop-5.3.0" 53461 sources."find-up-simple-1.0.0" 53462 sources."git-raw-commits-5.0.0" ··· 53483 sources."spdx-license-ids-3.0.21" 53484 sources."temp-dir-3.0.0" 53485 sources."tempfile-5.0.0" 53486 + sources."type-fest-4.35.0" 53487 sources."uglify-js-3.19.3" 53488 sources."unicorn-magic-0.1.0" 53489 sources."validate-npm-package-license-3.0.4" ··· 53586 sources."@cycle/run-3.4.0" 53587 sources."@cycle/time-0.10.1" 53588 sources."@types/cookiejar-2.1.5" 53589 + sources."@types/node-22.13.5" 53590 sources."@types/superagent-3.8.2" 53591 sources."ansi-escapes-3.2.0" 53592 sources."ansi-regex-2.1.1" ··· 53642 sources."form-data-2.5.3" 53643 sources."formidable-1.2.6" 53644 sources."function-bind-1.1.2" 53645 + sources."get-intrinsic-1.3.0" 53646 sources."get-proto-1.0.1" 53647 sources."globalthis-1.0.4" 53648 sources."gopd-1.2.0" ··· 53772 cspell = nodeEnv.buildNodePackage { 53773 name = "cspell"; 53774 packageName = "cspell"; 53775 + version = "8.17.5"; 53776 src = fetchurl { 53777 + url = "https://registry.npmjs.org/cspell/-/cspell-8.17.5.tgz"; 53778 + sha512 = "l3Cfp87d7Yrodem675irdxV6+7+OsdR+jNwYHe33Dgnd6ePEfooYrvmfGdXF9rlQrNLUQp/HqYgHJzSq19UEsg=="; 53779 }; 53780 dependencies = [ 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" 53787 sources."@cspell/dict-ada-4.1.0" 53788 sources."@cspell/dict-al-1.1.0" 53789 sources."@cspell/dict-aws-4.0.9" 53790 sources."@cspell/dict-bash-4.2.0" 53791 sources."@cspell/dict-companies-3.1.14" 53792 + sources."@cspell/dict-cpp-6.0.4" 53793 sources."@cspell/dict-cryptocurrencies-5.0.4" 53794 sources."@cspell/dict-csharp-4.0.6" 53795 sources."@cspell/dict-css-4.0.17" ··· 53801 sources."@cspell/dict-elixir-4.0.7" 53802 sources."@cspell/dict-en-common-misspellings-2.0.9" 53803 sources."@cspell/dict-en-gb-1.1.33" 53804 + sources."@cspell/dict-en_us-4.3.33" 53805 sources."@cspell/dict-filetypes-3.0.11" 53806 sources."@cspell/dict-flutter-1.1.0" 53807 sources."@cspell/dict-fonts-4.0.4" 53808 sources."@cspell/dict-fsharp-1.1.0" 53809 + sources."@cspell/dict-fullstack-3.2.5" 53810 sources."@cspell/dict-gaming-terms-1.1.0" 53811 sources."@cspell/dict-git-3.0.4" 53812 sources."@cspell/dict-golang-6.0.18" ··· 53825 sources."@cspell/dict-markdown-2.0.9" 53826 sources."@cspell/dict-monkeyc-1.0.10" 53827 sources."@cspell/dict-node-5.0.6" 53828 + sources."@cspell/dict-npm-5.1.27" 53829 sources."@cspell/dict-php-4.0.14" 53830 sources."@cspell/dict-powershell-5.0.14" 53831 sources."@cspell/dict-public-licenses-2.0.13" ··· 53842 sources."@cspell/dict-terraform-1.1.0" 53843 sources."@cspell/dict-typescript-3.2.0" 53844 sources."@cspell/dict-vue-3.0.4" 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" 53849 sources."array-timsort-1.0.3" 53850 sources."braces-3.0.3" 53851 sources."callsites-3.1.0" ··· 53855 sources."commander-13.1.0" 53856 sources."comment-json-4.2.5" 53857 sources."core-util-is-1.0.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" 53866 sources."env-paths-3.0.0" 53867 sources."esprima-4.0.1" 53868 sources."fast-equals-5.2.2" ··· 53879 sources."fill-range-7.1.1" 53880 sources."find-up-simple-1.0.0" 53881 sources."flat-cache-5.0.0" 53882 + sources."flatted-3.3.3" 53883 sources."gensequence-7.0.0" 53884 sources."get-stdin-9.0.0" 53885 sources."global-directory-4.0.1" ··· 53905 sources."resolve-from-5.0.0" 53906 sources."semver-7.7.1" 53907 ( 53908 + sources."tinyglobby-0.2.12" 53909 // { 53910 dependencies = [ 53911 sources."picomatch-4.0.2" ··· 54105 } 54106 ) 54107 sources."@oclif/screen-3.0.8" 54108 + sources."@swc/core-1.10.18" 54109 sources."@swc/counter-0.1.3" 54110 sources."@swc/helpers-0.5.15" 54111 + sources."@swc/types-0.1.18" 54112 + sources."@swc/wasm-1.10.18" 54113 sources."@tsconfig/node10-1.0.11" 54114 sources."@tsconfig/node12-1.0.11" 54115 sources."@tsconfig/node14-1.0.3" 54116 sources."@tsconfig/node16-1.0.4" 54117 sources."@types/cli-progress-3.11.6" 54118 + sources."@types/node-22.13.5" 54119 sources."acorn-8.14.0" 54120 sources."acorn-walk-8.3.4" 54121 sources."ansi-escapes-4.3.2" ··· 54207 sources."fs-constants-1.0.0" 54208 sources."fs-extra-9.1.0" 54209 sources."function-bind-1.1.2" 54210 + sources."get-intrinsic-1.3.0" 54211 sources."get-package-type-0.1.0" 54212 sources."get-proto-1.0.1" 54213 sources."glob-parent-5.1.2" ··· 54294 sources."reusify-1.0.4" 54295 sources."run-async-2.4.1" 54296 sources."run-parallel-1.2.0" 54297 + sources."rxjs-7.8.2" 54298 sources."safe-buffer-5.2.1" 54299 sources."safer-buffer-2.1.2" 54300 sources."semver-7.7.1" ··· 54351 elasticdump = nodeEnv.buildNodePackage { 54352 name = "elasticdump"; 54353 packageName = "elasticdump"; 54354 + version = "6.119.1"; 54355 src = fetchurl { 54356 + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.119.1.tgz"; 54357 + sha512 = "8fO3I4N1cIw0406jkuNQFMPCe5kRzuQJ+0/ASovZF7qHTSz8sBbzubcgKYsSLeVi7C8kr3lAsb1SdHRuOB/krQ=="; 54358 }; 54359 dependencies = [ 54360 sources."@fast-csv/format-4.3.5" 54361 sources."@fast-csv/parse-4.3.6" 54362 + sources."@shutterstock/p-map-iterable-1.1.2" 54363 sources."@types/node-14.18.63" 54364 sources."JSONStream-1.5.0" 54365 + sources."aggregate-error-3.1.0" 54366 sources."ajv-6.12.6" 54367 sources."asn1-0.2.6" 54368 sources."assert-plus-1.0.0" ··· 54382 sources."call-bind-apply-helpers-1.0.2" 54383 sources."call-bound-1.0.3" 54384 sources."caseless-0.12.0" 54385 + sources."clean-stack-2.2.0" 54386 sources."combined-stream-1.0.8" 54387 sources."core-util-is-1.0.2" 54388 sources."dashdash-1.14.1" ··· 54394 sources."es-define-property-1.0.1" 54395 sources."es-errors-1.3.0" 54396 sources."es-object-atoms-1.1.1" 54397 sources."events-1.1.1" 54398 sources."extend-3.0.2" 54399 sources."extends-classes-1.0.5" ··· 54405 sources."forever-agent-0.6.1" 54406 sources."form-data-2.3.3" 54407 sources."function-bind-1.1.2" 54408 + sources."get-intrinsic-1.3.0" 54409 sources."get-proto-1.0.1" 54410 sources."getpass-0.1.7" 54411 sources."gopd-1.2.0" ··· 54418 sources."http-signature-1.2.0" 54419 sources."http-status-1.8.1" 54420 sources."ieee754-1.1.13" 54421 + sources."indent-string-4.0.0" 54422 sources."inherits-2.0.4" 54423 sources."ini-2.0.0" 54424 ( ··· 54461 sources."mime-types-2.1.35" 54462 sources."minimist-1.2.8" 54463 sources."oauth-sign-0.9.0" 54464 sources."performance-now-2.1.0" 54465 sources."possible-typed-array-names-1.1.0" 54466 sources."process-nextick-args-2.0.1" ··· 54556 "@electron-forge/cli" = nodeEnv.buildNodePackage { 54557 name = "_at_electron-forge_slash_cli"; 54558 packageName = "@electron-forge/cli"; 54559 + version = "7.7.0"; 54560 src = fetchurl { 54561 + url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-7.7.0.tgz"; 54562 + sha512 = "QfnjghmlHMb7dyArR5cbPA+MP9ff/ulWZi6R/a5MkHlKyhrysRfjzDtZDsmkEv9mGQgRwylssgXrZrKHGlxFkw=="; 54563 }; 54564 dependencies = [ 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" 54577 ( 54578 sources."@electron/asar-3.3.1" 54579 // { ··· 54652 sources."@types/cacheable-request-6.0.3" 54653 sources."@types/http-cache-semantics-4.0.4" 54654 sources."@types/keyv-3.1.4" 54655 + sources."@types/node-22.13.5" 54656 sources."@types/responselike-1.0.3" 54657 sources."@types/yauzl-2.10.3" 54658 sources."@xmldom/xmldom-0.8.10" ··· 54709 sources."color-convert-2.0.1" 54710 sources."color-name-1.1.4" 54711 sources."colorette-2.0.20" 54712 + sources."commander-11.1.0" 54713 sources."compare-version-0.1.2" 54714 sources."concat-map-0.0.1" 54715 sources."cross-dirname-0.1.0" ··· 54733 sources."defaults-1.0.4" 54734 sources."defer-to-connect-2.0.1" 54735 sources."detect-libc-2.0.3" 54736 sources."dir-compare-4.2.0" 54737 sources."eastasianwidth-0.2.0" 54738 sources."emoji-regex-8.0.0" ··· 54745 sources."escape-string-regexp-1.0.5" 54746 sources."eventemitter3-5.0.1" 54747 ( 54748 + sources."execa-1.0.0" 54749 // { 54750 dependencies = [ 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" 54758 ]; 54759 } 54760 ) 54761 sources."exponential-backoff-3.1.2" 54762 sources."extract-zip-2.0.1" 54763 sources."fast-glob-3.3.3" ··· 54783 sources."function-bind-1.1.2" 54784 sources."galactus-1.0.0" 54785 sources."get-caller-file-2.0.5" 54786 ( 54787 sources."get-package-info-1.0.0" 54788 // { ··· 54794 sources."get-stream-5.2.0" 54795 sources."glob-7.2.3" 54796 sources."glob-parent-5.1.2" 54797 + sources."global-dirs-3.0.1" 54798 sources."got-11.8.6" 54799 sources."graceful-fs-4.2.11" 54800 sources."has-flag-4.0.0" 54801 sources."hasown-2.0.2" 54802 sources."hosted-git-info-2.8.9" 54803 sources."http-cache-semantics-4.1.1" 54804 sources."http-proxy-agent-5.0.0" 54805 sources."http2-wrapper-1.0.3" 54806 sources."https-proxy-agent-5.0.1" 54807 sources."humanize-ms-1.2.1" 54808 sources."iconv-lite-0.6.3" 54809 sources."ieee754-1.2.1" ··· 54812 sources."infer-owner-1.0.4" 54813 sources."inflight-1.0.6" 54814 sources."inherits-2.0.4" 54815 + sources."ini-2.0.0" 54816 sources."interpret-3.1.1" 54817 sources."ip-address-9.0.5" 54818 sources."is-arrayish-0.2.1" ··· 54823 sources."is-interactive-1.0.0" 54824 sources."is-lambda-1.0.1" 54825 sources."is-number-7.0.0" 54826 + sources."is-stream-1.1.0" 54827 sources."is-unicode-supported-0.1.0" 54828 sources."isbinaryfile-4.0.10" 54829 sources."isexe-2.0.0" 54830 sources."jsbn-1.1.0" ··· 54870 sources."make-fetch-happen-10.2.1" 54871 sources."map-age-cleaner-0.1.3" 54872 sources."mem-4.3.0" 54873 sources."merge2-1.4.1" 54874 sources."micromatch-4.0.8" 54875 sources."mimic-fn-2.1.0" ··· 54900 } 54901 ) 54902 sources."normalize-url-6.1.0" 54903 + ( 54904 + sources."npm-run-path-2.0.2" 54905 + // { 54906 + dependencies = [ 54907 + sources."path-key-2.0.1" 54908 + ]; 54909 + } 54910 + ) 54911 sources."once-1.4.0" 54912 sources."onetime-5.1.2" 54913 sources."ora-5.4.1" ··· 54928 sources."p-try-1.0.0" 54929 sources."parse-author-2.0.0" 54930 sources."parse-json-2.2.0" 54931 sources."path-exists-3.0.0" 54932 sources."path-is-absolute-1.0.1" 54933 sources."path-key-3.1.1" ··· 54969 sources."resedit-2.0.3" 54970 sources."resolve-1.22.10" 54971 sources."resolve-alpn-1.2.1" 54972 sources."responselike-2.0.1" 54973 sources."restore-cursor-3.1.0" 54974 sources."retry-0.12.0" ··· 55007 sources."strip-ansi-6.0.1" 55008 sources."strip-bom-3.0.0" 55009 sources."strip-eof-1.0.0" 55010 sources."strip-outer-1.0.1" 55011 sources."sudo-prompt-9.2.1" 55012 sources."sumchecker-3.0.1" ··· 55028 sources."unique-filename-2.0.1" 55029 sources."unique-slug-3.0.0" 55030 sources."universalify-2.0.1" 55031 + sources."username-5.1.0" 55032 sources."util-deprecate-1.0.2" 55033 sources."validate-npm-package-license-3.0.4" 55034 sources."wcwidth-1.0.1" ··· 55083 }; 55084 dependencies = [ 55085 sources."@alcalzone/ansi-tokenize-0.1.3" 55086 + sources."@types/react-19.0.10" 55087 sources."ajv-8.17.1" 55088 sources."ajv-formats-2.1.1" 55089 sources."ansi-escapes-7.0.0" ··· 55129 // { 55130 dependencies = [ 55131 sources."signal-exit-3.0.7" 55132 + sources."type-fest-4.35.0" 55133 ]; 55134 } 55135 ) ··· 55137 sources."ink-text-input-6.0.0" 55138 // { 55139 dependencies = [ 55140 + sources."type-fest-4.35.0" 55141 ]; 55142 } 55143 ) ··· 55222 sources."which-2.0.2" 55223 sources."widest-line-5.0.0" 55224 sources."wrap-ansi-9.0.0" 55225 + sources."ws-8.18.1" 55226 sources."yoga-wasm-web-0.3.3" 55227 ]; 55228 buildInputs = globalBuildInputs; ··· 55301 sources."@babel/helper-validator-identifier-7.25.9" 55302 sources."@puppeteer/browsers-2.3.0" 55303 sources."@tootallnate/quickjs-emscripten-0.23.0" 55304 + sources."@types/node-22.13.5" 55305 + sources."@types/react-19.0.10" 55306 sources."@types/yauzl-2.10.3" 55307 sources."agent-base-7.1.3" 55308 sources."ansi-escapes-7.0.0" ··· 55400 sources."node-gyp-build-4.8.4" 55401 sources."once-1.4.0" 55402 sources."onetime-5.1.2" 55403 + sources."pac-proxy-agent-7.2.0" 55404 sources."pac-resolver-7.0.1" 55405 sources."parent-module-1.0.1" 55406 sources."parse-json-5.2.0" ··· 55453 sources."text-decoder-1.2.3" 55454 sources."through-2.3.8" 55455 sources."tslib-2.8.1" 55456 + sources."type-fest-4.35.0" 55457 sources."typescript-5.7.3" 55458 sources."unbzip2-stream-1.4.3" 55459 sources."undici-types-6.20.0" ··· 55463 sources."widest-line-5.0.0" 55464 sources."wrap-ansi-9.0.0" 55465 sources."wrappy-1.0.2" 55466 + sources."ws-8.18.1" 55467 sources."y18n-5.0.8" 55468 ( 55469 sources."yargs-17.7.2" ··· 55512 ) 55513 sources."@eslint-community/regexpp-4.12.1" 55514 sources."@eslint/config-array-0.19.2" 55515 + sources."@eslint/core-0.12.0" 55516 + sources."@eslint/eslintrc-3.3.0" 55517 + sources."@eslint/js-9.21.0" 55518 sources."@eslint/object-schema-2.1.6" 55519 + sources."@eslint/plugin-kit-0.2.7" 55520 sources."@grpc/grpc-js-1.12.6" 55521 sources."@grpc/proto-loader-0.7.13" 55522 sources."@humanfs/core-0.19.1" ··· 55529 } 55530 ) 55531 sources."@humanwhocodes/module-importer-1.0.1" 55532 + sources."@humanwhocodes/retry-0.4.2" 55533 sources."@inquirer/checkbox-4.1.2" 55534 sources."@inquirer/confirm-5.1.6" 55535 sources."@inquirer/core-10.1.7" ··· 55580 sources."@types/hast-3.0.4" 55581 sources."@types/json-schema-7.0.15" 55582 sources."@types/mdast-4.0.4" 55583 + sources."@types/node-22.13.5" 55584 sources."@types/unist-3.0.3" 55585 sources."@ungap/structured-clone-1.3.0" 55586 sources."acorn-8.14.0" ··· 55654 sources."dot-prop-9.0.0" 55655 // { 55656 dependencies = [ 55657 + sources."type-fest-4.35.0" 55658 ]; 55659 } 55660 ) ··· 55674 sources."escape-goat-4.0.0" 55675 sources."escape-string-regexp-4.0.0" 55676 ( 55677 + sources."eslint-9.21.0" 55678 // { 55679 dependencies = [ 55680 sources."chalk-4.1.2" ··· 55709 sources."fill-range-7.1.1" 55710 sources."find-up-5.0.0" 55711 sources."flat-cache-4.0.1" 55712 + sources."flatted-3.3.3" 55713 sources."fn-annotate-1.2.0" 55714 sources."fs-constants-1.0.0" 55715 sources."get-caller-file-2.0.5" ··· 55734 } 55735 ) 55736 sources."has-flag-4.0.0" 55737 + sources."hast-util-to-html-9.0.5" 55738 sources."hast-util-whitespace-3.0.0" 55739 sources."html-void-elements-3.0.0" 55740 sources."iconv-lite-0.4.24" ··· 55769 sources."locate-path-6.0.0" 55770 sources."lodash.camelcase-4.3.0" 55771 sources."lodash.merge-4.6.2" 55772 + sources."long-5.3.1" 55773 sources."lower-case-2.0.2" 55774 sources."luxon-3.5.0" 55775 sources."mdast-util-to-hast-13.2.0" ··· 55804 sources."path-key-3.1.1" 55805 sources."picomatch-2.3.1" 55806 sources."prelude-ls-1.2.1" 55807 + sources."property-information-7.0.0" 55808 sources."proto-list-1.2.4" 55809 sources."protobufjs-7.4.0" 55810 sources."pump-3.0.2" ··· 55831 sources."run-applescript-7.0.0" 55832 sources."run-async-3.0.0" 55833 sources."run-parallel-1.2.0" 55834 + sources."rxjs-7.8.2" 55835 sources."safe-buffer-5.2.1" 55836 sources."safer-buffer-2.1.2" 55837 sources."semver-7.7.1" ··· 55877 sources."emoji-regex-10.4.0" 55878 sources."string-width-7.2.0" 55879 sources."strip-ansi-7.1.0" 55880 + sources."type-fest-4.35.0" 55881 sources."widest-line-5.0.0" 55882 sources."wrap-ansi-9.0.0" 55883 ]; ··· 56045 } 56046 ) 56047 sources."run-async-3.0.0" 56048 + sources."rxjs-7.8.2" 56049 sources."safe-buffer-5.2.1" 56050 sources."safer-buffer-2.1.2" 56051 sources."shebang-command-2.0.0" ··· 56117 sources."@scure/bip39-1.3.0" 56118 sources."@types/atob-2.1.4" 56119 sources."@types/inquirer-6.5.0" 56120 + sources."@types/node-22.13.5" 56121 sources."@types/through-0.0.33" 56122 sources."ajv-6.12.6" 56123 sources."ansi-escapes-4.3.2" ··· 56472 sources."fsevents-1.2.13" 56473 sources."function-bind-1.1.2" 56474 sources."functions-have-names-1.2.3" 56475 + sources."get-intrinsic-1.3.0" 56476 sources."get-proto-1.0.1" 56477 sources."get-value-2.0.6" 56478 sources."glob-7.2.3" ··· 56562 sources."mkdirp-0.5.6" 56563 sources."ms-2.1.3" 56564 sources."mute-stream-0.0.8" 56565 + sources."nan-2.22.1" 56566 ( 56567 sources."nanomatch-1.2.13" 56568 // { ··· 56915 sources."@types/common-tags-1.8.4" 56916 sources."@types/http-cache-semantics-4.0.4" 56917 sources."@types/keyv-3.1.4" 56918 + sources."@types/node-22.13.5" 56919 sources."@types/responselike-1.0.3" 56920 sources."@types/yoga-layout-1.9.2" 56921 sources."abort-controller-3.0.0" ··· 56946 } 56947 ) 56948 sources."camelcase-6.3.0" 56949 + sources."caniuse-lite-1.0.30001700" 56950 sources."chalk-4.1.2" 56951 sources."chardet-0.7.0" 56952 sources."ci-info-2.0.0" ··· 57008 sources."domhandler-4.3.1" 57009 sources."domutils-2.8.0" 57010 sources."dot-prop-5.3.0" 57011 + sources."electron-to-chromium-1.5.104" 57012 sources."emoji-regex-8.0.0" 57013 ( 57014 sources."encoding-0.1.13" ··· 57275 sources."es-errors-1.3.0" 57276 sources."es-object-atoms-1.1.1" 57277 sources."function-bind-1.1.2" 57278 + sources."get-intrinsic-1.3.0" 57279 sources."get-proto-1.0.1" 57280 sources."gopd-1.2.0" 57281 sources."has-flag-4.0.0" ··· 57771 ) 57772 sources."moment-2.30.1" 57773 sources."mv-2.1.1" 57774 + sources."nan-2.22.1" 57775 sources."ncp-2.0.0" 57776 sources."once-1.4.0" 57777 sources."optimist-0.6.1" ··· 57905 ) 57906 sources."@aws-sdk/config-resolver-3.296.0" 57907 ( 57908 + sources."@aws-sdk/core-3.750.0" 57909 // { 57910 dependencies = [ 57911 sources."@aws-sdk/types-3.734.0" ··· 57921 sources."@aws-sdk/credential-provider-sso-3.296.0" 57922 sources."@aws-sdk/credential-provider-web-identity-3.296.0" 57923 ( 57924 + sources."@aws-sdk/crt-loader-3.750.0" 57925 // { 57926 dependencies = [ 57927 + sources."@aws-sdk/middleware-user-agent-3.750.0" 57928 sources."@aws-sdk/types-3.734.0" 57929 sources."@aws-sdk/util-endpoints-3.743.0" 57930 + sources."@aws-sdk/util-user-agent-node-3.750.0" 57931 ]; 57932 } 57933 ) ··· 57978 sources."@aws-sdk/shared-ini-file-loader-3.296.0" 57979 sources."@aws-sdk/signature-v4-3.296.0" 57980 ( 57981 + sources."@aws-sdk/signature-v4-crt-3.750.0" 57982 // { 57983 dependencies = [ 57984 + sources."@aws-sdk/middleware-sdk-s3-3.750.0" 57985 + sources."@aws-sdk/signature-v4-multi-region-3.750.0" 57986 sources."@aws-sdk/types-3.734.0" 57987 sources."@aws-sdk/util-arn-parser-3.723.0" 57988 ]; ··· 58019 sources."@aws-sdk/xml-builder-3.295.0" 58020 sources."@babel/runtime-7.26.9" 58021 sources."@cronvel/get-pixels-3.4.1" 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" 58025 sources."@csstools/css-parser-algorithms-3.0.4" 58026 sources."@csstools/css-tokenizer-3.0.3" 58027 sources."@gar/promisify-1.1.3" ··· 58069 sources."@npmcli/fs-1.1.1" 58070 sources."@npmcli/move-file-1.1.2" 58071 sources."@smithy/abort-controller-4.0.1" 58072 + sources."@smithy/core-3.1.5" 58073 sources."@smithy/fetch-http-handler-5.0.1" 58074 sources."@smithy/is-array-buffer-4.0.0" 58075 + sources."@smithy/middleware-endpoint-4.0.6" 58076 sources."@smithy/middleware-serde-4.0.2" 58077 sources."@smithy/middleware-stack-4.0.1" 58078 sources."@smithy/node-config-provider-4.0.1" 58079 + sources."@smithy/node-http-handler-4.0.3" 58080 sources."@smithy/property-provider-4.0.1" 58081 sources."@smithy/protocol-http-5.0.1" 58082 sources."@smithy/querystring-builder-4.0.1" 58083 sources."@smithy/querystring-parser-4.0.1" 58084 sources."@smithy/shared-ini-file-loader-4.0.1" 58085 sources."@smithy/signature-v4-5.0.1" 58086 + sources."@smithy/smithy-client-4.1.6" 58087 sources."@smithy/types-4.1.0" 58088 sources."@smithy/url-parser-4.0.1" 58089 sources."@smithy/util-base64-4.0.0" ··· 58093 sources."@smithy/util-endpoints-3.0.1" 58094 sources."@smithy/util-hex-encoding-4.0.0" 58095 sources."@smithy/util-middleware-4.0.1" 58096 + sources."@smithy/util-stream-4.1.2" 58097 sources."@smithy/util-uri-escape-4.0.0" 58098 sources."@smithy/util-utf8-4.0.0" 58099 sources."@tokenizer/token-0.3.0" 58100 sources."@tootallnate/once-1.1.2" 58101 sources."@types/nanoid-3.0.0" 58102 + sources."@types/node-22.13.5" 58103 sources."@types/ws-8.5.14" 58104 sources."abbrev-1.1.1" 58105 sources."abort-controller-3.0.0" ··· 58331 sources."for-each-property-0.0.4" 58332 sources."for-each-property-deep-0.0.3" 58333 ( 58334 + sources."foreground-child-3.3.1" 58335 // { 58336 dependencies = [ 58337 sources."signal-exit-4.1.0" ··· 58362 sources."fs.realpath-1.0.0" 58363 sources."function-bind-1.1.2" 58364 sources."gauge-3.0.2" 58365 + sources."get-intrinsic-1.3.0" 58366 sources."get-proto-1.0.1" 58367 sources."get-prototype-chain-1.0.1" 58368 sources."get-stdin-5.0.1" ··· 58664 sources."ms-2.1.3" 58665 sources."multiparty-4.2.3" 58666 sources."mustache-4.2.0" 58667 + sources."nan-2.22.1" 58668 sources."nanoid-3.3.7" 58669 sources."napi-build-utils-2.0.0" 58670 sources."ndarray-1.0.19" ··· 58946 ) 58947 sources."strip-final-newline-2.0.0" 58948 sources."strip-json-comments-2.0.1" 58949 + sources."strnum-1.1.1" 58950 sources."strtok3-6.3.0" 58951 sources."supports-color-7.2.0" 58952 sources."symbol-tree-3.2.4" ··· 59073 } 59074 ) 59075 sources."wrappy-1.0.2" 59076 + sources."ws-8.18.1" 59077 sources."xml-name-validator-5.0.0" 59078 sources."xml2js-0.4.23" 59079 sources."xmlbuilder-11.0.1" ··· 59116 sources."eastasianwidth-0.2.0" 59117 sources."editorconfig-1.0.4" 59118 sources."emoji-regex-9.2.2" 59119 + sources."foreground-child-3.3.1" 59120 ( 59121 sources."glob-10.4.5" 59122 // { ··· 59390 sources."form-data-4.0.2" 59391 sources."formidable-2.1.2" 59392 sources."function-bind-1.1.2" 59393 + sources."get-intrinsic-1.3.0" 59394 sources."get-proto-1.0.1" 59395 sources."gopd-1.2.0" 59396 sources."graphlib-2.1.8" ··· 59449 dependencies = [ 59450 sources."@polka/url-1.0.0-next.28" 59451 sources."@tinyhttp/accepts-2.2.3" 59452 + sources."@tinyhttp/app-2.5.2" 59453 sources."@tinyhttp/content-disposition-2.2.2" 59454 sources."@tinyhttp/content-type-0.1.4" 59455 sources."@tinyhttp/cookie-2.1.1" ··· 59457 sources."@tinyhttp/cors-2.0.1" 59458 sources."@tinyhttp/encode-url-2.1.1" 59459 sources."@tinyhttp/etag-2.1.2" 59460 + sources."@tinyhttp/forwarded-2.1.2" 59461 sources."@tinyhttp/logger-2.0.0" 59462 + sources."@tinyhttp/proxy-addr-2.2.1" 59463 + sources."@tinyhttp/req-2.2.5" 59464 + sources."@tinyhttp/res-2.2.5" 59465 sources."@tinyhttp/router-2.2.3" 59466 sources."@tinyhttp/send-2.2.3" 59467 sources."@tinyhttp/type-is-2.2.4" ··· 59482 sources."lowdb-7.0.1" 59483 sources."milliparsec-4.0.0" 59484 sources."mime-4.0.4" 59485 + sources."mrmime-2.0.1" 59486 sources."negotiator-0.6.4" 59487 sources."readdirp-4.1.2" 59488 sources."regexparam-2.0.2" ··· 59490 sources."sort-on-6.1.0" 59491 sources."steno-4.0.2" 59492 sources."totalist-3.0.1" 59493 + sources."type-fest-4.35.0" 59494 ]; 59495 buildInputs = globalBuildInputs; 59496 meta = { ··· 59730 sources."fsevents-1.2.13" 59731 sources."function-bind-1.1.2" 59732 sources."get-caller-file-1.0.3" 59733 + sources."get-intrinsic-1.3.0" 59734 sources."get-proto-1.0.1" 59735 sources."get-value-2.0.6" 59736 sources."getpass-0.1.7" ··· 59855 sources."mkdirp-0.5.6" 59856 sources."morgan-1.10.0" 59857 sources."ms-2.0.0" 59858 + sources."nan-2.22.1" 59859 ( 59860 sources."nanomatch-1.2.13" 59861 // { ··· 60303 sources."@xmpp/websocket-0.13.3" 60304 // { 60305 dependencies = [ 60306 + sources."ws-8.18.1" 60307 ]; 60308 } 60309 ) ··· 60374 sources."call-bind-1.0.8" 60375 sources."call-bind-apply-helpers-1.0.2" 60376 sources."call-bound-1.0.3" 60377 + sources."caniuse-lite-1.0.30001700" 60378 sources."canvas-2.11.2" 60379 sources."chalk-4.1.2" 60380 sources."chardet-1.6.1" ··· 60439 sources."dotenv-8.6.0" 60440 sources."dunder-proto-1.0.1" 60441 sources."ee-first-1.1.1" 60442 + sources."electron-to-chromium-1.5.104" 60443 sources."emoji-regex-8.0.0" 60444 sources."encodeurl-2.0.0" 60445 ( ··· 60544 sources."gauge-3.0.2" 60545 sources."gensync-1.0.0-beta.2" 60546 sources."get-caller-file-2.0.5" 60547 + sources."get-intrinsic-1.3.0" 60548 sources."get-proto-1.0.1" 60549 sources."get-symbol-description-1.1.0" 60550 sources."github-from-package-0.0.0" ··· 60690 sources."mkdirp-classic-0.5.3" 60691 sources."ms-2.1.3" 60692 sources."multistream-4.1.0" 60693 + sources."nan-2.22.1" 60694 sources."napi-build-utils-1.0.2" 60695 sources."negotiator-0.6.3" 60696 sources."node-abi-3.74.0" ··· 61186 } 61187 ) 61188 sources."ms-2.1.3" 61189 + sources."nan-2.22.1" 61190 ( 61191 sources."nanomatch-1.2.13" 61192 // { ··· 61532 sources."fresh-0.5.2" 61533 sources."fsevents-1.2.13" 61534 sources."function-bind-1.1.2" 61535 + sources."get-intrinsic-1.3.0" 61536 sources."get-proto-1.0.1" 61537 sources."get-value-2.0.6" 61538 sources."getpass-0.1.7" ··· 61646 } 61647 ) 61648 sources."ms-2.0.0" 61649 + sources."nan-2.22.1" 61650 ( 61651 sources."nanomatch-1.2.13" 61652 // { ··· 62018 sources."@types/commander-2.12.5" 62019 sources."@types/diff-3.5.8" 62020 sources."@types/get-stdin-5.0.1" 62021 + sources."@types/node-22.13.5" 62022 sources."commander-2.20.3" 62023 sources."diff-3.5.0" 62024 sources."get-stdin-5.0.1" ··· 62204 sources."function-bind-1.1.2" 62205 sources."generate-function-2.3.1" 62206 sources."generate-object-property-1.2.0" 62207 + sources."get-intrinsic-1.3.0" 62208 sources."get-proto-1.0.1" 62209 sources."getpass-0.1.7" 62210 sources."glob-7.2.3" ··· 62544 sources."fill-range-7.1.1" 62545 sources."find-up-5.0.0" 62546 sources."flat-5.0.2" 62547 + sources."foreground-child-3.3.1" 62548 sources."get-caller-file-2.0.5" 62549 ( 62550 sources."glob-10.4.5" ··· 62681 sources."form-data-4.0.2" 62682 sources."formidable-2.1.2" 62683 sources."function-bind-1.1.2" 62684 + sources."get-intrinsic-1.3.0" 62685 sources."get-proto-1.0.1" 62686 sources."gopd-1.2.0" 62687 sources."graphlib-2.1.8" ··· 63046 sources."@pnpm/npm-conf-2.3.1" 63047 sources."@samverschueren/stream-to-observable-0.3.1" 63048 sources."@sindresorhus/merge-streams-2.3.0" 63049 + sources."@types/node-22.13.5" 63050 sources."@types/normalize-package-data-2.4.4" 63051 sources."ansi-align-3.0.1" 63052 sources."ansi-escapes-4.3.2" ··· 63065 sources."emoji-regex-10.4.0" 63066 sources."string-width-7.2.0" 63067 sources."strip-ansi-7.1.0" 63068 + sources."type-fest-4.35.0" 63069 sources."wrap-ansi-9.0.0" 63070 ]; 63071 } ··· 63123 sources."dot-prop-9.0.0" 63124 // { 63125 dependencies = [ 63126 + sources."type-fest-4.35.0" 63127 ]; 63128 } 63129 ) ··· 63425 sources."read-package-up-11.0.0" 63426 // { 63427 dependencies = [ 63428 + sources."type-fest-4.35.0" 63429 ]; 63430 } 63431 ) ··· 63434 // { 63435 dependencies = [ 63436 sources."parse-json-8.1.0" 63437 + sources."type-fest-4.35.0" 63438 sources."unicorn-magic-0.1.0" 63439 ]; 63440 } ··· 63465 sources."run-async-3.0.0" 63466 sources."run-parallel-1.2.0" 63467 ( 63468 + sources."rxjs-7.8.2" 63469 // { 63470 dependencies = [ 63471 sources."tslib-2.8.1" ··· 63581 sources."@inquirer/figures-1.0.10" 63582 sources."@inquirer/select-4.0.9" 63583 sources."@inquirer/type-3.0.4" 63584 + sources."@types/node-22.13.5" 63585 sources."ansi-escapes-4.3.2" 63586 sources."ansi-regex-5.0.1" 63587 sources."ansi-styles-4.3.0" ··· 63715 sources."@types/hast-3.0.4" 63716 sources."@types/json-schema-7.0.15" 63717 sources."@types/mdast-4.0.4" 63718 + sources."@types/node-22.13.5" 63719 sources."@types/unist-3.0.3" 63720 sources."@types/urijs-1.19.25" 63721 sources."@ungap/structured-clone-1.3.0" ··· 63798 sources."function.prototype.name-1.1.8" 63799 sources."functions-have-names-1.2.3" 63800 sources."get-caller-file-2.0.5" 63801 + sources."get-intrinsic-1.3.0" 63802 sources."get-proto-1.0.1" 63803 sources."get-stream-6.0.1" 63804 sources."get-symbol-description-1.1.0" ··· 63814 sources."has-symbols-1.1.0" 63815 sources."has-tostringtag-1.0.2" 63816 sources."hasown-2.0.2" 63817 + sources."hast-util-to-html-9.0.5" 63818 sources."hast-util-whitespace-3.0.0" 63819 sources."html-void-elements-3.0.0" 63820 sources."http2-client-1.3.5" ··· 63942 sources."picomatch-2.3.1" 63943 sources."pony-cause-1.1.1" 63944 sources."possible-typed-array-names-1.1.0" 63945 + sources."property-information-7.0.0" 63946 sources."punycode.js-2.3.1" 63947 sources."queue-microtask-1.2.3" 63948 sources."readdirp-4.1.2" ··· 64176 sources."@parcel/utils-2.13.3" 64177 sources."@parcel/watcher-2.5.1" 64178 sources."@parcel/workers-2.13.3" 64179 + sources."@swc/core-1.10.18" 64180 sources."@swc/counter-0.1.3" 64181 sources."@swc/helpers-0.5.15" 64182 + sources."@swc/types-0.1.18" 64183 sources."@trysound/sax-0.2.0" 64184 sources."abab-2.0.6" 64185 sources."acorn-8.14.0" ··· 64214 sources."buffer-from-1.1.2" 64215 sources."callsites-3.1.0" 64216 sources."caniuse-api-3.0.0" 64217 + sources."caniuse-lite-1.0.30001700" 64218 sources."caseless-0.12.0" 64219 sources."chalk-4.1.2" 64220 sources."chrome-trace-event-1.0.4" ··· 64284 sources."dotenv-expand-11.0.7" 64285 sources."eastasianwidth-0.2.0" 64286 sources."ecc-jsbn-0.1.2" 64287 + sources."electron-to-chromium-1.5.104" 64288 sources."emoji-regex-9.2.2" 64289 sources."entities-3.0.1" 64290 sources."env-paths-2.2.1" ··· 64300 sources."fast-json-stable-stringify-2.1.0" 64301 sources."fast-levenshtein-2.0.6" 64302 sources."fill-range-7.1.1" 64303 + sources."foreground-child-3.3.1" 64304 sources."forever-agent-0.6.1" 64305 sources."form-data-2.3.3" 64306 sources."fs.realpath-1.0.0" ··· 64410 sources."picocolors-1.1.1" 64411 sources."picomatch-2.3.1" 64412 sources."pn-1.1.0" 64413 + sources."postcss-8.5.3" 64414 sources."postcss-calc-10.1.1" 64415 sources."postcss-colormin-7.0.2" 64416 sources."postcss-convert-values-7.0.4" ··· 64751 sources."gelf-stream-1.1.1" 64752 sources."gelfling-0.3.1" 64753 sources."get-caller-file-2.0.5" 64754 + sources."get-intrinsic-1.3.0" 64755 sources."get-proto-1.0.1" 64756 sources."getpass-0.1.7" 64757 sources."glob-7.2.3" ··· 64814 sources."ms-2.0.0" 64815 sources."msgpack5-3.6.1" 64816 sources."mv-2.1.1" 64817 + sources."nan-2.22.1" 64818 sources."ncp-2.0.0" 64819 sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" 64820 sources."neo-async-2.6.2" ··· 65098 sources."function-bind-1.1.2" 65099 sources."functions-have-names-1.2.3" 65100 sources."get-browser-rtc-1.1.0" 65101 + sources."get-intrinsic-1.3.0" 65102 sources."get-proto-1.0.1" 65103 sources."get-stdin-4.0.1" 65104 sources."glob-7.2.3" ··· 65524 sources."fs.realpath-1.0.0" 65525 sources."function-bind-1.1.2" 65526 sources."get-browser-rtc-1.1.0" 65527 + sources."get-intrinsic-1.3.0" 65528 sources."get-proto-1.0.1" 65529 sources."getpass-0.1.7" 65530 sources."glob-7.2.3" ··· 65866 postcss = nodeEnv.buildNodePackage { 65867 name = "postcss"; 65868 packageName = "postcss"; 65869 + version = "8.5.3"; 65870 src = fetchurl { 65871 + url = "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz"; 65872 + sha512 = "dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="; 65873 }; 65874 dependencies = [ 65875 sources."nanoid-3.3.8" ··· 65910 sources."color-name-1.1.4" 65911 sources."dependency-graph-0.11.0" 65912 sources."emoji-regex-8.0.0" 65913 + sources."esbuild-0.25.0" 65914 sources."escalade-3.2.0" 65915 sources."fast-glob-3.3.3" 65916 sources."fastq-1.19.0" ··· 65939 sources."picocolors-1.1.1" 65940 sources."picomatch-2.3.1" 65941 sources."pify-2.3.0" 65942 + sources."postcss-8.5.3" 65943 sources."postcss-load-config-5.1.0" 65944 sources."postcss-reporter-7.1.0" 65945 sources."pretty-hrtime-1.0.3" ··· 65956 sources."strip-ansi-6.0.1" 65957 sources."thenby-1.3.4" 65958 sources."to-regex-range-5.0.1" 65959 + sources."tsx-4.19.3" 65960 sources."unicorn-magic-0.3.0" 65961 sources."universalify-2.0.1" 65962 sources."wrap-ansi-7.0.0" ··· 66032 prettier = nodeEnv.buildNodePackage { 66033 name = "prettier"; 66034 packageName = "prettier"; 66035 + version = "3.5.2"; 66036 src = fetchurl { 66037 + url = "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz"; 66038 + sha512 = "lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg=="; 66039 }; 66040 buildInputs = globalBuildInputs; 66041 meta = { ··· 66050 prettier-plugin-toml = nodeEnv.buildNodePackage { 66051 name = "prettier-plugin-toml"; 66052 packageName = "prettier-plugin-toml"; 66053 + version = "2.0.2"; 66054 src = fetchurl { 66055 + url = "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.2.tgz"; 66056 + sha512 = "tUIIhyfdVX5DMsLGKX/2qaEwi3W48OkUSR7XC91PRI5jFzhexmaYWkrSP1Xh/eWUcEc0TVMQenM3lB09xLQstQ=="; 66057 }; 66058 dependencies = [ 66059 sources."@taplo/core-0.1.1" 66060 sources."@taplo/lib-0.4.0-alpha.2" 66061 + sources."prettier-3.5.2" 66062 ]; 66063 buildInputs = globalBuildInputs; 66064 meta = { 66065 description = "An opinionated `toml` formatter plugin for Prettier"; 66066 + homepage = "https://github.com/un-ts/prettier/tree/master/packages/toml"; 66067 license = "MIT"; 66068 }; 66069 production = true; ··· 66073 "@prisma/language-server" = nodeEnv.buildNodePackage { 66074 name = "_at_prisma_slash_language-server"; 66075 packageName = "@prisma/language-server"; 66076 + version = "6.4.1"; 66077 src = fetchurl { 66078 + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-6.4.1.tgz"; 66079 + sha512 = "gCB2QOaw1oFN53I6QB0oNaAPTF3DB9xpSfd9G2wsqoInMwufu+fGJP+d97wqSOmHlavQZJ3//yTQkk7Ws/HzYA=="; 66080 }; 66081 dependencies = [ 66082 + sources."@prisma/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d" 66083 + sources."@prisma/schema-files-loader-6.4.1" 66084 sources."@types/js-levenshtein-1.1.3" 66085 sources."fs-extra-11.1.1" 66086 sources."graceful-fs-4.2.11" ··· 66132 ) 66133 sources."eastasianwidth-0.2.0" 66134 sources."emoji-regex-9.2.2" 66135 + sources."foreground-child-3.3.1" 66136 sources."fs.realpath-1.0.0" 66137 sources."gaze-1.1.3" 66138 ( ··· 66348 sources."function-bind-1.1.2" 66349 sources."gaze-1.1.3" 66350 sources."get-assigned-identifiers-1.2.0" 66351 + sources."get-intrinsic-1.3.0" 66352 sources."get-proto-1.0.1" 66353 ( 66354 sources."glob-7.2.3" ··· 66678 sources."cross-spawn-7.0.6" 66679 sources."eastasianwidth-0.2.0" 66680 sources."emoji-regex-9.2.2" 66681 + sources."foreground-child-3.3.1" 66682 sources."glob-11.0.1" 66683 sources."is-fullwidth-code-point-3.0.0" 66684 sources."isexe-2.0.0" 66685 + sources."jackspeak-4.1.0" 66686 sources."lru-cache-11.0.2" 66687 sources."minimatch-10.0.1" 66688 sources."minipass-7.1.2" ··· 66738 rollup = nodeEnv.buildNodePackage { 66739 name = "rollup"; 66740 packageName = "rollup"; 66741 + version = "4.34.8"; 66742 src = fetchurl { 66743 + url = "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz"; 66744 + sha512 = "489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ=="; 66745 }; 66746 dependencies = [ 66747 sources."@types/estree-1.0.6" ··· 66756 bypassCache = true; 66757 reconstructLock = true; 66758 }; 66759 sass = nodeEnv.buildNodePackage { 66760 name = "sass"; 66761 packageName = "sass"; 66762 + version = "1.85.1"; 66763 src = fetchurl { 66764 + url = "https://registry.npmjs.org/sass/-/sass-1.85.1.tgz"; 66765 + sha512 = "Uk8WpxM5v+0cMR0XjX9KfRIacmSG86RH4DCCZjLU2rFh5tyutt9siAXJ7G+YfxQ99Q6wrRMbMlVl6KqUms71ag=="; 66766 }; 66767 dependencies = [ 66768 sources."chokidar-4.0.3" ··· 67018 sources."minimist-1.2.8" 67019 sources."mkdirp-0.5.6" 67020 sources."mv-2.1.1" 67021 + sources."nan-2.22.1" 67022 sources."ncp-2.0.0" 67023 sources."negotiator-0.5.3" 67024 sources."node-uuid-1.4.8" ··· 67144 dependencies = [ 67145 sources."@socket.io/component-emitter-3.1.2" 67146 sources."@types/cors-2.8.17" 67147 + sources."@types/node-22.13.5" 67148 sources."accepts-1.3.8" 67149 sources."base64id-2.0.0" 67150 sources."bufferutil-4.0.9" ··· 67381 sources."picomatch-4.0.2" 67382 sources."readdirp-4.1.2" 67383 sources."sade-1.8.1" 67384 + sources."svelte-5.20.4" 67385 sources."typescript-5.7.3" 67386 sources."zimmerframe-1.1.2" 67387 ]; ··· 67513 sources."@types/cors-2.8.17" 67514 sources."@types/http-cache-semantics-4.0.4" 67515 sources."@types/keyv-3.1.4" 67516 + sources."@types/node-22.13.5" 67517 sources."@types/responselike-1.0.3" 67518 sources."abort-controller-3.0.0" 67519 sources."abstract-logging-2.0.1" ··· 67624 sources."forwarded-0.2.0" 67625 sources."fresh-0.5.2" 67626 sources."function-bind-1.1.2" 67627 + sources."get-intrinsic-1.3.0" 67628 sources."get-proto-1.0.1" 67629 sources."get-stream-5.2.0" 67630 sources."gopd-1.2.0" ··· 68032 sources."fs.realpath-1.0.0" 68033 sources."function-bind-1.1.2" 68034 sources."gauge-2.7.4" 68035 + sources."get-intrinsic-1.3.0" 68036 sources."get-proto-1.0.1" 68037 sources."get-stream-4.1.0" 68038 sources."getpass-0.1.7" ··· 68128 sources."mkdirp-0.5.6" 68129 sources."ms-2.0.0" 68130 sources."mute-stream-0.0.8" 68131 + sources."nan-2.22.1" 68132 ( 68133 sources."needle-2.9.1" 68134 // { ··· 68597 sources."@types/cacheable-request-6.0.3" 68598 sources."@types/http-cache-semantics-4.0.4" 68599 sources."@types/keyv-3.1.4" 68600 + sources."@types/node-22.13.5" 68601 sources."@types/responselike-1.0.3" 68602 sources."abbrev-1.1.1" 68603 sources."abstract-logging-2.0.1" ··· 69152 sources."@types/cacheable-request-6.0.3" 69153 sources."@types/http-cache-semantics-4.0.4" 69154 sources."@types/keyv-3.1.4" 69155 + sources."@types/node-22.13.5" 69156 sources."@types/responselike-1.0.3" 69157 sources."abbrev-1.1.1" 69158 sources."abstract-logging-2.0.1" ··· 70169 sources."@jridgewell/resolve-uri-3.1.2" 70170 sources."@jridgewell/sourcemap-codec-1.5.0" 70171 sources."@jridgewell/trace-mapping-0.3.9" 70172 + sources."@swc/core-1.10.18" 70173 sources."@swc/counter-0.1.3" 70174 sources."@swc/helpers-0.5.15" 70175 + sources."@swc/types-0.1.18" 70176 + sources."@swc/wasm-1.10.18" 70177 sources."@tsconfig/node10-1.0.11" 70178 sources."@tsconfig/node12-1.0.11" 70179 sources."@tsconfig/node14-1.0.3" 70180 sources."@tsconfig/node16-1.0.4" 70181 + sources."@types/node-22.13.5" 70182 sources."acorn-8.14.0" 70183 sources."acorn-walk-8.3.4" 70184 sources."arg-4.1.3" ··· 70260 sources."@types/debug-4.1.12" 70261 sources."@types/is-empty-1.2.3" 70262 sources."@types/ms-2.1.0" 70263 + sources."@types/node-22.13.5" 70264 sources."@types/supports-color-8.1.3" 70265 sources."@types/unist-3.0.3" 70266 sources."abbrev-2.0.0" ··· 70281 sources."error-ex-1.3.2" 70282 sources."extend-3.0.2" 70283 sources."find-up-6.3.0" 70284 + sources."foreground-child-3.3.1" 70285 sources."glob-10.4.5" 70286 sources."hosted-git-info-7.0.2" 70287 sources."ignore-6.0.2" ··· 70412 vega-cli = nodeEnv.buildNodePackage { 70413 name = "vega-cli"; 70414 packageName = "vega-cli"; 70415 + version = "5.32.0"; 70416 src = fetchurl { 70417 + url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.32.0.tgz"; 70418 + sha512 = "k3PQ6HDp/GgJUBNKN/KdyfVX1JoVGtjdH8uYZKxXZo7Fmky9yMmdw8+vLzcLinaLDsUdUPhh8oiTC6+wdjipAA=="; 70419 }; 70420 dependencies = [ 70421 sources."@mapbox/node-pre-gyp-1.0.11" ··· 70505 ) 70506 sources."mkdirp-1.0.4" 70507 sources."ms-2.1.3" 70508 + sources."nan-2.22.1" 70509 sources."node-fetch-2.7.0" 70510 sources."nopt-5.0.0" 70511 sources."npmlog-5.0.1" ··· 70538 ) 70539 sources."tr46-0.0.3" 70540 sources."util-deprecate-1.0.2" 70541 + sources."vega-5.32.0" 70542 sources."vega-canvas-1.2.7" 70543 sources."vega-crossfilter-4.1.3" 70544 sources."vega-dataflow-5.7.7" 70545 sources."vega-encode-4.10.2" 70546 sources."vega-event-selector-3.0.1" 70547 + sources."vega-expression-5.2.0" 70548 sources."vega-force-4.2.2" 70549 sources."vega-format-1.1.3" 70550 + sources."vega-functions-5.17.0" 70551 sources."vega-geo-4.4.3" 70552 sources."vega-hierarchy-4.1.3" 70553 sources."vega-label-1.3.1" 70554 sources."vega-loader-4.5.3" 70555 + sources."vega-parser-6.5.0" 70556 sources."vega-projection-1.6.2" 70557 sources."vega-regression-1.3.1" 70558 sources."vega-runtime-6.2.1" 70559 sources."vega-scale-7.4.2" 70560 sources."vega-scenegraph-4.13.1" 70561 + sources."vega-selections-5.6.0" 70562 sources."vega-statistics-1.9.0" 70563 sources."vega-time-2.1.3" 70564 sources."vega-transforms-4.12.1" 70565 + sources."vega-typings-1.5.0" 70566 sources."vega-util-1.17.3" 70567 + sources."vega-view-5.15.0" 70568 sources."vega-view-transforms-4.6.1" 70569 sources."vega-voronoi-4.2.4" 70570 sources."vega-wordcloud-4.1.6" ··· 70650 ) 70651 sources."tr46-0.0.3" 70652 sources."tslib-2.8.1" 70653 + ( 70654 + sources."vega-5.32.0" 70655 + // { 70656 + dependencies = [ 70657 + sources."vega-expression-5.2.0" 70658 + ]; 70659 + } 70660 + ) 70661 sources."vega-canvas-1.2.7" 70662 sources."vega-crossfilter-4.1.3" 70663 sources."vega-dataflow-5.7.7" ··· 70666 sources."vega-expression-5.1.2" 70667 sources."vega-force-4.2.2" 70668 sources."vega-format-1.1.3" 70669 + ( 70670 + sources."vega-functions-5.17.0" 70671 + // { 70672 + dependencies = [ 70673 + sources."vega-expression-5.2.0" 70674 + ]; 70675 + } 70676 + ) 70677 sources."vega-geo-4.4.3" 70678 sources."vega-hierarchy-4.1.3" 70679 sources."vega-label-1.3.1" 70680 sources."vega-loader-4.5.3" 70681 + sources."vega-parser-6.5.0" 70682 sources."vega-projection-1.6.2" 70683 sources."vega-regression-1.3.1" 70684 sources."vega-runtime-6.2.1" 70685 sources."vega-scale-7.4.2" 70686 sources."vega-scenegraph-4.13.1" 70687 + ( 70688 + sources."vega-selections-5.6.0" 70689 + // { 70690 + dependencies = [ 70691 + sources."vega-expression-5.2.0" 70692 + ]; 70693 + } 70694 + ) 70695 sources."vega-statistics-1.9.0" 70696 sources."vega-time-2.1.3" 70697 sources."vega-transforms-4.12.1" 70698 + ( 70699 + sources."vega-typings-1.5.0" 70700 + // { 70701 + dependencies = [ 70702 + sources."vega-expression-5.2.0" 70703 + ]; 70704 + } 70705 + ) 70706 sources."vega-util-1.17.3" 70707 + sources."vega-view-5.15.0" 70708 sources."vega-view-transforms-4.6.1" 70709 sources."vega-voronoi-4.2.4" 70710 sources."vega-wordcloud-4.1.6" ··· 70728 vercel = nodeEnv.buildNodePackage { 70729 name = "vercel"; 70730 packageName = "vercel"; 70731 + version = "41.2.1"; 70732 src = fetchurl { 70733 + url = "https://registry.npmjs.org/vercel/-/vercel-41.2.1.tgz"; 70734 + sha512 = "PNYkkVkQVeGd7xFIOzVmnMMrBfWZRbdfeZn7YSJ4FqLufQcWmI5T+nn4oHKyYPDRDWus46tQ7ONXpA3vH6tkvQ=="; 70735 }; 70736 dependencies = [ 70737 sources."@cspotcode/source-map-support-0.8.1" ··· 70771 sources."@nodelib/fs.walk-1.2.8" 70772 sources."@rollup/pluginutils-5.1.4" 70773 sources."@sinclair/typebox-0.25.24" 70774 + sources."@swc/core-1.10.18" 70775 sources."@swc/counter-0.1.3" 70776 sources."@swc/helpers-0.5.15" 70777 + sources."@swc/types-0.1.18" 70778 + sources."@swc/wasm-1.10.18" 70779 sources."@tootallnate/once-2.0.0" 70780 + sources."@ts-morph/common-0.11.1" 70781 sources."@tsconfig/node10-1.0.11" 70782 sources."@tsconfig/node12-1.0.11" 70783 sources."@tsconfig/node14-1.0.3" ··· 70785 sources."@types/estree-1.0.6" 70786 sources."@types/json-schema-7.0.15" 70787 sources."@types/node-16.18.11" 70788 + sources."@vercel/build-utils-10.2.0" 70789 sources."@vercel/error-utils-2.0.3" 70790 + sources."@vercel/fun-1.1.5" 70791 sources."@vercel/gatsby-plugin-vercel-analytics-1.0.11" 70792 + sources."@vercel/gatsby-plugin-vercel-builder-2.0.74" 70793 sources."@vercel/go-3.2.1" 70794 + sources."@vercel/hydrogen-1.2.0" 70795 + sources."@vercel/next-4.7.1" 70796 sources."@vercel/nft-0.27.10" 70797 ( 70798 + sources."@vercel/node-5.1.8" 70799 // { 70800 dependencies = [ 70801 sources."async-listen-3.0.0" ··· 70806 ) 70807 sources."@vercel/python-4.7.1" 70808 ( 70809 + sources."@vercel/redwood-2.3.0" 70810 // { 70811 dependencies = [ 70812 sources."semver-6.3.1" ··· 70814 } 70815 ) 70816 ( 70817 + sources."@vercel/remix-builder-5.4.0" 70818 // { 70819 dependencies = [ 70820 sources."path-to-regexp-6.1.0" 70821 sources."path-to-regexp-updated-6.3.0" 70822 ]; 70823 } 70824 ) 70825 sources."@vercel/ruby-2.2.0" 70826 + sources."@vercel/static-build-2.7.0" 70827 sources."@vercel/static-config-3.0.0" 70828 sources."abbrev-3.0.0" 70829 sources."acorn-8.14.0" ··· 70844 sources."buffer-crc32-0.2.13" 70845 sources."bytes-3.1.0" 70846 sources."chokidar-4.0.0" 70847 + sources."chownr-2.0.0" 70848 sources."cjs-module-lexer-1.2.3" 70849 sources."code-block-writer-10.1.1" 70850 sources."color-convert-2.0.1" ··· 70913 sources."events-intercept-2.0.0" 70914 sources."fast-deep-equal-3.1.3" 70915 sources."fast-glob-3.3.3" 70916 sources."fastq-1.19.0" 70917 sources."fd-slicer-1.1.0" 70918 sources."file-uri-to-path-1.0.0" 70919 sources."fill-range-7.1.1" 70920 + sources."foreground-child-3.3.1" 70921 sources."fs-extra-11.1.0" 70922 + ( 70923 + sources."fs-minipass-2.1.0" 70924 + // { 70925 + dependencies = [ 70926 + sources."minipass-3.3.6" 70927 + ]; 70928 + } 70929 + ) 70930 sources."fs.realpath-1.0.0" 70931 sources."generic-pool-3.4.2" 70932 sources."glob-7.2.3" ··· 70947 sources."json-schema-to-ts-1.6.4" 70948 sources."json-schema-traverse-1.0.0" 70949 sources."jsonfile-6.1.0" 70950 + sources."lru-cache-6.0.0" 70951 sources."make-error-1.3.6" 70952 sources."merge2-1.4.1" 70953 sources."micro-9.3.5-canary.3" ··· 70960 } 70961 ) 70962 sources."minimatch-3.1.2" 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" 70973 sources."mri-1.2.0" 70974 sources."ms-2.1.1" 70975 sources."node-fetch-2.6.7" ··· 70996 // { 70997 dependencies = [ 70998 sources."lru-cache-10.4.3" 70999 ]; 71000 } 71001 ) ··· 71024 ]; 71025 } 71026 ) 71027 + sources."rollup-4.34.8" 71028 sources."run-parallel-1.2.0" 71029 sources."safer-buffer-2.1.2" 71030 sources."semver-7.5.4" 71031 sources."setprototypeof-1.1.1" ··· 71055 } 71056 ) 71057 sources."strip-ansi-cjs-6.0.1" 71058 + sources."tar-6.2.1" 71059 sources."time-span-4.0.0" 71060 sources."tinyexec-0.3.2" 71061 sources."to-regex-range-5.0.1" ··· 71093 sources."wrappy-1.0.2" 71094 sources."xdg-app-paths-5.1.0" 71095 sources."xdg-portable-7.3.0" 71096 + sources."yallist-4.0.0" 71097 sources."yauzl-2.10.0" 71098 sources."yauzl-clone-1.0.4" 71099 sources."yauzl-promise-2.1.3" ··· 71336 sources."@types/eslint-scope-3.7.7" 71337 sources."@types/estree-1.0.6" 71338 sources."@types/json-schema-7.0.15" 71339 + sources."@types/node-22.13.5" 71340 sources."@webassemblyjs/ast-1.14.1" 71341 sources."@webassemblyjs/floating-point-hex-parser-1.13.2" 71342 sources."@webassemblyjs/helper-api-error-1.13.2" ··· 71360 sources."ajv-keywords-5.1.0" 71361 sources."browserslist-4.24.4" 71362 sources."buffer-from-1.1.2" 71363 + sources."caniuse-lite-1.0.30001700" 71364 sources."chrome-trace-event-1.0.4" 71365 sources."commander-2.20.3" 71366 + sources."electron-to-chromium-1.5.104" 71367 sources."enhanced-resolve-5.18.1" 71368 sources."es-module-lexer-1.6.0" 71369 sources."escalade-3.2.0" ··· 71751 sources."run-parallel-limit-1.1.0" 71752 sources."run-series-1.1.9" 71753 sources."rusha-0.8.14" 71754 + sources."rxjs-7.8.2" 71755 sources."safe-buffer-5.1.2" 71756 sources."safer-buffer-2.1.2" 71757 sources."sax-1.1.4" ··· 71842 sources."winreg-1.2.5" 71843 sources."wrap-ansi-6.2.0" 71844 sources."wrappy-1.0.2" 71845 + sources."ws-8.18.1" 71846 sources."xml2js-0.4.23" 71847 sources."xmlbuilder-11.0.1" 71848 sources."y18n-5.0.8"
+4 -4
pkgs/development/node-packages/overrides.nix
··· 179 version = esbuild-version; 180 src = fetchurl { 181 url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-${esbuild-version}.tgz"; 182 - sha512 = "sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ=="; 183 }; 184 }; 185 esbuild-linux-arm64 = { ··· 188 version = esbuild-version; 189 src = fetchurl { 190 url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-${esbuild-version}.tgz"; 191 - sha512 = "sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g=="; 192 }; 193 }; 194 esbuild-darwin-x64 = { ··· 197 version = esbuild-version; 198 src = fetchurl { 199 url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-${esbuild-version}.tgz"; 200 - sha512 = "sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw=="; 201 }; 202 }; 203 esbuild-darwin-arm64 = { ··· 206 version = esbuild-version; 207 src = fetchurl { 208 url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-${esbuild-version}.tgz"; 209 - sha512 = "sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q=="; 210 }; 211 }; 212 in{
··· 179 version = esbuild-version; 180 src = fetchurl { 181 url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-${esbuild-version}.tgz"; 182 + sha512 = "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw=="; 183 }; 184 }; 185 esbuild-linux-arm64 = { ··· 188 version = esbuild-version; 189 src = fetchurl { 190 url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-${esbuild-version}.tgz"; 191 + sha512 = "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg=="; 192 }; 193 }; 194 esbuild-darwin-x64 = { ··· 197 version = esbuild-version; 198 src = fetchurl { 199 url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-${esbuild-version}.tgz"; 200 + sha512 = "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg=="; 201 }; 202 }; 203 esbuild-darwin-arm64 = { ··· 206 version = esbuild-version; 207 src = fetchurl { 208 url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-${esbuild-version}.tgz"; 209 + sha512 = "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw=="; 210 }; 211 }; 212 in{
+2 -2
pkgs/development/python-modules/atlassian-python-api/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "atlassian-python-api"; 20 - version = "3.41.16"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.7"; ··· 26 owner = "atlassian-api"; 27 repo = pname; 28 tag = version; 29 - hash = "sha256-HhFGM8EPGCT3WqVf6WP6VvwsppvzFvHg+ys7GhUUwW0="; 30 }; 31 32 propagatedBuildInputs = [
··· 17 18 buildPythonPackage rec { 19 pname = "atlassian-python-api"; 20 + version = "3.41.19"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.7"; ··· 26 owner = "atlassian-api"; 27 repo = pname; 28 tag = version; 29 + hash = "sha256-i++I3sloBp0v+kB1mmS/CSlSpjOvaFYDTBh+FZr2NS0="; 30 }; 31 32 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/berkeleydb/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "berkeleydb"; 13 - version = "18.1.12"; 14 pyproject = true; 15 16 src = fetchPypi { 17 inherit pname version; 18 - hash = "sha256-SVqBecajayLQ+i9ogfp4PPdSIUooV2BSlgX2CBAd6yg="; 19 }; 20 21 build-system = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "berkeleydb"; 13 + version = "18.1.13"; 14 pyproject = true; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-PPxNayvSqi8iMDnvh3dzys+RaSyYb9GuFKU/kT7nSrg="; 19 }; 20 21 build-system = [ setuptools ];
+6 -6
pkgs/development/python-modules/blake3/Cargo.lock
··· 1 # This file is automatically @generated by Cargo. 2 # It is not intended for manual editing. 3 - version = 4 4 5 [[package]] 6 name = "arrayref" ··· 22 23 [[package]] 24 name = "blake3" 25 - version = "1.0.1" 26 dependencies = [ 27 "blake3 1.5.5", 28 "hex", ··· 47 48 [[package]] 49 name = "cc" 50 - version = "1.2.9" 51 source = "registry+https://github.com/rust-lang/crates.io-index" 52 - checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b" 53 dependencies = [ 54 "shlex", 55 ] ··· 277 278 [[package]] 279 name = "unicode-ident" 280 - version = "1.0.14" 281 source = "registry+https://github.com/rust-lang/crates.io-index" 282 - checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" 283 284 [[package]] 285 name = "unindent"
··· 1 # This file is automatically @generated by Cargo. 2 # It is not intended for manual editing. 3 + version = 3 4 5 [[package]] 6 name = "arrayref" ··· 22 23 [[package]] 24 name = "blake3" 25 + version = "1.0.4" 26 dependencies = [ 27 "blake3 1.5.5", 28 "hex", ··· 47 48 [[package]] 49 name = "cc" 50 + version = "1.2.10" 51 source = "registry+https://github.com/rust-lang/crates.io-index" 52 + checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229" 53 dependencies = [ 54 "shlex", 55 ] ··· 277 278 [[package]] 279 name = "unicode-ident" 280 + version = "1.0.15" 281 source = "registry+https://github.com/rust-lang/crates.io-index" 282 + checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243" 283 284 [[package]] 285 name = "unindent"
+2 -2
pkgs/development/python-modules/blake3/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "blake3"; 15 - version = "1.0.2"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "oconnor663"; 20 repo = "blake3-py"; 21 tag = version; 22 - hash = "sha256-Wdy/zAepuMRTyOskC6gxCFkUVCAzR05eZNO/PFjT9sE="; 23 }; 24 25 postPatch = ''
··· 12 13 buildPythonPackage rec { 14 pname = "blake3"; 15 + version = "1.0.4"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "oconnor663"; 20 repo = "blake3-py"; 21 tag = version; 22 + hash = "sha256-ziAL3F+8YahtrTf4/pYWdsdDfhoh7pND6DAZOn/S2lo="; 23 }; 24 25 postPatch = ''
+2 -2
pkgs/development/python-modules/django-stubs-ext/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "django-stubs-ext"; 16 - version = "5.1.2"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; ··· 21 src = fetchPypi { 22 pname = "django_stubs_ext"; 23 inherit version; 24 - hash = "sha256-QhwMMCWmjjq44W8GX62bqTM17O/i3ZKgz/l6ZlaAJmw="; 25 }; 26 27 build-system = [ setuptools ];
··· 13 14 buildPythonPackage rec { 15 pname = "django-stubs-ext"; 16 + version = "5.1.3"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; ··· 21 src = fetchPypi { 22 pname = "django_stubs_ext"; 23 inherit version; 24 + hash = "sha256-PmD4Izfw1Ao2LzSb8VU5FEuW5M6029Ajm+HNcfanStA="; 25 }; 26 27 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/gflanguages/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "gflanguages"; 17 - version = "0.7.2"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; 21 22 src = fetchPypi { 23 inherit pname version; 24 - hash = "sha256-8Zl/UupcmC4fF+j1rLcMGibyNlbAwkSapmnkKP9AZLM="; 25 }; 26 27 # Relax the dependency on protobuf 3. Other packages in the Google Fonts
··· 14 15 buildPythonPackage rec { 16 pname = "gflanguages"; 17 + version = "0.7.3"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; 21 22 src = fetchPypi { 23 inherit pname version; 24 + hash = "sha256-BRbPD61qb1/CBPhv/jGmiLDdd2mHFqCughYDuaeBo54="; 25 }; 26 27 # Relax the dependency on protobuf 3. Other packages in the Google Fonts
+3 -3
pkgs/development/python-modules/luqum/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "luqum"; 16 - version = "0.13.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "jurismarches"; 23 repo = "luqum"; 24 tag = version; 25 - hash = "sha256-lcJCLl0crCl3Y5UlWBMZJR2UtVP96gaJNRxwY9Xn7TM="; 26 }; 27 28 postPatch = '' ··· 52 meta = with lib; { 53 description = "Lucene query parser generating ElasticSearch queries"; 54 homepage = "https://github.com/jurismarches/luqum"; 55 - changelog = "https://github.com/jurismarches/luqum/releases/tag/${version}"; 56 license = licenses.asl20; 57 maintainers = with maintainers; [ happysalada ]; 58 };
··· 13 14 buildPythonPackage rec { 15 pname = "luqum"; 16 + version = "1.0.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "jurismarches"; 23 repo = "luqum"; 24 tag = version; 25 + hash = "sha256-X1P7sACcp2yVjW3xWmD88iDT4T9dSDi8yxwDFaRbEsc="; 26 }; 27 28 postPatch = '' ··· 52 meta = with lib; { 53 description = "Lucene query parser generating ElasticSearch queries"; 54 homepage = "https://github.com/jurismarches/luqum"; 55 + changelog = "https://github.com/jurismarches/luqum/releases/tag/${src.tag}"; 56 license = licenses.asl20; 57 maintainers = with maintainers; [ happysalada ]; 58 };
+1 -1
pkgs/development/python-modules/manim-slides/default.nix
··· 95 homepage = "https://github.com/jeertmans/manim-slides"; 96 license = lib.licenses.mit; 97 mainProgram = "manim-slides"; 98 - maintainers = with lib.maintainers; [ soispha ]; 99 }; 100 }
··· 95 homepage = "https://github.com/jeertmans/manim-slides"; 96 license = lib.licenses.mit; 97 mainProgram = "manim-slides"; 98 + maintainers = with lib.maintainers; [ bpeetz ]; 99 }; 100 }
+2 -2
pkgs/development/python-modules/mockito/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "mockito"; 13 - version = "1.5.3"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - hash = "sha256-txkoQOfXDsJGOcxeGO/uXUGMg62GwP0r9+ccPkKuCqc="; 21 }; 22 23 nativeBuildInputs = [ hatchling ];
··· 10 11 buildPythonPackage rec { 12 pname = "mockito"; 13 + version = "1.5.4"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + hash = "sha256-8A7Vh8MpZt8yk8KUytsxdpRgrfxBVPUrkGcpRqpLMt8="; 21 }; 22 23 nativeBuildInputs = [ hatchling ];
+2 -2
pkgs/development/python-modules/pyworld/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "pyworld"; 11 - version = "0.3.4"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-EGxw7np9jJukiNgCLyAzcGkppA8CZCVrjofaWquYMDo="; 17 }; 18 19 nativeBuildInputs = [ cython ];
··· 8 9 buildPythonPackage rec { 10 pname = "pyworld"; 11 + version = "0.3.5"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-G5PlPN22eg5PqjTWz5GaxsZi/rHIwO2QHXG1las5aqM="; 17 }; 18 19 nativeBuildInputs = [ cython ];
+3 -3
pkgs/development/python-modules/pyytlounge/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "pyytlounge"; 15 - version = "2.1.1"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "FabioGNR"; 20 repo = "pyytlounge"; 21 - rev = "v${version}"; 22 - hash = "sha256-0QPa3EzOBv5fuw3FGgmoN4KiC4KHo1Z+Svjcneoe0pc="; 23 }; 24 25 build-system = [ hatchling ];
··· 12 13 buildPythonPackage rec { 14 pname = "pyytlounge"; 15 + version = "2.2.1"; 16 pyproject = true; 17 18 src = fetchFromGitHub { 19 owner = "FabioGNR"; 20 repo = "pyytlounge"; 21 + tag = "v${version}"; 22 + hash = "sha256-ZK52xh6IGhINQMakfjG759earUgvNoTNeBcUlFBSALo="; 23 }; 24 25 build-system = [ hatchling ];
+1 -1
pkgs/development/python-modules/schemainspect/default.nix
··· 108 description = "Schema inspection for PostgreSQL, and potentially others"; 109 homepage = "https://github.com/djrobstep/schemainspect"; 110 license = with licenses; [ unlicense ]; 111 - maintainers = with maintainers; [ soispha ]; 112 }; 113 }
··· 108 description = "Schema inspection for PostgreSQL, and potentially others"; 109 homepage = "https://github.com/djrobstep/schemainspect"; 110 license = with licenses; [ unlicense ]; 111 + maintainers = with maintainers; [ bpeetz ]; 112 }; 113 }
+1 -1
pkgs/development/python-modules/sqlbag/default.nix
··· 82 description = "Handy python code for doing database things"; 83 homepage = "https://github.com/djrobstep/sqlbag"; 84 license = with licenses; [ unlicense ]; 85 - maintainers = with maintainers; [ soispha ]; 86 broken = true; # Fails to build against the current flask version 87 }; 88 }
··· 82 description = "Handy python code for doing database things"; 83 homepage = "https://github.com/djrobstep/sqlbag"; 84 license = with licenses; [ unlicense ]; 85 + maintainers = with maintainers; [ bpeetz ]; 86 broken = true; # Fails to build against the current flask version 87 }; 88 }
+2 -2
pkgs/development/python-modules/verlib2/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "verlib2"; 11 - version = "0.2.1"; 12 pyproject = true; 13 14 # This tarball doesn't include tests unfortunately, and the GitHub tarball ··· 19 # should work for us as well. 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-0+JmanzxCUK/E0dNdQkuuNdavUGqZ6p5UAQ/WUGdnT8="; 23 }; 24 25 nativeBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "verlib2"; 11 + version = "0.3.1"; 12 pyproject = true; 13 14 # This tarball doesn't include tests unfortunately, and the GitHub tarball ··· 19 # should work for us as well. 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-KGLxlSjbQA0TAlOitxx8NhbuFOHVS/aDO8CSnSzd0UE="; 23 }; 24 25 nativeBuildInputs = [
+6 -5
pkgs/development/python-modules/visions/default.nix
··· 13 numpy, 14 pandas, 15 pillow, 16 pydot, 17 pygraphviz, 18 shapely, ··· 20 21 buildPythonPackage rec { 22 pname = "visions"; 23 - version = "0.7.6"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.8"; ··· 28 src = fetchFromGitHub { 29 owner = "dylan-profiler"; 30 repo = "visions"; 31 - rev = "5fe9dd0c2a5ada0162a005c880bac5296686a5aa"; # no 0.7.6 tag in github 32 - hash = "sha256-SZzDXm+faAvrfSOT0fwwAf9IH7upNybwKxbjw1CrHj8="; 33 }; 34 35 nativeBuildInputs = [ setuptools ]; 36 37 - propagatedBuildInputs = [ 38 attrs 39 - imagehash 40 multimethod 41 networkx 42 numpy 43 pandas 44 ]; 45 46 optional-dependencies = {
··· 13 numpy, 14 pandas, 15 pillow, 16 + puremagic, 17 pydot, 18 pygraphviz, 19 shapely, ··· 21 22 buildPythonPackage rec { 23 pname = "visions"; 24 + version = "0.8.1"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.8"; ··· 29 src = fetchFromGitHub { 30 owner = "dylan-profiler"; 31 repo = "visions"; 32 + rev = "v${version}"; 33 + hash = "sha256-MHseb1XJ0t7jQ45VXKQclYPgddrzmJAC7cde8qqYhNQ="; 34 }; 35 36 nativeBuildInputs = [ setuptools ]; 37 38 + dependencies = [ 39 attrs 40 multimethod 41 networkx 42 numpy 43 pandas 44 + puremagic 45 ]; 46 47 optional-dependencies = {
+3 -3
pkgs/development/tools/gauge/default.nix
··· 6 7 buildGoModule rec { 8 pname = "gauge"; 9 - version = "1.6.13"; 10 11 patches = [ 12 # adds a check which adds an error message when trying to ··· 18 owner = "getgauge"; 19 repo = "gauge"; 20 rev = "v${version}"; 21 - hash = "sha256-oyZDz3SX68rlnAG+JzKeIKyKUjQ+ttTrzthHUwW0b54="; 22 }; 23 24 - vendorHash = "sha256-nqyzNbD2j6b34QpFiv2yVxEVkrZkuzcwAt9uqAB2iA4="; 25 26 excludedPackages = [ 27 "build"
··· 6 7 buildGoModule rec { 8 pname = "gauge"; 9 + version = "1.6.14"; 10 11 patches = [ 12 # adds a check which adds an error message when trying to ··· 18 owner = "getgauge"; 19 repo = "gauge"; 20 rev = "v${version}"; 21 + hash = "sha256-eWVU1uAUAM7GGMI6uTpn+89rdwhNVq4sMIfll6NE2XY="; 22 }; 23 24 + vendorHash = "sha256-VrJhi8PUdZ/M8wV/MzxTY/dhUgEQF9BMK7NRb9GVm1g="; 25 26 excludedPackages = [ 27 "build"
+2 -2
pkgs/misc/lilypond/unstable.nix
··· 5 }: 6 7 lilypond.overrideAttrs (oldAttrs: rec { 8 - version = "2.25.22"; 9 src = fetchurl { 10 url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz"; 11 - hash = "sha256-+p0D//hU/AKVJ6DuPhoK9EOqZxZpTVRugabxidmHYLU="; 12 }; 13 14 passthru.updateScript = {
··· 5 }: 6 7 lilypond.overrideAttrs (oldAttrs: rec { 8 + version = "2.25.24"; 9 src = fetchurl { 10 url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz"; 11 + hash = "sha256-1n6mJBbZcfQYsmrjWxcG/EtIyF9uHNRVT7fX3+zoXc4="; 12 }; 13 14 passthru.updateScript = {
+2 -2
pkgs/servers/monitoring/prometheus/pve-exporter.nix
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "prometheus_pve_exporter"; 10 - version = "3.4.7"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - hash = "sha256-AxjtVgow1aV0vSuSre6s9c7Ru2/U6Q6knmq7B05YCnM="; 15 }; 16 17 propagatedBuildInputs = with python3.pkgs; [
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "prometheus_pve_exporter"; 10 + version = "3.5.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + hash = "sha256-L5gSPBgip/eR2AxwYhu0BsSIZL64UosKG4DzcdZpzP0="; 15 }; 16 17 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/servers/sql/postgresql/ext/timescaledb.nix
··· 13 14 buildPostgresqlExtension rec { 15 pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}"; 16 - version = "2.18.1"; 17 18 nativeBuildInputs = [ cmake ]; 19 buildInputs = [ ··· 25 owner = "timescale"; 26 repo = "timescaledb"; 27 rev = version; 28 - hash = "sha256-Ckrs22lPQb+zx9JNHHB3TQDx9ry+q8+FimvR3OT3npg="; 29 }; 30 31 cmakeFlags =
··· 13 14 buildPostgresqlExtension rec { 15 pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}"; 16 + version = "2.18.2"; 17 18 nativeBuildInputs = [ cmake ]; 19 buildInputs = [ ··· 25 owner = "timescale"; 26 repo = "timescaledb"; 27 rev = version; 28 + hash = "sha256-/PKk8/cS6jqL+mhSqFU6gybqDx3ld77RLF/uB+1XJCQ="; 29 }; 30 31 cmakeFlags =
+113 -113
pkgs/tools/admin/pulumi-bin/data.nix
··· 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 { }: 3 { 4 - version = "3.150.0"; 5 pulumiPkgs = { 6 x86_64-linux = [ 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.150.0-linux-x64.tar.gz"; 9 - sha256 = "0pdr4przwkbr10c4cyfcvsh0x5lsmdvqcxdifnl7la04si6mla3b"; 10 } 11 { 12 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.33.1-linux-amd64.tar.gz"; 13 - sha256 = "1k78fsnifcrknr4xlzy30j4rjcz8811h7pnw1dsnqvqzcrjs9zas"; 14 } 15 { 16 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-linux-amd64.tar.gz"; ··· 21 sha256 = "0jg062yhp0nx2lhixs3r7lvjzg0q5h3v1f8pvsp04y8hixq7jip8"; 22 } 23 { 24 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.2-linux-amd64.tar.gz"; 25 - sha256 = "105qpgq5kc1v82jks5v64i1jx9mw8spmj59dg74sil58lik5wpl8"; 26 } 27 { 28 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-linux-amd64.tar.gz"; 29 sha256 = "06kazf5r3r3cdr2cxk2afj1wjmjj0kda038j9vdpfirzpjyy47l3"; 30 } 31 { 32 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.68.0-linux-amd64.tar.gz"; 33 - sha256 = "0zg8vfqs8m87j6sp3hybzzx8ji6v3v404q5gpmfjrylfs7a4zw8w"; 34 } 35 { 36 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-linux-amd64.tar.gz"; ··· 41 sha256 = "0h3zym30gj8lyj294zj3dimdl2wdir2vmymvv6wr392f9i22m2yn"; 42 } 43 { 44 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.19.0-linux-amd64.tar.gz"; 45 - sha256 = "19d2q12zs0dmsr6djhy7y35bqjax9mhixa4gz8lv4g78zc9vfkkx"; 46 } 47 { 48 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.0-linux-amd64.tar.gz"; 49 - sha256 = "06lgx2260z1b4qgzdkgjbc43f5aya48m0fsys63mgk4pjrjz9hnw"; 50 } 51 { 52 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.3-linux-amd64.tar.gz"; 53 - sha256 = "0fq1zzbr119zq8minj7rqw5y6552zqqf1lcgy0c059bvd633fxdq"; 54 } 55 { 56 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.43.0-linux-amd64.tar.gz"; 57 - sha256 = "0dbvr0r7plvrh5yp03rsnjhhmnw7dl70pg29l216v4iz2ymrc5zk"; 58 } 59 { 60 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.39.1-linux-amd64.tar.gz"; 61 - sha256 = "1k39p62sdl3146c8vmz4c8a4p595sk2c2xr8h7q6wrby9dsfxv5y"; 62 } 63 { 64 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-linux-amd64.tar.gz"; ··· 73 sha256 = "191j823pngyicvgvkjfik9n0nsws2zsqqzykzsad74w59i9cr90c"; 74 } 75 { 76 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.18.0-linux-amd64.tar.gz"; 77 - sha256 = "08irlwbwy3c41rl90i85a50d3xy4ygsv4bswh3xwd9jdc32rs6xh"; 78 } 79 { 80 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-linux-amd64.tar.gz"; ··· 97 sha256 = "1zayrlizwvp3x56wqvsv5bwznbyryfzgri4xwxw78mvq8zslxpcd"; 98 } 99 { 100 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.32.0-linux-amd64.tar.gz"; 101 - sha256 = "0j4mlargny1fpc1jxc4md301yqpdp96phpnc9y481gprd8y4jy2x"; 102 } 103 { 104 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-linux-amd64.tar.gz"; 105 sha256 = "0991xkdk0jb87q7gjjb34765k8ing9qbm4zhp8ymsqkhhq7h363i"; 106 } 107 { 108 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.8-linux-amd64.tar.gz"; 109 - sha256 = "0ixhghlybbfmw2gsfc9rj2xagm3z581pi5hnxjw90999fixi1n5x"; 110 } 111 { 112 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.2-linux-amd64.tar.gz"; 113 - sha256 = "14djq1m1fk582jcjr131xm26r0gd6si13zyp5l6n01njr30avnpj"; 114 } 115 { 116 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-linux-amd64.tar.gz"; ··· 125 sha256 = "147dmg9gv8b3pifmqwjz9skvidryb8wkayvghdd6pziyqncbqwzb"; 126 } 127 { 128 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.0-linux-amd64.tar.gz"; 129 - sha256 = "124pag54vhis0j0b5f35h95ljs5xh2mbq85933vadmzsds7lb884"; 130 } 131 { 132 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-linux-amd64.tar.gz"; ··· 163 ]; 164 x86_64-darwin = [ 165 { 166 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.150.0-darwin-x64.tar.gz"; 167 - sha256 = "1c07s1xcys8r7jdnikkv0s03b7y003cvybijqmwxfq89wn95g5x9"; 168 } 169 { 170 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.33.1-darwin-amd64.tar.gz"; 171 - sha256 = "1hxyr5wzasqr7spxvw450vz82ckf9g53zhz9dkzj6yzpg1dbw8qd"; 172 } 173 { 174 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-darwin-amd64.tar.gz"; ··· 179 sha256 = "1mm51klxsqsgdz53m7zfbw3fh5vwwn1l1rxzwd1hjhm3giasqfv9"; 180 } 181 { 182 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.2-darwin-amd64.tar.gz"; 183 - sha256 = "0gpk3imvizrxsp1j6w17dvzzgpk05i979159l0wlgg9vc0xkbf2q"; 184 } 185 { 186 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-darwin-amd64.tar.gz"; 187 sha256 = "1yclkdpmm8y92wbyhb87h3vdhcibhcvfppv1nvwhqd3bbx3zk1rb"; 188 } 189 { 190 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.68.0-darwin-amd64.tar.gz"; 191 - sha256 = "1ck9377yshn8742k1757xmx2wkpybfdpbfq86nz7i83xnm67vwg4"; 192 } 193 { 194 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-darwin-amd64.tar.gz"; ··· 199 sha256 = "1j952sjqhp42a1s8fxn5li8mjfvl9as3ydhwdpslx8pzc8ykr2zj"; 200 } 201 { 202 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.19.0-darwin-amd64.tar.gz"; 203 - sha256 = "1038d064l47m2058d9vpbl81d793h9q58whhxqs7vmc2wg99050c"; 204 } 205 { 206 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.0-darwin-amd64.tar.gz"; 207 - sha256 = "1j1fcf4h0vbrrrfhrxqj3nns5c0ix4l9g0m154pgxs3lb4cxwsa0"; 208 } 209 { 210 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.3-darwin-amd64.tar.gz"; 211 - sha256 = "15ym540lhzwi5k2nplcsxgf1yxxndiznmjda38wwky9hxxvgc260"; 212 } 213 { 214 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.43.0-darwin-amd64.tar.gz"; 215 - sha256 = "16jmnc1mnxb652agd08qaqdzfqgnqd6al3wrvmac07gd4frq719k"; 216 } 217 { 218 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.39.1-darwin-amd64.tar.gz"; 219 - sha256 = "1158ggixh1h8xpq5q12zlffjr5clxgix75fy0dwshf3r4269bmch"; 220 } 221 { 222 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-darwin-amd64.tar.gz"; ··· 231 sha256 = "0qqzfdibgwzgnv79as3l6k8hh4nviq2i0xsgzsvjkklzf2szyh8k"; 232 } 233 { 234 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.18.0-darwin-amd64.tar.gz"; 235 - sha256 = "001s7nrmhsbrz49ilphr5882mk7lqq4w6qdfi2i24jjcbbij8v9w"; 236 } 237 { 238 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-darwin-amd64.tar.gz"; ··· 255 sha256 = "11874cc1x1insma8fgw251g73jxxhkfrk4c5ad801vvn986jigip"; 256 } 257 { 258 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.32.0-darwin-amd64.tar.gz"; 259 - sha256 = "13lm4b6yl4xxgl0axn3mdnki0f80qmk8iq8w8v36yq3qcdwhp0ah"; 260 } 261 { 262 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-darwin-amd64.tar.gz"; 263 sha256 = "120zpffjxa0fywlrsxx6ymzmvrk6wr3lph6l9sm6dhd9ik6810li"; 264 } 265 { 266 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.8-darwin-amd64.tar.gz"; 267 - sha256 = "089bqwh5vpamnswnrakzph4myw3nf0xrgh8snnq2m8lb2k4wkp4p"; 268 } 269 { 270 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.2-darwin-amd64.tar.gz"; 271 - sha256 = "0b81ih0387ksbajb8r1n5vh2l40mmwbmg8maxv18xnl8lmqlfw43"; 272 } 273 { 274 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-darwin-amd64.tar.gz"; ··· 283 sha256 = "02mq6mnjbfkhwfm9fsgixw8imnxyrgl3zjh2v7z6la0qn888k9yi"; 284 } 285 { 286 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.0-darwin-amd64.tar.gz"; 287 - sha256 = "17m6h1ign1b8rymidjk2lg0p43y0yzcgd8fvbjfmmxy6p4pcdjz4"; 288 } 289 { 290 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-darwin-amd64.tar.gz"; ··· 321 ]; 322 aarch64-linux = [ 323 { 324 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.150.0-linux-arm64.tar.gz"; 325 - sha256 = "1dyw5yfxb5l9bbjafdr5x5sm6j045cj44gigr50px5gci7h7cy3c"; 326 } 327 { 328 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.33.1-linux-arm64.tar.gz"; 329 - sha256 = "06sxs66cdavs7bgs3b0mr1ywlsfgbdf1ikhyicllq9nnf8hw11ca"; 330 } 331 { 332 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-linux-arm64.tar.gz"; ··· 337 sha256 = "1ihf580aad9cz95211jxk7l4mvwnxhlvdmxlr70h4drjp377y59h"; 338 } 339 { 340 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.2-linux-arm64.tar.gz"; 341 - sha256 = "1jbgwycdpixvz6cc8vm66akim9d2mlmbb7h241n3mjvdndhsjkab"; 342 } 343 { 344 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-linux-arm64.tar.gz"; 345 sha256 = "0xpfjwdhapyfc1562pxbvgmcmljvvsxdiymrwvcfhn08sdgpmas2"; 346 } 347 { 348 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.68.0-linux-arm64.tar.gz"; 349 - sha256 = "013bjgdd5ih4cznxf6b3nfhm9r3ah9s2z0w247c7ad14paiw1l21"; 350 } 351 { 352 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-linux-arm64.tar.gz"; ··· 357 sha256 = "1d4a5xyx55mscqq4wqgvilfagk8mg49xnhwp5vx1i274kgdq7a7z"; 358 } 359 { 360 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.19.0-linux-arm64.tar.gz"; 361 - sha256 = "1xcv4py5g7wdah5xdfz01ppp5x9wa8ha27zi3afx83d5anz3g49n"; 362 } 363 { 364 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.0-linux-arm64.tar.gz"; 365 - sha256 = "06bdmy0jl25qjqclkl8yc408hmkycf6ypxskwz4inr0s1lz6q5xb"; 366 } 367 { 368 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.3-linux-arm64.tar.gz"; 369 - sha256 = "0i4hwjj4j4q9qrrzb47k243hgcs7rhdk2xir6af5h4nds9z0h4yh"; 370 } 371 { 372 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.43.0-linux-arm64.tar.gz"; 373 - sha256 = "0jb7m7x7m330ijn7v4720qi1ldbj9blkj50qzpxivazwa5s42dgk"; 374 } 375 { 376 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.39.1-linux-arm64.tar.gz"; 377 - sha256 = "01xn8k4swvxwph3h2wkskjshr9h920gzs9lkr9jwnc3f6s7j2n6p"; 378 } 379 { 380 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-linux-arm64.tar.gz"; ··· 389 sha256 = "1dyg5k7giny2d26yw222kahdnbfwmhr8d1nkrn3i1ycqsb1g573j"; 390 } 391 { 392 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.18.0-linux-arm64.tar.gz"; 393 - sha256 = "1db1va4mf5brc6lhf4sj89pr6c6va2m6gb77dqnk2x6xf6qnffvx"; 394 } 395 { 396 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-linux-arm64.tar.gz"; ··· 413 sha256 = "0a2sgn0jn3vfn8i69iaigksvfnmfs2dm44chzgmwpgfyif7wzk9l"; 414 } 415 { 416 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.32.0-linux-arm64.tar.gz"; 417 - sha256 = "1sh5mkmz7n9jncay79dy9k9nb1x27ayrqkhki47q2rbz7qkrspkx"; 418 } 419 { 420 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-linux-arm64.tar.gz"; 421 sha256 = "1d8vl712v82azbjdi8j7s69h839ni7pdgg96273s7cfx276x5nq3"; 422 } 423 { 424 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.8-linux-arm64.tar.gz"; 425 - sha256 = "04cdylvp7g1x7zsh78x2h78mav907nl9gbqa7l6ccfihfgfc1g47"; 426 } 427 { 428 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.2-linux-arm64.tar.gz"; 429 - sha256 = "14j85z6yg45y38yl1dk6qjl429xhs7alka2s7m600g8a6xs064z2"; 430 } 431 { 432 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-linux-arm64.tar.gz"; ··· 441 sha256 = "1qghb1kj1flr36hcpk2r85ly833hm3z80lvwdw8rh2gz8ch6wi21"; 442 } 443 { 444 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.0-linux-arm64.tar.gz"; 445 - sha256 = "0v70agspybl0qmcmhhjqr8k47vvvhvipfw17hm54pr4v4bi3irmz"; 446 } 447 { 448 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-linux-arm64.tar.gz"; ··· 479 ]; 480 aarch64-darwin = [ 481 { 482 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.150.0-darwin-arm64.tar.gz"; 483 - sha256 = "0hbc63ki7h7m99f2v83rg1kicsl3jd4pjvc1fcmvs4zfzhwyvxl3"; 484 } 485 { 486 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.33.1-darwin-arm64.tar.gz"; 487 - sha256 = "1inxcss49ikfmxsyvv30c3ikqzzmr2p4643y40mv4fri6dnbk9dp"; 488 } 489 { 490 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-darwin-arm64.tar.gz"; ··· 495 sha256 = "1m71v28yr25ikj0sfd8h9dfnpd53g4jhs6lcxjzz9mb645vvsl0h"; 496 } 497 { 498 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.2-darwin-arm64.tar.gz"; 499 - sha256 = "0rzyr14v0cwrvwh383snh6sxdspszk8yi391h0vm0x8wvaq1a5ba"; 500 } 501 { 502 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-darwin-arm64.tar.gz"; 503 sha256 = "09ss5j92ra4bs5vmsqq2sgs30nalsb1bs3s0njn72fsc1cd6n0qz"; 504 } 505 { 506 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.68.0-darwin-arm64.tar.gz"; 507 - sha256 = "1zs9vgmz9hwv1impdfibg0ks8i5mdc9pis676qcvs7phlbg3yvn4"; 508 } 509 { 510 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-darwin-arm64.tar.gz"; ··· 515 sha256 = "1x4ij8qv9jq39fbacirjvk96hc117da5ll3fzrmgpkvjc1mall01"; 516 } 517 { 518 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.19.0-darwin-arm64.tar.gz"; 519 - sha256 = "065600j782v38w4hrbyqn0l6871s2j8s08xk560m145jnzza9p4x"; 520 } 521 { 522 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.0-darwin-arm64.tar.gz"; 523 - sha256 = "0cmmmgdh5g6cmrhmmmfhn22bd3xw7xckfkdyvgcnn6x42wfyp0l9"; 524 } 525 { 526 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.3-darwin-arm64.tar.gz"; 527 - sha256 = "1ydh3yl29kpqxwsmrrrlghlpmww1s16rjc116wb000gnj60c0bx5"; 528 } 529 { 530 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.43.0-darwin-arm64.tar.gz"; 531 - sha256 = "1hh85s0fkybq9g5lzyh7qvb5sm3kwv5ma8lzzkrm10pqvf2jv01f"; 532 } 533 { 534 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.39.1-darwin-arm64.tar.gz"; 535 - sha256 = "0p595chxlk73spf0swf9b3fyj4j0c4hblpr8x1h5v6h673lwqd86"; 536 } 537 { 538 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-darwin-arm64.tar.gz"; ··· 547 sha256 = "17cm719jsh6rc7lwd64kg7qdlxlclvwrky9598f85kbvnv6n0xa8"; 548 } 549 { 550 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.18.0-darwin-arm64.tar.gz"; 551 - sha256 = "10vjyhk84phr632s1ns2d6vkzi415ris1sh8az6jwnp510cnqmin"; 552 } 553 { 554 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-darwin-arm64.tar.gz"; ··· 571 sha256 = "0ssxxb7067ybz2wgvz2s9v67g39f53p7q22n9mcrq4185j9c3a4r"; 572 } 573 { 574 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.32.0-darwin-arm64.tar.gz"; 575 - sha256 = "12qy4ypskf1g1mmcwk7a8lnjjmsnblprb9i120ppvdbb64j06iv0"; 576 } 577 { 578 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-darwin-arm64.tar.gz"; 579 sha256 = "1rl99l5bvc5yhy5z3millws7xzdlcypwxyvhmy6k1lqx200pwm13"; 580 } 581 { 582 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.8-darwin-arm64.tar.gz"; 583 - sha256 = "1b8p0m7zy3ajq2my9zwinkiamj1bjbg3988s30697rz2fs9vxx6x"; 584 } 585 { 586 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.2-darwin-arm64.tar.gz"; 587 - sha256 = "073b4a0ywk0ln1pk6diaqipbf6j1a06gvgsgmyfplgv2frii3z7g"; 588 } 589 { 590 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-darwin-arm64.tar.gz"; ··· 599 sha256 = "022x01wxl7zj65n25slijnb0is266xrg26sbb1z408bipv4svxgk"; 600 } 601 { 602 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.0-darwin-arm64.tar.gz"; 603 - sha256 = "1r2zcxm2lgxl7x7v7shmq6r2ain90shb53vxdgjcnzjh3mhi92f5"; 604 } 605 { 606 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-darwin-arm64.tar.gz";
··· 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 { }: 3 { 4 + version = "3.152.0"; 5 pulumiPkgs = { 6 x86_64-linux = [ 7 { 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.152.0-linux-x64.tar.gz"; 9 + sha256 = "0zd3wldchwv5ism4klnmmiid56wwz1iirsg8rb9lyj8lj66br3q2"; 10 } 11 { 12 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.35.0-linux-amd64.tar.gz"; 13 + sha256 = "0m25l1iai6ja6n79jb1zzvmz1d087hy1ddhisb8r53nv8awdjz5b"; 14 } 15 { 16 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-linux-amd64.tar.gz"; ··· 21 sha256 = "0jg062yhp0nx2lhixs3r7lvjzg0q5h3v1f8pvsp04y8hixq7jip8"; 22 } 23 { 24 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.3-linux-amd64.tar.gz"; 25 + sha256 = "1cn2ii8ryh46axdvnzksx5zlnd59y1bd9janid8g0pvdz9rxgvdq"; 26 } 27 { 28 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-linux-amd64.tar.gz"; 29 sha256 = "06kazf5r3r3cdr2cxk2afj1wjmjj0kda038j9vdpfirzpjyy47l3"; 30 } 31 { 32 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.69.0-linux-amd64.tar.gz"; 33 + sha256 = "1xd2jg11d4sy1lgwq2bwkqvq3fzjvxvdzax3dwa0nybc3750yd2i"; 34 } 35 { 36 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-linux-amd64.tar.gz"; ··· 41 sha256 = "0h3zym30gj8lyj294zj3dimdl2wdir2vmymvv6wr392f9i22m2yn"; 42 } 43 { 44 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.20.0-linux-amd64.tar.gz"; 45 + sha256 = "1dbgwhx1ba92wh9478b24lf3c0w3d2v1q6z7dniyccjimfgdwd29"; 46 } 47 { 48 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.1-linux-amd64.tar.gz"; 49 + sha256 = "1cxwnbms0dyf3a828apfr6x6j3aqwbzwf9gnvmxq7p3kvqzrc7mv"; 50 } 51 { 52 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.4-linux-amd64.tar.gz"; 53 + sha256 = "1093zzn3yv85bxwf60ig1fh1jdl8zqzql2bmkjs9hk1cxh7wfll3"; 54 } 55 { 56 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.44.0-linux-amd64.tar.gz"; 57 + sha256 = "0m18f2m5vv1sqyillbiqg67jgddxh05ssb7gmky3n0dfd01ygwqy"; 58 } 59 { 60 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.40.0-linux-amd64.tar.gz"; 61 + sha256 = "01ra2yy0s8qkfz5rz1aybvcvm4b8cxd6s07412naf962li0brjfh"; 62 } 63 { 64 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-linux-amd64.tar.gz"; ··· 73 sha256 = "191j823pngyicvgvkjfik9n0nsws2zsqqzykzsad74w59i9cr90c"; 74 } 75 { 76 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.20.0-linux-amd64.tar.gz"; 77 + sha256 = "0lfa7kz3vc7hamsl270xijs7szhbdm09hmll6593q6x9wgmaadal"; 78 } 79 { 80 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-linux-amd64.tar.gz"; ··· 97 sha256 = "1zayrlizwvp3x56wqvsv5bwznbyryfzgri4xwxw78mvq8zslxpcd"; 98 } 99 { 100 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.34.1-linux-amd64.tar.gz"; 101 + sha256 = "06zmvgm45kdwbwqxyz701vff2bw6064d1m1d7gwlmcg318yg8b6a"; 102 } 103 { 104 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-linux-amd64.tar.gz"; 105 sha256 = "0991xkdk0jb87q7gjjb34765k8ing9qbm4zhp8ymsqkhhq7h363i"; 106 } 107 { 108 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.9-linux-amd64.tar.gz"; 109 + sha256 = "0v4sfah9qvphg8v7p2nwv9x33jis48y2xf1nnlc5lnidqqpfmdkr"; 110 } 111 { 112 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.3-linux-amd64.tar.gz"; 113 + sha256 = "07jg8jd99s75ias1f97inyqb5mag7ypf2jhnqyhcl49sjiswmqrx"; 114 } 115 { 116 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-linux-amd64.tar.gz"; ··· 125 sha256 = "147dmg9gv8b3pifmqwjz9skvidryb8wkayvghdd6pziyqncbqwzb"; 126 } 127 { 128 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.1-linux-amd64.tar.gz"; 129 + sha256 = "0a6ada48c8mkv7w01lv6wckjxav6hg46gg89f0sf0yi0s219isxn"; 130 } 131 { 132 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-linux-amd64.tar.gz"; ··· 163 ]; 164 x86_64-darwin = [ 165 { 166 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.152.0-darwin-x64.tar.gz"; 167 + sha256 = "074kh9ylwzq9z7kijgk3gagnnxn5kh95pv2785zly3qj7vk53br2"; 168 } 169 { 170 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.35.0-darwin-amd64.tar.gz"; 171 + sha256 = "1rj4fn0m182c6laihgx3h92zyqw77qajxygv3k8md4f0b4wvnd7q"; 172 } 173 { 174 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-darwin-amd64.tar.gz"; ··· 179 sha256 = "1mm51klxsqsgdz53m7zfbw3fh5vwwn1l1rxzwd1hjhm3giasqfv9"; 180 } 181 { 182 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.3-darwin-amd64.tar.gz"; 183 + sha256 = "19a5sfg2j74ji73cszsqak4gdyk1x7l7p0rpss8j5xnwbyw1y0nf"; 184 } 185 { 186 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-darwin-amd64.tar.gz"; 187 sha256 = "1yclkdpmm8y92wbyhb87h3vdhcibhcvfppv1nvwhqd3bbx3zk1rb"; 188 } 189 { 190 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.69.0-darwin-amd64.tar.gz"; 191 + sha256 = "11kffaw8f061qd1pkvb5l22ixmqydilb43a5s35h2y54jfwyfk0f"; 192 } 193 { 194 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-darwin-amd64.tar.gz"; ··· 199 sha256 = "1j952sjqhp42a1s8fxn5li8mjfvl9as3ydhwdpslx8pzc8ykr2zj"; 200 } 201 { 202 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.20.0-darwin-amd64.tar.gz"; 203 + sha256 = "01ry0xj3hghqcp0jp5jfmxnkgk1cf9nz356glma21dsfv5c9h2gc"; 204 } 205 { 206 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.1-darwin-amd64.tar.gz"; 207 + sha256 = "03gbylbr6d5h7mmiw5g96nxlg8snw12zgj45dmfbx65v1qxkvn7q"; 208 } 209 { 210 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.4-darwin-amd64.tar.gz"; 211 + sha256 = "1f064fmzyr1d1axl6vdggh1jp6p1akqiy7jbywwzy0rcqipqd2mr"; 212 } 213 { 214 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.44.0-darwin-amd64.tar.gz"; 215 + sha256 = "1gb8v5k8gxpk9ydxhbanj9fixs1hc07438w6dmypapnicngiyi3f"; 216 } 217 { 218 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.40.0-darwin-amd64.tar.gz"; 219 + sha256 = "06wn2l7x3470rzhd6wkvb0kg44yam0a743chkndyzkf3g95mw0c3"; 220 } 221 { 222 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-darwin-amd64.tar.gz"; ··· 231 sha256 = "0qqzfdibgwzgnv79as3l6k8hh4nviq2i0xsgzsvjkklzf2szyh8k"; 232 } 233 { 234 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.20.0-darwin-amd64.tar.gz"; 235 + sha256 = "1vnv7njpcf7x2vmjhrrpqgjn82wkbq1rr32yankzbrfyzkpsmwck"; 236 } 237 { 238 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-darwin-amd64.tar.gz"; ··· 255 sha256 = "11874cc1x1insma8fgw251g73jxxhkfrk4c5ad801vvn986jigip"; 256 } 257 { 258 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.34.1-darwin-amd64.tar.gz"; 259 + sha256 = "16vcckj74i7s3i6fhmgxl6c8mpj1c3zcra51vpagnf2c48fmsg6v"; 260 } 261 { 262 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-darwin-amd64.tar.gz"; 263 sha256 = "120zpffjxa0fywlrsxx6ymzmvrk6wr3lph6l9sm6dhd9ik6810li"; 264 } 265 { 266 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.9-darwin-amd64.tar.gz"; 267 + sha256 = "0dl22mjxiaxzasd58cnb9rrxnqlkx84bhkyd7pk0jys7ra375r44"; 268 } 269 { 270 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.3-darwin-amd64.tar.gz"; 271 + sha256 = "14fllfabpb8xliwsl4psdqaffvk86i1yi59aigax1f3zz0y73705"; 272 } 273 { 274 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-darwin-amd64.tar.gz"; ··· 283 sha256 = "02mq6mnjbfkhwfm9fsgixw8imnxyrgl3zjh2v7z6la0qn888k9yi"; 284 } 285 { 286 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.1-darwin-amd64.tar.gz"; 287 + sha256 = "065gjq19n1ws8ig2nli78ayq1hwhrk5bs9hazibvmiad4q189bmv"; 288 } 289 { 290 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-darwin-amd64.tar.gz"; ··· 321 ]; 322 aarch64-linux = [ 323 { 324 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.152.0-linux-arm64.tar.gz"; 325 + sha256 = "1xi3g6wwnhmfsw176px1ijbrixl1klspyagdb3s2lf1wfzrx5chi"; 326 } 327 { 328 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.35.0-linux-arm64.tar.gz"; 329 + sha256 = "0jb91frd5y0bqbps1yqjqvdcdjs5xnyycs1iil5hrlr3c5gzmbhk"; 330 } 331 { 332 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-linux-arm64.tar.gz"; ··· 337 sha256 = "1ihf580aad9cz95211jxk7l4mvwnxhlvdmxlr70h4drjp377y59h"; 338 } 339 { 340 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.3-linux-arm64.tar.gz"; 341 + sha256 = "0n2kiqcqpkqiapzvh1a5cz1sv0431k4c0s62wczbynyj8f838ywk"; 342 } 343 { 344 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-linux-arm64.tar.gz"; 345 sha256 = "0xpfjwdhapyfc1562pxbvgmcmljvvsxdiymrwvcfhn08sdgpmas2"; 346 } 347 { 348 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.69.0-linux-arm64.tar.gz"; 349 + sha256 = "0m5m2kb5kfdkwbjhpbzk9l4s56s6y32bgkjg6gvfggg6gxrrxvg6"; 350 } 351 { 352 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-linux-arm64.tar.gz"; ··· 357 sha256 = "1d4a5xyx55mscqq4wqgvilfagk8mg49xnhwp5vx1i274kgdq7a7z"; 358 } 359 { 360 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.20.0-linux-arm64.tar.gz"; 361 + sha256 = "00mhcz8lyjlgxwan69br5bq1bvzglcnclwmpplcrzpwsqiwbgwss"; 362 } 363 { 364 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.1-linux-arm64.tar.gz"; 365 + sha256 = "1v27xjbbpw4cvabxqg0yhb3z568q76n7qqly7s0inqzy6mqixpjs"; 366 } 367 { 368 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.4-linux-arm64.tar.gz"; 369 + sha256 = "0lybz7g4zv08ycnpfwck1n2lsw98h75paamgdq7ha271yn1k58yx"; 370 } 371 { 372 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.44.0-linux-arm64.tar.gz"; 373 + sha256 = "0pqas89fgsiz74qbvqpvj60nvhcy06574v4g2qvbavm6rnz24k6h"; 374 } 375 { 376 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.40.0-linux-arm64.tar.gz"; 377 + sha256 = "1yq1bmrh15ji5fnibs87ngnbf3qc02jk7sknh1fj2k93nv1kxzha"; 378 } 379 { 380 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-linux-arm64.tar.gz"; ··· 389 sha256 = "1dyg5k7giny2d26yw222kahdnbfwmhr8d1nkrn3i1ycqsb1g573j"; 390 } 391 { 392 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.20.0-linux-arm64.tar.gz"; 393 + sha256 = "1vkdjyywikqkw1capz6ky3ggdqmiwaz9gxr0mx5g8sbd4vzssx0l"; 394 } 395 { 396 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-linux-arm64.tar.gz"; ··· 413 sha256 = "0a2sgn0jn3vfn8i69iaigksvfnmfs2dm44chzgmwpgfyif7wzk9l"; 414 } 415 { 416 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.34.1-linux-arm64.tar.gz"; 417 + sha256 = "1xqb3c6kfabng7aflp4acgp1dclxv7fv2l56wr23s15p5q3ck8r4"; 418 } 419 { 420 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-linux-arm64.tar.gz"; 421 sha256 = "1d8vl712v82azbjdi8j7s69h839ni7pdgg96273s7cfx276x5nq3"; 422 } 423 { 424 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.9-linux-arm64.tar.gz"; 425 + sha256 = "0qx0drh92m5k5q3mc104jv0zcg5xyx16fbc9vrgr1m07axr5x5cf"; 426 } 427 { 428 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.3-linux-arm64.tar.gz"; 429 + sha256 = "0s05pdxscpq5n6i744pcrgvws8fy96mv80k6g2vb3gn25dw247b8"; 430 } 431 { 432 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-linux-arm64.tar.gz"; ··· 441 sha256 = "1qghb1kj1flr36hcpk2r85ly833hm3z80lvwdw8rh2gz8ch6wi21"; 442 } 443 { 444 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.1-linux-arm64.tar.gz"; 445 + sha256 = "1f1pqscwrwrakdxwp0ly1iawcaqbn70zahayav133cqi22rb26ps"; 446 } 447 { 448 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.4-linux-arm64.tar.gz"; ··· 479 ]; 480 aarch64-darwin = [ 481 { 482 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.152.0-darwin-arm64.tar.gz"; 483 + sha256 = "0ikp8m4z7b8k6ql4blc617fgmdjllnwjwwma6yicv9n23cnmk8gp"; 484 } 485 { 486 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.35.0-darwin-arm64.tar.gz"; 487 + sha256 = "1lbv0bd6kz0d50306b9y27xllf2lmmwnj5fz15p36p1dawz029r1"; 488 } 489 { 490 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v7.6.1-darwin-arm64.tar.gz"; ··· 495 sha256 = "1m71v28yr25ikj0sfd8h9dfnpd53g4jhs6lcxjzz9mb645vvsl0h"; 496 } 497 { 498 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.7.3-darwin-arm64.tar.gz"; 499 + sha256 = "1g3badq0zhjs69lyh6d9mpj0c77jqlgapbm03scbamgjzq0zzbdl"; 500 } 501 { 502 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.14.0-darwin-arm64.tar.gz"; 503 sha256 = "09ss5j92ra4bs5vmsqq2sgs30nalsb1bs3s0njn72fsc1cd6n0qz"; 504 } 505 { 506 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.69.0-darwin-arm64.tar.gz"; 507 + sha256 = "1n3h0imw151grqz64r5wa0pm6wjad53sy01li1v800q993fxga7w"; 508 } 509 { 510 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.2.0-darwin-arm64.tar.gz"; ··· 515 sha256 = "1x4ij8qv9jq39fbacirjvk96hc117da5ll3fzrmgpkvjc1mall01"; 516 } 517 { 518 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v6.20.0-darwin-arm64.tar.gz"; 519 + sha256 = "114njwjir2zk6fzfxiyjch97js6p0v2cr41v199zm2ff0h90727q"; 520 } 521 { 522 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.49.1-darwin-arm64.tar.gz"; 523 + sha256 = "1kpwxfav3395khvy8ga0j12m572791krgmklby4sarfjgg0b6j3z"; 524 } 525 { 526 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.12.4-darwin-arm64.tar.gz"; 527 + sha256 = "01sqq37yghlk0772j1vd3l124a2fcwkkz3fb8lsilk33gwb7hjgk"; 528 } 529 { 530 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.44.0-darwin-arm64.tar.gz"; 531 + sha256 = "1h2shfpdf8x2v0c2m0w3dbm1swd5vrhn2jsyp6m92qp5cgywy8lm"; 532 } 533 { 534 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.40.0-darwin-arm64.tar.gz"; 535 + sha256 = "0ydfg59ifgm0y09zis282f9aaqq31xkkh2nq5r9fgxs7wnxk9694"; 536 } 537 { 538 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.1-darwin-arm64.tar.gz"; ··· 547 sha256 = "17cm719jsh6rc7lwd64kg7qdlxlclvwrky9598f85kbvnv6n0xa8"; 548 } 549 { 550 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.20.0-darwin-arm64.tar.gz"; 551 + sha256 = "1l3jl4nwvhp58lybv4lll2qb8d400nx6kb504prh84i67my685ni"; 552 } 553 { 554 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.6.0-darwin-arm64.tar.gz"; ··· 571 sha256 = "0ssxxb7067ybz2wgvz2s9v67g39f53p7q22n9mcrq4185j9c3a4r"; 572 } 573 { 574 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.34.1-darwin-arm64.tar.gz"; 575 + sha256 = "04jsz384k1b794afanbrb289gp197qbpnhnw4gpbcpdk0g4biy5f"; 576 } 577 { 578 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.8-darwin-arm64.tar.gz"; 579 sha256 = "1rl99l5bvc5yhy5z3millws7xzdlcypwxyvhmy6k1lqx200pwm13"; 580 } 581 { 582 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.9-darwin-arm64.tar.gz"; 583 + sha256 = "06vpfyxrxx1syzy01qq1ii3d0f734vpyrlvqb93nyprbhckrlsvx"; 584 } 585 { 586 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.0.3-darwin-arm64.tar.gz"; 587 + sha256 = "196q5r38hssgdi6zfag6yfm3h2wvlqc57xbhca3kjfbri1cyl9ic"; 588 } 589 { 590 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.15.0-darwin-arm64.tar.gz"; ··· 599 sha256 = "022x01wxl7zj65n25slijnb0is266xrg26sbb1z408bipv4svxgk"; 600 } 601 { 602 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.110.1-darwin-arm64.tar.gz"; 603 + sha256 = "1maffq6lhh7cgsp23vaaxd00rvxnkrbzgafjhdbnxavc5x78fvw4"; 604 } 605 { 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 openjpeg, 14 gumbo, 15 libjpeg, 16 - texpresso-tectonic, 17 }: 18 19 - stdenv.mkDerivation rec { 20 pname = "texpresso"; 21 version = "0-unstable-2025-01-29"; 22 23 postPatch = '' 24 substituteInPlace Makefile \ ··· 39 libjpeg 40 ]; 41 42 - src = fetchFromGitHub { 43 - owner = "let-def"; 44 - repo = "texpresso"; 45 - rev = "c42a5912f501f180984840fa8adf9ffc09c5ac13"; 46 - hash = "sha256-T/vou7OcGtNoodCrznmjBLxg6ZAFDCjhpYgNyZaf44g="; 47 - }; 48 - 49 buildFlags = [ "texpresso" ]; 50 51 env.NIX_CFLAGS_COMPILE = toString ( ··· 56 57 installPhase = '' 58 runHook preInstall 59 - install -Dm0755 -t "$out/bin/" "build/${pname}" 60 runHook postInstall 61 ''; 62 63 # needs to have texpresso-tonic on its path 64 postInstall = '' 65 wrapProgram $out/bin/texpresso \ 66 - --prefix PATH : ${lib.makeBinPath [ texpresso-tectonic ]} 67 ''; 68 69 passthru = { 70 - tectonic = texpresso-tectonic; 71 updateScript = writeScript "update-texpresso" '' 72 #!/usr/bin/env nix-shell 73 #!nix-shell -i bash -p curl jq nix-update ··· 79 }; 80 81 meta = { 82 - inherit (src.meta) homepage; 83 description = "Live rendering and error reporting for LaTeX"; 84 maintainers = with lib.maintainers; [ nickhu ]; 85 license = lib.licenses.mit; 86 platforms = lib.platforms.unix; 87 }; 88 - }
··· 13 openjpeg, 14 gumbo, 15 libjpeg, 16 + callPackage, 17 }: 18 19 + stdenv.mkDerivation (finalAttrs: { 20 pname = "texpresso"; 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 + }; 29 30 postPatch = '' 31 substituteInPlace Makefile \ ··· 46 libjpeg 47 ]; 48 49 buildFlags = [ "texpresso" ]; 50 51 env.NIX_CFLAGS_COMPILE = toString ( ··· 56 57 installPhase = '' 58 runHook preInstall 59 + install -Dm0755 -t "$out/bin/" "build/${finalAttrs.pname}" 60 runHook postInstall 61 ''; 62 63 # needs to have texpresso-tonic on its path 64 postInstall = '' 65 wrapProgram $out/bin/texpresso \ 66 + --prefix PATH : ${lib.makeBinPath [ finalAttrs.finalPackage.passthru.tectonic ]} 67 ''; 68 69 passthru = { 70 + tectonic = callPackage ./tectonic.nix { }; 71 updateScript = writeScript "update-texpresso" '' 72 #!/usr/bin/env nix-shell 73 #!nix-shell -i bash -p curl jq nix-update ··· 79 }; 80 81 meta = { 82 + inherit (finalAttrs.src.meta) homepage; 83 description = "Live rendering and error reporting for LaTeX"; 84 maintainers = with lib.maintainers; [ nickhu ]; 85 license = lib.licenses.mit; 86 platforms = lib.platforms.unix; 87 }; 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 1405 py65 = with python3.pkgs; toPythonApplication py65; 1406 1407 - ripes = qt6Packages.callPackage ../applications/emulators/ripes { }; 1408 - 1409 rmg-wayland = callPackage ../by-name/rm/rmg/package.nix { 1410 withWayland = true; 1411 }; ··· 10624 fmt = fmt_11; 10625 }; 10626 10627 - texpresso = callPackage ../tools/typesetting/tex/texpresso { 10628 - texpresso-tectonic = callPackage ../tools/typesetting/tex/texpresso/tectonic.nix { }; 10629 - }; 10630 - 10631 tinyxml = tinyxml2; 10632 10633 tinyxml2 = callPackage ../development/libraries/tinyxml/2.6.2.nix { }; ··· 13390 firefox-esr-unwrapped = firefox-esr-128-unwrapped; 13391 13392 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 - }; 13399 13400 firefox-mobile = callPackage ../applications/networking/browsers/firefox/mobile-config.nix { }; 13401 13402 firefox-esr-128 = wrapFirefox firefox-esr-128-unwrapped { 13403 nameSuffix = "-esr"; 13404 - desktopName = "Firefox ESR"; 13405 wmClass = "firefox-esr"; 13406 icon = "firefox-esr"; 13407 }; 13408 firefox-esr = firefox-esr-128; 13409 13410 firefox-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { 13411 channel = "release"; 13412 generated = import ../applications/networking/browsers/firefox-bin/release_sources.nix; 13413 }; ··· 13417 }; 13418 13419 firefox-beta-bin-unwrapped = firefox-bin-unwrapped.override { 13420 channel = "beta"; 13421 generated = import ../applications/networking/browsers/firefox-bin/beta_sources.nix; 13422 }; 13423 13424 firefox-beta-bin = res.wrapFirefox firefox-beta-bin-unwrapped { 13425 pname = "firefox-beta-bin"; 13426 - desktopName = "Firefox Beta"; 13427 }; 13428 13429 firefox-devedition-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { 13430 channel = "developer-edition"; 13431 generated = import ../applications/networking/browsers/firefox-bin/developer-edition_sources.nix; 13432 }; 13433 13434 firefox-devedition-bin = res.wrapFirefox firefox-devedition-bin-unwrapped { 13435 pname = "firefox-devedition-bin"; 13436 - desktopName = "Firefox DevEdition"; 13437 wmClass = "firefox-aurora"; 13438 }; 13439 ··· 15232 thunderbird-128 = wrapThunderbird thunderbirdPackages.thunderbird-128 { }; 15233 15234 thunderbird-bin = wrapThunderbird thunderbird-bin-unwrapped { 15235 - applicationName = "thunderbird"; 15236 pname = "thunderbird-bin"; 15237 - desktopName = "Thunderbird"; 15238 }; 15239 thunderbird-bin-unwrapped = callPackage ../applications/networking/mailreaders/thunderbird-bin { 15240 generated = import ../applications/networking/mailreaders/thunderbird-bin/release_sources.nix;
··· 1404 1405 py65 = with python3.pkgs; toPythonApplication py65; 1406 1407 rmg-wayland = callPackage ../by-name/rm/rmg/package.nix { 1408 withWayland = true; 1409 }; ··· 10622 fmt = fmt_11; 10623 }; 10624 10625 tinyxml = tinyxml2; 10626 10627 tinyxml2 = callPackage ../development/libraries/tinyxml/2.6.2.nix { }; ··· 13384 firefox-esr-unwrapped = firefox-esr-128-unwrapped; 13385 13386 firefox = wrapFirefox firefox-unwrapped { }; 13387 + firefox-beta = wrapFirefox firefox-beta-unwrapped { }; 13388 + firefox-devedition = wrapFirefox firefox-devedition-unwrapped { }; 13389 13390 firefox-mobile = callPackage ../applications/networking/browsers/firefox/mobile-config.nix { }; 13391 13392 firefox-esr-128 = wrapFirefox firefox-esr-128-unwrapped { 13393 nameSuffix = "-esr"; 13394 wmClass = "firefox-esr"; 13395 icon = "firefox-esr"; 13396 }; 13397 firefox-esr = firefox-esr-128; 13398 13399 firefox-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { 13400 + inherit (firefox-unwrapped.passthru) applicationName; 13401 channel = "release"; 13402 generated = import ../applications/networking/browsers/firefox-bin/release_sources.nix; 13403 }; ··· 13407 }; 13408 13409 firefox-beta-bin-unwrapped = firefox-bin-unwrapped.override { 13410 + inherit (firefox-beta-unwrapped.passthru) applicationName; 13411 channel = "beta"; 13412 generated = import ../applications/networking/browsers/firefox-bin/beta_sources.nix; 13413 }; 13414 13415 firefox-beta-bin = res.wrapFirefox firefox-beta-bin-unwrapped { 13416 pname = "firefox-beta-bin"; 13417 }; 13418 13419 firefox-devedition-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { 13420 + inherit (firefox-devedition-unwrapped.passthru) applicationName; 13421 channel = "developer-edition"; 13422 generated = import ../applications/networking/browsers/firefox-bin/developer-edition_sources.nix; 13423 }; 13424 13425 firefox-devedition-bin = res.wrapFirefox firefox-devedition-bin-unwrapped { 13426 pname = "firefox-devedition-bin"; 13427 wmClass = "firefox-aurora"; 13428 }; 13429 ··· 15222 thunderbird-128 = wrapThunderbird thunderbirdPackages.thunderbird-128 { }; 15223 15224 thunderbird-bin = wrapThunderbird thunderbird-bin-unwrapped { 15225 pname = "thunderbird-bin"; 15226 }; 15227 thunderbird-bin-unwrapped = callPackage ../applications/networking/mailreaders/thunderbird-bin { 15228 generated = import ../applications/networking/mailreaders/thunderbird-bin/release_sources.nix;