Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub c01e3011 fdaf2ed5

+3646 -3955
+1 -1
lib/strings.nix
··· 254 254 => false 255 255 */ 256 256 hasInfix = infix: content: 257 - builtins.match ".*${escapeRegex infix}.*" content != null; 257 + builtins.match ".*${escapeRegex infix}.*" "${content}" != null; 258 258 259 259 /* Convert a string to a list of characters (i.e. singleton strings). 260 260 This allows you to, e.g., map a function over each character. However,
+30
lib/tests/misc.nix
··· 280 280 ''; 281 281 }; 282 282 283 + testHasInfixFalse = { 284 + expr = hasInfix "c" "abde"; 285 + expected = false; 286 + }; 287 + 288 + testHasInfixTrue = { 289 + expr = hasInfix "c" "abcde"; 290 + expected = true; 291 + }; 292 + 293 + testHasInfixDerivation = { 294 + expr = hasInfix "hello" (import ../.. { system = "x86_64-linux"; }).hello; 295 + expected = true; 296 + }; 297 + 298 + testHasInfixPath = { 299 + expr = hasInfix "tests" ./.; 300 + expected = true; 301 + }; 302 + 303 + testHasInfixPathStoreDir = { 304 + expr = hasInfix builtins.storeDir ./.; 305 + expected = true; 306 + }; 307 + 308 + testHasInfixToString = { 309 + expr = hasInfix "a" { __toString = _: "a"; }; 310 + expected = true; 311 + }; 312 + 283 313 # LISTS 284 314 285 315 testFilter = {
+10
nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
··· 1360 1360 </listitem> 1361 1361 <listitem> 1362 1362 <para> 1363 + <literal>services.zookeeper</literal> has a new option 1364 + <literal>jre</literal> for specifying the JRE to start 1365 + zookeeper with. It defaults to the JRE that 1366 + <literal>pkgs.zookeeper</literal> was wrapped with, instead of 1367 + <literal>pkgs.jre</literal>. This changes the JRE to 1368 + <literal>pkgs.jdk11_headless</literal> by default. 1369 + </para> 1370 + </listitem> 1371 + <listitem> 1372 + <para> 1363 1373 <literal>pkgs.pgadmin</literal> now refers to 1364 1374 <literal>pkgs.pgadmin4</literal>. <literal>pgadmin3</literal> 1365 1375 has been removed.
+4
nixos/doc/manual/release-notes/rl-2205.section.md
··· 541 541 you should change the package you refer to. If you don't need them update your 542 542 commands from `otelcontribcol` to `otelcorecol` and enjoy a 7x smaller binary. 543 543 544 + - `services.zookeeper` has a new option `jre` for specifying the JRE to start 545 + zookeeper with. It defaults to the JRE that `pkgs.zookeeper` was wrapped with, 546 + instead of `pkgs.jre`. This changes the JRE to `pkgs.jdk11_headless` by default. 547 + 544 548 - `pkgs.pgadmin` now refers to `pkgs.pgadmin4`. `pgadmin3` has been removed. 545 549 546 550 - `pkgs.noto-fonts-cjk` is now deprecated in favor of `pkgs.noto-fonts-cjk-sans`
+8 -1
nixos/modules/services/misc/zookeeper.nix
··· 114 114 type = types.package; 115 115 }; 116 116 117 + jre = mkOption { 118 + description = "The JRE with which to run Zookeeper"; 119 + default = cfg.package.jre; 120 + defaultText = literalExpression "pkgs.zookeeper.jre"; 121 + example = literalExpression "pkgs.jre"; 122 + type = types.package; 123 + }; 117 124 }; 118 125 119 126 ··· 131 138 after = [ "network.target" ]; 132 139 serviceConfig = { 133 140 ExecStart = '' 134 - ${pkgs.jre}/bin/java \ 141 + ${cfg.jre}/bin/java \ 135 142 -cp "${cfg.package}/lib/*:${configDir}" \ 136 143 ${escapeShellArgs cfg.extraCmdLineOptions} \ 137 144 -Dzookeeper.datadir.autocreate=false \
+11 -43
nixos/modules/services/networking/asterisk.nix
··· 14 14 15 15 # Add filecontents from files of useTheseDefaultConfFiles to confFiles, do not override 16 16 defaultConfFiles = subtractLists (attrNames cfg.confFiles) cfg.useTheseDefaultConfFiles; 17 - allConfFiles = 18 - cfg.confFiles // 19 - builtins.listToAttrs (map (x: { name = x; 20 - value = builtins.readFile (cfg.package + "/etc/asterisk/" + x); }) 21 - defaultConfFiles); 22 - 23 - asteriskEtc = pkgs.stdenv.mkDerivation 24 - ((mapAttrs' (name: value: nameValuePair 25 - # Fudge the names to make bash happy 26 - ((replaceChars ["."] ["_"] name) + "_") 27 - (value) 28 - ) allConfFiles) // 29 - { 30 - confFilesString = concatStringsSep " " ( 31 - attrNames allConfFiles 32 - ); 33 - 34 - name = "asterisk-etc"; 35 - 17 + allConfFiles = { 36 18 # Default asterisk.conf file 37 - # (Notice that astetcdir will be set to the path of this derivation) 38 - asteriskConf = '' 19 + "asterisk.conf".text = '' 39 20 [directories] 40 21 astetcdir => /etc/asterisk 41 22 astmoddir => ${cfg.package}/lib/asterisk/modules ··· 48 29 astrundir => /run/asterisk 49 30 astlogdir => /var/log/asterisk 50 31 astsbindir => ${cfg.package}/sbin 32 + ${cfg.extraConfig} 51 33 ''; 52 - extraConf = cfg.extraConfig; 53 34 54 35 # Loading all modules by default is considered sensible by the authors of 55 36 # "Asterisk: The Definitive Guide". Secure sites will likely want to 56 37 # specify their own "modules.conf" in the confFiles option. 57 - modulesConf = '' 38 + "modules.conf".text = '' 58 39 [modules] 59 40 autoload=yes 60 41 ''; 61 42 62 43 # Use syslog for logging so logs can be viewed with journalctl 63 - loggerConf = '' 44 + "logger.conf".text = '' 64 45 [general] 65 46 66 47 [logfiles] 67 48 syslog.local0 => notice,warning,error 68 49 ''; 50 + } // 51 + mapAttrs (name: text: { inherit text; }) cfg.confFiles // 52 + listToAttrs (map (x: nameValuePair x { source = cfg.package + "/etc/asterisk/" + x; }) defaultConfFiles); 69 53 70 - buildCommand = '' 71 - mkdir -p "$out" 72 - 73 - # Create asterisk.conf, pointing astetcdir to the path of this derivation 74 - echo "$asteriskConf" | sed "s|@out@|$out|g" > "$out"/asterisk.conf 75 - echo "$extraConf" >> "$out"/asterisk.conf 76 - 77 - echo "$modulesConf" > "$out"/modules.conf 78 - 79 - echo "$loggerConf" > "$out"/logger.conf 80 - 81 - # Config files specified in confFiles option override all other files 82 - for i in $confFilesString; do 83 - conf=$(echo "$i"_ | sed 's/\./_/g') 84 - echo "''${!conf}" > "$out"/"$i" 85 - done 86 - ''; 87 - }); 88 54 in 89 55 90 56 { ··· 209 175 config = mkIf cfg.enable { 210 176 environment.systemPackages = [ cfg.package ]; 211 177 212 - environment.etc.asterisk.source = asteriskEtc; 178 + environment.etc = mapAttrs' (name: value: 179 + nameValuePair "asterisk/${name}" value 180 + ) allConfFiles; 213 181 214 182 users.users.asterisk = 215 183 { name = asteriskUser;
+1 -1
nixos/modules/services/system/nscd.nix
··· 38 38 default = if pkgs.stdenv.hostPlatform.libc == "glibc" 39 39 then pkgs.stdenv.cc.libc.bin 40 40 else pkgs.glibc.bin; 41 - defaultText = literalExample '' 41 + defaultText = lib.literalExpression '' 42 42 if pkgs.stdenv.hostPlatform.libc == "glibc" 43 43 then pkgs.stdenv.cc.libc.bin 44 44 else pkgs.glibc.bin;
+2
pkgs/applications/audio/guitarix/default.nix
··· 108 108 "--install-roboto-font" 109 109 ] ++ optional optimizationSupport "--optimization"; 110 110 111 + NIX_CFLAGS_COMPILE = [ "-fpermissive" ]; 112 + 111 113 meta = with lib; { 112 114 description = "A virtual guitar amplifier for Linux running with JACK"; 113 115 longDescription = ''
+16 -12
pkgs/applications/editors/vscode/update-vscodium.sh
··· 14 14 exit 1 15 15 fi 16 16 17 + update_vscodium () { 18 + VSCODIUM_VER=$1 19 + ARCH=$2 20 + ARCH_LONG=$3 21 + ARCHIVE_FMT=$4 22 + VSCODIUM_URL="https://github.com/VSCodium/vscodium/releases/download/${VSCODIUM_VER}/VSCodium-${ARCH}-${VSCODIUM_VER}.${ARCHIVE_FMT}" 23 + VSCODIUM_SHA256=$(nix-prefetch-url ${VSCODIUM_URL}) 24 + sed -i "s/${ARCH_LONG} = \".\{52\}\"/${ARCH_LONG} = \"${VSCODIUM_SHA256}\"/" "$ROOT/vscodium.nix" 25 + } 26 + 17 27 # VSCodium 18 28 19 29 VSCODIUM_VER=$(curl -Ls -w %{url_effective} -o /dev/null https://github.com/VSCodium/vscodium/releases/latest | awk -F'/' '{print $NF}') 20 30 sed -i "s/version = \".*\"/version = \"${VSCODIUM_VER}\"/" "$ROOT/vscodium.nix" 21 31 22 - VSCODIUM_LINUX_X64_URL="https://github.com/VSCodium/vscodium/releases/download/${VSCODIUM_VER}/VSCodium-linux-x64-${VSCODIUM_VER}.tar.gz" 23 - VSCODIUM_LINUX_X64_SHA256=$(nix-prefetch-url ${VSCODIUM_LINUX_X64_URL}) 24 - sed -i "s/x86_64-linux = \".\{52\}\"/x86_64-linux = \"${VSCODIUM_LINUX_X64_SHA256}\"/" "$ROOT/vscodium.nix" 32 + update_vscodium $VSCODIUM_VER linux-x64 x86_64-linux tar.gz 25 33 26 - VSCODIUM_DARWIN_X64_URL="https://github.com/VSCodium/vscodium/releases/download/${VSCODIUM_VER}/VSCodium-darwin-x64-${VSCODIUM_VER}.zip" 27 - VSCODIUM_DARWIN_X64_SHA256=$(nix-prefetch-url ${VSCODIUM_DARWIN_X64_URL}) 28 - sed -i "s/x86_64-darwin = \".\{52\}\"/x86_64-darwin = \"${VSCODIUM_DARWIN_X64_SHA256}\"/" "$ROOT/vscodium.nix" 34 + update_vscodium $VSCODIUM_VER darwin-x64 x86_64-darwin zip 29 35 30 - VSCODIUM_LINUX_AARCH64_URL="https://github.com/VSCodium/vscodium/releases/download/${VSCODIUM_VER}/VSCodium-linux-arm64-${VSCODIUM_VER}.tar.gz" 31 - VSCODIUM_LINUX_AARCH64_SHA256=$(nix-prefetch-url ${VSCODIUM_LINUX_AARCH64_URL}) 32 - sed -i "s/aarch64-linux = \".\{52\}\"/aarch64-linux = \"${VSCODIUM_LINUX_AARCH64_SHA256}\"/" "$ROOT/vscodium.nix" 36 + update_vscodium $VSCODIUM_VER linux-arm64 aarch64-linux tar.gz 33 37 34 - VSCODIUM_LINUX_ARMV7L_URL="https://github.com/VSCodium/vscodium/releases/download/${VSCODIUM_VER}/VSCodium-linux-armhf-${VSCODIUM_VER}.tar.gz" 35 - VSCODIUM_LINUX_ARMV7L_SHA256=$(nix-prefetch-url ${VSCODIUM_LINUX_ARMV7L_URL}) 36 - sed -i "s/armv7l-linux = \".\{52\}\"/armv7l-linux = \"${VSCODIUM_LINUX_ARMV7L_SHA256}\"/" "$ROOT/vscodium.nix" 38 + update_vscodium $VSCODIUM_VER darwin-arm64 aarch64-darwin zip 39 + 40 + update_vscodium $VSCODIUM_VER linux-armhf armv7l-linux tar.gz
+5 -8
pkgs/applications/editors/vscode/vscodium.nix
··· 7 7 x86_64-linux = "linux-x64"; 8 8 x86_64-darwin = "darwin-x64"; 9 9 aarch64-linux = "linux-arm64"; 10 + aarch64-darwin = "darwin-arm64"; 10 11 armv7l-linux = "linux-armhf"; 11 12 }.${system}; 12 13 13 - archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz"; 14 + archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 14 15 15 16 sha256 = { 16 17 x86_64-linux = "1i76ix318y6b2dcfnisg13bp5d7nzvcx7zcpl94mkrn974db30pn"; 17 18 x86_64-darwin = "1qk1vykl838vwsffyjpazx7x9ajwxczpgz5vhch16iikfz2vh1vk"; 18 19 aarch64-linux = "13jifiqn2v17d6vwacq6aib1lzyp2021kjdswkp7wpx6ck5lkm21"; 20 + aarch64-darwin = "1jgmvw52hp2zfvk6z51yni4vn7wfq63gsih42mzadg5a1b2fr9rx"; 19 21 armv7l-linux = "1zhriscsmfcsagsp2ds0fn316fybs5f2f2r3w5q29jwczgcnlam4"; 20 22 }.${system}; 21 23 22 - sourceRoot = { 23 - x86_64-linux = "."; 24 - x86_64-darwin = ""; 25 - aarch64-linux = "."; 26 - armv7l-linux = "."; 27 - }.${system}; 24 + sourceRoot = if stdenv.isDarwin then "" else "."; 28 25 in 29 26 callPackage ./generic.nix rec { 30 27 inherit sourceRoot; ··· 63 60 downloadPage = "https://github.com/VSCodium/vscodium/releases"; 64 61 license = licenses.mit; 65 62 maintainers = with maintainers; [ synthetica turion bobby285271 ]; 66 - platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "armv7l-linux" ]; 63 + platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" "armv7l-linux" ]; 67 64 }; 68 65 }
+4 -4
pkgs/applications/networking/cluster/nomad-pack/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "nomad-pack"; 8 - version = "2022-02-11"; 9 - rev = "568ac5e42bc41172a1fa3c8b18af2f42b9e341ff"; 8 + version = "2022-04-12"; 9 + rev = "50ad747d2a5a2b90af1b3564483510cb04fefbea"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "hashicorp"; 13 13 repo = pname; 14 14 inherit rev; 15 - sha256 = "sha256-0hvnGdUT72sWvMER67ZBxcC+VTbuFMIos2NudOjeTB8="; 15 + sha256 = "sha256-VG6Dmx5WD2AzKReMbmrpzXCNhrJqaZY3aQV9P+4ET68="; 16 16 }; 17 17 18 - vendorSha256 = "sha256-wmoXZIogKj4i9+AsEjY7QaT2Tn4LQyGQcEFHrRO0W9s="; 18 + vendorSha256 = "sha256-7ovR2F9N94iFK/B5OXRcqfykOYHST3354+Ge2L8yzq0="; 19 19 20 20 # skip running go tests as they require network access 21 21 doCheck = false;
+2 -2
pkgs/applications/networking/instant-messengers/teams/default.nix
··· 22 22 23 23 let 24 24 pname = "teams"; 25 - version = "1.4.00.26453"; 25 + version = "1.5.00.10453"; 26 26 meta = with lib; { 27 27 description = "Microsoft Teams"; 28 28 homepage = "https://teams.microsoft.com"; ··· 37 37 38 38 src = fetchurl { 39 39 url = "https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_${version}_amd64.deb"; 40 - sha256 = "0ndqk893l17m42hf5fiiv6mka0v7v8r54kblvb67jsxajdvva5gf"; 40 + hash = "sha256-fLVw2axSMetuaoRzjg+x4DRYY8WP5TQbL7LbfF6LFfA="; 41 41 }; 42 42 43 43 nativeBuildInputs = [ dpkg autoPatchelfHook wrapGAppsHook nodePackages.asar ];
+27 -13
pkgs/applications/science/misc/snakemake/default.nix
··· 1 - { lib, python3Packages, fetchFromGitHub }: 1 + { lib 2 + , fetchFromGitHub 3 + , python3 4 + }: 2 5 3 - python3Packages.buildPythonApplication rec { 6 + python3.pkgs.buildPythonApplication rec { 4 7 pname = "snakemake"; 5 - version = "6.15.5"; 8 + version = "7.5.0"; 9 + format = "setuptools"; 6 10 7 - propagatedBuildInputs = with python3Packages; [ 11 + src = fetchFromGitHub { 12 + owner = "snakemake"; 13 + repo = pname; 14 + rev = "v${version}"; 15 + hash = "sha256-KIKuV6DVHn3dDY/rJG1zNWM79tdDB6GGVH9/kYn6XaE="; 16 + }; 17 + 18 + propagatedBuildInputs = with python3.pkgs; [ 8 19 appdirs 9 20 configargparse 10 21 connection-pool ··· 22 33 pyyaml 23 34 ratelimiter 24 35 requests 36 + retry 25 37 smart-open 26 38 stopit 27 39 tabulate 28 40 toposort 29 41 wrapt 42 + yte 30 43 ]; 31 44 32 - src = fetchFromGitHub { 33 - owner = "snakemake"; 34 - repo = pname; 35 - rev = "v${version}"; 36 - sha256 = "sha256-i8C7gPLzUzSxNH9xwpr+fUKI1SvpYFsFBlspS74LoWU="; 37 - }; 38 - 39 45 # See 40 46 # https://github.com/snakemake/snakemake/blob/main/.github/workflows/main.yml#L99 41 47 # for the current basic test suite. Tibanna and Tes require extra 42 48 # setup. 43 49 44 - checkInputs = with python3Packages; [ 50 + checkInputs = with python3.pkgs; [ 45 51 pandas 46 52 pytestCheckHook 47 53 requests-mock ··· 53 59 "tests/test_linting.py" 54 60 ]; 55 61 56 - pythonImportsCheck = [ "snakemake" ]; 62 + disabledTests = [ 63 + # Tests require network access 64 + "test_github_issue1396" 65 + "test_github_issue1460" 66 + ]; 67 + 68 + pythonImportsCheck = [ 69 + "snakemake" 70 + ]; 57 71 58 72 meta = with lib; { 59 73 homepage = "https://snakemake.github.io";
+2
pkgs/applications/version-management/git-and-tools/git/default.nix
··· 354 354 disable_test t9902-completion 355 355 # not ok 1 - populate workdir (with 2.33.1 on x86_64-darwin) 356 356 disable_test t5003-archive-zip 357 + '' + lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) '' 358 + disable_test t7527-builtin-fsmonitor 357 359 '' + lib.optionalString stdenv.hostPlatform.isMusl '' 358 360 # Test fails (as of 2.17.0, musl 1.1.19) 359 361 disable_test t3900-i18n-commit
+2 -2
pkgs/applications/video/mkvtoolnix/default.nix
··· 47 47 in 48 48 stdenv.mkDerivation rec { 49 49 pname = "mkvtoolnix"; 50 - version = "66.0.0"; 50 + version = "67.0.0"; 51 51 52 52 src = fetchFromGitLab { 53 53 owner = "mbunkus"; 54 54 repo = "mkvtoolnix"; 55 55 rev = "release-${version}"; 56 - sha256 = "sha256-JTPayZhV3Z+o1v+TbHp9SGMAZk1oEzMdNhk67BYB75A="; 56 + sha256 = "0gyjgp5iyr9kvgpgl064w025ji1w8dy0cnw4fmbp71wis7qp7yl1"; 57 57 }; 58 58 59 59 nativeBuildInputs = [
+2 -5
pkgs/desktops/gnome-2/platform/libglade/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, gtk2, libxml2, python2 ? null, withLibgladeConvert ? false, gettext }: 2 - 3 - assert withLibgladeConvert -> python2 != null; 1 + { lib, stdenv, fetchurl, pkg-config, gtk2, libxml2, gettext }: 4 2 5 3 stdenv.mkDerivation rec { 6 4 pname = "libglade"; ··· 14 12 outputs = [ "out" "dev" ]; 15 13 16 14 nativeBuildInputs = [ pkg-config ]; 17 - buildInputs = [ gtk2 gettext ] 18 - ++ lib.optional withLibgladeConvert python2; 15 + buildInputs = [ gtk2 gettext ]; 19 16 20 17 NIX_LDFLAGS = "-lgmodule-2.0"; 21 18
+2 -2
pkgs/development/libraries/ptex/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, zlib, python2, cmake, pkg-config }: 1 + { lib, stdenv, fetchFromGitHub, zlib, cmake, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec 4 4 { ··· 15 15 outputs = [ "bin" "dev" "out" "lib" ]; 16 16 17 17 nativeBuildInputs = [ cmake ]; 18 - buildInputs = [ zlib python2 pkg-config ]; 18 + buildInputs = [ zlib pkg-config ]; 19 19 20 20 # Can be removed in the next release 21 21 # https://github.com/wdas/ptex/pull/42
+1 -1
pkgs/development/node-packages/composition.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 1 + # This file has been generated by node2nix 1.11.1. Do not edit! 2 2 3 3 {pkgs ? import <nixpkgs> { 4 4 inherit system;
+7 -37
pkgs/development/node-packages/default.nix
··· 247 247 248 248 node2nix = super.node2nix.override { 249 249 buildInputs = [ pkgs.makeWrapper ]; 250 - # We need to apply a patch to the source, but buildNodePackage doesn't allow patches. 251 - # So we pin the patched commit instead. The commit actually contains two other newer commits 252 - # since the last (1.9.0) release, but actually this is a good thing since one of them is a 253 - # Hydra-specific fix. 254 - src = applyPatches { 255 - src = fetchFromGitHub { 256 - owner = "svanderburg"; 257 - repo = "node2nix"; 258 - rev = "node2nix-1.9.0"; 259 - sha256 = "0l4wp1131nhl9c14cn8bwawb8f77h1nfbnswgi5lp5m3kzkb27jn"; 260 - }; 261 - 262 - patches = [ 263 - # remove node_ name prefix 264 - (fetchpatch { 265 - url = "https://github.com/svanderburg/node2nix/commit/b54d45207427ff46e90f16f2f32771fdc8bff5a4.patch"; 266 - sha256 = "sha256-ubUdF0q3l4xxqZ7f9EiQEUQzyqxi9Q6zsRPETHlfzh8="; 267 - }) 268 - # set meta platform 269 - (fetchpatch { 270 - url = "https://github.com/svanderburg/node2nix/commit/58736093161f2d237c17e75a96529b018cd0ac64.patch"; 271 - sha256 = "0sif7803c9g6gjmmdniw5qxrq5igiz9nqdmdrcf1hxfi5x43a32h"; 272 - }) 273 - # Extract common logic from composePackage to a shell function 274 - (fetchpatch { 275 - url = "https://github.com/svanderburg/node2nix/commit/e4c951971df6c9f9584c7252971c13b55c369916.patch"; 276 - sha256 = "0w8fcyr12g2340rn06isv40jkmz2khmak81c95zpkjgipzx7hp7w"; 277 - }) 278 - # handle package alias in dependencies 279 - # https://github.com/svanderburg/node2nix/pull/240 280 - # 281 - # TODO: remove after node2nix 1.10.0 282 - (fetchpatch { 283 - url = "https://github.com/svanderburg/node2nix/commit/644e90c0304038a446ed53efc97e9eb1e2831e71.patch"; 284 - sha256 = "sha256-sQgVf80H1ouUjzHq+2d9RO4a+o++kh+l+FOTNXfPBH0="; 285 - }) 286 - ]; 250 + # We need to use master because of a fix that replaces git:// url to https://. 251 + src = fetchFromGitHub { 252 + owner = "svanderburg"; 253 + repo = "node2nix"; 254 + rev = "68f5735f9a56737e3fedceb182705985e3ab8799"; 255 + sha256 = "sha256-NK6gDTkGx0GG7yPTwgtFC4ttQZPfcLaLp8W8OOMO6bg="; 287 256 }; 257 + 288 258 postInstall = '' 289 259 wrapProgram "$out/bin/node2nix" --prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.nix ]} 290 260 '';
+21 -11
pkgs/development/node-packages/node-env.nix
··· 98 98 '' 99 99 + (lib.concatMapStrings (dependency: 100 100 '' 101 - if [ ! -e "${dependency.name}" ]; then 101 + if [ ! -e "${dependency.packageName}" ]; then 102 102 ${composePackage dependency} 103 103 fi 104 104 '' ··· 257 257 var packageLock = JSON.parse(fs.readFileSync("./package-lock.json")); 258 258 259 259 if(![1, 2].includes(packageLock.lockfileVersion)) { 260 - process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n"); 261 - process.exit(1); 260 + process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n"); 261 + process.exit(1); 262 262 } 263 263 264 264 if(packageLock.dependencies !== undefined) { ··· 390 390 buildNodePackage = 391 391 { name 392 392 , packageName 393 - , version 393 + , version ? null 394 394 , dependencies ? [] 395 395 , buildInputs ? [] 396 396 , production ? true ··· 409 409 extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ]; 410 410 in 411 411 stdenv.mkDerivation ({ 412 - name = "${name}-${version}"; 412 + name = "${name}${if version == null then "" else "-${version}"}"; 413 413 buildInputs = [ tarWrapper python nodejs ] 414 414 ++ lib.optional (stdenv.isLinux) utillinux 415 415 ++ lib.optional (stdenv.isDarwin) libtool ··· 441 441 if [ -d "$out/lib/node_modules/.bin" ] 442 442 then 443 443 ln -s $out/lib/node_modules/.bin $out/bin 444 + 445 + # Patch the shebang lines of all the executables 446 + ls $out/bin/* | while read i 447 + do 448 + file="$(readlink -f "$i")" 449 + chmod u+rwx "$file" 450 + patchShebangs "$file" 451 + done 444 452 fi 445 453 446 454 # Create symlinks to the deployed manual page folders, if applicable ··· 471 479 buildNodeDependencies = 472 480 { name 473 481 , packageName 474 - , version 482 + , version ? null 475 483 , src 476 484 , dependencies ? [] 477 485 , buildInputs ? [] ··· 489 497 extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ]; 490 498 in 491 499 stdenv.mkDerivation ({ 492 - name = "node-dependencies-${name}-${version}"; 500 + name = "node-dependencies-${name}${if version == null then "" else "-${version}"}"; 493 501 494 502 buildInputs = [ tarWrapper python nodejs ] 495 503 ++ lib.optional (stdenv.isLinux) utillinux ··· 519 527 if [ -f ${src}/package-lock.json ] 520 528 then 521 529 cp ${src}/package-lock.json . 530 + chmod 644 package-lock.json 522 531 fi 523 532 ''} 524 533 ··· 541 550 buildNodeShell = 542 551 { name 543 552 , packageName 544 - , version 553 + , version ? null 545 554 , src 546 555 , dependencies ? [] 547 556 , buildInputs ? [] ··· 557 566 558 567 let 559 568 nodeDependencies = buildNodeDependencies args; 569 + extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "unpackPhase" "buildPhase" ]; 560 570 in 561 - stdenv.mkDerivation { 562 - name = "node-shell-${name}-${version}"; 571 + stdenv.mkDerivation ({ 572 + name = "node-shell-${name}${if version == null then "" else "-${version}"}"; 563 573 564 574 buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs; 565 575 buildCommand = '' ··· 578 588 export NODE_PATH=${nodeDependencies}/lib/node_modules 579 589 export PATH="${nodeDependencies}/bin:$PATH" 580 590 ''; 581 - }; 591 + } // extraArgs); 582 592 in 583 593 { 584 594 buildNodeSourceDist = lib.makeOverridable buildNodeSourceDist;
+1 -2
pkgs/development/node-packages/node-packages.json
··· 131 131 , "flood" 132 132 , "forever" 133 133 , "fx" 134 - , "ganache-cli" 134 + , "ganache" 135 135 , "gatsby-cli" 136 136 , "generator-code" 137 137 , "get-graphql-schema" ··· 223 223 , "npm" 224 224 , "npm-check-updates" 225 225 , "npm-merge-driver" 226 - , {"npm2nix": "git://github.com/NixOS/npm2nix.git#5.12.0"} 227 226 , "nrm" 228 227 , "ocaml-language-server" 229 228 , "parcel-bundler"
+3279 -3701
pkgs/development/node-packages/node-packages.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 1 + # This file has been generated by node2nix 1.11.1. Do not edit! 2 2 3 3 {nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: 4 4 ··· 94 94 sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; 95 95 }; 96 96 }; 97 - "@ampproject/remapping-2.1.2" = { 97 + "@ampproject/remapping-2.2.0" = { 98 98 name = "_at_ampproject_slash_remapping"; 99 99 packageName = "@ampproject/remapping"; 100 - version = "2.1.2"; 100 + version = "2.2.0"; 101 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz"; 103 - sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; 102 + url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"; 103 + sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; 104 104 }; 105 105 }; 106 - "@angular-devkit/architect-0.1303.3" = { 106 + "@angular-devkit/architect-0.1303.4" = { 107 107 name = "_at_angular-devkit_slash_architect"; 108 108 packageName = "@angular-devkit/architect"; 109 - version = "0.1303.3"; 109 + version = "0.1303.4"; 110 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.3.tgz"; 112 - sha512 = "WRVVBCzLlMqRZVhZXGASHzNJK/OCAvl/DTGhlLuJDIjF7lVGnXHjtwNM8ilYZq949OnC3fly5Z61TfhbN/OHCg=="; 111 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.4.tgz"; 112 + sha512 = "d6YmIWdYvwk6WaknHRcJgiXeJvX9K5i8uPMAaL2P2/LU8n3moIQ59C7SP0uULcHuuiREEmFWOyyrWnGxZCI9bg=="; 113 113 }; 114 114 }; 115 115 "@angular-devkit/core-13.3.2" = { ··· 121 121 sha512 = "wav5plcnlxQAfZ+0EUt3dvVTJnJ1au2TlKVQ0jSQJdR1LA6N7QUI49N2Ua6ZnDMwruQaQkoynitMW2l1it3qYQ=="; 122 122 }; 123 123 }; 124 - "@angular-devkit/core-13.3.3" = { 124 + "@angular-devkit/core-13.3.4" = { 125 125 name = "_at_angular-devkit_slash_core"; 126 126 packageName = "@angular-devkit/core"; 127 - version = "13.3.3"; 127 + version = "13.3.4"; 128 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.3.tgz"; 130 - sha512 = "lfQwY9LuVRwcNVzGmyPcwOpb3CAobP4T+c3joR1LLIPS5lzcM0oeCE2bon9N52Ktn4Q/pH98dVtjWL+jSrUADw=="; 129 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.4.tgz"; 130 + sha512 = "gj6i8ksPaT2bvYwI7wKJxLX53pHfTmZc1RaNbAGfZB1/zFNnb3MPj8utTcJSk4qMsGXuDDhiB7hpTKBw8ROaGA=="; 131 131 }; 132 132 }; 133 133 "@angular-devkit/schematics-13.3.2" = { ··· 139 139 sha512 = "XCLb23jmqHN0gJg9ZlICaFgfpfnCufIQp5SOsRKMKRkhjKycvDmKnfBTKDlkzb1IaUl6wQwP5k7Z69b9EX+CQw=="; 140 140 }; 141 141 }; 142 - "@angular-devkit/schematics-13.3.3" = { 142 + "@angular-devkit/schematics-13.3.4" = { 143 143 name = "_at_angular-devkit_slash_schematics"; 144 144 packageName = "@angular-devkit/schematics"; 145 - version = "13.3.3"; 145 + version = "13.3.4"; 146 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.3.tgz"; 148 - sha512 = "S8UNlw6IoR/kxBYbiwesuA7oJGSnFkD6bJwVLhpHdT6Sqrz2/IrjHcNgTJRAvhsOKIbfDtMtXRzl/PUdWEfgyw=="; 147 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.4.tgz"; 148 + sha512 = "gKNpMMoZJjLKdXxjuVembic4GWa4AYV7kU1ou3ZuZoDKtKcig9URISr1wjS+nrhKYz+miFy0zIqSGMMattDlDQ=="; 149 149 }; 150 150 }; 151 151 "@angular-devkit/schematics-cli-13.3.2" = { ··· 364 364 sha512 = "TmB2K5UfpDpSbCNBBntXzKHcAk2EA3/P68jmWvmJvglVUdkO9V6kTAuXVe12+h6C4GK0ndwuCrHHtEVcL5t6pQ=="; 365 365 }; 366 366 }; 367 - "@astrojs/svelte-language-integration-0.1.3" = { 367 + "@astrojs/svelte-language-integration-0.1.4" = { 368 368 name = "_at_astrojs_slash_svelte-language-integration"; 369 369 packageName = "@astrojs/svelte-language-integration"; 370 - version = "0.1.3"; 370 + version = "0.1.4"; 371 371 src = fetchurl { 372 - url = "https://registry.npmjs.org/@astrojs/svelte-language-integration/-/svelte-language-integration-0.1.3.tgz"; 373 - sha512 = "sXCe9FBgn31HAlBwimT2RfveNrYP6/j+XT/YHlj15tdlYqqcEQUj3IP43wSWwkIKwtKVrHWUjY+SOk+MeD+eow=="; 372 + url = "https://registry.npmjs.org/@astrojs/svelte-language-integration/-/svelte-language-integration-0.1.4.tgz"; 373 + sha512 = "rgi3g078uAxdb8jg1A5U8sNWMUQq7UXwHT7qmPiGOeB+h5p+tzUFy/Awq2suv99Tq8efpn3HrAGTuDvxyvbwfg=="; 374 374 }; 375 375 }; 376 376 "@aws-crypto/crc32-2.0.0" = { ··· 445 445 sha512 = "JJmFFwvbm08lULw4Nm5QOLg8+lAQeC8aCXK5xrtxntYzYXCGfHwUJ4Is3770Q7HmICsXthGQ+ZsDL7C2uH3yBQ=="; 446 446 }; 447 447 }; 448 - "@aws-sdk/abort-controller-3.55.0" = { 448 + "@aws-sdk/abort-controller-3.78.0" = { 449 449 name = "_at_aws-sdk_slash_abort-controller"; 450 450 packageName = "@aws-sdk/abort-controller"; 451 - version = "3.55.0"; 451 + version = "3.78.0"; 452 452 src = fetchurl { 453 - url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.55.0.tgz"; 454 - sha512 = "rCcTxJDEFnmvo/PgbhCRv24/Uv03lEGfRslKZq7SjaMcOubflS/ZXYaMEgsjYHgAT0zlpSsyCIkJXmhFaM7H7w=="; 453 + url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.78.0.tgz"; 454 + sha512 = "iz1YLwM2feJUj/y97yO4XmDeTxs+yZ1XJwQgoawKuc8IDBKUutnJNCHL5jL04WUKU7Nrlq+Hr2fCTScFh2z9zg=="; 455 455 }; 456 456 }; 457 457 "@aws-sdk/chunked-blob-reader-3.55.0" = { ··· 472 472 sha512 = "+D3xnPD5985iphgAqgUerBDs371a2WzzoEVi7eHJUMMsP/gEnSTdSH0HNxsqhYv6CW4EdKtvDAQdAwA1VtCf2A=="; 473 473 }; 474 474 }; 475 - "@aws-sdk/client-s3-3.72.0" = { 475 + "@aws-sdk/client-s3-3.81.0" = { 476 476 name = "_at_aws-sdk_slash_client-s3"; 477 477 packageName = "@aws-sdk/client-s3"; 478 - version = "3.72.0"; 478 + version = "3.81.0"; 479 479 src = fetchurl { 480 - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.72.0.tgz"; 481 - sha512 = "WQnNs++yTsBARaZqpxIAB3CX9BrqgxnLo4g/wT8cLqRilhL8OY1KPowe8SptXcXbo2AdAuAtcFK2GC+MYcCgmg=="; 480 + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.81.0.tgz"; 481 + sha512 = "TzdSQlnLniRh31ix5kLkbBNM2TZnm4Bf0NXkQqTRzBIj4ngDjiiKoQX+avl8EeZ2WehVYGLuAG8iWN0psxIICg=="; 482 482 }; 483 483 }; 484 - "@aws-sdk/client-sso-3.72.0" = { 484 + "@aws-sdk/client-sso-3.81.0" = { 485 485 name = "_at_aws-sdk_slash_client-sso"; 486 486 packageName = "@aws-sdk/client-sso"; 487 - version = "3.72.0"; 487 + version = "3.81.0"; 488 488 src = fetchurl { 489 - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.72.0.tgz"; 490 - sha512 = "mQ2qSy5chVTzNo17kcOtylp8gUJr2SIx7ZkaC5ZUrA9RZu673XKFm1SXvL0aBw1LQBioKU2kGNwsUSDunXulpQ=="; 489 + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.81.0.tgz"; 490 + sha512 = "VP6igPAA6pfF7Z7oBILeN4gVf/g6HLnof/oI6OLJp+I4633IKyajxcuSXcH1hYUVkWDIsNE9AW7/tZDNV1KX9Q=="; 491 491 }; 492 492 }; 493 - "@aws-sdk/client-sts-3.72.0" = { 493 + "@aws-sdk/client-sts-3.81.0" = { 494 494 name = "_at_aws-sdk_slash_client-sts"; 495 495 packageName = "@aws-sdk/client-sts"; 496 - version = "3.72.0"; 496 + version = "3.81.0"; 497 497 src = fetchurl { 498 - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.72.0.tgz"; 499 - sha512 = "m6nEXe5wi7Cx9DHBFOji+i2tn+EXNlBC2BymlFZ+KerxAfjLyu9U16Xx9VzmfnQS5dz0Fyh0DLBIcI9DY5+ywQ=="; 498 + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.81.0.tgz"; 499 + sha512 = "NmuTUHtFxMLz05CMXjCt/9joCa6R2Vv3trbnjPGhhwcgl0KOeYO19PxDaKdckx0QFH7b3EL9eRl5CLxD6gf+PQ=="; 500 500 }; 501 501 }; 502 - "@aws-sdk/config-resolver-3.58.0" = { 502 + "@aws-sdk/config-resolver-3.80.0" = { 503 503 name = "_at_aws-sdk_slash_config-resolver"; 504 504 packageName = "@aws-sdk/config-resolver"; 505 - version = "3.58.0"; 505 + version = "3.80.0"; 506 506 src = fetchurl { 507 - url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.58.0.tgz"; 508 - sha512 = "NXEwYw0JrXcvenu42QpNMQXK+6pgZ+6bDGfCgOfCC0FmyI+w/CuF36lApwm7InHvHazOaDlwArXm2pfntErKoA=="; 507 + url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.80.0.tgz"; 508 + sha512 = "vFruNKlmhsaC8yjnHmasi1WW/7EELlEuFTj4mqcqNqR4dfraf0maVvpqF1VSR8EstpFMsGYI5dmoWAnnG4PcLQ=="; 509 509 }; 510 510 }; 511 - "@aws-sdk/credential-provider-env-3.55.0" = { 511 + "@aws-sdk/credential-provider-env-3.78.0" = { 512 512 name = "_at_aws-sdk_slash_credential-provider-env"; 513 513 packageName = "@aws-sdk/credential-provider-env"; 514 - version = "3.55.0"; 514 + version = "3.78.0"; 515 515 src = fetchurl { 516 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.55.0.tgz"; 517 - sha512 = "4AIIXEdvinLlWNFtrUbUgoB7dkuV04RTcTruVWI4Ub4WSsuSCa72ZU1vqyvcEAOgGGLBmcSaGTWByjiD2sGcGA=="; 516 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.78.0.tgz"; 517 + sha512 = "K41VTIzVHm2RyIwtBER8Hte3huUBXdV1WKO+i7olYVgLFmaqcZUNrlyoGDRqZcQ/u4AbxTzBU9jeMIbIfzMOWg=="; 518 518 }; 519 519 }; 520 - "@aws-sdk/credential-provider-imds-3.58.0" = { 520 + "@aws-sdk/credential-provider-imds-3.81.0" = { 521 521 name = "_at_aws-sdk_slash_credential-provider-imds"; 522 522 packageName = "@aws-sdk/credential-provider-imds"; 523 - version = "3.58.0"; 523 + version = "3.81.0"; 524 524 src = fetchurl { 525 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.58.0.tgz"; 526 - sha512 = "CdtnTQ9zqLx1FbXdbgjijLbMcIWOyQM03TFaLSCjI3FNbUwyt3T7StBU9tj/LtbypHhSdXyQBpzUtXTOMWCEhg=="; 525 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.81.0.tgz"; 526 + sha512 = "BHopP+gaovTYj+4tSrwCk8NNCR48gE9CWmpIOLkP9ell0gOL81Qh7aCEiIK0BZBZkccv1s16cYq1MSZZGS7PEQ=="; 527 527 }; 528 528 }; 529 - "@aws-sdk/credential-provider-ini-3.72.0" = { 529 + "@aws-sdk/credential-provider-ini-3.81.0" = { 530 530 name = "_at_aws-sdk_slash_credential-provider-ini"; 531 531 packageName = "@aws-sdk/credential-provider-ini"; 532 - version = "3.72.0"; 532 + version = "3.81.0"; 533 533 src = fetchurl { 534 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.72.0.tgz"; 535 - sha512 = "KeZAywZ5CxEUIRvIpxRiOkRUwGy+rTTGTfjQz/Mz6AUj+nx+8M5WnSLRgENcwXmX59A7VdqosvD1jnRiXJjmPg=="; 534 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.81.0.tgz"; 535 + sha512 = "Fl29sS5V40/WnQFSzeVZEN0E79ND/YuzuWB4aw6SfX44fA6CtpN0HZzvVZxdtPGAQwezPSPGZBc7JrbAVBevTQ=="; 536 536 }; 537 537 }; 538 - "@aws-sdk/credential-provider-node-3.72.0" = { 538 + "@aws-sdk/credential-provider-node-3.81.0" = { 539 539 name = "_at_aws-sdk_slash_credential-provider-node"; 540 540 packageName = "@aws-sdk/credential-provider-node"; 541 - version = "3.72.0"; 541 + version = "3.81.0"; 542 542 src = fetchurl { 543 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.72.0.tgz"; 544 - sha512 = "8yNNILXPAD9RlcKI0aronXOgwF9vRZQqEwPuvkurCPFQFt+OM/4/HTJns2NSVmImKDMV36sG+6Ld6aJEVW4cLQ=="; 543 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.81.0.tgz"; 544 + sha512 = "50YSQdvWrjoAmw/tkJNaDUntNtaCS5QsL86tSPKWAdvpcoath52pQhOGW7PgLMDMRFvh726yOzK2NdrK2eD2yg=="; 545 545 }; 546 546 }; 547 - "@aws-sdk/credential-provider-process-3.58.0" = { 547 + "@aws-sdk/credential-provider-process-3.80.0" = { 548 548 name = "_at_aws-sdk_slash_credential-provider-process"; 549 549 packageName = "@aws-sdk/credential-provider-process"; 550 - version = "3.58.0"; 550 + version = "3.80.0"; 551 551 src = fetchurl { 552 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.58.0.tgz"; 553 - sha512 = "npgFqPUjMhUamf1FvJjBYUdpbWx8XWkKCwJsX73I7IYQAvAi2atCOkdtKq+4rds0VWAYu6vzlaI1tXgFxjOPNQ=="; 552 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.80.0.tgz"; 553 + sha512 = "3Ro+kMMyLUJHefOhGc5pOO/ibGcJi8bkj0z/Jtqd5I2Sm1qi7avoztST67/k48KMW1OqPnD/FUqxz5T8B2d+FQ=="; 554 554 }; 555 555 }; 556 - "@aws-sdk/credential-provider-sso-3.72.0" = { 556 + "@aws-sdk/credential-provider-sso-3.81.0" = { 557 557 name = "_at_aws-sdk_slash_credential-provider-sso"; 558 558 packageName = "@aws-sdk/credential-provider-sso"; 559 - version = "3.72.0"; 559 + version = "3.81.0"; 560 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.72.0.tgz"; 562 - sha512 = "2NGjF2gMls5f/9QbUQEHR9kbVGePLI7EXVOyPb1H6DvQLp54keMVdTlSzKlRIcGUNd4MBYuDJak8Slf976/UVw=="; 561 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.81.0.tgz"; 562 + sha512 = "TKcPnHgLBPN00p3nRstfWg+Rf0rJJelBDJXFgosqh/v0FzJD9UKab9nqOLbrCb15Fjod/stt1aXgdkrw3uvpjw=="; 563 563 }; 564 564 }; 565 - "@aws-sdk/credential-provider-web-identity-3.55.0" = { 565 + "@aws-sdk/credential-provider-web-identity-3.78.0" = { 566 566 name = "_at_aws-sdk_slash_credential-provider-web-identity"; 567 567 packageName = "@aws-sdk/credential-provider-web-identity"; 568 - version = "3.55.0"; 568 + version = "3.78.0"; 569 569 src = fetchurl { 570 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.55.0.tgz"; 571 - sha512 = "aKnXfZNGohTuF9rCGYLg4JEIOvWIZ/sb66XMq7bOUrx13KRPDwL/eUQL8quS5jGRLpjXVNvrS17AFf65GbdUBg=="; 570 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.78.0.tgz"; 571 + sha512 = "9/IvqHdJaVqMEABA8xZE3t5YF1S2PepfckVu0Ws9YUglj6oO+2QyVX6aRgMF1xph6781+Yc31TDh8/3eaDja7w=="; 572 572 }; 573 573 }; 574 - "@aws-sdk/eventstream-marshaller-3.58.0" = { 574 + "@aws-sdk/eventstream-marshaller-3.78.0" = { 575 575 name = "_at_aws-sdk_slash_eventstream-marshaller"; 576 576 packageName = "@aws-sdk/eventstream-marshaller"; 577 - version = "3.58.0"; 577 + version = "3.78.0"; 578 578 src = fetchurl { 579 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-3.58.0.tgz"; 580 - sha512 = "vTdVFLIHGZTx/Anp9GpkTXVuvwSCNOecTutU5Py4i6fATgefWiSutc5Xc/FLujBSc0EhAXDGZIcTMpZC7jUpeg=="; 579 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-3.78.0.tgz"; 580 + sha512 = "BMbRvLe6wNWQ+NO1pdPw3kGXXEdYV94BxEr3rTkKwr5yHpl8sUb/Va9sJJufUjzggpgE4vYu5nVsrT8ByMYXuA=="; 581 581 }; 582 582 }; 583 - "@aws-sdk/eventstream-serde-browser-3.72.0" = { 583 + "@aws-sdk/eventstream-serde-browser-3.78.0" = { 584 584 name = "_at_aws-sdk_slash_eventstream-serde-browser"; 585 585 packageName = "@aws-sdk/eventstream-serde-browser"; 586 - version = "3.72.0"; 586 + version = "3.78.0"; 587 587 src = fetchurl { 588 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.72.0.tgz"; 589 - sha512 = "UhMZ4P60mZu7G+craAdkRgR4/n3lWAgrNp1upgN2W8RLEQwhqY3qHiUdn/kp6qvontwHnxZkXNB+5Zm5pcP8bQ=="; 588 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.78.0.tgz"; 589 + sha512 = "ehQI2iLsj8MMskDRbrPB7SibIdJq6LleBP6ojT+cgrLJRbVXUOxK+3MPHDZVdGYx4ukVg48E1fA2DzVfAp7Emw=="; 590 590 }; 591 591 }; 592 - "@aws-sdk/eventstream-serde-config-resolver-3.55.0" = { 592 + "@aws-sdk/eventstream-serde-config-resolver-3.78.0" = { 593 593 name = "_at_aws-sdk_slash_eventstream-serde-config-resolver"; 594 594 packageName = "@aws-sdk/eventstream-serde-config-resolver"; 595 - version = "3.55.0"; 595 + version = "3.78.0"; 596 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.55.0.tgz"; 598 - sha512 = "NTJHLq1sbXyXAaJucKvcdN3Svr/fM2TjHEC3l8P/torFjIsX1+Ykpi8tZt8KsX8RjoUTTfKylh41AjJq0K9X4Q=="; 597 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.78.0.tgz"; 598 + sha512 = "iUG0wtZH/L7d6XfipwbhgjBHip0uTm9S27EasCn+g0CunbW6w7rXd7rfMqA+gSLVXPTBYjTMPIwRxrTCdRprwA=="; 599 599 }; 600 600 }; 601 - "@aws-sdk/eventstream-serde-node-3.72.0" = { 601 + "@aws-sdk/eventstream-serde-node-3.78.0" = { 602 602 name = "_at_aws-sdk_slash_eventstream-serde-node"; 603 603 packageName = "@aws-sdk/eventstream-serde-node"; 604 - version = "3.72.0"; 604 + version = "3.78.0"; 605 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.72.0.tgz"; 607 - sha512 = "woemBkQ3O7mTiT3kdJH72s3lQLhr2B7hxRhYeaa1xQf1UjLJkKXL5PEOOrcylmxLdF6rYLsFs8Y/Hr4FZfqAqA=="; 606 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.78.0.tgz"; 607 + sha512 = "H78LLoZEngZBSdk3lRQkAaR3cGsy/3UIjq9AFPeqoPVQtHkzBob1jVfE/5VSVAMhKLxWn8iqhRPS37AvyBGOwQ=="; 608 608 }; 609 609 }; 610 - "@aws-sdk/eventstream-serde-universal-3.72.0" = { 610 + "@aws-sdk/eventstream-serde-universal-3.78.0" = { 611 611 name = "_at_aws-sdk_slash_eventstream-serde-universal"; 612 612 packageName = "@aws-sdk/eventstream-serde-universal"; 613 - version = "3.72.0"; 613 + version = "3.78.0"; 614 614 src = fetchurl { 615 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.72.0.tgz"; 616 - sha512 = "iIaDC/2xgK+2kLiOPJv8wMDCCtI2JB8bkeac6cQOfn4hZGQdP6fvRGFWD2R8//VR52H68N2vrhCXHvtjnF4iFg=="; 615 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.78.0.tgz"; 616 + sha512 = "PZTLdyF923/1GJuMNtq9VMGd2vEx33HhsGInXvYtulKDSD5SgaTGj+Dz5wYepqL1gUEuXqZjBD71uZgrY/JgRg=="; 617 617 }; 618 618 }; 619 - "@aws-sdk/fetch-http-handler-3.58.0" = { 619 + "@aws-sdk/fetch-http-handler-3.78.0" = { 620 620 name = "_at_aws-sdk_slash_fetch-http-handler"; 621 621 packageName = "@aws-sdk/fetch-http-handler"; 622 - version = "3.58.0"; 622 + version = "3.78.0"; 623 623 src = fetchurl { 624 - url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.58.0.tgz"; 625 - sha512 = "timF3FjPV5Bd+Kgph83LIKVlPCFObVYzious1a6doeLAT6YFwZpRrWbfP/HzS+DCoYiwUsH69oVJ91BoV66oyA=="; 624 + url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.78.0.tgz"; 625 + sha512 = "cR6r2h2kJ1DNEZSXC6GknQB7OKmy+s9ZNV+g3AsNqkrUmNNOaHpFoSn+m6SC3qaclcGd0eQBpqzSu/TDn23Ihw=="; 626 626 }; 627 627 }; 628 - "@aws-sdk/hash-blob-browser-3.58.0" = { 628 + "@aws-sdk/hash-blob-browser-3.78.0" = { 629 629 name = "_at_aws-sdk_slash_hash-blob-browser"; 630 630 packageName = "@aws-sdk/hash-blob-browser"; 631 - version = "3.58.0"; 631 + version = "3.78.0"; 632 632 src = fetchurl { 633 - url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.58.0.tgz"; 634 - sha512 = "fdp12BqypRxwvevbJSl/sUhXJRi4Ghv6JKEXAHI1klkR6xY1GRORO5SHWltVY/xl373ERMol5o/n+ra/7jcx/g=="; 633 + url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.78.0.tgz"; 634 + sha512 = "IEkA+t6qJEtEYEZgsqFRRITeZJ3mirw7IHJVHxwb86lpeufTVcbILI59B8/rhbqG+9dk0kWTjYSjC/ZdM+rgHA=="; 635 635 }; 636 636 }; 637 - "@aws-sdk/hash-node-3.55.0" = { 637 + "@aws-sdk/hash-node-3.78.0" = { 638 638 name = "_at_aws-sdk_slash_hash-node"; 639 639 packageName = "@aws-sdk/hash-node"; 640 - version = "3.55.0"; 640 + version = "3.78.0"; 641 641 src = fetchurl { 642 - url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.55.0.tgz"; 643 - sha512 = "2UdYwY/++AlzWEAFaK9wOed2QSxbzV527vmqKjReLHpPKPrSIlooUxlTH3LU6Y6WVDAzDRtLK43KUVXTLgGK1A=="; 642 + url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.78.0.tgz"; 643 + sha512 = "ev48yXaqZVtMeuKy52LUZPHCyKvkKQ9uiUebqkA+zFxIk+eN8SMPFHmsififIHWuS6ZkXBUSctjH9wmLebH60A=="; 644 644 }; 645 645 }; 646 - "@aws-sdk/hash-stream-node-3.58.0" = { 646 + "@aws-sdk/hash-stream-node-3.78.0" = { 647 647 name = "_at_aws-sdk_slash_hash-stream-node"; 648 648 packageName = "@aws-sdk/hash-stream-node"; 649 - version = "3.58.0"; 649 + version = "3.78.0"; 650 650 src = fetchurl { 651 - url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.58.0.tgz"; 652 - sha512 = "y7HEeC3OiuXCRqsHnKDn5yef8UAbnegD9r+OM9bdD+3e6FLAL8Rq7hQTOpwIAiPXuD7HKx8h98s9JLvkwTOBkg=="; 651 + url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.78.0.tgz"; 652 + sha512 = "y42Pm0Nk6zf/MI6acLFVFAMya0Ncvy6F6Xu5aYAmwIMIoMI0ctNeyuL/Dikgt8+oyxC+kORw+W9jtzgWj2zY/w=="; 653 653 }; 654 654 }; 655 - "@aws-sdk/invalid-dependency-3.55.0" = { 655 + "@aws-sdk/invalid-dependency-3.78.0" = { 656 656 name = "_at_aws-sdk_slash_invalid-dependency"; 657 657 packageName = "@aws-sdk/invalid-dependency"; 658 - version = "3.55.0"; 658 + version = "3.78.0"; 659 659 src = fetchurl { 660 - url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.55.0.tgz"; 661 - sha512 = "delH0lV+78fdD/8MXIt9kTLS6IwHvdhqq9dw/ow5VjTUw+xBwUlfPfZplaai+3hKTKWh6a2WZCeDasNItBv9aA=="; 660 + url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.78.0.tgz"; 661 + sha512 = "zUo+PbeRMN/Mzj6y+6p9qqk/znuFetT1gmpOcZGL9Rp2T+b9WJWd+daq5ktsL10sVCzIt2UvneJRz6b+aU+bfw=="; 662 662 }; 663 663 }; 664 664 "@aws-sdk/is-array-buffer-3.55.0" = { ··· 670 670 sha512 = "NbiPHVYuPxdqdFd6FxzzN3H1BQn/iWA3ri3Ry7AyLeP/tGs1yzEWMwf8BN8TSMALI0GXT6Sh0GDWy3Ok5xB6DA=="; 671 671 }; 672 672 }; 673 - "@aws-sdk/md5-js-3.58.0" = { 673 + "@aws-sdk/md5-js-3.78.0" = { 674 674 name = "_at_aws-sdk_slash_md5-js"; 675 675 packageName = "@aws-sdk/md5-js"; 676 - version = "3.58.0"; 676 + version = "3.78.0"; 677 677 src = fetchurl { 678 - url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.58.0.tgz"; 679 - sha512 = "V5f4Re+CLn3aDF1nrmDqdUtcqBHCyxxD2s2Ot+hZ2JFit+OtJggo1cI03ldTrQpG79rwHG+bHqL2VvNQP7Aj9A=="; 678 + url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.78.0.tgz"; 679 + sha512 = "vKOXJWJvv6QH6rnqMYEWzwAnMr4hfcmY8+t6BAuTcDpcEVF77e3bwUcaajXi2U0JMuNvnLwuJF3h6kL6aX4l6g=="; 680 680 }; 681 681 }; 682 - "@aws-sdk/middleware-bucket-endpoint-3.58.0" = { 682 + "@aws-sdk/middleware-bucket-endpoint-3.80.0" = { 683 683 name = "_at_aws-sdk_slash_middleware-bucket-endpoint"; 684 684 packageName = "@aws-sdk/middleware-bucket-endpoint"; 685 - version = "3.58.0"; 685 + version = "3.80.0"; 686 686 src = fetchurl { 687 - url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.58.0.tgz"; 688 - sha512 = "zocLfFzj+NQjXLGZKPJBAYWWldAKBJkGzGVpTfrYx9bxxHTA70Gu+3sx+Xe+iOu8dtQT0OAnIX0wGudOPnTGNg=="; 687 + url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.80.0.tgz"; 688 + sha512 = "FSSx6IgT7xftSlpjxoPKv8XI9nv7EK+OCODo2s3CmElMW1kBRdmQ/ImVuTwvqhdxJEVUeUdgupmC7cqyqgt04w=="; 689 689 }; 690 690 }; 691 - "@aws-sdk/middleware-content-length-3.58.0" = { 691 + "@aws-sdk/middleware-content-length-3.78.0" = { 692 692 name = "_at_aws-sdk_slash_middleware-content-length"; 693 693 packageName = "@aws-sdk/middleware-content-length"; 694 - version = "3.58.0"; 694 + version = "3.78.0"; 695 695 src = fetchurl { 696 - url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.58.0.tgz"; 697 - sha512 = "h/BypPkhjv2CpCUbXA8Fa2s7V2GPiz9l11XhYK+sKSuQvQ7Lbq6VhaKaLqfeD3gLVZHgJZSLGl2btdHV1qHNNA=="; 696 + url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.78.0.tgz"; 697 + sha512 = "5MpKt6lB9TdFy25/AGrpOjPY0iDHZAKpEHc+jSOJBXLl6xunXA7qHdiYaVqkWodLxy70nIckGNHqQ3drabidkA=="; 698 698 }; 699 699 }; 700 - "@aws-sdk/middleware-expect-continue-3.58.0" = { 700 + "@aws-sdk/middleware-expect-continue-3.78.0" = { 701 701 name = "_at_aws-sdk_slash_middleware-expect-continue"; 702 702 packageName = "@aws-sdk/middleware-expect-continue"; 703 - version = "3.58.0"; 703 + version = "3.78.0"; 704 704 src = fetchurl { 705 - url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.58.0.tgz"; 706 - sha512 = "nx6X6qLPwvbJrGoPxXSu4tsOek2eRnnjk78hhRUDfxFewpHJQLSPlyNKkXAo+C3syVALe6RJRmUYu5bShY6FfA=="; 705 + url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.78.0.tgz"; 706 + sha512 = "IXfcSugFV3uNk50VQsN/Cm80iCsUSwcYJ5RzEwy7wXbZ+KM03xWXlbXzqkeTDnS74wLWSw09nKF3rkp1eyfDfg=="; 707 707 }; 708 708 }; 709 - "@aws-sdk/middleware-flexible-checksums-3.72.0" = { 709 + "@aws-sdk/middleware-flexible-checksums-3.78.0" = { 710 710 name = "_at_aws-sdk_slash_middleware-flexible-checksums"; 711 711 packageName = "@aws-sdk/middleware-flexible-checksums"; 712 - version = "3.72.0"; 712 + version = "3.78.0"; 713 713 src = fetchurl { 714 - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.72.0.tgz"; 715 - sha512 = "lrwTmpygp6bxGRi6kbMq+EtTW5nsts+B7Wj7MA8PBIQsKU06T2tYxjDBYOyHB1MiVhltlq+vebBvacT64KsbFA=="; 714 + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.78.0.tgz"; 715 + sha512 = "1jjxHcB3Le/2Z7BzugXzZnIwKGlUluNm0d1lB4fF2QVq3GHlA6e8uv0rCtqe/3wSsrzV6YzJ8vjioymKSNIjKQ=="; 716 716 }; 717 717 }; 718 - "@aws-sdk/middleware-header-default-3.58.0" = { 718 + "@aws-sdk/middleware-header-default-3.78.0" = { 719 719 name = "_at_aws-sdk_slash_middleware-header-default"; 720 720 packageName = "@aws-sdk/middleware-header-default"; 721 - version = "3.58.0"; 721 + version = "3.78.0"; 722 722 src = fetchurl { 723 - url = "https://registry.npmjs.org/@aws-sdk/middleware-header-default/-/middleware-header-default-3.58.0.tgz"; 724 - sha512 = "7F+CdLLauMmNbwFGYrE2pKsgTKY8G2PgazHmaE9s3FySEFcGPWmiEAG8sVImfZooj8gxGFQMLr97nanWjhSq2Q=="; 723 + url = "https://registry.npmjs.org/@aws-sdk/middleware-header-default/-/middleware-header-default-3.78.0.tgz"; 724 + sha512 = "USyOIF7ObBVMKbV/8lOBLDNwMAGdOtujd+RO/9dX6OQLceUTKIS1dOfJoYYwRHgengn7ikpDxoyROyspPYYDZQ=="; 725 725 }; 726 726 }; 727 - "@aws-sdk/middleware-host-header-3.58.0" = { 727 + "@aws-sdk/middleware-host-header-3.78.0" = { 728 728 name = "_at_aws-sdk_slash_middleware-host-header"; 729 729 packageName = "@aws-sdk/middleware-host-header"; 730 - version = "3.58.0"; 730 + version = "3.78.0"; 731 731 src = fetchurl { 732 - url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.58.0.tgz"; 733 - sha512 = "q/UKGcanm9e6DBRNN6UKhVqLvpRRdZWbmmPCeDNr4HqhCmgT6i1OvWdhAMOnT++hvCX8DpTsIXzNSlY6zWAxBg=="; 732 + url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.78.0.tgz"; 733 + sha512 = "1zL8uaDWGmH50c8B8jjz75e0ePj6/3QeZEhjJgTgL6DTdiqvRt32p3t+XWHW+yDI14fZZUYeTklAaLVxqFrHqQ=="; 734 734 }; 735 735 }; 736 - "@aws-sdk/middleware-location-constraint-3.55.0" = { 736 + "@aws-sdk/middleware-location-constraint-3.78.0" = { 737 737 name = "_at_aws-sdk_slash_middleware-location-constraint"; 738 738 packageName = "@aws-sdk/middleware-location-constraint"; 739 - version = "3.55.0"; 739 + version = "3.78.0"; 740 740 src = fetchurl { 741 - url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.55.0.tgz"; 742 - sha512 = "OvCKwBFbl8Gbfk0HGX00pkdORJN8BPuH/O5l3+mOBWuwILPuckRP5WGnL+1HT/gu4hHS6h1lpxUrPxUOoeKIAg=="; 741 + url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.78.0.tgz"; 742 + sha512 = "m626H1WwXYJtwHEkV/2DsLlu1ckWq3j57NzsexZki3qS0nU8HEiDl6YYi+k84vDD4Qpba6EI9AdhzwnvZLXtGw=="; 743 743 }; 744 744 }; 745 - "@aws-sdk/middleware-logger-3.55.0" = { 745 + "@aws-sdk/middleware-logger-3.78.0" = { 746 746 name = "_at_aws-sdk_slash_middleware-logger"; 747 747 packageName = "@aws-sdk/middleware-logger"; 748 - version = "3.55.0"; 748 + version = "3.78.0"; 749 749 src = fetchurl { 750 - url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.55.0.tgz"; 751 - sha512 = "PtRbVrxEzDmeV9prBIP4/9or7R5Dj66mjbFSvNRGZ0n+UBfBFfVRfNrhQPNzQpfV9A3KVl9YyWCVXDSW+/rk9Q=="; 750 + url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.78.0.tgz"; 751 + sha512 = "GBhwxNjhCJUIeQQDaGasX/C23Jay77al2vRyGwmxf8no0DdFsa4J1Ik6/2hhIqkqko+WM4SpCnpZrY4MtnxNvA=="; 752 752 }; 753 753 }; 754 - "@aws-sdk/middleware-retry-3.58.0" = { 754 + "@aws-sdk/middleware-retry-3.80.0" = { 755 755 name = "_at_aws-sdk_slash_middleware-retry"; 756 756 packageName = "@aws-sdk/middleware-retry"; 757 - version = "3.58.0"; 757 + version = "3.80.0"; 758 758 src = fetchurl { 759 - url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.58.0.tgz"; 760 - sha512 = "sfSq+t0Yy47DQwrWGpA8iOx9sd26l4l1JDVTwHNi7+OKD4ClRPVCEdw3bTbbyYz/PV4f9AEfAZ6jwtSff4wkGw=="; 759 + url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.80.0.tgz"; 760 + sha512 = "CTk+tA4+WMUNOcUfR6UQrkhwvPYFpnMsQ1vuHlpLFOGG3nCqywA2hueLMRQmVcDXzP0sGeygce6dzRI9dJB/GA=="; 761 761 }; 762 762 }; 763 - "@aws-sdk/middleware-sdk-s3-3.66.0" = { 763 + "@aws-sdk/middleware-sdk-s3-3.78.0" = { 764 764 name = "_at_aws-sdk_slash_middleware-sdk-s3"; 765 765 packageName = "@aws-sdk/middleware-sdk-s3"; 766 - version = "3.66.0"; 766 + version = "3.78.0"; 767 767 src = fetchurl { 768 - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.66.0.tgz"; 769 - sha512 = "4ACAdKAZkIjEK99UwoaKTrTGhS7qGqyLmjiGHlzR0ggMUUVmlep7EtcluImFtT6pi+ANVLDzuZGa+95MwGY/Qg=="; 768 + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.78.0.tgz"; 769 + sha512 = "gxtfVHaL0CkKDIEwRQnmBequtN3dsCtY5LByZQoP3l5qEuTAzwxgbtvGUfHE8LwDVByBqUEFanzafjv1KJ3F8w=="; 770 770 }; 771 771 }; 772 - "@aws-sdk/middleware-sdk-sts-3.58.0" = { 772 + "@aws-sdk/middleware-sdk-sts-3.78.0" = { 773 773 name = "_at_aws-sdk_slash_middleware-sdk-sts"; 774 774 packageName = "@aws-sdk/middleware-sdk-sts"; 775 - version = "3.58.0"; 775 + version = "3.78.0"; 776 776 src = fetchurl { 777 - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.58.0.tgz"; 778 - sha512 = "HUz7MhcsSDDTGygOwL61l4voc0pZco06J3z06JjTX19D5XxcQ7hSCtkHHHz0oMb9M1himVSiEon2tjhjsnB99g=="; 777 + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.78.0.tgz"; 778 + sha512 = "Lu/kN0J0/Kt0ON1hvwNel+y8yvf35licfIgtedHbBCa/ju8qQ9j+uL9Lla6Y5Tqu29yVaye1JxhiIDhscSwrLA=="; 779 779 }; 780 780 }; 781 - "@aws-sdk/middleware-serde-3.55.0" = { 781 + "@aws-sdk/middleware-serde-3.78.0" = { 782 782 name = "_at_aws-sdk_slash_middleware-serde"; 783 783 packageName = "@aws-sdk/middleware-serde"; 784 - version = "3.55.0"; 784 + version = "3.78.0"; 785 785 src = fetchurl { 786 - url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.55.0.tgz"; 787 - sha512 = "NkEbTDrSZcC2NhuvfjXHKJEl0xgI2B5tMAwi/rMOq/TEnARwVUL9qAy+5lgeiPCqebiNllWatARrFgAaYf0VeA=="; 786 + url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.78.0.tgz"; 787 + sha512 = "4DPsNOxsl1bxRzfo1WXEZjmD7OEi7qGNpxrDWucVe96Fqj2dH08jR8wxvBIVV1e6bAad07IwdPuCGmivNvwRuQ=="; 788 788 }; 789 789 }; 790 - "@aws-sdk/middleware-signing-3.58.0" = { 790 + "@aws-sdk/middleware-signing-3.78.0" = { 791 791 name = "_at_aws-sdk_slash_middleware-signing"; 792 792 packageName = "@aws-sdk/middleware-signing"; 793 - version = "3.58.0"; 793 + version = "3.78.0"; 794 794 src = fetchurl { 795 - url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.58.0.tgz"; 796 - sha512 = "4FXubHB66GbhyZUlo6YPQoWpYfED15GNbEmHbJLSONzrVzZR3IkViSPLasDngVm1a050JqKuqNkFYGJBP4No/Q=="; 795 + url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.78.0.tgz"; 796 + sha512 = "OEjJJCNhHHSOprLZ9CzjHIXEKFtPHWP/bG9pMhkV3/6Bmscsgcf8gWHcOnmIrjqX+hT1VALDNpl/RIh0J6/eQw=="; 797 797 }; 798 798 }; 799 - "@aws-sdk/middleware-ssec-3.55.0" = { 799 + "@aws-sdk/middleware-ssec-3.78.0" = { 800 800 name = "_at_aws-sdk_slash_middleware-ssec"; 801 801 packageName = "@aws-sdk/middleware-ssec"; 802 - version = "3.55.0"; 802 + version = "3.78.0"; 803 803 src = fetchurl { 804 - url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.55.0.tgz"; 805 - sha512 = "HTdA23hksOphQe0TmYORsa/kMNnKRGbdh0VJcsDGHQScJXzJ+C//THwfcoklff0XZfC+vGh93PECBWqixMELZw=="; 804 + url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.78.0.tgz"; 805 + sha512 = "3z+UOd95rxvj+iO6WxMjuRNNUMlO6xhXZdBHvQmoiyS+9nMDcNieTu6gfQyLAilVeCh8xU9a0IenJuIYVdJ96g=="; 806 806 }; 807 807 }; 808 - "@aws-sdk/middleware-stack-3.55.0" = { 808 + "@aws-sdk/middleware-stack-3.78.0" = { 809 809 name = "_at_aws-sdk_slash_middleware-stack"; 810 810 packageName = "@aws-sdk/middleware-stack"; 811 - version = "3.55.0"; 811 + version = "3.78.0"; 812 812 src = fetchurl { 813 - url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.55.0.tgz"; 814 - sha512 = "ouD+wFz8W2R0ZQ8HrbhgN8tg1jyINEg9lPEEXY79w1Q5sf94LJ90XKAMVk02rw3dJalUWjLHf0OQe1/qxZfHyA=="; 813 + url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.78.0.tgz"; 814 + sha512 = "UoNfRh6eAJN3BJHlG1eb+KeuSe+zARTC2cglroJRyHc2j7GxH2i9FD3IJbj5wvzopJEnQzuY/VCs6STFkqWL1g=="; 815 815 }; 816 816 }; 817 - "@aws-sdk/middleware-user-agent-3.58.0" = { 817 + "@aws-sdk/middleware-user-agent-3.78.0" = { 818 818 name = "_at_aws-sdk_slash_middleware-user-agent"; 819 819 packageName = "@aws-sdk/middleware-user-agent"; 820 - version = "3.58.0"; 820 + version = "3.78.0"; 821 821 src = fetchurl { 822 - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.58.0.tgz"; 823 - sha512 = "1c69bIWM63JwXijXvb9IWwcwQ/gViKMZ1lhxv52NvdG5VSxWXXsFJ2jETEXZoAypwT97Hmf3xo9SYuaHcKoq+g=="; 822 + url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.78.0.tgz"; 823 + sha512 = "wdN5uoq8RxxhLhj0EPeuDSRFuXfUwKeEqRzCKMsYAOC0cAm+PryaP2leo0oTGJ9LUK8REK7zyfFcmtC4oOzlkA=="; 824 824 }; 825 825 }; 826 - "@aws-sdk/node-config-provider-3.58.0" = { 826 + "@aws-sdk/node-config-provider-3.80.0" = { 827 827 name = "_at_aws-sdk_slash_node-config-provider"; 828 828 packageName = "@aws-sdk/node-config-provider"; 829 - version = "3.58.0"; 829 + version = "3.80.0"; 830 830 src = fetchurl { 831 - url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.58.0.tgz"; 832 - sha512 = "AMcPqPhKxo/3/yOMS9PsKlI0GWp2/8eD6gSlhzdBpznPCKplyqXOSnSX7wS814Cyh373hFSjCaOrCOA9/EYtDg=="; 831 + url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.80.0.tgz"; 832 + sha512 = "vyTOMK04huB7n10ZUv0thd2TE6KlY8livOuLqFTMtj99AJ6vyeB5XBNwKnQtJIt/P7CijYgp8KcFvI9fndOmKg=="; 833 833 }; 834 834 }; 835 - "@aws-sdk/node-http-handler-3.58.0" = { 835 + "@aws-sdk/node-http-handler-3.78.0" = { 836 836 name = "_at_aws-sdk_slash_node-http-handler"; 837 837 packageName = "@aws-sdk/node-http-handler"; 838 - version = "3.58.0"; 838 + version = "3.78.0"; 839 839 src = fetchurl { 840 - url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.58.0.tgz"; 841 - sha512 = "D9xVZG2nfo4GbPsby3JuBiAhpqXTFk1+CfuQU0AZv0gQvE3fFTCnB3za83jo7JV/pyRPU+s+/LHIpxCWUHzStg=="; 840 + url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.78.0.tgz"; 841 + sha512 = "oGnX91QLB3qaeh2x5n7jtw9RZukLZ2Rqjf8/smVIedAPMJg4fuqnDN/597j+wlEFDPZFpGO2eoE4nah3BoWtwg=="; 842 842 }; 843 843 }; 844 - "@aws-sdk/property-provider-3.55.0" = { 844 + "@aws-sdk/property-provider-3.78.0" = { 845 845 name = "_at_aws-sdk_slash_property-provider"; 846 846 packageName = "@aws-sdk/property-provider"; 847 - version = "3.55.0"; 847 + version = "3.78.0"; 848 848 src = fetchurl { 849 - url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.55.0.tgz"; 850 - sha512 = "o7cKFJSHq5WOhwPsspYrzNto35oKKZvESZuWDtLxaZKSI6l7zpA366BI4kDG6Tc9i2+teV553MbxyZ9eya5A8g=="; 849 + url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.78.0.tgz"; 850 + sha512 = "PZpLvV0hF6lqg3CSN9YmphrB/t5LVJVWGJLB9d9qm7sJs5ksjTYBb5bY91OQ3zit0F4cqBMU8xt2GQ9J6d4DvQ=="; 851 851 }; 852 852 }; 853 - "@aws-sdk/protocol-http-3.58.0" = { 853 + "@aws-sdk/protocol-http-3.78.0" = { 854 854 name = "_at_aws-sdk_slash_protocol-http"; 855 855 packageName = "@aws-sdk/protocol-http"; 856 - version = "3.58.0"; 856 + version = "3.78.0"; 857 857 src = fetchurl { 858 - url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.58.0.tgz"; 859 - sha512 = "0yFFRPbR+CCa9eOQBBQ2qtrIDLYqSMN0y7G4iqVM8wQdIw7n3QK1PsTI3RNPGJ3Oi2krFTw5uUKqQQZPZEBuVQ=="; 858 + url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.78.0.tgz"; 859 + sha512 = "SQB26MhEK96yDxyXd3UAaxLz1Y/ZvgE4pzv7V3wZiokdEedM0kawHKEn1UQJlqJLEZcQI9QYyysh3rTvHZ3fyg=="; 860 860 }; 861 861 }; 862 - "@aws-sdk/querystring-builder-3.55.0" = { 862 + "@aws-sdk/querystring-builder-3.78.0" = { 863 863 name = "_at_aws-sdk_slash_querystring-builder"; 864 864 packageName = "@aws-sdk/querystring-builder"; 865 - version = "3.55.0"; 865 + version = "3.78.0"; 866 866 src = fetchurl { 867 - url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.55.0.tgz"; 868 - sha512 = "/ZAXNipt9nRR8k+eowwukE/YjXnQ49p5w/MkaQxsBk3IuIf7MAcgVg8glHr0igH84GfUQ7ZVP8v+G2S3tKUG+Q=="; 867 + url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.78.0.tgz"; 868 + sha512 = "aib6RW1WAaTQDqVgRU1Ku9idkhm90gJKbCxVaGId+as6QHNUqMChEfK2v+0afuKiPNOs5uWmqvOXI9+Gt+UGDg=="; 869 869 }; 870 870 }; 871 - "@aws-sdk/querystring-parser-3.55.0" = { 871 + "@aws-sdk/querystring-parser-3.78.0" = { 872 872 name = "_at_aws-sdk_slash_querystring-parser"; 873 873 packageName = "@aws-sdk/querystring-parser"; 874 - version = "3.55.0"; 874 + version = "3.78.0"; 875 875 src = fetchurl { 876 - url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.55.0.tgz"; 877 - sha512 = "e+2FLgo+eDx7oh7ap5HngN9XSVMxredAVztLHxCcSN0lFHHHzMa8b2SpXbaowUxQHh7ziymSqvOrPYFQ71Filg=="; 876 + url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.78.0.tgz"; 877 + sha512 = "csaH8YTyN+KMNczeK6fBS8l7iJaqcQcKOIbpQFg5upX4Ly5A56HJn4sVQhY1LSgfSk4xRsNfMy5mu6BlsIiaXA=="; 878 878 }; 879 879 }; 880 - "@aws-sdk/s3-request-presigner-3.72.0" = { 880 + "@aws-sdk/s3-request-presigner-3.81.0" = { 881 881 name = "_at_aws-sdk_slash_s3-request-presigner"; 882 882 packageName = "@aws-sdk/s3-request-presigner"; 883 - version = "3.72.0"; 883 + version = "3.81.0"; 884 884 src = fetchurl { 885 - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.72.0.tgz"; 886 - sha512 = "6CxvI0tdamXn58OEmg59YHZPpsiLvCDtbijs9JhCYxvMblhkyPwWZglsZgcEkzIEPySe9RTZ5/BTHn6FzAe4xw=="; 885 + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.81.0.tgz"; 886 + sha512 = "0VDYMqVjk1knv3cSOZQCmPEhg4EmBVti2Do+SNX2bKQytTbzbYlX+bhMINySpYFmnukf26Pj8iSh6v3iRFdwKQ=="; 887 887 }; 888 888 }; 889 - "@aws-sdk/service-error-classification-3.55.0" = { 889 + "@aws-sdk/service-error-classification-3.78.0" = { 890 890 name = "_at_aws-sdk_slash_service-error-classification"; 891 891 packageName = "@aws-sdk/service-error-classification"; 892 - version = "3.55.0"; 892 + version = "3.78.0"; 893 893 src = fetchurl { 894 - url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.55.0.tgz"; 895 - sha512 = "HdjnDyarsa1Avq1MJurkLyEe9c3eRa76dPmK4TmRGgwJ+tInEzGHL0rBW7V8xBK+PDF+fJQ71hvm8jPYmzvBwQ=="; 894 + url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.78.0.tgz"; 895 + sha512 = "x7Lx8KWctJa01q4Q72Zb4ol9L/era3vy2daASu8l2paHHxsAPBE0PThkvLdUSLZSzlHSVdh3YHESIsT++VsK4w=="; 896 896 }; 897 897 }; 898 - "@aws-sdk/shared-ini-file-loader-3.58.0" = { 898 + "@aws-sdk/shared-ini-file-loader-3.80.0" = { 899 899 name = "_at_aws-sdk_slash_shared-ini-file-loader"; 900 900 packageName = "@aws-sdk/shared-ini-file-loader"; 901 - version = "3.58.0"; 901 + version = "3.80.0"; 902 902 src = fetchurl { 903 - url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.58.0.tgz"; 904 - sha512 = "ARDKQerIzgNs/MFNdCEuK2lgRJ1lneAaJw0p9O1LkJUvcSibvkSATwny7vwJMueOf+ae1Pf+8+54OMNIt0nTkQ=="; 903 + url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.80.0.tgz"; 904 + sha512 = "3d5EBJjnWWkjLK9skqLLHYbagtFaZZy+3jUTlbTuOKhlOwe8jF7CUM3j6I4JA6yXNcB3w0exDKKHa8w+l+05aA=="; 905 905 }; 906 906 }; 907 - "@aws-sdk/signature-v4-3.58.0" = { 907 + "@aws-sdk/signature-v4-3.78.0" = { 908 908 name = "_at_aws-sdk_slash_signature-v4"; 909 909 packageName = "@aws-sdk/signature-v4"; 910 - version = "3.58.0"; 910 + version = "3.78.0"; 911 911 src = fetchurl { 912 - url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.58.0.tgz"; 913 - sha512 = "flEo8p3XkzWoBDqnIUQre4jLuT5aLnmfQNI8c2uSjyJ3OBxpJ0iS1cDu3E++d1/pN6Q8o0KOmr2ypHeiyBOujw=="; 912 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.78.0.tgz"; 913 + sha512 = "eePjRYuzKoi3VMr/lgrUEF1ytLeH4fA/NMCykr/uR6NMo4bSJA59KrFLYSM7SlWLRIyB0UvJqygVEvSxFluyDw=="; 914 914 }; 915 915 }; 916 - "@aws-sdk/signature-v4-multi-region-3.66.0" = { 916 + "@aws-sdk/signature-v4-multi-region-3.78.0" = { 917 917 name = "_at_aws-sdk_slash_signature-v4-multi-region"; 918 918 packageName = "@aws-sdk/signature-v4-multi-region"; 919 - version = "3.66.0"; 919 + version = "3.78.0"; 920 920 src = fetchurl { 921 - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.66.0.tgz"; 922 - sha512 = "Akvc8G9Del2+umg0R/5Gc/PWgQwbxxTXdnm6YTHtDzvyPPiYWBs6au6WqJQqcqk07gcQV67MLVqFFhnFuLlcVg=="; 921 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.78.0.tgz"; 922 + sha512 = "5C+3m4dikUsSLTxW++aBCHP0DT1niiEfXR4UdnjJzcjTtmi/jbL/i8UPG5sCpib9Mu6TMW633tN0h5woVPIIcg=="; 923 923 }; 924 924 }; 925 - "@aws-sdk/smithy-client-3.72.0" = { 925 + "@aws-sdk/smithy-client-3.78.0" = { 926 926 name = "_at_aws-sdk_slash_smithy-client"; 927 927 packageName = "@aws-sdk/smithy-client"; 928 - version = "3.72.0"; 928 + version = "3.78.0"; 929 929 src = fetchurl { 930 - url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.72.0.tgz"; 931 - sha512 = "eQ2pEzxtS1Vz1XyNKzG4Z+mtfwRzcAs4FUQP0wrrYVJMsIdI0X4vvro8gYGoBbQtOz65uY3XqQdLuXX/SabTQg=="; 930 + url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.78.0.tgz"; 931 + sha512 = "qweaupZtFPm9rFiEgErnVNgB6co/DylJfhC6/UImHBKa7mGzxv6t2JDm6+d8fs8cNnGNXozN+jJG8Lz6C8Roxw=="; 932 932 }; 933 933 }; 934 - "@aws-sdk/types-3.55.0" = { 934 + "@aws-sdk/types-3.78.0" = { 935 935 name = "_at_aws-sdk_slash_types"; 936 936 packageName = "@aws-sdk/types"; 937 - version = "3.55.0"; 937 + version = "3.78.0"; 938 938 src = fetchurl { 939 - url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.55.0.tgz"; 940 - sha512 = "wrDZjuy1CVAYxDCbm3bWQIKMGfNs7XXmG0eG4858Ixgqmq2avsIn5TORy8ynBxcXn9aekV/+tGEQ7BBSYzIVNQ=="; 939 + url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.78.0.tgz"; 940 + sha512 = "I9PTlVNSbwhIgMfmDM5as1tqRIkVZunjVmfogb2WVVPp4CaX0Ll01S0FSMSLL9k6tcQLXqh45pFRjrxCl9WKdQ=="; 941 941 }; 942 942 }; 943 - "@aws-sdk/url-parser-3.55.0" = { 943 + "@aws-sdk/url-parser-3.78.0" = { 944 944 name = "_at_aws-sdk_slash_url-parser"; 945 945 packageName = "@aws-sdk/url-parser"; 946 - version = "3.55.0"; 946 + version = "3.78.0"; 947 947 src = fetchurl { 948 - url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.55.0.tgz"; 949 - sha512 = "qrTwN5xIgTLreqLnZ+x3cAudjNKfxi6srW1H/px2mk4lb2U9B4fpGjZ6VU+XV8U2kR+YlT8J6Jo5iwuVGfC91A=="; 948 + url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.78.0.tgz"; 949 + sha512 = "iQn2AjECUoJE0Ae9XtgHtGGKvUkvE8hhbktGopdj+zsPBe4WrBN2DgVxlKPPrBonG/YlcL1D7a5EXaujWSlUUw=="; 950 950 }; 951 951 }; 952 952 "@aws-sdk/util-arn-parser-3.55.0" = { ··· 1012 1012 sha512 = "30dzofQQfx6tp1jVZkZ0DGRsT0wwC15nEysKRiAcjncM64A0Cm6sra77d0os3vbKiKoPCI/lMsFr4o3533+qvQ=="; 1013 1013 }; 1014 1014 }; 1015 - "@aws-sdk/util-create-request-3.72.0" = { 1015 + "@aws-sdk/util-create-request-3.78.0" = { 1016 1016 name = "_at_aws-sdk_slash_util-create-request"; 1017 1017 packageName = "@aws-sdk/util-create-request"; 1018 - version = "3.72.0"; 1018 + version = "3.78.0"; 1019 1019 src = fetchurl { 1020 - url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.72.0.tgz"; 1021 - sha512 = "SRxo1RWQ9e7QonuIH8oNEiOJTtasOtYNRD5QYwbJKhNkB4Z6AaE00V28AjrdS/+rMOcb0DKugXZ8Nhbd+n+K0g=="; 1020 + url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.78.0.tgz"; 1021 + sha512 = "aGRuBXGZ/GFYpP+Bkdzo6kyfX1nkH0dhFK6RYZLxe3r7X/AfkMKeUmIco9tyS1sBAiyoy6a7Re/Oux2Y+ASnjg=="; 1022 1022 }; 1023 1023 }; 1024 - "@aws-sdk/util-defaults-mode-browser-3.72.0" = { 1024 + "@aws-sdk/util-defaults-mode-browser-3.78.0" = { 1025 1025 name = "_at_aws-sdk_slash_util-defaults-mode-browser"; 1026 1026 packageName = "@aws-sdk/util-defaults-mode-browser"; 1027 - version = "3.72.0"; 1027 + version = "3.78.0"; 1028 1028 src = fetchurl { 1029 - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.72.0.tgz"; 1030 - sha512 = "xeoh4jdq+tpZWDwGeXeoAQI+rZaCBEicjumBcqfzkRFE3DyaeyPHn3hiKGSR13R+P6Uf86aqaRNmWAeZZjeE0w=="; 1029 + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.78.0.tgz"; 1030 + sha512 = "fsKEqlRbrztjpdTsMbZTlWxFpo3Av9QeYYpJuFaZbwfE0ElzinUU54kKwUrKbi60HRroQV+itoUNj3JogQDeHw=="; 1031 1031 }; 1032 1032 }; 1033 - "@aws-sdk/util-defaults-mode-node-3.72.0" = { 1033 + "@aws-sdk/util-defaults-mode-node-3.81.0" = { 1034 1034 name = "_at_aws-sdk_slash_util-defaults-mode-node"; 1035 1035 packageName = "@aws-sdk/util-defaults-mode-node"; 1036 - version = "3.72.0"; 1036 + version = "3.81.0"; 1037 1037 src = fetchurl { 1038 - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.72.0.tgz"; 1039 - sha512 = "Qf4BZmjWTaWaWbIhra/il8zUAdYY6G4JIcg9WMzQgnh1L/iXpCZddInfB2zT4j5rSAuBf5Ov2T6zvtw3/KOh6Q=="; 1038 + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.81.0.tgz"; 1039 + sha512 = "+7YOtl+TxF08oXt2h/ONP5qk6ZZg6GaO1YSAdpjIfco4odhpy7N2AlEGSX0jZyP6Zbfi+8N7yihBa4sOuOf+Cw=="; 1040 1040 }; 1041 1041 }; 1042 - "@aws-sdk/util-format-url-3.58.0" = { 1042 + "@aws-sdk/util-format-url-3.78.0" = { 1043 1043 name = "_at_aws-sdk_slash_util-format-url"; 1044 1044 packageName = "@aws-sdk/util-format-url"; 1045 - version = "3.58.0"; 1045 + version = "3.78.0"; 1046 1046 src = fetchurl { 1047 - url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.58.0.tgz"; 1048 - sha512 = "nhxomsG+OIBqpIyc2AU88J3+dTap0H5R1D2lNAsSZk07kuu2B1H4qAXIlWPkXyxTi9uL9aykBMuCosECD062NA=="; 1047 + url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.78.0.tgz"; 1048 + sha512 = "wdjt8ZAMyBrH/02QrQtB+S9cwtsBJ6bXRJ3XwL6z7L75nwTflKkzOQUS5Ie7HBf3j3JH0KhlqlEbf2nnM9jsPQ=="; 1049 1049 }; 1050 1050 }; 1051 1051 "@aws-sdk/util-hex-encoding-3.58.0" = { ··· 1066 1066 sha512 = "0sPmK2JaJE2BbTcnvybzob/VrFKCXKfN4CUKcvn0yGg/me7Bz+vtzQRB3Xp+YSx+7OtWxzv63wsvHoAnXvgxgg=="; 1067 1067 }; 1068 1068 }; 1069 - "@aws-sdk/util-middleware-3.55.0" = { 1069 + "@aws-sdk/util-middleware-3.78.0" = { 1070 1070 name = "_at_aws-sdk_slash_util-middleware"; 1071 1071 packageName = "@aws-sdk/util-middleware"; 1072 - version = "3.55.0"; 1072 + version = "3.78.0"; 1073 1073 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.55.0.tgz"; 1075 - sha512 = "82fW2XV+rUalv8lkd4VlhpPp6xnXO5n9sckMp1N+TrQ+p8eqxqT0+o8n1/6s9Qsnkw64Y3m6+EfCdc8/uFOY2g=="; 1074 + url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.78.0.tgz"; 1075 + sha512 = "Hi3wv2b0VogO4mzyeEaeU5KgIt4qeo0LXU5gS6oRrG0T7s2FyKbMBkJW3YDh/Y8fNwqArZ+/QQFujpP0PIKwkA=="; 1076 1076 }; 1077 1077 }; 1078 - "@aws-sdk/util-stream-browser-3.55.0" = { 1078 + "@aws-sdk/util-stream-browser-3.78.0" = { 1079 1079 name = "_at_aws-sdk_slash_util-stream-browser"; 1080 1080 packageName = "@aws-sdk/util-stream-browser"; 1081 - version = "3.55.0"; 1081 + version = "3.78.0"; 1082 1082 src = fetchurl { 1083 - url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.55.0.tgz"; 1084 - sha512 = "3f/zQsAqexJpKssCL0adTjG8WO+NPQ63E3TingyKpnCnHQPEnqPdya5I5OLGzZ0WR0iUWRtpuW0MtuDabyLDWw=="; 1083 + url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.78.0.tgz"; 1084 + sha512 = "EcThf/sJoD4NYTUNO/nehR57lqkOuL6btRoVnm4LGUR8XgQcJ/WMYYgxOMY8E81xXzRFX2ukRHRxL2xmQsbHDw=="; 1085 1085 }; 1086 1086 }; 1087 - "@aws-sdk/util-stream-node-3.55.0" = { 1087 + "@aws-sdk/util-stream-node-3.78.0" = { 1088 1088 name = "_at_aws-sdk_slash_util-stream-node"; 1089 1089 packageName = "@aws-sdk/util-stream-node"; 1090 - version = "3.55.0"; 1090 + version = "3.78.0"; 1091 1091 src = fetchurl { 1092 - url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.55.0.tgz"; 1093 - sha512 = "brCK3iENvXEL7BK5eDAdkZ2VuBSvXj7DH9EQezxl4Ntrj1lvb+McOk9WoU/o7yzE7A/bzEJEoNQAPi+VPNbb/w=="; 1092 + url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.78.0.tgz"; 1093 + sha512 = "CHfX37ioUyamAnlS2p4Nq+4BBjCSlZolFkVyxtVJwzPBBksdvjW67nKG+SShR48RBPJ5LEzbgAaEXNRktCSf6w=="; 1094 1094 }; 1095 1095 }; 1096 1096 "@aws-sdk/util-uri-escape-3.55.0" = { ··· 1102 1102 sha512 = "mmdDLUpFCN2nkfwlLdOM54lTD528GiGSPN1qb8XtGLgZsJUmg3uJSFIN2lPeSbEwJB3NFjVas/rnQC48i7mV8w=="; 1103 1103 }; 1104 1104 }; 1105 - "@aws-sdk/util-user-agent-browser-3.58.0" = { 1105 + "@aws-sdk/util-user-agent-browser-3.78.0" = { 1106 1106 name = "_at_aws-sdk_slash_util-user-agent-browser"; 1107 1107 packageName = "@aws-sdk/util-user-agent-browser"; 1108 - version = "3.58.0"; 1108 + version = "3.78.0"; 1109 1109 src = fetchurl { 1110 - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.58.0.tgz"; 1111 - sha512 = "aJpqCvT09giJRg5xFTBDBRAVF0k0yq3OEf6UTuiOVf5azlL2MGp6PJ/xkJp9Z06PuQQkwBJ/2nIQZemo02a5Sw=="; 1110 + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.78.0.tgz"; 1111 + sha512 = "diGO/Bf4ggBOEnfD7lrrXaaXOwOXGz0bAJ0HhpizwEMlBld5zfDlWXjNpslh+8+u3EHRjPJQ16KGT6mp/Dm+aw=="; 1112 1112 }; 1113 1113 }; 1114 - "@aws-sdk/util-user-agent-node-3.58.0" = { 1114 + "@aws-sdk/util-user-agent-node-3.80.0" = { 1115 1115 name = "_at_aws-sdk_slash_util-user-agent-node"; 1116 1116 packageName = "@aws-sdk/util-user-agent-node"; 1117 - version = "3.58.0"; 1117 + version = "3.80.0"; 1118 1118 src = fetchurl { 1119 - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.58.0.tgz"; 1120 - sha512 = "VlbY/nzWdN2pfLUHqKvnlGBQ6tEeV4jyK9ggAD2Szjj0bkYvaaKwpBKswQmuJpi5/J2v7Bo4ayBLnqDL7PgzLA=="; 1119 + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.80.0.tgz"; 1120 + sha512 = "QV26qIXws1m6sZXg65NS+XrQ5NhAzbDVQLtEVE4nC39UN8fuieP6Uet/gZm9mlLI9hllwvcV7EfgBM3GSC7pZg=="; 1121 1121 }; 1122 1122 }; 1123 1123 "@aws-sdk/util-utf8-browser-3.55.0" = { ··· 1138 1138 sha512 = "FsFm7GFaC7j0tlPEm/ri8bU2QCwFW5WKjxUg8lm1oWaxplCpKGUsmcfPJ4sw58GIoyoGu4QXBK60oCWosZYYdQ=="; 1139 1139 }; 1140 1140 }; 1141 - "@aws-sdk/util-waiter-3.55.0" = { 1141 + "@aws-sdk/util-waiter-3.78.0" = { 1142 1142 name = "_at_aws-sdk_slash_util-waiter"; 1143 1143 packageName = "@aws-sdk/util-waiter"; 1144 - version = "3.55.0"; 1144 + version = "3.78.0"; 1145 1145 src = fetchurl { 1146 - url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.55.0.tgz"; 1147 - sha512 = "Do34MKPFSC/+zVN6vY+FZ+0WN61hzga4nPoAC590AOjs8rW6/H6sDN6Gz1KAZbPnuQUZfvsIJjMxN7lblXHJkQ=="; 1146 + url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.78.0.tgz"; 1147 + sha512 = "8pWd0XiNOS8AkWQyac8VNEI+gz/cGWlC2TAE2CJp0rOK5XhvlcNBINai4D6TxQ+9foyJXLOI1b8nuXemekoG8A=="; 1148 1148 }; 1149 1149 }; 1150 1150 "@aws-sdk/xml-builder-3.55.0" = { ··· 1174 1174 sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20"; 1175 1175 }; 1176 1176 }; 1177 - "@babel/cli-7.17.6" = { 1177 + "@babel/cli-7.17.10" = { 1178 1178 name = "_at_babel_slash_cli"; 1179 1179 packageName = "@babel/cli"; 1180 - version = "7.17.6"; 1180 + version = "7.17.10"; 1181 1181 src = fetchurl { 1182 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.17.6.tgz"; 1183 - sha512 = "l4w608nsDNlxZhiJ5tE3DbNmr61fIKMZ6fTBo171VEFuFMIYuJ3mHRhTLEkKKyvx2Mizkkv/0a8OJOnZqkKYNA=="; 1182 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.17.10.tgz"; 1183 + sha512 = "OygVO1M2J4yPMNOW9pb+I6kFGpQK77HmG44Oz3hg8xQIl5L/2zq+ZohwAdSaqYgVwM0SfmPHZHphH4wR8qzVYw=="; 1184 1184 }; 1185 1185 }; 1186 1186 "@babel/code-frame-7.10.4" = { ··· 1210 1210 sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; 1211 1211 }; 1212 1212 }; 1213 - "@babel/compat-data-7.17.7" = { 1213 + "@babel/compat-data-7.17.10" = { 1214 1214 name = "_at_babel_slash_compat-data"; 1215 1215 packageName = "@babel/compat-data"; 1216 - version = "7.17.7"; 1216 + version = "7.17.10"; 1217 1217 src = fetchurl { 1218 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.7.tgz"; 1219 - sha512 = "p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ=="; 1218 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.10.tgz"; 1219 + sha512 = "GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw=="; 1220 1220 }; 1221 1221 }; 1222 - "@babel/core-7.17.9" = { 1222 + "@babel/core-7.17.10" = { 1223 1223 name = "_at_babel_slash_core"; 1224 1224 packageName = "@babel/core"; 1225 - version = "7.17.9"; 1225 + version = "7.17.10"; 1226 1226 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz"; 1228 - sha512 = "5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw=="; 1227 + url = "https://registry.npmjs.org/@babel/core/-/core-7.17.10.tgz"; 1228 + sha512 = "liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA=="; 1229 1229 }; 1230 1230 }; 1231 1231 "@babel/core-7.9.0" = { ··· 1237 1237 sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w=="; 1238 1238 }; 1239 1239 }; 1240 - "@babel/generator-7.17.9" = { 1240 + "@babel/generator-7.17.10" = { 1241 1241 name = "_at_babel_slash_generator"; 1242 1242 packageName = "@babel/generator"; 1243 - version = "7.17.9"; 1243 + version = "7.17.10"; 1244 1244 src = fetchurl { 1245 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.9.tgz"; 1246 - sha512 = "rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ=="; 1245 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.10.tgz"; 1246 + sha512 = "46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg=="; 1247 1247 }; 1248 1248 }; 1249 1249 "@babel/helper-annotate-as-pure-7.16.7" = { ··· 1264 1264 sha512 = "C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA=="; 1265 1265 }; 1266 1266 }; 1267 - "@babel/helper-compilation-targets-7.17.7" = { 1267 + "@babel/helper-compilation-targets-7.17.10" = { 1268 1268 name = "_at_babel_slash_helper-compilation-targets"; 1269 1269 packageName = "@babel/helper-compilation-targets"; 1270 - version = "7.17.7"; 1270 + version = "7.17.10"; 1271 1271 src = fetchurl { 1272 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz"; 1273 - sha512 = "UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w=="; 1272 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz"; 1273 + sha512 = "gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ=="; 1274 1274 }; 1275 1275 }; 1276 1276 "@babel/helper-create-class-features-plugin-7.17.9" = { ··· 1471 1471 sha512 = "J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg=="; 1472 1472 }; 1473 1473 }; 1474 - "@babel/node-7.16.8" = { 1474 + "@babel/node-7.17.10" = { 1475 1475 name = "_at_babel_slash_node"; 1476 1476 packageName = "@babel/node"; 1477 - version = "7.16.8"; 1477 + version = "7.17.10"; 1478 1478 src = fetchurl { 1479 - url = "https://registry.npmjs.org/@babel/node/-/node-7.16.8.tgz"; 1480 - sha512 = "V2dopEtPUL4LD+e8UtMIZB6BbsmMsS/7E1ZAvWNINzBfi7Cf3X9MLCpzHVZT4HeeF1lQl72IRtqqVt2RUImwyA=="; 1479 + url = "https://registry.npmjs.org/@babel/node/-/node-7.17.10.tgz"; 1480 + sha512 = "sFFMyvw23U8QOcTnLJnw2/Myr01e4+iLVy7rHAHrNSnXAfnwS3j2NqihpmZm7TotyNKKf/y8cJ96T5asY46eyw=="; 1481 1481 }; 1482 1482 }; 1483 1483 "@babel/parser-7.16.2" = { ··· 1489 1489 sha512 = "RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw=="; 1490 1490 }; 1491 1491 }; 1492 - "@babel/parser-7.17.9" = { 1492 + "@babel/parser-7.17.10" = { 1493 1493 name = "_at_babel_slash_parser"; 1494 1494 packageName = "@babel/parser"; 1495 - version = "7.17.9"; 1495 + version = "7.17.10"; 1496 1496 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.9.tgz"; 1498 - sha512 = "vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg=="; 1497 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.10.tgz"; 1498 + sha512 = "n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ=="; 1499 1499 }; 1500 1500 }; 1501 1501 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" = { ··· 1840 1840 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 1841 1841 }; 1842 1842 }; 1843 - "@babel/plugin-syntax-typescript-7.16.7" = { 1843 + "@babel/plugin-syntax-typescript-7.17.10" = { 1844 1844 name = "_at_babel_slash_plugin-syntax-typescript"; 1845 1845 packageName = "@babel/plugin-syntax-typescript"; 1846 - version = "7.16.7"; 1846 + version = "7.17.10"; 1847 1847 src = fetchurl { 1848 - url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz"; 1849 - sha512 = "YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A=="; 1848 + url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.10.tgz"; 1849 + sha512 = "xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ=="; 1850 1850 }; 1851 1851 }; 1852 1852 "@babel/plugin-transform-arrow-functions-7.16.7" = { ··· 2020 2020 sha512 = "EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ=="; 2021 2021 }; 2022 2022 }; 2023 - "@babel/plugin-transform-named-capturing-groups-regex-7.16.8" = { 2023 + "@babel/plugin-transform-named-capturing-groups-regex-7.17.10" = { 2024 2024 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 2025 2025 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 2026 - version = "7.16.8"; 2026 + version = "7.17.10"; 2027 2027 src = fetchurl { 2028 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz"; 2029 - sha512 = "j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw=="; 2028 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.10.tgz"; 2029 + sha512 = "v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA=="; 2030 2030 }; 2031 2031 }; 2032 2032 "@babel/plugin-transform-new-target-7.16.7" = { ··· 2119 2119 sha512 = "KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg=="; 2120 2120 }; 2121 2121 }; 2122 - "@babel/plugin-transform-runtime-7.17.0" = { 2122 + "@babel/plugin-transform-runtime-7.17.10" = { 2123 2123 name = "_at_babel_slash_plugin-transform-runtime"; 2124 2124 packageName = "@babel/plugin-transform-runtime"; 2125 - version = "7.17.0"; 2125 + version = "7.17.10"; 2126 2126 src = fetchurl { 2127 - url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.0.tgz"; 2128 - sha512 = "fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A=="; 2127 + url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.10.tgz"; 2128 + sha512 = "6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig=="; 2129 2129 }; 2130 2130 }; 2131 2131 "@babel/plugin-transform-shorthand-properties-7.16.7" = { ··· 2200 2200 sha512 = "oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q=="; 2201 2201 }; 2202 2202 }; 2203 - "@babel/preset-env-7.16.11" = { 2203 + "@babel/preset-env-7.17.10" = { 2204 2204 name = "_at_babel_slash_preset-env"; 2205 2205 packageName = "@babel/preset-env"; 2206 - version = "7.16.11"; 2206 + version = "7.17.10"; 2207 2207 src = fetchurl { 2208 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz"; 2209 - sha512 = "qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g=="; 2208 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.17.10.tgz"; 2209 + sha512 = "YNgyBHZQpeoBSRBg0xixsZzfT58Ze1iZrajvv0lJc70qDDGuGfonEnMGfWeSY0mQ3JTuCWFbMkzFRVafOyJx4g=="; 2210 2210 }; 2211 2211 }; 2212 2212 "@babel/preset-flow-7.16.7" = { ··· 2317 2317 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 2318 2318 }; 2319 2319 }; 2320 - "@babel/traverse-7.17.9" = { 2320 + "@babel/traverse-7.17.10" = { 2321 2321 name = "_at_babel_slash_traverse"; 2322 2322 packageName = "@babel/traverse"; 2323 - version = "7.17.9"; 2323 + version = "7.17.10"; 2324 2324 src = fetchurl { 2325 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.9.tgz"; 2326 - sha512 = "PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw=="; 2325 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.10.tgz"; 2326 + sha512 = "VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw=="; 2327 2327 }; 2328 2328 }; 2329 2329 "@babel/types-7.16.0" = { ··· 2335 2335 sha512 = "PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg=="; 2336 2336 }; 2337 2337 }; 2338 - "@babel/types-7.17.0" = { 2338 + "@babel/types-7.17.10" = { 2339 2339 name = "_at_babel_slash_types"; 2340 2340 packageName = "@babel/types"; 2341 - version = "7.17.0"; 2341 + version = "7.17.10"; 2342 2342 src = fetchurl { 2343 - url = "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz"; 2344 - sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; 2343 + url = "https://registry.npmjs.org/@babel/types/-/types-7.17.10.tgz"; 2344 + sha512 = "9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A=="; 2345 2345 }; 2346 2346 }; 2347 - "@blueprintjs/colors-4.1.0" = { 2347 + "@blueprintjs/colors-4.1.1" = { 2348 2348 name = "_at_blueprintjs_slash_colors"; 2349 2349 packageName = "@blueprintjs/colors"; 2350 - version = "4.1.0"; 2350 + version = "4.1.1"; 2351 2351 src = fetchurl { 2352 - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.0.tgz"; 2353 - sha512 = "aXgkEBg2oEz6lCE/sidvREUzQF7eJq2R8BvfOcQ1ICV4r/KVFszee6seA12ZtVaphfvuR4EE/raH6F1d0f4y7g=="; 2352 + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.1.tgz"; 2353 + sha512 = "uA/TDvIOG/TJ+mDJNerFRK5WnUJlInbRshzHI5SbJXlaPXXIj5BMxAXB67izH0gjvSNj5cXy/9UIgTO2WCB7XA=="; 2354 2354 }; 2355 2355 }; 2356 2356 "@blueprintjs/core-3.54.0" = { ··· 2434 2434 sha512 = "mgmE7XBYY/21erpzhexk4Cj1cyTQ9LzvnTxtzM17BJ7ERMNE6W72mQRo0I1Ud8eFJ+RVVIcBNhLFZ3GX4XFz5w=="; 2435 2435 }; 2436 2436 }; 2437 - "@cdktf/hcl2cdk-0.10.2" = { 2437 + "@cdktf/hcl2cdk-0.10.3" = { 2438 2438 name = "_at_cdktf_slash_hcl2cdk"; 2439 2439 packageName = "@cdktf/hcl2cdk"; 2440 - version = "0.10.2"; 2440 + version = "0.10.3"; 2441 2441 src = fetchurl { 2442 - url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.10.2.tgz"; 2443 - sha512 = "F3M66Bw+ooAuVKNAPMM+HFlFugr82HRcYT7X9HO+bsi3yExmgirekfFRVD1lMXreQT2kwfahm3xaw5oxJdPJtQ=="; 2442 + url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.10.3.tgz"; 2443 + sha512 = "JM+fknoNa+w6HXMC6XinOToxiofxpCfwskIimR2OgHflEuyuAjN4hX21fgys4mRPQq9ItNm/PIyC1FtAvr3fvA=="; 2444 2444 }; 2445 2445 }; 2446 - "@cdktf/hcl2json-0.10.2" = { 2446 + "@cdktf/hcl2json-0.10.3" = { 2447 2447 name = "_at_cdktf_slash_hcl2json"; 2448 2448 packageName = "@cdktf/hcl2json"; 2449 - version = "0.10.2"; 2449 + version = "0.10.3"; 2450 2450 src = fetchurl { 2451 - url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.10.2.tgz"; 2452 - sha512 = "HZdkn4MtMoloiMQ1YRZVQumqJ0U1TrnErK9liUL59JKi25Zz9GETiN5FdiifpBD2a9p2nZhoMXRcuSjQI8Lk9g=="; 2451 + url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.10.3.tgz"; 2452 + sha512 = "kiiif6H/mFBRfg9SJOVSOyOFRl5r2OFHDIssp+1q4w1nlKwQHwFkGcrYrWsID9gvFNaLZepbWg6GbMqT7sPJZw=="; 2453 2453 }; 2454 2454 }; 2455 - "@cdktf/provider-generator-0.10.2" = { 2455 + "@cdktf/provider-generator-0.10.3" = { 2456 2456 name = "_at_cdktf_slash_provider-generator"; 2457 2457 packageName = "@cdktf/provider-generator"; 2458 - version = "0.10.2"; 2458 + version = "0.10.3"; 2459 2459 src = fetchurl { 2460 - url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.10.2.tgz"; 2461 - sha512 = "hIaxBDNq8u5IyIgAYYzOVh/29UeXlNdsUejThDrysc+uAoOBbnlPctIfUaASdeBooq62p6qsZbii83HIZemwYA=="; 2460 + url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.10.3.tgz"; 2461 + sha512 = "T8MLSXIZqO4ZmXuxrM7ySPaA9qsh3vUTBpxiOA6z24PoVKAhKQXZFUtyrmlSrHc0DoGibyYQqD2H4NQZ414oLw=="; 2462 2462 }; 2463 2463 }; 2464 2464 "@chemzqm/neovim-5.7.9" = { ··· 2542 2542 sha512 = "Yyio9bdHWmNDRlEJrxHKglamIk3d6hC0NkEUW6Ti6ipEh2g0BAhy8Od6t4vLhdZRa1I2n+gY13foy+tUgk0i1Q=="; 2543 2543 }; 2544 2544 }; 2545 - "@commitlint/is-ignored-16.2.1" = { 2545 + "@commitlint/is-ignored-16.2.4" = { 2546 2546 name = "_at_commitlint_slash_is-ignored"; 2547 2547 packageName = "@commitlint/is-ignored"; 2548 - version = "16.2.1"; 2548 + version = "16.2.4"; 2549 2549 src = fetchurl { 2550 - url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-16.2.1.tgz"; 2551 - sha512 = "exl8HRzTIfb1YvDJp2b2HU5z1BT+9tmgxR2XF0YEzkMiCIuEKh+XLeocPr1VcvAKXv3Cmv5X/OfNRp+i+/HIhQ=="; 2550 + url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-16.2.4.tgz"; 2551 + sha512 = "Lxdq9aOAYCOOOjKi58ulbwK/oBiiKz+7Sq0+/SpFIEFwhHkIVugvDvWjh2VRBXmRC/x5lNcjDcYEwS/uYUvlYQ=="; 2552 2552 }; 2553 2553 }; 2554 - "@commitlint/lint-16.2.1" = { 2554 + "@commitlint/lint-16.2.4" = { 2555 2555 name = "_at_commitlint_slash_lint"; 2556 2556 packageName = "@commitlint/lint"; 2557 - version = "16.2.1"; 2557 + version = "16.2.4"; 2558 2558 src = fetchurl { 2559 - url = "https://registry.npmjs.org/@commitlint/lint/-/lint-16.2.1.tgz"; 2560 - sha512 = "fNINQ3X2ZqsCkNB3Z0Z8ElmhewqrS3gy2wgBTx97BkcjOWiyPAGwDJ752hwrsUnWAVBRztgw826n37xPzxsOgg=="; 2559 + url = "https://registry.npmjs.org/@commitlint/lint/-/lint-16.2.4.tgz"; 2560 + sha512 = "AUDuwOxb2eGqsXbTMON3imUGkc1jRdtXrbbohiLSCSk3jFVXgJLTMaEcr39pR00N8nE9uZ+V2sYaiILByZVmxQ=="; 2561 2561 }; 2562 2562 }; 2563 - "@commitlint/load-16.2.3" = { 2563 + "@commitlint/load-16.2.4" = { 2564 2564 name = "_at_commitlint_slash_load"; 2565 2565 packageName = "@commitlint/load"; 2566 - version = "16.2.3"; 2566 + version = "16.2.4"; 2567 2567 src = fetchurl { 2568 - url = "https://registry.npmjs.org/@commitlint/load/-/load-16.2.3.tgz"; 2569 - sha512 = "Hb4OUlMnBUK6UxJEZ/VJ5k0LocIS7PtEMbRXEAA7eSpOgORIFexC4K/RaRpVd5UTtu3M0ST3ddPPijF9rdW6nw=="; 2568 + url = "https://registry.npmjs.org/@commitlint/load/-/load-16.2.4.tgz"; 2569 + sha512 = "HjANm3/29ROV+zt4yfaY/K6gpr9Dbzgtlp0kSwZGW0poDXlD/yqVYgPQ6JolJzZii5FUz5R4yVLC15hVL/w60w=="; 2570 2570 }; 2571 2571 }; 2572 2572 "@commitlint/message-16.2.1" = { ··· 2605 2605 sha512 = "NbbCMPKTFf2J805kwfP9EO+vV+XvnaHRcBy6ud5dF35dxMsvdJqke54W3XazXF1ZAxC4a3LBy4i/GNVBAthsEg=="; 2606 2606 }; 2607 2607 }; 2608 - "@commitlint/rules-16.2.1" = { 2608 + "@commitlint/rules-16.2.4" = { 2609 2609 name = "_at_commitlint_slash_rules"; 2610 2610 packageName = "@commitlint/rules"; 2611 - version = "16.2.1"; 2611 + version = "16.2.4"; 2612 2612 src = fetchurl { 2613 - url = "https://registry.npmjs.org/@commitlint/rules/-/rules-16.2.1.tgz"; 2614 - sha512 = "ZFezJXQaBBso+BOTre/+1dGCuCzlWVaeLiVRGypI53qVgPMzQqZhkCcrxBFeqB87qeyzr4A4EoG++IvITwwpIw=="; 2613 + url = "https://registry.npmjs.org/@commitlint/rules/-/rules-16.2.4.tgz"; 2614 + sha512 = "rK5rNBIN2ZQNQK+I6trRPK3dWa0MtaTN4xnwOma1qxa4d5wQMQJtScwTZjTJeallFxhOgbNOgr48AMHkdounVg=="; 2615 2615 }; 2616 2616 }; 2617 2617 "@commitlint/to-lines-16.2.1" = { ··· 2713 2713 sha512 = "ASIgI/LmV2TYrD4mtk+gm4XmUSTRomOyRt7NDWyBpEww/AeawC2O2NH6FosyUT6dUU3GaXt2wgJRN7R78n1SGg=="; 2714 2714 }; 2715 2715 }; 2716 - "@cspell/dict-companies-2.0.3" = { 2716 + "@cspell/dict-companies-2.0.4" = { 2717 2717 name = "_at_cspell_slash_dict-companies"; 2718 2718 packageName = "@cspell/dict-companies"; 2719 - version = "2.0.3"; 2719 + version = "2.0.4"; 2720 2720 src = fetchurl { 2721 - url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.3.tgz"; 2722 - sha512 = "O622rMAaHm85AmqNyMki5je8HB/1XlTKbGOXh2UUhooI5qdgdfrjTQ6VBuHwHrfEfuODBHYTNYXVB2m23XqHCg=="; 2721 + url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.4.tgz"; 2722 + sha512 = "nLNVddo+iu4q/Mu03nkVTMnSPxBkoLyZ0MgpHJZWCqxVATbBkzoZNNNjsTkJhvkbrUIWydf8YW4U4wYY+kyh7Q=="; 2723 2723 }; 2724 2724 }; 2725 2725 "@cspell/dict-cpp-2.0.3" = { ··· 2803 2803 sha512 = "tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g=="; 2804 2804 }; 2805 2805 }; 2806 - "@cspell/dict-en_us-2.2.0" = { 2806 + "@cspell/dict-en_us-2.2.1" = { 2807 2807 name = "_at_cspell_slash_dict-en_us"; 2808 2808 packageName = "@cspell/dict-en_us"; 2809 - version = "2.2.0"; 2809 + version = "2.2.1"; 2810 2810 src = fetchurl { 2811 - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.0.tgz"; 2812 - sha512 = "IJWu8MI2NdLyPzekrMi9K+v71b0qjDE+z/BccoMA/APnphqgSNM8BDUAzhio6mPKi1AvPRCNUjk79oiUfp+1Gw=="; 2811 + url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.1.tgz"; 2812 + sha512 = "tx6sJOCgfLRTiXxF5Jeheo0wnhc+nedmEx9IKnWMJFzOZ1J9gXmdjDBlZE/zG8g7tsH415yqqPBh6k5J9bupiA=="; 2813 2813 }; 2814 2814 }; 2815 2815 "@cspell/dict-filetypes-2.0.1" = { ··· 2920 2920 sha512 = "7WUEBEspSKtsq104WdIys1+DLqAxpJPzw74Py1TuE3fI5GvlzeSZkRFP2ya54GB2lCO4C3mq4M8EnitpibVDfw=="; 2921 2921 }; 2922 2922 }; 2923 - "@cspell/dict-node-2.0.0" = { 2923 + "@cspell/dict-node-2.0.1" = { 2924 2924 name = "_at_cspell_slash_dict-node"; 2925 2925 packageName = "@cspell/dict-node"; 2926 - version = "2.0.0"; 2926 + version = "2.0.1"; 2927 2927 src = fetchurl { 2928 - url = "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-2.0.0.tgz"; 2929 - sha512 = "tPPl3liJORa/l6AoYqh/7rjoM7bdtaIXnIN6ox7CE0flZcBS5rWOB6mzEY3rpu/XJX0pjbBiIoqrolDkVl1RTQ=="; 2928 + url = "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-2.0.1.tgz"; 2929 + sha512 = "ztBWzhvI+YaMehICSJ65cohhjQqoztxf9vrS3YckOiVGBFvUMaFVNdX9klQkvrLcS/O4+2PzoGeIEkmf99amLA=="; 2930 2930 }; 2931 2931 }; 2932 2932 "@cspell/dict-npm-2.0.2" = { ··· 3433 3433 sha512 = "QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA=="; 3434 3434 }; 3435 3435 }; 3436 - "@envelop/core-2.3.1" = { 3437 - name = "_at_envelop_slash_core"; 3438 - packageName = "@envelop/core"; 3439 - version = "2.3.1"; 3440 - src = fetchurl { 3441 - url = "https://registry.npmjs.org/@envelop/core/-/core-2.3.1.tgz"; 3442 - sha512 = "AnYUci7EGyA8flml881lDvVDl6n/u6GQpVIOTsZVO29d4/rPqSJ2KFguDD3mjDL406doTTLNuDI4ndxfJl6fmQ=="; 3443 - }; 3444 - }; 3445 - "@envelop/disable-introspection-3.3.1" = { 3446 - name = "_at_envelop_slash_disable-introspection"; 3447 - packageName = "@envelop/disable-introspection"; 3448 - version = "3.3.1"; 3449 - src = fetchurl { 3450 - url = "https://registry.npmjs.org/@envelop/disable-introspection/-/disable-introspection-3.3.1.tgz"; 3451 - sha512 = "THR8UnRQQB5nCLmITXvebwXwSHvFjS+ThA3RRVXpFX9EupMbTFN5a4NHty7+BYD798c3VrBZ/InbMlEWqw1c9g=="; 3452 - }; 3453 - }; 3454 - "@envelop/parser-cache-4.3.1" = { 3455 - name = "_at_envelop_slash_parser-cache"; 3456 - packageName = "@envelop/parser-cache"; 3457 - version = "4.3.1"; 3458 - src = fetchurl { 3459 - url = "https://registry.npmjs.org/@envelop/parser-cache/-/parser-cache-4.3.1.tgz"; 3460 - sha512 = "IqerCVjvVTiGvSZ8qSpdEc55hhiuekufJd0+ldWtyMPznhMaYOzpLifFUhjhhD7004eJM17n9vjJQFa7fIGz8Q=="; 3461 - }; 3462 - }; 3463 - "@envelop/types-2.2.0" = { 3464 - name = "_at_envelop_slash_types"; 3465 - packageName = "@envelop/types"; 3466 - version = "2.2.0"; 3467 - src = fetchurl { 3468 - url = "https://registry.npmjs.org/@envelop/types/-/types-2.2.0.tgz"; 3469 - sha512 = "Lghvfs0kh53G5mUKpCMlB/FhHh3O8SSR4hewB7JyE9hOEu/9h/6u+GHH/OEgdaRHky1Sae5Jf4grO+h21ka4ig=="; 3470 - }; 3471 - }; 3472 - "@envelop/validation-cache-4.3.1" = { 3473 - name = "_at_envelop_slash_validation-cache"; 3474 - packageName = "@envelop/validation-cache"; 3475 - version = "4.3.1"; 3476 - src = fetchurl { 3477 - url = "https://registry.npmjs.org/@envelop/validation-cache/-/validation-cache-4.3.1.tgz"; 3478 - sha512 = "lmtu9idhdWqbYkcFoFsL1ED4y38DLvj6EDEwE9tULXWuZm4WWmlNQAmKHAwB1d3kGVQAMtxM59crkOOJGRBgHQ=="; 3479 - }; 3480 - }; 3481 3436 "@eslint/eslintrc-0.4.3" = { 3482 3437 name = "_at_eslint_slash_eslintrc"; 3483 3438 packageName = "@eslint/eslintrc"; ··· 3487 3442 sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 3488 3443 }; 3489 3444 }; 3490 - "@eslint/eslintrc-1.2.1" = { 3445 + "@eslint/eslintrc-1.2.2" = { 3491 3446 name = "_at_eslint_slash_eslintrc"; 3492 3447 packageName = "@eslint/eslintrc"; 3493 - version = "1.2.1"; 3448 + version = "1.2.2"; 3494 3449 src = fetchurl { 3495 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.1.tgz"; 3496 - sha512 = "bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ=="; 3450 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.2.tgz"; 3451 + sha512 = "lTVWHs7O2hjBFZunXTZYnYqtB9GakA1lnxIf+gKq2nY5gxkkNi/lQvveW6t8gFdOHTg6nG50Xs95PrLqVpcaLg=="; 3497 3452 }; 3498 3453 }; 3499 3454 "@exodus/schemasafe-1.0.0-rc.6" = { ··· 3523 3478 sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="; 3524 3479 }; 3525 3480 }; 3526 - "@expo/config-6.0.20" = { 3481 + "@expo/config-6.0.23" = { 3527 3482 name = "_at_expo_slash_config"; 3528 3483 packageName = "@expo/config"; 3529 - version = "6.0.20"; 3484 + version = "6.0.23"; 3530 3485 src = fetchurl { 3531 - url = "https://registry.npmjs.org/@expo/config/-/config-6.0.20.tgz"; 3532 - sha512 = "m2T1/hB4TyLkQElOUwOajn/7gBcPaGyfVwoVsuJMEh0yrNvNFtXP+nl87Cm53g5q+VyfwJUgbewPQ3j/UXkI6Q=="; 3486 + url = "https://registry.npmjs.org/@expo/config/-/config-6.0.23.tgz"; 3487 + sha512 = "htanDTaSgtnBrVhAfjVsj8h/t95Kj4clR/nPCm8Puf8H2M7zW6XLV4XV4Pp1fvGZxzBSP+yod+7SBhwa44Q/jQ=="; 3533 3488 }; 3534 3489 }; 3535 - "@expo/config-plugins-4.1.1" = { 3490 + "@expo/config-plugins-4.1.4" = { 3536 3491 name = "_at_expo_slash_config-plugins"; 3537 3492 packageName = "@expo/config-plugins"; 3538 - version = "4.1.1"; 3493 + version = "4.1.4"; 3539 3494 src = fetchurl { 3540 - url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-4.1.1.tgz"; 3541 - sha512 = "lo3tVxRhwM9jfxPHJcURsH5WvU26kX12h5EB3C7kjVhgdQPLkvT8Jk8Cx0KSL8MXKcry2xQvZ2uuwWLkMeplJw=="; 3495 + url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-4.1.4.tgz"; 3496 + sha512 = "fkOjXnSieQfVSWVLKhst0DnCAyeHksvWky1CldFCQllhDB1HHBiP09Z8pamVB783n3qr/1HNZiSp6k2iUcaSoA=="; 3542 3497 }; 3543 3498 }; 3544 - "@expo/config-types-44.0.0" = { 3499 + "@expo/config-types-45.0.0" = { 3545 3500 name = "_at_expo_slash_config-types"; 3546 3501 packageName = "@expo/config-types"; 3547 - version = "44.0.0"; 3502 + version = "45.0.0"; 3548 3503 src = fetchurl { 3549 - url = "https://registry.npmjs.org/@expo/config-types/-/config-types-44.0.0.tgz"; 3550 - sha512 = "d+gpdKOAhqaD5RmcMzGgKzNtvE1w+GCqpFQNSXLliYlXjj+Tv0eL8EPeAdPtvke0vowpPFwd5McXLA90dgY6Jg=="; 3504 + url = "https://registry.npmjs.org/@expo/config-types/-/config-types-45.0.0.tgz"; 3505 + sha512 = "/QGhhLWyaGautgEyU50UJr5YqKJix5t77ePTwreOVAhmZH+ff3nrrtYTTnccx+qF08ZNQmfAyYMCD3rQfzpiJA=="; 3551 3506 }; 3552 3507 }; 3553 - "@expo/dev-server-0.1.107" = { 3508 + "@expo/dev-server-0.1.110" = { 3554 3509 name = "_at_expo_slash_dev-server"; 3555 3510 packageName = "@expo/dev-server"; 3556 - version = "0.1.107"; 3511 + version = "0.1.110"; 3557 3512 src = fetchurl { 3558 - url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.107.tgz"; 3559 - sha512 = "QL0phPimM/F/fX7tjdxfW8n7lkziHT0GxLFiw6gf4Qa3q6BND3xBrI0U2ZIjVZjQGGrVQUiQhdcfenQUNLHdZg=="; 3513 + url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.110.tgz"; 3514 + sha512 = "nWulXr4p69yCiR5rS9AmIuYzjIANEjGdGqyHms6vH0dBHYAESnTnlPaurSEi7CQebtXnAhi9srsJGko07wx5DA=="; 3560 3515 }; 3561 3516 }; 3562 - "@expo/dev-tools-0.13.148" = { 3517 + "@expo/dev-tools-0.13.152" = { 3563 3518 name = "_at_expo_slash_dev-tools"; 3564 3519 packageName = "@expo/dev-tools"; 3565 - version = "0.13.148"; 3520 + version = "0.13.152"; 3566 3521 src = fetchurl { 3567 - url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.148.tgz"; 3568 - sha512 = "bPZwm7HIjj4Fm9KeNaQGUKFiPGSj4X9LQuTaNFg1nQlJ9sXRGQ8Mct2V/Vyz5Hh3dQz+KVVSF4a3D8irVM0PPA=="; 3522 + url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.152.tgz"; 3523 + sha512 = "I8/VQ21tkoilOftxhdcThLMCTEYl/Wr7hlEWVGqXEc+9GfrT/nah04Q46yYNnGbeHkIOVPg/heMVqvTSZYa7hA=="; 3569 3524 }; 3570 3525 }; 3571 3526 "@expo/devcert-1.0.0" = { ··· 3577 3532 sha512 = "cahGyQCmpZmHpn2U04NR9KwsOIZy7Rhsw8Fg4q+A6563lIJxbkrgPnxq/O3NQAh3ohEvOXOOnoFx0b4yycCkpQ=="; 3578 3533 }; 3579 3534 }; 3580 - "@expo/image-utils-0.3.19" = { 3535 + "@expo/image-utils-0.3.20" = { 3581 3536 name = "_at_expo_slash_image-utils"; 3582 3537 packageName = "@expo/image-utils"; 3583 - version = "0.3.19"; 3538 + version = "0.3.20"; 3584 3539 src = fetchurl { 3585 - url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.19.tgz"; 3586 - sha512 = "mBuWWltyQpl4WF0bIBitfJXOsjB2MOapP+SR3ZnOZ8hOf/a0lzpju94kplK+wa/f80S9owkVu7NZ3wwu+UxljA=="; 3540 + url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.20.tgz"; 3541 + sha512 = "NgF/80XENyCS+amwC0P6uk1fauEtUq7gijD19jvl2xknJaADq8M2dMCRHwWMVOXosr2v46f3Z++G/NjmyOVS7A=="; 3587 3542 }; 3588 3543 }; 3589 - "@expo/json-file-8.2.35" = { 3544 + "@expo/json-file-8.2.36" = { 3590 3545 name = "_at_expo_slash_json-file"; 3591 3546 packageName = "@expo/json-file"; 3592 - version = "8.2.35"; 3547 + version = "8.2.36"; 3593 3548 src = fetchurl { 3594 - url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.35.tgz"; 3595 - sha512 = "cQFLGSNRRFbN9EIhVDpMCYuzXbrHUOmKEqitBR+nrU6surjKGsOsN9Ubyn/L/LAGlFvT293E4XY5zsOtJyiPZQ=="; 3549 + url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.36.tgz"; 3550 + sha512 = "tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ=="; 3596 3551 }; 3597 3552 }; 3598 - "@expo/metro-config-0.3.13" = { 3553 + "@expo/metro-config-0.3.16" = { 3599 3554 name = "_at_expo_slash_metro-config"; 3600 3555 packageName = "@expo/metro-config"; 3601 - version = "0.3.13"; 3556 + version = "0.3.16"; 3602 3557 src = fetchurl { 3603 - url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.3.13.tgz"; 3604 - sha512 = "SBsCKQdSPGc9GpyYKbDkbnknklnv+dhBX5rTRf9im+bxzj/4w0bKeq2+7AE28QWaTfDXyZqwwkbMjmFbzXeSHA=="; 3558 + url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.3.16.tgz"; 3559 + sha512 = "rMYYpJibi1M8p9jGyU9f4lSNKZC6NSWzfEJsX8yd8gFbMBZV41DqyNzkrl1bx90DzYoLKB8kEPhkDdCJ8bGd/A=="; 3605 3560 }; 3606 3561 }; 3607 - "@expo/osascript-2.0.32" = { 3562 + "@expo/osascript-2.0.33" = { 3608 3563 name = "_at_expo_slash_osascript"; 3609 3564 packageName = "@expo/osascript"; 3610 - version = "2.0.32"; 3565 + version = "2.0.33"; 3611 3566 src = fetchurl { 3612 - url = "https://registry.npmjs.org/@expo/osascript/-/osascript-2.0.32.tgz"; 3613 - sha512 = "yH95/CwLJzhrzIl0EaDNbK3MevHFzCGM89k/2F3ppltRqhPzu8Vt/8onE3yZPEABluoiTVX79AWPogS35iIRhA=="; 3567 + url = "https://registry.npmjs.org/@expo/osascript/-/osascript-2.0.33.tgz"; 3568 + sha512 = "FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ=="; 3614 3569 }; 3615 3570 }; 3616 - "@expo/package-manager-0.0.51" = { 3571 + "@expo/package-manager-0.0.53" = { 3617 3572 name = "_at_expo_slash_package-manager"; 3618 3573 packageName = "@expo/package-manager"; 3619 - version = "0.0.51"; 3574 + version = "0.0.53"; 3620 3575 src = fetchurl { 3621 - url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.51.tgz"; 3622 - sha512 = "Is/HZYb1GiJ/5VLd02sbUopcdBxnI2PCxNCHp/0r0oC4VcZPUvwcVp3avIBFqaCO0u/MP8JvGPyjq0qHUNZhng=="; 3576 + url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.53.tgz"; 3577 + sha512 = "Kg4ZWCuNCBqy6aznNGdD8rt3wSlTIHujfx+yfdm0Ewtq7uLhiyzKoMyh3RV331BdLu2YOSZpozNm2YZ/K/B0CQ=="; 3623 3578 }; 3624 3579 }; 3625 3580 "@expo/plist-0.0.18" = { ··· 3631 3586 sha512 = "+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w=="; 3632 3587 }; 3633 3588 }; 3634 - "@expo/prebuild-config-3.1.1" = { 3589 + "@expo/prebuild-config-4.0.0" = { 3635 3590 name = "_at_expo_slash_prebuild-config"; 3636 3591 packageName = "@expo/prebuild-config"; 3637 - version = "3.1.1"; 3592 + version = "4.0.0"; 3638 3593 src = fetchurl { 3639 - url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-3.1.1.tgz"; 3640 - sha512 = "7COQ0ZjJof7f4w9kBYlvxg8ulCHJKlA4hqZuQQVAoG83gC+j6Hkbi7cbWOHcAEO/FjwFhNzas5l6P5c3wWj5eg=="; 3594 + url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-4.0.0.tgz"; 3595 + sha512 = "h+4tdP94ihzp9Zz6o+k+W+RLNKQ0Lfxu1bUSLsE8u1bFTU0AWSF5sTC3yhG3ABgi+9W9DlwPMwoDGNX12bL3LA=="; 3641 3596 }; 3642 3597 }; 3643 3598 "@expo/rudder-sdk-node-1.1.1" = { ··· 3649 3604 sha512 = "uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ=="; 3650 3605 }; 3651 3606 }; 3652 - "@expo/schemer-1.4.0" = { 3607 + "@expo/schemer-1.4.1" = { 3653 3608 name = "_at_expo_slash_schemer"; 3654 3609 packageName = "@expo/schemer"; 3655 - version = "1.4.0"; 3610 + version = "1.4.1"; 3656 3611 src = fetchurl { 3657 - url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.4.0.tgz"; 3658 - sha512 = "HSFwpcS/gYdkV2mj7cXnZKVCHInWimaBIg81On9DKGmwwTqgGFKwYFOcpoTL3dK2K8VbV2qNH9VRaj68jq81Bw=="; 3612 + url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.4.1.tgz"; 3613 + sha512 = "dW5xz/8TfXcHtlH8q4nZxN/Ru9DyUtsTx6Sl6tb7FByvYvqHKBPz0g/uIMkZBSIppPRvdgEUp9LpYkBR2tx48Q=="; 3659 3614 }; 3660 3615 }; 3661 3616 "@expo/sdk-runtime-versions-1.0.0" = { ··· 3676 3631 sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew=="; 3677 3632 }; 3678 3633 }; 3679 - "@expo/webpack-config-0.16.20" = { 3634 + "@expo/webpack-config-0.16.23" = { 3680 3635 name = "_at_expo_slash_webpack-config"; 3681 3636 packageName = "@expo/webpack-config"; 3682 - version = "0.16.20"; 3637 + version = "0.16.23"; 3683 3638 src = fetchurl { 3684 - url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.16.20.tgz"; 3685 - sha512 = "aj83vpceXfzAVNKYMVqP+j5C/ByaZbKdR6un0swt6axsPe+Qu8gflAtOJy8LhLUGaiijX51oLncj2jKhCTrGPg=="; 3639 + url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.16.23.tgz"; 3640 + sha512 = "HwFvBMtikal8s2mwf3veE8TReVOhkuMXX7HOBhRq8BSbq7RPnVzh6r8tVJVrIaWfqRn3s85GFvzU0YjqcvvHLA=="; 3686 3641 }; 3687 3642 }; 3688 3643 "@expo/xcpretty-4.1.1" = { ··· 3775 3730 sha512 = "jzTyqhockpunkFKbEK+8sBP2cbgLllcmcWdTkCrxb+8CxLXD5bMWGMgUiI99Xz7+G/01QBMgAHOngKC05dVS7A=="; 3776 3731 }; 3777 3732 }; 3778 - "@fluentui/react-8.66.1" = { 3733 + "@fluentui/react-8.67.2" = { 3779 3734 name = "_at_fluentui_slash_react"; 3780 3735 packageName = "@fluentui/react"; 3781 - version = "8.66.1"; 3736 + version = "8.67.2"; 3782 3737 src = fetchurl { 3783 - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.66.1.tgz"; 3784 - sha512 = "fhO7paR6Lo484VwvNYOkkwzO/Fkx+Wmqh6Z/1kYmbRggxs//hUQbnlT36U1ZJLUTuj5AXgRpMUlMvw30x8u5Rw=="; 3738 + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.67.2.tgz"; 3739 + sha512 = "QzDa4gXcVacBsUfXKRQV+tL7NwBJZpzgJU/lRlI4zjeC9pqiBxh6ZmxtHu0XXXIKFXa0DyesgnAKBbyqGsENmw=="; 3785 3740 }; 3786 3741 }; 3787 3742 "@fluentui/react-focus-8.5.7" = { ··· 3919 3874 sha512 = "j8yRSSqswWi1QqUGKVEKOG03Q7qOoZP6/h2zN2YO+F5h2+DHU0bSrHCK9Y7lo2DI9fBd8qGAw795sf+3Jva4yA=="; 3920 3875 }; 3921 3876 }; 3922 - "@google-cloud/pubsub-2.19.0" = { 3877 + "@google-cloud/pubsub-2.19.3" = { 3923 3878 name = "_at_google-cloud_slash_pubsub"; 3924 3879 packageName = "@google-cloud/pubsub"; 3925 - version = "2.19.0"; 3880 + version = "2.19.3"; 3926 3881 src = fetchurl { 3927 - url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.19.0.tgz"; 3928 - sha512 = "aNgaS7zI6MkE4hrhmxrGiyFZHPvb0BW1djk0D5RoKDwPb8GTuYBfu8w/3twTvaf+HiM7NchvPtdFRbiETIaadw=="; 3882 + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.19.3.tgz"; 3883 + sha512 = "VUP+4vaKPrgy/9YzZHfZgR+9jnmmZe6ZwkWS8xVq5B5DdSJAYAEjKWuYcY9MQo9sNeyVAQCzTV6zzaS57vya0g=="; 3929 3884 }; 3930 3885 }; 3931 - "@grammyjs/types-2.7.0" = { 3886 + "@grammyjs/types-2.7.1" = { 3932 3887 name = "_at_grammyjs_slash_types"; 3933 3888 packageName = "@grammyjs/types"; 3934 - version = "2.7.0"; 3889 + version = "2.7.1"; 3935 3890 src = fetchurl { 3936 - url = "https://registry.npmjs.org/@grammyjs/types/-/types-2.7.0.tgz"; 3937 - sha512 = "XgncCsNRwly8J+2d50dV2E4jAawtNxCfKaFjV+ynXC/vmyVFO6hsZYtXFP1CGDUD/QmSG2agP9dYWxsgRjZuHA=="; 3891 + url = "https://registry.npmjs.org/@grammyjs/types/-/types-2.7.1.tgz"; 3892 + sha512 = "6U6yeEXueDX82tf2JmCBo+MRpH6xMW3hieZS30LFfSiBonqOlQUVbwtIwqC47KZn28oD9eccORCj0dugmu5uAg=="; 3938 3893 }; 3939 3894 }; 3940 3895 "@graphql-cli/common-4.1.0" = { ··· 4099 4054 sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; 4100 4055 }; 4101 4056 }; 4102 - "@graphql-tools/url-loader-7.9.14" = { 4057 + "@graphql-tools/url-loader-7.9.17" = { 4103 4058 name = "_at_graphql-tools_slash_url-loader"; 4104 4059 packageName = "@graphql-tools/url-loader"; 4105 - version = "7.9.14"; 4060 + version = "7.9.17"; 4106 4061 src = fetchurl { 4107 - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.14.tgz"; 4108 - sha512 = "7IXiqUYp0cHeM+qvgjM4jAq8uJhl3PDdQYkyIj5wzZ7XjrkdV3JjPt0cHj2IBIeEwQJOjEKNeFYXjOlg73guCQ=="; 4062 + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.17.tgz"; 4063 + sha512 = "tnzjx5qf81/4qjMkFSMVWKMG1/Avqlqh2GRDK0JTPZgZpHDTr9Xy3Hs+FLzhrfm5X7ILihug0jDwf8nBiymFSA=="; 4109 4064 }; 4110 4065 }; 4111 4066 "@graphql-tools/utils-6.2.4" = { ··· 4162 4117 sha512 = "b3yz7uN0en44sBEv/fAEQIqdiCEM/gQJSaLyA7Z2hWJwM0gQ5kiq0XMwKvyUAIY8NGig7IywC7bbup5Jc2F35Q=="; 4163 4118 }; 4164 4119 }; 4165 - "@graphql-typed-document-node/core-3.1.1" = { 4166 - name = "_at_graphql-typed-document-node_slash_core"; 4167 - packageName = "@graphql-typed-document-node/core"; 4168 - version = "3.1.1"; 4169 - src = fetchurl { 4170 - url = "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz"; 4171 - sha512 = "NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg=="; 4172 - }; 4173 - }; 4174 - "@graphql-yoga/common-2.3.0" = { 4175 - name = "_at_graphql-yoga_slash_common"; 4176 - packageName = "@graphql-yoga/common"; 4177 - version = "2.3.0"; 4178 - src = fetchurl { 4179 - url = "https://registry.npmjs.org/@graphql-yoga/common/-/common-2.3.0.tgz"; 4180 - sha512 = "EPKK97953c8E1FiaLHMMGqLKtoAN5H9qHr0AiAzMlruJHn0JcbMf2qFTUXklCsuk6UEwNtxeHX42zim11O/E1g=="; 4181 - }; 4182 - }; 4183 - "@graphql-yoga/node-2.3.0" = { 4184 - name = "_at_graphql-yoga_slash_node"; 4185 - packageName = "@graphql-yoga/node"; 4186 - version = "2.3.0"; 4187 - src = fetchurl { 4188 - url = "https://registry.npmjs.org/@graphql-yoga/node/-/node-2.3.0.tgz"; 4189 - sha512 = "uofEmKIDYthJuCcdhbgU0VW5i2cCqZVKIiEW/xbwvCOBJt439k46D+M6youiQYJ1miaA/m0btbuZ1sAo/TLjdQ=="; 4190 - }; 4191 - }; 4192 - "@graphql-yoga/subscription-2.0.0" = { 4193 - name = "_at_graphql-yoga_slash_subscription"; 4194 - packageName = "@graphql-yoga/subscription"; 4195 - version = "2.0.0"; 4196 - src = fetchurl { 4197 - url = "https://registry.npmjs.org/@graphql-yoga/subscription/-/subscription-2.0.0.tgz"; 4198 - sha512 = "HlG+gIddjIP3/BDrMZymdzmzDjNdYuSGMxx6+1JA83gAEVRDR4yOoT4QeNKYqRhLK9xca/Hxp1PfBpquSa244Q=="; 4199 - }; 4200 - }; 4201 - "@grpc/grpc-js-1.5.10" = { 4202 - name = "_at_grpc_slash_grpc-js"; 4203 - packageName = "@grpc/grpc-js"; 4204 - version = "1.5.10"; 4205 - src = fetchurl { 4206 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.5.10.tgz"; 4207 - sha512 = "++oAubX/7rJzlqH0ShyzDENNNDHYrlttdc3NM40KlaVQDcgGqQknuPoavmyTC+oNUDyxPCX5dHceKhfcgN3tiw=="; 4208 - }; 4209 - }; 4210 4120 "@grpc/grpc-js-1.5.7" = { 4211 4121 name = "_at_grpc_slash_grpc-js"; 4212 4122 packageName = "@grpc/grpc-js"; ··· 4243 4153 sha512 = "Jqq8t3ylPLPK4XXnYPj2uuESirRCAaQ0//GxRLPK6Xq2TBHb2DlmSzJUh15a6R4uUIjBwA8wI69JuKleZXz4jQ=="; 4244 4154 }; 4245 4155 }; 4246 - "@grpc/grpc-js-1.6.6" = { 4156 + "@grpc/grpc-js-1.6.7" = { 4247 4157 name = "_at_grpc_slash_grpc-js"; 4248 4158 packageName = "@grpc/grpc-js"; 4249 - version = "1.6.6"; 4159 + version = "1.6.7"; 4250 4160 src = fetchurl { 4251 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.6.tgz"; 4252 - sha512 = "gEMn1+d01yO/QNHsDOPHxJYtA6QItbdQT4mGFS8Gt5IQCq+83OEsD0sbvPf3RLCtHy1HI412JgQPr5HM9QK0mw=="; 4161 + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.7.tgz"; 4162 + sha512 = "eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw=="; 4253 4163 }; 4254 4164 }; 4255 4165 "@grpc/proto-loader-0.6.9" = { ··· 4315 4225 sha512 = "yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow=="; 4316 4226 }; 4317 4227 }; 4318 - "@hapi/hoek-9.2.1" = { 4228 + "@hapi/hoek-9.3.0" = { 4319 4229 name = "_at_hapi_slash_hoek"; 4320 4230 packageName = "@hapi/hoek"; 4321 - version = "9.2.1"; 4231 + version = "9.3.0"; 4322 4232 src = fetchurl { 4323 - url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.1.tgz"; 4324 - sha512 = "gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw=="; 4233 + url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz"; 4234 + sha512 = "/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="; 4325 4235 }; 4326 4236 }; 4327 4237 "@hapi/joi-15.1.1" = { ··· 4666 4576 sha512 = "OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw=="; 4667 4577 }; 4668 4578 }; 4669 - "@jest/types-26.6.2" = { 4670 - name = "_at_jest_slash_types"; 4671 - packageName = "@jest/types"; 4672 - version = "26.6.2"; 4673 - src = fetchurl { 4674 - url = "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz"; 4675 - sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; 4676 - }; 4677 - }; 4678 4579 "@jest/types-27.5.1" = { 4679 4580 name = "_at_jest_slash_types"; 4680 4581 packageName = "@jest/types"; ··· 4756 4657 sha512 = "CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg=="; 4757 4658 }; 4758 4659 }; 4759 - "@jridgewell/resolve-uri-3.0.5" = { 4660 + "@jridgewell/gen-mapping-0.1.1" = { 4661 + name = "_at_jridgewell_slash_gen-mapping"; 4662 + packageName = "@jridgewell/gen-mapping"; 4663 + version = "0.1.1"; 4664 + src = fetchurl { 4665 + url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"; 4666 + sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="; 4667 + }; 4668 + }; 4669 + "@jridgewell/resolve-uri-3.0.6" = { 4760 4670 name = "_at_jridgewell_slash_resolve-uri"; 4761 4671 packageName = "@jridgewell/resolve-uri"; 4762 - version = "3.0.5"; 4672 + version = "3.0.6"; 4763 4673 src = fetchurl { 4764 - url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz"; 4765 - sha512 = "VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew=="; 4674 + url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.6.tgz"; 4675 + sha512 = "R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw=="; 4676 + }; 4677 + }; 4678 + "@jridgewell/set-array-1.1.0" = { 4679 + name = "_at_jridgewell_slash_set-array"; 4680 + packageName = "@jridgewell/set-array"; 4681 + version = "1.1.0"; 4682 + src = fetchurl { 4683 + url = "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.0.tgz"; 4684 + sha512 = "SfJxIxNVYLTsKwzB3MoOQ1yxf4w/E6MdkvTgrgAt1bfxjSrLUoHMKrDOykwN14q65waezZIdqDneUIPh4/sKxg=="; 4766 4685 }; 4767 4686 }; 4768 4687 "@jridgewell/sourcemap-codec-1.4.11" = { ··· 4774 4693 sha512 = "Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg=="; 4775 4694 }; 4776 4695 }; 4777 - "@jridgewell/trace-mapping-0.3.8" = { 4696 + "@jridgewell/trace-mapping-0.3.9" = { 4778 4697 name = "_at_jridgewell_slash_trace-mapping"; 4779 4698 packageName = "@jridgewell/trace-mapping"; 4780 - version = "0.3.8"; 4699 + version = "0.3.9"; 4781 4700 src = fetchurl { 4782 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.8.tgz"; 4783 - sha512 = "zdpaWDz5IEyHlu1EO+B+qRHmJkSxMVV6SXngDry9n1ZqslLXFH9Dw6lRqDidm/sOJAWdRltJsmZ1SK28/uZKsw=="; 4701 + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz"; 4702 + sha512 = "3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="; 4784 4703 }; 4785 4704 }; 4786 4705 "@jsdevtools/ono-7.1.3" = { ··· 5512 5431 sha512 = "XRG5BloiArpXRakcnPHmEHJp+4AtnhRtpDIHSghmXD5EichI1uD73J7FgPp30mm2pDRq3FdqB0NbwSEsJ9xFQg=="; 5513 5432 }; 5514 5433 }; 5434 + "@lezer/common-0.15.12" = { 5435 + name = "_at_lezer_slash_common"; 5436 + packageName = "@lezer/common"; 5437 + version = "0.15.12"; 5438 + src = fetchurl { 5439 + url = "https://registry.npmjs.org/@lezer/common/-/common-0.15.12.tgz"; 5440 + sha512 = "edfwCxNLnzq5pBA/yaIhwJ3U3Kz8VAUOTRg0hhxaizaI1N+qxV7EXDv/kLCkLeq2RzSFvxexlaj5Mzfn2kY0Ig=="; 5441 + }; 5442 + }; 5443 + "@lezer/lr-0.15.8" = { 5444 + name = "_at_lezer_slash_lr"; 5445 + packageName = "@lezer/lr"; 5446 + version = "0.15.8"; 5447 + src = fetchurl { 5448 + url = "https://registry.npmjs.org/@lezer/lr/-/lr-0.15.8.tgz"; 5449 + sha512 = "bM6oE6VQZ6hIFxDNKk8bKPa14hqFrV07J/vHGOeiAbJReIaQXmkVb6xQu4MR+JBTLa5arGRyAAjJe1qaQt3Uvg=="; 5450 + }; 5451 + }; 5515 5452 "@librescore/fonts-0.4.1" = { 5516 5453 name = "_at_librescore_slash_fonts"; 5517 5454 packageName = "@librescore/fonts"; ··· 5872 5809 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 5873 5810 }; 5874 5811 }; 5875 - "@microsoft/load-themed-styles-1.10.258" = { 5812 + "@microsoft/load-themed-styles-1.10.260" = { 5876 5813 name = "_at_microsoft_slash_load-themed-styles"; 5877 5814 packageName = "@microsoft/load-themed-styles"; 5878 - version = "1.10.258"; 5815 + version = "1.10.260"; 5879 5816 src = fetchurl { 5880 - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.258.tgz"; 5881 - sha512 = "MUJGLLztVKuL7cvQcErURsqDF1XW3XR8FKJDgoxZ1g55C7k28TNZ3DkLSVLI/Z3arCB5ZbYQBx5pXAXlyKXtEA=="; 5817 + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.260.tgz"; 5818 + sha512 = "fW6YvdNMrMVQ6LY8Ckl72dtUDdxY/wxgq8o9UKSoC+3sCN2vaSxB6rlmxaSCaR79BWVaxl6oIeQKKDX3UbPg5Q=="; 5819 + }; 5820 + }; 5821 + "@mischnic/json-sourcemap-0.1.0" = { 5822 + name = "_at_mischnic_slash_json-sourcemap"; 5823 + packageName = "@mischnic/json-sourcemap"; 5824 + version = "0.1.0"; 5825 + src = fetchurl { 5826 + url = "https://registry.npmjs.org/@mischnic/json-sourcemap/-/json-sourcemap-0.1.0.tgz"; 5827 + sha512 = "dQb3QnfNqmQNYA4nFSN/uLaByIic58gOXq4Y4XqLOWmOrw73KmJPt/HLyG0wvn1bnR6mBKs/Uwvkh+Hns1T0XA=="; 5882 5828 }; 5883 5829 }; 5884 5830 "@mitmaro/errors-1.0.0" = { ··· 6241 6187 sha512 = "9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw=="; 6242 6188 }; 6243 6189 }; 6244 - "@npmcli/map-workspaces-2.0.2" = { 6190 + "@npmcli/map-workspaces-2.0.3" = { 6245 6191 name = "_at_npmcli_slash_map-workspaces"; 6246 6192 packageName = "@npmcli/map-workspaces"; 6247 - version = "2.0.2"; 6193 + version = "2.0.3"; 6248 6194 src = fetchurl { 6249 - url = "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-2.0.2.tgz"; 6250 - sha512 = "ED54EslGsHFWBPN5x8JAOszuWywuoXYSi9E3HQRsgVkWnqsdTBJDSM4IFMRwmmBUbCHAxmP3wGLu1WMm4fhrOw=="; 6195 + url = "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-2.0.3.tgz"; 6196 + sha512 = "X6suAun5QyupNM8iHkNPh0AHdRC2rb1W+MTdMvvA/2ixgmqZwlq5cGUBgmKHUHT2LgrkKJMAXbfAoTxOigpK8Q=="; 6251 6197 }; 6252 6198 }; 6253 6199 "@npmcli/metavuln-calculator-2.0.0" = { ··· 6682 6628 sha512 = "hf+3bwuBwtXsugA2ULBc95qxrOqP2pOekLz34BJhcAKawt94vfeNyUKpYc0lZQ/3sCP6LqRa7UAdHA7i5UODzQ=="; 6683 6629 }; 6684 6630 }; 6685 - "@opentelemetry/semantic-conventions-1.1.1" = { 6631 + "@opentelemetry/semantic-conventions-1.2.0" = { 6686 6632 name = "_at_opentelemetry_slash_semantic-conventions"; 6687 6633 packageName = "@opentelemetry/semantic-conventions"; 6688 - version = "1.1.1"; 6634 + version = "1.2.0"; 6689 6635 src = fetchurl { 6690 - url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.1.1.tgz"; 6691 - sha512 = "GdTwDHSaZ6iP5LUdvS/SLUjn3067xn1HcBsLZCh8YOsf22d/YWTBcnFl3buieBP4KiajwHLho4I8HSMDKACBSg=="; 6636 + url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.2.0.tgz"; 6637 + sha512 = "BNKB9fiYVghALJzCuWO3eNYfdTExPVK4ykrtmfNfy0A6UWYhOYjGMXifUmkunDJNL8ju9tBobo8jF0WR9zGy1Q=="; 6692 6638 }; 6693 6639 }; 6694 - "@ot-builder/bin-composite-types-1.5.1" = { 6640 + "@ot-builder/bin-composite-types-1.5.2" = { 6695 6641 name = "_at_ot-builder_slash_bin-composite-types"; 6696 6642 packageName = "@ot-builder/bin-composite-types"; 6697 - version = "1.5.1"; 6643 + version = "1.5.2"; 6698 6644 src = fetchurl { 6699 - url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.5.1.tgz"; 6700 - sha512 = "ocwr19PbiqbZ6X64IhTzZzXvYxrGBUQHSN3Ii1RAPbZ8McHlNX4LtUbxAE1P3MnXOWtlZO4YUr4hHOZY2c6/7A=="; 6645 + url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.5.2.tgz"; 6646 + sha512 = "l3mLi4cZ1GrEHT9xSgYIPgJXRiMGubtOPL9QJ0ZMm24Ss1TlNXiIW4AOfp/+8H0NOv7JVrb06toWf4tEb4B1+g=="; 6701 6647 }; 6702 6648 }; 6703 - "@ot-builder/bin-util-1.5.1" = { 6649 + "@ot-builder/bin-util-1.5.2" = { 6704 6650 name = "_at_ot-builder_slash_bin-util"; 6705 6651 packageName = "@ot-builder/bin-util"; 6706 - version = "1.5.1"; 6652 + version = "1.5.2"; 6707 6653 src = fetchurl { 6708 - url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.5.1.tgz"; 6709 - sha512 = "uYz/dEE723loQiNIoRifnY8TWOdheuorCojIoTtZa3CIiAzfjpkVpHXpoSrDpO0Syep0tfq8pgDf/vm0fv0Mnw=="; 6654 + url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.5.2.tgz"; 6655 + sha512 = "OMchvRddJ0ZnYw09OdFLu29YrHTXFbAxcxErHy4s3UujqZhpUzTY3o+brLnKLh60oXQdOHTT+wJDy+D89DWOYw=="; 6710 6656 }; 6711 6657 }; 6712 - "@ot-builder/cli-help-shower-1.5.1" = { 6658 + "@ot-builder/cli-help-shower-1.5.2" = { 6713 6659 name = "_at_ot-builder_slash_cli-help-shower"; 6714 6660 packageName = "@ot-builder/cli-help-shower"; 6715 - version = "1.5.1"; 6661 + version = "1.5.2"; 6716 6662 src = fetchurl { 6717 - url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.5.1.tgz"; 6718 - sha512 = "xSeyQV/muAqr0ZMZprdAAz+4fq3C8j1AOPqjv0jWeyUcDTGHR1Itvf1iigL7+LB9nIn3bZXKFLBiUUQx2Lmhig=="; 6663 + url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.5.2.tgz"; 6664 + sha512 = "opcpqXh5RxHc/lB/mIxIA8amPugXgJHym5q3Jb3uZT1DOhhORRAs0NAgNAswKHHPvTyOUIu3mYYuV2KA093K4A=="; 6719 6665 }; 6720 6666 }; 6721 - "@ot-builder/cli-proc-1.5.1" = { 6667 + "@ot-builder/cli-proc-1.5.2" = { 6722 6668 name = "_at_ot-builder_slash_cli-proc"; 6723 6669 packageName = "@ot-builder/cli-proc"; 6724 - version = "1.5.1"; 6670 + version = "1.5.2"; 6725 6671 src = fetchurl { 6726 - url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.5.1.tgz"; 6727 - sha512 = "/uUtJIOHiUzfFeWMQFF9CNg93+cZc9DIbPb7fIS3yucWSpaKP2cXjwZ9LeHDxkbtIMLwfr9W/ktRk/DlKERPJw=="; 6672 + url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.5.2.tgz"; 6673 + sha512 = "bPg6dpEmeTsTaU7Az6G2fLgk7jBP8gQ/WaX0at1w4poOGUSo/UTFZ9EDmh0Y6gxLo9Mf45gbeA9vUmXiUczi/g=="; 6728 6674 }; 6729 6675 }; 6730 - "@ot-builder/cli-shared-1.5.1" = { 6676 + "@ot-builder/cli-shared-1.5.2" = { 6731 6677 name = "_at_ot-builder_slash_cli-shared"; 6732 6678 packageName = "@ot-builder/cli-shared"; 6733 - version = "1.5.1"; 6679 + version = "1.5.2"; 6734 6680 src = fetchurl { 6735 - url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.5.1.tgz"; 6736 - sha512 = "FbFIQ5lWNobNR7Sg4TDevNpEGn03Com+5+OfLLUToHhXoTuGmJDfrHeQ7KG7bFs4pnCNDDavM1Dn34v/U5zmbA=="; 6681 + url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.5.2.tgz"; 6682 + sha512 = "rTDHUqNGiEyAW0sRQ6etO3prUuNOr/00n9mpwnmENnisA/RwyY0BW+z5zGc8iD2tJunU6/LibOBubppV6PNTGQ=="; 6737 6683 }; 6738 6684 }; 6739 - "@ot-builder/common-impl-1.5.1" = { 6685 + "@ot-builder/common-impl-1.5.2" = { 6740 6686 name = "_at_ot-builder_slash_common-impl"; 6741 6687 packageName = "@ot-builder/common-impl"; 6742 - version = "1.5.1"; 6688 + version = "1.5.2"; 6743 6689 src = fetchurl { 6744 - url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.5.1.tgz"; 6745 - sha512 = "5cBzUheN3hOn0Di47FXW83PN6/ggcIBo3g5jIEP0UiYFXnUkO9YLzdQWEz5dLa0cUVkaotfwS7XYbaiBOmW57g=="; 6690 + url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.5.2.tgz"; 6691 + sha512 = "3cXrL176gm4PF/VYsc0A0VMvdddXTqjsPAMqSrYnp79lStGy17TxZmvE4odRAq8XeKNuiQcdVmHR9M2nVgiKUA=="; 6746 6692 }; 6747 6693 }; 6748 - "@ot-builder/errors-1.5.1" = { 6694 + "@ot-builder/errors-1.5.2" = { 6749 6695 name = "_at_ot-builder_slash_errors"; 6750 6696 packageName = "@ot-builder/errors"; 6751 - version = "1.5.1"; 6697 + version = "1.5.2"; 6752 6698 src = fetchurl { 6753 - url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.5.1.tgz"; 6754 - sha512 = "++wdnFpE9Z/YR/sosddrtdIO4rIglp8V/igHCvZtsyIPR88q+q0/NTmQBMOLsZn6MeHRJgYIt0/Q4yZEhezUiA=="; 6699 + url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.5.2.tgz"; 6700 + sha512 = "wy5c3sE/bpBXWpqFy5yVVNZvBHRSOmTn5anCF+Gq/OjMwPM3vASHo8RccFqQf7AhOFgMWDLYglFniihXloft+w=="; 6755 6701 }; 6756 6702 }; 6757 - "@ot-builder/io-bin-cff-1.5.1" = { 6703 + "@ot-builder/io-bin-cff-1.5.2" = { 6758 6704 name = "_at_ot-builder_slash_io-bin-cff"; 6759 6705 packageName = "@ot-builder/io-bin-cff"; 6760 - version = "1.5.1"; 6706 + version = "1.5.2"; 6761 6707 src = fetchurl { 6762 - url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.5.1.tgz"; 6763 - sha512 = "7RcEM5hTDWM9vds2EXyS9sW2KRFUlnQuys9eMQ0OvgU9cO3hrN7UDhNtMTcjDFTtD668DX82jkP1CtnwORUczA=="; 6708 + url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.5.2.tgz"; 6709 + sha512 = "/BhWleYozRBHSy3nvLKZ19jPcl786LCaiu2oTih5xUCVx17unfLtmEfb8bzgZBMDSB7xvVJ24A/OnZS89Y9heA=="; 6764 6710 }; 6765 6711 }; 6766 - "@ot-builder/io-bin-encoding-1.5.1" = { 6712 + "@ot-builder/io-bin-encoding-1.5.2" = { 6767 6713 name = "_at_ot-builder_slash_io-bin-encoding"; 6768 6714 packageName = "@ot-builder/io-bin-encoding"; 6769 - version = "1.5.1"; 6715 + version = "1.5.2"; 6770 6716 src = fetchurl { 6771 - url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.5.1.tgz"; 6772 - sha512 = "0nDTXPdTfHDvThAGuS/Td8HDp7FV7mQBcC1YVblA7L1RXf0EU2dxbLKgjqt9s4diQRsMRAvIs+REc0oa+/FFzQ=="; 6717 + url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.5.2.tgz"; 6718 + sha512 = "CA1wbilkUIHoq9RJkiadPb3qvh4b6k101U5oA9ACgMgq+EqOEl0Me+HFeyoR5AJfVVzkyxfzTYOq8oiGvCYFrA=="; 6773 6719 }; 6774 6720 }; 6775 - "@ot-builder/io-bin-ext-private-1.5.1" = { 6721 + "@ot-builder/io-bin-ext-private-1.5.2" = { 6776 6722 name = "_at_ot-builder_slash_io-bin-ext-private"; 6777 6723 packageName = "@ot-builder/io-bin-ext-private"; 6778 - version = "1.5.1"; 6724 + version = "1.5.2"; 6779 6725 src = fetchurl { 6780 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.5.1.tgz"; 6781 - sha512 = "wB8F3cpeSYbUQl9yQPdc/vtq//KKI9g9INc2vh/OaQVBeGtfEEHmyVtTsVg3qaBNH5UVcJLO1n8WPMaUejPQ4w=="; 6726 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.5.2.tgz"; 6727 + sha512 = "41nZQB8WiKlTnOzwFdPH+zbSrRGA1YLyuZlXJSqZH8+0Va8q6zXqWhoqLAh1f5gS7j/iB76rltZWZLg3LFfqHg=="; 6782 6728 }; 6783 6729 }; 6784 - "@ot-builder/io-bin-font-1.5.1" = { 6730 + "@ot-builder/io-bin-font-1.5.2" = { 6785 6731 name = "_at_ot-builder_slash_io-bin-font"; 6786 6732 packageName = "@ot-builder/io-bin-font"; 6787 - version = "1.5.1"; 6733 + version = "1.5.2"; 6788 6734 src = fetchurl { 6789 - url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.5.1.tgz"; 6790 - sha512 = "gyjIucWeUUe5Qa5kgyoKQ5ZgmcEqmjXhyOrMAftflo13JUe48azoqFgmcR2F7mLHEEp0o6zPxIFhuq4Osjoi/g=="; 6735 + url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.5.2.tgz"; 6736 + sha512 = "4+bYorR+h5ilJoJtAdPwm38T0Qcv82/3+dwHWJFUYRtuSYiDToZSZEEaFgzuRtby8ye/s35oQ+D0WWlmJSYayQ=="; 6791 6737 }; 6792 6738 }; 6793 - "@ot-builder/io-bin-glyph-store-1.5.1" = { 6739 + "@ot-builder/io-bin-glyph-store-1.5.2" = { 6794 6740 name = "_at_ot-builder_slash_io-bin-glyph-store"; 6795 6741 packageName = "@ot-builder/io-bin-glyph-store"; 6796 - version = "1.5.1"; 6742 + version = "1.5.2"; 6797 6743 src = fetchurl { 6798 - url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.5.1.tgz"; 6799 - sha512 = "UmVjJ5SZxwEgaJFbO/l5gN4VD5GQwP0mkFhrTa0iubHMcKsAYAPiXJfs/YCaGj/cWaVtyucilk7+dbHsRglGnw=="; 6744 + url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.5.2.tgz"; 6745 + sha512 = "3u6bu3IlAmKNxXZJfb96gIKPNMnrk4DW4RQ0sJH56bQSXFv8/zYW27jqs2T6BIFJ8WYshM/bTMjWDrnctdgbNQ=="; 6800 6746 }; 6801 6747 }; 6802 - "@ot-builder/io-bin-layout-1.5.1" = { 6748 + "@ot-builder/io-bin-layout-1.5.2" = { 6803 6749 name = "_at_ot-builder_slash_io-bin-layout"; 6804 6750 packageName = "@ot-builder/io-bin-layout"; 6805 - version = "1.5.1"; 6751 + version = "1.5.2"; 6806 6752 src = fetchurl { 6807 - url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.5.1.tgz"; 6808 - sha512 = "SoarXj9DVSuGSMxGetF9jIBeO0BV1KGMuHs23+CTD6xKSBn0YrPa3S/kim8crCbhdJl5az0pIa2X3EvJ+sGziw=="; 6753 + url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.5.2.tgz"; 6754 + sha512 = "cVEgqOMI9wzD6qMP9+iUnJX/QBJ14x4BpG/wmIS6R8de3JJXld+OqHFDTHJJr/Y0czUajZkjFIIYeToR1t/nAA=="; 6809 6755 }; 6810 6756 }; 6811 - "@ot-builder/io-bin-metadata-1.5.1" = { 6757 + "@ot-builder/io-bin-metadata-1.5.2" = { 6812 6758 name = "_at_ot-builder_slash_io-bin-metadata"; 6813 6759 packageName = "@ot-builder/io-bin-metadata"; 6814 - version = "1.5.1"; 6760 + version = "1.5.2"; 6815 6761 src = fetchurl { 6816 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.5.1.tgz"; 6817 - sha512 = "XC+0/BBXFUQxP+jeRq7H9QQZLBlsXGvwiSc0Fll8zQjVgFJB8HS/sOpCvr1kP3AiuFpUtnXsFSCp4SUM+phZEQ=="; 6762 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.5.2.tgz"; 6763 + sha512 = "UGZu77heEHq4KIEb0C/fkhkewDHv2gkGWqPNXNOPvg7OSR/7A45Ooun8a9vilHaxEJAcUaoLYRWWVFWiVRnDBQ=="; 6818 6764 }; 6819 6765 }; 6820 - "@ot-builder/io-bin-metric-1.5.1" = { 6766 + "@ot-builder/io-bin-metric-1.5.2" = { 6821 6767 name = "_at_ot-builder_slash_io-bin-metric"; 6822 6768 packageName = "@ot-builder/io-bin-metric"; 6823 - version = "1.5.1"; 6769 + version = "1.5.2"; 6824 6770 src = fetchurl { 6825 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.5.1.tgz"; 6826 - sha512 = "WfQtSPgsOaydreLa2j9wjBg1UfBPmi2vYHG5M8LrD0iygOG+OoFcAvuX58gvOxz0n6OS3bHIeI2KAXd/9XLLew=="; 6771 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.5.2.tgz"; 6772 + sha512 = "lHQXURP0fs7hENvGV5tw90Z85spfmjkS1KMTmBlSPqjig1vG0zoHmPFQhbv7urAVJkUu4oeUxfHdQ8hQH+xnOg=="; 6827 6773 }; 6828 6774 }; 6829 - "@ot-builder/io-bin-name-1.5.1" = { 6775 + "@ot-builder/io-bin-name-1.5.2" = { 6830 6776 name = "_at_ot-builder_slash_io-bin-name"; 6831 6777 packageName = "@ot-builder/io-bin-name"; 6832 - version = "1.5.1"; 6778 + version = "1.5.2"; 6833 6779 src = fetchurl { 6834 - url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.5.1.tgz"; 6835 - sha512 = "R7UT653Y/OYcSRT+cjXpsbPRRU4mAz5RfYxKTW8yKFJ2SN++17LqlkHAUhhWMiU6mJwNjIkpx6/g97ewRgY0oA=="; 6780 + url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.5.2.tgz"; 6781 + sha512 = "+Yxp5fTmGuP2XtHRrbcHWPTFqlrA5uPz1+xInlVJQKsIwrC4tVrshsWYwhGE99hkAli+JdyTsIoSmOKP7Jv96w=="; 6836 6782 }; 6837 6783 }; 6838 - "@ot-builder/io-bin-sfnt-1.5.1" = { 6784 + "@ot-builder/io-bin-sfnt-1.5.2" = { 6839 6785 name = "_at_ot-builder_slash_io-bin-sfnt"; 6840 6786 packageName = "@ot-builder/io-bin-sfnt"; 6841 - version = "1.5.1"; 6787 + version = "1.5.2"; 6842 6788 src = fetchurl { 6843 - url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.5.1.tgz"; 6844 - sha512 = "/PedJquNAlN+brP11hxKtDsNwVqklZVO8kYBOfh/8M/W5DDiz0Vrp36hSj8/qI0waYQWQegoN8l31y81YQRYxw=="; 6789 + url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.5.2.tgz"; 6790 + sha512 = "rC260d+vf9eugGh71ReudGyBEHsInsICADk1JOzy9HbJ7LrSgQO8chO3EKbfP4MfelYg+uSgsFm5fQCBzuB8wg=="; 6845 6791 }; 6846 6792 }; 6847 - "@ot-builder/io-bin-ttf-1.5.1" = { 6793 + "@ot-builder/io-bin-ttf-1.5.2" = { 6848 6794 name = "_at_ot-builder_slash_io-bin-ttf"; 6849 6795 packageName = "@ot-builder/io-bin-ttf"; 6850 - version = "1.5.1"; 6796 + version = "1.5.2"; 6851 6797 src = fetchurl { 6852 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.5.1.tgz"; 6853 - sha512 = "xeV56Bd72YGm0n4Pt5SOcA+nocNEP/D2P1oieGu0Karb7yMqwd+fkoxPBo6+UMxWkWh0x7iztY4uMGI87HEpqQ=="; 6798 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.5.2.tgz"; 6799 + sha512 = "w6L8FjwUQ28+Fd6FJJHEL20YoWbiK5Anh1+YjrbDsLOtmWFvF0hC0+3wi/FbVbiSx6ho91RZDAFc4t2k1bJo2A=="; 6854 6800 }; 6855 6801 }; 6856 - "@ot-builder/io-bin-vtt-private-1.5.1" = { 6802 + "@ot-builder/io-bin-vtt-private-1.5.2" = { 6857 6803 name = "_at_ot-builder_slash_io-bin-vtt-private"; 6858 6804 packageName = "@ot-builder/io-bin-vtt-private"; 6859 - version = "1.5.1"; 6805 + version = "1.5.2"; 6860 6806 src = fetchurl { 6861 - url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.5.1.tgz"; 6862 - sha512 = "QL6HLeE7fs5gYiazG+2DVRg6zbL2O/srkkVGU4L1++1Z87BFp4xvID9LvePwLEpWUJFl9+4bRB6j5ozoYU3vYA=="; 6807 + url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.5.2.tgz"; 6808 + sha512 = "pCKjYtMquIviJfxohvkJhkHIj1uF/i54qkAqgnwyBMF1CIwvn8hBAcbulxwH9m1Sr+h06mfRQARgbI/B9bnxhQ=="; 6863 6809 }; 6864 6810 }; 6865 - "@ot-builder/ot-1.5.1" = { 6811 + "@ot-builder/ot-1.5.2" = { 6866 6812 name = "_at_ot-builder_slash_ot"; 6867 6813 packageName = "@ot-builder/ot"; 6868 - version = "1.5.1"; 6814 + version = "1.5.2"; 6869 6815 src = fetchurl { 6870 - url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.5.1.tgz"; 6871 - sha512 = "XIIYr9jv1TSYmcOkZDPRJASvgeKUQ+WnfaScu0fDiFI5GcLCLZOQnYjju8P1Q7/YOHT6HLZlD8T1MgXR8auo+w=="; 6816 + url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.5.2.tgz"; 6817 + sha512 = "Ll+N/oE2048VMca6aEXxxPInh8SKyWDyELkQy6C9+d2spN6gxNR4S9y40KI49bcCosvHn6ej94nu7erIF4Xd3A=="; 6872 6818 }; 6873 6819 }; 6874 - "@ot-builder/ot-encoding-1.5.1" = { 6820 + "@ot-builder/ot-encoding-1.5.2" = { 6875 6821 name = "_at_ot-builder_slash_ot-encoding"; 6876 6822 packageName = "@ot-builder/ot-encoding"; 6877 - version = "1.5.1"; 6823 + version = "1.5.2"; 6878 6824 src = fetchurl { 6879 - url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.5.1.tgz"; 6880 - sha512 = "jgAxj59W5P3bC33FGYGINjFvgc6JVX6ppPN4LVeXnl0ExtqVqiBDf83DA33u+tDrZlqkAtYSed42V3TNA90wXg=="; 6825 + url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.5.2.tgz"; 6826 + sha512 = "XghLV1nRzE1VMPMJKzwaYWPUMb/xKFXcOPxdVdXK9tnipzJ/gwxsVc9yzcxshZNwC+JwPozupUGxLWrdBfv+CA=="; 6881 6827 }; 6882 6828 }; 6883 - "@ot-builder/ot-ext-private-1.5.1" = { 6829 + "@ot-builder/ot-ext-private-1.5.2" = { 6884 6830 name = "_at_ot-builder_slash_ot-ext-private"; 6885 6831 packageName = "@ot-builder/ot-ext-private"; 6886 - version = "1.5.1"; 6832 + version = "1.5.2"; 6887 6833 src = fetchurl { 6888 - url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.5.1.tgz"; 6889 - sha512 = "fcnGZ6MgMdQIGipVzBuiH1lIOFWovi7Lfwt0ddYMzWjUqlnZgzpl6JwROQkmcfweAguEN3gFB/2Nkd+B5IHNgw=="; 6834 + url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.5.2.tgz"; 6835 + sha512 = "A918OM2jHz6tVLNAfTO4KXbUqILbgy76EAmCMKQ4GConkGD39cM4xZ3FI9w3gph7kyvfDFhICXLYST0hK9snNg=="; 6890 6836 }; 6891 6837 }; 6892 - "@ot-builder/ot-glyphs-1.5.1" = { 6838 + "@ot-builder/ot-glyphs-1.5.2" = { 6893 6839 name = "_at_ot-builder_slash_ot-glyphs"; 6894 6840 packageName = "@ot-builder/ot-glyphs"; 6895 - version = "1.5.1"; 6841 + version = "1.5.2"; 6896 6842 src = fetchurl { 6897 - url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.5.1.tgz"; 6898 - sha512 = "hHKK6TWINdwy/pYQgPNfSlTWaIesHrizk6Uu2uT66ISRd3FAUcr3L+kjf8nLimkFDqPBvvQGMW8c3pEVlOt3Cw=="; 6843 + url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.5.2.tgz"; 6844 + sha512 = "yL1/T48XXujdMs1xqD1yPEgdrCGaDROm2eChJ5dqYnrEbm7Xeif5qT/2AkPRse9sjDAxBypfEw5+/yuEreRcjA=="; 6899 6845 }; 6900 6846 }; 6901 - "@ot-builder/ot-layout-1.5.1" = { 6847 + "@ot-builder/ot-layout-1.5.2" = { 6902 6848 name = "_at_ot-builder_slash_ot-layout"; 6903 6849 packageName = "@ot-builder/ot-layout"; 6904 - version = "1.5.1"; 6850 + version = "1.5.2"; 6905 6851 src = fetchurl { 6906 - url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.5.1.tgz"; 6907 - sha512 = "ORIVOQFccaCkA/CpmKEUAGBU3jE3LtyQGl/g+sQPHNGR4H0Amrm9X4FlDuQAgzqMEDC3jUPmcyB3yBxJ71CLzQ=="; 6852 + url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.5.2.tgz"; 6853 + sha512 = "7uTXlHzTa1FzsN2HZOMb6IHY07ICk2D+tr5w3Ex5hYwqRcJrEcPzrfEvleXbMB2bQ1dexiDljWuTf9iVcuX1eA=="; 6908 6854 }; 6909 6855 }; 6910 - "@ot-builder/ot-metadata-1.5.1" = { 6856 + "@ot-builder/ot-metadata-1.5.2" = { 6911 6857 name = "_at_ot-builder_slash_ot-metadata"; 6912 6858 packageName = "@ot-builder/ot-metadata"; 6913 - version = "1.5.1"; 6859 + version = "1.5.2"; 6914 6860 src = fetchurl { 6915 - url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.5.1.tgz"; 6916 - sha512 = "t8u2Uf418PQBXA+Ex5vhAkqg1z7U3ULr4P3gdzwlvs82HpeTVrsJvYbpWj4RymSGUTDB56GT6dpvL9n9MZfg7w=="; 6861 + url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.5.2.tgz"; 6862 + sha512 = "yqNRfUZDytD2LMIVxAKpKrTXhXyi495LDOSFhgWtfY5bQp9RehwgwzAU+hRG0ILQx9PWGwGjNiqRv8LfjaYOwA=="; 6917 6863 }; 6918 6864 }; 6919 - "@ot-builder/ot-name-1.5.1" = { 6865 + "@ot-builder/ot-name-1.5.2" = { 6920 6866 name = "_at_ot-builder_slash_ot-name"; 6921 6867 packageName = "@ot-builder/ot-name"; 6922 - version = "1.5.1"; 6868 + version = "1.5.2"; 6923 6869 src = fetchurl { 6924 - url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.5.1.tgz"; 6925 - sha512 = "SYwiXsP0edNS7kQcRpqmUOJX5koqnA888/kyalzzmStGm95JGoT6bX8dWp6MY/KOyzSHq4srJcM23GBxGs4epA=="; 6870 + url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.5.2.tgz"; 6871 + sha512 = "ZyA0jQvpWp0nT9kEYxtsRyetVxdQxbatM1vHm+TMsnhw7S7wU8OhXkF1TzOuhSaWWqDZfz5edPkF3vonXwJRSw=="; 6926 6872 }; 6927 6873 }; 6928 - "@ot-builder/ot-sfnt-1.5.1" = { 6874 + "@ot-builder/ot-sfnt-1.5.2" = { 6929 6875 name = "_at_ot-builder_slash_ot-sfnt"; 6930 6876 packageName = "@ot-builder/ot-sfnt"; 6931 - version = "1.5.1"; 6877 + version = "1.5.2"; 6932 6878 src = fetchurl { 6933 - url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.5.1.tgz"; 6934 - sha512 = "BPfGhc6xpZWKrOcLoH0+ceVxu7EWqaByzkz56d58bh/EGdLRqbQegjRyNsHQz3U237I9YulbsAOBi4LMh9EbCg=="; 6879 + url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.5.2.tgz"; 6880 + sha512 = "BATyuGX8xUMz99Yu4pexm63nTa5jsW7XD2tO+eVbjSZsbURD2D1XL6h2MsVtPIcUYGCB8eLBpFRvh+fJlR2bLA=="; 6935 6881 }; 6936 6882 }; 6937 - "@ot-builder/ot-standard-glyph-namer-1.5.1" = { 6883 + "@ot-builder/ot-standard-glyph-namer-1.5.2" = { 6938 6884 name = "_at_ot-builder_slash_ot-standard-glyph-namer"; 6939 6885 packageName = "@ot-builder/ot-standard-glyph-namer"; 6940 - version = "1.5.1"; 6886 + version = "1.5.2"; 6941 6887 src = fetchurl { 6942 - url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.5.1.tgz"; 6943 - sha512 = "6zJken8UG3En8/Z0sN1gDvFoXfgxN4hgLD6ElKLzu9gBw3zXdgdigLnIgTecOGzoYUfnO17pA0/tY4AH6Z70OQ=="; 6888 + url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.5.2.tgz"; 6889 + sha512 = "cCQ0ln4Mq2wiTSKIwiqLIpJVk/6IADpJayncA/vdljKrCKLUVYscS6I1bw3de8bvutc6BdCy9xYshmdsFoIJNQ=="; 6944 6890 }; 6945 6891 }; 6946 - "@ot-builder/ot-vtt-private-1.5.1" = { 6892 + "@ot-builder/ot-vtt-private-1.5.2" = { 6947 6893 name = "_at_ot-builder_slash_ot-vtt-private"; 6948 6894 packageName = "@ot-builder/ot-vtt-private"; 6949 - version = "1.5.1"; 6895 + version = "1.5.2"; 6950 6896 src = fetchurl { 6951 - url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.5.1.tgz"; 6952 - sha512 = "757L0L3kNZxx3fG5FUeGFGtZIPerv2gAycat91Wtbw6XjiMtqcJITwO7/rkUWD+6u3vMYTWpFO1Ye4XgClYuWQ=="; 6897 + url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.5.2.tgz"; 6898 + sha512 = "QIKNssMPTiJKm+r1pbJBxNO36k78D0/BWgq68k9DFH5tfiZnRy6MesczOBIlW9RmRFeFy640yx8tPNGvNYgG8w=="; 6953 6899 }; 6954 6900 }; 6955 - "@ot-builder/prelude-1.5.1" = { 6901 + "@ot-builder/prelude-1.5.2" = { 6956 6902 name = "_at_ot-builder_slash_prelude"; 6957 6903 packageName = "@ot-builder/prelude"; 6958 - version = "1.5.1"; 6904 + version = "1.5.2"; 6959 6905 src = fetchurl { 6960 - url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.5.1.tgz"; 6961 - sha512 = "0ovDORVvH3SWHoG+nNL0RAAk6wsHrfxp6cW8Fk+7vum06JWWGTiv9VEDyYNWWfCRD958T/xUguk/q/0slr38Ow=="; 6906 + url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.5.2.tgz"; 6907 + sha512 = "58r3rUfAIo0Irq6XcDn8u9F+YJ5NBwEa5mLrFg0dk7EcbEe5/rErGfeBjzP1uqUoN/zRu1q9zHXB+CU54XrJ/g=="; 6962 6908 }; 6963 6909 }; 6964 - "@ot-builder/primitive-1.5.1" = { 6910 + "@ot-builder/primitive-1.5.2" = { 6965 6911 name = "_at_ot-builder_slash_primitive"; 6966 6912 packageName = "@ot-builder/primitive"; 6967 - version = "1.5.1"; 6913 + version = "1.5.2"; 6968 6914 src = fetchurl { 6969 - url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.5.1.tgz"; 6970 - sha512 = "xRIHI7+EKqq+3XAJMRne4lX41Y85QLtyf+mAN6CpFfrtTRd9U47BpbLHV8fktW/tzR+iuOtWL5C0g4iNVqrTTA=="; 6915 + url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.5.2.tgz"; 6916 + sha512 = "zSf7O/qc+mrXHNnTrm3n8l02NRfmI3povgOScOE0N9cQ/FoePksiKgk9OWHOg7wQOGcAee7sBWK+ROkRJBLE0g=="; 6971 6917 }; 6972 6918 }; 6973 - "@ot-builder/rectify-1.5.1" = { 6919 + "@ot-builder/rectify-1.5.2" = { 6974 6920 name = "_at_ot-builder_slash_rectify"; 6975 6921 packageName = "@ot-builder/rectify"; 6976 - version = "1.5.1"; 6922 + version = "1.5.2"; 6977 6923 src = fetchurl { 6978 - url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.5.1.tgz"; 6979 - sha512 = "AXM+fy1h/JAvf0y79a31w92NwicQb9y+hotRthd88EXTxOZLlyyuwzUdfBW5MaMfXq7/SfeCxlz6xcSaMMjfrg=="; 6924 + url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.5.2.tgz"; 6925 + sha512 = "8yKJUzb6PkKS7rRUNVpkk9QJBKRdo6aYAQiPbgn2NpyZXAls3TIbqY0+RYwaTbrIF6PC1P/ZH+jJduDEFEiRIw=="; 6980 6926 }; 6981 6927 }; 6982 - "@ot-builder/stat-glyphs-1.5.1" = { 6928 + "@ot-builder/stat-glyphs-1.5.2" = { 6983 6929 name = "_at_ot-builder_slash_stat-glyphs"; 6984 6930 packageName = "@ot-builder/stat-glyphs"; 6985 - version = "1.5.1"; 6931 + version = "1.5.2"; 6986 6932 src = fetchurl { 6987 - url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.5.1.tgz"; 6988 - sha512 = "trH59RavFr0++8WnodHF/A3YpKXXcW68fbugm19dW5Pen5sUSfEh0OpLKwI4YjW98/kKiLYqu8MwJCIugEaKqQ=="; 6933 + url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.5.2.tgz"; 6934 + sha512 = "sJCvYKR03PeZmdPN+Id6rS4R564wJJ3SlH5+5mGwwBiUBl+A8SnYKt/ono42KerI8KA4ZpZWszr81jsO0Da1MA=="; 6989 6935 }; 6990 6936 }; 6991 - "@ot-builder/trace-1.5.1" = { 6937 + "@ot-builder/trace-1.5.2" = { 6992 6938 name = "_at_ot-builder_slash_trace"; 6993 6939 packageName = "@ot-builder/trace"; 6994 - version = "1.5.1"; 6940 + version = "1.5.2"; 6995 6941 src = fetchurl { 6996 - url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.5.1.tgz"; 6997 - sha512 = "M+8o1JvM4T99ciRdipJDWIshBN1878EB5B2m7VvB9SwcfIRy2bBEW2pNIf+nWBgttbkXqeMNi9JMGgBlcCbK/w=="; 6942 + url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.5.2.tgz"; 6943 + sha512 = "H9Us+DO5I25dkSCdtGRaVTejvU1/kecXKx24dCnFM1QDslmKvFGNBuYxR2B3Oxo5Jfn2uO8jqqcAtS0mV8etdg=="; 6998 6944 }; 6999 6945 }; 7000 - "@ot-builder/var-store-1.5.1" = { 6946 + "@ot-builder/var-store-1.5.2" = { 7001 6947 name = "_at_ot-builder_slash_var-store"; 7002 6948 packageName = "@ot-builder/var-store"; 7003 - version = "1.5.1"; 6949 + version = "1.5.2"; 7004 6950 src = fetchurl { 7005 - url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.5.1.tgz"; 7006 - sha512 = "GJWlE7hDwajX1cvGjChR9rt8kqiC3O5cr9ikFpPyz150zkkqWaLi38sISA1h7Vk/dU5TQ6nVka53/I2Q4tWptA=="; 6951 + url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.5.2.tgz"; 6952 + sha512 = "HNmjiVhdU9epqApbvqr46puJe6N7+R0sMbYs+9UrIf4x+csM97T/Z2o3bKi17Jkn18023UYhCMLP3fxCZQqLbw=="; 7007 6953 }; 7008 6954 }; 7009 - "@ot-builder/variance-1.5.1" = { 6955 + "@ot-builder/variance-1.5.2" = { 7010 6956 name = "_at_ot-builder_slash_variance"; 7011 6957 packageName = "@ot-builder/variance"; 7012 - version = "1.5.1"; 6958 + version = "1.5.2"; 7013 6959 src = fetchurl { 7014 - url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.5.1.tgz"; 7015 - sha512 = "v4HMolIM+Jigr9N8TTAYnPcGhsUr54WDpJbVVW6fueH54ePD3Z9MYE0X22TAjpFwZbBHUUAjtoHeUP32pMMpqg=="; 6960 + url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.5.2.tgz"; 6961 + sha512 = "xrgAFbPWSS1uKYtPqUTfahc2Ga1kc3tKIzVg9Kp2cFF8atTeinsZ2aWLtnBT2nzf0Z1z/PyWrT08w5bGvL/01A=="; 7016 6962 }; 7017 6963 }; 7018 - "@parcel/bundler-default-2.4.1" = { 6964 + "@parcel/bundler-default-2.5.0" = { 7019 6965 name = "_at_parcel_slash_bundler-default"; 7020 6966 packageName = "@parcel/bundler-default"; 7021 - version = "2.4.1"; 6967 + version = "2.5.0"; 7022 6968 src = fetchurl { 7023 - url = "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.4.1.tgz"; 7024 - sha512 = "PTfBOuoiiYdfwyoPFeBTOinyl1RL4qaoyAQ0PCe01C1i4NcRWCY1w7zRvwJW/OhU3Ka+LtioGmfxu5/drdXzLg=="; 6969 + url = "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.5.0.tgz"; 6970 + sha512 = "7CJzE17SirCXjcRgBcnqWO/5EOA1raq/3OIKtT4cxbjpDQGHZpjpEEZiMNRpEpdNMxDSlsG8mAkXTYGL2VVWRw=="; 7025 6971 }; 7026 6972 }; 7027 - "@parcel/cache-2.4.1" = { 6973 + "@parcel/cache-2.5.0" = { 7028 6974 name = "_at_parcel_slash_cache"; 7029 6975 packageName = "@parcel/cache"; 7030 - version = "2.4.1"; 6976 + version = "2.5.0"; 7031 6977 src = fetchurl { 7032 - url = "https://registry.npmjs.org/@parcel/cache/-/cache-2.4.1.tgz"; 7033 - sha512 = "2N5ly++p/yefmPdK39X1QIoA2e6NtS1aYSsxrIC9EX92Kjd7SfSceqUJhlJWB49omJSheEJLd1qM3EJG9EvICQ=="; 6978 + url = "https://registry.npmjs.org/@parcel/cache/-/cache-2.5.0.tgz"; 6979 + sha512 = "3kOO3cZQv0FAKhrMHGLdb4Qtzpmy78Q6jPN3u8eCY4yqeDTnyQBZvWNHoyCm5WlmL8y6Q6REYMbETLxSH1ggAQ=="; 7034 6980 }; 7035 6981 }; 7036 - "@parcel/codeframe-2.4.1" = { 6982 + "@parcel/codeframe-2.5.0" = { 7037 6983 name = "_at_parcel_slash_codeframe"; 7038 6984 packageName = "@parcel/codeframe"; 7039 - version = "2.4.1"; 6985 + version = "2.5.0"; 7040 6986 src = fetchurl { 7041 - url = "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.4.1.tgz"; 7042 - sha512 = "m3WDeEpWvgqekCqsHfPMJrSQquahdIgSR1x1RDCqQ1YelvW0fQiGgu42MXI5tjoBrHC1l1mF01UDb+xMSxz1DA=="; 6987 + url = "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.5.0.tgz"; 6988 + sha512 = "qafqL8Vu2kr932cCWESoDEEoAeKVi7/xdzTBuhzEJng1AfmRT0rCbt/P4ao3RjiDyozPSjXsHOqM6GDZcto4eQ=="; 7043 6989 }; 7044 6990 }; 7045 - "@parcel/compressor-raw-2.4.1" = { 6991 + "@parcel/compressor-raw-2.5.0" = { 7046 6992 name = "_at_parcel_slash_compressor-raw"; 7047 6993 packageName = "@parcel/compressor-raw"; 7048 - version = "2.4.1"; 6994 + version = "2.5.0"; 7049 6995 src = fetchurl { 7050 - url = "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.4.1.tgz"; 7051 - sha512 = "cEOOOzIK7glxCqJX0OfBFBZE/iT7tmjEOXswRY3CnqY9FGoY3NYDAsOLm7A73RuIdNaZfYVxVUy3g7OLpbKL+g=="; 6996 + url = "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.5.0.tgz"; 6997 + sha512 = "I5Zs+2f1ue4sTPdfT8BNsLfTZl48sMWLk2Io3elUJjH/SS9kO7ut5ChkuJtt77ZS35m0OF+ZCt3ICTJdnDG8eA=="; 7052 6998 }; 7053 6999 }; 7054 - "@parcel/config-default-2.4.1" = { 7000 + "@parcel/config-default-2.5.0" = { 7055 7001 name = "_at_parcel_slash_config-default"; 7056 7002 packageName = "@parcel/config-default"; 7057 - version = "2.4.1"; 7003 + version = "2.5.0"; 7058 7004 src = fetchurl { 7059 - url = "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.4.1.tgz"; 7060 - sha512 = "yGA4Mx/KDzVOPm8IYb4Id+zlz1TaIM7s472pxA4tUV1qcEtBInY0aeO9R/GsLKC2+3QPHURZld9WI9EMXRUBBA=="; 7005 + url = "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.5.0.tgz"; 7006 + sha512 = "r30V61958SONvP9I8KV8s44ZOFq0H219VyFjPysraSabHjZ+KMaCTQOuqaDtUMa272sHUQkBcZxKYj5jYPJlZg=="; 7061 7007 }; 7062 7008 }; 7063 - "@parcel/core-2.4.1" = { 7009 + "@parcel/core-2.5.0" = { 7064 7010 name = "_at_parcel_slash_core"; 7065 7011 packageName = "@parcel/core"; 7066 - version = "2.4.1"; 7012 + version = "2.5.0"; 7067 7013 src = fetchurl { 7068 - url = "https://registry.npmjs.org/@parcel/core/-/core-2.4.1.tgz"; 7069 - sha512 = "h2FvqLA75ZQdIXX1y+ylGjIIi7YtbAUJyIapxaO081h3EsYG2jr9sRL4sym5ECgmvbyua/DEgtMLX3eGYn09FA=="; 7014 + url = "https://registry.npmjs.org/@parcel/core/-/core-2.5.0.tgz"; 7015 + sha512 = "dygDmPsfAYJKTnUftcbEzjCik7AAaPbFvJW8ETYz8diyjkAG9y6hvCAZIrJE5pNOjFzg32en4v4UWv8Sqlzl9g=="; 7070 7016 }; 7071 7017 }; 7072 - "@parcel/css-1.8.1" = { 7018 + "@parcel/css-1.8.2" = { 7073 7019 name = "_at_parcel_slash_css"; 7074 7020 packageName = "@parcel/css"; 7075 - version = "1.8.1"; 7021 + version = "1.8.2"; 7076 7022 src = fetchurl { 7077 - url = "https://registry.npmjs.org/@parcel/css/-/css-1.8.1.tgz"; 7078 - sha512 = "TOfe+msei+NuPPKb60Kc+nPuCThl07L3Fut67nfot1OXy2hKYr/eF7AiAguCaIlRXkjEtXRR4S7fO24dLZ1C9g=="; 7023 + url = "https://registry.npmjs.org/@parcel/css/-/css-1.8.2.tgz"; 7024 + sha512 = "3vTyKHy2LnZ3YJEut+UQPVIxsaY/mdGk7cDXtmvH4xR48Pd6rYzChHCMl4Ru2DUkCBpr0KCQRPZTdYcsJhUmIA=="; 7079 7025 }; 7080 7026 }; 7081 - "@parcel/css-darwin-arm64-1.8.1" = { 7027 + "@parcel/css-darwin-arm64-1.8.2" = { 7082 7028 name = "_at_parcel_slash_css-darwin-arm64"; 7083 7029 packageName = "@parcel/css-darwin-arm64"; 7084 - version = "1.8.1"; 7030 + version = "1.8.2"; 7085 7031 src = fetchurl { 7086 - url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.8.1.tgz"; 7087 - sha512 = "PbpIlqLMAhWZlimKCdNP/ZfGNJUlEWgNeTcO2LDjPIK5JK6oTAJHfP/PPzjLS8mu+JIznZ//9MnVOUi1xcjXMA=="; 7032 + url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.8.2.tgz"; 7033 + sha512 = "p5etxX3kPCuEQcipjqH9yc5j0x5/Yc++uB4MvG/sFbRgL2gI2zUuRo9sIgqA21boOP8lE4bQgz1ovPD/W1hj+Q=="; 7088 7034 }; 7089 7035 }; 7090 - "@parcel/css-darwin-x64-1.8.1" = { 7036 + "@parcel/css-darwin-x64-1.8.2" = { 7091 7037 name = "_at_parcel_slash_css-darwin-x64"; 7092 7038 packageName = "@parcel/css-darwin-x64"; 7093 - version = "1.8.1"; 7039 + version = "1.8.2"; 7094 7040 src = fetchurl { 7095 - url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.8.1.tgz"; 7096 - sha512 = "R4FrwXQGAgW3/YRCSRCBNcV6mz+OKqYuyrVnZBmKTLDuTGhZHCF12qLL7SV5jYsKXBDauYAXDv/SOFIwlikVXg=="; 7041 + url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.8.2.tgz"; 7042 + sha512 = "c3xi5DXRZYec5db4KPTxp69eHbomOuasgZNiuPPOi80k7jlOwfzCFQs0h6/KwWvTcJrKEFsLl8BKJU/aX7mETw=="; 7097 7043 }; 7098 7044 }; 7099 - "@parcel/css-linux-arm-gnueabihf-1.8.1" = { 7045 + "@parcel/css-linux-arm-gnueabihf-1.8.2" = { 7100 7046 name = "_at_parcel_slash_css-linux-arm-gnueabihf"; 7101 7047 packageName = "@parcel/css-linux-arm-gnueabihf"; 7102 - version = "1.8.1"; 7048 + version = "1.8.2"; 7103 7049 src = fetchurl { 7104 - url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.8.1.tgz"; 7105 - sha512 = "MVRlPGipRrs+f6nURR6cJbFw85YSXkPbR6l/0Hm1vyFlNn0HmRDCEWZFPwvvSavibU968Wgc5yKaC78D6Ecgsw=="; 7050 + url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.8.2.tgz"; 7051 + sha512 = "+ih3+mMpwbwtOjr/XW5pP0frsV1PMN+Qz7jCAM84h8xX+8UE/1IR0UVi3EPa8wQiIlcVcEwszQ1MV2UHacvo/A=="; 7106 7052 }; 7107 7053 }; 7108 - "@parcel/css-linux-arm64-gnu-1.8.1" = { 7054 + "@parcel/css-linux-arm64-gnu-1.8.2" = { 7109 7055 name = "_at_parcel_slash_css-linux-arm64-gnu"; 7110 7056 packageName = "@parcel/css-linux-arm64-gnu"; 7111 - version = "1.8.1"; 7057 + version = "1.8.2"; 7112 7058 src = fetchurl { 7113 - url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.8.1.tgz"; 7114 - sha512 = "s6UpF9CjUMeeCELx0Cu+HtR8RKycm516b1mJlQC8hsPtAyDYlByW4tSDwC3By4Fqf3xCan6IH/oaq0ujS0Iqew=="; 7059 + url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.8.2.tgz"; 7060 + sha512 = "jIoyXbjJ1trUHXtyJhi3hlF1ck6xM4CDyaY5N6eN+3+ovkdw6wxog9IiheYJ1jf9ellYevLvTF5kiYE9MiP04A=="; 7115 7061 }; 7116 7062 }; 7117 - "@parcel/css-linux-arm64-musl-1.8.1" = { 7063 + "@parcel/css-linux-arm64-musl-1.8.2" = { 7118 7064 name = "_at_parcel_slash_css-linux-arm64-musl"; 7119 7065 packageName = "@parcel/css-linux-arm64-musl"; 7120 - version = "1.8.1"; 7066 + version = "1.8.2"; 7121 7067 src = fetchurl { 7122 - url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.8.1.tgz"; 7123 - sha512 = "Tp3Pe2tx7mltPrZ1ZDV8PLkgYcwQOigrH9YjPPOaf8iFptDpHOv1y2cs1eSgnvP+5kBdIXd7H87kGSC7OosuXg=="; 7068 + url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.8.2.tgz"; 7069 + sha512 = "QVTc5a+HatoywIei3djKYmp3s5dbI2Q3QaYZf3gqhyjOkeC7bm6j5eeNzFO+wa5xtga5jdHkIuTRrJ/wCojKKw=="; 7124 7070 }; 7125 7071 }; 7126 - "@parcel/css-linux-x64-gnu-1.8.1" = { 7072 + "@parcel/css-linux-x64-gnu-1.8.2" = { 7127 7073 name = "_at_parcel_slash_css-linux-x64-gnu"; 7128 7074 packageName = "@parcel/css-linux-x64-gnu"; 7129 - version = "1.8.1"; 7075 + version = "1.8.2"; 7130 7076 src = fetchurl { 7131 - url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.8.1.tgz"; 7132 - sha512 = "8yqXRlei4qBFSv9R8yru6yB2ak7frA/z6rMB2E5lNN8kMhpB1E0xKYMhsTZdMOV5A/gkPZlP3sHZG4qQ3GOLgQ=="; 7077 + url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.8.2.tgz"; 7078 + sha512 = "9r2tSfa6i3ZQ3a6C9XufJWuTv3LB7JYzxzEqsI35SSA8D/DrfAHMaIhqog5wSxKZRWmQxckh2wdT96eIIGHSGA=="; 7133 7079 }; 7134 7080 }; 7135 - "@parcel/css-linux-x64-musl-1.8.1" = { 7081 + "@parcel/css-linux-x64-musl-1.8.2" = { 7136 7082 name = "_at_parcel_slash_css-linux-x64-musl"; 7137 7083 packageName = "@parcel/css-linux-x64-musl"; 7138 - version = "1.8.1"; 7084 + version = "1.8.2"; 7139 7085 src = fetchurl { 7140 - url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.8.1.tgz"; 7141 - sha512 = "S1Qf9tZzX7AnmqKRhR/qpFYsqSCxYSz5KdekdxIijPEMxyI5tpWp6g2adGYxrCuV0E5EpcpmXlBT6d6+8FrgPg=="; 7086 + url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.8.2.tgz"; 7087 + sha512 = "5SetLWkxXRQ3NU6QwwbGf9tOmGW2m1cGt07Moybbe4RCXOY6R5wAYUtauZUp7pD/fJlE9mHge4jnNHKpVO9pvw=="; 7142 7088 }; 7143 7089 }; 7144 - "@parcel/css-win32-x64-msvc-1.8.1" = { 7090 + "@parcel/css-win32-x64-msvc-1.8.2" = { 7145 7091 name = "_at_parcel_slash_css-win32-x64-msvc"; 7146 7092 packageName = "@parcel/css-win32-x64-msvc"; 7147 - version = "1.8.1"; 7093 + version = "1.8.2"; 7148 7094 src = fetchurl { 7149 - url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.8.1.tgz"; 7150 - sha512 = "tZ5s2zM/63mEdpdnE82xtfDDR7tAN32REii1EU5LOdfpB2PIw902p30fvklj1pOFBji/v/JdpAdLIYc4W7Gb6w=="; 7095 + url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.8.2.tgz"; 7096 + sha512 = "/EdW5Ejlnkvc/AYrAi/FmLNvM6a6eAx+A4Y7oW+8JSMvk6bYa2zmXi7XLU/QOQuH2VQa/3gIIMA+sYjPndvDpw=="; 7151 7097 }; 7152 7098 }; 7153 - "@parcel/diagnostic-2.4.1" = { 7099 + "@parcel/diagnostic-2.5.0" = { 7154 7100 name = "_at_parcel_slash_diagnostic"; 7155 7101 packageName = "@parcel/diagnostic"; 7156 - version = "2.4.1"; 7102 + version = "2.5.0"; 7157 7103 src = fetchurl { 7158 - url = "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.4.1.tgz"; 7159 - sha512 = "wmJIfn0PG2ABuraS+kMjl6UKaLjTDTtG+XkjJLWHzU/dd5RozqAZDKp65GWjvHzHLx7KICTAdUJsXh2s3TnTOQ=="; 7104 + url = "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.5.0.tgz"; 7105 + sha512 = "KiMGGRpEV7wl5gjcxBKcgX84a+cG+IEn94gwy5LK3lENR09nuKShqqgKGAmj/17CobJgw1QNP94/H4Md+oxIWg=="; 7160 7106 }; 7161 7107 }; 7162 - "@parcel/events-2.4.1" = { 7108 + "@parcel/events-2.5.0" = { 7163 7109 name = "_at_parcel_slash_events"; 7164 7110 packageName = "@parcel/events"; 7165 - version = "2.4.1"; 7111 + version = "2.5.0"; 7166 7112 src = fetchurl { 7167 - url = "https://registry.npmjs.org/@parcel/events/-/events-2.4.1.tgz"; 7168 - sha512 = "er2jwyzYt3Zimkrp7TR865GIeIMYNd7YSSxW39y/egm4LIPBsruUpHSnKRD5b65Jd+gckkxDsnrpADG6MH1zNw=="; 7113 + url = "https://registry.npmjs.org/@parcel/events/-/events-2.5.0.tgz"; 7114 + sha512 = "Gc2LPwL1H34Ony5MENbKZg7wvCscZ4x9y7Fu92sfbdWpLo3K13hVtsX3TMIIgYt3B7R7OmO8yR880U2T+JfVkQ=="; 7169 7115 }; 7170 7116 }; 7171 7117 "@parcel/fs-1.11.0" = { ··· 7177 7123 sha512 = "86RyEqULbbVoeo8OLcv+LQ1Vq2PKBAvWTU9fCgALxuCTbbs5Ppcvll4Vr+Ko1AnmMzja/k++SzNAwJfeQXVlpA=="; 7178 7124 }; 7179 7125 }; 7180 - "@parcel/fs-2.4.1" = { 7126 + "@parcel/fs-2.5.0" = { 7181 7127 name = "_at_parcel_slash_fs"; 7182 7128 packageName = "@parcel/fs"; 7183 - version = "2.4.1"; 7129 + version = "2.5.0"; 7184 7130 src = fetchurl { 7185 - url = "https://registry.npmjs.org/@parcel/fs/-/fs-2.4.1.tgz"; 7186 - sha512 = "kE9HzW6XjO/ZA5bQnAzp1YVmGlXeDqUaius2cH2K0wU7KQX/GBjyfEWJm/UsKPB6QIrGXgkPH6ashNzOgwDqpw=="; 7131 + url = "https://registry.npmjs.org/@parcel/fs/-/fs-2.5.0.tgz"; 7132 + sha512 = "YYr14BWtx/bJ+hu6PPQQ6G/3omOTWgVqEw+UFI3iQH3P6+e0LRXW/Ja1yAcJeepGcTwIP0opnXZBQOm8PBQ2SA=="; 7187 7133 }; 7188 7134 }; 7189 - "@parcel/fs-search-2.4.1" = { 7135 + "@parcel/fs-search-2.5.0" = { 7190 7136 name = "_at_parcel_slash_fs-search"; 7191 7137 packageName = "@parcel/fs-search"; 7192 - version = "2.4.1"; 7138 + version = "2.5.0"; 7193 7139 src = fetchurl { 7194 - url = "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.4.1.tgz"; 7195 - sha512 = "xfoLvHjHkZm4VZf3UWU5v6gzz+x7IBVY7siHGn0YyGwvlv73FmiR4mCSizqerXOyXknF2fpg6tNHNQyyNLS32Q=="; 7140 + url = "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.5.0.tgz"; 7141 + sha512 = "uBONkz9ZCNSOqbPGWJY3MNl+pqBTfvzHH9+4UhzHEHPArvK2oD0+syYPVE60+zGrxybXTESYMCJp4bHvH6Z2hA=="; 7196 7142 }; 7197 7143 }; 7198 - "@parcel/graph-2.4.1" = { 7144 + "@parcel/graph-2.5.0" = { 7199 7145 name = "_at_parcel_slash_graph"; 7200 7146 packageName = "@parcel/graph"; 7201 - version = "2.4.1"; 7147 + version = "2.5.0"; 7202 7148 src = fetchurl { 7203 - url = "https://registry.npmjs.org/@parcel/graph/-/graph-2.4.1.tgz"; 7204 - sha512 = "3JCnPI9BJdKpGIk6NtVN7ML3C/J9Ey+WfUfk8WisDxFP7vjYkXwZbNSR/HnxH+Y03wmB6cv4HI8A4kndF0H0pw=="; 7149 + url = "https://registry.npmjs.org/@parcel/graph/-/graph-2.5.0.tgz"; 7150 + sha512 = "qa2VtG08dJyTaWrxYAkMIlkoDRSPoiqLDNxxHKplkcxAjXBUw0/AkWaz82VO5r1G6jfOj+nM30ajH9uygZYwbw=="; 7205 7151 }; 7206 7152 }; 7207 - "@parcel/hash-2.4.1" = { 7153 + "@parcel/hash-2.5.0" = { 7208 7154 name = "_at_parcel_slash_hash"; 7209 7155 packageName = "@parcel/hash"; 7210 - version = "2.4.1"; 7156 + version = "2.5.0"; 7211 7157 src = fetchurl { 7212 - url = "https://registry.npmjs.org/@parcel/hash/-/hash-2.4.1.tgz"; 7213 - sha512 = "Ch1kkFPedef3geapU+XYmAdZY29u3eQXn/twMjowAKkWCmj6wZ+muUgBmOO2uCfK3xys7GycI8jYZcAbF5DVLg=="; 7158 + url = "https://registry.npmjs.org/@parcel/hash/-/hash-2.5.0.tgz"; 7159 + sha512 = "47JL0XpB7UvIW6Ijf8vv+yVMt9dLvB/lRlBHFmAkmovisueVMVbYD7smxVZnCSehD8UH8BcymKbMzyL5dimgoQ=="; 7214 7160 }; 7215 7161 }; 7216 7162 "@parcel/logger-1.11.1" = { ··· 7222 7168 sha512 = "9NF3M6UVeP2udOBDILuoEHd8VrF4vQqoWHEafymO1pfSoOMfxrSJZw1MfyAAIUN/IFp9qjcpDCUbDZB+ioVevA=="; 7223 7169 }; 7224 7170 }; 7225 - "@parcel/logger-2.4.1" = { 7171 + "@parcel/logger-2.5.0" = { 7226 7172 name = "_at_parcel_slash_logger"; 7227 7173 packageName = "@parcel/logger"; 7228 - version = "2.4.1"; 7174 + version = "2.5.0"; 7229 7175 src = fetchurl { 7230 - url = "https://registry.npmjs.org/@parcel/logger/-/logger-2.4.1.tgz"; 7231 - sha512 = "wm7FoKY+1dyo+Dd7Z4b0d6hmpgRBWfZwCoZSSyhgbG96Ty68/oo3m7oEMXPfry8IVGIhShmWKDp4py44PH3l7w=="; 7176 + url = "https://registry.npmjs.org/@parcel/logger/-/logger-2.5.0.tgz"; 7177 + sha512 = "pT1L3ceH6trL1N3I3r2HawPjz/PCubOo/Kazu7IeXsMsKVjj1a6AeieZHzkNZIbhiGPtm/cHbBNLz2zTWDLeOA=="; 7232 7178 }; 7233 7179 }; 7234 - "@parcel/markdown-ansi-2.4.1" = { 7180 + "@parcel/markdown-ansi-2.5.0" = { 7235 7181 name = "_at_parcel_slash_markdown-ansi"; 7236 7182 packageName = "@parcel/markdown-ansi"; 7237 - version = "2.4.1"; 7183 + version = "2.5.0"; 7238 7184 src = fetchurl { 7239 - url = "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.4.1.tgz"; 7240 - sha512 = "BkWhzbKQhTQ9lS96ZMMG0KyXSJBFdNeBVobWrdrrwcFlNER0nt2m6fdF7Hfpf1TqFhM4tT+GNFtON7ybL53RiQ=="; 7185 + url = "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.5.0.tgz"; 7186 + sha512 = "ixkNF3KWIqxMlfxTe9Gb2cp/uNmklQev8VEUxujMVxmUfGyQs4859zdJIQlIinabWYhArhsXATkVf3MzCUN6TQ=="; 7241 7187 }; 7242 7188 }; 7243 - "@parcel/namer-default-2.4.1" = { 7189 + "@parcel/namer-default-2.5.0" = { 7244 7190 name = "_at_parcel_slash_namer-default"; 7245 7191 packageName = "@parcel/namer-default"; 7246 - version = "2.4.1"; 7192 + version = "2.5.0"; 7247 7193 src = fetchurl { 7248 - url = "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.4.1.tgz"; 7249 - sha512 = "a/Xulfia7JJP6Cw/D6Wq5xX6IAKVKMRPEYtU2wB8vKuwC/et6kXi+0bFVeCLnTjDzVtsjDdyOEwfRC4yiEy3BA=="; 7194 + url = "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.5.0.tgz"; 7195 + sha512 = "ahGQqHJzsWE5Qux8zXMAU+lyNBOl+ZpcOFzRGE2DWOsmAlytsHl7DBVCQvzUyNBFg1/HmIj+7D4efv2kjR7rTg=="; 7250 7196 }; 7251 7197 }; 7252 - "@parcel/node-resolver-core-2.4.1" = { 7198 + "@parcel/node-resolver-core-2.5.0" = { 7253 7199 name = "_at_parcel_slash_node-resolver-core"; 7254 7200 packageName = "@parcel/node-resolver-core"; 7255 - version = "2.4.1"; 7201 + version = "2.5.0"; 7256 7202 src = fetchurl { 7257 - url = "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.4.1.tgz"; 7258 - sha512 = "CvCADj3l4o5USqz/ZCaqbK8gdAQK63q94oSa0KnP6hrcDI/gDyf5Bk4+3cD4kSI+ByuN6aFLAYBS2nHBh5O/MQ=="; 7203 + url = "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.5.0.tgz"; 7204 + sha512 = "XQvpguiIwQcu75cscLDFOVhjsjuPzXbuMaaZ7XxxUEl0PscIgu/GfKYxTfTruN3cRl+CaQH6qBAMfjLaFng6lQ=="; 7259 7205 }; 7260 7206 }; 7261 - "@parcel/optimizer-css-2.4.1" = { 7207 + "@parcel/optimizer-css-2.5.0" = { 7262 7208 name = "_at_parcel_slash_optimizer-css"; 7263 7209 packageName = "@parcel/optimizer-css"; 7264 - version = "2.4.1"; 7210 + version = "2.5.0"; 7265 7211 src = fetchurl { 7266 - url = "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.4.1.tgz"; 7267 - sha512 = "+1CxZ43aoAUF8Hj2wLPK4d+TzdJlgYidXJ19Qwlh6XdQs8OeFGBAzIsUBFSr8+XCugXmnTkjYK94nX04Z2FhtQ=="; 7212 + url = "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.5.0.tgz"; 7213 + sha512 = "J00bLF+4SsnKc+YbYrNuBr44/zz3cg++CoXteXhH27PxP1rScGQx36Rui8WORgil5mlX2VYN79DuqJC7V3Ynbg=="; 7268 7214 }; 7269 7215 }; 7270 - "@parcel/optimizer-htmlnano-2.4.1" = { 7216 + "@parcel/optimizer-htmlnano-2.5.0" = { 7271 7217 name = "_at_parcel_slash_optimizer-htmlnano"; 7272 7218 packageName = "@parcel/optimizer-htmlnano"; 7273 - version = "2.4.1"; 7219 + version = "2.5.0"; 7274 7220 src = fetchurl { 7275 - url = "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.4.1.tgz"; 7276 - sha512 = "JkykHZcBS92iggT7GHuJJd+MDIc7BMAG0xxTJIY9KzzcxGNYsY8P3LedGVTL0/X8tkdlYQSGNLkTCntP0/62cw=="; 7221 + url = "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.5.0.tgz"; 7222 + sha512 = "Fr0zPqgxoNaOVdROAjNGDWCts3+wByNQ82Mxhu8Tzc25A2cPjcr1H2sa/TE3hf79c92DxdKf2FaC1ZOgR5YPdg=="; 7277 7223 }; 7278 7224 }; 7279 - "@parcel/optimizer-image-2.4.1" = { 7225 + "@parcel/optimizer-image-2.5.0" = { 7280 7226 name = "_at_parcel_slash_optimizer-image"; 7281 7227 packageName = "@parcel/optimizer-image"; 7282 - version = "2.4.1"; 7228 + version = "2.5.0"; 7283 7229 src = fetchurl { 7284 - url = "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.4.1.tgz"; 7285 - sha512 = "cv03Ta1FWuF75o9DJLuk1eYk1ULSdSbSkriQUAzc4InKW1bJH6gJasMZSTBsAg2Oz1TWqiDyiy5D/6i/UPoBJg=="; 7230 + url = "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.5.0.tgz"; 7231 + sha512 = "nbo2pdnAt21WLGjzTpsE8ZEL0xNoP7c3wBj9y70Pysmasg1SrRVCbfE8jTy+lHBQwq2yjC6lV/Usv+9lfA7S/w=="; 7286 7232 }; 7287 7233 }; 7288 - "@parcel/optimizer-svgo-2.4.1" = { 7234 + "@parcel/optimizer-svgo-2.5.0" = { 7289 7235 name = "_at_parcel_slash_optimizer-svgo"; 7290 7236 packageName = "@parcel/optimizer-svgo"; 7291 - version = "2.4.1"; 7237 + version = "2.5.0"; 7292 7238 src = fetchurl { 7293 - url = "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.4.1.tgz"; 7294 - sha512 = "sOiofvHXjwJDu0NnTO8gGKDv0BztykVczfJdcedYmj207uU71JG1uODZvhyY4uiw1eRqmZnIXELZIftvYnZnDA=="; 7239 + url = "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.5.0.tgz"; 7240 + sha512 = "pgZqwU0RLc/wr4WcQY/W1GJmddnEANDEpz1mdppUOqBz1EfTQ7zh5NgUA3hV1i05Hbecp3mHSvXJPV0mhNOl5Q=="; 7295 7241 }; 7296 7242 }; 7297 - "@parcel/optimizer-terser-2.4.1" = { 7243 + "@parcel/optimizer-terser-2.5.0" = { 7298 7244 name = "_at_parcel_slash_optimizer-terser"; 7299 7245 packageName = "@parcel/optimizer-terser"; 7300 - version = "2.4.1"; 7246 + version = "2.5.0"; 7301 7247 src = fetchurl { 7302 - url = "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.4.1.tgz"; 7303 - sha512 = "naRdp6gApWHUI1FCBZEJs9NzNngjZx8hRhIHeQtTxWpc2Mu8cVzxbVHNAwUj10nW3iOYmxyj4wleOArl8xpVCQ=="; 7248 + url = "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.5.0.tgz"; 7249 + sha512 = "PZ3UHBGfjE49/Jloopsd38Hxg4qzsrdepWP53mCuVP7Aw605Y4QtYuB1ho3VV0oXfKQVq+uI7lVIBsuW4K6vqA=="; 7304 7250 }; 7305 7251 }; 7306 - "@parcel/package-manager-2.4.1" = { 7252 + "@parcel/package-manager-2.5.0" = { 7307 7253 name = "_at_parcel_slash_package-manager"; 7308 7254 packageName = "@parcel/package-manager"; 7309 - version = "2.4.1"; 7255 + version = "2.5.0"; 7310 7256 src = fetchurl { 7311 - url = "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.4.1.tgz"; 7312 - sha512 = "JUUinm4U3hy4epHl9A389xb+BGiFR8n9+qw3Z4UDfS1te43sh8+0virBGcnai/G7mlr5/vHW+l9xulc7WQaY6w=="; 7257 + url = "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.5.0.tgz"; 7258 + sha512 = "zTuF55/lITUjw9dUU/X0HiF++589xbPXw/zUiG9T6s8BQThLvrxAhYP89S719pw7cTqDimGkTxnIuK+a0djEkg=="; 7313 7259 }; 7314 7260 }; 7315 - "@parcel/packager-css-2.4.1" = { 7261 + "@parcel/packager-css-2.5.0" = { 7316 7262 name = "_at_parcel_slash_packager-css"; 7317 7263 packageName = "@parcel/packager-css"; 7318 - version = "2.4.1"; 7264 + version = "2.5.0"; 7319 7265 src = fetchurl { 7320 - url = "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.4.1.tgz"; 7321 - sha512 = "COx6RvHbpZ3DzuAgB/XvLLR/luxn9kYhqdFrnmIlYBh4B9atfXyr4rKDlWj1W/r2R72R6LHM35KhkwUATmrC/w=="; 7266 + url = "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.5.0.tgz"; 7267 + sha512 = "c0mGBFdVSPhAxaX3+zN8KEIqOOUhkIPKbZex1pnGYfy03Qe2/Mb4nyt5DAGlw9gjka1UCHIN/wszLmKC8YyUeg=="; 7322 7268 }; 7323 7269 }; 7324 - "@parcel/packager-html-2.4.1" = { 7270 + "@parcel/packager-html-2.5.0" = { 7325 7271 name = "_at_parcel_slash_packager-html"; 7326 7272 packageName = "@parcel/packager-html"; 7327 - version = "2.4.1"; 7273 + version = "2.5.0"; 7328 7274 src = fetchurl { 7329 - url = "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.4.1.tgz"; 7330 - sha512 = "F5/PmWKoz8JhToufnp3u+NQ4LUoVkabzIJYHyQrM858XVmNbMInRfiTYxtgCBa2ARm2BTPhToh7N01OEyFCOhA=="; 7275 + url = "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.5.0.tgz"; 7276 + sha512 = "ZFGUPRMWKrm8kQHdkEJ5S22C05qpSymx+o+57EfuNjCrGyj3M59WyGYYXYJ175bFYZ/jp5yy+VxMh6fZefe+Pw=="; 7331 7277 }; 7332 7278 }; 7333 - "@parcel/packager-js-2.4.1" = { 7279 + "@parcel/packager-js-2.5.0" = { 7334 7280 name = "_at_parcel_slash_packager-js"; 7335 7281 packageName = "@parcel/packager-js"; 7336 - version = "2.4.1"; 7282 + version = "2.5.0"; 7337 7283 src = fetchurl { 7338 - url = "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.4.1.tgz"; 7339 - sha512 = "broWBUQisJLF5ThFtnl/asypuLMlMBwFPBTr8Ho9FYlL6W4wUzIymu7eOcuDljstmbD6luNVGMdCBYqt3IhHmw=="; 7284 + url = "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.5.0.tgz"; 7285 + sha512 = "aJAKOTgXdxO3V9O7+2DCVOtne128WwXmUAOVThnMRo7f3zMVSAR7Mxc9pEsuTzPfj8UBXgFBRfdJUSCgsMxiSw=="; 7340 7286 }; 7341 7287 }; 7342 - "@parcel/packager-raw-2.4.1" = { 7288 + "@parcel/packager-raw-2.5.0" = { 7343 7289 name = "_at_parcel_slash_packager-raw"; 7344 7290 packageName = "@parcel/packager-raw"; 7345 - version = "2.4.1"; 7291 + version = "2.5.0"; 7346 7292 src = fetchurl { 7347 - url = "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.4.1.tgz"; 7348 - sha512 = "4lCY3TjiYaZyRIqshNF21i6XkQ5PJyr+ahhK4O2IymuYuD8/wGH2amTZqKPpGLuiF3j1HskRRUNv1ekpvExJ8w=="; 7293 + url = "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.5.0.tgz"; 7294 + sha512 = "aHV0oogeiqxhxS1lsttw15EvG3DDWK3FV7+F+7hoaAy+xg89K56NTp6j43Jtw9iyU1/HnZRGBE2hF3C7N73oKw=="; 7349 7295 }; 7350 7296 }; 7351 - "@parcel/packager-svg-2.4.1" = { 7297 + "@parcel/packager-svg-2.5.0" = { 7352 7298 name = "_at_parcel_slash_packager-svg"; 7353 7299 packageName = "@parcel/packager-svg"; 7354 - version = "2.4.1"; 7300 + version = "2.5.0"; 7355 7301 src = fetchurl { 7356 - url = "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.4.1.tgz"; 7357 - sha512 = "V7GW/dgJPqXHReTzwpLcNEdyT5WWveYOW1MfxvKgOOK1ENk6oPgXL0FUdm5IHzqlK1bbwF5hzSQs2vaJMv7rPg=="; 7302 + url = "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.5.0.tgz"; 7303 + sha512 = "XSMFn30K/kpjcPpQqt88GmPJsNUSVL3RNeigXkIAcLpfO6Tb2eV4iOt4yVCagaDrRJ19alXut0TxjMm5bm41/g=="; 7358 7304 }; 7359 7305 }; 7360 - "@parcel/plugin-2.4.1" = { 7306 + "@parcel/plugin-2.5.0" = { 7361 7307 name = "_at_parcel_slash_plugin"; 7362 7308 packageName = "@parcel/plugin"; 7363 - version = "2.4.1"; 7309 + version = "2.5.0"; 7364 7310 src = fetchurl { 7365 - url = "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.4.1.tgz"; 7366 - sha512 = "EJzNhwNWYuSpIPRlG1U2hKcovq/RsVie4Os1z51/e2dcCto/uAoJOMoWYYsCxtjkJ7BjFYyQ7fcZRKM9DEr6gQ=="; 7311 + url = "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.5.0.tgz"; 7312 + sha512 = "obtb6/Gql6YFQ86bdv75A2Noabx8679reFZeyfKKf0L7Lppx4DFQetXwM9XVy7Gx6hJ1Ekm3UMuuIyVJk33YHQ=="; 7367 7313 }; 7368 7314 }; 7369 - "@parcel/reporter-cli-2.4.1" = { 7315 + "@parcel/reporter-cli-2.5.0" = { 7370 7316 name = "_at_parcel_slash_reporter-cli"; 7371 7317 packageName = "@parcel/reporter-cli"; 7372 - version = "2.4.1"; 7318 + version = "2.5.0"; 7373 7319 src = fetchurl { 7374 - url = "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.4.1.tgz"; 7375 - sha512 = "99v/dSQ6wYmfpjmBxbsuBoxPWu9bm7PRxDDJxiVapbbym50bWYwVmMEHj6mYnK151YbMssV0garrSs1yYQEvqw=="; 7320 + url = "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.5.0.tgz"; 7321 + sha512 = "miJt2YbRJBmYSVeoUWUj8YL85Pwj1CmGQB0/btqhulGLH/Fvkbv6T4sJ4gl4l5xIt9mJQsZ70pOWwa8BId3rWw=="; 7376 7322 }; 7377 7323 }; 7378 - "@parcel/reporter-dev-server-2.4.1" = { 7324 + "@parcel/reporter-dev-server-2.5.0" = { 7379 7325 name = "_at_parcel_slash_reporter-dev-server"; 7380 7326 packageName = "@parcel/reporter-dev-server"; 7381 - version = "2.4.1"; 7327 + version = "2.5.0"; 7382 7328 src = fetchurl { 7383 - url = "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.4.1.tgz"; 7384 - sha512 = "tRz1LHiudDhujBC3kJ3Qm0Wnbo3p3SpE6fjyCFRhdv2PJnEufNTTwzEUoa7lYZACwFVQUtrh6F7nMXFw6ynrsQ=="; 7329 + url = "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.5.0.tgz"; 7330 + sha512 = "wvxAiW42AxJ3B8jtvowJcP4/cTV8zY48SfKg61YKYu1yUO+TtyJIjHQzDW2XuT34cIGFY97Gr0i+AVu44RyUuQ=="; 7385 7331 }; 7386 7332 }; 7387 - "@parcel/resolver-default-2.4.1" = { 7333 + "@parcel/resolver-default-2.5.0" = { 7388 7334 name = "_at_parcel_slash_resolver-default"; 7389 7335 packageName = "@parcel/resolver-default"; 7390 - version = "2.4.1"; 7336 + version = "2.5.0"; 7391 7337 src = fetchurl { 7392 - url = "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.4.1.tgz"; 7393 - sha512 = "iJRt1+7lk0n7+wb+S/tVyiObbaiYP1YQGKRsTE8y4Kgp4/OPukdUHGFJwzbojWa0HnyoXm3zEgelVz7cHl47fQ=="; 7338 + url = "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.5.0.tgz"; 7339 + sha512 = "39PkZpVr/+iYS11u+lA84vIsKm/yisltTVmUjlYsDnExiuV1c8OSbSdYZ3JMx+7CYPE0bWbosX2AGilIwIMWpQ=="; 7394 7340 }; 7395 7341 }; 7396 - "@parcel/runtime-browser-hmr-2.4.1" = { 7342 + "@parcel/runtime-browser-hmr-2.5.0" = { 7397 7343 name = "_at_parcel_slash_runtime-browser-hmr"; 7398 7344 packageName = "@parcel/runtime-browser-hmr"; 7399 - version = "2.4.1"; 7345 + version = "2.5.0"; 7400 7346 src = fetchurl { 7401 - url = "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.4.1.tgz"; 7402 - sha512 = "INsr78Kn0OuwMdXHCzw7v6l3Gf/UBTYtX7N7JNDOIBEFFkuZQiFWyAOI2P/DvMm8qeqcsrKliBO5Xty/a2Ivaw=="; 7347 + url = "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.5.0.tgz"; 7348 + sha512 = "oPAo8Zf06gXCpt41nyvK7kv2HH1RrHAGgOqttyjStwAFlm5MZKs7BgtJzO58LfJN8g3sMY0cNdG17fB/4f8q6Q=="; 7403 7349 }; 7404 7350 }; 7405 - "@parcel/runtime-js-2.4.1" = { 7351 + "@parcel/runtime-js-2.5.0" = { 7406 7352 name = "_at_parcel_slash_runtime-js"; 7407 7353 packageName = "@parcel/runtime-js"; 7408 - version = "2.4.1"; 7354 + version = "2.5.0"; 7409 7355 src = fetchurl { 7410 - url = "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.4.1.tgz"; 7411 - sha512 = "/EXwRpo+GPvWgN5yD0hjjt84Gm6QWp757dqOOzTG5R2rm1WU+g1a+zJJB1zXkxhu9lleQs44D1jEffzhh2Voyw=="; 7356 + url = "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.5.0.tgz"; 7357 + sha512 = "gPC2PbNAiooULP71wF5twe4raekuXsR1Hw/ahITDoqsZdXHzG3CkoCjYL3CkmBGiKQgMMocCyN1E2oBzAH8Kyw=="; 7412 7358 }; 7413 7359 }; 7414 - "@parcel/runtime-react-refresh-2.4.1" = { 7360 + "@parcel/runtime-react-refresh-2.5.0" = { 7415 7361 name = "_at_parcel_slash_runtime-react-refresh"; 7416 7362 packageName = "@parcel/runtime-react-refresh"; 7417 - version = "2.4.1"; 7363 + version = "2.5.0"; 7418 7364 src = fetchurl { 7419 - url = "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.4.1.tgz"; 7420 - sha512 = "a4GBQ/fO7Mklh1M1G2JVpJBPbZD7YXUPAzh9Y4vpCf0ouTHBRMc8ew4CyKPJIrrTly5P42tFWnD3P4FVNKwHOQ=="; 7365 + url = "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.5.0.tgz"; 7366 + sha512 = "+8RuDKFdFYIQTrXG4MRhG9XqkkYEHn0zxKyOJ/IkDDfSEhY0na+EyhrneFUwIvDX63gLPkxceXAg0gwBqXPK/Q=="; 7421 7367 }; 7422 7368 }; 7423 - "@parcel/runtime-service-worker-2.4.1" = { 7369 + "@parcel/runtime-service-worker-2.5.0" = { 7424 7370 name = "_at_parcel_slash_runtime-service-worker"; 7425 7371 packageName = "@parcel/runtime-service-worker"; 7426 - version = "2.4.1"; 7372 + version = "2.5.0"; 7427 7373 src = fetchurl { 7428 - url = "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.4.1.tgz"; 7429 - sha512 = "WtMKSiyQ0kF78rBw0XIx7n65mMb+6GBx+5m49r1aVZzeZEOSynpjJzJvqo7rxVmA7qTDkD2bko7BH41iScsEaw=="; 7374 + url = "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.5.0.tgz"; 7375 + sha512 = "STuDlU0fPXeWpAmbayY7o04F0eHy6FTOFeT5KQ0PTxtdEa3Ey8QInP/NVE52Yv0aVQtesWukGrNEFCERlkbFRw=="; 7430 7376 }; 7431 7377 }; 7432 7378 "@parcel/source-map-2.0.2" = { ··· 7438 7384 sha512 = "NnUrPYLpYB6qyx2v6bcRPn/gVigmGG6M6xL8wIg/i0dP1GLkuY1nf+Hqdf63FzPTqqT7K3k6eE5yHPQVMO5jcA=="; 7439 7385 }; 7440 7386 }; 7441 - "@parcel/transformer-babel-2.4.1" = { 7387 + "@parcel/transformer-babel-2.5.0" = { 7442 7388 name = "_at_parcel_slash_transformer-babel"; 7443 7389 packageName = "@parcel/transformer-babel"; 7444 - version = "2.4.1"; 7390 + version = "2.5.0"; 7445 7391 src = fetchurl { 7446 - url = "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.4.1.tgz"; 7447 - sha512 = "S+L14Fdr+S/+hqOi2nqnhuJvBbEJW24KyQeLmdaoMkt7DQLy5zENjGb9U2WYgB0Q96au0vX8NgB6jOnONecnpg=="; 7392 + url = "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.5.0.tgz"; 7393 + sha512 = "EFb866C9jCoBHIcebWF7goAcYj1wkObx0GDxshlazFtvym1RM27xSWWjRYyqb5+HNOxB3voaNvQOVjcD+DXjCA=="; 7448 7394 }; 7449 7395 }; 7450 - "@parcel/transformer-css-2.4.1" = { 7396 + "@parcel/transformer-css-2.5.0" = { 7451 7397 name = "_at_parcel_slash_transformer-css"; 7452 7398 packageName = "@parcel/transformer-css"; 7453 - version = "2.4.1"; 7399 + version = "2.5.0"; 7454 7400 src = fetchurl { 7455 - url = "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.4.1.tgz"; 7456 - sha512 = "+6wCc0eEg4ez96Mucp/RjYKyRVN+7HPWPH7axalsQdp88t7wawWoqI2nd2mEw2PxpyuejIsk0ixLzYZ5opZivw=="; 7401 + url = "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.5.0.tgz"; 7402 + sha512 = "p8FOvKWWSbS6H8PbD9a0KZqyaKNpSD2BUTzSRYnNj3TBUv7/ZXaP6Om295XTQ/MPht1o7XTQzvfpF/7yEhr02Q=="; 7457 7403 }; 7458 7404 }; 7459 - "@parcel/transformer-html-2.4.1" = { 7405 + "@parcel/transformer-html-2.5.0" = { 7460 7406 name = "_at_parcel_slash_transformer-html"; 7461 7407 packageName = "@parcel/transformer-html"; 7462 - version = "2.4.1"; 7408 + version = "2.5.0"; 7463 7409 src = fetchurl { 7464 - url = "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.4.1.tgz"; 7465 - sha512 = "jyteTWuBA+f5wXn1RmAq3gOnB3yy41c748vARU9uNEXkLB4a7R106w4e5dlTG1DJfk+Tw1okSe1p2BeHoZntAw=="; 7410 + url = "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.5.0.tgz"; 7411 + sha512 = "iEjNyAF0wQmY3DMw7FS+UzoOMng76UsSngh+WWA1E5lv5XyqrP8Mk2QLTJp1nWetUhSLhZr58LGmPYBTB4l9ZQ=="; 7466 7412 }; 7467 7413 }; 7468 - "@parcel/transformer-image-2.4.1" = { 7414 + "@parcel/transformer-image-2.5.0" = { 7469 7415 name = "_at_parcel_slash_transformer-image"; 7470 7416 packageName = "@parcel/transformer-image"; 7471 - version = "2.4.1"; 7417 + version = "2.5.0"; 7472 7418 src = fetchurl { 7473 - url = "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.4.1.tgz"; 7474 - sha512 = "pOfgPVe13lMTKdzydjXXNl4bojVMmuQmwm44OZ9cmpwOD3phkZzCtrxgySoV1eRBCOipdQg1O6GGI3za1KNdvw=="; 7419 + url = "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.5.0.tgz"; 7420 + sha512 = "vVEXTHZl8m/9yopgK0dWHLOQX2zOnghq6pZnWdWVG6fsvXZln7kP1YN5iwWDoADQYkiKzP+Ymn6UwP9pZpHFzA=="; 7475 7421 }; 7476 7422 }; 7477 - "@parcel/transformer-js-2.4.1" = { 7423 + "@parcel/transformer-js-2.5.0" = { 7478 7424 name = "_at_parcel_slash_transformer-js"; 7479 7425 packageName = "@parcel/transformer-js"; 7480 - version = "2.4.1"; 7426 + version = "2.5.0"; 7481 7427 src = fetchurl { 7482 - url = "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.4.1.tgz"; 7483 - sha512 = "39Y9RUuDk5dc09Z3Pgj8snQd5E8926IqOowdTLKNJr7EcmkwHdinbpI4EqgKnisOwX4NSzxUti1I2DHsP1QZHw=="; 7428 + url = "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.5.0.tgz"; 7429 + sha512 = "Cp8Ic+Au3OcskCRZszmo47z3bqcZ7rfPv2xZYXpXY2TzEc3IV0bKje57bZektoY8LW9LkYM9iBO/WhkVoT6LIg=="; 7484 7430 }; 7485 7431 }; 7486 - "@parcel/transformer-json-2.4.1" = { 7432 + "@parcel/transformer-json-2.5.0" = { 7487 7433 name = "_at_parcel_slash_transformer-json"; 7488 7434 packageName = "@parcel/transformer-json"; 7489 - version = "2.4.1"; 7435 + version = "2.5.0"; 7490 7436 src = fetchurl { 7491 - url = "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.4.1.tgz"; 7492 - sha512 = "bAwKyWb2/Wm6GS7OpQg1lWgcq+VDBXTKy5oFGX3edbpZFsrb59Ln1v+1jI888zRq4ehDBybhx8WTxPKTJnU+jA=="; 7437 + url = "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.5.0.tgz"; 7438 + sha512 = "661sByA7TkR6Lmxt+hqV4h2SAt+7lgc58DzmUYArpEl1fQnMuQuaB0kQeHzi6fDD2+2G6o7EC+DuwBZKa479TA=="; 7493 7439 }; 7494 7440 }; 7495 - "@parcel/transformer-postcss-2.4.1" = { 7441 + "@parcel/transformer-postcss-2.5.0" = { 7496 7442 name = "_at_parcel_slash_transformer-postcss"; 7497 7443 packageName = "@parcel/transformer-postcss"; 7498 - version = "2.4.1"; 7444 + version = "2.5.0"; 7499 7445 src = fetchurl { 7500 - url = "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.4.1.tgz"; 7501 - sha512 = "I+jauarY5RlDUcd0zb9CC4GlpA7/+FqNSqCaGrM73aoszh6FNs4GiwD5tgy0pKOEASBZ0fBPmHEG1OBiVBXRGg=="; 7446 + url = "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.5.0.tgz"; 7447 + sha512 = "IPNlWElekdQHMTBqhdwJNBCQomuYyo7xgNBdnTrt9VJ+R5ihy6n7ZJSWIAJXAH9VZxETTtunfrzRtgkmtjTeZQ=="; 7502 7448 }; 7503 7449 }; 7504 - "@parcel/transformer-posthtml-2.4.1" = { 7450 + "@parcel/transformer-posthtml-2.5.0" = { 7505 7451 name = "_at_parcel_slash_transformer-posthtml"; 7506 7452 packageName = "@parcel/transformer-posthtml"; 7507 - version = "2.4.1"; 7453 + version = "2.5.0"; 7508 7454 src = fetchurl { 7509 - url = "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.4.1.tgz"; 7510 - sha512 = "DNtS41Sew940vnnqlFS0QK3ZbjQqCGT8JXkvwFojIrdH+3BW/n/9Hrtxj+X/bxrlwZlsRiqiRJ7crXp7TVhx2g=="; 7455 + url = "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.5.0.tgz"; 7456 + sha512 = "AZxg1XD8OXOS4bEGEmBBR+X9T9qoFdVsbVUg498zzejYSka1ZQHF7TgLI/+pUnE+ZVYNIp7/G0xXqsRVKMKmdQ=="; 7511 7457 }; 7512 7458 }; 7513 - "@parcel/transformer-raw-2.4.1" = { 7459 + "@parcel/transformer-raw-2.5.0" = { 7514 7460 name = "_at_parcel_slash_transformer-raw"; 7515 7461 packageName = "@parcel/transformer-raw"; 7516 - version = "2.4.1"; 7462 + version = "2.5.0"; 7517 7463 src = fetchurl { 7518 - url = "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.4.1.tgz"; 7519 - sha512 = "0PzdWJSGSTQ522aohymHEnq4GABy0mHSs+LkPZyMfNmX9ZAIyy6XuFJ9dz8nUmP4Nhn8qDvbRjoAYXR3XsGDGQ=="; 7464 + url = "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.5.0.tgz"; 7465 + sha512 = "I3zjE1u9+Wj90Qqs1V2FTm6iC6SAyOVUthwVZkZey+qbQG/ok682Ez2XjLu7MyQCo9BJNwF/nfOa1hHr3MaJEQ=="; 7520 7466 }; 7521 7467 }; 7522 - "@parcel/transformer-react-refresh-wrap-2.4.1" = { 7468 + "@parcel/transformer-react-refresh-wrap-2.5.0" = { 7523 7469 name = "_at_parcel_slash_transformer-react-refresh-wrap"; 7524 7470 packageName = "@parcel/transformer-react-refresh-wrap"; 7525 - version = "2.4.1"; 7471 + version = "2.5.0"; 7526 7472 src = fetchurl { 7527 - url = "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.4.1.tgz"; 7528 - sha512 = "zF6pzj/BwSiD1jA/BHDCEJnKSIDekjblU+OWp1WpSjA1uYkJORuZ5knLcq6mXOQ8M2NCbOXosc1ru8071i8sYA=="; 7473 + url = "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.5.0.tgz"; 7474 + sha512 = "VPqVBxhTN4OQwcjsdyxrv+smjAm4s6dbSWAplgPwdOITMv+a0tjhhJU37WnRC+xxTrbEqRcOt96JvGOkPb8i7g=="; 7529 7475 }; 7530 7476 }; 7531 - "@parcel/transformer-svg-2.4.1" = { 7477 + "@parcel/transformer-svg-2.5.0" = { 7532 7478 name = "_at_parcel_slash_transformer-svg"; 7533 7479 packageName = "@parcel/transformer-svg"; 7534 - version = "2.4.1"; 7480 + version = "2.5.0"; 7535 7481 src = fetchurl { 7536 - url = "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.4.1.tgz"; 7537 - sha512 = "E0XdXsZOnP7g9zvJskfvXeIHx9pKjPHtLKo/txmpjW1eXOmsFcRMVy6l4pFh+kBciAgiZOI6o1pVHt+Uf7ia/g=="; 7482 + url = "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.5.0.tgz"; 7483 + sha512 = "zCGJcrCpICFe0Q/dgjQZfW7sYFkbJEC7NGT4zEJnMo8Cm/kq8Qh6+2ApX6c+vv5Q0WZn5Ic+N0OvxIMkvgdC/w=="; 7538 7484 }; 7539 7485 }; 7540 - "@parcel/types-2.4.1" = { 7486 + "@parcel/types-2.5.0" = { 7541 7487 name = "_at_parcel_slash_types"; 7542 7488 packageName = "@parcel/types"; 7543 - version = "2.4.1"; 7489 + version = "2.5.0"; 7544 7490 src = fetchurl { 7545 - url = "https://registry.npmjs.org/@parcel/types/-/types-2.4.1.tgz"; 7546 - sha512 = "YqkiyGS8oiD89Z2lJP7sbjn0F0wlSJMAuqgqf7obeKj0zmZJS7n2xK0uUEuIlUO+Cbqgl0kCGsUSjuT8xcEqjg=="; 7491 + url = "https://registry.npmjs.org/@parcel/types/-/types-2.5.0.tgz"; 7492 + sha512 = "bA0fhG6aXSGYEVo5Dt96x6lseUQHeVZVzgmiRdZsvb614Gvx22ItfaKhPmAVbM9vzbObZDHl9l9G2Ovw8Xve4g=="; 7547 7493 }; 7548 7494 }; 7549 7495 "@parcel/utils-1.11.0" = { ··· 7555 7501 sha512 = "cA3p4jTlaMeOtAKR/6AadanOPvKeg8VwgnHhOyfi0yClD0TZS/hi9xu12w4EzA/8NtHu0g6o4RDfcNjqN8l1AQ=="; 7556 7502 }; 7557 7503 }; 7558 - "@parcel/utils-2.4.1" = { 7504 + "@parcel/utils-2.5.0" = { 7559 7505 name = "_at_parcel_slash_utils"; 7560 7506 packageName = "@parcel/utils"; 7561 - version = "2.4.1"; 7507 + version = "2.5.0"; 7562 7508 src = fetchurl { 7563 - url = "https://registry.npmjs.org/@parcel/utils/-/utils-2.4.1.tgz"; 7564 - sha512 = "hmbrnPtFAfMT6s9FMMIVlIzCwEFX/+byB67GoJmSCAMRmj6RMu4a6xKlv2FdzkTKJV2ucg8vxAcua0MQ/q8rkQ=="; 7509 + url = "https://registry.npmjs.org/@parcel/utils/-/utils-2.5.0.tgz"; 7510 + sha512 = "kaLGXtQuOOH55KZqXdYDvczhh3mk2eeTVqrrXuuihGjbLKYFlUW2tFDm+5r2s9nCPwTQxOO43ZEOCKSnia+e4w=="; 7565 7511 }; 7566 7512 }; 7567 7513 "@parcel/watcher-1.12.1" = { ··· 7591 7537 sha512 = "USSjRAAQYsZFlv43FUPdD+jEGML5/8oLF0rUzPQTtK4q9kvaXr49F5ZplyLz5lox78cLZ0TxN2bIDQ1xhOkulQ=="; 7592 7538 }; 7593 7539 }; 7594 - "@parcel/workers-2.4.1" = { 7540 + "@parcel/workers-2.5.0" = { 7595 7541 name = "_at_parcel_slash_workers"; 7596 7542 packageName = "@parcel/workers"; 7597 - version = "2.4.1"; 7543 + version = "2.5.0"; 7598 7544 src = fetchurl { 7599 - url = "https://registry.npmjs.org/@parcel/workers/-/workers-2.4.1.tgz"; 7600 - sha512 = "EYujbJOblFqIt2NGQ+baIYTuavJqbhy84IfZ3j0jmACeKO5Ew1EHXZyl9LJgWHKaIPZsnvnbxw2mDOF05K65xQ=="; 7545 + url = "https://registry.npmjs.org/@parcel/workers/-/workers-2.5.0.tgz"; 7546 + sha512 = "/Ow5OKJWs+9OzV3Jy4J++VnbNx0j3ls/M1CGVBLiBWyCada9DMtquYoBQ4Sk6Uam50BKkIFYetGOeXPNQyyMjg=="; 7601 7547 }; 7602 7548 }; 7603 7549 "@peculiar/asn1-schema-2.1.0" = { ··· 7681 7627 sha512 = "Ip9CcCeUocH61eXu4BUGpvl5KleQyhcUVLpWCv+0ZmDv44bFaDpREqjGHHdRupvPN/ugB6gTlD9b9ewdj02yVA=="; 7682 7628 }; 7683 7629 }; 7684 - "@prisma/prisma-fmt-wasm-3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980" = { 7630 + "@prisma/prisma-fmt-wasm-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b" = { 7685 7631 name = "_at_prisma_slash_prisma-fmt-wasm"; 7686 7632 packageName = "@prisma/prisma-fmt-wasm"; 7687 - version = "3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980"; 7633 + version = "3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b"; 7688 7634 src = fetchurl { 7689 - url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980.tgz"; 7690 - sha512 = "9L+jHXt1zFcnhhcxa+oUBI9r0qh+fNFtDKxndj0C4pnAnGGNevvAo4GZNqWICa8BJbNgiV/XacTMea+98e1Rhw=="; 7635 + url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b.tgz"; 7636 + sha512 = "zCJfpPpH98YJMKbpygHHVqPrDRTO5WhUAgf8hZnUDCu/iWlgW9Zi9dzuFScml+Ns/Jr5XAl1lOTJXK/3IZu9NA=="; 7691 7637 }; 7692 7638 }; 7693 7639 "@protobufjs/aspromise-1.1.2" = { ··· 7798 7744 sha512 = "1ekKViRit0jo1IzDLSRSziU/OpX9ckoj8uWvSWzHLASyTqhKZL9Pdq628guq7yT3qFcJeeaeaA5T97a4w7fpqA=="; 7799 7745 }; 7800 7746 }; 7801 - "@putdotio/api-client-8.31.2" = { 7747 + "@putdotio/api-client-8.32.0" = { 7802 7748 name = "_at_putdotio_slash_api-client"; 7803 7749 packageName = "@putdotio/api-client"; 7804 - version = "8.31.2"; 7750 + version = "8.32.0"; 7805 7751 src = fetchurl { 7806 - url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.31.2.tgz"; 7807 - sha512 = "/pXMWQI2nHn0l9GHcETUZNZ3dYXhYwu91NW6efd/MDxDNtzI1HOt5psGgRx5mcyvLsifp9gzg6MqaeFQm/FtWA=="; 7752 + url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.32.0.tgz"; 7753 + sha512 = "eo4KiXIvDKpU76VK1pQitIJ6neDd81HUCoUGcH+lAtcfN+amQVp8e9cHfYeEvYMj16sr/8wONqG1GayJP2Fr4g=="; 7808 7754 }; 7809 7755 }; 7810 7756 "@reach/router-1.3.4" = { ··· 7816 7762 sha512 = "+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA=="; 7817 7763 }; 7818 7764 }; 7819 - "@react-native-community/cli-debugger-ui-5.0.1" = { 7820 - name = "_at_react-native-community_slash_cli-debugger-ui"; 7821 - packageName = "@react-native-community/cli-debugger-ui"; 7822 - version = "5.0.1"; 7823 - src = fetchurl { 7824 - url = "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-5.0.1.tgz"; 7825 - sha512 = "5gGKaaXYOVE423BUqxIfvfAVSj5Cg1cU/TpGbeg/iqpy2CfqyWqJB3tTuVUbOOiOvR5wbU8tti6pIi1pchJ+oA=="; 7826 - }; 7827 - }; 7828 - "@react-native-community/cli-server-api-5.0.1" = { 7829 - name = "_at_react-native-community_slash_cli-server-api"; 7830 - packageName = "@react-native-community/cli-server-api"; 7831 - version = "5.0.1"; 7832 - src = fetchurl { 7833 - url = "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-5.0.1.tgz"; 7834 - sha512 = "OOxL+y9AOZayQzmSW+h5T54wQe+QBc/f67Y9QlWzzJhkKJdYx+S4VOooHoD5PFJzGbYaxhu2YF17p517pcEIIA=="; 7835 - }; 7836 - }; 7837 - "@react-native-community/cli-tools-5.0.1" = { 7838 - name = "_at_react-native-community_slash_cli-tools"; 7839 - packageName = "@react-native-community/cli-tools"; 7840 - version = "5.0.1"; 7841 - src = fetchurl { 7842 - url = "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-5.0.1.tgz"; 7843 - sha512 = "XOX5w98oSE8+KnkMZZPMRT7I5TaP8fLbDl0tCu40S7Epz+Zz924n80fmdu6nUDIfPT1nV6yH1hmHmWAWTDOR+Q=="; 7844 - }; 7845 - }; 7846 7765 "@react-native/normalize-color-2.0.0" = { 7847 7766 name = "_at_react-native_slash_normalize-color"; 7848 7767 packageName = "@react-native/normalize-color"; ··· 7879 7798 sha512 = "feQEZlyBvQsbT/fvpJ4jJ5OLGaUPpnskHYDsY8DGpPymN+HUeDQrqkBEbbKRwMKidFTI2cxk2kJNNTnvdS9jyw=="; 7880 7799 }; 7881 7800 }; 7882 - "@repeaterjs/repeater-3.0.4" = { 7883 - name = "_at_repeaterjs_slash_repeater"; 7884 - packageName = "@repeaterjs/repeater"; 7885 - version = "3.0.4"; 7886 - src = fetchurl { 7887 - url = "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.4.tgz"; 7888 - sha512 = "AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA=="; 7889 - }; 7890 - }; 7891 7801 "@request/api-0.6.0" = { 7892 7802 name = "_at_request_slash_api"; 7893 7803 packageName = "@request/api"; ··· 7933 7843 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 7934 7844 }; 7935 7845 }; 7936 - "@schematics/angular-13.3.3" = { 7846 + "@schematics/angular-13.3.4" = { 7937 7847 name = "_at_schematics_slash_angular"; 7938 7848 packageName = "@schematics/angular"; 7939 - version = "13.3.3"; 7849 + version = "13.3.4"; 7940 7850 src = fetchurl { 7941 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.3.tgz"; 7942 - sha512 = "kX5ghVCmWHcMN+g0pUaFuIJzwrXsVnK4bfid8DckU4EEtfFSv3UA5I1QNJRgpCPxTPhNEAk+3ePN8nzDSjdU+w=="; 7851 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.4.tgz"; 7852 + sha512 = "Cta11k965Igz2kWj60KQ/9z6RFAg9FjZ8i1TH4nyROJs9nWemWPQNA+OJFuXrEy6Ldpk7yJ5cWgJsyryGB25PA=="; 7943 7853 }; 7944 7854 }; 7945 7855 "@segment/loosely-validate-event-2.0.0" = { ··· 8122 8032 sha512 = "CWr7a3rTVrN5Vs8GYReRAvTourbXHOqB1zglcskj05ICH4GZL5BOAza2ARai+qc3Nz0nY08Bozi1x0014KOqlg=="; 8123 8033 }; 8124 8034 }; 8125 - "@socket.io/base64-arraybuffer-1.0.2" = { 8126 - name = "_at_socket.io_slash_base64-arraybuffer"; 8127 - packageName = "@socket.io/base64-arraybuffer"; 8128 - version = "1.0.2"; 8129 - src = fetchurl { 8130 - url = "https://registry.npmjs.org/@socket.io/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz"; 8131 - sha512 = "dOlCBKnDw4iShaIsH/bxujKTM18+2TOAsYz+KSc11Am38H4q5Xw8Bbz97ZYdrVNM+um3p7w86Bvvmcn9q+5+eQ=="; 8132 - }; 8133 - }; 8134 8035 "@socket.io/component-emitter-3.0.0" = { 8135 8036 name = "_at_socket.io_slash_component-emitter"; 8136 8037 packageName = "@socket.io/component-emitter"; ··· 8140 8041 sha512 = "2pTGuibAXJswAPJjaKisthqS/NOK5ypG4LYT6tEAV0S/mxW0zOIvYvGK0V8w8+SHxAm6vRMSjqSalFXeBAqs+Q=="; 8141 8042 }; 8142 8043 }; 8044 + "@socket.io/component-emitter-3.1.0" = { 8045 + name = "_at_socket.io_slash_component-emitter"; 8046 + packageName = "@socket.io/component-emitter"; 8047 + version = "3.1.0"; 8048 + src = fetchurl { 8049 + url = "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz"; 8050 + sha512 = "+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg=="; 8051 + }; 8052 + }; 8143 8053 "@soda/friendly-errors-webpack-plugin-1.8.1" = { 8144 8054 name = "_at_soda_slash_friendly-errors-webpack-plugin"; 8145 8055 packageName = "@soda/friendly-errors-webpack-plugin"; ··· 8293 8203 sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; 8294 8204 }; 8295 8205 }; 8296 - "@swc/helpers-0.3.8" = { 8206 + "@swc/helpers-0.3.9" = { 8297 8207 name = "_at_swc_slash_helpers"; 8298 8208 packageName = "@swc/helpers"; 8299 - version = "0.3.8"; 8209 + version = "0.3.9"; 8300 8210 src = fetchurl { 8301 - url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.8.tgz"; 8302 - sha512 = "aWItSZvJj4+GI6FWkjZR13xPNPctq2RRakzo+O6vN7bC2yjwdg5EFpgaSAUn95b7BGSgcflvzVDPoKmJv24IOg=="; 8211 + url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.9.tgz"; 8212 + sha512 = "TLzWHAHOrzxauG2uB+5t7fqdom0CDiIbtjJ5zbhnT+SsGmipB767Hrw+d4/si8aS/wrYgWbqjbBR4Y0bxSyLxw=="; 8303 8213 }; 8304 8214 }; 8305 8215 "@szmarczak/http-timer-1.1.2" = { ··· 8527 8437 sha512 = "XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="; 8528 8438 }; 8529 8439 }; 8440 + "@trufflesuite/bigint-buffer-1.1.9" = { 8441 + name = "_at_trufflesuite_slash_bigint-buffer"; 8442 + packageName = "@trufflesuite/bigint-buffer"; 8443 + version = "1.1.9"; 8444 + src = fetchurl { 8445 + url = "https://registry.npmjs.org/@trufflesuite/bigint-buffer/-/bigint-buffer-1.1.9.tgz"; 8446 + sha512 = "bdM5cEGCOhDSwminryHJbRmXc1x7dPKg6Pqns3qyTwFlxsqUgxE29lsERS3PlIW1HTjoIGMUqsk1zQQwST1Yxw=="; 8447 + }; 8448 + }; 8530 8449 "@trysound/sax-0.2.0" = { 8531 8450 name = "_at_trysound_slash_sax"; 8532 8451 packageName = "@trysound/sax"; ··· 8662 8581 sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="; 8663 8582 }; 8664 8583 }; 8665 - "@types/babel__traverse-7.17.0" = { 8584 + "@types/babel__traverse-7.17.1" = { 8666 8585 name = "_at_types_slash_babel__traverse"; 8667 8586 packageName = "@types/babel__traverse"; 8668 - version = "7.17.0"; 8587 + version = "7.17.1"; 8669 8588 src = fetchurl { 8670 - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.0.tgz"; 8671 - sha512 = "r8aveDbd+rzGP+ykSdF3oPuTVRWRfbBiHl0rVDM2yNEmSMXfkObQLV46b4RnCv3Lra51OlfnZhkkFaDl2MIRaA=="; 8589 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz"; 8590 + sha512 = "kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA=="; 8672 8591 }; 8673 8592 }; 8674 8593 "@types/babylon-6.16.6" = { ··· 9364 9283 sha512 = "/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q=="; 9365 9284 }; 9366 9285 }; 9367 - "@types/long-4.0.1" = { 9286 + "@types/long-4.0.2" = { 9368 9287 name = "_at_types_slash_long"; 9369 9288 packageName = "@types/long"; 9370 - version = "4.0.1"; 9289 + version = "4.0.2"; 9371 9290 src = fetchurl { 9372 - url = "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz"; 9373 - sha512 = "5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w=="; 9291 + url = "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz"; 9292 + sha512 = "MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA=="; 9374 9293 }; 9375 9294 }; 9376 9295 "@types/mapbox-gl-0.54.5" = { ··· 9526 9445 sha512 = "Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ=="; 9527 9446 }; 9528 9447 }; 9529 - "@types/node-12.20.48" = { 9448 + "@types/node-12.20.50" = { 9530 9449 name = "_at_types_slash_node"; 9531 9450 packageName = "@types/node"; 9532 - version = "12.20.48"; 9451 + version = "12.20.50"; 9533 9452 src = fetchurl { 9534 - url = "https://registry.npmjs.org/@types/node/-/node-12.20.48.tgz"; 9535 - sha512 = "4kxzqkrpwYtn6okJUcb2lfUu9ilnb3yhUOH6qX3nug8D2DupZ2drIkff2yJzYcNJVl3begnlcaBJ7tqiTTzjnQ=="; 9453 + url = "https://registry.npmjs.org/@types/node/-/node-12.20.50.tgz"; 9454 + sha512 = "+9axpWx2b2JCVovr7Ilgt96uc6C1zBKOQMpGtRbWT9IoR/8ue32GGMfGA4woP8QyP2gBs6GQWEVM3tCybGCxDA=="; 9536 9455 }; 9537 9456 }; 9538 9457 "@types/node-13.13.52" = { ··· 9553 9472 sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg=="; 9554 9473 }; 9555 9474 }; 9556 - "@types/node-14.18.13" = { 9475 + "@types/node-14.18.16" = { 9557 9476 name = "_at_types_slash_node"; 9558 9477 packageName = "@types/node"; 9559 - version = "14.18.13"; 9478 + version = "14.18.16"; 9560 9479 src = fetchurl { 9561 - url = "https://registry.npmjs.org/@types/node/-/node-14.18.13.tgz"; 9562 - sha512 = "Z6/KzgyWOga3pJNS42A+zayjhPbf2zM3hegRQaOPnLOzEi86VV++6FLDWgR1LGrVCRufP/ph2daa3tEa5br1zA=="; 9480 + url = "https://registry.npmjs.org/@types/node/-/node-14.18.16.tgz"; 9481 + sha512 = "X3bUMdK/VmvrWdoTkz+VCn6nwKwrKCFTHtqwBIaQJNx4RUIBBUFXM00bqPz/DsDd+Icjmzm6/tyYZzeGVqb6/Q=="; 9563 9482 }; 9564 9483 }; 9565 9484 "@types/node-15.14.9" = { ··· 9571 9490 sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A=="; 9572 9491 }; 9573 9492 }; 9574 - "@types/node-16.11.27" = { 9493 + "@types/node-16.11.33" = { 9575 9494 name = "_at_types_slash_node"; 9576 9495 packageName = "@types/node"; 9577 - version = "16.11.27"; 9496 + version = "16.11.33"; 9578 9497 src = fetchurl { 9579 - url = "https://registry.npmjs.org/@types/node/-/node-16.11.27.tgz"; 9580 - sha512 = "C1pD3kgLoZ56Uuy5lhfOxie4aZlA3UMGLX9rXteq4WitEZH6Rl80mwactt9QG0w0gLFlN/kLBTFnGXtDVWvWQw=="; 9498 + url = "https://registry.npmjs.org/@types/node/-/node-16.11.33.tgz"; 9499 + sha512 = "0PJ0vg+JyU0MIan58IOIFRtSvsb7Ri+7Wltx2qAg94eMOrpg4+uuP3aUHCpxXc1i0jCXiC+zIamSZh3l9AbcQA=="; 9581 9500 }; 9582 9501 }; 9583 9502 "@types/node-16.11.6" = { ··· 9614 9533 src = fetchurl { 9615 9534 url = "https://registry.npmjs.org/@types/node/-/node-17.0.25.tgz"; 9616 9535 sha512 = "wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w=="; 9536 + }; 9537 + }; 9538 + "@types/node-17.0.31" = { 9539 + name = "_at_types_slash_node"; 9540 + packageName = "@types/node"; 9541 + version = "17.0.31"; 9542 + src = fetchurl { 9543 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.31.tgz"; 9544 + sha512 = "AR0x5HbXGqkEx9CadRH3EBYx/VkiUgZIhP4wvPn/+5KIsgpNoyFaRlVe0Zlx9gRtg8fA06a9tskE2MSN7TcG4Q=="; 9617 9545 }; 9618 9546 }; 9619 9547 "@types/node-6.14.13" = { ··· 9769 9697 sha512 = "cXRVHd7vBT5v1is72mmvmsg9stZrbJO04DJqFeh3Yj2tVKO6vmxg5BI+ybI6Ls7ROXRG3aFbZj9x0WA3ZAoDQw=="; 9770 9698 }; 9771 9699 }; 9772 - "@types/react-dom-16.9.14" = { 9700 + "@types/react-dom-16.9.15" = { 9773 9701 name = "_at_types_slash_react-dom"; 9774 9702 packageName = "@types/react-dom"; 9775 - version = "16.9.14"; 9703 + version = "16.9.15"; 9776 9704 src = fetchurl { 9777 - url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.14.tgz"; 9778 - sha512 = "FIX2AVmPTGP30OUJ+0vadeIFJJ07Mh1m+U0rxfgyW34p3rTlXI+nlenvAxNn4BP36YyI9IJ/+UJ7Wu22N1pI7A=="; 9705 + url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.15.tgz"; 9706 + sha512 = "PjWhZj54ACucQX2hDmnHyqHz+N2On5g3Lt5BeNn+wy067qvOokVSQw1nEog1XGfvLYrSl3cyrdebEfjQQNXD3A=="; 9779 9707 }; 9780 9708 }; 9781 9709 "@types/react-window-1.8.5" = { ··· 9823 9751 sha512 = "85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA=="; 9824 9752 }; 9825 9753 }; 9826 - "@types/retry-0.12.1" = { 9754 + "@types/retry-0.12.0" = { 9755 + name = "_at_types_slash_retry"; 9756 + packageName = "@types/retry"; 9757 + version = "0.12.0"; 9758 + src = fetchurl { 9759 + url = "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz"; 9760 + sha512 = "wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="; 9761 + }; 9762 + }; 9763 + "@types/retry-0.12.2" = { 9827 9764 name = "_at_types_slash_retry"; 9828 9765 packageName = "@types/retry"; 9829 - version = "0.12.1"; 9766 + version = "0.12.2"; 9830 9767 src = fetchurl { 9831 - url = "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz"; 9832 - sha512 = "xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g=="; 9768 + url = "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz"; 9769 + sha512 = "XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow=="; 9833 9770 }; 9834 9771 }; 9835 9772 "@types/sass-1.43.1" = { ··· 10291 10228 sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; 10292 10229 }; 10293 10230 }; 10294 - "@typescript-eslint/eslint-plugin-5.20.0" = { 10231 + "@typescript-eslint/eslint-plugin-5.21.0" = { 10295 10232 name = "_at_typescript-eslint_slash_eslint-plugin"; 10296 10233 packageName = "@typescript-eslint/eslint-plugin"; 10297 - version = "5.20.0"; 10234 + version = "5.21.0"; 10298 10235 src = fetchurl { 10299 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.20.0.tgz"; 10300 - sha512 = "fapGzoxilCn3sBtC6NtXZX6+P/Hef7VDbyfGqTTpzYydwhlkevB+0vE0EnmHPVTVSy68GUncyJ/2PcrFBeCo5Q=="; 10236 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.21.0.tgz"; 10237 + sha512 = "fTU85q8v5ZLpoZEyn/u1S2qrFOhi33Edo2CZ0+q1gDaWWm0JuPh3bgOyU8lM0edIEYgKLDkPFiZX2MOupgjlyg=="; 10301 10238 }; 10302 10239 }; 10303 10240 "@typescript-eslint/experimental-utils-4.33.0" = { ··· 10318 10255 sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; 10319 10256 }; 10320 10257 }; 10321 - "@typescript-eslint/parser-5.20.0" = { 10258 + "@typescript-eslint/parser-5.21.0" = { 10322 10259 name = "_at_typescript-eslint_slash_parser"; 10323 10260 packageName = "@typescript-eslint/parser"; 10324 - version = "5.20.0"; 10261 + version = "5.21.0"; 10325 10262 src = fetchurl { 10326 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.20.0.tgz"; 10327 - sha512 = "UWKibrCZQCYvobmu3/N8TWbEeo/EPQbS41Ux1F9XqPzGuV7pfg6n50ZrFo6hryynD8qOTTfLHtHjjdQtxJ0h/w=="; 10263 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.21.0.tgz"; 10264 + sha512 = "8RUwTO77hstXUr3pZoWZbRQUxXcSXafZ8/5gpnQCfXvgmP9gpNlRGlWzvfbEQ14TLjmtU8eGnONkff8U2ui2Eg=="; 10328 10265 }; 10329 10266 }; 10330 10267 "@typescript-eslint/scope-manager-4.33.0" = { ··· 10336 10273 sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; 10337 10274 }; 10338 10275 }; 10339 - "@typescript-eslint/scope-manager-5.20.0" = { 10276 + "@typescript-eslint/scope-manager-5.21.0" = { 10340 10277 name = "_at_typescript-eslint_slash_scope-manager"; 10341 10278 packageName = "@typescript-eslint/scope-manager"; 10342 - version = "5.20.0"; 10279 + version = "5.21.0"; 10343 10280 src = fetchurl { 10344 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz"; 10345 - sha512 = "h9KtuPZ4D/JuX7rpp1iKg3zOH0WNEa+ZIXwpW/KWmEFDxlA/HSfCMhiyF1HS/drTICjIbpA6OqkAhrP/zkCStg=="; 10281 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.21.0.tgz"; 10282 + sha512 = "XTX0g0IhvzcH/e3393SvjRCfYQxgxtYzL3UREteUneo72EFlt7UNoiYnikUtmGVobTbhUDByhJ4xRBNe+34kOQ=="; 10346 10283 }; 10347 10284 }; 10348 - "@typescript-eslint/type-utils-5.20.0" = { 10285 + "@typescript-eslint/type-utils-5.21.0" = { 10349 10286 name = "_at_typescript-eslint_slash_type-utils"; 10350 10287 packageName = "@typescript-eslint/type-utils"; 10351 - version = "5.20.0"; 10288 + version = "5.21.0"; 10352 10289 src = fetchurl { 10353 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.20.0.tgz"; 10354 - sha512 = "WxNrCwYB3N/m8ceyoGCgbLmuZwupvzN0rE8NBuwnl7APgjv24ZJIjkNzoFBXPRCGzLNkoU/WfanW0exvp/+3Iw=="; 10290 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.21.0.tgz"; 10291 + sha512 = "MxmLZj0tkGlkcZCSE17ORaHl8Th3JQwBzyXL/uvC6sNmu128LsgjTX0NIzy+wdH2J7Pd02GN8FaoudJntFvSOw=="; 10355 10292 }; 10356 10293 }; 10357 10294 "@typescript-eslint/types-4.33.0" = { ··· 10363 10300 sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; 10364 10301 }; 10365 10302 }; 10366 - "@typescript-eslint/types-5.20.0" = { 10303 + "@typescript-eslint/types-5.21.0" = { 10367 10304 name = "_at_typescript-eslint_slash_types"; 10368 10305 packageName = "@typescript-eslint/types"; 10369 - version = "5.20.0"; 10306 + version = "5.21.0"; 10370 10307 src = fetchurl { 10371 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.20.0.tgz"; 10372 - sha512 = "+d8wprF9GyvPwtoB4CxBAR/s0rpP25XKgnOvMf/gMXYDvlUC3rPFHupdTQ/ow9vn7UDe5rX02ovGYQbv/IUCbg=="; 10308 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.21.0.tgz"; 10309 + sha512 = "XnOOo5Wc2cBlq8Lh5WNvAgHzpjnEzxn4CJBwGkcau7b/tZ556qrWXQz4DJyChYg8JZAD06kczrdgFPpEQZfDsA=="; 10373 10310 }; 10374 10311 }; 10375 10312 "@typescript-eslint/typescript-estree-4.33.0" = { ··· 10381 10318 sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; 10382 10319 }; 10383 10320 }; 10384 - "@typescript-eslint/typescript-estree-5.20.0" = { 10321 + "@typescript-eslint/typescript-estree-5.21.0" = { 10385 10322 name = "_at_typescript-eslint_slash_typescript-estree"; 10386 10323 packageName = "@typescript-eslint/typescript-estree"; 10387 - version = "5.20.0"; 10324 + version = "5.21.0"; 10388 10325 src = fetchurl { 10389 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz"; 10390 - sha512 = "36xLjP/+bXusLMrT9fMMYy1KJAGgHhlER2TqpUVDYUQg4w0q/NW/sg4UGAgVwAqb8V4zYg43KMUpM8vV2lve6w=="; 10326 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.21.0.tgz"; 10327 + sha512 = "Y8Y2T2FNvm08qlcoSMoNchh9y2Uj3QmjtwNMdRQkcFG7Muz//wfJBGBxh8R7HAGQFpgYpdHqUpEoPQk+q9Kjfg=="; 10391 10328 }; 10392 10329 }; 10393 - "@typescript-eslint/utils-5.20.0" = { 10330 + "@typescript-eslint/utils-5.21.0" = { 10394 10331 name = "_at_typescript-eslint_slash_utils"; 10395 10332 packageName = "@typescript-eslint/utils"; 10396 - version = "5.20.0"; 10333 + version = "5.21.0"; 10397 10334 src = fetchurl { 10398 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.20.0.tgz"; 10399 - sha512 = "lHONGJL1LIO12Ujyx8L8xKbwWSkoUKFSO+0wDAqGXiudWB2EO7WEUT+YZLtVbmOmSllAjLb9tpoIPwpRe5Tn6w=="; 10335 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.21.0.tgz"; 10336 + sha512 = "q/emogbND9wry7zxy7VYri+7ydawo2HDZhRZ5k6yggIvXa7PvBbAAZ4PFH/oZLem72ezC4Pr63rJvDK/sTlL8Q=="; 10400 10337 }; 10401 10338 }; 10402 10339 "@typescript-eslint/visitor-keys-4.33.0" = { ··· 10408 10345 sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; 10409 10346 }; 10410 10347 }; 10411 - "@typescript-eslint/visitor-keys-5.20.0" = { 10348 + "@typescript-eslint/visitor-keys-5.21.0" = { 10412 10349 name = "_at_typescript-eslint_slash_visitor-keys"; 10413 10350 packageName = "@typescript-eslint/visitor-keys"; 10414 - version = "5.20.0"; 10351 + version = "5.21.0"; 10415 10352 src = fetchurl { 10416 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz"; 10417 - sha512 = "1flRpNF+0CAQkMNlTJ6L/Z5jiODG/e5+7mk6XwtPOUS3UrTz3UOiAg9jG2VtKsWI6rZQfy4C6a232QNRZTRGlg=="; 10353 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.21.0.tgz"; 10354 + sha512 = "SX8jNN+iHqAF0riZQMkm7e8+POXa/fXw5cxL+gjpyP+FI+JVNhii53EmQgDAfDcBpFekYSlO0fGytMQwRiMQCA=="; 10418 10355 }; 10419 10356 }; 10420 10357 "@ungap/promise-all-settled-1.1.2" = { ··· 10444 10381 sha1 = "c585c0bdb94210198945c6597e4fe23d6e63e084"; 10445 10382 }; 10446 10383 }; 10447 - "@vercel/build-utils-2.15.1" = { 10384 + "@vercel/build-utils-2.16.0" = { 10448 10385 name = "_at_vercel_slash_build-utils"; 10449 10386 packageName = "@vercel/build-utils"; 10450 - version = "2.15.1"; 10387 + version = "2.16.0"; 10451 10388 src = fetchurl { 10452 - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-2.15.1.tgz"; 10453 - sha512 = "7qwC7wd2Q/MwtD07/La5qIR5nfpfNVPvISp1cfwYs8fe/FUKjDdbhvGLDFrry+DeoeMFJhnJgK2qmvCnucq+GA=="; 10389 + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-2.16.0.tgz"; 10390 + sha512 = "KEkt/uhBCMTca4qtRK9F9/M4kV712rkWKYm2p7xo4HVKrF5e+oSEQKF6zDHzUk0R0YOYY1aL3it01r440YsABA=="; 10454 10391 }; 10455 10392 }; 10456 - "@vercel/go-1.3.2" = { 10393 + "@vercel/go-1.4.0" = { 10457 10394 name = "_at_vercel_slash_go"; 10458 10395 packageName = "@vercel/go"; 10459 - version = "1.3.2"; 10396 + version = "1.4.0"; 10460 10397 src = fetchurl { 10461 - url = "https://registry.npmjs.org/@vercel/go/-/go-1.3.2.tgz"; 10462 - sha512 = "SS2Iq5NSRrZBphWWX+HpdCf3ji4lUBs9JdLmuvn8anDreY68ubxo53LLTnVOXmzsnHE8G1CiQSNtOapeBxWYyQ=="; 10398 + url = "https://registry.npmjs.org/@vercel/go/-/go-1.4.0.tgz"; 10399 + sha512 = "FDMQCeDIZnFYhteNWDQSe2H4SY3AL+u5G+YWHiVfnEjMl449843A8Q2lnG8YVfpQ5iyz6nS2+kUmPCBsfd03Pw=="; 10463 10400 }; 10464 10401 }; 10465 - "@vercel/node-1.14.1" = { 10402 + "@vercel/node-1.15.0" = { 10466 10403 name = "_at_vercel_slash_node"; 10467 10404 packageName = "@vercel/node"; 10468 - version = "1.14.1"; 10405 + version = "1.15.0"; 10469 10406 src = fetchurl { 10470 - url = "https://registry.npmjs.org/@vercel/node/-/node-1.14.1.tgz"; 10471 - sha512 = "/R1tERotQMTBoB4gw390B8wJAOS9IO4iejing9jqLFSISdW7uVU6kgkUbLM8OtuN0DGwi1qYQ6DcdxySX2qYzw=="; 10407 + url = "https://registry.npmjs.org/@vercel/node/-/node-1.15.0.tgz"; 10408 + sha512 = "1xH2zBiLTPJKJPvF0odYna0ge5h754Ucpr3mdOtnrG2aW/F3DxS9TJ5h0GDwt15QVYfkdKmZ1RbNEj7ZOP4s4g=="; 10472 10409 }; 10473 10410 }; 10474 - "@vercel/node-bridge-2.2.0" = { 10411 + "@vercel/node-bridge-2.2.1" = { 10475 10412 name = "_at_vercel_slash_node-bridge"; 10476 10413 packageName = "@vercel/node-bridge"; 10477 - version = "2.2.0"; 10414 + version = "2.2.1"; 10478 10415 src = fetchurl { 10479 - url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-2.2.0.tgz"; 10480 - sha512 = "ydYlZyIQfsuriF6qTt/F4vaAt+nb4ZKhLEl2o5AQFa5ED7LoPS5w01Xbujy+25pqS1ODu8/bsqOCUSX8y/+tSQ=="; 10416 + url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-2.2.1.tgz"; 10417 + sha512 = "GJdBio0nKyxvFwfLcj6CMp2s22d5V6K9tmhmHkQcaiFwdKWK/Pa7jngiO84a09fvX+DFaOtpalJuxQa5LAJ9xQ=="; 10481 10418 }; 10482 10419 }; 10483 - "@vercel/python-2.2.2" = { 10420 + "@vercel/python-2.3.0" = { 10484 10421 name = "_at_vercel_slash_python"; 10485 10422 packageName = "@vercel/python"; 10486 - version = "2.2.2"; 10423 + version = "2.3.0"; 10487 10424 src = fetchurl { 10488 - url = "https://registry.npmjs.org/@vercel/python/-/python-2.2.2.tgz"; 10489 - sha512 = "08x3kzFTiWlY9lSRmIksm1gHzz9wrHoyv2w7DdOHAbueEGJTbbMoHNeBPWwQ7hLjfMhCM5JOMjezAz3Uw0kEJg=="; 10425 + url = "https://registry.npmjs.org/@vercel/python/-/python-2.3.0.tgz"; 10426 + sha512 = "Cfis3gt3lUhX/eBOAJRfSEXYKpJAzRayt4xxQly96Ey2vvLNaFDBZK6J71o5P+fM2Q9z9FynVwrsY3rcW1lL8Q=="; 10490 10427 }; 10491 10428 }; 10492 - "@vercel/ruby-1.3.2" = { 10429 + "@vercel/ruby-1.3.3" = { 10493 10430 name = "_at_vercel_slash_ruby"; 10494 10431 packageName = "@vercel/ruby"; 10495 - version = "1.3.2"; 10432 + version = "1.3.3"; 10496 10433 src = fetchurl { 10497 - url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.2.tgz"; 10498 - sha512 = "SAC1+wHT60IvAJ4CBLylnCZYF7nO7xtvIhO3NL1O4WBMRNgep5oewDNgxIQ/6XzGEymPijI4FP2tBHQ3v557nQ=="; 10434 + url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.3.tgz"; 10435 + sha512 = "kEYtp+jLu9xFmlf6K28elkc6GOkdccGHNJOhqroYOnGmesEU9yXc00A2sQGKTwLLApbmmtTDyoG6PwnzStn5jw=="; 10499 10436 }; 10500 10437 }; 10501 10438 "@vscode/emmet-helper-2.8.4" = { ··· 11677 11614 sha512 = "TU5nlYgta8YrBMNpc9FwQzRbiXsj49gsALsXadbGHt9CROPzX5fB0rWDR5mtdpOOKa5XqRFpbj1QroPAoPzVjQ=="; 11678 11615 }; 11679 11616 }; 11617 + "abstract-leveldown-7.2.0" = { 11618 + name = "abstract-leveldown"; 11619 + packageName = "abstract-leveldown"; 11620 + version = "7.2.0"; 11621 + src = fetchurl { 11622 + url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-7.2.0.tgz"; 11623 + sha512 = "DnhQwcFEaYsvYDnACLZhMmCWd3rkOeEvglpa4q5i/5Jlm3UIsWaxVzuXvDLFCSCWRO3yy2/+V/G7FusFgejnfQ=="; 11624 + }; 11625 + }; 11680 11626 "abstract-logging-1.0.0" = { 11681 11627 name = "abstract-logging"; 11682 11628 packageName = "abstract-logging"; ··· 11794 11740 sha512 = "V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ=="; 11795 11741 }; 11796 11742 }; 11743 + "acorn-8.7.1" = { 11744 + name = "acorn"; 11745 + packageName = "acorn"; 11746 + version = "8.7.1"; 11747 + src = fetchurl { 11748 + url = "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz"; 11749 + sha512 = "Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A=="; 11750 + }; 11751 + }; 11797 11752 "acorn-globals-1.0.9" = { 11798 11753 name = "acorn-globals"; 11799 11754 packageName = "acorn-globals"; ··· 11990 11945 src = fetchurl { 11991 11946 url = "https://registry.npmjs.org/address/-/address-1.1.2.tgz"; 11992 11947 sha512 = "aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA=="; 11948 + }; 11949 + }; 11950 + "address-1.2.0" = { 11951 + name = "address"; 11952 + packageName = "address"; 11953 + version = "1.2.0"; 11954 + src = fetchurl { 11955 + url = "https://registry.npmjs.org/address/-/address-1.2.0.tgz"; 11956 + sha512 = "tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig=="; 11993 11957 }; 11994 11958 }; 11995 11959 "adm-zip-0.5.9" = { ··· 13153 13117 sha512 = "e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA=="; 13154 13118 }; 13155 13119 }; 13156 - "argparse-0.1.15" = { 13157 - name = "argparse"; 13158 - packageName = "argparse"; 13159 - version = "0.1.15"; 13160 - src = fetchurl { 13161 - url = "https://registry.npmjs.org/argparse/-/argparse-0.1.15.tgz"; 13162 - sha1 = "28a1f72c43113e763220e5708414301c8840f0a1"; 13163 - }; 13164 - }; 13165 13120 "argparse-1.0.10" = { 13166 13121 name = "argparse"; 13167 13122 packageName = "argparse"; ··· 13189 13144 sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; 13190 13145 }; 13191 13146 }; 13192 - "args-5.0.1" = { 13147 + "args-5.0.3" = { 13193 13148 name = "args"; 13194 13149 packageName = "args"; 13195 - version = "5.0.1"; 13150 + version = "5.0.3"; 13196 13151 src = fetchurl { 13197 - url = "https://registry.npmjs.org/args/-/args-5.0.1.tgz"; 13198 - sha512 = "1kqmFCFsPffavQFGt8OxJdIcETti99kySRUPMpOhaGjL6mRJn8HFU1OxKY5bMqfZKUwTQc1mZkAjmGYaVOHFtQ=="; 13152 + url = "https://registry.npmjs.org/args/-/args-5.0.3.tgz"; 13153 + sha512 = "h6k/zfFgusnv3i5TU08KQkVKuCPBtL/PWQbWkHUxvJrZ2nAyeaUupneemcrgn1xmqxPQsPIzwkUhOpoqPDRZuA=="; 13199 13154 }; 13200 13155 }; 13201 13156 "argsarray-0.0.1" = { ··· 13207 13162 sha1 = "6e7207b4ecdb39b0af88303fa5ae22bda8df61cb"; 13208 13163 }; 13209 13164 }; 13210 - "arib-mpeg2ts-parser-3.0.13" = { 13165 + "arib-mpeg2ts-parser-3.0.15" = { 13211 13166 name = "arib-mpeg2ts-parser"; 13212 13167 packageName = "arib-mpeg2ts-parser"; 13213 - version = "3.0.13"; 13168 + version = "3.0.15"; 13214 13169 src = fetchurl { 13215 - url = "https://registry.npmjs.org/arib-mpeg2ts-parser/-/arib-mpeg2ts-parser-3.0.13.tgz"; 13216 - sha512 = "QgNZghj9R4dafXeBJbKZ0Ff5f7YENqQP/CDLAhWEWXdPoOOPUcQCu5zs3KHqeTKxg3/ip6i8a+aIu+J6QYICOg=="; 13170 + url = "https://registry.npmjs.org/arib-mpeg2ts-parser/-/arib-mpeg2ts-parser-3.0.15.tgz"; 13171 + sha512 = "qbO0g1+E/5ghXHusDCK58Cj/EhYrXnvEPYgEsTCMgHes+23OSHAteRMVFajfKazky1zV7RtX1uZR9V7gJwyq3Q=="; 13217 13172 }; 13218 13173 }; 13219 13174 "arib-subtitle-timedmetadater-4.0.9" = { ··· 13396 13351 sha1 = "8c2a5ef2472fd9ea742b04c77a75093ba2757c93"; 13397 13352 }; 13398 13353 }; 13399 - "array-filter-0.0.1" = { 13400 - name = "array-filter"; 13401 - packageName = "array-filter"; 13402 - version = "0.0.1"; 13403 - src = fetchurl { 13404 - url = "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz"; 13405 - sha1 = "7da8cf2e26628ed732803581fd21f67cacd2eeec"; 13406 - }; 13407 - }; 13408 13354 "array-find-0.1.1" = { 13409 13355 name = "array-find"; 13410 13356 packageName = "array-find"; ··· 13522 13468 sha1 = "0c7e1b4e022ae166ff1e8448c595f3181fcd3337"; 13523 13469 }; 13524 13470 }; 13525 - "array-map-0.0.0" = { 13526 - name = "array-map"; 13527 - packageName = "array-map"; 13528 - version = "0.0.0"; 13529 - src = fetchurl { 13530 - url = "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz"; 13531 - sha1 = "88a2bab73d1cf7bcd5c1b118a003f66f665fa662"; 13532 - }; 13533 - }; 13534 13471 "array-parallel-0.1.3" = { 13535 13472 name = "array-parallel"; 13536 13473 packageName = "array-parallel"; ··· 13538 13475 src = fetchurl { 13539 13476 url = "https://registry.npmjs.org/array-parallel/-/array-parallel-0.1.3.tgz"; 13540 13477 sha1 = "8f785308926ed5aa478c47e64d1b334b6c0c947d"; 13541 - }; 13542 - }; 13543 - "array-reduce-0.0.0" = { 13544 - name = "array-reduce"; 13545 - packageName = "array-reduce"; 13546 - version = "0.0.0"; 13547 - src = fetchurl { 13548 - url = "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz"; 13549 - sha1 = "173899d3ffd1c7d9383e4479525dbe278cab5f2b"; 13550 13478 }; 13551 13479 }; 13552 13480 "array-series-0.1.5" = { ··· 13720 13648 sha512 = "tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw=="; 13721 13649 }; 13722 13650 }; 13723 - "as-array-1.0.0" = { 13724 - name = "as-array"; 13725 - packageName = "as-array"; 13726 - version = "1.0.0"; 13727 - src = fetchurl { 13728 - url = "https://registry.npmjs.org/as-array/-/as-array-1.0.0.tgz"; 13729 - sha1 = "28a6eeeaa5729f1f4eca2047df5e9de1abda0ed1"; 13730 - }; 13731 - }; 13732 13651 "as-array-2.0.0" = { 13733 13652 name = "as-array"; 13734 13653 packageName = "as-array"; ··· 13828 13747 sha512 = "+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA=="; 13829 13748 }; 13830 13749 }; 13831 - "asn1js-2.3.2" = { 13750 + "asn1js-2.4.0" = { 13832 13751 name = "asn1js"; 13833 13752 packageName = "asn1js"; 13834 - version = "2.3.2"; 13753 + version = "2.4.0"; 13835 13754 src = fetchurl { 13836 - url = "https://registry.npmjs.org/asn1js/-/asn1js-2.3.2.tgz"; 13837 - sha512 = "IYzujqcOk7fHaePpTyvD3KPAA0AjT3qZlaQAw76zmPPAV/XTjhO+tbHjbFbIQZIhw+fk9wCSfb0Z6K+JHe8Q2g=="; 13755 + url = "https://registry.npmjs.org/asn1js/-/asn1js-2.4.0.tgz"; 13756 + sha512 = "PvZC0FMyMut8aOnR2jAEGSkmRtHIUYPe9amUEnGjr9TdnUmsfoOkjrvUkOEU9mzpYBR1HyO9bF+8U1cLTMMHhQ=="; 13838 13757 }; 13839 13758 }; 13840 13759 "assert-1.5.0" = { ··· 14386 14305 sha512 = "DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="; 14387 14306 }; 14388 14307 }; 14389 - "await-lock-2.1.0" = { 14308 + "await-lock-2.2.2" = { 14390 14309 name = "await-lock"; 14391 14310 packageName = "await-lock"; 14392 - version = "2.1.0"; 14311 + version = "2.2.2"; 14393 14312 src = fetchurl { 14394 - url = "https://registry.npmjs.org/await-lock/-/await-lock-2.1.0.tgz"; 14395 - sha512 = "t7Zm5YGgEEc/3eYAicF32m/TNvL+XOeYZy9CvBUeJY/szM7frLolFylhrlZNWV/ohWhcUXygrBGjYmoQdxF4CQ=="; 14313 + url = "https://registry.npmjs.org/await-lock/-/await-lock-2.2.2.tgz"; 14314 + sha512 = "aDczADvlvTGajTDjcjpJMqRkOF6Qdz3YbPZm/PyW6tKPkx2hlYBzxMhEywM/tU72HrVZjgl5VCdRuMlA7pZ8Gw=="; 14396 14315 }; 14397 14316 }; 14398 14317 "await-semaphore-0.1.3" = { ··· 14413 14332 sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; 14414 14333 }; 14415 14334 }; 14416 - "aws-sdk-2.1097.0" = { 14335 + "aws-sdk-2.1122.0" = { 14417 14336 name = "aws-sdk"; 14418 14337 packageName = "aws-sdk"; 14419 - version = "2.1097.0"; 14338 + version = "2.1122.0"; 14420 14339 src = fetchurl { 14421 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1097.0.tgz"; 14422 - sha512 = "fChMDiSfWcW0EUWmiqlyc+VAIXKH0w7BBruL3cVWSwO+5oA5A9juGF4NCBV2/KAHzaKaG0hXKPE49Wh6Lq74ag=="; 14340 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1122.0.tgz"; 14341 + sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw=="; 14423 14342 }; 14424 14343 }; 14425 - "aws-sdk-2.1117.0" = { 14426 - name = "aws-sdk"; 14427 - packageName = "aws-sdk"; 14428 - version = "2.1117.0"; 14429 - src = fetchurl { 14430 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1117.0.tgz"; 14431 - sha512 = "MBSEiLLlj8ULr8na118m44M2VvTlkyaw13J3rcHOlMSbuB2DpXBZTs2dJylFWv2szaOOSsUTo8vmc+pRJHC+Aw=="; 14432 - }; 14433 - }; 14434 - "aws-sdk-2.1118.0" = { 14344 + "aws-sdk-2.1125.0" = { 14435 14345 name = "aws-sdk"; 14436 14346 packageName = "aws-sdk"; 14437 - version = "2.1118.0"; 14347 + version = "2.1125.0"; 14438 14348 src = fetchurl { 14439 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1118.0.tgz"; 14440 - sha512 = "R3g06c4RC0Gz/lwMA7wgC7+FwYf5vaO30sPIigoX5m6Tfb7tdzfCYD7pnpvkPRNUvWJ3f5kQk+pEeW25DstRrQ=="; 14349 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1125.0.tgz"; 14350 + sha512 = "2syNkKDqDcDmB/chc61a5xx+KYzaarLs1/KshE0b1Opp2oSq2FARyUBbk59HgwKaDUB61uPF33ZG9sHiIVx2hQ=="; 14441 14351 }; 14442 14352 }; 14443 14353 "aws-sign2-0.6.0" = { ··· 14512 14422 sha512 = "cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g=="; 14513 14423 }; 14514 14424 }; 14515 - "axios-0.26.0" = { 14425 + "axios-0.27.0" = { 14516 14426 name = "axios"; 14517 14427 packageName = "axios"; 14518 - version = "0.26.0"; 14428 + version = "0.27.0"; 14519 14429 src = fetchurl { 14520 - url = "https://registry.npmjs.org/axios/-/axios-0.26.0.tgz"; 14521 - sha512 = "lKoGLMYtHvFrPVt3r+RBMp9nh34N0M8zEfCWqdWZx6phynIEhQqAdydpyBAAG211zlhX9Rgu08cOamy6XjE5Og=="; 14430 + url = "https://registry.npmjs.org/axios/-/axios-0.27.0.tgz"; 14431 + sha512 = "XV/WrPxXfzgZ8j4lcB5i6LyaXmi90yetmV/Fem0kmglGx+mpY06CiweL3YxU6wOTNLmqLUePW4G8h45nGZ/+pA=="; 14522 14432 }; 14523 14433 }; 14524 14434 "axios-cookiejar-support-0.5.1" = { ··· 14530 14440 sha512 = "mmMbNDjpkAKlyxVOYjkpvV6rDRoSjBXwHbfkWvnsplRTGYCergbHvZInRB1G3lqumllUQwo0A4uPoqEsYfzq3A=="; 14531 14441 }; 14532 14442 }; 14443 + "axios-digest-0.3.0" = { 14444 + name = "axios-digest"; 14445 + packageName = "axios-digest"; 14446 + version = "0.3.0"; 14447 + src = fetchurl { 14448 + url = "https://registry.npmjs.org/axios-digest/-/axios-digest-0.3.0.tgz"; 14449 + sha512 = "zl7zThkh+YLSDUYwDqY1hVPndpDn4ghbB59JVhLIj19X5GJBaIts9+SI82O6D0P2wxz9uXLz+Mwnh1WkNDuXgQ=="; 14450 + }; 14451 + }; 14533 14452 "azure-devops-node-api-10.2.2" = { 14534 14453 name = "azure-devops-node-api"; 14535 14454 packageName = "azure-devops-node-api"; ··· 14548 14467 sha512 = "XDG91XzLZ15reP12s3jFkKS8oiagSICjnLwxEYieme4+4h3ZveFOFRA4iYIG40RyHXsiI0mefFYYMFIJbMpWcg=="; 14549 14468 }; 14550 14469 }; 14551 - "b4a-1.3.1" = { 14470 + "b4a-1.5.0" = { 14552 14471 name = "b4a"; 14553 14472 packageName = "b4a"; 14554 - version = "1.3.1"; 14473 + version = "1.5.0"; 14555 14474 src = fetchurl { 14556 - url = "https://registry.npmjs.org/b4a/-/b4a-1.3.1.tgz"; 14557 - sha512 = "ULHjbJGjZcdA5bugDNAAcMA6GWXX/9N10I6AQc14TH+Sr7bMfT+NHuJnOFGPJWLtzYa6Tz+PnFD2D/1bISLLZQ=="; 14475 + url = "https://registry.npmjs.org/b4a/-/b4a-1.5.0.tgz"; 14476 + sha512 = "J20PbRmSy38jW9TmqGEwd8xINUCuOm2I2bPQ1sK8LWLxKTbhPh0H48DJ27ff2qmSXvI30WYV0tKzSmGb+oCsXg=="; 14558 14477 }; 14559 14478 }; 14560 14479 "babel-code-frame-6.26.0" = { ··· 15871 15790 sha512 = "O1htyufFTYy3EO0JkHg2CLykdXEtV2ssqw47Gq9A0WByp662xpJnMEB9m43LZjsSDjIAOozWRExlFQk2hlV1XQ=="; 15872 15791 }; 15873 15792 }; 15874 - "bipf-1.6.2" = { 15793 + "bipf-1.6.3" = { 15875 15794 name = "bipf"; 15876 15795 packageName = "bipf"; 15877 - version = "1.6.2"; 15796 + version = "1.6.3"; 15878 15797 src = fetchurl { 15879 - url = "https://registry.npmjs.org/bipf/-/bipf-1.6.2.tgz"; 15880 - sha512 = "Bp6Wo3VVrsVxGwXuRuzca78mYxyTHs0MJz1cZRNhEJPb1KBh7J/2k5ixG35qmDyKscJeCM8+wx20lvBN26ueCg=="; 15798 + url = "https://registry.npmjs.org/bipf/-/bipf-1.6.3.tgz"; 15799 + sha512 = "q90V6Fpo0OEbP7YSSIDAX793sz9lQOvd0WOiwGRb/xtTqLJNl6NA4iV5dqJWm8GRgMvGDUSP9LWnJ9dOHmlqow=="; 15881 15800 }; 15882 15801 }; 15883 15802 "bit-field-1.5.3" = { ··· 15925 15844 sha1 = "b05d8b5f0d09f2df35a9db3b3a62d3808c46c457"; 15926 15845 }; 15927 15846 }; 15928 - "bitfield-4.0.0" = { 15847 + "bitfield-4.1.0" = { 15929 15848 name = "bitfield"; 15930 15849 packageName = "bitfield"; 15931 - version = "4.0.0"; 15850 + version = "4.1.0"; 15932 15851 src = fetchurl { 15933 - url = "https://registry.npmjs.org/bitfield/-/bitfield-4.0.0.tgz"; 15934 - sha512 = "jtuSG9CQr5yoHFuvhgf50+DH8Aezl3C/mMSfqdG4DqP7Kqe34uBUtCEHPN9oWaldTm96/i7y5e778SnM5ES4rw=="; 15852 + url = "https://registry.npmjs.org/bitfield/-/bitfield-4.1.0.tgz"; 15853 + sha512 = "6cEDG3K+PK9f+B7WyhWYjp09bqSa+uaAaecVA7Y5giFixyVe1s6HKGnvOqYNR4Mi4fBMjfDPLBpHkKvzzgP7kg=="; 15935 15854 }; 15936 15855 }; 15937 15856 "bitfield-rle-2.2.1" = { ··· 15979 15898 sha512 = "Xzk1FJFHmsc9H8IKFtDUkfAZIT1HW8r6UqajfZBBxWmpA1v7FsPO8xPFtnFzCqcXlPN3yi8dDmlqZCemyB7P8w=="; 15980 15899 }; 15981 15900 }; 15982 - "bittorrent-protocol-3.5.2" = { 15901 + "bittorrent-protocol-3.5.5" = { 15983 15902 name = "bittorrent-protocol"; 15984 15903 packageName = "bittorrent-protocol"; 15985 - version = "3.5.2"; 15904 + version = "3.5.5"; 15986 15905 src = fetchurl { 15987 - url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-3.5.2.tgz"; 15988 - sha512 = "IoUKeNg5aIoUfL7iYLM3L6CsuV14iEByyqdT3f2uFK4zlJiQr+kb86ERlrobYBBIj6qW6GJ9eyAU8GhL3IhFrA=="; 15906 + url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-3.5.5.tgz"; 15907 + sha512 = "cfzO//WtJGNLHXS58a4exJCSq1U0dkP2DZCQxgADInYFPdOfV1EmtpEN9toLOluVCXJRYAdwW5H6Li/hrn697A=="; 15989 15908 }; 15990 15909 }; 15991 15910 "bittorrent-tracker-7.7.0" = { ··· 16456 16375 sha1 = "8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"; 16457 16376 }; 16458 16377 }; 16459 - "bonjour-service-1.0.11" = { 16378 + "bonjour-service-1.0.12" = { 16460 16379 name = "bonjour-service"; 16461 16380 packageName = "bonjour-service"; 16462 - version = "1.0.11"; 16381 + version = "1.0.12"; 16463 16382 src = fetchurl { 16464 - url = "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.11.tgz"; 16465 - sha512 = "drMprzr2rDTCtgEE3VgdA9uUFaUHF+jXduwYSThHJnKMYM+FhI9Z3ph+TX3xy0LtgYHae6CHYPJ/2UnK8nQHcA=="; 16383 + url = "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.12.tgz"; 16384 + sha512 = "pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw=="; 16466 16385 }; 16467 16386 }; 16468 16387 "boolbase-1.0.0" = { ··· 16960 16879 sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw=="; 16961 16880 }; 16962 16881 }; 16963 - "browserslist-4.20.2" = { 16882 + "browserslist-4.20.3" = { 16964 16883 name = "browserslist"; 16965 16884 packageName = "browserslist"; 16966 - version = "4.20.2"; 16885 + version = "4.20.3"; 16967 16886 src = fetchurl { 16968 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz"; 16969 - sha512 = "CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA=="; 16887 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.20.3.tgz"; 16888 + sha512 = "NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg=="; 16970 16889 }; 16971 16890 }; 16972 16891 "brq-0.1.8" = { ··· 17068 16987 sha512 = "rAqP5hcUVJhXP2MCSNVsf0oM2OGU1So6A9pVRDYayvJ5+hygXHQApf87wd5NlhPM1J9RJnbqxIG/f8QTzRoQ4A=="; 17069 16988 }; 17070 16989 }; 17071 - "btc-rpc-client-git://github.com/btc21/btc-rpc-client" = { 16990 + "btc-rpc-client-git+https://github.com/btc21/btc-rpc-client" = { 17072 16991 name = "bitcoin-core"; 17073 16992 packageName = "bitcoin-core"; 17074 16993 version = "3.0.0"; 17075 16994 src = fetchgit { 17076 - url = "git://github.com/btc21/btc-rpc-client"; 16995 + url = "https://github.com/btc21/btc-rpc-client"; 17077 16996 rev = "8ed164d9ea4964d5c059084f48818b1a14bf86c9"; 17078 16997 sha256 = "963ea67486cf531755c04d655bcff31d24f64682debd05a6c0ef469fd1e09bbb"; 17079 16998 }; ··· 17384 17303 sha1 = "69fdf13ad9d91222baee109945faadc431534f86"; 17385 17304 }; 17386 17305 }; 17306 + "bufferutil-4.0.5" = { 17307 + name = "bufferutil"; 17308 + packageName = "bufferutil"; 17309 + version = "4.0.5"; 17310 + src = fetchurl { 17311 + url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.5.tgz"; 17312 + sha512 = "HTm14iMQKK2FjFLRTM5lAVcyaUzOnqbPtesFIvREgXpJHdQm8bWS+GkQgIkfaBYRHuCnea7w8UVNfwiAQhlr9A=="; 17313 + }; 17314 + }; 17387 17315 "bufferutil-4.0.6" = { 17388 17316 name = "bufferutil"; 17389 17317 packageName = "bufferutil"; ··· 17699 17627 sha512 = "VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ=="; 17700 17628 }; 17701 17629 }; 17702 - "cacache-16.0.4" = { 17630 + "cacache-16.0.7" = { 17703 17631 name = "cacache"; 17704 17632 packageName = "cacache"; 17705 - version = "16.0.4"; 17633 + version = "16.0.7"; 17706 17634 src = fetchurl { 17707 - url = "https://registry.npmjs.org/cacache/-/cacache-16.0.4.tgz"; 17708 - sha512 = "U0D4wF3/W8ZgK4qDA5fTtOVSr0gaDfd5aa7tUdAV0uukVWKsAIn6SzXQCoVlg7RWZiJa+bcsM3/pXLumGaL2Ug=="; 17635 + url = "https://registry.npmjs.org/cacache/-/cacache-16.0.7.tgz"; 17636 + sha512 = "a4zfQpp5vm4Ipdvbj+ZrPonikRhm6WBEd4zT1Yc1DXsmAxrPgDwWBLF/u/wTVXSFPIgOJ1U3ghSa2Xm4s3h28w=="; 17709 17637 }; 17710 17638 }; 17711 17639 "cache-base-1.0.1" = { ··· 18095 18023 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 18096 18024 }; 18097 18025 }; 18098 - "caniuse-lite-1.0.30001332" = { 18026 + "caniuse-lite-1.0.30001334" = { 18099 18027 name = "caniuse-lite"; 18100 18028 packageName = "caniuse-lite"; 18101 - version = "1.0.30001332"; 18029 + version = "1.0.30001334"; 18102 18030 src = fetchurl { 18103 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001332.tgz"; 18104 - sha512 = "10T30NYOEQtN6C11YGg411yebhvpnC6Z102+B95eAsN0oB6KUs01ivE8u+G6FMIRtIrVlYXhL+LUwQ3/hXwDWw=="; 18031 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001334.tgz"; 18032 + sha512 = "kbaCEBRRVSoeNs74sCuq92MJyGrMtjWVfhltoHUCW4t4pXFvGjUBrfo47weBRViHkiV3eBYyIsfl956NtHGazw=="; 18105 18033 }; 18106 18034 }; 18107 18035 "canvas-2.9.1" = { ··· 18212 18140 sha1 = "a9193b1a5448b8cb9a0415bd021c8811ed7b0544"; 18213 18141 }; 18214 18142 }; 18143 + "catering-2.1.1" = { 18144 + name = "catering"; 18145 + packageName = "catering"; 18146 + version = "2.1.1"; 18147 + src = fetchurl { 18148 + url = "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz"; 18149 + sha512 = "K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w=="; 18150 + }; 18151 + }; 18215 18152 "catharsis-0.9.0" = { 18216 18153 name = "catharsis"; 18217 18154 packageName = "catharsis"; ··· 18257 18194 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 18258 18195 }; 18259 18196 }; 18260 - "cdk8s-1.5.74" = { 18197 + "cdk8s-1.5.86" = { 18261 18198 name = "cdk8s"; 18262 18199 packageName = "cdk8s"; 18263 - version = "1.5.74"; 18200 + version = "1.5.86"; 18264 18201 src = fetchurl { 18265 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.74.tgz"; 18266 - sha512 = "K1TXGzi5xvIUUTPy6v6T+SuJ5uu45lrysD6oEP9XRKW0xoTpDIFtl0czpUHKUq5qVbadWYeaNB1keVrGwW1aYg=="; 18202 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.86.tgz"; 18203 + sha512 = "5brCXdY69cJYff1njLMhbpj2lO5EAeeXbaR4l7m+vb/BIN/WpgiV9QatNgcxLqalcILnzGyDzlMB+TaCp//Rqw=="; 18267 18204 }; 18268 18205 }; 18269 - "cdk8s-plus-22-1.0.0-beta.198" = { 18206 + "cdk8s-plus-22-1.0.0-beta.218" = { 18270 18207 name = "cdk8s-plus-22"; 18271 18208 packageName = "cdk8s-plus-22"; 18272 - version = "1.0.0-beta.198"; 18209 + version = "1.0.0-beta.218"; 18273 18210 src = fetchurl { 18274 - url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.198.tgz"; 18275 - sha512 = "mn/DmJzE+UAIaGJo/aCLryGRCi0Q9TZVgtgHk5eieiuw13zQEPHE4KIJYTik339qFNrP92x1mdmU16WR6fEZSg=="; 18211 + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.218.tgz"; 18212 + sha512 = "MpodeEotALdHVUie7ioxvs35WHN/2E31Hw/TTWYcXyrcBMg8g+x9y4u96ZWpsCfHE+QCaXCQ1jAGSQta2dE9AA=="; 18276 18213 }; 18277 18214 }; 18278 - "cdktf-0.10.2" = { 18215 + "cdktf-0.10.3" = { 18279 18216 name = "cdktf"; 18280 18217 packageName = "cdktf"; 18281 - version = "0.10.2"; 18218 + version = "0.10.3"; 18282 18219 src = fetchurl { 18283 - url = "https://registry.npmjs.org/cdktf/-/cdktf-0.10.2.tgz"; 18284 - sha512 = "10xEr/mlm7RMJ0mvKPgMiUqjGlQAlSWcdymjDu1nFqJAPPShGlbzKtvwQT4LJ+HBTafMc/E04wnRdxFBxV1Rkg=="; 18220 + url = "https://registry.npmjs.org/cdktf/-/cdktf-0.10.3.tgz"; 18221 + sha512 = "Ja9YmHOZz1jqAbbZjK0V2IDsOJUc6MI38nlBu7wSA+ajmUmYOhgW331kxvT+q6nRwO06iqkUtRsR6FfndQ1xvA=="; 18285 18222 }; 18286 18223 }; 18287 18224 "center-align-0.1.3" = { ··· 18770 18707 sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 18771 18708 }; 18772 18709 }; 18773 - "chownr-0.0.2" = { 18774 - name = "chownr"; 18775 - packageName = "chownr"; 18776 - version = "0.0.2"; 18777 - src = fetchurl { 18778 - url = "https://registry.npmjs.org/chownr/-/chownr-0.0.2.tgz"; 18779 - sha1 = "2f9aebf746f90808ce00607b72ba73b41604c485"; 18780 - }; 18781 - }; 18782 18710 "chownr-1.1.4" = { 18783 18711 name = "chownr"; 18784 18712 packageName = "chownr"; ··· 19031 18959 sha512 = "OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA=="; 19032 18960 }; 19033 18961 }; 19034 - "cldr-7.1.1" = { 18962 + "cldr-7.2.0" = { 19035 18963 name = "cldr"; 19036 18964 packageName = "cldr"; 19037 - version = "7.1.1"; 18965 + version = "7.2.0"; 19038 18966 src = fetchurl { 19039 - url = "https://registry.npmjs.org/cldr/-/cldr-7.1.1.tgz"; 19040 - sha512 = "zHHQLSZT9i/g7wAxGrMj1BRD7JYOSJHvPIT06EFkFEl4m9ItW48i9yWqgRgWESJ5oUqLs9IuMDoKf+21Lscqrg=="; 18967 + url = "https://registry.npmjs.org/cldr/-/cldr-7.2.0.tgz"; 18968 + sha512 = "NJB6wpFlIVrS4BhA/Q1a6UuS6MuFr5o2XhfosM6a+W+rad/Rt0HLLX3kuXdRrwHQZvla25iuzTkRnxOKjS+VhQ=="; 19041 18969 }; 19042 18970 }; 19043 18971 "clean-css-3.4.28" = { ··· 19094 19022 sha512 = "lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg=="; 19095 19023 }; 19096 19024 }; 19097 - "clean-stack-4.1.0" = { 19025 + "clean-stack-4.2.0" = { 19098 19026 name = "clean-stack"; 19099 19027 packageName = "clean-stack"; 19100 - version = "4.1.0"; 19028 + version = "4.2.0"; 19101 19029 src = fetchurl { 19102 - url = "https://registry.npmjs.org/clean-stack/-/clean-stack-4.1.0.tgz"; 19103 - sha512 = "dxXQYI7mfQVcaF12s6sjNFoZ6ZPDQuBBLp3QJ5156k9EvUFClUoZ11fo8HnLQO241DDVntHEug8MOuFO5PSfRg=="; 19030 + url = "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz"; 19031 + sha512 = "LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg=="; 19104 19032 }; 19105 19033 }; 19106 19034 "clean-webpack-plugin-3.0.0" = { ··· 19148 19076 sha512 = "y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw=="; 19149 19077 }; 19150 19078 }; 19151 - "cli-color-1.4.0" = { 19152 - name = "cli-color"; 19153 - packageName = "cli-color"; 19154 - version = "1.4.0"; 19155 - src = fetchurl { 19156 - url = "https://registry.npmjs.org/cli-color/-/cli-color-1.4.0.tgz"; 19157 - sha512 = "xu6RvQqqrWEo6MPR1eixqGPywhYBHRs653F9jfXB2Hx4jdM/3WxiNE1vppRmxtMIfl16SFYTpYlrnqH/HsK/2w=="; 19158 - }; 19159 - }; 19160 19079 "cli-color-2.0.2" = { 19161 19080 name = "cli-color"; 19162 19081 packageName = "cli-color"; ··· 19220 19139 sha1 = "7e673ee0dd39a611a486476e53f3c6b3941cb582"; 19221 19140 }; 19222 19141 }; 19223 - "cli-progress-3.10.0" = { 19142 + "cli-progress-3.11.0" = { 19224 19143 name = "cli-progress"; 19225 19144 packageName = "cli-progress"; 19226 - version = "3.10.0"; 19145 + version = "3.11.0"; 19227 19146 src = fetchurl { 19228 - url = "https://registry.npmjs.org/cli-progress/-/cli-progress-3.10.0.tgz"; 19229 - sha512 = "kLORQrhYCAtUPLZxqsAt2YJGOvRdt34+O6jl5cQGb7iF3dM55FQZlTR+rQyIK9JUcO9bBMwZsTlND+3dmFU2Cw=="; 19147 + url = "https://registry.npmjs.org/cli-progress/-/cli-progress-3.11.0.tgz"; 19148 + sha512 = "ug+V4/Qy3+0jX9XkWPV/AwHD98RxKXqDpL37vJBOxQhD90qQ3rDqDKoFpef9se91iTUuOXKlyg2HUyHBo5lHsQ=="; 19230 19149 }; 19231 19150 }; 19232 19151 "cli-progress-footer-2.3.1" = { ··· 19994 19913 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 19995 19914 }; 19996 19915 }; 19997 - "color-string-1.9.0" = { 19916 + "color-string-1.9.1" = { 19998 19917 name = "color-string"; 19999 19918 packageName = "color-string"; 20000 - version = "1.9.0"; 19919 + version = "1.9.1"; 20001 19920 src = fetchurl { 20002 - url = "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz"; 20003 - sha512 = "9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ=="; 19921 + url = "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz"; 19922 + sha512 = "shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg=="; 20004 19923 }; 20005 19924 }; 20006 19925 "color-support-1.1.3" = { ··· 20930 20849 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 20931 20850 }; 20932 20851 }; 20933 - "constructs-10.0.120" = { 20852 + "constructs-10.0.130" = { 20934 20853 name = "constructs"; 20935 20854 packageName = "constructs"; 20936 - version = "10.0.120"; 20855 + version = "10.0.130"; 20937 20856 src = fetchurl { 20938 - url = "https://registry.npmjs.org/constructs/-/constructs-10.0.120.tgz"; 20939 - sha512 = "dsWux+1mygizUSKu43FHMGdh/m+KX4vt7sXKlb5VwRTkuebEoPu7QGIeV866PfnCgtCZmKbX77hyfMkRqh/0Gg=="; 20857 + url = "https://registry.npmjs.org/constructs/-/constructs-10.0.130.tgz"; 20858 + sha512 = "9LYBePJHHnuXCr42eN0T4+O8xXHRxxak6G/UX+avt8ZZ/SNE9HFbFD8a+FKP8ixSNzzaEamDMswrMwPPTtU8cA=="; 20940 20859 }; 20941 20860 }; 20942 - "constructs-3.3.273" = { 20861 + "constructs-3.3.283" = { 20943 20862 name = "constructs"; 20944 20863 packageName = "constructs"; 20945 - version = "3.3.273"; 20864 + version = "3.3.283"; 20946 20865 src = fetchurl { 20947 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.273.tgz"; 20948 - sha512 = "8OAOd3if32Jnqc//G7DkfnSxaqKx8vfENYShhoUI1eg1Uw9MWvs8Q6g8FbRABmBO8ESRzc/xljDA217j2xzqYw=="; 20866 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.283.tgz"; 20867 + sha512 = "0LbWDLDPE6sa19F87kTg/a+7ZhO6YXaGs3JYPYcYcd1vzastOUbJQ+GY9O7BweDMLj0Hcw4WP33qV0SFmGnipQ=="; 20949 20868 }; 20950 20869 }; 20951 20870 "consume-http-header-1.0.0" = { ··· 21345 21264 sha512 = "aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA=="; 21346 21265 }; 21347 21266 }; 21267 + "cookie-0.5.0" = { 21268 + name = "cookie"; 21269 + packageName = "cookie"; 21270 + version = "0.5.0"; 21271 + src = fetchurl { 21272 + url = "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz"; 21273 + sha512 = "YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw=="; 21274 + }; 21275 + }; 21348 21276 "cookie-parser-1.4.6" = { 21349 21277 name = "cookie-parser"; 21350 21278 packageName = "cookie-parser"; ··· 21543 21471 sha512 = "YUdI3fFu4TF/2WykQ2xzSiTQdldLB4KVuL9WeAy5XONZYt5Cun/fpQvctoKbCgvPhmzADeesTk/j2Rdx77AcKQ=="; 21544 21472 }; 21545 21473 }; 21546 - "core-js-3.22.1" = { 21474 + "core-js-3.22.3" = { 21547 21475 name = "core-js"; 21548 21476 packageName = "core-js"; 21549 - version = "3.22.1"; 21477 + version = "3.22.3"; 21550 21478 src = fetchurl { 21551 - url = "https://registry.npmjs.org/core-js/-/core-js-3.22.1.tgz"; 21552 - sha512 = "l6CwCLq7XgITOQGhv1dIUmwCFoqFjyQ6zQHUCQlS0xKmb9d6OHIg8jDiEoswhaettT21BSF5qKr6kbvE+aKwxw=="; 21479 + url = "https://registry.npmjs.org/core-js/-/core-js-3.22.3.tgz"; 21480 + sha512 = "1t+2a/d2lppW1gkLXx3pKPVGbBdxXAkqztvWb1EJ8oF8O2gIGiytzflNiFEehYwVK/t2ryUsGBoOFFvNx95mbg=="; 21553 21481 }; 21554 21482 }; 21555 - "core-js-compat-3.22.1" = { 21483 + "core-js-compat-3.22.3" = { 21556 21484 name = "core-js-compat"; 21557 21485 packageName = "core-js-compat"; 21558 - version = "3.22.1"; 21486 + version = "3.22.3"; 21559 21487 src = fetchurl { 21560 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.1.tgz"; 21561 - sha512 = "CWbNqTluLMvZg1cjsQUbGiCM91dobSHKfDIyCoxuqxthdjGuUlaMbCsSehP3CBiVvG0C7P6UIrC1v0hgFE75jw=="; 21488 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.3.tgz"; 21489 + sha512 = "wliMbvPI2idgFWpFe7UEyHMvu6HWgW8WA+HnDRtgzoSDYvXFMpoGX1H3tPDDXrcfUSyXafCLDd7hOeMQHEZxGw=="; 21562 21490 }; 21563 21491 }; 21564 - "core-js-pure-3.22.1" = { 21492 + "core-js-pure-3.22.3" = { 21565 21493 name = "core-js-pure"; 21566 21494 packageName = "core-js-pure"; 21567 - version = "3.22.1"; 21495 + version = "3.22.3"; 21568 21496 src = fetchurl { 21569 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.1.tgz"; 21570 - sha512 = "TChjCtgcMDc8t12RiwAsThjqrS/VpBlEvDgL009ot4HESzBo3h2FSZNa6ZS1nWKZEPDoulnszxUll9n0/spflQ=="; 21497 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.3.tgz"; 21498 + sha512 = "oN88zz7nmKROMy8GOjs+LN+0LedIvbMdnB5XsTlhcOg1WGARt9l0LFg0zohdoFmCsEZ1h2ZbSQ6azj3M+vhzwQ=="; 21571 21499 }; 21572 21500 }; 21573 21501 "core-util-is-1.0.2" = { ··· 21696 21624 sha512 = "tRuMRhxN4m1Y8hP9SNYfz7jRwt8lZdWxdjg/ohg5esKmsndJIn4yT96oJVcf5x0eA11taXl+sIp+ielu529k6g=="; 21697 21625 }; 21698 21626 }; 21699 - "couch-login-0.1.20" = { 21700 - name = "couch-login"; 21701 - packageName = "couch-login"; 21702 - version = "0.1.20"; 21703 - src = fetchurl { 21704 - url = "https://registry.npmjs.org/couch-login/-/couch-login-0.1.20.tgz"; 21705 - sha1 = "007c70ef80089dbae6f59eeeec37480799b39595"; 21706 - }; 21707 - }; 21708 21627 "count-trailing-zeros-1.0.1" = { 21709 21628 name = "count-trailing-zeros"; 21710 21629 packageName = "count-trailing-zeros"; ··· 21822 21741 sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; 21823 21742 }; 21824 21743 }; 21825 - "create-gatsby-2.12.1" = { 21744 + "create-gatsby-2.13.0" = { 21826 21745 name = "create-gatsby"; 21827 21746 packageName = "create-gatsby"; 21828 - version = "2.12.1"; 21747 + version = "2.13.0"; 21829 21748 src = fetchurl { 21830 - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.12.1.tgz"; 21831 - sha512 = "dOsEy9feLJVFVzFFnA6xJL9OhfYcKewaGMqI9uUaUdifIehBjb5jdeWi+cNy49j2FQLMm38jfZ2SNSQjEK2yOw=="; 21749 + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.13.0.tgz"; 21750 + sha512 = "y2v+O1ydY0jfGevbW7oU/UA+gp5ljBTRwjdc4DyDdvS+SLnbHUp586j0rgaT/6cbY6CxfDgyGJxiAzYxuB5dlg=="; 21832 21751 }; 21833 21752 }; 21834 21753 "create-graphback-1.0.1" = { ··· 22011 21930 sha512 = "mkLtJJcYbDCxEG7Js6eUnUNndWjyUZwJ3H7bErmmtOYU/Zb99DyUkpamuIZE0b3bhmJyZ7D90uS6f+CGxRRjOw=="; 22012 21931 }; 22013 21932 }; 22014 - "cross-undici-fetch-0.2.5" = { 21933 + "cross-undici-fetch-0.3.3" = { 22015 21934 name = "cross-undici-fetch"; 22016 21935 packageName = "cross-undici-fetch"; 22017 - version = "0.2.5"; 21936 + version = "0.3.3"; 22018 21937 src = fetchurl { 22019 - url = "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.2.5.tgz"; 22020 - sha512 = "6IR+JN6o2UMNj2f3fu0ZVkZeP0h22DRKzq78SiMenkqyBYyGIT1AkZjHkItvh0A80LdsAlWENHUpvapapePucw=="; 22021 - }; 22022 - }; 22023 - "cross-undici-fetch-0.3.0" = { 22024 - name = "cross-undici-fetch"; 22025 - packageName = "cross-undici-fetch"; 22026 - version = "0.3.0"; 22027 - src = fetchurl { 22028 - url = "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.3.0.tgz"; 22029 - sha512 = "as3gHg3EJrc4QMS11/GdHtyY+m3LnIf8GrziHQRe/dGxSHqEP4RcONJ/3UVaPeA1j687aYvwzWMPWKgqsdXbtA=="; 21938 + url = "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.3.3.tgz"; 21939 + sha512 = "pNariiu7YGO/00sFPAUxgQUDEJcoYbalF4XwmA6p2fYICbcv5y9FsybnuaNGZ2wEk49HhiN8xaFt7s+Lk4EQ/w=="; 22030 21940 }; 22031 21941 }; 22032 21942 "crossroads-0.12.2" = { ··· 23631 23541 sha512 = "X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ=="; 23632 23542 }; 23633 23543 }; 23634 - "data-urls-3.0.1" = { 23544 + "data-urls-3.0.2" = { 23635 23545 name = "data-urls"; 23636 23546 packageName = "data-urls"; 23637 - version = "3.0.1"; 23547 + version = "3.0.2"; 23638 23548 src = fetchurl { 23639 - url = "https://registry.npmjs.org/data-urls/-/data-urls-3.0.1.tgz"; 23640 - sha512 = "Ds554NeT5Gennfoo9KN50Vh6tpgtvYEwraYjejXnyTpu1C7oXKxdFk75REooENHE8ndTVOJuv+BEs4/J/xcozw=="; 23549 + url = "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz"; 23550 + sha512 = "Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ=="; 23641 23551 }; 23642 23552 }; 23643 23553 "dataloader-2.0.0" = { ··· 23712 23622 sha512 = "eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w=="; 23713 23623 }; 23714 23624 }; 23715 - "date-format-4.0.7" = { 23625 + "date-format-4.0.9" = { 23716 23626 name = "date-format"; 23717 23627 packageName = "date-format"; 23718 - version = "4.0.7"; 23628 + version = "4.0.9"; 23719 23629 src = fetchurl { 23720 - url = "https://registry.npmjs.org/date-format/-/date-format-4.0.7.tgz"; 23721 - sha512 = "k5xqlzDGIfv2N/DHR/BR8Kc4N9CRy9ReuDkmdxeX/jNfit94QXd36emWMm40ZOEDKNm/c91yV9EO3uGPkR7wWQ=="; 23630 + url = "https://registry.npmjs.org/date-format/-/date-format-4.0.9.tgz"; 23631 + sha512 = "+8J+BOUpSrlKLQLeF8xJJVTxS8QfRSuJgwxSVvslzgO3E6khbI0F5mMEPf5mTYhCCm4h99knYP6H3W9n3BQFrg=="; 23722 23632 }; 23723 23633 }; 23724 23634 "date-now-0.1.4" = { ··· 26160 26070 sha512 = "icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ=="; 26161 26071 }; 26162 26072 }; 26163 - "electron-packager-15.5.0" = { 26073 + "electron-packager-15.5.1" = { 26164 26074 name = "electron-packager"; 26165 26075 packageName = "electron-packager"; 26166 - version = "15.5.0"; 26076 + version = "15.5.1"; 26167 26077 src = fetchurl { 26168 - url = "https://registry.npmjs.org/electron-packager/-/electron-packager-15.5.0.tgz"; 26169 - sha512 = "8mITLQgTm9xdrO8XL/PsK0EZGU7zK/ay7TI8M1C9pc1UZ++HlaWQJBRJHlOXf4TL/7FsiF4OciEhiqhMn+LKQQ=="; 26078 + url = "https://registry.npmjs.org/electron-packager/-/electron-packager-15.5.1.tgz"; 26079 + sha512 = "9/fqF64GACZsLYLuFJ8vCqItMXbvsD0NMDLNfFmAv9mSqkqKWSZb5V3VE9CxT6CeXwZ6wN3YowEQuqBNyShEVg=="; 26170 26080 }; 26171 26081 }; 26172 26082 "electron-rebuild-3.2.7" = { ··· 26178 26088 sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw=="; 26179 26089 }; 26180 26090 }; 26181 - "electron-to-chromium-1.4.114" = { 26091 + "electron-to-chromium-1.4.129" = { 26182 26092 name = "electron-to-chromium"; 26183 26093 packageName = "electron-to-chromium"; 26184 - version = "1.4.114"; 26094 + version = "1.4.129"; 26185 26095 src = fetchurl { 26186 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.114.tgz"; 26187 - sha512 = "gRwLpVYWHGbERPU6o8pKfR168V6enWEXzZc6zQNNXbgJ7UJna+9qzAIHY94+9KOv71D/CH+QebLA9pChD2q8zA=="; 26096 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.129.tgz"; 26097 + sha512 = "GgtN6bsDtHdtXJtlMYZWGB/uOyjZWjmRDumXTas7dGBaB9zUyCjzHet1DY2KhyHN8R0GLbzZWqm4efeddqqyRQ=="; 26188 26098 }; 26189 26099 }; 26190 - "electrum-client-git://github.com/janoside/electrum-client" = { 26100 + "electrum-client-git+https://github.com/janoside/electrum-client" = { 26191 26101 name = "electrum-client"; 26192 26102 packageName = "electrum-client"; 26193 26103 version = "1.1.7"; 26194 26104 src = fetchgit { 26195 - url = "git://github.com/janoside/electrum-client"; 26105 + url = "https://github.com/janoside/electrum-client"; 26196 26106 rev = "d98e929028d2b05c88a41fe37652737912bead79"; 26197 26107 sha256 = "d6dfc396ae69eba6efa303039d6ebb46a5cd51d1b79a293f915609057b9062be"; 26198 26108 }; ··· 26250 26160 src = fetchurl { 26251 26161 url = "https://registry.npmjs.org/emitter-listener/-/emitter-listener-1.1.2.tgz"; 26252 26162 sha512 = "Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ=="; 26163 + }; 26164 + }; 26165 + "emittery-0.10.0" = { 26166 + name = "emittery"; 26167 + packageName = "emittery"; 26168 + version = "0.10.0"; 26169 + src = fetchurl { 26170 + url = "https://registry.npmjs.org/emittery/-/emittery-0.10.0.tgz"; 26171 + sha512 = "AGvFfs+d0JKCJQ4o01ASQLGPmSCxgfU9RFXvzPvZdjKK8oscynksuJhWrSTSw7j7Ep/sZct5b5ZhYCi8S/t0HQ=="; 26253 26172 }; 26254 26173 }; 26255 26174 "emmet-2.3.6" = { ··· 26540 26459 sha512 = "rqs60YwkvWTLLnfazqgZqLa/aKo+9cueVfEi/dZ8PyGyaf8TLOxj++4QMIgeG3Gn0AhrWiFXvghsoY9L9h25GA=="; 26541 26460 }; 26542 26461 }; 26462 + "engine.io-6.2.0" = { 26463 + name = "engine.io"; 26464 + packageName = "engine.io"; 26465 + version = "6.2.0"; 26466 + src = fetchurl { 26467 + url = "https://registry.npmjs.org/engine.io/-/engine.io-6.2.0.tgz"; 26468 + sha512 = "4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg=="; 26469 + }; 26470 + }; 26543 26471 "engine.io-client-1.3.1" = { 26544 26472 name = "engine.io-client"; 26545 26473 packageName = "engine.io-client"; ··· 26585 26513 sha512 = "IH8ZhDIwiLv0d/wXVzmjfV9Y82hbJIDhCGSVUV8o1kcpDe2I6Y3bZA3ZbJy4Ls7k7IVmcy/qn4k9RKWFhUGf5w=="; 26586 26514 }; 26587 26515 }; 26588 - "engine.io-client-6.1.1" = { 26516 + "engine.io-client-6.2.1" = { 26589 26517 name = "engine.io-client"; 26590 26518 packageName = "engine.io-client"; 26591 - version = "6.1.1"; 26519 + version = "6.2.1"; 26592 26520 src = fetchurl { 26593 - url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.1.1.tgz"; 26594 - sha512 = "V05mmDo4gjimYW+FGujoGmmmxRaDsrVr7AXA3ZIfa04MWM1jOfZfUwou0oNqhNwy/votUDvGDt4JA4QF4e0b4g=="; 26521 + url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.1.tgz"; 26522 + sha512 = "5cu7xubVxEwoB6O9hJ6Zfu990yBVjXfyMlE1ZvfO5L8if3Kvc9bgDNEapV0C5pMp+5Om1UZFnljxoOuFm6dBKA=="; 26595 26523 }; 26596 26524 }; 26597 26525 "engine.io-parser-1.0.6" = { ··· 26621 26549 sha512 = "x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg=="; 26622 26550 }; 26623 26551 }; 26624 - "engine.io-parser-5.0.3" = { 26552 + "engine.io-parser-5.0.4" = { 26625 26553 name = "engine.io-parser"; 26626 26554 packageName = "engine.io-parser"; 26627 - version = "5.0.3"; 26555 + version = "5.0.4"; 26628 26556 src = fetchurl { 26629 - url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.3.tgz"; 26630 - sha512 = "BtQxwF27XUNnSafQLvDi0dQ8s3i6VgzSoQMJacpIcGNrlUdfHSKbgm3jmjCVvQluGzqwujQMPAoMai3oYSTurg=="; 26557 + url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.4.tgz"; 26558 + sha512 = "+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg=="; 26631 26559 }; 26632 26560 }; 26633 26561 "enhanced-resolve-2.3.0" = { ··· 27269 27197 sha512 = "/KRpd9mIRg2raGxHRGwW9ZywYNAClZrHjdueHcrVDuO3a6bj83eoTirCCk0M0yPwOjWYKHwRVRid+xK4F/GHgA=="; 27270 27198 }; 27271 27199 }; 27272 - "eslint-8.13.0" = { 27200 + "eslint-8.14.0" = { 27273 27201 name = "eslint"; 27274 27202 packageName = "eslint"; 27275 - version = "8.13.0"; 27203 + version = "8.14.0"; 27276 27204 src = fetchurl { 27277 - url = "https://registry.npmjs.org/eslint/-/eslint-8.13.0.tgz"; 27278 - sha512 = "D+Xei61eInqauAyTJ6C0q6x9mx7kTUC1KZ0m0LSEexR0V+e94K12LmWX076ZIsldwfQ2RONdaJe0re0TRGQbRQ=="; 27205 + url = "https://registry.npmjs.org/eslint/-/eslint-8.14.0.tgz"; 27206 + sha512 = "3/CE4aJX7LNEiE3i6FeodHmI/38GZtWCsAtsymScmzYapx8q1nVVb+eLcLSzATmCPXw5pT4TqVs1E0OmxAd9tw=="; 27279 27207 }; 27280 27208 }; 27281 27209 "eslint-config-prettier-6.15.0" = { ··· 28250 28178 sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929"; 28251 28179 }; 28252 28180 }; 28253 - "expo-modules-autolinking-0.5.5" = { 28181 + "expo-modules-autolinking-0.7.0" = { 28254 28182 name = "expo-modules-autolinking"; 28255 28183 packageName = "expo-modules-autolinking"; 28256 - version = "0.5.5"; 28184 + version = "0.7.0"; 28257 28185 src = fetchurl { 28258 - url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-0.5.5.tgz"; 28259 - sha512 = "bILEG0Fg+ZhIhdEaShHzsEN1WC0hUmXJ5Kcd4cd+8rVk1Ead9vRZxA/yLx1cNBDCOwMe0GAMrhF7TKT+A1P+YA=="; 28186 + url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-0.7.0.tgz"; 28187 + sha512 = "xwO3hLCl3Ru8ouuf35cLQgbOL6ym1ku1HLXX/1xs7inYLKvDzAWY/oeiNS30qOl13T4aYFR3q2Nq9XlDw41/2Q=="; 28260 28188 }; 28261 28189 }; 28262 - "expo-pwa-0.0.115" = { 28190 + "expo-pwa-0.0.118" = { 28263 28191 name = "expo-pwa"; 28264 28192 packageName = "expo-pwa"; 28265 - version = "0.0.115"; 28193 + version = "0.0.118"; 28266 28194 src = fetchurl { 28267 - url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.115.tgz"; 28268 - sha512 = "Z10w+JuRYVcRLnM8DTLmqaKJKG7mh8nBgDLvSZ8T6Hw/x7Eoq3YI0mx8aRRDV/uNQBPZZ02QZSNaxLyDtEuCAA=="; 28195 + url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.118.tgz"; 28196 + sha512 = "zm8QDDty+AzVkYHfzox/jk/97XdYlxFBOx3Lw6zprjlnZcZgOR+VR/uuek+kgEWRo7Oxhr+4al3rNgEurIsAzw=="; 28269 28197 }; 28270 28198 }; 28271 28199 "exponential-backoff-3.1.0" = { ··· 28338 28266 src = fetchurl { 28339 28267 url = "https://registry.npmjs.org/express/-/express-4.17.3.tgz"; 28340 28268 sha512 = "yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg=="; 28269 + }; 28270 + }; 28271 + "express-4.18.1" = { 28272 + name = "express"; 28273 + packageName = "express"; 28274 + version = "4.18.1"; 28275 + src = fetchurl { 28276 + url = "https://registry.npmjs.org/express/-/express-4.18.1.tgz"; 28277 + sha512 = "zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q=="; 28341 28278 }; 28342 28279 }; 28343 28280 "express-async-handler-1.2.0" = { ··· 28826 28763 sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; 28827 28764 }; 28828 28765 }; 28829 - "fast-equals-3.0.1" = { 28766 + "fast-equals-3.0.2" = { 28830 28767 name = "fast-equals"; 28831 28768 packageName = "fast-equals"; 28832 - version = "3.0.1"; 28769 + version = "3.0.2"; 28833 28770 src = fetchurl { 28834 - url = "https://registry.npmjs.org/fast-equals/-/fast-equals-3.0.1.tgz"; 28835 - sha512 = "J9FxqqC9E/ja0C+SYhoG3Jl6pQuhP92HNcVC75xDEhB+GUzPnjEp3vMfPIxPprYZFfXS5hpVvvPCWUMiDSMS8Q=="; 28771 + url = "https://registry.npmjs.org/fast-equals/-/fast-equals-3.0.2.tgz"; 28772 + sha512 = "iY0fAmW7fzxHp22VCRLpOgWbsWsF+DJWi1jhc8w+VGlJUiS+KcGZV2A8t+Q9oTQwhG3L1W8Lu/oe3ZyOPdhZjw=="; 28836 28773 }; 28837 28774 }; 28838 28775 "fast-fifo-1.1.0" = { ··· 29753 29690 sha512 = "hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA=="; 29754 29691 }; 29755 29692 }; 29756 - "findit-1.2.0" = { 29757 - name = "findit"; 29758 - packageName = "findit"; 29759 - version = "1.2.0"; 29760 - src = fetchurl { 29761 - url = "https://registry.npmjs.org/findit/-/findit-1.2.0.tgz"; 29762 - sha1 = "f571a3a840749ae8b0cbf4bf43ced7659eec3ce8"; 29763 - }; 29764 - }; 29765 29693 "findit-2.0.0" = { 29766 29694 name = "findit"; 29767 29695 packageName = "findit"; ··· 29852 29780 sha512 = "eN9cmsIlRdq06wu3m01OOEgQf5Xh/M7REm0jfZ4eL3V3XisjXzfRq3iyqtKS+FhO6wB36FvWRiRGdeSx5KpLAQ=="; 29853 29781 }; 29854 29782 }; 29855 - "fkill-8.0.0" = { 29783 + "fkill-8.0.1" = { 29856 29784 name = "fkill"; 29857 29785 packageName = "fkill"; 29858 - version = "8.0.0"; 29786 + version = "8.0.1"; 29859 29787 src = fetchurl { 29860 - url = "https://registry.npmjs.org/fkill/-/fkill-8.0.0.tgz"; 29861 - sha512 = "ItJHI5BDPAzmTg7IuFRRMI2liFOthzaRPhJaplkWqrIf7ss7e+zR+sVzOCljv7zauaFiSjca5b8NHmqT4VgyRQ=="; 29788 + url = "https://registry.npmjs.org/fkill/-/fkill-8.0.1.tgz"; 29789 + sha512 = "ZWAKbgy3pphXWCBfdNS03zXaS16SnTWaD1+n471XSUJ+K5kpFpzZsvRatfUqH8Jwt9wHzZIVIKS+o5Gblqo7PQ=="; 29862 29790 }; 29863 29791 }; 29864 29792 "flagged-respawn-1.0.1" = { ··· 29879 29807 sha512 = "b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ=="; 29880 29808 }; 29881 29809 }; 29882 - "flat-arguments-1.0.2" = { 29883 - name = "flat-arguments"; 29884 - packageName = "flat-arguments"; 29885 - version = "1.0.2"; 29886 - src = fetchurl { 29887 - url = "https://registry.npmjs.org/flat-arguments/-/flat-arguments-1.0.2.tgz"; 29888 - sha1 = "9baa780adf0501f282d726c9c6a038dba44ea76f"; 29889 - }; 29890 - }; 29891 29810 "flat-cache-1.3.4" = { 29892 29811 name = "flat-cache"; 29893 29812 packageName = "flat-cache"; ··· 29978 29897 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 29979 29898 }; 29980 29899 }; 29981 - "flow-parser-0.176.2" = { 29900 + "flow-parser-0.176.3" = { 29982 29901 name = "flow-parser"; 29983 29902 packageName = "flow-parser"; 29984 - version = "0.176.2"; 29903 + version = "0.176.3"; 29985 29904 src = fetchurl { 29986 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.176.2.tgz"; 29987 - sha512 = "unqoh60i18C67h2rvK0SCFUBac/waUcx7CF1a5E4D0Cwj1NErTP42RF7yb7+dy25Tpyzt7uwVtXw13Wr17VzWA=="; 29905 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.176.3.tgz"; 29906 + sha512 = "KDzHEoEtc/kbW7NzujhfFkcTCdNi6VK91UpcdT3tc3yEAQdh4JXAEY/0TVJKipjRuVm8E2FxX/3B5Xpm3EFWXA=="; 29988 29907 }; 29989 29908 }; 29990 29909 "fluent-ffmpeg-2.1.2" = { ··· 30437 30356 sha512 = "wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g=="; 30438 30357 }; 30439 30358 }; 30440 - "fp-ts-2.11.10" = { 30359 + "fp-ts-2.12.1" = { 30441 30360 name = "fp-ts"; 30442 30361 packageName = "fp-ts"; 30443 - version = "2.11.10"; 30362 + version = "2.12.1"; 30444 30363 src = fetchurl { 30445 - url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.10.tgz"; 30446 - sha512 = "wtUo3eA0/+GZnT+dCjkSt5CuGCH5ZXjjrcZvYm/3BC5KGavuwgvME+eRRHYtCGYWD6I+fJ2uZ9en/JVqDEPrJw=="; 30364 + url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.12.1.tgz"; 30365 + sha512 = "oxvgqUYR6O9VkKXrxkJ0NOyU0FrE705MeqgBUMEPWyTu6Pwn768cJbHChw2XOBlgFLKfIHxjr2OOBFpv2mUGZw=="; 30447 30366 }; 30448 30367 }; 30449 30368 "fraction.js-4.2.0" = { ··· 30851 30770 sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 30852 30771 }; 30853 30772 }; 30854 - "fstream-0.1.31" = { 30855 - name = "fstream"; 30856 - packageName = "fstream"; 30857 - version = "0.1.31"; 30858 - src = fetchurl { 30859 - url = "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz"; 30860 - sha1 = "7337f058fbbbbefa8c9f561a28cab0849202c988"; 30861 - }; 30862 - }; 30863 30773 "fstream-1.0.12" = { 30864 30774 name = "fstream"; 30865 30775 packageName = "fstream"; ··· 30986 30896 sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9"; 30987 30897 }; 30988 30898 }; 30989 - "gatsby-core-utils-3.12.1" = { 30899 + "gatsby-core-utils-3.13.0" = { 30990 30900 name = "gatsby-core-utils"; 30991 30901 packageName = "gatsby-core-utils"; 30992 - version = "3.12.1"; 30902 + version = "3.13.0"; 30993 30903 src = fetchurl { 30994 - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.12.1.tgz"; 30995 - sha512 = "jBG1MfR6t2MZNIl8LQ3Cwc92F6uFNcEC091IK+qKVy9FNT0+WzcKQ6Olip6u1NSvCatfrg1FqrH0K78a6lmnLQ=="; 30904 + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.13.0.tgz"; 30905 + sha512 = "uAyy54t9dYAUHjLq38QfX/pxyWxsqDiWN/+Ppg/KXTbE83LUQlD0PctdNxz9jFmJ8CgE1BUbfUKpmemh8BLkjw=="; 30996 30906 }; 30997 30907 }; 30998 - "gatsby-telemetry-3.12.1" = { 30908 + "gatsby-telemetry-3.13.0" = { 30999 30909 name = "gatsby-telemetry"; 31000 30910 packageName = "gatsby-telemetry"; 31001 - version = "3.12.1"; 30911 + version = "3.13.0"; 31002 30912 src = fetchurl { 31003 - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.12.1.tgz"; 31004 - sha512 = "sAL2T9GdYpceGlFP6CymVDoy0UEhRvrJApv/mu7sU6F0gu8g8rOLvRxVYE3Y2D9RdfCzkuLIonzmscmVIduyOg=="; 30913 + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.13.0.tgz"; 30914 + sha512 = "VKwRRw6WVvCmekeeMgb+Ic4pS/3Jn+3LTP2nX/QZ1G3256xFxKZVPMRO4007xLKmuIu4liEAaLrnZpG3ZuprYA=="; 31005 30915 }; 31006 30916 }; 31007 30917 "gauge-1.2.7" = { ··· 32238 32148 sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; 32239 32149 }; 32240 32150 }; 32241 - "google-gax-2.29.6" = { 32151 + "google-gax-2.30.2" = { 32242 32152 name = "google-gax"; 32243 32153 packageName = "google-gax"; 32244 - version = "2.29.6"; 32154 + version = "2.30.2"; 32245 32155 src = fetchurl { 32246 - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.29.6.tgz"; 32247 - sha512 = "NsuGBpxOzvBS4rbaeicIpgZ1caU3vNcG04kJWb51rlcYJvzXwHgPof9w4UplR2WVqlFzLkDtEStQOKhS/QcLmA=="; 32156 + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.30.2.tgz"; 32157 + sha512 = "BCNCT26kb0iC52zj2SosyOZMhI5sVfXuul1h0Aw5uT9nGAbmS5eOvQ49ft53ft6XotDj11sUSDV6XESEiQqCqg=="; 32248 32158 }; 32249 32159 }; 32250 32160 "google-p12-pem-3.1.4" = { ··· 32382 32292 sha512 = "R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q=="; 32383 32293 }; 32384 32294 }; 32385 - "graceful-fs-1.2.3" = { 32386 - name = "graceful-fs"; 32387 - packageName = "graceful-fs"; 32388 - version = "1.2.3"; 32389 - src = fetchurl { 32390 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz"; 32391 - sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364"; 32392 - }; 32393 - }; 32394 - "graceful-fs-2.0.3" = { 32395 - name = "graceful-fs"; 32396 - packageName = "graceful-fs"; 32397 - version = "2.0.3"; 32398 - src = fetchurl { 32399 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz"; 32400 - sha1 = "7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0"; 32401 - }; 32402 - }; 32403 32295 "graceful-fs-3.0.12" = { 32404 32296 name = "graceful-fs"; 32405 32297 packageName = "graceful-fs"; ··· 32427 32319 sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725"; 32428 32320 }; 32429 32321 }; 32430 - "grammy-1.8.0" = { 32322 + "grammy-1.8.2" = { 32431 32323 name = "grammy"; 32432 32324 packageName = "grammy"; 32433 - version = "1.8.0"; 32325 + version = "1.8.2"; 32434 32326 src = fetchurl { 32435 - url = "https://registry.npmjs.org/grammy/-/grammy-1.8.0.tgz"; 32436 - sha512 = "CG+Eq60crEjX8aqm/FeBadgfDwFaDoc3UaUwiPrxEX94D/1rRCeaj2JtaLBcDLXe9UQLENfWEEErMbkfiMR/Rg=="; 32327 + url = "https://registry.npmjs.org/grammy/-/grammy-1.8.2.tgz"; 32328 + sha512 = "mD3E/QxYJYfT8jPxWDxJPszVQteMtPoLHAMvXT1EsjEBvxCbrFVg5U3TKaA6Xgl6fhinBcv2yFT6tWw3h+xJzQ=="; 32437 32329 }; 32438 32330 }; 32439 32331 "grant-4.7.0" = { ··· 32679 32571 sha512 = "sHkK9+lUm20/BGawNEWNtVAeJzhZeBg21VmvmLoT5NdGVeZWv5PdIhkcayQIAgjSyyQ17WMKmbDijIPG2On+Ag=="; 32680 32572 }; 32681 32573 }; 32682 - "graphql-ws-5.7.0" = { 32574 + "graphql-ws-5.8.1" = { 32683 32575 name = "graphql-ws"; 32684 32576 packageName = "graphql-ws"; 32685 - version = "5.7.0"; 32577 + version = "5.8.1"; 32686 32578 src = fetchurl { 32687 - url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.7.0.tgz"; 32688 - sha512 = "8yYuvnyqIjlJ/WfebOyu2GSOQeFauRxnfuTveY9yvrDGs2g3kR9Nv4gu40AKvRHbXlSJwTbMJ6dVxAtEyKwVRA=="; 32579 + url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.8.1.tgz"; 32580 + sha512 = "UVf/fxlHultC1+12tX9ShTIipqQFNZ96g7N51RFQlk7MFPsDUUMCR3QXVEzHEd5xlTp16rs5vCyfBljvcPN3fA=="; 32689 32581 }; 32690 32582 }; 32691 32583 "gray-matter-4.0.3" = { ··· 33777 33669 sha512 = "/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw=="; 33778 33670 }; 33779 33671 }; 33780 - "home-dir-1.0.0" = { 33781 - name = "home-dir"; 33782 - packageName = "home-dir"; 33783 - version = "1.0.0"; 33784 - src = fetchurl { 33785 - url = "https://registry.npmjs.org/home-dir/-/home-dir-1.0.0.tgz"; 33786 - sha1 = "2917eb44bdc9072ceda942579543847e3017fe4e"; 33787 - }; 33788 - }; 33789 33672 "homedir-polyfill-1.0.3" = { 33790 33673 name = "homedir-polyfill"; 33791 33674 packageName = "homedir-polyfill"; ··· 35343 35226 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 35344 35227 }; 35345 35228 }; 35346 - "inherits-1.0.2" = { 35347 - name = "inherits"; 35348 - packageName = "inherits"; 35349 - version = "1.0.2"; 35350 - src = fetchurl { 35351 - url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz"; 35352 - sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b"; 35353 - }; 35354 - }; 35355 35229 "inherits-2.0.1" = { 35356 35230 name = "inherits"; 35357 35231 packageName = "inherits"; ··· 35602 35476 src = fetchurl { 35603 35477 url = "https://registry.npmjs.org/inquirer/-/inquirer-8.2.2.tgz"; 35604 35478 sha512 = "pG7I/si6K/0X7p1qU+rfWnpTE1UIkTONN1wxtzh0d+dHXtT/JG6qBgLxoyHVsQa8cFABxAPh0pD6uUUHiAoaow=="; 35479 + }; 35480 + }; 35481 + "inquirer-8.2.4" = { 35482 + name = "inquirer"; 35483 + packageName = "inquirer"; 35484 + version = "8.2.4"; 35485 + src = fetchurl { 35486 + url = "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz"; 35487 + sha512 = "nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg=="; 35605 35488 }; 35606 35489 }; 35607 35490 "inquirer-autocomplete-prompt-1.4.0" = { ··· 38286 38169 sha1 = "f6f9f099f9882bad84585c6b1004344d6fadb33c"; 38287 38170 }; 38288 38171 }; 38289 - "jpgjs-git://github.com/notmasteryet/jpgjs" = { 38172 + "jpgjs-git+https://github.com/notmasteryet/jpgjs" = { 38290 38173 name = "jpgjs"; 38291 38174 packageName = "jpgjs"; 38292 38175 version = "1.0.0"; 38293 38176 src = fetchgit { 38294 - url = "git://github.com/notmasteryet/jpgjs"; 38177 + url = "https://github.com/notmasteryet/jpgjs"; 38295 38178 rev = "f1d30922fda93417669246f5a25cf2393dd9c108"; 38296 38179 sha256 = "c1b7d85fad2ff0b6a2d1ed1140142c0450e3240a371703ad66d60cb3b5f612b6"; 38297 38180 }; ··· 38377 38260 sha512 = "X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g=="; 38378 38261 }; 38379 38262 }; 38263 + "js-md5-0.7.3" = { 38264 + name = "js-md5"; 38265 + packageName = "js-md5"; 38266 + version = "0.7.3"; 38267 + src = fetchurl { 38268 + url = "https://registry.npmjs.org/js-md5/-/js-md5-0.7.3.tgz"; 38269 + sha512 = "ZC41vPSTLKGwIRjqDh8DfXoCrdQIyBgspJVPXHBGu4nZlAEvG3nf+jO9avM9RmLiGakg7vz974ms99nEV0tmTQ=="; 38270 + }; 38271 + }; 38380 38272 "js-message-1.0.7" = { 38381 38273 name = "js-message"; 38382 38274 packageName = "js-message"; ··· 38413 38305 sha512 = "gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q=="; 38414 38306 }; 38415 38307 }; 38308 + "js-sha512-0.8.0" = { 38309 + name = "js-sha512"; 38310 + packageName = "js-sha512"; 38311 + version = "0.8.0"; 38312 + src = fetchurl { 38313 + url = "https://registry.npmjs.org/js-sha512/-/js-sha512-0.8.0.tgz"; 38314 + sha512 = "PWsmefG6Jkodqt+ePTvBZCSMFgN7Clckjd0O7su3I0+BW2QWUTJNzjktHsztGLhncP2h8mcF9V9Y2Ha59pAViQ=="; 38315 + }; 38316 + }; 38416 38317 "js-string-escape-1.0.1" = { 38417 38318 name = "js-string-escape"; 38418 38319 packageName = "js-string-escape"; ··· 38674 38575 sha512 = "ey0tBYk6or4CGkgiP+Ox+9Qxf2HD0KZnqr2dN4hpu8aiyZRJYinktaL/ryARM89EqhfpHKrgHAPD11RPDhFo9w=="; 38675 38576 }; 38676 38577 }; 38677 - "jsii-srcmak-0.1.536" = { 38578 + "jsii-srcmak-0.1.548" = { 38678 38579 name = "jsii-srcmak"; 38679 38580 packageName = "jsii-srcmak"; 38680 - version = "0.1.536"; 38581 + version = "0.1.548"; 38681 38582 src = fetchurl { 38682 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.536.tgz"; 38683 - sha512 = "tzjbiuywyJNmMgreiCp9L/fdzYKL3JD4cfjbysdTC38eU3i4b3ThQjy1j7vgjGGuFlY/rSGeq2lvVXQnSHuCnQ=="; 38583 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.548.tgz"; 38584 + sha512 = "T04iUa1449ajETALwI0QNiCy+ePrhU21cyGzcVrhF4dRTnfQeNwQkWZkcc6QIoL6rg/m9zuuxJl5wZaHDDXqhA=="; 38684 38585 }; 38685 38586 }; 38686 38587 "json-bigint-1.0.0" = { ··· 38908 38809 sha1 = "28e4ffd51c8d893295280eb4064d9703594de5a2"; 38909 38810 }; 38910 38811 }; 38911 - "json-source-map-0.6.1" = { 38912 - name = "json-source-map"; 38913 - packageName = "json-source-map"; 38914 - version = "0.6.1"; 38915 - src = fetchurl { 38916 - url = "https://registry.npmjs.org/json-source-map/-/json-source-map-0.6.1.tgz"; 38917 - sha512 = "1QoztHPsMQqhDq0hlXY5ZqcEdUzxQEIxgFkKl4WUp2pgShObl+9ovi4kRh2TfvAfxAoHOJ9vIMEqk3k4iex7tg=="; 38918 - }; 38919 - }; 38920 38812 "json-stable-stringify-0.0.1" = { 38921 38813 name = "json-stable-stringify"; 38922 38814 packageName = "json-stable-stringify"; ··· 38980 38872 sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; 38981 38873 }; 38982 38874 }; 38983 - "json2jsii-0.2.197" = { 38875 + "json2jsii-0.2.207" = { 38984 38876 name = "json2jsii"; 38985 38877 packageName = "json2jsii"; 38986 - version = "0.2.197"; 38878 + version = "0.2.207"; 38987 38879 src = fetchurl { 38988 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.197.tgz"; 38989 - sha512 = "cr3PXV7IKfWSQDQ5Nx76KZf2F08b98kWKG+f1ll+Vz5jd/mslQ5JezVrrEgqnp1qhJpc9iNnWgDNtsLmTHkxEg=="; 38880 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.207.tgz"; 38881 + sha512 = "WhmFUfUX/iOqoFaZiFqsWRzIz4LohsPzhf7IcosE6Ap94bpQ+i1dwHn1mjuSJDx8tzCCyE80h5h0zRADX0berA=="; 38990 38882 }; 38991 38883 }; 38992 38884 "json3-3.2.6" = { ··· 39385 39277 sha512 = "xtgnwBBZaLtKspGo6jDX/H0FDsHrn41mQVWhNHge7pZe6Nj2gU2izfC09O0rPU/i97iMcJFVjbecFiTAvmNhLQ=="; 39386 39278 }; 39387 39279 }; 39388 - "just-diff-5.0.1" = { 39280 + "just-diff-5.0.2" = { 39389 39281 name = "just-diff"; 39390 39282 packageName = "just-diff"; 39391 - version = "5.0.1"; 39283 + version = "5.0.2"; 39392 39284 src = fetchurl { 39393 - url = "https://registry.npmjs.org/just-diff/-/just-diff-5.0.1.tgz"; 39394 - sha512 = "X00TokkRIDotUIf3EV4xUm6ELc/IkqhS/vPSHdWnsM5y0HoNMfEqrazizI7g78lpHvnRSRt/PFfKtRqJCOGIuQ=="; 39285 + url = "https://registry.npmjs.org/just-diff/-/just-diff-5.0.2.tgz"; 39286 + sha512 = "uGd6F+eIZ4T95EinP8ubINGkbEy3jrgBym+6LjW+ja1UG1WQIcEcQ6FLeyXtVJZglk+bj7fvEn+Cu2LBxkgiYQ=="; 39395 39287 }; 39396 39288 }; 39397 39289 "just-diff-apply-5.2.0" = { ··· 39556 39448 sha512 = "hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew=="; 39557 39449 }; 39558 39450 }; 39451 + "keccak-3.0.1" = { 39452 + name = "keccak"; 39453 + packageName = "keccak"; 39454 + version = "3.0.1"; 39455 + src = fetchurl { 39456 + url = "https://registry.npmjs.org/keccak/-/keccak-3.0.1.tgz"; 39457 + sha512 = "epq90L9jlFWCW7+pQa6JOnKn2Xgl2mtI664seYR6MHskvI9agt7AnDqmAlp9TqU4/caMYbA08Hi5DMZAl5zdkA=="; 39458 + }; 39459 + }; 39559 39460 "keccak-3.0.2" = { 39560 39461 name = "keccak"; 39561 39462 packageName = "keccak"; ··· 40258 40159 sha512 = "OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw=="; 40259 40160 }; 40260 40161 }; 40162 + "level-concat-iterator-3.1.0" = { 40163 + name = "level-concat-iterator"; 40164 + packageName = "level-concat-iterator"; 40165 + version = "3.1.0"; 40166 + src = fetchurl { 40167 + url = "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-3.1.0.tgz"; 40168 + sha512 = "BWRCMHBxbIqPxJ8vHOvKUsaO0v1sLYZtjN3K2iZJsRBYtp+ONsY6Jfi6hy9K3+zolgQRryhIn2NRZjZnWJ9NmQ=="; 40169 + }; 40170 + }; 40261 40171 "level-errors-2.0.1" = { 40262 40172 name = "level-errors"; 40263 40173 packageName = "level-errors"; ··· 40330 40240 sha512 = "rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg=="; 40331 40241 }; 40332 40242 }; 40243 + "level-supports-2.1.0" = { 40244 + name = "level-supports"; 40245 + packageName = "level-supports"; 40246 + version = "2.1.0"; 40247 + src = fetchurl { 40248 + url = "https://registry.npmjs.org/level-supports/-/level-supports-2.1.0.tgz"; 40249 + sha512 = "E486g1NCjW5cF78KGPrMDRBYzPuueMZ6VBXHT6gC7A8UYWGiM14fGgp+s/L1oFfDWSPV/+SFkYCmZ0SiESkRKA=="; 40250 + }; 40251 + }; 40333 40252 "leveldown-5.6.0" = { 40334 40253 name = "leveldown"; 40335 40254 packageName = "leveldown"; ··· 40339 40258 sha512 = "iB8O/7Db9lPaITU1aA2txU/cBEXAt4vWwKQRrrWuS6XDgbP4QZGj9BL2aNbwb002atoQ/lIotJkfyzz+ygQnUQ=="; 40340 40259 }; 40341 40260 }; 40261 + "leveldown-6.1.0" = { 40262 + name = "leveldown"; 40263 + packageName = "leveldown"; 40264 + version = "6.1.0"; 40265 + src = fetchurl { 40266 + url = "https://registry.npmjs.org/leveldown/-/leveldown-6.1.0.tgz"; 40267 + sha512 = "8C7oJDT44JXxh04aSSsfcMI8YiaGRhOFI9/pMEL7nWJLVsWajDPTRxsSHTM2WcTVY5nXM+SuRHzPPi0GbnDX+w=="; 40268 + }; 40269 + }; 40342 40270 "levelup-4.4.0" = { 40343 40271 name = "levelup"; 40344 40272 packageName = "levelup"; ··· 40528 40456 sha512 = "dIrN4vPzmzq9DaMD6c+9DqQwJCMl1lOleWrhIrv+HIpzq6rdNJvUXaVJOFz1OV8P3zy2Q3+s9VxnzeN70ee+ow=="; 40529 40457 }; 40530 40458 }; 40531 - "lightning-5.12.0" = { 40459 + "lightning-5.14.0" = { 40532 40460 name = "lightning"; 40533 40461 packageName = "lightning"; 40534 - version = "5.12.0"; 40462 + version = "5.14.0"; 40535 40463 src = fetchurl { 40536 - url = "https://registry.npmjs.org/lightning/-/lightning-5.12.0.tgz"; 40537 - sha512 = "9APw2nBh8X9B0vy3LKP/Y3WZEKSNgv0QOIl+TYc4m84ZGHiaOhiYVnSnELuYqDqisNMGiCIOj+fkgjN/BkQNpg=="; 40464 + url = "https://registry.npmjs.org/lightning/-/lightning-5.14.0.tgz"; 40465 + sha512 = "T8NGH6F+t4sajEbC3CT2MbjqGyzTu0fH/X/UnnO8YlKoSUlU3Y9LFkmQDjMyDkxWN+peJmUQt8Em+OZu5XHLaw=="; 40538 40466 }; 40539 40467 }; 40540 40468 "lightning-5.8.2" = { ··· 40744 40672 sha512 = "gto+BB2uEob8qRiTlOq+R3uX0YNHsX9mjxj9Sbdue/LIKqu6IlZjrsjKeGyOMquc/474GEqFyX2pdytpydp0rQ=="; 40745 40673 }; 40746 40674 }; 40747 - "lmdb-2.3.3" = { 40675 + "lmdb-2.3.8" = { 40748 40676 name = "lmdb"; 40749 40677 packageName = "lmdb"; 40750 - version = "2.3.3"; 40678 + version = "2.3.8"; 40751 40679 src = fetchurl { 40752 - url = "https://registry.npmjs.org/lmdb/-/lmdb-2.3.3.tgz"; 40753 - sha512 = "CrooSvHOzd+jPXCXpiffu2+5m90Fe6L/cw90fg+4sCWNrw3W7/ad20CGuTkMVU7mAuwXEAJAfnUwvHN2pS9Rqg=="; 40680 + url = "https://registry.npmjs.org/lmdb/-/lmdb-2.3.8.tgz"; 40681 + sha512 = "SoYYrcmJWJgIG4PSkVJiXot3m9035zE0FRUgqhgzZIO6LnikbORzBznxbSrN7SaogR95w9lgTm+LwW+Os4mN5Q=="; 40754 40682 }; 40755 40683 }; 40756 - "lmdb-darwin-arm64-2.3.2" = { 40684 + "lmdb-darwin-arm64-2.3.8" = { 40757 40685 name = "lmdb-darwin-arm64"; 40758 40686 packageName = "lmdb-darwin-arm64"; 40759 - version = "2.3.2"; 40687 + version = "2.3.8"; 40760 40688 src = fetchurl { 40761 - url = "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.2.tgz"; 40762 - sha512 = "20lWWUPGKnSZRFY8FBm+vZEFx/5Deh0joz6cqJ8/0SuO/ejqRCppSsNqAxPqW87KUNR5rNfhaA2oRekMeb0cwQ=="; 40689 + url = "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.8.tgz"; 40690 + sha512 = "QFFnLQlQn1WjSyWSKU4pdOQNPLea2/iL8LcR979LGp3y4OKmuC9fNLIiCTqp+t5QBVBOKfJZ8sqFd/5KHmDFYg=="; 40763 40691 }; 40764 40692 }; 40765 - "lmdb-darwin-x64-2.3.2" = { 40693 + "lmdb-darwin-x64-2.3.8" = { 40766 40694 name = "lmdb-darwin-x64"; 40767 40695 packageName = "lmdb-darwin-x64"; 40768 - version = "2.3.2"; 40696 + version = "2.3.8"; 40769 40697 src = fetchurl { 40770 - url = "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.2.tgz"; 40771 - sha512 = "BsBnOfgK1B11Dh4RgcgBTmkmsPv3mjBPKsA4W4E+18SW9K2aRi86CAMPXqjfY/OJDUe1pSrpVf1A83b8N/C9rg=="; 40698 + url = "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.8.tgz"; 40699 + sha512 = "cPVym3ZUXJurjv9YnZ40fsJuszPzn8mvIWjcqZuhXonUXAgSxvGloAwH5HCtFF7oIT6r/iXZejfgVL1MbM97tw=="; 40772 40700 }; 40773 40701 }; 40774 - "lmdb-linux-arm-2.3.2" = { 40702 + "lmdb-linux-arm-2.3.8" = { 40775 40703 name = "lmdb-linux-arm"; 40776 40704 packageName = "lmdb-linux-arm"; 40777 - version = "2.3.2"; 40705 + version = "2.3.8"; 40778 40706 src = fetchurl { 40779 - url = "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.2.tgz"; 40780 - sha512 = "ofxfxVQqMbaC2Ygjzk8k6xgS5Dg/3cANeLcEx14T35GoU5pQKlLAWjypptyLQEeOboEmEOpZmHMoD7sWu/zakQ=="; 40707 + url = "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.8.tgz"; 40708 + sha512 = "jriO1nsPIPEBZjJ4OgshLRmi1br5E6CWnPTwSz3XO1UvDh6GEj87IL/brQxJq6HlpUj01wrQCqpvJMBTMtk+Ew=="; 40781 40709 }; 40782 40710 }; 40783 - "lmdb-linux-arm64-2.3.2" = { 40711 + "lmdb-linux-arm64-2.3.8" = { 40784 40712 name = "lmdb-linux-arm64"; 40785 40713 packageName = "lmdb-linux-arm64"; 40786 - version = "2.3.2"; 40714 + version = "2.3.8"; 40787 40715 src = fetchurl { 40788 - url = "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.2.tgz"; 40789 - sha512 = "DIibLZHpwwlIsP9cBRmw0xqDy6wZH+CDAnOTI+eihQ5PdWjTs+kaQs5O/x8l6/8fwCB0TPYKWTqfdUbvd/F7AA=="; 40716 + url = "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.8.tgz"; 40717 + sha512 = "9kgNOm7xhGmji2pH4UgeBbojBuH+0KeJ7C51kL7zEBxVXB/xD3IMZV42+MdSFzJJcmgEe3XuIdxt/TFSXhEEIw=="; 40790 40718 }; 40791 40719 }; 40792 - "lmdb-linux-x64-2.3.2" = { 40720 + "lmdb-linux-x64-2.3.8" = { 40793 40721 name = "lmdb-linux-x64"; 40794 40722 packageName = "lmdb-linux-x64"; 40795 - version = "2.3.2"; 40723 + version = "2.3.8"; 40796 40724 src = fetchurl { 40797 - url = "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.2.tgz"; 40798 - sha512 = "HBUd013RRQ2KpiyBqqqSPSEwPpVUpTJZdTZGDVQFQZuxqyJumt4Wye3uh6ZgEiBtxzSelt4xvAeNjYPH0dcZSQ=="; 40725 + url = "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.8.tgz"; 40726 + sha512 = "qTdGkBKhuROMNxrOsI31YInjBEr3b29tI80XutD3kcO3UgBXE/I1Jy57WOde6ghEdPlfh3pkycme6+Q+tsmhyA=="; 40799 40727 }; 40800 40728 }; 40801 - "lmdb-win32-x64-2.3.2" = { 40729 + "lmdb-win32-x64-2.3.8" = { 40802 40730 name = "lmdb-win32-x64"; 40803 40731 packageName = "lmdb-win32-x64"; 40804 - version = "2.3.2"; 40732 + version = "2.3.8"; 40805 40733 src = fetchurl { 40806 - url = "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.2.tgz"; 40807 - sha512 = "/hir5oU+GYm7/B6QirrpyOmIuzCKiIbWoKIJI2ebXeJlrs6Jj7UY9caPBYVkCzd79QzJnB7hIlX/F6Jx6gcUmg=="; 40734 + url = "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.8.tgz"; 40735 + sha512 = "IalYsXztvgjjPmXxFEkmZ3Tio0QmDCOxYBgxQDvAghpqa4RwufbS6unbkxO+aYK6ZWjzEZbsNKFSSb/vVgkn2A=="; 40808 40736 }; 40809 40737 }; 40810 40738 "ln-accounting-5.0.6" = { ··· 40834 40762 sha512 = "qdsgLRFGdn8+zfSDgbGw584fS2QQromxp4VRXzj9nk3qveTD6IwBjaEhC1xtY73MQCHQ3ALkWVn3aYMoy5erFw=="; 40835 40763 }; 40836 40764 }; 40837 - "ln-service-53.13.0" = { 40765 + "ln-service-53.15.0" = { 40838 40766 name = "ln-service"; 40839 40767 packageName = "ln-service"; 40840 - version = "53.13.0"; 40768 + version = "53.15.0"; 40841 40769 src = fetchurl { 40842 - url = "https://registry.npmjs.org/ln-service/-/ln-service-53.13.0.tgz"; 40843 - sha512 = "QpXZgaJw139RuKwxvIHD4Wq9zwPFHfiS5Cdz58VFzjZKFJ94ZxHq4C2kzlB/CrcgL77c0TkIRHaa9r7MA/NWSg=="; 40770 + url = "https://registry.npmjs.org/ln-service/-/ln-service-53.15.0.tgz"; 40771 + sha512 = "7WHV5uP0BrnXX3me4OsdaFI8J81LMJRENCREbxR/CQuvLW6rvLe0KlZmuLVBxwVAYKcXc0CcfiZPX0js2+8NKA=="; 40844 40772 }; 40845 40773 }; 40846 40774 "ln-service-53.9.3" = { ··· 40861 40789 sha512 = "+TFRyMVvUU9jAqRGPiawPY8cGSmfd2bKfofGsH95zTlQ4DeQLYyEPFxzqJZrkmddqdohfuF0XVW9y7+4v4eq5A=="; 40862 40790 }; 40863 40791 }; 40864 - "ln-telegram-3.21.2" = { 40792 + "ln-telegram-3.21.4" = { 40865 40793 name = "ln-telegram"; 40866 40794 packageName = "ln-telegram"; 40867 - version = "3.21.2"; 40795 + version = "3.21.4"; 40868 40796 src = fetchurl { 40869 - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.21.2.tgz"; 40870 - sha512 = "a6a/gDwArn0xlHa0FJgvuBfablxY8AO/Tm0jF8kHxBM23NdKvqWbP8EAnBYqEAw085xtJpK5/Mzh368qAWvs7w=="; 40797 + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.21.4.tgz"; 40798 + sha512 = "h3EpnHptvIDF+9H9hvaHGMNHkvYNSnXLLhOL5S6RBfFSl0rcQW0tB/fkxBOHB8//3Ich3AvBJMiISabA6m2ckg=="; 40871 40799 }; 40872 40800 }; 40873 40801 "load-bmfont-1.4.1" = { ··· 41806 41734 sha1 = "0a11ba631d0e95c23c7f2f4cbb9a692ed178e705"; 41807 41735 }; 41808 41736 }; 41809 - "lodash.isarguments-2.4.1" = { 41810 - name = "lodash.isarguments"; 41811 - packageName = "lodash.isarguments"; 41812 - version = "2.4.1"; 41813 - src = fetchurl { 41814 - url = "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-2.4.1.tgz"; 41815 - sha1 = "4931a9c08253adf091ae7ca192258a973876ecca"; 41816 - }; 41817 - }; 41818 41737 "lodash.isarguments-3.1.0" = { 41819 41738 name = "lodash.isarguments"; 41820 41739 packageName = "lodash.isarguments"; ··· 42283 42202 sha1 = "a3a17bbf62eeb6240f491846e97c1c4e2a5e1e21"; 42284 42203 }; 42285 42204 }; 42286 - "lodash.values-2.4.1" = { 42287 - name = "lodash.values"; 42288 - packageName = "lodash.values"; 42289 - version = "2.4.1"; 42290 - src = fetchurl { 42291 - url = "https://registry.npmjs.org/lodash.values/-/lodash.values-2.4.1.tgz"; 42292 - sha1 = "abf514436b3cb705001627978cbcf30b1280eea4"; 42293 - }; 42294 - }; 42295 42205 "lodash.zip-4.2.0" = { 42296 42206 name = "lodash.zip"; 42297 42207 packageName = "lodash.zip"; ··· 42427 42337 sha512 = "Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw=="; 42428 42338 }; 42429 42339 }; 42430 - "log4js-6.4.5" = { 42340 + "log4js-6.4.6" = { 42431 42341 name = "log4js"; 42432 42342 packageName = "log4js"; 42433 - version = "6.4.5"; 42343 + version = "6.4.6"; 42434 42344 src = fetchurl { 42435 - url = "https://registry.npmjs.org/log4js/-/log4js-6.4.5.tgz"; 42436 - sha512 = "43RJcYZ7nfUxpPO2woTl8CJ0t5+gucLJZ43mtp2PlInT+LygCp/bl6hNJtKulCJ+++fQsjIv4EO3Mp611PfeLQ=="; 42345 + url = "https://registry.npmjs.org/log4js/-/log4js-6.4.6.tgz"; 42346 + sha512 = "1XMtRBZszmVZqPAOOWczH+Q94AI42mtNWjvjA5RduKTSWjEc56uOBbyM1CJnfN4Ym0wSd8cQ43zOojlSHgRDAw=="; 42437 42347 }; 42438 42348 }; 42439 42349 "logform-2.4.0" = { ··· 42787 42697 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 42788 42698 }; 42789 42699 }; 42790 - "lru-cache-7.8.1" = { 42700 + "lru-cache-7.9.0" = { 42791 42701 name = "lru-cache"; 42792 42702 packageName = "lru-cache"; 42793 - version = "7.8.1"; 42703 + version = "7.9.0"; 42794 42704 src = fetchurl { 42795 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.8.1.tgz"; 42796 - sha512 = "E1v547OCgJvbvevfjgK9sNKIVXO96NnsTsFPBlg4ZxjhsJSODoH9lk8Bm0OxvHNm6Vm5Yqkl/1fErDxhYL8Skg=="; 42705 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.9.0.tgz"; 42706 + sha512 = "lkcNMUKqdJk96TuIXUidxaPuEg5sJo/+ZyVE2BDFnuZGzwXem7d8582eG8vbu4todLfT14snP6iHriCHXXi5Rw=="; 42797 42707 }; 42798 42708 }; 42799 42709 "lru-queue-0.1.0" = { ··· 42850 42760 sha512 = "bu3/4/ApUmMqVNuIkHaRhqVtEi6didYcBDIF56xhPRCzVpdztCipZ62CUuaxMlMBUzaVL93+4LZRqe02fuAG6A=="; 42851 42761 }; 42852 42762 }; 42853 - "luaparse-git://github.com/oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802" = { 42763 + "luaparse-git+https://github.com/oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802" = { 42854 42764 name = "luaparse"; 42855 42765 packageName = "luaparse"; 42856 42766 version = "0.2.1"; 42857 42767 src = fetchgit { 42858 - url = "git://github.com/oxyc/luaparse"; 42768 + url = "https://github.com/oxyc/luaparse"; 42859 42769 rev = "ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802"; 42860 42770 sha256 = "f813d671f8f8088d70d29f7a7770bdd5ed41ed97240ae9346d7ced0c094ee049"; 42861 42771 }; ··· 43479 43389 src = fetchurl { 43480 43390 url = "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz"; 43481 43391 sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg=="; 43482 - }; 43483 - }; 43484 - "marked-2.1.3" = { 43485 - name = "marked"; 43486 - packageName = "marked"; 43487 - version = "2.1.3"; 43488 - src = fetchurl { 43489 - url = "https://registry.npmjs.org/marked/-/marked-2.1.3.tgz"; 43490 - sha512 = "/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA=="; 43491 43392 }; 43492 43393 }; 43493 43394 "marked-4.0.14" = { ··· 44390 44291 sha512 = "ITSHjwVaby1Li738sxhF48sLTxcNyUAoWfoqyztL1f7J6JOLpHOuQPNLBb6lxGPUA0u7xP9IRULgvod0dKu35A=="; 44391 44292 }; 44392 44293 }; 44393 - "mermaid-9.0.0" = { 44294 + "mermaid-9.0.1" = { 44394 44295 name = "mermaid"; 44395 44296 packageName = "mermaid"; 44396 - version = "9.0.0"; 44297 + version = "9.0.1"; 44397 44298 src = fetchurl { 44398 - url = "https://registry.npmjs.org/mermaid/-/mermaid-9.0.0.tgz"; 44399 - sha512 = "HN0gHZ1+2RnyCR/7pS3ceRMGlt/2PpWAM5dUAzTEQ4nmMOM2Ix7XodcPkQbA7BradLQ5LwFhlH5jcMu1LARl1Q=="; 44299 + url = "https://registry.npmjs.org/mermaid/-/mermaid-9.0.1.tgz"; 44300 + sha512 = "TXXffALLhCACez+MUky4cOOcGXEXiJhHwN8eRV7bBqD8F6KdcjssyPZClVgzrC2KQzSGLqQkj7ce8ea7MhWz+Q=="; 44400 44301 }; 44401 44302 }; 44402 44303 "meros-1.1.4" = { ··· 44714 44615 sha512 = "TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ=="; 44715 44616 }; 44716 44617 }; 44717 - "micromark-extension-mdxjs-esm-1.0.2" = { 44618 + "micromark-extension-mdxjs-esm-1.0.3" = { 44718 44619 name = "micromark-extension-mdxjs-esm"; 44719 44620 packageName = "micromark-extension-mdxjs-esm"; 44720 - version = "1.0.2"; 44621 + version = "1.0.3"; 44721 44622 src = fetchurl { 44722 - url = "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.2.tgz"; 44723 - sha512 = "bIaxblNIM+CCaJvp3L/V+168l79iuNmxEiTU6i3vB0YuDW+rumV64BFMxvhfRDxaJxQE1zD5vTPdyLBbW4efGA=="; 44623 + url = "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz"; 44624 + sha512 = "2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A=="; 44724 44625 }; 44725 44626 }; 44726 44627 "micromark-factory-destination-1.0.0" = { ··· 46649 46550 sha512 = "a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw=="; 46650 46551 }; 46651 46552 }; 46652 - "nanoid-3.3.1" = { 46653 - name = "nanoid"; 46654 - packageName = "nanoid"; 46655 - version = "3.3.1"; 46656 - src = fetchurl { 46657 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz"; 46658 - sha512 = "n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw=="; 46659 - }; 46660 - }; 46661 46553 "nanoid-3.3.3" = { 46662 46554 name = "nanoid"; 46663 46555 packageName = "nanoid"; ··· 46757 46649 sha512 = "A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg=="; 46758 46650 }; 46759 46651 }; 46760 - "nash-3.0.0" = { 46761 - name = "nash"; 46762 - packageName = "nash"; 46763 - version = "3.0.0"; 46764 - src = fetchurl { 46765 - url = "https://registry.npmjs.org/nash/-/nash-3.0.0.tgz"; 46766 - sha512 = "M5SahEycXUmko3zOvsBkF6p94CWLhnyy9hfpQ9Qzp+rQkQ8D1OaTlfTl1OBWktq9Fak3oDXKU+ev7tiMaMu+1w=="; 46767 - }; 46768 - }; 46769 46652 "native-promise-only-0.8.1" = { 46770 46653 name = "native-promise-only"; 46771 46654 packageName = "native-promise-only"; ··· 47316 47199 sha512 = "oUqnng1vhKLaA4GR+OzVbLuZZ7OOguKCtMHxHMiyP8+9mXidKfoCyc030LbAyNI3xcgCHHyitK3Q8wP+w6DwVQ=="; 47317 47200 }; 47318 47201 }; 47319 - "nocache-2.1.0" = { 47320 - name = "nocache"; 47321 - packageName = "nocache"; 47322 - version = "2.1.0"; 47323 - src = fetchurl { 47324 - url = "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz"; 47325 - sha512 = "0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q=="; 47326 - }; 47327 - }; 47328 47202 "node-abi-2.30.1" = { 47329 47203 name = "node-abi"; 47330 47204 packageName = "node-abi"; ··· 47532 47406 sha512 = "ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ=="; 47533 47407 }; 47534 47408 }; 47535 - "node-fetch-3.2.3" = { 47409 + "node-fetch-3.2.4" = { 47536 47410 name = "node-fetch"; 47537 47411 packageName = "node-fetch"; 47538 - version = "3.2.3"; 47412 + version = "3.2.4"; 47539 47413 src = fetchurl { 47540 - url = "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.3.tgz"; 47541 - sha512 = "AXP18u4pidSZ1xYXRDPY/8jdv3RAozIt/WLNR/MBGZAz+xjtlr90RvCnsvHQRiXyWliZF/CpytExp32UU67/SA=="; 47414 + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-3.2.4.tgz"; 47415 + sha512 = "WvYJRN7mMyOLurFR2YpysQGuwYrJN+qrrpHjJDuKMcSPdfFccRUla/kng2mz6HWSBxJcqPbvatS6Gb4RhOzCJw=="; 47542 47416 }; 47543 47417 }; 47544 47418 "node-fetch-h2-2.3.0" = { ··· 47658 47532 sha512 = "dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ=="; 47659 47533 }; 47660 47534 }; 47535 + "node-gyp-build-4.3.0" = { 47536 + name = "node-gyp-build"; 47537 + packageName = "node-gyp-build"; 47538 + version = "4.3.0"; 47539 + src = fetchurl { 47540 + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz"; 47541 + sha512 = "iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q=="; 47542 + }; 47543 + }; 47661 47544 "node-gyp-build-4.4.0" = { 47662 47545 name = "node-gyp-build"; 47663 47546 packageName = "node-gyp-build"; ··· 47793 47676 sha1 = "dbbd4af12134e2e635c245ef93ffcf6f60673a5d"; 47794 47677 }; 47795 47678 }; 47796 - "node-red-admin-2.2.3" = { 47679 + "node-red-admin-2.2.4" = { 47797 47680 name = "node-red-admin"; 47798 47681 packageName = "node-red-admin"; 47799 - version = "2.2.3"; 47682 + version = "2.2.4"; 47800 47683 src = fetchurl { 47801 - url = "https://registry.npmjs.org/node-red-admin/-/node-red-admin-2.2.3.tgz"; 47802 - sha512 = "qKmnjR+TXJLk/aMUIW/x6I9P28b5BhlkvjNi1iZgfuVtI6wxRNpzpSUPtcOHvQTYxKdK6d5XGZdM6FD1Xy4nAg=="; 47684 + url = "https://registry.npmjs.org/node-red-admin/-/node-red-admin-2.2.4.tgz"; 47685 + sha512 = "DlJpMFopqBNj10k5rGGI9ZNBi+whAIS+IHrSZH1xllfuJKZxQBZgR+o+rJeufDyc0OBRgHRqmX776HrBrlDtMA=="; 47803 47686 }; 47804 47687 }; 47805 47688 "node-redis-pubsub-5.0.0" = { ··· 47820 47703 sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; 47821 47704 }; 47822 47705 }; 47823 - "node-releases-2.0.3" = { 47706 + "node-releases-2.0.4" = { 47824 47707 name = "node-releases"; 47825 47708 packageName = "node-releases"; 47826 - version = "2.0.3"; 47709 + version = "2.0.4"; 47827 47710 src = fetchurl { 47828 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.3.tgz"; 47829 - sha512 = "maHFz6OLqYxz+VQyCAtA3PTX4UP/53pa05fyDNc9CwjvJ0yEh6+xBwKsgCxMNhS8taUKBFYxfuiaD9U/55iFaw=="; 47711 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.4.tgz"; 47712 + sha512 = "gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ=="; 47830 47713 }; 47831 47714 }; 47832 47715 "node-rsa-1.1.1" = { ··· 48070 47953 src = fetchurl { 48071 47954 url = "https://registry.npmjs.org/nopt/-/nopt-2.1.2.tgz"; 48072 47955 sha1 = "6cccd977b80132a07731d6e8ce58c2c8303cf9af"; 48073 - }; 48074 - }; 48075 - "nopt-2.2.1" = { 48076 - name = "nopt"; 48077 - packageName = "nopt"; 48078 - version = "2.2.1"; 48079 - src = fetchurl { 48080 - url = "https://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz"; 48081 - sha1 = "2aa09b7d1768487b3b89a9c5aa52335bff0baea7"; 48082 47956 }; 48083 47957 }; 48084 47958 "nopt-3.0.6" = { ··· 48432 48306 sha512 = "L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ=="; 48433 48307 }; 48434 48308 }; 48435 - "npm-packlist-5.0.0" = { 48309 + "npm-packlist-5.0.2" = { 48436 48310 name = "npm-packlist"; 48437 48311 packageName = "npm-packlist"; 48438 - version = "5.0.0"; 48312 + version = "5.0.2"; 48439 48313 src = fetchurl { 48440 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.0.tgz"; 48441 - sha512 = "uU20UwM4Hogfab1Q7htJbhcyafM9lGHxOrDjkKvR2S3z7Ds0uRaESk0cXctczk+ABT4DZWNwjB10xlurFdEwZg=="; 48314 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.2.tgz"; 48315 + sha512 = "jLhcNisUgpz6v2KC75qSeEYAM8UBMYjQ2OhlCOJjB4Ovu7XXnD25UqZ6hOQNeGShL/2ju3LL2E/zBbsuzkIQ8w=="; 48442 48316 }; 48443 48317 }; 48444 48318 "npm-pick-manifest-6.1.1" = { ··· 48466 48340 src = fetchurl { 48467 48341 url = "https://registry.npmjs.org/npm-prefix/-/npm-prefix-1.2.0.tgz"; 48468 48342 sha1 = "e619455f7074ba54cc66d6d0d37dd9f1be6bcbc0"; 48469 - }; 48470 - }; 48471 - "npm-registry-client-0.2.27" = { 48472 - name = "npm-registry-client"; 48473 - packageName = "npm-registry-client"; 48474 - version = "0.2.27"; 48475 - src = fetchurl { 48476 - url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-0.2.27.tgz"; 48477 - sha1 = "8f338189d32769267886a07ad7b7fd2267446adf"; 48478 48343 }; 48479 48344 }; 48480 48345 "npm-registry-client-8.6.0" = { ··· 48567 48432 sha512 = "S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="; 48568 48433 }; 48569 48434 }; 48570 - "npmconf-0.1.1" = { 48571 - name = "npmconf"; 48572 - packageName = "npmconf"; 48573 - version = "0.1.1"; 48574 - src = fetchurl { 48575 - url = "https://registry.npmjs.org/npmconf/-/npmconf-0.1.1.tgz"; 48576 - sha1 = "7a254182591ca22d77b2faecc0d17e0f9bdf25a1"; 48577 - }; 48578 - }; 48579 48435 "npmconf-2.1.3" = { 48580 48436 name = "npmconf"; 48581 48437 packageName = "npmconf"; ··· 48612 48468 sha512 = "AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw=="; 48613 48469 }; 48614 48470 }; 48615 - "npmlog-6.0.1" = { 48471 + "npmlog-6.0.2" = { 48616 48472 name = "npmlog"; 48617 48473 packageName = "npmlog"; 48618 - version = "6.0.1"; 48474 + version = "6.0.2"; 48619 48475 src = fetchurl { 48620 - url = "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz"; 48621 - sha512 = "BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg=="; 48476 + url = "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz"; 48477 + sha512 = "/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg=="; 48622 48478 }; 48623 48479 }; 48624 48480 "nprogress-0.2.0" = { ··· 49288 49144 sha1 = "00d79d987dde7c8117bee74bb4903f6f6dafa52b"; 49289 49145 }; 49290 49146 }; 49291 - "once-1.1.1" = { 49292 - name = "once"; 49293 - packageName = "once"; 49294 - version = "1.1.1"; 49295 - src = fetchurl { 49296 - url = "https://registry.npmjs.org/once/-/once-1.1.1.tgz"; 49297 - sha1 = "9db574933ccb08c3a7614d154032c09ea6f339e7"; 49298 - }; 49299 - }; 49300 49147 "once-1.2.0" = { 49301 49148 name = "once"; 49302 49149 packageName = "once"; ··· 49576 49423 sha512 = "2AOzHAbrwdj5DNL3u+BadhfmL3mlc3mmCv6cSAsEjoMncpOOVd95JyMf0j0XUyJigJ8/ILxnhETfg35vt1pGSQ=="; 49577 49424 }; 49578 49425 }; 49579 - "openapi-sampler-1.2.1" = { 49426 + "openapi-sampler-1.2.3" = { 49580 49427 name = "openapi-sampler"; 49581 49428 packageName = "openapi-sampler"; 49582 - version = "1.2.1"; 49429 + version = "1.2.3"; 49583 49430 src = fetchurl { 49584 - url = "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.2.1.tgz"; 49585 - sha512 = "mHrYmyvcLD0qrfqPkPRBAL2z16hGT2rW0d0B7nklfoTcc3pmkJLkSZlKSeFgerUM41E5c7jlxf0Y19xrM7mWQQ=="; 49431 + url = "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.2.3.tgz"; 49432 + sha512 = "dH2QYXqakorV5dxkP/f1BV3Ku4yNn21YmBsqJunnyrHLw7mnCNZZldftgrEpv/66b1m5oaUAmiJoJN+FqBEkJg=="; 49586 49433 }; 49587 49434 }; 49588 49435 "openapi-schema-validator-8.0.0" = { ··· 50053 49900 sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 50054 49901 }; 50055 49902 }; 50056 - "osenv-0.0.3" = { 50057 - name = "osenv"; 50058 - packageName = "osenv"; 50059 - version = "0.0.3"; 50060 - src = fetchurl { 50061 - url = "https://registry.npmjs.org/osenv/-/osenv-0.0.3.tgz"; 50062 - sha1 = "cd6ad8ddb290915ad9e22765576025d411f29cb6"; 50063 - }; 50064 - }; 50065 49903 "osenv-0.1.5" = { 50066 49904 name = "osenv"; 50067 49905 packageName = "osenv"; ··· 50071 49909 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; 50072 49910 }; 50073 49911 }; 50074 - "ot-builder-1.5.1" = { 49912 + "ot-builder-1.5.2" = { 50075 49913 name = "ot-builder"; 50076 49914 packageName = "ot-builder"; 50077 - version = "1.5.1"; 49915 + version = "1.5.2"; 50078 49916 src = fetchurl { 50079 - url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.5.1.tgz"; 50080 - sha512 = "i5kUXVflf7Ek10jTng/E4pVt9F/8PpIQ5p3estArHrzi6OL2EfsqeQskz3IKoAhNjjfsq1h/+MpL3yNu6ZYoVg=="; 49917 + url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.5.2.tgz"; 49918 + sha512 = "WAcfUKnBSM7Sf5wAbguIjtEffkca5hFCYTw2W84DcGid5SrSyxxOzWAXFRoxaPli8X9gmeTdx773nYqmnAjNgA=="; 50081 49919 }; 50082 49920 }; 50083 - "otb-ttc-bundle-1.5.1" = { 49921 + "otb-ttc-bundle-1.5.2" = { 50084 49922 name = "otb-ttc-bundle"; 50085 49923 packageName = "otb-ttc-bundle"; 50086 - version = "1.5.1"; 49924 + version = "1.5.2"; 50087 49925 src = fetchurl { 50088 - url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.5.1.tgz"; 50089 - sha512 = "i6c3SBvEHyxnptFm0uoRNbfGt6UuXnQOIChG65IFlj9OizEZhqkdwPs+AQ3CZcHcsj6/lXCs20lFOtMOYeScEg=="; 49926 + url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.5.2.tgz"; 49927 + sha512 = "9h7WMtCauJeg74puwZF6W1ahyhewY/7shjsoiEqfLjX7dwCR/WgbIwx7DnpQ3acTwOzfsaBfgmq+XDMUz+TPrg=="; 50090 49928 }; 50091 49929 }; 50092 49930 "ow-0.21.0" = { ··· 50449 50287 sha512 = "oepllyG9gX1qH4Sm20YAKxg1GA7L7puhvGnTfimi31P07zSIj7SDV6YtuAx9nbJF51DES+2CIIRkXs8GKqWJxA=="; 50450 50288 }; 50451 50289 }; 50452 - "p-retry-4.6.1" = { 50290 + "p-retry-4.6.2" = { 50453 50291 name = "p-retry"; 50454 50292 packageName = "p-retry"; 50455 - version = "4.6.1"; 50293 + version = "4.6.2"; 50456 50294 src = fetchurl { 50457 - url = "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz"; 50458 - sha512 = "e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA=="; 50295 + url = "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz"; 50296 + sha512 = "312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ=="; 50459 50297 }; 50460 50298 }; 50461 50299 "p-settle-4.1.1" = { ··· 50755 50593 sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac"; 50756 50594 }; 50757 50595 }; 50758 - "paid-services-3.15.1" = { 50596 + "paid-services-3.16.0" = { 50759 50597 name = "paid-services"; 50760 50598 packageName = "paid-services"; 50761 - version = "3.15.1"; 50599 + version = "3.16.0"; 50762 50600 src = fetchurl { 50763 - url = "https://registry.npmjs.org/paid-services/-/paid-services-3.15.1.tgz"; 50764 - sha512 = "TjZPz2fczIRmUlssVq2XWMB9uBnNsiSlr1dy35aGc4hqhjMQQ424kPg6iG7k+l/NWvY3wq+/woyAo2U39wWAFQ=="; 50601 + url = "https://registry.npmjs.org/paid-services/-/paid-services-3.16.0.tgz"; 50602 + sha512 = "1NJojLf8qLulTuhO//XqpQWsK/cE/kMrM0hmX6ggToOWJQC+5wSiqwjlaAKRARLwX/uAMOpCTlm3n/EoBrEuQA=="; 50765 50603 }; 50766 50604 }; 50767 50605 "pako-0.2.9" = { ··· 52141 51979 sha1 = "8f47dcec5011b477b67db03c243bc1f3085e8854"; 52142 51980 }; 52143 51981 }; 52144 - "pixelmatch-5.2.1" = { 51982 + "pixelmatch-5.3.0" = { 52145 51983 name = "pixelmatch"; 52146 51984 packageName = "pixelmatch"; 52147 - version = "5.2.1"; 51985 + version = "5.3.0"; 52148 51986 src = fetchurl { 52149 - url = "https://registry.npmjs.org/pixelmatch/-/pixelmatch-5.2.1.tgz"; 52150 - sha512 = "WjcAdYSnKrrdDdqTcVEY7aB7UhhwjYQKYhHiBXdJef0MOaQeYpUdQ+iVyBLa5YBKS8MPVPPMX7rpOByISLpeEQ=="; 51987 + url = "https://registry.npmjs.org/pixelmatch/-/pixelmatch-5.3.0.tgz"; 51988 + sha512 = "o8mkY4E/+LNUf6LzX96ht6k6CEDi65k9G2rjMtBe9Oo+VPKSvl+0GKHuH/AlG+GA5LPG/i5hrekkxUc3s2HU+Q=="; 52151 51989 }; 52152 51990 }; 52153 51991 "pixiv-api-client-0.25.0" = { ··· 52492 52330 sha512 = "NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w=="; 52493 52331 }; 52494 52332 }; 52495 - "pngjs-4.0.1" = { 52333 + "pngjs-5.0.0" = { 52496 52334 name = "pngjs"; 52497 52335 packageName = "pngjs"; 52498 - version = "4.0.1"; 52336 + version = "5.0.0"; 52499 52337 src = fetchurl { 52500 - url = "https://registry.npmjs.org/pngjs/-/pngjs-4.0.1.tgz"; 52501 - sha512 = "rf5+2/ioHeQxR6IxuYNYGFytUyG3lma/WW1nsmjeHlWwtb2aByla6dkVc8pmJ9nplzkTA0q2xx7mMWrOTqT4Gg=="; 52338 + url = "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz"; 52339 + sha512 = "40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw=="; 52502 52340 }; 52503 52341 }; 52504 - "pngjs-5.0.0" = { 52342 + "pngjs-6.0.0" = { 52505 52343 name = "pngjs"; 52506 52344 packageName = "pngjs"; 52507 - version = "5.0.0"; 52345 + version = "6.0.0"; 52508 52346 src = fetchurl { 52509 - url = "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz"; 52510 - sha512 = "40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw=="; 52347 + url = "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz"; 52348 + sha512 = "TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg=="; 52511 52349 }; 52512 52350 }; 52513 52351 "pnp-webpack-plugin-1.7.0" = { ··· 52582 52420 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 52583 52421 }; 52584 52422 }; 52585 - "posix-getopt-git://github.com/anmonteiro/node-getopt#master" = { 52423 + "posix-getopt-git+https://github.com/anmonteiro/node-getopt#master" = { 52586 52424 name = "posix-getopt"; 52587 52425 packageName = "posix-getopt"; 52588 52426 version = "1.2.0"; 52589 52427 src = fetchgit { 52590 - url = "git://github.com/anmonteiro/node-getopt"; 52428 + url = "https://github.com/anmonteiro/node-getopt"; 52591 52429 rev = "a3123885e3559c9b70903948d6e5c34852520d74"; 52592 52430 sha256 = "0092766ac49279342f7d17677359880b44b245ad9d32237a11a5ea45cb0d03fa"; 52593 52431 }; ··· 52635 52473 src = fetchurl { 52636 52474 url = "https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz"; 52637 52475 sha512 = "lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg=="; 52476 + }; 52477 + }; 52478 + "postcss-8.4.13" = { 52479 + name = "postcss"; 52480 + packageName = "postcss"; 52481 + version = "8.4.13"; 52482 + src = fetchurl { 52483 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.13.tgz"; 52484 + sha512 = "jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA=="; 52638 52485 }; 52639 52486 }; 52640 52487 "postcss-calc-7.0.5" = { ··· 53735 53582 sha512 = "zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw=="; 53736 53583 }; 53737 53584 }; 53738 - "pretty-format-26.6.2" = { 53739 - name = "pretty-format"; 53740 - packageName = "pretty-format"; 53741 - version = "26.6.2"; 53742 - src = fetchurl { 53743 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz"; 53744 - sha512 = "7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg=="; 53745 - }; 53746 - }; 53747 53585 "pretty-format-27.5.1" = { 53748 53586 name = "pretty-format"; 53749 53587 packageName = "pretty-format"; ··· 55391 55229 sha512 = "2cP8mBoqnu5gzAVpbZ0fRaobBWZM8GEUF4I1F6WbgHrKV/rz7SX8PG2wMymZgD0wo0UBlg2FBPNxlF/xlqW6+w=="; 55392 55230 }; 55393 55231 }; 55394 - "puppeteer-13.6.0" = { 55232 + "puppeteer-13.7.0" = { 55395 55233 name = "puppeteer"; 55396 55234 packageName = "puppeteer"; 55397 - version = "13.6.0"; 55235 + version = "13.7.0"; 55398 55236 src = fetchurl { 55399 - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-13.6.0.tgz"; 55400 - sha512 = "EJXhTyY5bXNPLFXPGcY9JaF6EKJIX8ll8cGG3WUK+553Jx96oDf1cB+lkFOro9p0X16tY+9xx7zYWl+vnWgW2g=="; 55237 + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-13.7.0.tgz"; 55238 + sha512 = "U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA=="; 55401 55239 }; 55402 55240 }; 55403 55241 "purest-3.1.0" = { ··· 55472 55310 sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; 55473 55311 }; 55474 55312 }; 55475 - "pyright-1.1.239" = { 55313 + "pyright-1.1.243" = { 55476 55314 name = "pyright"; 55477 55315 packageName = "pyright"; 55478 - version = "1.1.239"; 55316 + version = "1.1.243"; 55479 55317 src = fetchurl { 55480 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.239.tgz"; 55481 - sha512 = "WiXtSVKfoT5x/f6+AGJmB/jXhmEeexmvqqZ//MtCwLRI7hPmaRJJyfFCjJi+2ezEFxwcCjQQQTbclrG8jF6o/A=="; 55318 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.243.tgz"; 55319 + sha512 = "0PUyHTSr+LyE9Ej0A7tB8tM4pzAr34o1c3rHtfaBdZ2265HPvPE/Kj92ljX2F00Q6uAeZyyLEmzPOTuKh2WC8Q=="; 55482 55320 }; 55483 55321 }; 55484 55322 "q-0.9.7" = { ··· 56138 55976 sha512 = "PPYLwZ63lXi6Tv2EZ8w3M4FzC0rVqvxivaOVS8pXSp5FMIHFnvi4MWHL3UdFLhwSy50aNtJsgjY0mBC6oFL26Q=="; 56139 55977 }; 56140 55978 }; 56141 - "rate-limiter-flexible-2.3.6" = { 55979 + "rate-limiter-flexible-2.3.7" = { 56142 55980 name = "rate-limiter-flexible"; 56143 55981 packageName = "rate-limiter-flexible"; 56144 - version = "2.3.6"; 55982 + version = "2.3.7"; 56145 55983 src = fetchurl { 56146 - url = "https://registry.npmjs.org/rate-limiter-flexible/-/rate-limiter-flexible-2.3.6.tgz"; 56147 - sha512 = "8DVFOe89rreyut/vzwBI7vgXJynyYoYnH5XogtAKs0F/neAbCTTglXxSJ7fZeZamcFXZDvMidCBvps4KM+1srw=="; 55984 + url = "https://registry.npmjs.org/rate-limiter-flexible/-/rate-limiter-flexible-2.3.7.tgz"; 55985 + sha512 = "dmc+J/IffVBvHlqq5/XClsdLdkOdQV/tjrz00cwneHUbEDYVrf4aUDAyR4Jybcf2+Vpn4NwoVrnnAyt/D0ciWw=="; 56148 55986 }; 56149 55987 }; 56150 55988 "raven-js-3.27.2" = { ··· 56534 56372 sha512 = "7tQ0BmZqfVF6YYEWcIGuoR3OdYe8I/ZFbNclFlGOC3pMqunkYF/oL30NCjSGl9sMEb17AnzixDz98Kqc3N76HQ=="; 56535 56373 }; 56536 56374 }; 56537 - "react-window-1.8.6" = { 56375 + "react-window-1.8.7" = { 56538 56376 name = "react-window"; 56539 56377 packageName = "react-window"; 56540 - version = "1.8.6"; 56378 + version = "1.8.7"; 56541 56379 src = fetchurl { 56542 - url = "https://registry.npmjs.org/react-window/-/react-window-1.8.6.tgz"; 56543 - sha512 = "8VwEEYyjz6DCnGBsd+MgkD0KJ2/OXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg=="; 56380 + url = "https://registry.npmjs.org/react-window/-/react-window-1.8.7.tgz"; 56381 + sha512 = "JHEZbPXBpKMmoNO1bNhoXOOLg/ujhL/BU4IqVU9r8eQPcy5KQnGHIHDRkJ0ns9IM5+Aq5LNwt3j8t3tIrePQzA=="; 56544 56382 }; 56545 56383 }; 56546 56384 "react-window-infinite-loader-1.0.7" = { ··· 57191 57029 sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4"; 57192 57030 }; 57193 57031 }; 57194 - "redoc-2.0.0-rc.66" = { 57032 + "redoc-2.0.0-rc.67" = { 57195 57033 name = "redoc"; 57196 57034 packageName = "redoc"; 57197 - version = "2.0.0-rc.66"; 57035 + version = "2.0.0-rc.67"; 57198 57036 src = fetchurl { 57199 - url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.66.tgz"; 57200 - sha512 = "ZjmZhYkg46QAkza4SYCouY3TEuqnkjf50uyJBiz6Dyaz55RLClofAKokPoy5uEBo0RkPjxebKf9HTGyrxNqJ8A=="; 57037 + url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.67.tgz"; 57038 + sha512 = "u6rEKB0LylSisN+mFa3flj7zf+prXDB+G02foqC9BOlcXkUYXHFDZM4L3BTBL/DstyGTgjhe2dA9csAjIVti/g=="; 57201 57039 }; 57202 57040 }; 57203 57041 "reduce-component-1.0.1" = { ··· 58478 58316 sha512 = "wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g=="; 58479 58317 }; 58480 58318 }; 58481 - "requestretry-7.0.2" = { 58319 + "requestretry-7.1.0" = { 58482 58320 name = "requestretry"; 58483 58321 packageName = "requestretry"; 58484 - version = "7.0.2"; 58322 + version = "7.1.0"; 58485 58323 src = fetchurl { 58486 - url = "https://registry.npmjs.org/requestretry/-/requestretry-7.0.2.tgz"; 58487 - sha512 = "Zz8z7G2OuVs4F0wR0shKMEMm7lNvPNHM0UIHNns9qfyuBDKSExoTsZGtSjKst6nPEwlMrbA9G+m/yC0AbGj+8w=="; 58324 + url = "https://registry.npmjs.org/requestretry/-/requestretry-7.1.0.tgz"; 58325 + sha512 = "TqVDgp251BW4b8ddQ2ptaj/57Z3LZHLscAUT7v6qs70buqF2/IoOVjYbpjJ6HiW7j5+waqegGI8xKJ/+uzgDmw=="; 58488 58326 }; 58489 58327 }; 58490 58328 "require-directory-2.1.1" = { ··· 58991 58829 sha512 = "XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="; 58992 58830 }; 58993 58831 }; 58994 - "retry-0.6.0" = { 58995 - name = "retry"; 58996 - packageName = "retry"; 58997 - version = "0.6.0"; 58998 - src = fetchurl { 58999 - url = "https://registry.npmjs.org/retry/-/retry-0.6.0.tgz"; 59000 - sha1 = "1c010713279a6fd1e8def28af0c3ff1871caa537"; 59001 - }; 59002 - }; 59003 58832 "retry-0.6.1" = { 59004 58833 name = "retry"; 59005 58834 packageName = "retry"; ··· 59124 58953 src = fetchurl { 59125 58954 url = "https://registry.npmjs.org/right-pad/-/right-pad-1.0.1.tgz"; 59126 58955 sha1 = "8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0"; 59127 - }; 59128 - }; 59129 - "rimraf-2.1.4" = { 59130 - name = "rimraf"; 59131 - packageName = "rimraf"; 59132 - version = "2.1.4"; 59133 - src = fetchurl { 59134 - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.1.4.tgz"; 59135 - sha1 = "5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2"; 59136 58956 }; 59137 58957 }; 59138 58958 "rimraf-2.2.8" = { ··· 59351 59171 sha1 = "6f04063a2d04eba3303a1bbc6765eef63037cf3d"; 59352 59172 }; 59353 59173 }; 59354 - "router-1.3.6" = { 59174 + "router-1.3.7" = { 59355 59175 name = "router"; 59356 59176 packageName = "router"; 59357 - version = "1.3.6"; 59177 + version = "1.3.7"; 59358 59178 src = fetchurl { 59359 - url = "https://registry.npmjs.org/router/-/router-1.3.6.tgz"; 59360 - sha512 = "gsjhou+LFApzkIP8VDrouG6Z4pqkeF11n3o5orlwPPvPTl0x7c+dbF71itKOhDoFHygmc3N3uqm55Uq/gIDUwg=="; 59179 + url = "https://registry.npmjs.org/router/-/router-1.3.7.tgz"; 59180 + sha512 = "bYnD9Vv2287+g3AIll2kHITLtHV5+fldq6hVzaul9RbdGme77mvBY/1cO+ahsgstA2RI6DSg/j4W1TYHm4Lz4g=="; 59361 59181 }; 59362 59182 }; 59363 59183 "router-ips-1.0.0" = { ··· 59810 59630 sha512 = "zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA=="; 59811 59631 }; 59812 59632 }; 59813 - "sass-1.50.1" = { 59633 + "sass-1.51.0" = { 59814 59634 name = "sass"; 59815 59635 packageName = "sass"; 59816 - version = "1.50.1"; 59636 + version = "1.51.0"; 59817 59637 src = fetchurl { 59818 - url = "https://registry.npmjs.org/sass/-/sass-1.50.1.tgz"; 59819 - sha512 = "noTnY41KnlW2A9P8sdwESpDmo+KBNkukI1i8+hOK3footBUcohNHtdOJbckp46XO95nuvcHDDZ+4tmOnpK3hjw=="; 59638 + url = "https://registry.npmjs.org/sass/-/sass-1.51.0.tgz"; 59639 + sha512 = "haGdpTgywJTvHC2b91GSq+clTKGbtkkZmVAb82jZQN/wTy6qs8DdFm2lhEQbEwrY0QDRgSQ3xDurqM977C3noA=="; 59820 59640 }; 59821 59641 }; 59822 59642 "sass-loader-10.2.0" = { ··· 59972 59792 sha512 = "jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw=="; 59973 59793 }; 59974 59794 }; 59795 + "secp256k1-4.0.2" = { 59796 + name = "secp256k1"; 59797 + packageName = "secp256k1"; 59798 + version = "4.0.2"; 59799 + src = fetchurl { 59800 + url = "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.2.tgz"; 59801 + sha512 = "UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg=="; 59802 + }; 59803 + }; 59975 59804 "secp256k1-4.0.3" = { 59976 59805 name = "secp256k1"; 59977 59806 packageName = "secp256k1"; ··· 60098 59927 sha1 = "857bef5e3644601ca4b9570b87e9df5ca12974fa"; 60099 59928 }; 60100 59929 }; 60101 - "semver-2.0.11" = { 60102 - name = "semver"; 60103 - packageName = "semver"; 60104 - version = "2.0.11"; 60105 - src = fetchurl { 60106 - url = "https://registry.npmjs.org/semver/-/semver-2.0.11.tgz"; 60107 - sha1 = "f51f07d03fa5af79beb537fc067a7e141786cced"; 60108 - }; 60109 - }; 60110 - "semver-2.3.2" = { 60111 - name = "semver"; 60112 - packageName = "semver"; 60113 - version = "2.3.2"; 60114 - src = fetchurl { 60115 - url = "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz"; 60116 - sha1 = "b9848f25d6cf36333073ec9ef8856d42f1233e52"; 60117 - }; 60118 - }; 60119 59930 "semver-4.3.6" = { 60120 59931 name = "semver"; 60121 59932 packageName = "semver"; ··· 60791 60602 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 60792 60603 }; 60793 60604 }; 60794 - "shell-quote-1.6.1" = { 60795 - name = "shell-quote"; 60796 - packageName = "shell-quote"; 60797 - version = "1.6.1"; 60798 - src = fetchurl { 60799 - url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz"; 60800 - sha1 = "f4781949cce402697127430ea3b3c5476f481767"; 60801 - }; 60802 - }; 60803 60605 "shell-quote-1.7.2" = { 60804 60606 name = "shell-quote"; 60805 60607 packageName = "shell-quote"; ··· 61097 60899 sha512 = "z4qtrRuaAFJS4PUd0g+xy7aN4y+RvEt/QTJpR184lhJguBA1S/LsVlvE/CM95RsYMOFJG3NGGDjqFCzKU19S/A=="; 61098 60900 }; 61099 60901 }; 61100 - "simple-git-3.7.0" = { 60902 + "simple-git-3.7.1" = { 61101 60903 name = "simple-git"; 61102 60904 packageName = "simple-git"; 61103 - version = "3.7.0"; 60905 + version = "3.7.1"; 61104 60906 src = fetchurl { 61105 - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.7.0.tgz"; 61106 - sha512 = "O9HlI83ywqkYqnr7Wh3CqKNNrMkfjzpKQSGtJAhk7+H5P+lAxHBTIPgu/eO/0D9pMciepgs433p0d5S+NYv5Jg=="; 60907 + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.7.1.tgz"; 60908 + sha512 = "+Osjtsumbtew2y9to0pOYjNzSIr4NkKGBg7Po5SUtjQhaJf2QBmiTX/9E9cv9rmc7oUiSGFIB9e7ys5ibnT9+A=="; 61107 60909 }; 61108 60910 }; 61109 60911 "simple-handshake-3.0.0" = { ··· 61617 61419 src = fetchurl { 61618 61420 url = "https://registry.npmjs.org/socket.io/-/socket.io-4.4.1.tgz"; 61619 61421 sha512 = "s04vrBswdQBUmuWJuuNTmXUVJhP0cVky8bBDhdkf8y0Ptsu7fKU2LuLbts9g+pdmAdyMMn8F/9Mf1/wbtUN0fg=="; 61422 + }; 61423 + }; 61424 + "socket.io-4.5.0" = { 61425 + name = "socket.io"; 61426 + packageName = "socket.io"; 61427 + version = "4.5.0"; 61428 + src = fetchurl { 61429 + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.5.0.tgz"; 61430 + sha512 = "slTYqU2jCgMjXwresG8grhUi/cC6GjzmcfqArzaH3BN/9I/42eZk9yamNvZJdBfTubkjEdKAKs12NEztId+bUA=="; 61620 61431 }; 61621 61432 }; 61622 61433 "socket.io-adapter-0.2.0" = { ··· 61646 61457 sha512 = "Qd/iwn3VskrpNO60BeRyCyr8ZWw9CPZyitW4AQwmRZ8zCiyDiL+znRnWX6tDHXnWn1sJrM1+b6Mn6wEDJJ4aYQ=="; 61647 61458 }; 61648 61459 }; 61460 + "socket.io-adapter-2.4.0" = { 61461 + name = "socket.io-adapter"; 61462 + packageName = "socket.io-adapter"; 61463 + version = "2.4.0"; 61464 + src = fetchurl { 61465 + url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz"; 61466 + sha512 = "W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg=="; 61467 + }; 61468 + }; 61649 61469 "socket.io-client-1.0.6" = { 61650 61470 name = "socket.io-client"; 61651 61471 packageName = "socket.io-client"; ··· 61691 61511 sha512 = "2B9LqSunN60yV8F7S84CCEEcgbYNfrn7ejIInZtLZ7ppWtiX8rGZAjvdCvbnC8bqo/9RlCNOUsORLyskxSFP1g=="; 61692 61512 }; 61693 61513 }; 61694 - "socket.io-client-4.4.1" = { 61514 + "socket.io-client-4.5.0" = { 61695 61515 name = "socket.io-client"; 61696 61516 packageName = "socket.io-client"; 61697 - version = "4.4.1"; 61517 + version = "4.5.0"; 61698 61518 src = fetchurl { 61699 - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.4.1.tgz"; 61700 - sha512 = "N5C/L5fLNha5Ojd7Yeb/puKcPWWcoB/A09fEjjNsg91EDVr5twk/OEyO6VT9dlLSUNY85NpW6KBhVMvaLKQ3vQ=="; 61519 + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.0.tgz"; 61520 + sha512 = "HW61c1G7OrYGxaI79WRn17+b03iBCdvhBj4iqyXHBoL5M8w2MSO/vChsjA93knG4GYEai1/vbXWJna9dzxXtSg=="; 61701 61521 }; 61702 61522 }; 61703 61523 "socket.io-parser-2.1.2" = { ··· 61761 61581 src = fetchurl { 61762 61582 url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.1.2.tgz"; 61763 61583 sha512 = "j3kk71QLJuyQ/hh5F/L2t1goqzdTL0gvDzuhTuNSwihfuFUrcSji0qFZmJJPtG6Rmug153eOPsUizeirf1IIog=="; 61584 + }; 61585 + }; 61586 + "socket.io-parser-4.2.0" = { 61587 + name = "socket.io-parser"; 61588 + packageName = "socket.io-parser"; 61589 + version = "4.2.0"; 61590 + src = fetchurl { 61591 + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.0.tgz"; 61592 + sha512 = "tLfmEwcEwnlQTxFB7jibL/q2+q8dlVQzj4JdRLJ/W/G1+Fu9VSxCx1Lo+n1HvXxKnM//dUuD0xgiA7tQf57Vng=="; 61764 61593 }; 61765 61594 }; 61766 61595 "sockjs-0.3.20" = { ··· 61952 61781 sha512 = "zlOmAKFLJzTI+MbvmkWhnOOJ++NYo0Iy7F93ARNPmvZvpWG2l8Ff3uwM3CkpHqRw8v3pcRROScM5E+vbeTeOKw=="; 61953 61782 }; 61954 61783 }; 61955 - "sonic-boom-2.7.0" = { 61784 + "sonic-boom-2.8.0" = { 61956 61785 name = "sonic-boom"; 61957 61786 packageName = "sonic-boom"; 61958 - version = "2.7.0"; 61787 + version = "2.8.0"; 61959 61788 src = fetchurl { 61960 - url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.7.0.tgz"; 61961 - sha512 = "Ynxp0OGQG91wvDjCbFlRMHbSUmDq7dE/EgDeUJ/j+Q9x1FVkFry20cjLykxRSmlm3QS0B4JYAKE8239XKN4SHQ=="; 61789 + url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.8.0.tgz"; 61790 + sha512 = "kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg=="; 61962 61791 }; 61963 61792 }; 61964 61793 "sorcery-0.10.0" = { ··· 62121 61950 src = fetchurl { 62122 61951 url = "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz"; 62123 61952 sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 61953 + }; 61954 + }; 61955 + "source-map-0.8.0-beta.0" = { 61956 + name = "source-map"; 61957 + packageName = "source-map"; 61958 + version = "0.8.0-beta.0"; 61959 + src = fetchurl { 61960 + url = "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz"; 61961 + sha512 = "2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="; 62124 61962 }; 62125 61963 }; 62126 61964 "source-map-js-1.0.2" = { ··· 62654 62492 sha512 = "1SdTNo+BVU211Xj1csWa8lV6KM0CtucDwRyA0VHl91wEH1Mgh7RxUpI4rVvG7OhHrzCSGaVyW5g8vKvlrk9DJA=="; 62655 62493 }; 62656 62494 }; 62657 - "sqlite3-5.0.4" = { 62495 + "sqlite3-5.0.6" = { 62658 62496 name = "sqlite3"; 62659 62497 packageName = "sqlite3"; 62660 - version = "5.0.4"; 62498 + version = "5.0.6"; 62661 62499 src = fetchurl { 62662 - url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.4.tgz"; 62663 - sha512 = "ATvAe7JutFv/d+KTbLS58KsKn/t1raL/WGn2qZfZxwsrL/oGSP+0OlbQ2tX5jISvyu6/7JuKze3WkaiP1JAH6A=="; 62500 + url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.6.tgz"; 62501 + sha512 = "uT1dC6N3ReF+jchY01zvl1wVFFJ5xO86wSnCpK39uA/zmAHBDm6TiAq1v876QKv8JgiijxQ7/fb5C2LPm7ZAJA=="; 62664 62502 }; 62665 62503 }; 62666 62504 "sqlite3-git+https://github.com/mapbox/node-sqlite3.git#918052b538b0effe6c4a44c74a16b2749c08a0d2" = { ··· 62871 62709 sha512 = "FPeyYU/3LpxcagnbmVWE+Q/qzg6keqeOBPbD7sEH9UKixUASeufPKiORDgh8nVX7J9Z+0vUaHt/WG999kGjvVQ=="; 62872 62710 }; 62873 62711 }; 62874 - "ssb-keys-8.2.0" = { 62712 + "ssb-keys-8.2.1" = { 62875 62713 name = "ssb-keys"; 62876 62714 packageName = "ssb-keys"; 62877 - version = "8.2.0"; 62715 + version = "8.2.1"; 62878 62716 src = fetchurl { 62879 - url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-8.2.0.tgz"; 62880 - sha512 = "U5vmEvWlMdmJQDHyiWYzXQwxlq+Th6cYvHy/cfhyoGU1vopiB5ytYm339bfhdmtjjRDSV2SPrm3vcgLrN3KH2w=="; 62717 + url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-8.2.1.tgz"; 62718 + sha512 = "3C/Kw78vGqj6Wrvb8+JZbkCA8u+8TXKaTcK/wiNZa2mfowRlCQTOH1dMlzxC60w+1GoTQi/vOk7IVaummANAiA=="; 62881 62719 }; 62882 62720 }; 62883 62721 "ssb-links-3.0.10" = { ··· 63096 62934 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 63097 62935 }; 63098 62936 }; 63099 - "sscaff-1.2.263" = { 62937 + "sscaff-1.2.274" = { 63100 62938 name = "sscaff"; 63101 62939 packageName = "sscaff"; 63102 - version = "1.2.263"; 62940 + version = "1.2.274"; 63103 62941 src = fetchurl { 63104 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.263.tgz"; 63105 - sha512 = "K8ciVoLrZq+d1R/VpVihTLoyRnAstFuuaJqPBaoyGykNqLN6x2PDZMO6c/MbGqVerJwKNGh2Xfxl1JV1zv/7nQ=="; 62942 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.274.tgz"; 62943 + sha512 = "sztRa50SL1LVxZnF1au6QT1SC2z0S1oEOyi2Kpnlg6urDns93aL32YxiJcNkLcY+VHFtVqm/SRv4cb+6LeoBQA=="; 63106 62944 }; 63107 62945 }; 63108 62946 "ssh-config-1.1.6" = { ··· 63789 63627 sha512 = "OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ=="; 63790 63628 }; 63791 63629 }; 63792 - "streamroller-3.0.7" = { 63630 + "streamroller-3.0.8" = { 63793 63631 name = "streamroller"; 63794 63632 packageName = "streamroller"; 63795 - version = "3.0.7"; 63633 + version = "3.0.8"; 63796 63634 src = fetchurl { 63797 - url = "https://registry.npmjs.org/streamroller/-/streamroller-3.0.7.tgz"; 63798 - sha512 = "kh68kwiDGuIPiPDWwRbEC5us+kfARP1e9AsQiaLaSqGrctOvMn0mtL8iNY3r4/o5nIoYi3gPI1jexguZsXDlxw=="; 63635 + url = "https://registry.npmjs.org/streamroller/-/streamroller-3.0.8.tgz"; 63636 + sha512 = "VI+ni3czbFZrd1MrlybxykWZ8sMDCMtTU7YJyhgb9M5X6d1DDxLdJr+gSnmRpXPMnIWxWKMaAE8K0WumBp3lDg=="; 63799 63637 }; 63800 63638 }; 63801 63639 "streamsearch-0.1.2" = { ··· 64023 63861 sha1 = "aba36de08dcee6a5a337d49b2ea1da1b28fc0ecf"; 64024 63862 }; 64025 63863 }; 64026 - "string.prototype.trim-1.2.5" = { 63864 + "string.prototype.trim-1.2.6" = { 64027 63865 name = "string.prototype.trim"; 64028 63866 packageName = "string.prototype.trim"; 64029 - version = "1.2.5"; 63867 + version = "1.2.6"; 64030 63868 src = fetchurl { 64031 - url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.5.tgz"; 64032 - sha512 = "Lnh17webJVsD6ECeovpVN17RlAKjmz4rF9S+8Y45CkMc/ufVpTkU3vZIyIC7sllQ1FCvObZnnCdNs/HXTUOTlg=="; 63869 + url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.6.tgz"; 63870 + sha512 = "8lMR2m+U0VJTPp6JjvJTtGyc4FIGq9CdRt7O9p6T0e6K4vjU+OP+SQJpbe/SBmRcCUIvNUnjsbmY6lnMp8MhsQ=="; 64033 63871 }; 64034 63872 }; 64035 63873 "string.prototype.trimend-1.0.4" = { ··· 64572 64410 sha512 = "luHn2OAMGJouOnadm6Fim6WXodQ2AWDkWjYq0rMdyEwzO5PdE4LzoXAEn9LL2snmBAlwUp1URVOTF7lZR3KU+Q=="; 64573 64411 }; 64574 64412 }; 64575 - "stylis-4.1.0" = { 64413 + "stylis-4.1.1" = { 64576 64414 name = "stylis"; 64577 64415 packageName = "stylis"; 64578 - version = "4.1.0"; 64416 + version = "4.1.1"; 64579 64417 src = fetchurl { 64580 - url = "https://registry.npmjs.org/stylis/-/stylis-4.1.0.tgz"; 64581 - sha512 = "SrSDzNasOCBTo7C2N9geFwydg/2bmdkWXd4gJirtq82m5JBYtR2+Ialck8czmfBLIdPxCOotlgJESPa8C1RqvA=="; 64418 + url = "https://registry.npmjs.org/stylis/-/stylis-4.1.1.tgz"; 64419 + sha512 = "lVrM/bNdhVX2OgBFNa2YJ9Lxj7kPzylieHd3TNjuGE0Re9JB7joL5VUKOVH1kdNNJTgGPpT8hmwIAPLaSyEVFQ=="; 64582 64420 }; 64583 64421 }; 64584 64422 "stylus-0.54.8" = { ··· 64761 64599 sha512 = "EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg=="; 64762 64600 }; 64763 64601 }; 64764 - "superstatic-7.1.0" = { 64602 + "superstatic-8.0.0" = { 64765 64603 name = "superstatic"; 64766 64604 packageName = "superstatic"; 64767 - version = "7.1.0"; 64605 + version = "8.0.0"; 64768 64606 src = fetchurl { 64769 - url = "https://registry.npmjs.org/superstatic/-/superstatic-7.1.0.tgz"; 64770 - sha512 = "yBU8iw07nM3Bu4jFc8lnKwLey0cj61OaGmFJZcYC2X+kEpXVmXzERJ3OTAHZAESe1OTeNIuWadt81U5IULGGAA=="; 64607 + url = "https://registry.npmjs.org/superstatic/-/superstatic-8.0.0.tgz"; 64608 + sha512 = "PqlA2xuEwOlRZsknl58A/rZEmgCUcfWIFec0bn10wYE5/tbMhEbMXGHCYDppiXLXcuhGHyOp1IimM2hLqkLLuw=="; 64771 64609 }; 64772 64610 }; 64773 64611 "supports-color-0.2.0" = { ··· 64905 64743 sha1 = "5a7f8a20a71188cf9e75a2cfe8eb182de90daf3b"; 64906 64744 }; 64907 64745 }; 64908 - "svelte-3.47.0" = { 64746 + "svelte-3.48.0" = { 64909 64747 name = "svelte"; 64910 64748 packageName = "svelte"; 64911 - version = "3.47.0"; 64749 + version = "3.48.0"; 64912 64750 src = fetchurl { 64913 - url = "https://registry.npmjs.org/svelte/-/svelte-3.47.0.tgz"; 64914 - sha512 = "4JaJp3HEoTCGARRWZQIZDUanhYv0iyoHikklVHVLH9xFE9db22g4TDv7CPeNA8HD1JgjXI1vlhR1JZvvhaTu2Q=="; 64751 + url = "https://registry.npmjs.org/svelte/-/svelte-3.48.0.tgz"; 64752 + sha512 = "fN2YRm/bGumvjUpu6yI3BpvZnpIm9I6A7HR4oUNYd7ggYyIwSA/BX7DJ+UXXffLp6XNcUijyLvttbPVCYa/3xQ=="; 64915 64753 }; 64916 64754 }; 64917 64755 "svelte-preprocess-4.10.6" = { ··· 65229 65067 sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; 65230 65068 }; 65231 65069 }; 65232 - "systeminformation-5.11.12" = { 65070 + "systeminformation-5.11.14" = { 65233 65071 name = "systeminformation"; 65234 65072 packageName = "systeminformation"; 65235 - version = "5.11.12"; 65073 + version = "5.11.14"; 65236 65074 src = fetchurl { 65237 - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.11.12.tgz"; 65238 - sha512 = "4OFXesPSSkNiO6SO4L8DQ0Hj2j/fWPmucybnjQsr9BVTI+K3xH6i3zm8f3SyPZQdULOuskUdzerY0ffmmbWKhA=="; 65075 + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.11.14.tgz"; 65076 + sha512 = "m8CJx3fIhKohanB0ExTk5q53uI1J0g5B09p77kU+KxnxRVpADVqTAwCg1PFelqKsj4LHd+qmVnumb511Hg4xow=="; 65239 65077 }; 65240 65078 }; 65241 65079 "sywac-1.3.0" = { ··· 65392 65230 sha512 = "k7F5pyr91n9D/yjSJwbLLYDCrTWXxMSXbbmHX2n334lSIc2rxeXyFkaBv4UuUd2gBYMrAOalPutAiCxC6q1qbw=="; 65393 65231 }; 65394 65232 }; 65395 - "tar-0.1.17" = { 65396 - name = "tar"; 65397 - packageName = "tar"; 65398 - version = "0.1.17"; 65399 - src = fetchurl { 65400 - url = "https://registry.npmjs.org/tar/-/tar-0.1.17.tgz"; 65401 - sha1 = "408c8a95deb8e78a65b59b1a51a333183a32badc"; 65402 - }; 65403 - }; 65404 65233 "tar-2.2.2" = { 65405 65234 name = "tar"; 65406 65235 packageName = "tar"; ··· 65561 65390 src = fetchurl { 65562 65391 url = "https://registry.npmjs.org/telegraf/-/telegraf-3.39.0.tgz"; 65563 65392 sha512 = "6u5UyW2KpMS/hwC4DKLGlicK/rVSYCahPFgF14ioP6BzwcDwQlciHCB/oWguvxLJaYGrvY6crzLHfjupFTBPXw=="; 65564 - }; 65565 - }; 65566 - "temp-0.6.0" = { 65567 - name = "temp"; 65568 - packageName = "temp"; 65569 - version = "0.6.0"; 65570 - src = fetchurl { 65571 - url = "https://registry.npmjs.org/temp/-/temp-0.6.0.tgz"; 65572 - sha1 = "6b13df5cddf370f2e3a606ca40f202c419173f07"; 65573 65393 }; 65574 65394 }; 65575 65395 "temp-0.8.3" = { ··· 65770 65590 sha512 = "EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw=="; 65771 65591 }; 65772 65592 }; 65773 - "terser-5.12.1" = { 65593 + "terser-5.13.1" = { 65774 65594 name = "terser"; 65775 65595 packageName = "terser"; 65776 - version = "5.12.1"; 65596 + version = "5.13.1"; 65777 65597 src = fetchurl { 65778 - url = "https://registry.npmjs.org/terser/-/terser-5.12.1.tgz"; 65779 - sha512 = "NXbs+7nisos5E+yXwAD+y7zrcTkMqb0dEJxIGtSKPdCBzopf7ni4odPul2aechpV7EXNvOudYOX2bb5tln1jbQ=="; 65598 + url = "https://registry.npmjs.org/terser/-/terser-5.13.1.tgz"; 65599 + sha512 = "hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA=="; 65780 65600 }; 65781 65601 }; 65782 65602 "terser-webpack-plugin-1.4.5" = { ··· 66326 66146 src = fetchurl { 66327 66147 url = "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz"; 66328 66148 sha512 = "pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw=="; 66329 - }; 66330 - }; 66331 - "tiny-lru-7.0.6" = { 66332 - name = "tiny-lru"; 66333 - packageName = "tiny-lru"; 66334 - version = "7.0.6"; 66335 - src = fetchurl { 66336 - url = "https://registry.npmjs.org/tiny-lru/-/tiny-lru-7.0.6.tgz"; 66337 - sha512 = "zNYO0Kvgn5rXzWpL0y3RS09sMK67eGaQj9805jlK9G6pSadfriTczzLHFXa/xcW4mIRfmlB9HyQ/+SgL0V1uow=="; 66338 66149 }; 66339 66150 }; 66340 66151 "tiny-queue-0.2.1" = { ··· 67228 67039 sha512 = "HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ=="; 67229 67040 }; 67230 67041 }; 67231 - "ts-loader-8.3.0" = { 67042 + "ts-loader-8.4.0" = { 67232 67043 name = "ts-loader"; 67233 67044 packageName = "ts-loader"; 67234 - version = "8.3.0"; 67045 + version = "8.4.0"; 67235 67046 src = fetchurl { 67236 - url = "https://registry.npmjs.org/ts-loader/-/ts-loader-8.3.0.tgz"; 67237 - sha512 = "MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag=="; 67047 + url = "https://registry.npmjs.org/ts-loader/-/ts-loader-8.4.0.tgz"; 67048 + sha512 = "6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw=="; 67238 67049 }; 67239 67050 }; 67240 67051 "ts-loader-9.2.6" = { ··· 67408 67219 sha512 = "77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="; 67409 67220 }; 67410 67221 }; 67222 + "tslib-2.4.0" = { 67223 + name = "tslib"; 67224 + packageName = "tslib"; 67225 + version = "2.4.0"; 67226 + src = fetchurl { 67227 + url = "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"; 67228 + sha512 = "d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="; 67229 + }; 67230 + }; 67411 67231 "tslint-5.20.1" = { 67412 67232 name = "tslint"; 67413 67233 packageName = "tslint"; ··· 67912 67732 sha512 = "7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g=="; 67913 67733 }; 67914 67734 }; 67915 - "typegram-3.9.0" = { 67735 + "typegram-3.9.1" = { 67916 67736 name = "typegram"; 67917 67737 packageName = "typegram"; 67918 - version = "3.9.0"; 67738 + version = "3.9.1"; 67919 67739 src = fetchurl { 67920 - url = "https://registry.npmjs.org/typegram/-/typegram-3.9.0.tgz"; 67921 - sha512 = "uXA93E7pmdBcL8oxsC2MRdah4qF72g2bUeCWWS6N6IbzlMrsn4uBwVw+RMQoG0ky10KP0gpsQ8lZ7P/jqVno5g=="; 67740 + url = "https://registry.npmjs.org/typegram/-/typegram-3.9.1.tgz"; 67741 + sha512 = "vfFr2o0iX+amnUj1h/0c49y8bCvGwt6DgdmTVD732Kf81XG26vgFwNWj+33Ol+xORC7m0cqU2hPYGRtcGinwZg=="; 67922 67742 }; 67923 67743 }; 67924 67744 "typeorm-0.2.38" = { ··· 68002 67822 sha512 = "HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg=="; 68003 67823 }; 68004 67824 }; 68005 - "typescript-4.6.3" = { 67825 + "typescript-4.6.4" = { 68006 67826 name = "typescript"; 68007 67827 packageName = "typescript"; 68008 - version = "4.6.3"; 67828 + version = "4.6.4"; 68009 67829 src = fetchurl { 68010 - url = "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz"; 68011 - sha512 = "yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw=="; 67830 + url = "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz"; 67831 + sha512 = "9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg=="; 68012 67832 }; 68013 67833 }; 68014 67834 "typescript-eslint-parser-16.0.1" = { ··· 68326 68146 sha512 = "2ISqZLXtzp1l9f1V8Yr6S+zuhXxEwE1CjKHjXULFDHJcfhc9Gm3mn19hdPp4rlNGEdCivKYGKjYe3WRGnafYdA=="; 68327 68147 }; 68328 68148 }; 68329 - "unbox-primitive-1.0.1" = { 68149 + "unbox-primitive-1.0.2" = { 68330 68150 name = "unbox-primitive"; 68331 68151 packageName = "unbox-primitive"; 68332 - version = "1.0.1"; 68152 + version = "1.0.2"; 68333 68153 src = fetchurl { 68334 - url = "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz"; 68335 - sha512 = "tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw=="; 68154 + url = "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"; 68155 + sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; 68336 68156 }; 68337 68157 }; 68338 68158 "unbzip2-stream-1.3.3" = { ··· 68398 68218 sha512 = "hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw=="; 68399 68219 }; 68400 68220 }; 68401 - "underscore-1.13.2" = { 68221 + "underscore-1.13.3" = { 68402 68222 name = "underscore"; 68403 68223 packageName = "underscore"; 68404 - version = "1.13.2"; 68224 + version = "1.13.3"; 68405 68225 src = fetchurl { 68406 - url = "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz"; 68407 - sha512 = "ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g=="; 68226 + url = "https://registry.npmjs.org/underscore/-/underscore-1.13.3.tgz"; 68227 + sha512 = "QvjkYpiD+dJJraRA8+dGAU4i7aBbb2s0S3jA45TFOvg2VgqvdCDd/3N6CqA8gluk1W91GLoXg5enMUx560QzuA=="; 68408 68228 }; 68409 68229 }; 68410 68230 "underscore-1.2.1" = { ··· 68461 68281 sha1 = "a4bd7f5a9c7f2eec31e4784b402241df36671499"; 68462 68282 }; 68463 68283 }; 68464 - "underscore.string-2.3.3" = { 68465 - name = "underscore.string"; 68466 - packageName = "underscore.string"; 68467 - version = "2.3.3"; 68468 - src = fetchurl { 68469 - url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz"; 68470 - sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d"; 68471 - }; 68472 - }; 68473 68284 "undertaker-1.3.0" = { 68474 68285 name = "undertaker"; 68475 68286 packageName = "undertaker"; ··· 68488 68299 sha1 = "5e4bda308e4a8a2ae584f9b9a4359a499825cc50"; 68489 68300 }; 68490 68301 }; 68491 - "undici-5.0.0" = { 68302 + "undici-5.1.0" = { 68492 68303 name = "undici"; 68493 68304 packageName = "undici"; 68494 - version = "5.0.0"; 68305 + version = "5.1.0"; 68495 68306 src = fetchurl { 68496 - url = "https://registry.npmjs.org/undici/-/undici-5.0.0.tgz"; 68497 - sha512 = "VhUpiZ3No1DOPPQVQnsDZyfcbTTcHdcgWej1PdFnSvOeJmOVDgiOHkunJmBLfmjt4CqgPQddPVjSWW0dsTs5Yg=="; 68307 + url = "https://registry.npmjs.org/undici/-/undici-5.1.0.tgz"; 68308 + sha512 = "S+Vy6GGLHmW0uNLyCOpma6qCEoX6Pw/Mga34UFeqNaMnfDMgeJhPdHwb9FDPC/gWnNhLxhE9Lis6yBDHtcJCqw=="; 68498 68309 }; 68499 68310 }; 68500 68311 "unherit-1.1.3" = { ··· 69758 69569 sha1 = "8bb871a4741e085c70487ca7acdbd7d6d36029eb"; 69759 69570 }; 69760 69571 }; 69572 + "utf-8-validate-5.0.7" = { 69573 + name = "utf-8-validate"; 69574 + packageName = "utf-8-validate"; 69575 + version = "5.0.7"; 69576 + src = fetchurl { 69577 + url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.7.tgz"; 69578 + sha512 = "vLt1O5Pp+flcArHGIyKEQq883nBt8nN8tVBcoL0qUXj2XT1n7p70yGIq2VK98I5FdZ1YHc0wk/koOnHjnXWk1Q=="; 69579 + }; 69580 + }; 69761 69581 "utf-8-validate-5.0.9" = { 69762 69582 name = "utf-8-validate"; 69763 69583 packageName = "utf-8-validate"; ··· 71108 70928 sha512 = "FA0foqMzMmEoO0WJP+MjoD4dRERhKS+Ag+yBrtmWQDmw2OuZ1R/5FkvI/XdTkCpHmTD9VMczugpHRejQyTXCNQ=="; 71109 70929 }; 71110 70930 }; 71111 - "vscode-css-languageservice-5.4.1" = { 70931 + "vscode-css-languageservice-5.4.2" = { 71112 70932 name = "vscode-css-languageservice"; 71113 70933 packageName = "vscode-css-languageservice"; 71114 - version = "5.4.1"; 70934 + version = "5.4.2"; 71115 70935 src = fetchurl { 71116 - url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.4.1.tgz"; 71117 - sha512 = "W7D3GKFXf97ReAaU4EZ2nxVO1kQhztbycJgc1b/Ipr0h8zYWr88BADmrXu02z+lsCS84D7Sr4hoUzDKeaFn2Kg=="; 70936 + url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.4.2.tgz"; 70937 + sha512 = "DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg=="; 71118 70938 }; 71119 70939 }; 71120 70940 "vscode-debugadapter-testsupport-1.51.0" = { ··· 71171 70991 sha512 = "rrDyCiOgMwOPgchpPGAeLzjYVVEW/Ror2/a1BWUEI3S9+NQhA9vj4SQkzmH6g2Bq9S9SV0OQeadD+xphOf1N3w=="; 71172 70992 }; 71173 70993 }; 71174 - "vscode-html-languageservice-4.2.4" = { 70994 + "vscode-html-languageservice-4.2.5" = { 71175 70995 name = "vscode-html-languageservice"; 71176 70996 packageName = "vscode-html-languageservice"; 71177 - version = "4.2.4"; 70997 + version = "4.2.5"; 71178 70998 src = fetchurl { 71179 - url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.2.4.tgz"; 71180 - sha512 = "1HqvXKOq9WlZyW4HTD+0XzrjZoZ/YFrgQY2PZqktbRloHXVAUKm6+cAcvZi4YqKPVn05/CK7do+KBHfuSaEdbg=="; 70999 + url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.2.5.tgz"; 71000 + sha512 = "dbr10KHabB9EaK8lI0XZW7SqOsTfrNyT3Nuj0GoPi4LjGKUmMiLtsqzfedIzRTzqY+w0FiLdh0/kQrnQ0tLxrw=="; 71181 71001 }; 71182 71002 }; 71183 71003 "vscode-json-languageservice-3.11.0" = { ··· 71279 71099 sha512 = "owRllqcFTnz5rXxcbmHPFGmpFmLqj9Z1V3Dzrv+s8ejOHLIT62Pyb5Uqzyl2/in2VP22DmzErPgZwrxjLCIKiQ=="; 71280 71100 }; 71281 71101 }; 71282 - "vscode-jsonrpc-8.0.0-next.7" = { 71102 + "vscode-jsonrpc-8.0.0-next.8" = { 71283 71103 name = "vscode-jsonrpc"; 71284 71104 packageName = "vscode-jsonrpc"; 71285 - version = "8.0.0-next.7"; 71105 + version = "8.0.0-next.8"; 71286 71106 src = fetchurl { 71287 - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.7.tgz"; 71288 - sha512 = "JX/F31LEsims0dAlOTKFE4E+AJMiJvdRSRViifFJSqSN7EzeYyWlfuDchF7g91oRNPZOIWfibTkDf3/UMsQGzQ=="; 71107 + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.8.tgz"; 71108 + sha512 = "2eh7v+rzttUG6wg21xnm3U4IaR/i8cU9vHI9ZntRXuBtCcyR3RrPBvl86Ffm91m/Cio45kmn/LskHK3BAKZILA=="; 71289 71109 }; 71290 71110 }; 71291 71111 "vscode-languageclient-4.0.1" = { ··· 71387 71207 sha512 = "/65lxR/CuLJoOdzTjOTYUPWS7k5qzaWese4PObnWc6jwLryUrSa7DslYfaRXigh5/xr1nlaUZCcJwkpgM0wFvw=="; 71388 71208 }; 71389 71209 }; 71390 - "vscode-languageserver-8.0.0-next.10" = { 71210 + "vscode-languageserver-8.0.0-next.14" = { 71391 71211 name = "vscode-languageserver"; 71392 71212 packageName = "vscode-languageserver"; 71393 - version = "8.0.0-next.10"; 71213 + version = "8.0.0-next.14"; 71394 71214 src = fetchurl { 71395 - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.0-next.10.tgz"; 71396 - sha512 = "sdjldl9ipuBSWVw5ENVMRcOVQwF0o+J6+lNA7FrB8MiLmzflnfjRoJMqA5tCEY8S/J/+P56ZR/dqiQnRYg5m8w=="; 71215 + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.0-next.14.tgz"; 71216 + sha512 = "8CjwnSuKuIs71E9dCtx8MBTCKmH7KvWZHgTf2KN9Pa03IshdNU3zcFs/yfifpDSWpE1EcLeWYCvZwir/1Jt5kA=="; 71397 71217 }; 71398 71218 }; 71399 71219 "vscode-languageserver-protocol-3.14.1" = { ··· 71441 71261 sha512 = "VLRcWKOpCXcx9UrqrS+NSF6pNxV498VGYGW+eyp9a79/F9ElUq3wdG6acXYlEfpWHuIxpm6MXps8FU88wqIgTg=="; 71442 71262 }; 71443 71263 }; 71444 - "vscode-languageserver-protocol-3.17.0-next.16" = { 71264 + "vscode-languageserver-protocol-3.17.0-next.20" = { 71445 71265 name = "vscode-languageserver-protocol"; 71446 71266 packageName = "vscode-languageserver-protocol"; 71447 - version = "3.17.0-next.16"; 71267 + version = "3.17.0-next.20"; 71448 71268 src = fetchurl { 71449 - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.16.tgz"; 71450 - sha512 = "tx4DnXw9u3N7vw+bx6n2NKp6FoxoNwiP/biH83AS30I2AnTGyLd7afSeH6Oewn2E8jvB7K15bs12sMppkKOVeQ=="; 71269 + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.20.tgz"; 71270 + sha512 = "uQSgoKsxFH+74NRwoWGYWr/FwmtN0XGesh+jHqTGhmVsMco9I5Li8kAc5et6zA7yt1RQcUAW3Jqim7Uvb0Npfg=="; 71451 71271 }; 71452 71272 }; 71453 71273 "vscode-languageserver-protocol-3.17.0-next.5" = { ··· 71549 71369 sha512 = "VGzh06oynbYa6JbTKUbxOEZN7CYEtWhN7DK5wfzUpeCJl8X8xZX39g2PVfpqXrIEduu7dcJgK007KgnX9tHNKA=="; 71550 71370 }; 71551 71371 }; 71372 + "vscode-languageserver-types-3.17.0-next.12" = { 71373 + name = "vscode-languageserver-types"; 71374 + packageName = "vscode-languageserver-types"; 71375 + version = "3.17.0-next.12"; 71376 + src = fetchurl { 71377 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.12.tgz"; 71378 + sha512 = "kaXEKkIrkd8UaQzkwUYSMgG6VVr8lplvng+/UKPb6rPYdOJ5a6JqNd87ohgIIWFE/tDWPiFM8TTGIQ2IJe02eg=="; 71379 + }; 71380 + }; 71552 71381 "vscode-languageserver-types-3.17.0-next.3" = { 71553 71382 name = "vscode-languageserver-types"; 71554 71383 packageName = "vscode-languageserver-types"; ··· 71565 71394 src = fetchurl { 71566 71395 url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.6.tgz"; 71567 71396 sha512 = "rHYeCotiabJHgvIYzWjV8g0dHCxyOQtcryTv1Xa1horaQ4jx2V+rjLBstc6zMpCyrnZcjorwEcAvGBDCd6wudw=="; 71568 - }; 71569 - }; 71570 - "vscode-languageserver-types-3.17.0-next.9" = { 71571 - name = "vscode-languageserver-types"; 71572 - packageName = "vscode-languageserver-types"; 71573 - version = "3.17.0-next.9"; 71574 - src = fetchurl { 71575 - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.9.tgz"; 71576 - sha512 = "9/PeDNPYduaoXRUzYpqmu4ZV9L01HGo0wH9FUt+sSHR7IXwA7xoXBfNUlv8gB9H0D2WwEmMomSy1NmhjKQyn3A=="; 71577 71397 }; 71578 71398 }; 71579 71399 "vscode-languageserver-types-3.5.0" = { ··· 71612 71432 sha512 = "7bOHxPsfyuCqmP+hZXscLhiHwe7CSuFE4hyhbs22xPIhQ4jv99FcR4eBzfYYVLP356HNFpdvz63FFb/xw6T4Iw=="; 71613 71433 }; 71614 71434 }; 71615 - "vscode-nls-5.0.0" = { 71435 + "vscode-nls-5.0.1" = { 71616 71436 name = "vscode-nls"; 71617 71437 packageName = "vscode-nls"; 71618 - version = "5.0.0"; 71438 + version = "5.0.1"; 71619 71439 src = fetchurl { 71620 - url = "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.0.tgz"; 71621 - sha512 = "u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA=="; 71440 + url = "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.1.tgz"; 71441 + sha512 = "hHQV6iig+M21lTdItKPkJAaWrxALQb/nqpVffakO4knJOh3DrU2SXOMzUzNgo1eADPzu3qSsJY1weCzvR52q9A=="; 71622 71442 }; 71623 71443 }; 71624 71444 "vscode-textbuffer-1.0.0" = { ··· 72476 72296 sha512 = "7iZ+u28Ljw5hCnMiq0BCOeSYf0vCFQe/ORY0HgscTiKjQed8WqugpBUggJ2NTnB9fahn1kEnPRX2jf8Px5PhJw=="; 72477 72297 }; 72478 72298 }; 72479 - "webtorrent-1.8.13" = { 72299 + "webtorrent-1.8.16" = { 72480 72300 name = "webtorrent"; 72481 72301 packageName = "webtorrent"; 72482 - version = "1.8.13"; 72302 + version = "1.8.16"; 72483 72303 src = fetchurl { 72484 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.8.13.tgz"; 72485 - sha512 = "CrNeCA2ZRSvG7YRVpmjyT8sr7QOa7E70k0nAAqIEIvXsYgDexwrwMe4TxH9sXbwaJCA9URSX9UBEGNZ/bjhwMg=="; 72304 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.8.16.tgz"; 72305 + sha512 = "cRiCUn+B62KHN+BtQLZ8+9eGJ8aPQtrk9OVnLDehudxY1u/1ajwuE+5p/ho1vT3ysmro0UtCRNnEor0+QmNaDA=="; 72486 72306 }; 72487 72307 }; 72488 72308 "webworkify-webpack-2.1.5" = { ··· 72953 72773 sha512 = "TWoamHt5yYvsMarGlGEQE59SbJHqGsZV8/lwC+iCcGeAe0vUaOh+Lv6SYM17ouzC/a/LB1/hz/7sxFBtlu1l4A=="; 72954 72774 }; 72955 72775 }; 72776 + "winston-2.4.6" = { 72777 + name = "winston"; 72778 + packageName = "winston"; 72779 + version = "2.4.6"; 72780 + src = fetchurl { 72781 + url = "https://registry.npmjs.org/winston/-/winston-2.4.6.tgz"; 72782 + sha512 = "J5Zu4p0tojLde8mIOyDSsmLmcP8I3Z6wtwpTDHx1+hGcdhxcJaAmG4CFtagkb+NiN1M9Ek4b42pzMWqfc9jm8w=="; 72783 + }; 72784 + }; 72956 72785 "winston-3.3.3" = { 72957 72786 name = "winston"; 72958 72787 packageName = "winston"; ··· 73095 72924 src = fetchurl { 73096 72925 url = "https://registry.npmjs.org/workerpool/-/workerpool-6.1.0.tgz"; 73097 72926 sha512 = "toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg=="; 73098 - }; 73099 - }; 73100 - "workerpool-6.2.0" = { 73101 - name = "workerpool"; 73102 - packageName = "workerpool"; 73103 - version = "6.2.0"; 73104 - src = fetchurl { 73105 - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz"; 73106 - sha512 = "Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A=="; 73107 72927 }; 73108 72928 }; 73109 72929 "workerpool-6.2.1" = { ··· 73421 73241 sha512 = "BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg=="; 73422 73242 }; 73423 73243 }; 73244 + "ws-8.6.0" = { 73245 + name = "ws"; 73246 + packageName = "ws"; 73247 + version = "8.6.0"; 73248 + src = fetchurl { 73249 + url = "https://registry.npmjs.org/ws/-/ws-8.6.0.tgz"; 73250 + sha512 = "AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw=="; 73251 + }; 73252 + }; 73424 73253 "wtfnode-0.8.4" = { 73425 73254 name = "wtfnode"; 73426 73255 packageName = "wtfnode"; ··· 73520 73349 sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ=="; 73521 73350 }; 73522 73351 }; 73523 - "xdl-59.2.32" = { 73352 + "xdl-59.2.36" = { 73524 73353 name = "xdl"; 73525 73354 packageName = "xdl"; 73526 - version = "59.2.32"; 73355 + version = "59.2.36"; 73527 73356 src = fetchurl { 73528 - url = "https://registry.npmjs.org/xdl/-/xdl-59.2.32.tgz"; 73529 - sha512 = "aXrgplZQJeDUlGsgA/lcMzf+opKHXOKt0a3B/+/FA6AE8SSSda9p+86t441x9d/is/PPUM4G5jbzIT4pqrvGAw=="; 73357 + url = "https://registry.npmjs.org/xdl/-/xdl-59.2.36.tgz"; 73358 + sha512 = "XpooZ7+Hq8og+InhqXknp8Ykk6onrm/+cVXYjCfvVbgW9VUApAyOx4ldsIA6XXa4osLj8z1MFhp/vWoVFPjubg=="; 73530 73359 }; 73531 73360 }; 73532 73361 "xenvar-0.5.1" = { ··· 74023 73852 src = fetchurl { 74024 73853 url = "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"; 74025 73854 sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; 74026 - }; 74027 - }; 74028 - "yaml-2.0.0-10" = { 74029 - name = "yaml"; 74030 - packageName = "yaml"; 74031 - version = "2.0.0-10"; 74032 - src = fetchurl { 74033 - url = "https://registry.npmjs.org/yaml/-/yaml-2.0.0-10.tgz"; 74034 - sha512 = "FHV8s5ODFFQXX/enJEU2EkanNl1UDBUz8oa4k5Qo/sR+Iq7VmhCDkRMb0/mjJCNeAWQ31W8WV6PYStDE4d9EIw=="; 74035 73855 }; 74036 73856 }; 74037 73857 "yaml-2.0.0-11" = { ··· 74733 74553 "@angular/cli" = nodeEnv.buildNodePackage { 74734 74554 name = "_at_angular_slash_cli"; 74735 74555 packageName = "@angular/cli"; 74736 - version = "13.3.3"; 74556 + version = "13.3.4"; 74737 74557 src = fetchurl { 74738 - url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.3.tgz"; 74739 - sha512 = "a+nnzFP1FfnypXpAhrHbIBaJcxzegWLZUvVzJQwt6P2z60IoHdvTVmyNbY89qI0LE1SrAokEUO1zW3Yjmu7fUw=="; 74558 + url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.4.tgz"; 74559 + sha512 = "4S5FNjkZgq98zcBVgwkYtMgMRMSVsprCgq7dM8yTxIQh+Np3fYgj5eRJ1+mfFG/kankH2z/TFyuoYiILh2D9Uw=="; 74740 74560 }; 74741 74561 dependencies = [ 74742 - sources."@angular-devkit/architect-0.1303.3" 74743 - sources."@angular-devkit/core-13.3.3" 74744 - sources."@angular-devkit/schematics-13.3.3" 74562 + sources."@angular-devkit/architect-0.1303.4" 74563 + sources."@angular-devkit/core-13.3.4" 74564 + sources."@angular-devkit/schematics-13.3.4" 74745 74565 sources."@gar/promisify-1.1.3" 74746 74566 sources."@npmcli/fs-1.1.1" 74747 74567 sources."@npmcli/git-2.1.0" ··· 74750 74570 sources."@npmcli/node-gyp-1.0.3" 74751 74571 sources."@npmcli/promise-spawn-1.3.2" 74752 74572 sources."@npmcli/run-script-2.0.0" 74753 - sources."@schematics/angular-13.3.3" 74573 + sources."@schematics/angular-13.3.4" 74754 74574 sources."@tootallnate/once-1.1.2" 74755 74575 sources."@yarnpkg/lockfile-1.1.0" 74756 74576 sources."abbrev-1.1.1" ··· 74829 74649 (sources."inquirer-8.2.0" // { 74830 74650 dependencies = [ 74831 74651 sources."rxjs-7.5.5" 74832 - sources."tslib-2.3.1" 74652 + sources."tslib-2.4.0" 74833 74653 ]; 74834 74654 }) 74835 74655 sources."ip-1.1.5" ··· 74877 74697 sources."@npmcli/fs-2.1.0" 74878 74698 sources."@npmcli/move-file-2.0.0" 74879 74699 sources."@tootallnate/once-2.0.0" 74880 - sources."cacache-16.0.4" 74700 + sources."brace-expansion-2.0.1" 74701 + sources."cacache-16.0.7" 74702 + sources."glob-8.0.1" 74881 74703 sources."http-proxy-agent-5.0.0" 74882 - sources."lru-cache-7.8.1" 74704 + sources."lru-cache-7.9.0" 74883 74705 (sources."make-fetch-happen-10.1.2" // { 74884 74706 dependencies = [ 74885 74707 sources."minipass-fetch-2.1.0" 74886 74708 ]; 74887 74709 }) 74710 + sources."minimatch-5.0.1" 74888 74711 sources."ssri-9.0.0" 74889 74712 ]; 74890 74713 }) 74891 - sources."npmlog-6.0.1" 74714 + sources."npmlog-6.0.2" 74892 74715 sources."once-1.4.0" 74893 74716 sources."onetime-5.1.2" 74894 74717 sources."open-8.4.0" ··· 74957 74780 "@antfu/ni" = nodeEnv.buildNodePackage { 74958 74781 name = "_at_antfu_slash_ni"; 74959 74782 packageName = "@antfu/ni"; 74960 - version = "0.14.0"; 74783 + version = "0.16.2"; 74961 74784 src = fetchurl { 74962 - url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.14.0.tgz"; 74963 - sha512 = "AfHEQ+6Kjb+PMdOBR2h6CrDKYgncIZKW5NwkR1BLkCWm4DHBCTfnQJeO3ixtWr0KE9BCnwGoM8xEx6y45p0n4g=="; 74785 + url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.16.2.tgz"; 74786 + sha512 = "HZH4I07EYKU4KZLtUYm/zEmaDIhaq51H/qu45uH1AcUPWqMGbB7evE/TnSr0SGInEA+oQs4Is5Vn/PmQhfuU5w=="; 74964 74787 }; 74965 74788 buildInputs = globalBuildInputs; 74966 74789 meta = { ··· 74988 74811 sources."@iarna/toml-2.2.5" 74989 74812 sources."ansi-styles-3.2.1" 74990 74813 sources."argparse-2.0.1" 74991 - sources."args-5.0.1" 74814 + sources."args-5.0.3" 74992 74815 sources."atomic-sleep-1.0.0" 74993 74816 sources."camelcase-5.0.0" 74994 74817 (sources."camelcase-keys-7.0.2" // { ··· 75085 74908 sources."ansi-styles-3.2.1" 75086 74909 sources."append-buffer-1.0.2" 75087 74910 sources."argparse-2.0.1" 75088 - (sources."args-5.0.1" // { 74911 + (sources."args-5.0.3" // { 75089 74912 dependencies = [ 75090 74913 sources."camelcase-5.0.0" 75091 74914 ]; ··· 75307 75130 "@astrojs/language-server" = nodeEnv.buildNodePackage { 75308 75131 name = "_at_astrojs_slash_language-server"; 75309 75132 packageName = "@astrojs/language-server"; 75310 - version = "0.15.0"; 75133 + version = "0.16.0"; 75311 75134 src = fetchurl { 75312 - url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.15.0.tgz"; 75313 - sha512 = "KjpuFJBUHk6J3Mf2++EwZj5if4le47yn8lcZUmVYUqAD5W/yIxLnp74h+1PYlTuVsnGxNb/301A4LxRQDVhkLA=="; 75135 + url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.16.0.tgz"; 75136 + sha512 = "NNXsLGh6LxzcIBPTtwPcS9nrkTCI2afHzxaAsdG3DXUFaztNlJa05PIA/tqnob/BIqZj02cEFS5bX1npLyjqaw=="; 75314 75137 }; 75315 75138 dependencies = [ 75316 - sources."@astrojs/svelte-language-integration-0.1.3" 75139 + sources."@astrojs/svelte-language-integration-0.1.4" 75317 75140 sources."@emmetio/abbreviation-2.2.3" 75318 75141 sources."@emmetio/css-abbreviation-2.1.4" 75319 75142 sources."@emmetio/scanner-1.0.0" ··· 75330 75153 sources."no-case-3.0.4" 75331 75154 sources."pascal-case-3.1.2" 75332 75155 sources."source-map-0.7.3" 75333 - sources."svelte-3.47.0" 75156 + sources."svelte-3.48.0" 75334 75157 sources."svelte2tsx-0.5.9" 75335 - sources."tslib-2.3.1" 75336 - sources."typescript-4.6.3" 75337 - sources."vscode-css-languageservice-5.4.1" 75338 - sources."vscode-html-languageservice-4.2.4" 75158 + sources."tslib-2.4.0" 75159 + sources."typescript-4.6.4" 75160 + sources."vscode-css-languageservice-5.4.2" 75161 + sources."vscode-html-languageservice-4.2.5" 75339 75162 sources."vscode-jsonrpc-6.0.0" 75340 75163 sources."vscode-languageserver-7.0.0" 75341 75164 sources."vscode-languageserver-protocol-3.16.0" 75342 75165 sources."vscode-languageserver-textdocument-1.0.4" 75343 75166 sources."vscode-languageserver-types-3.16.0" 75344 - sources."vscode-nls-5.0.0" 75167 + sources."vscode-nls-5.0.1" 75345 75168 sources."vscode-uri-3.0.3" 75346 75169 ]; 75347 75170 buildInputs = globalBuildInputs; ··· 75356 75179 "@bitwarden/cli" = nodeEnv.buildNodePackage { 75357 75180 name = "_at_bitwarden_slash_cli"; 75358 75181 packageName = "@bitwarden/cli"; 75359 - version = "1.22.0"; 75182 + version = "1.22.1"; 75360 75183 src = fetchurl { 75361 - url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-1.22.0.tgz"; 75362 - sha512 = "EZ304ncWMB1wUA+EJ7BO6mANQa/0yMxmXta6HGKIBoVqW0tSeWq8632ifhQm8/GbDpGbeZ7cLs4Zb04lyffSgw=="; 75184 + url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-1.22.1.tgz"; 75185 + sha512 = "tjRig3vs+tS6zBXZPqei8EEzFLtGJAaqPz2GUIbZWCfKoPTUhDZFGjKVwUFaVbfadYBms4QW8NB/7FPtlBcVRw=="; 75363 75186 }; 75364 75187 dependencies = [ 75365 75188 sources."@koa/multer-3.0.0" ··· 75367 75190 sources."@tootallnate/once-1.1.2" 75368 75191 sources."abab-2.0.6" 75369 75192 sources."accepts-1.3.8" 75370 - sources."acorn-8.7.0" 75193 + sources."acorn-8.7.1" 75371 75194 (sources."acorn-globals-6.0.0" // { 75372 75195 dependencies = [ 75373 75196 sources."acorn-7.4.1" ··· 75623 75446 "@commitlint/cli" = nodeEnv.buildNodePackage { 75624 75447 name = "_at_commitlint_slash_cli"; 75625 75448 packageName = "@commitlint/cli"; 75626 - version = "16.2.3"; 75449 + version = "16.2.4"; 75627 75450 src = fetchurl { 75628 - url = "https://registry.npmjs.org/@commitlint/cli/-/cli-16.2.3.tgz"; 75629 - sha512 = "VsJBQLvhhlOgEfxs/Z5liYuK0dXqLE5hz1VJzLBxiOxG31kL/X5Q4OvK292BmO7IGZcm1yJE3XQPWSiFaEHbWA=="; 75451 + url = "https://registry.npmjs.org/@commitlint/cli/-/cli-16.2.4.tgz"; 75452 + sha512 = "rbvqvz9JI+uiKxV2nH65BtSU01fsADd3bxe9fWtO3rM0c+CI/H9FfzKkDLvSRmXjvk1G2/wXlCGeqO9IBT4X9g=="; 75630 75453 }; 75631 75454 dependencies = [ 75632 75455 sources."@babel/code-frame-7.16.7" ··· 75645 75468 sources."@commitlint/ensure-16.2.1" 75646 75469 sources."@commitlint/execute-rule-16.2.1" 75647 75470 sources."@commitlint/format-16.2.1" 75648 - sources."@commitlint/is-ignored-16.2.1" 75649 - sources."@commitlint/lint-16.2.1" 75650 - sources."@commitlint/load-16.2.3" 75471 + sources."@commitlint/is-ignored-16.2.4" 75472 + sources."@commitlint/lint-16.2.4" 75473 + sources."@commitlint/load-16.2.4" 75651 75474 sources."@commitlint/message-16.2.1" 75652 75475 sources."@commitlint/parse-16.2.1" 75653 75476 sources."@commitlint/read-16.2.1" 75654 75477 sources."@commitlint/resolve-extends-16.2.1" 75655 - sources."@commitlint/rules-16.2.1" 75478 + sources."@commitlint/rules-16.2.4" 75656 75479 sources."@commitlint/to-lines-16.2.1" 75657 75480 (sources."@commitlint/top-level-16.2.1" // { 75658 75481 dependencies = [ ··· 75670 75493 sources."@tsconfig/node14-1.0.1" 75671 75494 sources."@tsconfig/node16-1.0.2" 75672 75495 sources."@types/minimist-1.2.2" 75673 - sources."@types/node-17.0.25" 75496 + sources."@types/node-17.0.31" 75674 75497 sources."@types/normalize-package-data-2.4.1" 75675 75498 sources."@types/parse-json-4.0.0" 75676 75499 sources."JSONStream-1.3.5" 75677 - sources."acorn-8.7.0" 75500 + sources."acorn-8.7.1" 75678 75501 sources."acorn-walk-8.2.0" 75679 75502 sources."ajv-6.12.6" 75680 75503 sources."ansi-regex-5.0.1" ··· 75793 75616 sources."resolve-from-5.0.0" 75794 75617 sources."resolve-global-1.0.0" 75795 75618 sources."safe-buffer-5.2.1" 75796 - sources."semver-7.3.5" 75619 + sources."semver-7.3.7" 75797 75620 sources."shebang-command-2.0.0" 75798 75621 sources."shebang-regex-3.0.0" 75799 75622 sources."signal-exit-3.0.7" ··· 75815 75638 sources."trim-newlines-3.0.1" 75816 75639 sources."ts-node-10.7.0" 75817 75640 sources."type-fest-0.18.1" 75818 - sources."typescript-4.6.3" 75641 + sources."typescript-4.6.4" 75819 75642 sources."universalify-2.0.0" 75820 75643 sources."uri-js-4.4.1" 75821 75644 sources."util-deprecate-1.0.2" ··· 75848 75671 "@commitlint/config-conventional" = nodeEnv.buildNodePackage { 75849 75672 name = "_at_commitlint_slash_config-conventional"; 75850 75673 packageName = "@commitlint/config-conventional"; 75851 - version = "16.2.1"; 75674 + version = "16.2.4"; 75852 75675 src = fetchurl { 75853 - url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-16.2.1.tgz"; 75854 - sha512 = "cP9gArx7gnaj4IqmtCIcHdRjTYdRUi6lmGE+lOzGGjGe45qGOS8nyQQNvkNy2Ey2VqoSWuXXkD8zCUh6EHf1Ww=="; 75676 + url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-16.2.4.tgz"; 75677 + sha512 = "av2UQJa3CuE5P0dzxj/o/B9XVALqYzEViHrMXtDrW9iuflrqCStWBAioijppj9URyz6ONpohJKAtSdgAOE0gkA=="; 75855 75678 }; 75856 75679 dependencies = [ 75857 75680 sources."array-ify-1.0.0" ··· 75900 75723 sources."@types/json-buffer-3.0.0" 75901 75724 sources."@types/keyv-3.1.4" 75902 75725 sources."@types/minimatch-3.0.5" 75903 - sources."@types/node-17.0.25" 75726 + sources."@types/node-17.0.31" 75904 75727 sources."@types/normalize-package-data-2.4.1" 75905 75728 sources."@types/responselike-1.0.0" 75906 75729 sources."abort-controller-3.0.0" ··· 75993 75816 sources."ieee754-1.2.1" 75994 75817 sources."indent-string-4.0.0" 75995 75818 sources."inherits-2.0.4" 75996 - sources."inquirer-8.2.2" 75819 + sources."inquirer-8.2.4" 75997 75820 (sources."inquirer-autocomplete-prompt-ipt-2.0.0" // { 75998 75821 dependencies = [ 75999 75822 sources."ansi-styles-3.2.1" ··· 76075 75898 (sources."p-map-5.3.0" // { 76076 75899 dependencies = [ 76077 75900 sources."aggregate-error-4.0.0" 76078 - sources."clean-stack-4.1.0" 75901 + sources."clean-stack-4.2.0" 76079 75902 sources."escape-string-regexp-5.0.0" 76080 75903 sources."indent-string-5.0.0" 76081 75904 ]; ··· 76141 75964 sources."type-fest-2.12.2" 76142 75965 ]; 76143 75966 }) 76144 - sources."tslib-2.3.1" 75967 + sources."tslib-2.4.0" 76145 75968 sources."type-fest-0.21.3" 76146 - sources."typescript-4.6.3" 75969 + sources."typescript-4.6.4" 76147 75970 sources."universalify-2.0.0" 76148 75971 sources."url-parse-1.5.10" 76149 75972 sources."url-template-2.0.8" ··· 76153 75976 sources."wcwidth-1.0.1" 76154 75977 sources."webidl-conversions-3.0.1" 76155 75978 sources."whatwg-url-5.0.0" 75979 + sources."wrap-ansi-7.0.0" 76156 75980 sources."wrappy-1.0.2" 76157 75981 sources."wtfnode-0.8.4" 76158 75982 sources."yallist-4.0.0" ··· 76186 76010 sources."@hyperswarm/hypersign-2.1.1" 76187 76011 sources."@hyperswarm/network-2.1.0" 76188 76012 sources."@leichtgewicht/ip-codec-2.0.3" 76189 - sources."@types/node-17.0.25" 76013 + sources."@types/node-17.0.31" 76190 76014 sources."abstract-extension-3.1.1" 76191 76015 sources."abstract-leveldown-6.2.3" 76192 - sources."acorn-8.7.0" 76016 + sources."acorn-8.7.1" 76193 76017 sources."acorn-walk-8.2.0" 76194 76018 (sources."ansi-diff-stream-1.2.1" // { 76195 76019 dependencies = [ ··· 76202 76026 sources."arpeecee-2.2.0" 76203 76027 sources."array-lru-1.1.1" 76204 76028 sources."atomic-batcher-1.0.2" 76205 - sources."await-lock-2.1.0" 76206 - sources."b4a-1.3.1" 76029 + sources."await-lock-2.2.2" 76030 + sources."b4a-1.5.0" 76207 76031 sources."base64-js-1.5.1" 76208 76032 sources."binary-extensions-2.2.0" 76209 76033 (sources."bitfield-rle-2.2.1" // { ··· 76547 76371 sha512 = "hV1PG20mLFmYbSJvV+JIGVLUT3zzDt2snR9T7tKMBAVvGQBAfzodylbTZe+b20hNz3Max2Z4zsKVksRu71x1+A=="; 76548 76372 }; 76549 76373 dependencies = [ 76550 - sources."@babel/parser-7.17.9" 76374 + sources."@babel/parser-7.17.10" 76551 76375 sources."@medable/mdctl-api-1.0.64" 76552 76376 sources."@medable/mdctl-api-driver-1.0.64" 76553 76377 sources."@medable/mdctl-axon-tools-1.0.64" ··· 76582 76406 sources."@types/markdown-it-12.2.3" 76583 76407 sources."@types/mdurl-1.0.2" 76584 76408 sources."@types/minimatch-3.0.5" 76585 - sources."@types/node-17.0.25" 76409 + sources."@types/node-17.0.31" 76586 76410 sources."@types/tough-cookie-2.3.8" 76587 76411 sources."abbrev-1.1.1" 76588 76412 sources."abort-controller-3.0.0" ··· 77387 77211 sources."type-check-0.3.2" 77388 77212 sources."uc.micro-1.0.6" 77389 77213 sources."uglify-js-3.15.4" 77390 - sources."underscore-1.13.2" 77214 + sources."underscore-1.13.3" 77391 77215 sources."union-value-1.0.1" 77392 77216 (sources."universal-url-2.0.0" // { 77393 77217 dependencies = [ ··· 77469 77293 sha512 = "wNbAzVF3G4zjGkxATccYtiSgiWXseDRacra71ozH5JOUX4L3RRbd1iaqKRwILLKzcyxsvsOWbV47CSBRR6bK5g=="; 77470 77294 }; 77471 77295 dependencies = [ 77472 - sources."@hapi/hoek-9.2.1" 77296 + sources."@hapi/hoek-9.3.0" 77473 77297 sources."@hapi/topo-5.1.0" 77474 77298 sources."@kwsites/file-exists-1.1.1" 77475 77299 sources."@kwsites/promise-deferred-1.1.1" ··· 77586 77410 sources."chalk-4.1.2" 77587 77411 sources."inquirer-8.2.0" 77588 77412 sources."rxjs-7.5.5" 77589 - sources."tslib-2.3.1" 77413 + sources."tslib-2.4.0" 77590 77414 ]; 77591 77415 }) 77592 77416 sources."@babel/code-frame-7.16.7" ··· 77607 77431 sources."@types/estree-0.0.51" 77608 77432 sources."@types/json-schema-7.0.11" 77609 77433 sources."@types/json5-0.0.29" 77610 - sources."@types/node-17.0.25" 77434 + sources."@types/node-17.0.31" 77611 77435 sources."@types/parse-json-4.0.0" 77612 77436 sources."@webassemblyjs/ast-1.11.1" 77613 77437 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 77626 77450 sources."@webassemblyjs/wast-printer-1.11.1" 77627 77451 sources."@xtuc/ieee754-1.2.0" 77628 77452 sources."@xtuc/long-4.2.2" 77629 - sources."acorn-8.7.0" 77453 + sources."acorn-8.7.1" 77630 77454 sources."acorn-import-assertions-1.8.0" 77631 77455 sources."ajv-8.9.0" 77632 77456 sources."ajv-formats-2.1.1" ··· 77642 77466 sources."bl-4.1.0" 77643 77467 sources."brace-expansion-1.1.11" 77644 77468 sources."braces-3.0.2" 77645 - sources."browserslist-4.20.2" 77469 + sources."browserslist-4.20.3" 77646 77470 sources."buffer-5.7.1" 77647 77471 sources."buffer-from-1.1.2" 77648 77472 sources."callsites-3.1.0" 77649 - sources."caniuse-lite-1.0.30001332" 77473 + sources."caniuse-lite-1.0.30001334" 77650 77474 sources."chalk-3.0.0" 77651 77475 sources."chardet-0.7.0" 77652 77476 sources."chokidar-3.5.3" ··· 77665 77489 sources."cross-spawn-7.0.3" 77666 77490 sources."deepmerge-4.2.2" 77667 77491 sources."defaults-1.0.3" 77668 - sources."electron-to-chromium-1.4.114" 77492 + sources."electron-to-chromium-1.4.129" 77669 77493 sources."emoji-regex-8.0.0" 77670 77494 sources."end-of-stream-1.4.4" 77671 77495 sources."enhanced-resolve-5.9.3" ··· 77742 77566 sources."lines-and-columns-1.2.4" 77743 77567 sources."loader-runner-4.3.0" 77744 77568 sources."lodash-4.17.21" 77569 + sources."lodash.sortby-4.7.0" 77745 77570 (sources."log-symbols-4.1.0" // { 77746 77571 dependencies = [ 77747 77572 sources."chalk-4.1.2" ··· 77760 77585 sources."mute-stream-0.0.8" 77761 77586 sources."neo-async-2.6.2" 77762 77587 sources."node-emoji-1.11.0" 77763 - sources."node-releases-2.0.3" 77588 + sources."node-releases-2.0.4" 77764 77589 sources."normalize-path-3.0.0" 77765 77590 sources."npm-run-path-4.0.1" 77766 77591 sources."once-1.4.0" ··· 77824 77649 sources."supports-preserve-symlinks-flag-1.0.0" 77825 77650 sources."symbol-observable-4.0.0" 77826 77651 sources."tapable-2.2.1" 77827 - (sources."terser-5.12.1" // { 77652 + (sources."terser-5.13.1" // { 77828 77653 dependencies = [ 77829 77654 sources."commander-2.20.3" 77655 + sources."source-map-0.8.0-beta.0" 77830 77656 ]; 77831 77657 }) 77832 77658 (sources."terser-webpack-plugin-5.3.1" // { ··· 77837 77663 sources."through-2.3.8" 77838 77664 sources."tmp-0.0.33" 77839 77665 sources."to-regex-range-5.0.1" 77666 + sources."tr46-1.0.1" 77840 77667 sources."tree-kill-1.2.2" 77841 77668 sources."tsconfig-paths-3.14.1" 77842 77669 (sources."tsconfig-paths-webpack-plugin-3.5.2" // { ··· 77852 77679 sources."util-deprecate-1.0.2" 77853 77680 sources."watchpack-2.3.1" 77854 77681 sources."wcwidth-1.0.1" 77682 + sources."webidl-conversions-4.0.2" 77855 77683 sources."webpack-5.71.0" 77856 77684 sources."webpack-node-externals-3.0.0" 77857 77685 sources."webpack-sources-3.2.3" 77686 + sources."whatwg-url-7.1.0" 77858 77687 sources."which-2.0.2" 77859 77688 sources."windows-release-4.0.0" 77860 77689 sources."wrappy-1.0.2" ··· 77986 77815 "@tailwindcss/line-clamp" = nodeEnv.buildNodePackage { 77987 77816 name = "_at_tailwindcss_slash_line-clamp"; 77988 77817 packageName = "@tailwindcss/line-clamp"; 77989 - version = "0.3.1"; 77818 + version = "0.4.0"; 77990 77819 src = fetchurl { 77991 - url = "https://registry.npmjs.org/@tailwindcss/line-clamp/-/line-clamp-0.3.1.tgz"; 77992 - sha512 = "pNr0T8LAc3TUx/gxCfQZRe9NB2dPEo/cedPHzUGIPxqDMhgjwNm6jYxww4W5l0zAsAddxr+XfZcqttGiFDgrGg=="; 77820 + url = "https://registry.npmjs.org/@tailwindcss/line-clamp/-/line-clamp-0.4.0.tgz"; 77821 + sha512 = "HQZo6gfx1D0+DU3nWlNLD5iA6Ef4JAXh0LeD8lOGrJwEDBwwJNKQza6WoXhhY1uQrxOuU8ROxV7CqiQV4CoiLw=="; 77993 77822 }; 77994 77823 buildInputs = globalBuildInputs; 77995 77824 meta = { ··· 78027 77856 "@uppy/companion" = nodeEnv.buildNodePackage { 78028 77857 name = "_at_uppy_slash_companion"; 78029 77858 packageName = "@uppy/companion"; 78030 - version = "3.5.0"; 77859 + version = "3.5.2"; 78031 77860 src = fetchurl { 78032 - url = "https://registry.npmjs.org/@uppy/companion/-/companion-3.5.0.tgz"; 78033 - sha512 = "hFsp3x/B2H++bjuDiaC0s0ktENe35OQKAoj78WUn1W50my6lpDMywd5WWmlFurK7Dda7I0OwVyaZ0c9L2hqCCg=="; 77861 + url = "https://registry.npmjs.org/@uppy/companion/-/companion-3.5.2.tgz"; 77862 + sha512 = "jvDzOlYvujIzUp4xgB9bJ80eGna9d59eIuLgJY1AlZTerNSwnsd6cfEhVofL1peQ6lGKoBzgqhfYzXts5mdinQ=="; 78034 77863 }; 78035 77864 dependencies = [ 78036 77865 sources."@purest/config-1.0.1" ··· 78050 77879 sources."async-limiter-1.0.1" 78051 77880 sources."asynckit-0.4.0" 78052 77881 sources."atob-2.1.2" 78053 - (sources."aws-sdk-2.1117.0" // { 77882 + (sources."aws-sdk-2.1125.0" // { 78054 77883 dependencies = [ 78055 77884 sources."uuid-3.3.2" 78056 77885 ]; ··· 78330 78159 dependencies = [ 78331 78160 sources."@achrinza/node-ipc-9.2.2" 78332 78161 sources."@akryum/winattr-3.0.0" 78333 - sources."@ampproject/remapping-2.1.2" 78162 + sources."@ampproject/remapping-2.2.0" 78334 78163 (sources."@apollo/protobufjs-1.2.2" // { 78335 78164 dependencies = [ 78336 78165 sources."@types/node-10.17.60" ··· 78340 78169 sources."@apollographql/graphql-playground-html-1.6.27" 78341 78170 sources."@apollographql/graphql-upload-8-fork-8.1.3" 78342 78171 sources."@babel/code-frame-7.16.7" 78343 - sources."@babel/compat-data-7.17.7" 78344 - (sources."@babel/core-7.17.9" // { 78172 + sources."@babel/compat-data-7.17.10" 78173 + (sources."@babel/core-7.17.10" // { 78345 78174 dependencies = [ 78346 78175 sources."semver-6.3.0" 78347 78176 ]; 78348 78177 }) 78349 - (sources."@babel/generator-7.17.9" // { 78350 - dependencies = [ 78351 - sources."source-map-0.5.7" 78352 - ]; 78353 - }) 78178 + sources."@babel/generator-7.17.10" 78354 78179 sources."@babel/helper-annotate-as-pure-7.16.7" 78355 78180 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 78356 - (sources."@babel/helper-compilation-targets-7.17.7" // { 78181 + (sources."@babel/helper-compilation-targets-7.17.10" // { 78357 78182 dependencies = [ 78358 78183 sources."semver-6.3.0" 78359 78184 ]; ··· 78393 78218 sources."supports-color-5.5.0" 78394 78219 ]; 78395 78220 }) 78396 - sources."@babel/parser-7.17.9" 78221 + sources."@babel/parser-7.17.10" 78397 78222 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 78398 78223 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 78399 78224 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 78426 78251 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 78427 78252 sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 78428 78253 sources."@babel/plugin-syntax-top-level-await-7.14.5" 78429 - sources."@babel/plugin-syntax-typescript-7.16.7" 78254 + sources."@babel/plugin-syntax-typescript-7.17.10" 78430 78255 sources."@babel/plugin-transform-arrow-functions-7.16.7" 78431 78256 sources."@babel/plugin-transform-async-to-generator-7.16.8" 78432 78257 sources."@babel/plugin-transform-block-scoped-functions-7.16.7" ··· 78446 78271 sources."@babel/plugin-transform-modules-commonjs-7.17.9" 78447 78272 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 78448 78273 sources."@babel/plugin-transform-modules-umd-7.16.7" 78449 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 78274 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.10" 78450 78275 sources."@babel/plugin-transform-new-target-7.16.7" 78451 78276 sources."@babel/plugin-transform-object-super-7.16.7" 78452 78277 sources."@babel/plugin-transform-parameters-7.16.7" ··· 78461 78286 sources."@babel/plugin-transform-typescript-7.16.8" 78462 78287 sources."@babel/plugin-transform-unicode-escapes-7.16.7" 78463 78288 sources."@babel/plugin-transform-unicode-regex-7.16.7" 78464 - (sources."@babel/preset-env-7.16.11" // { 78289 + (sources."@babel/preset-env-7.17.10" // { 78465 78290 dependencies = [ 78466 78291 sources."semver-6.3.0" 78467 78292 ]; ··· 78478 78303 }) 78479 78304 sources."@babel/runtime-7.17.9" 78480 78305 sources."@babel/template-7.16.7" 78481 - sources."@babel/traverse-7.17.9" 78482 - sources."@babel/types-7.17.0" 78483 - sources."@hapi/hoek-9.2.1" 78306 + sources."@babel/traverse-7.17.10" 78307 + sources."@babel/types-7.17.10" 78308 + sources."@hapi/hoek-9.3.0" 78484 78309 sources."@hapi/topo-5.1.0" 78485 78310 sources."@josephg/resolvable-1.0.1" 78486 - sources."@jridgewell/resolve-uri-3.0.5" 78311 + sources."@jridgewell/gen-mapping-0.1.1" 78312 + sources."@jridgewell/resolve-uri-3.0.6" 78313 + sources."@jridgewell/set-array-1.1.0" 78487 78314 sources."@jridgewell/sourcemap-codec-1.4.11" 78488 - sources."@jridgewell/trace-mapping-0.3.8" 78315 + sources."@jridgewell/trace-mapping-0.3.9" 78489 78316 sources."@node-ipc/js-queue-2.0.3" 78490 78317 sources."@nodelib/fs.scandir-2.1.5" 78491 78318 sources."@nodelib/fs.stat-2.0.5" ··· 78526 78353 sources."@types/keygrip-1.0.2" 78527 78354 sources."@types/koa-2.13.4" 78528 78355 sources."@types/koa-compose-3.2.5" 78529 - sources."@types/long-4.0.1" 78356 + sources."@types/long-4.0.2" 78530 78357 sources."@types/mime-1.3.2" 78531 - sources."@types/node-17.0.25" 78358 + sources."@types/node-17.0.31" 78532 78359 sources."@types/normalize-package-data-2.4.1" 78533 78360 sources."@types/qs-6.9.7" 78534 78361 sources."@types/range-parser-1.2.4" ··· 78635 78462 }) 78636 78463 sources."brace-expansion-1.1.11" 78637 78464 sources."braces-3.0.2" 78638 - sources."browserslist-4.20.2" 78465 + sources."browserslist-4.20.3" 78639 78466 sources."buffer-5.7.1" 78640 78467 sources."buffer-alloc-1.2.0" 78641 78468 sources."buffer-alloc-unsafe-1.1.0" ··· 78654 78481 }) 78655 78482 sources."call-bind-1.0.2" 78656 78483 sources."camelcase-6.3.0" 78657 - sources."caniuse-lite-1.0.30001332" 78484 + sources."caniuse-lite-1.0.30001334" 78658 78485 sources."caw-2.0.1" 78659 78486 sources."chalk-4.1.2" 78660 78487 sources."chardet-0.7.0" ··· 78704 78531 sources."safe-buffer-5.1.2" 78705 78532 ]; 78706 78533 }) 78707 - sources."cookie-0.4.2" 78534 + sources."cookie-0.5.0" 78708 78535 sources."cookie-signature-1.0.6" 78709 78536 sources."copy-descriptor-0.1.1" 78710 - (sources."core-js-compat-3.22.1" // { 78537 + (sources."core-js-compat-3.22.3" // { 78711 78538 dependencies = [ 78712 78539 sources."semver-7.0.0" 78713 78540 ]; 78714 78541 }) 78715 - sources."core-js-pure-3.22.1" 78542 + sources."core-js-pure-3.22.3" 78716 78543 sources."core-util-is-1.0.3" 78717 78544 sources."cors-2.8.5" 78718 78545 (sources."cross-spawn-6.0.5" // { ··· 78775 78602 sources."easy-stack-1.0.1" 78776 78603 sources."ee-first-1.1.1" 78777 78604 sources."ejs-3.1.7" 78778 - sources."electron-to-chromium-1.4.114" 78605 + sources."electron-to-chromium-1.4.129" 78779 78606 sources."emoji-regex-8.0.0" 78780 78607 sources."encodeurl-1.0.2" 78781 78608 sources."end-of-stream-1.4.4" ··· 78813 78640 sources."kind-of-5.1.0" 78814 78641 ]; 78815 78642 }) 78816 - (sources."express-4.17.3" // { 78643 + (sources."express-4.18.1" // { 78817 78644 dependencies = [ 78818 - sources."body-parser-1.19.2" 78819 78645 sources."debug-2.6.9" 78820 - sources."on-finished-2.3.0" 78821 - sources."qs-6.9.7" 78822 - sources."raw-body-2.4.3" 78646 + sources."depd-2.0.0" 78647 + sources."http-errors-2.0.0" 78648 + sources."statuses-2.0.1" 78823 78649 ]; 78824 78650 }) 78825 78651 sources."express-history-api-fallback-2.2.1" ··· 78852 78678 sources."filename-reserved-regex-2.0.0" 78853 78679 sources."filenamify-2.1.0" 78854 78680 sources."fill-range-7.0.1" 78855 - (sources."finalhandler-1.1.2" // { 78681 + (sources."finalhandler-1.2.0" // { 78856 78682 dependencies = [ 78857 78683 sources."debug-2.6.9" 78858 - sources."on-finished-2.3.0" 78684 + sources."statuses-2.0.1" 78859 78685 ]; 78860 78686 }) 78861 78687 (sources."find-cache-dir-2.1.0" // { ··· 78885 78711 sources."which-2.0.2" 78886 78712 ]; 78887 78713 }) 78888 - sources."flow-parser-0.176.2" 78714 + sources."flow-parser-0.176.3" 78889 78715 sources."for-each-0.3.3" 78890 78716 sources."for-in-1.0.2" 78891 78717 sources."forwarded-0.2.0" ··· 78971 78797 sources."inflight-1.0.6" 78972 78798 sources."inherits-2.0.4" 78973 78799 sources."ini-2.0.0" 78974 - sources."inquirer-8.2.2" 78800 + sources."inquirer-8.2.4" 78975 78801 sources."internal-slot-1.0.3" 78976 78802 sources."into-stream-3.1.0" 78977 78803 sources."ipaddr.js-1.9.1" ··· 79101 78927 sources."which-2.0.2" 79102 78928 ]; 79103 78929 }) 79104 - sources."node-releases-2.0.3" 78930 + sources."node-releases-2.0.4" 79105 78931 (sources."normalize-package-data-2.5.0" // { 79106 78932 dependencies = [ 79107 78933 sources."semver-5.7.1" ··· 79255 79081 ]; 79256 79082 }) 79257 79083 sources."semver-7.3.7" 79258 - (sources."send-0.17.2" // { 79084 + (sources."send-0.18.0" // { 79259 79085 dependencies = [ 79260 79086 (sources."debug-2.6.9" // { 79261 79087 dependencies = [ 79262 79088 sources."ms-2.0.0" 79263 79089 ]; 79264 79090 }) 79265 - sources."destroy-1.0.4" 79091 + sources."depd-2.0.0" 79092 + sources."http-errors-2.0.0" 79266 79093 sources."ms-2.1.3" 79267 - sources."on-finished-2.3.0" 79094 + sources."statuses-2.0.1" 79268 79095 ]; 79269 79096 }) 79270 - sources."serve-static-1.14.2" 79097 + sources."serve-static-1.15.0" 79271 79098 (sources."set-value-2.0.1" // { 79272 79099 dependencies = [ 79273 79100 sources."extend-shallow-2.0.1" ··· 79408 79235 sources."tslib-1.14.1" 79409 79236 ]; 79410 79237 }) 79411 - sources."tslib-2.3.1" 79238 + sources."tslib-2.4.0" 79412 79239 sources."tunnel-agent-0.6.0" 79413 79240 sources."type-fest-0.6.0" 79414 79241 sources."type-is-1.6.18" 79415 79242 sources."typescript-4.5.5" 79416 - sources."unbox-primitive-1.0.1" 79243 + sources."unbox-primitive-1.0.2" 79417 79244 sources."unbzip2-stream-1.4.3" 79418 79245 sources."unicode-canonical-property-names-ecmascript-2.0.0" 79419 79246 sources."unicode-match-property-ecmascript-2.0.0" ··· 79624 79451 }; 79625 79452 dependencies = [ 79626 79453 sources."@babel/code-frame-7.16.7" 79627 - sources."@babel/generator-7.17.9" 79454 + sources."@babel/generator-7.17.10" 79628 79455 sources."@babel/helper-validator-identifier-7.16.7" 79629 79456 sources."@babel/highlight-7.17.9" 79630 - sources."@babel/parser-7.17.9" 79457 + sources."@babel/parser-7.17.10" 79631 79458 sources."@babel/template-7.16.7" 79632 - sources."@babel/types-7.17.0" 79459 + sources."@babel/types-7.17.10" 79460 + sources."@jridgewell/gen-mapping-0.1.1" 79461 + sources."@jridgewell/set-array-1.1.0" 79462 + sources."@jridgewell/sourcemap-codec-1.4.11" 79633 79463 sources."@webassemblyjs/ast-1.11.1" 79634 79464 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 79635 79465 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 79650 79480 sources."has-flag-3.0.0" 79651 79481 sources."js-tokens-4.0.0" 79652 79482 sources."jsesc-2.5.2" 79653 - sources."source-map-0.5.7" 79654 79483 sources."supports-color-5.5.0" 79655 79484 sources."to-fast-properties-2.0.0" 79656 79485 ]; ··· 79720 79549 sources."@types/minimist-1.2.2" 79721 79550 sources."@types/ms-0.7.31" 79722 79551 sources."@types/nlcst-1.0.0" 79723 - sources."@types/node-17.0.25" 79552 + sources."@types/node-17.0.31" 79724 79553 sources."@types/normalize-package-data-2.4.1" 79725 79554 sources."@types/parse5-6.0.3" 79726 79555 sources."@types/supports-color-8.1.1" 79727 79556 sources."@types/unist-2.0.6" 79728 - sources."acorn-8.7.0" 79557 + sources."acorn-8.7.1" 79729 79558 sources."acorn-jsx-5.3.2" 79730 79559 sources."ansi-align-3.0.1" 79731 79560 sources."ansi-regex-5.0.1" ··· 79947 79776 sources."micromark-extension-mdx-jsx-1.0.3" 79948 79777 sources."micromark-extension-mdx-md-1.0.0" 79949 79778 sources."micromark-extension-mdxjs-1.0.0" 79950 - sources."micromark-extension-mdxjs-esm-1.0.2" 79779 + sources."micromark-extension-mdxjs-esm-1.0.3" 79951 79780 sources."micromark-factory-destination-1.0.0" 79952 79781 sources."micromark-factory-label-1.0.2" 79953 79782 sources."micromark-factory-mdx-expression-1.0.6" ··· 80187 80016 sha512 = "6Avt9pRA194Z/yN4hb7/6ZRhMtWLydsje2uP82b1VVFSBWwDlkswLTDFD0ngSEHlBSNR+bFnyOAGh+mpHQNYOQ=="; 80188 80017 }; 80189 80018 dependencies = [ 80190 - sources."@ampproject/remapping-2.1.2" 80019 + sources."@ampproject/remapping-2.2.0" 80191 80020 sources."@babel/code-frame-7.16.7" 80192 - sources."@babel/compat-data-7.17.7" 80193 - sources."@babel/core-7.17.9" 80194 - (sources."@babel/generator-7.17.9" // { 80195 - dependencies = [ 80196 - sources."source-map-0.5.7" 80197 - ]; 80198 - }) 80199 - sources."@babel/helper-compilation-targets-7.17.7" 80021 + sources."@babel/compat-data-7.17.10" 80022 + sources."@babel/core-7.17.10" 80023 + sources."@babel/generator-7.17.10" 80024 + sources."@babel/helper-compilation-targets-7.17.10" 80200 80025 sources."@babel/helper-environment-visitor-7.16.7" 80201 80026 sources."@babel/helper-function-name-7.17.9" 80202 80027 sources."@babel/helper-hoist-variables-7.16.7" ··· 80208 80033 sources."@babel/helper-validator-option-7.16.7" 80209 80034 sources."@babel/helpers-7.17.9" 80210 80035 sources."@babel/highlight-7.17.9" 80211 - sources."@babel/parser-7.17.9" 80036 + sources."@babel/parser-7.17.10" 80212 80037 sources."@babel/template-7.16.7" 80213 - sources."@babel/traverse-7.17.9" 80214 - sources."@babel/types-7.17.0" 80215 - sources."@jridgewell/resolve-uri-3.0.5" 80038 + sources."@babel/traverse-7.17.10" 80039 + sources."@babel/types-7.17.10" 80040 + sources."@jridgewell/gen-mapping-0.1.1" 80041 + sources."@jridgewell/resolve-uri-3.0.6" 80042 + sources."@jridgewell/set-array-1.1.0" 80216 80043 sources."@jridgewell/sourcemap-codec-1.4.11" 80217 - sources."@jridgewell/trace-mapping-0.3.8" 80044 + sources."@jridgewell/trace-mapping-0.3.9" 80218 80045 sources."@xmldom/xmldom-0.8.2" 80219 80046 sources."JSV-4.0.2" 80220 80047 sources."ansi-styles-3.2.1" ··· 80222 80049 sources."async-3.2.3" 80223 80050 sources."balanced-match-1.0.2" 80224 80051 sources."brace-expansion-2.0.1" 80225 - sources."browserslist-4.20.2" 80226 - sources."caniuse-lite-1.0.30001332" 80052 + sources."browserslist-4.20.3" 80053 + sources."caniuse-lite-1.0.30001334" 80227 80054 sources."chalk-2.4.2" 80228 80055 sources."color-convert-1.9.3" 80229 80056 sources."color-name-1.1.3" ··· 80233 80060 sources."convert-source-map-1.8.0" 80234 80061 sources."debug-4.3.4" 80235 80062 sources."ejs-3.1.6" 80236 - sources."electron-to-chromium-1.4.114" 80063 + sources."electron-to-chromium-1.4.129" 80237 80064 sources."ensure-posix-path-1.1.1" 80238 80065 sources."escalade-3.1.1" 80239 80066 sources."escape-string-regexp-1.0.5" ··· 80291 80118 }) 80292 80119 sources."moment-2.29.1" 80293 80120 sources."ms-2.1.2" 80294 - sources."node-releases-2.0.3" 80121 + sources."node-releases-2.0.4" 80295 80122 sources."node.extend-2.0.2" 80296 80123 (sources."nomnom-1.8.1" // { 80297 80124 dependencies = [ ··· 80332 80159 antennas = nodeEnv.buildNodePackage { 80333 80160 name = "antennas"; 80334 80161 packageName = "antennas"; 80335 - version = "4.1.1"; 80162 + version = "4.2.0"; 80336 80163 src = fetchurl { 80337 - url = "https://registry.npmjs.org/antennas/-/antennas-4.1.1.tgz"; 80338 - sha512 = "hNT3T+vtIvgL1rlahmlKqaz1XdWMJvyzYVM36WwxV9786Jtei1s/TCmAetko5d0fZVzIfYIr19VLVQnEQiQtMQ=="; 80164 + url = "https://registry.npmjs.org/antennas/-/antennas-4.2.0.tgz"; 80165 + sha512 = "jnGXyVBWZ2X6Fd//dEWmcrcjzt60sFSEN+sJniDNvOMkBJ+NyoNmS1hVxG4LLfK/vZ/tOCXqniw8yq9b/QaC+w=="; 80339 80166 }; 80340 80167 dependencies = [ 80341 80168 sources."accepts-1.3.8" ··· 80351 80178 sources."aws-sign2-0.7.0" 80352 80179 sources."aws4-1.11.0" 80353 80180 sources."axios-0.24.0" 80181 + sources."axios-digest-0.3.0" 80354 80182 sources."bcrypt-pbkdf-1.0.2" 80355 80183 sources."bluebird-3.7.2" 80356 80184 sources."bytes-3.1.2" ··· 80411 80239 sources."is-typedarray-1.0.0" 80412 80240 sources."isarray-0.0.1" 80413 80241 sources."isstream-0.1.2" 80242 + sources."js-md5-0.7.3" 80243 + sources."js-sha256-0.9.0" 80244 + sources."js-sha512-0.8.0" 80414 80245 sources."js-yaml-3.14.1" 80415 80246 sources."jsbn-0.1.1" 80416 80247 sources."json-schema-0.4.0" ··· 80530 80361 dependencies = [ 80531 80362 sources."@types/glob-7.2.0" 80532 80363 sources."@types/minimatch-3.0.5" 80533 - sources."@types/node-17.0.25" 80364 + sources."@types/node-17.0.31" 80534 80365 sources."balanced-match-1.0.2" 80535 80366 sources."brace-expansion-1.1.11" 80536 80367 sources."chromium-pickle-js-0.2.0" ··· 80608 80439 autoprefixer = nodeEnv.buildNodePackage { 80609 80440 name = "autoprefixer"; 80610 80441 packageName = "autoprefixer"; 80611 - version = "10.4.4"; 80442 + version = "10.4.6"; 80612 80443 src = fetchurl { 80613 - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.4.tgz"; 80614 - sha512 = "Tm8JxsB286VweiZ5F0anmbyGiNI3v3wGv3mz9W+cxEDYB/6jbnj6GM9H9mK3wIL8ftgl+C07Lcwb8PG5PCCPzA=="; 80444 + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.6.tgz"; 80445 + sha512 = "Rvzel0AZO9tJNm3ydySK80PpkWoEZTGC5bHUh/xbrP8qJCy08NFBwNGPcozy3d3SDIM0b2kNxw2K7jAIYFF01A=="; 80615 80446 }; 80616 80447 dependencies = [ 80617 - sources."browserslist-4.20.2" 80618 - sources."caniuse-lite-1.0.30001332" 80619 - sources."electron-to-chromium-1.4.114" 80448 + sources."browserslist-4.20.3" 80449 + sources."caniuse-lite-1.0.30001334" 80450 + sources."electron-to-chromium-1.4.129" 80620 80451 sources."escalade-3.1.1" 80621 80452 sources."fraction.js-4.2.0" 80622 - sources."node-releases-2.0.3" 80453 + sources."node-releases-2.0.4" 80623 80454 sources."normalize-range-0.1.2" 80624 80455 sources."picocolors-1.0.0" 80625 80456 sources."postcss-value-parser-4.2.0" ··· 80644 80475 }; 80645 80476 dependencies = [ 80646 80477 sources."@tootallnate/once-1.1.2" 80647 - sources."@types/node-17.0.25" 80478 + sources."@types/node-17.0.31" 80648 80479 sources."@types/yauzl-2.10.0" 80649 80480 sources."agent-base-6.0.2" 80650 80481 sources."ansi-escapes-4.3.2" 80651 80482 sources."ansi-regex-5.0.1" 80652 80483 sources."ansi-styles-4.3.0" 80653 80484 sources."ast-types-0.13.4" 80654 - (sources."aws-sdk-2.1117.0" // { 80485 + (sources."aws-sdk-2.1125.0" // { 80655 80486 dependencies = [ 80656 80487 sources."uuid-3.3.2" 80657 80488 ]; ··· 80736 80567 sources."inflight-1.0.6" 80737 80568 sources."inherits-2.0.4" 80738 80569 sources."ini-2.0.0" 80739 - sources."inquirer-8.2.2" 80570 + sources."inquirer-8.2.4" 80740 80571 sources."ip-1.1.5" 80741 80572 sources."is-fullwidth-code-point-3.0.0" 80742 80573 sources."is-interactive-1.0.0" ··· 80816 80647 sources."through-2.3.8" 80817 80648 sources."tmp-0.0.33" 80818 80649 sources."toidentifier-1.0.1" 80819 - sources."tslib-2.3.1" 80650 + sources."tslib-2.4.0" 80820 80651 sources."type-check-0.3.2" 80821 80652 sources."type-fest-0.21.3" 80822 80653 (sources."unbzip2-stream-1.3.3" // { ··· 80831 80662 sources."uuid-8.3.2" 80832 80663 sources."wcwidth-1.0.1" 80833 80664 sources."word-wrap-1.2.3" 80665 + sources."wrap-ansi-7.0.0" 80834 80666 sources."wrappy-1.0.2" 80835 80667 sources."ws-7.4.6" 80836 80668 sources."xml2js-0.4.19" ··· 81270 81102 balanceofsatoshis = nodeEnv.buildNodePackage { 81271 81103 name = "balanceofsatoshis"; 81272 81104 packageName = "balanceofsatoshis"; 81273 - version = "12.5.0"; 81105 + version = "12.7.1"; 81274 81106 src = fetchurl { 81275 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.5.0.tgz"; 81276 - sha512 = "r9L34CZGMxxgZ19h2GDXQvEdUdqVr8oqACFMc2kFH8JjtDkpzeO8gwTv40PQyki4xWlAqt953afbk7w3AW0wUw=="; 81107 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.7.1.tgz"; 81108 + sha512 = "moTdbzn6qXvDWYe4NuzePwTRK4QtlH4VMEkz7YHgOB/H/218vTRugg/qx1B8mAnLG4h7dwpZcribQXVOsM4Jww=="; 81277 81109 }; 81278 81110 dependencies = [ 81279 81111 (sources."@alexbosworth/caporal-1.4.4" // { ··· 81299 81131 }) 81300 81132 sources."@colors/colors-1.5.0" 81301 81133 sources."@dabh/diagnostics-2.0.3" 81302 - sources."@grammyjs/types-2.7.0" 81134 + sources."@grammyjs/types-2.7.1" 81303 81135 sources."@grpc/grpc-js-1.6.4" 81304 81136 sources."@grpc/proto-loader-0.6.9" 81305 81137 sources."@handsontable/formulajs-2.0.2" ··· 81322 81154 sources."@types/connect-3.4.35" 81323 81155 sources."@types/express-4.17.13" 81324 81156 sources."@types/express-serve-static-core-4.17.28" 81325 - sources."@types/long-4.0.1" 81157 + sources."@types/long-4.0.2" 81326 81158 sources."@types/mime-1.3.2" 81327 - sources."@types/node-17.0.25" 81159 + sources."@types/node-17.0.31" 81328 81160 sources."@types/qs-6.9.7" 81329 81161 sources."@types/range-parser-1.2.4" 81330 81162 sources."@types/request-2.48.8" ··· 81419 81251 sources."color-3.2.1" 81420 81252 sources."color-convert-1.9.3" 81421 81253 sources."color-name-1.1.3" 81422 - sources."color-string-1.9.0" 81254 + sources."color-string-1.9.1" 81423 81255 sources."colorette-2.0.16" 81424 81256 sources."colors-1.4.0" 81425 81257 sources."colorspace-1.1.4" ··· 81511 81343 }) 81512 81344 sources."got-9.6.0" 81513 81345 sources."graceful-fs-4.2.10" 81514 - (sources."grammy-1.8.0" // { 81346 + (sources."grammy-1.8.2" // { 81515 81347 dependencies = [ 81516 81348 sources."debug-4.3.4" 81517 81349 sources."ms-2.1.2" ··· 81542 81374 sources."imurmurhash-0.1.4" 81543 81375 sources."inherits-2.0.4" 81544 81376 sources."ini-3.0.0" 81545 - (sources."inquirer-8.2.2" // { 81377 + (sources."inquirer-8.2.4" // { 81546 81378 dependencies = [ 81547 81379 sources."ansi-escapes-4.3.2" 81548 81380 sources."ansi-styles-4.3.0" ··· 81655 81487 sources."type-fest-2.12.0" 81656 81488 ]; 81657 81489 }) 81658 - (sources."ln-service-53.13.0" // { 81490 + (sources."ln-service-53.15.0" // { 81659 81491 dependencies = [ 81660 - sources."@grpc/grpc-js-1.6.6" 81492 + sources."@grpc/grpc-js-1.6.7" 81493 + sources."@types/node-17.0.25" 81661 81494 sources."bolt09-0.2.3" 81662 81495 sources."invoices-2.0.6" 81663 - sources."lightning-5.12.0" 81496 + sources."lightning-5.14.0" 81664 81497 ]; 81665 81498 }) 81666 81499 (sources."ln-sync-3.12.0" // { ··· 81696 81529 sources."statuses-1.5.0" 81697 81530 ]; 81698 81531 }) 81699 - sources."ln-telegram-3.21.2" 81532 + sources."ln-telegram-3.21.4" 81700 81533 sources."lodash-4.17.21" 81701 81534 sources."lodash.camelcase-4.3.0" 81702 81535 sources."lodash.difference-4.5.0" ··· 81784 81617 sources."semver-6.3.0" 81785 81618 ]; 81786 81619 }) 81787 - (sources."paid-services-3.15.1" // { 81620 + (sources."paid-services-3.16.0" // { 81788 81621 dependencies = [ 81789 81622 sources."bolt09-0.2.3" 81790 81623 sources."invoices-2.0.6" 81791 - (sources."ln-service-53.11.0" // { 81792 - dependencies = [ 81793 - sources."bolt09-0.2.2" 81794 - sources."invoices-2.0.5" 81795 - ]; 81796 - }) 81797 81624 ]; 81798 81625 }) 81799 81626 sources."parseurl-1.3.3" ··· 81909 81736 sources."tr46-0.0.3" 81910 81737 sources."triple-beam-1.3.0" 81911 81738 sources."truncate-utf8-bytes-1.0.2" 81912 - sources."tslib-2.3.1" 81739 + sources."tslib-2.4.0" 81913 81740 sources."tweetnacl-1.0.3" 81914 81741 sources."tweetnacl-util-0.15.1" 81915 81742 sources."type-fest-2.12.2" ··· 82647 82474 sources."tty-browserify-0.0.1" 82648 82475 sources."typedarray-0.0.6" 82649 82476 sources."umd-3.0.3" 82650 - sources."unbox-primitive-1.0.1" 82477 + sources."unbox-primitive-1.0.2" 82651 82478 sources."undeclared-identifiers-1.1.3" 82652 82479 (sources."url-0.11.0" // { 82653 82480 dependencies = [ ··· 82681 82508 sha512 = "3zBtggcaZIeU9so4ja9yxk7/CZu9B3DOL6zkxFpzHCHsQmkGBPVXg61jItbeoa+WXgNLnr1sYES/2yQwyEZ2+w=="; 82682 82509 }; 82683 82510 dependencies = [ 82684 - sources."@socket.io/base64-arraybuffer-1.0.2" 82685 - sources."@socket.io/component-emitter-3.0.0" 82511 + sources."@socket.io/component-emitter-3.1.0" 82686 82512 sources."@types/component-emitter-1.2.11" 82687 82513 sources."@types/cookie-0.4.1" 82688 82514 sources."@types/cors-2.8.12" 82689 - sources."@types/node-17.0.25" 82515 + sources."@types/node-17.0.31" 82690 82516 sources."accepts-1.3.8" 82691 82517 sources."ansi-regex-2.1.1" 82692 82518 sources."ansi-styles-2.2.1" ··· 82694 82520 sources."async-1.5.2" 82695 82521 sources."async-each-series-0.1.1" 82696 82522 sources."axios-0.21.4" 82697 - sources."backo2-1.0.2" 82698 82523 sources."balanced-match-1.0.2" 82699 82524 sources."base64id-2.0.0" 82700 82525 sources."batch-0.6.1" ··· 82738 82563 sources."ee-first-1.1.1" 82739 82564 sources."emoji-regex-8.0.0" 82740 82565 sources."encodeurl-1.0.2" 82741 - sources."engine.io-6.1.3" 82742 - sources."engine.io-client-6.1.1" 82743 - sources."engine.io-parser-5.0.3" 82566 + sources."engine.io-6.2.0" 82567 + sources."engine.io-client-6.2.1" 82568 + sources."engine.io-parser-5.0.4" 82744 82569 sources."escalade-3.1.1" 82745 82570 sources."escape-html-1.0.3" 82746 82571 sources."escape-string-regexp-1.0.5" ··· 82761 82586 sources."glob-parent-5.1.2" 82762 82587 sources."graceful-fs-4.2.10" 82763 82588 sources."has-ansi-2.0.0" 82764 - sources."has-cors-1.1.0" 82765 82589 (sources."http-errors-2.0.0" // { 82766 82590 dependencies = [ 82767 82591 sources."statuses-2.0.1" ··· 82801 82625 sources."on-finished-2.3.0" 82802 82626 sources."openurl-1.1.1" 82803 82627 sources."opn-5.3.0" 82804 - sources."parseqs-0.0.6" 82805 - sources."parseuri-0.0.6" 82806 82628 sources."parseurl-1.3.3" 82807 82629 sources."picomatch-2.3.1" 82808 82630 sources."portscanner-2.1.1" ··· 82846 82668 sources."serve-static-1.13.2" 82847 82669 sources."server-destroy-1.0.1" 82848 82670 sources."setprototypeof-1.2.0" 82849 - (sources."socket.io-4.4.1" // { 82671 + (sources."socket.io-4.5.0" // { 82850 82672 dependencies = [ 82851 82673 sources."socket.io-parser-4.0.4" 82852 82674 ]; 82853 82675 }) 82854 - sources."socket.io-adapter-2.3.3" 82855 - sources."socket.io-client-4.4.1" 82856 - sources."socket.io-parser-4.1.2" 82676 + sources."socket.io-adapter-2.4.0" 82677 + sources."socket.io-client-4.5.0" 82678 + sources."socket.io-parser-4.2.0" 82857 82679 sources."statuses-1.3.1" 82858 82680 sources."stream-throttle-0.1.3" 82859 82681 (sources."string-width-4.2.3" // { ··· 82889 82711 ]; 82890 82712 }) 82891 82713 sources."yargs-parser-20.2.9" 82892 - sources."yeast-0.1.2" 82893 82714 ]; 82894 82715 buildInputs = globalBuildInputs; 82895 82716 meta = { ··· 82913 82734 sources."@babel/code-frame-7.16.7" 82914 82735 sources."@babel/helper-validator-identifier-7.16.7" 82915 82736 sources."@babel/highlight-7.17.9" 82916 - sources."@babel/parser-7.17.9" 82917 - sources."@babel/types-7.17.0" 82737 + sources."@babel/parser-7.17.10" 82738 + sources."@babel/types-7.17.10" 82918 82739 sources."@kwsites/file-exists-1.1.1" 82919 82740 sources."@kwsites/promise-deferred-1.1.1" 82920 82741 sources."@types/minimist-1.2.2" ··· 82967 82788 sources."brorand-1.1.0" 82968 82789 sources."bs58-4.0.1" 82969 82790 sources."bs58check-2.1.2" 82970 - sources."btc-rpc-client-git://github.com/btc21/btc-rpc-client" 82791 + sources."btc-rpc-client-git+https://github.com/btc21/btc-rpc-client" 82971 82792 sources."bunyan-1.8.15" 82972 82793 sources."bytes-3.1.2" 82973 82794 sources."call-bind-1.0.2" ··· 83045 82866 sources."dtrace-provider-0.8.8" 83046 82867 sources."ecc-jsbn-0.1.2" 83047 82868 sources."ee-first-1.1.1" 83048 - sources."electrum-client-git://github.com/janoside/electrum-client" 82869 + sources."electrum-client-git+https://github.com/janoside/electrum-client" 83049 82870 sources."elliptic-6.5.4" 83050 82871 sources."emoji-regex-8.0.0" 83051 82872 sources."encode-utf8-1.0.3" ··· 83056 82877 sources."escape-string-regexp-1.0.5" 83057 82878 sources."etag-1.8.1" 83058 82879 sources."event-loop-stats-1.4.1" 83059 - (sources."express-4.17.3" // { 82880 + (sources."express-4.18.1" // { 83060 82881 dependencies = [ 83061 - sources."body-parser-1.19.2" 83062 - sources."cookie-0.4.2" 82882 + sources."cookie-0.5.0" 83063 82883 sources."debug-2.6.9" 83064 - sources."depd-1.1.2" 83065 - sources."http-errors-1.8.1" 83066 - sources."on-finished-2.3.0" 83067 - sources."qs-6.9.7" 83068 - sources."raw-body-2.4.3" 83069 82884 sources."safe-buffer-5.2.1" 83070 - sources."statuses-1.5.0" 83071 82885 ]; 83072 82886 }) 83073 82887 sources."express-async-handler-1.2.0" ··· 83082 82896 sources."fast-deep-equal-3.1.3" 83083 82897 sources."fast-json-stable-stringify-2.1.0" 83084 82898 sources."file-uri-to-path-1.0.0" 83085 - (sources."finalhandler-1.1.2" // { 82899 + (sources."finalhandler-1.2.0" // { 83086 82900 dependencies = [ 83087 82901 sources."debug-2.6.9" 83088 - sources."on-finished-2.3.0" 83089 - sources."statuses-1.5.0" 83090 82902 ]; 83091 82903 }) 83092 82904 sources."find-up-4.1.0" ··· 83273 83085 sources."safe-json-stringify-1.2.0" 83274 83086 sources."safer-buffer-2.1.2" 83275 83087 sources."semver-7.3.7" 83276 - (sources."send-0.17.2" // { 83088 + (sources."send-0.18.0" // { 83277 83089 dependencies = [ 83278 83090 (sources."debug-2.6.9" // { 83279 83091 dependencies = [ 83280 83092 sources."ms-2.0.0" 83281 83093 ]; 83282 83094 }) 83283 - sources."depd-1.1.2" 83284 - sources."destroy-1.0.4" 83285 - sources."http-errors-1.8.1" 83286 83095 sources."ms-2.1.3" 83287 - sources."on-finished-2.3.0" 83288 - sources."statuses-1.5.0" 83289 83096 ]; 83290 83097 }) 83291 83098 (sources."serve-favicon-2.5.0" // { ··· 83294 83101 sources."safe-buffer-5.1.1" 83295 83102 ]; 83296 83103 }) 83297 - sources."serve-static-1.14.2" 83104 + sources."serve-static-1.15.0" 83298 83105 sources."set-blocking-2.0.0" 83299 83106 sources."setprototypeof-1.2.0" 83300 83107 sources."sha.js-2.4.11" ··· 83391 83198 sources."@protobufjs/path-1.1.2" 83392 83199 sources."@protobufjs/pool-1.1.0" 83393 83200 sources."@protobufjs/utf8-1.1.0" 83394 - sources."@types/long-4.0.1" 83395 - sources."@types/node-17.0.25" 83201 + sources."@types/long-4.0.2" 83202 + sources."@types/node-17.0.31" 83396 83203 sources."addr-to-ip-port-1.5.4" 83397 83204 sources."airplay-js-0.2.16" 83398 83205 sources."ajv-6.12.6" ··· 84075 83882 sources."isobject-3.0.1" 84076 83883 sources."iterm2-version-3.0.0" 84077 83884 sources."jpeg-js-0.2.0" 84078 - sources."jpgjs-git://github.com/notmasteryet/jpgjs" 83885 + sources."jpgjs-git+https://github.com/notmasteryet/jpgjs" 84079 83886 sources."json-parse-better-errors-1.0.2" 84080 83887 sources."jsonfile-5.0.0" 84081 83888 sources."kind-of-6.0.3" ··· 84399 84206 cdk8s-cli = nodeEnv.buildNodePackage { 84400 84207 name = "cdk8s-cli"; 84401 84208 packageName = "cdk8s-cli"; 84402 - version = "1.0.153"; 84209 + version = "1.0.164"; 84403 84210 src = fetchurl { 84404 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.153.tgz"; 84405 - sha512 = "7eZ5AhQG3iVP5FLPvX5BI3cJdlohtiBGg0L52gFQFvWzYQfEtkNvvGP8tPw0lZMUw0ed3UxrtJbgJ+fGzGVGJQ=="; 84211 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.164.tgz"; 84212 + sha512 = "1saDFNPhU3v1GI7KxuIj96oXV3x+QbqF9ZKBS9gRSj61YkZOsQ6L8UsMl1lFBBvKeO2OYc11Kvtrqxss0bIXkQ=="; 84406 84213 }; 84407 84214 dependencies = [ 84408 84215 sources."@jsii/check-node-1.57.0" ··· 84410 84217 sources."@nodelib/fs.scandir-2.1.5" 84411 84218 sources."@nodelib/fs.stat-2.0.5" 84412 84219 sources."@nodelib/fs.walk-1.2.8" 84413 - sources."@types/node-12.20.48" 84220 + sources."@types/node-12.20.50" 84414 84221 sources."@xmldom/xmldom-0.8.2" 84415 84222 sources."ajv-8.11.0" 84416 84223 sources."ansi-regex-5.0.1" ··· 84421 84228 sources."call-bind-1.0.2" 84422 84229 sources."camelcase-6.3.0" 84423 84230 sources."case-1.6.3" 84424 - sources."cdk8s-1.5.74" 84425 - sources."cdk8s-plus-22-1.0.0-beta.198" 84231 + sources."cdk8s-1.5.86" 84232 + sources."cdk8s-plus-22-1.0.0-beta.218" 84426 84233 sources."chalk-4.1.2" 84427 84234 sources."cliui-7.0.4" 84428 84235 sources."clone-2.1.2" ··· 84435 84242 sources."color-name-1.1.4" 84436 84243 sources."colors-1.4.0" 84437 84244 sources."commonmark-0.30.0" 84438 - sources."constructs-3.3.273" 84439 - sources."date-format-4.0.7" 84245 + sources."constructs-3.3.283" 84246 + sources."date-format-4.0.9" 84440 84247 sources."debug-4.3.4" 84441 84248 sources."decamelize-5.0.1" 84442 84249 sources."deep-equal-2.0.5" ··· 84524 84331 sources."yargs-16.2.0" 84525 84332 ]; 84526 84333 }) 84527 - (sources."jsii-srcmak-0.1.536" // { 84334 + (sources."jsii-srcmak-0.1.548" // { 84528 84335 dependencies = [ 84529 84336 sources."fs-extra-9.1.0" 84530 84337 ]; 84531 84338 }) 84532 84339 sources."json-schema-0.4.0" 84533 84340 sources."json-schema-traverse-1.0.0" 84534 - sources."json2jsii-0.2.197" 84341 + sources."json2jsii-0.2.207" 84535 84342 sources."jsonfile-6.1.0" 84536 84343 sources."jsonschema-1.4.0" 84537 84344 sources."locate-path-5.0.0" 84538 - sources."log4js-6.4.5" 84345 + sources."log4js-6.4.6" 84539 84346 sources."lower-case-2.0.2" 84540 84347 sources."lru-cache-6.0.0" 84541 84348 sources."mdurl-1.0.1" ··· 84575 84382 sources."snake-case-3.0.4" 84576 84383 sources."sort-json-2.0.1" 84577 84384 sources."spdx-license-list-6.5.0" 84578 - sources."sscaff-1.2.263" 84579 - (sources."streamroller-3.0.7" // { 84385 + sources."sscaff-1.2.274" 84386 + (sources."streamroller-3.0.8" // { 84580 84387 dependencies = [ 84581 84388 sources."fs-extra-10.1.0" 84582 84389 ]; ··· 84588 84395 sources."strip-ansi-6.0.1" 84589 84396 sources."supports-color-7.2.0" 84590 84397 sources."to-regex-range-5.0.1" 84591 - sources."tslib-2.3.1" 84398 + sources."tslib-2.4.0" 84592 84399 sources."typescript-3.9.10" 84593 - sources."unbox-primitive-1.0.1" 84400 + sources."unbox-primitive-1.0.2" 84594 84401 sources."universalify-2.0.0" 84595 84402 sources."uri-js-4.4.1" 84596 84403 sources."which-boxed-primitive-1.0.2" ··· 84627 84434 cdktf-cli = nodeEnv.buildNodePackage { 84628 84435 name = "cdktf-cli"; 84629 84436 packageName = "cdktf-cli"; 84630 - version = "0.10.2"; 84437 + version = "0.10.3"; 84631 84438 src = fetchurl { 84632 - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.10.2.tgz"; 84633 - sha512 = "NBUZ8jX/9NaO6xVv2STHwsk3JnFcrC6/OZK7sYz+4qkdzQ5zZ2QLkZcbwLeBpeUUIdvYqj/rR9YIC8a29H0sVw=="; 84439 + url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.10.3.tgz"; 84440 + sha512 = "gSbwPFofGm0VShMyx3k8SThmabe73Imib2jN7W1F7Lg5MI1Rjyx3+hNGI6YCI0hnT8pqdWghEGO1QHC7Smbl6g=="; 84634 84441 }; 84635 84442 dependencies = [ 84636 84443 sources."@babel/code-frame-7.16.7" 84637 - sources."@babel/generator-7.17.9" 84444 + sources."@babel/generator-7.17.10" 84638 84445 sources."@babel/helper-validator-identifier-7.16.7" 84639 84446 sources."@babel/highlight-7.17.9" 84640 - sources."@babel/parser-7.17.9" 84447 + sources."@babel/parser-7.17.10" 84641 84448 sources."@babel/template-7.16.7" 84642 - sources."@babel/types-7.17.0" 84643 - sources."@cdktf/hcl2cdk-0.10.2" 84644 - sources."@cdktf/hcl2json-0.10.2" 84645 - sources."@cdktf/provider-generator-0.10.2" 84449 + sources."@babel/types-7.17.10" 84450 + sources."@cdktf/hcl2cdk-0.10.3" 84451 + sources."@cdktf/hcl2json-0.10.3" 84452 + sources."@cdktf/provider-generator-0.10.3" 84453 + sources."@jridgewell/gen-mapping-0.1.1" 84454 + sources."@jridgewell/set-array-1.1.0" 84455 + sources."@jridgewell/sourcemap-codec-1.4.11" 84646 84456 (sources."@jsii/check-node-1.57.0" // { 84647 84457 dependencies = [ 84648 84458 sources."ansi-styles-4.3.0" ··· 84657 84467 sources."@nodelib/fs.scandir-2.1.5" 84658 84468 sources."@nodelib/fs.stat-2.0.5" 84659 84469 sources."@nodelib/fs.walk-1.2.8" 84660 - sources."@types/node-17.0.25" 84470 + sources."@types/node-17.0.31" 84661 84471 sources."@types/node-fetch-2.6.1" 84662 84472 sources."@types/yargs-17.0.10" 84663 84473 sources."@types/yargs-parser-21.0.0" ··· 84674 84484 sources."call-bind-1.0.2" 84675 84485 sources."camelcase-6.3.0" 84676 84486 sources."case-1.6.3" 84677 - sources."cdktf-0.10.2" 84487 + sources."cdktf-0.10.3" 84678 84488 sources."chalk-2.4.2" 84679 84489 sources."cliui-6.0.0" 84680 84490 sources."clone-2.1.2" ··· 84688 84498 sources."combined-stream-1.0.8" 84689 84499 sources."commonmark-0.30.0" 84690 84500 sources."concat-map-0.0.1" 84691 - sources."constructs-10.0.120" 84692 - sources."date-format-4.0.7" 84501 + sources."constructs-10.0.130" 84502 + sources."cross-spawn-7.0.3" 84503 + sources."date-format-4.0.9" 84693 84504 sources."debug-4.3.4" 84694 84505 sources."decamelize-1.2.0" 84695 84506 sources."deep-equal-2.0.5" ··· 84762 84573 sources."is-weakref-1.0.2" 84763 84574 sources."is-weakset-2.0.2" 84764 84575 sources."isarray-2.0.5" 84576 + sources."isexe-2.0.0" 84765 84577 sources."js-tokens-4.0.0" 84766 84578 sources."jsesc-2.5.2" 84767 84579 (sources."jsii-1.57.0" // { ··· 84833 84645 sources."yargs-parser-20.2.9" 84834 84646 ]; 84835 84647 }) 84836 - (sources."jsii-srcmak-0.1.536" // { 84648 + (sources."jsii-srcmak-0.1.548" // { 84837 84649 dependencies = [ 84838 84650 sources."fs-extra-9.1.0" 84839 84651 sources."jsonfile-6.1.0" ··· 84845 84657 sources."jsonschema-1.4.0" 84846 84658 sources."locate-path-5.0.0" 84847 84659 sources."lodash.isequal-4.5.0" 84848 - sources."log4js-6.4.5" 84660 + sources."log4js-6.4.6" 84849 84661 sources."lru-cache-6.0.0" 84850 84662 sources."mdurl-1.0.1" 84851 84663 sources."merge2-1.4.1" ··· 84874 84686 sources."p-try-2.2.0" 84875 84687 sources."path-exists-4.0.0" 84876 84688 sources."path-is-absolute-1.0.1" 84689 + sources."path-key-3.1.1" 84877 84690 sources."picomatch-2.3.1" 84878 84691 sources."prettier-2.6.2" 84879 84692 sources."punycode-2.1.1" ··· 84893 84706 ]; 84894 84707 }) 84895 84708 sources."set-blocking-2.0.0" 84709 + sources."shebang-command-2.0.0" 84710 + sources."shebang-regex-3.0.0" 84896 84711 sources."side-channel-1.0.4" 84897 84712 sources."sort-json-2.0.1" 84898 - sources."source-map-0.5.7" 84899 84713 sources."spdx-license-list-6.5.0" 84900 - (sources."streamroller-3.0.7" // { 84714 + (sources."streamroller-3.0.8" // { 84901 84715 dependencies = [ 84902 84716 sources."fs-extra-10.1.0" 84903 84717 sources."jsonfile-6.1.0" ··· 84915 84729 sources."tr46-0.0.3" 84916 84730 sources."tunnel-agent-0.6.0" 84917 84731 sources."typescript-3.9.10" 84918 - sources."unbox-primitive-1.0.1" 84732 + sources."unbox-primitive-1.0.2" 84919 84733 sources."universalify-0.1.2" 84920 84734 sources."webidl-conversions-3.0.1" 84921 84735 sources."whatwg-url-5.0.0" 84736 + sources."which-2.0.2" 84922 84737 sources."which-boxed-primitive-1.0.2" 84923 84738 sources."which-collection-1.0.1" 84924 84739 sources."which-module-2.0.0" ··· 85167 84982 sources."webidl-conversions-4.0.2" 85168 84983 sources."whatwg-fetch-3.6.2" 85169 84984 sources."whatwg-url-7.1.0" 85170 - (sources."winston-2.4.5" // { 85171 - dependencies = [ 85172 - sources."async-1.0.0" 85173 - ]; 85174 - }) 84985 + sources."winston-2.4.6" 85175 84986 ]; 85176 84987 buildInputs = globalBuildInputs; 85177 84988 meta = { ··· 85186 84997 coc-clangd = nodeEnv.buildNodePackage { 85187 84998 name = "coc-clangd"; 85188 84999 packageName = "coc-clangd"; 85189 - version = "0.21.3"; 85000 + version = "0.21.4"; 85190 85001 src = fetchurl { 85191 - url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.21.3.tgz"; 85192 - sha512 = "fo38suoOGygQ68d6WAcQyTT0uVyEq+plVgr0viWb/DVe4vy51S5RLDboGFuCfkk8GIy6snWCv0am0w83WXBuig=="; 85002 + url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.21.4.tgz"; 85003 + sha512 = "atI92VBGGtYnH1E5KHXVxTHY8V8UgSHHRsaEdhuIkxGwEajCABAmf9XQlhHv6kawjfOysd7UT91d+P7wUKgmNw=="; 85193 85004 }; 85194 85005 buildInputs = globalBuildInputs; 85195 85006 meta = { ··· 85422 85233 }; 85423 85234 dependencies = [ 85424 85235 sources."isexe-2.0.0" 85425 - sources."tslib-2.3.1" 85236 + sources."tslib-2.4.0" 85426 85237 sources."vscode-languageserver-textdocument-1.0.4" 85427 85238 sources."vscode-uri-3.0.3" 85428 85239 sources."which-2.0.2" ··· 85480 85291 sha512 = "HtFYiBx2ZIFairTsfDwLsMUTGwlH498VzAipWZeCOIGf7ZXetEbv0t+wr7IAy2KMIwhlmzoMsi5aHSlUupxGHA=="; 85481 85292 }; 85482 85293 dependencies = [ 85483 - sources."typescript-4.6.3" 85294 + sources."typescript-4.6.4" 85484 85295 ]; 85485 85296 buildInputs = globalBuildInputs; 85486 85297 meta = { ··· 85636 85447 sources."which-1.3.1" 85637 85448 ]; 85638 85449 }) 85639 - sources."date-format-4.0.7" 85450 + sources."date-format-4.0.9" 85640 85451 sources."debounce-1.2.1" 85641 85452 sources."debug-4.3.4" 85642 85453 sources."deep-extend-0.6.0" ··· 85651 85462 sources."fb-watchman-2.0.1" 85652 85463 sources."flatted-3.2.5" 85653 85464 sources."follow-redirects-1.14.9" 85654 - sources."fp-ts-2.11.10" 85465 + sources."fp-ts-2.12.1" 85655 85466 sources."fs-extra-10.1.0" 85656 85467 sources."fs-minipass-2.1.0" 85657 85468 sources."fs.realpath-1.0.0" ··· 85706 85517 ]; 85707 85518 }) 85708 85519 sources."lodash-4.17.21" 85709 - sources."log4js-6.4.5" 85520 + sources."log4js-6.4.6" 85710 85521 sources."lru-cache-6.0.0" 85711 85522 sources."metals-languageclient-0.4.2" 85712 85523 sources."minimatch-3.1.2" ··· 85756 85567 sources."shell-quote-1.7.3" 85757 85568 sources."side-channel-1.0.4" 85758 85569 sources."signal-exit-3.0.7" 85759 - sources."streamroller-3.0.7" 85570 + sources."streamroller-3.0.8" 85760 85571 sources."string.prototype.trimend-1.0.4" 85761 85572 sources."string.prototype.trimstart-1.0.4" 85762 85573 (sources."string_decoder-1.1.1" // { ··· 85769 85580 sources."tar-6.1.11" 85770 85581 sources."tr46-0.0.3" 85771 85582 sources."traverse-0.3.9" 85772 - sources."tslib-2.3.1" 85773 - sources."unbox-primitive-1.0.1" 85583 + sources."tslib-2.4.0" 85584 + sources."unbox-primitive-1.0.2" 85774 85585 sources."universalify-2.0.0" 85775 85586 sources."unzipper-0.10.11" 85776 85587 sources."util-deprecate-1.0.2" ··· 85821 85632 coc-prettier = nodeEnv.buildNodePackage { 85822 85633 name = "coc-prettier"; 85823 85634 packageName = "coc-prettier"; 85824 - version = "9.2.3"; 85635 + version = "9.2.4"; 85825 85636 src = fetchurl { 85826 - url = "https://registry.npmjs.org/coc-prettier/-/coc-prettier-9.2.3.tgz"; 85827 - sha512 = "LkwQTBlD/chH0BTl7zFMw+M1CKbVIy8W49nVLuB+wmgS3dqnKZo58PRTYkcX2X25/FIWOh/oMSjWoZ8cTck8zQ=="; 85637 + url = "https://registry.npmjs.org/coc-prettier/-/coc-prettier-9.2.4.tgz"; 85638 + sha512 = "QI0SD7lbfDz969h8wgpepbDKZcLAbg3rmdBtzC9OnHUGZr6C6iWfhEfbWzFvdEgqvlkUTCrqt/IkxxKbkzXZDw=="; 85828 85639 }; 85829 85640 dependencies = [ 85830 85641 sources."prettier-2.6.2" ··· 85848 85659 sha512 = "7hF2rkGFbx4KQrYflu12OlPVV/7lQxaJWyslJMsdElEVOVOpO5C6wmwf2+6Xnzm65i6mFIg5lO7zYAz6nRSMFg=="; 85849 85660 }; 85850 85661 dependencies = [ 85851 - sources."pyright-1.1.239" 85662 + sources."pyright-1.1.243" 85852 85663 ]; 85853 85664 buildInputs = globalBuildInputs; 85854 85665 meta = { ··· 85975 85786 coc-solargraph = nodeEnv.buildNodePackage { 85976 85787 name = "coc-solargraph"; 85977 85788 packageName = "coc-solargraph"; 85978 - version = "1.2.3"; 85789 + version = "1.2.4"; 85979 85790 src = fetchurl { 85980 - url = "https://registry.npmjs.org/coc-solargraph/-/coc-solargraph-1.2.3.tgz"; 85981 - sha512 = "271smxh06nFDBJ/xfVYmrW8IosGWQzApBzYt244mbbBlMhcJBV5W9CvT2SuhrU9bp8ZM6jw9BWYgD/ex8311Lw=="; 85791 + url = "https://registry.npmjs.org/coc-solargraph/-/coc-solargraph-1.2.4.tgz"; 85792 + sha512 = "Z00v8HmgQyJgv/FKo7FkqWWTPNHeiOgEDqsI4RT9457rEQ8ZF/wLeq38DRihTfIra93GZ3EprVKYCOels6JHgQ=="; 85982 85793 }; 85983 85794 buildInputs = globalBuildInputs; 85984 85795 meta = { ··· 85998 85809 sha512 = "+GYR6KTvHQnqu0j1kXT30hRZMuCwG/G52wG/19LSPE+p9Q0i8XFH6582T0btTu39xz2TPsDOGjT1VgyRw2urug=="; 85999 85810 }; 86000 85811 dependencies = [ 86001 - sources."@ampproject/remapping-2.1.2" 85812 + sources."@ampproject/remapping-2.2.0" 86002 85813 sources."@babel/code-frame-7.16.7" 86003 - sources."@babel/compat-data-7.17.7" 86004 - sources."@babel/core-7.17.9" 86005 - sources."@babel/generator-7.17.9" 86006 - sources."@babel/helper-compilation-targets-7.17.7" 85814 + sources."@babel/compat-data-7.17.10" 85815 + sources."@babel/core-7.17.10" 85816 + sources."@babel/generator-7.17.10" 85817 + sources."@babel/helper-compilation-targets-7.17.10" 86007 85818 sources."@babel/helper-environment-visitor-7.16.7" 86008 85819 sources."@babel/helper-function-name-7.17.9" 86009 85820 sources."@babel/helper-hoist-variables-7.16.7" ··· 86019 85830 sources."chalk-2.4.2" 86020 85831 ]; 86021 85832 }) 86022 - sources."@babel/parser-7.17.9" 85833 + sources."@babel/parser-7.17.10" 86023 85834 sources."@babel/template-7.16.7" 86024 - sources."@babel/traverse-7.17.9" 86025 - sources."@babel/types-7.17.0" 86026 - sources."@jridgewell/resolve-uri-3.0.5" 85835 + sources."@babel/traverse-7.17.10" 85836 + sources."@babel/types-7.17.10" 85837 + sources."@jridgewell/gen-mapping-0.1.1" 85838 + sources."@jridgewell/resolve-uri-3.0.6" 85839 + sources."@jridgewell/set-array-1.1.0" 86027 85840 sources."@jridgewell/sourcemap-codec-1.4.11" 86028 - sources."@jridgewell/trace-mapping-0.3.8" 85841 + sources."@jridgewell/trace-mapping-0.3.9" 86029 85842 sources."@nodelib/fs.scandir-2.1.5" 86030 85843 sources."@nodelib/fs.stat-2.0.5" 86031 85844 sources."@nodelib/fs.walk-1.2.8" ··· 86055 85868 ]; 86056 85869 }) 86057 85870 sources."braces-3.0.2" 86058 - sources."browserslist-4.20.2" 85871 + sources."browserslist-4.20.3" 86059 85872 sources."callsites-3.1.0" 86060 85873 sources."camelcase-5.3.1" 86061 85874 sources."camelcase-keys-6.2.2" 86062 - sources."caniuse-lite-1.0.30001332" 85875 + sources."caniuse-lite-1.0.30001334" 86063 85876 (sources."chalk-4.1.2" // { 86064 85877 dependencies = [ 86065 85878 sources."ansi-styles-4.3.0" ··· 86096 85909 sources."domelementtype-1.3.1" 86097 85910 sources."domhandler-2.4.2" 86098 85911 sources."domutils-1.7.0" 86099 - sources."electron-to-chromium-1.4.114" 85912 + sources."electron-to-chromium-1.4.129" 86100 85913 sources."emoji-regex-8.0.0" 86101 85914 sources."entities-1.1.2" 86102 85915 sources."error-ex-1.3.2" ··· 86192 86005 ]; 86193 86006 }) 86194 86007 sources."ms-2.1.2" 86195 - sources."node-releases-2.0.3" 86008 + sources."node-releases-2.0.4" 86196 86009 (sources."normalize-package-data-3.0.3" // { 86197 86010 dependencies = [ 86198 86011 sources."semver-7.3.7" ··· 86218 86031 (sources."postcss-7.0.39" // { 86219 86032 dependencies = [ 86220 86033 sources."picocolors-0.2.1" 86221 - sources."source-map-0.6.1" 86222 86034 ]; 86223 86035 }) 86224 86036 sources."postcss-html-0.36.0" ··· 86270 86082 sources."color-name-1.1.4" 86271 86083 ]; 86272 86084 }) 86273 - sources."source-map-0.5.7" 86085 + sources."source-map-0.6.1" 86274 86086 sources."spdx-correct-3.1.1" 86275 86087 sources."spdx-exceptions-2.3.0" 86276 86088 sources."spdx-expression-parse-3.0.1" ··· 86473 86285 sha512 = "wkXnt6Ok/VL7/Nx/96mldX/BactXvNmme2mpmk3qk9VdN8Do9esETyBxqzbQqBO71ZVtTUxYGpK+W61gm15Dow=="; 86474 86286 }; 86475 86287 dependencies = [ 86476 - sources."typescript-4.6.3" 86288 + sources."typescript-4.6.4" 86477 86289 ]; 86478 86290 buildInputs = globalBuildInputs; 86479 86291 meta = { ··· 86684 86496 sources."tsutils-2.29.0" 86685 86497 sources."type-check-0.4.0" 86686 86498 sources."type-fest-0.20.2" 86687 - sources."typescript-4.6.3" 86499 + sources."typescript-4.6.4" 86688 86500 sources."uri-js-4.4.1" 86689 86501 sources."v8-compile-cache-2.3.0" 86690 86502 sources."vls-0.7.6" ··· 87101 86913 sources."color-3.2.1" 87102 86914 sources."color-convert-1.9.3" 87103 86915 sources."color-name-1.1.3" 87104 - sources."color-string-1.9.0" 86916 + sources."color-string-1.9.1" 87105 86917 sources."colorspace-1.1.4" 87106 86918 sources."commander-7.2.0" 87107 86919 sources."enabled-2.0.0" ··· 87425 87237 sources."base64-js-1.5.1" 87426 87238 sources."bcrypt-pbkdf-1.0.2" 87427 87239 sources."big-integer-1.6.51" 87428 - (sources."body-parser-1.19.2" // { 87240 + (sources."body-parser-1.20.0" // { 87429 87241 dependencies = [ 87430 87242 sources."bytes-3.1.2" 87431 87243 sources."debug-2.6.9" 87244 + sources."depd-2.0.0" 87432 87245 sources."iconv-lite-0.4.24" 87433 87246 sources."ms-2.0.0" 87434 - sources."qs-6.9.7" 87247 + sources."qs-6.10.3" 87435 87248 ]; 87436 87249 }) 87437 87250 (sources."boxen-5.1.2" // { ··· 87455 87268 sources."lowercase-keys-2.0.0" 87456 87269 ]; 87457 87270 }) 87271 + sources."call-bind-1.0.2" 87458 87272 sources."callsites-3.1.0" 87459 87273 sources."camelcase-6.3.0" 87460 87274 sources."caseless-0.12.0" ··· 87494 87308 ]; 87495 87309 }) 87496 87310 sources."content-type-1.0.4" 87497 - sources."cookie-0.4.2" 87311 + sources."cookie-0.5.0" 87498 87312 sources."cookie-signature-1.0.6" 87499 87313 sources."cordova-app-hello-world-6.0.0" 87500 87314 (sources."cordova-common-4.0.2" // { ··· 87538 87352 ]; 87539 87353 }) 87540 87354 sources."depd-1.1.2" 87541 - sources."destroy-1.0.4" 87355 + sources."destroy-1.2.0" 87542 87356 sources."detect-indent-6.1.0" 87543 87357 sources."detect-newline-3.1.0" 87544 87358 sources."dir-glob-3.0.1" ··· 87560 87374 sources."escape-string-regexp-1.0.5" 87561 87375 sources."etag-1.8.1" 87562 87376 sources."execa-5.1.1" 87563 - (sources."express-4.17.3" // { 87377 + (sources."express-4.18.1" // { 87564 87378 dependencies = [ 87565 87379 sources."debug-2.6.9" 87380 + sources."depd-2.0.0" 87566 87381 sources."ms-2.0.0" 87567 - sources."qs-6.9.7" 87382 + sources."qs-6.10.3" 87568 87383 sources."safe-buffer-5.2.1" 87569 87384 ]; 87570 87385 }) ··· 87583 87398 sources."fastq-1.13.0" 87584 87399 sources."figures-2.0.0" 87585 87400 sources."fill-range-7.0.1" 87586 - (sources."finalhandler-1.1.2" // { 87401 + (sources."finalhandler-1.2.0" // { 87587 87402 dependencies = [ 87588 87403 sources."debug-2.6.9" 87589 87404 sources."ms-2.0.0" ··· 87599 87414 sources."fs.realpath-1.0.0" 87600 87415 sources."function-bind-1.1.1" 87601 87416 sources."gauge-2.7.4" 87417 + sources."get-intrinsic-1.1.1" 87602 87418 sources."get-stream-6.0.1" 87603 87419 sources."getpass-0.1.7" 87604 87420 sources."glob-7.2.0" ··· 87615 87431 sources."har-validator-5.1.5" 87616 87432 sources."has-1.0.3" 87617 87433 sources."has-flag-4.0.0" 87434 + sources."has-symbols-1.0.3" 87618 87435 sources."has-unicode-2.0.1" 87619 87436 sources."has-yarn-2.1.0" 87620 87437 sources."hosted-git-info-4.1.0" 87621 87438 sources."http-cache-semantics-4.1.0" 87622 - sources."http-errors-1.8.1" 87439 + (sources."http-errors-2.0.0" // { 87440 + dependencies = [ 87441 + sources."depd-2.0.0" 87442 + ]; 87443 + }) 87623 87444 sources."http-proxy-agent-4.0.1" 87624 87445 sources."http-signature-1.2.0" 87625 87446 sources."https-proxy-agent-5.0.1" ··· 87761 87582 sources."number-is-nan-1.0.1" 87762 87583 sources."oauth-sign-0.9.0" 87763 87584 sources."object-assign-4.1.1" 87585 + sources."object-inspect-1.12.0" 87764 87586 sources."objectorarray-1.0.5" 87765 - sources."on-finished-2.3.0" 87587 + sources."on-finished-2.4.1" 87766 87588 sources."on-headers-1.0.2" 87767 87589 sources."once-1.4.0" 87768 87590 sources."onetime-5.1.2" ··· 87809 87631 sources."qs-6.5.3" 87810 87632 sources."queue-microtask-1.2.3" 87811 87633 sources."range-parser-1.2.1" 87812 - (sources."raw-body-2.4.3" // { 87634 + (sources."raw-body-2.5.1" // { 87813 87635 dependencies = [ 87814 87636 sources."bytes-3.1.2" 87815 87637 sources."iconv-lite-0.4.24" ··· 87853 87675 sources."semver-6.3.0" 87854 87676 ]; 87855 87677 }) 87856 - (sources."send-0.17.2" // { 87678 + (sources."send-0.18.0" // { 87857 87679 dependencies = [ 87858 87680 (sources."debug-2.6.9" // { 87859 87681 dependencies = [ 87860 87682 sources."ms-2.0.0" 87861 87683 ]; 87862 87684 }) 87685 + sources."depd-2.0.0" 87863 87686 sources."ms-2.1.3" 87864 87687 ]; 87865 87688 }) 87866 - sources."serve-static-1.14.2" 87689 + sources."serve-static-1.15.0" 87867 87690 sources."set-blocking-2.0.0" 87868 87691 sources."setprototypeof-1.2.0" 87869 87692 sources."shebang-command-2.0.0" 87870 87693 sources."shebang-regex-3.0.0" 87694 + sources."side-channel-1.0.4" 87871 87695 sources."signal-exit-3.0.7" 87872 87696 sources."slash-3.0.0" 87873 87697 sources."smart-buffer-4.2.0" ··· 87879 87703 sources."spdx-license-ids-3.0.11" 87880 87704 sources."sshpk-1.17.0" 87881 87705 sources."ssri-8.0.1" 87882 - sources."statuses-1.5.0" 87706 + sources."statuses-2.0.1" 87883 87707 sources."string-width-1.0.2" 87884 87708 sources."string_decoder-1.1.1" 87885 87709 sources."stringify-package-1.0.1" ··· 87889 87713 sources."strip-json-comments-2.0.1" 87890 87714 sources."supports-color-7.2.0" 87891 87715 sources."supports-preserve-symlinks-flag-1.0.0" 87892 - sources."systeminformation-5.11.12" 87716 + sources."systeminformation-5.11.14" 87893 87717 sources."tar-6.1.11" 87894 87718 sources."through-2.3.8" 87895 87719 sources."tmp-0.2.1" ··· 87903 87727 sources."type-fest-0.20.2" 87904 87728 sources."type-is-1.6.18" 87905 87729 sources."typedarray-to-buffer-3.1.5" 87906 - sources."underscore-1.13.2" 87730 + sources."underscore-1.13.3" 87907 87731 sources."unique-filename-1.1.1" 87908 87732 sources."unique-slug-2.0.2" 87909 87733 sources."unique-string-2.0.0" ··· 87997 87821 sources."escape-string-regexp-1.0.5" 87998 87822 ]; 87999 87823 }) 88000 - sources."clean-stack-4.1.0" 87824 + sources."clean-stack-4.2.0" 88001 87825 sources."color-convert-1.9.3" 88002 87826 sources."color-name-1.1.3" 88003 87827 sources."cp-file-9.1.0" ··· 88119 87943 sources."@cycle/run-3.4.0" 88120 87944 sources."@cycle/time-0.10.1" 88121 87945 sources."@types/cookiejar-2.1.2" 88122 - sources."@types/node-17.0.25" 87946 + sources."@types/node-17.0.31" 88123 87947 sources."@types/superagent-3.8.2" 88124 87948 sources."ansi-escapes-3.2.0" 88125 87949 sources."ansi-regex-2.1.1" ··· 88408 88232 sources."@cspell/dict-ada-2.0.0" 88409 88233 sources."@cspell/dict-aws-2.0.0" 88410 88234 sources."@cspell/dict-bash-2.0.2" 88411 - sources."@cspell/dict-companies-2.0.3" 88235 + sources."@cspell/dict-companies-2.0.4" 88412 88236 sources."@cspell/dict-cpp-2.0.3" 88413 88237 sources."@cspell/dict-cryptocurrencies-2.0.0" 88414 88238 sources."@cspell/dict-csharp-2.0.1" ··· 88418 88242 sources."@cspell/dict-dotnet-2.0.1" 88419 88243 sources."@cspell/dict-elixir-2.0.1" 88420 88244 sources."@cspell/dict-en-gb-1.1.33" 88421 - sources."@cspell/dict-en_us-2.2.0" 88245 + sources."@cspell/dict-en_us-2.2.1" 88422 88246 sources."@cspell/dict-filetypes-2.0.1" 88423 88247 sources."@cspell/dict-fonts-2.0.0" 88424 88248 sources."@cspell/dict-fullstack-2.0.4" ··· 88431 88255 sources."@cspell/dict-latex-2.0.0" 88432 88256 sources."@cspell/dict-lorem-ipsum-2.0.0" 88433 88257 sources."@cspell/dict-lua-2.0.0" 88434 - sources."@cspell/dict-node-2.0.0" 88258 + sources."@cspell/dict-node-2.0.1" 88435 88259 sources."@cspell/dict-npm-2.0.2" 88436 88260 sources."@cspell/dict-php-2.0.0" 88437 88261 sources."@cspell/dict-powershell-2.0.0" ··· 88473 88297 sources."error-ex-1.3.2" 88474 88298 sources."escape-string-regexp-1.0.5" 88475 88299 sources."esprima-4.0.1" 88476 - sources."fast-equals-3.0.1" 88300 + sources."fast-equals-3.0.2" 88477 88301 sources."fast-json-stable-stringify-2.1.0" 88478 88302 sources."file-entry-cache-6.0.1" 88479 88303 sources."fill-range-7.0.1" ··· 88629 88453 sources."atomic-batcher-1.0.2" 88630 88454 sources."aws-sign2-0.7.0" 88631 88455 sources."aws4-1.11.0" 88632 - sources."b4a-1.3.1" 88456 + sources."b4a-1.5.0" 88633 88457 sources."balanced-match-1.0.2" 88634 88458 (sources."base-0.11.2" // { 88635 88459 dependencies = [ ··· 89179 89003 }) 89180 89004 sources."which-1.3.1" 89181 89005 sources."widest-line-2.0.1" 89182 - (sources."winston-2.4.5" // { 89183 - dependencies = [ 89184 - sources."async-1.0.0" 89185 - ]; 89186 - }) 89006 + sources."winston-2.4.6" 89187 89007 sources."wrappy-1.0.2" 89188 89008 sources."write-file-atomic-2.4.3" 89189 89009 sources."xdg-basedir-3.0.0" ··· 89227 89047 version = "1.28.2"; 89228 89048 src = ../../applications/networking/instant-messengers/deltachat-desktop; 89229 89049 dependencies = [ 89230 - sources."@ampproject/remapping-2.1.2" 89050 + sources."@ampproject/remapping-2.2.0" 89231 89051 sources."@babel/code-frame-7.16.7" 89232 - sources."@babel/compat-data-7.17.7" 89233 - sources."@babel/core-7.17.9" 89234 - (sources."@babel/generator-7.17.9" // { 89235 - dependencies = [ 89236 - sources."source-map-0.5.7" 89237 - ]; 89238 - }) 89052 + sources."@babel/compat-data-7.17.10" 89053 + sources."@babel/core-7.17.10" 89054 + sources."@babel/generator-7.17.10" 89239 89055 sources."@babel/helper-annotate-as-pure-7.16.7" 89240 89056 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 89241 - sources."@babel/helper-compilation-targets-7.17.7" 89057 + sources."@babel/helper-compilation-targets-7.17.10" 89242 89058 sources."@babel/helper-create-class-features-plugin-7.17.9" 89243 89059 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 89244 89060 sources."@babel/helper-define-polyfill-provider-0.3.1" ··· 89261 89077 sources."@babel/helper-wrap-function-7.16.8" 89262 89078 sources."@babel/helpers-7.17.9" 89263 89079 sources."@babel/highlight-7.17.9" 89264 - sources."@babel/parser-7.17.9" 89080 + sources."@babel/parser-7.17.10" 89265 89081 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 89266 89082 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 89267 89083 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 89312 89128 sources."@babel/plugin-transform-modules-commonjs-7.17.9" 89313 89129 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 89314 89130 sources."@babel/plugin-transform-modules-umd-7.16.7" 89315 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 89131 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.10" 89316 89132 sources."@babel/plugin-transform-new-target-7.16.7" 89317 89133 sources."@babel/plugin-transform-object-super-7.16.7" 89318 89134 sources."@babel/plugin-transform-parameters-7.16.7" ··· 89330 89146 sources."@babel/plugin-transform-typeof-symbol-7.16.7" 89331 89147 sources."@babel/plugin-transform-unicode-escapes-7.16.7" 89332 89148 sources."@babel/plugin-transform-unicode-regex-7.16.7" 89333 - sources."@babel/preset-env-7.16.11" 89149 + sources."@babel/preset-env-7.17.10" 89334 89150 sources."@babel/preset-modules-0.1.5" 89335 89151 sources."@babel/preset-react-7.16.7" 89336 89152 sources."@babel/runtime-7.17.9" 89337 89153 sources."@babel/template-7.16.7" 89338 - sources."@babel/traverse-7.17.9" 89339 - sources."@babel/types-7.17.0" 89340 - sources."@blueprintjs/colors-4.1.0" 89154 + sources."@babel/traverse-7.17.10" 89155 + sources."@babel/types-7.17.10" 89156 + sources."@blueprintjs/colors-4.1.1" 89341 89157 sources."@blueprintjs/core-3.54.0" 89342 89158 sources."@blueprintjs/icons-3.33.0" 89343 89159 sources."@deltachat/message_parser_wasm-0.3.0" 89344 89160 sources."@electron/get-1.14.1" 89345 89161 sources."@hypnosphi/create-react-context-0.3.1" 89346 - sources."@jridgewell/resolve-uri-3.0.5" 89162 + sources."@jridgewell/gen-mapping-0.1.1" 89163 + sources."@jridgewell/resolve-uri-3.0.6" 89164 + sources."@jridgewell/set-array-1.1.0" 89347 89165 sources."@jridgewell/sourcemap-codec-1.4.11" 89348 - sources."@jridgewell/trace-mapping-0.3.8" 89166 + sources."@jridgewell/trace-mapping-0.3.9" 89349 89167 sources."@juggle/resize-observer-3.3.1" 89350 89168 sources."@mapbox/extent-0.4.0" 89351 89169 sources."@mapbox/geojson-coords-0.0.2" ··· 89369 89187 sources."@types/mapbox-gl-0.54.5" 89370 89188 sources."@types/mime-types-2.1.1" 89371 89189 sources."@types/minimist-1.2.2" 89372 - sources."@types/node-14.18.13" 89190 + sources."@types/node-14.18.16" 89373 89191 sources."@types/node-fetch-2.6.1" 89374 89192 sources."@types/prop-types-15.7.5" 89375 89193 sources."@types/rc-1.2.1" 89376 89194 sources."@types/react-16.14.25" 89377 - sources."@types/react-dom-16.9.14" 89195 + sources."@types/react-dom-16.9.15" 89378 89196 sources."@types/react-window-1.8.5" 89379 89197 sources."@types/react-window-infinite-loader-1.0.6" 89380 89198 sources."@types/scheduler-0.16.2" ··· 89415 89233 sources."extend-shallow-2.0.1" 89416 89234 ]; 89417 89235 }) 89418 - sources."browserslist-4.20.2" 89236 + sources."browserslist-4.20.3" 89419 89237 sources."buffer-crc32-0.2.13" 89420 89238 sources."buffer-from-1.1.2" 89421 89239 sources."cache-base-1.0.1" ··· 89426 89244 ]; 89427 89245 }) 89428 89246 sources."call-bind-1.0.2" 89429 - sources."caniuse-lite-1.0.30001332" 89247 + sources."caniuse-lite-1.0.30001334" 89430 89248 sources."chalk-2.4.2" 89431 89249 sources."chokidar-2.1.8" 89432 89250 (sources."class-utils-0.3.6" // { ··· 89467 89285 ]; 89468 89286 }) 89469 89287 sources."copy-descriptor-0.1.1" 89470 - (sources."core-js-compat-3.22.1" // { 89288 + (sources."core-js-compat-3.22.3" // { 89471 89289 dependencies = [ 89472 89290 sources."semver-7.0.0" 89473 89291 ]; ··· 89493 89311 sources."duplexer3-0.1.4" 89494 89312 sources."earcut-2.2.3" 89495 89313 sources."electron-14.2.9" 89496 - sources."electron-to-chromium-1.4.114" 89314 + sources."electron-to-chromium-1.4.129" 89497 89315 sources."emoji-js-clean-4.0.0" 89498 89316 sources."emoji-mart-3.0.1" 89499 89317 sources."emoji-regex-9.2.2" ··· 89675 89493 sources."napi-macros-2.0.0" 89676 89494 sources."node-fetch-2.6.7" 89677 89495 sources."node-gyp-build-4.4.0" 89678 - sources."node-releases-2.0.3" 89496 + sources."node-releases-2.0.4" 89679 89497 sources."normalize-path-3.0.0" 89680 89498 sources."normalize-url-4.5.1" 89681 89499 sources."normalize.css-8.0.1" ··· 89736 89554 sources."react-string-replace-1.0.0" 89737 89555 sources."react-transition-group-2.9.0" 89738 89556 sources."react-virtualized-auto-sizer-1.0.6" 89739 - sources."react-window-1.8.6" 89557 + sources."react-window-1.8.7" 89740 89558 sources."react-window-infinite-loader-1.0.7" 89741 89559 sources."react-zoom-pan-pinch-2.1.3" 89742 89560 sources."readable-stream-3.6.0" ··· 89774 89592 sources."rw-0.1.4" 89775 89593 sources."safe-buffer-5.2.1" 89776 89594 sources."safe-regex-1.1.0" 89777 - (sources."sass-1.50.1" // { 89595 + (sources."sass-1.51.0" // { 89778 89596 dependencies = [ 89779 89597 sources."anymatch-3.1.2" 89780 89598 sources."binary-extensions-2.2.0" ··· 89887 89705 sources."type-fest-0.3.1" 89888 89706 sources."typed-styles-0.0.7" 89889 89707 sources."typedarray-0.0.6" 89890 - sources."typescript-4.6.3" 89708 + sources."typescript-4.6.4" 89891 89709 sources."unicode-canonical-property-names-ecmascript-2.0.0" 89892 89710 sources."unicode-match-property-ecmascript-2.0.0" 89893 89711 sources."unicode-match-property-value-ecmascript-2.0.0" ··· 90048 89866 sources."dockerfile-ast-0.4.2" 90049 89867 sources."dockerfile-language-service-0.8.1" 90050 89868 sources."dockerfile-utils-0.9.4" 90051 - sources."vscode-jsonrpc-8.0.0-next.7" 90052 - sources."vscode-languageserver-8.0.0-next.10" 90053 - (sources."vscode-languageserver-protocol-3.17.0-next.16" // { 89869 + sources."vscode-jsonrpc-8.0.0-next.8" 89870 + sources."vscode-languageserver-8.0.0-next.14" 89871 + (sources."vscode-languageserver-protocol-3.17.0-next.20" // { 90054 89872 dependencies = [ 90055 - sources."vscode-languageserver-types-3.17.0-next.9" 89873 + sources."vscode-languageserver-types-3.17.0-next.12" 90056 89874 ]; 90057 89875 }) 90058 89876 sources."vscode-languageserver-textdocument-1.0.4" ··· 90071 89889 elasticdump = nodeEnv.buildNodePackage { 90072 89890 name = "elasticdump"; 90073 89891 packageName = "elasticdump"; 90074 - version = "6.82.3"; 89892 + version = "6.84.0"; 90075 89893 src = fetchurl { 90076 - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.82.3.tgz"; 90077 - sha512 = "Q7JNsKRQbPkwCQIj9YNHbgYZ2TcHAMdKlga++mBkKwpuIiwYYtqvb40TtjQBWpAD+k9MI7Lrp2/Vqrt9vmy0ow=="; 89894 + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.84.0.tgz"; 89895 + sha512 = "AMU2VN264ic/57c2FTW7XW271FFDOZvZX56fzOna9VkvszRwT4HJdVStizWjy40flUZFxRa2w9jvSwDg0aryzA=="; 90078 89896 }; 90079 89897 dependencies = [ 90080 89898 sources."@fast-csv/format-4.3.5" 90081 89899 sources."@fast-csv/parse-4.3.6" 90082 - sources."@types/node-14.18.13" 89900 + sources."@types/node-14.18.16" 90083 89901 sources."JSONStream-1.3.5" 90084 89902 sources."ajv-6.12.6" 90085 89903 sources."asn1-0.2.6" 90086 89904 sources."assert-plus-1.0.0" 90087 89905 sources."async-2.6.4" 90088 89906 sources."asynckit-0.4.0" 90089 - sources."aws-sdk-2.1097.0" 89907 + sources."aws-sdk-2.1122.0" 90090 89908 sources."aws-sign2-0.7.0" 90091 89909 sources."aws4-1.11.0" 90092 89910 sources."base64-js-1.5.1" ··· 90165 89983 ]; 90166 89984 }) 90167 89985 sources."request-2.88.2" 90168 - sources."requestretry-7.0.2" 89986 + sources."requestretry-7.1.0" 90169 89987 sources."s3-stream-upload-2.0.2" 90170 89988 sources."s3signed-0.1.0" 90171 89989 sources."s3urls-1.5.2" ··· 90288 90106 sources."@types/json-buffer-3.0.0" 90289 90107 sources."@types/keyv-3.1.4" 90290 90108 sources."@types/minimatch-3.0.5" 90291 - sources."@types/node-17.0.25" 90109 + sources."@types/node-17.0.31" 90292 90110 sources."@types/responselike-1.0.0" 90293 90111 sources."@types/yauzl-2.10.0" 90294 90112 sources."abbrev-1.1.1" ··· 90408 90226 sources."debug-2.6.9" 90409 90227 ]; 90410 90228 }) 90411 - (sources."electron-packager-15.5.0" // { 90229 + (sources."electron-packager-15.5.1" // { 90412 90230 dependencies = [ 90413 90231 sources."fs-extra-9.1.0" 90414 90232 ]; ··· 90531 90349 sources."inflight-1.0.6" 90532 90350 sources."inherits-2.0.4" 90533 90351 sources."ini-1.3.8" 90534 - sources."inquirer-8.2.2" 90352 + sources."inquirer-8.2.4" 90535 90353 sources."ip-1.1.5" 90536 90354 sources."is-arrayish-0.2.1" 90537 90355 sources."is-core-module-2.9.0" ··· 90619 90437 sources."path-key-2.0.1" 90620 90438 ]; 90621 90439 }) 90622 - sources."npmlog-6.0.1" 90440 + sources."npmlog-6.0.2" 90623 90441 (sources."nugget-2.0.2" // { 90624 90442 dependencies = [ 90625 90443 sources."debug-2.6.9" ··· 90757 90575 sources."tough-cookie-2.5.0" 90758 90576 sources."tr46-0.0.3" 90759 90577 sources."trim-repeated-1.0.0" 90760 - sources."tslib-2.3.1" 90578 + sources."tslib-2.4.0" 90761 90579 sources."tunnel-0.0.6" 90762 90580 sources."tunnel-agent-0.6.0" 90763 90581 sources."tweetnacl-0.14.5" ··· 90843 90661 sha512 = "ceJSyC2s1VCIqyzGkHeJkWBq/85QXaHM+0rZ1lRRtmcK9CsfRDyLSIZ7KJDZhPdIRUXBgBkdcOAW3AIu/yO/ew=="; 90844 90662 }; 90845 90663 dependencies = [ 90846 - sources."@ampproject/remapping-2.1.2" 90664 + sources."@ampproject/remapping-2.2.0" 90847 90665 sources."@babel/code-frame-7.16.7" 90848 - sources."@babel/compat-data-7.17.7" 90849 - (sources."@babel/core-7.17.9" // { 90666 + sources."@babel/compat-data-7.17.10" 90667 + (sources."@babel/core-7.17.10" // { 90850 90668 dependencies = [ 90851 90669 sources."semver-6.3.0" 90852 90670 ]; 90853 90671 }) 90854 - sources."@babel/generator-7.17.9" 90672 + sources."@babel/generator-7.17.10" 90855 90673 sources."@babel/helper-annotate-as-pure-7.16.7" 90856 - (sources."@babel/helper-compilation-targets-7.17.7" // { 90674 + (sources."@babel/helper-compilation-targets-7.17.10" // { 90857 90675 dependencies = [ 90858 90676 sources."semver-6.3.0" 90859 90677 ]; ··· 90870 90688 sources."@babel/helper-validator-option-7.16.7" 90871 90689 sources."@babel/helpers-7.17.9" 90872 90690 sources."@babel/highlight-7.17.9" 90873 - sources."@babel/parser-7.17.9" 90691 + sources."@babel/parser-7.17.10" 90874 90692 sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 90875 90693 sources."@babel/plugin-syntax-jsx-7.16.7" 90876 90694 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 90878 90696 sources."@babel/plugin-transform-parameters-7.16.7" 90879 90697 sources."@babel/plugin-transform-react-jsx-7.17.3" 90880 90698 sources."@babel/template-7.16.7" 90881 - sources."@babel/traverse-7.17.9" 90882 - sources."@babel/types-7.17.0" 90883 - sources."@jridgewell/resolve-uri-3.0.5" 90699 + sources."@babel/traverse-7.17.10" 90700 + sources."@babel/types-7.17.10" 90701 + sources."@jridgewell/gen-mapping-0.1.1" 90702 + sources."@jridgewell/resolve-uri-3.0.6" 90703 + sources."@jridgewell/set-array-1.1.0" 90884 90704 sources."@jridgewell/sourcemap-codec-1.4.11" 90885 - sources."@jridgewell/trace-mapping-0.3.8" 90705 + sources."@jridgewell/trace-mapping-0.3.9" 90886 90706 sources."@types/minimist-1.2.2" 90887 90707 sources."@types/normalize-package-data-2.4.1" 90888 90708 sources."@types/yoga-layout-1.9.2" ··· 90901 90721 sources."auto-bind-4.0.0" 90902 90722 sources."balanced-match-1.0.2" 90903 90723 sources."brace-expansion-1.1.11" 90904 - sources."browserslist-4.20.2" 90724 + sources."browserslist-4.20.3" 90905 90725 sources."caller-callsite-4.1.0" 90906 90726 sources."caller-path-3.0.1" 90907 90727 sources."callsites-3.1.0" 90908 90728 sources."camelcase-5.3.1" 90909 90729 sources."camelcase-keys-6.2.2" 90910 - sources."caniuse-lite-1.0.30001332" 90730 + sources."caniuse-lite-1.0.30001334" 90911 90731 sources."chalk-2.4.2" 90912 90732 sources."ci-info-2.0.0" 90913 90733 sources."cli-boxes-2.2.1" ··· 90936 90756 ]; 90937 90757 }) 90938 90758 sources."dot-prop-5.3.0" 90939 - sources."electron-to-chromium-1.4.114" 90759 + sources."electron-to-chromium-1.4.129" 90940 90760 sources."emoji-regex-8.0.0" 90941 90761 sources."emojilib-2.4.0" 90942 90762 sources."end-of-stream-1.4.4" ··· 91025 90845 sources."minimist-options-4.1.0" 91026 90846 sources."ms-2.1.2" 91027 90847 sources."nice-try-1.0.5" 91028 - sources."node-releases-2.0.3" 90848 + sources."node-releases-2.0.4" 91029 90849 sources."normalize-package-data-2.5.0" 91030 90850 sources."npm-run-path-2.0.2" 91031 90851 sources."object-assign-4.1.1" ··· 91098 90918 sources."color-name-1.1.4" 91099 90919 ]; 91100 90920 }) 91101 - sources."source-map-0.5.7" 91102 90921 sources."spdx-correct-3.1.1" 91103 90922 sources."spdx-exceptions-2.3.0" 91104 90923 sources."spdx-expression-parse-3.0.1" ··· 91206 91025 sources."@fluentui/foundation-legacy-8.2.6" 91207 91026 sources."@fluentui/keyboard-key-0.4.0" 91208 91027 sources."@fluentui/merge-styles-8.5.1" 91209 - sources."@fluentui/react-8.66.1" 91028 + sources."@fluentui/react-8.67.2" 91210 91029 sources."@fluentui/react-focus-8.5.7" 91211 91030 sources."@fluentui/react-hooks-8.5.4" 91212 91031 sources."@fluentui/react-window-provider-2.2.0" ··· 91235 91054 ]; 91236 91055 }) 91237 91056 sources."@humanwhocodes/object-schema-1.2.1" 91238 - sources."@microsoft/load-themed-styles-1.10.258" 91057 + sources."@microsoft/load-themed-styles-1.10.260" 91239 91058 sources."@node-rs/crc32-1.5.0" 91240 91059 sources."@node-rs/crc32-android-arm-eabi-1.5.0" 91241 91060 sources."@node-rs/crc32-android-arm64-1.5.0" ··· 91254 91073 sources."@nodelib/fs.stat-2.0.5" 91255 91074 sources."@nodelib/fs.walk-1.2.8" 91256 91075 sources."@sindresorhus/is-0.14.0" 91257 - sources."@socket.io/base64-arraybuffer-1.0.2" 91258 91076 sources."@sqltools/formatter-1.2.3" 91259 91077 sources."@szmarczak/http-timer-1.1.2" 91260 91078 sources."@tokenizer/token-0.3.0" ··· 91369 91187 }) 91370 91188 sources."arg-4.1.3" 91371 91189 sources."argparse-1.0.10" 91372 - sources."arib-mpeg2ts-parser-3.0.13" 91190 + sources."arib-mpeg2ts-parser-3.0.15" 91373 91191 sources."arib-subtitle-timedmetadater-4.0.9" 91374 91192 sources."aribts-2.1.12" 91375 91193 sources."arr-diff-4.0.0" ··· 91636 91454 sources."ws-8.2.3" 91637 91455 ]; 91638 91456 }) 91639 - sources."engine.io-parser-5.0.3" 91457 + sources."engine.io-parser-5.0.4" 91640 91458 sources."enhanced-resolve-5.9.3" 91641 91459 sources."enquirer-2.3.6" 91642 91460 sources."error-ex-1.3.2" ··· 92635 92453 sources."ts-log-2.2.4" 92636 92454 (sources."ts-node-10.4.0" // { 92637 92455 dependencies = [ 92638 - sources."acorn-8.7.0" 92456 + sources."acorn-8.7.1" 92639 92457 ]; 92640 92458 }) 92641 - sources."tslib-2.3.1" 92459 + sources."tslib-2.4.0" 92642 92460 (sources."tsutils-3.21.0" // { 92643 92461 dependencies = [ 92644 92462 sources."tslib-1.14.1" ··· 92808 92626 sources."@nodelib/fs.scandir-2.1.5" 92809 92627 sources."@nodelib/fs.stat-2.0.5" 92810 92628 sources."@nodelib/fs.walk-1.2.8" 92811 - sources."@socket.io/base64-arraybuffer-1.0.2" 92812 92629 sources."@socket.io/component-emitter-3.0.0" 92813 92630 (sources."@soda/friendly-errors-webpack-plugin-1.8.1" // { 92814 92631 dependencies = [ ··· 92835 92652 sources."@types/mime-1.3.2" 92836 92653 sources."@types/minimatch-3.0.5" 92837 92654 sources."@types/minimist-1.2.2" 92838 - sources."@types/node-17.0.25" 92655 + sources."@types/node-17.0.31" 92839 92656 sources."@types/normalize-package-data-2.4.1" 92840 92657 sources."@types/parse-json-4.0.0" 92841 92658 sources."@types/q-1.5.5" ··· 93000 92817 sources."acorn-6.4.2" 93001 92818 sources."acorn-jsx-5.3.2" 93002 92819 sources."acorn-walk-7.2.0" 93003 - sources."address-1.1.2" 92820 + sources."address-1.2.0" 93004 92821 sources."ajv-6.12.6" 93005 92822 sources."ajv-errors-1.0.1" 93006 92823 sources."ajv-keywords-3.5.2" ··· 93082 92899 sources."bindings-1.5.0" 93083 92900 sources."bluebird-3.7.2" 93084 92901 sources."bn.js-5.2.0" 93085 - (sources."body-parser-1.19.2" // { 92902 + (sources."body-parser-1.20.0" // { 93086 92903 dependencies = [ 93087 92904 sources."debug-2.6.9" 93088 92905 sources."ms-2.0.0" 93089 - sources."qs-6.9.7" 92906 + sources."qs-6.10.3" 93090 92907 ]; 93091 92908 }) 93092 92909 (sources."bonjour-3.5.0" // { ··· 93108 92925 ]; 93109 92926 }) 93110 92927 sources."browserify-zlib-0.2.0" 93111 - sources."browserslist-4.20.2" 92928 + sources."browserslist-4.20.3" 93112 92929 sources."buffer-4.9.2" 93113 92930 sources."buffer-from-1.1.2" 93114 92931 sources."buffer-indexof-1.1.1" ··· 93150 92967 sources."camel-case-3.0.0" 93151 92968 sources."camelcase-5.3.1" 93152 92969 sources."caniuse-api-3.0.0" 93153 - sources."caniuse-lite-1.0.30001332" 92970 + sources."caniuse-lite-1.0.30001334" 93154 92971 sources."case-sensitive-paths-webpack-plugin-2.4.0" 93155 92972 sources."caseless-0.12.0" 93156 92973 sources."chalk-2.4.2" ··· 93215 93032 sources."color-3.2.1" 93216 93033 sources."color-convert-1.9.3" 93217 93034 sources."color-name-1.1.3" 93218 - sources."color-string-1.9.0" 93035 + sources."color-string-1.9.1" 93219 93036 sources."combined-stream-1.0.8" 93220 93037 sources."commander-2.20.3" 93221 93038 sources."commondir-1.0.1" ··· 93237 93054 sources."constants-browserify-1.0.0" 93238 93055 sources."content-disposition-0.5.4" 93239 93056 sources."content-type-1.0.4" 93240 - sources."cookie-0.4.2" 93057 + sources."cookie-0.5.0" 93241 93058 sources."cookie-signature-1.0.6" 93242 93059 sources."copy-concurrently-1.0.5" 93243 93060 sources."copy-descriptor-0.1.1" ··· 93353 93170 ]; 93354 93171 }) 93355 93172 sources."delayed-stream-1.0.0" 93356 - sources."depd-1.1.2" 93173 + sources."depd-2.0.0" 93357 93174 sources."des.js-1.0.1" 93358 - sources."destroy-1.0.4" 93175 + sources."destroy-1.2.0" 93359 93176 sources."detect-node-2.1.0" 93360 93177 sources."diff-4.0.2" 93361 93178 (sources."diffie-hellman-5.0.3" // { ··· 93391 93208 sources."ecc-jsbn-0.1.2" 93392 93209 sources."ee-first-1.1.1" 93393 93210 sources."ejs-2.7.4" 93394 - sources."electron-to-chromium-1.4.114" 93211 + sources."electron-to-chromium-1.4.129" 93395 93212 (sources."elliptic-6.5.4" // { 93396 93213 dependencies = [ 93397 93214 sources."bn.js-4.12.0" ··· 93402 93219 sources."encodeurl-1.0.2" 93403 93220 sources."end-of-stream-1.4.4" 93404 93221 sources."engine.io-client-6.0.3" 93405 - sources."engine.io-parser-5.0.3" 93222 + sources."engine.io-parser-5.0.4" 93406 93223 (sources."enhanced-resolve-4.5.0" // { 93407 93224 dependencies = [ 93408 93225 sources."memory-fs-0.5.0" ··· 93512 93329 sources."ms-2.0.0" 93513 93330 ]; 93514 93331 }) 93515 - (sources."express-4.17.3" // { 93332 + (sources."express-4.18.1" // { 93516 93333 dependencies = [ 93517 93334 sources."debug-2.6.9" 93518 93335 sources."ms-2.0.0" 93519 - sources."qs-6.9.7" 93336 + sources."qs-6.10.3" 93520 93337 ]; 93521 93338 }) 93522 93339 sources."extend-3.0.2" ··· 93551 93368 sources."file-uri-to-path-1.0.0" 93552 93369 sources."filesize-3.6.1" 93553 93370 sources."fill-range-7.0.1" 93554 - (sources."finalhandler-1.1.2" // { 93371 + (sources."finalhandler-1.2.0" // { 93555 93372 dependencies = [ 93556 93373 sources."debug-2.6.9" 93557 93374 sources."ms-2.0.0" ··· 93689 93506 ]; 93690 93507 }) 93691 93508 sources."http-deceiver-1.2.7" 93692 - sources."http-errors-1.8.1" 93509 + sources."http-errors-2.0.0" 93693 93510 sources."http-parser-js-0.5.6" 93694 93511 sources."http-proxy-1.18.1" 93695 93512 sources."http-proxy-middleware-1.3.1" ··· 93901 93718 sources."punycode-1.4.1" 93902 93719 ]; 93903 93720 }) 93904 - sources."node-releases-2.0.3" 93721 + sources."node-releases-2.0.4" 93905 93722 (sources."normalize-package-data-2.5.0" // { 93906 93723 dependencies = [ 93907 93724 sources."semver-5.7.1" ··· 93945 93762 sources."object.pick-1.3.0" 93946 93763 sources."object.values-1.1.5" 93947 93764 sources."obuf-1.1.2" 93948 - sources."on-finished-2.3.0" 93765 + sources."on-finished-2.4.1" 93949 93766 sources."on-headers-1.0.2" 93950 93767 sources."once-1.4.0" 93951 93768 sources."onetime-2.0.1" ··· 94166 93983 sources."randombytes-2.1.0" 94167 93984 sources."randomfill-1.0.4" 94168 93985 sources."range-parser-1.2.1" 94169 - sources."raw-body-2.4.3" 93986 + sources."raw-body-2.5.1" 94170 93987 sources."read-pkg-5.2.0" 94171 93988 (sources."readable-stream-2.3.7" // { 94172 93989 dependencies = [ ··· 94238 94055 sources."select-hose-2.0.0" 94239 94056 sources."selfsigned-1.10.14" 94240 94057 sources."semver-7.3.7" 94241 - (sources."send-0.17.2" // { 94058 + (sources."send-0.18.0" // { 94242 94059 dependencies = [ 94243 94060 (sources."debug-2.6.9" // { 94244 94061 dependencies = [ ··· 94253 94070 (sources."serve-index-1.9.1" // { 94254 94071 dependencies = [ 94255 94072 sources."debug-2.6.9" 94073 + sources."depd-1.1.2" 94256 94074 sources."http-errors-1.6.3" 94257 94075 sources."inherits-2.0.3" 94258 94076 sources."ms-2.0.0" 94259 94077 sources."setprototypeof-1.1.0" 94078 + sources."statuses-1.5.0" 94260 94079 ]; 94261 94080 }) 94262 - sources."serve-static-1.14.2" 94081 + sources."serve-static-1.15.0" 94263 94082 sources."set-blocking-2.0.0" 94264 94083 (sources."set-value-2.0.1" // { 94265 94084 dependencies = [ ··· 94379 94198 sources."kind-of-5.1.0" 94380 94199 ]; 94381 94200 }) 94382 - sources."statuses-1.5.0" 94201 + sources."statuses-2.0.1" 94383 94202 sources."stream-browserify-2.0.2" 94384 94203 sources."stream-each-1.2.3" 94385 94204 sources."stream-http-2.8.3" ··· 94481 94300 sources."source-map-0.6.1" 94482 94301 ]; 94483 94302 }) 94484 - sources."unbox-primitive-1.0.1" 94303 + sources."unbox-primitive-1.0.2" 94485 94304 sources."union-value-1.0.1" 94486 94305 sources."uniq-1.0.1" 94487 94306 sources."uniqs-2.0.0" ··· 94756 94575 eslint = nodeEnv.buildNodePackage { 94757 94576 name = "eslint"; 94758 94577 packageName = "eslint"; 94759 - version = "8.13.0"; 94578 + version = "8.14.0"; 94760 94579 src = fetchurl { 94761 - url = "https://registry.npmjs.org/eslint/-/eslint-8.13.0.tgz"; 94762 - sha512 = "D+Xei61eInqauAyTJ6C0q6x9mx7kTUC1KZ0m0LSEexR0V+e94K12LmWX076ZIsldwfQ2RONdaJe0re0TRGQbRQ=="; 94580 + url = "https://registry.npmjs.org/eslint/-/eslint-8.14.0.tgz"; 94581 + sha512 = "3/CE4aJX7LNEiE3i6FeodHmI/38GZtWCsAtsymScmzYapx8q1nVVb+eLcLSzATmCPXw5pT4TqVs1E0OmxAd9tw=="; 94763 94582 }; 94764 94583 dependencies = [ 94765 - sources."@eslint/eslintrc-1.2.1" 94584 + sources."@eslint/eslintrc-1.2.2" 94766 94585 sources."@humanwhocodes/config-array-0.9.5" 94767 94586 sources."@humanwhocodes/object-schema-1.2.1" 94768 - sources."acorn-8.7.0" 94587 + sources."acorn-8.7.1" 94769 94588 sources."acorn-jsx-5.3.2" 94770 94589 sources."ajv-6.12.6" 94771 94590 sources."ansi-regex-5.0.1" ··· 94860 94679 eslint_d = nodeEnv.buildNodePackage { 94861 94680 name = "eslint_d"; 94862 94681 packageName = "eslint_d"; 94863 - version = "12.0.0"; 94682 + version = "12.1.0"; 94864 94683 src = fetchurl { 94865 - url = "https://registry.npmjs.org/eslint_d/-/eslint_d-12.0.0.tgz"; 94866 - sha512 = "jSueemgxyOsxVLOWkJuBbJfQB1vt9rjCqAbht51W/2982VcDxQ3ywjUaEvWTF+oTFWe2M1ER+d54kFgoZCGevg=="; 94684 + url = "https://registry.npmjs.org/eslint_d/-/eslint_d-12.1.0.tgz"; 94685 + sha512 = "mRttHSO/sC6oxnfdlnLUTfB1sI2ApmbPAHSNx60+8jQmwwvEZjUv4WDmv20g7i9DSBuK8Y5boTyz4ijBAujk0Q=="; 94867 94686 }; 94868 94687 dependencies = [ 94869 - sources."@eslint/eslintrc-1.2.1" 94688 + sources."@eslint/eslintrc-1.2.2" 94870 94689 sources."@humanwhocodes/config-array-0.9.5" 94871 94690 sources."@humanwhocodes/object-schema-1.2.1" 94872 - sources."acorn-8.7.0" 94691 + sources."acorn-8.7.1" 94873 94692 sources."acorn-jsx-5.3.2" 94874 94693 sources."ajv-6.12.6" 94875 94694 sources."ansi-regex-5.0.1" ··· 94892 94711 sources."deep-is-0.1.4" 94893 94712 sources."doctrine-3.0.0" 94894 94713 sources."escape-string-regexp-4.0.0" 94895 - sources."eslint-8.13.0" 94714 + sources."eslint-8.14.0" 94896 94715 sources."eslint-scope-7.1.1" 94897 94716 (sources."eslint-utils-3.0.0" // { 94898 94717 dependencies = [ ··· 94988 94807 expo-cli = nodeEnv.buildNodePackage { 94989 94808 name = "expo-cli"; 94990 94809 packageName = "expo-cli"; 94991 - version = "5.3.2"; 94810 + version = "5.4.3"; 94992 94811 src = fetchurl { 94993 - url = "https://registry.npmjs.org/expo-cli/-/expo-cli-5.3.2.tgz"; 94994 - sha512 = "kUCIPYW1bHs+Jj8MvEkr1gp4ssN4kONUH3BEnEotW7Emoc9N7st7J6iNcEiB7obcPF532VSXzvYgcyRR8pJ8NA=="; 94812 + url = "https://registry.npmjs.org/expo-cli/-/expo-cli-5.4.3.tgz"; 94813 + sha512 = "MT21EV+7e53qqXcRGZaovguOVBG4mmpm6JpZnC5grQAsWn6Jf+YwEk5XUORhIyM2FcrQfnseAJJuRA1OY4kzrw=="; 94995 94814 }; 94996 94815 dependencies = [ 94997 94816 sources."@babel/code-frame-7.10.4" ··· 95001 94820 sources."semver-5.7.1" 95002 94821 ]; 95003 94822 }) 95004 - sources."@babel/generator-7.17.9" 94823 + sources."@babel/generator-7.17.10" 95005 94824 sources."@babel/helper-environment-visitor-7.16.7" 95006 94825 sources."@babel/helper-function-name-7.17.9" 95007 94826 sources."@babel/helper-hoist-variables-7.16.7" ··· 95016 94835 sources."chalk-2.4.2" 95017 94836 ]; 95018 94837 }) 95019 - sources."@babel/parser-7.17.9" 94838 + sources."@babel/parser-7.17.10" 95020 94839 sources."@babel/runtime-7.9.0" 95021 94840 (sources."@babel/template-7.16.7" // { 95022 94841 dependencies = [ 95023 94842 sources."@babel/code-frame-7.16.7" 95024 94843 ]; 95025 94844 }) 95026 - (sources."@babel/traverse-7.17.9" // { 94845 + (sources."@babel/traverse-7.17.10" // { 95027 94846 dependencies = [ 95028 94847 sources."@babel/code-frame-7.16.7" 95029 94848 ]; 95030 94849 }) 95031 - sources."@babel/types-7.17.0" 94850 + sources."@babel/types-7.17.10" 95032 94851 sources."@expo/apple-utils-0.0.0-alpha.31" 95033 94852 sources."@expo/bunyan-4.0.0" 95034 - sources."@expo/config-6.0.20" 95035 - (sources."@expo/config-plugins-4.1.1" // { 94853 + sources."@expo/config-6.0.23" 94854 + (sources."@expo/config-plugins-4.1.4" // { 95036 94855 dependencies = [ 95037 94856 sources."semver-7.3.7" 95038 94857 ]; 95039 94858 }) 95040 - sources."@expo/config-types-44.0.0" 95041 - sources."@expo/dev-server-0.1.107" 95042 - sources."@expo/dev-tools-0.13.148" 94859 + sources."@expo/config-types-45.0.0" 94860 + sources."@expo/dev-server-0.1.110" 94861 + sources."@expo/dev-tools-0.13.152" 95043 94862 (sources."@expo/devcert-1.0.0" // { 95044 94863 dependencies = [ 95045 94864 sources."debug-3.2.7" ··· 95047 94866 sources."sudo-prompt-8.2.5" 95048 94867 ]; 95049 94868 }) 95050 - (sources."@expo/image-utils-0.3.19" // { 94869 + (sources."@expo/image-utils-0.3.20" // { 95051 94870 dependencies = [ 94871 + sources."mime-2.6.0" 95052 94872 sources."temp-dir-1.0.0" 95053 94873 sources."tempy-0.3.0" 95054 94874 sources."type-fest-0.3.1" 95055 94875 ]; 95056 94876 }) 95057 - sources."@expo/json-file-8.2.35" 95058 - sources."@expo/metro-config-0.3.13" 95059 - sources."@expo/osascript-2.0.32" 95060 - (sources."@expo/package-manager-0.0.51" // { 94877 + sources."@expo/json-file-8.2.36" 94878 + sources."@expo/metro-config-0.3.16" 94879 + sources."@expo/osascript-2.0.33" 94880 + (sources."@expo/package-manager-0.0.53" // { 95061 94881 dependencies = [ 95062 94882 sources."npm-package-arg-7.0.0" 95063 94883 sources."rimraf-3.0.2" ··· 95069 94889 sources."xmlbuilder-14.0.0" 95070 94890 ]; 95071 94891 }) 95072 - sources."@expo/prebuild-config-3.1.1" 94892 + sources."@expo/prebuild-config-4.0.0" 95073 94893 sources."@expo/rudder-sdk-node-1.1.1" 95074 - sources."@expo/schemer-1.4.0" 94894 + sources."@expo/schemer-1.4.1" 95075 94895 sources."@expo/sdk-runtime-versions-1.0.0" 95076 94896 sources."@expo/spawn-async-1.5.0" 95077 - (sources."@expo/webpack-config-0.16.20" // { 95078 - dependencies = [ 95079 - sources."is-wsl-2.2.0" 95080 - ]; 95081 - }) 94897 + sources."@expo/webpack-config-0.16.23" 95082 94898 (sources."@expo/xcpretty-4.1.1" // { 95083 94899 dependencies = [ 95084 94900 sources."js-yaml-4.1.0" 95085 94901 ]; 95086 94902 }) 95087 94903 sources."@gar/promisify-1.1.3" 95088 - sources."@hapi/hoek-9.2.1" 94904 + sources."@hapi/hoek-9.3.0" 95089 94905 sources."@hapi/topo-5.1.0" 95090 - sources."@jest/types-26.6.2" 94906 + sources."@jridgewell/gen-mapping-0.1.1" 94907 + sources."@jridgewell/set-array-1.1.0" 94908 + sources."@jridgewell/sourcemap-codec-1.4.11" 95091 94909 sources."@nodelib/fs.scandir-2.1.5" 95092 94910 sources."@nodelib/fs.stat-2.0.5" 95093 94911 sources."@nodelib/fs.walk-1.2.8" ··· 95102 94920 sources."rimraf-3.0.2" 95103 94921 ]; 95104 94922 }) 95105 - sources."@react-native-community/cli-debugger-ui-5.0.1" 95106 - sources."@react-native-community/cli-server-api-5.0.1" 95107 - (sources."@react-native-community/cli-tools-5.0.1" // { 95108 - dependencies = [ 95109 - sources."ansi-styles-4.3.0" 95110 - sources."chalk-3.0.0" 95111 - sources."color-convert-2.0.1" 95112 - sources."color-name-1.1.4" 95113 - sources."has-flag-4.0.0" 95114 - sources."open-6.4.0" 95115 - sources."supports-color-7.2.0" 95116 - ]; 95117 - }) 95118 94923 sources."@react-native/normalize-color-2.0.0" 95119 94924 sources."@segment/loosely-validate-event-2.0.0" 95120 94925 sources."@sideway/address-4.1.4" ··· 95126 94931 sources."@types/glob-7.2.0" 95127 94932 sources."@types/html-minifier-terser-5.1.2" 95128 94933 sources."@types/http-cache-semantics-4.0.1" 95129 - sources."@types/istanbul-lib-coverage-2.0.4" 95130 - sources."@types/istanbul-lib-report-3.0.0" 95131 - sources."@types/istanbul-reports-3.0.1" 95132 94934 sources."@types/json-buffer-3.0.0" 95133 94935 sources."@types/json-schema-7.0.11" 95134 94936 sources."@types/keyv-3.1.4" 95135 94937 sources."@types/minimatch-3.0.5" 95136 - sources."@types/node-17.0.25" 94938 + sources."@types/node-9.6.61" 95137 94939 sources."@types/q-1.5.5" 95138 94940 sources."@types/responselike-1.0.0" 95139 - sources."@types/retry-0.12.1" 94941 + sources."@types/retry-0.12.2" 95140 94942 sources."@types/source-list-map-0.1.2" 95141 94943 sources."@types/tapable-1.0.8" 95142 94944 (sources."@types/uglify-js-3.13.2" // { ··· 95154 94956 sources."source-map-0.7.3" 95155 94957 ]; 95156 94958 }) 95157 - sources."@types/yargs-15.0.14" 95158 - sources."@types/yargs-parser-21.0.0" 95159 94959 sources."@webassemblyjs/ast-1.9.0" 95160 94960 sources."@webassemblyjs/floating-point-hex-parser-1.9.0" 95161 94961 sources."@webassemblyjs/helper-api-error-1.9.0" ··· 95198 94998 sources."ansi-styles-3.2.1" 95199 94999 sources."any-promise-1.3.0" 95200 95000 sources."anymatch-3.1.2" 95201 - (sources."apollo-link-1.2.1" // { 95202 - dependencies = [ 95203 - sources."@types/node-9.6.61" 95204 - ]; 95205 - }) 95001 + sources."apollo-link-1.2.1" 95206 95002 sources."apollo-utilities-1.3.4" 95207 95003 sources."application-config-path-0.1.0" 95208 95004 sources."aproba-1.2.0" ··· 95210 95006 sources."arr-diff-4.0.0" 95211 95007 sources."arr-flatten-1.1.0" 95212 95008 sources."arr-union-3.1.0" 95213 - sources."array-filter-0.0.1" 95214 95009 sources."array-flatten-1.1.1" 95215 - sources."array-map-0.0.0" 95216 - sources."array-reduce-0.0.0" 95217 95010 sources."array-union-2.1.0" 95218 95011 sources."array-uniq-1.0.3" 95219 95012 sources."array-unique-0.3.2" ··· 95265 95058 sources."bn.js-5.2.0" 95266 95059 (sources."body-parser-1.19.0" // { 95267 95060 dependencies = [ 95268 - sources."bytes-3.1.0" 95269 95061 sources."debug-2.6.9" 95270 - sources."depd-1.1.2" 95271 - sources."http-errors-1.7.2" 95272 - sources."inherits-2.0.3" 95273 95062 sources."ms-2.0.0" 95274 - sources."on-finished-2.3.0" 95275 - sources."setprototypeof-1.1.1" 95276 - sources."statuses-1.5.0" 95277 - sources."toidentifier-1.0.0" 95278 95063 ]; 95279 95064 }) 95280 95065 (sources."bonjour-3.5.0" // { ··· 95304 95089 ]; 95305 95090 }) 95306 95091 sources."browserify-zlib-0.2.0" 95307 - (sources."browserslist-4.20.2" // { 95092 + (sources."browserslist-4.20.3" // { 95308 95093 dependencies = [ 95309 95094 sources."picocolors-1.0.0" 95310 95095 ]; ··· 95315 95100 sources."buffer-xor-1.0.3" 95316 95101 sources."builtin-status-codes-3.0.0" 95317 95102 sources."builtins-1.0.3" 95318 - sources."bytes-3.0.0" 95103 + sources."bytes-3.1.0" 95319 95104 (sources."cacache-15.3.0" // { 95320 95105 dependencies = [ 95321 95106 sources."minipass-3.1.6" ··· 95333 95118 sources."callsites-2.0.0" 95334 95119 (sources."camel-case-4.1.2" // { 95335 95120 dependencies = [ 95336 - sources."tslib-2.3.1" 95121 + sources."tslib-2.4.0" 95337 95122 ]; 95338 95123 }) 95339 95124 sources."camelcase-6.3.0" 95340 95125 sources."caniuse-api-3.0.0" 95341 - sources."caniuse-lite-1.0.30001332" 95126 + sources."caniuse-lite-1.0.30001334" 95342 95127 (sources."chalk-4.1.2" // { 95343 95128 dependencies = [ 95344 95129 sources."ansi-styles-4.3.0" ··· 95412 95197 sources."color-3.2.1" 95413 95198 sources."color-convert-1.9.3" 95414 95199 sources."color-name-1.1.3" 95415 - sources."color-string-1.9.0" 95200 + sources."color-string-1.9.1" 95416 95201 sources."combined-stream-1.0.8" 95417 95202 sources."command-exists-1.2.9" 95418 95203 sources."commander-2.17.1" ··· 95423 95208 sources."compressible-2.0.18" 95424 95209 (sources."compression-1.7.4" // { 95425 95210 dependencies = [ 95211 + sources."bytes-3.0.0" 95426 95212 sources."debug-2.6.9" 95427 95213 sources."ms-2.0.0" 95428 95214 ]; ··· 95551 95337 ]; 95552 95338 }) 95553 95339 sources."delayed-stream-1.0.0" 95554 - sources."depd-2.0.0" 95340 + sources."depd-1.1.2" 95555 95341 sources."deprecated-decorator-0.1.6" 95556 95342 sources."des.js-1.0.1" 95557 - sources."destroy-1.2.0" 95343 + sources."destroy-1.0.4" 95558 95344 sources."detect-node-2.1.0" 95559 95345 (sources."detect-port-alt-1.1.6" // { 95560 95346 dependencies = [ ··· 95588 95374 }) 95589 95375 (sources."dot-case-3.0.4" // { 95590 95376 dependencies = [ 95591 - sources."tslib-2.3.1" 95377 + sources."tslib-2.4.0" 95592 95378 ]; 95593 95379 }) 95594 95380 sources."dot-prop-5.3.0" ··· 95596 95382 sources."duplexer3-0.1.4" 95597 95383 sources."duplexify-3.7.1" 95598 95384 sources."ee-first-1.1.1" 95599 - sources."electron-to-chromium-1.4.114" 95385 + sources."electron-to-chromium-1.4.129" 95600 95386 (sources."elliptic-6.5.4" // { 95601 95387 dependencies = [ 95602 95388 sources."bn.js-4.12.0" ··· 95616 95402 sources."eol-0.9.1" 95617 95403 sources."errno-0.1.8" 95618 95404 sources."error-ex-1.3.2" 95619 - sources."errorhandler-1.5.1" 95620 95405 sources."es-abstract-1.19.5" 95621 95406 sources."es-to-primitive-1.2.1" 95622 95407 sources."escalade-3.1.1" ··· 95662 95447 sources."ms-2.0.0" 95663 95448 ]; 95664 95449 }) 95665 - (sources."expo-modules-autolinking-0.5.5" // { 95450 + (sources."expo-modules-autolinking-0.7.0" // { 95666 95451 dependencies = [ 95667 95452 sources."commander-7.2.0" 95668 95453 sources."fs-extra-9.1.0" 95669 95454 ]; 95670 95455 }) 95671 - (sources."expo-pwa-0.0.115" // { 95456 + (sources."expo-pwa-0.0.118" // { 95672 95457 dependencies = [ 95673 95458 sources."commander-2.20.0" 95674 95459 ]; ··· 95676 95461 (sources."express-4.16.4" // { 95677 95462 dependencies = [ 95678 95463 sources."body-parser-1.18.3" 95464 + sources."bytes-3.0.0" 95679 95465 sources."debug-2.6.9" 95680 - sources."depd-1.1.2" 95681 - sources."destroy-1.0.4" 95682 95466 sources."finalhandler-1.1.1" 95683 95467 sources."http-errors-1.6.3" 95684 95468 sources."iconv-lite-0.4.23" 95685 95469 sources."inherits-2.0.3" 95686 - sources."mime-1.4.1" 95687 95470 sources."ms-2.0.0" 95688 - sources."on-finished-2.3.0" 95689 95471 sources."qs-6.5.2" 95690 95472 sources."raw-body-2.3.3" 95691 - sources."send-0.16.2" 95692 - sources."serve-static-1.13.2" 95693 95473 sources."setprototypeof-1.1.0" 95694 95474 sources."statuses-1.4.0" 95695 95475 ]; ··· 95727 95507 dependencies = [ 95728 95508 sources."debug-2.6.9" 95729 95509 sources."ms-2.0.0" 95730 - sources."on-finished-2.3.0" 95731 - sources."statuses-1.5.0" 95732 95510 ]; 95733 95511 }) 95734 95512 sources."find-cache-dir-2.1.0" ··· 95860 95638 sources."htmlparser2-4.1.0" 95861 95639 sources."http-cache-semantics-4.1.0" 95862 95640 sources."http-deceiver-1.2.7" 95863 - sources."http-errors-2.0.0" 95641 + (sources."http-errors-1.7.2" // { 95642 + dependencies = [ 95643 + sources."inherits-2.0.3" 95644 + ]; 95645 + }) 95864 95646 (sources."http-proxy-1.18.1" // { 95865 95647 dependencies = [ 95866 95648 sources."eventemitter3-4.0.7" ··· 95976 95758 sources."is-valid-path-0.1.1" 95977 95759 sources."is-weakref-1.0.2" 95978 95760 sources."is-windows-1.0.2" 95979 - sources."is-wsl-1.1.0" 95761 + sources."is-wsl-2.2.0" 95980 95762 sources."isarray-1.0.0" 95981 95763 sources."isexe-2.0.0" 95982 95764 sources."isobject-3.0.1" ··· 96009 95791 sources."json3-3.3.3" 96010 95792 sources."json5-1.0.1" 96011 95793 sources."jsonfile-6.1.0" 96012 - sources."jsonify-0.0.0" 96013 95794 sources."keychain-1.3.0" 96014 95795 sources."keyv-4.2.2" 96015 95796 sources."killable-1.0.1" ··· 96040 95821 sources."loglevel-1.8.0" 96041 95822 (sources."lower-case-2.0.2" // { 96042 95823 dependencies = [ 96043 - sources."tslib-2.3.1" 95824 + sources."tslib-2.4.0" 96044 95825 ]; 96045 95826 }) 96046 95827 sources."lowercase-keys-2.0.0" ··· 96070 95851 sources."bn.js-4.12.0" 96071 95852 ]; 96072 95853 }) 96073 - sources."mime-2.6.0" 95854 + sources."mime-1.4.1" 96074 95855 sources."mime-db-1.52.0" 96075 95856 sources."mime-types-2.1.35" 96076 95857 sources."mimic-fn-1.2.0" ··· 96144 95925 sources."nice-try-1.0.5" 96145 95926 (sources."no-case-3.0.4" // { 96146 95927 dependencies = [ 96147 - sources."tslib-2.3.1" 95928 + sources."tslib-2.4.0" 96148 95929 ]; 96149 95930 }) 96150 - sources."nocache-2.1.0" 96151 95931 sources."node-fetch-2.6.7" 96152 95932 sources."node-forge-0.10.0" 96153 95933 sources."node-html-parser-1.4.9" ··· 96156 95936 sources."punycode-1.4.1" 96157 95937 ]; 96158 95938 }) 96159 - sources."node-releases-2.0.3" 95939 + sources."node-releases-2.0.4" 96160 95940 sources."normalize-path-3.0.0" 96161 95941 sources."normalize-url-6.1.0" 96162 95942 (sources."npm-package-arg-6.1.0" // { ··· 96192 95972 sources."object.pick-1.3.0" 96193 95973 sources."object.values-1.1.5" 96194 95974 sources."obuf-1.1.2" 96195 - sources."on-finished-2.4.1" 95975 + sources."on-finished-2.3.0" 96196 95976 sources."on-headers-1.0.2" 96197 95977 sources."once-1.4.0" 96198 95978 sources."onetime-2.0.1" 96199 - (sources."open-8.4.0" // { 95979 + sources."open-8.4.0" 95980 + (sources."opn-5.5.0" // { 96200 95981 dependencies = [ 96201 - sources."is-wsl-2.2.0" 95982 + sources."is-wsl-1.1.0" 96202 95983 ]; 96203 95984 }) 96204 - sources."opn-5.5.0" 96205 95985 sources."optimize-css-assets-webpack-plugin-5.0.8" 96206 - sources."options-0.0.6" 96207 95986 (sources."ora-3.4.0" // { 96208 95987 dependencies = [ 96209 95988 sources."ansi-regex-4.1.1" ··· 96259 96038 sources."parallel-transform-1.2.0" 96260 96039 (sources."param-case-3.0.4" // { 96261 96040 dependencies = [ 96262 - sources."tslib-2.3.1" 96041 + sources."tslib-2.4.0" 96263 96042 ]; 96264 96043 }) 96265 96044 sources."parse-asn1-5.1.6" ··· 96269 96048 sources."parseurl-1.3.3" 96270 96049 (sources."pascal-case-3.1.2" // { 96271 96050 dependencies = [ 96272 - sources."tslib-2.3.1" 96051 + sources."tslib-2.4.0" 96273 96052 ]; 96274 96053 }) 96275 96054 sources."pascalcase-0.1.1" ··· 96441 96220 sources."prepend-http-3.0.1" 96442 96221 sources."pretty-bytes-5.6.0" 96443 96222 sources."pretty-error-2.1.2" 96444 - (sources."pretty-format-26.6.2" // { 96445 - dependencies = [ 96446 - sources."ansi-styles-4.3.0" 96447 - sources."color-convert-2.0.1" 96448 - sources."color-name-1.1.4" 96449 - ]; 96450 - }) 96451 96223 sources."probe-image-size-6.0.0" 96452 96224 sources."process-0.11.10" 96453 96225 sources."process-nextick-args-2.0.1" ··· 96480 96252 sources."randombytes-2.1.0" 96481 96253 sources."randomfill-1.0.4" 96482 96254 sources."range-parser-1.2.1" 96483 - (sources."raw-body-2.4.0" // { 96484 - dependencies = [ 96485 - sources."bytes-3.1.0" 96486 - sources."depd-1.1.2" 96487 - sources."http-errors-1.7.2" 96488 - sources."inherits-2.0.3" 96489 - sources."setprototypeof-1.1.1" 96490 - sources."statuses-1.5.0" 96491 - sources."toidentifier-1.0.0" 96492 - ]; 96493 - }) 96255 + sources."raw-body-2.4.0" 96494 96256 sources."rc-1.2.8" 96495 96257 (sources."react-dev-utils-11.0.4" // { 96496 96258 dependencies = [ ··· 96504 96266 sources."escape-string-regexp-2.0.0" 96505 96267 sources."find-up-4.1.0" 96506 96268 sources."globby-11.0.1" 96507 - sources."is-wsl-2.2.0" 96508 96269 sources."json5-2.2.1" 96509 96270 sources."loader-utils-2.0.0" 96510 96271 sources."locate-path-5.0.0" ··· 96516 96277 sources."prompts-2.4.0" 96517 96278 sources."shebang-command-2.0.0" 96518 96279 sources."shebang-regex-3.0.0" 96519 - sources."shell-quote-1.7.2" 96520 96280 sources."strip-ansi-6.0.0" 96521 96281 sources."which-2.0.2" 96522 96282 ]; 96523 96283 }) 96524 96284 sources."react-error-overlay-6.0.11" 96525 - sources."react-is-17.0.2" 96526 96285 sources."read-chunk-3.2.0" 96527 96286 sources."read-last-lines-1.6.0" 96528 96287 sources."readable-stream-2.3.7" ··· 96599 96358 sources."select-hose-2.0.0" 96600 96359 sources."selfsigned-1.10.14" 96601 96360 sources."semver-7.3.2" 96602 - (sources."send-0.18.0" // { 96361 + (sources."send-0.16.2" // { 96603 96362 dependencies = [ 96604 - (sources."debug-2.6.9" // { 96605 - dependencies = [ 96606 - sources."ms-2.0.0" 96607 - ]; 96608 - }) 96609 - sources."mime-1.6.0" 96610 - sources."ms-2.1.3" 96363 + sources."debug-2.6.9" 96364 + sources."http-errors-1.6.3" 96365 + sources."inherits-2.0.3" 96366 + sources."ms-2.0.0" 96367 + sources."setprototypeof-1.1.0" 96368 + sources."statuses-1.4.0" 96611 96369 ]; 96612 96370 }) 96613 96371 sources."serialize-error-6.0.0" ··· 96615 96373 (sources."serve-index-1.9.1" // { 96616 96374 dependencies = [ 96617 96375 sources."debug-2.6.9" 96618 - sources."depd-1.1.2" 96619 96376 sources."http-errors-1.6.3" 96620 96377 sources."inherits-2.0.3" 96621 96378 sources."ms-2.0.0" 96622 96379 sources."setprototypeof-1.1.0" 96623 - sources."statuses-1.5.0" 96624 96380 ]; 96625 96381 }) 96626 - sources."serve-static-1.15.0" 96382 + sources."serve-static-1.13.2" 96627 96383 sources."set-blocking-2.0.0" 96628 96384 (sources."set-value-2.0.1" // { 96629 96385 dependencies = [ ··· 96631 96387 ]; 96632 96388 }) 96633 96389 sources."setimmediate-1.0.5" 96634 - sources."setprototypeof-1.2.0" 96390 + sources."setprototypeof-1.1.1" 96635 96391 sources."sha.js-2.4.11" 96636 96392 sources."shebang-command-1.2.0" 96637 96393 sources."shebang-regex-1.0.0" 96638 - sources."shell-quote-1.6.1" 96394 + sources."shell-quote-1.7.2" 96639 96395 sources."side-channel-1.0.4" 96640 96396 sources."signal-exit-3.0.7" 96641 96397 (sources."simple-plist-1.3.1" // { ··· 96729 96485 sources."kind-of-5.1.0" 96730 96486 ]; 96731 96487 }) 96732 - sources."statuses-2.0.1" 96488 + sources."statuses-1.5.0" 96733 96489 sources."stream-browserify-2.0.2" 96734 96490 sources."stream-buffers-2.2.0" 96735 96491 sources."stream-each-1.2.3" ··· 96761 96517 sources."postcss-selector-parser-3.1.2" 96762 96518 ]; 96763 96519 }) 96764 - (sources."subscriptions-transport-ws-0.9.8" // { 96765 - dependencies = [ 96766 - sources."ultron-1.1.1" 96767 - sources."ws-3.3.3" 96768 - ]; 96769 - }) 96520 + sources."subscriptions-transport-ws-0.9.8" 96770 96521 (sources."sucrase-3.21.0" // { 96771 96522 dependencies = [ 96772 96523 sources."commander-4.1.1" ··· 96859 96610 sources."to-readable-stream-1.0.0" 96860 96611 sources."to-regex-3.0.2" 96861 96612 sources."to-regex-range-5.0.1" 96862 - sources."toidentifier-1.0.1" 96613 + sources."toidentifier-1.0.0" 96863 96614 sources."tr46-0.0.3" 96864 96615 sources."traverse-0.6.6" 96865 96616 sources."tree-kill-1.2.2" ··· 96872 96623 sources."type-fest-0.12.0" 96873 96624 sources."type-is-1.6.18" 96874 96625 sources."typedarray-0.0.6" 96875 - sources."ultron-1.0.2" 96876 - sources."unbox-primitive-1.0.1" 96626 + sources."ultron-1.1.1" 96627 + sources."unbox-primitive-1.0.2" 96877 96628 sources."union-value-1.0.1" 96878 96629 sources."uniq-1.0.1" 96879 96630 sources."uniqs-2.0.0" ··· 96961 96712 sources."fast-deep-equal-3.1.3" 96962 96713 sources."fill-range-4.0.0" 96963 96714 sources."is-number-3.0.0" 96715 + sources."is-wsl-1.1.0" 96964 96716 sources."json-schema-traverse-0.4.1" 96965 96717 sources."kind-of-3.2.2" 96966 96718 sources."loader-utils-1.4.0" ··· 96975 96727 sources."yallist-3.1.1" 96976 96728 ]; 96977 96729 }) 96978 - sources."webpack-dev-middleware-3.7.3" 96730 + (sources."webpack-dev-middleware-3.7.3" // { 96731 + dependencies = [ 96732 + sources."mime-2.6.0" 96733 + ]; 96734 + }) 96979 96735 (sources."webpack-dev-server-3.11.0" // { 96980 96736 dependencies = [ 96981 96737 sources."ajv-6.12.6" ··· 96983 96739 sources."anymatch-2.0.0" 96984 96740 sources."array-union-1.0.2" 96985 96741 sources."binary-extensions-1.13.1" 96986 - (sources."body-parser-1.19.2" // { 96742 + (sources."body-parser-1.20.0" // { 96987 96743 dependencies = [ 96988 96744 sources."debug-2.6.9" 96989 96745 ]; ··· 96992 96748 sources."bytes-3.1.2" 96993 96749 sources."chokidar-2.1.8" 96994 96750 sources."content-disposition-0.5.4" 96995 - sources."cookie-0.4.2" 96751 + sources."cookie-0.5.0" 96996 96752 sources."del-4.1.1" 96997 - sources."depd-1.1.2" 96998 - sources."destroy-1.0.4" 96999 - (sources."express-4.17.3" // { 96753 + sources."depd-2.0.0" 96754 + sources."destroy-1.2.0" 96755 + (sources."express-4.18.1" // { 97000 96756 dependencies = [ 97001 96757 sources."debug-2.6.9" 97002 96758 ]; ··· 97004 96760 sources."extend-shallow-2.0.1" 97005 96761 sources."fast-deep-equal-3.1.3" 97006 96762 sources."fill-range-4.0.0" 96763 + (sources."finalhandler-1.2.0" // { 96764 + dependencies = [ 96765 + sources."debug-2.6.9" 96766 + ]; 96767 + }) 97007 96768 sources."fsevents-1.2.13" 97008 96769 sources."glob-parent-3.1.0" 97009 96770 sources."globby-6.1.0" 97010 - sources."http-errors-1.8.1" 96771 + sources."http-errors-2.0.0" 97011 96772 sources."is-absolute-url-3.0.3" 97012 96773 sources."is-binary-path-1.0.1" 97013 96774 sources."is-glob-3.1.0" ··· 97018 96779 sources."mime-1.6.0" 97019 96780 sources."ms-2.0.0" 97020 96781 sources."normalize-path-2.1.1" 97021 - sources."on-finished-2.3.0" 96782 + sources."on-finished-2.4.1" 97022 96783 sources."p-map-2.1.0" 97023 96784 sources."p-retry-3.0.1" 97024 96785 sources."pify-2.3.0" 97025 - sources."qs-6.9.7" 97026 - sources."raw-body-2.4.3" 96786 + sources."qs-6.10.3" 96787 + sources."raw-body-2.5.1" 97027 96788 sources."readdirp-2.2.1" 97028 96789 sources."rimraf-2.7.1" 97029 96790 sources."safe-buffer-5.2.1" 97030 96791 sources."schema-utils-1.0.0" 97031 96792 sources."semver-6.3.0" 97032 - (sources."send-0.17.2" // { 96793 + (sources."send-0.18.0" // { 97033 96794 dependencies = [ 97034 96795 (sources."debug-2.6.9" // { 97035 96796 dependencies = [ ··· 97039 96800 sources."ms-2.1.3" 97040 96801 ]; 97041 96802 }) 97042 - sources."serve-static-1.14.2" 97043 - sources."statuses-1.5.0" 96803 + sources."serve-static-1.15.0" 96804 + sources."setprototypeof-1.2.0" 96805 + sources."statuses-2.0.1" 97044 96806 sources."strip-ansi-3.0.1" 97045 96807 sources."supports-color-6.1.0" 97046 96808 sources."to-regex-range-2.1.1" 96809 + sources."toidentifier-1.0.1" 97047 96810 sources."ws-6.2.2" 97048 96811 ]; 97049 96812 }) ··· 97083 96846 }) 97084 96847 sources."wrappy-1.0.2" 97085 96848 sources."write-file-atomic-2.4.3" 97086 - sources."ws-1.1.5" 96849 + sources."ws-3.3.3" 97087 96850 (sources."xcode-3.0.1" // { 97088 96851 dependencies = [ 97089 96852 sources."uuid-7.0.3" 97090 96853 ]; 97091 96854 }) 97092 - (sources."xdl-59.2.32" // { 96855 + (sources."xdl-59.2.36" // { 97093 96856 dependencies = [ 97094 96857 sources."bplist-parser-0.3.1" 97095 96858 sources."chownr-1.1.4" ··· 97153 96916 sha512 = "sA4bbCHFe8DqtRjlIVD5Hga+tDpYOgoOOG+NKyLFYJfLrxlmU28RmSjr+pC15q0xU67g7Ut3jDskasmjeLgRsg=="; 97154 96917 }; 97155 96918 dependencies = [ 97156 - sources."@ampproject/remapping-2.1.2" 96919 + sources."@ampproject/remapping-2.2.0" 97157 96920 sources."@babel/code-frame-7.16.7" 97158 - sources."@babel/compat-data-7.17.7" 97159 - sources."@babel/core-7.17.9" 97160 - sources."@babel/generator-7.17.9" 96921 + sources."@babel/compat-data-7.17.10" 96922 + sources."@babel/core-7.17.10" 96923 + sources."@babel/generator-7.17.10" 97161 96924 sources."@babel/helper-annotate-as-pure-7.16.7" 97162 - sources."@babel/helper-compilation-targets-7.17.7" 96925 + sources."@babel/helper-compilation-targets-7.17.10" 97163 96926 sources."@babel/helper-environment-visitor-7.16.7" 97164 96927 sources."@babel/helper-function-name-7.17.9" 97165 96928 sources."@babel/helper-hoist-variables-7.16.7" ··· 97172 96935 sources."@babel/helper-validator-option-7.16.7" 97173 96936 sources."@babel/helpers-7.17.9" 97174 96937 sources."@babel/highlight-7.17.9" 97175 - sources."@babel/parser-7.17.9" 96938 + sources."@babel/parser-7.17.10" 97176 96939 sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 97177 96940 sources."@babel/plugin-syntax-jsx-7.16.7" 97178 96941 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 97180 96943 sources."@babel/plugin-transform-parameters-7.16.7" 97181 96944 sources."@babel/plugin-transform-react-jsx-7.17.3" 97182 96945 sources."@babel/template-7.16.7" 97183 - sources."@babel/traverse-7.17.9" 97184 - sources."@babel/types-7.17.0" 97185 - sources."@jridgewell/resolve-uri-3.0.5" 96946 + sources."@babel/traverse-7.17.10" 96947 + sources."@babel/types-7.17.10" 96948 + sources."@jridgewell/gen-mapping-0.1.1" 96949 + sources."@jridgewell/resolve-uri-3.0.6" 96950 + sources."@jridgewell/set-array-1.1.0" 97186 96951 sources."@jridgewell/sourcemap-codec-1.4.11" 97187 - sources."@jridgewell/trace-mapping-0.3.8" 96952 + sources."@jridgewell/trace-mapping-0.3.9" 97188 96953 sources."@types/minimist-1.2.2" 97189 - sources."@types/node-17.0.25" 96954 + sources."@types/node-17.0.31" 97190 96955 sources."@types/normalize-package-data-2.4.1" 97191 96956 sources."@types/yauzl-2.10.0" 97192 96957 sources."@types/yoga-layout-1.9.2" ··· 97205 96970 sources."base64-js-1.5.1" 97206 96971 sources."bl-4.1.0" 97207 96972 sources."brace-expansion-1.1.11" 97208 - sources."browserslist-4.20.2" 96973 + sources."browserslist-4.20.3" 97209 96974 sources."buffer-5.7.1" 97210 96975 sources."buffer-crc32-0.2.13" 97211 96976 sources."caller-callsite-4.1.0" ··· 97213 96978 sources."callsites-3.1.0" 97214 96979 sources."camelcase-5.3.1" 97215 96980 sources."camelcase-keys-6.2.2" 97216 - sources."caniuse-lite-1.0.30001332" 96981 + sources."caniuse-lite-1.0.30001334" 97217 96982 sources."chalk-2.4.2" 97218 96983 sources."chownr-1.1.4" 97219 96984 sources."ci-info-2.0.0" ··· 97238 97003 }) 97239 97004 sources."delay-5.0.0" 97240 97005 sources."devtools-protocol-0.0.981744" 97241 - sources."electron-to-chromium-1.4.114" 97006 + sources."electron-to-chromium-1.4.129" 97242 97007 sources."emoji-regex-8.0.0" 97243 97008 sources."end-of-stream-1.4.4" 97244 97009 sources."error-ex-1.3.2" ··· 97259 97024 sources."has-1.0.3" 97260 97025 sources."has-flag-3.0.0" 97261 97026 sources."hosted-git-info-4.1.0" 97262 - sources."https-proxy-agent-5.0.0" 97027 + sources."https-proxy-agent-5.0.1" 97263 97028 sources."ieee754-1.2.1" 97264 97029 sources."import-jsx-4.0.1" 97265 97030 sources."indent-string-4.0.0" ··· 97305 97070 sources."mkdirp-classic-0.5.3" 97306 97071 sources."ms-2.1.2" 97307 97072 sources."node-fetch-2.6.7" 97308 - sources."node-releases-2.0.3" 97073 + sources."node-releases-2.0.4" 97309 97074 (sources."normalize-package-data-3.0.3" // { 97310 97075 dependencies = [ 97311 97076 sources."semver-7.3.7" ··· 97328 97093 sources."progress-2.0.3" 97329 97094 sources."proxy-from-env-1.1.0" 97330 97095 sources."pump-3.0.0" 97331 - (sources."puppeteer-13.6.0" // { 97096 + (sources."puppeteer-13.7.0" // { 97332 97097 dependencies = [ 97333 97098 sources."ws-8.5.0" 97334 97099 ]; ··· 97368 97133 sources."color-name-1.1.4" 97369 97134 ]; 97370 97135 }) 97371 - sources."source-map-0.5.7" 97372 97136 sources."spdx-correct-3.1.1" 97373 97137 sources."spdx-exceptions-2.3.0" 97374 97138 sources."spdx-expression-parse-3.0.1" ··· 97641 97405 sources."indent-string-4.0.0" 97642 97406 sources."inherits-2.0.4" 97643 97407 sources."ini-1.3.8" 97644 - (sources."inquirer-8.2.2" // { 97408 + (sources."inquirer-8.2.4" // { 97645 97409 dependencies = [ 97646 97410 sources."ansi-escapes-4.3.2" 97647 97411 sources."type-fest-0.21.3" ··· 97727 97491 sources."qs-6.5.3" 97728 97492 sources."query-string-5.1.1" 97729 97493 sources."queue-microtask-1.2.3" 97730 - sources."rate-limiter-flexible-2.3.6" 97494 + sources."rate-limiter-flexible-2.3.7" 97731 97495 (sources."readable-stream-2.3.7" // { 97732 97496 dependencies = [ 97733 97497 sources."safe-buffer-5.1.2" ··· 97778 97542 sources."tough-cookie-2.5.0" 97779 97543 sources."tr46-0.0.3" 97780 97544 sources."treeify-1.1.0" 97781 - sources."tslib-2.3.1" 97545 + sources."tslib-2.4.0" 97782 97546 sources."tunnel-agent-0.6.0" 97783 97547 sources."tweetnacl-0.14.5" 97784 97548 sources."type-check-0.3.2" ··· 97816 97580 firebase-tools = nodeEnv.buildNodePackage { 97817 97581 name = "firebase-tools"; 97818 97582 packageName = "firebase-tools"; 97819 - version = "10.7.0"; 97583 + version = "10.7.2"; 97820 97584 src = fetchurl { 97821 - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-10.7.0.tgz"; 97822 - sha512 = "yCrYNvfL3IbAGgsRsYsO/cqqdabEn4ujnEq1vEgUGvPadStvUrU51/pdLAAI4cFQ4HbKCULKiVXqz52JZOJT2A=="; 97585 + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-10.7.2.tgz"; 97586 + sha512 = "KU6cQ9XPBn2++gMBkR393LYbl4YEbKbHG/KsUR/JnfB2p5rhSPL/X4TntIl59QFs5527+VcLpeeeRRIB4Z9wUw=="; 97823 97587 }; 97824 97588 dependencies = [ 97825 97589 (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { ··· 97834 97598 sources."@google-cloud/precise-date-2.0.4" 97835 97599 sources."@google-cloud/projectify-2.1.1" 97836 97600 sources."@google-cloud/promisify-2.0.4" 97837 - sources."@google-cloud/pubsub-2.19.0" 97838 - sources."@grpc/grpc-js-1.5.10" 97601 + sources."@google-cloud/pubsub-2.19.3" 97602 + sources."@grpc/grpc-js-1.6.7" 97839 97603 sources."@grpc/proto-loader-0.6.9" 97840 97604 sources."@jsdevtools/ono-7.1.3" 97841 97605 (sources."@npmcli/fs-1.1.1" // { ··· 97849 97613 ]; 97850 97614 }) 97851 97615 sources."@opentelemetry/api-1.1.0" 97852 - sources."@opentelemetry/semantic-conventions-1.1.1" 97616 + sources."@opentelemetry/semantic-conventions-1.2.0" 97853 97617 sources."@protobufjs/aspromise-1.1.2" 97854 97618 sources."@protobufjs/base64-1.1.2" 97855 97619 sources."@protobufjs/codegen-2.0.4" ··· 97865 97629 sources."@tootallnate/once-1.1.2" 97866 97630 sources."@types/duplexify-3.6.1" 97867 97631 sources."@types/json-schema-7.0.11" 97868 - sources."@types/long-4.0.1" 97869 - sources."@types/node-17.0.25" 97632 + sources."@types/long-4.0.2" 97633 + sources."@types/node-17.0.31" 97870 97634 sources."abbrev-1.1.1" 97871 97635 sources."abort-controller-3.0.0" 97872 97636 sources."accepts-1.3.8" 97873 - sources."acorn-8.7.0" 97637 + sources."acorn-8.7.1" 97874 97638 sources."acorn-walk-8.2.0" 97875 97639 sources."agent-base-6.0.2" 97876 97640 (sources."agentkeepalive-4.2.1" // { ··· 97974 97738 sources."cjson-0.3.3" 97975 97739 sources."clean-stack-2.2.0" 97976 97740 sources."cli-boxes-2.2.1" 97977 - (sources."cli-color-1.4.0" // { 97978 - dependencies = [ 97979 - sources."ansi-regex-2.1.1" 97980 - ]; 97981 - }) 97741 + sources."cli-color-2.0.2" 97982 97742 sources."cli-cursor-3.1.0" 97983 97743 sources."cli-spinners-2.6.1" 97984 97744 sources."cli-table-0.3.11" ··· 97994 97754 }) 97995 97755 sources."color-convert-2.0.1" 97996 97756 sources."color-name-1.1.4" 97997 - sources."color-string-1.9.0" 97757 + sources."color-string-1.9.1" 97998 97758 sources."color-support-1.1.3" 97999 97759 sources."colors-1.0.3" 98000 97760 sources."colorspace-1.1.4" ··· 98016 97776 (sources."connect-3.7.0" // { 98017 97777 dependencies = [ 98018 97778 sources."debug-2.6.9" 97779 + sources."finalhandler-1.1.2" 98019 97780 sources."ms-2.0.0" 97781 + sources."on-finished-2.3.0" 97782 + sources."statuses-1.5.0" 98020 97783 ]; 98021 97784 }) 98022 97785 sources."console-control-strings-1.1.0" 98023 97786 sources."content-disposition-0.5.4" 98024 97787 sources."content-type-1.0.4" 98025 - sources."cookie-0.4.2" 97788 + sources."cookie-0.5.0" 98026 97789 sources."cookie-signature-1.0.6" 98027 97790 sources."core-util-is-1.0.3" 98028 97791 sources."cors-2.8.5" ··· 98108 97871 }) 98109 97872 sources."exegesis-express-4.0.0" 98110 97873 sources."exit-code-1.0.2" 98111 - (sources."express-4.17.3" // { 97874 + (sources."express-4.18.1" // { 98112 97875 dependencies = [ 98113 - sources."body-parser-1.19.2" 98114 97876 sources."debug-2.6.9" 98115 - sources."depd-1.1.2" 98116 - sources."http-errors-1.8.1" 98117 97877 sources."ms-2.0.0" 98118 - sources."on-finished-2.3.0" 98119 - sources."qs-6.9.7" 98120 - sources."raw-body-2.4.3" 98121 - sources."statuses-1.5.0" 98122 97878 ]; 98123 97879 }) 98124 97880 (sources."ext-1.6.0" // { ··· 98143 97899 sources."file-uri-to-path-2.0.0" 98144 97900 sources."filesize-6.4.0" 98145 97901 sources."fill-range-7.0.1" 98146 - (sources."finalhandler-1.1.2" // { 97902 + (sources."finalhandler-1.2.0" // { 98147 97903 dependencies = [ 98148 97904 sources."debug-2.6.9" 98149 97905 sources."ms-2.0.0" 98150 - sources."on-finished-2.3.0" 98151 - sources."statuses-1.5.0" 98152 97906 ]; 98153 97907 }) 98154 97908 sources."firebase-frameworks-0.3.0" 98155 - (sources."flat-arguments-1.0.2" // { 98156 - dependencies = [ 98157 - (sources."as-array-1.0.0" // { 98158 - dependencies = [ 98159 - sources."lodash.isarguments-2.4.1" 98160 - sources."lodash.isobject-2.4.1" 98161 - ]; 98162 - }) 98163 - sources."lodash.isobject-3.0.2" 98164 - ]; 98165 - }) 98166 97909 sources."fn.name-1.1.0" 98167 97910 sources."forever-agent-0.6.1" 98168 97911 sources."form-data-2.3.3" ··· 98204 97947 sources."glob-slasher-1.0.1" 98205 97948 sources."global-dirs-2.1.0" 98206 97949 sources."google-auth-library-7.14.1" 98207 - sources."google-gax-2.29.6" 97950 + sources."google-gax-2.30.2" 98208 97951 sources."google-p12-pem-3.1.4" 98209 97952 sources."got-9.6.0" 98210 97953 sources."graceful-fs-4.2.10" ··· 98221 97964 sources."has-symbols-1.0.3" 98222 97965 sources."has-unicode-2.0.1" 98223 97966 sources."has-yarn-2.1.0" 98224 - sources."home-dir-1.0.0" 98225 97967 sources."http-cache-semantics-4.1.0" 98226 97968 sources."http-errors-2.0.0" 98227 97969 sources."http-proxy-agent-4.0.1" ··· 98237 97979 sources."inflight-1.0.6" 98238 97980 sources."inherits-2.0.4" 98239 97981 sources."ini-1.3.7" 98240 - sources."inquirer-8.2.2" 97982 + sources."inquirer-8.2.4" 98241 97983 sources."install-artifact-from-github-1.3.0" 98242 97984 sources."ip-1.1.5" 98243 97985 sources."ip-regex-4.3.0" ··· 98306 98048 sources."levn-0.3.0" 98307 98049 sources."listenercount-1.0.1" 98308 98050 sources."lodash-4.17.21" 98309 - sources."lodash._isnative-2.4.1" 98310 98051 sources."lodash._objecttypes-2.4.1" 98311 - sources."lodash._shimkeys-2.4.1" 98312 98052 sources."lodash.camelcase-4.3.0" 98313 98053 sources."lodash.defaults-4.2.0" 98314 98054 sources."lodash.difference-4.5.0" 98315 98055 sources."lodash.flatten-4.4.0" 98316 98056 sources."lodash.includes-4.3.0" 98317 - sources."lodash.isarguments-3.1.0" 98318 98057 sources."lodash.isboolean-3.0.3" 98319 98058 sources."lodash.isinteger-4.0.4" 98320 98059 sources."lodash.isnumber-3.0.3" 98321 98060 sources."lodash.isobject-2.4.1" 98322 98061 sources."lodash.isplainobject-4.0.6" 98323 98062 sources."lodash.isstring-4.0.1" 98324 - sources."lodash.keys-2.4.1" 98325 98063 sources."lodash.once-4.1.1" 98326 98064 sources."lodash.snakecase-4.1.1" 98327 98065 sources."lodash.union-4.6.0" 98328 - sources."lodash.values-2.4.1" 98329 98066 sources."log-symbols-4.1.0" 98330 98067 sources."logform-2.4.0" 98331 98068 sources."long-4.0.0" ··· 98383 98120 sources."ms-2.1.2" 98384 98121 sources."mute-stream-0.0.8" 98385 98122 sources."nan-2.15.0" 98386 - (sources."nash-3.0.0" // { 98387 - dependencies = [ 98388 - sources."async-1.5.2" 98389 - ]; 98390 - }) 98391 98123 sources."negotiator-0.6.3" 98392 98124 sources."netmask-2.0.2" 98393 98125 sources."next-tick-1.1.0" ··· 98404 98136 sources."nopt-5.0.0" 98405 98137 sources."normalize-path-3.0.0" 98406 98138 sources."normalize-url-4.5.1" 98407 - sources."npmlog-6.0.1" 98139 + sources."npmlog-6.0.2" 98408 98140 sources."oauth-sign-0.9.0" 98409 98141 sources."object-assign-4.1.1" 98410 - sources."object-hash-2.2.0" 98142 + sources."object-hash-3.0.0" 98411 98143 sources."object-inspect-1.12.0" 98412 98144 sources."on-finished-2.4.1" 98413 98145 sources."on-headers-1.0.2" ··· 98490 98222 sources."retry-0.13.1" 98491 98223 sources."retry-request-4.2.2" 98492 98224 sources."rimraf-3.0.2" 98493 - (sources."router-1.3.6" // { 98225 + (sources."router-1.3.7" // { 98494 98226 dependencies = [ 98495 98227 sources."array-flatten-3.0.0" 98496 98228 sources."debug-2.6.9" 98497 98229 sources."ms-2.0.0" 98498 98230 ]; 98499 98231 }) 98500 - sources."rsvp-4.8.5" 98501 98232 sources."run-async-2.4.1" 98502 98233 sources."rxjs-7.5.5" 98503 98234 sources."safe-buffer-5.2.1" ··· 98509 98240 sources."semver-6.3.0" 98510 98241 ]; 98511 98242 }) 98512 - (sources."send-0.17.2" // { 98243 + (sources."send-0.18.0" // { 98513 98244 dependencies = [ 98514 98245 (sources."debug-2.6.9" // { 98515 98246 dependencies = [ 98516 98247 sources."ms-2.0.0" 98517 98248 ]; 98518 98249 }) 98519 - sources."depd-1.1.2" 98520 - sources."destroy-1.0.4" 98521 - sources."http-errors-1.8.1" 98522 98250 sources."mime-1.6.0" 98523 98251 sources."ms-2.1.3" 98524 - sources."on-finished-2.3.0" 98525 - sources."statuses-1.5.0" 98526 98252 ]; 98527 98253 }) 98528 - sources."serve-static-1.14.2" 98254 + sources."serve-static-1.15.0" 98529 98255 sources."set-blocking-2.0.0" 98530 98256 sources."setimmediate-1.0.5" 98531 98257 sources."setprototypeof-1.2.0" ··· 98556 98282 sources."string_decoder-1.3.0" 98557 98283 sources."strip-ansi-6.0.1" 98558 98284 sources."strip-json-comments-2.0.1" 98559 - (sources."superstatic-7.1.0" // { 98285 + (sources."superstatic-8.0.0" // { 98560 98286 dependencies = [ 98561 98287 sources."ansi-regex-2.1.1" 98562 98288 sources."ansi-styles-2.2.1" 98563 98289 sources."chalk-1.1.3" 98564 - sources."fs-extra-8.1.0" 98290 + sources."commander-9.2.0" 98565 98291 sources."isarray-0.0.1" 98566 98292 sources."path-to-regexp-1.8.0" 98567 98293 sources."strip-ansi-3.0.1" ··· 98610 98336 sources."tr46-0.0.3" 98611 98337 sources."traverse-0.3.9" 98612 98338 sources."triple-beam-1.3.0" 98613 - sources."tslib-2.3.1" 98339 + sources."tslib-2.4.0" 98614 98340 sources."tunnel-agent-0.6.0" 98615 98341 sources."tweetnacl-0.14.5" 98616 98342 (sources."tweetsodium-0.0.5" // { ··· 98783 98509 }) 98784 98510 sources."chalk-4.1.2" 98785 98511 sources."chardet-0.7.0" 98786 - sources."clean-stack-4.1.0" 98512 + sources."clean-stack-4.2.0" 98787 98513 sources."cli-cursor-3.1.0" 98788 98514 sources."cli-spinners-2.6.1" 98789 98515 sources."cli-truncate-3.1.0" ··· 98813 98539 ]; 98814 98540 }) 98815 98541 sources."find-up-5.0.0" 98816 - sources."fkill-8.0.0" 98542 + sources."fkill-8.0.1" 98817 98543 sources."function-bind-1.1.1" 98818 98544 sources."fuzzy-search-3.2.1" 98819 98545 sources."get-stream-6.0.1" ··· 98826 98552 sources."ieee754-1.2.1" 98827 98553 sources."indent-string-5.0.0" 98828 98554 sources."inherits-2.0.4" 98829 - (sources."inquirer-8.2.2" // { 98555 + (sources."inquirer-8.2.4" // { 98830 98556 dependencies = [ 98831 98557 sources."ansi-regex-5.0.1" 98832 98558 sources."emoji-regex-8.0.0" ··· 98936 98662 sources."through-2.3.8" 98937 98663 sources."tmp-0.0.33" 98938 98664 sources."trim-newlines-4.0.2" 98939 - sources."tslib-2.3.1" 98665 + sources."tslib-2.4.0" 98940 98666 sources."type-fest-0.21.3" 98941 98667 sources."util-deprecate-1.0.2" 98942 98668 sources."validate-npm-package-license-3.0.4" 98943 98669 sources."wcwidth-1.0.1" 98944 98670 sources."which-2.0.2" 98671 + (sources."wrap-ansi-7.0.0" // { 98672 + dependencies = [ 98673 + sources."ansi-regex-5.0.1" 98674 + sources."emoji-regex-8.0.0" 98675 + sources."is-fullwidth-code-point-3.0.0" 98676 + sources."string-width-4.2.3" 98677 + sources."strip-ansi-6.0.1" 98678 + ]; 98679 + }) 98945 98680 sources."yallist-4.0.0" 98946 98681 sources."yargs-parser-20.2.9" 98947 98682 sources."yocto-queue-0.1.0" ··· 98968 98703 sources."@types/atob-2.1.2" 98969 98704 sources."@types/bn.js-5.1.0" 98970 98705 sources."@types/inquirer-6.5.0" 98971 - sources."@types/node-17.0.25" 98706 + sources."@types/node-17.0.31" 98972 98707 sources."@types/pbkdf2-3.1.0" 98973 98708 sources."@types/secp256k1-4.0.3" 98974 98709 sources."@types/through-0.0.30" ··· 99282 99017 sources."color-3.2.1" 99283 99018 sources."color-convert-1.9.3" 99284 99019 sources."color-name-1.1.3" 99285 - sources."color-string-1.9.0" 99020 + sources."color-string-1.9.1" 99286 99021 sources."colors-0.6.2" 99287 99022 sources."colorspace-1.1.4" 99288 99023 sources."component-emitter-1.3.0" ··· 99595 99330 sources."to-regex-3.0.2" 99596 99331 sources."to-regex-range-2.1.1" 99597 99332 sources."triple-beam-1.3.0" 99598 - sources."unbox-primitive-1.0.1" 99333 + sources."unbox-primitive-1.0.2" 99599 99334 (sources."union-value-1.0.1" // { 99600 99335 dependencies = [ 99601 99336 sources."is-extendable-0.1.1" ··· 99685 99420 bypassCache = true; 99686 99421 reconstructLock = true; 99687 99422 }; 99688 - ganache-cli = nodeEnv.buildNodePackage { 99689 - name = "ganache-cli"; 99690 - packageName = "ganache-cli"; 99691 - version = "6.12.2"; 99423 + ganache = nodeEnv.buildNodePackage { 99424 + name = "ganache"; 99425 + packageName = "ganache"; 99426 + version = "7.1.0"; 99692 99427 src = fetchurl { 99693 - url = "https://registry.npmjs.org/ganache-cli/-/ganache-cli-6.12.2.tgz"; 99694 - sha512 = "bnmwnJDBDsOWBUP8E/BExWf85TsdDEFelQSzihSJm9VChVO1SHp94YXLP5BlA4j/OTxp0wR4R1Tje9OHOuAJVw=="; 99428 + url = "https://registry.npmjs.org/ganache/-/ganache-7.1.0.tgz"; 99429 + sha512 = "f794GTIxHcb9o889GOh0Ad6/Q09nsNhJtN11oi8m+nxsuPHkkMNaGRHav3hApZLY3GPrSBT3XIKlDIUFxcBq8g=="; 99695 99430 }; 99431 + dependencies = [ 99432 + sources."@trufflesuite/bigint-buffer-1.1.9" 99433 + sources."abstract-leveldown-7.2.0" 99434 + sources."base64-js-1.5.1" 99435 + sources."bn.js-4.12.0" 99436 + sources."brorand-1.1.0" 99437 + sources."buffer-6.0.3" 99438 + sources."bufferutil-4.0.5" 99439 + sources."catering-2.1.1" 99440 + sources."elliptic-6.5.4" 99441 + sources."emittery-0.10.0" 99442 + sources."hash.js-1.1.7" 99443 + sources."hmac-drbg-1.0.1" 99444 + sources."ieee754-1.2.1" 99445 + sources."inherits-2.0.4" 99446 + sources."is-buffer-2.0.5" 99447 + sources."keccak-3.0.1" 99448 + sources."level-concat-iterator-3.1.0" 99449 + sources."level-supports-2.1.0" 99450 + sources."leveldown-6.1.0" 99451 + sources."minimalistic-assert-1.0.1" 99452 + sources."minimalistic-crypto-utils-1.0.1" 99453 + sources."napi-macros-2.0.0" 99454 + sources."node-addon-api-2.0.2" 99455 + sources."node-gyp-build-4.3.0" 99456 + sources."queue-microtask-1.2.3" 99457 + sources."secp256k1-4.0.2" 99458 + sources."utf-8-validate-5.0.7" 99459 + ]; 99696 99460 buildInputs = globalBuildInputs; 99697 99461 meta = { 99698 - description = "<p align=\"center\"> <em>NOTICE</em>: <code>testrpc</code> is now <code>ganache-cli</code>. Use it just as you would <code>testrpc</code>. </p> <hr/>"; 99699 - homepage = "https://github.com/trufflesuite/ganache-cli#readme"; 99462 + description = "A library and cli to create a local blockchain for fast Ethereum development."; 99463 + homepage = "https://github.com/trufflesuite/ganache/tree/develop/src/packages/ganache#readme"; 99700 99464 license = "MIT"; 99701 99465 }; 99702 99466 production = true; ··· 99706 99470 gatsby-cli = nodeEnv.buildNodePackage { 99707 99471 name = "gatsby-cli"; 99708 99472 packageName = "gatsby-cli"; 99709 - version = "4.12.1"; 99473 + version = "4.13.0"; 99710 99474 src = fetchurl { 99711 - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.12.1.tgz"; 99712 - sha512 = "vlSqri0p9HpLfACFtUCJhxQArzxSvdcUkrN4Jlw8RgeJYxcJyb8VPPDJHJT3rMGRKZFeBaAeqMbqx/eK4K5F1w=="; 99475 + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.13.0.tgz"; 99476 + sha512 = "xxO+869h6QmQnkuT9Bk9DFpKFvjPDVMjmhq8+44QbxKqrjTt/3Hz5rqnFvhmxUyhr/JyczRRL2HwaTBOEzixPQ=="; 99713 99477 }; 99714 99478 dependencies = [ 99715 - sources."@ampproject/remapping-2.1.2" 99479 + sources."@ampproject/remapping-2.2.0" 99716 99480 sources."@babel/code-frame-7.16.7" 99717 - sources."@babel/compat-data-7.17.7" 99718 - (sources."@babel/core-7.17.9" // { 99481 + sources."@babel/compat-data-7.17.10" 99482 + (sources."@babel/core-7.17.10" // { 99719 99483 dependencies = [ 99720 99484 sources."semver-6.3.0" 99721 99485 ]; 99722 99486 }) 99723 - (sources."@babel/generator-7.17.9" // { 99724 - dependencies = [ 99725 - sources."source-map-0.5.7" 99726 - ]; 99727 - }) 99487 + sources."@babel/generator-7.17.10" 99728 99488 sources."@babel/helper-annotate-as-pure-7.16.7" 99729 - (sources."@babel/helper-compilation-targets-7.17.7" // { 99489 + (sources."@babel/helper-compilation-targets-7.17.10" // { 99730 99490 dependencies = [ 99731 99491 sources."semver-6.3.0" 99732 99492 ]; ··· 99751 99511 sources."chalk-2.4.2" 99752 99512 ]; 99753 99513 }) 99754 - sources."@babel/parser-7.17.9" 99755 - sources."@babel/plugin-syntax-typescript-7.16.7" 99514 + sources."@babel/parser-7.17.10" 99515 + sources."@babel/plugin-syntax-typescript-7.17.10" 99756 99516 sources."@babel/plugin-transform-typescript-7.16.8" 99757 99517 sources."@babel/preset-typescript-7.16.7" 99758 99518 sources."@babel/runtime-7.17.9" 99759 99519 sources."@babel/template-7.16.7" 99760 - sources."@babel/traverse-7.17.9" 99761 - sources."@babel/types-7.17.0" 99762 - sources."@hapi/hoek-9.2.1" 99520 + sources."@babel/traverse-7.17.10" 99521 + sources."@babel/types-7.17.10" 99522 + sources."@hapi/hoek-9.3.0" 99763 99523 sources."@hapi/topo-5.1.0" 99764 - sources."@jridgewell/resolve-uri-3.0.5" 99524 + sources."@jridgewell/gen-mapping-0.1.1" 99525 + sources."@jridgewell/resolve-uri-3.0.6" 99526 + sources."@jridgewell/set-array-1.1.0" 99765 99527 sources."@jridgewell/sourcemap-codec-1.4.11" 99766 - sources."@jridgewell/trace-mapping-0.3.8" 99528 + sources."@jridgewell/trace-mapping-0.3.9" 99767 99529 sources."@sideway/address-4.1.4" 99768 99530 sources."@sideway/formula-3.0.0" 99769 99531 sources."@sideway/pinpoint-2.0.0" ··· 99777 99539 sources."@types/http-cache-semantics-4.0.1" 99778 99540 sources."@types/json-buffer-3.0.0" 99779 99541 sources."@types/keyv-3.1.4" 99780 - sources."@types/node-17.0.25" 99542 + sources."@types/node-17.0.31" 99781 99543 sources."@types/node-fetch-2.6.1" 99782 99544 sources."@types/responselike-1.0.0" 99783 99545 sources."@types/yoga-layout-1.9.2" ··· 99797 99559 sources."boolbase-1.0.0" 99798 99560 sources."boxen-5.1.2" 99799 99561 sources."brace-expansion-1.1.11" 99800 - sources."browserslist-4.20.2" 99562 + sources."browserslist-4.20.3" 99801 99563 sources."cacheable-lookup-5.0.4" 99802 99564 (sources."cacheable-request-7.0.2" // { 99803 99565 dependencies = [ ··· 99806 99568 }) 99807 99569 sources."call-bind-1.0.2" 99808 99570 sources."camelcase-6.3.0" 99809 - sources."caniuse-lite-1.0.30001332" 99571 + sources."caniuse-lite-1.0.30001334" 99810 99572 (sources."chalk-4.1.2" // { 99811 99573 dependencies = [ 99812 99574 sources."ansi-styles-4.3.0" ··· 99844 99606 sources."configstore-5.0.1" 99845 99607 sources."convert-hrtime-3.0.0" 99846 99608 sources."convert-source-map-1.8.0" 99847 - sources."create-gatsby-2.12.1" 99609 + sources."create-gatsby-2.13.0" 99848 99610 (sources."cross-spawn-6.0.5" // { 99849 99611 dependencies = [ 99850 99612 sources."semver-5.7.1" ··· 99871 99633 sources."domutils-2.8.0" 99872 99634 sources."dot-prop-5.3.0" 99873 99635 sources."duplexer3-0.1.4" 99874 - sources."electron-to-chromium-1.4.114" 99636 + sources."electron-to-chromium-1.4.129" 99875 99637 sources."emoji-regex-8.0.0" 99876 99638 sources."end-of-stream-1.4.4" 99877 99639 sources."entities-2.2.0" ··· 99906 99668 sources."fs-extra-10.1.0" 99907 99669 sources."fs.realpath-1.0.0" 99908 99670 sources."function-bind-1.1.1" 99909 - sources."gatsby-core-utils-3.12.1" 99910 - (sources."gatsby-telemetry-3.12.1" // { 99671 + sources."gatsby-core-utils-3.13.0" 99672 + (sources."gatsby-telemetry-3.13.0" // { 99911 99673 dependencies = [ 99912 99674 sources."ansi-styles-4.3.0" 99913 99675 sources."boxen-4.2.0" ··· 99974 99736 sources."keyv-4.2.2" 99975 99737 sources."kleur-3.0.3" 99976 99738 sources."latest-version-5.1.0" 99977 - sources."lmdb-2.3.3" 99978 - sources."lmdb-darwin-arm64-2.3.2" 99979 - sources."lmdb-darwin-x64-2.3.2" 99980 - sources."lmdb-linux-arm-2.3.2" 99981 - sources."lmdb-linux-arm64-2.3.2" 99982 - sources."lmdb-linux-x64-2.3.2" 99983 - sources."lmdb-win32-x64-2.3.2" 99739 + sources."lmdb-2.3.8" 99740 + sources."lmdb-darwin-arm64-2.3.8" 99741 + sources."lmdb-darwin-x64-2.3.8" 99742 + sources."lmdb-linux-arm-2.3.8" 99743 + sources."lmdb-linux-arm64-2.3.8" 99744 + sources."lmdb-linux-x64-2.3.8" 99745 + sources."lmdb-win32-x64-2.3.8" 99984 99746 sources."locate-path-5.0.0" 99985 99747 sources."lock-1.1.0" 99986 99748 sources."lodash-4.17.21" ··· 100015 99777 sources."node-fetch-2.6.7" 100016 99778 sources."node-gyp-build-optional-packages-4.3.2" 100017 99779 sources."node-object-hash-2.3.10" 100018 - sources."node-releases-2.0.3" 99780 + sources."node-releases-2.0.4" 100019 99781 sources."normalize-url-6.1.0" 100020 99782 sources."npm-run-path-2.0.2" 100021 99783 sources."nth-check-2.0.1" ··· 100197 99959 generator-code = nodeEnv.buildNodePackage { 100198 99960 name = "generator-code"; 100199 99961 packageName = "generator-code"; 100200 - version = "1.6.9"; 99962 + version = "1.6.10"; 100201 99963 src = fetchurl { 100202 - url = "https://registry.npmjs.org/generator-code/-/generator-code-1.6.9.tgz"; 100203 - sha512 = "e+mFv1JS6MyY1Rlez4pUhnRPxxylyDztSbTAJJ57hg4jkuASOZw8LP9b7PQCjrtCsXSSjqFSoqXSkomg3duWIQ=="; 99964 + url = "https://registry.npmjs.org/generator-code/-/generator-code-1.6.10.tgz"; 99965 + sha512 = "iekT5pNIuF31R1nIqHsiHZULt0A4lWydmXW7zUZr+YTdmRFMVTvmnPDIBFDwn+DV9sbo9EkjPVkMT34AySq5qw=="; 100204 99966 }; 100205 99967 dependencies = [ 100206 99968 sources."@babel/code-frame-7.16.7" ··· 100577 100339 dependencies = [ 100578 100340 (sources."ssb-config-3.4.6" // { 100579 100341 dependencies = [ 100580 - sources."ssb-keys-8.2.0" 100342 + sources."ssb-keys-8.2.1" 100581 100343 ]; 100582 100344 }) 100583 100345 ]; ··· 100664 100426 sources."@types/http-cache-semantics-4.0.1" 100665 100427 sources."@types/json-buffer-3.0.0" 100666 100428 sources."@types/keyv-3.1.4" 100667 - sources."@types/node-17.0.25" 100429 + sources."@types/node-17.0.31" 100668 100430 sources."@types/responselike-1.0.0" 100669 100431 sources."ansi-regex-6.0.1" 100670 100432 sources."ansi-styles-4.3.0" ··· 100792 100554 sources."@tootallnate/once-1.1.2" 100793 100555 sources."@types/minimist-1.2.2" 100794 100556 sources."@types/normalize-package-data-2.4.1" 100795 - sources."acorn-8.7.0" 100557 + sources."acorn-8.7.1" 100796 100558 sources."acorn-walk-8.2.0" 100797 100559 sources."agent-base-6.0.2" 100798 100560 sources."ajv-8.11.0" ··· 101085 100847 sources."toidentifier-1.0.1" 101086 100848 sources."tr46-0.0.3" 101087 100849 sources."trim-newlines-3.0.1" 101088 - sources."tslib-2.3.1" 100850 + sources."tslib-2.4.0" 101089 100851 sources."type-check-0.3.2" 101090 100852 sources."type-fest-0.21.3" 101091 100853 sources."typedarray-to-buffer-3.1.5" ··· 101172 100934 sources."buffer-alloc-unsafe-1.1.0" 101173 100935 sources."buffer-crc32-0.2.13" 101174 100936 sources."buffer-fill-1.0.0" 101175 - sources."cli-progress-3.10.0" 100937 + sources."cli-progress-3.11.0" 101176 100938 sources."cliui-7.0.4" 101177 100939 sources."color-convert-2.0.1" 101178 100940 sources."color-name-1.1.4" ··· 101378 101140 }) 101379 101141 (sources."camel-case-4.1.2" // { 101380 101142 dependencies = [ 101381 - sources."tslib-2.3.1" 101143 + sources."tslib-2.4.0" 101382 101144 ]; 101383 101145 }) 101384 101146 ]; ··· 101424 101186 sources."@nodelib/fs.walk-1.2.8" 101425 101187 sources."@sindresorhus/is-0.14.0" 101426 101188 sources."@szmarczak/http-timer-1.1.2" 101427 - sources."@types/node-17.0.25" 101189 + sources."@types/node-17.0.31" 101428 101190 sources."@types/parse-json-4.0.0" 101429 101191 sources."@types/websocket-1.0.2" 101430 101192 sources."abort-controller-3.0.0" ··· 101681 101443 }) 101682 101444 (sources."lower-case-2.0.2" // { 101683 101445 dependencies = [ 101684 - sources."tslib-2.3.1" 101446 + sources."tslib-2.4.0" 101685 101447 ]; 101686 101448 }) 101687 101449 sources."lowercase-keys-1.0.1" ··· 101708 101470 sources."nice-try-1.0.5" 101709 101471 (sources."no-case-3.0.4" // { 101710 101472 dependencies = [ 101711 - sources."tslib-2.3.1" 101473 + sources."tslib-2.4.0" 101712 101474 ]; 101713 101475 }) 101714 101476 sources."node-emoji-1.10.0" ··· 101766 101528 sources."parse-json-5.2.0" 101767 101529 (sources."pascal-case-3.1.2" // { 101768 101530 dependencies = [ 101769 - sources."tslib-2.3.1" 101531 + sources."tslib-2.4.0" 101770 101532 ]; 101771 101533 }) 101772 101534 sources."passwd-user-3.0.0" ··· 101850 101612 sources."tunnel-agent-0.6.0" 101851 101613 sources."tweetnacl-0.14.5" 101852 101614 sources."type-fest-0.3.1" 101853 - sources."unbox-primitive-1.0.1" 101615 + sources."unbox-primitive-1.0.2" 101854 101616 sources."universalify-1.0.0" 101855 101617 sources."unixify-1.0.0" 101856 101618 sources."uri-js-4.4.1" ··· 101916 101678 }) 101917 101679 sources."@cronvel/get-pixels-3.4.0" 101918 101680 sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" 101919 - sources."@envelop/core-2.3.1" 101920 - sources."@envelop/disable-introspection-3.3.1" 101921 - sources."@envelop/parser-cache-4.3.1" 101922 - sources."@envelop/types-2.2.0" 101923 - sources."@envelop/validation-cache-4.3.1" 101924 - sources."@graphql-tools/batch-execute-8.4.6" 101925 - sources."@graphql-tools/delegate-8.7.7" 101926 - sources."@graphql-tools/graphql-file-loader-7.3.11" 101927 - sources."@graphql-tools/import-6.6.13" 101928 - sources."@graphql-tools/json-file-loader-7.3.11" 101929 - sources."@graphql-tools/load-7.5.10" 101930 - sources."@graphql-tools/merge-8.2.10" 101931 - sources."@graphql-tools/schema-8.3.10" 101932 - (sources."@graphql-tools/url-loader-7.9.14" // { 101681 + (sources."@graphql-tools/batch-execute-8.4.6" // { 101682 + dependencies = [ 101683 + sources."tslib-2.3.1" 101684 + ]; 101685 + }) 101686 + (sources."@graphql-tools/delegate-8.7.7" // { 101687 + dependencies = [ 101688 + sources."tslib-2.3.1" 101689 + ]; 101690 + }) 101691 + (sources."@graphql-tools/graphql-file-loader-7.3.11" // { 101692 + dependencies = [ 101693 + sources."tslib-2.3.1" 101694 + ]; 101695 + }) 101696 + (sources."@graphql-tools/import-6.6.13" // { 101933 101697 dependencies = [ 101934 - sources."ws-8.5.0" 101698 + sources."tslib-2.3.1" 101935 101699 ]; 101936 101700 }) 101937 - sources."@graphql-tools/utils-8.6.9" 101938 - sources."@graphql-tools/wrap-8.4.16" 101939 - sources."@graphql-typed-document-node/core-3.1.1" 101940 - (sources."@graphql-yoga/common-2.3.0" // { 101701 + (sources."@graphql-tools/json-file-loader-7.3.11" // { 101941 101702 dependencies = [ 101942 - sources."cross-undici-fetch-0.2.5" 101703 + sources."tslib-2.3.1" 101943 101704 ]; 101944 101705 }) 101945 - (sources."@graphql-yoga/node-2.3.0" // { 101706 + (sources."@graphql-tools/load-7.5.10" // { 101946 101707 dependencies = [ 101947 - sources."cross-undici-fetch-0.2.5" 101708 + sources."tslib-2.3.1" 101709 + ]; 101710 + }) 101711 + (sources."@graphql-tools/merge-8.2.10" // { 101712 + dependencies = [ 101713 + sources."tslib-2.3.1" 101714 + ]; 101715 + }) 101716 + (sources."@graphql-tools/schema-8.3.10" // { 101717 + dependencies = [ 101718 + sources."tslib-2.3.1" 101719 + ]; 101720 + }) 101721 + (sources."@graphql-tools/url-loader-7.9.17" // { 101722 + dependencies = [ 101723 + sources."ws-8.6.0" 101724 + ]; 101725 + }) 101726 + (sources."@graphql-tools/utils-8.6.9" // { 101727 + dependencies = [ 101728 + sources."tslib-2.3.1" 101948 101729 ]; 101949 101730 }) 101950 - sources."@graphql-yoga/subscription-2.0.0" 101731 + (sources."@graphql-tools/wrap-8.4.16" // { 101732 + dependencies = [ 101733 + sources."tslib-2.3.1" 101734 + ]; 101735 + }) 101951 101736 sources."@iarna/toml-2.2.5" 101952 101737 sources."@n1ru4l/graphql-live-query-0.9.0" 101953 101738 sources."@nodelib/fs.scandir-2.1.5" ··· 101982 101767 ]; 101983 101768 }) 101984 101769 sources."@oclif/screen-1.0.4" 101985 - sources."@repeaterjs/repeater-3.0.4" 101986 101770 sources."@types/json-schema-7.0.9" 101987 - sources."@types/node-17.0.25" 101771 + sources."@types/node-17.0.31" 101988 101772 sources."@types/parse-json-4.0.0" 101989 101773 sources."@types/ws-8.5.3" 101990 101774 sources."abort-controller-3.0.0" ··· 102050 101834 sources."semver-5.7.1" 102051 101835 ]; 102052 101836 }) 102053 - sources."cross-undici-fetch-0.3.0" 101837 + sources."cross-undici-fetch-0.3.3" 102054 101838 sources."cwise-compiler-1.1.3" 102055 101839 sources."dataloader-2.1.0" 102056 101840 sources."debug-4.3.4" ··· 102109 101893 sources."graphql-language-service-parser-1.10.4" 102110 101894 sources."graphql-language-service-types-1.8.7" 102111 101895 sources."graphql-language-service-utils-2.5.1" 102112 - sources."graphql-ws-5.7.0" 101896 + sources."graphql-ws-5.8.1" 102113 101897 sources."has-flag-4.0.0" 102114 101898 sources."http-errors-1.6.3" 102115 101899 sources."hyperlinker-1.0.0" ··· 102241 102025 sources."symbol-observable-1.2.0" 102242 102026 sources."sync-fetch-0.3.1" 102243 102027 sources."terminal-kit-1.49.4" 102244 - sources."tiny-lru-7.0.6" 102245 102028 sources."to-regex-range-5.0.1" 102246 102029 sources."tr46-0.0.3" 102247 102030 sources."tree-kit-0.7.4" 102248 102031 sources."treeify-1.1.0" 102249 102032 sources."ts-node-9.1.1" 102250 - sources."tslib-2.3.1" 102033 + sources."tslib-2.4.0" 102251 102034 sources."type-is-1.6.18" 102252 - sources."undici-5.0.0" 102035 + sources."undici-5.1.0" 102253 102036 sources."uniq-1.0.1" 102254 102037 sources."universalify-0.1.2" 102255 102038 sources."unixify-1.0.0" ··· 102388 102171 dependencies = [ 102389 102172 sources."accepts-1.3.8" 102390 102173 sources."array-flatten-1.1.1" 102391 - sources."body-parser-1.19.2" 102174 + sources."body-parser-1.20.0" 102392 102175 sources."bytes-3.1.2" 102176 + sources."call-bind-1.0.2" 102393 102177 sources."content-disposition-0.5.4" 102394 102178 sources."content-type-1.0.4" 102395 - sources."cookie-0.4.2" 102179 + sources."cookie-0.5.0" 102396 102180 sources."cookie-signature-1.0.6" 102397 102181 sources."debug-2.6.9" 102398 - sources."depd-1.1.2" 102399 - sources."destroy-1.0.4" 102182 + sources."depd-2.0.0" 102183 + sources."destroy-1.2.0" 102400 102184 sources."ee-first-1.1.1" 102401 102185 sources."encodeurl-1.0.2" 102402 102186 sources."escape-html-1.0.3" 102403 102187 sources."etag-1.8.1" 102404 - sources."express-4.17.3" 102188 + sources."express-4.18.1" 102405 102189 sources."express-ws-2.0.0" 102406 - sources."finalhandler-1.1.2" 102190 + sources."finalhandler-1.2.0" 102407 102191 sources."forwarded-0.2.0" 102408 102192 sources."fresh-0.5.2" 102409 - sources."http-errors-1.8.1" 102193 + sources."function-bind-1.1.1" 102194 + sources."get-intrinsic-1.1.1" 102195 + sources."has-1.0.3" 102196 + sources."has-symbols-1.0.3" 102197 + sources."http-errors-2.0.0" 102410 102198 sources."iconv-lite-0.4.24" 102411 102199 sources."inherits-2.0.4" 102412 102200 sources."ipaddr.js-1.9.1" ··· 102419 102207 sources."minimist-1.2.6" 102420 102208 sources."ms-2.0.0" 102421 102209 sources."negotiator-0.6.3" 102422 - sources."on-finished-2.3.0" 102210 + sources."object-inspect-1.12.0" 102211 + sources."on-finished-2.4.1" 102423 102212 sources."options-0.0.6" 102424 102213 sources."parseurl-1.3.3" 102425 102214 sources."path-to-regexp-0.1.7" 102426 102215 sources."proxy-addr-2.0.7" 102427 - sources."qs-6.9.7" 102216 + sources."qs-6.10.3" 102428 102217 sources."range-parser-1.2.1" 102429 - sources."raw-body-2.4.3" 102218 + sources."raw-body-2.5.1" 102430 102219 sources."safe-buffer-5.2.1" 102431 102220 sources."safer-buffer-2.1.2" 102432 - (sources."send-0.17.2" // { 102221 + (sources."send-0.18.0" // { 102433 102222 dependencies = [ 102434 102223 sources."ms-2.1.3" 102435 102224 ]; 102436 102225 }) 102437 - sources."serve-static-1.14.2" 102226 + sources."serve-static-1.15.0" 102438 102227 sources."setprototypeof-1.2.0" 102439 - sources."statuses-1.5.0" 102228 + sources."side-channel-1.0.4" 102229 + sources."statuses-2.0.1" 102440 102230 sources."toidentifier-1.0.1" 102441 102231 sources."type-is-1.6.18" 102442 102232 sources."ultron-1.0.2" ··· 102573 102363 sources."supports-color-7.2.0" 102574 102364 ]; 102575 102365 }) 102576 - sources."systeminformation-5.11.12" 102366 + sources."systeminformation-5.11.14" 102577 102367 sources."term-canvas-0.0.5" 102578 102368 sources."type-fest-1.4.0" 102579 102369 sources."wordwrap-0.0.3" ··· 103756 103546 hyperpotamus = nodeEnv.buildNodePackage { 103757 103547 name = "hyperpotamus"; 103758 103548 packageName = "hyperpotamus"; 103759 - version = "0.38.2"; 103549 + version = "0.39.0"; 103760 103550 src = fetchurl { 103761 - url = "https://registry.npmjs.org/hyperpotamus/-/hyperpotamus-0.38.2.tgz"; 103762 - sha512 = "VavhoS9dr44WPPdtuBgHAge1uM/elPo8fAI6fMJ4Bs1NsOCgMOFg4g7FBo7ODgzmAaa2CjAFQGu1hIaY5UIqPg=="; 103551 + url = "https://registry.npmjs.org/hyperpotamus/-/hyperpotamus-0.39.0.tgz"; 103552 + sha512 = "T3RBIVw6hZACXRtlE3F0scXQa2tU3Ybbg2d0MDBYulv3NunZ5U0LHtBFnslWwFShNlnrXCEo5+f0TXj4YP4y6Q=="; 103763 103553 }; 103764 103554 dependencies = [ 103765 103555 sources."@colors/colors-1.5.0" 103766 103556 sources."@fast-csv/format-4.3.5" 103767 103557 sources."@fast-csv/parse-4.3.6" 103768 - sources."@types/node-14.18.13" 103558 + sources."@types/node-14.18.16" 103769 103559 sources."ajv-6.12.6" 103770 103560 sources."ansi-regex-5.0.1" 103771 103561 sources."ansi-styles-4.3.0" ··· 103774 103564 sources."assert-plus-1.0.0" 103775 103565 sources."async-2.6.4" 103776 103566 sources."asynckit-0.4.0" 103777 - sources."aws-sdk-2.1118.0" 103567 + sources."aws-sdk-2.1125.0" 103778 103568 sources."aws-sign2-0.7.0" 103779 103569 sources."aws4-1.11.0" 103780 103570 sources."base64-js-1.5.1" ··· 103876 103666 sources."lodash.reject-4.6.0" 103877 103667 sources."lodash.some-4.6.0" 103878 103668 sources."lodash.uniq-4.5.0" 103879 - sources."marked-2.1.3" 103669 + sources."marked-4.0.14" 103880 103670 sources."mime-db-1.52.0" 103881 103671 sources."mime-types-2.1.35" 103882 103672 sources."minimist-1.2.6" ··· 103939 103729 sources."util-deprecate-1.0.2" 103940 103730 sources."uuid-3.3.2" 103941 103731 sources."verror-1.10.1" 103942 - (sources."winston-2.4.5" // { 103732 + (sources."winston-2.4.6" // { 103943 103733 dependencies = [ 103944 - sources."async-1.0.0" 103734 + sources."async-3.2.3" 103945 103735 sources."colors-1.0.3" 103946 103736 ]; 103947 103737 }) ··· 104414 104204 sources."@protobufjs/pool-1.1.0" 104415 104205 sources."@protobufjs/utf8-1.1.0" 104416 104206 sources."@selderee/plugin-htmlparser2-0.6.0" 104417 - sources."@types/long-4.0.1" 104207 + sources."@types/long-4.0.2" 104418 104208 sources."@types/node-13.13.52" 104419 104209 sources."abbrev-1.1.1" 104420 104210 sources."ajv-6.12.6" ··· 104553 104343 sources."tough-cookie-2.5.0" 104554 104344 sources."tunnel-agent-0.6.0" 104555 104345 sources."tweetnacl-0.14.5" 104556 - sources."typescript-4.6.3" 104346 + sources."typescript-4.6.4" 104557 104347 sources."universalify-2.0.0" 104558 104348 sources."uri-js-4.4.1" 104559 104349 sources."uuid-3.4.0" 104560 104350 sources."verror-1.10.0" 104561 - (sources."vscode-css-languageservice-5.4.1" // { 104351 + (sources."vscode-css-languageservice-5.4.2" // { 104562 104352 dependencies = [ 104563 104353 sources."vscode-languageserver-types-3.16.0" 104564 104354 ]; 104565 104355 }) 104566 - (sources."vscode-html-languageservice-4.2.4" // { 104356 + (sources."vscode-html-languageservice-4.2.5" // { 104567 104357 dependencies = [ 104568 104358 sources."vscode-languageserver-types-3.16.0" 104569 104359 ]; ··· 104582 104372 }) 104583 104373 sources."vscode-languageserver-textdocument-1.0.4" 104584 104374 sources."vscode-languageserver-types-3.17.0-next.1" 104585 - sources."vscode-nls-5.0.0" 104375 + sources."vscode-nls-5.0.1" 104586 104376 sources."vscode-uri-3.0.3" 104587 104377 sources."wrappy-1.0.2" 104588 104378 sources."yallist-2.1.2" ··· 104624 104414 sources."ansi-styles-3.2.1" 104625 104415 (sources."ast-types-0.13.4" // { 104626 104416 dependencies = [ 104627 - sources."tslib-2.3.1" 104417 + sources."tslib-2.4.0" 104628 104418 ]; 104629 104419 }) 104630 104420 sources."astral-regex-2.0.0" ··· 104918 104708 dependencies = [ 104919 104709 sources."@iarna/toml-2.2.5" 104920 104710 sources."@msgpack/msgpack-2.7.2" 104921 - sources."@ot-builder/bin-composite-types-1.5.1" 104922 - sources."@ot-builder/bin-util-1.5.1" 104923 - sources."@ot-builder/cli-help-shower-1.5.1" 104924 - sources."@ot-builder/cli-proc-1.5.1" 104925 - sources."@ot-builder/cli-shared-1.5.1" 104926 - sources."@ot-builder/common-impl-1.5.1" 104927 - sources."@ot-builder/errors-1.5.1" 104928 - sources."@ot-builder/io-bin-cff-1.5.1" 104929 - sources."@ot-builder/io-bin-encoding-1.5.1" 104930 - sources."@ot-builder/io-bin-ext-private-1.5.1" 104931 - sources."@ot-builder/io-bin-font-1.5.1" 104932 - sources."@ot-builder/io-bin-glyph-store-1.5.1" 104933 - sources."@ot-builder/io-bin-layout-1.5.1" 104934 - sources."@ot-builder/io-bin-metadata-1.5.1" 104935 - sources."@ot-builder/io-bin-metric-1.5.1" 104936 - sources."@ot-builder/io-bin-name-1.5.1" 104937 - sources."@ot-builder/io-bin-sfnt-1.5.1" 104938 - sources."@ot-builder/io-bin-ttf-1.5.1" 104939 - sources."@ot-builder/io-bin-vtt-private-1.5.1" 104940 - sources."@ot-builder/ot-1.5.1" 104941 - sources."@ot-builder/ot-encoding-1.5.1" 104942 - sources."@ot-builder/ot-ext-private-1.5.1" 104943 - sources."@ot-builder/ot-glyphs-1.5.1" 104944 - sources."@ot-builder/ot-layout-1.5.1" 104945 - sources."@ot-builder/ot-metadata-1.5.1" 104946 - sources."@ot-builder/ot-name-1.5.1" 104947 - sources."@ot-builder/ot-sfnt-1.5.1" 104948 - sources."@ot-builder/ot-standard-glyph-namer-1.5.1" 104949 - sources."@ot-builder/ot-vtt-private-1.5.1" 104950 - sources."@ot-builder/prelude-1.5.1" 104951 - sources."@ot-builder/primitive-1.5.1" 104952 - sources."@ot-builder/rectify-1.5.1" 104953 - sources."@ot-builder/stat-glyphs-1.5.1" 104954 - sources."@ot-builder/trace-1.5.1" 104955 - sources."@ot-builder/var-store-1.5.1" 104956 - sources."@ot-builder/variance-1.5.1" 104711 + sources."@ot-builder/bin-composite-types-1.5.2" 104712 + sources."@ot-builder/bin-util-1.5.2" 104713 + sources."@ot-builder/cli-help-shower-1.5.2" 104714 + sources."@ot-builder/cli-proc-1.5.2" 104715 + sources."@ot-builder/cli-shared-1.5.2" 104716 + sources."@ot-builder/common-impl-1.5.2" 104717 + sources."@ot-builder/errors-1.5.2" 104718 + sources."@ot-builder/io-bin-cff-1.5.2" 104719 + sources."@ot-builder/io-bin-encoding-1.5.2" 104720 + sources."@ot-builder/io-bin-ext-private-1.5.2" 104721 + sources."@ot-builder/io-bin-font-1.5.2" 104722 + sources."@ot-builder/io-bin-glyph-store-1.5.2" 104723 + sources."@ot-builder/io-bin-layout-1.5.2" 104724 + sources."@ot-builder/io-bin-metadata-1.5.2" 104725 + sources."@ot-builder/io-bin-metric-1.5.2" 104726 + sources."@ot-builder/io-bin-name-1.5.2" 104727 + sources."@ot-builder/io-bin-sfnt-1.5.2" 104728 + sources."@ot-builder/io-bin-ttf-1.5.2" 104729 + sources."@ot-builder/io-bin-vtt-private-1.5.2" 104730 + sources."@ot-builder/ot-1.5.2" 104731 + sources."@ot-builder/ot-encoding-1.5.2" 104732 + sources."@ot-builder/ot-ext-private-1.5.2" 104733 + sources."@ot-builder/ot-glyphs-1.5.2" 104734 + sources."@ot-builder/ot-layout-1.5.2" 104735 + sources."@ot-builder/ot-metadata-1.5.2" 104736 + sources."@ot-builder/ot-name-1.5.2" 104737 + sources."@ot-builder/ot-sfnt-1.5.2" 104738 + sources."@ot-builder/ot-standard-glyph-namer-1.5.2" 104739 + sources."@ot-builder/ot-vtt-private-1.5.2" 104740 + sources."@ot-builder/prelude-1.5.2" 104741 + sources."@ot-builder/primitive-1.5.2" 104742 + sources."@ot-builder/rectify-1.5.2" 104743 + sources."@ot-builder/stat-glyphs-1.5.2" 104744 + sources."@ot-builder/trace-1.5.2" 104745 + sources."@ot-builder/var-store-1.5.2" 104746 + sources."@ot-builder/variance-1.5.2" 104957 104747 sources."@unicode/unicode-14.0.0-1.2.1" 104958 - sources."@xmldom/xmldom-0.7.5" 104748 + sources."@xmldom/xmldom-0.8.2" 104959 104749 sources."aglfn-1.0.2" 104960 104750 sources."amdefine-1.0.1" 104961 104751 sources."ansi-regex-5.0.1" ··· 104963 104753 sources."argparse-2.0.1" 104964 104754 sources."chainsaw-0.0.9" 104965 104755 sources."chalk-4.1.2" 104966 - sources."cldr-7.1.1" 104756 + sources."cldr-7.2.0" 104967 104757 sources."cli-cursor-3.1.0" 104968 104758 sources."clipper-lib-6.4.2" 104969 104759 sources."cliui-7.0.4" ··· 105015 104805 sources."mimic-fn-2.1.0" 105016 104806 sources."onetime-5.1.2" 105017 104807 sources."optionator-0.8.3" 105018 - sources."ot-builder-1.5.1" 105019 - sources."otb-ttc-bundle-1.5.1" 104808 + sources."ot-builder-1.5.2" 104809 + sources."otb-ttc-bundle-1.5.2" 105020 104810 sources."passerror-1.1.1" 105021 104811 sources."patel-0.37.1" 105022 104812 sources."patrisika-0.24.0" ··· 105043 104833 sources."through-2.3.8" 105044 104834 sources."toposort-2.0.2" 105045 104835 sources."traverse-0.3.9" 105046 - sources."tslib-2.3.1" 104836 + sources."tslib-2.4.0" 105047 104837 sources."type-check-0.3.2" 105048 104838 sources."typo-geom-0.12.1" 105049 104839 sources."unicoderegexp-0.4.1" ··· 105248 105038 sources."tslib-1.14.1" 105249 105039 ]; 105250 105040 }) 105251 - sources."@aws-sdk/abort-controller-3.55.0" 105041 + sources."@aws-sdk/abort-controller-3.78.0" 105252 105042 sources."@aws-sdk/chunked-blob-reader-3.55.0" 105253 105043 sources."@aws-sdk/chunked-blob-reader-native-3.58.0" 105254 - sources."@aws-sdk/client-s3-3.72.0" 105255 - sources."@aws-sdk/client-sso-3.72.0" 105256 - sources."@aws-sdk/client-sts-3.72.0" 105257 - sources."@aws-sdk/config-resolver-3.58.0" 105258 - sources."@aws-sdk/credential-provider-env-3.55.0" 105259 - sources."@aws-sdk/credential-provider-imds-3.58.0" 105260 - sources."@aws-sdk/credential-provider-ini-3.72.0" 105261 - sources."@aws-sdk/credential-provider-node-3.72.0" 105262 - sources."@aws-sdk/credential-provider-process-3.58.0" 105263 - sources."@aws-sdk/credential-provider-sso-3.72.0" 105264 - sources."@aws-sdk/credential-provider-web-identity-3.55.0" 105265 - sources."@aws-sdk/eventstream-marshaller-3.58.0" 105266 - sources."@aws-sdk/eventstream-serde-browser-3.72.0" 105267 - sources."@aws-sdk/eventstream-serde-config-resolver-3.55.0" 105268 - sources."@aws-sdk/eventstream-serde-node-3.72.0" 105269 - sources."@aws-sdk/eventstream-serde-universal-3.72.0" 105270 - sources."@aws-sdk/fetch-http-handler-3.58.0" 105271 - sources."@aws-sdk/hash-blob-browser-3.58.0" 105272 - sources."@aws-sdk/hash-node-3.55.0" 105273 - sources."@aws-sdk/hash-stream-node-3.58.0" 105274 - sources."@aws-sdk/invalid-dependency-3.55.0" 105044 + sources."@aws-sdk/client-s3-3.81.0" 105045 + sources."@aws-sdk/client-sso-3.81.0" 105046 + sources."@aws-sdk/client-sts-3.81.0" 105047 + sources."@aws-sdk/config-resolver-3.80.0" 105048 + sources."@aws-sdk/credential-provider-env-3.78.0" 105049 + sources."@aws-sdk/credential-provider-imds-3.81.0" 105050 + sources."@aws-sdk/credential-provider-ini-3.81.0" 105051 + sources."@aws-sdk/credential-provider-node-3.81.0" 105052 + sources."@aws-sdk/credential-provider-process-3.80.0" 105053 + sources."@aws-sdk/credential-provider-sso-3.81.0" 105054 + sources."@aws-sdk/credential-provider-web-identity-3.78.0" 105055 + sources."@aws-sdk/eventstream-marshaller-3.78.0" 105056 + sources."@aws-sdk/eventstream-serde-browser-3.78.0" 105057 + sources."@aws-sdk/eventstream-serde-config-resolver-3.78.0" 105058 + sources."@aws-sdk/eventstream-serde-node-3.78.0" 105059 + sources."@aws-sdk/eventstream-serde-universal-3.78.0" 105060 + sources."@aws-sdk/fetch-http-handler-3.78.0" 105061 + sources."@aws-sdk/hash-blob-browser-3.78.0" 105062 + sources."@aws-sdk/hash-node-3.78.0" 105063 + sources."@aws-sdk/hash-stream-node-3.78.0" 105064 + sources."@aws-sdk/invalid-dependency-3.78.0" 105275 105065 sources."@aws-sdk/is-array-buffer-3.55.0" 105276 - sources."@aws-sdk/md5-js-3.58.0" 105277 - sources."@aws-sdk/middleware-bucket-endpoint-3.58.0" 105278 - sources."@aws-sdk/middleware-content-length-3.58.0" 105279 - sources."@aws-sdk/middleware-expect-continue-3.58.0" 105280 - sources."@aws-sdk/middleware-flexible-checksums-3.72.0" 105281 - sources."@aws-sdk/middleware-header-default-3.58.0" 105282 - sources."@aws-sdk/middleware-host-header-3.58.0" 105283 - sources."@aws-sdk/middleware-location-constraint-3.55.0" 105284 - sources."@aws-sdk/middleware-logger-3.55.0" 105285 - (sources."@aws-sdk/middleware-retry-3.58.0" // { 105066 + sources."@aws-sdk/md5-js-3.78.0" 105067 + sources."@aws-sdk/middleware-bucket-endpoint-3.80.0" 105068 + sources."@aws-sdk/middleware-content-length-3.78.0" 105069 + sources."@aws-sdk/middleware-expect-continue-3.78.0" 105070 + sources."@aws-sdk/middleware-flexible-checksums-3.78.0" 105071 + sources."@aws-sdk/middleware-header-default-3.78.0" 105072 + sources."@aws-sdk/middleware-host-header-3.78.0" 105073 + sources."@aws-sdk/middleware-location-constraint-3.78.0" 105074 + sources."@aws-sdk/middleware-logger-3.78.0" 105075 + (sources."@aws-sdk/middleware-retry-3.80.0" // { 105286 105076 dependencies = [ 105287 105077 sources."uuid-8.3.2" 105288 105078 ]; 105289 105079 }) 105290 - sources."@aws-sdk/middleware-sdk-s3-3.66.0" 105291 - sources."@aws-sdk/middleware-sdk-sts-3.58.0" 105292 - sources."@aws-sdk/middleware-serde-3.55.0" 105293 - sources."@aws-sdk/middleware-signing-3.58.0" 105294 - sources."@aws-sdk/middleware-ssec-3.55.0" 105295 - sources."@aws-sdk/middleware-stack-3.55.0" 105296 - sources."@aws-sdk/middleware-user-agent-3.58.0" 105297 - sources."@aws-sdk/node-config-provider-3.58.0" 105298 - sources."@aws-sdk/node-http-handler-3.58.0" 105299 - sources."@aws-sdk/property-provider-3.55.0" 105300 - sources."@aws-sdk/protocol-http-3.58.0" 105301 - sources."@aws-sdk/querystring-builder-3.55.0" 105302 - sources."@aws-sdk/querystring-parser-3.55.0" 105303 - sources."@aws-sdk/s3-request-presigner-3.72.0" 105304 - sources."@aws-sdk/service-error-classification-3.55.0" 105305 - sources."@aws-sdk/shared-ini-file-loader-3.58.0" 105306 - sources."@aws-sdk/signature-v4-3.58.0" 105307 - sources."@aws-sdk/signature-v4-multi-region-3.66.0" 105308 - sources."@aws-sdk/smithy-client-3.72.0" 105309 - sources."@aws-sdk/types-3.55.0" 105310 - sources."@aws-sdk/url-parser-3.55.0" 105080 + sources."@aws-sdk/middleware-sdk-s3-3.78.0" 105081 + sources."@aws-sdk/middleware-sdk-sts-3.78.0" 105082 + sources."@aws-sdk/middleware-serde-3.78.0" 105083 + sources."@aws-sdk/middleware-signing-3.78.0" 105084 + sources."@aws-sdk/middleware-ssec-3.78.0" 105085 + sources."@aws-sdk/middleware-stack-3.78.0" 105086 + sources."@aws-sdk/middleware-user-agent-3.78.0" 105087 + sources."@aws-sdk/node-config-provider-3.80.0" 105088 + sources."@aws-sdk/node-http-handler-3.78.0" 105089 + sources."@aws-sdk/property-provider-3.78.0" 105090 + sources."@aws-sdk/protocol-http-3.78.0" 105091 + sources."@aws-sdk/querystring-builder-3.78.0" 105092 + sources."@aws-sdk/querystring-parser-3.78.0" 105093 + sources."@aws-sdk/s3-request-presigner-3.81.0" 105094 + sources."@aws-sdk/service-error-classification-3.78.0" 105095 + sources."@aws-sdk/shared-ini-file-loader-3.80.0" 105096 + sources."@aws-sdk/signature-v4-3.78.0" 105097 + sources."@aws-sdk/signature-v4-multi-region-3.78.0" 105098 + sources."@aws-sdk/smithy-client-3.78.0" 105099 + sources."@aws-sdk/types-3.78.0" 105100 + sources."@aws-sdk/url-parser-3.78.0" 105311 105101 sources."@aws-sdk/util-arn-parser-3.55.0" 105312 105102 sources."@aws-sdk/util-base64-browser-3.58.0" 105313 105103 sources."@aws-sdk/util-base64-node-3.55.0" ··· 105315 105105 sources."@aws-sdk/util-body-length-node-3.55.0" 105316 105106 sources."@aws-sdk/util-buffer-from-3.55.0" 105317 105107 sources."@aws-sdk/util-config-provider-3.55.0" 105318 - sources."@aws-sdk/util-create-request-3.72.0" 105319 - sources."@aws-sdk/util-defaults-mode-browser-3.72.0" 105320 - sources."@aws-sdk/util-defaults-mode-node-3.72.0" 105321 - sources."@aws-sdk/util-format-url-3.58.0" 105108 + sources."@aws-sdk/util-create-request-3.78.0" 105109 + sources."@aws-sdk/util-defaults-mode-browser-3.78.0" 105110 + sources."@aws-sdk/util-defaults-mode-node-3.81.0" 105111 + sources."@aws-sdk/util-format-url-3.78.0" 105322 105112 sources."@aws-sdk/util-hex-encoding-3.58.0" 105323 105113 sources."@aws-sdk/util-locate-window-3.55.0" 105324 - sources."@aws-sdk/util-middleware-3.55.0" 105325 - sources."@aws-sdk/util-stream-browser-3.55.0" 105326 - sources."@aws-sdk/util-stream-node-3.55.0" 105114 + sources."@aws-sdk/util-middleware-3.78.0" 105115 + sources."@aws-sdk/util-stream-browser-3.78.0" 105116 + sources."@aws-sdk/util-stream-node-3.78.0" 105327 105117 sources."@aws-sdk/util-uri-escape-3.55.0" 105328 - sources."@aws-sdk/util-user-agent-browser-3.58.0" 105329 - sources."@aws-sdk/util-user-agent-node-3.58.0" 105118 + sources."@aws-sdk/util-user-agent-browser-3.78.0" 105119 + sources."@aws-sdk/util-user-agent-node-3.80.0" 105330 105120 sources."@aws-sdk/util-utf8-browser-3.55.0" 105331 105121 sources."@aws-sdk/util-utf8-node-3.55.0" 105332 - sources."@aws-sdk/util-waiter-3.55.0" 105122 + sources."@aws-sdk/util-waiter-3.78.0" 105333 105123 sources."@aws-sdk/xml-builder-3.55.0" 105334 105124 sources."@braintree/sanitize-url-3.1.0" 105335 105125 sources."@cronvel/get-pixels-3.4.0" ··· 105433 105223 sources."async-mutex-0.1.4" 105434 105224 sources."asynckit-0.4.0" 105435 105225 sources."atob-2.1.2" 105436 - (sources."aws-sdk-2.1118.0" // { 105226 + (sources."aws-sdk-2.1125.0" // { 105437 105227 dependencies = [ 105438 105228 sources."sax-1.2.1" 105439 105229 sources."uuid-3.3.2" ··· 105487 105277 sources."color-3.1.2" 105488 105278 sources."color-convert-1.9.3" 105489 105279 sources."color-name-1.1.3" 105490 - sources."color-string-1.9.0" 105280 + sources."color-string-1.9.1" 105491 105281 sources."color-support-1.1.3" 105492 105282 sources."combined-stream-1.0.8" 105493 105283 sources."command-line-usage-4.1.0" ··· 105916 105706 sources."minipass-3.1.6" 105917 105707 sources."minizlib-2.1.2" 105918 105708 sources."mkdirp-1.0.4" 105919 - sources."npmlog-6.0.1" 105709 + sources."npmlog-6.0.2" 105920 105710 sources."readable-stream-3.6.0" 105921 105711 sources."rimraf-3.0.2" 105922 105712 sources."string-width-4.2.3" ··· 106066 105856 sources."source-map-url-0.4.1" 106067 105857 sources."split-skip-0.0.2" 106068 105858 sources."sprintf-js-1.1.2" 106069 - (sources."sqlite3-5.0.4" // { 105859 + (sources."sqlite3-5.0.6" // { 106070 105860 dependencies = [ 106071 105861 sources."chownr-2.0.0" 106072 105862 sources."fs-minipass-2.1.0" ··· 106109 105899 ]; 106110 105900 }) 106111 105901 sources."strip-json-comments-2.0.1" 106112 - sources."stylis-4.1.0" 105902 + sources."stylis-4.1.1" 106113 105903 sources."supports-color-7.2.0" 106114 105904 sources."symbol-observable-1.2.0" 106115 105905 sources."symbol-tree-3.2.4" ··· 106146 105936 sources."tough-cookie-3.0.1" 106147 105937 sources."tr46-1.0.1" 106148 105938 sources."tree-kit-0.7.4" 106149 - sources."tslib-2.3.1" 105939 + sources."tslib-2.4.0" 106150 105940 sources."tunnel-agent-0.6.0" 106151 105941 sources."tweetnacl-0.14.5" 106152 105942 sources."type-check-0.3.2" ··· 106288 106078 sha512 = "IdQ8ppSo5LKZ9o3M+LKIIK8i00DIe5msDvG3G81Km+1dhy0XrOWD0Ji8H61ElgyEj/O9KRLokgKbAM9XX9CJAg=="; 106289 106079 }; 106290 106080 dependencies = [ 106291 - sources."@babel/parser-7.17.9" 106081 + sources."@babel/parser-7.17.10" 106292 106082 sources."@types/linkify-it-3.0.2" 106293 106083 sources."@types/markdown-it-12.2.3" 106294 106084 sources."@types/mdurl-1.0.2" ··· 106310 106100 sources."strip-json-comments-3.1.1" 106311 106101 sources."taffydb-2.6.2" 106312 106102 sources."uc.micro-1.0.6" 106313 - sources."underscore-1.13.2" 106103 + sources."underscore-1.13.3" 106314 106104 sources."xmlcreate-2.0.4" 106315 106105 ]; 106316 106106 buildInputs = globalBuildInputs; ··· 106546 106336 ]; 106547 106337 }) 106548 106338 sources."content-type-1.0.4" 106549 - sources."cookie-0.4.2" 106339 + sources."cookie-0.5.0" 106550 106340 sources."cookie-signature-1.0.6" 106551 106341 sources."cors-2.8.5" 106552 106342 sources."crypto-random-string-2.0.0" ··· 106567 106357 sources."escape-goat-2.1.1" 106568 106358 sources."escape-html-1.0.3" 106569 106359 sources."etag-1.8.1" 106570 - (sources."express-4.17.3" // { 106360 + (sources."express-4.18.1" // { 106571 106361 dependencies = [ 106572 - sources."body-parser-1.19.2" 106573 - sources."depd-1.1.2" 106574 - sources."http-errors-1.8.1" 106575 - sources."on-finished-2.3.0" 106576 - sources."qs-6.9.7" 106577 - sources."raw-body-2.4.3" 106578 106362 sources."safe-buffer-5.2.1" 106579 - sources."statuses-1.5.0" 106580 106363 ]; 106581 106364 }) 106582 106365 (sources."express-urlrewrite-1.4.0" // { ··· 106584 106367 sources."path-to-regexp-1.8.0" 106585 106368 ]; 106586 106369 }) 106587 - (sources."finalhandler-1.1.2" // { 106588 - dependencies = [ 106589 - sources."on-finished-2.3.0" 106590 - sources."statuses-1.5.0" 106591 - ]; 106592 - }) 106370 + sources."finalhandler-1.2.0" 106593 106371 sources."forwarded-0.2.0" 106594 106372 sources."fresh-0.5.2" 106595 106373 sources."function-bind-1.1.1" ··· 106699 106477 sources."semver-6.3.0" 106700 106478 ]; 106701 106479 }) 106702 - (sources."send-0.17.2" // { 106480 + (sources."send-0.18.0" // { 106703 106481 dependencies = [ 106704 - sources."depd-1.1.2" 106705 - sources."destroy-1.0.4" 106706 - sources."http-errors-1.8.1" 106707 106482 sources."ms-2.1.3" 106708 - sources."on-finished-2.3.0" 106709 - sources."statuses-1.5.0" 106710 106483 ]; 106711 106484 }) 106712 - sources."serve-static-1.14.2" 106485 + sources."serve-static-1.15.0" 106713 106486 sources."server-destroy-1.0.1" 106714 106487 sources."setprototypeof-1.2.0" 106715 106488 sources."side-channel-1.0.4" ··· 106873 106646 ]; 106874 106647 }) 106875 106648 sources."content-type-1.0.4" 106876 - sources."cookie-0.4.2" 106649 + sources."cookie-0.5.0" 106877 106650 sources."cookie-signature-1.0.6" 106878 106651 sources."copy-descriptor-0.1.1" 106879 106652 sources."core-util-is-1.0.3" ··· 106904 106677 sources."etag-1.8.1" 106905 106678 sources."expand-brackets-0.1.5" 106906 106679 sources."expand-range-1.8.2" 106907 - (sources."express-4.17.3" // { 106680 + (sources."express-4.18.1" // { 106908 106681 dependencies = [ 106909 - sources."body-parser-1.19.2" 106910 - sources."depd-1.1.2" 106911 - sources."http-errors-1.8.1" 106912 - sources."on-finished-2.3.0" 106913 - sources."qs-6.9.7" 106914 - sources."raw-body-2.4.3" 106915 106682 sources."safe-buffer-5.2.1" 106916 - sources."statuses-1.5.0" 106917 106683 ]; 106918 106684 }) 106919 106685 sources."extend-3.0.2" ··· 106930 106696 sources."filename-regex-2.0.1" 106931 106697 sources."fill-range-2.2.4" 106932 106698 sources."filled-array-1.1.0" 106933 - (sources."finalhandler-1.1.2" // { 106934 - dependencies = [ 106935 - sources."on-finished-2.3.0" 106936 - sources."statuses-1.5.0" 106937 - ]; 106938 - }) 106699 + sources."finalhandler-1.2.0" 106939 106700 sources."find-up-1.1.2" 106940 106701 sources."for-in-1.0.2" 106941 106702 sources."for-own-0.1.5" ··· 107226 106987 sources."safer-buffer-2.1.2" 107227 106988 sources."semver-5.7.1" 107228 106989 sources."semver-diff-2.1.0" 107229 - (sources."send-0.17.2" // { 106990 + (sources."send-0.18.0" // { 107230 106991 dependencies = [ 107231 - sources."depd-1.1.2" 107232 - sources."destroy-1.0.4" 107233 - sources."http-errors-1.8.1" 107234 106992 sources."ms-2.1.3" 107235 - sources."on-finished-2.3.0" 107236 - sources."statuses-1.5.0" 107237 106993 ]; 107238 106994 }) 107239 - sources."serve-static-1.14.2" 106995 + sources."serve-static-1.15.0" 107240 106996 sources."server-destroy-1.0.1" 107241 106997 sources."set-blocking-2.0.0" 107242 106998 (sources."set-value-2.0.1" // { ··· 107404 107160 ]; 107405 107161 }) 107406 107162 sources."@oclif/screen-1.0.4" 107407 - (sources."@putdotio/api-client-8.31.2" // { 107163 + (sources."@putdotio/api-client-8.32.0" // { 107408 107164 dependencies = [ 107409 107165 sources."axios-0.21.4" 107410 107166 ]; ··· 107431 107187 sources."chardet-0.7.0" 107432 107188 sources."clean-stack-3.0.1" 107433 107189 sources."cli-cursor-3.1.0" 107434 - sources."cli-progress-3.10.0" 107190 + sources."cli-progress-3.11.0" 107435 107191 (sources."cli-ux-5.6.7" // { 107436 107192 dependencies = [ 107437 107193 sources."supports-color-8.1.1" ··· 107580 107336 sources."through-2.3.8" 107581 107337 sources."tmp-0.0.33" 107582 107338 sources."to-regex-range-5.0.1" 107583 - sources."tslib-2.3.1" 107339 + sources."tslib-2.4.0" 107584 107340 sources."type-2.6.0" 107585 107341 sources."type-fest-0.21.3" 107586 107342 sources."typedarray-to-buffer-3.1.5" ··· 107635 107391 }; 107636 107392 dependencies = [ 107637 107393 sources."@colors/colors-1.5.0" 107638 - sources."@socket.io/base64-arraybuffer-1.0.2" 107639 107394 sources."@types/component-emitter-1.2.11" 107640 107395 sources."@types/cookie-0.4.1" 107641 107396 sources."@types/cors-2.8.12" 107642 - sources."@types/node-17.0.25" 107397 + sources."@types/node-17.0.31" 107643 107398 sources."accepts-1.3.8" 107644 107399 sources."ansi-regex-5.0.1" 107645 107400 sources."ansi-styles-4.3.0" ··· 107663 107418 sources."cookie-0.4.2" 107664 107419 sources."cors-2.8.5" 107665 107420 sources."custom-event-1.0.1" 107666 - sources."date-format-4.0.7" 107421 + sources."date-format-4.0.9" 107667 107422 sources."debug-2.6.9" 107668 107423 sources."depd-2.0.0" 107669 107424 sources."destroy-1.2.0" ··· 107672 107427 sources."ee-first-1.1.1" 107673 107428 sources."emoji-regex-8.0.0" 107674 107429 sources."encodeurl-1.0.2" 107675 - (sources."engine.io-6.1.3" // { 107430 + (sources."engine.io-6.2.0" // { 107676 107431 dependencies = [ 107677 107432 sources."debug-4.3.4" 107678 107433 sources."ms-2.1.2" 107679 107434 ]; 107680 107435 }) 107681 - sources."engine.io-parser-5.0.3" 107436 + sources."engine.io-parser-5.0.4" 107682 107437 sources."ent-2.2.0" 107683 107438 sources."escalade-3.1.1" 107684 107439 sources."escape-html-1.0.3" ··· 107717 107472 sources."isbinaryfile-4.0.10" 107718 107473 sources."jsonfile-6.1.0" 107719 107474 sources."lodash-4.17.21" 107720 - (sources."log4js-6.4.5" // { 107475 + (sources."log4js-6.4.6" // { 107721 107476 dependencies = [ 107722 107477 sources."debug-4.3.4" 107723 107478 sources."ms-2.1.2" ··· 107752 107507 sources."safer-buffer-2.1.2" 107753 107508 sources."setprototypeof-1.2.0" 107754 107509 sources."side-channel-1.0.4" 107755 - (sources."socket.io-4.4.1" // { 107510 + (sources."socket.io-4.5.0" // { 107756 107511 dependencies = [ 107757 107512 sources."debug-4.3.4" 107758 107513 sources."ms-2.1.2" 107759 107514 ]; 107760 107515 }) 107761 - sources."socket.io-adapter-2.3.3" 107516 + sources."socket.io-adapter-2.4.0" 107762 107517 (sources."socket.io-parser-4.0.4" // { 107763 107518 dependencies = [ 107764 107519 sources."debug-4.3.4" ··· 107767 107522 }) 107768 107523 sources."source-map-0.6.1" 107769 107524 sources."statuses-2.0.1" 107770 - (sources."streamroller-3.0.7" // { 107525 + (sources."streamroller-3.0.8" // { 107771 107526 dependencies = [ 107772 107527 sources."debug-4.3.4" 107773 107528 sources."ms-2.1.2" ··· 107811 107566 sha512 = "RUV9keqP/XK49OiVC4l5N5NxjYDPoDJFkr5OLa7rlFd/6JYah7YkqMfzm7Q9iw2ig9GKiQI9KgtR2IixzwEJnw=="; 107812 107567 }; 107813 107568 dependencies = [ 107814 - sources."@ampproject/remapping-2.1.2" 107815 - sources."@babel/cli-7.17.6" 107569 + sources."@ampproject/remapping-2.2.0" 107570 + sources."@babel/cli-7.17.10" 107816 107571 sources."@babel/code-frame-7.16.7" 107817 - sources."@babel/compat-data-7.17.7" 107818 - (sources."@babel/core-7.17.9" // { 107572 + sources."@babel/compat-data-7.17.10" 107573 + (sources."@babel/core-7.17.10" // { 107819 107574 dependencies = [ 107820 107575 sources."semver-6.3.0" 107821 107576 ]; 107822 107577 }) 107823 - sources."@babel/generator-7.17.9" 107578 + sources."@babel/generator-7.17.10" 107824 107579 sources."@babel/helper-annotate-as-pure-7.16.7" 107825 - (sources."@babel/helper-compilation-targets-7.17.7" // { 107580 + (sources."@babel/helper-compilation-targets-7.17.10" // { 107826 107581 dependencies = [ 107827 107582 sources."semver-6.3.0" 107828 107583 ]; ··· 107839 107594 sources."@babel/helper-validator-option-7.16.7" 107840 107595 sources."@babel/helpers-7.17.9" 107841 107596 sources."@babel/highlight-7.17.9" 107842 - sources."@babel/node-7.16.8" 107843 - sources."@babel/parser-7.17.9" 107597 + sources."@babel/node-7.17.10" 107598 + sources."@babel/parser-7.17.10" 107844 107599 sources."@babel/plugin-syntax-jsx-7.16.7" 107845 107600 sources."@babel/plugin-transform-react-jsx-7.17.3" 107846 107601 sources."@babel/register-7.17.7" 107847 107602 sources."@babel/template-7.16.7" 107848 - sources."@babel/traverse-7.17.9" 107849 - sources."@babel/types-7.17.0" 107850 - sources."@jridgewell/resolve-uri-3.0.5" 107603 + sources."@babel/traverse-7.17.10" 107604 + sources."@babel/types-7.17.10" 107605 + sources."@jridgewell/gen-mapping-0.1.1" 107606 + sources."@jridgewell/resolve-uri-3.0.6" 107607 + sources."@jridgewell/set-array-1.1.0" 107851 107608 sources."@jridgewell/sourcemap-codec-1.4.11" 107852 - sources."@jridgewell/trace-mapping-0.3.8" 107609 + sources."@jridgewell/trace-mapping-0.3.9" 107853 107610 sources."@nodelib/fs.scandir-2.1.5" 107854 107611 sources."@nodelib/fs.stat-2.0.5" 107855 107612 sources."@nodelib/fs.walk-1.2.8" ··· 107889 107646 sources."@xmpp/xml-0.13.1" 107890 107647 sources."abab-2.0.6" 107891 107648 sources."accepts-1.3.8" 107892 - sources."acorn-8.7.0" 107649 + sources."acorn-8.7.1" 107893 107650 (sources."acorn-globals-6.0.0" // { 107894 107651 dependencies = [ 107895 107652 sources."acorn-7.4.1" ··· 107910 107667 sources."array-flatten-1.1.1" 107911 107668 sources."array-union-2.1.0" 107912 107669 sources."asn1.js-5.4.1" 107913 - sources."asn1js-2.3.2" 107670 + sources."asn1js-2.4.0" 107914 107671 sources."asynckit-0.4.0" 107915 107672 sources."at-least-node-1.0.0" 107916 107673 sources."axios-0.25.0" ··· 107922 107679 sources."bitwise-xor-0.0.0" 107923 107680 sources."bl-4.1.0" 107924 107681 sources."bn.js-4.12.0" 107925 - (sources."body-parser-1.19.2" // { 107682 + (sources."body-parser-1.20.0" // { 107926 107683 dependencies = [ 107927 107684 sources."debug-2.6.9" 107928 107685 sources."ms-2.0.0" ··· 107932 107689 sources."braces-3.0.2" 107933 107690 sources."browser-or-node-1.3.0" 107934 107691 sources."browser-process-hrtime-1.0.0" 107935 - sources."browserslist-4.20.2" 107692 + sources."browserslist-4.20.3" 107936 107693 sources."buffer-5.7.1" 107937 107694 sources."buffer-from-1.1.2" 107938 107695 sources."bytes-3.1.2" 107939 107696 sources."call-bind-1.0.2" 107940 - sources."caniuse-lite-1.0.30001332" 107697 + sources."caniuse-lite-1.0.30001334" 107941 107698 sources."chalk-2.4.2" 107942 107699 sources."chardet-1.4.0" 107943 107700 sources."chownr-1.1.4" ··· 107964 107721 }) 107965 107722 sources."content-type-1.0.4" 107966 107723 sources."convert-source-map-1.8.0" 107967 - sources."cookie-0.4.2" 107724 + sources."cookie-0.5.0" 107968 107725 sources."cookie-signature-1.0.6" 107969 - sources."core-js-3.22.1" 107726 + sources."core-js-3.22.3" 107970 107727 sources."core-util-is-1.0.3" 107971 107728 sources."cors-2.8.5" 107972 107729 sources."create-hash-1.2.0" ··· 107993 107750 sources."define-properties-1.1.4" 107994 107751 sources."delayed-stream-1.0.0" 107995 107752 sources."delegates-1.0.0" 107996 - sources."depd-1.1.2" 107997 - sources."destroy-1.0.4" 107753 + sources."depd-2.0.0" 107754 + sources."destroy-1.2.0" 107998 107755 sources."detect-libc-1.0.3" 107999 107756 sources."dir-glob-3.0.1" 108000 107757 sources."doipjs-0.15.6" ··· 108005 107762 }) 108006 107763 sources."dotenv-8.6.0" 108007 107764 sources."ee-first-1.1.1" 108008 - sources."electron-to-chromium-1.4.114" 107765 + sources."electron-to-chromium-1.4.129" 108009 107766 sources."emoji-regex-8.0.0" 108010 107767 sources."encodeurl-1.0.2" 108011 107768 sources."end-of-stream-1.4.4" ··· 108015 107772 sources."escalade-3.1.1" 108016 107773 sources."escape-html-1.0.3" 108017 107774 sources."escape-string-regexp-1.0.5" 108018 - (sources."escodegen-2.0.0" // { 108019 - dependencies = [ 108020 - sources."source-map-0.6.1" 108021 - ]; 108022 - }) 107775 + sources."escodegen-2.0.0" 108023 107776 sources."esprima-4.0.1" 108024 107777 sources."estraverse-5.3.0" 108025 107778 sources."esutils-2.0.3" 108026 107779 sources."etag-1.8.1" 108027 107780 sources."events-3.3.0" 108028 107781 sources."expand-template-2.0.3" 108029 - (sources."express-4.17.3" // { 107782 + (sources."express-4.18.1" // { 108030 107783 dependencies = [ 108031 107784 sources."debug-2.6.9" 108032 107785 sources."ms-2.0.0" ··· 108039 107792 sources."fastq-1.13.0" 108040 107793 sources."fill-range-7.0.1" 108041 107794 sources."filter-obj-1.1.0" 108042 - (sources."finalhandler-1.1.2" // { 107795 + (sources."finalhandler-1.2.0" // { 108043 107796 dependencies = [ 108044 107797 sources."debug-2.6.9" 108045 107798 sources."ms-2.0.0" ··· 108099 107852 }) 108100 107853 sources."homedir-polyfill-1.0.3" 108101 107854 sources."html-encoding-sniffer-2.0.1" 108102 - sources."http-errors-1.8.1" 107855 + sources."http-errors-2.0.0" 108103 107856 sources."http-proxy-agent-4.0.1" 108104 107857 sources."https-proxy-agent-5.0.1" 108105 107858 sources."iconv-lite-0.4.24" ··· 108184 107937 sources."node-abi-2.30.1" 108185 107938 sources."node-environment-flags-1.0.6" 108186 107939 sources."node-fetch-2.6.7" 108187 - sources."node-releases-2.0.3" 107940 + sources."node-releases-2.0.4" 108188 107941 sources."npmlog-4.1.2" 108189 107942 sources."number-is-nan-1.0.1" 108190 107943 sources."nwsapi-2.2.0" ··· 108193 107946 sources."object-keys-1.1.1" 108194 107947 sources."object.assign-4.1.2" 108195 107948 sources."object.getownpropertydescriptors-2.1.3" 108196 - sources."on-finished-2.3.0" 107949 + sources."on-finished-2.4.1" 108197 107950 sources."once-1.4.0" 108198 107951 sources."openpgp-5.2.1" 108199 107952 sources."optionator-0.8.3" ··· 108223 107976 sources."color-name-1.1.4" 108224 107977 sources."has-flag-4.0.0" 108225 107978 sources."supports-color-7.2.0" 107979 + sources."tslib-2.3.1" 108226 107980 ]; 108227 107981 }) 108228 107982 sources."pkg-dir-3.0.0" ··· 108247 108001 sources."punycode-2.1.1" 108248 108002 sources."pvtsutils-1.2.2" 108249 108003 sources."pvutils-1.1.3" 108250 - sources."qs-6.9.7" 108004 + sources."qs-6.10.3" 108251 108005 sources."query-string-6.14.1" 108252 108006 sources."queue-microtask-1.2.3" 108253 108007 sources."randombytes-2.1.0" 108254 108008 sources."range-parser-1.2.1" 108255 - sources."raw-body-2.4.3" 108009 + sources."raw-body-2.5.1" 108256 108010 sources."rc-1.2.8" 108257 108011 sources."readable-stream-3.6.0" 108258 108012 sources."regenerator-runtime-0.13.9" ··· 108269 108023 sources."saslmechanisms-0.1.1" 108270 108024 sources."saxes-5.0.1" 108271 108025 sources."semver-5.7.1" 108272 - (sources."send-0.17.2" // { 108026 + (sources."send-0.18.0" // { 108273 108027 dependencies = [ 108274 108028 (sources."debug-2.6.9" // { 108275 108029 dependencies = [ ··· 108279 108033 sources."ms-2.1.3" 108280 108034 ]; 108281 108035 }) 108282 - sources."serve-static-1.14.2" 108036 + sources."serve-static-1.15.0" 108283 108037 sources."set-blocking-2.0.0" 108284 108038 sources."setprototypeof-1.2.0" 108285 108039 sources."sha.js-2.4.11" ··· 108289 108043 sources."simple-concat-1.0.1" 108290 108044 sources."simple-get-3.1.1" 108291 108045 sources."slash-2.0.0" 108292 - sources."source-map-0.5.7" 108293 - (sources."source-map-support-0.5.21" // { 108294 - dependencies = [ 108295 - sources."source-map-0.6.1" 108296 - ]; 108297 - }) 108046 + sources."source-map-0.6.1" 108047 + sources."source-map-support-0.5.21" 108298 108048 sources."split-on-first-1.1.0" 108299 - sources."statuses-1.5.0" 108049 + sources."statuses-2.0.1" 108300 108050 (sources."stream-meter-1.0.4" // { 108301 108051 dependencies = [ 108302 108052 sources."readable-stream-2.3.7" ··· 108332 108082 sources."toidentifier-1.0.1" 108333 108083 sources."tough-cookie-4.0.0" 108334 108084 sources."tr46-0.0.3" 108335 - sources."tslib-2.3.1" 108085 + sources."tslib-2.4.0" 108336 108086 sources."tunnel-agent-0.6.0" 108337 108087 sources."type-check-0.3.2" 108338 108088 sources."type-is-1.6.18" 108339 - sources."unbox-primitive-1.0.1" 108089 + sources."unbox-primitive-1.0.2" 108340 108090 sources."universalify-0.1.2" 108341 108091 sources."unpipe-1.0.0" 108342 108092 sources."util-deprecate-1.0.2" ··· 108365 108115 ]; 108366 108116 }) 108367 108117 sources."wrappy-1.0.2" 108368 - sources."ws-8.5.0" 108118 + sources."ws-8.6.0" 108369 108119 sources."xml-name-validator-3.0.0" 108370 108120 sources."xmlchars-2.2.0" 108371 108121 sources."y18n-5.0.8" ··· 109687 109437 sources."uglify-js-3.15.4" 109688 109438 sources."uid-number-0.0.6" 109689 109439 sources."umask-1.1.0" 109690 - sources."unbox-primitive-1.0.1" 109440 + sources."unbox-primitive-1.0.2" 109691 109441 sources."unique-filename-1.1.1" 109692 109442 sources."unique-slug-2.0.2" 109693 109443 sources."universal-user-agent-6.0.0" ··· 109769 109519 sources."sax-1.2.4" 109770 109520 sources."semver-5.7.1" 109771 109521 sources."source-map-0.6.1" 109772 - sources."tslib-2.3.1" 109522 + sources."tslib-2.4.0" 109773 109523 ]; 109774 109524 buildInputs = globalBuildInputs; 109775 109525 meta = { ··· 109808 109558 live-server = nodeEnv.buildNodePackage { 109809 109559 name = "live-server"; 109810 109560 packageName = "live-server"; 109811 - version = "1.2.1"; 109561 + version = "1.2.2"; 109812 109562 src = fetchurl { 109813 - url = "https://registry.npmjs.org/live-server/-/live-server-1.2.1.tgz"; 109814 - sha512 = "Yn2XCVjErTkqnM3FfTmM7/kWy3zP7+cEtC7x6u+wUzlQ+1UW3zEYbbyJrc0jNDwiMDZI0m4a0i3dxlGHVyXczw=="; 109563 + url = "https://registry.npmjs.org/live-server/-/live-server-1.2.2.tgz"; 109564 + sha512 = "t28HXLjITRGoMSrCOv4eZ88viHaBVIjKjdI5PO92Vxlu+twbk6aE0t7dVIaz6ZWkjPilYFV6OSdMYl9ybN2B4w=="; 109815 109565 }; 109816 109566 dependencies = [ 109817 109567 sources."accepts-1.3.8" ··· 110218 109968 ]; 110219 109969 }) 110220 109970 sources."content-type-1.0.4" 110221 - sources."cookie-0.4.2" 109971 + sources."cookie-0.5.0" 110222 109972 sources."cookie-signature-1.0.6" 110223 109973 sources."copy-descriptor-0.1.1" 110224 109974 sources."core-util-is-1.0.3" ··· 110238 109988 sources."encodeurl-1.0.2" 110239 109989 (sources."engine.io-3.5.0" // { 110240 109990 dependencies = [ 109991 + sources."cookie-0.4.2" 110241 109992 sources."debug-4.1.1" 110242 109993 sources."ms-2.1.3" 110243 109994 ]; ··· 110253 110004 sources."etag-1.8.1" 110254 110005 sources."expand-brackets-0.1.5" 110255 110006 sources."expand-range-1.8.2" 110256 - (sources."express-4.17.3" // { 110007 + (sources."express-4.18.1" // { 110257 110008 dependencies = [ 110258 - sources."body-parser-1.19.2" 110259 - sources."depd-1.1.2" 110260 - sources."http-errors-1.8.1" 110261 - sources."on-finished-2.3.0" 110262 - sources."qs-6.9.7" 110263 - sources."raw-body-2.4.3" 110264 110009 sources."safe-buffer-5.2.1" 110265 - sources."statuses-1.5.0" 110266 110010 ]; 110267 110011 }) 110268 110012 sources."extend-3.0.2" ··· 110278 110022 sources."file-uri-to-path-1.0.0" 110279 110023 sources."filename-regex-2.0.1" 110280 110024 sources."fill-range-2.2.4" 110281 - (sources."finalhandler-1.1.2" // { 110282 - dependencies = [ 110283 - sources."on-finished-2.3.0" 110284 - sources."statuses-1.5.0" 110285 - ]; 110286 - }) 110025 + sources."finalhandler-1.2.0" 110287 110026 sources."for-in-1.0.2" 110288 110027 sources."for-own-0.1.5" 110289 110028 sources."forever-agent-0.6.1" ··· 110525 110264 sources."safe-buffer-5.1.2" 110526 110265 sources."safe-regex-1.1.0" 110527 110266 sources."safer-buffer-2.1.2" 110528 - (sources."send-0.17.2" // { 110267 + (sources."send-0.18.0" // { 110529 110268 dependencies = [ 110530 - sources."depd-1.1.2" 110531 - sources."destroy-1.0.4" 110532 - sources."http-errors-1.8.1" 110533 110269 sources."ms-2.1.3" 110534 - sources."on-finished-2.3.0" 110535 - sources."statuses-1.5.0" 110536 110270 ]; 110537 110271 }) 110538 - sources."serve-static-1.14.2" 110272 + sources."serve-static-1.15.0" 110539 110273 (sources."set-value-2.0.1" // { 110540 110274 dependencies = [ 110541 110275 sources."extend-shallow-2.0.1" ··· 110692 110426 version = "1.10.1"; 110693 110427 src = ../interpreters/clojurescript/lumo; 110694 110428 dependencies = [ 110695 - sources."@ampproject/remapping-2.1.2" 110429 + sources."@ampproject/remapping-2.2.0" 110696 110430 sources."@babel/code-frame-7.16.7" 110697 - sources."@babel/compat-data-7.17.7" 110698 - sources."@babel/core-7.17.9" 110699 - sources."@babel/generator-7.17.9" 110431 + sources."@babel/compat-data-7.17.10" 110432 + sources."@babel/core-7.17.10" 110433 + sources."@babel/generator-7.17.10" 110700 110434 sources."@babel/helper-annotate-as-pure-7.16.7" 110701 110435 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 110702 - sources."@babel/helper-compilation-targets-7.17.7" 110436 + sources."@babel/helper-compilation-targets-7.17.10" 110703 110437 sources."@babel/helper-create-class-features-plugin-7.17.9" 110704 110438 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 110705 110439 sources."@babel/helper-define-polyfill-provider-0.3.1" ··· 110726 110460 sources."chalk-2.4.2" 110727 110461 ]; 110728 110462 }) 110729 - sources."@babel/parser-7.17.9" 110463 + sources."@babel/parser-7.17.10" 110730 110464 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 110731 110465 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 110732 110466 sources."@babel/plugin-external-helpers-7.8.3" ··· 110779 110513 sources."@babel/plugin-transform-modules-commonjs-7.17.9" 110780 110514 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 110781 110515 sources."@babel/plugin-transform-modules-umd-7.16.7" 110782 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 110516 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.10" 110783 110517 sources."@babel/plugin-transform-new-target-7.16.7" 110784 110518 sources."@babel/plugin-transform-object-super-7.16.7" 110785 110519 sources."@babel/plugin-transform-parameters-7.16.7" 110786 110520 sources."@babel/plugin-transform-property-literals-7.16.7" 110787 110521 sources."@babel/plugin-transform-regenerator-7.17.9" 110788 110522 sources."@babel/plugin-transform-reserved-words-7.16.7" 110789 - sources."@babel/plugin-transform-runtime-7.17.0" 110523 + sources."@babel/plugin-transform-runtime-7.17.10" 110790 110524 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 110791 110525 sources."@babel/plugin-transform-spread-7.16.7" 110792 110526 sources."@babel/plugin-transform-sticky-regex-7.16.7" ··· 110794 110528 sources."@babel/plugin-transform-typeof-symbol-7.16.7" 110795 110529 sources."@babel/plugin-transform-unicode-escapes-7.16.7" 110796 110530 sources."@babel/plugin-transform-unicode-regex-7.16.7" 110797 - sources."@babel/preset-env-7.16.11" 110531 + sources."@babel/preset-env-7.17.10" 110798 110532 sources."@babel/preset-modules-0.1.5" 110799 110533 sources."@babel/preset-stage-2-7.8.3" 110800 110534 sources."@babel/runtime-7.17.9" 110801 110535 sources."@babel/template-7.16.7" 110802 - sources."@babel/traverse-7.17.9" 110803 - sources."@babel/types-7.17.0" 110536 + sources."@babel/traverse-7.17.10" 110537 + sources."@babel/types-7.17.10" 110804 110538 sources."@cnakazawa/watch-1.0.4" 110805 110539 sources."@comandeer/babel-plugin-banner-5.0.0" 110806 110540 sources."@istanbuljs/load-nyc-config-1.1.0" 110807 110541 sources."@istanbuljs/schema-0.1.3" 110808 - (sources."@jest/transform-25.5.1" // { 110809 - dependencies = [ 110810 - sources."source-map-0.6.1" 110811 - ]; 110812 - }) 110542 + sources."@jest/transform-25.5.1" 110813 110543 sources."@jest/types-25.5.0" 110814 - sources."@jridgewell/resolve-uri-3.0.5" 110544 + sources."@jridgewell/gen-mapping-0.1.1" 110545 + sources."@jridgewell/resolve-uri-3.0.6" 110546 + sources."@jridgewell/set-array-1.1.0" 110815 110547 sources."@jridgewell/sourcemap-codec-1.4.11" 110816 - sources."@jridgewell/trace-mapping-0.3.8" 110548 + sources."@jridgewell/trace-mapping-0.3.9" 110817 110549 sources."@types/babel__core-7.1.19" 110818 110550 sources."@types/babel__generator-7.6.4" 110819 110551 sources."@types/babel__template-7.4.1" 110820 - sources."@types/babel__traverse-7.17.0" 110552 + sources."@types/babel__traverse-7.17.1" 110821 110553 sources."@types/estree-0.0.51" 110822 110554 sources."@types/graceful-fs-4.1.5" 110823 110555 sources."@types/istanbul-lib-coverage-2.0.4" 110824 110556 sources."@types/istanbul-lib-report-3.0.0" 110825 110557 sources."@types/istanbul-reports-1.1.2" 110826 110558 sources."@types/json-schema-7.0.11" 110827 - sources."@types/node-17.0.25" 110559 + sources."@types/node-17.0.31" 110828 110560 sources."@types/normalize-package-data-2.4.1" 110829 110561 sources."@types/resolve-0.0.8" 110830 110562 sources."@types/yargs-15.0.14" ··· 110981 110713 ]; 110982 110714 }) 110983 110715 sources."browserify-zlib-0.2.0" 110984 - sources."browserslist-4.20.2" 110716 + sources."browserslist-4.20.3" 110985 110717 sources."bser-2.1.1" 110986 110718 sources."buffer-5.2.1" 110987 110719 sources."buffer-from-1.1.2" ··· 110997 110729 sources."cached-path-relative-1.1.0" 110998 110730 sources."call-bind-1.0.2" 110999 110731 sources."camelcase-5.3.1" 111000 - sources."caniuse-lite-1.0.30001332" 110732 + sources."caniuse-lite-1.0.30001334" 111001 110733 sources."capture-exit-2.0.0" 111002 110734 sources."caseless-0.12.0" 111003 110735 (sources."chalk-3.0.0" // { ··· 111050 110782 (sources."combine-source-map-0.8.0" // { 111051 110783 dependencies = [ 111052 110784 sources."convert-source-map-1.1.3" 110785 + sources."source-map-0.5.7" 111053 110786 ]; 111054 110787 }) 111055 110788 sources."combined-stream-1.0.8" ··· 111068 110801 }) 111069 110802 sources."copy-descriptor-0.1.1" 111070 110803 sources."core-js-2.6.12" 111071 - (sources."core-js-compat-3.22.1" // { 110804 + (sources."core-js-compat-3.22.3" // { 111072 110805 dependencies = [ 111073 110806 sources."semver-7.0.0" 111074 110807 ]; ··· 111120 110853 sources."duplexer2-0.1.4" 111121 110854 sources."duplexify-3.7.1" 111122 110855 sources."ecc-jsbn-0.1.2" 111123 - sources."electron-to-chromium-1.4.114" 110856 + sources."electron-to-chromium-1.4.129" 111124 110857 (sources."elliptic-6.5.4" // { 111125 110858 dependencies = [ 111126 110859 sources."bn.js-4.12.0" ··· 111288 111021 sources."inflight-1.0.6" 111289 111022 sources."inherits-2.0.4" 111290 111023 sources."ini-1.3.8" 111291 - sources."inline-source-map-0.6.2" 111024 + (sources."inline-source-map-0.6.2" // { 111025 + dependencies = [ 111026 + sources."source-map-0.5.7" 111027 + ]; 111028 + }) 111292 111029 sources."insert-module-globals-7.2.1" 111293 111030 sources."interpret-1.4.0" 111294 111031 sources."is-accessor-descriptor-1.0.0" ··· 111419 111156 sources."util-0.11.1" 111420 111157 ]; 111421 111158 }) 111422 - sources."node-releases-2.0.3" 111159 + sources."node-releases-2.0.4" 111423 111160 (sources."normalize-package-data-2.5.0" // { 111424 111161 dependencies = [ 111425 111162 sources."semver-5.7.1" ··· 111478 111215 sources."pirates-4.0.5" 111479 111216 sources."pkg-dir-4.2.0" 111480 111217 sources."posix-character-classes-0.1.1" 111481 - sources."posix-getopt-git://github.com/anmonteiro/node-getopt#master" 111218 + sources."posix-getopt-git+https://github.com/anmonteiro/node-getopt#master" 111482 111219 sources."prettier-1.19.1" 111483 111220 sources."process-0.11.10" 111484 111221 sources."process-nextick-args-2.0.1" ··· 111604 111341 sources."is-descriptor-0.1.6" 111605 111342 sources."kind-of-5.1.0" 111606 111343 sources."ms-2.0.0" 111344 + sources."source-map-0.5.7" 111607 111345 ]; 111608 111346 }) 111609 111347 (sources."snapdragon-node-2.1.1" // { ··· 111617 111355 ]; 111618 111356 }) 111619 111357 sources."source-list-map-0.1.8" 111620 - sources."source-map-0.5.7" 111358 + sources."source-map-0.6.1" 111621 111359 sources."source-map-resolve-0.5.3" 111622 - (sources."source-map-support-0.5.21" // { 111623 - dependencies = [ 111624 - sources."source-map-0.6.1" 111625 - ]; 111626 - }) 111360 + sources."source-map-support-0.5.21" 111627 111361 sources."source-map-url-0.4.1" 111628 111362 sources."sourcemap-codec-1.4.8" 111629 111363 sources."spdx-correct-3.1.1" ··· 111679 111413 sources."readable-stream-3.6.0" 111680 111414 ]; 111681 111415 }) 111682 - (sources."terser-4.8.0" // { 111683 - dependencies = [ 111684 - sources."source-map-0.6.1" 111685 - ]; 111686 - }) 111416 + sources."terser-4.8.0" 111687 111417 (sources."terser-webpack-plugin-1.4.5" // { 111688 111418 dependencies = [ 111689 111419 sources."find-cache-dir-2.1.0" ··· 111695 111425 sources."pkg-dir-3.0.0" 111696 111426 sources."schema-utils-1.0.0" 111697 111427 sources."semver-5.7.1" 111698 - sources."source-map-0.6.1" 111699 111428 ]; 111700 111429 }) 111701 111430 sources."test-exclude-6.0.0" ··· 111811 111540 (sources."webpack-sources-1.4.3" // { 111812 111541 dependencies = [ 111813 111542 sources."source-list-map-2.0.1" 111814 - sources."source-map-0.6.1" 111815 111543 ]; 111816 111544 }) 111817 111545 sources."whatwg-url-5.0.0" ··· 111859 111587 sources."@types/commander-2.12.2" 111860 111588 sources."@types/diff-3.5.5" 111861 111589 sources."@types/get-stdin-5.0.1" 111862 - sources."@types/node-17.0.25" 111590 + sources."@types/node-17.0.31" 111863 111591 sources."commander-2.20.3" 111864 111592 sources."diff-3.5.0" 111865 111593 sources."get-stdin-5.0.1" 111866 - sources."luaparse-git://github.com/oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802" 111594 + sources."luaparse-git+https://github.com/oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802" 111867 111595 ]; 111868 111596 buildInputs = globalBuildInputs; 111869 111597 meta = { ··· 112254 111982 sources."accepts-1.3.8" 112255 111983 sources."after-0.8.2" 112256 111984 sources."arraybuffer.slice-0.0.7" 112257 - sources."async-1.0.0" 111985 + sources."async-3.2.3" 112258 111986 sources."async-limiter-1.0.1" 112259 111987 sources."backo2-1.0.2" 112260 111988 sources."base64-arraybuffer-0.1.5" ··· 112346 112074 sources."util-deprecate-1.0.2" 112347 112075 sources."uuid-3.4.0" 112348 112076 sources."vim-node-rpc-0.1.24" 112349 - sources."winston-2.4.5" 112077 + sources."winston-2.4.6" 112350 112078 sources."ws-3.3.3" 112351 112079 sources."xmlhttprequest-ssl-1.5.5" 112352 112080 sources."yeast-0.1.2" ··· 112719 112447 "@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage { 112720 112448 name = "_at_mermaid-js_slash_mermaid-cli"; 112721 112449 packageName = "@mermaid-js/mermaid-cli"; 112722 - version = "9.0.0"; 112450 + version = "9.0.3"; 112723 112451 src = fetchurl { 112724 - url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-9.0.0.tgz"; 112725 - sha512 = "Q6CWhguVKcCFotQXZO29o4VmnmOm5QqaZvwmXb3JHGBJ+ZAD/QRbL8670pNHFfKJqtYV93iXBx8AHgHcnKKgzA=="; 112452 + url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-9.0.3.tgz"; 112453 + sha512 = "Frh3pInE16H3GA9J1/uYIHIAaqB6nJBbwU5XHCbVoyPs+LOU91sVM6fTI5SZYqyn8intu1cL1hfu6z74G7Lorw=="; 112726 112454 }; 112727 112455 dependencies = [ 112728 112456 sources."@braintree/sanitize-url-6.0.0" 112729 - sources."@types/node-17.0.25" 112457 + sources."@types/node-17.0.31" 112730 112458 sources."@types/yauzl-2.10.0" 112731 112459 sources."agent-base-6.0.2" 112732 112460 sources."ansi-escapes-4.3.2" ··· 112856 112584 sources."graphlib-2.1.8" 112857 112585 sources."has-ansi-2.0.0" 112858 112586 sources."has-flag-4.0.0" 112859 - sources."https-proxy-agent-5.0.0" 112587 + sources."https-proxy-agent-5.0.1" 112860 112588 sources."iconv-lite-0.6.3" 112861 112589 sources."ieee754-1.2.1" 112862 112590 sources."inflight-1.0.6" ··· 112876 112604 sources."khroma-1.4.1" 112877 112605 sources."locate-path-3.0.0" 112878 112606 sources."lodash-4.17.21" 112879 - sources."mermaid-9.0.0" 112607 + sources."mermaid-9.0.1" 112880 112608 sources."minimatch-3.1.2" 112881 112609 sources."minimist-1.2.6" 112882 112610 sources."mkdirp-0.5.6" ··· 112895 112623 sources."path-is-absolute-1.0.1" 112896 112624 sources."path-key-2.0.1" 112897 112625 sources."pend-1.2.0" 112898 - (sources."pixelmatch-5.2.1" // { 112626 + (sources."pixelmatch-5.3.0" // { 112899 112627 dependencies = [ 112900 - sources."pngjs-4.0.1" 112628 + sources."pngjs-6.0.0" 112901 112629 ]; 112902 112630 }) 112903 112631 sources."pkg-dir-3.0.0" ··· 112906 112634 sources."progress-2.0.3" 112907 112635 sources."proxy-from-env-1.1.0" 112908 112636 sources."pump-3.0.0" 112909 - (sources."puppeteer-13.6.0" // { 112637 + (sources."puppeteer-13.7.0" // { 112910 112638 dependencies = [ 112911 112639 sources."find-up-4.1.0" 112912 112640 sources."locate-path-5.0.0" ··· 112930 112658 sources."string_decoder-1.3.0" 112931 112659 sources."strip-ansi-3.0.1" 112932 112660 sources."strip-eof-1.0.0" 112933 - sources."stylis-4.1.0" 112661 + sources."stylis-4.1.1" 112934 112662 sources."supports-color-7.2.0" 112935 112663 sources."tar-fs-2.1.1" 112936 112664 sources."tar-stream-2.2.0" ··· 112962 112690 mocha = nodeEnv.buildNodePackage { 112963 112691 name = "mocha"; 112964 112692 packageName = "mocha"; 112965 - version = "9.2.2"; 112693 + version = "10.0.0"; 112966 112694 src = fetchurl { 112967 - url = "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz"; 112968 - sha512 = "L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g=="; 112695 + url = "https://registry.npmjs.org/mocha/-/mocha-10.0.0.tgz"; 112696 + sha512 = "0Wl+elVUD43Y0BqPZBzZt8Tnkw9CMUdNYnUsTfOM1vuhJVZL+kiesFYsqwBkEEuEixaiPe5ZQdqDgX2jddhmoA=="; 112969 112697 }; 112970 112698 dependencies = [ 112971 112699 sources."@ungap/promise-all-settled-1.1.2" ··· 112990 112718 sources."color-convert-2.0.1" 112991 112719 sources."color-name-1.1.4" 112992 112720 sources."concat-map-0.0.1" 112993 - (sources."debug-4.3.3" // { 112721 + (sources."debug-4.3.4" // { 112994 112722 dependencies = [ 112995 112723 sources."ms-2.1.2" 112996 112724 ]; ··· 113012 112740 ]; 113013 112741 }) 113014 112742 sources."glob-parent-5.1.2" 113015 - sources."growl-1.10.5" 113016 112743 sources."has-flag-4.0.0" 113017 112744 sources."he-1.2.0" 113018 112745 sources."inflight-1.0.6" ··· 113024 112751 sources."is-number-7.0.0" 113025 112752 sources."is-plain-obj-2.1.0" 113026 112753 sources."is-unicode-supported-0.1.0" 113027 - sources."isexe-2.0.0" 113028 112754 sources."js-yaml-4.1.0" 113029 112755 sources."locate-path-6.0.0" 113030 112756 sources."log-symbols-4.1.0" 113031 - sources."minimatch-4.2.1" 112757 + (sources."minimatch-5.0.1" // { 112758 + dependencies = [ 112759 + sources."brace-expansion-2.0.1" 112760 + ]; 112761 + }) 113032 112762 sources."ms-2.1.3" 113033 - sources."nanoid-3.3.1" 112763 + sources."nanoid-3.3.3" 113034 112764 sources."normalize-path-3.0.0" 113035 112765 sources."once-1.4.0" 113036 112766 sources."p-limit-3.1.0" ··· 113048 112778 sources."strip-json-comments-3.1.1" 113049 112779 sources."supports-color-8.1.1" 113050 112780 sources."to-regex-range-5.0.1" 113051 - sources."which-2.0.2" 113052 - sources."workerpool-6.2.0" 112781 + sources."workerpool-6.2.1" 113053 112782 sources."wrap-ansi-7.0.0" 113054 112783 sources."wrappy-1.0.2" 113055 112784 sources."y18n-5.0.8" ··· 113275 113004 sources."@types/istanbul-lib-coverage-2.0.4" 113276 113005 sources."@types/istanbul-lib-report-3.0.0" 113277 113006 sources."@types/istanbul-reports-3.0.1" 113278 - sources."@types/node-17.0.25" 113007 + sources."@types/node-17.0.31" 113279 113008 sources."@types/stack-utils-2.0.1" 113280 113009 sources."@types/yargs-16.0.4" 113281 113010 sources."@types/yargs-parser-21.0.0" ··· 113596 113325 sources."color-3.2.1" 113597 113326 sources."color-convert-1.9.3" 113598 113327 sources."color-name-1.1.3" 113599 - sources."color-string-1.9.0" 113328 + sources."color-string-1.9.1" 113600 113329 sources."colorspace-1.1.4" 113601 113330 sources."enabled-2.0.0" 113602 113331 sources."fecha-4.2.3" ··· 113677 113406 sources."are-we-there-yet-3.0.0" 113678 113407 sources."balanced-match-1.0.2" 113679 113408 sources."brace-expansion-1.1.11" 113680 - sources."cacache-16.0.4" 113409 + (sources."cacache-16.0.7" // { 113410 + dependencies = [ 113411 + sources."brace-expansion-2.0.1" 113412 + sources."glob-8.0.1" 113413 + sources."minimatch-5.0.1" 113414 + ]; 113415 + }) 113681 113416 sources."chownr-2.0.0" 113682 113417 sources."clean-stack-2.2.0" 113683 113418 sources."color-support-1.1.3" ··· 113710 113445 sources."is-fullwidth-code-point-3.0.0" 113711 113446 sources."is-lambda-1.0.1" 113712 113447 sources."isexe-2.0.0" 113713 - sources."lru-cache-7.8.1" 113448 + sources."lru-cache-7.9.0" 113714 113449 sources."make-fetch-happen-10.1.2" 113715 113450 sources."minimatch-3.1.2" 113716 113451 sources."minipass-3.1.6" ··· 113724 113459 sources."ms-2.1.2" 113725 113460 sources."negotiator-0.6.3" 113726 113461 sources."nopt-5.0.0" 113727 - sources."npmlog-6.0.1" 113462 + sources."npmlog-6.0.2" 113728 113463 sources."once-1.4.0" 113729 113464 sources."p-map-4.0.0" 113730 113465 sources."path-is-absolute-1.0.1" ··· 113816 113551 sources."biased-opener-0.2.8" 113817 113552 sources."big-integer-1.6.51" 113818 113553 sources."block-stream-0.0.9" 113819 - sources."body-parser-1.19.2" 113554 + sources."body-parser-1.20.0" 113820 113555 sources."boom-2.10.1" 113821 113556 sources."bplist-parser-0.1.1" 113822 113557 sources."brace-expansion-1.1.11" 113823 113558 sources."browser-launcher2-0.4.6" 113824 113559 sources."bytes-3.1.2" 113560 + sources."call-bind-1.0.2" 113825 113561 sources."camelcase-2.1.1" 113826 113562 sources."camelcase-keys-2.1.0" 113827 113563 sources."caseless-0.12.0" ··· 113833 113569 sources."console-control-strings-1.1.0" 113834 113570 sources."content-disposition-0.5.4" 113835 113571 sources."content-type-1.0.4" 113836 - sources."cookie-0.4.2" 113572 + sources."cookie-0.5.0" 113837 113573 sources."cookie-signature-1.0.6" 113838 113574 sources."core-util-is-1.0.3" 113839 113575 sources."cryptiles-2.0.5" ··· 113849 113585 sources."default-browser-id-1.0.4" 113850 113586 sources."delayed-stream-1.0.0" 113851 113587 sources."delegates-1.0.0" 113852 - sources."depd-1.1.2" 113853 - sources."destroy-1.0.4" 113588 + sources."depd-2.0.0" 113589 + sources."destroy-1.2.0" 113854 113590 sources."detect-libc-1.0.3" 113855 113591 sources."ecc-jsbn-0.1.2" 113856 113592 sources."ee-first-1.1.1" ··· 113858 113594 sources."error-ex-1.3.2" 113859 113595 sources."escape-html-1.0.3" 113860 113596 sources."etag-1.8.1" 113861 - sources."express-4.17.3" 113597 + sources."express-4.18.1" 113862 113598 sources."extend-3.0.2" 113863 113599 sources."extsprintf-1.3.0" 113864 - sources."finalhandler-1.1.2" 113600 + sources."finalhandler-1.2.0" 113865 113601 sources."find-up-1.1.2" 113866 113602 sources."forever-agent-0.6.1" 113867 113603 sources."form-data-2.1.4" ··· 113872 113608 sources."fstream-ignore-1.0.5" 113873 113609 sources."function-bind-1.1.1" 113874 113610 sources."gauge-2.7.4" 113611 + sources."get-intrinsic-1.1.1" 113875 113612 sources."get-stdin-4.0.1" 113876 113613 (sources."getpass-0.1.7" // { 113877 113614 dependencies = [ ··· 113883 113620 sources."har-schema-1.0.5" 113884 113621 sources."har-validator-4.2.1" 113885 113622 sources."has-1.0.3" 113623 + sources."has-symbols-1.0.3" 113886 113624 sources."has-unicode-2.0.1" 113887 113625 sources."hawk-3.1.3" 113888 113626 sources."headless-0.1.7" 113889 113627 sources."hoek-2.16.3" 113890 113628 sources."hosted-git-info-2.8.9" 113891 - sources."http-errors-1.8.1" 113629 + sources."http-errors-2.0.0" 113892 113630 sources."http-signature-1.1.1" 113893 113631 sources."iconv-lite-0.4.24" 113894 113632 sources."indent-string-2.1.0" ··· 113947 113685 sources."number-is-nan-1.0.1" 113948 113686 sources."oauth-sign-0.8.2" 113949 113687 sources."object-assign-4.1.1" 113950 - sources."on-finished-2.3.0" 113688 + sources."object-inspect-1.12.0" 113689 + sources."on-finished-2.4.1" 113951 113690 sources."once-1.4.0" 113952 113691 sources."options-0.0.6" 113953 113692 sources."os-homedir-1.0.2" ··· 113969 113708 sources."process-nextick-args-2.0.1" 113970 113709 sources."proxy-addr-2.0.7" 113971 113710 sources."punycode-1.4.1" 113972 - sources."qs-6.9.7" 113711 + sources."qs-6.10.3" 113973 113712 sources."range-parser-1.2.1" 113974 - sources."raw-body-2.4.3" 113713 + sources."raw-body-2.5.1" 113975 113714 sources."rc-1.2.8" 113976 113715 sources."read-pkg-1.1.0" 113977 113716 sources."read-pkg-up-1.0.1" ··· 113992 113731 sources."safe-buffer-5.2.1" 113993 113732 sources."safer-buffer-2.1.2" 113994 113733 sources."semver-4.3.6" 113995 - (sources."send-0.17.2" // { 113734 + (sources."send-0.18.0" // { 113996 113735 dependencies = [ 113997 113736 sources."ms-2.1.3" 113998 113737 ]; ··· 114003 113742 sources."safe-buffer-5.1.1" 114004 113743 ]; 114005 113744 }) 114006 - sources."serve-static-1.14.2" 113745 + sources."serve-static-1.15.0" 114007 113746 sources."set-blocking-2.0.0" 114008 113747 sources."setprototypeof-1.2.0" 113748 + sources."side-channel-1.0.4" 114009 113749 sources."signal-exit-3.0.7" 114010 113750 sources."sntp-1.0.9" 114011 113751 sources."spdx-correct-3.1.1" ··· 114017 113757 sources."assert-plus-1.0.0" 114018 113758 ]; 114019 113759 }) 114020 - sources."statuses-1.5.0" 113760 + sources."statuses-2.0.1" 114021 113761 sources."string-width-1.0.2" 114022 113762 (sources."string_decoder-1.1.1" // { 114023 113763 dependencies = [ ··· 114218 113958 sources."@types/http-cache-semantics-4.0.1" 114219 113959 sources."@types/json-buffer-3.0.0" 114220 113960 sources."@types/keyv-3.1.4" 114221 - sources."@types/node-17.0.25" 113961 + sources."@types/node-17.0.31" 114222 113962 sources."@types/responselike-1.0.0" 114223 113963 sources."abbrev-1.1.1" 114224 113964 sources."accepts-1.3.8" ··· 114246 113986 sources."async-0.1.22" 114247 113987 sources."async-mutex-0.3.2" 114248 113988 sources."asynckit-0.4.0" 114249 - sources."axios-0.26.0" 113989 + sources."axios-0.27.0" 114250 113990 sources."balanced-match-1.0.2" 114251 113991 sources."base64-js-1.5.1" 114252 113992 (sources."basic-auth-2.0.1" // { ··· 114461 114201 sources."negotiator-0.6.3" 114462 114202 sources."node-addon-api-3.2.1" 114463 114203 sources."node-fetch-2.6.7" 114464 - sources."node-red-admin-2.2.3" 114204 + sources."node-red-admin-2.2.4" 114465 114205 sources."nopt-5.0.0" 114466 114206 sources."normalize-url-6.1.0" 114467 114207 sources."npmlog-5.0.1" ··· 114550 114290 sources."toidentifier-1.0.1" 114551 114291 sources."tough-cookie-4.0.0" 114552 114292 sources."tr46-0.0.3" 114553 - sources."tslib-2.3.1" 114293 + sources."tslib-2.4.0" 114554 114294 sources."type-is-1.6.18" 114555 114295 sources."typedarray-0.0.6" 114556 114296 sources."uglify-js-3.15.1" ··· 114782 114522 nodemon = nodeEnv.buildNodePackage { 114783 114523 name = "nodemon"; 114784 114524 packageName = "nodemon"; 114785 - version = "2.0.15"; 114525 + version = "2.0.16"; 114786 114526 src = fetchurl { 114787 - url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.15.tgz"; 114788 - sha512 = "gdHMNx47Gw7b3kWxJV64NI+Q5nfl0y5DgDbiVtShiwa7Z0IZ07Ll4RLFo6AjrhzMtoEZn5PDE3/c2AbVsiCkpA=="; 114527 + url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.16.tgz"; 114528 + sha512 = "zsrcaOfTWRuUzBn3P44RDliLlp263Z/76FPoHFr3cFFkOz0lTPAcIw8dCzfdVIx/t3AtDYCZRCDkoCojJqaG3w=="; 114789 114529 }; 114790 114530 dependencies = [ 114791 114531 sources."@sindresorhus/is-0.14.0" ··· 114928 114668 ]; 114929 114669 buildInputs = globalBuildInputs; 114930 114670 meta = { 114931 - description = "Simple monitor script for use during development of a node.js app."; 114671 + description = "Simple monitor script for use during development of a Node.js app."; 114932 114672 homepage = "https://nodemon.io"; 114933 114673 license = "MIT"; 114934 114674 }; ··· 114973 114713 sources."@types/json-buffer-3.0.0" 114974 114714 sources."@types/keyv-3.1.4" 114975 114715 sources."@types/minimist-1.2.2" 114976 - sources."@types/node-17.0.25" 114716 + sources."@types/node-17.0.31" 114977 114717 sources."@types/normalize-package-data-2.4.1" 114978 114718 sources."@types/parse-json-4.0.0" 114979 114719 sources."@types/responselike-1.0.0" ··· 115468 115208 npm = nodeEnv.buildNodePackage { 115469 115209 name = "npm"; 115470 115210 packageName = "npm"; 115471 - version = "8.7.0"; 115211 + version = "8.8.0"; 115472 115212 src = fetchurl { 115473 - url = "https://registry.npmjs.org/npm/-/npm-8.7.0.tgz"; 115474 - sha512 = "fOSunmSa1K3dBv4YFoX54wew3PC6aYYDMGWBAonWRO4Yc7smYtk3nLrCda6+dtkTJwA8D4Tv/0wmnpYNgf5VFw=="; 115213 + url = "https://registry.npmjs.org/npm/-/npm-8.8.0.tgz"; 115214 + sha512 = "MDHVaj0zrinLkshylII8pT46VCkAUqQfYRS+pyuuZZtBZRRphH/IG5HC1YbIc77AX5FmLUWGvu23Kah5fscIbw=="; 115475 115215 }; 115476 115216 buildInputs = globalBuildInputs; 115477 115217 meta = { ··· 115486 115226 npm-check-updates = nodeEnv.buildNodePackage { 115487 115227 name = "npm-check-updates"; 115488 115228 packageName = "npm-check-updates"; 115489 - version = "12.5.9"; 115229 + version = "12.5.11"; 115490 115230 src = fetchurl { 115491 - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.5.9.tgz"; 115492 - sha512 = "l9iOvD7EsQb96gFJL45V01YG6bP8+dmobYnSguvehPuNwgdWNMrE8RC8bSfURX5iUmX4bkobN4T8XMHXN9GMHA=="; 115231 + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.5.11.tgz"; 115232 + sha512 = "uS3yYYK/F1VvZlJRymuCkq+MY2R7v/WlORo5WPUTYx+1OwkqeDMC/CEEGfCN7ATwT2M+JxVVKk9Gq/TGiZjJOw=="; 115493 115233 }; 115494 115234 dependencies = [ 115495 115235 sources."@gar/promisify-1.1.3" ··· 115523 115263 sources."braces-3.0.2" 115524 115264 sources."buffer-from-1.1.2" 115525 115265 sources."builtins-5.0.1" 115526 - sources."cacache-16.0.4" 115266 + (sources."cacache-16.0.7" // { 115267 + dependencies = [ 115268 + sources."glob-8.0.1" 115269 + ]; 115270 + }) 115527 115271 (sources."cacheable-request-6.1.0" // { 115528 115272 dependencies = [ 115529 115273 sources."get-stream-5.2.0" ··· 115648 115392 sources."locate-path-6.0.0" 115649 115393 sources."lodash-4.17.21" 115650 115394 sources."lowercase-keys-1.0.1" 115651 - sources."lru-cache-7.8.1" 115395 + sources."lru-cache-7.9.0" 115652 115396 (sources."make-dir-3.1.0" // { 115653 115397 dependencies = [ 115654 115398 sources."semver-6.3.0" ··· 115679 115423 sources."npm-install-checks-5.0.0" 115680 115424 sources."npm-normalize-package-bin-1.0.1" 115681 115425 sources."npm-package-arg-9.0.2" 115682 - sources."npm-packlist-5.0.0" 115426 + (sources."npm-packlist-5.0.2" // { 115427 + dependencies = [ 115428 + sources."glob-8.0.1" 115429 + ]; 115430 + }) 115683 115431 sources."npm-pick-manifest-7.0.1" 115684 115432 sources."npm-registry-fetch-13.1.1" 115685 - sources."npmlog-6.0.1" 115433 + sources."npmlog-6.0.2" 115686 115434 sources."once-1.4.0" 115687 115435 sources."p-cancelable-1.1.0" 115688 115436 sources."p-limit-3.1.0" ··· 115812 115560 bypassCache = true; 115813 115561 reconstructLock = true; 115814 115562 }; 115815 - "npm2nix-git://github.com/NixOS/npm2nix.git#5.12.0" = nodeEnv.buildNodePackage { 115816 - name = "npm2nix"; 115817 - packageName = "npm2nix"; 115818 - version = "5.12.0"; 115819 - src = fetchgit { 115820 - url = "git://github.com/NixOS/npm2nix.git"; 115821 - rev = "0c06be7d278a7f64fc853a5fd42d2031d14496d5"; 115822 - sha256 = "e1b252cd883fd8c5c4618b157d03b3fb869fa6aad4170ef51e34681069d50bf5"; 115823 - }; 115824 - dependencies = [ 115825 - sources."abbrev-1.1.1" 115826 - sources."ajv-6.12.6" 115827 - sources."ansi-regex-5.0.1" 115828 - sources."aproba-2.0.0" 115829 - sources."are-we-there-yet-3.0.0" 115830 - sources."argparse-0.1.15" 115831 - sources."asn1-0.2.6" 115832 - sources."assert-plus-1.0.0" 115833 - sources."asynckit-0.4.0" 115834 - sources."aws-sign2-0.7.0" 115835 - sources."aws4-1.11.0" 115836 - sources."balanced-match-1.0.2" 115837 - sources."bcrypt-pbkdf-1.0.2" 115838 - sources."block-stream-0.0.9" 115839 - sources."brace-expansion-1.1.11" 115840 - sources."caseless-0.12.0" 115841 - sources."chownr-0.0.2" 115842 - sources."coffee-script-1.12.7" 115843 - sources."color-support-1.1.3" 115844 - sources."combined-stream-1.0.8" 115845 - sources."concat-map-0.0.1" 115846 - (sources."config-chain-1.1.13" // { 115847 - dependencies = [ 115848 - sources."ini-1.3.8" 115849 - ]; 115850 - }) 115851 - sources."console-control-strings-1.1.0" 115852 - sources."core-util-is-1.0.2" 115853 - sources."couch-login-0.1.20" 115854 - sources."dashdash-1.14.1" 115855 - sources."delayed-stream-1.0.0" 115856 - sources."delegates-1.0.0" 115857 - sources."ecc-jsbn-0.1.2" 115858 - sources."emoji-regex-8.0.0" 115859 - sources."extend-3.0.2" 115860 - sources."extsprintf-1.3.0" 115861 - sources."fast-deep-equal-3.1.3" 115862 - sources."fast-json-stable-stringify-2.1.0" 115863 - sources."findit-1.2.0" 115864 - sources."foreachasync-3.0.0" 115865 - sources."forever-agent-0.6.1" 115866 - sources."form-data-2.3.3" 115867 - (sources."fs-extra-0.6.4" // { 115868 - dependencies = [ 115869 - sources."rimraf-2.2.8" 115870 - ]; 115871 - }) 115872 - sources."fs.extra-1.3.2" 115873 - sources."fs.realpath-1.0.0" 115874 - (sources."fstream-0.1.31" // { 115875 - dependencies = [ 115876 - sources."graceful-fs-3.0.12" 115877 - sources."mkdirp-0.5.6" 115878 - ]; 115879 - }) 115880 - sources."gauge-4.0.4" 115881 - sources."getpass-0.1.7" 115882 - sources."glob-7.2.0" 115883 - sources."graceful-fs-2.0.3" 115884 - sources."har-schema-2.0.0" 115885 - sources."har-validator-5.1.5" 115886 - sources."has-unicode-2.0.1" 115887 - sources."http-signature-1.2.0" 115888 - sources."inflight-1.0.6" 115889 - sources."inherits-2.0.4" 115890 - sources."ini-1.1.0" 115891 - sources."is-fullwidth-code-point-3.0.0" 115892 - sources."is-typedarray-1.0.0" 115893 - sources."isstream-0.1.2" 115894 - sources."jsbn-0.1.1" 115895 - sources."json-schema-0.4.0" 115896 - sources."json-schema-traverse-0.4.1" 115897 - sources."json-stringify-safe-5.0.1" 115898 - sources."jsonfile-1.0.1" 115899 - sources."jsprim-1.4.2" 115900 - sources."mime-db-1.52.0" 115901 - sources."mime-types-2.1.35" 115902 - sources."minimatch-3.1.2" 115903 - sources."minimist-1.2.6" 115904 - sources."mkdirp-0.3.5" 115905 - sources."natives-1.1.6" 115906 - sources."ncp-0.4.2" 115907 - sources."nopt-2.2.1" 115908 - (sources."npm-registry-client-0.2.27" // { 115909 - dependencies = [ 115910 - sources."semver-2.0.11" 115911 - ]; 115912 - }) 115913 - (sources."npmconf-0.1.1" // { 115914 - dependencies = [ 115915 - sources."inherits-1.0.2" 115916 - sources."once-1.1.1" 115917 - sources."semver-2.3.2" 115918 - ]; 115919 - }) 115920 - sources."npmlog-6.0.1" 115921 - sources."oauth-sign-0.9.0" 115922 - sources."once-1.4.0" 115923 - sources."osenv-0.0.3" 115924 - sources."path-is-absolute-1.0.1" 115925 - sources."performance-now-2.1.0" 115926 - sources."proto-list-1.2.4" 115927 - sources."psl-1.8.0" 115928 - sources."punycode-2.1.1" 115929 - sources."qs-6.5.3" 115930 - sources."readable-stream-3.6.0" 115931 - sources."request-2.88.2" 115932 - sources."retry-0.6.0" 115933 - sources."rimraf-2.7.1" 115934 - sources."safe-buffer-5.2.1" 115935 - sources."safer-buffer-2.1.2" 115936 - sources."semver-4.3.6" 115937 - sources."set-blocking-2.0.0" 115938 - sources."signal-exit-3.0.7" 115939 - sources."slide-1.1.6" 115940 - sources."sshpk-1.17.0" 115941 - sources."string-width-4.2.3" 115942 - sources."string_decoder-1.3.0" 115943 - sources."strip-ansi-6.0.1" 115944 - (sources."tar-0.1.17" // { 115945 - dependencies = [ 115946 - sources."inherits-1.0.2" 115947 - ]; 115948 - }) 115949 - (sources."temp-0.6.0" // { 115950 - dependencies = [ 115951 - sources."graceful-fs-1.2.3" 115952 - sources."rimraf-2.1.4" 115953 - ]; 115954 - }) 115955 - sources."tough-cookie-2.5.0" 115956 - sources."tunnel-agent-0.6.0" 115957 - sources."tweetnacl-0.14.5" 115958 - sources."underscore-1.4.4" 115959 - sources."underscore.string-2.3.3" 115960 - sources."uri-js-4.4.1" 115961 - sources."util-deprecate-1.0.2" 115962 - sources."uuid-3.4.0" 115963 - sources."verror-1.10.0" 115964 - sources."walk-2.3.15" 115965 - sources."wide-align-1.1.5" 115966 - sources."wrappy-1.0.2" 115967 - ]; 115968 - buildInputs = globalBuildInputs; 115969 - meta = { 115970 - description = "Generate nix expressions to build npm packages"; 115971 - homepage = "https://github.com/NixOS/npm2nix"; 115972 - }; 115973 - production = true; 115974 - bypassCache = true; 115975 - reconstructLock = true; 115976 - }; 115977 115563 nrm = nodeEnv.buildNodePackage { 115978 115564 name = "nrm"; 115979 115565 packageName = "nrm"; ··· 116102 115688 sha512 = "hpku8mW67U6PXQIenW6NBbphBOMb8XzW6B9r093DUhYj5GN2FUB/CXCiz5hKoPYUsusZ35BpProH8AUF9bh5IQ=="; 116103 115689 }; 116104 115690 dependencies = [ 116105 - sources."@ampproject/remapping-2.1.2" 115691 + sources."@ampproject/remapping-2.2.0" 116106 115692 sources."@babel/code-frame-7.16.7" 116107 - sources."@babel/compat-data-7.17.7" 116108 - (sources."@babel/core-7.17.9" // { 115693 + sources."@babel/compat-data-7.17.10" 115694 + (sources."@babel/core-7.17.10" // { 116109 115695 dependencies = [ 116110 115696 sources."json5-2.2.1" 116111 115697 sources."semver-6.3.0" 116112 115698 ]; 116113 115699 }) 116114 - (sources."@babel/generator-7.17.9" // { 116115 - dependencies = [ 116116 - sources."source-map-0.5.7" 116117 - ]; 116118 - }) 115700 + sources."@babel/generator-7.17.10" 116119 115701 sources."@babel/helper-annotate-as-pure-7.16.7" 116120 115702 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 116121 - (sources."@babel/helper-compilation-targets-7.17.7" // { 115703 + (sources."@babel/helper-compilation-targets-7.17.10" // { 116122 115704 dependencies = [ 116123 115705 sources."semver-6.3.0" 116124 115706 ]; ··· 116149 115731 sources."@babel/helper-wrap-function-7.16.8" 116150 115732 sources."@babel/helpers-7.17.9" 116151 115733 sources."@babel/highlight-7.17.9" 116152 - sources."@babel/parser-7.17.9" 115734 + sources."@babel/parser-7.17.10" 116153 115735 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 116154 115736 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 116155 115737 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 116202 115784 sources."@babel/plugin-transform-modules-commonjs-7.17.9" 116203 115785 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 116204 115786 sources."@babel/plugin-transform-modules-umd-7.16.7" 116205 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 115787 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.10" 116206 115788 sources."@babel/plugin-transform-new-target-7.16.7" 116207 115789 sources."@babel/plugin-transform-object-super-7.16.7" 116208 115790 sources."@babel/plugin-transform-parameters-7.16.7" ··· 116217 115799 sources."@babel/plugin-transform-typeof-symbol-7.16.7" 116218 115800 sources."@babel/plugin-transform-unicode-escapes-7.16.7" 116219 115801 sources."@babel/plugin-transform-unicode-regex-7.16.7" 116220 - (sources."@babel/preset-env-7.16.11" // { 115802 + (sources."@babel/preset-env-7.17.10" // { 116221 115803 dependencies = [ 116222 115804 sources."semver-6.3.0" 116223 115805 ]; ··· 116225 115807 sources."@babel/preset-modules-0.1.5" 116226 115808 sources."@babel/runtime-7.17.9" 116227 115809 sources."@babel/template-7.16.7" 116228 - sources."@babel/traverse-7.17.9" 116229 - sources."@babel/types-7.17.0" 115810 + sources."@babel/traverse-7.17.10" 115811 + sources."@babel/types-7.17.10" 116230 115812 sources."@iarna/toml-2.2.5" 116231 - sources."@jridgewell/resolve-uri-3.0.5" 115813 + sources."@jridgewell/gen-mapping-0.1.1" 115814 + sources."@jridgewell/resolve-uri-3.0.6" 115815 + sources."@jridgewell/set-array-1.1.0" 116232 115816 sources."@jridgewell/sourcemap-codec-1.4.11" 116233 - sources."@jridgewell/trace-mapping-0.3.8" 115817 + sources."@jridgewell/trace-mapping-0.3.9" 116234 115818 sources."@mrmlnc/readdir-enhanced-2.2.1" 116235 115819 sources."@nodelib/fs.stat-1.1.3" 116236 115820 sources."@parcel/fs-1.11.0" ··· 116334 115918 sources."pako-1.0.11" 116335 115919 ]; 116336 115920 }) 116337 - sources."browserslist-4.20.2" 115921 + sources."browserslist-4.20.3" 116338 115922 (sources."buffer-4.9.2" // { 116339 115923 dependencies = [ 116340 115924 sources."isarray-1.0.0" ··· 116351 115935 sources."caller-path-2.0.0" 116352 115936 sources."callsites-2.0.0" 116353 115937 sources."caniuse-api-3.0.0" 116354 - sources."caniuse-lite-1.0.30001332" 115938 + sources."caniuse-lite-1.0.30001334" 116355 115939 sources."caseless-0.12.0" 116356 115940 sources."chalk-2.4.2" 116357 115941 sources."chokidar-2.1.8" ··· 116365 115949 sources."color-3.2.1" 116366 115950 sources."color-convert-1.9.3" 116367 115951 sources."color-name-1.1.3" 116368 - sources."color-string-1.9.0" 115952 + sources."color-string-1.9.1" 116369 115953 sources."combined-stream-1.0.8" 116370 115954 sources."command-exists-1.2.9" 116371 115955 sources."commander-2.20.3" ··· 116377 115961 sources."convert-source-map-1.8.0" 116378 115962 sources."copy-descriptor-0.1.1" 116379 115963 sources."core-js-2.6.12" 116380 - (sources."core-js-compat-3.22.1" // { 115964 + (sources."core-js-compat-3.22.3" // { 116381 115965 dependencies = [ 116382 115966 sources."semver-7.0.0" 116383 115967 ]; ··· 116488 116072 sources."duplexer2-0.1.4" 116489 116073 sources."ecc-jsbn-0.1.2" 116490 116074 sources."ee-first-1.1.1" 116491 - sources."electron-to-chromium-1.4.114" 116075 + sources."electron-to-chromium-1.4.129" 116492 116076 (sources."elliptic-6.5.4" // { 116493 116077 dependencies = [ 116494 116078 sources."bn.js-4.12.0" ··· 116596 116180 sources."html-tags-1.2.0" 116597 116181 (sources."htmlnano-0.2.9" // { 116598 116182 dependencies = [ 116599 - sources."acorn-8.7.0" 116183 + sources."acorn-8.7.1" 116600 116184 sources."posthtml-0.15.2" 116601 116185 sources."posthtml-parser-0.7.2" 116602 - sources."source-map-0.7.3" 116603 - sources."terser-5.12.1" 116186 + sources."source-map-0.8.0-beta.0" 116187 + sources."terser-5.13.1" 116604 116188 ]; 116605 116189 }) 116606 116190 (sources."htmlparser2-6.1.0" // { ··· 116757 116341 sources."punycode-1.4.1" 116758 116342 ]; 116759 116343 }) 116760 - sources."node-releases-2.0.3" 116344 + sources."node-releases-2.0.4" 116761 116345 sources."normalize-path-3.0.0" 116762 116346 sources."normalize-url-3.3.0" 116763 116347 sources."nth-check-1.0.2" ··· 117048 116632 sources."tweetnacl-0.14.5" 117049 116633 sources."type-check-0.3.2" 117050 116634 sources."typedarray-0.0.6" 117051 - sources."unbox-primitive-1.0.1" 116635 + sources."unbox-primitive-1.0.2" 117052 116636 (sources."uncss-0.17.3" // { 117053 116637 dependencies = [ 117054 116638 sources."is-absolute-url-3.0.3" ··· 117130 116714 parcel = nodeEnv.buildNodePackage { 117131 116715 name = "parcel"; 117132 116716 packageName = "parcel"; 117133 - version = "2.4.1"; 116717 + version = "2.5.0"; 117134 116718 src = fetchurl { 117135 - url = "https://registry.npmjs.org/parcel/-/parcel-2.4.1.tgz"; 117136 - sha512 = "H8n7cJ0rOt0AZZLuPuG6hvujUWiWz8kxx4pkqEDm31dijrbKb0pNgccXOllQ34em6r7elv6yH7lxox8jDCp0hw=="; 116719 + url = "https://registry.npmjs.org/parcel/-/parcel-2.5.0.tgz"; 116720 + sha512 = "er0mj/BaMjWyzQ/jedLUi/LNAuQcFT8lCvoNqANF+jTaX9rohaBwxIvKVJVAZgyCnmyfbbldp496wPMW0R0+CA=="; 117137 116721 }; 117138 116722 dependencies = [ 117139 116723 sources."@babel/code-frame-7.16.7" ··· 117143 116727 sources."chalk-2.4.2" 117144 116728 ]; 117145 116729 }) 117146 - sources."@parcel/bundler-default-2.4.1" 117147 - sources."@parcel/cache-2.4.1" 117148 - sources."@parcel/codeframe-2.4.1" 117149 - sources."@parcel/compressor-raw-2.4.1" 117150 - sources."@parcel/config-default-2.4.1" 117151 - sources."@parcel/core-2.4.1" 117152 - sources."@parcel/css-1.8.1" 117153 - sources."@parcel/css-darwin-arm64-1.8.1" 117154 - sources."@parcel/css-darwin-x64-1.8.1" 117155 - sources."@parcel/css-linux-arm-gnueabihf-1.8.1" 117156 - sources."@parcel/css-linux-arm64-gnu-1.8.1" 117157 - sources."@parcel/css-linux-arm64-musl-1.8.1" 117158 - sources."@parcel/css-linux-x64-gnu-1.8.1" 117159 - sources."@parcel/css-linux-x64-musl-1.8.1" 117160 - sources."@parcel/css-win32-x64-msvc-1.8.1" 117161 - sources."@parcel/diagnostic-2.4.1" 117162 - sources."@parcel/events-2.4.1" 117163 - sources."@parcel/fs-2.4.1" 117164 - sources."@parcel/fs-search-2.4.1" 117165 - sources."@parcel/graph-2.4.1" 117166 - sources."@parcel/hash-2.4.1" 117167 - sources."@parcel/logger-2.4.1" 117168 - sources."@parcel/markdown-ansi-2.4.1" 117169 - sources."@parcel/namer-default-2.4.1" 117170 - sources."@parcel/node-resolver-core-2.4.1" 117171 - sources."@parcel/optimizer-css-2.4.1" 117172 - sources."@parcel/optimizer-htmlnano-2.4.1" 117173 - sources."@parcel/optimizer-image-2.4.1" 117174 - sources."@parcel/optimizer-svgo-2.4.1" 117175 - sources."@parcel/optimizer-terser-2.4.1" 117176 - sources."@parcel/package-manager-2.4.1" 117177 - sources."@parcel/packager-css-2.4.1" 117178 - sources."@parcel/packager-html-2.4.1" 117179 - sources."@parcel/packager-js-2.4.1" 117180 - sources."@parcel/packager-raw-2.4.1" 117181 - sources."@parcel/packager-svg-2.4.1" 117182 - sources."@parcel/plugin-2.4.1" 117183 - sources."@parcel/reporter-cli-2.4.1" 117184 - sources."@parcel/reporter-dev-server-2.4.1" 117185 - sources."@parcel/resolver-default-2.4.1" 117186 - sources."@parcel/runtime-browser-hmr-2.4.1" 117187 - sources."@parcel/runtime-js-2.4.1" 117188 - sources."@parcel/runtime-react-refresh-2.4.1" 117189 - sources."@parcel/runtime-service-worker-2.4.1" 116730 + sources."@lezer/common-0.15.12" 116731 + sources."@lezer/lr-0.15.8" 116732 + sources."@mischnic/json-sourcemap-0.1.0" 116733 + sources."@parcel/bundler-default-2.5.0" 116734 + sources."@parcel/cache-2.5.0" 116735 + sources."@parcel/codeframe-2.5.0" 116736 + sources."@parcel/compressor-raw-2.5.0" 116737 + sources."@parcel/config-default-2.5.0" 116738 + sources."@parcel/core-2.5.0" 116739 + sources."@parcel/css-1.8.2" 116740 + sources."@parcel/css-darwin-arm64-1.8.2" 116741 + sources."@parcel/css-darwin-x64-1.8.2" 116742 + sources."@parcel/css-linux-arm-gnueabihf-1.8.2" 116743 + sources."@parcel/css-linux-arm64-gnu-1.8.2" 116744 + sources."@parcel/css-linux-arm64-musl-1.8.2" 116745 + sources."@parcel/css-linux-x64-gnu-1.8.2" 116746 + sources."@parcel/css-linux-x64-musl-1.8.2" 116747 + sources."@parcel/css-win32-x64-msvc-1.8.2" 116748 + sources."@parcel/diagnostic-2.5.0" 116749 + sources."@parcel/events-2.5.0" 116750 + sources."@parcel/fs-2.5.0" 116751 + sources."@parcel/fs-search-2.5.0" 116752 + sources."@parcel/graph-2.5.0" 116753 + sources."@parcel/hash-2.5.0" 116754 + sources."@parcel/logger-2.5.0" 116755 + sources."@parcel/markdown-ansi-2.5.0" 116756 + sources."@parcel/namer-default-2.5.0" 116757 + sources."@parcel/node-resolver-core-2.5.0" 116758 + sources."@parcel/optimizer-css-2.5.0" 116759 + sources."@parcel/optimizer-htmlnano-2.5.0" 116760 + sources."@parcel/optimizer-image-2.5.0" 116761 + sources."@parcel/optimizer-svgo-2.5.0" 116762 + sources."@parcel/optimizer-terser-2.5.0" 116763 + sources."@parcel/package-manager-2.5.0" 116764 + sources."@parcel/packager-css-2.5.0" 116765 + sources."@parcel/packager-html-2.5.0" 116766 + sources."@parcel/packager-js-2.5.0" 116767 + sources."@parcel/packager-raw-2.5.0" 116768 + sources."@parcel/packager-svg-2.5.0" 116769 + sources."@parcel/plugin-2.5.0" 116770 + sources."@parcel/reporter-cli-2.5.0" 116771 + sources."@parcel/reporter-dev-server-2.5.0" 116772 + sources."@parcel/resolver-default-2.5.0" 116773 + sources."@parcel/runtime-browser-hmr-2.5.0" 116774 + sources."@parcel/runtime-js-2.5.0" 116775 + sources."@parcel/runtime-react-refresh-2.5.0" 116776 + sources."@parcel/runtime-service-worker-2.5.0" 117190 116777 sources."@parcel/source-map-2.0.2" 117191 - sources."@parcel/transformer-babel-2.4.1" 117192 - sources."@parcel/transformer-css-2.4.1" 117193 - (sources."@parcel/transformer-html-2.4.1" // { 116778 + sources."@parcel/transformer-babel-2.5.0" 116779 + sources."@parcel/transformer-css-2.5.0" 116780 + (sources."@parcel/transformer-html-2.5.0" // { 117194 116781 dependencies = [ 117195 116782 sources."posthtml-parser-0.10.2" 117196 116783 ]; 117197 116784 }) 117198 - sources."@parcel/transformer-image-2.4.1" 117199 - sources."@parcel/transformer-js-2.4.1" 117200 - sources."@parcel/transformer-json-2.4.1" 117201 - sources."@parcel/transformer-postcss-2.4.1" 117202 - (sources."@parcel/transformer-posthtml-2.4.1" // { 116785 + sources."@parcel/transformer-image-2.5.0" 116786 + sources."@parcel/transformer-js-2.5.0" 116787 + sources."@parcel/transformer-json-2.5.0" 116788 + sources."@parcel/transformer-postcss-2.5.0" 116789 + (sources."@parcel/transformer-posthtml-2.5.0" // { 117203 116790 dependencies = [ 117204 116791 sources."posthtml-parser-0.10.2" 117205 116792 ]; 117206 116793 }) 117207 - sources."@parcel/transformer-raw-2.4.1" 117208 - sources."@parcel/transformer-react-refresh-wrap-2.4.1" 117209 - (sources."@parcel/transformer-svg-2.4.1" // { 116794 + sources."@parcel/transformer-raw-2.5.0" 116795 + sources."@parcel/transformer-react-refresh-wrap-2.5.0" 116796 + (sources."@parcel/transformer-svg-2.5.0" // { 117210 116797 dependencies = [ 117211 116798 sources."posthtml-parser-0.10.2" 117212 116799 ]; 117213 116800 }) 117214 - sources."@parcel/types-2.4.1" 117215 - sources."@parcel/utils-2.4.1" 116801 + sources."@parcel/types-2.5.0" 116802 + sources."@parcel/utils-2.5.0" 117216 116803 sources."@parcel/watcher-2.0.5" 117217 - sources."@parcel/workers-2.4.1" 117218 - sources."@swc/helpers-0.3.8" 116804 + sources."@parcel/workers-2.5.0" 116805 + sources."@swc/helpers-0.3.9" 117219 116806 sources."@trysound/sax-0.2.0" 117220 116807 sources."@types/parse-json-4.0.0" 117221 116808 sources."abortcontroller-polyfill-1.7.3" 117222 - sources."acorn-8.7.0" 116809 + sources."acorn-8.7.1" 117223 116810 sources."ansi-styles-3.2.1" 117224 116811 sources."base-x-3.0.9" 117225 116812 sources."boolbase-1.0.0" 117226 - sources."browserslist-4.20.2" 116813 + sources."browserslist-4.20.3" 117227 116814 sources."buffer-from-1.1.2" 117228 116815 sources."callsites-3.1.0" 117229 - sources."caniuse-lite-1.0.30001332" 116816 + sources."caniuse-lite-1.0.30001334" 117230 116817 (sources."chalk-4.1.2" // { 117231 116818 dependencies = [ 117232 116819 sources."ansi-styles-4.3.0" ··· 117257 116844 sources."domutils-2.8.0" 117258 116845 sources."dotenv-7.0.0" 117259 116846 sources."dotenv-expand-5.1.0" 117260 - sources."electron-to-chromium-1.4.114" 116847 + sources."electron-to-chromium-1.4.129" 117261 116848 sources."entities-3.0.1" 117262 116849 sources."error-ex-1.3.2" 117263 116850 sources."escalade-3.1.1" ··· 117272 116859 sources."is-json-2.0.1" 117273 116860 sources."js-tokens-4.0.0" 117274 116861 sources."json-parse-even-better-errors-2.3.1" 117275 - sources."json-source-map-0.6.1" 117276 116862 sources."json5-2.2.1" 117277 116863 sources."lines-and-columns-1.2.4" 117278 116864 sources."lmdb-2.2.4" 116865 + sources."lodash.sortby-4.7.0" 117279 116866 sources."mdn-data-2.0.14" 117280 116867 sources."msgpackr-1.5.6" 117281 116868 sources."msgpackr-extract-1.1.4" ··· 117289 116876 sources."node-addon-api-3.2.1" 117290 116877 sources."node-gyp-build-4.4.0" 117291 116878 sources."node-gyp-build-optional-packages-4.3.2" 117292 - sources."node-releases-2.0.3" 116879 + sources."node-releases-2.0.4" 117293 116880 sources."nth-check-2.0.1" 117294 116881 sources."nullthrows-1.1.1" 117295 116882 sources."ordered-binary-1.2.5" ··· 117301 116888 sources."posthtml-0.16.6" 117302 116889 sources."posthtml-parser-0.11.0" 117303 116890 sources."posthtml-render-3.0.0" 116891 + sources."punycode-2.1.1" 117304 116892 sources."react-refresh-0.9.0" 117305 116893 sources."regenerator-runtime-0.13.9" 117306 116894 sources."resolve-from-4.0.0" ··· 117312 116900 sources."supports-color-5.5.0" 117313 116901 sources."svgo-2.8.0" 117314 116902 sources."term-size-2.2.1" 117315 - (sources."terser-5.12.1" // { 116903 + (sources."terser-5.13.1" // { 117316 116904 dependencies = [ 117317 116905 sources."commander-2.20.3" 117318 - sources."source-map-0.7.3" 116906 + sources."source-map-0.8.0-beta.0" 117319 116907 ]; 117320 116908 }) 117321 116909 sources."timsort-0.3.0" 116910 + sources."tr46-1.0.1" 117322 116911 sources."type-fest-0.20.2" 117323 116912 sources."utility-types-3.10.0" 117324 116913 sources."v8-compile-cache-2.3.0" 117325 116914 sources."weak-lru-cache-1.2.2" 116915 + sources."webidl-conversions-4.0.2" 116916 + sources."whatwg-url-7.1.0" 117326 116917 sources."xxhash-wasm-0.4.2" 117327 116918 sources."yaml-1.10.2" 117328 116919 ]; ··· 117369 116960 sources."bintrees-1.0.1" 117370 116961 sources."bl-1.2.3" 117371 116962 sources."bluebird-3.7.2" 117372 - (sources."body-parser-1.19.2" // { 116963 + (sources."body-parser-1.20.0" // { 117373 116964 dependencies = [ 117374 116965 sources."bytes-3.1.2" 117375 116966 sources."content-type-1.0.4" ··· 117399 116990 ]; 117400 116991 }) 117401 116992 sources."content-type-git+https://github.com/wikimedia/content-type.git#master" 117402 - sources."cookie-0.4.2" 116993 + sources."cookie-0.5.0" 117403 116994 sources."cookie-signature-1.0.6" 117404 116995 sources."core-js-2.6.12" 117405 116996 sources."core-util-is-1.0.2" ··· 117408 116999 sources."decamelize-1.2.0" 117409 117000 sources."define-properties-1.1.4" 117410 117001 sources."delayed-stream-1.0.0" 117411 - sources."depd-1.1.2" 117412 - sources."destroy-1.0.4" 117002 + sources."depd-2.0.0" 117003 + sources."destroy-1.2.0" 117413 117004 sources."dnscache-1.0.2" 117414 117005 sources."dom-storage-2.1.0" 117415 117006 sources."domino-2.1.6" ··· 117423 117014 sources."escape-html-1.0.3" 117424 117015 sources."esprima-4.0.1" 117425 117016 sources."etag-1.8.1" 117426 - (sources."express-4.17.3" // { 117017 + (sources."express-4.18.1" // { 117427 117018 dependencies = [ 117428 117019 sources."content-type-1.0.4" 117429 - sources."finalhandler-1.1.2" 117430 117020 sources."safe-buffer-5.2.1" 117431 117021 ]; 117432 117022 }) ··· 117436 117026 sources."fast-deep-equal-3.1.3" 117437 117027 sources."fast-json-stable-stringify-2.1.0" 117438 117028 sources."file-uri-to-path-1.0.0" 117439 - (sources."finalhandler-1.2.0" // { 117440 - dependencies = [ 117441 - sources."on-finished-2.4.1" 117442 - sources."statuses-2.0.1" 117443 - ]; 117444 - }) 117029 + sources."finalhandler-1.2.0" 117445 117030 sources."find-up-3.0.0" 117446 117031 sources."forever-agent-0.6.1" 117447 117032 sources."form-data-2.3.3" ··· 117467 117052 sources."hat-0.0.3" 117468 117053 sources."heapdump-0.3.15" 117469 117054 sources."hot-shots-6.8.7" 117470 - sources."http-errors-1.8.1" 117055 + sources."http-errors-2.0.0" 117471 117056 sources."http-signature-1.2.0" 117472 117057 sources."iconv-lite-0.4.24" 117473 117058 sources."inflight-1.0.6" ··· 117512 117097 sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" 117513 117098 sources."neo-async-2.6.2" 117514 117099 sources."oauth-sign-0.9.0" 117100 + sources."object-inspect-1.12.0" 117515 117101 sources."object-keys-1.1.1" 117516 117102 sources."object.assign-4.1.2" 117517 - sources."on-finished-2.3.0" 117103 + sources."on-finished-2.4.1" 117518 117104 sources."on-headers-1.0.2" 117519 117105 sources."once-1.4.0" 117520 117106 sources."p-limit-2.3.0" ··· 117534 117120 sources."prr-1.0.1" 117535 117121 sources."psl-1.8.0" 117536 117122 sources."punycode-2.1.1" 117537 - sources."qs-6.9.7" 117123 + sources."qs-6.10.3" 117538 117124 sources."range-parser-1.2.1" 117539 - (sources."raw-body-2.4.3" // { 117125 + (sources."raw-body-2.5.1" // { 117540 117126 dependencies = [ 117541 117127 sources."bytes-3.1.2" 117542 117128 ]; ··· 117558 117144 sources."safe-json-stringify-1.2.0" 117559 117145 sources."safer-buffer-2.1.2" 117560 117146 sources."semver-6.3.0" 117561 - (sources."send-0.17.2" // { 117147 + (sources."send-0.18.0" // { 117562 117148 dependencies = [ 117563 117149 sources."ms-2.1.3" 117564 117150 ]; ··· 117569 117155 sources."safe-buffer-5.1.1" 117570 117156 ]; 117571 117157 }) 117572 - sources."serve-static-1.14.2" 117158 + sources."serve-static-1.15.0" 117573 117159 (sources."service-runner-2.9.0" // { 117574 117160 dependencies = [ 117575 117161 sources."semver-7.3.7" ··· 117578 117164 }) 117579 117165 sources."set-blocking-2.0.0" 117580 117166 sources."setprototypeof-1.2.0" 117167 + sources."side-channel-1.0.4" 117581 117168 sources."simplediff-0.1.1" 117582 117169 sources."source-map-0.6.1" 117583 117170 sources."sprintf-js-1.0.3" 117584 117171 sources."sshpk-1.17.0" 117585 - sources."statuses-1.5.0" 117172 + sources."statuses-2.0.1" 117586 117173 sources."streamsearch-1.1.0" 117587 117174 sources."string-width-3.1.0" 117588 117175 sources."string_decoder-1.1.1" ··· 118112 117699 ]; 118113 117700 }) 118114 117701 sources."content-type-1.0.4" 118115 - sources."cookie-0.4.2" 117702 + sources."cookie-0.5.0" 118116 117703 sources."cookie-signature-1.0.6" 118117 117704 sources."core-util-is-1.0.3" 118118 117705 sources."crc-3.8.0" ··· 118130 117717 sources."end-of-stream-1.4.4" 118131 117718 (sources."engine.io-3.5.0" // { 118132 117719 dependencies = [ 117720 + sources."cookie-0.4.2" 118133 117721 sources."debug-4.1.1" 118134 117722 sources."ms-2.1.3" 118135 117723 ]; ··· 118143 117731 sources."escape-html-1.0.3" 118144 117732 sources."etag-1.8.1" 118145 117733 sources."events-3.3.0" 118146 - (sources."express-4.17.3" // { 117734 + (sources."express-4.18.1" // { 118147 117735 dependencies = [ 118148 - sources."body-parser-1.19.2" 118149 - sources."depd-1.1.2" 118150 - sources."http-errors-1.8.1" 118151 - sources."on-finished-2.3.0" 118152 - sources."qs-6.9.7" 118153 - sources."raw-body-2.4.3" 118154 117736 sources."safe-buffer-5.2.1" 118155 - sources."serve-static-1.14.2" 118156 - sources."statuses-1.5.0" 118157 117737 ]; 118158 117738 }) 118159 117739 sources."extend-3.0.2" ··· 118161 117741 sources."fast-deep-equal-3.1.3" 118162 117742 sources."fast-json-stable-stringify-2.1.0" 118163 117743 sources."fifo-0.1.4" 118164 - (sources."finalhandler-1.1.2" // { 118165 - dependencies = [ 118166 - sources."on-finished-2.3.0" 118167 - sources."statuses-1.5.0" 118168 - ]; 118169 - }) 117744 + sources."finalhandler-1.2.0" 118170 117745 sources."flatten-0.0.1" 118171 117746 sources."fluent-ffmpeg-2.1.2" 118172 117747 sources."forever-agent-0.6.1" ··· 118320 117895 sources."rusha-0.8.14" 118321 117896 sources."safe-buffer-5.1.2" 118322 117897 sources."safer-buffer-2.1.2" 118323 - (sources."send-0.17.2" // { 118324 - dependencies = [ 118325 - sources."depd-1.1.2" 118326 - sources."destroy-1.0.4" 118327 - sources."http-errors-1.8.1" 118328 - sources."ms-2.1.3" 118329 - sources."on-finished-2.3.0" 118330 - sources."statuses-1.5.0" 118331 - ]; 118332 - }) 118333 - (sources."serve-static-1.15.0" // { 117898 + (sources."send-0.18.0" // { 118334 117899 dependencies = [ 118335 117900 sources."ms-2.1.3" 118336 - sources."send-0.18.0" 118337 117901 ]; 118338 117902 }) 117903 + sources."serve-static-1.15.0" 118339 117904 sources."setprototypeof-1.2.0" 118340 117905 sources."side-channel-1.0.4" 118341 117906 sources."simple-concat-1.0.1" ··· 118658 118223 }) 118659 118224 sources."@pm2/pm2-version-check-1.0.4" 118660 118225 sources."@tootallnate/once-1.1.2" 118661 - sources."acorn-8.7.0" 118226 + sources."acorn-8.7.1" 118662 118227 sources."acorn-walk-8.2.0" 118663 118228 sources."agent-base-6.0.2" 118664 118229 sources."amp-0.3.1" ··· 118822 118387 sources."string_decoder-0.10.31" 118823 118388 sources."supports-color-7.2.0" 118824 118389 sources."supports-preserve-symlinks-flag-1.0.0" 118825 - sources."systeminformation-5.11.12" 118390 + sources."systeminformation-5.11.14" 118826 118391 sources."to-regex-range-5.0.1" 118827 118392 sources."toidentifier-1.0.1" 118828 - sources."tslib-2.3.1" 118393 + sources."tslib-2.4.0" 118829 118394 sources."tv4-1.3.0" 118830 118395 sources."tx2-1.0.5" 118831 118396 sources."type-check-0.3.2" ··· 118858 118423 pnpm = nodeEnv.buildNodePackage { 118859 118424 name = "pnpm"; 118860 118425 packageName = "pnpm"; 118861 - version = "6.32.9"; 118426 + version = "7.0.0"; 118862 118427 src = fetchurl { 118863 - url = "https://registry.npmjs.org/pnpm/-/pnpm-6.32.9.tgz"; 118864 - sha512 = "fU/urJXv2Q8l4n8FW4Qx54KGDTVMpa3n7azqa7i65XZtG5Mcpa35D+HTmAL/7G3u/3R9WGPG4CdLU7631Ti6aA=="; 118428 + url = "https://registry.npmjs.org/pnpm/-/pnpm-7.0.0.tgz"; 118429 + sha512 = "5njVSmE/Sz6coyikS6gjwoKWaxxsJ6BY6jL1aqwvnEpNUfFednbHqid3aZ42JszOFaSOz3Qipcfp4ei22G/JEg=="; 118865 118430 }; 118866 118431 buildInputs = globalBuildInputs; 118867 118432 meta = { ··· 118904 118469 postcss = nodeEnv.buildNodePackage { 118905 118470 name = "postcss"; 118906 118471 packageName = "postcss"; 118907 - version = "8.4.12"; 118472 + version = "8.4.13"; 118908 118473 src = fetchurl { 118909 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz"; 118910 - sha512 = "lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg=="; 118474 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.13.tgz"; 118475 + sha512 = "jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA=="; 118911 118476 }; 118912 118477 dependencies = [ 118913 118478 sources."nanoid-3.3.3" ··· 119190 118755 "@prisma/language-server" = nodeEnv.buildNodePackage { 119191 118756 name = "_at_prisma_slash_language-server"; 119192 118757 packageName = "@prisma/language-server"; 119193 - version = "3.12.0"; 118758 + version = "3.13.0"; 119194 118759 src = fetchurl { 119195 - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-3.12.0.tgz"; 119196 - sha512 = "YP22QXvdwCHKmYObWJzmHgFJKJ/g4NDhgJ22vfcOYVRIqu4PanK8XyBtjiKqj4SJMkg1QjhxWkdH+KSA6wQszA=="; 118760 + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-3.13.0.tgz"; 118761 + sha512 = "0QzP+i+WgbpVsmdx6Xnq7P1b4Zjep6R6TKWjexD88/DeS5aUUdmuA2JXSEFhRyr67Q2BURPtSGfPCgeGCd9Nqg=="; 119197 118762 }; 119198 118763 dependencies = [ 119199 - sources."@prisma/prisma-fmt-wasm-3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980" 118764 + sources."@prisma/prisma-fmt-wasm-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b" 119200 118765 sources."@types/js-levenshtein-1.1.1" 119201 118766 sources."js-levenshtein-1.1.6" 119202 118767 sources."klona-2.0.5" ··· 119260 118825 pulp = nodeEnv.buildNodePackage { 119261 118826 name = "pulp"; 119262 118827 packageName = "pulp"; 119263 - version = "16.0.0-0"; 118828 + version = "16.0.0"; 119264 118829 src = fetchurl { 119265 - url = "https://registry.npmjs.org/pulp/-/pulp-16.0.0-0.tgz"; 119266 - sha512 = "6nG6qg/p5IGa0k4w9EkBVBX3+7Ra1mjbOCYwbn85kjUC6x1jkyP+hAP7xAwBxTPgxSD8x5IZtoX9sbrNeKecnQ=="; 118830 + url = "https://registry.npmjs.org/pulp/-/pulp-16.0.0.tgz"; 118831 + sha512 = "JrAiw/j2zokiuhNTxQDtOMXaTHZ6hdlyPFD4QtBVt/+bSAwiSm5+4VokCQRmn4+Z7RngO9yEzSot81BE7gKYAQ=="; 119267 118832 }; 119268 118833 dependencies = [ 119269 118834 sources."JSONStream-1.3.5" ··· 119539 119104 sources."isexe-2.0.0" 119540 119105 sources."shell-quote-1.7.3" 119541 119106 sources."uuid-3.4.0" 119542 - sources."vscode-jsonrpc-8.0.0-next.7" 119543 - sources."vscode-languageserver-8.0.0-next.10" 119544 - sources."vscode-languageserver-protocol-3.17.0-next.16" 119107 + sources."vscode-jsonrpc-8.0.0-next.8" 119108 + sources."vscode-languageserver-8.0.0-next.14" 119109 + sources."vscode-languageserver-protocol-3.17.0-next.20" 119545 119110 sources."vscode-languageserver-textdocument-1.0.4" 119546 - sources."vscode-languageserver-types-3.17.0-next.9" 119111 + sources."vscode-languageserver-types-3.17.0-next.12" 119547 119112 sources."vscode-uri-2.1.2" 119548 119113 sources."which-2.0.2" 119549 119114 ]; ··· 119701 119266 pyright = nodeEnv.buildNodePackage { 119702 119267 name = "pyright"; 119703 119268 packageName = "pyright"; 119704 - version = "1.1.239"; 119269 + version = "1.1.243"; 119705 119270 src = fetchurl { 119706 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.239.tgz"; 119707 - sha512 = "WiXtSVKfoT5x/f6+AGJmB/jXhmEeexmvqqZ//MtCwLRI7hPmaRJJyfFCjJi+2ezEFxwcCjQQQTbclrG8jF6o/A=="; 119271 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.243.tgz"; 119272 + sha512 = "0PUyHTSr+LyE9Ej0A7tB8tM4pzAr34o1c3rHtfaBdZ2265HPvPE/Kj92ljX2F00Q6uAeZyyLEmzPOTuKh2WC8Q=="; 119708 119273 }; 119709 119274 buildInputs = globalBuildInputs; 119710 119275 meta = { ··· 120032 119597 sources."string.prototype.trimstart-1.0.4" 120033 119598 sources."strip-ansi-3.0.1" 120034 119599 sources."supports-color-2.0.0" 120035 - sources."unbox-primitive-1.0.1" 119600 + sources."unbox-primitive-1.0.2" 120036 119601 sources."utile-0.2.1" 120037 119602 sources."which-boxed-primitive-1.0.2" 120038 119603 sources."which-collection-1.0.1" ··· 120063 119628 sha512 = "JQACM+3GgF1vkUH6E6w1k0Qut6IbcfXjU37shGUWM9tIs3F9e/33saXK4G/uSl1kc8qjI+RekAQs/qyjMlUKlg=="; 120064 119629 }; 120065 119630 dependencies = [ 120066 - sources."@ampproject/remapping-2.1.2" 120067 - sources."@babel/cli-7.17.6" 119631 + sources."@ampproject/remapping-2.2.0" 119632 + sources."@babel/cli-7.17.10" 120068 119633 sources."@babel/code-frame-7.16.7" 120069 - sources."@babel/compat-data-7.17.7" 120070 - (sources."@babel/core-7.17.9" // { 119634 + sources."@babel/compat-data-7.17.10" 119635 + (sources."@babel/core-7.17.10" // { 120071 119636 dependencies = [ 120072 119637 sources."semver-6.3.0" 120073 119638 ]; 120074 119639 }) 120075 - sources."@babel/generator-7.17.9" 119640 + sources."@babel/generator-7.17.10" 120076 119641 sources."@babel/helper-annotate-as-pure-7.16.7" 120077 119642 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 120078 - (sources."@babel/helper-compilation-targets-7.17.7" // { 119643 + (sources."@babel/helper-compilation-targets-7.17.10" // { 120079 119644 dependencies = [ 120080 119645 sources."semver-6.3.0" 120081 119646 ]; ··· 120106 119671 sources."@babel/helper-wrap-function-7.16.8" 120107 119672 sources."@babel/helpers-7.17.9" 120108 119673 sources."@babel/highlight-7.17.9" 120109 - sources."@babel/parser-7.17.9" 119674 + sources."@babel/parser-7.17.10" 120110 119675 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 120111 119676 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 120112 119677 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" ··· 120159 119724 sources."@babel/plugin-transform-modules-commonjs-7.17.9" 120160 119725 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 120161 119726 sources."@babel/plugin-transform-modules-umd-7.16.7" 120162 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 119727 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.10" 120163 119728 sources."@babel/plugin-transform-new-target-7.16.7" 120164 119729 sources."@babel/plugin-transform-object-super-7.16.7" 120165 119730 sources."@babel/plugin-transform-parameters-7.16.7" ··· 120170 119735 sources."@babel/plugin-transform-react-pure-annotations-7.16.7" 120171 119736 sources."@babel/plugin-transform-regenerator-7.17.9" 120172 119737 sources."@babel/plugin-transform-reserved-words-7.16.7" 120173 - (sources."@babel/plugin-transform-runtime-7.17.0" // { 119738 + (sources."@babel/plugin-transform-runtime-7.17.10" // { 120174 119739 dependencies = [ 120175 119740 sources."semver-6.3.0" 120176 119741 ]; ··· 120182 119747 sources."@babel/plugin-transform-typeof-symbol-7.16.7" 120183 119748 sources."@babel/plugin-transform-unicode-escapes-7.16.7" 120184 119749 sources."@babel/plugin-transform-unicode-regex-7.16.7" 120185 - (sources."@babel/preset-env-7.16.11" // { 119750 + (sources."@babel/preset-env-7.17.10" // { 120186 119751 dependencies = [ 120187 119752 sources."semver-6.3.0" 120188 119753 ]; ··· 120193 119758 sources."@babel/register-7.17.7" 120194 119759 sources."@babel/runtime-7.17.9" 120195 119760 sources."@babel/template-7.16.7" 120196 - sources."@babel/traverse-7.17.9" 120197 - sources."@babel/types-7.17.0" 120198 - sources."@jridgewell/resolve-uri-3.0.5" 119761 + sources."@babel/traverse-7.17.10" 119762 + sources."@babel/types-7.17.10" 119763 + sources."@jridgewell/gen-mapping-0.1.1" 119764 + sources."@jridgewell/resolve-uri-3.0.6" 119765 + sources."@jridgewell/set-array-1.1.0" 120199 119766 sources."@jridgewell/sourcemap-codec-1.4.11" 120200 - sources."@jridgewell/trace-mapping-0.3.8" 119767 + sources."@jridgewell/trace-mapping-0.3.9" 120201 119768 sources."@reach/router-1.3.4" 120202 119769 sources."@sindresorhus/is-0.7.0" 120203 119770 sources."@types/glob-7.2.0" 120204 119771 sources."@types/json-schema-7.0.11" 120205 119772 sources."@types/minimatch-3.0.5" 120206 - sources."@types/node-17.0.25" 119773 + sources."@types/node-17.0.31" 120207 119774 sources."@types/parse-json-4.0.0" 120208 119775 sources."@types/q-1.5.5" 120209 119776 sources."@webassemblyjs/ast-1.9.0" ··· 120329 119896 sources."blob-0.0.5" 120330 119897 sources."bluebird-3.7.2" 120331 119898 sources."bn.js-5.2.0" 120332 - (sources."body-parser-1.19.2" // { 119899 + (sources."body-parser-1.20.0" // { 120333 119900 dependencies = [ 120334 119901 sources."bytes-3.1.2" 120335 119902 sources."debug-2.6.9" ··· 120361 119928 ]; 120362 119929 }) 120363 119930 sources."browserify-zlib-0.1.4" 120364 - sources."browserslist-4.20.2" 119931 + sources."browserslist-4.20.3" 120365 119932 sources."buffer-5.7.1" 120366 119933 sources."buffer-alloc-1.2.0" 120367 119934 sources."buffer-alloc-unsafe-1.1.0" ··· 120395 119962 sources."camel-case-3.0.0" 120396 119963 sources."camelcase-5.3.1" 120397 119964 sources."caniuse-api-3.0.0" 120398 - sources."caniuse-lite-1.0.30001332" 119965 + sources."caniuse-lite-1.0.30001334" 120399 119966 sources."case-sensitive-paths-webpack-plugin-2.4.0" 120400 119967 sources."caw-2.0.1" 120401 119968 sources."chalk-2.4.2" ··· 120423 119990 sources."kind-of-5.1.0" 120424 119991 ]; 120425 119992 }) 120426 - (sources."clean-css-4.2.4" // { 120427 - dependencies = [ 120428 - sources."source-map-0.6.1" 120429 - ]; 120430 - }) 119993 + sources."clean-css-4.2.4" 120431 119994 sources."cli-boxes-1.0.0" 120432 119995 sources."cli-cursor-2.1.0" 120433 119996 sources."cli-width-2.2.1" ··· 120448 120011 sources."color-3.2.1" 120449 120012 sources."color-convert-1.9.3" 120450 120013 sources."color-name-1.1.3" 120451 - sources."color-string-1.9.0" 120014 + sources."color-string-1.9.1" 120452 120015 sources."commander-4.1.1" 120453 120016 sources."commondir-1.0.1" 120454 120017 sources."component-bind-1.0.0" ··· 120479 120042 sources."copy-concurrently-1.0.5" 120480 120043 sources."copy-descriptor-0.1.1" 120481 120044 sources."core-js-2.6.12" 120482 - (sources."core-js-compat-3.22.1" // { 120045 + (sources."core-js-compat-3.22.3" // { 120483 120046 dependencies = [ 120484 120047 sources."semver-7.0.0" 120485 120048 ]; ··· 120509 120072 }) 120510 120073 sources."css-select-2.1.0" 120511 120074 sources."css-select-base-adapter-0.1.1" 120512 - (sources."css-tree-1.0.0-alpha.37" // { 120513 - dependencies = [ 120514 - sources."source-map-0.6.1" 120515 - ]; 120516 - }) 120075 + sources."css-tree-1.0.0-alpha.37" 120517 120076 sources."css-what-3.4.2" 120518 120077 sources."cssesc-3.0.0" 120519 120078 (sources."cssnano-4.1.11" // { ··· 120533 120092 dependencies = [ 120534 120093 sources."css-tree-1.1.3" 120535 120094 sources."mdn-data-2.0.14" 120536 - sources."source-map-0.6.1" 120537 120095 ]; 120538 120096 }) 120539 120097 sources."cyclist-1.0.1" ··· 120586 120144 sources."define-properties-1.1.4" 120587 120145 sources."define-property-2.0.2" 120588 120146 sources."del-4.1.1" 120589 - sources."depd-1.1.2" 120147 + sources."depd-2.0.0" 120590 120148 sources."des.js-1.0.1" 120591 - sources."destroy-1.0.4" 120149 + sources."destroy-1.2.0" 120592 120150 sources."detect-node-2.1.0" 120593 120151 (sources."diffie-hellman-5.0.3" // { 120594 120152 dependencies = [ ··· 120625 120183 sources."duplexify-3.7.1" 120626 120184 sources."ee-first-1.1.1" 120627 120185 sources."ejs-2.7.4" 120628 - sources."electron-to-chromium-1.4.114" 120186 + sources."electron-to-chromium-1.4.129" 120629 120187 (sources."elliptic-6.5.4" // { 120630 120188 dependencies = [ 120631 120189 sources."bn.js-4.12.0" ··· 120696 120254 sources."ms-2.0.0" 120697 120255 ]; 120698 120256 }) 120699 - (sources."express-4.17.3" // { 120257 + (sources."express-4.18.1" // { 120700 120258 dependencies = [ 120259 + sources."cookie-0.5.0" 120701 120260 sources."debug-2.6.9" 120702 120261 sources."ms-2.0.0" 120703 120262 sources."path-to-regexp-0.1.7" ··· 120751 120310 sources."filenamify-2.1.0" 120752 120311 sources."filesize-3.6.1" 120753 120312 sources."fill-range-7.0.1" 120754 - (sources."finalhandler-1.1.2" // { 120313 + (sources."finalhandler-1.2.0" // { 120755 120314 dependencies = [ 120756 120315 sources."debug-2.6.9" 120757 120316 sources."ms-2.0.0" ··· 120864 120423 }) 120865 120424 sources."http-cache-semantics-3.8.1" 120866 120425 sources."http-deceiver-1.2.7" 120867 - sources."http-errors-1.8.1" 120426 + sources."http-errors-2.0.0" 120868 120427 sources."http-parser-js-0.5.6" 120869 120428 sources."http-proxy-1.18.1" 120870 120429 sources."http-proxy-middleware-0.19.1" ··· 121063 120622 sources."punycode-1.4.1" 121064 120623 ]; 121065 120624 }) 121066 - sources."node-releases-2.0.3" 120625 + sources."node-releases-2.0.4" 121067 120626 sources."normalize-path-3.0.0" 121068 120627 sources."normalize-range-0.1.2" 121069 120628 (sources."normalize-url-2.0.1" // { ··· 121102 120661 sources."object.pick-1.3.0" 121103 120662 sources."object.values-1.1.5" 121104 120663 sources."obuf-1.1.2" 121105 - sources."on-finished-2.3.0" 120664 + sources."on-finished-2.4.1" 121106 120665 sources."on-headers-1.0.2" 121107 120666 sources."once-1.4.0" 121108 120667 sources."onetime-2.0.1" ··· 121161 120720 (sources."postcss-7.0.39" // { 121162 120721 dependencies = [ 121163 120722 sources."picocolors-0.2.1" 121164 - sources."source-map-0.6.1" 121165 120723 ]; 121166 120724 }) 121167 120725 sources."postcss-calc-7.0.5" ··· 121314 120872 sources."pumpify-1.5.1" 121315 120873 sources."punycode-2.1.1" 121316 120874 sources."q-1.5.1" 121317 - sources."qs-6.9.7" 120875 + sources."qs-6.10.3" 121318 120876 sources."query-string-5.1.1" 121319 120877 sources."querystring-0.2.0" 121320 120878 sources."querystring-es3-0.2.1" ··· 121323 120881 sources."randombytes-2.1.0" 121324 120882 sources."randomfill-1.0.4" 121325 120883 sources."range-parser-1.2.0" 121326 - (sources."raw-body-2.4.3" // { 120884 + (sources."raw-body-2.5.1" // { 121327 120885 dependencies = [ 121328 120886 sources."bytes-3.1.2" 121329 120887 ]; ··· 121409 120967 sources."select-hose-2.0.0" 121410 120968 sources."selfsigned-1.10.14" 121411 120969 sources."semver-5.7.1" 121412 - (sources."send-0.17.2" // { 120970 + (sources."send-0.18.0" // { 121413 120971 dependencies = [ 121414 120972 (sources."debug-2.6.9" // { 121415 120973 dependencies = [ ··· 121440 120998 (sources."serve-index-1.9.1" // { 121441 120999 dependencies = [ 121442 121000 sources."debug-2.6.9" 121001 + sources."depd-1.1.2" 121443 121002 sources."http-errors-1.6.3" 121444 121003 sources."inherits-2.0.3" 121445 121004 sources."ms-2.0.0" 121446 121005 sources."setprototypeof-1.1.0" 121006 + sources."statuses-1.5.0" 121447 121007 ]; 121448 121008 }) 121449 - sources."serve-static-1.14.2" 121009 + sources."serve-static-1.15.0" 121450 121010 sources."set-blocking-2.0.0" 121451 121011 (sources."set-value-2.0.1" // { 121452 121012 dependencies = [ ··· 121486 121046 sources."is-descriptor-0.1.6" 121487 121047 sources."kind-of-5.1.0" 121488 121048 sources."ms-2.0.0" 121049 + sources."source-map-0.5.7" 121489 121050 ]; 121490 121051 }) 121491 121052 (sources."snapdragon-node-2.1.1" // { ··· 121528 121089 sources."sort-keys-1.1.2" 121529 121090 sources."sort-keys-length-1.0.1" 121530 121091 sources."source-list-map-2.0.1" 121531 - sources."source-map-0.5.7" 121092 + sources."source-map-0.6.1" 121532 121093 sources."source-map-resolve-0.5.3" 121533 - (sources."source-map-support-0.5.21" // { 121534 - dependencies = [ 121535 - sources."source-map-0.6.1" 121536 - ]; 121537 - }) 121094 + sources."source-map-support-0.5.21" 121538 121095 sources."source-map-url-0.4.1" 121539 121096 sources."spdy-4.0.2" 121540 121097 (sources."spdy-transport-3.0.0" // { ··· 121563 121120 sources."kind-of-5.1.0" 121564 121121 ]; 121565 121122 }) 121566 - sources."statuses-1.5.0" 121123 + sources."statuses-2.0.1" 121567 121124 sources."stream-browserify-2.0.2" 121568 121125 sources."stream-each-1.2.3" 121569 121126 sources."stream-http-2.8.3" ··· 121616 121173 (sources."terser-4.8.0" // { 121617 121174 dependencies = [ 121618 121175 sources."commander-2.20.3" 121619 - sources."source-map-0.6.1" 121620 121176 ]; 121621 121177 }) 121622 121178 (sources."terser-webpack-plugin-1.4.5" // { 121623 121179 dependencies = [ 121624 121180 sources."schema-utils-1.0.0" 121625 - sources."source-map-0.6.1" 121626 121181 ]; 121627 121182 }) 121628 121183 sources."through-2.3.8" ··· 121656 121211 (sources."uglify-js-3.4.10" // { 121657 121212 dependencies = [ 121658 121213 sources."commander-2.19.0" 121659 - sources."source-map-0.6.1" 121660 121214 ]; 121661 121215 }) 121662 - sources."unbox-primitive-1.0.1" 121216 + sources."unbox-primitive-1.0.2" 121663 121217 sources."unbzip2-stream-1.4.3" 121664 121218 sources."unicode-canonical-property-names-ecmascript-2.0.0" 121665 121219 sources."unicode-match-property-ecmascript-2.0.0" ··· 121796 121350 ]; 121797 121351 }) 121798 121352 sources."webpack-node-externals-1.7.2" 121799 - (sources."webpack-sources-1.4.3" // { 121800 - dependencies = [ 121801 - sources."source-map-0.6.1" 121802 - ]; 121803 - }) 121353 + sources."webpack-sources-1.4.3" 121804 121354 sources."websocket-driver-0.7.4" 121805 121355 sources."websocket-extensions-0.1.4" 121806 121356 sources."which-1.3.1" ··· 121905 121455 sources."@mozilla/readability-0.4.2" 121906 121456 sources."@tootallnate/once-2.0.0" 121907 121457 sources."abab-2.0.6" 121908 - sources."acorn-8.7.0" 121458 + sources."acorn-8.7.1" 121909 121459 (sources."acorn-globals-6.0.0" // { 121910 121460 dependencies = [ 121911 121461 sources."acorn-7.4.1" ··· 121927 121477 sources."cssom-0.3.8" 121928 121478 ]; 121929 121479 }) 121930 - sources."data-urls-3.0.1" 121480 + (sources."data-urls-3.0.2" // { 121481 + dependencies = [ 121482 + sources."whatwg-url-11.0.0" 121483 + ]; 121484 + }) 121931 121485 sources."debug-4.3.4" 121932 121486 sources."decimal.js-10.3.1" 121933 121487 sources."deep-is-0.1.4" ··· 121979 121533 sources."whatwg-url-10.0.0" 121980 121534 sources."word-wrap-1.2.3" 121981 121535 sources."wrap-ansi-7.0.0" 121982 - sources."ws-8.5.0" 121536 + sources."ws-8.6.0" 121983 121537 sources."xml-name-validator-4.0.0" 121984 121538 sources."xmlchars-2.2.0" 121985 121539 sources."y18n-5.0.8" ··· 121999 121553 redoc-cli = nodeEnv.buildNodePackage { 122000 121554 name = "redoc-cli"; 122001 121555 packageName = "redoc-cli"; 122002 - version = "0.13.10"; 121556 + version = "0.13.11"; 122003 121557 src = fetchurl { 122004 - url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.10.tgz"; 122005 - sha512 = "txYchKO6rpXJapD6Kg/Vd6mEg3ZJDz+TLCev8dvj8cGQxiSZDJ/V/x3uRfg03EH5FrC71kHC4ETI97MUlye9NQ=="; 121558 + url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.11.tgz"; 121559 + sha512 = "6zqf2j+LdsM0SnisPYrAln6nYW7tc/E28+sJMhIiTbI3TtEPGHC7hgRrRsrnhavNChKclU7ln2+dEtRZkzpR+Q=="; 122006 121560 }; 122007 121561 dependencies = [ 122008 121562 sources."@babel/code-frame-7.16.7" 122009 - (sources."@babel/generator-7.17.9" // { 122010 - dependencies = [ 122011 - sources."source-map-0.5.7" 122012 - ]; 122013 - }) 121563 + sources."@babel/generator-7.17.10" 122014 121564 sources."@babel/helper-annotate-as-pure-7.16.7" 122015 121565 sources."@babel/helper-environment-visitor-7.16.7" 122016 121566 sources."@babel/helper-function-name-7.17.9" ··· 122019 121569 sources."@babel/helper-split-export-declaration-7.16.7" 122020 121570 sources."@babel/helper-validator-identifier-7.16.7" 122021 121571 sources."@babel/highlight-7.17.9" 122022 - sources."@babel/parser-7.17.9" 121572 + sources."@babel/parser-7.17.10" 122023 121573 sources."@babel/runtime-7.17.9" 122024 121574 sources."@babel/template-7.16.7" 122025 - sources."@babel/traverse-7.17.9" 122026 - sources."@babel/types-7.17.0" 121575 + sources."@babel/traverse-7.17.10" 121576 + sources."@babel/types-7.17.10" 122027 121577 sources."@emotion/is-prop-valid-1.1.2" 122028 121578 sources."@emotion/memoize-0.7.5" 122029 121579 sources."@emotion/stylis-0.8.5" 122030 121580 sources."@emotion/unitless-0.7.5" 122031 121581 sources."@exodus/schemasafe-1.0.0-rc.6" 121582 + sources."@jridgewell/gen-mapping-0.1.1" 121583 + sources."@jridgewell/set-array-1.1.0" 121584 + sources."@jridgewell/sourcemap-codec-1.4.11" 122032 121585 sources."@redocly/ajv-8.6.4" 122033 121586 sources."@redocly/openapi-core-1.0.0-beta.94" 122034 121587 sources."@redocly/react-dropdown-aria-2.0.12" 122035 121588 sources."@types/json-schema-7.0.11" 122036 - sources."@types/node-14.18.13" 121589 + sources."@types/node-14.18.16" 122037 121590 sources."ansi-regex-5.0.1" 122038 121591 sources."ansi-styles-3.2.1" 122039 121592 sources."anymatch-3.1.2" ··· 122195 121748 sources."oas-schema-walker-1.1.5" 122196 121749 sources."oas-validator-5.0.8" 122197 121750 sources."object-assign-4.1.1" 122198 - sources."openapi-sampler-1.2.1" 121751 + sources."openapi-sampler-1.2.3" 122199 121752 sources."os-browserify-0.3.0" 122200 121753 sources."pako-1.0.11" 122201 121754 sources."parse-asn1-5.1.6" ··· 122233 121786 ]; 122234 121787 }) 122235 121788 sources."readdirp-3.6.0" 122236 - (sources."redoc-2.0.0-rc.66" // { 121789 + (sources."redoc-2.0.0-rc.67" // { 122237 121790 dependencies = [ 122238 121791 sources."path-browserify-1.0.1" 122239 121792 ]; ··· 122804 122357 rollup = nodeEnv.buildNodePackage { 122805 122358 name = "rollup"; 122806 122359 packageName = "rollup"; 122807 - version = "2.70.2"; 122360 + version = "2.71.1"; 122808 122361 src = fetchurl { 122809 - url = "https://registry.npmjs.org/rollup/-/rollup-2.70.2.tgz"; 122810 - sha512 = "EitogNZnfku65I1DD5Mxe8JYRUCy0hkK5X84IlDtUs+O6JRMpRciXTzyCUuX11b5L5pvjH+OmFXiQ3XjabcXgg=="; 122362 + url = "https://registry.npmjs.org/rollup/-/rollup-2.71.1.tgz"; 122363 + sha512 = "lMZk3XfUBGjrrZQpvPSoXcZSfKcJ2Bgn+Z0L1MoW2V8Wh7BVM+LOBJTPo16yul2MwL59cXedzW1ruq3rCjSRgw=="; 122811 122364 }; 122812 122365 dependencies = [ 122813 122366 sources."fsevents-2.3.2" ··· 122828 122381 version = "0.2.975"; 122829 122382 src = ../../applications/editors/vscode/extensions/rust-analyzer/build-deps; 122830 122383 dependencies = [ 122831 - sources."@eslint/eslintrc-1.2.1" 122384 + sources."@eslint/eslintrc-1.2.2" 122832 122385 sources."@hpcc-js/wasm-1.12.8" 122833 122386 sources."@humanwhocodes/config-array-0.9.5" 122834 122387 sources."@humanwhocodes/object-schema-1.2.1" ··· 122839 122392 sources."@types/json-schema-7.0.11" 122840 122393 sources."@types/node-14.17.34" 122841 122394 sources."@types/vscode-1.63.2" 122842 - sources."@typescript-eslint/eslint-plugin-5.20.0" 122843 - sources."@typescript-eslint/parser-5.20.0" 122844 - sources."@typescript-eslint/scope-manager-5.20.0" 122845 - sources."@typescript-eslint/type-utils-5.20.0" 122846 - sources."@typescript-eslint/types-5.20.0" 122847 - sources."@typescript-eslint/typescript-estree-5.20.0" 122848 - sources."@typescript-eslint/utils-5.20.0" 122849 - sources."@typescript-eslint/visitor-keys-5.20.0" 122395 + sources."@typescript-eslint/eslint-plugin-5.21.0" 122396 + sources."@typescript-eslint/parser-5.21.0" 122397 + sources."@typescript-eslint/scope-manager-5.21.0" 122398 + sources."@typescript-eslint/type-utils-5.21.0" 122399 + sources."@typescript-eslint/types-5.21.0" 122400 + sources."@typescript-eslint/typescript-estree-5.21.0" 122401 + sources."@typescript-eslint/utils-5.21.0" 122402 + sources."@typescript-eslint/visitor-keys-5.21.0" 122850 122403 sources."@vscode/test-electron-2.1.3" 122851 - sources."acorn-8.7.0" 122404 + sources."acorn-8.7.1" 122852 122405 sources."acorn-jsx-5.3.2" 122853 122406 sources."agent-base-6.0.2" 122854 122407 sources."ajv-6.12.6" ··· 122968 122521 sources."entities-2.2.0" 122969 122522 sources."escalade-3.1.1" 122970 122523 sources."escape-string-regexp-4.0.0" 122971 - (sources."eslint-8.13.0" // { 122524 + (sources."eslint-8.14.0" // { 122972 122525 dependencies = [ 122973 122526 sources."eslint-scope-7.1.1" 122974 122527 sources."estraverse-5.3.0" ··· 123156 122709 sources."tmp-0.2.1" 123157 122710 sources."to-regex-range-5.0.1" 123158 122711 sources."traverse-0.3.9" 123159 - sources."tslib-2.3.1" 122712 + sources."tslib-2.4.0" 123160 122713 (sources."tsutils-3.21.0" // { 123161 122714 dependencies = [ 123162 122715 sources."tslib-1.14.1" ··· 123167 122720 sources."type-check-0.4.0" 123168 122721 sources."type-fest-0.20.2" 123169 122722 sources."typed-rest-client-1.8.6" 123170 - sources."typescript-4.6.3" 122723 + sources."typescript-4.6.4" 123171 122724 sources."typescript-formatter-7.2.2" 123172 122725 sources."uc.micro-1.0.6" 123173 - sources."underscore-1.13.2" 122726 + sources."underscore-1.13.3" 123174 122727 sources."unzipper-0.10.11" 123175 122728 sources."uri-js-4.4.1" 123176 122729 sources."url-join-4.0.1" ··· 123230 122783 sources."p-locate-5.0.0" 123231 122784 sources."path-exists-4.0.0" 123232 122785 sources."picocolors-1.0.0" 123233 - sources."postcss-8.4.12" 122786 + sources."postcss-8.4.13" 123234 122787 sources."source-map-js-1.0.2" 123235 122788 sources."strip-json-comments-3.1.1" 123236 122789 sources."yocto-queue-0.1.0" ··· 123344 122897 sass = nodeEnv.buildNodePackage { 123345 122898 name = "sass"; 123346 122899 packageName = "sass"; 123347 - version = "1.50.1"; 122900 + version = "1.51.0"; 123348 122901 src = fetchurl { 123349 - url = "https://registry.npmjs.org/sass/-/sass-1.50.1.tgz"; 123350 - sha512 = "noTnY41KnlW2A9P8sdwESpDmo+KBNkukI1i8+hOK3footBUcohNHtdOJbckp46XO95nuvcHDDZ+4tmOnpK3hjw=="; 122902 + url = "https://registry.npmjs.org/sass/-/sass-1.51.0.tgz"; 122903 + sha512 = "haGdpTgywJTvHC2b91GSq+clTKGbtkkZmVAb82jZQN/wTy6qs8DdFm2lhEQbEwrY0QDRgSQ3xDurqM977C3noA=="; 123351 122904 }; 123352 122905 dependencies = [ 123353 122906 sources."anymatch-3.1.2" ··· 123524 123077 serverless = nodeEnv.buildNodePackage { 123525 123078 name = "serverless"; 123526 123079 packageName = "serverless"; 123527 - version = "3.15.0"; 123080 + version = "3.16.0"; 123528 123081 src = fetchurl { 123529 - url = "https://registry.npmjs.org/serverless/-/serverless-3.15.0.tgz"; 123530 - sha512 = "53tVnDXbzhxVH4QJwqZPIb/W/cOozNowTMOmMuigX9xk0R0PVI3f2F30jd0NO3EQtCrL2+Gq9YZdUJAjldtZCg=="; 123082 + url = "https://registry.npmjs.org/serverless/-/serverless-3.16.0.tgz"; 123083 + sha512 = "z/UV32k+Pipii6CVtaCTDka5+rYExUwvF0Kx8808ghr7MstWclfL81x4CGDoXSTixRE/lus2KHLQfdljnunBnA=="; 123531 123084 }; 123532 123085 dependencies = [ 123533 123086 sources."2-thenable-1.0.0" ··· 123556 123109 sources."@types/json-buffer-3.0.0" 123557 123110 sources."@types/keyv-3.1.4" 123558 123111 sources."@types/lodash-4.14.182" 123559 - sources."@types/node-17.0.25" 123112 + sources."@types/node-17.0.31" 123560 123113 sources."@types/responselike-1.0.0" 123561 123114 sources."adm-zip-0.5.9" 123562 123115 sources."agent-base-6.0.2" ··· 123582 123135 sources."async-3.2.3" 123583 123136 sources."asynckit-0.4.0" 123584 123137 sources."at-least-node-1.0.0" 123585 - (sources."aws-sdk-2.1118.0" // { 123138 + (sources."aws-sdk-2.1125.0" // { 123586 123139 dependencies = [ 123587 123140 sources."buffer-4.9.2" 123588 123141 sources."ieee754-1.1.13" ··· 123789 123342 sources."imurmurhash-0.1.4" 123790 123343 sources."inflight-1.0.6" 123791 123344 sources."inherits-2.0.4" 123792 - sources."inquirer-8.2.2" 123345 + sources."inquirer-8.2.4" 123793 123346 sources."is-binary-path-2.1.0" 123794 123347 sources."is-docker-2.2.1" 123795 123348 sources."is-extglob-2.1.1" ··· 123928 123481 sources."shebang-regex-1.0.0" 123929 123482 sources."side-channel-1.0.4" 123930 123483 sources."signal-exit-3.0.7" 123931 - sources."simple-git-3.7.0" 123484 + sources."simple-git-3.7.1" 123932 123485 sources."slash-3.0.0" 123933 123486 sources."sort-keys-1.1.2" 123934 123487 sources."sort-keys-length-1.0.1" ··· 123972 123525 sources."tr46-0.0.3" 123973 123526 sources."traverse-0.6.6" 123974 123527 sources."trim-repeated-1.0.0" 123975 - sources."tslib-2.3.1" 123528 + sources."tslib-2.4.0" 123976 123529 sources."type-2.6.0" 123977 123530 sources."type-fest-0.21.3" 123978 123531 sources."unbzip2-stream-1.4.3" ··· 123993 123546 sources."webidl-conversions-3.0.1" 123994 123547 sources."whatwg-url-5.0.0" 123995 123548 sources."which-1.3.1" 123549 + sources."wrap-ansi-7.0.0" 123996 123550 sources."wrappy-1.0.2" 123997 123551 sources."write-file-atomic-4.0.1" 123998 123552 sources."ws-7.5.7" ··· 124046 123600 sources."bcrypt-pbkdf-1.0.2" 124047 123601 sources."better-assert-1.0.2" 124048 123602 sources."blob-0.0.2" 124049 - sources."body-parser-1.19.2" 123603 + sources."body-parser-1.20.0" 124050 123604 sources."bytes-3.1.2" 123605 + sources."call-bind-1.0.2" 124051 123606 sources."callsite-1.0.0" 124052 123607 sources."caseless-0.12.0" 124053 123608 sources."cheerio-0.17.0" ··· 124058 123613 sources."component-inherit-0.0.3" 124059 123614 sources."content-disposition-0.5.4" 124060 123615 sources."content-type-1.0.4" 124061 - sources."cookie-0.4.2" 123616 + sources."cookie-0.5.0" 124062 123617 sources."cookie-signature-1.0.6" 124063 123618 sources."core-util-is-1.0.3" 124064 123619 sources."dashdash-1.14.1" 124065 123620 sources."debug-2.6.9" 124066 123621 sources."delayed-stream-1.0.0" 124067 - sources."depd-1.1.2" 124068 - sources."destroy-1.0.4" 123622 + sources."depd-2.0.0" 123623 + sources."destroy-1.2.0" 124069 123624 (sources."dom-serializer-0.0.1" // { 124070 123625 dependencies = [ 124071 123626 sources."domelementtype-1.1.3" ··· 124094 123649 sources."escape-html-1.0.3" 124095 123650 sources."etag-1.8.1" 124096 123651 sources."event-stream-3.3.5" 124097 - sources."express-4.17.3" 123652 + sources."express-4.18.1" 124098 123653 sources."extend-3.0.2" 124099 123654 sources."extsprintf-1.3.0" 124100 123655 sources."fast-deep-equal-3.1.3" 124101 123656 sources."fast-json-stable-stringify-2.1.0" 124102 - sources."finalhandler-1.1.2" 123657 + sources."finalhandler-1.2.0" 124103 123658 sources."forever-agent-0.6.1" 124104 123659 sources."form-data-2.3.3" 124105 123660 sources."forwarded-0.2.0" 124106 123661 sources."fresh-0.5.2" 124107 123662 sources."from-0.1.7" 123663 + sources."function-bind-1.1.1" 123664 + sources."get-intrinsic-1.1.1" 124108 123665 sources."getpass-0.1.7" 124109 123666 sources."global-https://github.com/component/global/archive/v2.0.1.tar.gz" 124110 123667 sources."har-schema-2.0.0" 124111 123668 sources."har-validator-5.1.5" 123669 + sources."has-1.0.3" 124112 123670 sources."has-binary-data-0.1.1" 124113 123671 sources."has-cors-1.0.3" 123672 + sources."has-symbols-1.0.3" 124114 123673 (sources."htmlparser2-3.7.3" // { 124115 123674 dependencies = [ 124116 123675 sources."domutils-1.5.1" 124117 123676 sources."entities-1.0.0" 124118 123677 ]; 124119 123678 }) 124120 - sources."http-errors-1.8.1" 123679 + sources."http-errors-2.0.0" 124121 123680 sources."http-signature-1.2.0" 124122 123681 sources."iconv-lite-0.4.24" 124123 123682 sources."indexof-0.0.1" ··· 124151 123710 sources."negotiator-0.6.3" 124152 123711 sources."oauth-sign-0.9.0" 124153 123712 sources."object-component-0.0.3" 124154 - sources."on-finished-2.3.0" 123713 + sources."object-inspect-1.12.0" 123714 + sources."on-finished-2.4.1" 124155 123715 sources."options-0.0.6" 124156 123716 sources."parsejson-0.0.1" 124157 123717 sources."parseqs-0.0.2" ··· 124163 123723 sources."proxy-addr-2.0.7" 124164 123724 sources."psl-1.8.0" 124165 123725 sources."punycode-2.1.1" 124166 - sources."qs-6.9.7" 123726 + sources."qs-6.10.3" 124167 123727 sources."range-parser-1.2.1" 124168 - sources."raw-body-2.4.3" 123728 + sources."raw-body-2.5.1" 124169 123729 sources."read-1.0.7" 124170 123730 sources."readable-stream-1.1.14" 124171 123731 (sources."request-2.88.2" // { ··· 124175 123735 }) 124176 123736 sources."safe-buffer-5.2.1" 124177 123737 sources."safer-buffer-2.1.2" 124178 - (sources."send-0.17.2" // { 123738 + (sources."send-0.18.0" // { 124179 123739 dependencies = [ 124180 123740 sources."ms-2.1.3" 124181 123741 ]; 124182 123742 }) 124183 - sources."serve-static-1.14.2" 123743 + sources."serve-static-1.15.0" 124184 123744 sources."setprototypeof-1.2.0" 123745 + sources."side-channel-1.0.4" 124185 123746 sources."slate-irc-0.7.3" 124186 123747 (sources."slate-irc-parser-0.0.2" // { 124187 123748 dependencies = [ ··· 124212 123773 }) 124213 123774 sources."split-1.0.1" 124214 123775 sources."sshpk-1.17.0" 124215 - sources."statuses-1.5.0" 123776 + sources."statuses-2.0.1" 124216 123777 sources."stream-combiner-0.2.2" 124217 123778 sources."string_decoder-0.10.31" 124218 123779 sources."through-2.3.8" ··· 124647 124208 snyk = nodeEnv.buildNodePackage { 124648 124209 name = "snyk"; 124649 124210 packageName = "snyk"; 124650 - version = "1.908.0"; 124211 + version = "1.915.0"; 124651 124212 src = fetchurl { 124652 - url = "https://registry.npmjs.org/snyk/-/snyk-1.908.0.tgz"; 124653 - sha512 = "fti0j50hDdDBwrwVfLGaHN+xCBvktpxDYIqpJ9pk0IMgQrxBM7fum6l5Pim+Jaq7tZASD3S3p+7RL4JWsS3O/A=="; 124213 + url = "https://registry.npmjs.org/snyk/-/snyk-1.915.0.tgz"; 124214 + sha512 = "1b7HkeFdD33hA/yWbAhenPIMJeqxR0w377+HsgIUHqDbbBVMvgEkz93tlZE3WigaiQ1J09R6bA4QA1/ELMnUNA=="; 124654 124215 }; 124655 124216 buildInputs = globalBuildInputs; 124656 124217 meta = { ··· 124664 124225 "socket.io" = nodeEnv.buildNodePackage { 124665 124226 name = "socket.io"; 124666 124227 packageName = "socket.io"; 124667 - version = "4.4.1"; 124228 + version = "4.5.0"; 124668 124229 src = fetchurl { 124669 - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.4.1.tgz"; 124670 - sha512 = "s04vrBswdQBUmuWJuuNTmXUVJhP0cVky8bBDhdkf8y0Ptsu7fKU2LuLbts9g+pdmAdyMMn8F/9Mf1/wbtUN0fg=="; 124230 + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.5.0.tgz"; 124231 + sha512 = "slTYqU2jCgMjXwresG8grhUi/cC6GjzmcfqArzaH3BN/9I/42eZk9yamNvZJdBfTubkjEdKAKs12NEztId+bUA=="; 124671 124232 }; 124672 124233 dependencies = [ 124673 - sources."@socket.io/base64-arraybuffer-1.0.2" 124674 124234 sources."@types/component-emitter-1.2.11" 124675 124235 sources."@types/cookie-0.4.1" 124676 124236 sources."@types/cors-2.8.12" 124677 - sources."@types/node-17.0.25" 124237 + sources."@types/node-17.0.31" 124678 124238 sources."accepts-1.3.8" 124679 124239 sources."base64id-2.0.0" 124680 124240 sources."component-emitter-1.3.0" 124681 124241 sources."cookie-0.4.2" 124682 124242 sources."cors-2.8.5" 124683 124243 sources."debug-4.3.4" 124684 - sources."engine.io-6.1.3" 124685 - sources."engine.io-parser-5.0.3" 124244 + sources."engine.io-6.2.0" 124245 + sources."engine.io-parser-5.0.4" 124686 124246 sources."mime-db-1.52.0" 124687 124247 sources."mime-types-2.1.35" 124688 124248 sources."ms-2.1.2" 124689 124249 sources."negotiator-0.6.3" 124690 124250 sources."object-assign-4.1.1" 124691 - sources."socket.io-adapter-2.3.3" 124251 + sources."socket.io-adapter-2.4.0" 124692 124252 sources."socket.io-parser-4.0.4" 124693 124253 sources."vary-1.1.2" 124694 124254 sources."ws-8.2.3" ··· 124929 124489 sources."atomic-file-rw-0.2.2" 124930 124490 sources."attach-ware-1.1.1" 124931 124491 sources."available-typed-arrays-1.0.5" 124932 - sources."b4a-1.3.1" 124492 + sources."b4a-1.5.0" 124933 124493 sources."bail-1.0.5" 124934 124494 sources."balanced-match-1.0.2" 124935 124495 (sources."base-0.11.2" // { ··· 124946 124506 sources."binary-search-1.3.6" 124947 124507 sources."binary-search-bounds-2.0.5" 124948 124508 sources."bindings-1.5.0" 124949 - sources."bipf-1.6.2" 124509 + sources."bipf-1.6.3" 124950 124510 sources."blake2s-1.1.0" 124951 124511 sources."brace-expansion-1.1.11" 124952 124512 sources."braces-1.8.5" ··· 125631 125191 sources."split-string-3.1.0" 125632 125192 (sources."ssb-bendy-butt-0.12.5" // { 125633 125193 dependencies = [ 125634 - sources."ssb-keys-8.2.0" 125194 + sources."ssb-keys-8.2.1" 125635 125195 ]; 125636 125196 }) 125637 125197 sources."ssb-bfe-3.1.3" ··· 125641 125201 sources."ssb-client-4.9.0" 125642 125202 (sources."ssb-config-3.4.6" // { 125643 125203 dependencies = [ 125644 - sources."ssb-keys-8.2.0" 125204 + sources."ssb-keys-8.2.1" 125645 125205 ]; 125646 125206 }) 125647 125207 sources."ssb-db-19.2.0" ··· 125659 125219 sources."mkdirp-1.0.4" 125660 125220 sources."push-stream-11.0.1" 125661 125221 sources."rimraf-3.0.2" 125662 - (sources."ssb-keys-8.2.0" // { 125222 + (sources."ssb-keys-8.2.1" // { 125663 125223 dependencies = [ 125664 125224 sources."mkdirp-0.5.6" 125665 125225 ]; ··· 125704 125264 sources."ssb-uri2-1.7.2" 125705 125265 (sources."ssb-validate-4.1.4" // { 125706 125266 dependencies = [ 125707 - sources."ssb-keys-8.2.0" 125267 + sources."ssb-keys-8.2.1" 125708 125268 ]; 125709 125269 }) 125710 125270 sources."ssb-validate2-0.1.2" ··· 125735 125295 ]; 125736 125296 }) 125737 125297 sources."string-width-1.0.2" 125738 - sources."string.prototype.trim-1.2.5" 125298 + sources."string.prototype.trim-1.2.6" 125739 125299 sources."string.prototype.trimend-1.0.4" 125740 125300 sources."string.prototype.trimstart-1.0.4" 125741 125301 sources."string_decoder-1.1.1" ··· 125775 125335 sources."typedfastbitset-0.2.1" 125776 125336 sources."typewiselite-1.0.0" 125777 125337 sources."uint48be-2.0.1" 125778 - sources."unbox-primitive-1.0.1" 125338 + sources."unbox-primitive-1.0.2" 125779 125339 sources."unherit-1.1.3" 125780 125340 sources."unified-2.1.4" 125781 125341 sources."union-value-1.0.1" ··· 125913 125473 sources."async-1.5.2" 125914 125474 sources."async-limiter-1.0.1" 125915 125475 sources."asynckit-0.4.0" 125916 - (sources."aws-sdk-2.1118.0" // { 125476 + (sources."aws-sdk-2.1125.0" // { 125917 125477 dependencies = [ 125918 125478 sources."uuid-3.3.2" 125919 125479 ]; ··· 126081 125641 sources."cross-spawn-6.0.5" 126082 125642 ]; 126083 125643 }) 126084 - (sources."express-4.17.3" // { 125644 + (sources."express-4.18.1" // { 126085 125645 dependencies = [ 126086 - sources."body-parser-1.19.2" 126087 - sources."cookie-0.4.2" 126088 - sources."depd-1.1.2" 126089 - sources."http-errors-1.8.1" 126090 - sources."on-finished-2.3.0" 125646 + sources."cookie-0.5.0" 126091 125647 sources."proxy-addr-2.0.7" 126092 - sources."qs-6.9.7" 126093 - sources."raw-body-2.4.3" 125648 + sources."qs-6.10.3" 126094 125649 sources."safe-buffer-5.2.1" 126095 - sources."serve-static-1.14.2" 126096 - sources."statuses-1.5.0" 126097 125650 ]; 126098 125651 }) 126099 125652 (sources."express-validator-2.21.0" // { ··· 126109 125662 sources."fast-deep-equal-3.1.3" 126110 125663 sources."fast-json-stable-stringify-2.1.0" 126111 125664 sources."fd-slicer-1.1.0" 126112 - (sources."finalhandler-1.1.2" // { 126113 - dependencies = [ 126114 - sources."on-finished-2.3.0" 126115 - sources."statuses-1.5.0" 126116 - ]; 126117 - }) 125665 + sources."finalhandler-1.2.0" 126118 125666 sources."find-up-3.0.0" 126119 125667 sources."follow-redirects-1.14.9" 126120 125668 sources."forever-agent-0.6.1" ··· 126444 125992 sources."safer-buffer-2.1.2" 126445 125993 sources."sax-1.2.1" 126446 125994 sources."semver-5.7.1" 126447 - (sources."send-0.17.2" // { 126448 - dependencies = [ 126449 - sources."depd-1.1.2" 126450 - sources."destroy-1.0.4" 126451 - sources."http-errors-1.8.1" 126452 - sources."on-finished-2.3.0" 126453 - sources."statuses-1.5.0" 126454 - ]; 126455 - }) 125995 + sources."send-0.18.0" 126456 125996 (sources."serve-favicon-2.5.0" // { 126457 125997 dependencies = [ 126458 125998 sources."ms-2.1.1" 126459 125999 sources."safe-buffer-5.1.1" 126460 126000 ]; 126461 126001 }) 126462 - (sources."serve-static-1.15.0" // { 126463 - dependencies = [ 126464 - sources."send-0.18.0" 126465 - ]; 126466 - }) 126002 + sources."serve-static-1.15.0" 126467 126003 sources."set-blocking-2.0.0" 126468 126004 sources."setprototypeof-1.2.0" 126469 126005 sources."shebang-command-1.2.0" ··· 126631 126167 sources."which-1.3.1" 126632 126168 sources."which-module-2.0.0" 126633 126169 sources."window-size-0.1.0" 126634 - (sources."winston-2.4.5" // { 126170 + (sources."winston-2.4.6" // { 126635 126171 dependencies = [ 126636 - sources."async-1.0.0" 126172 + sources."async-3.2.3" 126637 126173 ]; 126638 126174 }) 126639 126175 sources."with-5.1.1" ··· 126713 126249 stylelint = nodeEnv.buildNodePackage { 126714 126250 name = "stylelint"; 126715 126251 packageName = "stylelint"; 126716 - version = "14.7.1"; 126252 + version = "14.8.1"; 126717 126253 src = fetchurl { 126718 - url = "https://registry.npmjs.org/stylelint/-/stylelint-14.7.1.tgz"; 126719 - sha512 = "rUOWm67hrzGXXyO/cInENEejF4urh1dLgOb9cr/3XLDb/t/A+rXQp3p6+no8o8QCKTgBUdhVUq/bXMgE988PJw=="; 126254 + url = "https://registry.npmjs.org/stylelint/-/stylelint-14.8.1.tgz"; 126255 + sha512 = "0YxTop3wTeEVmQWhS7jjLFaBkvfPmffRiJ6eFIDlK++f3OklaobTYFJu32E5u/cIrFLbcW52pLqrYpihA/y0/w=="; 126720 126256 }; 126721 126257 dependencies = [ 126722 126258 sources."@babel/code-frame-7.16.7" ··· 126844 126380 sources."path-type-4.0.0" 126845 126381 sources."picocolors-1.0.0" 126846 126382 sources."picomatch-2.3.1" 126847 - sources."postcss-8.4.12" 126383 + sources."postcss-8.4.13" 126848 126384 sources."postcss-media-query-parser-0.2.3" 126849 126385 sources."postcss-resolve-nested-selector-0.1.1" 126850 126386 sources."postcss-safe-parser-6.0.0" ··· 127076 126612 sources."@nodelib/fs.scandir-2.1.5" 127077 126613 sources."@nodelib/fs.stat-2.0.5" 127078 126614 sources."@nodelib/fs.walk-1.2.8" 127079 - sources."@types/node-17.0.25" 126615 + sources."@types/node-17.0.31" 127080 126616 sources."@types/pug-2.0.6" 127081 126617 sources."@types/sass-1.43.1" 127082 126618 sources."anymatch-3.1.2" ··· 127133 126669 sources."strip-indent-3.0.0" 127134 126670 sources."svelte-preprocess-4.10.6" 127135 126671 sources."to-regex-range-5.0.1" 127136 - sources."typescript-4.6.3" 126672 + sources."typescript-4.6.4" 127137 126673 sources."wrappy-1.0.2" 127138 126674 ]; 127139 126675 buildInputs = globalBuildInputs; ··· 127161 126697 sources."@nodelib/fs.scandir-2.1.5" 127162 126698 sources."@nodelib/fs.stat-2.0.5" 127163 126699 sources."@nodelib/fs.walk-1.2.8" 127164 - sources."@types/node-17.0.25" 126700 + sources."@types/node-17.0.31" 127165 126701 sources."@types/pug-2.0.6" 127166 126702 sources."@types/sass-1.43.1" 127167 126703 sources."anymatch-3.1.2" ··· 127219 126755 sources."source-map-0.7.3" 127220 126756 sources."sourcemap-codec-1.4.8" 127221 126757 sources."strip-indent-3.0.0" 127222 - sources."svelte-3.47.0" 126758 + sources."svelte-3.48.0" 127223 126759 sources."svelte-preprocess-4.10.6" 127224 126760 sources."svelte2tsx-0.5.9" 127225 126761 sources."to-regex-range-5.0.1" 127226 - sources."tslib-2.3.1" 127227 - sources."typescript-4.6.3" 126762 + sources."tslib-2.4.0" 126763 + sources."typescript-4.6.4" 127228 126764 sources."vscode-css-languageservice-5.1.13" 127229 126765 (sources."vscode-emmet-helper-2.6.4" // { 127230 126766 dependencies = [ ··· 127246 126782 }) 127247 126783 sources."vscode-languageserver-textdocument-1.0.4" 127248 126784 sources."vscode-languageserver-types-3.16.0" 127249 - sources."vscode-nls-5.0.0" 126785 + sources."vscode-nls-5.0.1" 127250 126786 sources."vscode-uri-3.0.3" 127251 126787 sources."wrappy-1.0.2" 127252 126788 ]; ··· 128001 127537 sources."path-parse-1.0.7" 128002 127538 sources."picocolors-1.0.0" 128003 127539 sources."picomatch-2.3.1" 128004 - sources."postcss-8.4.12" 127540 + sources."postcss-8.4.13" 128005 127541 sources."postcss-js-4.0.0" 128006 127542 sources."postcss-load-config-3.1.4" 128007 127543 sources."postcss-nested-5.0.6" ··· 128134 127670 sources."tr46-0.0.3" 128135 127671 sources."tunnel-agent-0.6.0" 128136 127672 sources."tweetnacl-1.0.3" 128137 - sources."typegram-3.9.0" 127673 + sources."typegram-3.9.1" 128138 127674 sources."uri-js-4.4.1" 128139 127675 sources."uuid-3.4.0" 128140 127676 sources."verror-1.10.0" ··· 128232 127768 terser = nodeEnv.buildNodePackage { 128233 127769 name = "terser"; 128234 127770 packageName = "terser"; 128235 - version = "5.12.1"; 127771 + version = "5.13.1"; 128236 127772 src = fetchurl { 128237 - url = "https://registry.npmjs.org/terser/-/terser-5.12.1.tgz"; 128238 - sha512 = "NXbs+7nisos5E+yXwAD+y7zrcTkMqb0dEJxIGtSKPdCBzopf7ni4odPul2aechpV7EXNvOudYOX2bb5tln1jbQ=="; 127773 + url = "https://registry.npmjs.org/terser/-/terser-5.13.1.tgz"; 127774 + sha512 = "hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA=="; 128239 127775 }; 128240 127776 dependencies = [ 128241 - sources."acorn-8.7.0" 127777 + sources."acorn-8.7.1" 128242 127778 sources."buffer-from-1.1.2" 128243 127779 sources."commander-2.20.3" 128244 - sources."source-map-0.7.3" 127780 + sources."lodash.sortby-4.7.0" 127781 + sources."punycode-2.1.1" 127782 + sources."source-map-0.8.0-beta.0" 128245 127783 (sources."source-map-support-0.5.21" // { 128246 127784 dependencies = [ 128247 127785 sources."source-map-0.6.1" 128248 127786 ]; 128249 127787 }) 127788 + sources."tr46-1.0.1" 127789 + sources."webidl-conversions-4.0.2" 127790 + sources."whatwg-url-7.1.0" 128250 127791 ]; 128251 127792 buildInputs = globalBuildInputs; 128252 127793 meta = { ··· 129153 128694 sources."side-channel-1.0.4" 129154 128695 sources."string.prototype.trimend-1.0.4" 129155 128696 sources."string.prototype.trimstart-1.0.4" 129156 - sources."unbox-primitive-1.0.1" 128697 + sources."unbox-primitive-1.0.2" 129157 128698 sources."which-boxed-primitive-1.0.2" 129158 128699 ]; 129159 128700 buildInputs = globalBuildInputs; ··· 129265 128806 sources."side-channel-1.0.4" 129266 128807 sources."string.prototype.trimend-1.0.4" 129267 128808 sources."string.prototype.trimstart-1.0.4" 129268 - sources."unbox-primitive-1.0.1" 128809 + sources."unbox-primitive-1.0.2" 129269 128810 sources."which-boxed-primitive-1.0.2" 129270 128811 ]; 129271 128812 buildInputs = globalBuildInputs; ··· 129325 128866 sources."@fastify/busboy-1.0.0" 129326 128867 sources."@mapbox/node-pre-gyp-1.0.9" 129327 128868 sources."@sindresorhus/is-4.6.0" 129328 - sources."@socket.io/base64-arraybuffer-1.0.2" 129329 128869 sources."@szmarczak/http-timer-4.0.6" 129330 128870 sources."@tokenizer/token-0.3.0" 129331 128871 sources."@types/cacheable-request-6.0.2" ··· 129335 128875 sources."@types/http-cache-semantics-4.0.1" 129336 128876 sources."@types/json-buffer-3.0.0" 129337 128877 sources."@types/keyv-3.1.4" 129338 - sources."@types/node-17.0.25" 128878 + sources."@types/node-17.0.31" 129339 128879 sources."@types/responselike-1.0.0" 129340 128880 sources."abbrev-1.1.1" 129341 128881 sources."abstract-logging-2.0.1" ··· 129387 128927 sources."content-type-1.0.4" 129388 128928 sources."cookie-0.4.2" 129389 128929 sources."cookie-signature-1.0.6" 129390 - sources."core-js-3.22.1" 128930 + sources."core-js-3.22.3" 129391 128931 sources."core-util-is-1.0.2" 129392 128932 sources."cors-2.8.5" 129393 128933 sources."css-select-4.3.0" ··· 129420 128960 sources."ms-2.1.2" 129421 128961 ]; 129422 128962 }) 129423 - sources."engine.io-parser-5.0.3" 128963 + sources."engine.io-parser-5.0.4" 129424 128964 sources."entities-2.2.0" 129425 128965 sources."es-abstract-1.19.5" 129426 128966 sources."es-to-primitive-1.2.1" ··· 129617 129157 sources."token-types-4.2.0" 129618 129158 sources."tr46-0.0.3" 129619 129159 sources."trim-repeated-1.0.0" 129620 - sources."tslib-2.3.1" 129160 + sources."tslib-2.4.0" 129621 129161 sources."type-is-1.6.18" 129622 129162 sources."ua-parser-js-1.0.2" 129623 129163 sources."uc.micro-1.0.6" 129624 - sources."unbox-primitive-1.0.1" 129164 + sources."unbox-primitive-1.0.2" 129625 129165 sources."unpipe-1.0.0" 129626 129166 sources."urlsafe-base64-1.0.0" 129627 129167 sources."util-0.12.4" ··· 129669 129209 sources."@fastify/busboy-1.0.0" 129670 129210 sources."@mapbox/node-pre-gyp-1.0.9" 129671 129211 sources."@sindresorhus/is-4.6.0" 129672 - sources."@socket.io/base64-arraybuffer-1.0.2" 129673 129212 sources."@szmarczak/http-timer-4.0.6" 129674 129213 sources."@tokenizer/token-0.3.0" 129675 129214 sources."@types/cacheable-request-6.0.2" ··· 129679 129218 sources."@types/http-cache-semantics-4.0.1" 129680 129219 sources."@types/json-buffer-3.0.0" 129681 129220 sources."@types/keyv-3.1.4" 129682 - sources."@types/node-17.0.25" 129221 + sources."@types/node-17.0.31" 129683 129222 sources."@types/responselike-1.0.0" 129684 129223 sources."abbrev-1.1.1" 129685 129224 sources."abstract-logging-2.0.1" ··· 129731 129270 sources."content-type-1.0.4" 129732 129271 sources."cookie-0.4.2" 129733 129272 sources."cookie-signature-1.0.6" 129734 - sources."core-js-3.22.1" 129273 + sources."core-js-3.22.3" 129735 129274 sources."core-util-is-1.0.2" 129736 129275 sources."cors-2.8.5" 129737 129276 sources."css-select-4.3.0" ··· 129764 129303 sources."ms-2.1.2" 129765 129304 ]; 129766 129305 }) 129767 - sources."engine.io-parser-5.0.3" 129306 + sources."engine.io-parser-5.0.4" 129768 129307 sources."entities-2.2.0" 129769 129308 sources."es-abstract-1.19.5" 129770 129309 sources."es-to-primitive-1.2.1" ··· 129962 129501 sources."token-types-4.2.0" 129963 129502 sources."tr46-0.0.3" 129964 129503 sources."trim-repeated-1.0.0" 129965 - sources."tslib-2.3.1" 129504 + sources."tslib-2.4.0" 129966 129505 sources."type-is-1.6.18" 129967 129506 sources."ua-parser-js-1.0.2" 129968 129507 sources."uc.micro-1.0.6" 129969 - sources."unbox-primitive-1.0.1" 129508 + sources."unbox-primitive-1.0.2" 129970 129509 sources."unpipe-1.0.0" 129971 129510 sources."urlsafe-base64-1.0.0" 129972 129511 sources."util-0.12.4" ··· 130096 129635 sources."content-type-1.0.4" 130097 129636 sources."cookie-0.4.0" 130098 129637 sources."cookie-signature-1.0.6" 130099 - sources."core-js-3.22.1" 129638 + sources."core-js-3.22.3" 130100 129639 sources."core-util-is-1.0.2" 130101 129640 sources."css-select-1.2.0" 130102 129641 sources."css-what-2.1.3" ··· 130550 130089 thelounge-theme-chord = nodeEnv.buildNodePackage { 130551 130090 name = "thelounge-theme-chord"; 130552 130091 packageName = "thelounge-theme-chord"; 130553 - version = "1.1.6"; 130092 + version = "1.1.9"; 130554 130093 src = fetchurl { 130555 - url = "https://registry.npmjs.org/thelounge-theme-chord/-/thelounge-theme-chord-1.1.6.tgz"; 130556 - sha512 = "fcazTSuzpxjrxSv5VQ39iBjYwRFZViwknpnEy34k12JWcPdSVXb9XXneoF09ffsS4NdYqdDAWlNwQMHC+uORKA=="; 130094 + url = "https://registry.npmjs.org/thelounge-theme-chord/-/thelounge-theme-chord-1.1.9.tgz"; 130095 + sha512 = "DPjUxjF4N+uk0tdc6e3nkQf4CV3PzJ1rW9xl4xm7gyYb5YtMAVhHrpJSm3NpZcmLJ8jhZlzJk+KXYhc1Q1jf6A=="; 130557 130096 }; 130558 130097 buildInputs = globalBuildInputs; 130559 130098 meta = { ··· 130689 130228 sources."@types/http-cache-semantics-4.0.1" 130690 130229 sources."@types/json-buffer-3.0.0" 130691 130230 sources."@types/keyv-3.1.4" 130692 - sources."@types/node-17.0.25" 130231 + sources."@types/node-17.0.31" 130693 130232 sources."@types/responselike-1.0.0" 130694 130233 sources."abbrev-1.1.1" 130695 130234 sources."abstract-logging-2.0.1" ··· 130770 130309 sources."content-type-1.0.4" 130771 130310 sources."cookie-0.4.0" 130772 130311 sources."cookie-signature-1.0.6" 130773 - sources."core-js-3.22.1" 130312 + sources."core-js-3.22.3" 130774 130313 sources."core-util-is-1.0.2" 130775 130314 sources."css-select-1.2.0" 130776 130315 sources."css-what-2.1.3" ··· 131156 130695 sources."@types/http-cache-semantics-4.0.1" 131157 130696 sources."@types/json-buffer-3.0.0" 131158 130697 sources."@types/keyv-3.1.4" 131159 - sources."@types/node-17.0.25" 130698 + sources."@types/node-17.0.31" 131160 130699 sources."@types/responselike-1.0.0" 131161 130700 sources."abbrev-1.1.1" 131162 130701 sources."abstract-logging-2.0.1" ··· 131237 130776 sources."content-type-1.0.4" 131238 130777 sources."cookie-0.4.0" 131239 130778 sources."cookie-signature-1.0.6" 131240 - sources."core-js-3.22.1" 130779 + sources."core-js-3.22.3" 131241 130780 sources."core-util-is-1.0.2" 131242 130781 sources."css-select-1.2.0" 131243 130782 sources."css-what-2.1.3" ··· 131682 131221 thelounge-theme-midnight = nodeEnv.buildNodePackage { 131683 131222 name = "thelounge-theme-midnight"; 131684 131223 packageName = "thelounge-theme-midnight"; 131685 - version = "1.1.7"; 131224 + version = "1.1.8"; 131686 131225 src = fetchurl { 131687 - url = "https://registry.npmjs.org/thelounge-theme-midnight/-/thelounge-theme-midnight-1.1.7.tgz"; 131688 - sha512 = "fRAeJx4+VHLacDhJL8papjHwBQgqmvnUCGt9ATF5tISTjxJNES9iRFMVWBw9tJwdW3e2HexwsPXLYeIABERLjg=="; 131226 + url = "https://registry.npmjs.org/thelounge-theme-midnight/-/thelounge-theme-midnight-1.1.8.tgz"; 131227 + sha512 = "E9i+7y9IBz/DiS/0ja2tIYnor9PpBUkp4jPM8Tpz6JRblytCPOzGAQ6Zn52hRaaCZGhk3cZKswuapQIbkH6Wfw=="; 131689 131228 }; 131690 131229 buildInputs = globalBuildInputs; 131691 131230 meta = { ··· 132006 131545 three = nodeEnv.buildNodePackage { 132007 131546 name = "three"; 132008 131547 packageName = "three"; 132009 - version = "0.139.2"; 131548 + version = "0.140.0"; 132010 131549 src = fetchurl { 132011 - url = "https://registry.npmjs.org/three/-/three-0.139.2.tgz"; 132012 - sha512 = "gV7q7QY8rogu7HLFZR9cWnOQAUedUhu2WXAnpr2kdXZP9YDKsG/0ychwQvWkZN5PlNw9mv5MoCTin6zNTXoONg=="; 131550 + url = "https://registry.npmjs.org/three/-/three-0.140.0.tgz"; 131551 + sha512 = "jcHjbnYspPLDdsDQChmzyAoZ5KhJbgFk6pNGlAIc9fQMvsfPGjF5H9glrngqvb2CR/qXcClMyp5PYdF996lldA=="; 132013 131552 }; 132014 131553 buildInputs = globalBuildInputs; 132015 131554 meta = { ··· 132444 131983 sources."@tsconfig/node12-1.0.9" 132445 131984 sources."@tsconfig/node14-1.0.1" 132446 131985 sources."@tsconfig/node16-1.0.2" 132447 - sources."acorn-8.7.0" 131986 + sources."acorn-8.7.1" 132448 131987 sources."acorn-walk-8.2.0" 132449 131988 sources."arg-4.1.3" 132450 131989 sources."create-require-1.1.1" ··· 132487 132026 typescript = nodeEnv.buildNodePackage { 132488 132027 name = "typescript"; 132489 132028 packageName = "typescript"; 132490 - version = "4.6.3"; 132029 + version = "4.6.4"; 132491 132030 src = fetchurl { 132492 - url = "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz"; 132493 - sha512 = "yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw=="; 132031 + url = "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz"; 132032 + sha512 = "9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg=="; 132494 132033 }; 132495 132034 buildInputs = globalBuildInputs; 132496 132035 meta = { ··· 132643 132182 sources."@dabh/diagnostics-2.0.3" 132644 132183 sources."@primer/octicons-17.0.0" 132645 132184 sources."@sindresorhus/is-4.6.0" 132646 - sources."@socket.io/base64-arraybuffer-1.0.2" 132647 132185 sources."@szmarczak/http-timer-4.0.6" 132648 132186 sources."@types/cacheable-request-6.0.2" 132649 132187 sources."@types/component-emitter-1.2.11" ··· 132652 132190 sources."@types/http-cache-semantics-4.0.1" 132653 132191 sources."@types/json-buffer-3.0.0" 132654 132192 sources."@types/keyv-3.1.4" 132655 - sources."@types/node-16.11.27" 132193 + sources."@types/node-16.11.33" 132656 132194 sources."@types/responselike-1.0.0" 132657 132195 sources."abbrev-1.1.1" 132658 132196 sources."accepts-1.3.8" ··· 132681 132219 sources."color-3.2.1" 132682 132220 sources."color-convert-1.9.3" 132683 132221 sources."color-name-1.1.3" 132684 - sources."color-string-1.9.0" 132222 + sources."color-string-1.9.1" 132685 132223 sources."colorspace-1.1.4" 132686 132224 sources."component-emitter-1.3.0" 132687 132225 sources."compress-brotli-1.3.6" ··· 132724 132262 sources."ms-2.1.2" 132725 132263 ]; 132726 132264 }) 132727 - sources."engine.io-parser-5.0.3" 132265 + sources."engine.io-parser-5.0.4" 132728 132266 sources."error-ex-1.3.2" 132729 132267 sources."escalade-3.1.1" 132730 132268 sources."escape-html-1.0.3" ··· 132916 132454 ]; 132917 132455 }) 132918 132456 sources."type-is-1.6.18" 132919 - sources."typescript-4.6.3" 132457 + sources."typescript-4.6.4" 132920 132458 sources."uid-safe-2.1.5" 132921 132459 sources."unpipe-1.0.0" 132922 132460 sources."util-deprecate-1.0.2" ··· 132969 132507 sources."@types/is-empty-1.2.1" 132970 132508 sources."@types/js-yaml-4.0.5" 132971 132509 sources."@types/ms-0.7.31" 132972 - sources."@types/node-17.0.25" 132510 + sources."@types/node-17.0.31" 132973 132511 sources."@types/supports-color-8.1.1" 132974 132512 sources."@types/unist-2.0.6" 132975 132513 sources."ansi-regex-6.0.1" ··· 133274 132812 vercel = nodeEnv.buildNodePackage { 133275 132813 name = "vercel"; 133276 132814 packageName = "vercel"; 133277 - version = "24.1.0"; 132815 + version = "24.2.0"; 133278 132816 src = fetchurl { 133279 - url = "https://registry.npmjs.org/vercel/-/vercel-24.1.0.tgz"; 133280 - sha512 = "OSX9Dn7+EAQnITdx4+cvfhtOLIi81qzbQwh9FtLmDOarba+reXDDTAJX/yxtcohSLT2NmyJ8mDyIdhr/5FeE8g=="; 132817 + url = "https://registry.npmjs.org/vercel/-/vercel-24.2.0.tgz"; 132818 + sha512 = "XC0ejLnWJ90hk6K9r3zycClhpzCz3hU4p7vStvbQe73r+kyqzLEdop1CB+vBg5jSy7ApE+6pz0fon7TWA1gNrg=="; 133281 132819 }; 133282 132820 dependencies = [ 133283 132821 sources."@sindresorhus/is-0.14.0" 133284 132822 sources."@szmarczak/http-timer-1.1.2" 133285 - sources."@types/node-17.0.25" 133286 - sources."@vercel/build-utils-2.15.1" 133287 - sources."@vercel/go-1.3.2" 133288 - sources."@vercel/node-1.14.1" 133289 - sources."@vercel/node-bridge-2.2.0" 133290 - sources."@vercel/python-2.2.2" 133291 - sources."@vercel/ruby-1.3.2" 132823 + sources."@types/node-17.0.31" 132824 + sources."@vercel/build-utils-2.16.0" 132825 + sources."@vercel/go-1.4.0" 132826 + sources."@vercel/node-1.15.0" 132827 + sources."@vercel/node-bridge-2.2.1" 132828 + sources."@vercel/python-2.3.0" 132829 + sources."@vercel/ruby-1.3.3" 133292 132830 sources."ansi-align-3.0.1" 133293 132831 sources."ansi-regex-5.0.1" 133294 132832 sources."ansi-styles-4.3.0" ··· 133589 133127 sources."tsutils-2.29.0" 133590 133128 sources."type-check-0.4.0" 133591 133129 sources."type-fest-0.20.2" 133592 - sources."typescript-4.6.3" 133130 + sources."typescript-4.6.4" 133593 133131 sources."uri-js-4.4.1" 133594 133132 sources."v8-compile-cache-2.3.0" 133595 133133 (sources."vue-eslint-parser-7.11.0" // { ··· 133700 133238 sources."request-light-0.4.0" 133701 133239 (sources."vscode-json-languageservice-4.2.1" // { 133702 133240 dependencies = [ 133703 - sources."vscode-nls-5.0.0" 133241 + sources."vscode-nls-5.0.1" 133704 133242 ]; 133705 133243 }) 133706 133244 sources."vscode-jsonrpc-6.0.0" ··· 133745 133283 (sources."vscode-json-languageservice-3.11.0" // { 133746 133284 dependencies = [ 133747 133285 sources."jsonc-parser-3.0.0" 133748 - sources."vscode-nls-5.0.0" 133286 + sources."vscode-nls-5.0.1" 133749 133287 sources."vscode-uri-2.1.2" 133750 133288 ]; 133751 133289 }) ··· 133780 133318 sha512 = "HZfrlqpVu8N0UkSyjldPsGFpVFByYaDRDMmBvmKwKai2rAsd2vtde2CFnX9rOpmg3pN2vET8j3qtqZvZLzmkjQ=="; 133781 133319 }; 133782 133320 dependencies = [ 133783 - sources."core-js-3.22.1" 133321 + sources."core-js-3.22.3" 133784 133322 sources."jsonc-parser-3.0.0" 133785 133323 sources."regenerator-runtime-0.13.9" 133786 133324 sources."request-light-0.5.8" 133787 - sources."typescript-4.6.3" 133788 - sources."vscode-css-languageservice-5.4.1" 133789 - sources."vscode-html-languageservice-4.2.4" 133325 + sources."typescript-4.6.4" 133326 + sources."vscode-css-languageservice-5.4.2" 133327 + sources."vscode-html-languageservice-4.2.5" 133790 133328 sources."vscode-json-languageservice-4.2.1" 133791 - sources."vscode-jsonrpc-8.0.0-next.7" 133792 - sources."vscode-languageserver-8.0.0-next.10" 133793 - (sources."vscode-languageserver-protocol-3.17.0-next.16" // { 133329 + sources."vscode-jsonrpc-8.0.0-next.8" 133330 + sources."vscode-languageserver-8.0.0-next.14" 133331 + (sources."vscode-languageserver-protocol-3.17.0-next.20" // { 133794 133332 dependencies = [ 133795 - sources."vscode-languageserver-types-3.17.0-next.9" 133333 + sources."vscode-languageserver-types-3.17.0-next.12" 133796 133334 ]; 133797 133335 }) 133798 133336 sources."vscode-languageserver-textdocument-1.0.4" 133799 133337 sources."vscode-languageserver-types-3.16.0" 133800 - sources."vscode-nls-5.0.0" 133338 + sources."vscode-nls-5.0.1" 133801 133339 sources."vscode-uri-3.0.3" 133802 133340 sources."yarn-1.22.18" 133803 133341 ]; ··· 133847 133385 sources."@webpack-cli/serve-1.6.1" 133848 133386 sources."@xtuc/ieee754-1.2.0" 133849 133387 sources."@xtuc/long-4.2.2" 133850 - sources."acorn-8.7.0" 133388 + sources."acorn-8.7.1" 133851 133389 sources."acorn-import-assertions-1.8.0" 133852 133390 sources."ajv-6.12.6" 133853 133391 sources."ajv-keywords-3.5.2" ··· 133864 133402 sources."brace-expansion-1.1.11" 133865 133403 sources."braces-3.0.2" 133866 133404 sources."browser-stdout-1.3.1" 133867 - sources."browserslist-4.20.2" 133405 + sources."browserslist-4.20.3" 133868 133406 sources."buffer-crc32-0.2.13" 133869 133407 sources."buffer-from-1.1.2" 133870 133408 sources."call-bind-1.0.2" 133871 133409 sources."camelcase-6.3.0" 133872 - sources."caniuse-lite-1.0.30001332" 133410 + sources."caniuse-lite-1.0.30001334" 133873 133411 (sources."chalk-4.1.2" // { 133874 133412 dependencies = [ 133875 133413 sources."supports-color-7.2.0" ··· 133909 133447 sources."domelementtype-2.3.0" 133910 133448 sources."domhandler-4.3.1" 133911 133449 sources."domutils-2.8.0" 133912 - sources."electron-to-chromium-1.4.114" 133450 + sources."electron-to-chromium-1.4.129" 133913 133451 sources."emoji-regex-8.0.0" 133914 133452 sources."emojis-list-3.0.0" 133915 133453 sources."enhanced-resolve-5.9.3" ··· 133980 133518 sources."loader-utils-2.0.2" 133981 133519 sources."locate-path-6.0.0" 133982 133520 sources."lodash-4.17.21" 133521 + sources."lodash.sortby-4.7.0" 133983 133522 sources."log-symbols-4.0.0" 133984 133523 sources."lru-cache-6.0.0" 133985 133524 (sources."markdown-it-10.0.0" // { ··· 134010 133549 sources."mute-stream-0.0.8" 134011 133550 sources."nanoid-3.1.20" 134012 133551 sources."neo-async-2.6.2" 134013 - sources."node-releases-2.0.3" 133552 + sources."node-releases-2.0.4" 134014 133553 sources."normalize-path-3.0.0" 134015 133554 sources."npm-run-path-4.0.1" 134016 133555 sources."nth-check-2.0.1" ··· 134075 133614 sources."supports-color-8.1.1" 134076 133615 sources."supports-preserve-symlinks-flag-1.0.0" 134077 133616 sources."tapable-2.2.1" 134078 - (sources."terser-5.12.1" // { 133617 + (sources."terser-5.13.1" // { 134079 133618 dependencies = [ 134080 133619 sources."commander-2.20.3" 134081 - sources."source-map-0.7.3" 133620 + sources."source-map-0.8.0-beta.0" 134082 133621 ]; 134083 133622 }) 134084 133623 (sources."terser-webpack-plugin-5.3.1" // { ··· 134088 133627 }) 134089 133628 sources."tmp-0.0.29" 134090 133629 sources."to-regex-range-5.0.1" 134091 - (sources."ts-loader-8.3.0" // { 133630 + sources."tr46-1.0.1" 133631 + (sources."ts-loader-8.4.0" // { 134092 133632 dependencies = [ 134093 133633 sources."enhanced-resolve-4.5.0" 134094 133634 sources."semver-7.3.7" 134095 133635 sources."tapable-1.1.3" 134096 133636 ]; 134097 133637 }) 134098 - sources."tslib-2.3.1" 133638 + sources."tslib-2.4.0" 134099 133639 sources."tunnel-0.0.6" 134100 133640 sources."typed-rest-client-1.8.6" 134101 - sources."typescript-4.6.3" 133641 + sources."typescript-4.6.4" 134102 133642 sources."uc.micro-1.0.6" 134103 - sources."underscore-1.13.2" 133643 + sources."underscore-1.13.3" 134104 133644 sources."uri-js-4.4.1" 134105 133645 sources."url-join-1.1.0" 134106 133646 sources."util-deprecate-1.0.2" ··· 134118 133658 sources."vscode-debugadapter-testsupport-1.51.0" 134119 133659 sources."vscode-debugprotocol-1.51.0" 134120 133660 sources."watchpack-2.3.1" 133661 + sources."webidl-conversions-4.0.2" 134121 133662 sources."webpack-5.72.0" 134122 133663 (sources."webpack-cli-4.9.2" // { 134123 133664 dependencies = [ ··· 134126 133667 }) 134127 133668 sources."webpack-merge-5.8.0" 134128 133669 sources."webpack-sources-3.2.3" 133670 + sources."whatwg-url-7.1.0" 134129 133671 sources."which-2.0.2" 134130 133672 sources."wide-align-1.1.3" 134131 133673 sources."wildcard-2.0.0" ··· 134484 134026 sources."@starptech/rehype-webparser-0.10.0" 134485 134027 sources."@starptech/webparser-0.10.0" 134486 134028 sources."@szmarczak/http-timer-1.1.2" 134487 - sources."@types/node-17.0.25" 134029 + sources."@types/node-17.0.31" 134488 134030 sources."@types/unist-2.0.6" 134489 134031 sources."@types/vfile-3.0.2" 134490 134032 sources."@types/vfile-message-2.0.0" ··· 135351 134893 sources."vscode-languageserver-protocol-3.16.0" 135352 134894 sources."vscode-languageserver-textdocument-1.0.4" 135353 134895 sources."vscode-languageserver-types-3.16.0" 135354 - sources."vscode-nls-5.0.0" 134896 + sources."vscode-nls-5.0.1" 135355 134897 sources."vscode-textbuffer-1.0.0" 135356 134898 sources."vscode-uri-1.0.8" 135357 134899 (sources."vue-eslint-parser-6.0.5" // { ··· 135416 134958 sources."@types/raf-3.4.0" 135417 134959 sources."abab-2.0.6" 135418 134960 sources."abbrev-1.1.1" 135419 - sources."acorn-8.7.0" 134961 + sources."acorn-8.7.1" 135420 134962 (sources."acorn-globals-6.0.0" // { 135421 134963 dependencies = [ 135422 134964 sources."acorn-7.4.1" ··· 135445 134987 sources."combined-stream-1.0.8" 135446 134988 sources."concat-map-0.0.1" 135447 134989 sources."console-control-strings-1.1.0" 135448 - sources."core-js-pure-3.22.1" 134990 + sources."core-js-pure-3.22.3" 135449 134991 sources."cssom-0.4.4" 135450 134992 (sources."cssstyle-2.3.0" // { 135451 134993 dependencies = [ ··· 135625 135167 sources."@devicefarmer/adbkit-2.11.3" 135626 135168 sources."@devicefarmer/adbkit-logcat-1.1.0" 135627 135169 sources."@devicefarmer/adbkit-monkey-1.0.1" 135628 - (sources."@eslint/eslintrc-1.2.1" // { 135170 + (sources."@eslint/eslintrc-1.2.2" // { 135629 135171 dependencies = [ 135630 135172 sources."debug-4.3.4" 135631 135173 sources."ms-2.1.2" ··· 135642 135184 sources."@sindresorhus/is-0.14.0" 135643 135185 sources."@szmarczak/http-timer-1.1.2" 135644 135186 sources."@types/minimatch-3.0.5" 135645 - sources."@types/node-17.0.25" 135187 + sources."@types/node-17.0.31" 135646 135188 sources."@types/yauzl-2.9.2" 135647 - sources."acorn-8.7.0" 135189 + sources."acorn-8.7.1" 135648 135190 sources."acorn-jsx-5.3.2" 135649 135191 (sources."addons-linter-4.14.0" // { 135650 135192 dependencies = [ ··· 136067 135609 ]; 136068 135610 }) 136069 135611 sources."signal-exit-3.0.7" 136070 - sources."sonic-boom-2.7.0" 135612 + sources."sonic-boom-2.8.0" 136071 135613 sources."source-map-0.6.1" 136072 135614 sources."source-map-js-1.0.2" 136073 135615 sources."source-map-support-0.5.20" ··· 136096 135638 sources."to-readable-stream-1.0.0" 136097 135639 sources."tosource-1.0.0" 136098 135640 sources."tough-cookie-2.5.0" 136099 - sources."tslib-2.3.1" 135641 + sources."tslib-2.4.0" 136100 135642 sources."tunnel-agent-0.6.0" 136101 135643 sources."tweetnacl-0.14.5" 136102 135644 sources."type-check-0.4.0" ··· 136170 135712 sources."@types/eslint-scope-3.7.3" 136171 135713 sources."@types/estree-0.0.51" 136172 135714 sources."@types/json-schema-7.0.11" 136173 - sources."@types/node-17.0.25" 135715 + sources."@types/node-17.0.31" 136174 135716 sources."@webassemblyjs/ast-1.11.1" 136175 135717 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 136176 135718 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 136188 135730 sources."@webassemblyjs/wast-printer-1.11.1" 136189 135731 sources."@xtuc/ieee754-1.2.0" 136190 135732 sources."@xtuc/long-4.2.2" 136191 - sources."acorn-8.7.0" 135733 + sources."acorn-8.7.1" 136192 135734 sources."acorn-import-assertions-1.8.0" 136193 135735 sources."ajv-6.12.6" 136194 135736 sources."ajv-keywords-3.5.2" 136195 - sources."browserslist-4.20.2" 135737 + sources."browserslist-4.20.3" 136196 135738 sources."buffer-from-1.1.2" 136197 - sources."caniuse-lite-1.0.30001332" 135739 + sources."caniuse-lite-1.0.30001334" 136198 135740 sources."chrome-trace-event-1.0.3" 136199 135741 sources."commander-2.20.3" 136200 - sources."electron-to-chromium-1.4.114" 135742 + sources."electron-to-chromium-1.4.129" 136201 135743 sources."enhanced-resolve-5.9.3" 136202 135744 sources."es-module-lexer-0.9.3" 136203 135745 sources."escalade-3.1.1" ··· 136218 135760 sources."json-parse-better-errors-1.0.2" 136219 135761 sources."json-schema-traverse-0.4.1" 136220 135762 sources."loader-runner-4.3.0" 135763 + sources."lodash.sortby-4.7.0" 136221 135764 sources."merge-stream-2.0.0" 136222 135765 sources."mime-db-1.52.0" 136223 135766 sources."mime-types-2.1.35" 136224 135767 sources."neo-async-2.6.2" 136225 - sources."node-releases-2.0.3" 135768 + sources."node-releases-2.0.4" 136226 135769 sources."picocolors-1.0.0" 136227 135770 sources."punycode-2.1.1" 136228 135771 sources."randombytes-2.1.0" ··· 136233 135776 sources."source-map-support-0.5.21" 136234 135777 sources."supports-color-8.1.1" 136235 135778 sources."tapable-2.2.1" 136236 - (sources."terser-5.12.1" // { 135779 + (sources."terser-5.13.1" // { 136237 135780 dependencies = [ 136238 - sources."source-map-0.7.3" 135781 + sources."source-map-0.8.0-beta.0" 136239 135782 ]; 136240 135783 }) 136241 135784 sources."terser-webpack-plugin-5.3.1" 135785 + sources."tr46-1.0.1" 136242 135786 sources."uri-js-4.4.1" 136243 135787 sources."watchpack-2.3.1" 135788 + sources."webidl-conversions-4.0.2" 136244 135789 sources."webpack-sources-3.2.3" 135790 + sources."whatwg-url-7.1.0" 136245 135791 ]; 136246 135792 buildInputs = globalBuildInputs; 136247 135793 meta = { ··· 136341 135887 sources."@types/http-proxy-1.17.8" 136342 135888 sources."@types/json-schema-7.0.11" 136343 135889 sources."@types/mime-1.3.2" 136344 - sources."@types/node-17.0.25" 135890 + sources."@types/node-17.0.31" 136345 135891 sources."@types/qs-6.9.7" 136346 135892 sources."@types/range-parser-1.2.4" 136347 - sources."@types/retry-0.12.1" 135893 + sources."@types/retry-0.12.0" 136348 135894 sources."@types/serve-index-1.9.1" 136349 135895 sources."@types/serve-static-1.13.10" 136350 135896 sources."@types/sockjs-0.3.33" ··· 136360 135906 sources."balanced-match-1.0.2" 136361 135907 sources."batch-0.6.1" 136362 135908 sources."binary-extensions-2.2.0" 136363 - (sources."body-parser-1.19.2" // { 135909 + (sources."body-parser-1.20.0" // { 136364 135910 dependencies = [ 136365 135911 sources."bytes-3.1.2" 136366 135912 ]; 136367 135913 }) 136368 - sources."bonjour-service-1.0.11" 135914 + sources."bonjour-service-1.0.12" 136369 135915 sources."brace-expansion-1.1.11" 136370 135916 sources."braces-3.0.2" 136371 135917 sources."bytes-3.0.0" 135918 + sources."call-bind-1.0.2" 136372 135919 sources."chokidar-3.5.3" 136373 135920 sources."colorette-2.0.16" 136374 135921 sources."compressible-2.0.18" ··· 136381 135928 ]; 136382 135929 }) 136383 135930 sources."content-type-1.0.4" 136384 - sources."cookie-0.4.2" 135931 + sources."cookie-0.5.0" 136385 135932 sources."cookie-signature-1.0.6" 136386 135933 sources."core-util-is-1.0.3" 136387 135934 sources."cross-spawn-7.0.3" 136388 135935 sources."debug-2.6.9" 136389 135936 sources."default-gateway-6.0.3" 136390 135937 sources."define-lazy-prop-2.0.0" 136391 - sources."depd-1.1.2" 136392 - sources."destroy-1.0.4" 135938 + sources."depd-2.0.0" 135939 + sources."destroy-1.2.0" 136393 135940 sources."detect-node-2.1.0" 136394 135941 sources."dns-equal-1.0.0" 136395 135942 sources."dns-packet-5.3.1" ··· 136399 135946 sources."etag-1.8.1" 136400 135947 sources."eventemitter3-4.0.7" 136401 135948 sources."execa-5.1.1" 136402 - (sources."express-4.17.3" // { 135949 + (sources."express-4.18.1" // { 136403 135950 dependencies = [ 136404 135951 sources."array-flatten-1.1.1" 136405 135952 sources."safe-buffer-5.2.1" ··· 136408 135955 sources."fast-deep-equal-3.1.3" 136409 135956 sources."faye-websocket-0.11.4" 136410 135957 sources."fill-range-7.0.1" 136411 - sources."finalhandler-1.1.2" 135958 + sources."finalhandler-1.2.0" 136412 135959 sources."follow-redirects-1.14.9" 136413 135960 sources."forwarded-0.2.0" 136414 135961 sources."fresh-0.5.2" 136415 135962 sources."fs-monkey-1.0.3" 136416 135963 sources."fs.realpath-1.0.0" 136417 135964 sources."fsevents-2.3.2" 135965 + sources."function-bind-1.1.1" 135966 + sources."get-intrinsic-1.1.1" 136418 135967 sources."get-stream-6.0.1" 136419 135968 sources."glob-7.2.0" 136420 135969 sources."glob-parent-5.1.2" 136421 135970 sources."graceful-fs-4.2.10" 136422 135971 sources."handle-thing-2.0.1" 135972 + sources."has-1.0.3" 135973 + sources."has-symbols-1.0.3" 136423 135974 (sources."hpack.js-2.1.6" // { 136424 135975 dependencies = [ 136425 135976 sources."readable-stream-2.3.7" ··· 136427 135978 }) 136428 135979 sources."html-entities-2.3.3" 136429 135980 sources."http-deceiver-1.2.7" 136430 - sources."http-errors-1.8.1" 135981 + sources."http-errors-2.0.0" 136431 135982 sources."http-parser-js-0.5.6" 136432 135983 sources."http-proxy-1.18.1" 136433 135984 sources."http-proxy-middleware-2.0.6" ··· 136468 136019 sources."node-forge-1.3.1" 136469 136020 sources."normalize-path-3.0.0" 136470 136021 sources."npm-run-path-4.0.1" 136022 + sources."object-inspect-1.12.0" 136471 136023 sources."obuf-1.1.2" 136472 - sources."on-finished-2.3.0" 136024 + sources."on-finished-2.4.1" 136473 136025 sources."on-headers-1.0.2" 136474 136026 sources."once-1.4.0" 136475 136027 sources."onetime-5.1.2" 136476 136028 sources."open-8.4.0" 136477 - sources."p-retry-4.6.1" 136029 + sources."p-retry-4.6.2" 136478 136030 sources."parseurl-1.3.3" 136479 136031 sources."path-is-absolute-1.0.1" 136480 136032 sources."path-key-3.1.1" ··· 136493 136045 ]; 136494 136046 }) 136495 136047 sources."punycode-2.1.1" 136496 - sources."qs-6.9.7" 136048 + sources."qs-6.10.3" 136497 136049 sources."range-parser-1.2.1" 136498 - (sources."raw-body-2.4.3" // { 136050 + (sources."raw-body-2.5.1" // { 136499 136051 dependencies = [ 136500 136052 sources."bytes-3.1.2" 136501 136053 ]; ··· 136511 136063 sources."schema-utils-4.0.0" 136512 136064 sources."select-hose-2.0.0" 136513 136065 sources."selfsigned-2.0.1" 136514 - (sources."send-0.17.2" // { 136066 + (sources."send-0.18.0" // { 136515 136067 dependencies = [ 136516 136068 sources."ms-2.1.3" 136517 136069 ]; 136518 136070 }) 136519 136071 (sources."serve-index-1.9.1" // { 136520 136072 dependencies = [ 136073 + sources."depd-1.1.2" 136521 136074 sources."http-errors-1.6.3" 136522 136075 sources."inherits-2.0.3" 136523 136076 sources."setprototypeof-1.1.0" 136077 + sources."statuses-1.5.0" 136524 136078 ]; 136525 136079 }) 136526 - sources."serve-static-1.14.2" 136080 + sources."serve-static-1.15.0" 136527 136081 sources."setprototypeof-1.2.0" 136528 136082 sources."shebang-command-2.0.0" 136529 136083 sources."shebang-regex-3.0.0" 136084 + sources."side-channel-1.0.4" 136530 136085 sources."signal-exit-3.0.7" 136531 136086 sources."sockjs-0.3.24" 136532 136087 (sources."spdy-4.0.2" // { ··· 136541 136096 sources."ms-2.1.2" 136542 136097 ]; 136543 136098 }) 136544 - sources."statuses-1.5.0" 136099 + sources."statuses-2.0.1" 136545 136100 sources."string_decoder-1.1.1" 136546 136101 sources."strip-final-newline-2.0.0" 136547 136102 sources."thunky-1.1.0" ··· 136560 136115 sources."websocket-extensions-0.1.4" 136561 136116 sources."which-2.0.2" 136562 136117 sources."wrappy-1.0.2" 136563 - sources."ws-8.5.0" 136118 + sources."ws-8.6.0" 136564 136119 ]; 136565 136120 buildInputs = globalBuildInputs; 136566 136121 meta = { ··· 136654 136209 sources."@protobufjs/path-1.1.2" 136655 136210 sources."@protobufjs/pool-1.1.0" 136656 136211 sources."@protobufjs/utf8-1.1.0" 136657 - sources."@types/long-4.0.1" 136658 - sources."@types/node-17.0.25" 136212 + sources."@types/long-4.0.2" 136213 + sources."@types/node-17.0.31" 136659 136214 sources."@webtorrent/http-node-1.3.0" 136660 136215 sources."addr-to-ip-port-1.5.4" 136661 136216 sources."airplay-js-0.3.0" 136662 136217 sources."ansi-regex-5.0.1" 136663 136218 sources."ansi-styles-4.3.0" 136664 - sources."b4a-1.3.1" 136219 + sources."b4a-1.5.0" 136665 136220 sources."balanced-match-1.0.2" 136666 136221 sources."base64-js-1.5.1" 136667 136222 sources."bencode-2.0.2" 136668 136223 sources."bep53-range-1.1.1" 136669 136224 sources."binary-search-1.3.6" 136670 - sources."bitfield-4.0.0" 136225 + sources."bitfield-4.1.0" 136671 136226 (sources."bittorrent-dht-10.0.2" // { 136672 136227 dependencies = [ 136673 136228 sources."debug-4.3.4" ··· 136681 136236 ]; 136682 136237 }) 136683 136238 sources."bittorrent-peerid-1.3.4" 136684 - (sources."bittorrent-protocol-3.5.2" // { 136239 + (sources."bittorrent-protocol-3.5.5" // { 136685 136240 dependencies = [ 136686 136241 sources."debug-4.3.4" 136687 136242 sources."ms-2.1.2" ··· 136955 136510 sources."utp-native-2.5.3" 136956 136511 sources."videostream-3.2.2" 136957 136512 sources."vlc-command-1.2.0" 136958 - (sources."webtorrent-1.8.13" // { 136513 + (sources."webtorrent-1.8.16" // { 136959 136514 dependencies = [ 136960 136515 sources."debug-4.3.4" 136961 136516 sources."decompress-response-6.0.0" ··· 137033 136588 yaml-language-server = nodeEnv.buildNodePackage { 137034 136589 name = "yaml-language-server"; 137035 136590 packageName = "yaml-language-server"; 137036 - version = "1.6.0"; 136591 + version = "1.7.0"; 137037 136592 src = fetchurl { 137038 - url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.6.0.tgz"; 137039 - sha512 = "4L8vgCuqRZgfjVnAPW8nKKj5dq4QBSc8LoceCaqtufVxHK+G6MVjI5aT9wHLO1/W07RXSyr0vYqSap7B1GFZ6w=="; 136593 + url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.7.0.tgz"; 136594 + sha512 = "lIn8cKP7WvXAs/9ybENadjA/RZ3z0eT+/Qxu/Qhh9aG7U3FTtmO6xauRAih4Gxm4qZeBE1t4C31XB8B/KOQRtw=="; 137040 136595 }; 137041 136596 dependencies = [ 137042 136597 sources."jsonc-parser-3.0.0" ··· 137047 136602 sources."vscode-languageserver-protocol-3.16.0" 137048 136603 sources."vscode-languageserver-textdocument-1.0.4" 137049 136604 sources."vscode-languageserver-types-3.16.0" 137050 - sources."vscode-nls-5.0.0" 136605 + sources."vscode-nls-5.0.1" 137051 136606 sources."vscode-uri-3.0.3" 137052 - sources."yaml-2.0.0-10" 136607 + sources."yaml-2.0.0-11" 137053 136608 ]; 137054 136609 buildInputs = globalBuildInputs; 137055 136610 meta = { ··· 137173 136728 ]; 137174 136729 }) 137175 136730 sources."@npmcli/installed-package-contents-1.0.7" 137176 - (sources."@npmcli/map-workspaces-2.0.2" // { 136731 + (sources."@npmcli/map-workspaces-2.0.3" // { 137177 136732 dependencies = [ 137178 136733 sources."minimatch-5.0.1" 137179 136734 ]; ··· 137267 136822 sources."builtins-1.0.3" 137268 136823 (sources."cacache-15.3.0" // { 137269 136824 dependencies = [ 136825 + sources."glob-7.2.0" 137270 136826 sources."mkdirp-1.0.4" 137271 136827 ]; 137272 136828 }) ··· 137313 136869 sources."config-chain-1.1.13" 137314 136870 sources."configstore-3.1.5" 137315 136871 sources."console-control-strings-1.1.0" 137316 - sources."core-js-3.22.1" 136872 + sources."core-js-3.22.3" 137317 136873 sources."core-util-is-1.0.3" 137318 136874 sources."create-error-class-3.0.2" 137319 136875 sources."cross-spawn-6.0.5" ··· 137393 136949 sources."get-stdin-4.0.1" 137394 136950 sources."get-stream-4.1.0" 137395 136951 sources."getpass-0.1.7" 137396 - sources."glob-7.2.0" 136952 + (sources."glob-8.0.1" // { 136953 + dependencies = [ 136954 + sources."minimatch-5.0.1" 136955 + ]; 136956 + }) 137397 136957 sources."glob-parent-5.1.2" 137398 136958 (sources."global-agent-2.2.0" // { 137399 136959 dependencies = [ ··· 137519 137079 sources."json-stringify-safe-5.0.1" 137520 137080 sources."jsonparse-1.3.1" 137521 137081 sources."jsprim-1.4.2" 137522 - sources."just-diff-5.0.1" 137082 + sources."just-diff-5.0.2" 137523 137083 sources."just-diff-apply-5.2.0" 137524 137084 sources."keyv-3.0.0" 137525 137085 (sources."latest-version-3.1.0" // { ··· 137615 137175 sources."are-we-there-yet-3.0.0" 137616 137176 sources."env-paths-2.2.1" 137617 137177 sources."gauge-4.0.4" 137178 + sources."glob-7.2.0" 137618 137179 sources."is-fullwidth-code-point-3.0.0" 137619 - sources."npmlog-6.0.1" 137180 + sources."npmlog-6.0.2" 137620 137181 sources."readable-stream-3.6.0" 137621 137182 sources."semver-7.3.7" 137622 137183 sources."string-width-4.2.3" ··· 137652 137213 sources."semver-7.3.7" 137653 137214 ]; 137654 137215 }) 137655 - sources."npm-packlist-3.0.0" 137216 + (sources."npm-packlist-3.0.0" // { 137217 + dependencies = [ 137218 + sources."glob-7.2.0" 137219 + ]; 137220 + }) 137656 137221 (sources."npm-pick-manifest-6.1.1" // { 137657 137222 dependencies = [ 137658 137223 sources."semver-7.3.7" ··· 137663 137228 sources."@npmcli/fs-2.1.0" 137664 137229 sources."@npmcli/move-file-2.0.0" 137665 137230 sources."@tootallnate/once-2.0.0" 137666 - sources."cacache-16.0.4" 137231 + sources."cacache-16.0.7" 137667 137232 sources."debug-4.3.4" 137668 137233 sources."http-cache-semantics-4.1.0" 137669 137234 sources."http-proxy-agent-5.0.0" 137670 - sources."lru-cache-7.8.1" 137235 + sources."lru-cache-7.9.0" 137671 137236 (sources."make-fetch-happen-10.1.2" // { 137672 137237 dependencies = [ 137673 137238 sources."minipass-fetch-2.1.0" ··· 137846 137411 sources."restore-cursor-2.0.0" 137847 137412 sources."retry-0.12.0" 137848 137413 sources."reusify-1.0.4" 137849 - sources."rimraf-3.0.2" 137414 + (sources."rimraf-3.0.2" // { 137415 + dependencies = [ 137416 + sources."glob-7.2.0" 137417 + ]; 137418 + }) 137850 137419 sources."roarr-2.15.4" 137851 137420 sources."root-check-1.0.0" 137852 137421 sources."run-async-2.4.1" ··· 138030 137599 sources."wide-align-1.1.5" 138031 137600 sources."widest-line-2.0.1" 138032 137601 sources."windows-release-3.3.3" 138033 - (sources."wrap-ansi-2.1.0" // { 137602 + (sources."wrap-ansi-7.0.0" // { 138034 137603 dependencies = [ 138035 - sources."ansi-regex-2.1.1" 138036 - sources."is-fullwidth-code-point-1.0.0" 138037 - sources."string-width-1.0.2" 138038 - sources."strip-ansi-3.0.1" 137604 + sources."ansi-regex-5.0.1" 137605 + sources."ansi-styles-4.3.0" 137606 + sources."color-convert-2.0.1" 137607 + sources."color-name-1.1.4" 137608 + sources."is-fullwidth-code-point-3.0.0" 137609 + sources."string-width-4.2.3" 137610 + sources."strip-ansi-6.0.1" 138039 137611 ]; 138040 137612 }) 138041 137613 sources."wrappy-1.0.2" ··· 138073 137645 sources."gauge-3.0.2" 138074 137646 sources."get-stream-6.0.1" 138075 137647 sources."has-flag-4.0.0" 138076 - sources."inquirer-8.2.2" 137648 + sources."inquirer-8.2.4" 138077 137649 sources."is-fullwidth-code-point-3.0.0" 138078 137650 sources."is-stream-2.0.1" 138079 137651 sources."locate-path-6.0.0" ··· 138096 137668 sources."string-width-4.2.3" 138097 137669 sources."strip-ansi-6.0.1" 138098 137670 sources."supports-color-7.2.0" 138099 - sources."tslib-2.3.1" 137671 + sources."tslib-2.4.0" 138100 137672 sources."type-fest-0.21.3" 138101 137673 sources."which-2.0.2" 138102 137674 ]; ··· 138110 137682 sources."ansi-styles-2.2.1" 138111 137683 ]; 138112 137684 }) 137685 + sources."is-fullwidth-code-point-1.0.0" 138113 137686 sources."strip-ansi-3.0.1" 138114 137687 sources."supports-color-2.0.0" 137688 + (sources."wrap-ansi-2.1.0" // { 137689 + dependencies = [ 137690 + sources."string-width-1.0.2" 137691 + ]; 137692 + }) 138115 137693 ]; 138116 137694 }) 138117 137695 ]; ··· 138139 137717 sources."@nodelib/fs.walk-1.2.8" 138140 137718 sources."@types/fs-extra-9.0.13" 138141 137719 sources."@types/minimist-1.2.2" 138142 - sources."@types/node-17.0.25" 137720 + sources."@types/node-17.0.31" 138143 137721 sources."@types/which-2.0.1" 138144 137722 sources."braces-3.0.2" 138145 137723 sources."chalk-5.0.1" ··· 138168 137746 sources."micromatch-4.0.5" 138169 137747 sources."minimist-1.2.6" 138170 137748 sources."node-domexception-1.0.0" 138171 - sources."node-fetch-3.2.3" 137749 + sources."node-fetch-3.2.4" 138172 137750 sources."path-type-4.0.0" 138173 137751 sources."pause-stream-0.0.11" 138174 137752 sources."picomatch-2.3.1"
+2 -2
pkgs/development/python-modules/gtts/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "gtts"; 18 - version = "2.2.3"; 18 + version = "2.2.4"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "pndurette"; 22 22 repo = "gTTS"; 23 23 rev = "v${version}"; 24 - sha256 = "1pj7lyd1r72nxs3sgd78awpbsz41g4idjvbsjjp4chfq4qnsq0ji"; 24 + sha256 = "sha256-hQnFHi85Rifco0afLF8kKNOy9oPxKoupfmdm+fht6Cg="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/jwcrypto/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "jwcrypto"; 10 - version = "1.0"; 10 + version = "1.2"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "f88816eb0a41b8f006af978ced5f171f33782525006cdb055b536a40f4d46ac9"; 14 + sha256 = "sha256-7fQwkyFyHlFhzvzN1ksEUJ4Dkk/q894IW0d4B2WYmuM="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+37 -14
pkgs/development/python-modules/pathy/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , dataclasses 3 4 , fetchPypi 5 + , fetchpatch 6 + , google-cloud-storage 7 + , mock 4 8 , pytestCheckHook 9 + , pythonOlder 10 + , smart-open 5 11 , typer 6 - , smart-open 7 - , mock 8 - , google-cloud-storage 9 12 }: 10 13 11 14 buildPythonPackage rec { 12 15 pname = "pathy"; 13 16 version = "0.6.1"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.6"; 14 20 15 21 src = fetchPypi { 16 22 inherit pname version; 17 23 sha256 = "838624441f799a06b446a657e4ecc9ebc3fdd05234397e044a7c87e8f6e76b1c"; 18 24 }; 19 25 20 - propagatedBuildInputs = [ smart-open typer google-cloud-storage ]; 26 + propagatedBuildInputs = [ 27 + smart-open 28 + typer 29 + google-cloud-storage 30 + ] ++ lib.optionals (pythonOlder "3.7") [ 31 + dataclasses 32 + ]; 21 33 22 - postPatch = '' 23 - substituteInPlace requirements.txt \ 24 - --replace "smart-open>=2.2.0,<4.0.0" "smart-open>=2.2.0" 25 - ''; 34 + checkInputs = [ 35 + mock 36 + pytestCheckHook 37 + ]; 38 + 39 + patches = [ 40 + # Support for smart-open >= 6.0.0, https://github.com/justindujardin/pathy/pull/71 41 + (fetchpatch { 42 + name = "support-later-smart-open.patch"; 43 + url = "https://github.com/justindujardin/pathy/commit/ba1c23df6ee5d1e57bdfe845ff6a9315cba3df6a.patch"; 44 + sha256 = "sha256-V1i4tx73Xkdqb/wZhQIv4p6FVpF9SEfDhlBkwaaRE3w="; 45 + }) 46 + ]; 26 47 27 - checkInputs = [ pytestCheckHook mock ]; 48 + disabledTestPaths = [ 49 + # Exclude tests that require provider credentials 50 + "pathy/_tests/test_clients.py" 51 + "pathy/_tests/test_gcs.py" 52 + "pathy/_tests/test_s3.py" 53 + ]; 28 54 29 - # Exclude tests that require provider credentials 30 - pytestFlagsArray = [ 31 - "--ignore=pathy/_tests/test_clients.py" 32 - "--ignore=pathy/_tests/test_gcs.py" 33 - "--ignore=pathy/_tests/test_s3.py" 55 + pythonImportsCheck = [ 56 + "pathy" 34 57 ]; 35 58 36 59 meta = with lib; {
+2 -2
pkgs/development/python-modules/python-smarttub/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "python-smarttub"; 16 - version = "0.0.31"; 16 + version = "0.0.32"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "mdz"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - sha256 = "sha256-tyE50HzwnrxXGWJ0+YRxCmSxtqrPnYmJzBH2ZDFJDZ4="; 25 + sha256 = "sha256-3qAs0vL6YGFDsMFC3KAhSc/axxVOll/SOswaJgVi9Hc="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/scikit-survival/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "scikit-survival"; 19 - version = "0.17.1"; 19 + version = "0.17.2"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - sha256 = "sha256-Sx+reZKBbahjkVgo8hC8EP5vMsRhnprwGjKumQqH83k="; 23 + sha256 = "sha256-eP58TcFxNG0J32YgnaGhWkkjAC08F3ooPLwMv4ZUA1U="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+8 -26
pkgs/development/python-modules/smart-open/default.nix
··· 9 9 , google-cloud-storage 10 10 , requests 11 11 , moto 12 - , parameterizedtestcase 13 12 , pytestCheckHook 14 13 }: 15 14 16 15 buildPythonPackage rec { 17 16 pname = "smart-open"; 18 - version = "5.2.1"; 17 + version = "6.0.0"; 18 + format = "setuptools"; 19 19 20 - disabled = pythonOlder "3.5"; 20 + disabled = pythonOlder "3.6"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "RaRe-Technologies"; 24 24 repo = "smart_open"; 25 25 rev = "v${version}"; 26 - sha256 = "13a1qsb4vwrhx45hz4qcl0d7bgv20ai5vsy7cq0q6qbj212nff19"; 26 + sha256 = "sha256-FEIJ1DBW0mz7n+J03C1Lg8uAs2ZxI0giM7+mvuNPyGg="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [ ··· 37 37 38 38 checkInputs = [ 39 39 moto 40 - parameterizedtestcase 41 40 pytestCheckHook 42 41 ]; 43 42 44 - pytestFlagsArray = [ "smart_open" ]; 45 - 46 - disabledTestPaths = [ 47 - "smart_open/tests/test_http.py" 48 - "smart_open/tests/test_s3.py" 49 - "smart_open/tests/test_s3_version.py" 50 - "smart_open/tests/test_sanity.py" 43 + pytestFlagsArray = [ 44 + "smart_open" 51 45 ]; 52 46 53 - disabledTests = [ 54 - "test_compression_invalid" 55 - "test_gs_uri_contains_question_mark" 56 - "test_gzip_compress_sanity" 57 - "test_http" 58 - "test_ignore_ext" 59 - "test_initialize_write" 60 - "test_read_explicit" 61 - "test_s3_handles_querystring" 62 - "test_s3_uri_contains_question_mark" 63 - "test_webhdfs" 64 - "test_write" 47 + pythonImportsCheck = [ 48 + "smart_open" 65 49 ]; 66 - 67 - pythonImportsCheck = [ "smart_open" ]; 68 50 69 51 meta = with lib; { 70 52 description = "Library for efficient streaming of very large file";
+2 -2
pkgs/development/python-modules/snowflake-sqlalchemy/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "snowflake-sqlalchemy"; 10 - version = "1.3.3"; 10 + version = "1.3.4"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "d1c087ce0a90bbce77f2308b9c4aeb14efeb26a3ae9da7c3d5a153341cd8ef34"; 14 + sha256 = "sha256-nXTPnWChj/rIMmPoVZr1AhY7tHVRygmpNmh1oGR6W4A="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+8 -6
pkgs/development/python-modules/spacy-transformers/default.nix
··· 2 2 , callPackage 3 3 , fetchPypi 4 4 , buildPythonPackage 5 + , dataclasses 5 6 , pytorch 6 7 , pythonOlder 7 8 , spacy ··· 13 14 buildPythonPackage rec { 14 15 pname = "spacy-transformers"; 15 16 version = "1.1.5"; 17 + format = "setuptools"; 16 18 17 19 disabled = pythonOlder "3.6"; 18 20 19 21 src = fetchPypi { 20 22 inherit pname version; 21 - sha256 = "sha256-nxbmnFyHptbe5M7rQi2ECGoBpxUuutdCtY20eHsGDPI="; 23 + hash = "sha256-nxbmnFyHptbe5M7rQi2ECGoBpxUuutdCtY20eHsGDPI="; 22 24 }; 23 25 24 - postPatch = '' 25 - sed -i 's/transformers>=3.4.0,<4.13.0/transformers/' setup.cfg 26 - ''; 27 - 28 26 propagatedBuildInputs = [ 29 27 pytorch 30 28 spacy 31 29 spacy-alignments 32 30 srsly 33 31 transformers 32 + ] ++ lib.optionals (pythonOlder "3.7") [ 33 + dataclasses 34 34 ]; 35 35 36 36 # Test fails due to missing arguments for trfs2arrays(). 37 37 doCheck = false; 38 38 39 - pythonImportsCheck = [ "spacy_transformers" ]; 39 + pythonImportsCheck = [ 40 + "spacy_transformers" 41 + ]; 40 42 41 43 passthru.tests.annotation = callPackage ./annotation-test { }; 42 44
+26 -21
pkgs/development/python-modules/spacy/default.nix
··· 1 1 { lib 2 + , blis 2 3 , buildPythonPackage 3 4 , callPackage 4 - , fetchPypi 5 - , pythonOlder 6 - , pytest 7 - , blis 8 5 , catalogue 9 6 , cymem 7 + , fetchPypi 10 8 , jinja2 11 9 , jsonschema 10 + , langcodes 12 11 , murmurhash 13 12 , numpy 13 + , packaging 14 + , pathy 14 15 , preshed 16 + , pydantic 17 + , pytest 18 + , python 19 + , pythonOlder 15 20 , requests 16 21 , setuptools 17 - , srsly 18 22 , spacy-legacy 23 + , spacy-loggers 24 + , srsly 19 25 , thinc 20 - , typer 21 - , wasabi 22 - , packaging 23 - , pathy 24 - , pydantic 25 - , python 26 26 , tqdm 27 + , typer 27 28 , typing-extensions 28 - , spacy-loggers 29 - , langcodes 29 + , wasabi 30 30 }: 31 31 32 32 buildPythonPackage rec { 33 33 pname = "spacy"; 34 - version = "3.2.4"; 34 + version = "3.3.0"; 35 + format = "setuptools"; 35 36 36 37 disabled = pythonOlder "3.6"; 37 38 38 39 src = fetchPypi { 39 40 inherit pname version; 40 - sha256 = "sha256-PkxvKY1UBEWC2soRQrCC7jiDG7PXu5MdLuYB6Ljc5k8="; 41 + hash = "sha256-xJ1Q++NxWtxXQUGTZ7OaRo0lVmSEIvELb8Tt846uLLM="; 41 42 }; 42 43 43 44 propagatedBuildInputs = [ ··· 46 47 cymem 47 48 jinja2 48 49 jsonschema 50 + langcodes 49 51 murmurhash 50 52 numpy 51 53 packaging ··· 54 56 pydantic 55 57 requests 56 58 setuptools 57 - srsly 58 59 spacy-legacy 60 + spacy-loggers 61 + srsly 59 62 thinc 60 63 tqdm 61 64 typer 62 65 wasabi 63 - spacy-loggers 64 - langcodes 65 - ] ++ lib.optional (pythonOlder "3.8") typing-extensions; 66 + ] ++ lib.optional (pythonOlder "3.8") [ 67 + typing-extensions 68 + ]; 66 69 67 70 postPatch = '' 68 71 substituteInPlace setup.cfg \ ··· 78 81 ${python.interpreter} -m pytest spacy/tests --vectors --models --slow 79 82 ''; 80 83 81 - pythonImportsCheck = [ "spacy" ]; 84 + pythonImportsCheck = [ 85 + "spacy" 86 + ]; 82 87 83 88 passthru.tests.annotation = callPackage ./annotation-test { }; 84 89 85 90 meta = with lib; { 86 - description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython"; 91 + description = "Industrial-strength Natural Language Processing (NLP)"; 87 92 homepage = "https://github.com/explosion/spaCy"; 88 93 license = licenses.mit; 89 94 maintainers = with maintainers; [ ];
+21 -7
pkgs/development/python-modules/sphinxcontrib-spelling/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "sphinxcontrib-spelling"; 13 - version = "7.3.2"; 13 + version = "7.3.3"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 14 17 15 18 src = fetchPypi { 16 19 inherit pname version; 17 - sha256 = "9d66dc4990749c5ac52e7eaf17e82f4dc6b4aff6515d26bbf48821829d41bd02"; 20 + hash = "sha256-OBnRJinZXgyQkiT6QLRipn4K2zIdUCg9f8DRFobIrH4="; 18 21 }; 19 22 20 - propagatedBuildInputs = [ sphinx pyenchant pbr ] 21 - ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; 23 + nativeBuildInputs = [ 24 + pbr 25 + ]; 26 + 27 + propagatedBuildInputs = [ 28 + sphinx 29 + pyenchant 30 + ] ++ lib.optionals (pythonOlder "3.8") [ 31 + importlib-metadata 32 + ]; 22 33 23 34 # No tests included 24 35 doCheck = false; 25 36 37 + pythonImportsCheck = [ 38 + "sphinxcontrib.spelling" 39 + ]; 40 + 26 41 meta = with lib; { 27 42 description = "Sphinx spelling extension"; 28 - homepage = "https://bitbucket.org/dhellmann/sphinxcontrib-spelling"; 43 + homepage = "https://github.com/sphinx-contrib/spelling"; 44 + license = licenses.bsd2; 29 45 maintainers = with maintainers; [ ]; 30 - license = licenses.bsd2; 31 46 }; 32 - 33 47 }
+57
pkgs/development/python-modules/yte/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , plac 5 + , poetry-core 6 + , pytestCheckHook 7 + , pythonOlder 8 + , pyyaml 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "yte"; 13 + version = "1.2.2"; 14 + format = "pyproject"; 15 + 16 + disabled = pythonOlder "3.7"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "koesterlab"; 20 + repo = pname; 21 + rev = "v${version}"; 22 + sha256 = "sha256-x0CmPiV/6zTnawPW9lgrZ9NsUhmK8fhafwqOP9o3Mdc="; 23 + }; 24 + 25 + nativeBuildInputs = [ 26 + poetry-core 27 + ]; 28 + 29 + propagatedBuildInputs = [ 30 + plac 31 + pyyaml 32 + ]; 33 + 34 + checkInputs = [ 35 + pytestCheckHook 36 + ]; 37 + 38 + pythonImportsCheck = [ 39 + "yte" 40 + ]; 41 + 42 + pytestFlagsArray = [ 43 + "tests.py" 44 + ]; 45 + 46 + preCheck = '' 47 + # The CLI test need yte on the PATH 48 + export PATH=$out/bin:$PATH 49 + ''; 50 + 51 + meta = with lib; { 52 + description = "YAML template engine with Python expressions"; 53 + homepage = "https://github.com/koesterlab/yte"; 54 + license = with licenses; [ mit ]; 55 + maintainers = with maintainers; [ fab ]; 56 + }; 57 + }
-2
pkgs/development/tools/build-managers/bazel/bazel_4/default.nix
··· 484 484 build --host_java_toolchain='${javaToolchain}' 485 485 build --verbose_failures 486 486 build --curses=no 487 - build --sandbox_debug 488 487 EOF 489 488 490 489 # add the same environment vars to compile.sh ··· 498 497 -e "/\$command \\\\$/a --host_java_toolchain='${javaToolchain}' \\\\" \ 499 498 -e "/\$command \\\\$/a --verbose_failures \\\\" \ 500 499 -e "/\$command \\\\$/a --curses=no \\\\" \ 501 - -e "/\$command \\\\$/a --sandbox_debug \\\\" \ 502 500 -i scripts/bootstrap/compile.sh 503 501 504 502 # This is necessary to avoid:
-2
pkgs/development/tools/build-managers/bazel/bazel_5/default.nix
··· 453 453 build --extra_toolchains=@bazel_tools//tools/jdk:nonprebuilt_toolchain_definition 454 454 build --verbose_failures 455 455 build --curses=no 456 - build --sandbox_debug 457 456 build --features=-layering_check 458 457 EOF 459 458 ··· 493 492 -e "/\$command \\\\$/a --verbose_failures \\\\" \ 494 493 -e "/\$command \\\\$/a --curses=no \\\\" \ 495 494 -e "/\$command \\\\$/a --features=-layering_check \\\\" \ 496 - -e "/\$command \\\\$/a --sandbox_debug \\\\" \ 497 495 -i scripts/bootstrap/compile.sh 498 496 499 497 # This is necessary to avoid:
-3
pkgs/servers/http/unit/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, nixosTests, which 2 2 , pcre2 3 - , withPython2 ? false, python2 4 3 , withPython3 ? true, python3, ncurses 5 4 , withPHP74 ? false, php74 6 5 , withPHP80 ? true, php80 ··· 42 41 nativeBuildInputs = [ which ]; 43 42 44 43 buildInputs = [ pcre2.dev ] 45 - ++ optional withPython2 python2 46 44 ++ optionals withPython3 [ python3 ncurses ] 47 45 ++ optional withPHP74 php74-unit 48 46 ++ optional withPHP80 php80-unit ··· 66 64 usedPhp80 = optionals withPHP80 php80-unit; 67 65 68 66 postConfigure = '' 69 - ${optionalString withPython2 "./configure python --module=python2 --config=python2-config --lib-path=${python2}/lib"} 70 67 ${optionalString withPython3 "./configure python --module=python3 --config=python3-config --lib-path=${python3}/lib"} 71 68 ${optionalString withPHP74 "./configure php --module=php74 --config=${php74-unit.unwrapped.dev}/bin/php-config --lib-path=${php74-unit}/lib"} 72 69 ${optionalString withPHP80 "./configure php --module=php80 --config=${php80-unit.unwrapped.dev}/bin/php-config --lib-path=${php80-unit}/lib"}
+5 -2
pkgs/servers/zookeeper/default.nix
··· 37 37 runHook postInstall 38 38 ''; 39 39 40 - passthru.tests = { 41 - nixos = nixosTests.zookeeper; 40 + passthru = { 41 + tests = { 42 + nixos = nixosTests.zookeeper; 43 + }; 44 + inherit jre; 42 45 }; 43 46 44 47 meta = with lib; {
+5 -2
pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 + , glib 3 4 , gettext 4 5 , xorg 5 6 , pkg-config ··· 11 12 12 13 stdenv.mkDerivation rec { 13 14 pname = "ibus-bamboo"; 14 - version = "0.7.0"; 15 + version = "0.7.7"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "BambooEngine"; 18 19 repo = pname; 19 20 rev = "v${version}"; 20 - sha256 = "sha256-WKNDrm8PSU/F8MzpVsJ9oUkbolCxrwbjOZYYNiFr5Qs="; 21 + sha256 = "1qdkimq4n9bxqjlnd00dggvx09cf4wqwk0kpgj01jd0i6ahggns1"; 21 22 }; 22 23 23 24 nativeBuildInputs = [ ··· 28 29 ]; 29 30 30 31 buildInputs = [ 32 + glib 33 + gtk3 31 34 xorg.libX11 32 35 xorg.xorgproto 33 36 xorg.libXtst
+2 -2
pkgs/tools/misc/yle-dl/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "yle-dl"; 5 - version = "20220213"; 5 + version = "20220425"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "aajanki"; 9 9 repo = "yle-dl"; 10 10 rev = version; 11 - sha256 = "sha256-lFb8NwKg8GBgkVsg01rlGrP31APwhFaCFT7QdqiT6J0="; 11 + sha256 = "sha256-PIoJ+enbRwXiszh7BTkfeoA6IfDXoFOi9WitzQp3EQE="; 12 12 }; 13 13 14 14 propagatedBuildInputs = with python3Packages; [
+10 -4
pkgs/tools/misc/ytarchive/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub, makeWrapper, ffmpeg }: 2 2 3 3 buildGoModule rec { 4 4 pname = "ytarchive"; 5 - version = "unstable-2022-02-16"; 5 + version = "unstable-2022-03-11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Kethsar"; 9 9 repo = "ytarchive"; 10 - rev = "66a1ca003de7302c99bda943500257d5fd374199"; 11 - sha256 = "sha256-6eLNyInqXB+LWbZ18DvXbTdpRpiCDMGwJaiyQfZZ4xM="; 10 + rev = "34825e8777637ca114a0ab394a4b4fead6ad7c88"; 11 + sha256 = "sha256-/x6YcF2EyjOFnIHlsh+ZESF+7AYO3QRNaqbJgycQai4="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-r9fDFSCDItQ7YSj9aTY1LXRrFE9T3XD0X36ywCfu0R8="; 15 15 16 + nativeBuildInputs = [ makeWrapper ]; 17 + 16 18 ldflags = [ "-s" "-w" ]; 19 + 20 + postInstall = '' 21 + wrapProgram $out/bin/ytarchive --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} 22 + ''; 17 23 18 24 meta = with lib; { 19 25 homepage = "https://github.com/Kethsar/ytarchive";
+2 -2
pkgs/tools/networking/slirp4netns/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "slirp4netns"; 15 - version = "1.1.12"; 15 + version = "1.2.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "rootless-containers"; 19 19 repo = "slirp4netns"; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-NhE5XxInNfGN6hTyZItc7+4HBjcyBLAFTpirEidcipk="; 21 + sha256 = "sha256-wVisE4YAK52yfeM2itnBqCmhRKlrKRs0NEppQzZPok8="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ autoreconfHook pkg-config ];
+15 -6
pkgs/tools/security/rage/default.nix
··· 1 - { lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles 2 - , Foundation, Security, libiconv }: 1 + { lib 2 + , stdenv 3 + , rustPlatform 4 + , fetchFromGitHub 5 + , installShellFiles 6 + , Foundation 7 + , Security 8 + , libiconv 9 + }: 3 10 4 11 rustPlatform.buildRustPackage rec { 5 12 pname = "rage"; 6 - version = "0.7.1"; 13 + version = "0.8.0"; 7 14 8 15 src = fetchFromGitHub { 9 16 owner = "str4d"; 10 17 repo = pname; 11 18 rev = "v${version}"; 12 - sha256 = "sha256-0OQnYc1IWYscvSw5YZH54Fh8cBasLlcVqrQcQ4MAsU8="; 19 + sha256 = "sha256-ra68q5gwcbod5iajPIWEIGQceMK8ikSq/UKUfIEYaGE="; 13 20 }; 14 21 15 - cargoSha256 = "sha256-31s70pgEQDw3uifmhv1iWQuzKQVc2q+f76PPnGKIYdc="; 22 + cargoSha256 = "sha256-o5HVMRWSIrCsbOEOeUvCvj+mkmjqRY3XaHx82IY73Cc="; 16 23 17 - nativeBuildInputs = [ installShellFiles ]; 24 + nativeBuildInputs = [ 25 + installShellFiles 26 + ]; 18 27 19 28 buildInputs = lib.optionals stdenv.isDarwin [ 20 29 Foundation
+2
pkgs/top-level/python-packages.nix
··· 11154 11154 inherit (pkgs) jq; 11155 11155 }; 11156 11156 11157 + yte = callPackage ../development/python-modules/yte { }; 11158 + 11157 11159 ytmusicapi = callPackage ../development/python-modules/ytmusicapi { }; 11158 11160 11159 11161 yubico-client = callPackage ../development/python-modules/yubico-client { };