lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
ccdd0f7a 1b3f8ec8

+2571 -2488
+11 -3
pkgs/applications/editors/vim/plugins/overrides.nix
··· 52 52 , xorg 53 53 , zsh 54 54 55 - # test dependencies 56 - , neovim-unwrapped 57 - 58 55 # command-t dependencies 59 56 , rake 60 57 , ruby ··· 235 232 cmp-zsh = super.cmp-zsh.overrideAttrs (old: { 236 233 dependencies = with self; [ nvim-cmp zsh ]; 237 234 }); 235 + 236 + coc-nginx = buildVimPluginFrom2Nix { 237 + pname = "coc-nginx"; 238 + inherit (nodePackages."@yaegassy/coc-nginx") version meta; 239 + src = "${nodePackages."@yaegassy/coc-nginx"}/lib/node_modules/@yaegassy/coc-nginx"; 240 + }; 238 241 239 242 command-t = super.command-t.overrideAttrs (old: { 240 243 buildInputs = [ ruby rake ]; ··· 1254 1257 "coc-cmake" 1255 1258 "coc-css" 1256 1259 "coc-diagnostic" 1260 + "coc-docker" 1257 1261 "coc-emmet" 1258 1262 "coc-eslint" 1259 1263 "coc-explorer" ··· 1277 1281 "coc-r-lsp" 1278 1282 "coc-rls" 1279 1283 "coc-rust-analyzer" 1284 + "coc-sh" 1280 1285 "coc-smartf" 1281 1286 "coc-snippets" 1282 1287 "coc-solargraph" 1283 1288 "coc-stylelint" 1289 + "coc-sumneko-lua" 1290 + "coc-sqlfluff" 1284 1291 "coc-tabnine" 1285 1292 "coc-texlab" 1293 + "coc-toml" 1286 1294 "coc-tslint" 1287 1295 "coc-tslint-plugin" 1288 1296 "coc-tsserver"
+1
pkgs/applications/networking/cluster/terraform-providers/default.nix
··· 73 73 removed = name: date: throw "the ${name} terraform provider removed from nixpkgs on ${date}"; 74 74 in 75 75 lib.optionalAttrs config.allowAliases { 76 + b2 = removed "b2" "2022/06"; 76 77 opc = archived "opc" "2022/05"; 77 78 oraclepaas = archived "oraclepaas" "2022/05"; 78 79 template = archived "template" "2022/05";
-9
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 135 135 "vendorSha256": null, 136 136 "version": "0.10.0" 137 137 }, 138 - "b2": { 139 - "owner": "Backblaze", 140 - "provider-source-address": "registry.terraform.io/Backblaze/b2", 141 - "repo": "terraform-provider-b2", 142 - "rev": "v0.8.0", 143 - "sha256": "sha256-2yyAKrDO7X5yujfrHhYuvXbuKk3yY1sCXRZ8U/9OnrM=", 144 - "vendorSha256": "sha256-f5bvk0p7AU1i/xeapxyVRXIUARju6mNQokejaDnT/GI=", 145 - "version": "0.8.0" 146 - }, 147 138 "baiducloud": { 148 139 "deleteVendor": true, 149 140 "owner": "baidubce",
-68
pkgs/applications/networking/instant-messengers/stride/default.nix
··· 1 - { lib, stdenv, fetchurl, dpkg, alsa-lib, atk, cairo, cups, dbus, expat, fontconfig 2 - , freetype, gdk-pixbuf, glib, gnome2, gtk2, nspr, nss, pango, udev, xorg }: 3 - let 4 - fullPath = lib.makeLibraryPath [ 5 - alsa-lib 6 - atk 7 - cairo 8 - cups 9 - dbus 10 - expat 11 - fontconfig 12 - freetype 13 - gdk-pixbuf 14 - glib 15 - gnome2.GConf 16 - gtk2 17 - nspr 18 - nss 19 - pango 20 - udev 21 - xorg.libX11 22 - xorg.libXScrnSaver 23 - xorg.libXcomposite 24 - xorg.libXcursor 25 - xorg.libXdamage 26 - xorg.libXext 27 - xorg.libXfixes 28 - xorg.libXi 29 - xorg.libXrandr 30 - xorg.libXrender 31 - xorg.libXtst 32 - xorg.libxcb 33 - ] + ":${stdenv.cc.cc.lib}/lib64"; 34 - in 35 - stdenv.mkDerivation rec { 36 - version = "1.17.82"; 37 - pname = "stride"; 38 - 39 - src = fetchurl { 40 - url = "https://packages.atlassian.com/stride-apt-client/pool/stride_${version}_amd64.deb"; 41 - sha256 = "0lx61gdhw0kv4f9fwbfg69yq52dsp4db7c4li25d6wn11qanzqhy"; 42 - }; 43 - 44 - dontBuild = true; 45 - dontFixup = true; 46 - 47 - buildInputs = [ dpkg ]; 48 - 49 - unpackPhase = '' 50 - dpkg-deb -x ${src} ./ 51 - ''; 52 - 53 - installPhase ='' 54 - mkdir "$out" 55 - mv usr/* "$out/" 56 - patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 57 - --set-rpath "${fullPath}:\$ORIGIN" \ 58 - "$out/bin/stride" 59 - ''; 60 - 61 - meta = with lib; { 62 - description = "Desktop client for Atlassian Stride"; 63 - homepage = "https://www.stride.com/"; 64 - license = licenses.unfree; 65 - platforms = [ "x86_64-linux" ]; 66 - maintainers = with maintainers; [ puffnfresh ]; 67 - }; 68 - }
+10 -1
pkgs/development/compilers/graalvm/community-edition/default.nix
··· 1 - { callPackage, Foundation }: 1 + { callPackage, fetchpatch, zlib, Foundation }: 2 2 /* 3 3 Add new graal versions and products here and then see update.nix on how to 4 4 generate the sources. ··· 7 7 let 8 8 mkGraal = opts: callPackage (import ./mkGraal.nix opts) { 9 9 inherit Foundation; 10 + # remove this once zlib 1.2.13 is released 11 + zlib = zlib.overrideAttrs (oldAttrs: { 12 + patches = (oldAttrs.patches or [ ]) ++ [ 13 + (fetchpatch { 14 + url = "https://github.com/madler/zlib/commit/ec3df00224d4b396e2ac6586ab5d25f673caa4c2.patch"; 15 + sha256 = "sha256-jSa3OCigBdpWFDllCWC2rgE9GxCNR0yjsc+bpwPDBEA="; 16 + }) 17 + ]; 18 + }); 10 19 }; 11 20 12 21 /*
+4 -1
pkgs/development/embedded/arduino/arduino-core/default.nix
··· 244 244 description = "Open-source electronics prototyping platform"; 245 245 homepage = "https://www.arduino.cc/"; 246 246 license = if withTeensyduino then licenses.unfreeRedistributable else licenses.gpl2; 247 - sourceProvenance = with sourceTypes; [ binaryBytecode ]; 247 + sourceProvenance = with sourceTypes; [ 248 + binaryBytecode 249 + binaryNativeCode 250 + ]; 248 251 platforms = platforms.linux; 249 252 maintainers = with maintainers; [ antono auntie robberer bjornfor bergey ]; 250 253 };
+1 -1
pkgs/development/interpreters/python/cpython/default.nix
··· 82 82 83 83 passthru = let 84 84 # When we override the interpreter we also need to override the spliced versions of the interpreter 85 - inputs' = lib.filterAttrs (_: v: ! lib.isDerivation v) inputs; 85 + inputs' = lib.filterAttrs (n: v: ! lib.isDerivation v && n != "passthruFun") inputs; 86 86 override = attr: let python = attr.override (inputs' // { self = python; }); in python; 87 87 in passthruFun rec { 88 88 inherit self sourceVersion packageOverrides;
+1
pkgs/development/libraries/libsciter/default.nix
··· 40 40 description = "Embeddable HTML/CSS/JavaScript engine for modern UI development"; 41 41 platforms = [ "x86_64-linux" ]; 42 42 maintainers = with maintainers; [ leixb ]; 43 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 43 44 license = licenses.unfree; 44 45 }; 45 46 }
+13 -20
pkgs/development/libraries/live555/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "live555"; 13 - version = "2022.02.07"; 13 + version = "2022.06.16"; 14 14 15 15 src = fetchurl { 16 16 urls = [ ··· 18 18 "https://download.videolan.org/contrib/live555/live.${version}.tar.gz" 19 19 "mirror://sourceforge/slackbuildsdirectlinks/live.${version}.tar.gz" 20 20 ]; 21 - sha256 = "sha256-bwwfinHOtQa8v5abArSww2l7ThXa623LqYcsh0XOksY="; 21 + sha256 = "sha256-84OUQw++RNqH3sAY4S6yXRJXZY+5T0VdTIUqELuVdV0="; 22 22 }; 23 23 24 24 nativeBuildInputs = lib.optional stdenv.isDarwin darwin.cctools; ··· 42 42 configurePhase = '' 43 43 runHook preConfigure 44 44 45 - ./genMakefiles ${{ 46 - x86_64-darwin = "macosx-catalina"; 47 - i686-linux = "linux"; 48 - x86_64-linux = "linux-64bit"; 49 - aarch64-linux = "linux-64bit"; 50 - }.${stdenv.hostPlatform.system} or (throw "Unsupported platform ${stdenv.hostPlatform.system}")} 45 + ./genMakefiles ${ 46 + if stdenv.isLinux then 47 + "linux" 48 + else if stdenv.isDarwin then 49 + "macosx-catalina" 50 + else 51 + throw "Unsupported platform ${stdenv.hostPlatform.system}"} 51 52 52 53 runHook postConfigure 53 54 ''; 54 55 55 - installPhase = '' 56 - runHook preInstall 57 - 58 - for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do 59 - install -dm755 $out/{bin,lib,include/$dir} 60 - install -m644 $dir/*.a "$out/lib" 61 - install -m644 $dir/include/*.h* "$out/include/$dir" 62 - done 63 - 64 - runHook postInstall 65 - ''; 56 + makeFlags = [ 57 + "DESTDIR=${placeholder "out"}" 58 + "PREFIX=" 59 + ]; 66 60 67 61 enableParallelBuilding = true; 68 62 ··· 77 71 license = licenses.lgpl21Plus; 78 72 maintainers = with maintainers; [ AndersonTorres ]; 79 73 platforms = platforms.unix; 80 - broken = stdenv.hostPlatform.isAarch64; 81 74 }; 82 75 }
+1
pkgs/development/libraries/psol/generic.nix
··· 9 9 description = "PageSpeed Optimization Libraries"; 10 10 homepage = "https://developers.google.com/speed/pagespeed/psol"; 11 11 license = lib.licenses.asl20; 12 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 12 13 # WARNING: This only works with Linux because the pre-built PSOL binary is only supplied for Linux. 13 14 # TODO: Build PSOL from source to support more platforms. 14 15 platforms = lib.platforms.linux;
+1
pkgs/development/libraries/science/math/mkl/default.nix
··· 189 189 threading models. 190 190 ''; 191 191 homepage = "https://software.intel.com/en-us/mkl"; 192 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 192 193 license = licenses.issl; 193 194 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 194 195 maintainers = with maintainers; [ bhipple ];
+1
pkgs/development/libraries/science/math/tensorflow/bin.nix
··· 68 68 meta = { 69 69 description = "C API for TensorFlow"; 70 70 homepage = "https://www.tensorflow.org/install/lang_c"; 71 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 71 72 license = licenses.asl20; 72 73 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 73 74 };
+1
pkgs/development/libraries/science/robotics/edgetpu-compiler/default.nix
··· 51 51 meta = with lib; { 52 52 description = "A command line tool that compiles a TensorFlow Lite model into an Edge TPU compatible file."; 53 53 homepage = "https://coral.ai/docs/edgetpu/compiler"; 54 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 54 55 license = licenses.asl20; 55 56 maintainers = with maintainers; [ cpcloud ]; 56 57 platforms = [ "x86_64-linux" ];
+2
pkgs/development/libraries/unixODBCDrivers/default.nix
··· 173 173 broken = stdenv.isDarwin; 174 174 description = "ODBC Driver 17 for SQL Server"; 175 175 homepage = "https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-2017"; 176 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 176 177 license = licenses.unfree; 177 178 platforms = platforms.linux; 178 179 maintainers = with maintainers; [ spencerjanssen ]; ··· 217 218 broken = stdenv.isDarwin; 218 219 description = "Amazon Redshift ODBC driver"; 219 220 homepage = "https://docs.aws.amazon.com/redshift/latest/mgmt/configure-odbc-connection.html"; 221 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 220 222 license = licenses.unfree; 221 223 platforms = platforms.linux; 222 224 maintainers = with maintainers; [ sir4ur0n ];
+1
pkgs/development/mobile/checkra1n/default.nix
··· 19 19 meta = with lib; { 20 20 description = "Jailbreak for iPhone 5s though iPhone X, iOS 12.0 and up"; 21 21 homepage = "https://checkra.in/"; 22 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 22 23 license = licenses.unfreeRedistributable; 23 24 maintainers = with maintainers; [ onny ]; 24 25 platforms = platforms.linux;
+1
pkgs/development/mobile/genymotion/default.nix
··· 89 89 suitable for application testing. 90 90 ''; 91 91 homepage = "https://www.genymotion.com/"; 92 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 92 93 license = licenses.unfree; 93 94 platforms = ["x86_64-linux"]; 94 95 maintainers = [ maintainers.puffnfresh ];
+6
pkgs/development/node-packages/node-packages.json
··· 52 52 , "coc-cmake" 53 53 , "coc-css" 54 54 , "coc-diagnostic" 55 + , "coc-docker" 55 56 , "coc-emmet" 56 57 , "coc-eslint" 57 58 , "coc-explorer" ··· 75 76 , "coc-r-lsp" 76 77 , "coc-rls" 77 78 , "coc-rust-analyzer" 79 + , "coc-sh" 78 80 , "coc-smartf" 79 81 , "coc-snippets" 80 82 , "coc-solargraph" 81 83 , "coc-stylelint" 84 + , "coc-sumneko-lua" 85 + , "coc-sqlfluff" 82 86 , "coc-tabnine" 83 87 , "coc-texlab" 88 + , "coc-toml" 84 89 , "coc-tslint" 85 90 , "coc-tslint-plugin" 86 91 , "coc-tsserver" ··· 380 385 , "webtorrent-cli" 381 386 , "wring" 382 387 , "write-good" 388 + , "@yaegassy/coc-nginx" 383 389 , "yaml-language-server" 384 390 , "yalc" 385 391 , "yarn"
+2220 -2058
pkgs/development/node-packages/node-packages.nix
··· 58 58 sha512 = "gouPoWdQ6NyIqsISkx526taLlnPB13SPJji4qRZ+MWf8Z60Bn6lF0xmoIEn+hpkTrSH+k9P9HvC2ENqfhq1YdQ=="; 59 59 }; 60 60 }; 61 + "@alexbosworth/fiat-1.0.3" = { 62 + name = "_at_alexbosworth_slash_fiat"; 63 + packageName = "@alexbosworth/fiat"; 64 + version = "1.0.3"; 65 + src = fetchurl { 66 + url = "https://registry.npmjs.org/@alexbosworth/fiat/-/fiat-1.0.3.tgz"; 67 + sha512 = "M1OE/iyK+H77lrOEZz93f9QIi7B4RaD66O3ICRv24ECDbZogddwPWwG9HK9QDJvdGPlni67PYu8krpzEsTvFPg=="; 68 + }; 69 + }; 61 70 "@alexbosworth/html2unicode-1.1.5" = { 62 71 name = "_at_alexbosworth_slash_html2unicode"; 63 72 packageName = "@alexbosworth/html2unicode"; ··· 103 112 sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; 104 113 }; 105 114 }; 106 - "@angular-devkit/architect-0.1400.1" = { 115 + "@angular-devkit/architect-0.1400.2" = { 107 116 name = "_at_angular-devkit_slash_architect"; 108 117 packageName = "@angular-devkit/architect"; 109 - version = "0.1400.1"; 118 + version = "0.1400.2"; 110 119 src = fetchurl { 111 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1400.1.tgz"; 112 - sha512 = "GJ4hWLIJmhCq4nKNN9c4xocKtCt28muJxN88Wna292SOIaNQuNY5MP9860/4IWRGCJTeJH7LyCc4j/3V0zWrSQ=="; 120 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1400.2.tgz"; 121 + sha512 = "L+QIaN17M2APAJ4v3eVOSohqhnqTloDjT4omdaPA9XZpob+WQ6+ALCvMuEczCRrGBskXiOsBgXeyMjGBtq1+pw=="; 113 122 }; 114 123 }; 115 124 "@angular-devkit/core-13.3.5" = { ··· 121 130 sha512 = "w7vzK4VoYP9rLgxJ2SwEfrkpKybdD+QgQZlsDBzT0C6Ebp7b4gkNcNVFo8EiZvfDl6Yplw2IAP7g7fs3STn0hQ=="; 122 131 }; 123 132 }; 124 - "@angular-devkit/core-14.0.1" = { 133 + "@angular-devkit/core-14.0.2" = { 125 134 name = "_at_angular-devkit_slash_core"; 126 135 packageName = "@angular-devkit/core"; 127 - version = "14.0.1"; 136 + version = "14.0.2"; 128 137 src = fetchurl { 129 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.0.1.tgz"; 130 - sha512 = "yiduPSPRp4s4yYKc3BOvbL5gOzaOPvRCMcJ3jeQbitLIXD/xwSHO8OmmsLsN/PnM1RzA8vVHsK7lN4v1JvhqPA=="; 138 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.0.2.tgz"; 139 + sha512 = "lT875LhgO+23HvjUmuCZomH/0ivetzo8xsaT+7YM8SeUpmjsNTpTA/xNAQ4uD4JGscsJeCKsGT/zJIwPAAe6vQ=="; 131 140 }; 132 141 }; 133 142 "@angular-devkit/schematics-13.3.5" = { ··· 139 148 sha512 = "0N/kL/Vfx0yVAEwa3HYxNx9wYb+G9r1JrLjJQQzDp+z9LtcojNf7j3oey6NXrDUs1WjVZOa/AIdRl3/DuaoG5w=="; 140 149 }; 141 150 }; 142 - "@angular-devkit/schematics-14.0.1" = { 151 + "@angular-devkit/schematics-14.0.2" = { 143 152 name = "_at_angular-devkit_slash_schematics"; 144 153 packageName = "@angular-devkit/schematics"; 145 - version = "14.0.1"; 154 + version = "14.0.2"; 146 155 src = fetchurl { 147 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.0.1.tgz"; 148 - sha512 = "Ub9W2SIgmYs9+SWCW117/N+wSThOWWDo1j+JiZlh9jML7ZRc9HCTEzo8Yic+6/ZuouVcKExCUO90z0InVkOB7g=="; 156 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.0.2.tgz"; 157 + sha512 = "NCAYwvQBL71MbAzeF8XOM9LXYfZbUK7THYCW8UteKDY4Df6EdVOGhBdWY2LstAkZeVCaQWSJU7FcVRS9Ulvg0A=="; 149 158 }; 150 159 }; 151 160 "@angular-devkit/schematics-cli-13.3.5" = { ··· 454 463 sha512 = "JJmFFwvbm08lULw4Nm5QOLg8+lAQeC8aCXK5xrtxntYzYXCGfHwUJ4Is3770Q7HmICsXthGQ+ZsDL7C2uH3yBQ=="; 455 464 }; 456 465 }; 457 - "@aws-sdk/abort-controller-3.78.0" = { 466 + "@aws-sdk/abort-controller-3.110.0" = { 458 467 name = "_at_aws-sdk_slash_abort-controller"; 459 468 packageName = "@aws-sdk/abort-controller"; 460 - version = "3.78.0"; 469 + version = "3.110.0"; 461 470 src = fetchurl { 462 - url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.78.0.tgz"; 463 - sha512 = "iz1YLwM2feJUj/y97yO4XmDeTxs+yZ1XJwQgoawKuc8IDBKUutnJNCHL5jL04WUKU7Nrlq+Hr2fCTScFh2z9zg=="; 471 + url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.110.0.tgz"; 472 + sha512 = "zok/WEVuK7Jh6V9YeA56pNZtxUASon9LTkS7vE65A4UFmNkPGNBCNgoiBcbhWfxwrZ8wtXcQk6rtUut39831mA=="; 464 473 }; 465 474 }; 466 475 "@aws-sdk/chunked-blob-reader-3.55.0" = { ··· 472 481 sha512 = "o/xjMCq81opAjSBjt7YdHJwIJcGVG5XIV9+C2KXcY5QwVimkOKPybWTv0mXPvSwSilSx+EhpLNhkcJuXdzhw4w=="; 473 482 }; 474 483 }; 475 - "@aws-sdk/chunked-blob-reader-native-3.58.0" = { 484 + "@aws-sdk/chunked-blob-reader-native-3.109.0" = { 476 485 name = "_at_aws-sdk_slash_chunked-blob-reader-native"; 477 486 packageName = "@aws-sdk/chunked-blob-reader-native"; 478 - version = "3.58.0"; 487 + version = "3.109.0"; 479 488 src = fetchurl { 480 - url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.58.0.tgz"; 481 - sha512 = "+D3xnPD5985iphgAqgUerBDs371a2WzzoEVi7eHJUMMsP/gEnSTdSH0HNxsqhYv6CW4EdKtvDAQdAwA1VtCf2A=="; 489 + url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.109.0.tgz"; 490 + sha512 = "Ybn3vDZ3CqGyprL2qdF6QZqoqlx8lA3qOJepobjuKKDRw+KgGxjUY4NvWe0R2MdRoduyaDj6uvhIay0S1MOSJQ=="; 482 491 }; 483 492 }; 484 - "@aws-sdk/client-s3-3.107.0" = { 493 + "@aws-sdk/client-s3-3.110.0" = { 485 494 name = "_at_aws-sdk_slash_client-s3"; 486 495 packageName = "@aws-sdk/client-s3"; 487 - version = "3.107.0"; 496 + version = "3.110.0"; 488 497 src = fetchurl { 489 - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.107.0.tgz"; 490 - sha512 = "2wWlr4lnfr/3NCKjven0umTRNxpMwrrt1fm8ZN0DucFhD4B3jee7qZQtpTnQxkGJkzyzKeE7qlzsHYeMi2HL1Q=="; 498 + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.110.0.tgz"; 499 + sha512 = "Hi/ovI9ffTv0p9phuO96TgbKYPJp9jB2atUVtxCtWBNeJ6+PgXPzEl5KltlO7m4++l+/bzgc8E4l9OWiorc7HA=="; 491 500 }; 492 501 }; 493 - "@aws-sdk/client-sso-3.105.0" = { 502 + "@aws-sdk/client-sso-3.110.0" = { 494 503 name = "_at_aws-sdk_slash_client-sso"; 495 504 packageName = "@aws-sdk/client-sso"; 496 - version = "3.105.0"; 505 + version = "3.110.0"; 497 506 src = fetchurl { 498 - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.105.0.tgz"; 499 - sha512 = "Lp92m3ayckXpAElpgZ8E6JEGB7B5sBsjCkTmYeZq3uVXF8uCVMQFmFo4v2yndLQ3NFCEE8qN2PE8obLDOAsNIA=="; 507 + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.110.0.tgz"; 508 + sha512 = "Mzj8bfHaB+Ajghf0iMDdbpzL6jY+GbRDKATpmUOAswBDy72JifoBq7qUAV+NwhjUdF+jUzXkdCAAIaai2kglrg=="; 500 509 }; 501 510 }; 502 - "@aws-sdk/client-sts-3.105.0" = { 511 + "@aws-sdk/client-sts-3.110.0" = { 503 512 name = "_at_aws-sdk_slash_client-sts"; 504 513 packageName = "@aws-sdk/client-sts"; 505 - version = "3.105.0"; 514 + version = "3.110.0"; 506 515 src = fetchurl { 507 - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.105.0.tgz"; 508 - sha512 = "ZZyw5hu0Ip/jHc9umpWTnWNUHV270fS25LB7fecUwQeC/cok+EvaG5QGBVI5t0GSUynEIC0sNlG9SDc1wLTZPA=="; 516 + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.110.0.tgz"; 517 + sha512 = "BJD0fxCoqqL7eA/tRRj7z5n4/P8tIZZgOOWJqd6euf6t90uPssz/MJw01bFJBljMl4BtMGvLXHKkyzWtVezI0w=="; 509 518 }; 510 519 }; 511 - "@aws-sdk/config-resolver-3.80.0" = { 520 + "@aws-sdk/config-resolver-3.110.0" = { 512 521 name = "_at_aws-sdk_slash_config-resolver"; 513 522 packageName = "@aws-sdk/config-resolver"; 514 - version = "3.80.0"; 523 + version = "3.110.0"; 515 524 src = fetchurl { 516 - url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.80.0.tgz"; 517 - sha512 = "vFruNKlmhsaC8yjnHmasi1WW/7EELlEuFTj4mqcqNqR4dfraf0maVvpqF1VSR8EstpFMsGYI5dmoWAnnG4PcLQ=="; 525 + url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.110.0.tgz"; 526 + sha512 = "7VvtKy4CL63BAktQ2vgsjhWDSXpkXO5YdiI56LQnHztrvSuJBBaxJ7R1p/k0b2tEUhYKUziAIW8EKE/7EGPR4g=="; 518 527 }; 519 528 }; 520 - "@aws-sdk/credential-provider-env-3.78.0" = { 529 + "@aws-sdk/credential-provider-env-3.110.0" = { 521 530 name = "_at_aws-sdk_slash_credential-provider-env"; 522 531 packageName = "@aws-sdk/credential-provider-env"; 523 - version = "3.78.0"; 532 + version = "3.110.0"; 524 533 src = fetchurl { 525 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.78.0.tgz"; 526 - sha512 = "K41VTIzVHm2RyIwtBER8Hte3huUBXdV1WKO+i7olYVgLFmaqcZUNrlyoGDRqZcQ/u4AbxTzBU9jeMIbIfzMOWg=="; 534 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.110.0.tgz"; 535 + sha512 = "oFU3IYk/Bl5tdsz1qigtm3I25a9cvXPqlE8VjYjxVDdLujF5zd/4HLbhP4GQWhpEwZmM1ijcSNfLcyywVevTZg=="; 527 536 }; 528 537 }; 529 - "@aws-sdk/credential-provider-imds-3.81.0" = { 538 + "@aws-sdk/credential-provider-imds-3.110.0" = { 530 539 name = "_at_aws-sdk_slash_credential-provider-imds"; 531 540 packageName = "@aws-sdk/credential-provider-imds"; 532 - version = "3.81.0"; 541 + version = "3.110.0"; 533 542 src = fetchurl { 534 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.81.0.tgz"; 535 - sha512 = "BHopP+gaovTYj+4tSrwCk8NNCR48gE9CWmpIOLkP9ell0gOL81Qh7aCEiIK0BZBZkccv1s16cYq1MSZZGS7PEQ=="; 543 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.110.0.tgz"; 544 + sha512 = "atl+7/dAB+8fG9XI2fYyCgXKYDbOzot65VAwis+14bOEUCVp7PCJifBEZ/L8GEq564p+Fa2p1IpV0wuQXxqFUQ=="; 536 545 }; 537 546 }; 538 - "@aws-sdk/credential-provider-ini-3.105.0" = { 547 + "@aws-sdk/credential-provider-ini-3.110.0" = { 539 548 name = "_at_aws-sdk_slash_credential-provider-ini"; 540 549 packageName = "@aws-sdk/credential-provider-ini"; 541 - version = "3.105.0"; 550 + version = "3.110.0"; 542 551 src = fetchurl { 543 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.105.0.tgz"; 544 - sha512 = "qYEUciSpeIBkIDt3ljWkVphG7OUIvQOMklYjtEYjYGFjHX7GuyNbV0NI0T6W/edV0aU/a/KpBi0uKd93Gi43Lg=="; 552 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.110.0.tgz"; 553 + sha512 = "DVbCWGnvXBvxdf0XGB0nVQjZNwEJc7OhhBFUfF/bP2LXwyZX7n2w4NGNpi2fLnwrgbySoPNbBpp8X3NhVvK14g=="; 545 554 }; 546 555 }; 547 - "@aws-sdk/credential-provider-node-3.105.0" = { 556 + "@aws-sdk/credential-provider-node-3.110.0" = { 548 557 name = "_at_aws-sdk_slash_credential-provider-node"; 549 558 packageName = "@aws-sdk/credential-provider-node"; 550 - version = "3.105.0"; 559 + version = "3.110.0"; 551 560 src = fetchurl { 552 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.105.0.tgz"; 553 - sha512 = "A781wWAcghqw21Vddj2jZo1BeKDyqqMcBYIuXJxjwK4fq+IBxlnI6De1vzv3H7QxosDyDS4mKWGW2FqUQI8ofg=="; 561 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.110.0.tgz"; 562 + sha512 = "6AE97H6KDwOYTRjzP7dIyEg4jUd33ZLehgmtaBbJ1GhchtU3L8W0+Mh7ICpwKX/cYMJcKJKzT27BwYVWtOtCDA=="; 554 563 }; 555 564 }; 556 - "@aws-sdk/credential-provider-process-3.80.0" = { 565 + "@aws-sdk/credential-provider-process-3.110.0" = { 557 566 name = "_at_aws-sdk_slash_credential-provider-process"; 558 567 packageName = "@aws-sdk/credential-provider-process"; 559 - version = "3.80.0"; 568 + version = "3.110.0"; 560 569 src = fetchurl { 561 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.80.0.tgz"; 562 - sha512 = "3Ro+kMMyLUJHefOhGc5pOO/ibGcJi8bkj0z/Jtqd5I2Sm1qi7avoztST67/k48KMW1OqPnD/FUqxz5T8B2d+FQ=="; 570 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.110.0.tgz"; 571 + sha512 = "JJcZePvRTfQHYj/+EEY13yItnZH/e8exlARFUjN0L13UrgHpOJtDQBa+YBHXo6MbTFQh+re25z2kzc+zOYSMNQ=="; 563 572 }; 564 573 }; 565 - "@aws-sdk/credential-provider-sso-3.105.0" = { 574 + "@aws-sdk/credential-provider-sso-3.110.0" = { 566 575 name = "_at_aws-sdk_slash_credential-provider-sso"; 567 576 packageName = "@aws-sdk/credential-provider-sso"; 568 - version = "3.105.0"; 577 + version = "3.110.0"; 569 578 src = fetchurl { 570 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.105.0.tgz"; 571 - sha512 = "oHvMZ0uHfOzFkepX29GPXUrI7HTQklQl01laVxEdCNtgZGfos9gjz+xPUDBCaoiEzM+xF9uu4wtaQ15c1bCclQ=="; 579 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.110.0.tgz"; 580 + sha512 = "fXV9mc/2U2M5pP5E61uBSFdQXIMgNO4yebitkqNiseI3lg5dJVkYGfiWlvw6qGo6BNxKiEmvJD5Mu6/laYIvbw=="; 572 581 }; 573 582 }; 574 - "@aws-sdk/credential-provider-web-identity-3.78.0" = { 583 + "@aws-sdk/credential-provider-web-identity-3.110.0" = { 575 584 name = "_at_aws-sdk_slash_credential-provider-web-identity"; 576 585 packageName = "@aws-sdk/credential-provider-web-identity"; 577 - version = "3.78.0"; 586 + version = "3.110.0"; 578 587 src = fetchurl { 579 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.78.0.tgz"; 580 - sha512 = "9/IvqHdJaVqMEABA8xZE3t5YF1S2PepfckVu0Ws9YUglj6oO+2QyVX6aRgMF1xph6781+Yc31TDh8/3eaDja7w=="; 588 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.110.0.tgz"; 589 + sha512 = "e4e5u7v3fsUFZsMcFMhMy1NdJBQpunYcLwpYlszm3OEICwTTekQ+hVvnVRd134doHvzepE4yp9sAop0Cj+IRVQ=="; 581 590 }; 582 591 }; 583 - "@aws-sdk/eventstream-marshaller-3.78.0" = { 592 + "@aws-sdk/eventstream-marshaller-3.110.0" = { 584 593 name = "_at_aws-sdk_slash_eventstream-marshaller"; 585 594 packageName = "@aws-sdk/eventstream-marshaller"; 586 - version = "3.78.0"; 595 + version = "3.110.0"; 587 596 src = fetchurl { 588 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-3.78.0.tgz"; 589 - sha512 = "BMbRvLe6wNWQ+NO1pdPw3kGXXEdYV94BxEr3rTkKwr5yHpl8sUb/Va9sJJufUjzggpgE4vYu5nVsrT8ByMYXuA=="; 597 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-3.110.0.tgz"; 598 + sha512 = "ZVJI2iCmjxigtLKfc9v48NHY34Qos5l9wgxzB1lU+RwaBppbmjogvIpPlKewEuAFsLTrErUK4ONBWGGsvLYlBQ=="; 590 599 }; 591 600 }; 592 - "@aws-sdk/eventstream-serde-browser-3.78.0" = { 601 + "@aws-sdk/eventstream-serde-browser-3.110.0" = { 593 602 name = "_at_aws-sdk_slash_eventstream-serde-browser"; 594 603 packageName = "@aws-sdk/eventstream-serde-browser"; 595 - version = "3.78.0"; 604 + version = "3.110.0"; 596 605 src = fetchurl { 597 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.78.0.tgz"; 598 - sha512 = "ehQI2iLsj8MMskDRbrPB7SibIdJq6LleBP6ojT+cgrLJRbVXUOxK+3MPHDZVdGYx4ukVg48E1fA2DzVfAp7Emw=="; 606 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.110.0.tgz"; 607 + sha512 = "zeZpKO9Ccsg6seB9oYf9rEQkYfM4nWnyQJtfGvpj/BlkJ7i3UhpbVca8q6aC61WLb3fcO/JROqNfDK1Vis8RgA=="; 599 608 }; 600 609 }; 601 - "@aws-sdk/eventstream-serde-config-resolver-3.78.0" = { 610 + "@aws-sdk/eventstream-serde-config-resolver-3.110.0" = { 602 611 name = "_at_aws-sdk_slash_eventstream-serde-config-resolver"; 603 612 packageName = "@aws-sdk/eventstream-serde-config-resolver"; 604 - version = "3.78.0"; 613 + version = "3.110.0"; 605 614 src = fetchurl { 606 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.78.0.tgz"; 607 - sha512 = "iUG0wtZH/L7d6XfipwbhgjBHip0uTm9S27EasCn+g0CunbW6w7rXd7rfMqA+gSLVXPTBYjTMPIwRxrTCdRprwA=="; 615 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.110.0.tgz"; 616 + sha512 = "0kyKUU5/46OGe6rgIqbNRJEQhNYwxLdgcJXlBl6q6CdgyQApz6jsAgG0C5xhSLSi4iJijDRriJTowAhkq4AlWQ=="; 608 617 }; 609 618 }; 610 - "@aws-sdk/eventstream-serde-node-3.78.0" = { 619 + "@aws-sdk/eventstream-serde-node-3.110.0" = { 611 620 name = "_at_aws-sdk_slash_eventstream-serde-node"; 612 621 packageName = "@aws-sdk/eventstream-serde-node"; 613 - version = "3.78.0"; 622 + version = "3.110.0"; 614 623 src = fetchurl { 615 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.78.0.tgz"; 616 - sha512 = "H78LLoZEngZBSdk3lRQkAaR3cGsy/3UIjq9AFPeqoPVQtHkzBob1jVfE/5VSVAMhKLxWn8iqhRPS37AvyBGOwQ=="; 624 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.110.0.tgz"; 625 + sha512 = "Bd7d57BANdy1RBnZ6EBxEaDzC4DidR40EMEk08Ho3+md6CW/vmW63n9wAhKjdoq9a+Hp6aDWP4huVKhyT/d6PA=="; 617 626 }; 618 627 }; 619 - "@aws-sdk/eventstream-serde-universal-3.78.0" = { 628 + "@aws-sdk/eventstream-serde-universal-3.110.0" = { 620 629 name = "_at_aws-sdk_slash_eventstream-serde-universal"; 621 630 packageName = "@aws-sdk/eventstream-serde-universal"; 622 - version = "3.78.0"; 631 + version = "3.110.0"; 623 632 src = fetchurl { 624 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.78.0.tgz"; 625 - sha512 = "PZTLdyF923/1GJuMNtq9VMGd2vEx33HhsGInXvYtulKDSD5SgaTGj+Dz5wYepqL1gUEuXqZjBD71uZgrY/JgRg=="; 633 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.110.0.tgz"; 634 + sha512 = "VjzOxDaHCzPlZs+9UqqQABP47gCWf97kqwhuoPUsCzV8leEHnLfAX3BvIZ58kNr4Fycua5AgK7Ww6uFfXVeW8w=="; 626 635 }; 627 636 }; 628 - "@aws-sdk/fetch-http-handler-3.78.0" = { 637 + "@aws-sdk/fetch-http-handler-3.110.0" = { 629 638 name = "_at_aws-sdk_slash_fetch-http-handler"; 630 639 packageName = "@aws-sdk/fetch-http-handler"; 631 - version = "3.78.0"; 640 + version = "3.110.0"; 632 641 src = fetchurl { 633 - url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.78.0.tgz"; 634 - sha512 = "cR6r2h2kJ1DNEZSXC6GknQB7OKmy+s9ZNV+g3AsNqkrUmNNOaHpFoSn+m6SC3qaclcGd0eQBpqzSu/TDn23Ihw=="; 642 + url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.110.0.tgz"; 643 + sha512 = "vk+K4GeCZL2J2rtvKO+T0Q7i3MDpEGZBMg5K2tj9sMcEQwty0BF0aFnP7Eu2l4/Zif2z1mWuUFM2WcZI6DVnbw=="; 635 644 }; 636 645 }; 637 - "@aws-sdk/hash-blob-browser-3.78.0" = { 646 + "@aws-sdk/hash-blob-browser-3.110.0" = { 638 647 name = "_at_aws-sdk_slash_hash-blob-browser"; 639 648 packageName = "@aws-sdk/hash-blob-browser"; 640 - version = "3.78.0"; 649 + version = "3.110.0"; 641 650 src = fetchurl { 642 - url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.78.0.tgz"; 643 - sha512 = "IEkA+t6qJEtEYEZgsqFRRITeZJ3mirw7IHJVHxwb86lpeufTVcbILI59B8/rhbqG+9dk0kWTjYSjC/ZdM+rgHA=="; 651 + url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.110.0.tgz"; 652 + sha512 = "NkTosjlYwP2dcBXY6yzhNafAK+W2nceheffvWdyGA29+E9YdRjDminXvKc/WAkZUMOW0CaCbD90otOiimAAYyQ=="; 644 653 }; 645 654 }; 646 - "@aws-sdk/hash-node-3.78.0" = { 655 + "@aws-sdk/hash-node-3.110.0" = { 647 656 name = "_at_aws-sdk_slash_hash-node"; 648 657 packageName = "@aws-sdk/hash-node"; 649 - version = "3.78.0"; 658 + version = "3.110.0"; 650 659 src = fetchurl { 651 - url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.78.0.tgz"; 652 - sha512 = "ev48yXaqZVtMeuKy52LUZPHCyKvkKQ9uiUebqkA+zFxIk+eN8SMPFHmsififIHWuS6ZkXBUSctjH9wmLebH60A=="; 660 + url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.110.0.tgz"; 661 + sha512 = "wakl+kP2O8wTGYiQ3InZy+CVfGrIpFfq9fo4zif9PZac0BbUbguUU1dkY34uZiaf+4o2/9MoDYrHU2HYeXKxWw=="; 653 662 }; 654 663 }; 655 - "@aws-sdk/hash-stream-node-3.78.0" = { 664 + "@aws-sdk/hash-stream-node-3.110.0" = { 656 665 name = "_at_aws-sdk_slash_hash-stream-node"; 657 666 packageName = "@aws-sdk/hash-stream-node"; 658 - version = "3.78.0"; 667 + version = "3.110.0"; 659 668 src = fetchurl { 660 - url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.78.0.tgz"; 661 - sha512 = "y42Pm0Nk6zf/MI6acLFVFAMya0Ncvy6F6Xu5aYAmwIMIoMI0ctNeyuL/Dikgt8+oyxC+kORw+W9jtzgWj2zY/w=="; 669 + url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.110.0.tgz"; 670 + sha512 = "srlStn+dCnBlQy4oWBz3oFS8vT5Xgxhra91rt9U+vHruCyQ0L1es0J87X4uwy2HRlnIw3daPtVLtxekahEXzKQ=="; 662 671 }; 663 672 }; 664 - "@aws-sdk/invalid-dependency-3.78.0" = { 673 + "@aws-sdk/invalid-dependency-3.110.0" = { 665 674 name = "_at_aws-sdk_slash_invalid-dependency"; 666 675 packageName = "@aws-sdk/invalid-dependency"; 667 - version = "3.78.0"; 676 + version = "3.110.0"; 668 677 src = fetchurl { 669 - url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.78.0.tgz"; 670 - sha512 = "zUo+PbeRMN/Mzj6y+6p9qqk/znuFetT1gmpOcZGL9Rp2T+b9WJWd+daq5ktsL10sVCzIt2UvneJRz6b+aU+bfw=="; 678 + url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.110.0.tgz"; 679 + sha512 = "O8J1InmtJkoiUMbQDtxBfOzgigBp9iSVsNXQrhs2qHh3826cJOfE7NGT3u+NMw73Pk5j2cfmOh1+7k/76IqxOg=="; 671 680 }; 672 681 }; 673 682 "@aws-sdk/is-array-buffer-3.55.0" = { ··· 679 688 sha512 = "NbiPHVYuPxdqdFd6FxzzN3H1BQn/iWA3ri3Ry7AyLeP/tGs1yzEWMwf8BN8TSMALI0GXT6Sh0GDWy3Ok5xB6DA=="; 680 689 }; 681 690 }; 682 - "@aws-sdk/md5-js-3.78.0" = { 691 + "@aws-sdk/md5-js-3.110.0" = { 683 692 name = "_at_aws-sdk_slash_md5-js"; 684 693 packageName = "@aws-sdk/md5-js"; 685 - version = "3.78.0"; 694 + version = "3.110.0"; 686 695 src = fetchurl { 687 - url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.78.0.tgz"; 688 - sha512 = "vKOXJWJvv6QH6rnqMYEWzwAnMr4hfcmY8+t6BAuTcDpcEVF77e3bwUcaajXi2U0JMuNvnLwuJF3h6kL6aX4l6g=="; 696 + url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.110.0.tgz"; 697 + sha512 = "66gV6CH8O7ymTZMIbGjdUI71K7ErDfudhtN/ULb97kD2TYX4NlFtxNZxx3+iZH1G0H636lWm9hJcU5ELG9B+bw=="; 689 698 }; 690 699 }; 691 - "@aws-sdk/middleware-bucket-endpoint-3.80.0" = { 700 + "@aws-sdk/middleware-bucket-endpoint-3.110.0" = { 692 701 name = "_at_aws-sdk_slash_middleware-bucket-endpoint"; 693 702 packageName = "@aws-sdk/middleware-bucket-endpoint"; 694 - version = "3.80.0"; 703 + version = "3.110.0"; 695 704 src = fetchurl { 696 - url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.80.0.tgz"; 697 - sha512 = "FSSx6IgT7xftSlpjxoPKv8XI9nv7EK+OCODo2s3CmElMW1kBRdmQ/ImVuTwvqhdxJEVUeUdgupmC7cqyqgt04w=="; 705 + url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.110.0.tgz"; 706 + sha512 = "l1q0KzMRFyGSSc7LZGEh2xhCha1933C8uJE5g23b7dZdklEU5I62l4daELo+TBANcxFzDiRXd6g5mly/T+ZTSg=="; 698 707 }; 699 708 }; 700 - "@aws-sdk/middleware-content-length-3.78.0" = { 709 + "@aws-sdk/middleware-content-length-3.110.0" = { 701 710 name = "_at_aws-sdk_slash_middleware-content-length"; 702 711 packageName = "@aws-sdk/middleware-content-length"; 703 - version = "3.78.0"; 712 + version = "3.110.0"; 704 713 src = fetchurl { 705 - url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.78.0.tgz"; 706 - sha512 = "5MpKt6lB9TdFy25/AGrpOjPY0iDHZAKpEHc+jSOJBXLl6xunXA7qHdiYaVqkWodLxy70nIckGNHqQ3drabidkA=="; 714 + url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.110.0.tgz"; 715 + sha512 = "hKU+zdqfAJQg22LXMVu/z35nNIHrVAKpVKPe9+WYVdL/Z7JKUPK7QymqKGOyDuDbzW6OxyulC1zKGEX12zGmdA=="; 707 716 }; 708 717 }; 709 - "@aws-sdk/middleware-expect-continue-3.78.0" = { 718 + "@aws-sdk/middleware-expect-continue-3.110.0" = { 710 719 name = "_at_aws-sdk_slash_middleware-expect-continue"; 711 720 packageName = "@aws-sdk/middleware-expect-continue"; 712 - version = "3.78.0"; 721 + version = "3.110.0"; 713 722 src = fetchurl { 714 - url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.78.0.tgz"; 715 - sha512 = "IXfcSugFV3uNk50VQsN/Cm80iCsUSwcYJ5RzEwy7wXbZ+KM03xWXlbXzqkeTDnS74wLWSw09nKF3rkp1eyfDfg=="; 723 + url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.110.0.tgz"; 724 + sha512 = "agRV/Z2C6St0oVB/giKTDdq46xw2bPY2xwvd44PfPMi6KkPW1Ri2ZPrzwBevLFUpbzDcRj8Je9mgdl706HFIig=="; 716 725 }; 717 726 }; 718 - "@aws-sdk/middleware-flexible-checksums-3.78.0" = { 727 + "@aws-sdk/middleware-flexible-checksums-3.110.0" = { 719 728 name = "_at_aws-sdk_slash_middleware-flexible-checksums"; 720 729 packageName = "@aws-sdk/middleware-flexible-checksums"; 721 - version = "3.78.0"; 730 + version = "3.110.0"; 722 731 src = fetchurl { 723 - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.78.0.tgz"; 724 - sha512 = "1jjxHcB3Le/2Z7BzugXzZnIwKGlUluNm0d1lB4fF2QVq3GHlA6e8uv0rCtqe/3wSsrzV6YzJ8vjioymKSNIjKQ=="; 732 + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.110.0.tgz"; 733 + sha512 = "Z/v1Da+e1McxrVr1s4jUykp2EXsOHpTxZ4M0X8vNkXCIVSuaMp4UI0P+LQawbDA+j3FaecqqBfWMZ2sHQ8bpoA=="; 725 734 }; 726 735 }; 727 - "@aws-sdk/middleware-header-default-3.78.0" = { 736 + "@aws-sdk/middleware-header-default-3.110.0" = { 728 737 name = "_at_aws-sdk_slash_middleware-header-default"; 729 738 packageName = "@aws-sdk/middleware-header-default"; 730 - version = "3.78.0"; 739 + version = "3.110.0"; 731 740 src = fetchurl { 732 - url = "https://registry.npmjs.org/@aws-sdk/middleware-header-default/-/middleware-header-default-3.78.0.tgz"; 733 - sha512 = "USyOIF7ObBVMKbV/8lOBLDNwMAGdOtujd+RO/9dX6OQLceUTKIS1dOfJoYYwRHgengn7ikpDxoyROyspPYYDZQ=="; 741 + url = "https://registry.npmjs.org/@aws-sdk/middleware-header-default/-/middleware-header-default-3.110.0.tgz"; 742 + sha512 = "aezdkU/O8eWDNL9XEs9DG1MTS4EVaUEyz25+TrPPRBzCFccMnGf5tUHDG62I59NLtWjtipxQ7QOqyA3jF5WTFQ=="; 734 743 }; 735 744 }; 736 - "@aws-sdk/middleware-host-header-3.78.0" = { 745 + "@aws-sdk/middleware-host-header-3.110.0" = { 737 746 name = "_at_aws-sdk_slash_middleware-host-header"; 738 747 packageName = "@aws-sdk/middleware-host-header"; 739 - version = "3.78.0"; 748 + version = "3.110.0"; 740 749 src = fetchurl { 741 - url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.78.0.tgz"; 742 - sha512 = "1zL8uaDWGmH50c8B8jjz75e0ePj6/3QeZEhjJgTgL6DTdiqvRt32p3t+XWHW+yDI14fZZUYeTklAaLVxqFrHqQ=="; 750 + url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.110.0.tgz"; 751 + sha512 = "/Cknn1vL2LTlclI0MX2RzmtdPlCJ5palCRXxm/mod1oHwg4oNTKRlUX3LUD+L8g7JuJ4h053Ch9KS/A0vanE5Q=="; 743 752 }; 744 753 }; 745 - "@aws-sdk/middleware-location-constraint-3.78.0" = { 754 + "@aws-sdk/middleware-location-constraint-3.110.0" = { 746 755 name = "_at_aws-sdk_slash_middleware-location-constraint"; 747 756 packageName = "@aws-sdk/middleware-location-constraint"; 748 - version = "3.78.0"; 757 + version = "3.110.0"; 749 758 src = fetchurl { 750 - url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.78.0.tgz"; 751 - sha512 = "m626H1WwXYJtwHEkV/2DsLlu1ckWq3j57NzsexZki3qS0nU8HEiDl6YYi+k84vDD4Qpba6EI9AdhzwnvZLXtGw=="; 759 + url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.110.0.tgz"; 760 + sha512 = "8ZSo9sqrTMcSp0xEJQ3ypmQpeSMQl1NXXv72khJPweZqDoO0eAbfytwyH4JH4sP0VwVVmuDHdwPXyDZX7I0iQg=="; 752 761 }; 753 762 }; 754 - "@aws-sdk/middleware-logger-3.78.0" = { 763 + "@aws-sdk/middleware-logger-3.110.0" = { 755 764 name = "_at_aws-sdk_slash_middleware-logger"; 756 765 packageName = "@aws-sdk/middleware-logger"; 757 - version = "3.78.0"; 766 + version = "3.110.0"; 758 767 src = fetchurl { 759 - url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.78.0.tgz"; 760 - sha512 = "GBhwxNjhCJUIeQQDaGasX/C23Jay77al2vRyGwmxf8no0DdFsa4J1Ik6/2hhIqkqko+WM4SpCnpZrY4MtnxNvA=="; 768 + url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.110.0.tgz"; 769 + sha512 = "+pz+a+8dfTnzLj79nHrv3aONMp/N36/erMd+7JXeR84QEosVLrFBUwKA8x5x6O3s1iBbQzRKMYEIuja9xn1BPA=="; 761 770 }; 762 771 }; 763 - "@aws-sdk/middleware-recursion-detection-3.105.0" = { 772 + "@aws-sdk/middleware-recursion-detection-3.110.0" = { 764 773 name = "_at_aws-sdk_slash_middleware-recursion-detection"; 765 774 packageName = "@aws-sdk/middleware-recursion-detection"; 766 - version = "3.105.0"; 775 + version = "3.110.0"; 767 776 src = fetchurl { 768 - url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.105.0.tgz"; 769 - sha512 = "KksW6cBQ3BWTNlN+4eMW8//oqsuKLYJsSUsdSLQb7MFBHnw+6r8GS9WXMYN0IBswlhdYi9fv83zlKDTV21ZL+g=="; 777 + url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.110.0.tgz"; 778 + sha512 = "Wav782zd7bcd1e6txRob76CDOdVOaUQ8HXoywiIm/uFrEEUZvhs2mgnXjVUVCMBUehdNgnL99z420aS13JeL/Q=="; 770 779 }; 771 780 }; 772 - "@aws-sdk/middleware-retry-3.80.0" = { 781 + "@aws-sdk/middleware-retry-3.110.0" = { 773 782 name = "_at_aws-sdk_slash_middleware-retry"; 774 783 packageName = "@aws-sdk/middleware-retry"; 775 - version = "3.80.0"; 784 + version = "3.110.0"; 776 785 src = fetchurl { 777 - url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.80.0.tgz"; 778 - sha512 = "CTk+tA4+WMUNOcUfR6UQrkhwvPYFpnMsQ1vuHlpLFOGG3nCqywA2hueLMRQmVcDXzP0sGeygce6dzRI9dJB/GA=="; 786 + url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.110.0.tgz"; 787 + sha512 = "lwLAQQveCiUqymQvVYjCee6QOXw3Zqbc9yq+pxYdXbs1Cv1XMA6PeJeUU5r5KEVuSceBLyyrnl6E0R1l1om1MQ=="; 779 788 }; 780 789 }; 781 - "@aws-sdk/middleware-sdk-s3-3.105.0" = { 790 + "@aws-sdk/middleware-sdk-s3-3.110.0" = { 782 791 name = "_at_aws-sdk_slash_middleware-sdk-s3"; 783 792 packageName = "@aws-sdk/middleware-sdk-s3"; 784 - version = "3.105.0"; 793 + version = "3.110.0"; 785 794 src = fetchurl { 786 - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.105.0.tgz"; 787 - sha512 = "GI2vYiboOc3GNpjNUtGyBVi9R6hwLhjId2PPqchyiRntlzz9CfF4F2qMjH/Vv0kE383hT8TN+5kGmaVSmeJqmg=="; 795 + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.110.0.tgz"; 796 + sha512 = "/PpZU11dkGldD6yeAccPxFd5nzofLOA3+j25RdIwz2jlJMLl9TeznYRtFH5JhHonP3lsK+IPEnFPwuL6gkBxIQ=="; 788 797 }; 789 798 }; 790 - "@aws-sdk/middleware-sdk-sts-3.78.0" = { 799 + "@aws-sdk/middleware-sdk-sts-3.110.0" = { 791 800 name = "_at_aws-sdk_slash_middleware-sdk-sts"; 792 801 packageName = "@aws-sdk/middleware-sdk-sts"; 793 - version = "3.78.0"; 802 + version = "3.110.0"; 794 803 src = fetchurl { 795 - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.78.0.tgz"; 796 - sha512 = "Lu/kN0J0/Kt0ON1hvwNel+y8yvf35licfIgtedHbBCa/ju8qQ9j+uL9Lla6Y5Tqu29yVaye1JxhiIDhscSwrLA=="; 804 + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.110.0.tgz"; 805 + sha512 = "EjY/YFdlr5jECde6qIrTIyGBbn/34CKcQGKvmvRd31+3qaClIJLAwNuHfcVzWvCUGbAslsfvdbOpLju33pSQRA=="; 797 806 }; 798 807 }; 799 - "@aws-sdk/middleware-serde-3.78.0" = { 808 + "@aws-sdk/middleware-serde-3.110.0" = { 800 809 name = "_at_aws-sdk_slash_middleware-serde"; 801 810 packageName = "@aws-sdk/middleware-serde"; 802 - version = "3.78.0"; 811 + version = "3.110.0"; 803 812 src = fetchurl { 804 - url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.78.0.tgz"; 805 - sha512 = "4DPsNOxsl1bxRzfo1WXEZjmD7OEi7qGNpxrDWucVe96Fqj2dH08jR8wxvBIVV1e6bAad07IwdPuCGmivNvwRuQ=="; 813 + url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.110.0.tgz"; 814 + sha512 = "brVupxgEAmcZ9cZvdHEH8zncjvGKIiud8pOe4fiimp5NpHmjBLew4jUbnOKNZNAjaidcKUtz//cxtutD6yXEww=="; 806 815 }; 807 816 }; 808 - "@aws-sdk/middleware-signing-3.78.0" = { 817 + "@aws-sdk/middleware-signing-3.110.0" = { 809 818 name = "_at_aws-sdk_slash_middleware-signing"; 810 819 packageName = "@aws-sdk/middleware-signing"; 811 - version = "3.78.0"; 820 + version = "3.110.0"; 812 821 src = fetchurl { 813 - url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.78.0.tgz"; 814 - sha512 = "OEjJJCNhHHSOprLZ9CzjHIXEKFtPHWP/bG9pMhkV3/6Bmscsgcf8gWHcOnmIrjqX+hT1VALDNpl/RIh0J6/eQw=="; 822 + url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.110.0.tgz"; 823 + sha512 = "y6ZKrGYfgDlFMzWhZmoq5J1UctBgZOUvMmnU9sSeZ020IlEPiOxFMvR0Zu6TcYThp8uy3P0wyjQtGYeTl9Z/kA=="; 815 824 }; 816 825 }; 817 - "@aws-sdk/middleware-ssec-3.78.0" = { 826 + "@aws-sdk/middleware-ssec-3.110.0" = { 818 827 name = "_at_aws-sdk_slash_middleware-ssec"; 819 828 packageName = "@aws-sdk/middleware-ssec"; 820 - version = "3.78.0"; 829 + version = "3.110.0"; 821 830 src = fetchurl { 822 - url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.78.0.tgz"; 823 - sha512 = "3z+UOd95rxvj+iO6WxMjuRNNUMlO6xhXZdBHvQmoiyS+9nMDcNieTu6gfQyLAilVeCh8xU9a0IenJuIYVdJ96g=="; 831 + url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.110.0.tgz"; 832 + sha512 = "Zrm+h+C+MXv2Q+mh8O/zwK2hUYM4kq4I1vx72RPpvyfIk4/F5ZzeA3LSVluISyAW+iNqS8XFvGFrzl2gB8zWsg=="; 824 833 }; 825 834 }; 826 - "@aws-sdk/middleware-stack-3.78.0" = { 835 + "@aws-sdk/middleware-stack-3.110.0" = { 827 836 name = "_at_aws-sdk_slash_middleware-stack"; 828 837 packageName = "@aws-sdk/middleware-stack"; 829 - version = "3.78.0"; 838 + version = "3.110.0"; 830 839 src = fetchurl { 831 - url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.78.0.tgz"; 832 - sha512 = "UoNfRh6eAJN3BJHlG1eb+KeuSe+zARTC2cglroJRyHc2j7GxH2i9FD3IJbj5wvzopJEnQzuY/VCs6STFkqWL1g=="; 840 + url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.110.0.tgz"; 841 + sha512 = "iaLHw6ctOuGa9UxNueU01Xes+15dR+mqioRpUOUZ9Zx+vhXVpD7C8lnNqhRnYeFXs10/rNIzASgsIrAHTlnlIQ=="; 833 842 }; 834 843 }; 835 - "@aws-sdk/middleware-user-agent-3.78.0" = { 844 + "@aws-sdk/middleware-user-agent-3.110.0" = { 836 845 name = "_at_aws-sdk_slash_middleware-user-agent"; 837 846 packageName = "@aws-sdk/middleware-user-agent"; 838 - version = "3.78.0"; 847 + version = "3.110.0"; 839 848 src = fetchurl { 840 - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.78.0.tgz"; 841 - sha512 = "wdN5uoq8RxxhLhj0EPeuDSRFuXfUwKeEqRzCKMsYAOC0cAm+PryaP2leo0oTGJ9LUK8REK7zyfFcmtC4oOzlkA=="; 849 + url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.110.0.tgz"; 850 + sha512 = "Y6FgiZr99DilYq6AjeaaWcNwVlSQpNGKrILzvV4Tmz03OaBIspe4KL+8EZ2YA/sAu5Lpw80vItdezqDOwGAlnQ=="; 842 851 }; 843 852 }; 844 - "@aws-sdk/node-config-provider-3.80.0" = { 853 + "@aws-sdk/node-config-provider-3.110.0" = { 845 854 name = "_at_aws-sdk_slash_node-config-provider"; 846 855 packageName = "@aws-sdk/node-config-provider"; 847 - version = "3.80.0"; 856 + version = "3.110.0"; 848 857 src = fetchurl { 849 - url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.80.0.tgz"; 850 - sha512 = "vyTOMK04huB7n10ZUv0thd2TE6KlY8livOuLqFTMtj99AJ6vyeB5XBNwKnQtJIt/P7CijYgp8KcFvI9fndOmKg=="; 858 + url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.110.0.tgz"; 859 + sha512 = "46p4dCPGYctuybTQTwLpjenA1QFHeyJw/OyggGbtUJUy+833+ldnAwcPVML2aXJKUKv3APGI8vq1kaloyNku3Q=="; 851 860 }; 852 861 }; 853 - "@aws-sdk/node-http-handler-3.94.0" = { 862 + "@aws-sdk/node-http-handler-3.110.0" = { 854 863 name = "_at_aws-sdk_slash_node-http-handler"; 855 864 packageName = "@aws-sdk/node-http-handler"; 856 - version = "3.94.0"; 865 + version = "3.110.0"; 857 866 src = fetchurl { 858 - url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.94.0.tgz"; 859 - sha512 = "g9q6k+PS+BrtOzt8jrBWr9D543uB3ZoYZ2JCriwuCwnP4uIHlMf9wAOGcOgqgykfUAPBOLvz2rTwVs3Xl8GUmQ=="; 867 + url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.110.0.tgz"; 868 + sha512 = "/rP+hY516DpP8fZhwFW5xM/ElH0w6lxw/15VvZCoY5EnOLAF5XIsJdzscWPSEW2FHCylBM4SNrKhGar14BDXhA=="; 860 869 }; 861 870 }; 862 - "@aws-sdk/property-provider-3.78.0" = { 871 + "@aws-sdk/property-provider-3.110.0" = { 863 872 name = "_at_aws-sdk_slash_property-provider"; 864 873 packageName = "@aws-sdk/property-provider"; 865 - version = "3.78.0"; 874 + version = "3.110.0"; 866 875 src = fetchurl { 867 - url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.78.0.tgz"; 868 - sha512 = "PZpLvV0hF6lqg3CSN9YmphrB/t5LVJVWGJLB9d9qm7sJs5ksjTYBb5bY91OQ3zit0F4cqBMU8xt2GQ9J6d4DvQ=="; 876 + url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.110.0.tgz"; 877 + sha512 = "7NkpmYeOkK3mhWBNU+/zSDqwzeaSPH1qrq4L//WV7WS/weYyE/jusQeZoOxVsuZQnQEXHt5O2hKVeUwShl12xA=="; 869 878 }; 870 879 }; 871 - "@aws-sdk/protocol-http-3.78.0" = { 880 + "@aws-sdk/protocol-http-3.110.0" = { 872 881 name = "_at_aws-sdk_slash_protocol-http"; 873 882 packageName = "@aws-sdk/protocol-http"; 874 - version = "3.78.0"; 883 + version = "3.110.0"; 875 884 src = fetchurl { 876 - url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.78.0.tgz"; 877 - sha512 = "SQB26MhEK96yDxyXd3UAaxLz1Y/ZvgE4pzv7V3wZiokdEedM0kawHKEn1UQJlqJLEZcQI9QYyysh3rTvHZ3fyg=="; 885 + url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.110.0.tgz"; 886 + sha512 = "qdi2gCbJiyPyLn+afebPNp/5nVCRh1X7t7IRIFl3FHVEC+o54u/ojay/MLZ4M/+X9Fa4Zxsb0Wpp3T0xAHVDBg=="; 878 887 }; 879 888 }; 880 - "@aws-sdk/querystring-builder-3.78.0" = { 889 + "@aws-sdk/querystring-builder-3.110.0" = { 881 890 name = "_at_aws-sdk_slash_querystring-builder"; 882 891 packageName = "@aws-sdk/querystring-builder"; 883 - version = "3.78.0"; 892 + version = "3.110.0"; 884 893 src = fetchurl { 885 - url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.78.0.tgz"; 886 - sha512 = "aib6RW1WAaTQDqVgRU1Ku9idkhm90gJKbCxVaGId+as6QHNUqMChEfK2v+0afuKiPNOs5uWmqvOXI9+Gt+UGDg=="; 894 + url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.110.0.tgz"; 895 + sha512 = "7V3CDXj519izmbBn9ZE68ymASwGriA+Aq+cb/yHSVtffnvXjPtvONNw7G/5iVblisGLSCUe2hSvpYtcaXozbHw=="; 887 896 }; 888 897 }; 889 - "@aws-sdk/querystring-parser-3.78.0" = { 898 + "@aws-sdk/querystring-parser-3.110.0" = { 890 899 name = "_at_aws-sdk_slash_querystring-parser"; 891 900 packageName = "@aws-sdk/querystring-parser"; 892 - version = "3.78.0"; 901 + version = "3.110.0"; 893 902 src = fetchurl { 894 - url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.78.0.tgz"; 895 - sha512 = "csaH8YTyN+KMNczeK6fBS8l7iJaqcQcKOIbpQFg5upX4Ly5A56HJn4sVQhY1LSgfSk4xRsNfMy5mu6BlsIiaXA=="; 903 + url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.110.0.tgz"; 904 + sha512 = "//pJHH7hrhdDMZGBPKXKymmC/tJM7gFT0w/qbu/yd3Wm4W2fMB+8gkmj6EZctx7jrsWlfRQuvFejKqEfapur/g=="; 896 905 }; 897 906 }; 898 - "@aws-sdk/s3-request-presigner-3.107.0" = { 907 + "@aws-sdk/s3-request-presigner-3.110.0" = { 899 908 name = "_at_aws-sdk_slash_s3-request-presigner"; 900 909 packageName = "@aws-sdk/s3-request-presigner"; 901 - version = "3.107.0"; 910 + version = "3.110.0"; 902 911 src = fetchurl { 903 - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.107.0.tgz"; 904 - sha512 = "sQLnUf+7moyZBMGZLGV5nZWoIY78K3MRz8IYi+2rZIZHyo29kVr+KUPqDo+nDQDCNTnjvnNNK/DmAVlcnPhqmw=="; 912 + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.110.0.tgz"; 913 + sha512 = "YaRu9Qtaooe/VEUeel2gmet7G9picDYoVIl5/xLHdc5jHQ0Uh9RDv1NVzg/EXkMiFPMHuPlFSgo4l6BwiGixDA=="; 905 914 }; 906 915 }; 907 - "@aws-sdk/service-error-classification-3.78.0" = { 916 + "@aws-sdk/service-error-classification-3.110.0" = { 908 917 name = "_at_aws-sdk_slash_service-error-classification"; 909 918 packageName = "@aws-sdk/service-error-classification"; 910 - version = "3.78.0"; 919 + version = "3.110.0"; 911 920 src = fetchurl { 912 - url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.78.0.tgz"; 913 - sha512 = "x7Lx8KWctJa01q4Q72Zb4ol9L/era3vy2daASu8l2paHHxsAPBE0PThkvLdUSLZSzlHSVdh3YHESIsT++VsK4w=="; 921 + url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.110.0.tgz"; 922 + sha512 = "ccgCE0pU/4RmXR6CP3fLAdhPAve7bK/yXBbGzpSHGAQOXqNxYzOsAvQ30Jg6X+qjLHsI/HR2pLIE65z4k6tynw=="; 914 923 }; 915 924 }; 916 - "@aws-sdk/shared-ini-file-loader-3.80.0" = { 925 + "@aws-sdk/shared-ini-file-loader-3.110.0" = { 917 926 name = "_at_aws-sdk_slash_shared-ini-file-loader"; 918 927 packageName = "@aws-sdk/shared-ini-file-loader"; 919 - version = "3.80.0"; 928 + version = "3.110.0"; 920 929 src = fetchurl { 921 - url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.80.0.tgz"; 922 - sha512 = "3d5EBJjnWWkjLK9skqLLHYbagtFaZZy+3jUTlbTuOKhlOwe8jF7CUM3j6I4JA6yXNcB3w0exDKKHa8w+l+05aA=="; 930 + url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.110.0.tgz"; 931 + sha512 = "E1ERoqEoG206XNBYWCKLgHkzCbTxdpDEGbsLET2DnvjFsT0s9p2dPvVux3bYl7JVAhyGduE+qcqWk7MzhFCBNQ=="; 923 932 }; 924 933 }; 925 - "@aws-sdk/signature-v4-3.78.0" = { 934 + "@aws-sdk/signature-v4-3.110.0" = { 926 935 name = "_at_aws-sdk_slash_signature-v4"; 927 936 packageName = "@aws-sdk/signature-v4"; 928 - version = "3.78.0"; 937 + version = "3.110.0"; 929 938 src = fetchurl { 930 - url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.78.0.tgz"; 931 - sha512 = "eePjRYuzKoi3VMr/lgrUEF1ytLeH4fA/NMCykr/uR6NMo4bSJA59KrFLYSM7SlWLRIyB0UvJqygVEvSxFluyDw=="; 939 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.110.0.tgz"; 940 + sha512 = "utxxdllOnmQDhbpipnFAbuQ4c2pwefZ+2hi48jKvQRULQ2PO4nxLmdZm6B0FXaTijbKsyO7GrMik+EZ6mi3ARQ=="; 932 941 }; 933 942 }; 934 - "@aws-sdk/signature-v4-multi-region-3.88.0" = { 943 + "@aws-sdk/signature-v4-multi-region-3.110.0" = { 935 944 name = "_at_aws-sdk_slash_signature-v4-multi-region"; 936 945 packageName = "@aws-sdk/signature-v4-multi-region"; 937 - version = "3.88.0"; 946 + version = "3.110.0"; 938 947 src = fetchurl { 939 - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.88.0.tgz"; 940 - sha512 = "RBbyQRpohlIQiuZc5qAvwbXO0Bob9XhHFS/kuLh+DcyeaBp+m+Bt291FX1Ksz2A0Q3ETNM34LFt7kTOBtMvjIQ=="; 948 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.110.0.tgz"; 949 + sha512 = "D5nlq6em9fU9EMmpjQtLItr2d6MmfM9yofOaeNQcgY8wFJEOCc2ADccq8dCO0F4twakAvjuUIkBAWMBviiuC7Q=="; 941 950 }; 942 951 }; 943 - "@aws-sdk/smithy-client-3.99.0" = { 952 + "@aws-sdk/smithy-client-3.110.0" = { 944 953 name = "_at_aws-sdk_slash_smithy-client"; 945 954 packageName = "@aws-sdk/smithy-client"; 946 - version = "3.99.0"; 955 + version = "3.110.0"; 947 956 src = fetchurl { 948 - url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.99.0.tgz"; 949 - sha512 = "N9xgCcwbOBZ4/WuROzlErExXV6+vFrFkNJzeBT31/avvrHXjxgxwQlMoXoQCfM8PyRuDuVSfZeoh1iIRfoxidA=="; 957 + url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.110.0.tgz"; 958 + sha512 = "gNLYrmdAe/1hVF2Nv2LF4OkL1A0a1o708pEMZHzql9xP164omRDaLrGDhz9tH7tsJEgLz+Bf4E8nTuISeDwvGg=="; 950 959 }; 951 960 }; 952 - "@aws-sdk/types-3.78.0" = { 961 + "@aws-sdk/types-3.110.0" = { 953 962 name = "_at_aws-sdk_slash_types"; 954 963 packageName = "@aws-sdk/types"; 955 - version = "3.78.0"; 964 + version = "3.110.0"; 956 965 src = fetchurl { 957 - url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.78.0.tgz"; 958 - sha512 = "I9PTlVNSbwhIgMfmDM5as1tqRIkVZunjVmfogb2WVVPp4CaX0Ll01S0FSMSLL9k6tcQLXqh45pFRjrxCl9WKdQ=="; 966 + url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.110.0.tgz"; 967 + sha512 = "dLVoqODU3laaqNFPyN1QLtlQnwX4gNPMXptEBIt/iJpuZf66IYJe6WCzVZGt4Zfa1CnUmrlA428AzdcA/KCr2A=="; 959 968 }; 960 969 }; 961 - "@aws-sdk/url-parser-3.78.0" = { 970 + "@aws-sdk/url-parser-3.110.0" = { 962 971 name = "_at_aws-sdk_slash_url-parser"; 963 972 packageName = "@aws-sdk/url-parser"; 964 - version = "3.78.0"; 973 + version = "3.110.0"; 965 974 src = fetchurl { 966 - url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.78.0.tgz"; 967 - sha512 = "iQn2AjECUoJE0Ae9XtgHtGGKvUkvE8hhbktGopdj+zsPBe4WrBN2DgVxlKPPrBonG/YlcL1D7a5EXaujWSlUUw=="; 975 + url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.110.0.tgz"; 976 + sha512 = "tILFB8/Q73yzgO0dErJNnELmmBszd0E6FucwAnG3hfDefjqCBe09Q/1yhu2aARXyRmZa4AKp0sWcdwIWHc8dnA=="; 968 977 }; 969 978 }; 970 979 "@aws-sdk/util-arn-parser-3.55.0" = { ··· 976 985 sha512 = "76KJxp4MRWufHYWys7DFl64znr5yeJ3AIQNAPCKKw1sP0hzO7p6Kx0PaJnw9x+CPSzOrT4NbuApL6/srYhKDGg=="; 977 986 }; 978 987 }; 979 - "@aws-sdk/util-base64-browser-3.58.0" = { 988 + "@aws-sdk/util-base64-browser-3.109.0" = { 980 989 name = "_at_aws-sdk_slash_util-base64-browser"; 981 990 packageName = "@aws-sdk/util-base64-browser"; 982 - version = "3.58.0"; 991 + version = "3.109.0"; 983 992 src = fetchurl { 984 - url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.58.0.tgz"; 985 - sha512 = "0ebsXIZNpu/fup9OgsFPnRKfCFbuuI9PPRzvP6twzLxUB0c/aix6Co7LGHFKcRKHZdaykoJMXArf8eHj2Nzv1Q=="; 993 + url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.109.0.tgz"; 994 + sha512 = "lAZ6fyDGiRLaIsKT9qh7P9FGuNyZ4gAbr1YOSQk/5mHtaTuUvxlPptZuInNM/0MPQm6lpcot00D8IWTucn4PbA=="; 986 995 }; 987 996 }; 988 997 "@aws-sdk/util-base64-node-3.55.0" = { ··· 1021 1030 sha512 = "uVzKG1UgvnV7XX2FPTylBujYMKBPBaq/qFBxfl0LVNfrty7YjpfieQxAe6yRLD+T0Kir/WDQwGvYC+tOYG3IGA=="; 1022 1031 }; 1023 1032 }; 1024 - "@aws-sdk/util-config-provider-3.55.0" = { 1033 + "@aws-sdk/util-config-provider-3.109.0" = { 1025 1034 name = "_at_aws-sdk_slash_util-config-provider"; 1026 1035 packageName = "@aws-sdk/util-config-provider"; 1027 - version = "3.55.0"; 1036 + version = "3.109.0"; 1028 1037 src = fetchurl { 1029 - url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.55.0.tgz"; 1030 - sha512 = "30dzofQQfx6tp1jVZkZ0DGRsT0wwC15nEysKRiAcjncM64A0Cm6sra77d0os3vbKiKoPCI/lMsFr4o3533+qvQ=="; 1038 + url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.109.0.tgz"; 1039 + sha512 = "GrAZl/aBv0A28LkyNyq8SPJ5fmViCwz80fWLMeWx/6q5AbivuILogjlWwEZSvZ9zrlHOcFC0+AnCa5pQrjaslw=="; 1031 1040 }; 1032 1041 }; 1033 - "@aws-sdk/util-create-request-3.99.0" = { 1042 + "@aws-sdk/util-create-request-3.110.0" = { 1034 1043 name = "_at_aws-sdk_slash_util-create-request"; 1035 1044 packageName = "@aws-sdk/util-create-request"; 1036 - version = "3.99.0"; 1045 + version = "3.110.0"; 1037 1046 src = fetchurl { 1038 - url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.99.0.tgz"; 1039 - sha512 = "7+jM8xe2u5FW7ufRqHTmvJa7nH9f8uZXuWpHcmITKm8IRnkst1ib1DUctEZE+go9lnonzy4TttSNMt5NqFCgOA=="; 1047 + url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.110.0.tgz"; 1048 + sha512 = "8u+6WjzVNUdG4181y/zafIlGJ80qdSIKo09utlY7kvSZhYeufjkgMLhJtthb9uEEmXNn/UlKGJNRbGChjSL4Xw=="; 1040 1049 }; 1041 1050 }; 1042 - "@aws-sdk/util-defaults-mode-browser-3.99.0" = { 1051 + "@aws-sdk/util-defaults-mode-browser-3.110.0" = { 1043 1052 name = "_at_aws-sdk_slash_util-defaults-mode-browser"; 1044 1053 packageName = "@aws-sdk/util-defaults-mode-browser"; 1045 - version = "3.99.0"; 1054 + version = "3.110.0"; 1046 1055 src = fetchurl { 1047 - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.99.0.tgz"; 1048 - sha512 = "qSYjUGuN8n7Q/zAi0tzU4BrU389jQosXtjp7eHpLATl0pKGpaHx6rJNwbiNhvBhBEfmSgqsJ09b4gZUpUezHEw=="; 1056 + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.110.0.tgz"; 1057 + sha512 = "Y2dcOOD20S3bv/IjUqpdKIiDt6995SXNG5Pu/LeSdXNyLCOIm9rX4gHTxl9fC1KK5M/gR9fGJ362f67WwqEEqw=="; 1049 1058 }; 1050 1059 }; 1051 - "@aws-sdk/util-defaults-mode-node-3.99.0" = { 1060 + "@aws-sdk/util-defaults-mode-node-3.110.0" = { 1052 1061 name = "_at_aws-sdk_slash_util-defaults-mode-node"; 1053 1062 packageName = "@aws-sdk/util-defaults-mode-node"; 1054 - version = "3.99.0"; 1063 + version = "3.110.0"; 1055 1064 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.99.0.tgz"; 1057 - sha512 = "8TUO0kEnQcgT1gAW9y9oO6a5gKhfEGEUeKidEgbTczEUrjr3aCXIC+p0DI5FJfImwPrTKXra8A22utDM92phWw=="; 1065 + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.110.0.tgz"; 1066 + sha512 = "Cr3Z5nyrw1KowjbW76xp8hkT/zJtYjAVZ9PS4l84KxIicbVvDOBpxG3yNddkuQcavmlH6G4wH9uM5DcnpKDncg=="; 1058 1067 }; 1059 1068 }; 1060 - "@aws-sdk/util-format-url-3.78.0" = { 1069 + "@aws-sdk/util-format-url-3.110.0" = { 1061 1070 name = "_at_aws-sdk_slash_util-format-url"; 1062 1071 packageName = "@aws-sdk/util-format-url"; 1063 - version = "3.78.0"; 1072 + version = "3.110.0"; 1064 1073 src = fetchurl { 1065 - url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.78.0.tgz"; 1066 - sha512 = "wdjt8ZAMyBrH/02QrQtB+S9cwtsBJ6bXRJ3XwL6z7L75nwTflKkzOQUS5Ie7HBf3j3JH0KhlqlEbf2nnM9jsPQ=="; 1074 + url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.110.0.tgz"; 1075 + sha512 = "NES/Kf92stj6bMl3WyaKFlA5yKbYlb357buoXKv51MnjcLL6NAgIWm0lMQv6UgzLVTxKdbw4BxErpSiKM+10Xg=="; 1067 1076 }; 1068 1077 }; 1069 - "@aws-sdk/util-hex-encoding-3.58.0" = { 1078 + "@aws-sdk/util-hex-encoding-3.109.0" = { 1070 1079 name = "_at_aws-sdk_slash_util-hex-encoding"; 1071 1080 packageName = "@aws-sdk/util-hex-encoding"; 1072 - version = "3.58.0"; 1081 + version = "3.109.0"; 1073 1082 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.58.0.tgz"; 1075 - sha512 = "Rl+jXUzk/FJkOLYfUVYPhKa2aUmTpeobRP31l8IatQltSzDgLyRHO35f6UEs7Ztn5s1jbu/POatLAZ2WjbgVyg=="; 1083 + url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.109.0.tgz"; 1084 + sha512 = "s8CgTNrn3cLkrdiohfxLuOYPCanzvHn/aH5RW6DaMoeQiG5Hl9QUiP/WtdQ9QQx3xvpQFpmvxIaSBwSgFNLQxA=="; 1076 1085 }; 1077 1086 }; 1078 1087 "@aws-sdk/util-locate-window-3.55.0" = { ··· 1084 1093 sha512 = "0sPmK2JaJE2BbTcnvybzob/VrFKCXKfN4CUKcvn0yGg/me7Bz+vtzQRB3Xp+YSx+7OtWxzv63wsvHoAnXvgxgg=="; 1085 1094 }; 1086 1095 }; 1087 - "@aws-sdk/util-middleware-3.78.0" = { 1096 + "@aws-sdk/util-middleware-3.110.0" = { 1088 1097 name = "_at_aws-sdk_slash_util-middleware"; 1089 1098 packageName = "@aws-sdk/util-middleware"; 1090 - version = "3.78.0"; 1099 + version = "3.110.0"; 1091 1100 src = fetchurl { 1092 - url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.78.0.tgz"; 1093 - sha512 = "Hi3wv2b0VogO4mzyeEaeU5KgIt4qeo0LXU5gS6oRrG0T7s2FyKbMBkJW3YDh/Y8fNwqArZ+/QQFujpP0PIKwkA=="; 1101 + url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.110.0.tgz"; 1102 + sha512 = "PTVWrI5fA9d5hHJs6RzX2dIS2jRQ3uW073Fm0BePpQeDdZrEk+S5KNwRhUtpN6sdSV45vm6S9rrjZUG51qwGmA=="; 1094 1103 }; 1095 1104 }; 1096 - "@aws-sdk/util-stream-browser-3.78.0" = { 1105 + "@aws-sdk/util-stream-browser-3.110.0" = { 1097 1106 name = "_at_aws-sdk_slash_util-stream-browser"; 1098 1107 packageName = "@aws-sdk/util-stream-browser"; 1099 - version = "3.78.0"; 1108 + version = "3.110.0"; 1100 1109 src = fetchurl { 1101 - url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.78.0.tgz"; 1102 - sha512 = "EcThf/sJoD4NYTUNO/nehR57lqkOuL6btRoVnm4LGUR8XgQcJ/WMYYgxOMY8E81xXzRFX2ukRHRxL2xmQsbHDw=="; 1110 + url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.110.0.tgz"; 1111 + sha512 = "kAMrHtgrhr6ODRnzt/V+LSDVDvejcbdUp19n4My2vrPwKw3lM65vT+FAPIlGeDQBtOOhmlTbrYM3G3KKnlnHyg=="; 1103 1112 }; 1104 1113 }; 1105 - "@aws-sdk/util-stream-node-3.78.0" = { 1114 + "@aws-sdk/util-stream-node-3.110.0" = { 1106 1115 name = "_at_aws-sdk_slash_util-stream-node"; 1107 1116 packageName = "@aws-sdk/util-stream-node"; 1108 - version = "3.78.0"; 1117 + version = "3.110.0"; 1109 1118 src = fetchurl { 1110 - url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.78.0.tgz"; 1111 - sha512 = "CHfX37ioUyamAnlS2p4Nq+4BBjCSlZolFkVyxtVJwzPBBksdvjW67nKG+SShR48RBPJ5LEzbgAaEXNRktCSf6w=="; 1119 + url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.110.0.tgz"; 1120 + sha512 = "jgkO7aLRpE3EUqU5XUdo0FmlyBVCFHKyHd/jdEN8h9+XMa44rl2QMdOSFQtwaNI4NC8J+OC66u2dQ+8QQnOLig=="; 1112 1121 }; 1113 1122 }; 1114 1123 "@aws-sdk/util-uri-escape-3.55.0" = { ··· 1120 1129 sha512 = "mmdDLUpFCN2nkfwlLdOM54lTD528GiGSPN1qb8XtGLgZsJUmg3uJSFIN2lPeSbEwJB3NFjVas/rnQC48i7mV8w=="; 1121 1130 }; 1122 1131 }; 1123 - "@aws-sdk/util-user-agent-browser-3.78.0" = { 1132 + "@aws-sdk/util-user-agent-browser-3.110.0" = { 1124 1133 name = "_at_aws-sdk_slash_util-user-agent-browser"; 1125 1134 packageName = "@aws-sdk/util-user-agent-browser"; 1126 - version = "3.78.0"; 1135 + version = "3.110.0"; 1127 1136 src = fetchurl { 1128 - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.78.0.tgz"; 1129 - sha512 = "diGO/Bf4ggBOEnfD7lrrXaaXOwOXGz0bAJ0HhpizwEMlBld5zfDlWXjNpslh+8+u3EHRjPJQ16KGT6mp/Dm+aw=="; 1137 + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.110.0.tgz"; 1138 + sha512 = "rNdhmHDMV5dNJctqlBWimkZLJRB+x03DB+61pm+SKSFk6gPIVIvc1WNXqDFphkiswT4vA13ZUkGHzt+N4+noQQ=="; 1130 1139 }; 1131 1140 }; 1132 - "@aws-sdk/util-user-agent-node-3.80.0" = { 1141 + "@aws-sdk/util-user-agent-node-3.110.0" = { 1133 1142 name = "_at_aws-sdk_slash_util-user-agent-node"; 1134 1143 packageName = "@aws-sdk/util-user-agent-node"; 1135 - version = "3.80.0"; 1144 + version = "3.110.0"; 1136 1145 src = fetchurl { 1137 - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.80.0.tgz"; 1138 - sha512 = "QV26qIXws1m6sZXg65NS+XrQ5NhAzbDVQLtEVE4nC39UN8fuieP6Uet/gZm9mlLI9hllwvcV7EfgBM3GSC7pZg=="; 1146 + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.110.0.tgz"; 1147 + sha512 = "OQ915TPCCBwZWz5Np8zkNWn7U6KvrTZfFoCOy/VIemK3dUqmnBZ7HqGpuZx8SwJ2R9JE1x+j0niYSJ5fWJZZKA=="; 1139 1148 }; 1140 1149 }; 1141 - "@aws-sdk/util-utf8-browser-3.55.0" = { 1150 + "@aws-sdk/util-utf8-browser-3.109.0" = { 1142 1151 name = "_at_aws-sdk_slash_util-utf8-browser"; 1143 1152 packageName = "@aws-sdk/util-utf8-browser"; 1144 - version = "3.55.0"; 1153 + version = "3.109.0"; 1145 1154 src = fetchurl { 1146 - url = "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.55.0.tgz"; 1147 - sha512 = "ljzqJcyjfJpEVSIAxwtIS8xMRUly84BdjlBXyp6cu4G8TUufgjNS31LWdhyGhgmW5vYBNr+LTz0Kwf6J+ou7Ug=="; 1155 + url = "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.109.0.tgz"; 1156 + sha512 = "FmcGSz0v7Bqpl1SE8G1Gc0CtDpug+rvqNCG/szn86JApD/f5x8oByjbEiAyTU2ZH2VevUntx6EW68ulHyH+x+w=="; 1148 1157 }; 1149 1158 }; 1150 - "@aws-sdk/util-utf8-node-3.55.0" = { 1159 + "@aws-sdk/util-utf8-node-3.109.0" = { 1151 1160 name = "_at_aws-sdk_slash_util-utf8-node"; 1152 1161 packageName = "@aws-sdk/util-utf8-node"; 1153 - version = "3.55.0"; 1162 + version = "3.109.0"; 1154 1163 src = fetchurl { 1155 - url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.55.0.tgz"; 1156 - sha512 = "FsFm7GFaC7j0tlPEm/ri8bU2QCwFW5WKjxUg8lm1oWaxplCpKGUsmcfPJ4sw58GIoyoGu4QXBK60oCWosZYYdQ=="; 1164 + url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.109.0.tgz"; 1165 + sha512 = "Ti/ZBdvz2eSTElsucjzNmzpyg2MwfD1rXmxD0hZuIF8bPON/0+sZYnWd5CbDw9kgmhy28dmKue086tbZ1G0iLQ=="; 1157 1166 }; 1158 1167 }; 1159 - "@aws-sdk/util-waiter-3.78.0" = { 1168 + "@aws-sdk/util-waiter-3.110.0" = { 1160 1169 name = "_at_aws-sdk_slash_util-waiter"; 1161 1170 packageName = "@aws-sdk/util-waiter"; 1162 - version = "3.78.0"; 1171 + version = "3.110.0"; 1163 1172 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.78.0.tgz"; 1165 - sha512 = "8pWd0XiNOS8AkWQyac8VNEI+gz/cGWlC2TAE2CJp0rOK5XhvlcNBINai4D6TxQ+9foyJXLOI1b8nuXemekoG8A=="; 1173 + url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.110.0.tgz"; 1174 + sha512 = "8dE6W6XYfjk1gx/aeb8NeLfMMLkLFhlV1lmKpFSBJhY8msajU8aQahTuykq5JW8QT/wCGbqbu7dH35SdX7kO+A=="; 1166 1175 }; 1167 1176 }; 1168 - "@aws-sdk/xml-builder-3.55.0" = { 1177 + "@aws-sdk/xml-builder-3.109.0" = { 1169 1178 name = "_at_aws-sdk_slash_xml-builder"; 1170 1179 packageName = "@aws-sdk/xml-builder"; 1171 - version = "3.55.0"; 1180 + version = "3.109.0"; 1172 1181 src = fetchurl { 1173 - url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.55.0.tgz"; 1174 - sha512 = "BH+i5S2FLprmfSeIuGy3UbNtEoJPVjh8arl5+LV3i2KY/+TmrS4yT8JtztDlDxHF0cMtNLZNO0KEPtsACS6SOg=="; 1182 + url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.109.0.tgz"; 1183 + sha512 = "+aAXynnrqya1Eukz4Gxch4xIXCZolIMWGD4Ll/Q5yXT5uAjGh2HQWd9J0LWE+gYChpWetZbAVYZ3cEJ6F+SpZA=="; 1175 1184 }; 1176 1185 }; 1177 1186 "@azu/format-text-1.0.1" = { ··· 1228 1237 sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; 1229 1238 }; 1230 1239 }; 1231 - "@babel/compat-data-7.17.10" = { 1240 + "@babel/compat-data-7.18.5" = { 1232 1241 name = "_at_babel_slash_compat-data"; 1233 1242 packageName = "@babel/compat-data"; 1234 - version = "7.17.10"; 1243 + version = "7.18.5"; 1235 1244 src = fetchurl { 1236 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.10.tgz"; 1237 - sha512 = "GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw=="; 1245 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.5.tgz"; 1246 + sha512 = "BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg=="; 1238 1247 }; 1239 1248 }; 1240 - "@babel/core-7.18.2" = { 1249 + "@babel/core-7.18.5" = { 1241 1250 name = "_at_babel_slash_core"; 1242 1251 packageName = "@babel/core"; 1243 - version = "7.18.2"; 1252 + version = "7.18.5"; 1244 1253 src = fetchurl { 1245 - url = "https://registry.npmjs.org/@babel/core/-/core-7.18.2.tgz"; 1246 - sha512 = "A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ=="; 1254 + url = "https://registry.npmjs.org/@babel/core/-/core-7.18.5.tgz"; 1255 + sha512 = "MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ=="; 1247 1256 }; 1248 1257 }; 1249 1258 "@babel/core-7.9.0" = { ··· 1489 1498 sha512 = "7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg=="; 1490 1499 }; 1491 1500 }; 1492 - "@babel/node-7.17.10" = { 1501 + "@babel/node-7.18.5" = { 1493 1502 name = "_at_babel_slash_node"; 1494 1503 packageName = "@babel/node"; 1495 - version = "7.17.10"; 1504 + version = "7.18.5"; 1496 1505 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@babel/node/-/node-7.17.10.tgz"; 1498 - sha512 = "sFFMyvw23U8QOcTnLJnw2/Myr01e4+iLVy7rHAHrNSnXAfnwS3j2NqihpmZm7TotyNKKf/y8cJ96T5asY46eyw=="; 1506 + url = "https://registry.npmjs.org/@babel/node/-/node-7.18.5.tgz"; 1507 + sha512 = "zv94ESipS2/YKAOJ+/WAfVEzsl9M8UmPZ7Hwx5qVPgytdrgwUPxfi700iR9KO/w5ZhIHyFyvoZtCTSEcQJF8vQ=="; 1499 1508 }; 1500 1509 }; 1501 1510 "@babel/parser-7.17.10" = { ··· 1507 1516 sha512 = "n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ=="; 1508 1517 }; 1509 1518 }; 1510 - "@babel/parser-7.18.4" = { 1519 + "@babel/parser-7.18.5" = { 1511 1520 name = "_at_babel_slash_parser"; 1512 1521 packageName = "@babel/parser"; 1513 - version = "7.18.4"; 1522 + version = "7.18.5"; 1514 1523 src = fetchurl { 1515 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.4.tgz"; 1516 - sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow=="; 1524 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz"; 1525 + sha512 = "YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw=="; 1517 1526 }; 1518 1527 }; 1519 1528 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12" = { ··· 2002 2011 sha512 = "f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ=="; 2003 2012 }; 2004 2013 }; 2005 - "@babel/plugin-transform-modules-systemjs-7.18.4" = { 2014 + "@babel/plugin-transform-modules-systemjs-7.18.5" = { 2006 2015 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 2007 2016 packageName = "@babel/plugin-transform-modules-systemjs"; 2008 - version = "7.18.4"; 2017 + version = "7.18.5"; 2009 2018 src = fetchurl { 2010 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.4.tgz"; 2011 - sha512 = "lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg=="; 2019 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.5.tgz"; 2020 + sha512 = "SEewrhPpcqMF1V7DhnEbhVJLrC+nnYfe1E0piZMZXBpxi9WvZqWGwpsk7JYP7wPWeqaBh4gyKlBhHJu3uz5g4Q=="; 2012 2021 }; 2013 2022 }; 2014 2023 "@babel/plugin-transform-modules-umd-7.18.0" = { ··· 2029 2038 sha512 = "vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA=="; 2030 2039 }; 2031 2040 }; 2032 - "@babel/plugin-transform-new-target-7.17.12" = { 2041 + "@babel/plugin-transform-new-target-7.18.5" = { 2033 2042 name = "_at_babel_slash_plugin-transform-new-target"; 2034 2043 packageName = "@babel/plugin-transform-new-target"; 2035 - version = "7.17.12"; 2044 + version = "7.18.5"; 2036 2045 src = fetchurl { 2037 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.17.12.tgz"; 2038 - sha512 = "CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w=="; 2046 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.5.tgz"; 2047 + sha512 = "TuRL5uGW4KXU6OsRj+mLp9BM7pO8e7SGNTEokQRRxHFkXYMFiy2jlKSZPFtI/mKORDzciH+hneskcSOp0gU8hg=="; 2039 2048 }; 2040 2049 }; 2041 2050 "@babel/plugin-transform-object-super-7.16.7" = { ··· 2119 2128 sha512 = "1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA=="; 2120 2129 }; 2121 2130 }; 2122 - "@babel/plugin-transform-runtime-7.18.2" = { 2131 + "@babel/plugin-transform-runtime-7.18.5" = { 2123 2132 name = "_at_babel_slash_plugin-transform-runtime"; 2124 2133 packageName = "@babel/plugin-transform-runtime"; 2125 - version = "7.18.2"; 2134 + version = "7.18.5"; 2126 2135 src = fetchurl { 2127 - url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.2.tgz"; 2128 - sha512 = "mr1ufuRMfS52ttq+1G1PD8OJNqgcTFjq3hwn8SZ5n1x1pBhi0E36rYMdTK0TsKtApJ4lDEdfXJwtGobQMHSMPg=="; 2136 + url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.5.tgz"; 2137 + sha512 = "Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA=="; 2129 2138 }; 2130 2139 }; 2131 2140 "@babel/plugin-transform-shorthand-properties-7.16.7" = { ··· 2308 2317 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 2309 2318 }; 2310 2319 }; 2311 - "@babel/traverse-7.18.2" = { 2320 + "@babel/traverse-7.18.5" = { 2312 2321 name = "_at_babel_slash_traverse"; 2313 2322 packageName = "@babel/traverse"; 2314 - version = "7.18.2"; 2323 + version = "7.18.5"; 2315 2324 src = fetchurl { 2316 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.2.tgz"; 2317 - sha512 = "9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA=="; 2325 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.5.tgz"; 2326 + sha512 = "aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA=="; 2318 2327 }; 2319 2328 }; 2320 2329 "@babel/types-7.17.10" = { ··· 2344 2353 sha512 = "ANRQZT5h9+zC8B/y0S9B+SqEpicL0XRT4drAhiPFHBrOStRZWzOh3bPrwNSPqr7tdShxYtMyxbH+fkHMetZaxg=="; 2345 2354 }; 2346 2355 }; 2347 - "@blueprintjs/core-4.5.0" = { 2356 + "@blueprintjs/core-4.5.1" = { 2348 2357 name = "_at_blueprintjs_slash_core"; 2349 2358 packageName = "@blueprintjs/core"; 2350 - version = "4.5.0"; 2359 + version = "4.5.1"; 2351 2360 src = fetchurl { 2352 - url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.5.0.tgz"; 2353 - sha512 = "lTymPTV/yKMCLq6Ra3LKHLDUpPdpnRN0jHKqB0dcAMLvo7ID/ZeEAxt1VJeqhufqzQewXUjOYlKl2/BfAlh9dg=="; 2361 + url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.5.1.tgz"; 2362 + sha512 = "CrMkeuvVo+GD/hv6T9W6GNWvTJ7TGpzs2r3v0zO1lMfAYj4v2gaisSXQQ2HziT7zO/kYDyu9aRpbGv0KSvryQA=="; 2354 2363 }; 2355 2364 }; 2356 2365 "@blueprintjs/icons-4.3.0" = { ··· 2749 2758 sha512 = "GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw=="; 2750 2759 }; 2751 2760 }; 2752 - "@cspell/dict-docker-1.1.0" = { 2761 + "@cspell/dict-docker-1.1.1" = { 2753 2762 name = "_at_cspell_slash_dict-docker"; 2754 2763 packageName = "@cspell/dict-docker"; 2755 - version = "1.1.0"; 2764 + version = "1.1.1"; 2756 2765 src = fetchurl { 2757 - url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.0.tgz"; 2758 - sha512 = "2OI5srKxeoiOnAD34jGK2pDGbgeQDnBCuE64bM04Uct7QxPjIv1RDpWLa3VMWhFIzeoyNSNWwDB+x5ufVc6VXA=="; 2766 + url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.1.tgz"; 2767 + sha512 = "UEYoeRDm7oUN9yz1mYSozz6D4+2N14S/cd2Re9et6Xzq6yi62s4ky3knF92Of2weelADjnN41UA22VBhRAf7Sw=="; 2759 2768 }; 2760 2769 }; 2761 2770 "@cspell/dict-dotnet-2.0.1" = { ··· 2785 2794 sha512 = "tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g=="; 2786 2795 }; 2787 2796 }; 2788 - "@cspell/dict-en_us-2.2.5" = { 2797 + "@cspell/dict-en_us-2.2.6" = { 2789 2798 name = "_at_cspell_slash_dict-en_us"; 2790 2799 packageName = "@cspell/dict-en_us"; 2791 - version = "2.2.5"; 2800 + version = "2.2.6"; 2792 2801 src = fetchurl { 2793 - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.5.tgz"; 2794 - sha512 = "gRHem02ZY83AQUTYBxtiVNmtM6gWFCJKumRoAKLj7vWYelmNLcCBsMA3BOOOJ7cZNKCI04lDEdh0u2f2akKZtQ=="; 2802 + url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.6.tgz"; 2803 + sha512 = "TJ4edLus8TV6Tr7ceOxHG5ZV2MhKJioteNT9jhdcSTdySsfQJjDAx6AIGiVVeRu5s9yR61oL5In7UyMCA80RWQ=="; 2795 2804 }; 2796 2805 }; 2797 - "@cspell/dict-filetypes-2.0.1" = { 2806 + "@cspell/dict-filetypes-2.0.2" = { 2798 2807 name = "_at_cspell_slash_dict-filetypes"; 2799 2808 packageName = "@cspell/dict-filetypes"; 2800 - version = "2.0.1"; 2809 + version = "2.0.2"; 2801 2810 src = fetchurl { 2802 - url = "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-2.0.1.tgz"; 2803 - sha512 = "bQ7K3U/3hKO2lpQjObf0veNP/n50qk5CVezSwApMBckf/sAVvDTR1RGAvYdr+vdQnkdQrk6wYmhbshXi0sLDVg=="; 2811 + url = "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-2.0.2.tgz"; 2812 + sha512 = "do7/Iwxjx+FHybe6UTocsWNRF1ar4cwhQoV2K2YzYTm73CoU5LMEwi2LY0Mwp/mn90TKbpPPQGCJ0sRpvaZ4AA=="; 2804 2813 }; 2805 2814 }; 2806 2815 "@cspell/dict-fonts-2.0.0" = { ··· 2848 2857 sha512 = "cjX1Br+gSWqtcmJD/IMHz1UoP3pUaKIIKy/JfhEs7ANtRt6hhfEKe9dl2kQzDkkKt4pXol+YgdYxL/sVc/nLgQ=="; 2849 2858 }; 2850 2859 }; 2851 - "@cspell/dict-html-3.0.1" = { 2860 + "@cspell/dict-html-3.0.2" = { 2852 2861 name = "_at_cspell_slash_dict-html"; 2853 2862 packageName = "@cspell/dict-html"; 2854 - version = "3.0.1"; 2863 + version = "3.0.2"; 2855 2864 src = fetchurl { 2856 - url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-3.0.1.tgz"; 2857 - sha512 = "sbuFd+nSjgbrGf5eYwSddFhm1eLLePKWyH6Zn8Zb0OODrBK5e4vGn1/scI/MOH5a2IvNs8W9wp84uMBFJcQZtw=="; 2865 + url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-3.0.2.tgz"; 2866 + sha512 = "ugMVQHZTvpYA/w8/E2dbSx2hdfFU9y91Omx40VUC6cNyF7jx00VKueK6gcRF3QZoB1PUhjla2YzxqRxuXI908A=="; 2858 2867 }; 2859 2868 }; 2860 2869 "@cspell/dict-html-symbol-entities-3.0.0" = { ··· 2866 2875 sha512 = "04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ=="; 2867 2876 }; 2868 2877 }; 2869 - "@cspell/dict-java-3.0.2" = { 2878 + "@cspell/dict-java-3.0.3" = { 2870 2879 name = "_at_cspell_slash_dict-java"; 2871 2880 packageName = "@cspell/dict-java"; 2872 - version = "3.0.2"; 2881 + version = "3.0.3"; 2873 2882 src = fetchurl { 2874 - url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-3.0.2.tgz"; 2875 - sha512 = "OUhtLruqN+ztDEViEQDw22L883xaignSZHyl7CnD8rTwcuhcaumdAhu4c3mygIDnFGtk/a+pk4ZaXk1ZINvK7g=="; 2883 + url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-3.0.3.tgz"; 2884 + sha512 = "aARF22BmO03YgV0robADNVf32KnvF/wMMoByYQk4IaQWh8kJ1s///S44aY/4n/Cg2tX/1kNa60VMkdCNFD7FPw=="; 2876 2885 }; 2877 2886 }; 2878 - "@cspell/dict-latex-2.0.5" = { 2887 + "@cspell/dict-latex-2.0.6" = { 2879 2888 name = "_at_cspell_slash_dict-latex"; 2880 2889 packageName = "@cspell/dict-latex"; 2881 - version = "2.0.5"; 2890 + version = "2.0.6"; 2882 2891 src = fetchurl { 2883 - url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-2.0.5.tgz"; 2884 - sha512 = "r6aOaLWzvH3lZteVo/TiS6Ee2vng2qDwtvHLEHrzsq/SaIeHb6FoKJxnMpaNE1H85G/LMkG0LA1tMtl0C3JxsQ=="; 2892 + url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-2.0.6.tgz"; 2893 + sha512 = "DCe/YlUMnY+/BaaHLIs2LYPgpWF4to5V9lggEkJy4CsHyD0WPqV4JpoaOMrcsK/jbUrD39T91NruwlcPJoo7xQ=="; 2885 2894 }; 2886 2895 }; 2887 2896 "@cspell/dict-lorem-ipsum-2.0.0" = { ··· 2974 2983 sha512 = "qGqhYfFeoBOashv/l0Kj5o4ilyvfq0s+t+r32juPOkOnbHz+hzxnJo2tMMg/L/UdjVV7Y8ovg4LDBC/seVrMYQ=="; 2975 2984 }; 2976 2985 }; 2977 - "@cspell/dict-rust-2.0.0" = { 2986 + "@cspell/dict-rust-2.0.1" = { 2978 2987 name = "_at_cspell_slash_dict-rust"; 2979 2988 packageName = "@cspell/dict-rust"; 2980 - version = "2.0.0"; 2989 + version = "2.0.1"; 2981 2990 src = fetchurl { 2982 - url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-2.0.0.tgz"; 2983 - sha512 = "EWlQivTKXMU3TTcq/Pi6KPKTQADknasQ700UrxRPzxhwQ4sKVZ88GDu6VZJlsbFUz8Vko289KS6wjiox/7WpmQ=="; 2991 + url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-2.0.1.tgz"; 2992 + sha512 = "ATDpIh0VWpQdUIZa8zqqJY4wQz3q00BTXlQCodeOmObYSb23+L6KWWzJ8mKLgpbc1lqTkogWrqxiCxlrCmqNmg=="; 2984 2993 }; 2985 2994 }; 2986 2995 "@cspell/dict-scala-2.0.0" = { ··· 3397 3406 sha512 = "8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA=="; 3398 3407 }; 3399 3408 }; 3400 - "@emotion/is-prop-valid-1.1.2" = { 3409 + "@emotion/is-prop-valid-1.1.3" = { 3401 3410 name = "_at_emotion_slash_is-prop-valid"; 3402 3411 packageName = "@emotion/is-prop-valid"; 3403 - version = "1.1.2"; 3412 + version = "1.1.3"; 3404 3413 src = fetchurl { 3405 - url = "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.1.2.tgz"; 3406 - sha512 = "3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ=="; 3414 + url = "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.1.3.tgz"; 3415 + sha512 = "RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA=="; 3407 3416 }; 3408 3417 }; 3409 3418 "@emotion/memoize-0.7.5" = { ··· 3739 3748 sha512 = "ax8izl48JJuymEuvJzvNH22GHmpPEWLP+h4doyFZ/9IhR9AEycNc2rGBthZ5FiuktnFgusNag1AHr/WCj5pttw=="; 3740 3749 }; 3741 3750 }; 3742 - "@fluentui/react-8.73.0" = { 3751 + "@fluentui/react-8.76.0" = { 3743 3752 name = "_at_fluentui_slash_react"; 3744 3753 packageName = "@fluentui/react"; 3745 - version = "8.73.0"; 3754 + version = "8.76.0"; 3746 3755 src = fetchurl { 3747 - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.73.0.tgz"; 3748 - sha512 = "uecXu17rAwqZ8dMbWI351gYecj9wA0DegHsHts7ZhUfcein5SjNDztuGrp/C+2FJoA8KicVumXLVVAvWho6TVQ=="; 3756 + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.76.0.tgz"; 3757 + sha512 = "ZrMVmg08TyMc1oQmsZDpopgaqY8ouX9o1jIHoYvFI59J7LemXw5QfOsxO8K0rz2Pv+olhOLEaPOCptGpaOA4Ug=="; 3749 3758 }; 3750 3759 }; 3751 3760 "@fluentui/react-focus-8.7.0" = { ··· 3757 3766 sha512 = "HuV3zcoe5FRDXCDqVzqj+6mhWzz19hQA4MgQQ42x/0bCdjWMN7fFMuU78cwhxenjG/vWlNgO2Yo+eEZ8j8/CEA=="; 3758 3767 }; 3759 3768 }; 3760 - "@fluentui/react-hooks-8.5.5" = { 3769 + "@fluentui/react-hooks-8.6.0" = { 3761 3770 name = "_at_fluentui_slash_react-hooks"; 3762 3771 packageName = "@fluentui/react-hooks"; 3763 - version = "8.5.5"; 3772 + version = "8.6.0"; 3764 3773 src = fetchurl { 3765 - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.5.5.tgz"; 3766 - sha512 = "jtEBOi6iubsdyBfW3Z034t2TrF7uncXvx6/yYZn9zD5YBpPMMJKcUmxjbpcApRdMUA6BarKq+MqyvkbxCpcsWw=="; 3774 + url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.0.tgz"; 3775 + sha512 = "mo5dqMDcXoY+Utnq65WzDKdHT8zgLxR4ZEwen884dyisN7g/+wjfy4JZmhi8Cm9gnD7anNJvSKP9pPJGwCt26Q=="; 3767 3776 }; 3768 3777 }; 3769 3778 "@fluentui/react-portal-compat-context-9.0.0-rc.2" = { ··· 3856 3865 sha512 = "5IVzv1gO626qaC7CEV7LUG68IHgEjWovIHXQsbI9MraxhrI9eSV5/l/81Povv7tJlni7u8OnARPU7bmxlXlx7g=="; 3857 3866 }; 3858 3867 }; 3859 - "@google-cloud/paginator-3.0.7" = { 3868 + "@google-cloud/paginator-4.0.0" = { 3860 3869 name = "_at_google-cloud_slash_paginator"; 3861 3870 packageName = "@google-cloud/paginator"; 3862 - version = "3.0.7"; 3871 + version = "4.0.0"; 3863 3872 src = fetchurl { 3864 - url = "https://registry.npmjs.org/@google-cloud/paginator/-/paginator-3.0.7.tgz"; 3865 - sha512 = "jJNutk0arIQhmpUUQJPJErsojqo834KcyB6X7a1mxuic8i1tKXxde8E69IZxNZawRIlZdIK2QY4WALvlK5MzYQ=="; 3873 + url = "https://registry.npmjs.org/@google-cloud/paginator/-/paginator-4.0.0.tgz"; 3874 + sha512 = "wNmCZl+2G2DmgT/VlF+AROf80SoaC/CwS8trwmjNaq26VRNK8yPbU5F/Vy+R9oDAGKWQU2k8+Op5H4kFJVXFaQ=="; 3866 3875 }; 3867 3876 }; 3868 3877 "@google-cloud/precise-date-2.0.4" = { ··· 3892 3901 sha512 = "j8yRSSqswWi1QqUGKVEKOG03Q7qOoZP6/h2zN2YO+F5h2+DHU0bSrHCK9Y7lo2DI9fBd8qGAw795sf+3Jva4yA=="; 3893 3902 }; 3894 3903 }; 3895 - "@google-cloud/pubsub-2.19.4" = { 3904 + "@google-cloud/pubsub-3.0.1" = { 3896 3905 name = "_at_google-cloud_slash_pubsub"; 3897 3906 packageName = "@google-cloud/pubsub"; 3898 - version = "2.19.4"; 3907 + version = "3.0.1"; 3899 3908 src = fetchurl { 3900 - url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.19.4.tgz"; 3901 - sha512 = "+aZxq6N5XGarQS3xGXjKSRFy4TB+3PMpI0CBmSrcC59g3TB5nmwps3pv/KkdLa0Cd+CPHDdfrEW1uSrGBMLICw=="; 3909 + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-3.0.1.tgz"; 3910 + sha512 = "dznNbRd/Y8J0C0xvdvCPi3B1msK/dj/Nya+NQZ2doUOLT6eoa261tBwk9umOQs5L5GKcdlqQKbBjrNjDYVbzQA=="; 3902 3911 }; 3903 3912 }; 3904 3913 "@grammyjs/types-2.7.2" = { ··· 4135 4144 sha512 = "qzlrOg9ddaA+30OdG8NU/zDPV2sbJ4Rvool+Zf0nLVRqkAUP/1uxXTQBLgEJKO1xxTlhJ+27FCJ42lG6JG9ZrA=="; 4136 4145 }; 4137 4146 }; 4138 - "@grpc/grpc-js-1.6.1" = { 4139 - name = "_at_grpc_slash_grpc-js"; 4140 - packageName = "@grpc/grpc-js"; 4141 - version = "1.6.1"; 4142 - src = fetchurl { 4143 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.1.tgz"; 4144 - sha512 = "ix3rQS64rKL1s6CfIaRgnts+RNYZZ2NaYyTK7iimai6an/0GGDbukzy990hJ5vtKHjhaqJxJMB6Qq7BMZ0zZSQ=="; 4145 - }; 4146 - }; 4147 - "@grpc/grpc-js-1.6.2" = { 4148 - name = "_at_grpc_slash_grpc-js"; 4149 - packageName = "@grpc/grpc-js"; 4150 - version = "1.6.2"; 4151 - src = fetchurl { 4152 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.2.tgz"; 4153 - sha512 = "9+89Ne1K8F9u86T+l1yIV2DS+dWHYVK61SsDZN4MFTFehOOaJ4rHxa1cW8Lwdn2/6tOx7N3+SY/vfcjztOHopA=="; 4154 - }; 4155 - }; 4156 - "@grpc/grpc-js-1.6.4" = { 4157 - name = "_at_grpc_slash_grpc-js"; 4158 - packageName = "@grpc/grpc-js"; 4159 - version = "1.6.4"; 4160 - src = fetchurl { 4161 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.4.tgz"; 4162 - sha512 = "Jqq8t3ylPLPK4XXnYPj2uuESirRCAaQ0//GxRLPK6Xq2TBHb2DlmSzJUh15a6R4uUIjBwA8wI69JuKleZXz4jQ=="; 4163 - }; 4164 - }; 4165 4147 "@grpc/grpc-js-1.6.7" = { 4166 4148 name = "_at_grpc_slash_grpc-js"; 4167 4149 packageName = "@grpc/grpc-js"; ··· 4189 4171 sha512 = "FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g=="; 4190 4172 }; 4191 4173 }; 4192 - "@grpc/proto-loader-0.6.9" = { 4193 - name = "_at_grpc_slash_proto-loader"; 4194 - packageName = "@grpc/proto-loader"; 4195 - version = "0.6.9"; 4196 - src = fetchurl { 4197 - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.9.tgz"; 4198 - sha512 = "UlcCS8VbsU9d3XTXGiEVFonN7hXk+oMXZtoHHG2oSA1/GcDP1q6OUgs20PzHDGizzyi8ufGSUDlk3O2NyY7leg=="; 4199 - }; 4200 - }; 4201 4174 "@gulp-sourcemaps/identity-map-2.0.1" = { 4202 4175 name = "_at_gulp-sourcemaps_slash_identity-map"; 4203 4176 packageName = "@gulp-sourcemaps/identity-map"; ··· 4927 4900 sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="; 4928 4901 }; 4929 4902 }; 4930 - "@lerna/add-5.1.1" = { 4903 + "@lerna/add-5.1.4" = { 4931 4904 name = "_at_lerna_slash_add"; 4932 4905 packageName = "@lerna/add"; 4933 - version = "5.1.1"; 4906 + version = "5.1.4"; 4934 4907 src = fetchurl { 4935 - url = "https://registry.npmjs.org/@lerna/add/-/add-5.1.1.tgz"; 4936 - sha512 = "0tUT/ohLLxpz1TYuRBXdsYDIZAgAHPpoF+MOcscADdH9+nIzA+TLr6B4fD/D/7i+IrspXkZEo29+yq31HpPHTQ=="; 4908 + url = "https://registry.npmjs.org/@lerna/add/-/add-5.1.4.tgz"; 4909 + sha512 = "kysQaV0+6aFtT0rkbaeuP6qb0vYDwo7TiC+Og4STyXxv2mHXi3F8r6Z9xXNUn8LPi29gaCmB8DLmbEGlTBM4xg=="; 4937 4910 }; 4938 4911 }; 4939 - "@lerna/bootstrap-5.1.1" = { 4912 + "@lerna/bootstrap-5.1.4" = { 4940 4913 name = "_at_lerna_slash_bootstrap"; 4941 4914 packageName = "@lerna/bootstrap"; 4942 - version = "5.1.1"; 4915 + version = "5.1.4"; 4943 4916 src = fetchurl { 4944 - url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-5.1.1.tgz"; 4945 - sha512 = "V9SjAsQtmDJExQPwVlVVnTDHfA1xW0zThjbvFZ25D/HpyQ+P1HttYUcE7Xsm0enU7xRKy+T2SXzQauIEWL7Nzg=="; 4917 + url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-5.1.4.tgz"; 4918 + sha512 = "uCP0WdxGCGAGkwcuhv2nLqLByq9WJ5yr+93A8T15xZJfQsXLtYjjlivIe35MjS77eR+krwl5uY6WmGPJ33+afg=="; 4946 4919 }; 4947 4920 }; 4948 - "@lerna/changed-5.1.1" = { 4921 + "@lerna/changed-5.1.4" = { 4949 4922 name = "_at_lerna_slash_changed"; 4950 4923 packageName = "@lerna/changed"; 4951 - version = "5.1.1"; 4924 + version = "5.1.4"; 4952 4925 src = fetchurl { 4953 - url = "https://registry.npmjs.org/@lerna/changed/-/changed-5.1.1.tgz"; 4954 - sha512 = "YUSAdwwL66b7KGDo5oPsRSDofv+UczA/FvjYlW+s1PhhHoKbFR4/os5Rm0hlRJcG86kKzB0X1jeFBM8/GtMkVg=="; 4926 + url = "https://registry.npmjs.org/@lerna/changed/-/changed-5.1.4.tgz"; 4927 + sha512 = "XwA3+pw5keO2CyjobLN8dU7mvGbzB3FD+LtLPI/zk7UbNIbl7V6uaIkoPJIdTWwP1e6S1BnGCVsAMtwQ980gTA=="; 4955 4928 }; 4956 4929 }; 4957 - "@lerna/check-working-tree-5.1.1" = { 4930 + "@lerna/check-working-tree-5.1.4" = { 4958 4931 name = "_at_lerna_slash_check-working-tree"; 4959 4932 packageName = "@lerna/check-working-tree"; 4960 - version = "5.1.1"; 4933 + version = "5.1.4"; 4961 4934 src = fetchurl { 4962 - url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-5.1.1.tgz"; 4963 - sha512 = "rGXNuPIUjPuzwIOYDLio4Il0tLiIqDpd981peKnuCjbocUGJaXncfUf1isazl3LNojsb5dKBoG/O3eJhGoaO4w=="; 4935 + url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-5.1.4.tgz"; 4936 + sha512 = "yFkRmZd25viwxyyOHZd3g7k2Od2Mk0Sf15fol3h/a7P0rUMf6UaMoGo2qlyo+DS51sz+eNalMmFKLpRrDXcSSw=="; 4964 4937 }; 4965 4938 }; 4966 - "@lerna/child-process-5.1.1" = { 4939 + "@lerna/child-process-5.1.4" = { 4967 4940 name = "_at_lerna_slash_child-process"; 4968 4941 packageName = "@lerna/child-process"; 4969 - version = "5.1.1"; 4942 + version = "5.1.4"; 4970 4943 src = fetchurl { 4971 - url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-5.1.1.tgz"; 4972 - sha512 = "hPBDbqZws2d3GehCuYZ0vZwd/SRthwDIPWGkd74xevdoLxka3Y/y5IdogZz3V9cc6p6bdP6ZHbBSumEX+VIhxA=="; 4944 + url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-5.1.4.tgz"; 4945 + sha512 = "F7xP+bEdkE3JTyKz0t33QA5v2meXZrQQ0JmHa7/AlEg6D2r7gQ8UHSHuSUiNfX4drjpePe/9XaZylj01KLcx/w=="; 4973 4946 }; 4974 4947 }; 4975 - "@lerna/clean-5.1.1" = { 4948 + "@lerna/clean-5.1.4" = { 4976 4949 name = "_at_lerna_slash_clean"; 4977 4950 packageName = "@lerna/clean"; 4978 - version = "5.1.1"; 4951 + version = "5.1.4"; 4979 4952 src = fetchurl { 4980 - url = "https://registry.npmjs.org/@lerna/clean/-/clean-5.1.1.tgz"; 4981 - sha512 = "3hI6CG/pxVmbU1xZoDLtORTivAky/AdYt5biafxXGUbcMBbHekYkSf+bUojVkSLZ4hn43aiLzbMCKhHYd+vdIA=="; 4953 + url = "https://registry.npmjs.org/@lerna/clean/-/clean-5.1.4.tgz"; 4954 + sha512 = "4Du/r8iYSYFpo1t5J1BYivmj84n9mGebt89isVsyqMmrCqd5B2ix/Z8PYPQFMwm7k9YYbV+sZGSpRvtXkn8kIw=="; 4982 4955 }; 4983 4956 }; 4984 - "@lerna/cli-5.1.1" = { 4957 + "@lerna/cli-5.1.4" = { 4985 4958 name = "_at_lerna_slash_cli"; 4986 4959 packageName = "@lerna/cli"; 4987 - version = "5.1.1"; 4960 + version = "5.1.4"; 4988 4961 src = fetchurl { 4989 - url = "https://registry.npmjs.org/@lerna/cli/-/cli-5.1.1.tgz"; 4990 - sha512 = "0smc8pA12D0DUhXI32DES1F/TRleLyN+xkqOqvKGdbD2IA33O1eYVI93vAOmTmEc3ATqKiBwvxoZulqS/ybMFg=="; 4962 + url = "https://registry.npmjs.org/@lerna/cli/-/cli-5.1.4.tgz"; 4963 + sha512 = "ckLSNJBY4iVmu6nBhHb8UchpWGm49z9pjsAEJQ4F/VNkT6zKsmOCfv2ahkvudQ77gc0K/dH+MTvoOHsH85bpow=="; 4991 4964 }; 4992 4965 }; 4993 - "@lerna/collect-uncommitted-5.1.1" = { 4966 + "@lerna/collect-uncommitted-5.1.4" = { 4994 4967 name = "_at_lerna_slash_collect-uncommitted"; 4995 4968 packageName = "@lerna/collect-uncommitted"; 4996 - version = "5.1.1"; 4969 + version = "5.1.4"; 4997 4970 src = fetchurl { 4998 - url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-5.1.1.tgz"; 4999 - sha512 = "u6cYLZhBvZEwoFbYMDwlB3ZB0RJ7ny5fXOCW3SkP0HIGKwzAciL8SPZ++9bsc4+ud6ds60FRyHH79UQLtEiPLg=="; 4971 + url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-5.1.4.tgz"; 4972 + sha512 = "CI9PXYQuewqA4ZBMRycDUSVRJmAxUeP8HEZ3aKNvAwlLxLlGCueh8qOHXZHxgkmF6eQtcEjblsReiDt8bFJZpA=="; 5000 4973 }; 5001 4974 }; 5002 - "@lerna/collect-updates-5.1.1" = { 4975 + "@lerna/collect-updates-5.1.4" = { 5003 4976 name = "_at_lerna_slash_collect-updates"; 5004 4977 packageName = "@lerna/collect-updates"; 5005 - version = "5.1.1"; 4978 + version = "5.1.4"; 5006 4979 src = fetchurl { 5007 - url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-5.1.1.tgz"; 5008 - sha512 = "JBxE5vP9HT2EXd/eggu9nmLSAgSnYFXviz25XjaDqSqljnEW0u1NRAcsETIWAllJ0TaTctsqA+jRDXLWhfEtfQ=="; 4980 + url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-5.1.4.tgz"; 4981 + sha512 = "P1zlaZ0QkKIjbU3o7hjd4zcxzti1ndS4+eQNmlxZP3IcmlJ4+Ne+VxGeaACsjzPPBqSBWX1xcyMFLALH/Jo2CA=="; 5009 4982 }; 5010 4983 }; 5011 - "@lerna/command-5.1.1" = { 4984 + "@lerna/command-5.1.4" = { 5012 4985 name = "_at_lerna_slash_command"; 5013 4986 packageName = "@lerna/command"; 5014 - version = "5.1.1"; 4987 + version = "5.1.4"; 5015 4988 src = fetchurl { 5016 - url = "https://registry.npmjs.org/@lerna/command/-/command-5.1.1.tgz"; 5017 - sha512 = "q59dISdpE6a4/iQn6DGhqVefqkgs2gRcf7ehfJ6Yg41CugqAS0n6CdeTboqFIf2/O9naPKd71t0QBd3/4HXd4A=="; 4989 + url = "https://registry.npmjs.org/@lerna/command/-/command-5.1.4.tgz"; 4990 + sha512 = "S/3oIagN9/ntuGtljSxHu4liB9e9YFWsq/xZOR8YoqROJENv5G5zyAmHjXq90AR/tGmLvufzFliBfEIG9CywFA=="; 5018 4991 }; 5019 4992 }; 5020 - "@lerna/conventional-commits-5.1.1" = { 4993 + "@lerna/conventional-commits-5.1.4" = { 5021 4994 name = "_at_lerna_slash_conventional-commits"; 5022 4995 packageName = "@lerna/conventional-commits"; 5023 - version = "5.1.1"; 4996 + version = "5.1.4"; 5024 4997 src = fetchurl { 5025 - url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-5.1.1.tgz"; 5026 - sha512 = "VL2ppoKA5XKrCwF6U7nhnGWM9PNFrXWjetC7Okd7sjpDt33GaTsida1n7owXMTJrVolHZweHHWypROzy+LUTtw=="; 4998 + url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-5.1.4.tgz"; 4999 + sha512 = "0v0exYOH9cJTNpKggqAw7vHVLlPjqO6Y20PUg44F3GOEjd54VIGDqu+MkVhflqvUftzZjmcUHDUGHVP+8dFBNw=="; 5027 5000 }; 5028 5001 }; 5029 - "@lerna/create-5.1.1" = { 5002 + "@lerna/create-5.1.4" = { 5030 5003 name = "_at_lerna_slash_create"; 5031 5004 packageName = "@lerna/create"; 5032 - version = "5.1.1"; 5005 + version = "5.1.4"; 5033 5006 src = fetchurl { 5034 - url = "https://registry.npmjs.org/@lerna/create/-/create-5.1.1.tgz"; 5035 - sha512 = "nGtFCd16xswCupIxP+3ecHeU3O2+hkh0ghYMBZZWxC1mU/LFWKNa5Ofc2tWFiXhFqADgLCxaBuqaxW/sYq4JAA=="; 5007 + url = "https://registry.npmjs.org/@lerna/create/-/create-5.1.4.tgz"; 5008 + sha512 = "UPR5EnFg0WzXiRIKl+MGHH3hBB6s1xkLDJNLGzac5Ztry/ibLDhl47wYoYcToiQ3/y3/3751WLJErF+A52mCyw=="; 5036 5009 }; 5037 5010 }; 5038 - "@lerna/create-symlink-5.1.1" = { 5011 + "@lerna/create-symlink-5.1.4" = { 5039 5012 name = "_at_lerna_slash_create-symlink"; 5040 5013 packageName = "@lerna/create-symlink"; 5041 - version = "5.1.1"; 5014 + version = "5.1.4"; 5042 5015 src = fetchurl { 5043 - url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-5.1.1.tgz"; 5044 - sha512 = "QyLlXDx0AuN/INXhJxfOHX+a0RaJwCuKbcWv7rqXoVSofDYBYE5EXEx2kn1d4BZg2ozQtfqhNzzKKHU2IyPAKw=="; 5016 + url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-5.1.4.tgz"; 5017 + sha512 = "VTTuCgM5gXk0frAFxfVQqfX9QxXKz6TKpKsHcC39BAR3aiSUW8vqRImbLvaFtKpnEMW0HshDfuzp6rRkaiyWYw=="; 5045 5018 }; 5046 5019 }; 5047 - "@lerna/describe-ref-5.1.1" = { 5020 + "@lerna/describe-ref-5.1.4" = { 5048 5021 name = "_at_lerna_slash_describe-ref"; 5049 5022 packageName = "@lerna/describe-ref"; 5050 - version = "5.1.1"; 5023 + version = "5.1.4"; 5051 5024 src = fetchurl { 5052 - url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-5.1.1.tgz"; 5053 - sha512 = "bxNZiH2JK4uCnuUmJUcLdZFAR8NEXPCf3oxHpGzSGjr1gSE43ZPsZs5Hz9/46CEvSA+z4p1MeQs2KRTR1Wa0oQ=="; 5025 + url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-5.1.4.tgz"; 5026 + sha512 = "ztLWLIyrHPxVhs8yfVpCDIw2st5c246KfoTqjEX8N6s8v0dLs3vfCKCM70ej6lBNkwqBXSilgHrd3AkGq3kq6Q=="; 5054 5027 }; 5055 5028 }; 5056 - "@lerna/diff-5.1.1" = { 5029 + "@lerna/diff-5.1.4" = { 5057 5030 name = "_at_lerna_slash_diff"; 5058 5031 packageName = "@lerna/diff"; 5059 - version = "5.1.1"; 5032 + version = "5.1.4"; 5060 5033 src = fetchurl { 5061 - url = "https://registry.npmjs.org/@lerna/diff/-/diff-5.1.1.tgz"; 5062 - sha512 = "pwc5hAk6l3Z+nfpRLnijbTl5gN0hdCWM9YRWRxnjum05GoRwFveqMJRSeznDYl05JI7kYBtI/l3lj/5Hf1TzCw=="; 5034 + url = "https://registry.npmjs.org/@lerna/diff/-/diff-5.1.4.tgz"; 5035 + sha512 = "o5chvMHcKQS4zkdGX7LCaMgNn0flrG9OEiGt8DCIzRUa6aWJAlE2oZyOj+VsiUxzaZJxm2oV+GkISQYRJPlPug=="; 5063 5036 }; 5064 5037 }; 5065 - "@lerna/exec-5.1.1" = { 5038 + "@lerna/exec-5.1.4" = { 5066 5039 name = "_at_lerna_slash_exec"; 5067 5040 packageName = "@lerna/exec"; 5068 - version = "5.1.1"; 5041 + version = "5.1.4"; 5069 5042 src = fetchurl { 5070 - url = "https://registry.npmjs.org/@lerna/exec/-/exec-5.1.1.tgz"; 5071 - sha512 = "kTKquC0BfFmxXKmkwCq2uYh2ZK0QRa7bQeIRJH8MON8T82D+mU9FHH8UUObx6Aa6sl9lwg04TVnEoUbOJjZxvg=="; 5043 + url = "https://registry.npmjs.org/@lerna/exec/-/exec-5.1.4.tgz"; 5044 + sha512 = "6vn1UCxJZTTt90WlWItI05yj4xaNOShgIl5Yi9mx1Ex6nVS32mmTOqHI/+Cn4M+P0C4u1hFymd2aIEfWnmdUsA=="; 5072 5045 }; 5073 5046 }; 5074 - "@lerna/filter-options-5.1.1" = { 5047 + "@lerna/filter-options-5.1.4" = { 5075 5048 name = "_at_lerna_slash_filter-options"; 5076 5049 packageName = "@lerna/filter-options"; 5077 - version = "5.1.1"; 5050 + version = "5.1.4"; 5078 5051 src = fetchurl { 5079 - url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-5.1.1.tgz"; 5080 - sha512 = "yFidZ2dJF5CNjnGfXFfcvvfqE2z6hPAk5cxwukPPvoJrQ3O4ebymgGNlRSziCM/D7N+Xm9byj5P0ogaIHCZ9iw=="; 5052 + url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-5.1.4.tgz"; 5053 + sha512 = "a6hLVZOb7awjI9Tk5hx90BB6GZz59npBRQN0kSG6drV1H+vi+wU7ee6OZ5EMHQgnzdZ6OjZQRHlWCCTXyNdKgQ=="; 5081 5054 }; 5082 5055 }; 5083 - "@lerna/filter-packages-5.1.1" = { 5056 + "@lerna/filter-packages-5.1.4" = { 5084 5057 name = "_at_lerna_slash_filter-packages"; 5085 5058 packageName = "@lerna/filter-packages"; 5086 - version = "5.1.1"; 5059 + version = "5.1.4"; 5087 5060 src = fetchurl { 5088 - url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-5.1.1.tgz"; 5089 - sha512 = "AekgZk72hPiOBg+xVx3OJK+6wdHINBJSkQxOQ9DjVzIAdXDkFREE6JvF6fmCzX0QbyFaqvTXJ+Yl9TXoav+R4g=="; 5061 + url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-5.1.4.tgz"; 5062 + sha512 = "a+ThrgYyGrTfBZUMfi/WvcqX3Ce6JaMZjTYoNAmKpHYNZFRqdmgOT1fFLLF+/y62XGqCf0wo50xRYNg0hIAf3Q=="; 5090 5063 }; 5091 5064 }; 5092 - "@lerna/get-npm-exec-opts-5.1.1" = { 5065 + "@lerna/get-npm-exec-opts-5.1.4" = { 5093 5066 name = "_at_lerna_slash_get-npm-exec-opts"; 5094 5067 packageName = "@lerna/get-npm-exec-opts"; 5095 - version = "5.1.1"; 5068 + version = "5.1.4"; 5096 5069 src = fetchurl { 5097 - url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-5.1.1.tgz"; 5098 - sha512 = "c2DpM4ONDJ54AQ/caONF832APkDJf/VgRjlt9/fTNxn9CB4+bsB631MiV7F+qisHFk2KNAssuWn73B7rVkNDGQ=="; 5070 + url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-5.1.4.tgz"; 5071 + sha512 = "A+cNgTWWQOcNGWz9wj40/NWK46v8TtTAmXuEPfzDruv6VdmXEVIuq7SCeUPj9+aRxMQXVCil0/Vyo2z6R9TDLw=="; 5099 5072 }; 5100 5073 }; 5101 - "@lerna/get-packed-5.1.1" = { 5074 + "@lerna/get-packed-5.1.4" = { 5102 5075 name = "_at_lerna_slash_get-packed"; 5103 5076 packageName = "@lerna/get-packed"; 5104 - version = "5.1.1"; 5077 + version = "5.1.4"; 5105 5078 src = fetchurl { 5106 - url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-5.1.1.tgz"; 5107 - sha512 = "QWeOAoB5GGWnDkXtIcme8X1bHhkxOXw42UNp4h+wpXc8JzKiBdWcUVcLhKvS4fCmsRtq202UB6hPR+lYvCDz8w=="; 5079 + url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-5.1.4.tgz"; 5080 + sha512 = "JD9U4Sp7Dpt3nUdXAo5f9SIXK2QsBaguChCZ8VTAl3eb7j0o7nrHYoh1eAa8rDT2L9+AxcUFDMi/wDdCotlJmA=="; 5108 5081 }; 5109 5082 }; 5110 - "@lerna/github-client-5.1.1" = { 5083 + "@lerna/github-client-5.1.4" = { 5111 5084 name = "_at_lerna_slash_github-client"; 5112 5085 packageName = "@lerna/github-client"; 5113 - version = "5.1.1"; 5086 + version = "5.1.4"; 5114 5087 src = fetchurl { 5115 - url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-5.1.1.tgz"; 5116 - sha512 = "1kU/S9B/AleUetbRFQr+8xQNVXsOQp4ya/L2R7/3ALRmWfCDAtAKzGdtn0YtcPGEvWPb0xNgx9TeGQOj5nwDjw=="; 5088 + url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-5.1.4.tgz"; 5089 + sha512 = "VAaH9ycnGVsaGWM5uRKvd0oXlOERHOEOwxXLaCnR1mA7k5490B5jTlwhSWYdA4s40CF9AOdIVNgBhP+T7MlcPw=="; 5117 5090 }; 5118 5091 }; 5119 - "@lerna/gitlab-client-5.1.1" = { 5092 + "@lerna/gitlab-client-5.1.4" = { 5120 5093 name = "_at_lerna_slash_gitlab-client"; 5121 5094 packageName = "@lerna/gitlab-client"; 5122 - version = "5.1.1"; 5095 + version = "5.1.4"; 5123 5096 src = fetchurl { 5124 - url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-5.1.1.tgz"; 5125 - sha512 = "tuy81UW2JhG/wnjiTV20kI8q3RlCHkOrYyiynnd4RPOX5i6DwG3/BGwt5FJ2avFvi9+AkalU1vIKPSqwwj9xTA=="; 5097 + url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-5.1.4.tgz"; 5098 + sha512 = "F0Pa6Cv6TE0gbhuHR2gVVwdzstqePMZhTNcVY5So3YJrb1ppuUH/4cVXhRcEOj16QuWJ6yysxb7mj8tY4Zv0Bw=="; 5126 5099 }; 5127 5100 }; 5128 - "@lerna/global-options-5.1.1" = { 5101 + "@lerna/global-options-5.1.4" = { 5129 5102 name = "_at_lerna_slash_global-options"; 5130 5103 packageName = "@lerna/global-options"; 5131 - version = "5.1.1"; 5104 + version = "5.1.4"; 5132 5105 src = fetchurl { 5133 - url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-5.1.1.tgz"; 5134 - sha512 = "jKLqwiS3EwNbmMu5HbWciModK6/5FyxeSwENVIqPLplWIkAMbSNWjXa9BxNDzvsSU0G6TPpQmfgZ3ZS1bMamyA=="; 5106 + url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-5.1.4.tgz"; 5107 + sha512 = "gs6y97tomIuyYdDr9uKQ5B5AR9m6wVft6lrxWlGlLo0prz39tx7fJ9wT2IpJ9iALCadkQW6g7XFtddwfm5VRhg=="; 5135 5108 }; 5136 5109 }; 5137 - "@lerna/has-npm-version-5.1.1" = { 5110 + "@lerna/has-npm-version-5.1.4" = { 5138 5111 name = "_at_lerna_slash_has-npm-version"; 5139 5112 packageName = "@lerna/has-npm-version"; 5140 - version = "5.1.1"; 5113 + version = "5.1.4"; 5141 5114 src = fetchurl { 5142 - url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-5.1.1.tgz"; 5143 - sha512 = "MkDhYbdNugXUE7bEY8j2DGE1RUg/SJR613b1HPUTdEWpPg13PupsTKqiKOzoURAzUWN6tZoOR7OAxbvR3w8jnw=="; 5115 + url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-5.1.4.tgz"; 5116 + sha512 = "U81b1nvqwF8PGyHib8/AWeGbaNipGdqXZsRO5g3ob9A5X57GXJ86cQVLejLi+znY4SmQcHladC4TotJkpNF1Ag=="; 5144 5117 }; 5145 5118 }; 5146 - "@lerna/import-5.1.1" = { 5119 + "@lerna/import-5.1.4" = { 5147 5120 name = "_at_lerna_slash_import"; 5148 5121 packageName = "@lerna/import"; 5149 - version = "5.1.1"; 5122 + version = "5.1.4"; 5150 5123 src = fetchurl { 5151 - url = "https://registry.npmjs.org/@lerna/import/-/import-5.1.1.tgz"; 5152 - sha512 = "VUgZn7QdsAYy8Joe6ZT8hKANxizzU0aUH93Pfg2YfjohxvyTlmx5TCSgnZ39P2jwmL2hHyI+Bs3t+9NOYPfoWg=="; 5124 + url = "https://registry.npmjs.org/@lerna/import/-/import-5.1.4.tgz"; 5125 + sha512 = "Kswe1NKJDUDlO/gbkFcurzaYlaj/fXlapHTaih9LmQDiVPOE9GphD5qnABCV0c4CqeSnCzRujT5BUjjL5z7viA=="; 5153 5126 }; 5154 5127 }; 5155 - "@lerna/info-5.1.1" = { 5128 + "@lerna/info-5.1.4" = { 5156 5129 name = "_at_lerna_slash_info"; 5157 5130 packageName = "@lerna/info"; 5158 - version = "5.1.1"; 5131 + version = "5.1.4"; 5159 5132 src = fetchurl { 5160 - url = "https://registry.npmjs.org/@lerna/info/-/info-5.1.1.tgz"; 5161 - sha512 = "w2g369KYpPOKFkqZ5p2I76VnQMmOnMnAfWfy7YhNIaomYN0sUZQYA7QPu8bcEj2qKFieddx/UW497m7hY6CXsg=="; 5133 + url = "https://registry.npmjs.org/@lerna/info/-/info-5.1.4.tgz"; 5134 + sha512 = "9OMdNtmDMKLwfX+aZk9nHLfksYXuU7IcIiVJ9dR7gYx1PoKjXvTpd/+hd7t/tmElM21kmPVxQBu02L3KmXw+hQ=="; 5162 5135 }; 5163 5136 }; 5164 - "@lerna/init-5.1.1" = { 5137 + "@lerna/init-5.1.4" = { 5165 5138 name = "_at_lerna_slash_init"; 5166 5139 packageName = "@lerna/init"; 5167 - version = "5.1.1"; 5140 + version = "5.1.4"; 5168 5141 src = fetchurl { 5169 - url = "https://registry.npmjs.org/@lerna/init/-/init-5.1.1.tgz"; 5170 - sha512 = "j7qgWV2zmYL+LPZ4Tqc9PO0qHUS/ZugHqVPzrnEBhlQz0ye4kPqWg2QCWId8Xmoiu6U5nGuOJINME7T8rySrDQ=="; 5142 + url = "https://registry.npmjs.org/@lerna/init/-/init-5.1.4.tgz"; 5143 + sha512 = "OdI5iWYT1JcB6f5mjmCjgpkOrpDdSSDzmSi34kp/NP1FkbskDoMffVBTQiV8/h6zAg3jk1+aLQYLMuR5E6nIwA=="; 5171 5144 }; 5172 5145 }; 5173 - "@lerna/link-5.1.1" = { 5146 + "@lerna/link-5.1.4" = { 5174 5147 name = "_at_lerna_slash_link"; 5175 5148 packageName = "@lerna/link"; 5176 - version = "5.1.1"; 5149 + version = "5.1.4"; 5177 5150 src = fetchurl { 5178 - url = "https://registry.npmjs.org/@lerna/link/-/link-5.1.1.tgz"; 5179 - sha512 = "31qGweCG51ZAp8u2+o4fkqGWS2pFFDmzISjkE2tkrrgb2ypjuIDQOxF38+2gdBLbWBYdZxwcBePp5/fk20cStg=="; 5151 + url = "https://registry.npmjs.org/@lerna/link/-/link-5.1.4.tgz"; 5152 + sha512 = "j73MW+vam6e8XdwyQGeHR9X7TUmgvLG0wV1vDLjSyrhk/Q5oFo0RTRgfDJqR4tCtRnv0vujvw5oDXfSbBmg67g=="; 5180 5153 }; 5181 5154 }; 5182 - "@lerna/list-5.1.1" = { 5155 + "@lerna/list-5.1.4" = { 5183 5156 name = "_at_lerna_slash_list"; 5184 5157 packageName = "@lerna/list"; 5185 - version = "5.1.1"; 5158 + version = "5.1.4"; 5186 5159 src = fetchurl { 5187 - url = "https://registry.npmjs.org/@lerna/list/-/list-5.1.1.tgz"; 5188 - sha512 = "iCinA5RuG85CY/6SCsUXAcFCDD1uauh/8Bb96qDo/Q3TZyoQSW6Gu/O6luuUXlhWGLzqlNcP+cr4uykJpGvlkQ=="; 5160 + url = "https://registry.npmjs.org/@lerna/list/-/list-5.1.4.tgz"; 5161 + sha512 = "D7FAUik18s5FtHnBoPzodR8LUvH5b0a/ziV8ICaKWZ98H4w9qpNsQtBe0O+7DwUuqLKYpycst5tY5WVGnNwuNA=="; 5189 5162 }; 5190 5163 }; 5191 - "@lerna/listable-5.1.1" = { 5164 + "@lerna/listable-5.1.4" = { 5192 5165 name = "_at_lerna_slash_listable"; 5193 5166 packageName = "@lerna/listable"; 5194 - version = "5.1.1"; 5167 + version = "5.1.4"; 5195 5168 src = fetchurl { 5196 - url = "https://registry.npmjs.org/@lerna/listable/-/listable-5.1.1.tgz"; 5197 - sha512 = "BpzYhM/9kPx13hsLdJOgNrcW1E2/WeADB0zDO1zt1ffSKWEQnsupvVd+isax7O0sAFV/ZJLXiEDEjPeg8TVvJQ=="; 5169 + url = "https://registry.npmjs.org/@lerna/listable/-/listable-5.1.4.tgz"; 5170 + sha512 = "grGLrffBNX38l5mzZgkv4xE9UcAAKBi1s+LgloI3rusgTdE/B8gvCOYMqLf9V08iojs7Ke2xPf0whJmbEeK/qA=="; 5198 5171 }; 5199 5172 }; 5200 - "@lerna/log-packed-5.1.1" = { 5173 + "@lerna/log-packed-5.1.4" = { 5201 5174 name = "_at_lerna_slash_log-packed"; 5202 5175 packageName = "@lerna/log-packed"; 5203 - version = "5.1.1"; 5176 + version = "5.1.4"; 5204 5177 src = fetchurl { 5205 - url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-5.1.1.tgz"; 5206 - sha512 = "wGDcal05EZh6/JCnIiPEHJmZuwizqUn5ReC5wN8hEdGc17A59JXiqYSG7h+Hj52evN2ZgDCdLj8n59paEvYhlQ=="; 5178 + url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-5.1.4.tgz"; 5179 + sha512 = "qJlWMVjc/uM1I7AWqrOPeBLVZy9YExi/QqUyvmkb8mmsPXnW7rxIJQdYgRifS5aFNTbX/MtG8Q65Rr4syiVnSA=="; 5207 5180 }; 5208 5181 }; 5209 - "@lerna/npm-conf-5.1.1" = { 5182 + "@lerna/npm-conf-5.1.4" = { 5210 5183 name = "_at_lerna_slash_npm-conf"; 5211 5184 packageName = "@lerna/npm-conf"; 5212 - version = "5.1.1"; 5185 + version = "5.1.4"; 5213 5186 src = fetchurl { 5214 - url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-5.1.1.tgz"; 5215 - sha512 = "cHc26cTvXAFJj5Y6ScBYzVpJHbYxcIA0rE+bh8VfqR4UeJMll2BiFmCycIZYUnL7p27sVN05/eifkUTG6tAORg=="; 5187 + url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-5.1.4.tgz"; 5188 + sha512 = "kNbw2jO0HD9P4+nS8RIFub549BiQYG/sdFUuNWu7cCjErB+g/5ayfE6Mn5HyiRPMYXVw73iR8IzvkCCDWEOB7Q=="; 5216 5189 }; 5217 5190 }; 5218 - "@lerna/npm-dist-tag-5.1.1" = { 5191 + "@lerna/npm-dist-tag-5.1.4" = { 5219 5192 name = "_at_lerna_slash_npm-dist-tag"; 5220 5193 packageName = "@lerna/npm-dist-tag"; 5221 - version = "5.1.1"; 5194 + version = "5.1.4"; 5222 5195 src = fetchurl { 5223 - url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-5.1.1.tgz"; 5224 - sha512 = "kmGS0uH1YZ4XDj52HKxDj863Vim7CNUy1R92/rpKyv97fkALR+DDA9XyWDl/YOf4JYyVrnQqA53CKWKuZO3jMg=="; 5196 + url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-5.1.4.tgz"; 5197 + sha512 = "9q5N3iy8KGFBsyRBmNEftj8ACeCXNh2JUBqk/wYGiB0WH0oVf0UY/uo6VUy8dZjyJ9Q0eZa1ONtFHIg3QrzGDA=="; 5225 5198 }; 5226 5199 }; 5227 - "@lerna/npm-install-5.1.1" = { 5200 + "@lerna/npm-install-5.1.4" = { 5228 5201 name = "_at_lerna_slash_npm-install"; 5229 5202 packageName = "@lerna/npm-install"; 5230 - version = "5.1.1"; 5203 + version = "5.1.4"; 5231 5204 src = fetchurl { 5232 - url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-5.1.1.tgz"; 5233 - sha512 = "HXyODWaes0Wvt6Ni8Cpjvgj7VAbUEWv+MAwCZixDwKWFY6LCjY0uG4DYmMfRM5miCfP5LRdK4fDcwrF3+9bzcg=="; 5205 + url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-5.1.4.tgz"; 5206 + sha512 = "DbbUK2Zy7ZBpkHimlFKf7XbGzBsoPfqzf0i9hIYBHmND9YWSgIgVFJcyRH7E6UKpr4wRChW4h6xEV81jKykB7w=="; 5234 5207 }; 5235 5208 }; 5236 - "@lerna/npm-publish-5.1.1" = { 5209 + "@lerna/npm-publish-5.1.4" = { 5237 5210 name = "_at_lerna_slash_npm-publish"; 5238 5211 packageName = "@lerna/npm-publish"; 5239 - version = "5.1.1"; 5212 + version = "5.1.4"; 5240 5213 src = fetchurl { 5241 - url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-5.1.1.tgz"; 5242 - sha512 = "zt+g+/Gkr8OlF8vjRd8y1UuoA4qNeZNi/JDzL3OsbiRja2SX85hU8veTGoEcJOeJowl/x+L+ENfp6E+FTZiToQ=="; 5214 + url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-5.1.4.tgz"; 5215 + sha512 = "MXtd2cFN+oJMxj9m1fXYAo+KE2BzO84Ukt3uAhQb1cXU01ZCwqGl/lQRWw5vI88emrKs0akx3d6E77PFpX9rpw=="; 5243 5216 }; 5244 5217 }; 5245 - "@lerna/npm-run-script-5.1.1" = { 5218 + "@lerna/npm-run-script-5.1.4" = { 5246 5219 name = "_at_lerna_slash_npm-run-script"; 5247 5220 packageName = "@lerna/npm-run-script"; 5248 - version = "5.1.1"; 5221 + version = "5.1.4"; 5249 5222 src = fetchurl { 5250 - url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-5.1.1.tgz"; 5251 - sha512 = "g36mFksO+5gh3xGh3N+Ni92rWBJ8bI177bhs//ot3rivyHgUKauBvR6XbWEyOYCdmnPWvMt9dlYSuzTdn2vCxg=="; 5223 + url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-5.1.4.tgz"; 5224 + sha512 = "vw2G69lFmFzdX553GidE66QgCZ3cGyxoOvnpCdvZ1n9AS5ZwZSiL8Ms6N3Vj+AOhESFZmFZkzIVhtpX5/xNzLg=="; 5252 5225 }; 5253 5226 }; 5254 - "@lerna/otplease-5.1.1" = { 5227 + "@lerna/otplease-5.1.4" = { 5255 5228 name = "_at_lerna_slash_otplease"; 5256 5229 packageName = "@lerna/otplease"; 5257 - version = "5.1.1"; 5230 + version = "5.1.4"; 5258 5231 src = fetchurl { 5259 - url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-5.1.1.tgz"; 5260 - sha512 = "xCGGmB6iInFecvl+/n0Yf164rrEa8nHdbbcmcl5coe9ngu878SQKaUGSuI7J15cxy3z/yYrPjw0eSAcFCOzAbw=="; 5232 + url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-5.1.4.tgz"; 5233 + sha512 = "t3qKC55D7rCacNTsqQwn25XxDRQXgRHYWS0gqn2ch+dTwXOI61Uto9okVhgn2ZfZVydJ3sjnktOsPeSXhQRQew=="; 5261 5234 }; 5262 5235 }; 5263 - "@lerna/output-5.1.1" = { 5236 + "@lerna/output-5.1.4" = { 5264 5237 name = "_at_lerna_slash_output"; 5265 5238 packageName = "@lerna/output"; 5266 - version = "5.1.1"; 5239 + version = "5.1.4"; 5267 5240 src = fetchurl { 5268 - url = "https://registry.npmjs.org/@lerna/output/-/output-5.1.1.tgz"; 5269 - sha512 = "QHWk9l2SAtWFyImcNrcdy5m3Ojmwvt27G3YTGT1tmMnJCNHwCDl4HKO8PBnOAxYbglujpFlXzseNHc46JSJ6xQ=="; 5241 + url = "https://registry.npmjs.org/@lerna/output/-/output-5.1.4.tgz"; 5242 + sha512 = "E9nLEcV5GJbTKJd/d+cvU54CIzQqoU2rJAeXeyHTufbjgCTPk4I8uDNHmG7uJ+aPrif6PPBt1IIw+w5UnStfdw=="; 5270 5243 }; 5271 5244 }; 5272 - "@lerna/pack-directory-5.1.1" = { 5245 + "@lerna/pack-directory-5.1.4" = { 5273 5246 name = "_at_lerna_slash_pack-directory"; 5274 5247 packageName = "@lerna/pack-directory"; 5275 - version = "5.1.1"; 5248 + version = "5.1.4"; 5276 5249 src = fetchurl { 5277 - url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-5.1.1.tgz"; 5278 - sha512 = "kMz9AQJyl9tz2RNWeUR04O2oGirS+1l3tBVV0RDdpC2wOYAOSlFp3eDgbOsKdw1vwau+J7JgfBpmiYnPwIUF9w=="; 5250 + url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-5.1.4.tgz"; 5251 + sha512 = "TsltQrbwC/bPwQbL5i7WCMNM4Chl8+iqzawRZbILfjYpt3UK9xSV2tWfc9QtbmRBETvcFz/UMKQQDz+LMWN9jw=="; 5279 5252 }; 5280 5253 }; 5281 - "@lerna/package-5.1.1" = { 5254 + "@lerna/package-5.1.4" = { 5282 5255 name = "_at_lerna_slash_package"; 5283 5256 packageName = "@lerna/package"; 5284 - version = "5.1.1"; 5257 + version = "5.1.4"; 5285 5258 src = fetchurl { 5286 - url = "https://registry.npmjs.org/@lerna/package/-/package-5.1.1.tgz"; 5287 - sha512 = "1Re5wMPux4kTzuCI4WSSXaN9zERdhFoU/hHOoyDYjAnNsWy8ee9qkLEEGl8p1IVW8YSJTDDHS0RA9rg35Vd8lA=="; 5259 + url = "https://registry.npmjs.org/@lerna/package/-/package-5.1.4.tgz"; 5260 + sha512 = "L0zsxslJZ+swkG/KLU3TQHmWPR0hf0eLIdOROyA9Nxvuo8C/702ddYZcuEYcz9t/jOuSgSB2s90iK2oTIncNbw=="; 5288 5261 }; 5289 5262 }; 5290 - "@lerna/package-graph-5.1.1" = { 5263 + "@lerna/package-graph-5.1.4" = { 5291 5264 name = "_at_lerna_slash_package-graph"; 5292 5265 packageName = "@lerna/package-graph"; 5293 - version = "5.1.1"; 5266 + version = "5.1.4"; 5294 5267 src = fetchurl { 5295 - url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-5.1.1.tgz"; 5296 - sha512 = "2/CFYmiDbHjYPsQcT3yG8S0lG19FPIh8BqOy+cuOKNU0LZDEfI4xhQpGaZ1N6pxUjDz3CyaslwKWv/Ef5ZO8MA=="; 5268 + url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-5.1.4.tgz"; 5269 + sha512 = "dP1gLcrqou5/8zef7u5ne4GTslNXULjpi3dDiljohKNR4XelsC4lkkF9m1Uzn9E1nAphHRhWXrRq40kqxmdYXg=="; 5297 5270 }; 5298 5271 }; 5299 - "@lerna/prerelease-id-from-version-5.1.1" = { 5272 + "@lerna/prerelease-id-from-version-5.1.4" = { 5300 5273 name = "_at_lerna_slash_prerelease-id-from-version"; 5301 5274 packageName = "@lerna/prerelease-id-from-version"; 5302 - version = "5.1.1"; 5275 + version = "5.1.4"; 5303 5276 src = fetchurl { 5304 - url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-5.1.1.tgz"; 5305 - sha512 = "z4h1oP5PeuZV7+b4BSxm43DeUeE1DCZ7pPhTlHRAZRma2TBOfy2zzfEltWQZhOrrvkO67MR16W8x0xvwZV5odA=="; 5277 + url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-5.1.4.tgz"; 5278 + sha512 = "kDcXKKFD6Ww/FinLEvsY1P3aIiuVLyonkttvfKJTJvm3ymz7/fBKz8GotFXuONVC1xSIK9Nrk3jGYs6ZGoha+w=="; 5306 5279 }; 5307 5280 }; 5308 - "@lerna/profiler-5.1.1" = { 5281 + "@lerna/profiler-5.1.4" = { 5309 5282 name = "_at_lerna_slash_profiler"; 5310 5283 packageName = "@lerna/profiler"; 5311 - version = "5.1.1"; 5284 + version = "5.1.4"; 5312 5285 src = fetchurl { 5313 - url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-5.1.1.tgz"; 5314 - sha512 = "K93NXEvGIQNGcA1DGcB7W+Ff4GUzXkG5JlNRCDl/WUoaePL43Y5BXOO9yC/Qod7HR9joJkvC4nF9BTN68EL0lw=="; 5286 + url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-5.1.4.tgz"; 5287 + sha512 = "JLkS90+CSmi85v3SlJc5Wjk73MHmIviqtL3fM/Z6clBLbsRPkbBBfSwXKp7O281knF6E2UNTrWOtEG7b6wG3TQ=="; 5315 5288 }; 5316 5289 }; 5317 - "@lerna/project-5.1.1" = { 5290 + "@lerna/project-5.1.4" = { 5318 5291 name = "_at_lerna_slash_project"; 5319 5292 packageName = "@lerna/project"; 5320 - version = "5.1.1"; 5293 + version = "5.1.4"; 5321 5294 src = fetchurl { 5322 - url = "https://registry.npmjs.org/@lerna/project/-/project-5.1.1.tgz"; 5323 - sha512 = "3WkJUOMWNquYshA7wFW9vMHJK8DaIOFmS7fs/XYnWGXWKEt6Mrc/+BqVDweUDK4gi/mT2nuwSH4GEB/TGNuSBg=="; 5295 + url = "https://registry.npmjs.org/@lerna/project/-/project-5.1.4.tgz"; 5296 + sha512 = "k0z3w45t746uAUkN+jY/jF+/BqHodGFYaUfM0DTDOGUWC8tXzxuqk3bchShp6Wct2gwNQWbtWHl50Jhhw5PC5g=="; 5324 5297 }; 5325 5298 }; 5326 - "@lerna/prompt-5.1.1" = { 5299 + "@lerna/prompt-5.1.4" = { 5327 5300 name = "_at_lerna_slash_prompt"; 5328 5301 packageName = "@lerna/prompt"; 5329 - version = "5.1.1"; 5302 + version = "5.1.4"; 5330 5303 src = fetchurl { 5331 - url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-5.1.1.tgz"; 5332 - sha512 = "+T0zgPTPCeFT81f8IGhyEH6M8y0zrgTBN+GyT0doKXPYYvL2d+zgJMv2BAerg1Iw1q0QAQhkTAGDem+SgF4bRA=="; 5304 + url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-5.1.4.tgz"; 5305 + sha512 = "AiE8NIzh+x2+F0t96M+rfwLtKzBNXjQEWXtBfEcA1eRqanMWUr6ejfmdkoEzXVrMzyY/ugPdWQYbGCI00iF7Tg=="; 5333 5306 }; 5334 5307 }; 5335 - "@lerna/publish-5.1.1" = { 5308 + "@lerna/publish-5.1.4" = { 5336 5309 name = "_at_lerna_slash_publish"; 5337 5310 packageName = "@lerna/publish"; 5338 - version = "5.1.1"; 5311 + version = "5.1.4"; 5339 5312 src = fetchurl { 5340 - url = "https://registry.npmjs.org/@lerna/publish/-/publish-5.1.1.tgz"; 5341 - sha512 = "3HGQuXWjLKr6mpjsbRrftDhlMHS8IeAA8RMW7shSPWVKl28R9HEXBoI6IRYUfAb8shtS47NFeTX+hxPUDF2cbg=="; 5313 + url = "https://registry.npmjs.org/@lerna/publish/-/publish-5.1.4.tgz"; 5314 + sha512 = "hbFAwOlyUR4AUBd7qTQXXVKgaxTS4Mz4Kkjxz8g7jtqo+T0KvU3JbfwDqxOiCwcDk+qkrBbkwbvc27jcObSwkw=="; 5342 5315 }; 5343 5316 }; 5344 - "@lerna/pulse-till-done-5.1.1" = { 5317 + "@lerna/pulse-till-done-5.1.4" = { 5345 5318 name = "_at_lerna_slash_pulse-till-done"; 5346 5319 packageName = "@lerna/pulse-till-done"; 5347 - version = "5.1.1"; 5320 + version = "5.1.4"; 5348 5321 src = fetchurl { 5349 - url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-5.1.1.tgz"; 5350 - sha512 = "Q/efE5vkUhdKYJTH5QV3uSdZwUEIrbSa6H/wDJu+v9KqR1vdXecYK3HNjo7iQnddqJV3EsLSE9CEKEkEboRUdQ=="; 5322 + url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-5.1.4.tgz"; 5323 + sha512 = "zFPzv6cY0OcqtcR91ueZqd+ulTLE4vPk9l6iPAfefgqh6w0E6hSmG6J9RmYE3gaMHSFJdvYHb/yyTPLF32J9lg=="; 5351 5324 }; 5352 5325 }; 5353 - "@lerna/query-graph-5.1.1" = { 5326 + "@lerna/query-graph-5.1.4" = { 5354 5327 name = "_at_lerna_slash_query-graph"; 5355 5328 packageName = "@lerna/query-graph"; 5356 - version = "5.1.1"; 5329 + version = "5.1.4"; 5357 5330 src = fetchurl { 5358 - url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-5.1.1.tgz"; 5359 - sha512 = "g1BWC6ckx0Prs5h54hfD7/dyALE1icE7Zi2aUkJDbUhsZoWjk+Vb9Pir6GU4HF8kzBuracz3nwq7B7GV1OY0Zg=="; 5331 + url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-5.1.4.tgz"; 5332 + sha512 = "G8DYNqp5ISbbMjEJhGst1GHk59zO18IG9oaVSK14M7iF3qCLtg0iJ1Do4LDNpda3EF8PrLOx2mrNM5MBcGMjEg=="; 5360 5333 }; 5361 5334 }; 5362 - "@lerna/resolve-symlink-5.1.1" = { 5335 + "@lerna/resolve-symlink-5.1.4" = { 5363 5336 name = "_at_lerna_slash_resolve-symlink"; 5364 5337 packageName = "@lerna/resolve-symlink"; 5365 - version = "5.1.1"; 5338 + version = "5.1.4"; 5366 5339 src = fetchurl { 5367 - url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-5.1.1.tgz"; 5368 - sha512 = "a6ZV8ysdP1ePiUG8sfcrTOrMbM9EbHO9terFVMxop7m7pekLDeOmMfWl9iGdqT36xS7S9Dlg9r+/2UsWIqH+aA=="; 5340 + url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-5.1.4.tgz"; 5341 + sha512 = "hpnaX5tznAtbQXlyc92kJiywdTnnbCf6wihSZwDiVnVgXuHJ3LvmjN677h9A0jobY6KdTT+wIoAHpJuZHj60vQ=="; 5369 5342 }; 5370 5343 }; 5371 - "@lerna/rimraf-dir-5.1.1" = { 5344 + "@lerna/rimraf-dir-5.1.4" = { 5372 5345 name = "_at_lerna_slash_rimraf-dir"; 5373 5346 packageName = "@lerna/rimraf-dir"; 5374 - version = "5.1.1"; 5347 + version = "5.1.4"; 5375 5348 src = fetchurl { 5376 - url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-5.1.1.tgz"; 5377 - sha512 = "9DtL728viAQnthKjSC/lmY/bgIDlZnBc+YHFy+f+8DEJaMP+2W8PaYsoEKPLAE/JRCmmaRi9rDQ7du373evJcg=="; 5349 + url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-5.1.4.tgz"; 5350 + sha512 = "WvHm4gE1/HWbI4gCjJw3clPT+FRq2Ob9I9EDbfw4c307MNT4kW4bJU2mt0nyv/uwYhUkTG+GQVrlt+Dtcif77g=="; 5378 5351 }; 5379 5352 }; 5380 - "@lerna/run-5.1.1" = { 5353 + "@lerna/run-5.1.4" = { 5381 5354 name = "_at_lerna_slash_run"; 5382 5355 packageName = "@lerna/run"; 5383 - version = "5.1.1"; 5356 + version = "5.1.4"; 5384 5357 src = fetchurl { 5385 - url = "https://registry.npmjs.org/@lerna/run/-/run-5.1.1.tgz"; 5386 - sha512 = "d/N8/XzDab5JnNCNJW444AArtZ9/43NZHrAnhzbs6jHajmVx2lA1WV5tD93khd2Z2NnIBY2i7m9X/SIkyksfbA=="; 5358 + url = "https://registry.npmjs.org/@lerna/run/-/run-5.1.4.tgz"; 5359 + sha512 = "iaTioOF66z02Y9ml/Ba0ePpXOwZ+BkODcNXrJbyW8WhraL0fSjyno0FspO1Eu0nG4JMtgCsoEzHNphsk7Wg+7A=="; 5387 5360 }; 5388 5361 }; 5389 - "@lerna/run-lifecycle-5.1.1" = { 5362 + "@lerna/run-lifecycle-5.1.4" = { 5390 5363 name = "_at_lerna_slash_run-lifecycle"; 5391 5364 packageName = "@lerna/run-lifecycle"; 5392 - version = "5.1.1"; 5365 + version = "5.1.4"; 5393 5366 src = fetchurl { 5394 - url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-5.1.1.tgz"; 5395 - sha512 = "IZkd0U6uXysPrmPJrEtxAlGj3ytDRpSLNATVd5GCAKHdGQJ8ipQLDSIlNX5Jwlnvvkc/WpCg8FWgFK9z3piopw=="; 5367 + url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-5.1.4.tgz"; 5368 + sha512 = "ubmqi1ixebBHSTYS0oK8MoqBoJE7UDrXWTWsv84UrXiPutTffLR8ZQJKlMEcetQVzX9qbjpKbzc+jQWXPWid2A=="; 5396 5369 }; 5397 5370 }; 5398 - "@lerna/run-topologically-5.1.1" = { 5371 + "@lerna/run-topologically-5.1.4" = { 5399 5372 name = "_at_lerna_slash_run-topologically"; 5400 5373 packageName = "@lerna/run-topologically"; 5401 - version = "5.1.1"; 5374 + version = "5.1.4"; 5402 5375 src = fetchurl { 5403 - url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-5.1.1.tgz"; 5404 - sha512 = "BQCjuKDB264dFakIpNT+FQPzRhrkMhyVgyeK55vZEXrJK/bPDx3XJ4ES5e54gvDpHEwr1MvA6J25ce8OVYJEIQ=="; 5376 + url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-5.1.4.tgz"; 5377 + sha512 = "MckWfLu/xuRtaThdUgrJC2naumv2LOIiMoJfxCdYpiCrIgq5YrwqOxjQ0awHqQhkvFZ5G91ucBcBEIMsOou1iw=="; 5405 5378 }; 5406 5379 }; 5407 - "@lerna/symlink-binary-5.1.1" = { 5380 + "@lerna/symlink-binary-5.1.4" = { 5408 5381 name = "_at_lerna_slash_symlink-binary"; 5409 5382 packageName = "@lerna/symlink-binary"; 5410 - version = "5.1.1"; 5383 + version = "5.1.4"; 5411 5384 src = fetchurl { 5412 - url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-5.1.1.tgz"; 5413 - sha512 = "GrLj9zhA1e811o9F2pLKXDuhcdx1j3HCh/mmibyHMM9ZpCiwdKUqXDZdH1lVmbGa0sxzytjdsNSvJqRd+dyJRA=="; 5385 + url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-5.1.4.tgz"; 5386 + sha512 = "SNjHxCNTCD0Xfj3CNBTG+3ut4aDAVaq+SrB2ckFNmZ5Z9yFdnX6aP+PBzLD/0q5hj18lGlaJ8iZjD/ubbrgFCA=="; 5414 5387 }; 5415 5388 }; 5416 - "@lerna/symlink-dependencies-5.1.1" = { 5389 + "@lerna/symlink-dependencies-5.1.4" = { 5417 5390 name = "_at_lerna_slash_symlink-dependencies"; 5418 5391 packageName = "@lerna/symlink-dependencies"; 5419 - version = "5.1.1"; 5392 + version = "5.1.4"; 5420 5393 src = fetchurl { 5421 - url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-5.1.1.tgz"; 5422 - sha512 = "IoECQdh0J2JkkEa0ozg7TO3+uTX6jSEoVLoQ9sBW1Qr8rm14jcjjg8LiuV9XPEXdonVU9SJmo2G3U+6bSx1SXA=="; 5394 + url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-5.1.4.tgz"; 5395 + sha512 = "SuzylyNs1R5bVRqSCwfbQLdDP83RX8ncQxOy2SSSrScwkzdBCDqDPh4haeADsq2+RoOQBItn1PDfzUCNAWomDA=="; 5423 5396 }; 5424 5397 }; 5425 - "@lerna/temp-write-5.1.0" = { 5398 + "@lerna/temp-write-5.1.4" = { 5426 5399 name = "_at_lerna_slash_temp-write"; 5427 5400 packageName = "@lerna/temp-write"; 5428 - version = "5.1.0"; 5401 + version = "5.1.4"; 5429 5402 src = fetchurl { 5430 - url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-5.1.0.tgz"; 5431 - sha512 = "IvtYcrnWISEe9nBjhvq+o1mfn85Kup6rd+/PHb3jFmxx7E6ON4BnuqGPOOjmEjboMIRaopWQrkuCoIVotP+sDw=="; 5403 + url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-5.1.4.tgz"; 5404 + sha512 = "f+6+ud87pyitM9zAq7GBhB7uoHTcgLJvR3YGv5sNja4jIl3+zdKPDcyxzVyQb38knuRSkGM8NjYOWi4zwcMaGw=="; 5432 5405 }; 5433 5406 }; 5434 - "@lerna/timer-5.1.1" = { 5407 + "@lerna/timer-5.1.4" = { 5435 5408 name = "_at_lerna_slash_timer"; 5436 5409 packageName = "@lerna/timer"; 5437 - version = "5.1.1"; 5410 + version = "5.1.4"; 5438 5411 src = fetchurl { 5439 - url = "https://registry.npmjs.org/@lerna/timer/-/timer-5.1.1.tgz"; 5440 - sha512 = "c+v2xoxVpKcgjJEtiEw/J3lrBCsVxhQL9lrE1+emoV/GcxOxk6rWQKIJ6WQOhuaR/BsoHBEKF8C+xRlX/qt29g=="; 5412 + url = "https://registry.npmjs.org/@lerna/timer/-/timer-5.1.4.tgz"; 5413 + sha512 = "fhQtqkLxNexPWzhI1WAxZnHIBM8VhChvUJu503u1Rmp2JxhXbTE4Txnu1gPvqlDjdoE6ck0vN5icmfMVRwKc8g=="; 5441 5414 }; 5442 5415 }; 5443 - "@lerna/validation-error-5.1.1" = { 5416 + "@lerna/validation-error-5.1.4" = { 5444 5417 name = "_at_lerna_slash_validation-error"; 5445 5418 packageName = "@lerna/validation-error"; 5446 - version = "5.1.1"; 5419 + version = "5.1.4"; 5447 5420 src = fetchurl { 5448 - url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-5.1.1.tgz"; 5449 - sha512 = "6mwvlaMxu03ydKCvKeK8XvbCDCHM0UURvJpgtVo/0ghu8kQOICHo3qwkJNf7lzbUIPojTLrdfWNCZ5M4CT43Dg=="; 5421 + url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-5.1.4.tgz"; 5422 + sha512 = "wys9Fv/bUy7sYXOK9t+V3XSyEHK5tUXwY22nfIDYu416WcSkkE4DI8Q2nTv4nYYOmG2Y7IOhaSenbsPLQ0VqtQ=="; 5450 5423 }; 5451 5424 }; 5452 - "@lerna/version-5.1.1" = { 5425 + "@lerna/version-5.1.4" = { 5453 5426 name = "_at_lerna_slash_version"; 5454 5427 packageName = "@lerna/version"; 5455 - version = "5.1.1"; 5428 + version = "5.1.4"; 5456 5429 src = fetchurl { 5457 - url = "https://registry.npmjs.org/@lerna/version/-/version-5.1.1.tgz"; 5458 - sha512 = "kUsqFYGKNKYWXfMu+q6EJhWhxvk41ihQbxpZhC4pPWwy30xetjNc2i+0O+QTlEaaFabtAUOCLYWG1V1RoL5N4A=="; 5430 + url = "https://registry.npmjs.org/@lerna/version/-/version-5.1.4.tgz"; 5431 + sha512 = "cYgm1SNdiK129JoWI8WMwjsxaIyeAC1gCaToWk36Tw+BCF3PbkdoTKdneDmJ+7qbX1QrzxsgHTcjwIt4lZPEqQ=="; 5459 5432 }; 5460 5433 }; 5461 - "@lerna/write-log-file-5.1.1" = { 5434 + "@lerna/write-log-file-5.1.4" = { 5462 5435 name = "_at_lerna_slash_write-log-file"; 5463 5436 packageName = "@lerna/write-log-file"; 5464 - version = "5.1.1"; 5437 + version = "5.1.4"; 5465 5438 src = fetchurl { 5466 - url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-5.1.1.tgz"; 5467 - sha512 = "cOfGlnZlFhP/5PZABJ98bI9UgCIHNJtlKyO8T24Uz647XZMoX/fwD+E/DVVuVyxjv7vYDvCrrX1tPYFq8ePfNA=="; 5439 + url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-5.1.4.tgz"; 5440 + sha512 = "ISJbkjaSKhJ4d7V90RFvuwDQFq9ZH/KN475KFJr+TBFZTwMiXuBahlq+j8/a+nItejNnuPD4/xlWuzCOuGJORQ=="; 5468 5441 }; 5469 5442 }; 5470 5443 "@lezer/common-0.15.12" = { ··· 6592 6565 sha512 = "0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg=="; 6593 6566 }; 6594 6567 }; 6595 - "@octokit/openapi-types-11.2.0" = { 6568 + "@octokit/openapi-types-12.1.0" = { 6596 6569 name = "_at_octokit_slash_openapi-types"; 6597 6570 packageName = "@octokit/openapi-types"; 6598 - version = "11.2.0"; 6571 + version = "12.1.0"; 6599 6572 src = fetchurl { 6600 - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz"; 6601 - sha512 = "PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA=="; 6573 + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.1.0.tgz"; 6574 + sha512 = "kQzJh3ZUv3lDpi6M+uekMRHULvf9DlWoI1XgKN6nPeGDzkSgtkhVq1MMz3bFKQ6H6GbdC3ZqG/a6VzKhIx0VeA=="; 6602 6575 }; 6603 6576 }; 6604 6577 "@octokit/plugin-enterprise-rest-6.0.1" = { ··· 6610 6583 sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw=="; 6611 6584 }; 6612 6585 }; 6613 - "@octokit/plugin-paginate-rest-2.17.0" = { 6586 + "@octokit/plugin-paginate-rest-2.18.0" = { 6614 6587 name = "_at_octokit_slash_plugin-paginate-rest"; 6615 6588 packageName = "@octokit/plugin-paginate-rest"; 6616 - version = "2.17.0"; 6589 + version = "2.18.0"; 6617 6590 src = fetchurl { 6618 - url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.17.0.tgz"; 6619 - sha512 = "tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw=="; 6591 + url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.18.0.tgz"; 6592 + sha512 = "n5/AzIoy5Wzp85gqzSbR+dWQDHlyHZrGijnDfLh452547Ynu0hCvszH7EfRE0eqM5ZjfkplO0k+q+P8AAIIJEA=="; 6620 6593 }; 6621 6594 }; 6622 6595 "@octokit/plugin-request-log-1.0.4" = { ··· 6628 6601 sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA=="; 6629 6602 }; 6630 6603 }; 6631 - "@octokit/plugin-rest-endpoint-methods-5.13.0" = { 6604 + "@octokit/plugin-rest-endpoint-methods-5.14.0" = { 6632 6605 name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 6633 6606 packageName = "@octokit/plugin-rest-endpoint-methods"; 6634 - version = "5.13.0"; 6607 + version = "5.14.0"; 6635 6608 src = fetchurl { 6636 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.13.0.tgz"; 6637 - sha512 = "uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA=="; 6609 + url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.14.0.tgz"; 6610 + sha512 = "MRnMs4Dcm1OSaz/g/RLr4YY9otgysS7vN5SUkHGd7t+R8323cHsHFoEWHYPSmgUC0BieHRhvnCRWb4i3Pl+Lgg=="; 6638 6611 }; 6639 6612 }; 6640 6613 "@octokit/plugin-retry-3.0.9" = { ··· 6682 6655 sha512 = "gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q=="; 6683 6656 }; 6684 6657 }; 6685 - "@octokit/types-6.34.0" = { 6658 + "@octokit/types-6.35.0" = { 6686 6659 name = "_at_octokit_slash_types"; 6687 6660 packageName = "@octokit/types"; 6688 - version = "6.34.0"; 6661 + version = "6.35.0"; 6689 6662 src = fetchurl { 6690 - url = "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz"; 6691 - sha512 = "s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw=="; 6663 + url = "https://registry.npmjs.org/@octokit/types/-/types-6.35.0.tgz"; 6664 + sha512 = "DhLfdUuv3H37u6jBDfkwamypx3HflHg29b26nbA6iVFYkAlZ5cMEtu/9pQoihGnQE5M7jJFnNo25Rr1UwQNF8Q=="; 6692 6665 }; 6693 6666 }; 6694 6667 "@opencensus/core-0.0.8" = { ··· 7132 7105 sha512 = "8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A=="; 7133 7106 }; 7134 7107 }; 7135 - "@parcel/css-1.9.0" = { 7108 + "@parcel/css-1.10.0" = { 7136 7109 name = "_at_parcel_slash_css"; 7137 7110 packageName = "@parcel/css"; 7138 - version = "1.9.0"; 7111 + version = "1.10.0"; 7139 7112 src = fetchurl { 7140 - url = "https://registry.npmjs.org/@parcel/css/-/css-1.9.0.tgz"; 7141 - sha512 = "egCetUQ1H6pgYxOIxVQ8X/YT5e8G0R8eq6aVaUHrqnZ7A8cc6FYgknl9XRmoy2Xxo9h1htrbzdaEShQ5gROwvw=="; 7113 + url = "https://registry.npmjs.org/@parcel/css/-/css-1.10.0.tgz"; 7114 + sha512 = "YvlUqJ3kg/HxsVvq02bTCGruQKjwPEMWEqdyhgfR3aagt+1ibmafy3m8CGYHXvhaQeNYSkMvy1D9bcddFuYTUg=="; 7142 7115 }; 7143 7116 }; 7144 - "@parcel/css-darwin-arm64-1.9.0" = { 7117 + "@parcel/css-darwin-arm64-1.10.0" = { 7145 7118 name = "_at_parcel_slash_css-darwin-arm64"; 7146 7119 packageName = "@parcel/css-darwin-arm64"; 7147 - version = "1.9.0"; 7120 + version = "1.10.0"; 7148 7121 src = fetchurl { 7149 - url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.9.0.tgz"; 7150 - sha512 = "f/guZseS2tNKtKw94LgpNTItZqdVA0mnznqPsmQaR5lSB+cM3IPrSV8cgOOpAS7Vwo9ggxuJartToxBBN+dWSw=="; 7122 + url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.10.0.tgz"; 7123 + sha512 = "WMAbjUyCBrXwv3OofNk90K+G0DqZgCFRtKCg+udLXLZCiCe6yrI87ye9SC6KAVwqWp5WT27TPZTrqWJ032e3FA=="; 7151 7124 }; 7152 7125 }; 7153 - "@parcel/css-darwin-x64-1.9.0" = { 7126 + "@parcel/css-darwin-x64-1.10.0" = { 7154 7127 name = "_at_parcel_slash_css-darwin-x64"; 7155 7128 packageName = "@parcel/css-darwin-x64"; 7156 - version = "1.9.0"; 7129 + version = "1.10.0"; 7157 7130 src = fetchurl { 7158 - url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.9.0.tgz"; 7159 - sha512 = "4SpuwiM/4ayOgKflqSLd87XT7YwyC3wd2QuzOOkasjbe38UU+tot/87l2lQYEB538YinLdfwFQuFLDY0x9MxgA=="; 7131 + url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.10.0.tgz"; 7132 + sha512 = "p1JJVHOOxrhcSQMq9qlrU88Sl+VJGu8HXBpWDHRzh8aOIkqsiRx1qx9Vl3zGX7Sxnjv/xlPUknLKia8Zy1369A=="; 7160 7133 }; 7161 7134 }; 7162 - "@parcel/css-linux-arm-gnueabihf-1.9.0" = { 7135 + "@parcel/css-linux-arm-gnueabihf-1.10.0" = { 7163 7136 name = "_at_parcel_slash_css-linux-arm-gnueabihf"; 7164 7137 packageName = "@parcel/css-linux-arm-gnueabihf"; 7165 - version = "1.9.0"; 7138 + version = "1.10.0"; 7166 7139 src = fetchurl { 7167 - url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.9.0.tgz"; 7168 - sha512 = "KxCyX5fFvX5636Y8LSXwCxXMtIncgP7Lkw8nLsqd24C5YqMokmuOtAcHb/vQ9zQG6YiUWTv0MybqDuL7dBDfVw=="; 7140 + url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.10.0.tgz"; 7141 + sha512 = "cUvDN+nNEdoEzZLhOqPAcjICIyEGcFCc0+zJhGKdnA9MC010aeun9ggtToFazIHzMmoF4qyxCY5IyHja8iVkmA=="; 7169 7142 }; 7170 7143 }; 7171 - "@parcel/css-linux-arm64-gnu-1.9.0" = { 7144 + "@parcel/css-linux-arm64-gnu-1.10.0" = { 7172 7145 name = "_at_parcel_slash_css-linux-arm64-gnu"; 7173 7146 packageName = "@parcel/css-linux-arm64-gnu"; 7174 - version = "1.9.0"; 7147 + version = "1.10.0"; 7175 7148 src = fetchurl { 7176 - url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.9.0.tgz"; 7177 - sha512 = "wZ6Gsn6l+lSuvRdfWoyr7TdY24l29eGCD8QhXcqA1ALnFI7+KOTMBJ6aV3tjWUjMw3sg5qkosMHVqlWZzvrgXw=="; 7149 + url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.10.0.tgz"; 7150 + sha512 = "x8XEtJxgJlstAwbg1BLeYuXhUXEOxGg/BeBFPZr8Zk8dNQ1j1jR7LBk12IKgZrvr+Px1WOFY65lwabgCyFqxnQ=="; 7178 7151 }; 7179 7152 }; 7180 - "@parcel/css-linux-arm64-musl-1.9.0" = { 7153 + "@parcel/css-linux-arm64-musl-1.10.0" = { 7181 7154 name = "_at_parcel_slash_css-linux-arm64-musl"; 7182 7155 packageName = "@parcel/css-linux-arm64-musl"; 7183 - version = "1.9.0"; 7156 + version = "1.10.0"; 7184 7157 src = fetchurl { 7185 - url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.9.0.tgz"; 7186 - sha512 = "N6n5HhMzcNR5oXWr0Md91gKYtuDhqDlp+aGDb3VT21uSCNLOvijOUz248v/VaPoRno1BPFYlMxn0fYYTTReB3A=="; 7158 + url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.10.0.tgz"; 7159 + sha512 = "caBaOM+zhFYlaMB2GL327NeOkF5lbHte5XLrGByagLWanlnRRlFpapIXpuuGIGSF5uBHN2uAz/84ej5mNcdHwg=="; 7187 7160 }; 7188 7161 }; 7189 - "@parcel/css-linux-x64-gnu-1.9.0" = { 7162 + "@parcel/css-linux-x64-gnu-1.10.0" = { 7190 7163 name = "_at_parcel_slash_css-linux-x64-gnu"; 7191 7164 packageName = "@parcel/css-linux-x64-gnu"; 7192 - version = "1.9.0"; 7165 + version = "1.10.0"; 7193 7166 src = fetchurl { 7194 - url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.9.0.tgz"; 7195 - sha512 = "QufawDkaiOjsh6jcZk/dgDBPMqBtIs+LGTOgcJDM6XL4mcbDNxO6VkDANssRUgPnbG66YYy419CUWFta9aeVOg=="; 7167 + url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.10.0.tgz"; 7168 + sha512 = "9JZUMB1v+Zh95K2BJdoC20vZcObqF3mPA10gM51/a44f3rhRsv/EHjzLsSqxSYtC+L7wLvW9M3SNZ2KTo0J2/A=="; 7196 7169 }; 7197 7170 }; 7198 - "@parcel/css-linux-x64-musl-1.9.0" = { 7171 + "@parcel/css-linux-x64-musl-1.10.0" = { 7199 7172 name = "_at_parcel_slash_css-linux-x64-musl"; 7200 7173 packageName = "@parcel/css-linux-x64-musl"; 7201 - version = "1.9.0"; 7174 + version = "1.10.0"; 7202 7175 src = fetchurl { 7203 - url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.9.0.tgz"; 7204 - sha512 = "s528buicSd83/5M5DN31JqwefZ8tqx4Jm97srkLDVBCZg+XEe9P0bO7q1Ngz5ZVFqfwvv8OYLPOtAtBmEppG3g=="; 7176 + url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.10.0.tgz"; 7177 + sha512 = "U702L0HlZUN5Fxb6jbDetYeA7eOgLHkXo4vZ9/XHJyPy6jD+n+9HO8bEcLdSAadJcb4Ndcn89THyfwKiOHukVQ=="; 7205 7178 }; 7206 7179 }; 7207 - "@parcel/css-win32-x64-msvc-1.9.0" = { 7180 + "@parcel/css-win32-x64-msvc-1.10.0" = { 7208 7181 name = "_at_parcel_slash_css-win32-x64-msvc"; 7209 7182 packageName = "@parcel/css-win32-x64-msvc"; 7210 - version = "1.9.0"; 7183 + version = "1.10.0"; 7211 7184 src = fetchurl { 7212 - url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.9.0.tgz"; 7213 - sha512 = "L4s84iK4PXnO/SzZyTsazAuzadtEYLGHgi1dyKYxMMGCjToCDjuwsn5K8bykeewZxjoL7RaunQGqCBRt5dfB5Q=="; 7185 + url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.10.0.tgz"; 7186 + sha512 = "44GtojxQBRf8yTetsNdjYSa2KL4/UpSbEeaOYcO+PKBGHcCyQX2Lex5r1X2pXkpNxvu142+dSTLeXhBSFG4C0g=="; 7214 7187 }; 7215 7188 }; 7216 7189 "@parcel/diagnostic-2.6.0" = { ··· 7663 7636 sha512 = "3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ=="; 7664 7637 }; 7665 7638 }; 7666 - "@peculiar/asn1-schema-2.1.8" = { 7639 + "@peculiar/asn1-schema-2.1.9" = { 7667 7640 name = "_at_peculiar_slash_asn1-schema"; 7668 7641 packageName = "@peculiar/asn1-schema"; 7669 - version = "2.1.8"; 7642 + version = "2.1.9"; 7670 7643 src = fetchurl { 7671 - url = "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.1.8.tgz"; 7672 - sha512 = "u34H/bpqCdDuqrCVZvH0vpwFBT/dNEdNY+eE8u4IuC26yYnhDkXF4+Hliqca88Avbb7hyN2EF/eokyDdyS7G/A=="; 7644 + url = "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.1.9.tgz"; 7645 + sha512 = "Ipio+pXGpL/Vb0qB4GnOgFMgc1RAhKHOVy24rQYLvmOAVp9z/aFb+VdIiQH09NjgvGVmaWOUqSWd9vRHk3xbrg=="; 7673 7646 }; 7674 7647 }; 7675 7648 "@peculiar/json-schema-1.1.12" = { ··· 7978 7951 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 7979 7952 }; 7980 7953 }; 7981 - "@schematics/angular-14.0.1" = { 7954 + "@schematics/angular-14.0.2" = { 7982 7955 name = "_at_schematics_slash_angular"; 7983 7956 packageName = "@schematics/angular"; 7984 - version = "14.0.1"; 7957 + version = "14.0.2"; 7985 7958 src = fetchurl { 7986 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.0.1.tgz"; 7987 - sha512 = "K4y3/Zbtc38M66J5KJ5oXeGSkDrAJXdhtY9ksU6NHXQ0uUiXNzyG05+v8aFrQ5CinyuLZK3v/mqmS/cBQmdT9Q=="; 7959 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.0.2.tgz"; 7960 + sha512 = "DmLD0s4zUGuX+hjkIkW/aZi+JZZFZfhBxhumG9nftWPYT9/AjX3C2YZCarRWJ83jy/K3N9y4cnva0NVqKxTa3A=="; 7988 7961 }; 7989 7962 }; 7990 7963 "@segment/loosely-validate-event-2.0.0" = { ··· 8419 8392 sha512 = "4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w=="; 8420 8393 }; 8421 8394 }; 8395 + "@taplo/lsp-0.2.4" = { 8396 + name = "_at_taplo_slash_lsp"; 8397 + packageName = "@taplo/lsp"; 8398 + version = "0.2.4"; 8399 + src = fetchurl { 8400 + url = "https://registry.npmjs.org/@taplo/lsp/-/lsp-0.2.4.tgz"; 8401 + sha512 = "/FcGQVvXAslhiC9aMG5gxKXJctg8N7XLZrP+wYrFTFccWEPZd/Xon5y7jUXpKOVSOFEA1MOKZKbPuK4ET5/T8Q=="; 8402 + }; 8403 + }; 8422 8404 "@textlint/ast-node-types-12.1.1" = { 8423 8405 name = "_at_textlint_slash_ast-node-types"; 8424 8406 packageName = "@textlint/ast-node-types"; ··· 9049 9031 sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA=="; 9050 9032 }; 9051 9033 }; 9052 - "@types/express-serve-static-core-4.17.28" = { 9034 + "@types/express-serve-static-core-4.17.29" = { 9053 9035 name = "_at_types_slash_express-serve-static-core"; 9054 9036 packageName = "@types/express-serve-static-core"; 9055 - version = "4.17.28"; 9037 + version = "4.17.29"; 9056 9038 src = fetchurl { 9057 - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz"; 9058 - sha512 = "P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig=="; 9039 + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz"; 9040 + sha512 = "uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q=="; 9059 9041 }; 9060 9042 }; 9061 9043 "@types/file-type-10.9.1" = { ··· 9616 9598 sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A=="; 9617 9599 }; 9618 9600 }; 9619 - "@types/node-16.11.39" = { 9601 + "@types/node-16.11.41" = { 9620 9602 name = "_at_types_slash_node"; 9621 9603 packageName = "@types/node"; 9622 - version = "16.11.39"; 9604 + version = "16.11.41"; 9623 9605 src = fetchurl { 9624 - url = "https://registry.npmjs.org/@types/node/-/node-16.11.39.tgz"; 9625 - sha512 = "K0MsdV42vPwm9L6UwhIxMAOmcvH/1OoVkZyCgEtVu4Wx7sElGloy/W7kMBNe/oJ7V/jW9BVt1F6RahH6e7tPXw=="; 9606 + url = "https://registry.npmjs.org/@types/node/-/node-16.11.41.tgz"; 9607 + sha512 = "mqoYK2TnVjdkGk8qXAVGc/x9nSaTpSrFaGFm43BUH3IdoBV0nta6hYaGmdOvIMlbHJbUEVen3gvwpwovAZKNdQ=="; 9626 9608 }; 9627 9609 }; 9628 9610 "@types/node-16.11.6" = { ··· 9634 9616 sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="; 9635 9617 }; 9636 9618 }; 9637 - "@types/node-17.0.23" = { 9638 - name = "_at_types_slash_node"; 9639 - packageName = "@types/node"; 9640 - version = "17.0.23"; 9641 - src = fetchurl { 9642 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz"; 9643 - sha512 = "UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="; 9644 - }; 9645 - }; 9646 - "@types/node-17.0.25" = { 9647 - name = "_at_types_slash_node"; 9648 - packageName = "@types/node"; 9649 - version = "17.0.25"; 9650 - src = fetchurl { 9651 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.25.tgz"; 9652 - sha512 = "wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w=="; 9653 - }; 9654 - }; 9655 9619 "@types/node-17.0.33" = { 9656 9620 name = "_at_types_slash_node"; 9657 9621 packageName = "@types/node"; ··· 9679 9643 sha512 = "xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw=="; 9680 9644 }; 9681 9645 }; 9682 - "@types/node-17.0.42" = { 9646 + "@types/node-17.0.45" = { 9647 + name = "_at_types_slash_node"; 9648 + packageName = "@types/node"; 9649 + version = "17.0.45"; 9650 + src = fetchurl { 9651 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz"; 9652 + sha512 = "w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw=="; 9653 + }; 9654 + }; 9655 + "@types/node-18.0.0" = { 9683 9656 name = "_at_types_slash_node"; 9684 9657 packageName = "@types/node"; 9685 - version = "17.0.42"; 9658 + version = "18.0.0"; 9686 9659 src = fetchurl { 9687 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.42.tgz"; 9688 - sha512 = "Q5BPGyGKcvQgAMbsr7qEGN/kIPN6zZecYYABeTDBizOsau+2NMdSVTar9UQw21A2+JyA2KRNDYaYrPB0Rpk2oQ=="; 9660 + url = "https://registry.npmjs.org/@types/node/-/node-18.0.0.tgz"; 9661 + sha512 = "cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA=="; 9689 9662 }; 9690 9663 }; 9691 9664 "@types/node-6.14.13" = { ··· 9715 9688 sha512 = "/aKAdg5c8n468cYLy2eQrcR5k6chlbNwZNGUj3TboyPa2hcO2QAJcfymlqPzMiRj8B6nYKXjzQz36minFE0RwQ=="; 9716 9689 }; 9717 9690 }; 9718 - "@types/node-fetch-2.6.1" = { 9691 + "@types/node-fetch-2.6.2" = { 9719 9692 name = "_at_types_slash_node-fetch"; 9720 9693 packageName = "@types/node-fetch"; 9721 - version = "2.6.1"; 9694 + version = "2.6.2"; 9722 9695 src = fetchurl { 9723 - url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.1.tgz"; 9724 - sha512 = "oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA=="; 9696 + url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz"; 9697 + sha512 = "DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A=="; 9725 9698 }; 9726 9699 }; 9727 9700 "@types/normalize-package-data-2.4.1" = { ··· 10354 10327 sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; 10355 10328 }; 10356 10329 }; 10357 - "@typescript-eslint/eslint-plugin-5.27.1" = { 10330 + "@typescript-eslint/eslint-plugin-5.28.0" = { 10358 10331 name = "_at_typescript-eslint_slash_eslint-plugin"; 10359 10332 packageName = "@typescript-eslint/eslint-plugin"; 10360 - version = "5.27.1"; 10333 + version = "5.28.0"; 10361 10334 src = fetchurl { 10362 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.1.tgz"; 10363 - sha512 = "6dM5NKT57ZduNnJfpY81Phe9nc9wolnMCnknb1im6brWi1RYv84nbMS3olJa27B6+irUVV1X/Wb+Am0FjJdGFw=="; 10335 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.28.0.tgz"; 10336 + sha512 = "DXVU6Cg29H2M6EybqSg2A+x8DgO9TCUBRp4QEXQHJceLS7ogVDP0g3Lkg/SZCqcvkAP/RruuQqK0gdlkgmhSUA=="; 10364 10337 }; 10365 10338 }; 10366 10339 "@typescript-eslint/experimental-utils-4.33.0" = { ··· 10381 10354 sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; 10382 10355 }; 10383 10356 }; 10384 - "@typescript-eslint/parser-5.27.1" = { 10357 + "@typescript-eslint/parser-5.28.0" = { 10385 10358 name = "_at_typescript-eslint_slash_parser"; 10386 10359 packageName = "@typescript-eslint/parser"; 10387 - version = "5.27.1"; 10360 + version = "5.28.0"; 10388 10361 src = fetchurl { 10389 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.27.1.tgz"; 10390 - sha512 = "7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ=="; 10362 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.28.0.tgz"; 10363 + sha512 = "ekqoNRNK1lAcKhZESN/PdpVsWbP9jtiNqzFWkp/yAUdZvJalw2heCYuqRmM5eUJSIYEkgq5sGOjq+ZqsLMjtRA=="; 10391 10364 }; 10392 10365 }; 10393 10366 "@typescript-eslint/scope-manager-4.33.0" = { ··· 10399 10372 sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; 10400 10373 }; 10401 10374 }; 10402 - "@typescript-eslint/scope-manager-5.27.1" = { 10375 + "@typescript-eslint/scope-manager-5.28.0" = { 10403 10376 name = "_at_typescript-eslint_slash_scope-manager"; 10404 10377 packageName = "@typescript-eslint/scope-manager"; 10405 - version = "5.27.1"; 10378 + version = "5.28.0"; 10406 10379 src = fetchurl { 10407 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.27.1.tgz"; 10408 - sha512 = "fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg=="; 10380 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.28.0.tgz"; 10381 + sha512 = "LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w=="; 10409 10382 }; 10410 10383 }; 10411 - "@typescript-eslint/type-utils-5.27.1" = { 10384 + "@typescript-eslint/type-utils-5.28.0" = { 10412 10385 name = "_at_typescript-eslint_slash_type-utils"; 10413 10386 packageName = "@typescript-eslint/type-utils"; 10414 - version = "5.27.1"; 10387 + version = "5.28.0"; 10415 10388 src = fetchurl { 10416 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.27.1.tgz"; 10417 - sha512 = "+UC1vVUWaDHRnC2cQrCJ4QtVjpjjCgjNFpg8b03nERmkHv9JV9X5M19D7UFMd+/G7T/sgFwX2pGmWK38rqyvXw=="; 10389 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.28.0.tgz"; 10390 + sha512 = "SyKjKh4CXPglueyC6ceAFytjYWMoPHMswPQae236zqe1YbhvCVQyIawesYywGiu98L9DwrxsBN69vGIVxJ4mQQ=="; 10418 10391 }; 10419 10392 }; 10420 10393 "@typescript-eslint/types-4.33.0" = { ··· 10426 10399 sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; 10427 10400 }; 10428 10401 }; 10429 - "@typescript-eslint/types-5.27.1" = { 10402 + "@typescript-eslint/types-5.28.0" = { 10430 10403 name = "_at_typescript-eslint_slash_types"; 10431 10404 packageName = "@typescript-eslint/types"; 10432 - version = "5.27.1"; 10405 + version = "5.28.0"; 10433 10406 src = fetchurl { 10434 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.27.1.tgz"; 10435 - sha512 = "LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg=="; 10407 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.28.0.tgz"; 10408 + sha512 = "2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA=="; 10436 10409 }; 10437 10410 }; 10438 10411 "@typescript-eslint/typescript-estree-4.33.0" = { ··· 10444 10417 sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; 10445 10418 }; 10446 10419 }; 10447 - "@typescript-eslint/typescript-estree-5.27.1" = { 10420 + "@typescript-eslint/typescript-estree-5.28.0" = { 10448 10421 name = "_at_typescript-eslint_slash_typescript-estree"; 10449 10422 packageName = "@typescript-eslint/typescript-estree"; 10450 - version = "5.27.1"; 10423 + version = "5.28.0"; 10451 10424 src = fetchurl { 10452 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.1.tgz"; 10453 - sha512 = "DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw=="; 10425 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.28.0.tgz"; 10426 + sha512 = "9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA=="; 10454 10427 }; 10455 10428 }; 10456 - "@typescript-eslint/utils-5.27.1" = { 10429 + "@typescript-eslint/utils-5.28.0" = { 10457 10430 name = "_at_typescript-eslint_slash_utils"; 10458 10431 packageName = "@typescript-eslint/utils"; 10459 - version = "5.27.1"; 10432 + version = "5.28.0"; 10460 10433 src = fetchurl { 10461 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.27.1.tgz"; 10462 - sha512 = "mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w=="; 10434 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.28.0.tgz"; 10435 + sha512 = "E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g=="; 10463 10436 }; 10464 10437 }; 10465 10438 "@typescript-eslint/visitor-keys-4.33.0" = { ··· 10471 10444 sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; 10472 10445 }; 10473 10446 }; 10474 - "@typescript-eslint/visitor-keys-5.27.1" = { 10447 + "@typescript-eslint/visitor-keys-5.28.0" = { 10475 10448 name = "_at_typescript-eslint_slash_visitor-keys"; 10476 10449 packageName = "@typescript-eslint/visitor-keys"; 10477 - version = "5.27.1"; 10450 + version = "5.28.0"; 10478 10451 src = fetchurl { 10479 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.1.tgz"; 10480 - sha512 = "xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ=="; 10452 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.28.0.tgz"; 10453 + sha512 = "BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA=="; 10481 10454 }; 10482 10455 }; 10483 10456 "@ungap/promise-all-settled-1.1.2" = { ··· 11371 11344 sha512 = "2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA=="; 11372 11345 }; 11373 11346 }; 11374 - "@webpack-cli/configtest-1.1.1" = { 11347 + "@webpack-cli/configtest-1.2.0" = { 11375 11348 name = "_at_webpack-cli_slash_configtest"; 11376 11349 packageName = "@webpack-cli/configtest"; 11377 - version = "1.1.1"; 11350 + version = "1.2.0"; 11378 11351 src = fetchurl { 11379 - url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.1.tgz"; 11380 - sha512 = "1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg=="; 11352 + url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz"; 11353 + sha512 = "4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg=="; 11381 11354 }; 11382 11355 }; 11383 - "@webpack-cli/info-1.4.1" = { 11356 + "@webpack-cli/info-1.5.0" = { 11384 11357 name = "_at_webpack-cli_slash_info"; 11385 11358 packageName = "@webpack-cli/info"; 11386 - version = "1.4.1"; 11359 + version = "1.5.0"; 11387 11360 src = fetchurl { 11388 - url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.1.tgz"; 11389 - sha512 = "PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA=="; 11361 + url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz"; 11362 + sha512 = "e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ=="; 11390 11363 }; 11391 11364 }; 11392 - "@webpack-cli/serve-1.6.1" = { 11365 + "@webpack-cli/serve-1.7.0" = { 11393 11366 name = "_at_webpack-cli_slash_serve"; 11394 11367 packageName = "@webpack-cli/serve"; 11395 - version = "1.6.1"; 11368 + version = "1.7.0"; 11396 11369 src = fetchurl { 11397 - url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.1.tgz"; 11398 - sha512 = "gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw=="; 11370 + url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz"; 11371 + sha512 = "oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q=="; 11399 11372 }; 11400 11373 }; 11401 11374 "@webtorrent/http-node-1.3.0" = { ··· 12565 12538 version = "0.2.1"; 12566 12539 src = fetchurl { 12567 12540 url = "https://registry.npmjs.org/ansi-color/-/ansi-color-0.2.1.tgz"; 12568 - sha1 = "3e75c037475217544ed763a8db5709fa9ae5bf9a"; 12541 + sha512 = "bF6xLaZBLpOQzgYUtYEhJx090nPSZk1BQ/q2oyBK9aMMcJHzx9uXGCjI2Y+LebsN4Jwoykr0V9whbPiogdyHoQ=="; 12569 12542 }; 12570 12543 }; 12571 12544 "ansi-colors-1.1.0" = { ··· 14404 14377 sha512 = "eKEYj1+jDgQ15jazjmelcPGXO77pa5epzlyXyEQcwwLtnACtBTCrxaW+96uXF2j4rzIikmUtVlzXwejx6iIhWw=="; 14405 14378 }; 14406 14379 }; 14407 - "asyncjs-util-1.2.8" = { 14380 + "asyncjs-util-1.2.10" = { 14408 14381 name = "asyncjs-util"; 14409 14382 packageName = "asyncjs-util"; 14410 - version = "1.2.8"; 14383 + version = "1.2.10"; 14411 14384 src = fetchurl { 14412 - url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.8.tgz"; 14413 - sha512 = "wUcEKoAxBWWNE1wXkoIvIyM1vVDfvItYXANYTgwemeRL8FgV6z70XdLGLBMty0WiQSub0fBuKIyF+Hz3DCahOg=="; 14385 + url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.10.tgz"; 14386 + sha512 = "p4U6HQUw4k/xZKrwEQO7ZuF+8/OkzAQS4iAMhFUBGtSD8p3KkKBaTBuUTEH8TWKB3ArNbrP0401TGE2vIiU7uQ=="; 14414 14387 }; 14415 14388 }; 14416 14389 "asyncjs-util-1.2.9" = { ··· 14602 14575 sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw=="; 14603 14576 }; 14604 14577 }; 14605 - "aws-sdk-2.1152.0" = { 14578 + "aws-sdk-2.1155.0" = { 14606 14579 name = "aws-sdk"; 14607 14580 packageName = "aws-sdk"; 14608 - version = "2.1152.0"; 14581 + version = "2.1155.0"; 14609 14582 src = fetchurl { 14610 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1152.0.tgz"; 14611 - sha512 = "Lqwk0bDhm3vzpYb3AAM9VgGHeDpbB8+o7UJnP9R+CO23kJfi/XRpKihAcbyKDD/AUQ+O1LJaUVpvaJYLS9Am7w=="; 14583 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1155.0.tgz"; 14584 + sha512 = "H2QircO+R3/tx7DhRKYsGuj0YJcIY2N53U2gDExAmy34/oNAGUcS1eKB8DwTbpNPrnQgZzYDGBgHMTFWtN2XZA=="; 14612 14585 }; 14613 14586 }; 14614 14587 "aws-sign2-0.6.0" = { ··· 15167 15140 src = fetchurl { 15168 15141 url = "https://registry.npmjs.org/bash-color/-/bash-color-0.0.4.tgz"; 15169 15142 sha512 = "ZNB4525U7BxT6v9C8LEtywyCgB4Pjnm7/bh+ru/Z9Ecxvg3fDjaJ6z305z9a61orQdbB1zqYHh5JbUqx4s4K0g=="; 15143 + }; 15144 + }; 15145 + "bash-language-server-3.0.3" = { 15146 + name = "bash-language-server"; 15147 + packageName = "bash-language-server"; 15148 + version = "3.0.3"; 15149 + src = fetchurl { 15150 + url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-3.0.3.tgz"; 15151 + sha512 = "UhYd0YYaXjYn0M3dVeL6jv1X9L2VR8dJp3fUCcdyHTgzJOvmntpUrkjcoKASV0qqZt0u8DSPT4xE+HjegQoEvQ=="; 15170 15152 }; 15171 15153 }; 15172 15154 "basic-auth-1.1.0" = { ··· 16276 16258 sha512 = "LhBa/3hqtSY7fBgE4FzoJXNPtE1tzxEfuWc32LQXNAwvgeWJP3tlQtNqhfPwfDFflSIysSe5N/yK/ybgd/oniA=="; 16277 16259 }; 16278 16260 }; 16279 - "bolt07-1.8.0" = { 16280 - name = "bolt07"; 16281 - packageName = "bolt07"; 16282 - version = "1.8.0"; 16283 - src = fetchurl { 16284 - url = "https://registry.npmjs.org/bolt07/-/bolt07-1.8.0.tgz"; 16285 - sha512 = "UJq+p94UK9QsU3P1npJyWF3r8TuJd6kv6P4m656VQK/m5ifw0bWCkYF0ngcHbFGq3j8u3gP8/tkGtB8WwPPRbQ=="; 16286 - }; 16287 - }; 16288 16261 "bolt07-1.8.1" = { 16289 16262 name = "bolt07"; 16290 16263 packageName = "bolt07"; ··· 16303 16276 sha512 = "jq1b/ZdMambhh+yi+pm+1PJBAnlYvQYljaBgSajvVAINHrHg32ovCBra8d0ADE3BAoj6G/tK7OSV4t/yT9A+/g=="; 16304 16277 }; 16305 16278 }; 16306 - "bolt09-0.2.1" = { 16307 - name = "bolt09"; 16308 - packageName = "bolt09"; 16309 - version = "0.2.1"; 16310 - src = fetchurl { 16311 - url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.1.tgz"; 16312 - sha512 = "ON1CY0awM/VsOxcmCtz7WggxjGRH+G5rSEAdWp1UoU43BHiGw1T6eEt1t4gFvLi8eUSV0hB7vF1QOba65k/7FA=="; 16313 - }; 16314 - }; 16315 - "bolt09-0.2.2" = { 16316 - name = "bolt09"; 16317 - packageName = "bolt09"; 16318 - version = "0.2.2"; 16319 - src = fetchurl { 16320 - url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.2.tgz"; 16321 - sha512 = "m533YWZ/R/p1buxEK/19v94Ay1vS1PJNwfP30BCVj6l96NGpOa9t40HYuMpoX+xFYwOx8kZs+GGTb9TbJund0w=="; 16322 - }; 16323 - }; 16324 16279 "bolt09-0.2.3" = { 16325 16280 name = "bolt09"; 16326 16281 packageName = "bolt09"; ··· 17987 17942 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 17988 17943 }; 17989 17944 }; 17990 - "caniuse-lite-1.0.30001352" = { 17945 + "caniuse-lite-1.0.30001354" = { 17991 17946 name = "caniuse-lite"; 17992 17947 packageName = "caniuse-lite"; 17993 - version = "1.0.30001352"; 17948 + version = "1.0.30001354"; 17994 17949 src = fetchurl { 17995 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001352.tgz"; 17996 - sha512 = "GUgH8w6YergqPQDGWhJGt8GDRnY0L/iJVQcU3eJ46GYf52R8tk0Wxp0PymuFVZboJYXGiCqwozAYZNRjVj6IcA=="; 17950 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001354.tgz"; 17951 + sha512 = "mImKeCkyGDAHNywYFA4bqnLAzTUvVkqPvhY4DV47X+Gl2c5Z8c3KNETnXp14GQt11LvxE8AwjzGxJ+rsikiOzg=="; 17997 17952 }; 17998 17953 }; 17999 17954 "canvas-2.9.1" = { ··· 18149 18104 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 18150 18105 }; 18151 18106 }; 18152 - "cdk8s-2.3.23" = { 18107 + "cdk8s-2.3.28" = { 18153 18108 name = "cdk8s"; 18154 18109 packageName = "cdk8s"; 18155 - version = "2.3.23"; 18110 + version = "2.3.28"; 18156 18111 src = fetchurl { 18157 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.3.23.tgz"; 18158 - sha512 = "GtBz/CnDdVOWsMD/tNbolHNrs2EWke7ORFn3tv9KbeGCcWT/nfmtZE6djHddgQewW2FrYNHtTCqPKPHMxpMMVQ=="; 18112 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.3.28.tgz"; 18113 + sha512 = "gfvPeDejnWs8gzhifV/g0i0TRR1sny58aIXFk2QSpR4WCBTxHgFZKNA2aGFhX5gbTaKALbtCrYo63tewV+0jwA=="; 18159 18114 }; 18160 18115 }; 18161 - "cdk8s-plus-22-2.0.0-rc.15" = { 18116 + "cdk8s-plus-22-2.0.0-rc.19" = { 18162 18117 name = "cdk8s-plus-22"; 18163 18118 packageName = "cdk8s-plus-22"; 18164 - version = "2.0.0-rc.15"; 18119 + version = "2.0.0-rc.19"; 18165 18120 src = fetchurl { 18166 - url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.15.tgz"; 18167 - sha512 = "CCwc8mAi7a5k5VnDz+syCoE0uHWMI0dTlwJwADWIq1Ay+ZUScFIGTYlzDqK5zqqNcN+fV+l3Jl/n7A8xIV4RLA=="; 18121 + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.19.tgz"; 18122 + sha512 = "bskUwRrbCZc4Cb8lmONCaanzbdQJo1KJDmKpkT2wbQjZbzhFhlwo9LfFa6VeqLgHYDvob1CiyQ75AB/8YBLcGQ=="; 18168 18123 }; 18169 18124 }; 18170 18125 "cdktf-0.11.2" = { ··· 18833 18788 sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; 18834 18789 }; 18835 18790 }; 18836 - "ci-info-3.3.1" = { 18791 + "ci-info-3.3.2" = { 18837 18792 name = "ci-info"; 18838 18793 packageName = "ci-info"; 18839 - version = "3.3.1"; 18794 + version = "3.3.2"; 18840 18795 src = fetchurl { 18841 - url = "https://registry.npmjs.org/ci-info/-/ci-info-3.3.1.tgz"; 18842 - sha512 = "SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg=="; 18796 + url = "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz"; 18797 + sha512 = "xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg=="; 18843 18798 }; 18844 18799 }; 18845 18800 "cint-8.2.1" = { ··· 19911 19866 src = fetchurl { 19912 19867 url = "https://registry.npmjs.org/colorette/-/colorette-2.0.17.tgz"; 19913 19868 sha512 = "hJo+3Bkn0NCHybn9Tu35fIeoOKGOk5OCC32y4Hz2It+qlCO2Q3DeQ1hRn/tDDMQKRYUEzqsl7jbF6dYKjlE60g=="; 19869 + }; 19870 + }; 19871 + "colorette-2.0.19" = { 19872 + name = "colorette"; 19873 + packageName = "colorette"; 19874 + version = "2.0.19"; 19875 + src = fetchurl { 19876 + url = "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz"; 19877 + sha512 = "3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ=="; 19914 19878 }; 19915 19879 }; 19916 19880 "colors-0.6.2" = { ··· 20813 20777 sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; 20814 20778 }; 20815 20779 }; 20816 - "constructs-10.1.35" = { 20780 + "constructs-10.1.41" = { 20817 20781 name = "constructs"; 20818 20782 packageName = "constructs"; 20819 - version = "10.1.35"; 20783 + version = "10.1.41"; 20820 20784 src = fetchurl { 20821 - url = "https://registry.npmjs.org/constructs/-/constructs-10.1.35.tgz"; 20822 - sha512 = "ak/ml4xdnsLiaKAUFnYQiwGMA1yOgdcnNr7KlfhAbhM9Sq1rvb/TPzF6Jdgi9wivjJVtnUuNRgbZ7+JJJrK2cw=="; 20785 + url = "https://registry.npmjs.org/constructs/-/constructs-10.1.41.tgz"; 20786 + sha512 = "9fvkjvMHHLYgUpB/zFCpaUysokdTM7hwIvkfBJwXJsxl4Hwwt9z0otHM/hotkqEteR3LdYmmVpJCze+V4MvGhQ=="; 20823 20787 }; 20824 20788 }; 20825 20789 "consume-http-header-1.0.0" = { ··· 21444 21408 sha512 = "UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA=="; 21445 21409 }; 21446 21410 }; 21447 - "core-js-compat-3.22.8" = { 21411 + "core-js-3.23.1" = { 21412 + name = "core-js"; 21413 + packageName = "core-js"; 21414 + version = "3.23.1"; 21415 + src = fetchurl { 21416 + url = "https://registry.npmjs.org/core-js/-/core-js-3.23.1.tgz"; 21417 + sha512 = "wfMYHWi1WQjpgZNC9kAlN4ut04TM9fUTdi7CqIoTVM7yaiOUQTklOzfb+oWH3r9edQcT3F887swuVmxrV+CC8w=="; 21418 + }; 21419 + }; 21420 + "core-js-compat-3.23.1" = { 21448 21421 name = "core-js-compat"; 21449 21422 packageName = "core-js-compat"; 21450 - version = "3.22.8"; 21423 + version = "3.23.1"; 21451 21424 src = fetchurl { 21452 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.8.tgz"; 21453 - sha512 = "pQnwg4xtuvc2Bs/5zYQPaEYYSuTxsF7LBWF0SvnVhthZo/Qe+rJpcEekrdNK5DWwDJ0gv0oI9NNX5Mppdy0ctg=="; 21425 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.1.tgz"; 21426 + sha512 = "KeYrEc8t6FJsKYB2qnDwRHWaC0cJNaqlHfCpMe5q3j/W1nje3moib/txNklddLPCtGb+etcBIyJ8zuMa/LN5/A=="; 21454 21427 }; 21455 21428 }; 21456 - "core-js-pure-3.22.8" = { 21429 + "core-js-pure-3.23.1" = { 21457 21430 name = "core-js-pure"; 21458 21431 packageName = "core-js-pure"; 21459 - version = "3.22.8"; 21432 + version = "3.23.1"; 21460 21433 src = fetchurl { 21461 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.8.tgz"; 21462 - sha512 = "bOxbZIy9S5n4OVH63XaLVXZ49QKicjowDx/UELyJ68vxfCRpYsbyh/WNZNfEfAk+ekA8vSjt+gCDpvh672bc3w=="; 21434 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.1.tgz"; 21435 + sha512 = "3qNgf6TqI3U1uhuSYRzJZGfFd4T+YlbyVPl+jgRiKjdZopvG4keZQwWZDAWpu1UH9nCgTpUzIV3GFawC7cJsqg=="; 21463 21436 }; 21464 21437 }; 21465 21438 "core-util-is-1.0.2" = { ··· 22468 22441 src = fetchurl { 22469 22442 url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.1.0.tgz"; 22470 22443 sha512 = "JL+Q6YEikT2uoe57InjFFa6VejhSv0tDwOxeQ1bVQKeUC/NCnLAAZ8n3PzowPQQLuZ37fysDYZipB2UJkH9C6A=="; 22444 + }; 22445 + }; 22446 + "csv-parse-5.2.0" = { 22447 + name = "csv-parse"; 22448 + packageName = "csv-parse"; 22449 + version = "5.2.0"; 22450 + src = fetchurl { 22451 + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.2.0.tgz"; 22452 + sha512 = "ZuLjTp3Qx2gycoB7FKS9q11KgDL3f0wQszTlNOajS3fHa0jypN/zgjmkam+rczX5dXw5z7+KrDW2hWkM4542Ug=="; 22471 22453 }; 22472 22454 }; 22473 22455 "csv-stream-0.2.0" = { ··· 24810 24792 sha512 = "0cuGS8+jhR67Fy7qG3i3Pc7Aw494sb9yG9QgpG97SFVWwolgYjlhJg7n+UaHxOQT30d1TYu/EYe9k01ivLErIg=="; 24811 24793 }; 24812 24794 }; 24795 + "dezalgo-1.0.3" = { 24796 + name = "dezalgo"; 24797 + packageName = "dezalgo"; 24798 + version = "1.0.3"; 24799 + src = fetchurl { 24800 + url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz"; 24801 + sha512 = "K7i4zNfT2kgQz3GylDw40ot9GAE47sFZ9EXHFSPP6zONLgH6kWXE0KWJchkbQJLBkRazq4APwZ4OwiFFlT95OQ=="; 24802 + }; 24803 + }; 24813 24804 "dezalgo-1.0.4" = { 24814 24805 name = "dezalgo"; 24815 24806 packageName = "dezalgo"; ··· 25152 25143 sha512 = "BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA=="; 25153 25144 }; 25154 25145 }; 25155 - "dns-packet-5.3.1" = { 25146 + "dns-packet-5.4.0" = { 25156 25147 name = "dns-packet"; 25157 25148 packageName = "dns-packet"; 25158 - version = "5.3.1"; 25149 + version = "5.4.0"; 25159 25150 src = fetchurl { 25160 - url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz"; 25161 - sha512 = "spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw=="; 25151 + url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz"; 25152 + sha512 = "EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g=="; 25162 25153 }; 25163 25154 }; 25164 25155 "dns-txt-2.0.2" = { ··· 25179 25170 sha512 = "2FFKzmLGOnD+Y378bRKH+gTjRMuSpH7OKgPy31KjjfCoKZx7tU8Dmqfd/3fhG2d/4bppuN8/KtWMUZBAcUCRnQ=="; 25180 25171 }; 25181 25172 }; 25173 + "dockerfile-ast-0.1.0" = { 25174 + name = "dockerfile-ast"; 25175 + packageName = "dockerfile-ast"; 25176 + version = "0.1.0"; 25177 + src = fetchurl { 25178 + url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.1.0.tgz"; 25179 + sha512 = "qKftHMVoMliYBaYLkgttm+NXhRISVNkIMfAL4ecmXjiWRElfdfY+xNgITiehG0LpUEDbFUa/UDCByYq/2UZIpQ=="; 25180 + }; 25181 + }; 25182 25182 "dockerfile-ast-0.4.2" = { 25183 25183 name = "dockerfile-ast"; 25184 25184 packageName = "dockerfile-ast"; ··· 25188 25188 sha512 = "k770mVWaCm3KbyOSPFizP6WB2ucZjfAv8aun4UsKl+IivowK7ItwBixNbziBjN05yNpvCL1/IxBdZiSz6KQIvA=="; 25189 25189 }; 25190 25190 }; 25191 + "dockerfile-language-server-nodejs-0.2.2" = { 25192 + name = "dockerfile-language-server-nodejs"; 25193 + packageName = "dockerfile-language-server-nodejs"; 25194 + version = "0.2.2"; 25195 + src = fetchurl { 25196 + url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.2.2.tgz"; 25197 + sha512 = "PdDtFhzVywa2bZK6OFQhIPMSNPNJQa03Ri3ONxBJpxtOwtAaDSnh95iGj/bdPqQLJGoj1Y/yTheDTxLOTTe5JA=="; 25198 + }; 25199 + }; 25200 + "dockerfile-language-service-0.1.1" = { 25201 + name = "dockerfile-language-service"; 25202 + packageName = "dockerfile-language-service"; 25203 + version = "0.1.1"; 25204 + src = fetchurl { 25205 + url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.1.1.tgz"; 25206 + sha512 = "Lw4QlxJoy9F1559wxX+0xe5iSNK95Fbzx/YhdmAzfwgbPvdPzvFouIuuMyMPj/Q5JyFH1QAr7VeagOe24w0cqg=="; 25207 + }; 25208 + }; 25191 25209 "dockerfile-language-service-0.9.0" = { 25192 25210 name = "dockerfile-language-service"; 25193 25211 packageName = "dockerfile-language-service"; ··· 25195 25213 src = fetchurl { 25196 25214 url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.9.0.tgz"; 25197 25215 sha512 = "sDUkTR4LUimEAWXDIbUTEx2CytCBlx+XlJkg4B2Ptvak9HkwPD4JpXesaWxXPpp6YHCzxqwsTDY7Gf79ic340g=="; 25216 + }; 25217 + }; 25218 + "dockerfile-utils-0.1.1" = { 25219 + name = "dockerfile-utils"; 25220 + packageName = "dockerfile-utils"; 25221 + version = "0.1.1"; 25222 + src = fetchurl { 25223 + url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.1.1.tgz"; 25224 + sha512 = "ddAA8PCAcT4pBQ1AFRnPjetJ31/7BqNKLHQkZebNE0hBAiOr8SzrnIWvJUcBDHrVbASCVl1Ye37hbaTsUmYHsw=="; 25198 25225 }; 25199 25226 }; 25200 25227 "dockerfile-utils-0.10.0" = { ··· 25483 25510 src = fetchurl { 25484 25511 url = "https://registry.npmjs.org/dompurify/-/dompurify-2.3.5.tgz"; 25485 25512 sha512 = "kD+f8qEaa42+mjdOpKeztu9Mfx5bv9gVLO6K9jRx4uGvh6Wv06Srn4jr1wPNY2OOUGGSKHNFN+A8MA3v0E0QAQ=="; 25486 - }; 25487 - }; 25488 - "dompurify-2.3.6" = { 25489 - name = "dompurify"; 25490 - packageName = "dompurify"; 25491 - version = "2.3.6"; 25492 - src = fetchurl { 25493 - url = "https://registry.npmjs.org/dompurify/-/dompurify-2.3.6.tgz"; 25494 - sha512 = "OFP2u/3T1R5CEgWCEONuJ1a5+MFKnOYpkywpUSxv/dj1LeBT1erK+JwM7zK0ROy2BRhqVCf0LRw/kHqKuMkVGg=="; 25495 25513 }; 25496 25514 }; 25497 25515 "dompurify-2.3.8" = { ··· 26043 26061 sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ=="; 26044 26062 }; 26045 26063 }; 26046 - "electron-18.3.3" = { 26064 + "electron-18.3.4" = { 26047 26065 name = "electron"; 26048 26066 packageName = "electron"; 26049 - version = "18.3.3"; 26067 + version = "18.3.4"; 26050 26068 src = fetchurl { 26051 - url = "https://registry.npmjs.org/electron/-/electron-18.3.3.tgz"; 26052 - sha512 = "LYxf3uCDc/r0klu7LL0eZLxkseoGIY/vrCfS0Qj4YTU3M7LLjOaIqrajI7icKwaI2dgxiuJJH3n4eqALFpJAFg=="; 26069 + url = "https://registry.npmjs.org/electron/-/electron-18.3.4.tgz"; 26070 + sha512 = "MIxQnaQR7NzWZOuAhRbJAf+pPyoXXGNge9E6pz7nGLXE/DxeN6BUbKb0iWVCCMkxIpqdIhXdc5sViUCX74dvsw=="; 26053 26071 }; 26054 26072 }; 26055 26073 "electron-notarize-1.2.1" = { ··· 26088 26106 sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw=="; 26089 26107 }; 26090 26108 }; 26091 - "electron-to-chromium-1.4.152" = { 26109 + "electron-to-chromium-1.4.157" = { 26092 26110 name = "electron-to-chromium"; 26093 26111 packageName = "electron-to-chromium"; 26094 - version = "1.4.152"; 26112 + version = "1.4.157"; 26095 26113 src = fetchurl { 26096 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.152.tgz"; 26097 - sha512 = "jk4Ju5SGZAQQJ1iI4Rgru7dDlvkQPLpNPWH9gIZmwCD4YteA5Bbk1xPcPDUf5jUYs3e1e80RXdi8XgKQZaigeg=="; 26114 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.157.tgz"; 26115 + sha512 = "gteFnXPKsDAdm1U5vVuyrLnKOaR/x/SY+HjUQoHypLUYWJt4RaWU3PaiTBEkRDJh8/Zd8KC/EFjV+uPaHsjKFA=="; 26098 26116 }; 26099 26117 }; 26100 26118 "electrum-client-git+https://github.com/janoside/electrum-client" = { ··· 27593 27611 sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="; 27594 27612 }; 27595 27613 }; 27596 - "estree-util-is-identifier-name-2.0.0" = { 27614 + "estree-util-is-identifier-name-2.0.1" = { 27597 27615 name = "estree-util-is-identifier-name"; 27598 27616 packageName = "estree-util-is-identifier-name"; 27599 - version = "2.0.0"; 27617 + version = "2.0.1"; 27600 27618 src = fetchurl { 27601 - url = "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.0.tgz"; 27602 - sha512 = "aXXZFVMnBBDRP81vS4YtAYJ0hUkgEsXea7lNKWCOeaAquGb1Jm2rcONPB5fpzwgbNxulTvrWuKnp9UElUGAKeQ=="; 27619 + url = "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.1.tgz"; 27620 + sha512 = "rxZj1GkQhY4x1j/CSnybK9cGuMFQYFPLq0iNyopqf14aOVLFtMv7Esika+ObJWPWiOHuMOAHz3YkWoLYYRnzWQ=="; 27603 27621 }; 27604 27622 }; 27605 27623 "estree-util-visit-1.1.0" = { ··· 28079 28097 sha512 = "Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ=="; 28080 28098 }; 28081 28099 }; 28082 - "exit-code-1.0.2" = { 28083 - name = "exit-code"; 28084 - packageName = "exit-code"; 28085 - version = "1.0.2"; 28086 - src = fetchurl { 28087 - url = "https://registry.npmjs.org/exit-code/-/exit-code-1.0.2.tgz"; 28088 - sha512 = "U80QYrKun5np62yRqG6geNRP5TZKU2HF73Bb6IE3XjDHXKlserAdP14tIaP3W9J6ezv84DwbpbRTAtu4FsKcgw=="; 28089 - }; 28090 - }; 28091 28100 "exit-hook-1.1.1" = { 28092 28101 name = "exit-hook"; 28093 28102 packageName = "exit-hook"; ··· 29006 29015 sha512 = "WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ=="; 29007 29016 }; 29008 29017 }; 29009 - "faunadb-4.5.4" = { 29018 + "faunadb-4.6.0" = { 29010 29019 name = "faunadb"; 29011 29020 packageName = "faunadb"; 29012 - version = "4.5.4"; 29021 + version = "4.6.0"; 29013 29022 src = fetchurl { 29014 - url = "https://registry.npmjs.org/faunadb/-/faunadb-4.5.4.tgz"; 29015 - sha512 = "v0e1aXPhitIGMtuC7NFtp//hyr0d2NtHFcGqsEJgWx49rRJoonZQl6hLQ3lBjhA/LPg26U4R/BAlmDFE2pzsUA=="; 29023 + url = "https://registry.npmjs.org/faunadb/-/faunadb-4.6.0.tgz"; 29024 + sha512 = "lBCS9wOLIdoeQmhzFvNAXM9B4T3Ptv2HUf0RrPsC2LA1zPtTQFBtdhH7fvTlwRyUawIKDjs1wn5pk2o8g0Cylg=="; 29016 29025 }; 29017 29026 }; 29018 29027 "faye-websocket-0.10.0" = { ··· 30284 30293 sha512 = "wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww=="; 30285 30294 }; 30286 30295 }; 30287 - "formdata-node-4.3.2" = { 30296 + "formdata-node-4.3.3" = { 30288 30297 name = "formdata-node"; 30289 30298 packageName = "formdata-node"; 30290 - version = "4.3.2"; 30299 + version = "4.3.3"; 30291 30300 src = fetchurl { 30292 - url = "https://registry.npmjs.org/formdata-node/-/formdata-node-4.3.2.tgz"; 30293 - sha512 = "k7lYJyzDOSL6h917favP8j1L0/wNyylzU+x+1w4p5haGVHNlP58dbpdJhiCUsDbWsa9HwEtLp89obQgXl2e0qg=="; 30301 + url = "https://registry.npmjs.org/formdata-node/-/formdata-node-4.3.3.tgz"; 30302 + sha512 = "coTew7WODO2vF+XhpUdmYz4UBvlsiTMSNaFYZlrXIqYbFd4W7bMwnoALNLE6uvNgzTg2j1JDF0ZImEfF06VPAA=="; 30294 30303 }; 30295 30304 }; 30296 30305 "formdata-polyfill-4.0.10" = { ··· 30327 30336 src = fetchurl { 30328 30337 url = "https://registry.npmjs.org/formidable/-/formidable-1.2.6.tgz"; 30329 30338 sha512 = "KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ=="; 30339 + }; 30340 + }; 30341 + "formidable-2.0.1" = { 30342 + name = "formidable"; 30343 + packageName = "formidable"; 30344 + version = "2.0.1"; 30345 + src = fetchurl { 30346 + url = "https://registry.npmjs.org/formidable/-/formidable-2.0.1.tgz"; 30347 + sha512 = "rjTMNbp2BpfQShhFbR3Ruk3qk2y9jKpvMW78nJgx8QKtxjDVrwbZG+wvDOmVbifHyOUOQJXxqEy6r0faRrPzTQ=="; 30330 30348 }; 30331 30349 }; 30332 30350 "forwarded-0.1.2" = { ··· 30968 30986 sha512 = "gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA=="; 30969 30987 }; 30970 30988 }; 30989 + "gaxios-5.0.0" = { 30990 + name = "gaxios"; 30991 + packageName = "gaxios"; 30992 + version = "5.0.0"; 30993 + src = fetchurl { 30994 + url = "https://registry.npmjs.org/gaxios/-/gaxios-5.0.0.tgz"; 30995 + sha512 = "VD/yc5ln6XU8Ch1hyYY6kRMBE0Yc2np3fPyeJeYHhrPs1i8rgnsApPMWyrugkl7LLoSqpOJVBWlQIa87OAvt8Q=="; 30996 + }; 30997 + }; 30971 30998 "gaze-1.1.3" = { 30972 30999 name = "gaze"; 30973 31000 packageName = "gaze"; ··· 30993 31020 src = fetchurl { 30994 31021 url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-4.3.1.tgz"; 30995 31022 sha512 = "x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A=="; 31023 + }; 31024 + }; 31025 + "gcp-metadata-5.0.0" = { 31026 + name = "gcp-metadata"; 31027 + packageName = "gcp-metadata"; 31028 + version = "5.0.0"; 31029 + src = fetchurl { 31030 + url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-5.0.0.tgz"; 31031 + sha512 = "gfwuX3yA3nNsHSWUL4KG90UulNiq922Ukj3wLTrcnX33BB7PwB1o0ubR8KVvXu9nJH+P5w1j2SQSNNqto+H0DA=="; 30996 31032 }; 30997 31033 }; 30998 31034 "gelf-stream-1.1.1" = { ··· 32004 32040 sha512 = "wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA=="; 32005 32041 }; 32006 32042 }; 32007 - "globby-13.1.1" = { 32043 + "globby-13.1.2" = { 32008 32044 name = "globby"; 32009 32045 packageName = "globby"; 32010 - version = "13.1.1"; 32046 + version = "13.1.2"; 32011 32047 src = fetchurl { 32012 - url = "https://registry.npmjs.org/globby/-/globby-13.1.1.tgz"; 32013 - sha512 = "XMzoDZbGZ37tufiv7g0N4F/zp3zkwdFtVbV3EHsVl1KQr4RPLfNoT068/97RPshz2J5xYNEjLKKBKaGHifBd3Q=="; 32048 + url = "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz"; 32049 + sha512 = "LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ=="; 32014 32050 }; 32015 32051 }; 32016 32052 "globby-4.1.0" = { ··· 32094 32130 sha512 = "wYGVAa8/sh9ggF5qWoOs6eArcAgwEPkDNvf637jHRHkMUznvs7m/Q2vrc0KLN6B8px3nnRJqJcXK4mTK6lLFmg=="; 32095 32131 }; 32096 32132 }; 32097 - "goldengate-11.2.1" = { 32133 + "goldengate-11.2.2" = { 32098 32134 name = "goldengate"; 32099 32135 packageName = "goldengate"; 32100 - version = "11.2.1"; 32136 + version = "11.2.2"; 32101 32137 src = fetchurl { 32102 - url = "https://registry.npmjs.org/goldengate/-/goldengate-11.2.1.tgz"; 32103 - sha512 = "v0REhYrm8fUJMvDAGzYhymB3R9BqTEulUcD740zNEsH2umNc9Jv+RI4sXGygIXUtUi9FSlBrO4udVerBoRMBLQ=="; 32138 + url = "https://registry.npmjs.org/goldengate/-/goldengate-11.2.2.tgz"; 32139 + sha512 = "/KNzppPCD5wjIeGPfoCsehgF9bArdssaQ0TVBy/rt8aYUuuuvFNmi1+0GsTKYBDRohFtlbv/1h3RG7OqEzY8XQ=="; 32104 32140 }; 32105 32141 }; 32106 - "goldengate-11.2.2" = { 32142 + "goldengate-11.2.3" = { 32107 32143 name = "goldengate"; 32108 32144 packageName = "goldengate"; 32109 - version = "11.2.2"; 32145 + version = "11.2.3"; 32110 32146 src = fetchurl { 32111 - url = "https://registry.npmjs.org/goldengate/-/goldengate-11.2.2.tgz"; 32112 - sha512 = "/KNzppPCD5wjIeGPfoCsehgF9bArdssaQ0TVBy/rt8aYUuuuvFNmi1+0GsTKYBDRohFtlbv/1h3RG7OqEzY8XQ=="; 32147 + url = "https://registry.npmjs.org/goldengate/-/goldengate-11.2.3.tgz"; 32148 + sha512 = "V09p/DRD2q51vK3HJgPjWRTw3FFhMkb2E2flizWaE9oZmetFpXrxcp8be1pVbzWZrDykj2FMc68K0GeerO6KsQ=="; 32113 32149 }; 32114 32150 }; 32115 32151 "gonzales-pe-4.3.0" = { ··· 32130 32166 sha512 = "5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA=="; 32131 32167 }; 32132 32168 }; 32133 - "google-gax-2.30.3" = { 32169 + "google-auth-library-8.0.2" = { 32170 + name = "google-auth-library"; 32171 + packageName = "google-auth-library"; 32172 + version = "8.0.2"; 32173 + src = fetchurl { 32174 + url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-8.0.2.tgz"; 32175 + sha512 = "HoG+nWFAThLovKpvcbYzxgn+nBJPTfAwtq0GxPN821nOO+21+8oP7MoEHfd1sbDulUFFGfcjJr2CnJ4YssHcyg=="; 32176 + }; 32177 + }; 32178 + "google-gax-3.1.1" = { 32134 32179 name = "google-gax"; 32135 32180 packageName = "google-gax"; 32136 - version = "2.30.3"; 32181 + version = "3.1.1"; 32137 32182 src = fetchurl { 32138 - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.30.3.tgz"; 32139 - sha512 = "Zsd6hbJBMvAcJS3cYpAsmupvfsxygFR2meUZJcGeR7iUqYHCR/1Hf2aQNB9srrlXQMm91pNiUvW0Kz6Qld8QkA=="; 32183 + url = "https://registry.npmjs.org/google-gax/-/google-gax-3.1.1.tgz"; 32184 + sha512 = "lLiv6s3Ax5i0Iqy/crHrIZuaU1AYZvTj/F8DCcdJvmDWDsFSVSh+KkCEkKGd7PHck3dVB58NnbC4FIiRpTq4WQ=="; 32140 32185 }; 32141 32186 }; 32142 32187 "google-p12-pem-3.1.4" = { ··· 32463 32508 sha512 = "bVddVO8YFJPwuACn+3pgmrEg6I8iBuYLuwvxiE+lcQQ7POotVZxm2rgGw0PvVYmWWf3DT7nTVDZ5ROh/ALp8mA=="; 32464 32509 }; 32465 32510 }; 32466 - "graphql-language-service-5.0.5" = { 32511 + "graphql-language-service-5.0.6" = { 32467 32512 name = "graphql-language-service"; 32468 32513 packageName = "graphql-language-service"; 32469 - version = "5.0.5"; 32514 + version = "5.0.6"; 32470 32515 src = fetchurl { 32471 - url = "https://registry.npmjs.org/graphql-language-service/-/graphql-language-service-5.0.5.tgz"; 32472 - sha512 = "hekBLI73r6ghShWrIMJ7Pe4Z+yJrda/U+kLenNJLNswuCrR0XfFOv5pNtnSXLcjFZkQfY1bwGV0D8IVKZEOW5Q=="; 32516 + url = "https://registry.npmjs.org/graphql-language-service/-/graphql-language-service-5.0.6.tgz"; 32517 + sha512 = "FjE23aTy45Lr5metxCv3ZgSKEZOzN7ERR+OFC1isV5mHxI0Ob8XxayLTYjQKrs8b3kOpvgTYmSmu6AyXOzYslg=="; 32473 32518 }; 32474 32519 }; 32475 32520 "graphql-language-service-interface-2.10.2" = { ··· 32490 32535 sha512 = "duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA=="; 32491 32536 }; 32492 32537 }; 32493 - "graphql-language-service-server-2.7.26" = { 32538 + "graphql-language-service-server-2.7.27" = { 32494 32539 name = "graphql-language-service-server"; 32495 32540 packageName = "graphql-language-service-server"; 32496 - version = "2.7.26"; 32541 + version = "2.7.27"; 32497 32542 src = fetchurl { 32498 - url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.7.26.tgz"; 32499 - sha512 = "D+3H3/U/rZGyWVKff9b5plxNNwuBFeeZyONDPHSHYtuYAgdr9lN8AMH4QoLX9kWkkLiQ5dws9b2BKx5xRM4J3g=="; 32543 + url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.7.27.tgz"; 32544 + sha512 = "ogHYC4xrOx6cTmJ7M0e/JbNljjP5kRGzof8aIzGrnOxPA53qG9XqUJEu8kKiEhiVh+AkUt2/mpr733xJcjP5kw=="; 32500 32545 }; 32501 32546 }; 32502 32547 "graphql-language-service-types-1.8.7" = { ··· 33559 33604 src = fetchurl { 33560 33605 url = "https://registry.npmjs.org/hexer/-/hexer-1.5.0.tgz"; 33561 33606 sha512 = "dyrPC8KzBzUJ19QTIo1gXNqIISRXQ0NwteW6OeQHRN4ZuZeHkdODfj0zHBdOlHbRY8GqbqK57C9oWSvQZizFsg=="; 33607 + }; 33608 + }; 33609 + "hexoid-1.0.0" = { 33610 + name = "hexoid"; 33611 + packageName = "hexoid"; 33612 + version = "1.0.0"; 33613 + src = fetchurl { 33614 + url = "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz"; 33615 + sha512 = "QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g=="; 33562 33616 }; 33563 33617 }; 33564 33618 "highlight.js-10.7.3" = { ··· 35667 35721 sha512 = "MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g=="; 35668 35722 }; 35669 35723 }; 35670 - "install-artifact-from-github-1.3.0" = { 35724 + "install-artifact-from-github-1.3.1" = { 35671 35725 name = "install-artifact-from-github"; 35672 35726 packageName = "install-artifact-from-github"; 35673 - version = "1.3.0"; 35727 + version = "1.3.1"; 35674 35728 src = fetchurl { 35675 - url = "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.3.0.tgz"; 35676 - sha512 = "iT8v1GwOAX0pPXifF/5ihnMhHOCo3OeK7z3TQa4CtSNCIg8k0UxqBEk9jRwz8OP68hHXvJ2gxRa89KYHtBkqGA=="; 35729 + url = "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.3.1.tgz"; 35730 + sha512 = "3l3Bymg2eKDsN5wQuMfgGEj2x6l5MCAv0zPL6rxHESufFVlEAKW/6oY9F1aGgvY/EgWm5+eWGRjINveL4X7Hgg=="; 35677 35731 }; 35678 35732 }; 35679 35733 "int53-1.0.0" = { ··· 35854 35908 src = fetchurl { 35855 35909 url = "https://registry.npmjs.org/invert-kv/-/invert-kv-3.0.1.tgz"; 35856 35910 sha512 = "CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw=="; 35857 - }; 35858 - }; 35859 - "invoices-2.0.4" = { 35860 - name = "invoices"; 35861 - packageName = "invoices"; 35862 - version = "2.0.4"; 35863 - src = fetchurl { 35864 - url = "https://registry.npmjs.org/invoices/-/invoices-2.0.4.tgz"; 35865 - sha512 = "+Np4KWjNSlYm7Qp12zkRN5eu9tkA7FAFIP60bmpbMbwQbgz5gV9go3bkY8CpGj+Z1zifw5N8U+pH+wko/XSjpw=="; 35866 - }; 35867 - }; 35868 - "invoices-2.0.5" = { 35869 - name = "invoices"; 35870 - packageName = "invoices"; 35871 - version = "2.0.5"; 35872 - src = fetchurl { 35873 - url = "https://registry.npmjs.org/invoices/-/invoices-2.0.5.tgz"; 35874 - sha512 = "097isfZK3qaDJXQOEqTr3IfnrFZnGCAsbyqWNHAESdG12vBC39dprZWFwPLtnv7I8exhJG6WFFlaC51qaJan/w=="; 35875 35911 }; 35876 35912 }; 35877 35913 "invoices-2.0.6" = { ··· 37089 37125 sha512 = "gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA=="; 37090 37126 }; 37091 37127 }; 37092 - "is-plain-obj-4.0.0" = { 37128 + "is-plain-obj-4.1.0" = { 37093 37129 name = "is-plain-obj"; 37094 37130 packageName = "is-plain-obj"; 37095 - version = "4.0.0"; 37131 + version = "4.1.0"; 37096 37132 src = fetchurl { 37097 - url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.0.0.tgz"; 37098 - sha512 = "NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw=="; 37133 + url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz"; 37134 + sha512 = "+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg=="; 37099 37135 }; 37100 37136 }; 37101 37137 "is-plain-object-2.0.4" = { ··· 37197 37233 sha512 = "eCTBKm9K6nO3H1S3BrJBAqZJIVXKNdwDuGl6KHf1bnf/bn02BvEe+l+MypjsxbqZ7mt5oMhu+bS/mm7G2FRW3A=="; 37198 37234 }; 37199 37235 }; 37200 - "is-reachable-5.2.0" = { 37236 + "is-reachable-5.2.1" = { 37201 37237 name = "is-reachable"; 37202 37238 packageName = "is-reachable"; 37203 - version = "5.2.0"; 37239 + version = "5.2.1"; 37204 37240 src = fetchurl { 37205 - url = "https://registry.npmjs.org/is-reachable/-/is-reachable-5.2.0.tgz"; 37206 - sha512 = "x9rn66RltP1CDAdk00y6hG7kgVTTYvQwcIp8s8ug6d4M1EdhvNwi19YmSJwfVfHtlFViMI8anKHX52SgQKJuRQ=="; 37241 + url = "https://registry.npmjs.org/is-reachable/-/is-reachable-5.2.1.tgz"; 37242 + sha512 = "ViPrrlmt9FTTclYbz6mL/PFyF1TXSpJ9y/zw9QMVJxbhU/7DFkvk/5cTv7S0sXtqbJj32zZ+jKpNAjrYTUZBPQ=="; 37207 37243 }; 37208 37244 }; 37209 37245 "is-redirect-1.0.0" = { ··· 38521 38557 sha512 = "HZbQXv1vkAfKQhOK22E6EoBmHD1aJGqRoAEhO7X1gnl0oDx83/on8GcLIJ/GW5YEWa4sTKgX2CsMKmbmMFJufA=="; 38522 38558 }; 38523 38559 }; 38524 - "jsii-srcmak-0.1.587" = { 38560 + "jsii-srcmak-0.1.591" = { 38525 38561 name = "jsii-srcmak"; 38526 38562 packageName = "jsii-srcmak"; 38527 - version = "0.1.587"; 38563 + version = "0.1.591"; 38528 38564 src = fetchurl { 38529 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.587.tgz"; 38530 - sha512 = "DFNMOqvy+pwpl55X3DxfmBjlZAFFO3Xm2E03QW3m8a/3sBwjnnNgBIKvALrafYs8fhaAIc28cY3XP3QoCTWroQ=="; 38565 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.591.tgz"; 38566 + sha512 = "7IbPeDYUBH6qK9OQDjKdidXR3w7X0kprFQ1IdKYPxgWVjpOrPlOkFnZs9jEOZhsUEaWjCGQXvvNm21kOT2ZYcg=="; 38531 38567 }; 38532 38568 }; 38533 38569 "json-bigint-1.0.0" = { ··· 38818 38854 sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; 38819 38855 }; 38820 38856 }; 38821 - "json2jsii-0.3.37" = { 38857 + "json2jsii-0.3.41" = { 38822 38858 name = "json2jsii"; 38823 38859 packageName = "json2jsii"; 38824 - version = "0.3.37"; 38860 + version = "0.3.41"; 38825 38861 src = fetchurl { 38826 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.37.tgz"; 38827 - sha512 = "AZoF1fmXK6CF1nxFYh17RwjgNxXPlwAwFP7eJI6JQlP6ZMiEBTooqN8a+ObR/gK5B3RdLtxQY984O4MNldjUrQ=="; 38862 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.41.tgz"; 38863 + sha512 = "rx/Gi+qjLJOjHO76V85W8ZfWV65SrjY8Eg4ZsUUakn9+5A0z4Z6zSCF90OaVkyf7/+QrP5czJOyzWKdsaG8Y8Q=="; 38828 38864 }; 38829 38865 }; 38830 38866 "json3-3.2.6" = { ··· 40339 40375 sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA=="; 40340 40376 }; 40341 40377 }; 40342 - "lightning-5.10.1" = { 40343 - name = "lightning"; 40344 - packageName = "lightning"; 40345 - version = "5.10.1"; 40346 - src = fetchurl { 40347 - url = "https://registry.npmjs.org/lightning/-/lightning-5.10.1.tgz"; 40348 - sha512 = "dIrN4vPzmzq9DaMD6c+9DqQwJCMl1lOleWrhIrv+HIpzq6rdNJvUXaVJOFz1OV8P3zy2Q3+s9VxnzeN70ee+ow=="; 40349 - }; 40350 - }; 40351 - "lightning-5.14.0" = { 40352 - name = "lightning"; 40353 - packageName = "lightning"; 40354 - version = "5.14.0"; 40355 - src = fetchurl { 40356 - url = "https://registry.npmjs.org/lightning/-/lightning-5.14.0.tgz"; 40357 - sha512 = "T8NGH6F+t4sajEbC3CT2MbjqGyzTu0fH/X/UnnO8YlKoSUlU3Y9LFkmQDjMyDkxWN+peJmUQt8Em+OZu5XHLaw=="; 40358 - }; 40359 - }; 40360 40378 "lightning-5.16.0" = { 40361 40379 name = "lightning"; 40362 40380 packageName = "lightning"; ··· 40375 40393 sha512 = "7wXInrGwrAPgu+/yOagxsGkYFArby57mpTyHzgVIo6H9U9ajdQPHuS17VrbyGH3cjldp6Aw+rawwaVqqq8GRAg=="; 40376 40394 }; 40377 40395 }; 40378 - "lightning-5.16.2" = { 40379 - name = "lightning"; 40380 - packageName = "lightning"; 40381 - version = "5.16.2"; 40382 - src = fetchurl { 40383 - url = "https://registry.npmjs.org/lightning/-/lightning-5.16.2.tgz"; 40384 - sha512 = "qKbf39l3k4xoY8ia0uDOvUkw8Zm3hlfiSrZasVdELlo4TJvrfZmHF5YadlWHdYFz9zFEeF4jINL3KQKGcYwliQ=="; 40385 - }; 40386 - }; 40387 40396 "lightning-5.16.3" = { 40388 40397 name = "lightning"; 40389 40398 packageName = "lightning"; ··· 40391 40400 src = fetchurl { 40392 40401 url = "https://registry.npmjs.org/lightning/-/lightning-5.16.3.tgz"; 40393 40402 sha512 = "ghban3KbqkbzahwIp4NAtuhc8xIurVcCXAd7tV6qGkFYKZAy9loIvFrhZqoWF4A4jnaKbRnJPCaxzJ8JwPl3EA=="; 40394 - }; 40395 - }; 40396 - "lightning-5.9.0" = { 40397 - name = "lightning"; 40398 - packageName = "lightning"; 40399 - version = "5.9.0"; 40400 - src = fetchurl { 40401 - url = "https://registry.npmjs.org/lightning/-/lightning-5.9.0.tgz"; 40402 - sha512 = "o084Z7QAUaxR7+nLgr+DlL2XiMJGHDq/SRhKcanP10qR0irTK1oSHDyaFmrwz33y5V/d6Tla+5yjdD217LMWAA=="; 40403 40403 }; 40404 40404 }; 40405 40405 "lilconfig-2.0.5" = { ··· 40654 40654 sha512 = "yO8stbm3Ewd/EfO56a1FnV4pR4bjvwHG8ZilDryQMpHFSBu6ChLZ+r5wUe4uvH9gb963fQcy+N6vdeZPloYJsQ=="; 40655 40655 }; 40656 40656 }; 40657 - "ln-service-53.10.0" = { 40658 - name = "ln-service"; 40659 - packageName = "ln-service"; 40660 - version = "53.10.0"; 40661 - src = fetchurl { 40662 - url = "https://registry.npmjs.org/ln-service/-/ln-service-53.10.0.tgz"; 40663 - sha512 = "YXpywZVf/oSWiuntp5v6IRPYNCCMlsGkWkFsX4eygnXqZnKDOaBSgvBHYJ871C0SJuyQD4oN0wazTYD+PhQUGA=="; 40664 - }; 40665 - }; 40666 - "ln-service-53.11.0" = { 40667 - name = "ln-service"; 40668 - packageName = "ln-service"; 40669 - version = "53.11.0"; 40670 - src = fetchurl { 40671 - url = "https://registry.npmjs.org/ln-service/-/ln-service-53.11.0.tgz"; 40672 - sha512 = "qdsgLRFGdn8+zfSDgbGw584fS2QQromxp4VRXzj9nk3qveTD6IwBjaEhC1xtY73MQCHQ3ALkWVn3aYMoy5erFw=="; 40673 - }; 40674 - }; 40675 - "ln-service-53.15.0" = { 40676 - name = "ln-service"; 40677 - packageName = "ln-service"; 40678 - version = "53.15.0"; 40679 - src = fetchurl { 40680 - url = "https://registry.npmjs.org/ln-service/-/ln-service-53.15.0.tgz"; 40681 - sha512 = "7WHV5uP0BrnXX3me4OsdaFI8J81LMJRENCREbxR/CQuvLW6rvLe0KlZmuLVBxwVAYKcXc0CcfiZPX0js2+8NKA=="; 40682 - }; 40683 - }; 40684 40657 "ln-service-53.17.0" = { 40685 40658 name = "ln-service"; 40686 40659 packageName = "ln-service"; ··· 40699 40672 sha512 = "zkOFlFFkTotvBkkXwVaoCczGmJlcKgLW+M+/bOayuNk5yg7csKbWir5bKnjLi39i9dHK+ffjeFpX4yYH17B7tA=="; 40700 40673 }; 40701 40674 }; 40702 - "ln-service-53.17.2" = { 40703 - name = "ln-service"; 40704 - packageName = "ln-service"; 40705 - version = "53.17.2"; 40706 - src = fetchurl { 40707 - url = "https://registry.npmjs.org/ln-service/-/ln-service-53.17.2.tgz"; 40708 - sha512 = "cmPDZUENkwB3Wvef16qvpYgpyEFE8eSpdkf00eMIWgUWqMcw4YYxMYrHlMvq0mELcyzQRmYld5yXUAQdQ43VAw=="; 40709 - }; 40710 - }; 40711 40675 "ln-service-53.17.3" = { 40712 40676 name = "ln-service"; 40713 40677 packageName = "ln-service"; ··· 40717 40681 sha512 = "Ulk35FIMF1E+iKgImlYVESWlf9eznhd/ZYw6qycQlcjp686QccKi6Otng8H49JSfc1/kj/ObOuFipP9mtil3Wg=="; 40718 40682 }; 40719 40683 }; 40720 - "ln-sync-3.12.0" = { 40684 + "ln-sync-3.12.1" = { 40685 + name = "ln-sync"; 40686 + packageName = "ln-sync"; 40687 + version = "3.12.1"; 40688 + src = fetchurl { 40689 + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.12.1.tgz"; 40690 + sha512 = "Wr1g/H0Vi322P7oLmSksNJxSgDbmyIAuVwSwHbo+tVpDRdJUSw/RxhRquLdFz/8ienXm2S9ylcaI8e21Xh6xJA=="; 40691 + }; 40692 + }; 40693 + "ln-sync-3.12.2" = { 40721 40694 name = "ln-sync"; 40722 40695 packageName = "ln-sync"; 40723 - version = "3.12.0"; 40696 + version = "3.12.2"; 40724 40697 src = fetchurl { 40725 - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.12.0.tgz"; 40726 - sha512 = "+TFRyMVvUU9jAqRGPiawPY8cGSmfd2bKfofGsH95zTlQ4DeQLYyEPFxzqJZrkmddqdohfuF0XVW9y7+4v4eq5A=="; 40698 + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.12.2.tgz"; 40699 + sha512 = "Ae6SGG1ItbARuZuUevCp3S/1HiFep7G5UNuSkjsG8ohA4d6VN6RajcEbjsU1SdEtE7oQHJt0p52ye/R3SONDIg=="; 40727 40700 }; 40728 40701 }; 40729 - "ln-sync-3.12.1" = { 40702 + "ln-sync-3.13.0" = { 40730 40703 name = "ln-sync"; 40731 40704 packageName = "ln-sync"; 40732 - version = "3.12.1"; 40705 + version = "3.13.0"; 40733 40706 src = fetchurl { 40734 - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.12.1.tgz"; 40735 - sha512 = "Wr1g/H0Vi322P7oLmSksNJxSgDbmyIAuVwSwHbo+tVpDRdJUSw/RxhRquLdFz/8ienXm2S9ylcaI8e21Xh6xJA=="; 40707 + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.13.0.tgz"; 40708 + sha512 = "f5s60wyijcp67gN86VuVSax1xtoc7djwiDLYWIsJPU7uro4F3n8sU76HI1xZxwNL8Q7mMbWEMm/SIeA7ds9yEw=="; 40736 40709 }; 40737 40710 }; 40738 - "ln-telegram-3.22.1" = { 40711 + "ln-telegram-3.22.2" = { 40739 40712 name = "ln-telegram"; 40740 40713 packageName = "ln-telegram"; 40741 - version = "3.22.1"; 40714 + version = "3.22.2"; 40742 40715 src = fetchurl { 40743 - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.22.1.tgz"; 40744 - sha512 = "chYAssyd0UN97gCIoN1WDm4Ymlhs1xGIIsl9F5QHYV/ogpSZPsWHWyDPnQPMNhC3ik27H+LD5R7YjmQj8fEPlA=="; 40716 + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.22.2.tgz"; 40717 + sha512 = "Vqnx7Pmgbn6ENX5b13P7pK02k29LcFFyOznFsbbI9WFjfmVHskJ6ymIuA7GX+oEy6XgyMA9/nDYh1BQhnPNcgA=="; 40745 40718 }; 40746 40719 }; 40747 40720 "load-bmfont-1.4.1" = { ··· 43346 43319 sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg=="; 43347 43320 }; 43348 43321 }; 43349 - "marked-4.0.16" = { 43322 + "marked-4.0.17" = { 43350 43323 name = "marked"; 43351 43324 packageName = "marked"; 43352 - version = "4.0.16"; 43325 + version = "4.0.17"; 43353 43326 src = fetchurl { 43354 - url = "https://registry.npmjs.org/marked/-/marked-4.0.16.tgz"; 43355 - sha512 = "wahonIQ5Jnyatt2fn8KqF/nIqZM8mh3oRu2+l5EANGMhu6RFjiSG52QNE2eWzFMI94HqYSgN184NurgNG6CztA=="; 43327 + url = "https://registry.npmjs.org/marked/-/marked-4.0.17.tgz"; 43328 + sha512 = "Wfk0ATOK5iPxM4ptrORkFemqroz0ZDxp5MWfYA7H/F+wO17NRWV5Ypxi6p3g2Xmw2bKeiYOl6oVnLHKxBA0VhA=="; 43356 43329 }; 43357 43330 }; 43358 43331 "marked-terminal-5.1.1" = { ··· 44237 44210 sha512 = "ITSHjwVaby1Li738sxhF48sLTxcNyUAoWfoqyztL1f7J6JOLpHOuQPNLBb6lxGPUA0u7xP9IRULgvod0dKu35A=="; 44238 44211 }; 44239 44212 }; 44240 - "mermaid-9.1.1" = { 44213 + "mermaid-9.1.2" = { 44241 44214 name = "mermaid"; 44242 44215 packageName = "mermaid"; 44243 - version = "9.1.1"; 44216 + version = "9.1.2"; 44244 44217 src = fetchurl { 44245 - url = "https://registry.npmjs.org/mermaid/-/mermaid-9.1.1.tgz"; 44246 - sha512 = "2RVD+WkzZ4VDyO9gQvQAuQ/ux2gLigJtKDTlbwjYqOR/NwsVzTSfGm/kx648/qWJsg6Sv04tE9BWCO8s6a+pFA=="; 44218 + url = "https://registry.npmjs.org/mermaid/-/mermaid-9.1.2.tgz"; 44219 + sha512 = "RVf3hBKqiMfyORHboCaEjOAK1TomLO50hYRPvlTrZCXlCniM5pRpe8UlkHBjjpaLtioZnbdYv/vEVj7iKnwkJQ=="; 44247 44220 }; 44248 44221 }; 44249 44222 "meros-1.1.4" = { ··· 47431 47404 src = fetchurl { 47432 47405 url = "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz"; 47433 47406 sha512 = "olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w=="; 47407 + }; 47408 + }; 47409 + "node-gyp-9.0.0" = { 47410 + name = "node-gyp"; 47411 + packageName = "node-gyp"; 47412 + version = "9.0.0"; 47413 + src = fetchurl { 47414 + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-9.0.0.tgz"; 47415 + sha512 = "Ma6p4s+XCTPxCuAMrOA/IJRmVy16R8Sdhtwl4PrCr7IBlj4cPawF0vg/l7nOT1jPbuNS7lIRJpBSvVsXwEZuzw=="; 47434 47416 }; 47435 47417 }; 47436 47418 "node-gyp-build-4.1.1" = { ··· 50485 50467 sha512 = "8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g=="; 50486 50468 }; 50487 50469 }; 50488 - "paid-services-3.16.0" = { 50489 - name = "paid-services"; 50490 - packageName = "paid-services"; 50491 - version = "3.16.0"; 50492 - src = fetchurl { 50493 - url = "https://registry.npmjs.org/paid-services/-/paid-services-3.16.0.tgz"; 50494 - sha512 = "1NJojLf8qLulTuhO//XqpQWsK/cE/kMrM0hmX6ggToOWJQC+5wSiqwjlaAKRARLwX/uAMOpCTlm3n/EoBrEuQA=="; 50495 - }; 50496 - }; 50497 50470 "paid-services-3.16.2" = { 50498 50471 name = "paid-services"; 50499 50472 packageName = "paid-services"; ··· 51349 51322 sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 51350 51323 }; 51351 51324 }; 51352 - "path-loader-1.0.10" = { 51325 + "path-loader-1.0.12" = { 51353 51326 name = "path-loader"; 51354 51327 packageName = "path-loader"; 51355 - version = "1.0.10"; 51328 + version = "1.0.12"; 51356 51329 src = fetchurl { 51357 - url = "https://registry.npmjs.org/path-loader/-/path-loader-1.0.10.tgz"; 51358 - sha512 = "CMP0v6S6z8PHeJ6NFVyVJm6WyJjIwFvyz2b0n2/4bKdS/0uZa/9sKUlYZzubrn3zuDRU0zIuEDX9DZYQ2ZI8TA=="; 51330 + url = "https://registry.npmjs.org/path-loader/-/path-loader-1.0.12.tgz"; 51331 + sha512 = "n7oDG8B+k/p818uweWrOixY9/Dsr89o2TkCm6tOTex3fpdo2+BFDgR+KpB37mGKBRsBAlR8CIJMFN0OEy/7hIQ=="; 51359 51332 }; 51360 51333 }; 51361 51334 "path-parse-1.0.7" = { ··· 53365 53338 sha512 = "vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg=="; 53366 53339 }; 53367 53340 }; 53368 - "prettier-2.6.2" = { 53341 + "prettier-2.7.0" = { 53369 53342 name = "prettier"; 53370 53343 packageName = "prettier"; 53371 - version = "2.6.2"; 53344 + version = "2.7.0"; 53372 53345 src = fetchurl { 53373 - url = "https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz"; 53374 - sha512 = "PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew=="; 53346 + url = "https://registry.npmjs.org/prettier/-/prettier-2.7.0.tgz"; 53347 + sha512 = "nwoX4GMFgxoPC6diHvSwmK/4yU8FFH3V8XWtLQrbj4IBsK2pkYhG4kf/ljF/haaZ/aii+wNJqISrCDPgxGWDVQ=="; 53375 53348 }; 53376 53349 }; 53377 53350 "prettier-bytes-1.0.4" = { ··· 54013 53986 sha512 = "vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA=="; 54014 53987 }; 54015 53988 }; 54016 - "proto3-json-serializer-0.1.9" = { 53989 + "proto3-json-serializer-1.0.2" = { 54017 53990 name = "proto3-json-serializer"; 54018 53991 packageName = "proto3-json-serializer"; 54019 - version = "0.1.9"; 53992 + version = "1.0.2"; 54020 53993 src = fetchurl { 54021 - url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.9.tgz"; 54022 - sha512 = "A60IisqvnuI45qNRygJjrnNjX2TMdQGMY+57tR3nul3ZgO2zXkR9OGR8AXxJhkqx84g0FTnrfi3D5fWMSdANdQ=="; 53994 + url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-1.0.2.tgz"; 53995 + sha512 = "wHxf8jYZ/LUP3M7XmULDKnbxBn+Bvk6SM+tDCPVTp9vraIzUi9hHsOBb1n2Y0VV0ukx4zBN/2vzMQYs4KWwRpg=="; 54023 53996 }; 54024 53997 }; 54025 53998 "protobufjs-3.8.2" = { ··· 54038 54011 src = fetchurl { 54039 54012 url = "https://registry.npmjs.org/protobufjs/-/protobufjs-6.10.3.tgz"; 54040 54013 sha512 = "yvAslS0hNdBhlSKckI4R1l7wunVilX66uvrjzE4MimiAt7/qw1nLpMhZrn/ObuUTM/c3Xnfl01LYMdcSJe6dwg=="; 54041 - }; 54042 - }; 54043 - "protobufjs-6.11.2" = { 54044 - name = "protobufjs"; 54045 - packageName = "protobufjs"; 54046 - version = "6.11.2"; 54047 - src = fetchurl { 54048 - url = "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.2.tgz"; 54049 - sha512 = "4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw=="; 54050 54014 }; 54051 54015 }; 54052 54016 "protobufjs-6.11.3" = { ··· 54184 54148 sha512 = "0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA=="; 54185 54149 }; 54186 54150 }; 54187 - "psbt-2.0.0" = { 54188 - name = "psbt"; 54189 - packageName = "psbt"; 54190 - version = "2.0.0"; 54191 - src = fetchurl { 54192 - url = "https://registry.npmjs.org/psbt/-/psbt-2.0.0.tgz"; 54193 - sha512 = "V3RueLeXhP/WZETCtUxFn9aaEjHKdJIp2jir1rgK3iU0fV4hC0f45wDRDrrtcFHIUyvudgzhg6Bcgr8cGaWXlA=="; 54194 - }; 54195 - }; 54196 54151 "psbt-2.0.1" = { 54197 54152 name = "psbt"; 54198 54153 packageName = "psbt"; ··· 55138 55093 sha512 = "U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA=="; 55139 55094 }; 55140 55095 }; 55141 - "puppeteer-14.3.0" = { 55096 + "puppeteer-14.4.0" = { 55142 55097 name = "puppeteer"; 55143 55098 packageName = "puppeteer"; 55144 - version = "14.3.0"; 55099 + version = "14.4.0"; 55145 55100 src = fetchurl { 55146 - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-14.3.0.tgz"; 55147 - sha512 = "pDtg1+vyw1UPIhUjh2/VW1HUdQnaZJHfMacrJciR3AVm+PBiqdCEcFeFb3UJ/CDEQlHOClm3/WFa7IjY25zIGg=="; 55101 + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-14.4.0.tgz"; 55102 + sha512 = "hAXoJX7IAmnRBwf4VrowoRdrS8hqWZsGuQ1Dg5R0AwDK5juaxnNO/obySo9+ytyF7pp9/VsmIA9yFE1GLSouCQ=="; 55148 55103 }; 55149 55104 }; 55150 55105 "purest-3.1.0" = { ··· 55219 55174 sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; 55220 55175 }; 55221 55176 }; 55222 - "pyright-1.1.253" = { 55177 + "pyright-1.1.254" = { 55223 55178 name = "pyright"; 55224 55179 packageName = "pyright"; 55225 - version = "1.1.253"; 55180 + version = "1.1.254"; 55226 55181 src = fetchurl { 55227 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.253.tgz"; 55228 - sha512 = "z5Ou+Gj5V6TE0ysukdAeujUuKleIwoy32SrtcxWgVcVm+2i8HqPq3AZcLvnKmzK5mL4NC/hP/3uWTmZDrxs6iA=="; 55182 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.254.tgz"; 55183 + sha512 = "YDbIqr55EkwRCFSVjWxj8KOwBTMVK1U3HLLdqp+W3n+88S31YbRERrCni9izmtt5i4wnuhf7oRI/9K8KwLxmgQ=="; 55229 55184 }; 55230 55185 }; 55231 55186 "q-0.9.7" = { ··· 55433 55388 src = fetchurl { 55434 55389 url = "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz"; 55435 55390 sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 55391 + }; 55392 + }; 55393 + "qs-6.9.3" = { 55394 + name = "qs"; 55395 + packageName = "qs"; 55396 + version = "6.9.3"; 55397 + src = fetchurl { 55398 + url = "https://registry.npmjs.org/qs/-/qs-6.9.3.tgz"; 55399 + sha512 = "EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw=="; 55436 55400 }; 55437 55401 }; 55438 55402 "qs-6.9.6" = { ··· 56056 56020 sha512 = "wuygyq8TXUlSdVXv2kigXxQNOgdb9m7LbIjwfTNGSpaY1riLd5e+VeQjlQMyUtrk0oiyhi1AqIVynworl3qxHA=="; 56057 56021 }; 56058 56022 }; 56059 - "re2-1.17.4" = { 56023 + "re2-1.17.7" = { 56060 56024 name = "re2"; 56061 56025 packageName = "re2"; 56062 - version = "1.17.4"; 56026 + version = "1.17.7"; 56063 56027 src = fetchurl { 56064 - url = "https://registry.npmjs.org/re2/-/re2-1.17.4.tgz"; 56065 - sha512 = "xyZ4h5PqE8I9tAxTh3G0UttcK5ufrcUxReFjGzfX61vtanNbS1XZHjnwRSyPcLgChI4KLxVgOT/ioZXnUAdoTA=="; 56028 + url = "https://registry.npmjs.org/re2/-/re2-1.17.7.tgz"; 56029 + sha512 = "X8GSuiBoVWwcjuppqSjsIkRxNUKDdjhkO9SBekQbZ2ksqWUReCy7DQPWOVpoTnpdtdz5PIpTTxTFzvJv5UMfjA=="; 56066 56030 }; 56067 56031 }; 56068 56032 "reachdown-1.1.0" = { ··· 56630 56594 src = fetchurl { 56631 56595 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; 56632 56596 sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 56597 + }; 56598 + }; 56599 + "readable-stream-4.0.0" = { 56600 + name = "readable-stream"; 56601 + packageName = "readable-stream"; 56602 + version = "4.0.0"; 56603 + src = fetchurl { 56604 + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-4.0.0.tgz"; 56605 + sha512 = "Mf7ilWBP6AV3tF3MjtBrHMH3roso7wIrpgzCwt9ybvqiJQVWIEBMnp/W+S//yvYSsUUi2cJIwD7q7m57l0AqZw=="; 56633 56606 }; 56634 56607 }; 56635 56608 "readable-web-to-node-stream-2.0.0" = { ··· 58720 58693 sha512 = "bkzdIZ5Xyim12j0jq6CQAHpfdsa2VqieWF6eN8vT2MXxCxLAZhgVUyu5EEMevJyXML+XWTxVbZ7mLaKx5F/DZw=="; 58721 58694 }; 58722 58695 }; 58723 - "retry-request-4.2.2" = { 58696 + "retry-request-5.0.1" = { 58724 58697 name = "retry-request"; 58725 58698 packageName = "retry-request"; 58726 - version = "4.2.2"; 58699 + version = "5.0.1"; 58727 58700 src = fetchurl { 58728 - url = "https://registry.npmjs.org/retry-request/-/retry-request-4.2.2.tgz"; 58729 - sha512 = "xA93uxUD/rogV7BV59agW/JHPGXeREMWiZc9jhcwY4YdZ7QOtC7qbomYg0n4wyk2lJhggjvKvhNX8wln/Aldhg=="; 58701 + url = "https://registry.npmjs.org/retry-request/-/retry-request-5.0.1.tgz"; 58702 + sha512 = "lxFKrlBt0OZzCWh/V0uPEN0vlr3OhdeXnpeY5OES+ckslm791Cb1D5P7lJUSnY7J5hiCjcyaUGmzCnIGDCUBig=="; 58730 58703 }; 58731 58704 }; 58732 58705 "reusify-1.0.4" = { ··· 62318 62291 src = fetchgit { 62319 62292 url = "https://github.com/mapbox/node-sqlite3.git"; 62320 62293 rev = "918052b538b0effe6c4a44c74a16b2749c08a0d2"; 62321 - sha256 = "6950459a4c59b28b1126d52e67e722a5d1150fbacfeedb7a9dfa46778a168a04"; 62294 + sha256 = "79cf7a499a735eb60c3c95619569910162018df8698ff5c43b37386634e8075f"; 62322 62295 }; 62323 62296 }; 62324 62297 "sqlstring-2.3.1" = { ··· 64391 64364 sha512 = "FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag=="; 64392 64365 }; 64393 64366 }; 64367 + "superagent-7.1.6" = { 64368 + name = "superagent"; 64369 + packageName = "superagent"; 64370 + version = "7.1.6"; 64371 + src = fetchurl { 64372 + url = "https://registry.npmjs.org/superagent/-/superagent-7.1.6.tgz"; 64373 + sha512 = "gZkVCQR1gy/oUXr+kxJMLDjla434KmSOKbx5iGD30Ql+AkJQ/YlPKECJy2nhqOsHLjGHzoDTXNSjhnvWhzKk7g=="; 64374 + }; 64375 + }; 64394 64376 "superagent-proxy-2.1.0" = { 64395 64377 name = "superagent-proxy"; 64396 64378 packageName = "superagent-proxy"; ··· 64877 64859 sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; 64878 64860 }; 64879 64861 }; 64880 - "systeminformation-5.11.16" = { 64862 + "systeminformation-5.11.20" = { 64881 64863 name = "systeminformation"; 64882 64864 packageName = "systeminformation"; 64883 - version = "5.11.16"; 64865 + version = "5.11.20"; 64884 64866 src = fetchurl { 64885 - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.11.16.tgz"; 64886 - sha512 = "/a1VfP9WELKLT330yhAHJ4lWCXRYynel1kMMHKc/qdzCgDt3BIcMlo+3tKcTiRHFefjV3fz4AvqMx7dGO/72zw=="; 64867 + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.11.20.tgz"; 64868 + sha512 = "7PTbNtcTBKIdUJ8zY7KeHH0lUArh5IgkJhunWYtaVPQXU1N+9Pk4Ko2Adb3w4qgB6Zmm70SvX6zxnnzca+0j4A=="; 64887 64869 }; 64888 64870 }; 64889 64871 "sywac-1.3.0" = { ··· 65938 65920 src = fetchurl { 65939 65921 url = "https://registry.npmjs.org/tiny-secp256k1/-/tiny-secp256k1-1.1.6.tgz"; 65940 65922 sha512 = "FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA=="; 65941 - }; 65942 - }; 65943 - "tiny-secp256k1-2.2.0" = { 65944 - name = "tiny-secp256k1"; 65945 - packageName = "tiny-secp256k1"; 65946 - version = "2.2.0"; 65947 - src = fetchurl { 65948 - url = "https://registry.npmjs.org/tiny-secp256k1/-/tiny-secp256k1-2.2.0.tgz"; 65949 - sha512 = "2hPuUGCroLrxh6xxwoe+1RgPpOOK1w2uTnhgiHBpvoutBR+krNuT4hOXQyOaaYnZgoXBB6hBYkuAJHxyeBOPzQ=="; 65950 65923 }; 65951 65924 }; 65952 65925 "tiny-secp256k1-2.2.1" = { ··· 67164 67137 sha512 = "RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw=="; 67165 67138 }; 67166 67139 }; 67167 - "tweetsodium-0.0.5" = { 67168 - name = "tweetsodium"; 67169 - packageName = "tweetsodium"; 67170 - version = "0.0.5"; 67171 - src = fetchurl { 67172 - url = "https://registry.npmjs.org/tweetsodium/-/tweetsodium-0.0.5.tgz"; 67173 - sha512 = "T3aXZtx7KqQbutTtBfn+P5By3HdBuB1eCoGviIrRJV2sXeToxv2X2cv5RvYqgG26PSnN5m3fYixds22Gkfd11w=="; 67174 - }; 67175 - }; 67176 67140 "twig-1.15.4" = { 67177 67141 name = "twig"; 67178 67142 packageName = "twig"; ··· 67387 67351 src = fetchurl { 67388 67352 url = "https://registry.npmjs.org/type-fest/-/type-fest-2.13.0.tgz"; 67389 67353 sha512 = "lPfAm42MxE4/456+QyIaaVBAwgpJb6xZ8PRu09utnhPdWwcyj9vgy6Sq0Z5yNbJ21EdxB5dRU/Qg8bsyAMtlcw=="; 67354 + }; 67355 + }; 67356 + "type-fest-2.13.1" = { 67357 + name = "type-fest"; 67358 + packageName = "type-fest"; 67359 + version = "2.13.1"; 67360 + src = fetchurl { 67361 + url = "https://registry.npmjs.org/type-fest/-/type-fest-2.13.1.tgz"; 67362 + sha512 = "hXYyrPFwETT2swFLHeoKtJrvSF/ftG/sA15/8nGaLuaDGfVAaq8DYFpu4yOyV4tzp082WqnTEoMsm3flKMI2FQ=="; 67390 67363 }; 67391 67364 }; 67392 67365 "type-is-1.6.18" = { ··· 67821 67794 sha512 = "mliiCSrsE29aNBI7O9W5gGv6WmA9kBR8PtTt6Apaxns076IRdYrrtFhXHEWMj5CSum3U7cv7/pi4xmi4XsIOqg=="; 67822 67795 }; 67823 67796 }; 67824 - "uint8array-tools-0.0.6" = { 67825 - name = "uint8array-tools"; 67826 - packageName = "uint8array-tools"; 67827 - version = "0.0.6"; 67828 - src = fetchurl { 67829 - url = "https://registry.npmjs.org/uint8array-tools/-/uint8array-tools-0.0.6.tgz"; 67830 - sha512 = "aIvEHNRX1AlOYAr6qSUjQBn4mCduxx6MtC967aRDTb2UUBPj0Ix2ZFQDcmXUUO/UxRPHcw1f5a5nVbCSKDSOqA=="; 67831 - }; 67832 - }; 67833 67797 "uint8array-tools-0.0.7" = { 67834 67798 name = "uint8array-tools"; 67835 67799 packageName = "uint8array-tools"; ··· 68028 67992 sha512 = "UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw=="; 68029 67993 }; 68030 67994 }; 68031 - "undici-5.4.0" = { 67995 + "undici-5.5.1" = { 68032 67996 name = "undici"; 68033 67997 packageName = "undici"; 68034 - version = "5.4.0"; 67998 + version = "5.5.1"; 68035 67999 src = fetchurl { 68036 - url = "https://registry.npmjs.org/undici/-/undici-5.4.0.tgz"; 68037 - sha512 = "A1SRXysDg7J+mVP46jF+9cKANw0kptqSFZ8tGyL+HBiv0K1spjxPX8Z4EGu+Eu6pjClJUBdnUPlxrOafR668/g=="; 68000 + url = "https://registry.npmjs.org/undici/-/undici-5.5.1.tgz"; 68001 + sha512 = "MEvryPLf18HvlCbLSzCW0U00IMftKGI5udnjrQbC5D4P0Hodwffhv+iGfWuJwg16Y/TK11ZFK8i+BPVW2z/eAw=="; 68038 68002 }; 68039 68003 }; 68040 68004 "unherit-1.1.3" = { ··· 69384 69348 version = "1.0.2"; 69385 69349 src = fetchurl { 69386 69350 url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; 69387 - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 69351 + sha512 = "EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="; 69388 69352 }; 69389 69353 }; 69390 69354 "util.promisify-1.0.0" = { ··· 69456 69420 version = "1.0.1"; 69457 69421 src = fetchurl { 69458 69422 url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; 69459 - sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; 69423 + sha512 = "pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="; 69460 69424 }; 69461 69425 }; 69462 69426 "utp-0.0.7" = { ··· 69465 69429 version = "0.0.7"; 69466 69430 src = fetchurl { 69467 69431 url = "https://registry.npmjs.org/utp/-/utp-0.0.7.tgz"; 69468 - sha1 = "ae43eb7745f5fe63dcc2f277cb4164ad27087f30"; 69432 + sha512 = "2ZLjisH0HQkpqZTg2m7TK0Yn7TETTg7DxM0EpCKIIIV2ky9w9nSxW5a7gzdk4nH2h+pomrrGw0uywrUJfsm2eA=="; 69469 69433 }; 69470 69434 }; 69471 69435 "utp-native-2.5.3" = { ··· 69654 69618 version = "1.0.9"; 69655 69619 src = fetchurl { 69656 69620 url = "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz"; 69657 - sha1 = "1c14479b40f1397a75782f115e4086447433a200"; 69621 + sha512 = "QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA=="; 69658 69622 }; 69659 69623 }; 69660 69624 "validate-glob-opts-1.0.2" = { ··· 69681 69645 version = "3.0.0"; 69682 69646 src = fetchurl { 69683 69647 url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz"; 69684 - sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e"; 69648 + sha512 = "M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw=="; 69685 69649 }; 69686 69650 }; 69687 69651 "validate-npm-package-name-4.0.0" = { ··· 69735 69699 version = "3.0.0"; 69736 69700 src = fetchurl { 69737 69701 url = "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz"; 69738 - sha1 = "1c243a50b595c1be54a754bfece8563b9ff8d813"; 69702 + sha512 = "jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg=="; 69739 69703 }; 69740 69704 }; 69741 69705 "value-or-promise-1.0.11" = { ··· 69762 69726 version = "1.1.0"; 69763 69727 src = fetchurl { 69764 69728 url = "https://registry.npmjs.org/variable-diff/-/variable-diff-1.1.0.tgz"; 69765 - sha1 = "d2bd5c66db76c13879d96e6a306edc989df978da"; 69729 + sha512 = "0Jk/MsCNtL/fCuVIbsLxwXpABGZCzN57btcPbSsjOOAwkdHJ3Y58fo8BoUfG7jghnvglbwo+5Hk1KOJ2W2Ormw=="; 69766 69730 }; 69767 69731 }; 69768 69732 "varint-4.0.1" = { ··· 69771 69735 version = "4.0.1"; 69772 69736 src = fetchurl { 69773 69737 url = "https://registry.npmjs.org/varint/-/varint-4.0.1.tgz"; 69774 - sha1 = "490829b942d248463b2b35097995c3bf737198e9"; 69738 + sha512 = "vu4cpCqZHA4u77jWdOZlXtXHJofIIyq51DtzstbrvI9e1I1ELseAJLxYr47N/DdLPFGfYMLY1HqAURSTKKJ6ww=="; 69775 69739 }; 69776 69740 }; 69777 69741 "varint-5.0.0" = { ··· 69780 69744 version = "5.0.0"; 69781 69745 src = fetchurl { 69782 69746 url = "https://registry.npmjs.org/varint/-/varint-5.0.0.tgz"; 69783 - sha1 = "d826b89f7490732fabc0c0ed693ed475dcb29ebf"; 69747 + sha512 = "gC13b/bWrqQoKY2EmROCZ+AR0jitc6DnDGaQ6Ls9QpKmuSgJB1eQ7H3KETtQm7qSdMWMKCmsshyCmUwMLh3OAA=="; 69784 69748 }; 69785 69749 }; 69786 69750 "varint-5.0.2" = { ··· 69807 69771 version = "1.1.2"; 69808 69772 src = fetchurl { 69809 69773 url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"; 69810 - sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; 69774 + sha512 = "BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="; 69811 69775 }; 69812 69776 }; 69813 69777 "vasync-1.4.3" = { ··· 69816 69780 version = "1.4.3"; 69817 69781 src = fetchurl { 69818 69782 url = "https://registry.npmjs.org/vasync/-/vasync-1.4.3.tgz"; 69819 - sha1 = "c86d52e2b71613d29eedf159f3135dbe749cee37"; 69783 + sha512 = "GHLh6i4OfvQgc3KeznwMtw45I+fTyYYCyD1fOngn9Q5wURmwKuX95C8VunSn267KAX8Pg200hkgZPgTwBwMLyQ=="; 69820 69784 }; 69821 69785 }; 69822 69786 "vasync-1.6.2" = { ··· 69825 69789 version = "1.6.2"; 69826 69790 src = fetchurl { 69827 69791 url = "https://registry.npmjs.org/vasync/-/vasync-1.6.2.tgz"; 69828 - sha1 = "568edcf40b2b5c35b1cc048cad085de4739703fb"; 69792 + sha512 = "wRXkN7O5REJ3vlYYb3DKD+yRrNdXG3LEsxUgZCJEz/uguoq26jzcqt+7cozBC8GSCAxj56YtHuualN5Rz+Hi3g=="; 69829 69793 }; 69830 69794 }; 69831 69795 "vasync-1.6.3" = { ··· 69834 69798 version = "1.6.3"; 69835 69799 src = fetchurl { 69836 69800 url = "https://registry.npmjs.org/vasync/-/vasync-1.6.3.tgz"; 69837 - sha1 = "4a69d7052a47f4ce85503d7641df1cbf40432a94"; 69801 + sha512 = "yeYyCFquU8aXjAZwKfgMpkwW1Wj9Ea/G/SG5dUTN07WNu8chJ4dAkYFXqOylIlpHNt/EobdQpiQNDNMzq1/EQw=="; 69838 69802 }; 69839 69803 }; 69840 69804 "vasync-1.6.4" = { ··· 69843 69807 version = "1.6.4"; 69844 69808 src = fetchurl { 69845 69809 url = "https://registry.npmjs.org/vasync/-/vasync-1.6.4.tgz"; 69846 - sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; 69810 + sha512 = "3oQMomVgQgHzNe5iKuT8PGOhMCQcg1wfh00Nh/Kl39ERdTlw/uNS7kbrhEraDMDKWHdDdc0iBFahPEd/Ft2b+A=="; 69847 69811 }; 69848 69812 }; 69849 69813 "vasync-2.2.1" = { ··· 70149 70113 version = "1.1.0"; 70150 70114 src = fetchurl { 70151 70115 url = "https://registry.npmjs.org/verror/-/verror-1.1.0.tgz"; 70152 - sha1 = "2a4b4eb14a207051e75a6f94ee51315bf173a1b0"; 70116 + sha512 = "5X/HjC1yBdrpYrQvjUC55HB1CuRPyk1b+Fz0Rpp60fhQR9aE4hcjnRwFfPNF7SNwoCb5fMrjGHr7Gla0zUerXA=="; 70153 70117 }; 70154 70118 }; 70155 70119 "verror-1.10.0" = { ··· 70158 70122 version = "1.10.0"; 70159 70123 src = fetchurl { 70160 70124 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; 70161 - sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 70125 + sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 70162 70126 }; 70163 70127 }; 70164 70128 "verror-1.10.1" = { ··· 70176 70140 version = "1.3.3"; 70177 70141 src = fetchurl { 70178 70142 url = "https://registry.npmjs.org/verror/-/verror-1.3.3.tgz"; 70179 - sha1 = "8a6a4ac3a8c774b6f687fece49bdffd78552e2cd"; 70143 + sha512 = "FRyhVjZX8Hy5Mlmvo4YbbN3V8KaagA6W6Xc3kNOtIQqd3DohGqQzqie1NDVfZbZuWZjCTF0E5PNUqQZ5BVqdew=="; 70180 70144 }; 70181 70145 }; 70182 70146 "verror-1.3.6" = { ··· 70185 70149 version = "1.3.6"; 70186 70150 src = fetchurl { 70187 70151 url = "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz"; 70188 - sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c"; 70152 + sha512 = "i8GFYwImt5D5B8CPpi2jrDTy/faq4OEW+NkOTLSKcIdPfdYJvWv3VZddDKl0ByvBe6cJ2s5Mm2XDtv5c2pj/Eg=="; 70189 70153 }; 70190 70154 }; 70191 70155 "verror-1.6.0" = { ··· 70194 70158 version = "1.6.0"; 70195 70159 src = fetchurl { 70196 70160 url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz"; 70197 - sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; 70161 + sha512 = "bIOaZx4+Bf6a7sIORfmYnyKLDLk/lhVym6rjYlq+vkitYKnhFmUpmPpDTCltWFrUTlGKs6sCeoDWfMA0oOOneA=="; 70198 70162 }; 70199 70163 }; 70200 70164 "vfile-1.4.0" = { ··· 70203 70167 version = "1.4.0"; 70204 70168 src = fetchurl { 70205 70169 url = "https://registry.npmjs.org/vfile/-/vfile-1.4.0.tgz"; 70206 - sha1 = "c0fd6fa484f8debdb771f68c31ed75d88da97fe7"; 70170 + sha512 = "7Fz639rwERslMqQCuf1/0H4Tqe2q484Xl6X/jsKqrP7IjFcDODFURhv0GekMnImpbj9pTOojtqL7r39LJJkjGA=="; 70207 70171 }; 70208 70172 }; 70209 70173 "vfile-3.0.1" = { ··· 70224 70188 sha512 = "O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA=="; 70225 70189 }; 70226 70190 }; 70227 - "vfile-5.3.3" = { 70191 + "vfile-5.3.4" = { 70228 70192 name = "vfile"; 70229 70193 packageName = "vfile"; 70230 - version = "5.3.3"; 70194 + version = "5.3.4"; 70231 70195 src = fetchurl { 70232 - url = "https://registry.npmjs.org/vfile/-/vfile-5.3.3.tgz"; 70233 - sha512 = "xwALvwUKmXzHOri5dGXqXNN8JDEvxPhf8avC+E+pJEl32e4/grLdRdsgx23HpK7QI0cwgR4+QfaM8D5KUnki3g=="; 70196 + url = "https://registry.npmjs.org/vfile/-/vfile-5.3.4.tgz"; 70197 + sha512 = "KI+7cnst03KbEyN1+JE504zF5bJBZa+J+CrevLeyIMq0aPU681I2rQ5p4PlnQ6exFtWiUrg26QUdFMnAKR6PIw=="; 70234 70198 }; 70235 70199 }; 70236 70200 "vfile-find-down-1.0.0" = { ··· 70239 70203 version = "1.0.0"; 70240 70204 src = fetchurl { 70241 70205 url = "https://registry.npmjs.org/vfile-find-down/-/vfile-find-down-1.0.0.tgz"; 70242 - sha1 = "84a4d66d03513f6140a84e0776ef0848d4f0ad95"; 70206 + sha512 = "AOXiJrVKizToYfRosXd1p9Fq8b0u0qchvSwVF1/ue3JE7o7KuQ/UH24bNAPLDUG/RIM1DZ6zWtDsiLShcma4WA=="; 70243 70207 }; 70244 70208 }; 70245 70209 "vfile-find-up-1.0.0" = { ··· 70248 70212 version = "1.0.0"; 70249 70213 src = fetchurl { 70250 70214 url = "https://registry.npmjs.org/vfile-find-up/-/vfile-find-up-1.0.0.tgz"; 70251 - sha1 = "5604da6fe453b34350637984eb5fe4909e280390"; 70215 + sha512 = "t97P/jQswvX0n//+RB74Wj43VOg3tel2InzaJYryaBewd4uN4pNXuoH/F00PkI3U1fBp+w/SIyrTjzIzPwDODg=="; 70252 70216 }; 70253 70217 }; 70254 70218 "vfile-find-up-5.0.1" = { ··· 70320 70284 version = "1.5.0"; 70321 70285 src = fetchurl { 70322 70286 url = "https://registry.npmjs.org/vfile-reporter/-/vfile-reporter-1.5.0.tgz"; 70323 - sha1 = "21a7009bfe55e24df8ff432aa5bf6f6efa74e418"; 70287 + sha512 = "VFF1LK0O8/nLmrPcc+5VMEnyP21BTzdVoq1rbxTaVt6cmSVk5MQs1POhkfY/cctndmZheNgirTcAMoiKj3aJYA=="; 70324 70288 }; 70325 70289 }; 70326 70290 "vfile-reporter-5.1.2" = { ··· 70365 70329 version = "1.0.0"; 70366 70330 src = fetchurl { 70367 70331 url = "https://registry.npmjs.org/vfile-sort/-/vfile-sort-1.0.0.tgz"; 70368 - sha1 = "17ee491ba43e8951bb22913fcff32a7dc4d234d4"; 70332 + sha512 = "6qIalNEKUt2YyVFzyJptdEo9sm/pMrSKvOJ35lH4us9YeW08zRs3E9VbdJ0O0n2Thxc1TWINP5QVhucy/YiGPA=="; 70369 70333 }; 70370 70334 }; 70371 70335 "vfile-sort-2.2.2" = { ··· 70437 70401 version = "0.5.3"; 70438 70402 src = fetchurl { 70439 70403 url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz"; 70440 - sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde"; 70404 + sha512 = "P5zdf3WB9uzr7IFoVQ2wZTmUwHL8cMZWJGzLBNCHNZ3NB6HTMsYABtt7z8tAGIINLXyAob9B9a1yzVGMFOYKEA=="; 70441 70405 }; 70442 70406 }; 70443 70407 "vinyl-2.2.1" = { ··· 70455 70419 version = "3.0.0"; 70456 70420 src = fetchurl { 70457 70421 url = "https://registry.npmjs.org/vinyl-file/-/vinyl-file-3.0.0.tgz"; 70458 - sha1 = "b104d9e4409ffa325faadd520642d0a3b488b365"; 70422 + sha512 = "BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg=="; 70459 70423 }; 70460 70424 }; 70461 70425 "vinyl-fs-3.0.3" = { ··· 70473 70437 version = "1.1.0"; 70474 70438 src = fetchurl { 70475 70439 url = "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz"; 70476 - sha1 = "92a800593a38703a8cdb11d8b300ad4be63b3e16"; 70440 + sha512 = "NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA=="; 70477 70441 }; 70478 70442 }; 70479 70443 "vizion-2.2.1" = { ··· 70545 70509 version = "2.0.1"; 70546 70510 src = fetchurl { 70547 70511 url = "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz"; 70548 - sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec"; 70512 + sha512 = "qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung=="; 70549 70513 }; 70550 70514 }; 70551 70515 "void-elements-3.1.0" = { ··· 70554 70518 version = "3.1.0"; 70555 70519 src = fetchurl { 70556 70520 url = "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz"; 70557 - sha1 = "614f7fbf8d801f0bb5f0661f5b2f5785750e4f09"; 70521 + sha512 = "Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w=="; 70558 70522 }; 70559 70523 }; 70560 70524 "vsce-1.88.0" = { ··· 70725 70689 version = "3.5.0"; 70726 70690 src = fetchurl { 70727 70691 url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.5.0.tgz"; 70728 - sha1 = "87239d9e166b2d7352245b8a813597804c1d63aa"; 70692 + sha512 = "LeE9LS1IOIRDZy5Xugrbk2tKeMa64vkRODrXPZbwyn2l/Q0e/jyYq8ze/Lo96sjOFiRe3HHbTVN39Ta8KN2RpA=="; 70729 70693 }; 70730 70694 }; 70731 70695 "vscode-jsonrpc-3.6.0" = { ··· 71103 71067 version = "3.5.0"; 71104 71068 src = fetchurl { 71105 71069 url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.5.0.tgz"; 71106 - sha1 = "e48d79962f0b8e02de955e3f524908e2b19c0374"; 71070 + sha512 = "D4rUfu/oKYdc9Tmec0nEfedj+uXO2tZHR+eoHs9rE9G/QpRyZaHuug8ZUNGTGdO+ALLGgenL6bRpY8y3J9acHg=="; 71107 71071 }; 71108 71072 }; 71109 71073 "vscode-nls-2.0.2" = { ··· 71112 71076 version = "2.0.2"; 71113 71077 src = fetchurl { 71114 71078 url = "https://registry.npmjs.org/vscode-nls/-/vscode-nls-2.0.2.tgz"; 71115 - sha1 = "808522380844b8ad153499af5c3b03921aea02da"; 71079 + sha512 = "xK4p7Wksahb1imTwJZeA7+OSobDlRkWYWBuz9eR6LyJRLLG4LBxvLvZF8GO1ZY1tUWHITjZn2BtA8nRufKdHSg=="; 71116 71080 }; 71117 71081 }; 71118 71082 "vscode-nls-3.2.5" = { ··· 71157 71121 version = "1.0.3"; 71158 71122 src = fetchurl { 71159 71123 url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.3.tgz"; 71160 - sha1 = "631bdbf716dccab0e65291a8dc25c23232085a52"; 71124 + sha512 = "UU2mUJfedXt88AuhOj8vSkyWYiusf+zVdaFTme1C6l4k3ja8teTYpRt7C6wToIq7Jnph1fGYYmsaLQuqI+B46g=="; 71161 71125 }; 71162 71126 }; 71163 71127 "vscode-uri-1.0.8" = { ··· 71193 71157 version = "0.1.0"; 71194 71158 src = fetchurl { 71195 71159 url = "https://registry.npmjs.org/vstream/-/vstream-0.1.0.tgz"; 71196 - sha1 = "13587190f34e72ba7a07ebbaa7e70ac147b1fb7d"; 71160 + sha512 = "WHV31NZp7EP0JHFPWzhuHuo4+MaHcrTyZZucsCW+wFuF3OQ3mJsOBSfJTqkG53ZN1jdjkfxitbOFLy8pNyKyDA=="; 71197 71161 }; 71198 71162 }; 71199 71163 "vt-pbf-3.1.3" = { ··· 71382 71346 version = "1.0.3"; 71383 71347 src = fetchurl { 71384 71348 url = "https://registry.npmjs.org/vuvuzela/-/vuvuzela-1.0.3.tgz"; 71385 - sha1 = "3be145e58271c73ca55279dd851f12a682114b0b"; 71349 + sha512 = "Tm7jR1xTzBbPW+6y1tknKiEhz04Wf/1iZkcTJjSFcpNko43+dFW6+OOeQe9taJIug3NdfUAjFKgUSyQrIKaDvQ=="; 71386 71350 }; 71387 71351 }; 71388 71352 "w3c-hr-time-1.0.2" = { ··· 71454 71418 version = "1.3.0"; 71455 71419 src = fetchurl { 71456 71420 url = "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz"; 71457 - sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4"; 71421 + sha512 = "Y2HUDMktriUm+SR2gZWxlrszcgtXExlhQYZ8QJNYbl22jum00KIUcHJ/h/sdAXhWTJcbSkiMYN9Z2tWbWYSrrw=="; 71458 71422 }; 71459 71423 }; 71460 71424 "warning-4.0.3" = { ··· 71508 71472 version = "0.3.4"; 71509 71473 src = fetchurl { 71510 71474 url = "https://registry.npmjs.org/watershed/-/watershed-0.3.4.tgz"; 71511 - sha1 = "79331f666366b3b1c6ab02ceb04bad8dd2eebb0c"; 71475 + sha512 = "/lRBpLn2TvEwrIW5i35ZCpb+SIq4VWq4c1yxN311we+E4eXRW7EB5nybrv4fJEuBmgqyqVkT2gtQ6Zqu+u66mA=="; 71512 71476 }; 71513 71477 }; 71514 71478 "wavedrom-2.9.1" = { ··· 71544 71508 version = "1.0.1"; 71545 71509 src = fetchurl { 71546 71510 url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"; 71547 - sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"; 71511 + sha512 = "XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg=="; 71548 71512 }; 71549 71513 }; 71550 71514 "weak-lru-cache-1.2.2" = { ··· 71562 71526 version = "0.1.1"; 71563 71527 src = fetchurl { 71564 71528 url = "https://registry.npmjs.org/weasel-words/-/weasel-words-0.1.1.tgz"; 71565 - sha1 = "7137946585c73fe44882013853bd000c5d687a4e"; 71529 + sha512 = "rWkTAGqs4TN6qreS06+irmFUMrQVx5KoFjD8CxMHUsAwmxw/upDcfleaEYOLsonUbornahg+VJ9xrWxp4udyJA=="; 71566 71530 }; 71567 71531 }; 71568 71532 "web-encoding-1.1.5" = { ··· 71679 71643 version = "2.0.1"; 71680 71644 src = fetchurl { 71681 71645 url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-2.0.1.tgz"; 71682 - sha1 = "3bf8258f7d318c7443c36f2e169402a1a6703506"; 71646 + sha512 = "OZ7I/f0sM+T28T2/OXinNGfmvjm3KKptdyQy8NPRZyLfYBn+9vt72Bfr+uQaE9OvWyxJjQ5kHFygH2wOTUb76g=="; 71683 71647 }; 71684 71648 }; 71685 71649 "webidl-conversions-3.0.1" = { ··· 71688 71652 version = "3.0.1"; 71689 71653 src = fetchurl { 71690 71654 url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"; 71691 - sha1 = "24534275e2a7bc6be7bc86611cc16ae0a5654871"; 71655 + sha512 = "2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="; 71692 71656 }; 71693 71657 }; 71694 71658 "webidl-conversions-4.0.2" = { ··· 71790 71754 sha512 = "7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA=="; 71791 71755 }; 71792 71756 }; 71793 - "webpack-cli-4.9.2" = { 71757 + "webpack-cli-4.10.0" = { 71794 71758 name = "webpack-cli"; 71795 71759 packageName = "webpack-cli"; 71796 - version = "4.9.2"; 71760 + version = "4.10.0"; 71797 71761 src = fetchurl { 71798 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz"; 71799 - sha512 = "m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ=="; 71762 + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz"; 71763 + sha512 = "NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w=="; 71800 71764 }; 71801 71765 }; 71802 71766 "webpack-dev-middleware-3.7.3" = { ··· 71931 71895 version = "0.6.5"; 71932 71896 src = fetchurl { 71933 71897 url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz"; 71934 - sha1 = "5cb2556ceb85f4373c6d8238aa691c8454e13a36"; 71898 + sha512 = "oBx6ZM1Gs5q2jwZuSN/Qxyy/fbgomV8+vqsmipaPKB/74hjHlKuM07jNmRhn4qa2AdUwsgxrltq+gaPsHgcl0Q=="; 71935 71899 }; 71936 71900 }; 71937 71901 "websocket-driver-0.7.4" = { ··· 72048 72012 version = "5.0.0"; 72049 72013 src = fetchurl { 72050 72014 url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"; 72051 - sha1 = "966454e8765462e37644d3626f6742ce8b70965d"; 72015 + sha512 = "saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="; 72052 72016 }; 72053 72017 }; 72054 72018 "whatwg-url-7.1.0" = { ··· 72075 72039 version = "0.6.5"; 72076 72040 src = fetchurl { 72077 72041 url = "https://registry.npmjs.org/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz"; 72078 - sha1 = "00898111af689bb097541cd5a45ca6c8798445bf"; 72042 + sha512 = "vbg5+JVNwGtHRI3GheZGWrcUlxF9BXHbA80dLa+2XqJjlV/BK6upoi2j8dIRW9FGPUUyaMm7Hf1pTexHnsk85g=="; 72079 72043 }; 72080 72044 }; 72081 72045 "when-3.7.7" = { ··· 72084 72048 version = "3.7.7"; 72085 72049 src = fetchurl { 72086 72050 url = "https://registry.npmjs.org/when/-/when-3.7.7.tgz"; 72087 - sha1 = "aba03fc3bb736d6c88b091d013d8a8e590d84718"; 72051 + sha512 = "9lFZp/KHoqH6bPKjbWqa+3Dg/K/r2v0X/3/G2x4DBGchVS2QX2VXL3cZV994WQVnTM1/PD71Az25nAzryEUugw=="; 72088 72052 }; 72089 72053 }; 72090 72054 "whet.extend-0.9.9" = { ··· 72093 72057 version = "0.9.9"; 72094 72058 src = fetchurl { 72095 72059 url = "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz"; 72096 - sha1 = "f877d5bf648c97e5aa542fadc16d6a259b9c11a1"; 72060 + sha512 = "mmIPAft2vTgEILgPeZFqE/wWh24SEsR/k+N9fJ3Jxrz44iDFy9aemCxdksfURSHYFCLmvs/d/7Iso5XjPpNfrA=="; 72097 72061 }; 72098 72062 }; 72099 72063 "which-1.2.4" = { ··· 72102 72066 version = "1.2.4"; 72103 72067 src = fetchurl { 72104 72068 url = "https://registry.npmjs.org/which/-/which-1.2.4.tgz"; 72105 - sha1 = "1557f96080604e5b11b3599eb9f45b50a9efd722"; 72069 + sha512 = "zDRAqDSBudazdfM9zpiI30Fu9ve47htYXcGi3ln0wfKu2a7SmrT6F3VDoYONu//48V8Vz4TdCRNPjtvyRO3yBA=="; 72106 72070 }; 72107 72071 }; 72108 72072 "which-1.3.1" = { ··· 72147 72111 version = "1.0.0"; 72148 72112 src = fetchurl { 72149 72113 url = "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz"; 72150 - sha1 = "bba63ca861948994ff307736089e3b96026c2a4f"; 72114 + sha512 = "F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ=="; 72151 72115 }; 72152 72116 }; 72153 72117 "which-module-2.0.0" = { ··· 72156 72120 version = "2.0.0"; 72157 72121 src = fetchurl { 72158 72122 url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; 72159 - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; 72123 + sha512 = "B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q=="; 72160 72124 }; 72161 72125 }; 72162 72126 "which-pm-2.0.0" = { ··· 72210 72174 version = "1.0.0"; 72211 72175 src = fetchurl { 72212 72176 url = "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz"; 72213 - sha1 = "0c09c85c2a94683d0d7eaf8ee097d564bf0e105c"; 72177 + sha512 = "r5vvGtqsHUHn98V0jURY4Ts86xJf6+SzK9rpWdV8/73nURB3WFPIHd67aOvPw2fSuunIyHjAUqiJ2TY0x4E5gw=="; 72214 72178 }; 72215 72179 }; 72216 72180 "widest-line-2.0.1" = { ··· 72237 72201 version = "2.0.6"; 72238 72202 src = fetchurl { 72239 72203 url = "https://registry.npmjs.org/wif/-/wif-2.0.6.tgz"; 72240 - sha1 = "08d3f52056c66679299726fade0d432ae74b4704"; 72204 + sha512 = "HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ=="; 72241 72205 }; 72242 72206 }; 72243 72207 "wikimedia-kad-fork-1.3.6" = { ··· 72282 72246 version = "1.0.2"; 72283 72247 src = fetchurl { 72284 72248 url = "https://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.2.tgz"; 72285 - sha1 = "f45f10d141086c5d94ae14c03b2098440a7e71b0"; 72249 + sha512 = "tmRmirrEutoOzN44OsAO9So8X/JpMrHtzxYHfcpSNTCIAf1VVcUdYvPPZY+J0hqRUnvlAr8xNYzDqTlVP8HCug=="; 72286 72250 }; 72287 72251 }; 72288 72252 "window-size-0.1.0" = { ··· 72291 72255 version = "0.1.0"; 72292 72256 src = fetchurl { 72293 72257 url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz"; 72294 - sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; 72258 + sha512 = "1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg=="; 72295 72259 }; 72296 72260 }; 72297 72261 "window-size-0.1.4" = { ··· 72300 72264 version = "0.1.4"; 72301 72265 src = fetchurl { 72302 72266 url = "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz"; 72303 - sha1 = "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876"; 72267 + sha512 = "2thx4pB0cV3h+Bw7QmMXcEbdmOzv9t0HFplJH/Lz6yu60hXYy5RT8rUu+wlIreVxWsGN20mo+MHeCSfUpQBwPw=="; 72304 72268 }; 72305 72269 }; 72306 72270 "window-size-0.2.0" = { ··· 72309 72273 version = "0.2.0"; 72310 72274 src = fetchurl { 72311 72275 url = "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz"; 72312 - sha1 = "b4315bb4214a3d7058ebeee892e13fa24d98b075"; 72276 + sha512 = "UD7d8HFA2+PZsbKyaOCEy8gMh1oDtHgJh1LfgjQ4zVXmYjAT/kvz3PueITKuqDiIXQe7yzpPnxX3lNc+AhQMyw=="; 72313 72277 }; 72314 72278 }; 72315 72279 "window-size-1.1.1" = { ··· 72327 72291 version = "0.0.6"; 72328 72292 src = fetchurl { 72329 72293 url = "https://registry.npmjs.org/windows-no-runnable/-/windows-no-runnable-0.0.6.tgz"; 72330 - sha1 = "91e5129088330a0fe248520cee12d1ad6bb4ddfb"; 72294 + sha512 = "THEnZzMKBYonb45BEffK8eE5fA4LaSw3Cog/pvwjdKP8kqOZov8Fqr1RZZuSn15dyd5rHMLA0+s8q7NsPypspQ=="; 72331 72295 }; 72332 72296 }; 72333 72297 "windows-release-3.3.3" = { ··· 72354 72318 version = "0.0.12"; 72355 72319 src = fetchurl { 72356 72320 url = "https://registry.npmjs.org/winreg/-/winreg-0.0.12.tgz"; 72357 - sha1 = "07105554ba1a9d08979251d129475bffae3006b7"; 72321 + sha512 = "typ/+JRmi7RqP1NanzFULK36vczznSNN8kWVA9vIqXyv8GhghUlwhGp1Xj3Nms1FsPcNnsQrJOR10N58/nQ9hQ=="; 72358 72322 }; 72359 72323 }; 72360 72324 "winreg-1.2.4" = { ··· 72363 72327 version = "1.2.4"; 72364 72328 src = fetchurl { 72365 72329 url = "https://registry.npmjs.org/winreg/-/winreg-1.2.4.tgz"; 72366 - sha1 = "ba065629b7a925130e15779108cf540990e98d1b"; 72330 + sha512 = "IHpzORub7kYlb8A43Iig3reOvlcBJGX9gZ0WycHhghHtA65X0LYnMRuJs+aH1abVnMJztQkvQNlltnbPi5aGIA=="; 72367 72331 }; 72368 72332 }; 72369 72333 "winston-0.6.2" = { ··· 72372 72336 version = "0.6.2"; 72373 72337 src = fetchurl { 72374 72338 url = "https://registry.npmjs.org/winston/-/winston-0.6.2.tgz"; 72375 - sha1 = "4144fe2586cdc19a612bf8c035590132c9064bd2"; 72339 + sha512 = "BzHNq8X415XGFkGPT+ACKTj95ghSAbR4eThAtKg4OC4PYVn5FLIdTETYUv76f4QxUcG1ps6yqnbO1K/81hGIzQ=="; 72376 72340 }; 72377 72341 }; 72378 72342 "winston-0.8.0" = { ··· 72381 72345 version = "0.8.0"; 72382 72346 src = fetchurl { 72383 72347 url = "https://registry.npmjs.org/winston/-/winston-0.8.0.tgz"; 72384 - sha1 = "61d0830fa699706212206b0a2b5ca69a93043668"; 72348 + sha512 = "BoFzn3FEOWlq+1rDbDrbD093E3IRqukS8DYiqtY4vblIFR+5MSGUstAU228MGJa0vodiqm/iU2c8OGw6Iorx1g=="; 72385 72349 }; 72386 72350 }; 72387 72351 "winston-0.8.3" = { ··· 72390 72354 version = "0.8.3"; 72391 72355 src = fetchurl { 72392 72356 url = "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz"; 72393 - sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0"; 72357 + sha512 = "fPoamsHq8leJ62D1M9V/f15mjQ1UHe4+7j1wpAT3fqgA5JqhJkk4aIfPEjfMTI9x6ZTjaLOpMAjluLtmgO5b6g=="; 72394 72358 }; 72395 72359 }; 72396 72360 "winston-1.0.2" = { ··· 72399 72363 version = "1.0.2"; 72400 72364 src = fetchurl { 72401 72365 url = "https://registry.npmjs.org/winston/-/winston-1.0.2.tgz"; 72402 - sha1 = "351c58e2323f8a4ca29a45195aa9aa3b4c35d76f"; 72366 + sha512 = "BLxJH3KCgJ2paj2xKYTQLpxdKr9URPDDDLJnRVcbud7izT+m8Xzt5Rod6mnNgEcfT0fRvhEy2Cj3cEnnQpa6qA=="; 72403 72367 }; 72404 72368 }; 72405 72369 "winston-2.1.1" = { ··· 72408 72372 version = "2.1.1"; 72409 72373 src = fetchurl { 72410 72374 url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz"; 72411 - sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e"; 72375 + sha512 = "CPXrr+LD3DBeCEAnhPYS7DYbdq8kwhnkrVY7Px0vEROil9iZWaz0VHZHg41pNcUJc+1/PDm2obR1Lb2QGto1ZQ=="; 72412 72376 }; 72413 72377 }; 72414 72378 "winston-2.4.5" = { ··· 72480 72444 version = "5.1.1"; 72481 72445 src = fetchurl { 72482 72446 url = "https://registry.npmjs.org/with/-/with-5.1.1.tgz"; 72483 - sha1 = "fa4daa92daf32c4ea94ed453c81f04686b575dfe"; 72447 + sha512 = "uAnSsFGfSpF6DNhBXStvlZILfHJfJu4eUkfbRGk94kGO1Ta7bg6FwfvoOhhyHAJuFbCw+0xk4uJ3u57jLvlCJg=="; 72484 72448 }; 72485 72449 }; 72486 72450 "with-7.0.2" = { ··· 72516 72480 version = "0.0.2"; 72517 72481 src = fetchurl { 72518 72482 url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz"; 72519 - sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; 72483 + sha512 = "xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q=="; 72520 72484 }; 72521 72485 }; 72522 72486 "wordwrap-0.0.3" = { ··· 72525 72489 version = "0.0.3"; 72526 72490 src = fetchurl { 72527 72491 url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz"; 72528 - sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107"; 72492 + sha512 = "1tMA907+V4QmxV7dbRvb4/8MaRALK6q9Abid3ndMYnbyo8piisCmeONVqVSXqQA3KaP4SLt5b7ud6E2sqP8TFw=="; 72529 72493 }; 72530 72494 }; 72531 72495 "wordwrap-1.0.0" = { ··· 72534 72498 version = "1.0.0"; 72535 72499 src = fetchurl { 72536 72500 url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"; 72537 - sha1 = "27584810891456a4171c8d0226441ade90cbcaeb"; 72501 + sha512 = "gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q=="; 72538 72502 }; 72539 72503 }; 72540 72504 "wordwrapjs-3.0.0" = { ··· 72588 72552 version = "2.1.0"; 72589 72553 src = fetchurl { 72590 72554 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; 72591 - sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; 72555 + sha512 = "vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw=="; 72592 72556 }; 72593 72557 }; 72594 72558 "wrap-ansi-3.0.1" = { ··· 72597 72561 version = "3.0.1"; 72598 72562 src = fetchurl { 72599 72563 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz"; 72600 - sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba"; 72564 + sha512 = "iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ=="; 72601 72565 }; 72602 72566 }; 72603 72567 "wrap-ansi-4.0.0" = { ··· 72651 72615 version = "0.1.5"; 72652 72616 src = fetchurl { 72653 72617 url = "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz"; 72654 - sha1 = "f21b6e41016ff4a7e31720dbc63a09016bdf9845"; 72618 + sha512 = "xDLdGx0M8JQw9QDAC9s5NUxtg9MI09F6Vbxa2LYoSoCvzJnx2n81YMIfykmXEGsUvuLaxnblJTzhSOjUOX37ag=="; 72655 72619 }; 72656 72620 }; 72657 72621 "wrapped-1.0.1" = { ··· 72660 72624 version = "1.0.1"; 72661 72625 src = fetchurl { 72662 72626 url = "https://registry.npmjs.org/wrapped/-/wrapped-1.0.1.tgz"; 72663 - sha1 = "c783d9d807b273e9b01e851680a938c87c907242"; 72627 + sha512 = "ZTKuqiTu3WXtL72UKCCnQLRax2IScKH7oQ+mvjbpvNE+NJxIWIemDqqM2GxNr4N16NCjOYpIgpin5pStM7kM5g=="; 72664 72628 }; 72665 72629 }; 72666 72630 "wrappy-1.0.2" = { ··· 72669 72633 version = "1.0.2"; 72670 72634 src = fetchurl { 72671 72635 url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; 72672 - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 72636 + sha512 = "l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="; 72673 72637 }; 72674 72638 }; 72675 72639 "write-0.2.1" = { ··· 72678 72642 version = "0.2.1"; 72679 72643 src = fetchurl { 72680 72644 url = "https://registry.npmjs.org/write/-/write-0.2.1.tgz"; 72681 - sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757"; 72645 + sha512 = "CJ17OoULEKXpA5pef3qLj5AxTJ6mSt7g84he2WIskKwqFO4T97d5V7Tadl0DYDk7qyUOQD5WlUlOMChaYrhxeA=="; 72682 72646 }; 72683 72647 }; 72684 72648 "write-1.0.3" = { ··· 72696 72660 version = "1.3.4"; 72697 72661 src = fetchurl { 72698 72662 url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz"; 72699 - sha1 = "f807a4f0b1d9e913ae7a48112e6cc3af1991b45f"; 72663 + sha512 = "SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw=="; 72700 72664 }; 72701 72665 }; 72702 72666 "write-file-atomic-2.4.3" = { ··· 72768 72732 version = "0.4.31"; 72769 72733 src = fetchurl { 72770 72734 url = "https://registry.npmjs.org/ws/-/ws-0.4.31.tgz"; 72771 - sha1 = "5a4849e7a9ccd1ed5a81aeb4847c9fedf3122927"; 72735 + sha512 = "mWiVQ9qZGPXvLxQ4xGy58Ix5Bw0L99SB+hDT8L59bty4fbnQczaGl4YEWR7AzLQGbvPn/30r9/o41dPiSuUmYw=="; 72772 72736 }; 72773 72737 }; 72774 72738 "ws-1.1.5" = { ··· 72786 72750 version = "2.3.1"; 72787 72751 src = fetchurl { 72788 72752 url = "https://registry.npmjs.org/ws/-/ws-2.3.1.tgz"; 72789 - sha1 = "6b94b3e447cb6a363f785eaf94af6359e8e81c80"; 72753 + sha512 = "61a+9LgtYZxTq1hAonhX8Xwpo2riK4IOR/BIVxioFbCfc3QFKmpE4x9dLExfLHKtUfVZigYa36tThVhO57erEw=="; 72790 72754 }; 72791 72755 }; 72792 72756 "ws-3.3.3" = { ··· 72930 72894 version = "0.3.1"; 72931 72895 src = fetchurl { 72932 72896 url = "https://registry.npmjs.org/x-default-browser/-/x-default-browser-0.3.1.tgz"; 72933 - sha1 = "7f6194154fd1786cf261e68b5488c47127a04977"; 72897 + sha512 = "oIUX3Ck1NqMOHLOT46cZG+CuYN30BNR1QyVYWmcGWKrkSo91ftWSg8P2IIU9Hf7n7StYerI+BzGbKLsnLalwuQ=="; 72934 72898 }; 72935 72899 }; 72936 72900 "x-is-array-0.1.0" = { ··· 72939 72903 version = "0.1.0"; 72940 72904 src = fetchurl { 72941 72905 url = "https://registry.npmjs.org/x-is-array/-/x-is-array-0.1.0.tgz"; 72942 - sha1 = "de520171d47b3f416f5587d629b89d26b12dc29d"; 72906 + sha512 = "goHPif61oNrr0jJgsXRfc8oqtYzvfiMJpTqwE7Z4y9uH+T3UozkGqQ4d2nX9mB9khvA8U2o/UbPOFjgC7hLWIA=="; 72943 72907 }; 72944 72908 }; 72945 72909 "x-is-string-0.1.0" = { ··· 72948 72912 version = "0.1.0"; 72949 72913 src = fetchurl { 72950 72914 url = "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz"; 72951 - sha1 = "474b50865af3a49a9c4657f05acd145458f77d82"; 72915 + sha512 = "GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w=="; 72952 72916 }; 72953 72917 }; 72954 72918 "x256-0.0.2" = { ··· 72957 72921 version = "0.0.2"; 72958 72922 src = fetchurl { 72959 72923 url = "https://registry.npmjs.org/x256/-/x256-0.0.2.tgz"; 72960 - sha1 = "c9af18876f7a175801d564fe70ad9e8317784934"; 72924 + sha512 = "ZsIH+sheoF8YG9YG+QKEEIdtqpHRA9FYuD7MqhfyB1kayXU43RUNBFSxBEnF8ywSUxdg+8no4+bPr5qLbyxKgA=="; 72961 72925 }; 72962 72926 }; 72963 72927 "xcase-2.0.1" = { ··· 72966 72930 version = "2.0.1"; 72967 72931 src = fetchurl { 72968 72932 url = "https://registry.npmjs.org/xcase/-/xcase-2.0.1.tgz"; 72969 - sha1 = "c7fa72caa0f440db78fd5673432038ac984450b9"; 72933 + sha512 = "UmFXIPU+9Eg3E9m/728Bii0lAIuoc+6nbrNUKaRPJOFp91ih44qqGlWtxMB6kXFrRD6po+86ksHM5XHCfk6iPw=="; 72970 72934 }; 72971 72935 }; 72972 72936 "xcode-3.0.1" = { ··· 72984 72948 version = "2.0.0"; 72985 72949 src = fetchurl { 72986 72950 url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz"; 72987 - sha1 = "edbc903cc385fc04523d966a335504b5504d1bd2"; 72951 + sha512 = "NF1pPn594TaRSUO/HARoB4jK8I+rWgcpVlpQCK6/6o5PHyLUt2CSiDrpUZbQ6rROck+W2EwF8mBJcTs+W98J9w=="; 72988 72952 }; 72989 72953 }; 72990 72954 "xdg-basedir-3.0.0" = { ··· 72993 72957 version = "3.0.0"; 72994 72958 src = fetchurl { 72995 72959 url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz"; 72996 - sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4"; 72960 + sha512 = "1Dly4xqlulvPD3fZUQJLY+FUIeqN3N2MM3uqe4rCJftAvOjFa3jFGfctOgluGx4ahPbUCsZkmJILiP0Vi4T6lQ=="; 72997 72961 }; 72998 72962 }; 72999 72963 "xdg-basedir-4.0.0" = { ··· 73029 72993 version = "0.5.1"; 73030 72994 src = fetchurl { 73031 72995 url = "https://registry.npmjs.org/xenvar/-/xenvar-0.5.1.tgz"; 73032 - sha1 = "f82d2fedee63af76687b70115ce6274dc71310e9"; 72996 + sha512 = "6f9NN4sqsq4Zu1/fFQQysuYKymdCor3fhyyhjxk6it6LXlP4vocjyFtFP5YAH8MeLI4Aozwfosrx1NsdmKy+DQ=="; 73033 72997 }; 73034 72998 }; 73035 72999 "xhr-2.6.0" = { ··· 73047 73011 version = "1.0.1"; 73048 73012 src = fetchurl { 73049 73013 url = "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz"; 73050 - sha1 = "78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"; 73014 + sha512 = "huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw=="; 73051 73015 }; 73052 73016 }; 73053 73017 "xml-crypto-0.8.5" = { ··· 73056 73020 version = "0.8.5"; 73057 73021 src = fetchurl { 73058 73022 url = "https://registry.npmjs.org/xml-crypto/-/xml-crypto-0.8.5.tgz"; 73059 - sha1 = "2bbcfb3eb33f3a82a218b822bf672b6b1c20e538"; 73023 + sha512 = "bmO0+G7iSf8dldIehyokvLps0ZZpGMe3gQNa+MPOrdBZbpzUG/Ass4njwWmPKCtR4pN+N921uH4M+Uskc7g/IA=="; 73060 73024 }; 73061 73025 }; 73062 73026 "xml-encryption-0.7.4" = { ··· 73065 73029 version = "0.7.4"; 73066 73030 src = fetchurl { 73067 73031 url = "https://registry.npmjs.org/xml-encryption/-/xml-encryption-0.7.4.tgz"; 73068 - sha1 = "42791ec64d556d2455dcb9da0a54123665ac65c7"; 73032 + sha512 = "gwwKa9TwNT8S4dimixE+k4wsOOxK6Rt7ctxGRtuZyT7bWPvJwMTbYLLDKu7WG19vKwDMqMqGkVjbLQquKDY7pw=="; 73069 73033 }; 73070 73034 }; 73071 73035 "xml-escape-1.1.0" = { ··· 73074 73038 version = "1.1.0"; 73075 73039 src = fetchurl { 73076 73040 url = "https://registry.npmjs.org/xml-escape/-/xml-escape-1.1.0.tgz"; 73077 - sha1 = "3904c143fa8eb3a0030ec646d2902a2f1b706c44"; 73041 + sha512 = "B/T4sDK8Z6aUh/qNr7mjKAwwncIljFuUP+DO/D5hloYFj+90O88z8Wf7oSucZTHxBAsC1/CTP4rtx/x1Uf72Mg=="; 73078 73042 }; 73079 73043 }; 73080 73044 "xml-js-1.6.11" = { ··· 73092 73056 version = "2.0.1"; 73093 73057 src = fetchurl { 73094 73058 url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz"; 73095 - sha1 = "4d8b8f1eccd3419aa362061becef515e1e559635"; 73059 + sha512 = "jRKe/iQYMyVJpzPH+3HL97Lgu5HrCfii+qSo+TfjKHtOnvbnvdVfMYrn9Q34YV81M2e5sviJlI6Ko9y+nByzvA=="; 73096 73060 }; 73097 73061 }; 73098 73062 "xml-name-validator-3.0.0" = { ··· 73119 73083 version = "1.0.1"; 73120 73084 src = fetchurl { 73121 73085 url = "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz"; 73122 - sha1 = "a9029e929d3dbcded169f3c6e28238d95a5d5a28"; 73086 + sha512 = "ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g=="; 73123 73087 }; 73124 73088 }; 73125 73089 "xml2js-0.2.4" = { ··· 73128 73092 version = "0.2.4"; 73129 73093 src = fetchurl { 73130 73094 url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.4.tgz"; 73131 - sha1 = "9a5b577fa1e6cdf8923d5e1372f7a3188436e44d"; 73095 + sha512 = "pvB3Cyt544R+GPIOuICuRkeW8J5w/D33c80t0i25Q7Y2agbKY3LM6W7b5ZE14C2wPDWtKWf2j7tbKrP6/6oPNQ=="; 73132 73096 }; 73133 73097 }; 73134 73098 "xml2js-0.2.8" = { ··· 73137 73101 version = "0.2.8"; 73138 73102 src = fetchurl { 73139 73103 url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.8.tgz"; 73140 - sha1 = "9b81690931631ff09d1957549faf54f4f980b3c2"; 73104 + sha512 = "ZHZBIAO55GHCn2jBYByVPHvHS+o3j8/a/qmpEe6kxO3cTnTCWC3Htq9RYJ5G4XMwMMClD2QkXA9SNdPadLyn3Q=="; 73141 73105 }; 73142 73106 }; 73143 73107 "xml2js-0.4.19" = { ··· 73164 73128 version = "0.0.5"; 73165 73129 src = fetchurl { 73166 73130 url = "https://registry.npmjs.org/xml2tss/-/xml2tss-0.0.5.tgz"; 73167 - sha1 = "d76a310d6b8a7ba9e4825bb3d43f5427e9fe8f6e"; 73131 + sha512 = "TOhoxozyWBTpRtNf5aS4lRbFJ/VdC/YuiOUJOJFYheifww9Wvt29MiO7Dpo09LYXxaTYHhiBVNA5S7ZVnwYDaw=="; 73168 73132 }; 73169 73133 }; 73170 73134 "xmlbuilder-0.4.2" = { ··· 73173 73137 version = "0.4.2"; 73174 73138 src = fetchurl { 73175 73139 url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.2.tgz"; 73176 - sha1 = "1776d65f3fdbad470a08d8604cdeb1c4e540ff83"; 73140 + sha512 = "h/+ncQQSU/iYycmI2wTN25t7RYN7O2oq9uvI+2+UObi4KcmQh/jUS4N31g5vJttQt7MODsnmBtbcll3YbNyvfw=="; 73177 73141 }; 73178 73142 }; 73179 73143 "xmlbuilder-0.4.3" = { ··· 73182 73146 version = "0.4.3"; 73183 73147 src = fetchurl { 73184 73148 url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.3.tgz"; 73185 - sha1 = "c4614ba74e0ad196e609c9272cd9e1ddb28a8a58"; 73149 + sha512 = "t3QW+VdXvxcy214Wf5Mvb+38RPW6EUG1RpMjjtG+esbAFh+/50PdXz1iGywefNl70DW2ucNWTXBw5buTgzDWyw=="; 73186 73150 }; 73187 73151 }; 73188 73152 "xmlbuilder-11.0.1" = { ··· 73218 73182 version = "2.5.2"; 73219 73183 src = fetchurl { 73220 73184 url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-2.5.2.tgz"; 73221 - sha1 = "5ab88fc508ab2ff14873010b56163d3f92b19325"; 73185 + sha512 = "KjolMh3rfQaytYw7jMYzYUbfdcW3bV3Jm4QEws72e7fo/MuEMLImppWh4Zn2QqNhEKbKW8yOwfDlVO3+lUEspA=="; 73222 73186 }; 73223 73187 }; 73224 73188 "xmlbuilder-4.0.0" = { ··· 73227 73191 version = "4.0.0"; 73228 73192 src = fetchurl { 73229 73193 url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz"; 73230 - sha1 = "98b8f651ca30aa624036f127d11cc66dc7b907a3"; 73194 + sha512 = "wrG9gc6hCFDd5STt+6fsjP2aGSkjkNSewH+1K6s0KVOd94vXAUyTwlxWVnMFVtLdMf+q0QRZN1z9hTOKgoEdMg=="; 73231 73195 }; 73232 73196 }; 73233 73197 "xmlbuilder-9.0.7" = { ··· 73236 73200 version = "9.0.7"; 73237 73201 src = fetchurl { 73238 73202 url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz"; 73239 - sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d"; 73203 + sha512 = "7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ=="; 73240 73204 }; 73241 73205 }; 73242 73206 "xmlchars-2.2.0" = { ··· 73263 73227 version = "0.1.19"; 73264 73228 src = fetchurl { 73265 73229 url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz"; 73266 - sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc"; 73230 + sha512 = "pDyxjQSFQgNHkU+yjvoF+GXVGJU7e9EnOg/KcGMDihBIKjTsOeDYaECwC/O9bsUWKY+Sd9izfE43JXC46EOHKA=="; 73267 73231 }; 73268 73232 }; 73269 73233 "xmldom-0.1.31" = { ··· 73300 73264 version = "1.5.5"; 73301 73265 src = fetchurl { 73302 73266 url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz"; 73303 - sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e"; 73267 + sha512 = "/bFPLUgJrfGUL10AIv4Y7/CUt6so9CLtB/oFxQSHseSDNNCdC6vwwKEqwLN6wNPBg9YWXAiMu8jkf6RPRS/75Q=="; 73304 73268 }; 73305 73269 }; 73306 73270 "xmlhttprequest-ssl-1.6.3" = { ··· 73345 73309 version = "0.0.23"; 73346 73310 src = fetchurl { 73347 73311 url = "https://registry.npmjs.org/xpath/-/xpath-0.0.23.tgz"; 73348 - sha1 = "f5e8fdc6bdc7e72885b3234f40cba2669580aafa"; 73312 + sha512 = "WHBD7+PebdFl+vGmhl/TnFLHDCTytivkerph52SF+2IUtil+lbOEK0BHHAoL+z4JOHIaF5R7Dh9VgrpnzVOFRA=="; 73349 73313 }; 73350 73314 }; 73351 73315 "xpath-0.0.32" = { ··· 73363 73327 version = "0.0.5"; 73364 73328 src = fetchurl { 73365 73329 url = "https://registry.npmjs.org/xpath/-/xpath-0.0.5.tgz"; 73366 - sha1 = "454036f6ef0f3df5af5d4ba4a119fb75674b3e6c"; 73330 + sha512 = "Y1Oyy8lyIDwWpmKIWBF0RZrQOP1fzE12G0ekSB1yzKPtbAdCI5sBCqBU/CAZUkKk81OXuq9tul/5lyNS+22iKg=="; 73367 73331 }; 73368 73332 }; 73369 73333 "xpath.js-1.1.0" = { ··· 73381 73345 version = "2.0.0"; 73382 73346 src = fetchurl { 73383 73347 url = "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz"; 73384 - sha1 = "52a63e56ca0b84a7f3a5f3d61872f126ad7a5943"; 73348 + sha512 = "xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA=="; 73385 73349 }; 73386 73350 }; 73387 73351 "xsalsa20-1.2.0" = { ··· 73408 73372 version = "0.3.1"; 73409 73373 src = fetchurl { 73410 73374 url = "https://registry.npmjs.org/xspfr/-/xspfr-0.3.1.tgz"; 73411 - sha1 = "f164263325ae671f53836fb210c7ddbcfda46598"; 73375 + sha512 = "LF2/GULgkPijLxuwnLifHEXYfwRNchpUM9yvE7qBWc9XYpH/z+akAxdGwmGrydShN26xJLXtEsK6Jgg5wZxI9g=="; 73412 73376 }; 73413 73377 }; 73414 73378 "xss-1.0.13" = { ··· 73435 73399 version = "2.1.2"; 73436 73400 src = fetchurl { 73437 73401 url = "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz"; 73438 - sha1 = "6efecc2a4dad8e6962c4901b337ce7ba87b5d28b"; 73402 + sha512 = "vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ=="; 73439 73403 }; 73440 73404 }; 73441 73405 "xtend-4.0.2" = { ··· 73489 73453 version = "2.1.2"; 73490 73454 src = fetchurl { 73491 73455 url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; 73492 - sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; 73456 + sha512 = "ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A=="; 73493 73457 }; 73494 73458 }; 73495 73459 "yallist-3.1.1" = { ··· 73570 73534 version = "0.0.8"; 73571 73535 src = fetchurl { 73572 73536 url = "https://registry.npmjs.org/yaml-js/-/yaml-js-0.0.8.tgz"; 73573 - sha1 = "87cfa5a9613f48e26005420d6a8ee0da6fe8daec"; 73537 + sha512 = "XCqDFUhDO3yhT+Rb/inT3uiC8ekx2lXHDgDeXY8V0Lgkx4yEhzhxraYQxtuajydIrx8L8KmF9OeKCDlyCjvnMQ=="; 73574 73538 }; 73575 73539 }; 73576 73540 "yamljs-0.3.0" = { ··· 73597 73561 version = "1.3.3"; 73598 73562 src = fetchurl { 73599 73563 url = "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz"; 73600 - sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a"; 73564 + sha512 = "7OGt4xXoWJQh5ulgZ78rKaqY7dNWbjfK+UKxGcIlaM2j7C4fqGchyv8CPvEWdRPrHp6Ula/YU8yGRpYGOHrI+g=="; 73601 73565 }; 73602 73566 }; 73603 73567 "yargs-11.1.1" = { ··· 73723 73687 version = "3.10.0"; 73724 73688 src = fetchurl { 73725 73689 url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; 73726 - sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; 73690 + sha512 = "QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A=="; 73727 73691 }; 73728 73692 }; 73729 73693 "yargs-3.32.0" = { ··· 73732 73696 version = "3.32.0"; 73733 73697 src = fetchurl { 73734 73698 url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz"; 73735 - sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995"; 73699 + sha512 = "ONJZiimStfZzhKamYvR/xvmgW3uEkAUFSP91y2caTEPhzF6uP2JfPiVZcq66b/YR0C3uitxSV7+T1x8p5bkmMg=="; 73736 73700 }; 73737 73701 }; 73738 73702 "yargs-4.7.1" = { ··· 73741 73705 version = "4.7.1"; 73742 73706 src = fetchurl { 73743 73707 url = "https://registry.npmjs.org/yargs/-/yargs-4.7.1.tgz"; 73744 - sha1 = "e60432658a3387ff269c028eacde4a512e438dff"; 73708 + sha512 = "T8W8Q04y0uWmRmnbBfLTFNTpn2NdYs+pJd1G7ziRjyRFqSJhMRzIznjafyLFTcK4DIGVPVs1zyH0OoSjN/k/jw=="; 73745 73709 }; 73746 73710 }; 73747 73711 "yargs-4.8.1" = { ··· 73750 73714 version = "4.8.1"; 73751 73715 src = fetchurl { 73752 73716 url = "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz"; 73753 - sha1 = "c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0"; 73717 + sha512 = "LqodLrnIDM3IFT+Hf/5sxBnEGECrfdC1uIbgZeJmESCSo4HoCAaKEus8MylXHAkdacGc0ye+Qa+dpkuom8uVYA=="; 73754 73718 }; 73755 73719 }; 73756 73720 "yargs-6.6.0" = { ··· 73759 73723 version = "6.6.0"; 73760 73724 src = fetchurl { 73761 73725 url = "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz"; 73762 - sha1 = "782ec21ef403345f830a808ca3d513af56065208"; 73726 + sha512 = "6/QWTdisjnu5UHUzQGst+UOEuEVwIzFVGBjq3jMTFNs5WJQsH/X6nMURSaScIdF5txylr1Ao9bvbWiKi2yXbwA=="; 73763 73727 }; 73764 73728 }; 73765 73729 "yargs-7.1.2" = { ··· 73822 73786 version = "2.4.1"; 73823 73787 src = fetchurl { 73824 73788 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz"; 73825 - sha1 = "85568de3cf150ff49fa51825f03a8c880ddcc5c4"; 73789 + sha512 = "9pIKIJhnI5tonzG6OnCFlz/yln8xHYcGl+pn3xR0Vzff0vzN1PbNRaelgfgRUwZ3s4i3jvxT9WhmUGL4whnasA=="; 73826 73790 }; 73827 73791 }; 73828 73792 "yargs-parser-20.2.4" = { ··· 73858 73822 version = "4.2.1"; 73859 73823 src = fetchurl { 73860 73824 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz"; 73861 - sha1 = "29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"; 73825 + sha512 = "+QQWqC2xeL0N5/TE+TY6OGEqyNRM+g2/r712PDNYgiCdXYCApXf1vzfmDSLBxfGRwV+moTq/V8FnMI24JCm2Yg=="; 73862 73826 }; 73863 73827 }; 73864 73828 "yargs-parser-5.0.1" = { ··· 73876 73840 version = "7.0.0"; 73877 73841 src = fetchurl { 73878 73842 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz"; 73879 - sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"; 73843 + sha512 = "WhzC+xgstid9MbVUktco/bf+KJG+Uu6vMX0LN1sLJvwmbCQVxb4D8LzogobonKycNasCZLdOzTAk1SK7+K7swg=="; 73880 73844 }; 73881 73845 }; 73882 73846 "yargs-parser-9.0.2" = { ··· 73885 73849 version = "9.0.2"; 73886 73850 src = fetchurl { 73887 73851 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz"; 73888 - sha1 = "9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"; 73852 + sha512 = "CswCfdOgCr4MMsT1GzbEJ7Z2uYudWyrGX8Bgh/0eyCzj/DXWdKq6a/ADufkzI1WAOIW6jYaXJvRyLhDO0kfqBw=="; 73889 73853 }; 73890 73854 }; 73891 73855 "yargs-unparser-2.0.0" = { ··· 73939 73903 version = "2.10.0"; 73940 73904 src = fetchurl { 73941 73905 url = "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz"; 73942 - sha1 = "c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"; 73906 + sha512 = "p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g=="; 73943 73907 }; 73944 73908 }; 73945 73909 "yazl-2.5.1" = { ··· 73957 73921 version = "0.1.2"; 73958 73922 src = fetchurl { 73959 73923 url = "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz"; 73960 - sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419"; 73924 + sha512 = "8HFIh676uyGYP6wP13R/j6OJ/1HwJ46snpvzE7aHAN3Ryqh2yX6Xox2B4CUmTwwOIzlG3Bs7ocsP5dZH/R1Qbg=="; 73961 73925 }; 73962 73926 }; 73963 73927 "yeoman-character-1.1.0" = { ··· 73966 73930 version = "1.1.0"; 73967 73931 src = fetchurl { 73968 73932 url = "https://registry.npmjs.org/yeoman-character/-/yeoman-character-1.1.0.tgz"; 73969 - sha1 = "90d4b5beaf92759086177015b2fdfa2e0684d7c7"; 73933 + sha512 = "oxzeZugaEkVJC+IHwcb+DZDb8IdbZ3f4rHax4+wtJstCx+9BAaMX+Inmp3wmGmTWftJ7n5cPqQRbo1FaV/vNXQ=="; 73970 73934 }; 73971 73935 }; 73972 73936 "yeoman-doctor-5.0.0" = { ··· 74128 74092 version = "1.0.4"; 74129 74093 src = fetchurl { 74130 74094 url = "https://registry.npmjs.org/zerr/-/zerr-1.0.4.tgz"; 74131 - sha1 = "62814dd799eff8361f2a228f41f705c5e19de4c9"; 74095 + sha512 = "u3WW9JA9xNmhy3cK6iSi3uWe4XmuqPCZ+jOrngEIwYz//ZUhY6bexVFrWLcxrIDUbJeXnyJORqVYPi2YU6gA+A=="; 74132 74096 }; 74133 74097 }; 74134 74098 "zip-dir-2.0.0" = { ··· 74164 74128 version = "2.15.3"; 74165 74129 src = fetchurl { 74166 74130 url = "https://registry.npmjs.org/zmq/-/zmq-2.15.3.tgz"; 74167 - sha1 = "66c6de82cc36b09734b820703776490a6fbbe624"; 74131 + sha512 = "IKkS1Vn3kCLSxKtxG8xI85Xf2skxEXpBjvO/S9cF+7a8gSY+iQJXoG8HX6NM5JkjrK/awpD4nWDC/+6kIia7Og=="; 74168 74132 }; 74169 74133 }; 74170 74134 "zod-1.11.17" = { ··· 74200 74164 version = "4.4.2"; 74201 74165 src = fetchurl { 74202 74166 url = "https://registry.npmjs.org/zxcvbn/-/zxcvbn-4.4.2.tgz"; 74203 - sha1 = "28ec17cf09743edcab056ddd8b1b06262cc73c30"; 74167 + sha512 = "Bq0B+ixT/DMyG8kgX2xWcI5jUvCwqrMxSFam7m0lAf78nf04hv6lNCsyLYdyYTrCVMqNDY/206K7eExYCeSyUQ=="; 74204 74168 }; 74205 74169 }; 74206 74170 }; ··· 74209 74173 "@angular/cli" = nodeEnv.buildNodePackage { 74210 74174 name = "_at_angular_slash_cli"; 74211 74175 packageName = "@angular/cli"; 74212 - version = "14.0.1"; 74176 + version = "14.0.2"; 74213 74177 src = fetchurl { 74214 - url = "https://registry.npmjs.org/@angular/cli/-/cli-14.0.1.tgz"; 74215 - sha512 = "5NUfpHlIQ+BipsHIMHImP2bXu5nJcyr4sbs8Otf5ReCcqculJGfKwX0gYYgLfExbw1r4JtCTDggYanUcVgqkdw=="; 74178 + url = "https://registry.npmjs.org/@angular/cli/-/cli-14.0.2.tgz"; 74179 + sha512 = "cCQr5KMLlr7JER8CtrYLBTQUT4g22CTh3f0D9cdSjpBOhmEq62ZXApbmHNgPoHrTNub+7+FwANleIuqyN7nojg=="; 74216 74180 }; 74217 74181 dependencies = [ 74218 - sources."@angular-devkit/architect-0.1400.1" 74219 - sources."@angular-devkit/core-14.0.1" 74220 - sources."@angular-devkit/schematics-14.0.1" 74182 + sources."@angular-devkit/architect-0.1400.2" 74183 + sources."@angular-devkit/core-14.0.2" 74184 + sources."@angular-devkit/schematics-14.0.2" 74221 74185 sources."@gar/promisify-1.1.3" 74222 74186 sources."@npmcli/fs-1.1.1" 74223 74187 sources."@npmcli/git-3.0.1" ··· 74226 74190 sources."@npmcli/node-gyp-2.0.0" 74227 74191 sources."@npmcli/promise-spawn-3.0.0" 74228 74192 sources."@npmcli/run-script-3.0.3" 74229 - sources."@schematics/angular-14.0.1" 74193 + sources."@schematics/angular-14.0.2" 74230 74194 sources."@tootallnate/once-1.1.2" 74231 74195 sources."@yarnpkg/lockfile-1.1.0" 74232 74196 sources."abbrev-1.1.1" ··· 74518 74482 sources."chalk-2.4.2" 74519 74483 sources."color-convert-1.9.3" 74520 74484 sources."color-name-1.1.3" 74521 - sources."colorette-2.0.17" 74485 + sources."colorette-2.0.19" 74522 74486 sources."commander-8.3.0" 74523 74487 sources."convict-6.2.3" 74524 74488 sources."dateformat-4.6.3" ··· 74633 74597 }) 74634 74598 sources."color-convert-1.9.3" 74635 74599 sources."color-name-1.1.3" 74636 - sources."colorette-2.0.17" 74600 + sources."colorette-2.0.19" 74637 74601 sources."concat-map-0.0.1" 74638 74602 sources."convert-source-map-1.8.0" 74639 74603 sources."convict-6.2.3" ··· 74834 74798 dependencies = [ 74835 74799 sources."@astrojs/svelte-language-integration-0.1.6" 74836 74800 sources."@astrojs/vue-language-integration-0.1.1" 74837 - sources."@babel/parser-7.18.4" 74801 + sources."@babel/parser-7.18.5" 74838 74802 sources."@emmetio/abbreviation-2.2.3" 74839 74803 sources."@emmetio/css-abbreviation-2.1.4" 74840 74804 sources."@emmetio/scanner-1.0.0" ··· 75216 75180 sources."@tsconfig/node14-1.0.2" 75217 75181 sources."@tsconfig/node16-1.0.3" 75218 75182 sources."@types/minimist-1.2.2" 75219 - sources."@types/node-17.0.42" 75183 + sources."@types/node-18.0.0" 75220 75184 sources."@types/normalize-package-data-2.4.1" 75221 75185 sources."@types/parse-json-4.0.0" 75222 75186 sources."JSONStream-1.3.5" ··· 75446 75410 sources."@types/json-buffer-3.0.0" 75447 75411 sources."@types/keyv-3.1.4" 75448 75412 sources."@types/minimatch-3.0.5" 75449 - sources."@types/node-17.0.42" 75413 + sources."@types/node-18.0.0" 75450 75414 sources."@types/normalize-package-data-2.4.1" 75451 75415 sources."@types/responselike-1.0.0" 75452 75416 sources."abort-controller-3.0.0" ··· 75562 75526 sources."is-interactive-1.0.0" 75563 75527 sources."is-number-7.0.0" 75564 75528 sources."is-port-reachable-3.1.0" 75565 - sources."is-reachable-5.2.0" 75529 + sources."is-reachable-5.2.1" 75566 75530 sources."is-stream-2.0.1" 75567 75531 sources."is-unicode-supported-1.2.0" 75568 75532 sources."is-wsl-2.2.0" ··· 75684 75648 sources."tr46-0.0.3" 75685 75649 (sources."ts2gas-4.2.0" // { 75686 75650 dependencies = [ 75687 - sources."type-fest-2.13.0" 75651 + sources."type-fest-2.13.1" 75688 75652 ]; 75689 75653 }) 75690 75654 sources."tslib-2.4.0" ··· 75733 75697 sources."@hyperswarm/hypersign-2.1.1" 75734 75698 sources."@hyperswarm/network-2.1.0" 75735 75699 sources."@leichtgewicht/ip-codec-2.0.4" 75736 - sources."@types/node-17.0.42" 75700 + sources."@types/node-18.0.0" 75737 75701 sources."abstract-extension-3.1.1" 75738 75702 sources."abstract-leveldown-6.2.3" 75739 75703 sources."acorn-8.7.1" ··· 75811 75775 sources."pump-1.0.3" 75812 75776 ]; 75813 75777 }) 75814 - sources."dns-packet-5.3.1" 75778 + sources."dns-packet-5.4.0" 75815 75779 sources."duplexify-3.7.1" 75816 75780 sources."emoji-regex-8.0.0" 75817 75781 sources."encoding-down-6.3.0" ··· 76094 76058 sha512 = "hV1PG20mLFmYbSJvV+JIGVLUT3zzDt2snR9T7tKMBAVvGQBAfzodylbTZe+b20hNz3Max2Z4zsKVksRu71x1+A=="; 76095 76059 }; 76096 76060 dependencies = [ 76097 - sources."@babel/parser-7.18.4" 76061 + sources."@babel/parser-7.18.5" 76098 76062 sources."@medable/mdctl-api-1.0.66" 76099 76063 sources."@medable/mdctl-api-driver-1.0.66" 76100 76064 sources."@medable/mdctl-axon-tools-1.0.66" ··· 76129 76093 sources."@types/markdown-it-12.2.3" 76130 76094 sources."@types/mdurl-1.0.2" 76131 76095 sources."@types/minimatch-3.0.5" 76132 - sources."@types/node-17.0.42" 76096 + sources."@types/node-18.0.0" 76133 76097 sources."@types/tough-cookie-2.3.8" 76134 76098 sources."abbrev-1.1.1" 76135 76099 sources."abort-controller-3.0.0" ··· 76537 76501 sources."map-visit-1.0.0" 76538 76502 sources."markdown-it-12.3.2" 76539 76503 sources."markdown-it-anchor-8.6.4" 76540 - sources."marked-4.0.16" 76504 + sources."marked-4.0.17" 76541 76505 sources."md5.js-1.3.5" 76542 76506 sources."mdurl-1.0.1" 76543 76507 (sources."mem-4.3.0" // { ··· 77024 76988 sources."@octokit/core-3.6.0" 77025 76989 sources."@octokit/endpoint-6.0.12" 77026 76990 sources."@octokit/graphql-4.8.0" 77027 - sources."@octokit/openapi-types-11.2.0" 77028 - sources."@octokit/plugin-paginate-rest-2.17.0" 76991 + sources."@octokit/openapi-types-12.1.0" 76992 + sources."@octokit/plugin-paginate-rest-2.18.0" 77029 76993 sources."@octokit/plugin-request-log-1.0.4" 77030 - sources."@octokit/plugin-rest-endpoint-methods-5.13.0" 76994 + sources."@octokit/plugin-rest-endpoint-methods-5.14.0" 77031 76995 sources."@octokit/plugin-retry-3.0.9" 77032 76996 sources."@octokit/plugin-throttling-3.6.2" 77033 76997 sources."@octokit/request-5.6.3" 77034 76998 sources."@octokit/request-error-2.1.0" 77035 76999 sources."@octokit/rest-18.12.0" 77036 - sources."@octokit/types-6.34.0" 77000 + sources."@octokit/types-6.35.0" 77037 77001 sources."@sideway/address-4.1.4" 77038 77002 sources."@sideway/formula-3.0.0" 77039 77003 sources."@sideway/pinpoint-2.0.0" ··· 77160 77124 sources."@types/estree-0.0.51" 77161 77125 sources."@types/json-schema-7.0.11" 77162 77126 sources."@types/json5-0.0.29" 77163 - sources."@types/node-17.0.42" 77127 + sources."@types/node-18.0.0" 77164 77128 sources."@types/parse-json-4.0.0" 77165 77129 sources."@webassemblyjs/ast-1.11.1" 77166 77130 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 77199 77163 sources."buffer-5.7.1" 77200 77164 sources."buffer-from-1.1.2" 77201 77165 sources."callsites-3.1.0" 77202 - sources."caniuse-lite-1.0.30001352" 77166 + sources."caniuse-lite-1.0.30001354" 77203 77167 sources."chalk-3.0.0" 77204 77168 sources."chardet-0.7.0" 77205 77169 sources."chokidar-3.5.3" ··· 77217 77181 sources."cross-spawn-7.0.3" 77218 77182 sources."deepmerge-4.2.2" 77219 77183 sources."defaults-1.0.3" 77220 - sources."electron-to-chromium-1.4.152" 77184 + sources."electron-to-chromium-1.4.157" 77221 77185 sources."emoji-regex-8.0.0" 77222 77186 sources."end-of-stream-1.4.4" 77223 77187 sources."enhanced-resolve-5.9.3" ··· 77597 77561 sources."async-limiter-1.0.1" 77598 77562 sources."asynckit-0.4.0" 77599 77563 sources."atob-2.1.2" 77600 - (sources."aws-sdk-2.1152.0" // { 77564 + (sources."aws-sdk-2.1155.0" // { 77601 77565 dependencies = [ 77602 77566 sources."uuid-8.0.0" 77603 77567 ]; ··· 77887 77851 sources."@apollographql/graphql-playground-html-1.6.27" 77888 77852 sources."@apollographql/graphql-upload-8-fork-8.1.3" 77889 77853 sources."@babel/code-frame-7.16.7" 77890 - sources."@babel/compat-data-7.17.10" 77891 - (sources."@babel/core-7.18.2" // { 77854 + sources."@babel/compat-data-7.18.5" 77855 + (sources."@babel/core-7.18.5" // { 77892 77856 dependencies = [ 77893 77857 sources."semver-6.3.0" 77894 77858 ]; ··· 77940 77904 sources."supports-color-5.5.0" 77941 77905 ]; 77942 77906 }) 77943 - sources."@babel/parser-7.18.4" 77907 + sources."@babel/parser-7.18.5" 77944 77908 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12" 77945 77909 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12" 77946 77910 sources."@babel/plugin-proposal-async-generator-functions-7.17.12" ··· 77992 77956 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 77993 77957 sources."@babel/plugin-transform-modules-amd-7.18.0" 77994 77958 sources."@babel/plugin-transform-modules-commonjs-7.18.2" 77995 - sources."@babel/plugin-transform-modules-systemjs-7.18.4" 77959 + sources."@babel/plugin-transform-modules-systemjs-7.18.5" 77996 77960 sources."@babel/plugin-transform-modules-umd-7.18.0" 77997 77961 sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12" 77998 - sources."@babel/plugin-transform-new-target-7.17.12" 77962 + sources."@babel/plugin-transform-new-target-7.18.5" 77999 77963 sources."@babel/plugin-transform-object-super-7.16.7" 78000 77964 sources."@babel/plugin-transform-parameters-7.17.12" 78001 77965 sources."@babel/plugin-transform-property-literals-7.16.7" ··· 78026 77990 }) 78027 77991 sources."@babel/runtime-7.18.3" 78028 77992 sources."@babel/template-7.16.7" 78029 - sources."@babel/traverse-7.18.2" 77993 + sources."@babel/traverse-7.18.5" 78030 77994 sources."@babel/types-7.18.4" 78031 77995 sources."@hapi/hoek-9.3.0" 78032 77996 sources."@hapi/topo-5.1.0" ··· 78062 78026 sources."@types/cors-2.8.10" 78063 78027 sources."@types/ejs-3.1.1" 78064 78028 sources."@types/express-4.17.13" 78065 - sources."@types/express-serve-static-core-4.17.28" 78029 + sources."@types/express-serve-static-core-4.17.29" 78066 78030 sources."@types/fs-capacitor-2.0.0" 78067 78031 sources."@types/http-assert-1.5.3" 78068 78032 sources."@types/http-errors-1.8.2" ··· 78078 78042 sources."@types/koa-compose-3.2.5" 78079 78043 sources."@types/long-4.0.2" 78080 78044 sources."@types/mime-1.3.2" 78081 - sources."@types/node-17.0.42" 78045 + sources."@types/node-18.0.0" 78082 78046 sources."@types/normalize-package-data-2.4.1" 78083 78047 sources."@types/qs-6.9.7" 78084 78048 sources."@types/range-parser-1.2.4" ··· 78205 78169 }) 78206 78170 sources."call-bind-1.0.2" 78207 78171 sources."camelcase-6.3.0" 78208 - sources."caniuse-lite-1.0.30001352" 78172 + sources."caniuse-lite-1.0.30001354" 78209 78173 sources."caw-2.0.1" 78210 78174 sources."chalk-4.1.2" 78211 78175 sources."chardet-0.7.0" ··· 78258 78222 sources."cookie-0.5.0" 78259 78223 sources."cookie-signature-1.0.6" 78260 78224 sources."copy-descriptor-0.1.1" 78261 - (sources."core-js-compat-3.22.8" // { 78225 + (sources."core-js-compat-3.23.1" // { 78262 78226 dependencies = [ 78263 78227 sources."semver-7.0.0" 78264 78228 ]; 78265 78229 }) 78266 - sources."core-js-pure-3.22.8" 78230 + sources."core-js-pure-3.23.1" 78267 78231 sources."core-util-is-1.0.3" 78268 78232 sources."cors-2.8.5" 78269 78233 (sources."cross-spawn-6.0.5" // { ··· 78326 78290 sources."easy-stack-1.0.1" 78327 78291 sources."ee-first-1.1.1" 78328 78292 sources."ejs-3.1.8" 78329 - sources."electron-to-chromium-1.4.152" 78293 + sources."electron-to-chromium-1.4.157" 78330 78294 sources."emoji-regex-8.0.0" 78331 78295 sources."encodeurl-1.0.2" 78332 78296 sources."end-of-stream-1.4.4" ··· 79182 79146 sources."@babel/generator-7.18.2" 79183 79147 sources."@babel/helper-validator-identifier-7.16.7" 79184 79148 sources."@babel/highlight-7.17.12" 79185 - sources."@babel/parser-7.18.4" 79149 + sources."@babel/parser-7.18.5" 79186 79150 sources."@babel/template-7.16.7" 79187 79151 sources."@babel/types-7.18.4" 79188 79152 sources."@jridgewell/gen-mapping-0.3.1" ··· 79279 79243 sources."@types/minimist-1.2.2" 79280 79244 sources."@types/ms-0.7.31" 79281 79245 sources."@types/nlcst-1.0.0" 79282 - sources."@types/node-17.0.42" 79246 + sources."@types/node-17.0.45" 79283 79247 sources."@types/normalize-package-data-2.4.1" 79284 79248 sources."@types/parse5-6.0.3" 79285 79249 sources."@types/supports-color-8.1.1" ··· 79364 79328 sources."error-ex-1.3.2" 79365 79329 sources."escape-goat-2.1.1" 79366 79330 sources."escape-string-regexp-1.0.5" 79367 - sources."estree-util-is-identifier-name-2.0.0" 79331 + sources."estree-util-is-identifier-name-2.0.1" 79368 79332 sources."estree-util-visit-1.1.0" 79369 79333 sources."event-stream-3.1.7" 79370 79334 sources."extend-3.0.2" ··· 79644 79608 sources."unherit-3.0.0" 79645 79609 (sources."unified-10.1.2" // { 79646 79610 dependencies = [ 79647 - sources."is-plain-obj-4.0.0" 79611 + sources."is-plain-obj-4.1.0" 79648 79612 ]; 79649 79613 }) 79650 79614 sources."unified-diff-4.0.1" 79651 79615 (sources."unified-engine-9.1.0" // { 79652 79616 dependencies = [ 79653 - sources."is-plain-obj-4.0.0" 79617 + sources."is-plain-obj-4.1.0" 79654 79618 sources."lines-and-columns-2.0.3" 79655 79619 sources."parse-json-6.0.2" 79656 79620 ]; ··· 79686 79650 sources."util-deprecate-1.0.2" 79687 79651 sources."uvu-0.5.3" 79688 79652 sources."validate-npm-package-license-3.0.4" 79689 - sources."vfile-5.3.3" 79653 + sources."vfile-5.3.4" 79690 79654 sources."vfile-find-up-6.0.0" 79691 79655 sources."vfile-location-4.0.1" 79692 79656 sources."vfile-message-3.1.2" ··· 79740 79704 dependencies = [ 79741 79705 sources."@ampproject/remapping-2.2.0" 79742 79706 sources."@babel/code-frame-7.16.7" 79743 - sources."@babel/compat-data-7.17.10" 79744 - sources."@babel/core-7.18.2" 79707 + sources."@babel/compat-data-7.18.5" 79708 + sources."@babel/core-7.18.5" 79745 79709 (sources."@babel/generator-7.18.2" // { 79746 79710 dependencies = [ 79747 79711 sources."@jridgewell/gen-mapping-0.3.1" ··· 79759 79723 sources."@babel/helper-validator-option-7.16.7" 79760 79724 sources."@babel/helpers-7.18.2" 79761 79725 sources."@babel/highlight-7.17.12" 79762 - sources."@babel/parser-7.18.4" 79726 + sources."@babel/parser-7.18.5" 79763 79727 sources."@babel/template-7.16.7" 79764 - sources."@babel/traverse-7.18.2" 79728 + sources."@babel/traverse-7.18.5" 79765 79729 sources."@babel/types-7.18.4" 79766 79730 sources."@jridgewell/gen-mapping-0.1.1" 79767 79731 sources."@jridgewell/resolve-uri-3.0.7" ··· 79776 79740 sources."balanced-match-1.0.2" 79777 79741 sources."brace-expansion-2.0.1" 79778 79742 sources."browserslist-4.20.4" 79779 - sources."caniuse-lite-1.0.30001352" 79743 + sources."caniuse-lite-1.0.30001354" 79780 79744 sources."chalk-2.4.2" 79781 79745 sources."color-convert-1.9.3" 79782 79746 sources."color-name-1.1.3" ··· 79786 79750 sources."convert-source-map-1.8.0" 79787 79751 sources."debug-4.3.4" 79788 79752 sources."ejs-3.1.6" 79789 - sources."electron-to-chromium-1.4.152" 79753 + sources."electron-to-chromium-1.4.157" 79790 79754 sources."ensure-posix-path-1.1.1" 79791 79755 sources."escalade-3.1.1" 79792 79756 sources."escape-string-regexp-1.0.5" ··· 80087 80051 dependencies = [ 80088 80052 sources."@types/glob-7.2.0" 80089 80053 sources."@types/minimatch-3.0.5" 80090 - sources."@types/node-17.0.42" 80054 + sources."@types/node-18.0.0" 80091 80055 sources."balanced-match-1.0.2" 80092 80056 sources."brace-expansion-1.1.11" 80093 80057 sources."chromium-pickle-js-0.2.0" ··· 80172 80136 }; 80173 80137 dependencies = [ 80174 80138 sources."browserslist-4.20.4" 80175 - sources."caniuse-lite-1.0.30001352" 80176 - sources."electron-to-chromium-1.4.152" 80139 + sources."caniuse-lite-1.0.30001354" 80140 + sources."electron-to-chromium-1.4.157" 80177 80141 sources."escalade-3.1.1" 80178 80142 sources."fraction.js-4.2.0" 80179 80143 sources."node-releases-2.0.5" ··· 80201 80165 }; 80202 80166 dependencies = [ 80203 80167 sources."@tootallnate/once-1.1.2" 80204 - sources."@types/node-17.0.42" 80168 + sources."@types/node-18.0.0" 80205 80169 sources."@types/yauzl-2.10.0" 80206 80170 sources."agent-base-6.0.2" 80207 80171 sources."ansi-escapes-4.3.2" 80208 80172 sources."ansi-regex-5.0.1" 80209 80173 sources."ansi-styles-4.3.0" 80210 80174 sources."ast-types-0.13.4" 80211 - (sources."aws-sdk-2.1152.0" // { 80175 + (sources."aws-sdk-2.1155.0" // { 80212 80176 dependencies = [ 80213 80177 sources."uuid-8.0.0" 80214 80178 ]; ··· 80410 80374 aws-cdk = nodeEnv.buildNodePackage { 80411 80375 name = "aws-cdk"; 80412 80376 packageName = "aws-cdk"; 80413 - version = "2.27.0"; 80377 + version = "2.28.0"; 80414 80378 src = fetchurl { 80415 - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.27.0.tgz"; 80416 - sha512 = "TAKSP4ViFqj+jktFwJl4IE4jZbQCsH32t7L/VcGY71VZV9VqvuzkjF4gGx+hrES+A/dFBtLmPXsumyJu5y0elQ=="; 80379 + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.28.0.tgz"; 80380 + sha512 = "d8DyDBnSSLLU39XPH4I4pRF1dX5yGFYJhOR8fFBtoPbpSiE0gJgSMX4RIcNUm2V1ZKVUM8dSc/iWkf+i7+mysg=="; 80417 80381 }; 80418 80382 dependencies = [ 80419 80383 sources."fsevents-2.3.2" ··· 80849 80813 balanceofsatoshis = nodeEnv.buildNodePackage { 80850 80814 name = "balanceofsatoshis"; 80851 80815 packageName = "balanceofsatoshis"; 80852 - version = "12.13.0"; 80816 + version = "12.13.1"; 80853 80817 src = fetchurl { 80854 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.13.0.tgz"; 80855 - sha512 = "UhWeWBZrDBaXkRBXg+ni7jwW0LaVqQcXnTSbmfJ1M6BpVpHGEowEbHuG+MvjNiOWI7lMD+TrYzR5I8hu8ZhEyA=="; 80818 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.13.1.tgz"; 80819 + sha512 = "WL4S+qCeUOit8yeuYdP/67oUcEqRuCZoCmgXXTUBWE4v89cg4x1oBXNFyodr15r2/07kqhOh+AswkOj+P5Yc9Q=="; 80856 80820 }; 80857 80821 dependencies = [ 80858 80822 (sources."@alexbosworth/caporal-1.4.4" // { ··· 80861 80825 ]; 80862 80826 }) 80863 80827 sources."@alexbosworth/cli-table3-0.6.1" 80864 - (sources."@alexbosworth/fiat-1.0.2" // { 80865 - dependencies = [ 80866 - sources."async-3.2.3" 80867 - ]; 80868 - }) 80828 + sources."@alexbosworth/fiat-1.0.3" 80869 80829 sources."@alexbosworth/html2unicode-1.1.5" 80870 80830 sources."@alexbosworth/node-fetch-2.6.2" 80871 80831 (sources."@alexbosworth/prettyjson-1.2.2" // { ··· 80884 80844 sources."@dabh/diagnostics-2.0.3" 80885 80845 sources."@grammyjs/types-2.7.2" 80886 80846 sources."@grpc/grpc-js-1.6.7" 80887 - sources."@grpc/proto-loader-0.6.12" 80847 + sources."@grpc/proto-loader-0.6.13" 80888 80848 sources."@handsontable/formulajs-2.0.2" 80889 80849 sources."@mitmaro/errors-1.0.0" 80890 80850 sources."@mitmaro/http-authorization-header-1.0.0" ··· 80904 80864 sources."@types/caseless-0.12.2" 80905 80865 sources."@types/connect-3.4.35" 80906 80866 sources."@types/express-4.17.13" 80907 - sources."@types/express-serve-static-core-4.17.28" 80867 + sources."@types/express-serve-static-core-4.17.29" 80908 80868 sources."@types/long-4.0.2" 80909 80869 sources."@types/mime-1.3.2" 80910 - sources."@types/node-17.0.42" 80870 + sources."@types/node-18.0.0" 80911 80871 sources."@types/qs-6.9.7" 80912 80872 sources."@types/range-parser-1.2.4" 80913 80873 sources."@types/request-2.48.8" ··· 80933 80893 sources."asciichart-1.5.25" 80934 80894 sources."astral-regex-2.0.0" 80935 80895 sources."async-3.2.4" 80936 - (sources."asyncjs-util-1.2.9" // { 80937 - dependencies = [ 80938 - sources."async-3.2.3" 80939 - ]; 80940 - }) 80896 + sources."asyncjs-util-1.2.10" 80941 80897 sources."asynckit-0.4.0" 80942 80898 sources."base-x-3.0.9" 80943 80899 sources."base64-js-1.5.1" ··· 81079 81035 sources."ini-2.0.0" 81080 81036 ]; 81081 81037 }) 81082 - (sources."goldengate-11.2.2" // { 81038 + (sources."goldengate-11.2.3" // { 81083 81039 dependencies = [ 81084 - sources."async-3.2.3" 81085 - (sources."bolt01-1.2.4" // { 81086 - dependencies = [ 81087 - sources."bn.js-5.2.0" 81088 - ]; 81089 - }) 81090 - (sources."bolt07-1.8.1" // { 81091 - dependencies = [ 81092 - sources."bn.js-5.2.0" 81093 - ]; 81094 - }) 81095 - sources."ln-service-53.17.1" 81096 - sources."psbt-2.4.0" 81040 + sources."ln-sync-3.12.2" 81097 81041 ]; 81098 81042 }) 81099 81043 sources."got-9.6.0" ··· 81145 81089 sources."restore-cursor-3.1.0" 81146 81090 sources."supports-color-7.2.0" 81147 81091 sources."tmp-0.0.33" 81148 - sources."type-fest-0.21.3" 81149 81092 ]; 81150 81093 }) 81151 81094 (sources."invoices-2.0.6" // { ··· 81187 81130 sources."kind-of-6.0.3" 81188 81131 sources."kuler-2.0.0" 81189 81132 sources."latest-version-5.1.0" 81190 - (sources."lightning-5.16.1" // { 81133 + (sources."lightning-5.16.0" // { 81191 81134 dependencies = [ 81192 - sources."@types/node-17.0.38" 81135 + sources."@grpc/proto-loader-0.6.12" 81136 + sources."@types/node-17.0.33" 81193 81137 sources."async-3.2.3" 81194 - (sources."bolt07-1.8.1" // { 81195 - dependencies = [ 81196 - sources."bn.js-5.2.0" 81197 - ]; 81198 - }) 81199 - sources."psbt-2.3.0" 81200 - ]; 81201 - }) 81202 - (sources."ln-accounting-5.0.7" // { 81203 - dependencies = [ 81204 - sources."async-3.2.3" 81138 + sources."asyncjs-util-1.2.9" 81205 81139 sources."bn.js-5.2.0" 81206 81140 sources."bolt07-1.8.1" 81207 - sources."ln-service-53.17.1" 81208 - ]; 81209 - }) 81210 - (sources."ln-service-53.17.3" // { 81211 - dependencies = [ 81212 - sources."@grpc/proto-loader-0.6.13" 81213 - sources."@types/node-17.0.41" 81214 - sources."invoices-2.0.7" 81215 - sources."lightning-5.16.3" 81216 - sources."ws-8.8.0" 81141 + sources."psbt-2.0.1" 81142 + sources."type-fest-2.12.2" 81217 81143 ]; 81218 81144 }) 81219 - (sources."ln-sync-3.12.1" // { 81145 + (sources."ln-accounting-5.0.7" // { 81220 81146 dependencies = [ 81221 - sources."@types/node-17.0.33" 81147 + sources."@grpc/proto-loader-0.6.12" 81148 + sources."@types/node-17.0.38" 81222 81149 sources."async-3.2.3" 81150 + sources."asyncjs-util-1.2.9" 81223 81151 sources."bn.js-5.2.0" 81152 + sources."bolt01-1.2.4" 81224 81153 sources."bolt07-1.8.1" 81225 81154 sources."colorette-2.0.16" 81226 - (sources."lightning-5.16.0" // { 81155 + sources."goldengate-11.2.2" 81156 + (sources."ln-service-53.17.1" // { 81157 + dependencies = [ 81158 + sources."bn.js-5.2.1" 81159 + sources."lightning-5.16.1" 81160 + sources."psbt-2.3.0" 81161 + sources."ws-8.7.0" 81162 + ]; 81163 + }) 81164 + (sources."ln-sync-3.12.1" // { 81227 81165 dependencies = [ 81228 - sources."psbt-2.0.1" 81166 + sources."bn.js-5.2.1" 81167 + sources."ln-service-53.17.0" 81168 + sources."psbt-2.3.0" 81229 81169 ]; 81230 81170 }) 81231 - sources."ln-service-53.17.0" 81232 - (sources."psbt-2.3.0" // { 81171 + (sources."psbt-2.4.0" // { 81233 81172 dependencies = [ 81234 81173 sources."bn.js-5.2.1" 81235 81174 ]; 81236 81175 }) 81237 - sources."type-fest-2.12.2" 81238 - sources."ws-8.6.0" 81176 + sources."type-fest-2.13.0" 81239 81177 ]; 81240 81178 }) 81241 - (sources."ln-telegram-3.22.1" // { 81179 + (sources."ln-service-53.17.3" // { 81242 81180 dependencies = [ 81243 - sources."@grpc/grpc-js-1.6.4" 81244 - sources."@grpc/proto-loader-0.6.9" 81245 - sources."@types/node-17.0.38" 81181 + sources."@types/node-17.0.41" 81246 81182 sources."async-3.2.3" 81247 - sources."bn.js-5.2.0" 81248 - sources."body-parser-1.19.2" 81249 - sources."bolt01-1.2.4" 81250 - sources."bolt09-0.2.2" 81251 - sources."colorette-2.0.16" 81252 - sources."cookie-0.4.2" 81253 - sources."depd-1.1.2" 81254 - sources."destroy-1.0.4" 81255 - sources."express-4.17.3" 81256 - sources."finalhandler-1.1.2" 81257 - sources."http-errors-1.8.1" 81183 + sources."asyncjs-util-1.2.9" 81258 81184 sources."invoices-2.0.7" 81259 - sources."lightning-5.16.2" 81260 - sources."ln-service-53.17.2" 81261 - sources."ms-2.1.3" 81262 - sources."on-finished-2.3.0" 81263 - (sources."paid-services-3.16.0" // { 81264 - dependencies = [ 81265 - sources."@types/node-17.0.23" 81266 - sources."body-parser-1.20.0" 81267 - sources."bolt07-1.8.1" 81268 - sources."depd-2.0.0" 81269 - sources."destroy-1.2.0" 81270 - (sources."goldengate-11.2.1" // { 81271 - dependencies = [ 81272 - sources."invoices-2.0.5" 81273 - sources."ln-service-53.11.0" 81274 - ]; 81275 - }) 81276 - sources."http-errors-2.0.0" 81277 - (sources."invoices-2.0.6" // { 81278 - dependencies = [ 81279 - sources."bolt09-0.2.3" 81280 - ]; 81281 - }) 81282 - (sources."lightning-5.10.1" // { 81283 - dependencies = [ 81284 - sources."@grpc/grpc-js-1.6.2" 81285 - sources."bolt09-0.2.3" 81286 - (sources."invoices-2.0.5" // { 81287 - dependencies = [ 81288 - sources."bolt09-0.2.2" 81289 - ]; 81290 - }) 81291 - ]; 81292 - }) 81293 - (sources."ln-service-53.15.0" // { 81294 - dependencies = [ 81295 - sources."@grpc/grpc-js-1.6.7" 81296 - sources."@types/node-17.0.25" 81297 - sources."bolt09-0.2.3" 81298 - sources."lightning-5.14.0" 81299 - ]; 81300 - }) 81301 - (sources."ln-sync-3.12.0" // { 81302 - dependencies = [ 81303 - sources."@grpc/grpc-js-1.6.1" 81304 - sources."body-parser-1.19.2" 81305 - sources."bolt09-0.2.1" 81306 - sources."depd-1.1.2" 81307 - sources."http-errors-1.8.1" 81308 - (sources."invoices-2.0.4" // { 81309 - dependencies = [ 81310 - sources."bolt07-1.8.0" 81311 - sources."tiny-secp256k1-2.2.0" 81312 - ]; 81313 - }) 81314 - (sources."lightning-5.9.0" // { 81315 - dependencies = [ 81316 - sources."asyncjs-util-1.2.8" 81317 - sources."bolt07-1.8.0" 81318 - sources."bolt09-0.2.2" 81319 - sources."psbt-2.0.0" 81320 - ]; 81321 - }) 81322 - (sources."ln-service-53.10.0" // { 81323 - dependencies = [ 81324 - sources."bolt07-1.8.0" 81325 - ]; 81326 - }) 81327 - sources."on-finished-2.3.0" 81328 - sources."qs-6.9.7" 81329 - sources."raw-body-2.4.3" 81330 - sources."statuses-1.5.0" 81331 - ]; 81332 - }) 81333 - sources."on-finished-2.4.1" 81334 - sources."psbt-2.0.1" 81335 - sources."qs-6.10.3" 81336 - sources."raw-body-2.5.1" 81337 - sources."statuses-2.0.1" 81338 - ]; 81339 - }) 81340 - sources."psbt-2.4.0" 81341 - sources."qs-6.9.7" 81342 - sources."raw-body-2.4.3" 81343 - sources."safe-buffer-5.2.1" 81344 - sources."send-0.17.2" 81345 - sources."serve-static-1.14.2" 81346 - sources."statuses-1.5.0" 81347 - sources."type-fest-2.12.2" 81348 - sources."ws-8.5.0" 81185 + sources."lightning-5.16.3" 81186 + sources."type-fest-2.13.0" 81187 + sources."ws-8.8.0" 81349 81188 ]; 81350 81189 }) 81190 + sources."ln-sync-3.13.0" 81191 + sources."ln-telegram-3.22.2" 81351 81192 sources."lodash-4.17.21" 81352 81193 sources."lodash.camelcase-4.3.0" 81353 81194 sources."lodash.difference-4.5.0" ··· 81437 81278 }) 81438 81279 (sources."paid-services-3.16.2" // { 81439 81280 dependencies = [ 81281 + (sources."@alexbosworth/fiat-1.0.2" // { 81282 + dependencies = [ 81283 + sources."async-3.2.3" 81284 + ]; 81285 + }) 81286 + sources."@grpc/proto-loader-0.6.12" 81287 + sources."@types/node-17.0.38" 81288 + (sources."asyncjs-util-1.2.9" // { 81289 + dependencies = [ 81290 + sources."async-3.2.3" 81291 + ]; 81292 + }) 81293 + sources."bn.js-5.2.0" 81294 + sources."colorette-2.0.16" 81295 + (sources."goldengate-11.2.2" // { 81296 + dependencies = [ 81297 + sources."async-3.2.3" 81298 + (sources."bolt01-1.2.4" // { 81299 + dependencies = [ 81300 + sources."bn.js-5.2.0" 81301 + ]; 81302 + }) 81303 + (sources."bolt07-1.8.1" // { 81304 + dependencies = [ 81305 + sources."bn.js-5.2.0" 81306 + ]; 81307 + }) 81308 + (sources."invoices-2.0.6" // { 81309 + dependencies = [ 81310 + sources."bn.js-5.2.0" 81311 + ]; 81312 + }) 81313 + sources."ln-service-53.17.1" 81314 + sources."psbt-2.4.0" 81315 + ]; 81316 + }) 81440 81317 sources."invoices-2.0.7" 81318 + (sources."lightning-5.16.1" // { 81319 + dependencies = [ 81320 + sources."async-3.2.3" 81321 + (sources."bolt07-1.8.1" // { 81322 + dependencies = [ 81323 + sources."bn.js-5.2.0" 81324 + ]; 81325 + }) 81326 + (sources."invoices-2.0.6" // { 81327 + dependencies = [ 81328 + sources."bn.js-5.2.0" 81329 + ]; 81330 + }) 81331 + sources."psbt-2.3.0" 81332 + ]; 81333 + }) 81334 + (sources."ln-sync-3.12.1" // { 81335 + dependencies = [ 81336 + sources."@types/node-17.0.33" 81337 + sources."async-3.2.3" 81338 + sources."bolt07-1.8.1" 81339 + sources."invoices-2.0.6" 81340 + (sources."lightning-5.16.0" // { 81341 + dependencies = [ 81342 + sources."psbt-2.0.1" 81343 + ]; 81344 + }) 81345 + sources."ln-service-53.17.0" 81346 + (sources."psbt-2.3.0" // { 81347 + dependencies = [ 81348 + sources."bn.js-5.2.1" 81349 + ]; 81350 + }) 81351 + sources."type-fest-2.12.2" 81352 + sources."ws-8.6.0" 81353 + ]; 81354 + }) 81355 + sources."type-fest-2.13.0" 81356 + sources."ws-8.7.0" 81441 81357 ]; 81442 81358 }) 81443 81359 sources."parseurl-1.3.3" ··· 81447 81363 sources."prepend-http-2.0.0" 81448 81364 (sources."probing-2.0.6" // { 81449 81365 dependencies = [ 81366 + sources."@grpc/proto-loader-0.6.12" 81367 + sources."@types/node-17.0.38" 81450 81368 sources."async-3.2.3" 81369 + sources."asyncjs-util-1.2.9" 81451 81370 sources."bn.js-5.2.0" 81371 + (sources."lightning-5.16.1" // { 81372 + dependencies = [ 81373 + sources."bn.js-5.2.1" 81374 + (sources."bolt07-1.8.1" // { 81375 + dependencies = [ 81376 + sources."bn.js-5.2.0" 81377 + ]; 81378 + }) 81379 + ]; 81380 + }) 81452 81381 (sources."ln-service-53.17.1" // { 81453 81382 dependencies = [ 81454 81383 sources."bolt07-1.8.1" 81455 81384 ]; 81456 81385 }) 81386 + (sources."psbt-2.3.0" // { 81387 + dependencies = [ 81388 + sources."bn.js-5.2.1" 81389 + ]; 81390 + }) 81391 + sources."type-fest-2.13.0" 81392 + sources."ws-8.7.0" 81457 81393 ]; 81458 81394 }) 81459 81395 sources."process-nextick-args-2.0.1" ··· 81543 81479 sources."text-hex-1.0.0" 81544 81480 sources."through-2.3.8" 81545 81481 sources."tiny-emitter-2.1.0" 81546 - (sources."tiny-secp256k1-2.2.1" // { 81547 - dependencies = [ 81548 - sources."uint8array-tools-0.0.7" 81549 - ]; 81550 - }) 81482 + sources."tiny-secp256k1-2.2.1" 81551 81483 sources."tmp-0.0.29" 81552 81484 sources."to-readable-stream-1.0.0" 81553 81485 sources."toidentifier-1.0.1" ··· 81557 81489 sources."tslib-2.4.0" 81558 81490 sources."tweetnacl-1.0.3" 81559 81491 sources."tweetnacl-util-0.15.1" 81560 - sources."type-fest-2.13.0" 81492 + sources."type-fest-0.21.3" 81561 81493 sources."type-is-1.6.18" 81562 81494 sources."typedarray-0.0.6" 81563 81495 sources."typedarray-to-buffer-3.1.5" 81564 81496 sources."typeforce-1.18.0" 81565 - sources."uint8array-tools-0.0.6" 81497 + sources."uint8array-tools-0.0.7" 81566 81498 sources."unique-string-2.0.0" 81567 81499 sources."unpipe-1.0.0" 81568 81500 (sources."update-notifier-5.1.0" // { ··· 81607 81539 }) 81608 81540 sources."wrappy-1.0.2" 81609 81541 sources."write-file-atomic-3.0.3" 81610 - sources."ws-8.7.0" 81542 + sources."ws-8.6.0" 81611 81543 sources."xdg-basedir-4.0.0" 81612 81544 sources."y18n-5.0.8" 81613 81545 sources."yallist-4.0.0" ··· 82120 82052 sources."@types/component-emitter-1.2.11" 82121 82053 sources."@types/cookie-0.4.1" 82122 82054 sources."@types/cors-2.8.12" 82123 - sources."@types/node-17.0.42" 82055 + sources."@types/node-18.0.0" 82124 82056 sources."accepts-1.3.8" 82125 82057 sources."ansi-regex-2.1.1" 82126 82058 sources."ansi-styles-2.2.1" ··· 82343 82275 sources."@babel/code-frame-7.16.7" 82344 82276 sources."@babel/helper-validator-identifier-7.16.7" 82345 82277 sources."@babel/highlight-7.17.12" 82346 - sources."@babel/parser-7.18.4" 82278 + sources."@babel/parser-7.18.5" 82347 82279 sources."@babel/types-7.18.4" 82348 82280 sources."@kwsites/file-exists-1.1.1" 82349 82281 sources."@kwsites/promise-deferred-1.1.1" ··· 82809 82741 sources."@protobufjs/pool-1.1.0" 82810 82742 sources."@protobufjs/utf8-1.1.0" 82811 82743 sources."@types/long-4.0.2" 82812 - sources."@types/node-17.0.42" 82744 + sources."@types/node-18.0.0" 82813 82745 sources."addr-to-ip-port-1.5.4" 82814 82746 sources."airplay-js-0.2.16" 82815 82747 sources."ajv-6.12.6" ··· 83816 83748 cdk8s-cli = nodeEnv.buildNodePackage { 83817 83749 name = "cdk8s-cli"; 83818 83750 packageName = "cdk8s-cli"; 83819 - version = "2.0.17"; 83751 + version = "2.0.21"; 83820 83752 src = fetchurl { 83821 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.17.tgz"; 83822 - sha512 = "qP/mVzzVx84U5ltNG8VNb6u0agiosNBoBp+qpUmmE5wRjwGB6uA42iybO8/3wLxFyGfeQ81uSK2CmRWnOaKtmg=="; 83753 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.21.tgz"; 83754 + sha512 = "jh1whLH0laYjFVOKOjWeFQJk5TUXvP4k2exHiV8rEPmooYrO5VdHmE76xYLaPvAJmCra2CIXzxky917eqtmYnQ=="; 83823 83755 }; 83824 83756 dependencies = [ 83825 83757 sources."@jsii/check-node-1.60.1" ··· 83838 83770 sources."call-bind-1.0.2" 83839 83771 sources."camelcase-6.3.0" 83840 83772 sources."case-1.6.3" 83841 - sources."cdk8s-2.3.23" 83842 - sources."cdk8s-plus-22-2.0.0-rc.15" 83773 + sources."cdk8s-2.3.28" 83774 + sources."cdk8s-plus-22-2.0.0-rc.19" 83843 83775 sources."chalk-4.1.2" 83844 83776 sources."cliui-7.0.4" 83845 83777 sources."clone-2.1.2" ··· 83852 83784 sources."color-name-1.1.4" 83853 83785 sources."colors-1.4.0" 83854 83786 sources."commonmark-0.30.0" 83855 - sources."constructs-10.1.35" 83787 + sources."constructs-10.1.41" 83856 83788 sources."date-format-4.0.11" 83857 83789 sources."debug-4.3.4" 83858 83790 sources."decamelize-5.0.1" ··· 83942 83874 sources."yargs-16.2.0" 83943 83875 ]; 83944 83876 }) 83945 - (sources."jsii-srcmak-0.1.587" // { 83877 + (sources."jsii-srcmak-0.1.591" // { 83946 83878 dependencies = [ 83947 83879 sources."fs-extra-9.1.0" 83948 83880 ]; 83949 83881 }) 83950 83882 sources."json-schema-0.4.0" 83951 83883 sources."json-schema-traverse-1.0.0" 83952 - sources."json2jsii-0.3.37" 83884 + sources."json2jsii-0.3.41" 83953 83885 sources."jsonfile-6.1.0" 83954 83886 sources."locate-path-5.0.0" 83955 83887 sources."log4js-6.5.2" ··· 84054 83986 sources."@babel/generator-7.18.2" 84055 83987 sources."@babel/helper-validator-identifier-7.16.7" 84056 83988 sources."@babel/highlight-7.17.12" 84057 - sources."@babel/parser-7.18.4" 83989 + sources."@babel/parser-7.18.5" 84058 83990 sources."@babel/template-7.16.7" 84059 83991 sources."@babel/types-7.18.4" 84060 83992 sources."@cdktf/hcl2cdk-0.11.2" ··· 84090 84022 sources."@sentry/node-6.19.7" 84091 84023 sources."@sentry/types-6.19.7" 84092 84024 sources."@sentry/utils-6.19.7" 84093 - sources."@types/node-17.0.42" 84094 - sources."@types/node-fetch-2.6.1" 84025 + sources."@types/node-18.0.0" 84026 + sources."@types/node-fetch-2.6.2" 84095 84027 sources."@types/yargs-17.0.10" 84096 84028 sources."@types/yargs-parser-21.0.0" 84097 84029 sources."@xmldom/xmldom-0.8.2" ··· 84126 84058 sources."combined-stream-1.0.8" 84127 84059 sources."commonmark-0.30.0" 84128 84060 sources."concat-map-0.0.1" 84129 - sources."constructs-10.1.35" 84061 + sources."constructs-10.1.41" 84130 84062 sources."cookie-0.4.2" 84131 84063 sources."cross-spawn-7.0.3" 84132 84064 sources."date-format-4.0.11" ··· 84275 84207 sources."yargs-parser-20.2.9" 84276 84208 ]; 84277 84209 }) 84278 - (sources."jsii-srcmak-0.1.587" // { 84210 + (sources."jsii-srcmak-0.1.591" // { 84279 84211 dependencies = [ 84280 84212 sources."fs-extra-9.1.0" 84281 84213 sources."jsonfile-6.1.0" ··· 84319 84251 sources."path-is-absolute-1.0.1" 84320 84252 sources."path-key-3.1.1" 84321 84253 sources."picomatch-2.3.1" 84322 - sources."prettier-2.6.2" 84254 + sources."prettier-2.7.0" 84323 84255 sources."punycode-2.1.1" 84324 84256 sources."queue-microtask-1.2.3" 84325 84257 sources."regexp.prototype.flags-1.4.3" ··· 84701 84633 bypassCache = true; 84702 84634 reconstructLock = true; 84703 84635 }; 84636 + coc-docker = nodeEnv.buildNodePackage { 84637 + name = "coc-docker"; 84638 + packageName = "coc-docker"; 84639 + version = "0.5.0"; 84640 + src = fetchurl { 84641 + url = "https://registry.npmjs.org/coc-docker/-/coc-docker-0.5.0.tgz"; 84642 + sha512 = "ivLkxcmRgvb1yjYxNqm+kZvjqvKpUEzLOAubwFADY+NDb+rpojnz1jqirJgPztNeqdd12/vcszd5GX4ISUxjlA=="; 84643 + }; 84644 + dependencies = [ 84645 + sources."dockerfile-ast-0.1.0" 84646 + sources."dockerfile-language-server-nodejs-0.2.2" 84647 + sources."dockerfile-language-service-0.1.1" 84648 + sources."dockerfile-utils-0.1.1" 84649 + sources."tslib-2.4.0" 84650 + sources."vscode-jsonrpc-8.0.1" 84651 + (sources."vscode-languageserver-7.0.0" // { 84652 + dependencies = [ 84653 + sources."vscode-jsonrpc-6.0.0" 84654 + sources."vscode-languageserver-protocol-3.16.0" 84655 + sources."vscode-languageserver-types-3.16.0" 84656 + ]; 84657 + }) 84658 + sources."vscode-languageserver-protocol-3.17.1" 84659 + sources."vscode-languageserver-types-3.17.1" 84660 + ]; 84661 + buildInputs = globalBuildInputs; 84662 + meta = { 84663 + description = "docker extension for coc"; 84664 + license = "MIT"; 84665 + }; 84666 + production = true; 84667 + bypassCache = true; 84668 + reconstructLock = true; 84669 + }; 84704 84670 coc-emmet = nodeEnv.buildNodePackage { 84705 84671 name = "coc-emmet"; 84706 84672 packageName = "coc-emmet"; ··· 85277 85243 sha512 = "t/j62Sjq/eBcaN90b4KPNDuZBP3K+TomXj9RLdiJX0zE7RG2byqsxVTnVKAk9c+qE05jv16C5Zv1qv97ZKcA4g=="; 85278 85244 }; 85279 85245 dependencies = [ 85280 - sources."prettier-2.6.2" 85246 + sources."prettier-2.7.0" 85281 85247 ]; 85282 85248 buildInputs = globalBuildInputs; 85283 85249 meta = { ··· 85298 85264 sha512 = "cQ8JXEofYh5jHv/1KuMOzLtA4By5IHfKSv6Nh7SfZ771tfAFSiEevqONhcjeqQSPVTzwL5v/u57qWN45/tpEeg=="; 85299 85265 }; 85300 85266 dependencies = [ 85301 - sources."pyright-1.1.253" 85267 + sources."pyright-1.1.254" 85302 85268 ]; 85303 85269 buildInputs = globalBuildInputs; 85304 85270 meta = { ··· 85387 85353 bypassCache = true; 85388 85354 reconstructLock = true; 85389 85355 }; 85356 + coc-sh = nodeEnv.buildNodePackage { 85357 + name = "coc-sh"; 85358 + packageName = "coc-sh"; 85359 + version = "0.7.0"; 85360 + src = fetchurl { 85361 + url = "https://registry.npmjs.org/coc-sh/-/coc-sh-0.7.0.tgz"; 85362 + sha512 = "HGUBtksIRvjTcempnZz/oUoVr3XNNol5sJO+Pv8JGIihKVBougOVA4MkaJmSU0R+1WP+XL+feALf7edTdqUqlw=="; 85363 + }; 85364 + dependencies = [ 85365 + sources."ajv-6.12.6" 85366 + sources."asn1-0.2.6" 85367 + sources."assert-plus-1.0.0" 85368 + sources."asynckit-0.4.0" 85369 + sources."aws-sign2-0.7.0" 85370 + sources."aws4-1.11.0" 85371 + sources."balanced-match-1.0.2" 85372 + sources."bash-language-server-3.0.3" 85373 + sources."bcrypt-pbkdf-1.0.2" 85374 + sources."brace-expansion-2.0.1" 85375 + sources."caseless-0.12.0" 85376 + sources."combined-stream-1.0.8" 85377 + sources."core-util-is-1.0.2" 85378 + sources."dashdash-1.14.1" 85379 + sources."delayed-stream-1.0.0" 85380 + sources."domino-2.1.6" 85381 + sources."ecc-jsbn-0.1.2" 85382 + sources."extend-3.0.2" 85383 + sources."extsprintf-1.3.0" 85384 + sources."fast-deep-equal-3.1.3" 85385 + sources."fast-json-stable-stringify-2.1.0" 85386 + sources."forever-agent-0.6.1" 85387 + sources."form-data-2.3.3" 85388 + sources."fs.realpath-1.0.0" 85389 + sources."fuzzy-search-3.2.1" 85390 + sources."getpass-0.1.7" 85391 + sources."glob-8.0.3" 85392 + sources."har-schema-2.0.0" 85393 + sources."har-validator-5.1.5" 85394 + sources."http-signature-1.2.0" 85395 + sources."inflight-1.0.6" 85396 + sources."inherits-2.0.4" 85397 + sources."is-typedarray-1.0.0" 85398 + sources."isstream-0.1.2" 85399 + sources."jsbn-0.1.1" 85400 + sources."json-schema-0.4.0" 85401 + sources."json-schema-traverse-0.4.1" 85402 + sources."json-stringify-safe-5.0.1" 85403 + sources."jsprim-1.4.2" 85404 + sources."lodash-4.17.21" 85405 + sources."mime-db-1.52.0" 85406 + sources."mime-types-2.1.35" 85407 + sources."minimatch-5.1.0" 85408 + sources."oauth-sign-0.9.0" 85409 + sources."once-1.4.0" 85410 + sources."performance-now-2.1.0" 85411 + sources."psl-1.8.0" 85412 + sources."punycode-2.1.1" 85413 + sources."qs-6.5.3" 85414 + sources."request-2.88.2" 85415 + sources."request-promise-core-1.1.4" 85416 + sources."request-promise-native-1.0.9" 85417 + sources."safe-buffer-5.2.1" 85418 + sources."safer-buffer-2.1.2" 85419 + sources."sshpk-1.17.0" 85420 + sources."stealthy-require-1.1.1" 85421 + sources."tough-cookie-2.5.0" 85422 + sources."tslib-2.4.0" 85423 + sources."tunnel-agent-0.6.0" 85424 + sources."turndown-7.1.1" 85425 + sources."tweetnacl-0.14.5" 85426 + sources."uri-js-4.4.1" 85427 + sources."urijs-1.19.11" 85428 + sources."uuid-3.4.0" 85429 + sources."verror-1.10.0" 85430 + sources."vscode-jsonrpc-8.0.1" 85431 + sources."vscode-languageserver-6.1.1" 85432 + sources."vscode-languageserver-protocol-3.17.1" 85433 + sources."vscode-languageserver-textdocument-1.0.5" 85434 + sources."vscode-languageserver-types-3.17.1" 85435 + sources."web-tree-sitter-0.20.5" 85436 + sources."wrappy-1.0.2" 85437 + ]; 85438 + buildInputs = globalBuildInputs; 85439 + meta = { 85440 + description = "sh extension for coc"; 85441 + license = "MIT"; 85442 + }; 85443 + production = true; 85444 + bypassCache = true; 85445 + reconstructLock = true; 85446 + }; 85390 85447 coc-smartf = nodeEnv.buildNodePackage { 85391 85448 name = "coc-smartf"; 85392 85449 packageName = "coc-smartf"; ··· 85408 85465 coc-snippets = nodeEnv.buildNodePackage { 85409 85466 name = "coc-snippets"; 85410 85467 packageName = "coc-snippets"; 85411 - version = "3.0.13"; 85468 + version = "3.0.14"; 85412 85469 src = fetchurl { 85413 - url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.0.13.tgz"; 85414 - sha512 = "w/eaWOJfp0BVL80bHFaI3RypdW1PGgU1NXNKrGzsKDvKia0npYjrgzOT7aRfiaZ1GDn8K/XLrigg8CpanKwFjg=="; 85470 + url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.0.14.tgz"; 85471 + sha512 = "aYlupbhcFlm03c4yGE8cv1x+s8Ur9VluA050QLzvEynbjHnzOGYZS97qwqgvWVRH0hKsU1dl50CG3XlF4T9vaA=="; 85415 85472 }; 85416 85473 buildInputs = globalBuildInputs; 85417 85474 meta = { ··· 85450 85507 dependencies = [ 85451 85508 sources."@ampproject/remapping-2.2.0" 85452 85509 sources."@babel/code-frame-7.16.7" 85453 - sources."@babel/compat-data-7.17.10" 85454 - sources."@babel/core-7.18.2" 85510 + sources."@babel/compat-data-7.18.5" 85511 + sources."@babel/core-7.18.5" 85455 85512 (sources."@babel/generator-7.18.2" // { 85456 85513 dependencies = [ 85457 85514 sources."@jridgewell/gen-mapping-0.3.1" ··· 85473 85530 sources."chalk-2.4.2" 85474 85531 ]; 85475 85532 }) 85476 - sources."@babel/parser-7.18.4" 85533 + sources."@babel/parser-7.18.5" 85477 85534 sources."@babel/template-7.16.7" 85478 - sources."@babel/traverse-7.18.2" 85535 + sources."@babel/traverse-7.18.5" 85479 85536 sources."@babel/types-7.18.4" 85480 85537 sources."@jridgewell/gen-mapping-0.1.1" 85481 85538 sources."@jridgewell/resolve-uri-3.0.7" ··· 85515 85572 sources."callsites-3.1.0" 85516 85573 sources."camelcase-5.3.1" 85517 85574 sources."camelcase-keys-6.2.2" 85518 - sources."caniuse-lite-1.0.30001352" 85575 + sources."caniuse-lite-1.0.30001354" 85519 85576 (sources."chalk-4.1.2" // { 85520 85577 dependencies = [ 85521 85578 sources."ansi-styles-4.3.0" ··· 85552 85609 sources."domelementtype-1.3.1" 85553 85610 sources."domhandler-2.4.2" 85554 85611 sources."domutils-1.7.0" 85555 - sources."electron-to-chromium-1.4.152" 85612 + sources."electron-to-chromium-1.4.157" 85556 85613 sources."emoji-regex-8.0.0" 85557 85614 sources."entities-1.1.2" 85558 85615 sources."error-ex-1.3.2" ··· 85789 85846 bypassCache = true; 85790 85847 reconstructLock = true; 85791 85848 }; 85849 + coc-sumneko-lua = nodeEnv.buildNodePackage { 85850 + name = "coc-sumneko-lua"; 85851 + packageName = "coc-sumneko-lua"; 85852 + version = "0.0.28"; 85853 + src = fetchurl { 85854 + url = "https://registry.npmjs.org/coc-sumneko-lua/-/coc-sumneko-lua-0.0.28.tgz"; 85855 + sha512 = "vuxtSC56gNTyDl/Nqj+Lc9SkXDs86TzwT8Tb4kRCaa8mtYolDCPcKh1sThDDJkwnRBq+eUW8n+nq/xF8RpYdxA=="; 85856 + }; 85857 + buildInputs = globalBuildInputs; 85858 + meta = { 85859 + description = "Lua extension using sumneko lua-language-server for coc.nvim"; 85860 + license = "MIT"; 85861 + }; 85862 + production = true; 85863 + bypassCache = true; 85864 + reconstructLock = true; 85865 + }; 85866 + coc-sqlfluff = nodeEnv.buildNodePackage { 85867 + name = "coc-sqlfluff"; 85868 + packageName = "coc-sqlfluff"; 85869 + version = "0.8.0"; 85870 + src = fetchurl { 85871 + url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.8.0.tgz"; 85872 + sha512 = "cWJ4zkn6lcZhGD+OU/6XQT+cggQ3cIPtumEtEuznrUnneLm9hAugGu7J3YpnScgmpCgO55qgwzj+IeClSjOFmg=="; 85873 + }; 85874 + buildInputs = globalBuildInputs; 85875 + meta = { 85876 + description = "SQLFluff (A SQL linter and auto-formatter for Humans) extension for coc.nvim"; 85877 + homepage = "https://github.com/yaegassy/coc-sqlfluff#readme"; 85878 + license = "MIT"; 85879 + }; 85880 + production = true; 85881 + bypassCache = true; 85882 + reconstructLock = true; 85883 + }; 85792 85884 coc-tabnine = nodeEnv.buildNodePackage { 85793 85885 name = "coc-tabnine"; 85794 85886 packageName = "coc-tabnine"; ··· 85824 85916 bypassCache = true; 85825 85917 reconstructLock = true; 85826 85918 }; 85919 + coc-toml = nodeEnv.buildNodePackage { 85920 + name = "coc-toml"; 85921 + packageName = "coc-toml"; 85922 + version = "1.2.5"; 85923 + src = fetchurl { 85924 + url = "https://registry.npmjs.org/coc-toml/-/coc-toml-1.2.5.tgz"; 85925 + sha512 = "8ypH+v7PkGfYTfg/7QoUGrpgSidzxwr2uvuTXR3FgzWrLT9OQOvlocH9KfCRsP8IIAbCuMOa/OpStN+pNwO6Ug=="; 85926 + }; 85927 + dependencies = [ 85928 + sources."@taplo/lsp-0.2.4" 85929 + sources."node-fetch-2.6.7" 85930 + sources."tr46-0.0.3" 85931 + sources."webidl-conversions-3.0.1" 85932 + sources."whatwg-url-5.0.0" 85933 + ]; 85934 + buildInputs = globalBuildInputs; 85935 + meta = { 85936 + description = "toml extension for coc.nvim"; 85937 + homepage = "https://github.com/kkiyama117/coc-toml#readme"; 85938 + license = "MIT"; 85939 + }; 85940 + production = true; 85941 + bypassCache = true; 85942 + reconstructLock = true; 85943 + }; 85827 85944 coc-tslint = nodeEnv.buildNodePackage { 85828 85945 name = "coc-tslint"; 85829 85946 packageName = "coc-tslint"; ··· 86095 86212 sources."path-key-3.1.1" 86096 86213 sources."path-parse-1.0.7" 86097 86214 sources."prelude-ls-1.2.1" 86098 - sources."prettier-2.6.2" 86215 + sources."prettier-2.7.0" 86099 86216 sources."progress-2.0.3" 86100 86217 sources."pug-error-2.0.0" 86101 86218 sources."pug-lexer-5.0.1" ··· 86494 86611 concurrently = nodeEnv.buildNodePackage { 86495 86612 name = "concurrently"; 86496 86613 packageName = "concurrently"; 86497 - version = "7.2.1"; 86614 + version = "7.2.2"; 86498 86615 src = fetchurl { 86499 - url = "https://registry.npmjs.org/concurrently/-/concurrently-7.2.1.tgz"; 86500 - sha512 = "7cab/QyqipqghrVr9qZmoWbidu0nHsmxrpNqQ7r/67vfl1DWJElexehQnTH1p+87tDkihaAjM79xTZyBQh7HLw=="; 86616 + url = "https://registry.npmjs.org/concurrently/-/concurrently-7.2.2.tgz"; 86617 + sha512 = "DcQkI0ruil5BA/g7Xy3EWySGrFJovF5RYAYxwGvv9Jf9q9B1v3jPFP2tl6axExNf1qgF30kjoNYrangZ0ey4Aw=="; 86501 86618 }; 86502 86619 dependencies = [ 86503 86620 sources."ansi-regex-5.0.1" ··· 86518 86635 sources."is-fullwidth-code-point-3.0.0" 86519 86636 sources."lodash-4.17.21" 86520 86637 sources."require-directory-2.1.1" 86521 - sources."rxjs-6.6.7" 86638 + sources."rxjs-7.5.5" 86522 86639 sources."shell-quote-1.7.3" 86523 86640 sources."spawn-command-0.0.2" 86524 86641 sources."string-width-4.2.3" 86525 86642 sources."strip-ansi-6.0.1" 86526 86643 sources."supports-color-8.1.1" 86527 86644 sources."tree-kill-1.2.2" 86528 - sources."tslib-1.14.1" 86645 + sources."tslib-2.4.0" 86529 86646 sources."wrap-ansi-7.0.0" 86530 86647 sources."y18n-5.0.8" 86531 86648 sources."yargs-17.5.1" ··· 87357 87474 sources."strip-json-comments-2.0.1" 87358 87475 sources."supports-color-7.2.0" 87359 87476 sources."supports-preserve-symlinks-flag-1.0.0" 87360 - sources."systeminformation-5.11.16" 87477 + sources."systeminformation-5.11.20" 87361 87478 sources."tar-6.1.11" 87362 87479 sources."through-2.3.8" 87363 87480 sources."tmp-0.2.1" ··· 87486 87603 sources."find-up-5.0.0" 87487 87604 sources."function-bind-1.1.1" 87488 87605 sources."glob-parent-5.1.2" 87489 - sources."globby-13.1.1" 87606 + sources."globby-13.1.2" 87490 87607 sources."graceful-fs-4.2.10" 87491 87608 sources."hard-rejection-2.1.0" 87492 87609 sources."has-1.0.3" ··· 87587 87704 sources."@cycle/run-3.4.0" 87588 87705 sources."@cycle/time-0.10.1" 87589 87706 sources."@types/cookiejar-2.1.2" 87590 - sources."@types/node-17.0.42" 87707 + sources."@types/node-18.0.0" 87591 87708 sources."@types/superagent-3.8.2" 87592 87709 sources."ansi-escapes-3.2.0" 87593 87710 sources."ansi-regex-2.1.1" ··· 87883 88000 sources."@cspell/dict-css-2.0.0" 87884 88001 sources."@cspell/dict-dart-1.1.1" 87885 88002 sources."@cspell/dict-django-2.0.0" 87886 - sources."@cspell/dict-docker-1.1.0" 88003 + sources."@cspell/dict-docker-1.1.1" 87887 88004 sources."@cspell/dict-dotnet-2.0.1" 87888 88005 sources."@cspell/dict-elixir-2.0.1" 87889 88006 sources."@cspell/dict-en-gb-1.1.33" 87890 - sources."@cspell/dict-en_us-2.2.5" 87891 - sources."@cspell/dict-filetypes-2.0.1" 88007 + sources."@cspell/dict-en_us-2.2.6" 88008 + sources."@cspell/dict-filetypes-2.0.2" 87892 88009 sources."@cspell/dict-fonts-2.0.0" 87893 88010 sources."@cspell/dict-fullstack-2.0.6" 87894 88011 sources."@cspell/dict-git-1.0.1" 87895 88012 sources."@cspell/dict-golang-3.0.1" 87896 88013 sources."@cspell/dict-haskell-2.0.0" 87897 - sources."@cspell/dict-html-3.0.1" 88014 + sources."@cspell/dict-html-3.0.2" 87898 88015 sources."@cspell/dict-html-symbol-entities-3.0.0" 87899 - sources."@cspell/dict-java-3.0.2" 87900 - sources."@cspell/dict-latex-2.0.5" 88016 + sources."@cspell/dict-java-3.0.3" 88017 + sources."@cspell/dict-latex-2.0.6" 87901 88018 sources."@cspell/dict-lorem-ipsum-2.0.0" 87902 88019 sources."@cspell/dict-lua-2.0.0" 87903 88020 sources."@cspell/dict-node-3.0.1" ··· 87908 88025 sources."@cspell/dict-python-3.0.6" 87909 88026 sources."@cspell/dict-r-1.0.3" 87910 88027 sources."@cspell/dict-ruby-2.0.1" 87911 - sources."@cspell/dict-rust-2.0.0" 88028 + sources."@cspell/dict-rust-2.0.1" 87912 88029 sources."@cspell/dict-scala-2.0.0" 87913 88030 sources."@cspell/dict-software-terms-2.1.8" 87914 88031 sources."@cspell/dict-swift-1.0.3" ··· 88228 88345 }) 88229 88346 sources."diffy-2.1.0" 88230 88347 sources."directory-index-html-2.1.0" 88231 - sources."dns-packet-5.3.1" 88348 + sources."dns-packet-5.4.0" 88232 88349 sources."dom-walk-0.1.2" 88233 88350 sources."dot-prop-4.2.1" 88234 88351 sources."duplexer3-0.1.4" ··· 88703 88820 dependencies = [ 88704 88821 sources."@ampproject/remapping-2.2.0" 88705 88822 sources."@babel/code-frame-7.16.7" 88706 - sources."@babel/compat-data-7.17.10" 88707 - sources."@babel/core-7.18.2" 88823 + sources."@babel/compat-data-7.18.5" 88824 + sources."@babel/core-7.18.5" 88708 88825 (sources."@babel/generator-7.18.2" // { 88709 88826 dependencies = [ 88710 88827 sources."@jridgewell/gen-mapping-0.3.1" ··· 88735 88852 sources."@babel/helper-wrap-function-7.16.8" 88736 88853 sources."@babel/helpers-7.18.2" 88737 88854 sources."@babel/highlight-7.17.12" 88738 - sources."@babel/parser-7.18.4" 88855 + sources."@babel/parser-7.18.5" 88739 88856 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12" 88740 88857 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12" 88741 88858 sources."@babel/plugin-proposal-async-generator-functions-7.17.12" ··· 88785 88902 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 88786 88903 sources."@babel/plugin-transform-modules-amd-7.18.0" 88787 88904 sources."@babel/plugin-transform-modules-commonjs-7.18.2" 88788 - sources."@babel/plugin-transform-modules-systemjs-7.18.4" 88905 + sources."@babel/plugin-transform-modules-systemjs-7.18.5" 88789 88906 sources."@babel/plugin-transform-modules-umd-7.18.0" 88790 88907 sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12" 88791 - sources."@babel/plugin-transform-new-target-7.17.12" 88908 + sources."@babel/plugin-transform-new-target-7.18.5" 88792 88909 sources."@babel/plugin-transform-object-super-7.16.7" 88793 88910 sources."@babel/plugin-transform-parameters-7.17.12" 88794 88911 sources."@babel/plugin-transform-property-literals-7.16.7" ··· 88810 88927 sources."@babel/preset-react-7.17.12" 88811 88928 sources."@babel/runtime-7.18.3" 88812 88929 sources."@babel/template-7.16.7" 88813 - sources."@babel/traverse-7.18.2" 88930 + sources."@babel/traverse-7.18.5" 88814 88931 sources."@babel/types-7.18.4" 88815 88932 sources."@blueprintjs/colors-4.1.3" 88816 - sources."@blueprintjs/core-4.5.0" 88933 + sources."@blueprintjs/core-4.5.1" 88817 88934 sources."@blueprintjs/icons-4.3.0" 88818 88935 sources."@deltachat/message_parser_wasm-0.4.0" 88819 88936 sources."@deltachat/react-qr-reader-4.0.0" ··· 88903 89020 }) 88904 89021 sources."call-bind-1.0.2" 88905 89022 sources."camel-case-4.1.2" 88906 - sources."caniuse-lite-1.0.30001352" 89023 + sources."caniuse-lite-1.0.30001354" 88907 89024 sources."capital-case-1.0.4" 88908 89025 sources."chalk-2.4.2" 88909 89026 sources."change-case-4.1.2" ··· 88936 89053 sources."constant-case-3.0.4" 88937 89054 sources."convert-source-map-1.8.0" 88938 89055 sources."copy-descriptor-0.1.1" 88939 - (sources."core-js-compat-3.22.8" // { 89056 + (sources."core-js-compat-3.23.1" // { 88940 89057 dependencies = [ 88941 89058 sources."semver-7.0.0" 88942 89059 ]; ··· 88960 89077 sources."dot-case-3.0.4" 88961 89078 sources."duplexer3-0.1.4" 88962 89079 sources."earcut-2.2.3" 88963 - (sources."electron-18.3.3" // { 89080 + (sources."electron-18.3.4" // { 88964 89081 dependencies = [ 88965 - sources."@types/node-16.11.39" 89082 + sources."@types/node-16.11.41" 88966 89083 ]; 88967 89084 }) 88968 - sources."electron-to-chromium-1.4.152" 89085 + sources."electron-to-chromium-1.4.157" 88969 89086 sources."emoji-js-clean-4.0.0" 88970 89087 sources."emoji-mart-3.0.1" 88971 89088 sources."emoji-regex-9.2.2" ··· 89747 89864 sources."@types/json-buffer-3.0.0" 89748 89865 sources."@types/keyv-3.1.4" 89749 89866 sources."@types/minimatch-3.0.5" 89750 - sources."@types/node-17.0.42" 89867 + sources."@types/node-18.0.0" 89751 89868 sources."@types/responselike-1.0.0" 89752 89869 sources."@types/yauzl-2.10.0" 89753 89870 sources."abbrev-1.1.1" ··· 90304 90421 dependencies = [ 90305 90422 sources."@ampproject/remapping-2.2.0" 90306 90423 sources."@babel/code-frame-7.16.7" 90307 - sources."@babel/compat-data-7.17.10" 90308 - (sources."@babel/core-7.18.2" // { 90424 + sources."@babel/compat-data-7.18.5" 90425 + (sources."@babel/core-7.18.5" // { 90309 90426 dependencies = [ 90310 90427 sources."semver-6.3.0" 90311 90428 ]; ··· 90333 90450 sources."@babel/helper-validator-option-7.16.7" 90334 90451 sources."@babel/helpers-7.18.2" 90335 90452 sources."@babel/highlight-7.17.12" 90336 - sources."@babel/parser-7.18.4" 90453 + sources."@babel/parser-7.18.5" 90337 90454 sources."@babel/plugin-proposal-object-rest-spread-7.18.0" 90338 90455 sources."@babel/plugin-syntax-jsx-7.17.12" 90339 90456 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 90341 90458 sources."@babel/plugin-transform-parameters-7.17.12" 90342 90459 sources."@babel/plugin-transform-react-jsx-7.17.12" 90343 90460 sources."@babel/template-7.16.7" 90344 - sources."@babel/traverse-7.18.2" 90461 + sources."@babel/traverse-7.18.5" 90345 90462 sources."@babel/types-7.18.4" 90346 90463 sources."@jridgewell/gen-mapping-0.1.1" 90347 90464 sources."@jridgewell/resolve-uri-3.0.7" ··· 90372 90489 sources."callsites-3.1.0" 90373 90490 sources."camelcase-5.3.1" 90374 90491 sources."camelcase-keys-6.2.2" 90375 - sources."caniuse-lite-1.0.30001352" 90492 + sources."caniuse-lite-1.0.30001354" 90376 90493 sources."chalk-2.4.2" 90377 90494 sources."ci-info-2.0.0" 90378 90495 sources."cli-boxes-2.2.1" ··· 90401 90518 ]; 90402 90519 }) 90403 90520 sources."dot-prop-5.3.0" 90404 - sources."electron-to-chromium-1.4.152" 90521 + sources."electron-to-chromium-1.4.157" 90405 90522 sources."emoji-regex-8.0.0" 90406 90523 sources."emojilib-2.4.0" 90407 90524 sources."end-of-stream-1.4.4" ··· 90670 90787 sources."@fluentui/foundation-legacy-8.2.8" 90671 90788 sources."@fluentui/keyboard-key-0.4.1" 90672 90789 sources."@fluentui/merge-styles-8.5.2" 90673 - sources."@fluentui/react-8.73.0" 90790 + sources."@fluentui/react-8.76.0" 90674 90791 sources."@fluentui/react-focus-8.7.0" 90675 - sources."@fluentui/react-hooks-8.5.5" 90792 + sources."@fluentui/react-hooks-8.6.0" 90676 90793 sources."@fluentui/react-portal-compat-context-9.0.0-rc.2" 90677 90794 sources."@fluentui/react-window-provider-2.2.1" 90678 90795 sources."@fluentui/set-version-8.2.1" ··· 90732 90849 sources."@types/cookie-0.4.1" 90733 90850 sources."@types/cors-2.8.12" 90734 90851 sources."@types/express-4.17.13" 90735 - sources."@types/express-serve-static-core-4.17.28" 90852 + sources."@types/express-serve-static-core-4.17.29" 90736 90853 sources."@types/file-type-10.9.1" 90737 90854 sources."@types/js-yaml-4.0.4" 90738 90855 sources."@types/json-schema-7.0.11" ··· 92288 92405 sources."@types/connect-3.4.35" 92289 92406 sources."@types/connect-history-api-fallback-1.3.5" 92290 92407 sources."@types/express-4.17.13" 92291 - sources."@types/express-serve-static-core-4.17.28" 92408 + sources."@types/express-serve-static-core-4.17.29" 92292 92409 sources."@types/glob-7.2.0" 92293 92410 sources."@types/hls.js-0.13.3" 92294 92411 sources."@types/http-proxy-1.17.9" ··· 92298 92415 sources."@types/mime-1.3.2" 92299 92416 sources."@types/minimatch-3.0.5" 92300 92417 sources."@types/minimist-1.2.2" 92301 - sources."@types/node-17.0.42" 92418 + sources."@types/node-18.0.0" 92302 92419 sources."@types/normalize-package-data-2.4.1" 92303 92420 sources."@types/parse-json-4.0.0" 92304 92421 sources."@types/q-1.5.5" ··· 92614 92731 sources."camel-case-3.0.0" 92615 92732 sources."camelcase-5.3.1" 92616 92733 sources."caniuse-api-3.0.0" 92617 - sources."caniuse-lite-1.0.30001352" 92734 + sources."caniuse-lite-1.0.30001354" 92618 92735 sources."case-sensitive-paths-webpack-plugin-2.4.0" 92619 92736 sources."caseless-0.12.0" 92620 92737 sources."chalk-2.4.2" ··· 92855 92972 sources."ecc-jsbn-0.1.2" 92856 92973 sources."ee-first-1.1.1" 92857 92974 sources."ejs-2.7.4" 92858 - sources."electron-to-chromium-1.4.152" 92975 + sources."electron-to-chromium-1.4.157" 92859 92976 (sources."elliptic-6.5.4" // { 92860 92977 dependencies = [ 92861 92978 sources."bn.js-4.12.0" ··· 94483 94600 sources."chalk-2.4.2" 94484 94601 ]; 94485 94602 }) 94486 - sources."@babel/parser-7.18.4" 94603 + sources."@babel/parser-7.18.5" 94487 94604 sources."@babel/runtime-7.9.0" 94488 94605 (sources."@babel/template-7.16.7" // { 94489 94606 dependencies = [ 94490 94607 sources."@babel/code-frame-7.16.7" 94491 94608 ]; 94492 94609 }) 94493 - (sources."@babel/traverse-7.18.2" // { 94610 + (sources."@babel/traverse-7.18.5" // { 94494 94611 dependencies = [ 94495 94612 sources."@babel/code-frame-7.16.7" 94496 94613 ]; ··· 94773 94890 }) 94774 94891 sources."camelcase-6.3.0" 94775 94892 sources."caniuse-api-3.0.0" 94776 - sources."caniuse-lite-1.0.30001352" 94893 + sources."caniuse-lite-1.0.30001354" 94777 94894 (sources."chalk-4.1.2" // { 94778 94895 dependencies = [ 94779 94896 sources."ansi-styles-4.3.0" ··· 95032 95149 sources."duplexer3-0.1.4" 95033 95150 sources."duplexify-3.7.1" 95034 95151 sources."ee-first-1.1.1" 95035 - sources."electron-to-chromium-1.4.152" 95152 + sources."electron-to-chromium-1.4.157" 95036 95153 (sources."elliptic-6.5.4" // { 95037 95154 dependencies = [ 95038 95155 sources."bn.js-4.12.0" ··· 96534 96651 dependencies = [ 96535 96652 sources."@ampproject/remapping-2.2.0" 96536 96653 sources."@babel/code-frame-7.16.7" 96537 - sources."@babel/compat-data-7.17.10" 96538 - sources."@babel/core-7.18.2" 96654 + sources."@babel/compat-data-7.18.5" 96655 + sources."@babel/core-7.18.5" 96539 96656 (sources."@babel/generator-7.18.2" // { 96540 96657 dependencies = [ 96541 96658 sources."@jridgewell/gen-mapping-0.3.1" ··· 96555 96672 sources."@babel/helper-validator-option-7.16.7" 96556 96673 sources."@babel/helpers-7.18.2" 96557 96674 sources."@babel/highlight-7.17.12" 96558 - sources."@babel/parser-7.18.4" 96675 + sources."@babel/parser-7.18.5" 96559 96676 sources."@babel/plugin-proposal-object-rest-spread-7.18.0" 96560 96677 sources."@babel/plugin-syntax-jsx-7.17.12" 96561 96678 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 96563 96680 sources."@babel/plugin-transform-parameters-7.17.12" 96564 96681 sources."@babel/plugin-transform-react-jsx-7.17.12" 96565 96682 sources."@babel/template-7.16.7" 96566 - sources."@babel/traverse-7.18.2" 96683 + sources."@babel/traverse-7.18.5" 96567 96684 sources."@babel/types-7.18.4" 96568 96685 sources."@jridgewell/gen-mapping-0.1.1" 96569 96686 sources."@jridgewell/resolve-uri-3.0.7" ··· 96571 96688 sources."@jridgewell/sourcemap-codec-1.4.13" 96572 96689 sources."@jridgewell/trace-mapping-0.3.13" 96573 96690 sources."@types/minimist-1.2.2" 96574 - sources."@types/node-17.0.42" 96691 + sources."@types/node-18.0.0" 96575 96692 sources."@types/normalize-package-data-2.4.1" 96576 96693 sources."@types/yauzl-2.10.0" 96577 96694 sources."@types/yoga-layout-1.9.2" ··· 96598 96715 sources."callsites-3.1.0" 96599 96716 sources."camelcase-5.3.1" 96600 96717 sources."camelcase-keys-6.2.2" 96601 - sources."caniuse-lite-1.0.30001352" 96718 + sources."caniuse-lite-1.0.30001354" 96602 96719 sources."chalk-2.4.2" 96603 96720 sources."chownr-1.1.4" 96604 96721 sources."ci-info-2.0.0" ··· 96623 96740 }) 96624 96741 sources."delay-5.0.0" 96625 96742 sources."devtools-protocol-0.0.981744" 96626 - sources."electron-to-chromium-1.4.152" 96743 + sources."electron-to-chromium-1.4.157" 96627 96744 sources."emoji-regex-8.0.0" 96628 96745 sources."end-of-stream-1.4.4" 96629 96746 sources."error-ex-1.3.2" ··· 96950 97067 sources."semver-5.7.1" 96951 97068 ]; 96952 97069 }) 96953 - sources."csv-parse-5.1.0" 97070 + sources."csv-parse-5.2.0" 96954 97071 sources."csv-stream-0.2.0" 96955 97072 sources."dashdash-1.14.1" 96956 97073 sources."debug-4.3.4" ··· 96980 97097 sources."fast-json-stable-stringify-2.1.0" 96981 97098 sources."fast-levenshtein-2.0.6" 96982 97099 sources."fastq-1.13.0" 96983 - sources."faunadb-4.5.4" 97100 + sources."faunadb-4.6.0" 96984 97101 (sources."figures-3.2.0" // { 96985 97102 dependencies = [ 96986 97103 sources."escape-string-regexp-1.0.5" ··· 97104 97221 sources."pify-3.0.0" 97105 97222 sources."prelude-ls-1.1.2" 97106 97223 sources."prepend-http-2.0.0" 97107 - sources."prettier-2.6.2" 97224 + sources."prettier-2.7.0" 97108 97225 sources."process-nextick-args-2.0.1" 97109 97226 sources."psl-1.8.0" 97110 97227 sources."punycode-2.1.1" ··· 97200 97317 firebase-tools = nodeEnv.buildNodePackage { 97201 97318 name = "firebase-tools"; 97202 97319 packageName = "firebase-tools"; 97203 - version = "11.0.1"; 97320 + version = "11.1.0"; 97204 97321 src = fetchurl { 97205 - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.0.1.tgz"; 97206 - sha512 = "be5Xx2FbdW0G2YMpxsIcNaFuekeiRgFRPScVbXhnfHLIOUJ/ETYCNrQEndzhprVlawl6l6EW9H18DRx61I5RKQ=="; 97322 + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.1.0.tgz"; 97323 + sha512 = "6nBFOiuxsKl8AbPnsiBck7HT682cHzMuoRrXzajuNWjwTYvh4oW25BF/iLGP7MAGzI4Xuo2NDXwjDLg6HIR78Q=="; 97207 97324 }; 97208 97325 dependencies = [ 97209 97326 (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { ··· 97214 97331 sources."@colors/colors-1.5.0" 97215 97332 sources."@dabh/diagnostics-2.0.3" 97216 97333 sources."@gar/promisify-1.1.3" 97217 - sources."@google-cloud/paginator-3.0.7" 97334 + sources."@google-cloud/paginator-4.0.0" 97218 97335 sources."@google-cloud/precise-date-2.0.4" 97219 97336 sources."@google-cloud/projectify-2.1.1" 97220 97337 sources."@google-cloud/promisify-2.0.4" 97221 - sources."@google-cloud/pubsub-2.19.4" 97338 + (sources."@google-cloud/pubsub-3.0.1" // { 97339 + dependencies = [ 97340 + sources."google-auth-library-8.0.2" 97341 + ]; 97342 + }) 97222 97343 sources."@grpc/grpc-js-1.6.7" 97223 - sources."@grpc/proto-loader-0.6.9" 97344 + sources."@grpc/proto-loader-0.6.13" 97224 97345 sources."@jsdevtools/ono-7.1.3" 97225 - (sources."@npmcli/fs-1.1.1" // { 97346 + (sources."@npmcli/fs-2.1.0" // { 97226 97347 dependencies = [ 97227 97348 sources."semver-7.3.7" 97228 97349 ]; 97229 97350 }) 97230 - (sources."@npmcli/move-file-1.1.2" // { 97351 + (sources."@npmcli/move-file-2.0.0" // { 97231 97352 dependencies = [ 97232 97353 sources."mkdirp-1.0.4" 97233 97354 ]; ··· 97250 97371 sources."@types/duplexify-3.6.1" 97251 97372 sources."@types/json-schema-7.0.11" 97252 97373 sources."@types/long-4.0.2" 97253 - sources."@types/node-17.0.42" 97374 + sources."@types/node-18.0.0" 97254 97375 sources."abbrev-1.1.1" 97255 97376 sources."abort-controller-3.0.0" 97256 97377 sources."accepts-1.3.8" ··· 97311 97432 sources."binary-0.3.0" 97312 97433 sources."binary-extensions-2.2.0" 97313 97434 sources."bl-4.1.0" 97314 - sources."blakejs-1.2.1" 97315 97435 sources."bluebird-3.4.7" 97316 97436 (sources."body-parser-1.20.0" // { 97317 97437 dependencies = [ ··· 97333 97453 sources."buffer-indexof-polyfill-1.0.2" 97334 97454 sources."buffers-0.1.1" 97335 97455 sources."bytes-3.1.2" 97336 - (sources."cacache-15.3.0" // { 97456 + (sources."cacache-16.1.1" // { 97337 97457 dependencies = [ 97458 + sources."brace-expansion-2.0.1" 97459 + sources."glob-8.0.3" 97460 + sources."lru-cache-7.10.1" 97461 + sources."minimatch-5.1.0" 97338 97462 sources."mkdirp-1.0.4" 97339 97463 ]; 97340 97464 }) ··· 97426 97550 ]; 97427 97551 }) 97428 97552 sources."crypto-random-string-2.0.0" 97429 - sources."csv-parse-5.1.0" 97553 + sources."csv-parse-5.2.0" 97430 97554 sources."d-1.0.1" 97431 97555 sources."dashdash-1.14.1" 97432 97556 sources."data-uri-to-buffer-3.0.1" ··· 97490 97614 ]; 97491 97615 }) 97492 97616 sources."exegesis-express-4.0.0" 97493 - sources."exit-code-1.0.2" 97494 97617 (sources."express-4.18.1" // { 97495 97618 dependencies = [ 97496 97619 sources."debug-2.6.9" ··· 97536 97659 }) 97537 97660 sources."fn.name-1.1.0" 97538 97661 sources."forever-agent-0.6.1" 97539 - sources."form-data-2.3.3" 97662 + sources."form-data-4.0.0" 97540 97663 sources."forwarded-0.2.0" 97541 97664 sources."fresh-0.5.2" 97542 97665 sources."fs-constants-1.0.0" ··· 97558 97681 }) 97559 97682 sources."function-bind-1.1.1" 97560 97683 sources."gauge-4.0.4" 97561 - sources."gaxios-4.3.3" 97562 - sources."gcp-metadata-4.3.1" 97684 + sources."gaxios-5.0.0" 97685 + sources."gcp-metadata-5.0.0" 97563 97686 sources."get-caller-file-2.0.5" 97564 97687 sources."get-intrinsic-1.1.2" 97565 97688 sources."get-stream-4.1.0" ··· 97576 97699 sources."glob-slash-1.0.0" 97577 97700 sources."glob-slasher-1.0.1" 97578 97701 sources."global-dirs-2.1.0" 97579 - sources."google-auth-library-7.14.1" 97580 - sources."google-gax-2.30.3" 97702 + (sources."google-auth-library-7.14.1" // { 97703 + dependencies = [ 97704 + sources."gaxios-4.3.3" 97705 + sources."gcp-metadata-4.3.1" 97706 + ]; 97707 + }) 97708 + (sources."google-gax-3.1.1" // { 97709 + dependencies = [ 97710 + sources."google-auth-library-8.0.2" 97711 + ]; 97712 + }) 97581 97713 sources."google-p12-pem-3.1.4" 97582 97714 sources."got-9.6.0" 97583 97715 sources."graceful-fs-4.2.10" 97584 - sources."gtoken-5.3.2" 97716 + (sources."gtoken-5.3.2" // { 97717 + dependencies = [ 97718 + sources."gaxios-4.3.3" 97719 + ]; 97720 + }) 97585 97721 sources."har-schema-2.0.0" 97586 97722 sources."har-validator-5.1.5" 97587 97723 sources."has-1.0.3" ··· 97610 97746 sources."inherits-2.0.4" 97611 97747 sources."ini-1.3.7" 97612 97748 sources."inquirer-8.2.4" 97613 - sources."install-artifact-from-github-1.3.0" 97749 + sources."install-artifact-from-github-1.3.1" 97614 97750 sources."ip-1.1.8" 97615 97751 sources."ip-regex-4.3.0" 97616 97752 sources."ipaddr.js-1.9.1" ··· 97677 97813 }) 97678 97814 sources."leven-3.1.0" 97679 97815 sources."levn-0.3.0" 97816 + sources."libsodium-0.7.10" 97817 + sources."libsodium-wrappers-0.7.10" 97680 97818 sources."listenercount-1.0.1" 97681 97819 sources."lodash-4.17.21" 97682 97820 sources."lodash._objecttypes-2.4.1" ··· 97705 97843 sources."semver-6.3.0" 97706 97844 ]; 97707 97845 }) 97708 - (sources."make-fetch-happen-9.1.0" // { 97846 + (sources."make-fetch-happen-10.1.7" // { 97709 97847 dependencies = [ 97710 - sources."socks-proxy-agent-6.2.1" 97848 + sources."@tootallnate/once-2.0.0" 97849 + sources."http-proxy-agent-5.0.0" 97850 + sources."lru-cache-7.10.1" 97851 + sources."socks-proxy-agent-7.0.0" 97711 97852 ]; 97712 97853 }) 97713 - sources."marked-4.0.16" 97854 + sources."marked-4.0.17" 97714 97855 (sources."marked-terminal-5.1.1" // { 97715 97856 dependencies = [ 97716 97857 sources."ansi-escapes-5.0.0" ··· 97731 97872 sources."minimist-1.2.6" 97732 97873 sources."minipass-3.2.1" 97733 97874 sources."minipass-collect-1.0.2" 97734 - sources."minipass-fetch-1.4.1" 97875 + sources."minipass-fetch-2.1.0" 97735 97876 sources."minipass-flush-1.0.5" 97736 97877 sources."minipass-pipeline-1.2.4" 97737 97878 sources."minipass-sized-1.0.3" ··· 97754 97895 sources."node-emoji-1.11.0" 97755 97896 sources."node-fetch-2.6.7" 97756 97897 sources."node-forge-1.3.1" 97757 - (sources."node-gyp-8.4.1" // { 97898 + (sources."node-gyp-9.0.0" // { 97758 97899 dependencies = [ 97759 97900 sources."semver-7.3.7" 97760 97901 sources."which-2.0.2" ··· 97811 97952 sources."retry-0.12.0" 97812 97953 ]; 97813 97954 }) 97814 - sources."proto3-json-serializer-0.1.9" 97815 - sources."protobufjs-6.11.2" 97955 + sources."proto3-json-serializer-1.0.2" 97956 + sources."protobufjs-6.11.3" 97816 97957 sources."proxy-addr-2.0.7" 97817 97958 (sources."proxy-agent-5.0.0" // { 97818 97959 dependencies = [ ··· 97829 97970 sources."range-parser-1.2.1" 97830 97971 sources."raw-body-2.5.1" 97831 97972 sources."rc-1.2.8" 97832 - sources."re2-1.17.4" 97973 + sources."re2-1.17.7" 97833 97974 sources."readable-stream-3.6.0" 97834 97975 sources."readdir-glob-1.1.1" 97835 97976 sources."readdirp-3.6.0" ··· 97838 97979 sources."registry-url-5.1.0" 97839 97980 (sources."request-2.88.2" // { 97840 97981 dependencies = [ 97982 + sources."form-data-2.3.3" 97841 97983 sources."qs-6.5.3" 97842 97984 sources."uuid-3.4.0" 97843 97985 ]; ··· 97847 97989 sources."responselike-1.0.2" 97848 97990 sources."restore-cursor-3.1.0" 97849 97991 sources."retry-0.13.1" 97850 - sources."retry-request-4.2.2" 97992 + sources."retry-request-5.0.1" 97851 97993 sources."rimraf-3.0.2" 97852 97994 (sources."router-1.3.7" // { 97853 97995 dependencies = [ ··· 97893 98035 sources."source-map-0.6.1" 97894 98036 sources."sprintf-js-1.0.3" 97895 98037 sources."sshpk-1.17.0" 97896 - sources."ssri-8.0.1" 98038 + sources."ssri-9.0.1" 97897 98039 sources."stack-trace-0.0.10" 97898 98040 sources."statuses-2.0.1" 97899 98041 sources."stream-chain-2.2.5" ··· 97957 98099 sources."tslib-2.4.0" 97958 98100 sources."tunnel-agent-0.6.0" 97959 98101 sources."tweetnacl-0.14.5" 97960 - (sources."tweetsodium-0.0.5" // { 97961 - dependencies = [ 97962 - sources."tweetnacl-1.0.3" 97963 - ]; 97964 - }) 97965 98102 sources."type-1.2.0" 97966 98103 sources."type-check-0.3.2" 97967 98104 sources."type-fest-0.21.3" ··· 98321 98458 sources."@types/atob-2.1.2" 98322 98459 sources."@types/bn.js-5.1.0" 98323 98460 sources."@types/inquirer-6.5.0" 98324 - sources."@types/node-17.0.42" 98461 + sources."@types/node-18.0.0" 98325 98462 sources."@types/pbkdf2-3.1.0" 98326 98463 sources."@types/secp256k1-4.0.3" 98327 98464 sources."@types/through-0.0.30" ··· 99073 99210 dependencies = [ 99074 99211 sources."@ampproject/remapping-2.2.0" 99075 99212 sources."@babel/code-frame-7.16.7" 99076 - sources."@babel/compat-data-7.17.10" 99077 - (sources."@babel/core-7.18.2" // { 99213 + sources."@babel/compat-data-7.18.5" 99214 + (sources."@babel/core-7.18.5" // { 99078 99215 dependencies = [ 99079 99216 sources."semver-6.3.0" 99080 99217 ]; ··· 99110 99247 sources."chalk-2.4.2" 99111 99248 ]; 99112 99249 }) 99113 - sources."@babel/parser-7.18.4" 99250 + sources."@babel/parser-7.18.5" 99114 99251 sources."@babel/plugin-syntax-typescript-7.17.12" 99115 99252 sources."@babel/plugin-transform-typescript-7.18.4" 99116 99253 sources."@babel/preset-typescript-7.17.12" 99117 99254 sources."@babel/runtime-7.18.3" 99118 99255 sources."@babel/template-7.16.7" 99119 - sources."@babel/traverse-7.18.2" 99256 + sources."@babel/traverse-7.18.5" 99120 99257 sources."@babel/types-7.18.4" 99121 99258 sources."@hapi/hoek-9.3.0" 99122 99259 sources."@hapi/topo-5.1.0" ··· 99144 99281 sources."@types/http-cache-semantics-4.0.1" 99145 99282 sources."@types/json-buffer-3.0.0" 99146 99283 sources."@types/keyv-3.1.4" 99147 - sources."@types/node-17.0.42" 99148 - sources."@types/node-fetch-2.6.1" 99284 + sources."@types/node-18.0.0" 99285 + sources."@types/node-fetch-2.6.2" 99149 99286 sources."@types/responselike-1.0.0" 99150 99287 sources."@types/yoga-layout-1.9.2" 99151 99288 sources."ansi-align-3.0.1" ··· 99173 99310 }) 99174 99311 sources."call-bind-1.0.2" 99175 99312 sources."camelcase-6.3.0" 99176 - sources."caniuse-lite-1.0.30001352" 99313 + sources."caniuse-lite-1.0.30001354" 99177 99314 (sources."chalk-4.1.2" // { 99178 99315 dependencies = [ 99179 99316 sources."ansi-styles-4.3.0" ··· 99238 99375 sources."domutils-2.8.0" 99239 99376 sources."dot-prop-5.3.0" 99240 99377 sources."duplexer3-0.1.4" 99241 - sources."electron-to-chromium-1.4.152" 99378 + sources."electron-to-chromium-1.4.157" 99242 99379 sources."emoji-regex-8.0.0" 99243 99380 sources."end-of-stream-1.4.4" 99244 99381 sources."entities-2.2.0" ··· 99582 99719 sources."@octokit/core-3.6.0" 99583 99720 sources."@octokit/endpoint-6.0.12" 99584 99721 sources."@octokit/graphql-4.8.0" 99585 - sources."@octokit/openapi-types-11.2.0" 99586 - sources."@octokit/plugin-paginate-rest-2.17.0" 99722 + sources."@octokit/openapi-types-12.1.0" 99723 + sources."@octokit/plugin-paginate-rest-2.18.0" 99587 99724 sources."@octokit/plugin-request-log-1.0.4" 99588 - sources."@octokit/plugin-rest-endpoint-methods-5.13.0" 99725 + sources."@octokit/plugin-rest-endpoint-methods-5.14.0" 99589 99726 sources."@octokit/request-5.6.3" 99590 99727 sources."@octokit/request-error-2.1.0" 99591 99728 sources."@octokit/rest-18.12.0" 99592 - sources."@octokit/types-6.34.0" 99729 + sources."@octokit/types-6.35.0" 99593 99730 sources."@types/normalize-package-data-2.4.1" 99594 99731 sources."ansi-regex-2.1.1" 99595 99732 sources."ansi-styles-4.3.0" ··· 100029 100166 sources."@types/http-cache-semantics-4.0.1" 100030 100167 sources."@types/json-buffer-3.0.0" 100031 100168 sources."@types/keyv-3.1.4" 100032 - sources."@types/node-17.0.42" 100169 + sources."@types/node-18.0.0" 100033 100170 sources."@types/responselike-1.0.0" 100034 100171 sources."ansi-regex-6.0.1" 100035 100172 sources."ansi-styles-4.3.0" ··· 100806 100943 sources."@nodelib/fs.walk-1.2.8" 100807 100944 sources."@sindresorhus/is-0.14.0" 100808 100945 sources."@szmarczak/http-timer-1.1.2" 100809 - sources."@types/node-17.0.42" 100946 + sources."@types/node-18.0.0" 100810 100947 sources."@types/parse-json-4.0.0" 100811 100948 sources."@types/websocket-1.0.2" 100812 100949 sources."abort-controller-3.0.0" ··· 101278 101415 graphql-language-service-cli = nodeEnv.buildNodePackage { 101279 101416 name = "graphql-language-service-cli"; 101280 101417 packageName = "graphql-language-service-cli"; 101281 - version = "3.2.27"; 101418 + version = "3.2.28"; 101282 101419 src = fetchurl { 101283 - url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.2.27.tgz"; 101284 - sha512 = "4YU3ZUH8HTS9ukaPbLxG9BvEM1qNLWwkwb6d82KKhDEU3/K6ShNWwSu1BkD5TAauY4rbQNDNhl3UrejiKbH5bw=="; 101420 + url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.2.28.tgz"; 101421 + sha512 = "ofp4GwXdMR/0VhcpCfNPmL3vAx2NAMP0qVh7t5InUnpwcLp8qoPD5oOCLAAPp4Jd+CUYXkfOjtCtvtEmFS5Abg=="; 101285 101422 }; 101286 101423 dependencies = [ 101287 101424 sources."@babel/code-frame-7.16.7" 101288 101425 sources."@babel/helper-validator-identifier-7.16.7" 101289 101426 sources."@babel/highlight-7.17.12" 101290 - sources."@babel/parser-7.18.4" 101427 + sources."@babel/parser-7.18.5" 101291 101428 sources."@babel/polyfill-7.12.1" 101292 101429 sources."@babel/types-7.18.4" 101293 101430 sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" ··· 101307 101444 sources."@nodelib/fs.scandir-2.1.5" 101308 101445 sources."@nodelib/fs.stat-2.0.5" 101309 101446 sources."@nodelib/fs.walk-1.2.8" 101310 - sources."@types/node-17.0.42" 101447 + sources."@types/node-18.0.0" 101311 101448 sources."@types/parse-json-4.0.0" 101312 101449 sources."@types/ws-8.5.3" 101313 101450 sources."abort-controller-3.0.0" ··· 101348 101485 sources."fastq-1.13.0" 101349 101486 sources."fill-range-7.0.1" 101350 101487 sources."form-data-encoder-1.7.2" 101351 - (sources."formdata-node-4.3.2" // { 101488 + (sources."formdata-node-4.3.3" // { 101352 101489 dependencies = [ 101353 101490 sources."web-streams-polyfill-4.0.0-beta.1" 101354 101491 ]; ··· 101364 101501 sources."globby-11.1.0" 101365 101502 sources."graphql-config-4.3.1" 101366 101503 sources."graphql-executor-0.0.23" 101367 - sources."graphql-language-service-5.0.5" 101368 - sources."graphql-language-service-server-2.7.26" 101504 + sources."graphql-language-service-5.0.6" 101505 + sources."graphql-language-service-server-2.7.27" 101369 101506 sources."graphql-ws-5.9.0" 101370 101507 sources."has-flag-3.0.0" 101371 101508 sources."ieee754-1.2.1" ··· 101425 101562 sources."tr46-0.0.3" 101426 101563 sources."ts-node-9.1.1" 101427 101564 sources."tslib-2.4.0" 101428 - sources."undici-5.4.0" 101565 + sources."undici-5.5.1" 101429 101566 sources."unixify-1.0.0" 101430 101567 sources."value-or-promise-1.0.11" 101431 101568 sources."vscode-jsonrpc-5.0.1" ··· 101540 101677 }) 101541 101678 sources."@oclif/screen-1.0.4" 101542 101679 sources."@types/json-schema-7.0.9" 101543 - sources."@types/node-17.0.42" 101680 + sources."@types/node-18.0.0" 101544 101681 sources."@types/parse-json-4.0.0" 101545 101682 sources."@types/ws-8.5.3" 101546 101683 sources."abort-controller-3.0.0" ··· 101644 101781 ]; 101645 101782 }) 101646 101783 sources."form-data-encoder-1.7.2" 101647 - (sources."formdata-node-4.3.2" // { 101784 + (sources."formdata-node-4.3.3" // { 101648 101785 dependencies = [ 101649 101786 sources."web-streams-polyfill-4.0.0-beta.1" 101650 101787 ]; ··· 101806 101943 sources."ts-node-9.1.1" 101807 101944 sources."tslib-2.4.0" 101808 101945 sources."type-is-1.6.18" 101809 - sources."undici-5.4.0" 101946 + sources."undici-5.5.1" 101810 101947 sources."uniq-1.0.1" 101811 101948 sources."universalify-0.1.2" 101812 101949 sources."unixify-1.0.0" ··· 102106 102243 sources."isarray-0.0.1" 102107 102244 sources."lodash-4.17.21" 102108 102245 sources."map-canvas-0.1.5" 102109 - sources."marked-4.0.16" 102246 + sources."marked-4.0.17" 102110 102247 (sources."marked-terminal-5.1.1" // { 102111 102248 dependencies = [ 102112 102249 sources."chalk-5.0.1" ··· 102137 102274 sources."supports-color-7.2.0" 102138 102275 ]; 102139 102276 }) 102140 - sources."systeminformation-5.11.16" 102277 + sources."systeminformation-5.11.20" 102141 102278 sources."term-canvas-0.0.5" 102142 102279 sources."type-fest-1.4.0" 102143 102280 sources."wordwrap-0.0.3" ··· 103270 103407 sha512 = "U195U0rkLkOuqeG02DRdl/yG2ulNkiMdQnrgAIy2nBn/QXCqyxjFXG1cnbHX7gPXA7d+Qv6kzWDn0K/yn/z+BQ=="; 103271 103408 }; 103272 103409 dependencies = [ 103410 + sources."abort-controller-3.0.0" 103273 103411 sources."argparse-1.0.10" 103274 103412 sources."assert-plus-1.0.0" 103275 103413 sources."autocast-0.0.4" ··· 103283 103421 sources."css-color-names-1.0.1" 103284 103422 sources."dashdash-1.14.1" 103285 103423 sources."deepmerge-3.3.0" 103424 + sources."event-target-shim-5.0.1" 103286 103425 sources."extsprintf-1.4.1" 103287 103426 sources."fs.realpath-1.0.0" 103288 103427 sources."fuzzyset.js-0.0.1" ··· 103297 103436 sources."npm-2.15.12" 103298 103437 sources."once-1.4.0" 103299 103438 sources."path-is-absolute-1.0.1" 103300 - sources."readable-stream-3.6.0" 103301 - sources."safe-buffer-5.2.1" 103439 + sources."readable-stream-4.0.0" 103302 103440 sources."sprintf-js-1.0.3" 103303 - sources."string_decoder-1.3.0" 103304 103441 sources."tabula-1.10.0" 103305 - sources."util-deprecate-1.0.2" 103306 103442 sources."verror-1.10.1" 103307 103443 sources."wrappy-1.0.2" 103308 103444 sources."yamljs-0.3.0" ··· 103338 103474 sources."assert-plus-1.0.0" 103339 103475 sources."async-2.6.4" 103340 103476 sources."asynckit-0.4.0" 103341 - sources."aws-sdk-2.1152.0" 103477 + sources."aws-sdk-2.1155.0" 103342 103478 sources."aws-sign2-0.7.0" 103343 103479 sources."aws4-1.11.0" 103344 103480 sources."base64-js-1.5.1" ··· 103440 103576 sources."lodash.reject-4.6.0" 103441 103577 sources."lodash.some-4.6.0" 103442 103578 sources."lodash.uniq-4.5.0" 103443 - sources."marked-4.0.16" 103579 + sources."marked-4.0.17" 103444 103580 sources."mime-db-1.52.0" 103445 103581 sources."mime-types-2.1.35" 103446 103582 sources."minimist-1.2.6" ··· 104817 104953 sources."tslib-1.14.1" 104818 104954 ]; 104819 104955 }) 104820 - sources."@aws-sdk/abort-controller-3.78.0" 104956 + sources."@aws-sdk/abort-controller-3.110.0" 104821 104957 sources."@aws-sdk/chunked-blob-reader-3.55.0" 104822 - sources."@aws-sdk/chunked-blob-reader-native-3.58.0" 104823 - (sources."@aws-sdk/client-s3-3.107.0" // { 104958 + sources."@aws-sdk/chunked-blob-reader-native-3.109.0" 104959 + (sources."@aws-sdk/client-s3-3.110.0" // { 104824 104960 dependencies = [ 104825 104961 sources."fast-xml-parser-3.19.0" 104826 104962 ]; 104827 104963 }) 104828 - sources."@aws-sdk/client-sso-3.105.0" 104829 - (sources."@aws-sdk/client-sts-3.105.0" // { 104964 + sources."@aws-sdk/client-sso-3.110.0" 104965 + (sources."@aws-sdk/client-sts-3.110.0" // { 104830 104966 dependencies = [ 104831 104967 sources."fast-xml-parser-3.19.0" 104832 104968 ]; 104833 104969 }) 104834 - sources."@aws-sdk/config-resolver-3.80.0" 104835 - sources."@aws-sdk/credential-provider-env-3.78.0" 104836 - sources."@aws-sdk/credential-provider-imds-3.81.0" 104837 - sources."@aws-sdk/credential-provider-ini-3.105.0" 104838 - sources."@aws-sdk/credential-provider-node-3.105.0" 104839 - sources."@aws-sdk/credential-provider-process-3.80.0" 104840 - sources."@aws-sdk/credential-provider-sso-3.105.0" 104841 - sources."@aws-sdk/credential-provider-web-identity-3.78.0" 104842 - sources."@aws-sdk/eventstream-marshaller-3.78.0" 104843 - sources."@aws-sdk/eventstream-serde-browser-3.78.0" 104844 - sources."@aws-sdk/eventstream-serde-config-resolver-3.78.0" 104845 - sources."@aws-sdk/eventstream-serde-node-3.78.0" 104846 - sources."@aws-sdk/eventstream-serde-universal-3.78.0" 104847 - sources."@aws-sdk/fetch-http-handler-3.78.0" 104848 - sources."@aws-sdk/hash-blob-browser-3.78.0" 104849 - sources."@aws-sdk/hash-node-3.78.0" 104850 - sources."@aws-sdk/hash-stream-node-3.78.0" 104851 - sources."@aws-sdk/invalid-dependency-3.78.0" 104970 + sources."@aws-sdk/config-resolver-3.110.0" 104971 + sources."@aws-sdk/credential-provider-env-3.110.0" 104972 + sources."@aws-sdk/credential-provider-imds-3.110.0" 104973 + sources."@aws-sdk/credential-provider-ini-3.110.0" 104974 + sources."@aws-sdk/credential-provider-node-3.110.0" 104975 + sources."@aws-sdk/credential-provider-process-3.110.0" 104976 + sources."@aws-sdk/credential-provider-sso-3.110.0" 104977 + sources."@aws-sdk/credential-provider-web-identity-3.110.0" 104978 + sources."@aws-sdk/eventstream-marshaller-3.110.0" 104979 + sources."@aws-sdk/eventstream-serde-browser-3.110.0" 104980 + sources."@aws-sdk/eventstream-serde-config-resolver-3.110.0" 104981 + sources."@aws-sdk/eventstream-serde-node-3.110.0" 104982 + sources."@aws-sdk/eventstream-serde-universal-3.110.0" 104983 + sources."@aws-sdk/fetch-http-handler-3.110.0" 104984 + sources."@aws-sdk/hash-blob-browser-3.110.0" 104985 + sources."@aws-sdk/hash-node-3.110.0" 104986 + sources."@aws-sdk/hash-stream-node-3.110.0" 104987 + sources."@aws-sdk/invalid-dependency-3.110.0" 104852 104988 sources."@aws-sdk/is-array-buffer-3.55.0" 104853 - sources."@aws-sdk/md5-js-3.78.0" 104854 - sources."@aws-sdk/middleware-bucket-endpoint-3.80.0" 104855 - sources."@aws-sdk/middleware-content-length-3.78.0" 104856 - sources."@aws-sdk/middleware-expect-continue-3.78.0" 104857 - sources."@aws-sdk/middleware-flexible-checksums-3.78.0" 104858 - sources."@aws-sdk/middleware-header-default-3.78.0" 104859 - sources."@aws-sdk/middleware-host-header-3.78.0" 104860 - sources."@aws-sdk/middleware-location-constraint-3.78.0" 104861 - sources."@aws-sdk/middleware-logger-3.78.0" 104862 - sources."@aws-sdk/middleware-recursion-detection-3.105.0" 104863 - (sources."@aws-sdk/middleware-retry-3.80.0" // { 104989 + sources."@aws-sdk/md5-js-3.110.0" 104990 + sources."@aws-sdk/middleware-bucket-endpoint-3.110.0" 104991 + sources."@aws-sdk/middleware-content-length-3.110.0" 104992 + sources."@aws-sdk/middleware-expect-continue-3.110.0" 104993 + sources."@aws-sdk/middleware-flexible-checksums-3.110.0" 104994 + sources."@aws-sdk/middleware-header-default-3.110.0" 104995 + sources."@aws-sdk/middleware-host-header-3.110.0" 104996 + sources."@aws-sdk/middleware-location-constraint-3.110.0" 104997 + sources."@aws-sdk/middleware-logger-3.110.0" 104998 + sources."@aws-sdk/middleware-recursion-detection-3.110.0" 104999 + (sources."@aws-sdk/middleware-retry-3.110.0" // { 104864 105000 dependencies = [ 104865 105001 sources."uuid-8.3.2" 104866 105002 ]; 104867 105003 }) 104868 - sources."@aws-sdk/middleware-sdk-s3-3.105.0" 104869 - sources."@aws-sdk/middleware-sdk-sts-3.78.0" 104870 - sources."@aws-sdk/middleware-serde-3.78.0" 104871 - sources."@aws-sdk/middleware-signing-3.78.0" 104872 - sources."@aws-sdk/middleware-ssec-3.78.0" 104873 - sources."@aws-sdk/middleware-stack-3.78.0" 104874 - sources."@aws-sdk/middleware-user-agent-3.78.0" 104875 - sources."@aws-sdk/node-config-provider-3.80.0" 104876 - sources."@aws-sdk/node-http-handler-3.94.0" 104877 - sources."@aws-sdk/property-provider-3.78.0" 104878 - sources."@aws-sdk/protocol-http-3.78.0" 104879 - sources."@aws-sdk/querystring-builder-3.78.0" 104880 - sources."@aws-sdk/querystring-parser-3.78.0" 104881 - sources."@aws-sdk/s3-request-presigner-3.107.0" 104882 - sources."@aws-sdk/service-error-classification-3.78.0" 104883 - sources."@aws-sdk/shared-ini-file-loader-3.80.0" 104884 - sources."@aws-sdk/signature-v4-3.78.0" 104885 - sources."@aws-sdk/signature-v4-multi-region-3.88.0" 104886 - sources."@aws-sdk/smithy-client-3.99.0" 104887 - sources."@aws-sdk/types-3.78.0" 104888 - sources."@aws-sdk/url-parser-3.78.0" 105004 + sources."@aws-sdk/middleware-sdk-s3-3.110.0" 105005 + sources."@aws-sdk/middleware-sdk-sts-3.110.0" 105006 + sources."@aws-sdk/middleware-serde-3.110.0" 105007 + sources."@aws-sdk/middleware-signing-3.110.0" 105008 + sources."@aws-sdk/middleware-ssec-3.110.0" 105009 + sources."@aws-sdk/middleware-stack-3.110.0" 105010 + sources."@aws-sdk/middleware-user-agent-3.110.0" 105011 + sources."@aws-sdk/node-config-provider-3.110.0" 105012 + sources."@aws-sdk/node-http-handler-3.110.0" 105013 + sources."@aws-sdk/property-provider-3.110.0" 105014 + sources."@aws-sdk/protocol-http-3.110.0" 105015 + sources."@aws-sdk/querystring-builder-3.110.0" 105016 + sources."@aws-sdk/querystring-parser-3.110.0" 105017 + sources."@aws-sdk/s3-request-presigner-3.110.0" 105018 + sources."@aws-sdk/service-error-classification-3.110.0" 105019 + sources."@aws-sdk/shared-ini-file-loader-3.110.0" 105020 + sources."@aws-sdk/signature-v4-3.110.0" 105021 + sources."@aws-sdk/signature-v4-multi-region-3.110.0" 105022 + sources."@aws-sdk/smithy-client-3.110.0" 105023 + sources."@aws-sdk/types-3.110.0" 105024 + sources."@aws-sdk/url-parser-3.110.0" 104889 105025 sources."@aws-sdk/util-arn-parser-3.55.0" 104890 - sources."@aws-sdk/util-base64-browser-3.58.0" 105026 + sources."@aws-sdk/util-base64-browser-3.109.0" 104891 105027 sources."@aws-sdk/util-base64-node-3.55.0" 104892 105028 sources."@aws-sdk/util-body-length-browser-3.55.0" 104893 105029 sources."@aws-sdk/util-body-length-node-3.55.0" 104894 105030 sources."@aws-sdk/util-buffer-from-3.55.0" 104895 - sources."@aws-sdk/util-config-provider-3.55.0" 104896 - sources."@aws-sdk/util-create-request-3.99.0" 104897 - sources."@aws-sdk/util-defaults-mode-browser-3.99.0" 104898 - sources."@aws-sdk/util-defaults-mode-node-3.99.0" 104899 - sources."@aws-sdk/util-format-url-3.78.0" 104900 - sources."@aws-sdk/util-hex-encoding-3.58.0" 105031 + sources."@aws-sdk/util-config-provider-3.109.0" 105032 + sources."@aws-sdk/util-create-request-3.110.0" 105033 + sources."@aws-sdk/util-defaults-mode-browser-3.110.0" 105034 + sources."@aws-sdk/util-defaults-mode-node-3.110.0" 105035 + sources."@aws-sdk/util-format-url-3.110.0" 105036 + sources."@aws-sdk/util-hex-encoding-3.109.0" 104901 105037 sources."@aws-sdk/util-locate-window-3.55.0" 104902 - sources."@aws-sdk/util-middleware-3.78.0" 104903 - sources."@aws-sdk/util-stream-browser-3.78.0" 104904 - sources."@aws-sdk/util-stream-node-3.78.0" 105038 + sources."@aws-sdk/util-middleware-3.110.0" 105039 + sources."@aws-sdk/util-stream-browser-3.110.0" 105040 + sources."@aws-sdk/util-stream-node-3.110.0" 104905 105041 sources."@aws-sdk/util-uri-escape-3.55.0" 104906 - sources."@aws-sdk/util-user-agent-browser-3.78.0" 104907 - sources."@aws-sdk/util-user-agent-node-3.80.0" 104908 - sources."@aws-sdk/util-utf8-browser-3.55.0" 104909 - sources."@aws-sdk/util-utf8-node-3.55.0" 104910 - sources."@aws-sdk/util-waiter-3.78.0" 104911 - sources."@aws-sdk/xml-builder-3.55.0" 105042 + sources."@aws-sdk/util-user-agent-browser-3.110.0" 105043 + sources."@aws-sdk/util-user-agent-node-3.110.0" 105044 + sources."@aws-sdk/util-utf8-browser-3.109.0" 105045 + sources."@aws-sdk/util-utf8-node-3.109.0" 105046 + sources."@aws-sdk/util-waiter-3.110.0" 105047 + sources."@aws-sdk/xml-builder-3.109.0" 104912 105048 sources."@braintree/sanitize-url-3.1.0" 104913 105049 sources."@cronvel/get-pixels-3.4.0" 104914 105050 sources."@gar/promisify-1.1.3" ··· 105017 105153 sources."async-mutex-0.1.4" 105018 105154 sources."asynckit-0.4.0" 105019 105155 sources."atob-2.1.2" 105020 - (sources."aws-sdk-2.1152.0" // { 105156 + (sources."aws-sdk-2.1155.0" // { 105021 105157 dependencies = [ 105022 105158 sources."sax-1.2.1" 105023 105159 sources."uuid-8.0.0" ··· 105875 106011 sha512 = "IdQ8ppSo5LKZ9o3M+LKIIK8i00DIe5msDvG3G81Km+1dhy0XrOWD0Ji8H61ElgyEj/O9KRLokgKbAM9XX9CJAg=="; 105876 106012 }; 105877 106013 dependencies = [ 105878 - sources."@babel/parser-7.18.4" 106014 + sources."@babel/parser-7.18.5" 105879 106015 sources."@types/linkify-it-3.0.2" 105880 106016 sources."@types/markdown-it-12.2.3" 105881 106017 sources."@types/mdurl-1.0.2" ··· 105890 106026 sources."lodash-4.17.21" 105891 106027 sources."markdown-it-12.3.2" 105892 106028 sources."markdown-it-anchor-8.6.4" 105893 - sources."marked-4.0.16" 106029 + sources."marked-4.0.17" 105894 106030 sources."mdurl-1.0.1" 105895 106031 sources."mkdirp-1.0.4" 105896 106032 sources."requizzle-0.2.3" ··· 106035 106171 }; 106036 106172 dependencies = [ 106037 106173 sources."argparse-1.0.10" 106174 + sources."asap-2.0.6" 106038 106175 sources."asynckit-0.4.0" 106039 106176 sources."call-bind-1.0.2" 106040 106177 sources."combined-stream-1.0.8" 106041 106178 sources."commander-4.1.1" 106042 106179 sources."component-emitter-1.3.0" 106043 106180 sources."cookiejar-2.1.3" 106044 - sources."core-util-is-1.0.3" 106045 - sources."debug-3.2.7" 106181 + sources."debug-4.3.4" 106046 106182 sources."delayed-stream-1.0.0" 106183 + sources."dezalgo-1.0.3" 106047 106184 sources."esprima-4.0.1" 106048 - sources."extend-3.0.2" 106049 - sources."form-data-2.5.1" 106050 - sources."formidable-1.2.6" 106185 + sources."fast-safe-stringify-2.1.1" 106186 + sources."form-data-4.0.0" 106187 + (sources."formidable-2.0.1" // { 106188 + dependencies = [ 106189 + sources."qs-6.9.3" 106190 + ]; 106191 + }) 106051 106192 sources."function-bind-1.1.1" 106052 106193 sources."get-intrinsic-1.1.2" 106053 106194 sources."graphlib-2.1.8" 106054 106195 sources."has-1.0.3" 106055 106196 sources."has-symbols-1.0.3" 106197 + sources."hexoid-1.0.0" 106056 106198 sources."inherits-2.0.4" 106057 - sources."isarray-1.0.0" 106058 106199 sources."js-yaml-3.14.1" 106059 106200 sources."lodash-4.17.21" 106201 + sources."lru-cache-6.0.0" 106060 106202 sources."methods-1.1.2" 106061 - sources."mime-1.6.0" 106203 + sources."mime-2.6.0" 106062 106204 sources."mime-db-1.52.0" 106063 106205 sources."mime-types-2.1.35" 106064 - sources."ms-2.1.3" 106206 + sources."ms-2.1.2" 106065 106207 sources."native-promise-only-0.8.1" 106066 106208 sources."object-inspect-1.12.2" 106067 - sources."path-loader-1.0.10" 106068 - sources."process-nextick-args-2.0.1" 106209 + sources."once-1.4.0" 106210 + sources."path-loader-1.0.12" 106069 106211 sources."punycode-2.1.1" 106070 106212 sources."qs-6.10.5" 106071 - sources."readable-stream-2.3.7" 106072 - sources."safe-buffer-5.1.2" 106213 + sources."readable-stream-3.6.0" 106214 + sources."safe-buffer-5.2.1" 106215 + sources."semver-7.3.7" 106073 106216 sources."side-channel-1.0.4" 106074 106217 sources."slash-3.0.0" 106075 106218 sources."sprintf-js-1.0.3" 106076 - sources."string_decoder-1.1.1" 106077 - sources."superagent-3.8.3" 106219 + sources."string_decoder-1.3.0" 106220 + sources."superagent-7.1.6" 106078 106221 sources."uri-js-4.4.1" 106079 106222 sources."util-deprecate-1.0.2" 106223 + sources."wrappy-1.0.2" 106224 + sources."yallist-4.0.0" 106080 106225 ]; 106081 106226 buildInputs = globalBuildInputs; 106082 106227 meta = { ··· 107185 107330 karma = nodeEnv.buildNodePackage { 107186 107331 name = "karma"; 107187 107332 packageName = "karma"; 107188 - version = "6.3.20"; 107333 + version = "6.4.0"; 107189 107334 src = fetchurl { 107190 - url = "https://registry.npmjs.org/karma/-/karma-6.3.20.tgz"; 107191 - sha512 = "HRNQhMuKOwKpjYlWiJP0DUrJOh+QjaI/DTaD8b9rEm4Il3tJ8MijutVZH4ts10LuUFst/CedwTS6vieCN8yTSw=="; 107335 + url = "https://registry.npmjs.org/karma/-/karma-6.4.0.tgz"; 107336 + sha512 = "s8m7z0IF5g/bS5ONT7wsOavhW4i4aFkzD4u4wgzAQWT4HGUeWI3i21cK2Yz6jndMAeHETp5XuNsRoyGJZXVd4w=="; 107192 107337 }; 107193 107338 dependencies = [ 107194 107339 sources."@colors/colors-1.5.0" 107195 107340 sources."@types/component-emitter-1.2.11" 107196 107341 sources."@types/cookie-0.4.1" 107197 107342 sources."@types/cors-2.8.12" 107198 - sources."@types/node-17.0.42" 107343 + sources."@types/node-18.0.0" 107199 107344 sources."accepts-1.3.8" 107200 107345 sources."ansi-regex-5.0.1" 107201 107346 sources."ansi-styles-4.3.0" ··· 107370 107515 sources."@ampproject/remapping-2.2.0" 107371 107516 sources."@babel/cli-7.17.10" 107372 107517 sources."@babel/code-frame-7.16.7" 107373 - sources."@babel/compat-data-7.17.10" 107374 - (sources."@babel/core-7.18.2" // { 107518 + sources."@babel/compat-data-7.18.5" 107519 + (sources."@babel/core-7.18.5" // { 107375 107520 dependencies = [ 107376 107521 sources."semver-6.3.0" 107377 107522 ]; ··· 107399 107544 sources."@babel/helper-validator-option-7.16.7" 107400 107545 sources."@babel/helpers-7.18.2" 107401 107546 sources."@babel/highlight-7.17.12" 107402 - sources."@babel/node-7.17.10" 107403 - sources."@babel/parser-7.18.4" 107547 + sources."@babel/node-7.18.5" 107548 + sources."@babel/parser-7.18.5" 107404 107549 sources."@babel/plugin-syntax-jsx-7.17.12" 107405 107550 sources."@babel/plugin-transform-react-jsx-7.17.12" 107406 107551 sources."@babel/register-7.17.7" 107407 107552 sources."@babel/template-7.16.7" 107408 - sources."@babel/traverse-7.18.2" 107553 + sources."@babel/traverse-7.18.5" 107409 107554 sources."@babel/types-7.18.4" 107410 107555 sources."@jridgewell/gen-mapping-0.1.1" 107411 107556 sources."@jridgewell/resolve-uri-3.0.7" ··· 107417 107562 sources."@nodelib/fs.walk-1.2.8" 107418 107563 sources."@openpgp/hkp-client-0.0.2" 107419 107564 sources."@openpgp/wkd-client-0.0.3" 107420 - sources."@peculiar/asn1-schema-2.1.8" 107565 + sources."@peculiar/asn1-schema-2.1.9" 107421 107566 sources."@peculiar/json-schema-1.1.12" 107422 107567 sources."@peculiar/webcrypto-1.4.0" 107423 107568 sources."@tootallnate/once-1.1.2" ··· 107499 107644 sources."buffer-from-1.1.2" 107500 107645 sources."bytes-3.1.2" 107501 107646 sources."call-bind-1.0.2" 107502 - sources."caniuse-lite-1.0.30001352" 107647 + sources."caniuse-lite-1.0.30001354" 107503 107648 sources."chalk-2.4.2" 107504 107649 sources."chardet-1.4.0" 107505 107650 sources."chownr-1.1.4" ··· 107528 107673 sources."convert-source-map-1.8.0" 107529 107674 sources."cookie-0.5.0" 107530 107675 sources."cookie-signature-1.0.6" 107531 - sources."core-js-3.22.8" 107676 + sources."core-js-3.23.1" 107532 107677 sources."core-util-is-1.0.3" 107533 107678 sources."cors-2.8.5" 107534 107679 sources."create-hash-1.2.0" ··· 107567 107712 }) 107568 107713 sources."dotenv-8.6.0" 107569 107714 sources."ee-first-1.1.1" 107570 - sources."electron-to-chromium-1.4.152" 107715 + sources."electron-to-chromium-1.4.157" 107571 107716 sources."emoji-regex-8.0.0" 107572 107717 sources."encodeurl-1.0.2" 107573 107718 sources."end-of-stream-1.4.4" ··· 108559 108704 lerna = nodeEnv.buildNodePackage { 108560 108705 name = "lerna"; 108561 108706 packageName = "lerna"; 108562 - version = "5.1.1"; 108707 + version = "5.1.4"; 108563 108708 src = fetchurl { 108564 - url = "https://registry.npmjs.org/lerna/-/lerna-5.1.1.tgz"; 108565 - sha512 = "huJ8jHn3qrKVX89b3SumQE5buCfXQ1pyikk7cdmAI9jnwBRMBfMR/3mxd+lonNYJGRFTsQ6yF+AkK/sqRSNXhA=="; 108709 + url = "https://registry.npmjs.org/lerna/-/lerna-5.1.4.tgz"; 108710 + sha512 = "WwSbMslPxWSV7ARsGzkhJAFC1uQcuNGgiy2vZho4bpXVC+A7ZLXy8FngDbcAn7hCGC3ZDnl/4jdY6d84j63Y4g=="; 108566 108711 }; 108567 108712 dependencies = [ 108568 108713 sources."@babel/code-frame-7.16.7" ··· 108580 108725 sources."@gar/promisify-1.1.3" 108581 108726 sources."@hutson/parse-repository-url-3.0.2" 108582 108727 sources."@isaacs/string-locale-compare-1.1.0" 108583 - sources."@lerna/add-5.1.1" 108584 - sources."@lerna/bootstrap-5.1.1" 108585 - sources."@lerna/changed-5.1.1" 108586 - sources."@lerna/check-working-tree-5.1.1" 108587 - sources."@lerna/child-process-5.1.1" 108588 - sources."@lerna/clean-5.1.1" 108589 - sources."@lerna/cli-5.1.1" 108590 - sources."@lerna/collect-uncommitted-5.1.1" 108591 - sources."@lerna/collect-updates-5.1.1" 108592 - sources."@lerna/command-5.1.1" 108593 - (sources."@lerna/conventional-commits-5.1.1" // { 108728 + sources."@lerna/add-5.1.4" 108729 + sources."@lerna/bootstrap-5.1.4" 108730 + sources."@lerna/changed-5.1.4" 108731 + sources."@lerna/check-working-tree-5.1.4" 108732 + sources."@lerna/child-process-5.1.4" 108733 + sources."@lerna/clean-5.1.4" 108734 + sources."@lerna/cli-5.1.4" 108735 + sources."@lerna/collect-uncommitted-5.1.4" 108736 + sources."@lerna/collect-updates-5.1.4" 108737 + sources."@lerna/command-5.1.4" 108738 + (sources."@lerna/conventional-commits-5.1.4" // { 108594 108739 dependencies = [ 108595 108740 sources."pify-5.0.0" 108596 108741 ]; 108597 108742 }) 108598 - (sources."@lerna/create-5.1.1" // { 108743 + (sources."@lerna/create-5.1.4" // { 108599 108744 dependencies = [ 108600 108745 sources."pify-5.0.0" 108601 108746 sources."yargs-parser-20.2.4" 108602 108747 ]; 108603 108748 }) 108604 - sources."@lerna/create-symlink-5.1.1" 108605 - sources."@lerna/describe-ref-5.1.1" 108606 - sources."@lerna/diff-5.1.1" 108607 - sources."@lerna/exec-5.1.1" 108608 - sources."@lerna/filter-options-5.1.1" 108609 - sources."@lerna/filter-packages-5.1.1" 108610 - sources."@lerna/get-npm-exec-opts-5.1.1" 108611 - (sources."@lerna/get-packed-5.1.1" // { 108749 + sources."@lerna/create-symlink-5.1.4" 108750 + sources."@lerna/describe-ref-5.1.4" 108751 + sources."@lerna/diff-5.1.4" 108752 + sources."@lerna/exec-5.1.4" 108753 + sources."@lerna/filter-options-5.1.4" 108754 + sources."@lerna/filter-packages-5.1.4" 108755 + sources."@lerna/get-npm-exec-opts-5.1.4" 108756 + (sources."@lerna/get-packed-5.1.4" // { 108612 108757 dependencies = [ 108613 108758 sources."ssri-8.0.1" 108614 108759 ]; 108615 108760 }) 108616 - sources."@lerna/github-client-5.1.1" 108617 - sources."@lerna/gitlab-client-5.1.1" 108618 - sources."@lerna/global-options-5.1.1" 108619 - sources."@lerna/has-npm-version-5.1.1" 108620 - sources."@lerna/import-5.1.1" 108621 - sources."@lerna/info-5.1.1" 108622 - sources."@lerna/init-5.1.1" 108623 - sources."@lerna/link-5.1.1" 108624 - sources."@lerna/list-5.1.1" 108625 - sources."@lerna/listable-5.1.1" 108626 - sources."@lerna/log-packed-5.1.1" 108627 - (sources."@lerna/npm-conf-5.1.1" // { 108761 + sources."@lerna/github-client-5.1.4" 108762 + sources."@lerna/gitlab-client-5.1.4" 108763 + sources."@lerna/global-options-5.1.4" 108764 + sources."@lerna/has-npm-version-5.1.4" 108765 + sources."@lerna/import-5.1.4" 108766 + sources."@lerna/info-5.1.4" 108767 + sources."@lerna/init-5.1.4" 108768 + sources."@lerna/link-5.1.4" 108769 + sources."@lerna/list-5.1.4" 108770 + sources."@lerna/listable-5.1.4" 108771 + sources."@lerna/log-packed-5.1.4" 108772 + (sources."@lerna/npm-conf-5.1.4" // { 108628 108773 dependencies = [ 108629 108774 sources."pify-5.0.0" 108630 108775 ]; 108631 108776 }) 108632 - (sources."@lerna/npm-dist-tag-5.1.1" // { 108777 + (sources."@lerna/npm-dist-tag-5.1.4" // { 108633 108778 dependencies = [ 108634 108779 sources."cacache-15.3.0" 108635 108780 sources."make-fetch-happen-8.0.14" ··· 108638 108783 sources."ssri-8.0.1" 108639 108784 ]; 108640 108785 }) 108641 - sources."@lerna/npm-install-5.1.1" 108642 - (sources."@lerna/npm-publish-5.1.1" // { 108786 + sources."@lerna/npm-install-5.1.4" 108787 + (sources."@lerna/npm-publish-5.1.4" // { 108643 108788 dependencies = [ 108644 108789 sources."normalize-package-data-3.0.3" 108645 108790 sources."pify-5.0.0" 108646 108791 sources."read-package-json-3.0.1" 108647 108792 ]; 108648 108793 }) 108649 - sources."@lerna/npm-run-script-5.1.1" 108650 - sources."@lerna/otplease-5.1.1" 108651 - sources."@lerna/output-5.1.1" 108652 - (sources."@lerna/pack-directory-5.1.1" // { 108794 + sources."@lerna/npm-run-script-5.1.4" 108795 + sources."@lerna/otplease-5.1.4" 108796 + sources."@lerna/output-5.1.4" 108797 + (sources."@lerna/pack-directory-5.1.4" // { 108653 108798 dependencies = [ 108654 108799 sources."ignore-walk-3.0.4" 108655 108800 sources."npm-packlist-2.2.2" 108656 108801 ]; 108657 108802 }) 108658 - sources."@lerna/package-5.1.1" 108659 - sources."@lerna/package-graph-5.1.1" 108660 - sources."@lerna/prerelease-id-from-version-5.1.1" 108661 - sources."@lerna/profiler-5.1.1" 108662 - sources."@lerna/project-5.1.1" 108663 - sources."@lerna/prompt-5.1.1" 108664 - (sources."@lerna/publish-5.1.1" // { 108803 + sources."@lerna/package-5.1.4" 108804 + sources."@lerna/package-graph-5.1.4" 108805 + sources."@lerna/prerelease-id-from-version-5.1.4" 108806 + sources."@lerna/profiler-5.1.4" 108807 + sources."@lerna/project-5.1.4" 108808 + sources."@lerna/prompt-5.1.4" 108809 + (sources."@lerna/publish-5.1.4" // { 108665 108810 dependencies = [ 108666 108811 sources."cacache-15.3.0" 108667 108812 sources."make-fetch-happen-8.0.14" ··· 108670 108815 sources."ssri-8.0.1" 108671 108816 ]; 108672 108817 }) 108673 - sources."@lerna/pulse-till-done-5.1.1" 108674 - sources."@lerna/query-graph-5.1.1" 108675 - sources."@lerna/resolve-symlink-5.1.1" 108676 - sources."@lerna/rimraf-dir-5.1.1" 108677 - sources."@lerna/run-5.1.1" 108678 - sources."@lerna/run-lifecycle-5.1.1" 108679 - sources."@lerna/run-topologically-5.1.1" 108680 - sources."@lerna/symlink-binary-5.1.1" 108681 - sources."@lerna/symlink-dependencies-5.1.1" 108682 - (sources."@lerna/temp-write-5.1.0" // { 108818 + sources."@lerna/pulse-till-done-5.1.4" 108819 + sources."@lerna/query-graph-5.1.4" 108820 + sources."@lerna/resolve-symlink-5.1.4" 108821 + sources."@lerna/rimraf-dir-5.1.4" 108822 + sources."@lerna/run-5.1.4" 108823 + sources."@lerna/run-lifecycle-5.1.4" 108824 + sources."@lerna/run-topologically-5.1.4" 108825 + sources."@lerna/symlink-binary-5.1.4" 108826 + sources."@lerna/symlink-dependencies-5.1.4" 108827 + (sources."@lerna/temp-write-5.1.4" // { 108683 108828 dependencies = [ 108684 108829 sources."make-dir-3.1.0" 108685 108830 sources."semver-6.3.0" 108686 108831 ]; 108687 108832 }) 108688 - sources."@lerna/timer-5.1.1" 108689 - sources."@lerna/validation-error-5.1.1" 108690 - sources."@lerna/version-5.1.1" 108691 - (sources."@lerna/write-log-file-5.1.1" // { 108833 + sources."@lerna/timer-5.1.4" 108834 + sources."@lerna/validation-error-5.1.4" 108835 + sources."@lerna/version-5.1.4" 108836 + (sources."@lerna/write-log-file-5.1.4" // { 108692 108837 dependencies = [ 108693 108838 sources."write-file-atomic-3.0.3" 108694 108839 ]; ··· 108703 108848 sources."hosted-git-info-5.0.0" 108704 108849 sources."lru-cache-7.10.1" 108705 108850 sources."npm-package-arg-9.0.2" 108706 - sources."npmlog-6.0.2" 108707 108851 sources."validate-npm-package-name-4.0.0" 108708 108852 ]; 108709 108853 }) ··· 108737 108881 ]; 108738 108882 }) 108739 108883 sources."@octokit/graphql-4.8.0" 108740 - sources."@octokit/openapi-types-11.2.0" 108884 + sources."@octokit/openapi-types-12.1.0" 108741 108885 sources."@octokit/plugin-enterprise-rest-6.0.1" 108742 - sources."@octokit/plugin-paginate-rest-2.17.0" 108886 + sources."@octokit/plugin-paginate-rest-2.18.0" 108743 108887 sources."@octokit/plugin-request-log-1.0.4" 108744 - sources."@octokit/plugin-rest-endpoint-methods-5.13.0" 108888 + sources."@octokit/plugin-rest-endpoint-methods-5.14.0" 108745 108889 (sources."@octokit/request-5.6.3" // { 108746 108890 dependencies = [ 108747 108891 sources."is-plain-object-5.0.0" ··· 108749 108893 }) 108750 108894 sources."@octokit/request-error-2.1.0" 108751 108895 sources."@octokit/rest-18.12.0" 108752 - sources."@octokit/types-6.34.0" 108896 + sources."@octokit/types-6.35.0" 108753 108897 sources."@tootallnate/once-1.1.2" 108754 108898 sources."@types/minimatch-3.0.5" 108755 108899 sources."@types/minimist-1.2.2" ··· 108815 108959 sources."clone-1.0.4" 108816 108960 sources."clone-deep-4.0.1" 108817 108961 sources."cmd-shim-4.1.0" 108818 - sources."code-point-at-1.1.0" 108819 108962 sources."color-convert-2.0.1" 108820 108963 sources."color-name-1.1.4" 108821 108964 sources."color-support-1.1.3" ··· 109013 109156 }) 109014 109157 sources."locate-path-5.0.0" 109015 109158 sources."lodash-4.17.21" 109016 - sources."lodash._reinterpolate-3.0.0" 109017 109159 sources."lodash.ismatch-4.4.0" 109018 - sources."lodash.template-4.5.0" 109019 - sources."lodash.templatesettings-4.2.0" 109020 109160 sources."lru-cache-6.0.0" 109021 109161 (sources."make-dir-2.1.0" // { 109022 109162 dependencies = [ ··· 109084 109224 sources."whatwg-url-5.0.0" 109085 109225 ]; 109086 109226 }) 109087 - (sources."node-gyp-8.4.1" // { 109088 - dependencies = [ 109089 - sources."npmlog-6.0.2" 109090 - ]; 109091 - }) 109227 + sources."node-gyp-8.4.1" 109092 109228 sources."nopt-5.0.0" 109093 109229 (sources."normalize-package-data-4.0.0" // { 109094 109230 dependencies = [ ··· 109132 109268 ]; 109133 109269 }) 109134 109270 sources."npm-run-path-4.0.1" 109135 - (sources."npmlog-4.1.2" // { 109136 - dependencies = [ 109137 - sources."ansi-regex-2.1.1" 109138 - sources."aproba-1.2.0" 109139 - sources."are-we-there-yet-1.1.7" 109140 - sources."gauge-2.7.4" 109141 - sources."is-fullwidth-code-point-1.0.0" 109142 - sources."readable-stream-2.3.7" 109143 - sources."safe-buffer-5.1.2" 109144 - sources."string-width-1.0.2" 109145 - sources."string_decoder-1.1.1" 109146 - sources."strip-ansi-3.0.1" 109147 - ]; 109148 - }) 109149 - sources."number-is-nan-1.0.1" 109150 - sources."object-assign-4.1.1" 109271 + sources."npmlog-6.0.2" 109151 109272 sources."object-inspect-1.12.2" 109152 109273 sources."once-1.4.0" 109153 109274 sources."onetime-5.1.2" ··· 109338 109459 buildInputs = globalBuildInputs; 109339 109460 meta = { 109340 109461 description = "A tool for managing JavaScript projects with multiple packages."; 109341 - homepage = "https://github.com/lerna/lerna#readme"; 109462 + homepage = "https://lerna.js.org"; 109342 109463 license = "MIT"; 109343 109464 }; 109344 109465 production = true; ··· 110285 110406 sources."@types/commander-2.12.2" 110286 110407 sources."@types/diff-3.5.5" 110287 110408 sources."@types/get-stdin-5.0.1" 110288 - sources."@types/node-17.0.42" 110409 + sources."@types/node-18.0.0" 110289 110410 sources."commander-2.20.3" 110290 110411 sources."diff-3.5.0" 110291 110412 sources."get-stdin-5.0.1" ··· 110668 110789 sources."link-check-5.1.0" 110669 110790 sources."lodash-4.17.21" 110670 110791 sources."markdown-link-extractor-3.0.2" 110671 - sources."marked-4.0.16" 110792 + sources."marked-4.0.17" 110672 110793 sources."ms-2.1.3" 110673 110794 sources."needle-3.1.0" 110674 110795 sources."nth-check-2.1.1" ··· 111173 111294 }; 111174 111295 dependencies = [ 111175 111296 sources."@braintree/sanitize-url-6.0.0" 111176 - sources."@types/node-17.0.42" 111297 + sources."@types/node-18.0.0" 111177 111298 sources."@types/yauzl-2.10.0" 111178 111299 sources."agent-base-6.0.2" 111179 111300 sources."ansi-styles-4.3.0" ··· 111267 111388 sources."debug-4.3.4" 111268 111389 sources."delaunator-5.0.0" 111269 111390 sources."devtools-protocol-0.0.1001819" 111270 - sources."dompurify-2.3.6" 111391 + sources."dompurify-2.3.8" 111271 111392 sources."end-of-stream-1.4.4" 111272 111393 sources."extract-zip-2.0.1" 111273 111394 sources."fd-slicer-1.1.0" ··· 111287 111408 sources."khroma-2.0.0" 111288 111409 sources."locate-path-5.0.0" 111289 111410 sources."lodash-4.17.21" 111290 - sources."mermaid-9.1.1" 111411 + sources."mermaid-9.1.2" 111291 111412 sources."minimatch-3.1.2" 111292 111413 sources."mkdirp-classic-0.5.3" 111293 111414 sources."moment-mini-2.24.0" ··· 111304 111425 sources."progress-2.0.3" 111305 111426 sources."proxy-from-env-1.1.0" 111306 111427 sources."pump-3.0.0" 111307 - sources."puppeteer-14.3.0" 111428 + sources."puppeteer-14.4.0" 111308 111429 sources."readable-stream-3.6.0" 111309 111430 sources."rimraf-3.0.2" 111310 111431 sources."robust-predicates-3.0.1" ··· 111456 111577 }; 111457 111578 dependencies = [ 111458 111579 sources."argparse-1.0.10" 111580 + sources."asap-2.0.6" 111459 111581 sources."asynckit-0.4.0" 111460 111582 sources."call-bind-1.0.2" 111461 111583 sources."combined-stream-1.0.8" 111462 111584 sources."commander-2.20.3" 111463 111585 sources."component-emitter-1.3.0" 111464 111586 sources."cookiejar-2.1.3" 111465 - sources."core-util-is-1.0.3" 111466 - sources."debug-3.2.7" 111587 + sources."debug-4.3.4" 111467 111588 sources."delayed-stream-1.0.0" 111589 + sources."dezalgo-1.0.3" 111468 111590 sources."esprima-4.0.1" 111469 - sources."extend-3.0.2" 111470 - sources."form-data-2.5.1" 111471 - sources."formidable-1.2.6" 111591 + sources."fast-safe-stringify-2.1.1" 111592 + sources."form-data-4.0.0" 111593 + (sources."formidable-2.0.1" // { 111594 + dependencies = [ 111595 + sources."qs-6.9.3" 111596 + ]; 111597 + }) 111472 111598 sources."function-bind-1.1.1" 111473 111599 sources."get-intrinsic-1.1.2" 111474 111600 sources."graphlib-2.1.8" 111475 111601 sources."has-1.0.3" 111476 111602 sources."has-symbols-1.0.3" 111603 + sources."hexoid-1.0.0" 111477 111604 sources."inherits-2.0.4" 111478 - sources."isarray-1.0.0" 111479 111605 sources."js-yaml-3.14.1" 111480 111606 (sources."json-refs-3.0.15" // { 111481 111607 dependencies = [ ··· 111483 111609 ]; 111484 111610 }) 111485 111611 sources."lodash-4.17.21" 111612 + sources."lru-cache-6.0.0" 111486 111613 sources."methods-1.1.2" 111487 - sources."mime-1.6.0" 111614 + sources."mime-2.6.0" 111488 111615 sources."mime-db-1.52.0" 111489 111616 sources."mime-types-2.1.35" 111490 - sources."ms-2.1.3" 111617 + sources."ms-2.1.2" 111491 111618 sources."native-promise-only-0.8.1" 111492 111619 sources."object-inspect-1.12.2" 111493 - sources."path-loader-1.0.10" 111494 - sources."process-nextick-args-2.0.1" 111620 + sources."once-1.4.0" 111621 + sources."path-loader-1.0.12" 111495 111622 sources."punycode-2.1.1" 111496 111623 sources."qs-6.10.5" 111497 - sources."readable-stream-2.3.7" 111498 - sources."safe-buffer-5.1.2" 111624 + sources."readable-stream-3.6.0" 111625 + sources."safe-buffer-5.2.1" 111626 + sources."semver-7.3.7" 111499 111627 sources."side-channel-1.0.4" 111500 111628 sources."slash-3.0.0" 111501 111629 sources."sprintf-js-1.0.3" 111502 - sources."string_decoder-1.1.1" 111503 - sources."superagent-3.8.3" 111630 + sources."string_decoder-1.3.0" 111631 + sources."superagent-7.1.6" 111504 111632 sources."uri-js-4.4.1" 111505 111633 sources."util-deprecate-1.0.2" 111634 + sources."wrappy-1.0.2" 111635 + sources."yallist-4.0.0" 111506 111636 ]; 111507 111637 buildInputs = globalBuildInputs; 111508 111638 meta = { ··· 111653 111783 sources."@types/istanbul-lib-coverage-2.0.4" 111654 111784 sources."@types/istanbul-lib-report-3.0.0" 111655 111785 sources."@types/istanbul-reports-3.0.1" 111656 - sources."@types/node-17.0.42" 111786 + sources."@types/node-18.0.0" 111657 111787 sources."@types/stack-utils-2.0.1" 111658 111788 sources."@types/yargs-16.0.4" 111659 111789 sources."@types/yargs-parser-21.0.0" ··· 111790 111920 sources."jest-mock-27.5.1" 111791 111921 (sources."jest-util-27.5.1" // { 111792 111922 dependencies = [ 111793 - sources."ci-info-3.3.1" 111923 + sources."ci-info-3.3.2" 111794 111924 ]; 111795 111925 }) 111796 111926 sources."js-sha256-0.9.0" ··· 112611 112741 sources."@types/http-cache-semantics-4.0.1" 112612 112742 sources."@types/json-buffer-3.0.0" 112613 112743 sources."@types/keyv-3.1.4" 112614 - sources."@types/node-17.0.42" 112744 + sources."@types/node-18.0.0" 112615 112745 sources."@types/responselike-1.0.0" 112616 112746 sources."abbrev-1.1.1" 112617 112747 sources."accepts-1.3.8" ··· 113366 113496 sources."@types/json-buffer-3.0.0" 113367 113497 sources."@types/keyv-3.1.4" 113368 113498 sources."@types/minimist-1.2.2" 113369 - sources."@types/node-17.0.42" 113499 + sources."@types/node-18.0.0" 113370 113500 sources."@types/normalize-package-data-2.4.1" 113371 113501 sources."@types/parse-json-4.0.0" 113372 113502 sources."@types/responselike-1.0.0" ··· 113861 113991 npm = nodeEnv.buildNodePackage { 113862 113992 name = "npm"; 113863 113993 packageName = "npm"; 113864 - version = "8.12.1"; 113994 + version = "8.12.2"; 113865 113995 src = fetchurl { 113866 - url = "https://registry.npmjs.org/npm/-/npm-8.12.1.tgz"; 113867 - sha512 = "0yOlhfgu1UzP6UijnaFuIS2bES2H9D90EA5OVsf2iOZw7VBrjntXKEwKfCaFA6vMVWkCP8qnPwCxxPdnDVwlNw=="; 113996 + url = "https://registry.npmjs.org/npm/-/npm-8.12.2.tgz"; 113997 + sha512 = "TArexqro9wpl/6wz6t6YdYhOoiy/UArqiSsSsqI7fieEhQEswDQSJcgt/LuCDjl6mfCDi0So7S2UZ979qLYRPg=="; 113868 113998 }; 113869 113999 buildInputs = globalBuildInputs; 113870 114000 meta = { ··· 113879 114009 npm-check-updates = nodeEnv.buildNodePackage { 113880 114010 name = "npm-check-updates"; 113881 114011 packageName = "npm-check-updates"; 113882 - version = "13.1.3"; 114012 + version = "13.1.5"; 113883 114013 src = fetchurl { 113884 - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-13.1.3.tgz"; 113885 - sha512 = "wyxcDctV5/gsVAhtmvQWZttI61evj6E5XrAviElnXAdXPKGG/rqYIAcKS2EZUgVoKJnCkjQmXgONzybim8SmfQ=="; 114014 + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-13.1.5.tgz"; 114015 + sha512 = "vAVYlrrxJIPH/R5mxMzrNwP33hYflvk7oQqPjPOySCavCFwhXKmfK5sn/rogyebg7cLnECiDxsczGqvTOEBRAA=="; 113886 114016 }; 113887 114017 dependencies = [ 113888 114018 sources."@gar/promisify-1.1.3" ··· 114348 114478 dependencies = [ 114349 114479 sources."@ampproject/remapping-2.2.0" 114350 114480 sources."@babel/code-frame-7.16.7" 114351 - sources."@babel/compat-data-7.17.10" 114352 - (sources."@babel/core-7.18.2" // { 114481 + sources."@babel/compat-data-7.18.5" 114482 + (sources."@babel/core-7.18.5" // { 114353 114483 dependencies = [ 114354 114484 sources."json5-2.2.1" 114355 114485 sources."semver-6.3.0" ··· 114393 114523 sources."@babel/helper-wrap-function-7.16.8" 114394 114524 sources."@babel/helpers-7.18.2" 114395 114525 sources."@babel/highlight-7.17.12" 114396 - sources."@babel/parser-7.18.4" 114526 + sources."@babel/parser-7.18.5" 114397 114527 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12" 114398 114528 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12" 114399 114529 sources."@babel/plugin-proposal-async-generator-functions-7.17.12" ··· 114445 114575 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 114446 114576 sources."@babel/plugin-transform-modules-amd-7.18.0" 114447 114577 sources."@babel/plugin-transform-modules-commonjs-7.18.2" 114448 - sources."@babel/plugin-transform-modules-systemjs-7.18.4" 114578 + sources."@babel/plugin-transform-modules-systemjs-7.18.5" 114449 114579 sources."@babel/plugin-transform-modules-umd-7.18.0" 114450 114580 sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12" 114451 - sources."@babel/plugin-transform-new-target-7.17.12" 114581 + sources."@babel/plugin-transform-new-target-7.18.5" 114452 114582 sources."@babel/plugin-transform-object-super-7.16.7" 114453 114583 sources."@babel/plugin-transform-parameters-7.17.12" 114454 114584 sources."@babel/plugin-transform-property-literals-7.16.7" ··· 114470 114600 sources."@babel/preset-modules-0.1.5" 114471 114601 sources."@babel/runtime-7.18.3" 114472 114602 sources."@babel/template-7.16.7" 114473 - sources."@babel/traverse-7.18.2" 114603 + sources."@babel/traverse-7.18.5" 114474 114604 sources."@babel/types-7.18.4" 114475 114605 sources."@iarna/toml-2.2.5" 114476 114606 sources."@jridgewell/gen-mapping-0.1.1" ··· 114604 114734 sources."caller-path-2.0.0" 114605 114735 sources."callsites-2.0.0" 114606 114736 sources."caniuse-api-3.0.0" 114607 - sources."caniuse-lite-1.0.30001352" 114737 + sources."caniuse-lite-1.0.30001354" 114608 114738 sources."caseless-0.12.0" 114609 114739 sources."chalk-2.4.2" 114610 114740 sources."chokidar-2.1.8" ··· 114630 114760 sources."convert-source-map-1.8.0" 114631 114761 sources."copy-descriptor-0.1.1" 114632 114762 sources."core-js-2.6.12" 114633 - (sources."core-js-compat-3.22.8" // { 114763 + (sources."core-js-compat-3.23.1" // { 114634 114764 dependencies = [ 114635 114765 sources."semver-7.0.0" 114636 114766 ]; ··· 114741 114871 sources."duplexer2-0.1.4" 114742 114872 sources."ecc-jsbn-0.1.2" 114743 114873 sources."ee-first-1.1.1" 114744 - sources."electron-to-chromium-1.4.152" 114874 + sources."electron-to-chromium-1.4.157" 114745 114875 (sources."elliptic-6.5.4" // { 114746 114876 dependencies = [ 114747 114877 sources."bn.js-4.12.0" ··· 115419 115549 sources."@parcel/compressor-raw-2.6.0" 115420 115550 sources."@parcel/config-default-2.6.0" 115421 115551 sources."@parcel/core-2.6.0" 115422 - sources."@parcel/css-1.9.0" 115423 - sources."@parcel/css-darwin-arm64-1.9.0" 115424 - sources."@parcel/css-darwin-x64-1.9.0" 115425 - sources."@parcel/css-linux-arm-gnueabihf-1.9.0" 115426 - sources."@parcel/css-linux-arm64-gnu-1.9.0" 115427 - sources."@parcel/css-linux-arm64-musl-1.9.0" 115428 - sources."@parcel/css-linux-x64-gnu-1.9.0" 115429 - sources."@parcel/css-linux-x64-musl-1.9.0" 115430 - sources."@parcel/css-win32-x64-msvc-1.9.0" 115552 + sources."@parcel/css-1.10.0" 115553 + sources."@parcel/css-darwin-arm64-1.10.0" 115554 + sources."@parcel/css-darwin-x64-1.10.0" 115555 + sources."@parcel/css-linux-arm-gnueabihf-1.10.0" 115556 + sources."@parcel/css-linux-arm64-gnu-1.10.0" 115557 + sources."@parcel/css-linux-arm64-musl-1.10.0" 115558 + sources."@parcel/css-linux-x64-gnu-1.10.0" 115559 + sources."@parcel/css-linux-x64-musl-1.10.0" 115560 + sources."@parcel/css-win32-x64-msvc-1.10.0" 115431 115561 sources."@parcel/diagnostic-2.6.0" 115432 115562 sources."@parcel/events-2.6.0" 115433 115563 sources."@parcel/fs-2.6.0" ··· 115500 115630 sources."browserslist-4.20.4" 115501 115631 sources."buffer-from-1.1.2" 115502 115632 sources."callsites-3.1.0" 115503 - sources."caniuse-lite-1.0.30001352" 115633 + sources."caniuse-lite-1.0.30001354" 115504 115634 (sources."chalk-4.1.2" // { 115505 115635 dependencies = [ 115506 115636 sources."ansi-styles-4.3.0" ··· 115531 115661 sources."domutils-2.8.0" 115532 115662 sources."dotenv-7.0.0" 115533 115663 sources."dotenv-expand-5.1.0" 115534 - sources."electron-to-chromium-1.4.152" 115664 + sources."electron-to-chromium-1.4.157" 115535 115665 sources."entities-3.0.1" 115536 115666 sources."error-ex-1.3.2" 115537 115667 sources."escalade-3.1.1" ··· 117073 117203 sources."string_decoder-0.10.31" 117074 117204 sources."supports-color-7.2.0" 117075 117205 sources."supports-preserve-symlinks-flag-1.0.0" 117076 - sources."systeminformation-5.11.16" 117206 + sources."systeminformation-5.11.20" 117077 117207 sources."to-regex-range-5.0.1" 117078 117208 sources."toidentifier-1.0.1" 117079 117209 sources."tslib-2.4.0" ··· 117316 117446 prettier = nodeEnv.buildNodePackage { 117317 117447 name = "prettier"; 117318 117448 packageName = "prettier"; 117319 - version = "2.6.2"; 117449 + version = "2.7.0"; 117320 117450 src = fetchurl { 117321 - url = "https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz"; 117322 - sha512 = "PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew=="; 117451 + url = "https://registry.npmjs.org/prettier/-/prettier-2.7.0.tgz"; 117452 + sha512 = "nwoX4GMFgxoPC6diHvSwmK/4yU8FFH3V8XWtLQrbj4IBsK2pkYhG4kf/ljF/haaZ/aii+wNJqISrCDPgxGWDVQ=="; 117323 117453 }; 117324 117454 buildInputs = globalBuildInputs; 117325 117455 meta = { ··· 117349 117479 sources."minimist-1.2.6" 117350 117480 sources."nanolru-1.0.0" 117351 117481 sources."path-parse-1.0.7" 117352 - sources."prettier-2.6.2" 117482 + sources."prettier-2.7.0" 117353 117483 sources."resolve-1.22.0" 117354 117484 sources."supports-color-8.1.1" 117355 117485 sources."supports-preserve-symlinks-flag-1.0.0" ··· 117391 117521 prisma = nodeEnv.buildNodePackage { 117392 117522 name = "prisma"; 117393 117523 packageName = "prisma"; 117394 - version = "3.15.1"; 117524 + version = "3.15.2"; 117395 117525 src = fetchurl { 117396 - url = "https://registry.npmjs.org/prisma/-/prisma-3.15.1.tgz"; 117397 - sha512 = "MLO3JUGJpe5+EVisA/i47+zlyF8Ug0ivvGYG4B9oSXQcPiUHB1ccmnpxqR7o0Up5SQgmxkBiEU//HgR6UuIKOw=="; 117526 + url = "https://registry.npmjs.org/prisma/-/prisma-3.15.2.tgz"; 117527 + sha512 = "nMNSMZvtwrvoEQ/mui8L/aiCLZRCj5t6L3yujKpcDhIPk7garp8tL4nMx2+oYsN0FWBacevJhazfXAbV1kfBzA=="; 117398 117528 }; 117399 117529 dependencies = [ 117400 117530 sources."@prisma/engines-3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e" ··· 117949 118079 pyright = nodeEnv.buildNodePackage { 117950 118080 name = "pyright"; 117951 118081 packageName = "pyright"; 117952 - version = "1.1.253"; 118082 + version = "1.1.254"; 117953 118083 src = fetchurl { 117954 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.253.tgz"; 117955 - sha512 = "z5Ou+Gj5V6TE0ysukdAeujUuKleIwoy32SrtcxWgVcVm+2i8HqPq3AZcLvnKmzK5mL4NC/hP/3uWTmZDrxs6iA=="; 118084 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.254.tgz"; 118085 + sha512 = "YDbIqr55EkwRCFSVjWxj8KOwBTMVK1U3HLLdqp+W3n+88S31YbRERrCni9izmtt5i4wnuhf7oRI/9K8KwLxmgQ=="; 117956 118086 }; 117957 118087 buildInputs = globalBuildInputs; 117958 118088 meta = { ··· 118313 118443 sources."@ampproject/remapping-2.2.0" 118314 118444 sources."@babel/cli-7.17.10" 118315 118445 sources."@babel/code-frame-7.16.7" 118316 - sources."@babel/compat-data-7.17.10" 118317 - (sources."@babel/core-7.18.2" // { 118446 + sources."@babel/compat-data-7.18.5" 118447 + (sources."@babel/core-7.18.5" // { 118318 118448 dependencies = [ 118319 118449 sources."semver-6.3.0" 118320 118450 ]; ··· 118357 118487 sources."@babel/helper-wrap-function-7.16.8" 118358 118488 sources."@babel/helpers-7.18.2" 118359 118489 sources."@babel/highlight-7.17.12" 118360 - sources."@babel/parser-7.18.4" 118490 + sources."@babel/parser-7.18.5" 118361 118491 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12" 118362 118492 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12" 118363 118493 sources."@babel/plugin-proposal-async-generator-functions-7.17.12" ··· 118409 118539 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 118410 118540 sources."@babel/plugin-transform-modules-amd-7.18.0" 118411 118541 sources."@babel/plugin-transform-modules-commonjs-7.18.2" 118412 - sources."@babel/plugin-transform-modules-systemjs-7.18.4" 118542 + sources."@babel/plugin-transform-modules-systemjs-7.18.5" 118413 118543 sources."@babel/plugin-transform-modules-umd-7.18.0" 118414 118544 sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12" 118415 - sources."@babel/plugin-transform-new-target-7.17.12" 118545 + sources."@babel/plugin-transform-new-target-7.18.5" 118416 118546 sources."@babel/plugin-transform-object-super-7.16.7" 118417 118547 sources."@babel/plugin-transform-parameters-7.17.12" 118418 118548 sources."@babel/plugin-transform-property-literals-7.16.7" ··· 118422 118552 sources."@babel/plugin-transform-react-pure-annotations-7.18.0" 118423 118553 sources."@babel/plugin-transform-regenerator-7.18.0" 118424 118554 sources."@babel/plugin-transform-reserved-words-7.17.12" 118425 - (sources."@babel/plugin-transform-runtime-7.18.2" // { 118555 + (sources."@babel/plugin-transform-runtime-7.18.5" // { 118426 118556 dependencies = [ 118427 118557 sources."semver-6.3.0" 118428 118558 ]; ··· 118445 118575 sources."@babel/register-7.17.7" 118446 118576 sources."@babel/runtime-7.18.3" 118447 118577 sources."@babel/template-7.16.7" 118448 - sources."@babel/traverse-7.18.2" 118578 + sources."@babel/traverse-7.18.5" 118449 118579 sources."@babel/types-7.18.4" 118450 118580 sources."@jridgewell/gen-mapping-0.1.1" 118451 118581 sources."@jridgewell/resolve-uri-3.0.7" ··· 118457 118587 sources."@types/glob-7.2.0" 118458 118588 sources."@types/json-schema-7.0.11" 118459 118589 sources."@types/minimatch-3.0.5" 118460 - sources."@types/node-17.0.42" 118590 + sources."@types/node-18.0.0" 118461 118591 sources."@types/parse-json-4.0.0" 118462 118592 sources."@types/q-1.5.5" 118463 118593 sources."@webassemblyjs/ast-1.9.0" ··· 118650 118780 sources."camel-case-3.0.0" 118651 118781 sources."camelcase-5.3.1" 118652 118782 sources."caniuse-api-3.0.0" 118653 - sources."caniuse-lite-1.0.30001352" 118783 + sources."caniuse-lite-1.0.30001354" 118654 118784 sources."case-sensitive-paths-webpack-plugin-2.4.0" 118655 118785 sources."caw-2.0.1" 118656 118786 sources."chalk-2.4.2" ··· 118730 118860 sources."copy-concurrently-1.0.5" 118731 118861 sources."copy-descriptor-0.1.1" 118732 118862 sources."core-js-2.6.12" 118733 - (sources."core-js-compat-3.22.8" // { 118863 + (sources."core-js-compat-3.23.1" // { 118734 118864 dependencies = [ 118735 118865 sources."semver-7.0.0" 118736 118866 ]; ··· 118871 119001 sources."duplexify-3.7.1" 118872 119002 sources."ee-first-1.1.1" 118873 119003 sources."ejs-2.7.4" 118874 - sources."electron-to-chromium-1.4.152" 119004 + sources."electron-to-chromium-1.4.157" 118875 119005 (sources."elliptic-6.5.4" // { 118876 119006 dependencies = [ 118877 119007 sources."bn.js-4.12.0" ··· 120258 120388 sources."@babel/helper-split-export-declaration-7.16.7" 120259 120389 sources."@babel/helper-validator-identifier-7.16.7" 120260 120390 sources."@babel/highlight-7.17.12" 120261 - sources."@babel/parser-7.18.4" 120391 + sources."@babel/parser-7.18.5" 120262 120392 sources."@babel/runtime-7.18.3" 120263 120393 sources."@babel/template-7.16.7" 120264 - sources."@babel/traverse-7.18.2" 120394 + sources."@babel/traverse-7.18.5" 120265 120395 sources."@babel/types-7.18.4" 120266 - sources."@emotion/is-prop-valid-1.1.2" 120396 + sources."@emotion/is-prop-valid-1.1.3" 120267 120397 sources."@emotion/memoize-0.7.5" 120268 120398 sources."@emotion/stylis-0.8.5" 120269 120399 sources."@emotion/unitless-0.7.5" ··· 120409 120539 sources."loose-envify-1.4.0" 120410 120540 sources."lunr-2.3.9" 120411 120541 sources."mark.js-8.11.1" 120412 - sources."marked-4.0.16" 120542 + sources."marked-4.0.17" 120413 120543 sources."md5.js-1.3.5" 120414 120544 (sources."miller-rabin-4.0.1" // { 120415 120545 dependencies = [ ··· 121094 121224 sources."@types/json-schema-7.0.11" 121095 121225 sources."@types/node-14.17.34" 121096 121226 sources."@types/vscode-1.66.0" 121097 - sources."@typescript-eslint/eslint-plugin-5.27.1" 121098 - sources."@typescript-eslint/parser-5.27.1" 121099 - sources."@typescript-eslint/scope-manager-5.27.1" 121100 - sources."@typescript-eslint/type-utils-5.27.1" 121101 - sources."@typescript-eslint/types-5.27.1" 121102 - sources."@typescript-eslint/typescript-estree-5.27.1" 121103 - sources."@typescript-eslint/utils-5.27.1" 121104 - sources."@typescript-eslint/visitor-keys-5.27.1" 121227 + sources."@typescript-eslint/eslint-plugin-5.28.0" 121228 + sources."@typescript-eslint/parser-5.28.0" 121229 + sources."@typescript-eslint/scope-manager-5.28.0" 121230 + sources."@typescript-eslint/type-utils-5.28.0" 121231 + sources."@typescript-eslint/types-5.28.0" 121232 + sources."@typescript-eslint/typescript-estree-5.28.0" 121233 + sources."@typescript-eslint/utils-5.28.0" 121234 + sources."@typescript-eslint/visitor-keys-5.28.0" 121105 121235 sources."@vscode/test-electron-2.1.4" 121106 121236 sources."acorn-8.7.1" 121107 121237 sources."acorn-jsx-5.3.2" ··· 121792 121922 sources."@types/json-buffer-3.0.0" 121793 121923 sources."@types/keyv-3.1.4" 121794 121924 sources."@types/lodash-4.14.182" 121795 - sources."@types/node-17.0.42" 121925 + sources."@types/node-18.0.0" 121796 121926 sources."@types/responselike-1.0.0" 121797 121927 sources."adm-zip-0.5.9" 121798 121928 sources."agent-base-6.0.2" ··· 121815 121945 sources."archiver-utils-2.1.0" 121816 121946 sources."argparse-1.0.10" 121817 121947 sources."array-union-2.1.0" 121948 + sources."asap-2.0.6" 121818 121949 sources."async-3.2.4" 121819 121950 sources."asynckit-0.4.0" 121820 121951 sources."at-least-node-1.0.0" 121821 - (sources."aws-sdk-2.1152.0" // { 121952 + (sources."aws-sdk-2.1155.0" // { 121822 121953 dependencies = [ 121823 121954 sources."buffer-4.9.2" 121824 121955 sources."ieee754-1.1.13" ··· 121863 121994 sources."child-process-ext-2.1.1" 121864 121995 sources."chokidar-3.5.3" 121865 121996 sources."chownr-2.0.0" 121866 - sources."ci-info-3.3.1" 121997 + sources."ci-info-3.3.2" 121867 121998 sources."cli-color-2.0.2" 121868 121999 sources."cli-cursor-3.1.0" 121869 122000 sources."cli-progress-footer-2.3.2" ··· 121954 122085 sources."defer-to-connect-2.0.1" 121955 122086 sources."deferred-0.7.11" 121956 122087 sources."delayed-stream-1.0.0" 122088 + sources."dezalgo-1.0.3" 121957 122089 sources."dir-glob-3.0.1" 121958 122090 sources."dotenv-10.0.0" 121959 122091 sources."dotenv-expand-5.1.0" ··· 121978 122110 sources."ext-1.6.0" 121979 122111 sources."ext-list-2.2.2" 121980 122112 sources."ext-name-5.0.0" 121981 - sources."extend-3.0.2" 121982 122113 sources."external-editor-3.1.0" 121983 122114 sources."fast-deep-equal-3.1.3" 121984 122115 sources."fast-glob-3.2.11" 122116 + sources."fast-safe-stringify-2.1.1" 121985 122117 sources."fastest-levenshtein-1.0.12" 121986 122118 sources."fastq-1.13.0" 121987 122119 sources."fd-slicer-1.1.0" ··· 121994 122126 sources."find-requires-1.0.0" 121995 122127 sources."flat-5.0.2" 121996 122128 sources."follow-redirects-1.15.1" 121997 - sources."form-data-2.5.1" 121998 - sources."formidable-1.2.6" 122129 + sources."form-data-4.0.0" 122130 + (sources."formidable-2.0.1" // { 122131 + dependencies = [ 122132 + sources."qs-6.9.3" 122133 + ]; 122134 + }) 121999 122135 sources."fs-constants-1.0.0" 122000 122136 sources."fs-extra-9.1.0" 122001 122137 sources."fs-minipass-2.1.0" ··· 122015 122151 sources."has-1.0.3" 122016 122152 sources."has-flag-3.0.0" 122017 122153 sources."has-symbols-1.0.3" 122154 + sources."hexoid-1.0.0" 122018 122155 sources."http-cache-semantics-4.1.0" 122019 122156 sources."http2-wrapper-1.0.3" 122020 122157 sources."https-proxy-agent-5.0.1" ··· 122084 122221 sources."merge2-1.4.1" 122085 122222 sources."methods-1.1.2" 122086 122223 sources."micromatch-4.0.5" 122087 - sources."mime-1.6.0" 122224 + sources."mime-2.6.0" 122088 122225 sources."mime-db-1.52.0" 122089 122226 sources."mime-types-2.1.35" 122090 122227 sources."mimic-fn-2.1.0" ··· 122119 122256 sources."pako-1.0.11" 122120 122257 sources."path-is-absolute-1.0.1" 122121 122258 sources."path-key-2.0.1" 122122 - sources."path-loader-1.0.10" 122259 + sources."path-loader-1.0.12" 122123 122260 sources."path-type-4.0.0" 122124 122261 sources."path2-0.1.0" 122125 122262 sources."peek-readable-4.1.0" ··· 122182 122319 sources."strip-dirs-2.1.0" 122183 122320 sources."strip-outer-1.0.1" 122184 122321 sources."strtok3-6.3.0" 122185 - (sources."superagent-3.8.3" // { 122322 + (sources."superagent-7.1.6" // { 122186 122323 dependencies = [ 122187 - sources."debug-3.2.7" 122324 + sources."readable-stream-3.6.0" 122188 122325 ]; 122189 122326 }) 122190 122327 (sources."supports-color-8.1.1" // { ··· 122891 123028 snyk = nodeEnv.buildNodePackage { 122892 123029 name = "snyk"; 122893 123030 packageName = "snyk"; 122894 - version = "1.947.0"; 123031 + version = "1.951.0"; 122895 123032 src = fetchurl { 122896 - url = "https://registry.npmjs.org/snyk/-/snyk-1.947.0.tgz"; 122897 - sha512 = "/u+HyhaIaFhnrpn+aOiGR0ts9ZR7mr6uiqgRn5EQIwaFKpCFOEnOJTlQAM25ggomqmxRldArMMXe4dBWw855LA=="; 123033 + url = "https://registry.npmjs.org/snyk/-/snyk-1.951.0.tgz"; 123034 + sha512 = "V9PhAWI+pB1SQa+wbzRA0/1M4Sqb124Jjlw39roF1Urk1xMLK/aYW796q4/D9xy0k293DpEyf/6hQ6xXbn9sKA=="; 122898 123035 }; 122899 123036 buildInputs = globalBuildInputs; 122900 123037 meta = { ··· 122917 123054 sources."@types/component-emitter-1.2.11" 122918 123055 sources."@types/cookie-0.4.1" 122919 123056 sources."@types/cors-2.8.12" 122920 - sources."@types/node-17.0.42" 123057 + sources."@types/node-18.0.0" 122921 123058 sources."accepts-1.3.8" 122922 123059 sources."base64id-2.0.0" 122923 123060 sources."component-emitter-1.3.0" ··· 123111 123248 sql-formatter = nodeEnv.buildNodePackage { 123112 123249 name = "sql-formatter"; 123113 123250 packageName = "sql-formatter"; 123114 - version = "6.1.5"; 123251 + version = "7.0.0"; 123115 123252 src = fetchurl { 123116 - url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-6.1.5.tgz"; 123117 - sha512 = "aqhxDRIhllzCuwzDX18Y7TmcvD3Epb2qvkUDSoyX1+oDyMaWk7xja6mnuAZ4kaw2f0mVjzSZCJfCALtKx0WdoA=="; 123253 + url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-7.0.0.tgz"; 123254 + sha512 = "52kyWHxSOCRwdAtFQ5TBaUZlWRt4JZM1QacVIPC4BDPJ3ygb9PQ98JkALFPxDlKGFNXD8EP/hIhborRlOekhSg=="; 123118 123255 }; 123119 123256 dependencies = [ 123120 123257 sources."argparse-2.0.1" ··· 124156 124293 sources."async-1.5.2" 124157 124294 sources."async-limiter-1.0.1" 124158 124295 sources."asynckit-0.4.0" 124159 - (sources."aws-sdk-2.1152.0" // { 124296 + (sources."aws-sdk-2.1155.0" // { 124160 124297 dependencies = [ 124161 124298 sources."uuid-8.0.0" 124162 124299 ]; ··· 124282 124419 sources."depd-2.0.0" 124283 124420 sources."deref-0.6.4" 124284 124421 sources."destroy-1.2.0" 124422 + sources."dezalgo-1.0.3" 124285 124423 sources."dicer-0.2.5" 124286 124424 sources."doctypes-1.1.0" 124287 124425 sources."drange-1.1.1" ··· 124344 124482 sources."faker-3.1.0" 124345 124483 sources."fast-deep-equal-3.1.3" 124346 124484 sources."fast-json-stable-stringify-2.1.0" 124485 + sources."fast-safe-stringify-2.1.1" 124347 124486 sources."fd-slicer-1.1.0" 124348 124487 sources."finalhandler-1.2.0" 124349 124488 sources."find-up-3.0.0" ··· 124386 124525 sources."has-symbols-1.0.3" 124387 124526 sources."has-tostringtag-1.0.0" 124388 124527 sources."hawk-3.1.3" 124528 + sources."hexoid-1.0.0" 124389 124529 sources."highlight.js-8.2.0" 124390 124530 (sources."hipchatter-0.3.2" // { 124391 124531 dependencies = [ ··· 124579 124719 sources."path-exists-3.0.0" 124580 124720 sources."path-is-absolute-1.0.1" 124581 124721 sources."path-key-2.0.1" 124582 - sources."path-loader-1.0.10" 124722 + sources."path-loader-1.0.12" 124583 124723 sources."path-parse-1.0.7" 124584 124724 sources."path-to-regexp-0.1.7" 124585 124725 sources."path-type-1.1.0" ··· 124749 124889 sources."strip-ansi-3.0.1" 124750 124890 sources."strip-bom-2.0.0" 124751 124891 sources."strip-eof-1.0.0" 124752 - (sources."superagent-3.8.3" // { 124892 + (sources."superagent-7.1.6" // { 124753 124893 dependencies = [ 124754 - sources."debug-3.2.7" 124755 - sources."form-data-2.5.1" 124894 + sources."debug-4.3.4" 124895 + sources."form-data-4.0.0" 124896 + (sources."formidable-2.0.1" // { 124897 + dependencies = [ 124898 + sources."qs-6.9.3" 124899 + ]; 124900 + }) 124901 + sources."lru-cache-6.0.0" 124902 + sources."mime-2.6.0" 124903 + sources."ms-2.1.2" 124756 124904 sources."qs-6.10.5" 124757 - sources."readable-stream-2.3.7" 124758 - sources."string_decoder-1.1.1" 124905 + sources."readable-stream-3.6.0" 124906 + sources."safe-buffer-5.2.1" 124907 + sources."semver-7.3.7" 124908 + sources."string_decoder-1.3.0" 124909 + sources."yallist-4.0.0" 124759 124910 ]; 124760 124911 }) 124761 124912 sources."supports-color-2.0.0" ··· 125297 125448 sources."@nodelib/fs.scandir-2.1.5" 125298 125449 sources."@nodelib/fs.stat-2.0.5" 125299 125450 sources."@nodelib/fs.walk-1.2.8" 125300 - sources."@types/node-17.0.42" 125451 + sources."@types/node-18.0.0" 125301 125452 sources."@types/pug-2.0.6" 125302 125453 sources."@types/sass-1.43.1" 125303 125454 sources."anymatch-3.1.2" ··· 125384 125535 sources."@nodelib/fs.scandir-2.1.5" 125385 125536 sources."@nodelib/fs.stat-2.0.5" 125386 125537 sources."@nodelib/fs.walk-1.2.8" 125387 - sources."@types/node-17.0.42" 125538 + sources."@types/node-18.0.0" 125388 125539 sources."@types/pug-2.0.6" 125389 125540 sources."@types/sass-1.43.1" 125390 125541 sources."anymatch-3.1.2" ··· 125545 125696 sources."arr-flatten-1.1.0" 125546 125697 sources."arr-union-3.1.0" 125547 125698 sources."array-unique-0.3.2" 125699 + sources."asap-2.0.6" 125548 125700 sources."assign-symbols-1.0.0" 125549 125701 sources."async-1.5.2" 125550 125702 sources."async-each-1.0.3" ··· 125652 125804 sources."delayed-stream-1.0.0" 125653 125805 sources."depd-2.0.0" 125654 125806 sources."destroy-1.2.0" 125807 + sources."dezalgo-1.0.3" 125655 125808 (sources."dicer-0.2.5" // { 125656 125809 dependencies = [ 125657 125810 sources."isarray-0.0.1" ··· 125689 125842 sources."kind-of-5.1.0" 125690 125843 ]; 125691 125844 }) 125692 - sources."extend-3.0.2" 125845 + sources."extend-3.0.0" 125693 125846 sources."extend-shallow-3.0.2" 125694 125847 (sources."extglob-2.0.4" // { 125695 125848 dependencies = [ ··· 125698 125851 sources."is-extendable-0.1.1" 125699 125852 ]; 125700 125853 }) 125854 + sources."fast-safe-stringify-2.1.1" 125701 125855 sources."figures-1.7.0" 125702 125856 sources."file-uri-to-path-1.0.0" 125703 125857 (sources."fill-range-4.0.0" // { ··· 125708 125862 }) 125709 125863 sources."finalhandler-1.1.2" 125710 125864 sources."for-in-1.0.2" 125711 - sources."form-data-2.5.1" 125712 - sources."formidable-1.2.6" 125865 + sources."form-data-4.0.0" 125866 + (sources."formidable-2.0.1" // { 125867 + dependencies = [ 125868 + sources."qs-6.9.3" 125869 + ]; 125870 + }) 125713 125871 sources."fragment-cache-0.2.1" 125714 125872 sources."fresh-0.5.2" 125715 125873 sources."fs-extra-0.24.0" ··· 125750 125908 sources."kind-of-4.0.0" 125751 125909 ]; 125752 125910 }) 125911 + sources."hexoid-1.0.0" 125753 125912 (sources."http-errors-2.0.0" // { 125754 125913 dependencies = [ 125755 125914 sources."statuses-2.0.1" ··· 125925 126084 sources."path-is-absolute-1.0.1" 125926 126085 sources."path-is-inside-1.0.2" 125927 126086 sources."path-key-2.0.1" 125928 - (sources."path-loader-1.0.10" // { 126087 + (sources."path-loader-1.0.12" // { 125929 126088 dependencies = [ 125930 - sources."debug-3.2.7" 125931 - sources."ms-2.1.3" 126089 + sources."debug-4.3.4" 126090 + sources."lru-cache-6.0.0" 126091 + sources."mime-2.6.0" 126092 + sources."ms-2.1.2" 125932 126093 sources."qs-6.10.5" 125933 - sources."superagent-3.8.3" 126094 + sources."readable-stream-3.6.0" 126095 + sources."semver-7.3.7" 126096 + sources."superagent-7.1.6" 126097 + sources."yallist-4.0.0" 125934 126098 ]; 125935 126099 }) 125936 126100 (sources."path-to-regexp-1.8.0" // { ··· 126069 126233 dependencies = [ 126070 126234 sources."component-emitter-1.2.1" 126071 126235 sources."cookiejar-2.0.6" 126072 - sources."extend-3.0.0" 126073 126236 sources."form-data-1.0.0-rc3" 126074 126237 sources."formidable-1.0.17" 126075 126238 sources."isarray-0.0.1" ··· 126169 126332 tailwindcss = nodeEnv.buildNodePackage { 126170 126333 name = "tailwindcss"; 126171 126334 packageName = "tailwindcss"; 126172 - version = "3.1.2"; 126335 + version = "3.1.3"; 126173 126336 src = fetchurl { 126174 - url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.1.2.tgz"; 126175 - sha512 = "yJ6L5s1U5AeS5g7HHy212zdQfjwD426FBfm59pet/JsyneuZuD4C2W7PpJEg4ppisiB21uLqtNagv8KXury3+Q=="; 126337 + url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.1.3.tgz"; 126338 + sha512 = "PRJNYdSIthrb8hjmAyymEyEN8Yo61TMXpzyFUpxULeeyRn3Y3gpvuw6FlRTKrJvK7thSGKRnhT36VovVx4WeMA=="; 126176 126339 }; 126177 126340 dependencies = [ 126178 126341 sources."@nodelib/fs.scandir-2.1.5" ··· 127567 127730 sources."@types/http-cache-semantics-4.0.1" 127568 127731 sources."@types/json-buffer-3.0.0" 127569 127732 sources."@types/keyv-3.1.4" 127570 - sources."@types/node-17.0.42" 127733 + sources."@types/node-18.0.0" 127571 127734 sources."@types/responselike-1.0.0" 127572 127735 sources."abbrev-1.1.1" 127573 127736 sources."abstract-logging-2.0.1" ··· 127619 127782 sources."content-type-1.0.4" 127620 127783 sources."cookie-0.4.2" 127621 127784 sources."cookie-signature-1.0.6" 127622 - sources."core-js-3.22.8" 127785 + sources."core-js-3.23.1" 127623 127786 sources."core-util-is-1.0.2" 127624 127787 sources."cors-2.8.5" 127625 127788 sources."css-select-4.3.0" ··· 127913 128076 sources."@types/http-cache-semantics-4.0.1" 127914 128077 sources."@types/json-buffer-3.0.0" 127915 128078 sources."@types/keyv-3.1.4" 127916 - sources."@types/node-17.0.42" 128079 + sources."@types/node-18.0.0" 127917 128080 sources."@types/responselike-1.0.0" 127918 128081 sources."abbrev-1.1.1" 127919 128082 sources."abstract-logging-2.0.1" ··· 127965 128128 sources."content-type-1.0.4" 127966 128129 sources."cookie-0.4.2" 127967 128130 sources."cookie-signature-1.0.6" 127968 - sources."core-js-3.22.8" 128131 + sources."core-js-3.23.1" 127969 128132 sources."core-util-is-1.0.2" 127970 128133 sources."cors-2.8.5" 127971 128134 sources."css-select-4.3.0" ··· 128333 128496 sources."content-type-1.0.4" 128334 128497 sources."cookie-0.4.0" 128335 128498 sources."cookie-signature-1.0.6" 128336 - sources."core-js-3.22.8" 128499 + sources."core-js-3.23.1" 128337 128500 sources."core-util-is-1.0.2" 128338 128501 sources."css-select-1.2.0" 128339 128502 sources."css-what-2.1.3" ··· 128926 129089 sources."@types/http-cache-semantics-4.0.1" 128927 129090 sources."@types/json-buffer-3.0.0" 128928 129091 sources."@types/keyv-3.1.4" 128929 - sources."@types/node-17.0.42" 129092 + sources."@types/node-18.0.0" 128930 129093 sources."@types/responselike-1.0.0" 128931 129094 sources."abbrev-1.1.1" 128932 129095 sources."abstract-logging-2.0.1" ··· 129007 129170 sources."content-type-1.0.4" 129008 129171 sources."cookie-0.4.0" 129009 129172 sources."cookie-signature-1.0.6" 129010 - sources."core-js-3.22.8" 129173 + sources."core-js-3.23.1" 129011 129174 sources."core-util-is-1.0.2" 129012 129175 sources."css-select-1.2.0" 129013 129176 sources."css-what-2.1.3" ··· 129393 129556 sources."@types/http-cache-semantics-4.0.1" 129394 129557 sources."@types/json-buffer-3.0.0" 129395 129558 sources."@types/keyv-3.1.4" 129396 - sources."@types/node-17.0.42" 129559 + sources."@types/node-18.0.0" 129397 129560 sources."@types/responselike-1.0.0" 129398 129561 sources."abbrev-1.1.1" 129399 129562 sources."abstract-logging-2.0.1" ··· 129474 129637 sources."content-type-1.0.4" 129475 129638 sources."cookie-0.4.0" 129476 129639 sources."cookie-signature-1.0.6" 129477 - sources."core-js-3.22.8" 129640 + sources."core-js-3.23.1" 129478 129641 sources."core-util-is-1.0.2" 129479 129642 sources."css-select-1.2.0" 129480 129643 sources."css-what-2.1.3" ··· 130289 130452 sources."@octokit/core-3.6.0" 130290 130453 sources."@octokit/endpoint-6.0.12" 130291 130454 sources."@octokit/graphql-4.8.0" 130292 - sources."@octokit/openapi-types-11.2.0" 130293 - sources."@octokit/plugin-paginate-rest-2.17.0" 130455 + sources."@octokit/openapi-types-12.1.0" 130456 + sources."@octokit/plugin-paginate-rest-2.18.0" 130294 130457 sources."@octokit/plugin-request-log-1.0.4" 130295 - sources."@octokit/plugin-rest-endpoint-methods-5.13.0" 130458 + sources."@octokit/plugin-rest-endpoint-methods-5.14.0" 130296 130459 sources."@octokit/request-5.6.3" 130297 130460 sources."@octokit/request-error-2.1.0" 130298 130461 sources."@octokit/rest-18.12.0" 130299 - sources."@octokit/types-6.34.0" 130462 + sources."@octokit/types-6.35.0" 130300 130463 sources."@xmldom/xmldom-0.8.2" 130301 130464 sources."ajv-6.12.6" 130302 130465 sources."asn1-0.2.6" ··· 130744 130907 typescript-language-server = nodeEnv.buildNodePackage { 130745 130908 name = "typescript-language-server"; 130746 130909 packageName = "typescript-language-server"; 130747 - version = "0.11.0"; 130910 + version = "0.11.1"; 130748 130911 src = fetchurl { 130749 - url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.11.0.tgz"; 130750 - sha512 = "8nfW0+Ei7/h6c2/KCeduPbFxMDVJWok/H593v+gajxXrOCX4VMyoEVsu7BswMyyah8GWDbcNdNi9c812eBtH2A=="; 130912 + url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.11.1.tgz"; 130913 + sha512 = "kcF4pbTHzYJWPj1RBRKZ1lrqjDGoy2sMevdNy+AakDur57JvTv8rlnN549rUJCoRR5th4LFhJ6zAo3zLFR1gNw=="; 130751 130914 }; 130752 130915 dependencies = [ 130753 130916 sources."@nodelib/fs.scandir-2.1.5" ··· 130890 131053 sources."@types/http-cache-semantics-4.0.1" 130891 131054 sources."@types/json-buffer-3.0.0" 130892 131055 sources."@types/keyv-3.1.4" 130893 - sources."@types/node-16.11.39" 131056 + sources."@types/node-16.11.41" 130894 131057 sources."@types/responselike-1.0.0" 130895 131058 sources."abbrev-1.1.1" 130896 131059 sources."accepts-1.3.8" ··· 131208 131371 sources."@types/is-empty-1.2.1" 131209 131372 sources."@types/js-yaml-4.0.5" 131210 131373 sources."@types/ms-0.7.31" 131211 - sources."@types/node-17.0.42" 131374 + sources."@types/node-17.0.45" 131212 131375 sources."@types/supports-color-8.1.1" 131213 131376 sources."@types/unist-2.0.6" 131214 131377 sources."ansi-regex-6.0.1" ··· 131243 131406 sources."is-arrayish-0.2.1" 131244 131407 sources."is-buffer-2.0.5" 131245 131408 sources."is-empty-1.2.0" 131246 - sources."is-plain-obj-4.0.0" 131409 + sources."is-plain-obj-4.1.0" 131247 131410 sources."js-tokens-4.0.0" 131248 131411 sources."js-yaml-4.1.0" 131249 131412 sources."json-parse-even-better-errors-2.3.1" ··· 131275 131438 sources."unist-util-inspect-7.0.0" 131276 131439 sources."unist-util-stringify-position-3.0.2" 131277 131440 sources."util-deprecate-1.0.2" 131278 - sources."vfile-5.3.3" 131441 + sources."vfile-5.3.4" 131279 131442 sources."vfile-message-3.1.2" 131280 131443 (sources."vfile-reporter-7.0.4" // { 131281 131444 dependencies = [ ··· 131536 131699 sources."@szmarczak/http-timer-1.1.2" 131537 131700 sources."@types/busboy-0.3.2" 131538 131701 sources."@types/cookie-0.4.1" 131539 - sources."@types/node-17.0.42" 131540 - (sources."@types/node-fetch-2.6.1" // { 131702 + sources."@types/node-18.0.0" 131703 + (sources."@types/node-fetch-2.6.2" // { 131541 131704 dependencies = [ 131542 131705 sources."form-data-3.0.1" 131543 131706 ]; ··· 132013 132176 sources."path-key-3.1.1" 132014 132177 sources."path-parse-1.0.7" 132015 132178 sources."prelude-ls-1.2.1" 132016 - sources."prettier-2.6.2" 132179 + sources."prettier-2.7.0" 132017 132180 sources."progress-2.0.3" 132018 132181 sources."pug-error-2.0.0" 132019 132182 sources."pug-lexer-5.0.1" ··· 132252 132415 sha512 = "Un7gzQgvACjGtsT0Yll5QqHgL65a4mTK5ChgMnO4dgTZ3tuwJCaP84oztBqvuFZzN9QxA3C07J4QEQvf1xjcgQ=="; 132253 132416 }; 132254 132417 dependencies = [ 132255 - sources."core-js-3.22.8" 132418 + sources."core-js-3.23.1" 132256 132419 sources."jsonc-parser-3.0.0" 132257 132420 sources."regenerator-runtime-0.13.9" 132258 132421 sources."request-light-0.5.8" ··· 132315 132478 sources."@webassemblyjs/wasm-opt-1.11.1" 132316 132479 sources."@webassemblyjs/wasm-parser-1.11.1" 132317 132480 sources."@webassemblyjs/wast-printer-1.11.1" 132318 - sources."@webpack-cli/configtest-1.1.1" 132319 - sources."@webpack-cli/info-1.4.1" 132320 - sources."@webpack-cli/serve-1.6.1" 132481 + sources."@webpack-cli/configtest-1.2.0" 132482 + sources."@webpack-cli/info-1.5.0" 132483 + sources."@webpack-cli/serve-1.7.0" 132321 132484 sources."@xtuc/ieee754-1.2.0" 132322 132485 sources."@xtuc/long-4.2.2" 132323 132486 sources."acorn-8.7.1" ··· 132342 132505 sources."buffer-from-1.1.2" 132343 132506 sources."call-bind-1.0.2" 132344 132507 sources."camelcase-6.3.0" 132345 - sources."caniuse-lite-1.0.30001352" 132508 + sources."caniuse-lite-1.0.30001354" 132346 132509 (sources."chalk-4.1.2" // { 132347 132510 dependencies = [ 132348 132511 sources."supports-color-7.2.0" ··· 132363 132526 sources."clone-deep-4.0.1" 132364 132527 sources."color-convert-2.0.1" 132365 132528 sources."color-name-1.1.4" 132366 - sources."colorette-2.0.17" 132529 + sources."colorette-2.0.19" 132367 132530 sources."commander-6.2.1" 132368 132531 sources."concat-map-0.0.1" 132369 132532 sources."core-util-is-1.0.3" ··· 132382 132545 sources."domelementtype-2.3.0" 132383 132546 sources."domhandler-5.0.3" 132384 132547 sources."domutils-3.0.1" 132385 - sources."electron-to-chromium-1.4.152" 132548 + sources."electron-to-chromium-1.4.157" 132386 132549 sources."emoji-regex-8.0.0" 132387 132550 sources."emojis-list-3.0.0" 132388 132551 sources."enhanced-resolve-5.9.3" ··· 132400 132563 }) 132401 132564 sources."estraverse-4.3.0" 132402 132565 sources."events-3.3.0" 132403 - sources."execa-5.1.1" 132404 132566 sources."fast-deep-equal-3.1.3" 132405 132567 sources."fast-json-stable-stringify-2.1.0" 132406 132568 sources."fastest-levenshtein-1.0.12" ··· 132413 132575 sources."function-bind-1.1.1" 132414 132576 sources."get-caller-file-2.0.5" 132415 132577 sources."get-intrinsic-1.1.2" 132416 - sources."get-stream-6.0.1" 132417 132578 sources."glob-7.1.6" 132418 132579 sources."glob-parent-5.1.2" 132419 132580 sources."glob-to-regexp-0.4.1" ··· 132424 132585 sources."has-symbols-1.0.3" 132425 132586 sources."he-1.2.0" 132426 132587 sources."htmlparser2-8.0.1" 132427 - sources."human-signals-2.1.0" 132428 132588 sources."import-local-3.1.0" 132429 132589 sources."inflight-1.0.6" 132430 132590 sources."inherits-2.0.4" ··· 132437 132597 sources."is-number-7.0.0" 132438 132598 sources."is-plain-obj-2.1.0" 132439 132599 sources."is-plain-object-2.0.4" 132440 - sources."is-stream-2.0.1" 132441 132600 sources."isarray-0.0.1" 132442 132601 sources."isexe-2.0.0" 132443 132602 sources."isobject-3.0.1" ··· 132476 132635 sources."mime-1.6.0" 132477 132636 sources."mime-db-1.52.0" 132478 132637 sources."mime-types-2.1.35" 132479 - sources."mimic-fn-2.1.0" 132480 132638 sources."minimatch-3.0.4" 132481 132639 sources."mocha-8.4.0" 132482 132640 sources."ms-2.1.3" ··· 132485 132643 sources."neo-async-2.6.2" 132486 132644 sources."node-releases-2.0.5" 132487 132645 sources."normalize-path-3.0.0" 132488 - sources."npm-run-path-4.0.1" 132489 132646 sources."nth-check-2.1.1" 132490 132647 sources."object-inspect-1.12.2" 132491 132648 sources."once-1.4.0" 132492 - sources."onetime-5.1.2" 132493 132649 sources."os-homedir-1.0.2" 132494 132650 sources."os-tmpdir-1.0.2" 132495 132651 sources."osenv-0.1.5" ··· 132535 132691 sources."shebang-command-2.0.0" 132536 132692 sources."shebang-regex-3.0.0" 132537 132693 sources."side-channel-1.0.4" 132538 - sources."signal-exit-3.0.7" 132539 132694 sources."source-map-0.6.1" 132540 132695 sources."source-map-support-0.5.21" 132541 132696 sources."sprintf-js-1.0.3" ··· 132543 132698 sources."string-width-2.1.1" 132544 132699 sources."string_decoder-0.10.31" 132545 132700 sources."strip-ansi-4.0.0" 132546 - sources."strip-final-newline-2.0.0" 132547 132701 sources."strip-json-comments-3.1.1" 132548 132702 sources."supports-color-8.1.1" 132549 132703 sources."supports-preserve-symlinks-flag-1.0.0" ··· 132591 132745 sources."vscode-debugprotocol-1.51.0" 132592 132746 sources."watchpack-2.4.0" 132593 132747 sources."webpack-5.73.0" 132594 - (sources."webpack-cli-4.9.2" // { 132748 + (sources."webpack-cli-4.10.0" // { 132595 132749 dependencies = [ 132596 132750 sources."commander-7.2.0" 132597 132751 ]; ··· 132941 133095 sources."@starptech/rehype-webparser-0.10.0" 132942 133096 sources."@starptech/webparser-0.10.0" 132943 133097 sources."@szmarczak/http-timer-1.1.2" 132944 - sources."@types/node-17.0.42" 133098 + sources."@types/node-18.0.0" 132945 133099 sources."@types/unist-2.0.6" 132946 133100 sources."@types/vfile-3.0.2" 132947 133101 sources."@types/vfile-message-2.0.0" ··· 133902 134056 sources."combined-stream-1.0.8" 133903 134057 sources."concat-map-0.0.1" 133904 134058 sources."console-control-strings-1.1.0" 133905 - sources."core-js-pure-3.22.8" 134059 + sources."core-js-pure-3.23.1" 133906 134060 sources."cssom-0.4.4" 133907 134061 (sources."cssstyle-2.3.0" // { 133908 134062 dependencies = [ ··· 134095 134249 sources."@sindresorhus/is-0.14.0" 134096 134250 sources."@szmarczak/http-timer-1.1.2" 134097 134251 sources."@types/minimatch-3.0.5" 134098 - sources."@types/node-17.0.42" 134252 + sources."@types/node-18.0.0" 134099 134253 sources."@types/yauzl-2.9.2" 134100 134254 sources."acorn-8.7.1" 134101 134255 sources."acorn-jsx-5.3.2" ··· 134621 134775 sources."@types/eslint-scope-3.7.3" 134622 134776 sources."@types/estree-0.0.51" 134623 134777 sources."@types/json-schema-7.0.11" 134624 - sources."@types/node-17.0.42" 134778 + sources."@types/node-18.0.0" 134625 134779 sources."@webassemblyjs/ast-1.11.1" 134626 134780 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 134627 134781 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 134645 134799 sources."ajv-keywords-3.5.2" 134646 134800 sources."browserslist-4.20.4" 134647 134801 sources."buffer-from-1.1.2" 134648 - sources."caniuse-lite-1.0.30001352" 134802 + sources."caniuse-lite-1.0.30001354" 134649 134803 sources."chrome-trace-event-1.0.3" 134650 134804 sources."commander-2.20.3" 134651 - sources."electron-to-chromium-1.4.152" 134805 + sources."electron-to-chromium-1.4.157" 134652 134806 sources."enhanced-resolve-5.9.3" 134653 134807 sources."es-module-lexer-0.9.3" 134654 134808 sources."escalade-3.1.1" ··· 134703 134857 webpack-cli = nodeEnv.buildNodePackage { 134704 134858 name = "webpack-cli"; 134705 134859 packageName = "webpack-cli"; 134706 - version = "4.9.2"; 134860 + version = "4.10.0"; 134707 134861 src = fetchurl { 134708 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz"; 134709 - sha512 = "m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ=="; 134862 + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz"; 134863 + sha512 = "NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w=="; 134710 134864 }; 134711 134865 dependencies = [ 134712 134866 sources."@discoveryjs/json-ext-0.5.7" 134713 - sources."@webpack-cli/configtest-1.1.1" 134714 - sources."@webpack-cli/info-1.4.1" 134715 - sources."@webpack-cli/serve-1.6.1" 134867 + sources."@webpack-cli/configtest-1.2.0" 134868 + sources."@webpack-cli/info-1.5.0" 134869 + sources."@webpack-cli/serve-1.7.0" 134716 134870 sources."clone-deep-4.0.1" 134717 - sources."colorette-2.0.17" 134871 + sources."colorette-2.0.19" 134718 134872 sources."commander-7.2.0" 134719 134873 sources."cross-spawn-7.0.3" 134720 134874 sources."envinfo-7.8.1" 134721 - sources."execa-5.1.1" 134722 134875 sources."fastest-levenshtein-1.0.12" 134723 134876 sources."find-up-4.1.0" 134724 134877 sources."function-bind-1.1.1" 134725 - sources."get-stream-6.0.1" 134726 134878 sources."has-1.0.3" 134727 - sources."human-signals-2.1.0" 134728 134879 sources."import-local-3.1.0" 134729 134880 sources."interpret-2.2.0" 134730 134881 sources."is-core-module-2.9.0" 134731 134882 sources."is-plain-object-2.0.4" 134732 - sources."is-stream-2.0.1" 134733 134883 sources."isexe-2.0.0" 134734 134884 sources."isobject-3.0.1" 134735 134885 sources."kind-of-6.0.3" 134736 134886 sources."locate-path-5.0.0" 134737 - sources."merge-stream-2.0.0" 134738 - sources."mimic-fn-2.1.0" 134739 - sources."npm-run-path-4.0.1" 134740 - sources."onetime-5.1.2" 134741 134887 sources."p-limit-2.3.0" 134742 134888 sources."p-locate-4.1.0" 134743 134889 sources."p-try-2.2.0" ··· 134752 134898 sources."shallow-clone-3.0.1" 134753 134899 sources."shebang-command-2.0.0" 134754 134900 sources."shebang-regex-3.0.0" 134755 - sources."signal-exit-3.0.7" 134756 - sources."strip-final-newline-2.0.0" 134757 134901 sources."supports-preserve-symlinks-flag-1.0.0" 134758 134902 sources."webpack-merge-5.8.0" 134759 134903 sources."which-2.0.2" ··· 134784 134928 sources."@types/connect-3.4.35" 134785 134929 sources."@types/connect-history-api-fallback-1.3.5" 134786 134930 sources."@types/express-4.17.13" 134787 - sources."@types/express-serve-static-core-4.17.28" 134931 + sources."@types/express-serve-static-core-4.17.29" 134788 134932 sources."@types/http-proxy-1.17.9" 134789 134933 sources."@types/json-schema-7.0.11" 134790 134934 sources."@types/mime-1.3.2" 134791 - sources."@types/node-17.0.42" 134935 + sources."@types/node-18.0.0" 134792 134936 sources."@types/qs-6.9.7" 134793 134937 sources."@types/range-parser-1.2.4" 134794 134938 sources."@types/retry-0.12.0" ··· 134817 134961 sources."bytes-3.0.0" 134818 134962 sources."call-bind-1.0.2" 134819 134963 sources."chokidar-3.5.3" 134820 - sources."colorette-2.0.17" 134964 + sources."colorette-2.0.19" 134821 134965 sources."compressible-2.0.18" 134822 134966 sources."compression-1.7.4" 134823 134967 sources."concat-map-0.0.1" ··· 134839 134983 sources."destroy-1.2.0" 134840 134984 sources."detect-node-2.1.0" 134841 134985 sources."dns-equal-1.0.0" 134842 - sources."dns-packet-5.3.1" 134986 + sources."dns-packet-5.4.0" 134843 134987 sources."ee-first-1.1.1" 134844 134988 sources."encodeurl-1.0.2" 134845 134989 sources."escape-html-1.0.3" ··· 135045 135189 sources."fastq-1.13.0" 135046 135190 sources."fill-range-7.0.1" 135047 135191 sources."glob-parent-6.0.2" 135048 - sources."globby-13.1.1" 135192 + sources."globby-13.1.2" 135049 135193 sources."ignore-5.2.0" 135050 135194 sources."is-extglob-2.1.1" 135051 135195 sources."is-glob-4.0.3" ··· 135100 135244 sources."@protobufjs/pool-1.1.0" 135101 135245 sources."@protobufjs/utf8-1.1.0" 135102 135246 sources."@types/long-4.0.2" 135103 - sources."@types/node-17.0.42" 135247 + sources."@types/node-18.0.0" 135104 135248 sources."@webtorrent/http-node-1.3.0" 135105 135249 sources."addr-to-ip-port-1.5.4" 135106 135250 sources."airplay-js-0.3.0" ··· 135205 135349 sources."mime-1.6.0" 135206 135350 ]; 135207 135351 }) 135208 - sources."dns-packet-5.3.1" 135352 + sources."dns-packet-5.4.0" 135209 135353 sources."dns-txt-2.0.2" 135210 135354 (sources."ecstatic-4.1.4" // { 135211 135355 dependencies = [ ··· 135469 135613 version = "1.0.0"; 135470 135614 src = fetchurl { 135471 135615 url = "https://registry.npmjs.org/wring/-/wring-1.0.0.tgz"; 135472 - sha1 = "3d8ebe894545bf0b42946fdc84c61e37ae657ce1"; 135616 + sha512 = "XoFoUf9gxnQkergF+FK+AuaI/iaSh9P0N1hqIGTTs1V3rjexH1ZZKuxuDUbdVGrwxvoTW4xpeZrNhBw6WJIIag=="; 135473 135617 }; 135474 135618 buildInputs = globalBuildInputs; 135475 135619 meta = { ··· 135508 135652 bypassCache = true; 135509 135653 reconstructLock = true; 135510 135654 }; 135655 + "@yaegassy/coc-nginx" = nodeEnv.buildNodePackage { 135656 + name = "_at_yaegassy_slash_coc-nginx"; 135657 + packageName = "@yaegassy/coc-nginx"; 135658 + version = "0.3.6"; 135659 + src = fetchurl { 135660 + url = "https://registry.npmjs.org/@yaegassy/coc-nginx/-/coc-nginx-0.3.6.tgz"; 135661 + sha512 = "ml53NkTvLqmhdE4rFY6WK5ZM1l6SFM+sGui1xrurEN1zTN+v0w0ifaNLwoEz/XsQdX3yTpl0oD+MA3JYgx9Tzg=="; 135662 + }; 135663 + buildInputs = globalBuildInputs; 135664 + meta = { 135665 + description = "nginx-language-server extension for coc.nvim"; 135666 + homepage = "https://github.com/yaegassy/coc-nginx#readme"; 135667 + license = "MIT"; 135668 + }; 135669 + production = true; 135670 + bypassCache = true; 135671 + reconstructLock = true; 135672 + }; 135511 135673 yaml-language-server = nodeEnv.buildNodePackage { 135512 135674 name = "yaml-language-server"; 135513 135675 packageName = "yaml-language-server"; ··· 135795 135957 sources."config-chain-1.1.13" 135796 135958 sources."configstore-3.1.5" 135797 135959 sources."console-control-strings-1.1.0" 135798 - sources."core-js-3.22.8" 135960 + sources."core-js-3.23.1" 135799 135961 sources."core-util-is-1.0.3" 135800 135962 sources."create-error-class-3.0.2" 135801 135963 sources."cross-spawn-6.0.5" ··· 136633 136795 zx = nodeEnv.buildNodePackage { 136634 136796 name = "zx"; 136635 136797 packageName = "zx"; 136636 - version = "6.2.4"; 136798 + version = "7.0.0"; 136637 136799 src = fetchurl { 136638 - url = "https://registry.npmjs.org/zx/-/zx-6.2.4.tgz"; 136639 - sha512 = "wBDObcY5tKDOIOuGrg3XwrhCa6V6eeZLQDVbbpgN9pdhiyOJA/So9R9i5vKN7cGGWkcKKHy29i8kJtx02j+kSg=="; 136800 + url = "https://registry.npmjs.org/zx/-/zx-7.0.0.tgz"; 136801 + sha512 = "QPUkzM2o/yfr8CnJgR3Uzi4ESW3IhM4iOIrDx2wJ0vZAU4Gz0Bd/wvOWdqAheJgUTc1ecTkOMpdBKCSBvVDnTg=="; 136640 136802 }; 136641 136803 dependencies = [ 136642 136804 sources."@nodelib/fs.scandir-2.1.5" ··· 136644 136806 sources."@nodelib/fs.walk-1.2.8" 136645 136807 sources."@types/fs-extra-9.0.13" 136646 136808 sources."@types/minimist-1.2.2" 136647 - sources."@types/node-17.0.42" 136809 + sources."@types/node-17.0.45" 136648 136810 sources."@types/ps-tree-1.1.2" 136649 136811 sources."@types/which-2.0.1" 136650 136812 sources."braces-3.0.2" ··· 136661 136823 sources."from-0.1.7" 136662 136824 sources."fs-extra-10.1.0" 136663 136825 sources."glob-parent-5.1.2" 136664 - sources."globby-13.1.1" 136826 + sources."globby-13.1.2" 136665 136827 sources."graceful-fs-4.2.10" 136666 136828 sources."ignore-5.2.0" 136667 136829 sources."is-extglob-2.1.1"
+5
pkgs/development/python-modules/functorch/default.nix
··· 6 6 , pytestCheckHook 7 7 , python 8 8 , pytorch 9 + , pybind11 9 10 , which 10 11 }: 11 12 ··· 27 28 ninja 28 29 pytorch 29 30 which 31 + ]; 32 + 33 + buildInputs = [ 34 + pybind11 30 35 ]; 31 36 32 37 preCheck = ''
+1
pkgs/development/python-modules/jaxlib/bin.nix
··· 139 139 meta = with lib; { 140 140 description = "XLA library for JAX"; 141 141 homepage = "https://github.com/google/jax"; 142 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 142 143 license = licenses.asl20; 143 144 maintainers = with maintainers; [ samuela ]; 144 145 platforms = [ "x86_64-linux" ];
+1
pkgs/development/python-modules/pytorch/bin.nix
··· 75 75 # https://docs.nvidia.com/cuda/eula/index.html 76 76 # https://www.intel.com/content/www/us/en/developer/articles/license/onemkl-license-faq.html 77 77 license = licenses.bsd3; 78 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 78 79 platforms = platforms.linux ++ platforms.darwin; 79 80 hydraPlatforms = []; # output size 3.2G on 1.11.0 80 81 maintainers = with maintainers; [ junjihashimoto ];
+5 -1
pkgs/development/python-modules/pytorch/default.nix
··· 176 176 USE_MKLDNN = setBool mklDnnSupport; 177 177 USE_MKLDNN_CBLAS = setBool mklDnnSupport; 178 178 179 + # Avoid using pybind11 from git submodule 180 + # Also avoids pytorch exporting the headers of pybind11 181 + USE_SYSTEM_BIND11 = true; 182 + 179 183 preBuild = '' 180 184 export MAX_JOBS=$NIX_BUILD_CORES 181 185 ${python.interpreter} setup.py build --cmake-only ··· 223 227 removeReferencesTo 224 228 ] ++ lib.optionals cudaSupport [ cudatoolkit_joined ]; 225 229 226 - buildInputs = [ blas blas.provider ] 230 + buildInputs = [ blas blas.provider pybind11 ] 227 231 ++ lib.optionals cudaSupport [ cudnn magma nccl ] 228 232 ++ lib.optionals stdenv.isLinux [ numactl ]; 229 233
+49
pkgs/development/python-modules/schwifty/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , importlib-resources 5 + , importlib-metadata 6 + , iso3166 7 + , pycountry 8 + , pytestCheckHook 9 + , pytest-cov 10 + , pythonOlder 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "schwifty"; 15 + version = "2022.6.0"; 16 + format = "pyproject"; 17 + 18 + disabled = pythonOlder "3.7"; 19 + 20 + src = fetchPypi { 21 + inherit pname version; 22 + sha256 = "sha256-MekF96K8IPjop5764Oq6ZcvKJOTc1Qg/gV5Dz2iacBk="; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + iso3166 27 + pycountry 28 + ] ++ lib.optionals (pythonOlder "3.8") [ 29 + importlib-resources 30 + ] ++ lib.optionals (pythonOlder "3.7") [ 31 + importlib-metadata 32 + ]; 33 + 34 + checkInputs = [ 35 + pytest-cov 36 + pytestCheckHook 37 + ]; 38 + 39 + pythonImportsCheck = [ 40 + "schwifty" 41 + ]; 42 + 43 + meta = with lib; { 44 + description = "Validate/generate IBANs and BICs"; 45 + homepage = "https://github.com/mdomke/schwifty"; 46 + license = licenses.mit; 47 + maintainers = with maintainers; [ milibopp ]; 48 + }; 49 + }
+1
pkgs/development/python-modules/tensorflow/bin.nix
··· 190 190 broken = stdenv.isDarwin; 191 191 description = "Computation using data flow graphs for scalable machine learning"; 192 192 homepage = "http://tensorflow.org"; 193 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 193 194 license = licenses.asl20; 194 195 maintainers = with maintainers; [ jyp abbradar cdepillabout ]; 195 196 platforms = [ "x86_64-linux" "x86_64-darwin" ];
+1
pkgs/development/python-modules/torchaudio/bin.nix
··· 50 50 # https://docs.nvidia.com/cuda/eula/index.html 51 51 # https://www.intel.com/content/www/us/en/developer/articles/license/onemkl-license-faq.html 52 52 license = licenses.bsd3; 53 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 53 54 platforms = platforms.linux; 54 55 maintainers = with maintainers; [ junjihashimoto ]; 55 56 };
+1
pkgs/development/python-modules/torchvision/bin.nix
··· 60 60 # https://docs.nvidia.com/cuda/eula/index.html 61 61 # https://www.intel.com/content/www/us/en/developer/articles/license/onemkl-license-faq.html 62 62 license = licenses.bsd3; 63 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 63 64 platforms = platforms.linux; 64 65 maintainers = with maintainers; [ junjihashimoto ]; 65 66 };
+4
pkgs/development/tools/azure-functions-core-tools/default.nix
··· 66 66 meta = with lib; { 67 67 homepage = "https://github.com/Azure/azure-functions-core-tools"; 68 68 description = "Command line tools for Azure Functions"; 69 + sourceProvenance = with sourceTypes; [ 70 + binaryBytecode 71 + binaryNativeCode 72 + ]; 69 73 license = licenses.mit; 70 74 maintainers = with maintainers; [ jshcmpbll ]; 71 75 platforms = platforms.linux;
+1
pkgs/development/tools/build-managers/bloop/default.nix
··· 63 63 64 64 meta = with lib; { 65 65 homepage = "https://scalacenter.github.io/bloop/"; 66 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 66 67 license = licenses.asl20; 67 68 description = "A Scala build server and command-line tool to make the compile and test developer workflows fast and productive in a build-tool-agnostic way"; 68 69 platforms = [ "x86_64-linux" "x86_64-darwin" ];
+4 -1
pkgs/development/tools/build-managers/gradle/default.nix
··· 86 86 homepage = "https://www.gradle.org/"; 87 87 changelog = "https://docs.gradle.org/${version}/release-notes.html"; 88 88 downloadPage = "https://gradle.org/next-steps/?version=${version}"; 89 - sourceProvenance = with sourceTypes; [ binaryBytecode ]; 89 + sourceProvenance = with sourceTypes; [ 90 + binaryBytecode 91 + binaryNativeCode 92 + ]; 90 93 license = licenses.asl20; 91 94 platforms = if (supportedPlatforms != null) then supportedPlatforms else platforms.unix; 92 95 maintainers = with maintainers; [ lorenzleutgeb liff ];
+4
pkgs/development/tools/build-managers/msbuild/default.nix
··· 143 143 meta = with lib; { 144 144 description = "Mono version of Microsoft Build Engine, the build platform for .NET, and Visual Studio"; 145 145 homepage = "https://github.com/mono/msbuild"; 146 + sourceProvenance = with sourceTypes; [ 147 + fromSource 148 + binaryNativeCode # dependencies 149 + ]; 146 150 license = licenses.mit; 147 151 maintainers = with maintainers; [ jdanek ]; 148 152 platforms = platforms.unix;
+4
pkgs/development/tools/build-managers/sbt/default.nix
··· 39 39 meta = with lib; { 40 40 homepage = "https://www.scala-sbt.org/"; 41 41 license = licenses.bsd3; 42 + sourceProvenance = with sourceTypes; [ 43 + binaryBytecode 44 + binaryNativeCode 45 + ]; 42 46 description = "A build tool for Scala, Java and more"; 43 47 maintainers = with maintainers; [ nequissimus ]; 44 48 platforms = platforms.unix;
+1
pkgs/development/tools/build-managers/scala-cli/default.nix
··· 63 63 meta = with lib; { 64 64 homepage = "https://scala-cli.virtuslab.org"; 65 65 downloadPage = "https://github.com/VirtusLab/scala-cli/releases/v${version}"; 66 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 66 67 license = licenses.asl20; 67 68 description = "Command-line tool to interact with the Scala language"; 68 69 maintainers = [ maintainers.kubukoz ];
+1
pkgs/development/tools/ccloud-cli/default.nix
··· 28 28 meta = with lib; { 29 29 description = "Confluent Cloud CLI"; 30 30 homepage = "https://docs.confluent.io/current/cloud/cli/index.html"; 31 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 31 32 license = licenses.unfree; 32 33 maintainers = with maintainers; [ kalbasit ]; 33 34
+1
pkgs/development/tools/confluent-cli/default.nix
··· 28 28 meta = with lib; { 29 29 description = "Confluent CLI"; 30 30 homepage = "https://docs.confluent.io/confluent-cli/current/overview.html"; 31 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 31 32 license = licenses.unfree; 32 33 maintainers = with maintainers; [ rguevara84 ]; 33 34
+4 -2
pkgs/development/tools/database/pgcli/default.nix pkgs/development/python-modules/pgcli/default.nix
··· 1 1 { lib, stdenv 2 - , buildPythonApplication 2 + , buildPythonPackage 3 3 , fetchPypi 4 4 , isPy3k 5 5 , cli-helpers ··· 18 18 , mock 19 19 }: 20 20 21 - buildPythonApplication rec { 21 + # this is a pythonPackage because of the ipython line magics in pgcli.magic 22 + # integrating with ipython-sql 23 + buildPythonPackage rec { 22 24 pname = "pgcli"; 23 25 version = "3.4.1"; 24 26
-1
pkgs/development/tools/delve/default.nix
··· 34 34 homepage = "https://github.com/go-delve/delve"; 35 35 maintainers = with maintainers; [ SuperSandro2000 vdemeester ]; 36 36 license = licenses.mit; 37 - platforms = [ "x86_64-linux" ] ++ platforms.darwin; 38 37 }; 39 38 }
+1
pkgs/development/tools/eclipse-mat/default.nix
··· 110 110 run a report to automatically extract leak suspects. 111 111 ''; 112 112 homepage = "https://www.eclipse.org/mat"; 113 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 113 114 license = licenses.epl20; 114 115 maintainers = [ maintainers.ktor ]; 115 116 platforms = [ "x86_64-linux" ];
+4
pkgs/development/tools/google-app-engine-go-sdk/default.nix
··· 36 36 description = "Google App Engine SDK for Go"; 37 37 version = version; 38 38 homepage = "https://cloud.google.com/appengine/docs/go/"; 39 + sourceProvenance = with sourceTypes; [ 40 + fromSource 41 + binaryNativeCode # includes golang toolchain binaries 42 + ]; 39 43 license = licenses.asl20; 40 44 platforms = ["x86_64-linux" "x86_64-darwin"]; 41 45 maintainers = with maintainers; [ lufia ];
-15
pkgs/development/tools/gotags/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - pname = "gotags"; 5 - version = "unstable-2015-08-03"; 6 - 7 - goPackagePath = "github.com/jstemmer/gotags"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "jstemmer"; 11 - repo = "gotags"; 12 - rev = "be986a34e20634775ac73e11a5b55916085c48e7"; 13 - sha256 = "sha256-Su7AA6HCdeZai8+yRSKzlrgXvsSEgrXGot2ABRL2PBw="; 14 - }; 15 - }
+1
pkgs/development/tools/iaca/2.1.nix
··· 27 27 meta = { 28 28 description = "Intel Architecture Code Analyzer"; 29 29 homepage = "https://software.intel.com/en-us/articles/intel-architecture-code-analyzer/"; 30 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 30 31 license = licenses.unfree; 31 32 platforms = [ "x86_64-linux" ]; 32 33 maintainers = with maintainers; [ kazcw ];
+1
pkgs/development/tools/iaca/3.0.nix
··· 18 18 meta = { 19 19 description = "Intel Architecture Code Analyzer"; 20 20 homepage = "https://software.intel.com/en-us/articles/intel-architecture-code-analyzer/"; 21 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 21 22 license = licenses.unfree; 22 23 platforms = [ "x86_64-linux" ]; 23 24 maintainers = with maintainers; [ kazcw ];
+1
pkgs/development/tools/kythe/default.nix
··· 41 41 analyses, editors, code-review applications, and more — to share 42 42 information with each other smoothly. ''; 43 43 homepage = "https://kythe.io/"; 44 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 44 45 license = licenses.asl20; 45 46 platforms = platforms.linux; 46 47 maintainers = [ maintainers.mpickering ];
+1
pkgs/development/tools/mblock-mlink/default.nix
··· 32 32 meta = with lib; { 33 33 description = "Driver for mBlock web version"; 34 34 homepage = "https://mblock.makeblock.com/en-us/download/"; 35 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 35 36 license = licenses.unfree; 36 37 platforms = [ "x86_64-linux" ]; 37 38 maintainers = [ maintainers.mausch ];
+1
pkgs/development/tools/misc/blackfire/default.nix
··· 98 98 meta = with lib; { 99 99 description = "Blackfire Profiler agent and client"; 100 100 homepage = "https://blackfire.io/"; 101 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 101 102 license = licenses.unfree; 102 103 maintainers = with maintainers; [ jtojnar shyim ]; 103 104 platforms = [ "x86_64-linux" "aarch64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" ];
+1
pkgs/development/tools/misc/blackfire/php-probe.nix
··· 198 198 meta = with lib; { 199 199 description = "Blackfire Profiler PHP module"; 200 200 homepage = "https://blackfire.io/"; 201 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 201 202 license = licenses.unfree; 202 203 maintainers = with maintainers; [ jtojnar shyim ]; 203 204 platforms = [ "x86_64-linux" "aarch64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" ];
+1
pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix
··· 28 28 meta = with lib; { 29 29 description = "A toolchain for cross-compiling to reMarkable tablets"; 30 30 homepage = "https://remarkable.engineering/"; 31 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 31 32 license = licenses.gpl2Plus; 32 33 maintainers = with maintainers; [ nickhu siraben ]; 33 34 platforms = [ "x86_64-linux" ];
+1
pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix
··· 28 28 meta = with lib; { 29 29 description = "A toolchain for cross-compiling to reMarkable 2 tablets"; 30 30 homepage = "https://remarkable.engineering/"; 31 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 31 32 license = licenses.gpl2Plus; 32 33 maintainers = with maintainers; [ tadfisher ]; 33 34 platforms = [ "x86_64-linux" ];
+1
pkgs/development/tools/misc/saleae-logic/default.nix
··· 90 90 meta = with lib; { 91 91 description = "Software for Saleae logic analyzers"; 92 92 homepage = "https://www.saleae.com/"; 93 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 93 94 license = licenses.unfree; 94 95 platforms = platforms.linux; 95 96 maintainers = [ maintainers.bjornfor ];
+1
pkgs/development/tools/misc/segger-ozone/default.nix
··· 77 77 not guaranteed to be. 78 78 ''; 79 79 homepage = "https://www.segger.com/products/development-tools/ozone-j-link-debugger"; 80 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 80 81 license = licenses.unfree; 81 82 maintainers = [ maintainers.bmilanov ]; 82 83 platforms = [ "x86_64-linux" ];
+1
pkgs/development/tools/neoload/default.nix
··· 87 87 88 88 homepage = "https://www.neotys.com/product/overview-neoload.html"; 89 89 90 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 90 91 # https://www.neotys.com/documents/legal/eula/neoload/eula_en.html 91 92 license = lib.licenses.unfree; 92 93
+4
pkgs/development/tools/omnisharp-roslyn/default.nix
··· 109 109 description = "OmniSharp based on roslyn workspaces"; 110 110 homepage = "https://github.com/OmniSharp/omnisharp-roslyn"; 111 111 platforms = platforms.unix; 112 + sourceProvenance = with sourceTypes; [ 113 + fromSource 114 + binaryNativeCode # dependencies 115 + ]; 112 116 license = licenses.mit; 113 117 maintainers = with maintainers; [ tesq0 ericdallo corngood ]; 114 118 mainProgram = "omnisharp";
+2 -2
pkgs/development/tools/quick-lint-js/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "quick-lint-js"; 6 - version = "2.5.0"; 6 + version = "2.6.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "quick-lint"; 10 10 repo = "quick-lint-js"; 11 11 rev = version; 12 - sha256 = "0vx6fddd0y8p27znv0ah0gjigs9hkifz132vzsnfg7w4s5az4fiy"; 12 + sha256 = "sha256-ZZxLiZ7ptaUAUXa2HA5ICEP5Ym6221Ehfd6ufj78kXM="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake ninja ];
+1
pkgs/development/tools/react-native-debugger/default.nix
··· 75 75 76 76 meta = with lib; { 77 77 homepage = "https://github.com/jhen0409/react-native-debugger"; 78 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 78 79 license = licenses.mit; 79 80 description = "The standalone app based on official debugger of React Native, and includes React Inspector / Redux DevTools"; 80 81 maintainers = with maintainers; [ ];
+1
pkgs/development/tools/sslmate-agent/default.nix
··· 34 34 meta = with lib; { 35 35 description = "Daemon for managing SSL/TLS certificates on a server"; 36 36 homepage = "https://sslmate.com/"; 37 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 37 38 license = licenses.unfree; 38 39 maintainers = with maintainers; [ wolfangaukang ]; 39 40 };
+1
pkgs/development/tools/thrust/default.nix
··· 39 39 meta = with lib; { 40 40 description = "Chromium-based cross-platform / cross-language application framework"; 41 41 homepage = "https://github.com/breach/thrust"; 42 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 42 43 license = licenses.mit; 43 44 maintainers = [ maintainers.osener ]; 44 45 platforms = [ "x86_64-linux" ];
-143
pkgs/development/tools/unity3d/default.nix
··· 1 - { stdenv, lib, fetchurl, makeWrapper, file, getopt 2 - , gtk2, gtk3, gdk-pixbuf, glib, libGL, libGLU, nss, nspr, udev, tbb 3 - , alsa-lib, GConf, cups, libcap, fontconfig, freetype, pango 4 - , cairo, dbus, expat, zlib, libpng12, nodejs, gnutar, gcc, gcc_32bit 5 - , libX11, libXcursor, libXdamage, libXfixes, libXrender, libXi 6 - , libXcomposite, libXext, libXrandr, libXtst, libSM, libICE, libxcb, chromium 7 - , libpqxx, libselinux, pciutils, libpulseaudio 8 - }: 9 - 10 - let 11 - libPath64 = lib.makeLibraryPath [ 12 - gcc.cc gtk2 gdk-pixbuf glib libGL libGLU nss nspr 13 - alsa-lib GConf cups libcap fontconfig freetype pango 14 - cairo dbus expat zlib libpng12 udev tbb 15 - libX11 libXcursor libXdamage libXfixes libXrender libXi 16 - libXcomposite libXext libXrandr libXtst libSM libICE libxcb 17 - libpqxx gtk3 18 - 19 - libselinux pciutils libpulseaudio 20 - ]; 21 - libPath32 = lib.makeLibraryPath [ gcc_32bit.cc ]; 22 - binPath = lib.makeBinPath [ nodejs gnutar ]; 23 - 24 - ver = "2018.3.0"; 25 - build = "f2"; 26 - 27 - in stdenv.mkDerivation { 28 - pname = "unity-editor"; 29 - version = "${ver}x${build}"; 30 - 31 - src = fetchurl { 32 - url = "https://beta.unity3d.com/download/6e9a27477296/LinuxEditorInstaller/Unity.tar.xz"; 33 - sha256 = "10gppnqacs1qzahj077nkcgbfz2lryd0dxnfcmvyc64xpxnj9nlk"; 34 - }; 35 - 36 - nosuidLib = ./unity-nosuid.c; 37 - 38 - nativeBuildInputs = [ makeWrapper file getopt ]; 39 - 40 - outputs = [ "out" ]; 41 - 42 - sourceRoot = "."; 43 - 44 - buildPhase = '' 45 - cd Editor 46 - 47 - $CC -fPIC -shared -o libunity-nosuid.so $nosuidLib -ldl 48 - strip libunity-nosuid.so 49 - 50 - cd .. 51 - ''; 52 - 53 - installPhase = '' 54 - unitydir="$out/opt/Unity/Editor" 55 - mkdir -p $unitydir 56 - mv Editor/* $unitydir 57 - ln -sf /run/wrappers/bin/${chromium.sandboxExecutableName} $unitydir/chrome-sandbox 58 - 59 - mkdir -p $out/bin 60 - makeWrapper $unitydir/Unity $out/bin/unity-editor \ 61 - --prefix LD_LIBRARY_PATH : "${libPath64}" \ 62 - --prefix LD_PRELOAD : "$unitydir/libunity-nosuid.so" \ 63 - --prefix PATH : "${binPath}" 64 - ''; 65 - 66 - preFixup = '' 67 - patchFile() { 68 - ftype="$(file -b "$1")" 69 - if [[ "$ftype" =~ LSB\ .*dynamically\ linked ]]; then 70 - if [[ "$ftype" =~ 32-bit ]]; then 71 - rpath="${libPath32}" 72 - intp="$(cat $NIX_CC/nix-support/dynamic-linker-m32)" 73 - else 74 - rpath="${libPath64}" 75 - intp="$(cat $NIX_CC/nix-support/dynamic-linker)" 76 - fi 77 - 78 - # Save origin-relative parts of rpath. 79 - originRpath="$(patchelf --print-rpath "$1" | sed "s/:/\n/g" | grep "^\$ORIGIN" | paste -sd ":" - || echo "")" 80 - rpath="$originRpath:$rpath" 81 - 82 - patchelf --set-rpath "$rpath" "$1" 83 - patchelf --set-interpreter "$intp" "$1" 2> /dev/null || true 84 - fi 85 - } 86 - 87 - upm_linux=$unitydir/Data/Resources/PackageManager/Server/UnityPackageManager 88 - 89 - 90 - orig_size=$(stat --printf=%s $upm_linux) 91 - 92 - # Exclude PlaybackEngines to build something that can be run on FHS-compliant Linuxes 93 - find $unitydir -name PlaybackEngines -prune -o -type f -print | while read path; do 94 - patchFile "$path" 95 - done 96 - 97 - new_size=$(stat --printf=%s $upm_linux) 98 - 99 - ###### zeit-pkg fixing starts here. 100 - # we're replacing plaintext js code that looks like 101 - # PAYLOAD_POSITION = '1234 ' | 0 102 - # [...] 103 - # PRELUDE_POSITION = '1234 ' | 0 104 - # ^-----20-chars-----^^------22-chars------^ 105 - # ^-- grep points here 106 - # 107 - # var_* are as described above 108 - # shift_by seems to be safe so long as all patchelf adjustments occur 109 - # before any locations pointed to by hardcoded offsets 110 - 111 - var_skip=20 112 - var_select=22 113 - shift_by=$(expr $new_size - $orig_size) 114 - 115 - function fix_offset { 116 - # $1 = name of variable to adjust 117 - location=$(grep -obUam1 "$1" $upm_linux | cut -d: -f1) 118 - location=$(expr $location + $var_skip) 119 - value=$(dd if=$upm_linux iflag=count_bytes,skip_bytes skip=$location \ 120 - bs=1 count=$var_select status=none) 121 - value=$(expr $shift_by + $value) 122 - echo -n $value | dd of=$upm_linux bs=1 seek=$location conv=notrunc 123 - } 124 - 125 - fix_offset PAYLOAD_POSITION 126 - fix_offset PRELUDE_POSITION 127 - ''; 128 - 129 - dontStrip = true; 130 - dontPatchELF = true; 131 - 132 - meta = with lib; { 133 - homepage = "https://unity3d.com/"; 134 - description = "Game development tool"; 135 - longDescription = '' 136 - Popular development platform for creating 2D and 3D multiplatform games 137 - and interactive experiences. 138 - ''; 139 - license = licenses.unfree; 140 - platforms = [ "x86_64-linux" ]; 141 - maintainers = with maintainers; [ tesq0 ]; 142 - }; 143 - }
-32
pkgs/development/tools/unity3d/unity-nosuid.c
··· 1 - #define _GNU_SOURCE 2 - 3 - #include <stdio.h> 4 - #include <string.h> 5 - #include <sys/stat.h> 6 - #include <unistd.h> 7 - #include <dlfcn.h> 8 - 9 - static const char sandbox_path[] = "/chrome-sandbox"; 10 - 11 - int __xstat(int ver, const char* path, struct stat* stat_buf) { 12 - static int (*original_xstat)(int, const char*, struct stat*) = NULL; 13 - if (original_xstat == NULL) { 14 - int (*fun)(int, const char*, struct stat*) = dlsym(RTLD_NEXT, "__xstat"); 15 - if (fun == NULL) { 16 - return -1; 17 - }; 18 - original_xstat = fun; 19 - }; 20 - 21 - int res = (*original_xstat)(ver, path, stat_buf); 22 - if (res == 0) { 23 - char* pos = strstr(path, sandbox_path); 24 - if (pos != NULL && *(pos + sizeof(sandbox_path) - 1) == '\0') { 25 - printf("Lying about chrome-sandbox access rights...\n"); 26 - stat_buf->st_uid = 0; 27 - stat_buf->st_gid = 0; 28 - stat_buf->st_mode = 0104755; 29 - }; 30 - } 31 - return res; 32 - }
+1
pkgs/development/web/cypress/default.nix
··· 70 70 meta = with lib; { 71 71 description = "Fast, easy and reliable testing for anything that runs in a browser"; 72 72 homepage = "https://www.cypress.io"; 73 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 73 74 license = licenses.mit; 74 75 platforms = [ "x86_64-linux" ]; 75 76 maintainers = with maintainers; [ tweber mmahut ];
+1
pkgs/development/web/postman/default.nix
··· 6 6 meta = with lib; { 7 7 homepage = "https://www.getpostman.com"; 8 8 description = "API Development Environment"; 9 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 9 10 license = licenses.postman; 10 11 platforms = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ]; 11 12 maintainers = with maintainers; [ johnrichardrinehart evanjs tricktron ];
+1
pkgs/games/factorio/default.nix
··· 166 166 version 1.0 in mid 2020. 167 167 ''; 168 168 homepage = "https://www.factorio.com/"; 169 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 169 170 license = lib.licenses.unfree; 170 171 maintainers = with lib.maintainers; [ Baughn elitak erictapen priegger lukegb ]; 171 172 platforms = [ "x86_64-linux" ];
+1
pkgs/games/minecraft/default.nix
··· 149 149 description = "Official launcher for Minecraft, a sandbox-building game"; 150 150 homepage = "https://minecraft.net"; 151 151 maintainers = with maintainers; [ cpages ryantm infinisil ]; 152 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 152 153 license = licenses.unfree; 153 154 platforms = [ "x86_64-linux" ]; 154 155 };
+4 -1
pkgs/games/runelite/default.nix
··· 58 58 meta = with lib; { 59 59 description = "Open source Old School RuneScape client"; 60 60 homepage = "https://runelite.net/"; 61 - sourceProvenance = with sourceTypes; [ binaryBytecode ]; 61 + sourceProvenance = with sourceTypes; [ 62 + binaryBytecode 63 + binaryNativeCode 64 + ]; 62 65 license = licenses.bsd2; 63 66 maintainers = with maintainers; [ kmeakin ]; 64 67 platforms = [ "x86_64-linux" ];
+1
pkgs/games/runescape-launcher/default.nix
··· 77 77 meta = with lib; { 78 78 description = "Launcher for RuneScape 3, the current main RuneScape"; 79 79 homepage = "https://www.runescape.com/"; 80 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 80 81 license = licenses.unfree; 81 82 maintainers = with maintainers; [ grburst ]; 82 83 platforms = [ "x86_64-linux" ];
+4
pkgs/games/unvanquished/default.nix
··· 225 225 mit gpl3Plus lib.licenses.zlib bsd3 # engine 226 226 cc-by-sa-25 cc-by-sa-30 cc-by-30 cc-by-sa-40 cc0 # assets 227 227 ]; 228 + sourceProvenance = with lib.sourceTypes; [ 229 + fromSource 230 + binaryNativeCode # unvanquished-binary-deps 231 + ]; 228 232 maintainers = with lib.maintainers; [ afontain ]; 229 233 platforms = [ "x86_64-linux" ]; 230 234 };
+1
pkgs/misc/drivers/epkowa/default.nix
··· 18 18 }: 19 19 let common_meta = { 20 20 homepage = "http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX"; 21 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 21 22 license = with lib.licenses; epson; 22 23 platforms = with lib.platforms; linux; 23 24 };
+1
pkgs/misc/drivers/gutenprint/bin.nix
··· 63 63 ''; 64 64 65 65 meta = { 66 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 66 67 description = "Some additional CUPS drivers including Canon drivers"; 67 68 platforms = [ "x86_64-linux" ]; 68 69 };
+1
pkgs/misc/drivers/utsushi/networkscan.nix
··· 24 24 meta = with lib; { 25 25 homepage = "https://support.epson.net/linux/en/imagescanv3.php"; 26 26 description = "Network scan plugin for ImageScan v3"; 27 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 27 28 license = licenses.unfree; 28 29 maintainers = with maintainers; [ abbradar ]; 29 30 platforms = [ "x86_64-linux" ];
+2 -2
pkgs/os-specific/darwin/sketchybar/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "sketchybar"; 13 - version = "2.5.2"; 13 + version = "2.7.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "FelixKratz"; 17 17 repo = "SketchyBar"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-xkgNPVrGxmi8377+G1HQ8SdwS0fOnGhwYy43yLRyvF0="; 19 + sha256 = "sha256-JzZ7X/McWIui9nkSkSGTSdBvJvMics/j7Qqh9wZU7iM="; 20 20 }; 21 21 22 22 buildInputs = [ Carbon Cocoa SkyLight ]
+30 -30
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 2 2 "4.14": { 3 3 "patch": { 4 4 "extra": "-hardened1", 5 - "name": "linux-hardened-4.14.282-hardened1.patch", 6 - "sha256": "0f7av5llr1ccx0k6z2p2spaqk4jfaw9555gf59303zgxsvakavmi", 7 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.282-hardened1/linux-hardened-4.14.282-hardened1.patch" 5 + "name": "linux-hardened-4.14.283-hardened1.patch", 6 + "sha256": "07827a7wigdp2wml770gc0mmzmcmqf9mnry9xbsxpkgbs91ng6lp", 7 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.283-hardened1/linux-hardened-4.14.283-hardened1.patch" 8 8 }, 9 - "sha256": "18sp2qvk8dkjrlxwf4d470282m9wyvhajvyys9vs94rh1i3whdv6", 10 - "version": "4.14.282" 9 + "sha256": "191gybhnck4mh9yjzwgv1crrbxjc90p12bcif721rbs6xzszmxzh", 10 + "version": "4.14.283" 11 11 }, 12 12 "4.19": { 13 13 "patch": { 14 14 "extra": "-hardened1", 15 - "name": "linux-hardened-4.19.246-hardened1.patch", 16 - "sha256": "00827r0hiiia95z4nwvbqi1jxj5bzh8hna3d4p08gj2pvq5rwvxk", 17 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.246-hardened1/linux-hardened-4.19.246-hardened1.patch" 15 + "name": "linux-hardened-4.19.247-hardened1.patch", 16 + "sha256": "1m7289bljbki2wiy6458v13l8wvslqgqhajcp735j50psi6jr6dp", 17 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.247-hardened1/linux-hardened-4.19.247-hardened1.patch" 18 18 }, 19 - "sha256": "0fmsglkvdgdmrkm53vyi9d4hvdl4py9qn1z0mni224n96rd2zb80", 20 - "version": "4.19.246" 19 + "sha256": "136gmsmvgb2nid4by2ld003w06lsr7hgn9ajx0wfziag7pfnjsv2", 20 + "version": "4.19.247" 21 21 }, 22 22 "5.10": { 23 23 "patch": { 24 24 "extra": "-hardened1", 25 - "name": "linux-hardened-5.10.121-hardened1.patch", 26 - "sha256": "1a7mvfnm15ci81129mpvh3gn6w75bq0i1ydv02zyngk9cz5mgjc1", 27 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.121-hardened1/linux-hardened-5.10.121-hardened1.patch" 25 + "name": "linux-hardened-5.10.122-hardened1.patch", 26 + "sha256": "1mb10f3kfncgpwlygvnlvjy3cjlgjzbc5lp73wgjz1nzqjfdjrlp", 27 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.122-hardened1/linux-hardened-5.10.122-hardened1.patch" 28 28 }, 29 - "sha256": "1iljaaiwqg30rqb9zxrxc4l1p56q75jf0zvsrmn67z2a12sffi4h", 30 - "version": "5.10.121" 29 + "sha256": "0h0gfi3p1dd4p8xxklrl8sc3rv4xd08q7nv0i4m166w8188v62wj", 30 + "version": "5.10.122" 31 31 }, 32 32 "5.15": { 33 33 "patch": { 34 34 "extra": "-hardened1", 35 - "name": "linux-hardened-5.15.46-hardened1.patch", 36 - "sha256": "1ndvrr98mn40705dsfkyda9ny5r273bl9f6n1xb5ndx34j396wrh", 37 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.46-hardened1/linux-hardened-5.15.46-hardened1.patch" 35 + "name": "linux-hardened-5.15.47-hardened1.patch", 36 + "sha256": "0bpzk0l4kcfhqinh3rpl6wv70lhw9c304zgw2qbw0fa76mqfwgs8", 37 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.47-hardened1/linux-hardened-5.15.47-hardened1.patch" 38 38 }, 39 - "sha256": "0srp0wypl24gf5yz91mpk1c2kllabq6wvby1wqrrbdwvfx35figb", 40 - "version": "5.15.46" 39 + "sha256": "1700js21yimx8rz4bsglszry564l2ycmmcr36rdqspzbmlx5w8wb", 40 + "version": "5.15.47" 41 41 }, 42 42 "5.17": { 43 43 "patch": { 44 44 "extra": "-hardened1", 45 - "name": "linux-hardened-5.17.14-hardened1.patch", 46 - "sha256": "017dq8ngg3mxnfffjkf1knkzii8hsf1gsi65zla34n7kjyajlchq", 47 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.17.14-hardened1/linux-hardened-5.17.14-hardened1.patch" 45 + "name": "linux-hardened-5.17.15-hardened1.patch", 46 + "sha256": "053zgg464rb8ca92hkzxqbffapmj0zs296af354b7jkgfpb5xzr1", 47 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.17.15-hardened1/linux-hardened-5.17.15-hardened1.patch" 48 48 }, 49 - "sha256": "0r2skbgxzw42cn29mr7i9w7fczzxhc1lx3xvri44ljjyfdqn7r0b", 50 - "version": "5.17.14" 49 + "sha256": "0a5n1lb43nhnhwjwclkk3dqp2nxsx5ny7zfl8idvzshf94m9472a", 50 + "version": "5.17.15" 51 51 }, 52 52 "5.18": { 53 53 "patch": { ··· 62 62 "5.4": { 63 63 "patch": { 64 64 "extra": "-hardened1", 65 - "name": "linux-hardened-5.4.197-hardened1.patch", 66 - "sha256": "0kqfviyx5aigadm051y9xkbyscnn9f92zwqxkjkxhpn0y684i7n5", 67 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.197-hardened1/linux-hardened-5.4.197-hardened1.patch" 65 + "name": "linux-hardened-5.4.198-hardened1.patch", 66 + "sha256": "0srx8kfapa8ahbqajwd8dir49l4rs0ijz3k3nrgvb2jjlrg1m4dd", 67 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.198-hardened1/linux-hardened-5.4.198-hardened1.patch" 68 68 }, 69 - "sha256": "1a1nzrx873vwlpm018l6rk19yh59badvwsknw3chbkbhzjrigbf2", 70 - "version": "5.4.197" 69 + "sha256": "0wvscr5wia2xdiqfxxdwl8kxf1s085qdj5h4423mraj7dh6l0ihh", 70 + "version": "5.4.198" 71 71 } 72 72 }
+2 -2
pkgs/os-specific/linux/kernel/linux-4.14.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.14.282"; 6 + version = "4.14.283"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "18sp2qvk8dkjrlxwf4d470282m9wyvhajvyys9vs94rh1i3whdv6"; 16 + sha256 = "191gybhnck4mh9yjzwgv1crrbxjc90p12bcif721rbs6xzszmxzh"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.19.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.19.246"; 6 + version = "4.19.247"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "0fmsglkvdgdmrkm53vyi9d4hvdl4py9qn1z0mni224n96rd2zb80"; 16 + sha256 = "136gmsmvgb2nid4by2ld003w06lsr7hgn9ajx0wfziag7pfnjsv2"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.9.nix
··· 1 1 { buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args: 2 2 3 3 buildLinux (args // rec { 4 - version = "4.9.317"; 4 + version = "4.9.318"; 5 5 extraMeta.branch = "4.9"; 6 6 extraMeta.broken = stdenv.isAarch64; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 10 - sha256 = "06qdqcplslnp1ncaqvp5yjr294rz3x4qrxnv522v76awj6dkd8vy"; 10 + sha256 = "09czsc0ynyw068yczs9qx4cliqmrh5hvz93c77lhh014wn02pba4"; 11 11 }; 12 12 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.10.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.10.121"; 6 + version = "5.10.122"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1iljaaiwqg30rqb9zxrxc4l1p56q75jf0zvsrmn67z2a12sffi4h"; 16 + sha256 = "0h0gfi3p1dd4p8xxklrl8sc3rv4xd08q7nv0i4m166w8188v62wj"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.15.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.15.46"; 6 + version = "5.15.47"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 15 15 16 16 src = fetchurl { 17 17 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 18 - sha256 = "0srp0wypl24gf5yz91mpk1c2kllabq6wvby1wqrrbdwvfx35figb"; 18 + sha256 = "1700js21yimx8rz4bsglszry564l2ycmmcr36rdqspzbmlx5w8wb"; 19 19 }; 20 20 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.17.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.17.14"; 6 + version = "5.17.15"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0r2skbgxzw42cn29mr7i9w7fczzxhc1lx3xvri44ljjyfdqn7r0b"; 16 + sha256 = "0a5n1lb43nhnhwjwclkk3dqp2nxsx5ny7zfl8idvzshf94m9472a"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.18.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.18.3"; 6 + version = "5.18.4"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1sngy576db1zl2284kd0j8ds4biln0q98wnywirzsg3c0w2v8367"; 16 + sha256 = "1pcjjiwal8jr07n5bzg6clcmm20gvmvqgxl8k46npibrdx3r6wab"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.4.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.4.197"; 6 + version = "5.4.198"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1a1nzrx873vwlpm018l6rk19yh59badvwsknw3chbkbhzjrigbf2"; 16 + sha256 = "0wvscr5wia2xdiqfxxdwl8kxf1s085qdj5h4423mraj7dh6l0ihh"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+1
pkgs/servers/adguardhome/default.nix
··· 24 24 description = "Network-wide ads & trackers blocking DNS server"; 25 25 platforms = builtins.attrNames sources; 26 26 maintainers = with maintainers; [ numkem iagoq ]; 27 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 27 28 license = licenses.gpl3Only; 28 29 }; 29 30 }
+1
pkgs/servers/hashi-ui/default.nix
··· 21 21 description = "A modern user interface for hashicorp Consul & Nomad"; 22 22 platforms = [ "x86_64-linux" ]; 23 23 maintainers = with maintainers; [ numkem ]; 24 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 24 25 license = licenses.mit; 25 26 }; 26 27 }
+1
pkgs/servers/hqplayerd/default.nix
··· 109 109 meta = with lib; { 110 110 homepage = "https://www.signalyst.com/custom.html"; 111 111 description = "High-end upsampling multichannel software embedded HD-audio player"; 112 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 112 113 license = licenses.unfree; 113 114 platforms = [ "x86_64-linux" ]; 114 115 maintainers = with maintainers; [ lovesegfault ];
+4
pkgs/servers/mattermost/default.nix
··· 90 90 meta = with lib; { 91 91 description = "Open-source, self-hosted Slack-alternative"; 92 92 homepage = "https://www.mattermost.org"; 93 + sourceProvenance = with sourceTypes; [ 94 + fromSource 95 + binaryNativeCode # mattermost-webapp 96 + ]; 93 97 license = with licenses; [ agpl3 asl20 ]; 94 98 maintainers = with maintainers; [ fpletz ryantm numinit ]; 95 99 platforms = platforms.unix;
+1
pkgs/servers/meteor/default.nix
··· 94 94 meta = with lib; { 95 95 description = "Complete open source platform for building web and mobile apps in pure JavaScript"; 96 96 homepage = "https://www.meteor.com/"; 97 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 97 98 license = licenses.mit; 98 99 platforms = builtins.attrNames srcs; 99 100 maintainers = with maintainers; [ cstrahan ];
+1
pkgs/servers/misc/navidrome/default.nix
··· 42 42 meta = { 43 43 description = "Navidrome Music Server and Streamer compatible with Subsonic/Airsonic"; 44 44 homepage = "https://www.navidrome.org/"; 45 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 45 46 license = licenses.gpl3Only; 46 47 platforms = [ "x86_64-linux" "aarch64-linux" ]; 47 48 maintainers = with maintainers; [ aciceri ];
+1
pkgs/servers/networkaudiod/default.nix
··· 64 64 meta = with lib; { 65 65 homepage = "https://www.signalyst.com/index.html"; 66 66 description = "Network Audio Adapter daemon"; 67 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 67 68 license = licenses.unfree; 68 69 maintainers = with maintainers; [ lovesegfault ]; 69 70 platforms = platforms.linux;
+1
pkgs/servers/plex/raw.nix
··· 79 79 80 80 meta = with lib; { 81 81 homepage = "https://plex.tv/"; 82 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 82 83 license = licenses.unfree; 83 84 platforms = [ "x86_64-linux" "aarch64-linux" ]; 84 85 maintainers = with maintainers; [
+1
pkgs/servers/roon-bridge/default.nix
··· 76 76 description = "The music player for music lovers"; 77 77 changelog = "https://community.roonlabs.com/c/roon/software-release-notes/18"; 78 78 homepage = "https://roonlabs.com"; 79 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 79 80 license = licenses.unfree; 80 81 maintainers = with maintainers; [ lovesegfault ]; 81 82 platforms = [ "aarch64-linux" "x86_64-linux" ];
+1
pkgs/servers/roon-server/default.nix
··· 91 91 description = "The music player for music lovers"; 92 92 changelog = "https://community.roonlabs.com/c/roon/software-release-notes/18"; 93 93 homepage = "https://roonlabs.com"; 94 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 94 95 license = licenses.unfree; 95 96 maintainers = with maintainers; [ lovesegfault steell ]; 96 97 platforms = [ "x86_64-linux" ];
+4
pkgs/servers/unifi-video/default.nix
··· 53 53 ''; 54 54 homepage = "https://www.ui.com"; 55 55 downloadPage = "https://www.ui.com/download/unifi-video/"; 56 + sourceProvenance = with sourceTypes; [ 57 + binaryBytecode 58 + binaryNativeCode 59 + ]; 56 60 license = licenses.unfree; 57 61 maintainers = [ maintainers.rsynnest ]; 58 62 platforms = [ "x86_64-linux" ];
+1
pkgs/servers/urserver/default.nix
··· 38 38 meta = with lib; { 39 39 homepage = "https://www.unifiedremote.com/"; 40 40 description = "The one-and-only remote for your computer"; 41 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 41 42 license = licenses.unfree; 42 43 maintainers = with maintainers; [ sfrijters ]; 43 44 platforms = [ "x86_64-linux" ];
+1
pkgs/tools/admin/bluemix-cli/default.nix
··· 32 32 description = "Administration CLI for IBM BlueMix"; 33 33 homepage = "https://console.bluemix.net/docs/cli/index.html"; 34 34 downloadPage = "https://console.bluemix.net/docs/cli/reference/bluemix_cli/download_cli.html#download_install"; 35 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 35 36 license = licenses.unfree; 36 37 maintainers = [ maintainers.tazjin maintainers.jensbin ]; 37 38 platforms = [ "x86_64-linux" "i686-linux" ];
+4
pkgs/tools/admin/google-cloud-sdk/default.nix
··· 108 108 meta = with lib; { 109 109 description = "Tools for the google cloud platform"; 110 110 longDescription = "The Google Cloud SDK. This package has the programs: gcloud, gsutil, and bq"; 111 + sourceProvenance = with sourceTypes; [ 112 + fromSource 113 + binaryNativeCode # anthoscli and possibly more 114 + ]; 111 115 # This package contains vendored dependencies. All have free licenses. 112 116 license = licenses.free; 113 117 homepage = "https://cloud.google.com/sdk/";
+1
pkgs/tools/admin/nomachine-client/default.nix
··· 81 81 meta = with lib; { 82 82 description = "NoMachine remote desktop client (nxplayer)"; 83 83 homepage = "https://www.nomachine.com/"; 84 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 84 85 license = { 85 86 fullName = "NoMachine 7 End-User License Agreement"; 86 87 url = "https://www.nomachine.com/licensing-7";
+1
pkgs/tools/admin/pulumi/default.nix
··· 26 26 meta = { 27 27 homepage = "https://pulumi.io/"; 28 28 description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive"; 29 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 29 30 license = with licenses; [ asl20 ]; 30 31 platforms = builtins.attrNames data.pulumiPkgs; 31 32 maintainers = with maintainers; [
+1
pkgs/tools/admin/realvnc-vnc-viewer/default.nix
··· 40 40 meta = with lib; { 41 41 description = "VNC remote desktop client software by RealVNC"; 42 42 homepage = "https://www.realvnc.com/en/connect/download/viewer/"; 43 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 43 44 license = { 44 45 fullName = "VNC Connect End User License Agreement"; 45 46 url = "https://static.realvnc.com/media/documents/LICENSE-4.0a_en.pdf";
+1
pkgs/tools/admin/winbox/default.nix
··· 70 70 homepage = "https://mikrotik.com"; 71 71 downloadPage = "https://mikrotik.com/download"; 72 72 changelog = "https://wiki.mikrotik.com/wiki/Winbox_changelog"; 73 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 73 74 license = licenses.unfree; 74 75 maintainers = with maintainers; [ yrd ]; 75 76 };
+1
pkgs/tools/archivers/rar/default.nix
··· 58 58 meta = with lib; { 59 59 description = "Utility for RAR archives"; 60 60 homepage = "https://www.rarlab.com/"; 61 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 61 62 license = licenses.unfree; 62 63 maintainers = with maintainers; [ thiagokokada ]; 63 64 platforms = with platforms; linux ++ darwin;
+9 -3
pkgs/tools/audio/mpd-discord-rpc/default.nix
··· 2 2 , lib 3 3 , rustPlatform 4 4 , fetchFromGitHub 5 + , pkg-config 6 + , openssl 5 7 }: 6 8 7 9 rustPlatform.buildRustPackage rec { 8 10 pname = "mpd-discord-rpc"; 9 - version = "1.4.1"; 11 + version = "1.5.1"; 10 12 11 13 src = fetchFromGitHub { 12 14 owner = "JakeStanger"; 13 15 repo = pname; 14 16 rev = "v${version}"; 15 - sha256 = "sha256-CdgR9G598LmxA9lhY6yppP3ZZUhTqgMcWccEhSuCcJQ="; 17 + sha256 = "sha256-jwsfUepGJ7IB1H6Er1EszYkkYIOSyuFvTX7NF9UhhGo="; 16 18 }; 17 19 18 - cargoSha256 = "sha256-WhlVWQCUGP+K9md0yp6ZD6mGYMso1fUYKDuXXrC2FeI="; 20 + cargoSha256 = "sha256-4MUfjXWDZmfsUzvWo8I2fgzm4jOfX1ZgHYqUmxXJ/BU="; 21 + 22 + nativeBuildInputs = [ pkg-config ]; 23 + 24 + buildInputs = [ openssl ]; 19 25 20 26 meta = with lib; { 21 27 broken = stdenv.isDarwin;
+1
pkgs/tools/backup/tsm-client/default.nix
··· 72 72 downloadPage = "https://www.ibm.com/support/pages/ibm-spectrum-protect-downloads-latest-fix-packs-and-interim-fixes"; 73 73 platforms = [ "x86_64-linux" ]; 74 74 mainProgram = "dsmc"; 75 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 75 76 license = lib.licenses.unfree; 76 77 maintainers = [ lib.maintainers.yarny ]; 77 78 description = "IBM Spectrum Protect (Tivoli Storage Manager) CLI and API";
+1
pkgs/tools/inputmethods/droidmote/default.nix
··· 54 54 meta = with lib; { 55 55 description = "Control your computer from your couch"; 56 56 homepage = "https://www.videomap.it/"; 57 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 57 58 license = licenses.unfree; 58 59 maintainers = with maintainers; [ atila ]; 59 60 platforms = lib.attrNames srcs;
+1
pkgs/tools/misc/archi/default.nix
··· 58 58 models and sketches. 59 59 ''; 60 60 homepage = "https://www.archimatetool.com/"; 61 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 61 62 license = licenses.mit; 62 63 platforms = platforms.linux ++ platforms.darwin; 63 64 maintainers = with maintainers; [ earldouglas ];
+1
pkgs/tools/misc/gams/default.nix
··· 43 43 GAMS is designed for modeling and solving linear, nonlinear, and mixed-integer optimization problems. 44 44 ''; 45 45 homepage = "https://www.gams.com/"; 46 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 46 47 license = licenses.unfree; 47 48 maintainers = [ maintainers.Scriptkiddi ]; 48 49 platforms = platforms.linux;
+1
pkgs/tools/misc/hakuneko/default.nix
··· 72 72 meta = with lib; { 73 73 description = "Manga & Anime Downloader"; 74 74 homepage = "https://sourceforge.net/projects/hakuneko/"; 75 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 75 76 license = licenses.unlicense; 76 77 maintainers = with maintainers; [ 77 78 nloomans
+1
pkgs/tools/misc/kisslicer/default.nix
··· 53 53 meta = with lib; { 54 54 description = "Convert STL files into Gcode"; 55 55 homepage = "http://www.kisslicer.com"; 56 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 56 57 license = licenses.unfree; 57 58 maintainers = [ maintainers.cransom ]; 58 59 platforms = [ "x86_64-linux" ];
+1
pkgs/tools/misc/mongodb-compass/default.nix
··· 129 129 description = "The GUI for MongoDB"; 130 130 maintainers = with maintainers; [ bryanasdev000 ]; 131 131 homepage = "https://www.mongodb.com/products/compass"; 132 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 132 133 license = licenses.sspl; 133 134 platforms = [ "x86_64-linux" ]; 134 135 };
+1
pkgs/tools/misc/mutagen/default.nix
··· 39 39 homepage = "https://mutagen.io/"; 40 40 changelog = "https://github.com/mutagen-io/mutagen/releases/tag/v${version}"; 41 41 maintainers = [ maintainers.marsam ]; 42 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 42 43 license = licenses.mit; 43 44 }; 44 45 }
+1
pkgs/tools/misc/sam-ba/default.nix
··· 39 39 ''; 40 40 # Alternatively: https://www.microchip.com/en-us/development-tool/SAM-BA-In-system-Programmer 41 41 homepage = "http://www.at91.com/linux4sam/bin/view/Linux4SAM/SoftwareTools"; 42 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 42 43 license = lib.licenses.gpl2Only; 43 44 platforms = [ "x86_64-linux" ]; 44 45 maintainers = [ maintainers.bjornfor ];
+1
pkgs/tools/misc/staruml/default.nix
··· 70 70 meta = with lib; { 71 71 description = "A sophisticated software modeler"; 72 72 homepage = "https://staruml.io/"; 73 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 73 74 license = licenses.unfree; 74 75 maintainers = with maintainers; [ ]; 75 76 platforms = [ "x86_64-linux" ];
+1
pkgs/tools/misc/xflux/default.nix
··· 33 33 when the sun rises. 34 34 ''; 35 35 homepage = "https://justgetflux.com/"; 36 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 36 37 license = lib.licenses.unfree; 37 38 platforms = lib.platforms.linux; 38 39 maintainers = [ lib.maintainers.paholg ];
+1
pkgs/tools/networking/boundary/default.nix
··· 61 61 and resilient. It can run in clouds, on-prem, secure enclaves and more, 62 62 and does not require an agent to be installed on every end host. 63 63 ''; 64 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 64 65 license = licenses.mpl20; 65 66 maintainers = with maintainers; [ jk techknowlogick ]; 66 67 };
+1
pkgs/tools/networking/cloudflare-warp/default.nix
··· 41 41 meta = with lib; { 42 42 description = "Replaces the connection between your device and the Internet with a modern, optimized, protocol"; 43 43 homepage = "https://pkg.cloudflareclient.com/packages/cloudflare-warp"; 44 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 44 45 license = licenses.unfree; 45 46 maintainers = with maintainers; [ wolfangaukang ]; 46 47 platforms = [ "x86_64-linux" ];
+4
pkgs/tools/networking/gnirehtet/default.nix
··· 43 43 This relies on adb, make sure you have the required permissions/udev rules. 44 44 ''; 45 45 homepage = "https://github.com/Genymobile/gnirehtet"; 46 + sourceProvenance = with sourceTypes; [ 47 + fromSource 48 + binaryBytecode # gnirehtet.apk 49 + ]; 46 50 license = licenses.asl20; 47 51 maintainers = with maintainers; [ symphorien ]; 48 52 platforms = platforms.unix;
+2 -2
pkgs/tools/networking/networkmanager/default.nix
··· 54 54 in 55 55 stdenv.mkDerivation rec { 56 56 pname = "networkmanager"; 57 - version = "1.38.0"; 57 + version = "1.38.2"; 58 58 59 59 src = fetchurl { 60 60 url = "mirror://gnome/sources/NetworkManager/${lib.versions.majorMinor version}/NetworkManager-${version}.tar.xz"; 61 - sha256 = "sha256-gqTPB93+sIFnh7Z8D1BYrmxQ1iWcCwVBok41FWBisu8="; 61 + sha256 = "sha256-nP/SrcaGUTFt8tL4oJ4XF7sdDC6jic/HIaAQnbmzWCY="; 62 62 }; 63 63 64 64 outputs = [ "out" "dev" "devdoc" "man" "doc" ];
+1
pkgs/tools/networking/ngrok/default.nix
··· 40 40 meta = { 41 41 description = "Allows you to expose a web server running on your local machine to the internet"; 42 42 homepage = "https://ngrok.com/"; 43 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 43 44 license = licenses.unfree; 44 45 platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; 45 46 maintainers = with maintainers; [ bobvanderlinden brodes ];
+1
pkgs/tools/networking/ookla-speedtest/default.nix
··· 41 41 meta = with lib; { 42 42 description = "Command line internet speedtest tool by Ookla"; 43 43 homepage = "https://www.speedtest.net/apps/cli"; 44 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 44 45 license = licenses.unfree; 45 46 maintainers = with maintainers; [ kranzes ]; 46 47 platforms = lib.attrNames srcs;
-25
pkgs/tools/networking/s3gof3r/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - pname = "s3gof3r"; 5 - version = "0.5.0"; 6 - 7 - goPackagePath = "github.com/rlmcpherson/s3gof3r"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "rlmcpherson"; 11 - repo = "s3gof3r"; 12 - rev = "v${version}"; 13 - sha256 = "sha256-88C6c4DRD/4ePTO1+1YiI8ApXWE2uUlr07dDCxGzaoE="; 14 - }; 15 - 16 - goDeps = ./deps.nix; 17 - 18 - meta = with lib; { 19 - description = "Fast, concurrent, streaming access to Amazon S3, including gof3r, a CLI"; 20 - homepage = "https://pkg.go.dev/github.com/rlmcpherson/s3gof3r"; 21 - maintainers = with maintainers; [ ]; 22 - mainProgram = "gof3r"; 23 - license = licenses.mit; 24 - }; 25 - }
-11
pkgs/tools/networking/s3gof3r/deps.nix
··· 1 - [ 2 - { 3 - goPackagePath = "github.com/jessevdk/go-flags"; 4 - fetch = { 5 - type = "git"; 6 - url = "https://github.com/jessevdk/go-flags"; 7 - rev = "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539"; 8 - sha256 = "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680"; 9 - }; 10 - } 11 - ]
+10 -25
pkgs/tools/networking/vde2/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, openssl, libpcap, python2, withPython ? false }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, libpcap, wolfssl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "vde2"; 5 - version = "2.3.2"; 5 + version = "2.3.3"; 6 6 7 - src = fetchurl { 8 - url = "mirror://sourceforge/vde/vde2/${version}/vde2-${version}.tar.gz"; 9 - sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2"; 7 + src = fetchFromGitHub { 8 + owner = "virtualsquare"; 9 + repo = "vde-2"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-Yf6QB7j5lYld2XtqhYspK4037lTtimoFc7nCavCP+mU="; 10 12 }; 11 13 12 - patches = [ 13 - # Fix build with openssl 1.1.0 14 - (fetchpatch { 15 - name = "vde_cryptcab-compile-against-openssl-1.1.0.patch"; 16 - url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/15b11be49997fa94b603e366064690b7cc6bce61/trunk/vde_cryptcab-compile-against-openssl-1.1.0.patch"; 17 - sha256 = "07z1yabwigq35mkwzqa934n7vjnjlqz5xfzq8cfj87lgyjjp00qi"; 18 - }) 19 - ] ++ lib.optional stdenv.hostPlatform.isMusl [ 14 + patches = lib.optional stdenv.hostPlatform.isMusl [ 20 15 (fetchpatch { 21 16 url = "https://git.alpinelinux.org/aports/plain/main/vde2/musl-build-fix.patch?id=ddee2f86a48e087867d4a2c12849b2e3baccc238"; 22 17 sha256 = "0b5382v541bkxhqylilcy34bh83ag96g71f39m070jzvi84kx8af"; ··· 27 22 MACOSX_DEPLOYMENT_TARGET=10.16 28 23 ''; 29 24 30 - configureFlags = lib.optional (!withPython) "--disable-python"; 31 - 32 - buildInputs = [ openssl libpcap ] 33 - ++ lib.optional withPython python2; 25 + nativeBuildInputs = [ autoreconfHook ]; 34 26 35 - hardeningDisable = [ "format" ]; 36 - 37 - # Disable parallel build as it fails as: 38 - # make: *** No rule to make target '../../src/lib/libvdemgmt.la', 39 - # needed by 'libvdesnmp.la'. Stop. 40 - # Next release should address it with 41 - # https://github.com/virtualsquare/vde-2/commit/7dd9ed46d5dca125ca45d679ac9f3acbfb0f9300.patch 42 - enableParallelBuilding = false; 27 + buildInputs = [ libpcap wolfssl ]; 43 28 44 29 meta = with lib; { 45 30 homepage = "https://github.com/virtualsquare/vde-2";
+1
pkgs/tools/security/beyond-identity/default.nix
··· 11 11 description = "Passwordless MFA identities for workforces, customers, and developers"; 12 12 homepage = "https://www.beyondidentity.com"; 13 13 downloadPage = "https://app.byndid.com/downloads"; 14 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 14 15 license = licenses.unfree; 15 16 maintainers = with maintainers; [ klden ]; 16 17 platforms = [ "x86_64-linux" ];
+1
pkgs/tools/security/bitwarden/default.nix
··· 65 65 meta = with lib; { 66 66 description = "A secure and free password manager for all of your devices"; 67 67 homepage = "https://bitwarden.com"; 68 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 68 69 license = licenses.gpl3; 69 70 maintainers = with maintainers; [ kiwi ]; 70 71 platforms = [ "x86_64-linux" ];
+27
pkgs/tools/security/commix/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , python3 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "commix"; 8 + version = "3.4"; 9 + format = "setuptools"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "commixproject"; 13 + repo = pname; 14 + rev = "v${version}"; 15 + hash = "sha256-JM4NE77LpgsdWhzPe/8K0sQhOSpzDu9usuH7pfQ6dR0="; 16 + }; 17 + 18 + # Project has no tests 19 + doCheck = false; 20 + 21 + meta = with lib; { 22 + description = "Automated Command Injection Exploitation Tool"; 23 + homepage = "https://github.com/commixproject/commix"; 24 + license = with licenses; [ gpl3Plus ]; 25 + maintainers = with maintainers; [ fab ]; 26 + }; 27 + }
+1
pkgs/tools/security/keybase/gui.nix
··· 111 111 description = "The Keybase official GUI"; 112 112 platforms = [ "x86_64-linux" ]; 113 113 maintainers = with maintainers; [ avaq rvolosatovs puffnfresh np Br1ght0ne shofius ]; 114 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 114 115 license = licenses.bsd3; 115 116 }; 116 117 }
+9 -1
pkgs/tools/security/munge/default.nix
··· 11 11 sha256 = "15h805rwcb9f89dyrkxfclzs41n3ff8x7cc1dbvs8mb0ds682c4j"; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook ]; 14 + strictDeps = true; 15 + nativeBuildInputs = [ 16 + autoreconfHook 17 + libgcrypt # provides libgcrypt.m4 18 + ]; 15 19 buildInputs = [ libgcrypt zlib bzip2 ]; 16 20 17 21 preAutoreconf = '' ··· 21 25 22 26 configureFlags = [ 23 27 "--localstatedir=/var" 28 + "--with-libgcrypt-prefix=${libgcrypt.dev}" 29 + # workaround for cross compilation: https://github.com/dun/munge/issues/103 30 + "ac_cv_file__dev_spx=no" 31 + "x_ac_cv_check_fifo_recvfd=no" 24 32 ]; 25 33 26 34 meta = with lib; {
+1
pkgs/tools/security/pcsc-safenet/default.nix
··· 90 90 homepage = "https://safenet.gemalto.com/multi-factor-authentication/security-applications/authentication-client-token-management"; 91 91 description = "Safenet Authentication Client"; 92 92 platforms = [ "x86_64-linux" ]; 93 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 93 94 license = licenses.unfree; 94 95 maintainers = with maintainers; [ wldhx ]; 95 96 };
+1
pkgs/tools/virtualization/amazon-ecs-cli/default.nix
··· 30 30 homepage = "https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_CLI.html"; 31 31 description = "The Amazon ECS command line interface"; 32 32 longDescription = "The Amazon Elastic Container Service (Amazon ECS) command line interface (CLI) provides high-level commands to simplify creating, updating, and monitoring clusters and tasks from a local development environment."; 33 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 33 34 license = licenses.asl20; 34 35 maintainers = with maintainers; [ Scriptkiddi ]; 35 36 platforms = [ "x86_64-linux" "x86_64-darwin" ];
+4
pkgs/top-level/aliases.nix
··· 527 527 google-gflags = gflags; # Added 2019-07-25 528 528 google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # Added 2021-03-07 529 529 google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # Added 2021-03-07 530 + gotags = throw "gotags has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 530 531 go-mk = throw "go-mk has been dropped due to the lack of maintanence from upstream since 2015"; # Added 2022-06-02 531 532 go-pup = throw "'go-pup' has been renamed to/replaced by 'pup'"; # Converted to throw 2022-02-22 532 533 go-repo-root = throw "go-repo-root has been dropped due to the lack of maintanence from upstream since 2014"; # Added 2022-06-02 ··· 1236 1237 ### S ### 1237 1238 1238 1239 s2n = s2n-tls; # Added 2021-03-03 1240 + s3gof3r = throw "s3gof3r has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-04 1239 1241 s6Dns = throw "'s6Dns' has been renamed to/replaced by 's6-dns'"; # Converted to throw 2022-02-22 1240 1242 s6LinuxUtils = throw "'s6LinuxUtils' has been renamed to/replaced by 's6-linux-utils'"; # Converted to throw 2022-02-22 1241 1243 s6Networking = throw "'s6Networking' has been renamed to/replaced by 's6-networking'"; # Converted to throw 2022-02-22 ··· 1323 1325 ssmtp = throw "'ssmtp' has been removed due to the software being unmaintained. 'msmtp' can be used as a replacement"; # Added 2022-04-17 1324 1326 stanchion = throw "Stanchion was part of riak-cs which is not maintained anymore"; # added 2020-10-14 1325 1327 steam-run-native = steam-run; # added 2022-02-21 1328 + stride = throw "'stride' aka. Atlassian Stride is dead since 2019 (bought by Slack)"; # added 2022-06-15 1326 1329 stumpwm-git = throw "stumpwm-git has been broken for a long time and lispPackages.stumpwm follows Quicklisp that is close to git version"; # Added 2021-05-09 1327 1330 subversion_1_10 = throw "subversion_1_10 has been removed as it has reached its end of life"; # Added 2022-04-26 1328 1331 subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # Added 2021-03-31 ··· 1414 1417 ultrastardx-beta = throw "'ultrastardx-beta' has been renamed to/replaced by 'ultrastardx'"; # Converted to throw 2022-02-22 1415 1418 unicorn-emu = unicorn; # Added 2020-10-29 1416 1419 unifiStable = unifi6; # Added 2020-12-28 1420 + unity3d = throw "'unity3d' is unmaintained, has seen no updates in years and depends on deprecated GTK2"; # Added 2022-06-16 1417 1421 untrunc = untrunc-anthwlock; # Added 2021-02-01 1418 1422 urxvt_autocomplete_all_the_things = rxvt-unicode-plugins.autocomplete-all-the-things; # Added 2020-02-02 1419 1423 urxvt_bidi = rxvt-unicode-plugins.bidi; # Added 2020-02-02
+3 -13
pkgs/top-level/all-packages.nix
··· 358 358 359 359 commit-formatter = callPackage ../applications/version-management/commit-formatter { }; 360 360 361 + commix = callPackage ../tools/security/commix { }; 362 + 361 363 containerpilot = callPackage ../applications/networking/cluster/containerpilot { }; 362 364 363 365 coordgenlibs = callPackage ../development/libraries/coordgenlibs { }; ··· 10105 10107 s4cmd = callPackage ../tools/networking/s4cmd { }; 10106 10108 10107 10109 s5cmd = callPackage ../tools/networking/s5cmd { }; 10108 - 10109 - s3gof3r = callPackage ../tools/networking/s3gof3r { }; 10110 10110 10111 10111 s6-dns = skawarePackages.s6-dns; 10112 10112 ··· 16064 16064 16065 16065 peg = callPackage ../development/tools/parsing/peg { }; 16066 16066 16067 - pgcli = pkgs.python3Packages.pgcli; 16067 + pgcli = with pkgs.python3Packages; toPythonApplication pgcli; 16068 16068 16069 16069 picotool = callPackage ../development/tools/picotool { }; 16070 16070 ··· 23608 23608 goconvey = callPackage ../development/tools/goconvey { }; 23609 23609 23610 23610 gofumpt = callPackage ../development/tools/gofumpt { }; 23611 - 23612 - gotags = callPackage ../development/tools/gotags { }; 23613 23611 23614 23612 go-task = callPackage ../development/tools/go-task { }; 23615 23613 ··· 28670 28668 28671 28669 spacegun = callPackage ../applications/networking/cluster/spacegun {}; 28672 28670 28673 - stride = callPackage ../applications/networking/instant-messengers/stride { }; 28674 - 28675 28671 speedread = callPackage ../applications/misc/speedread { }; 28676 28672 28677 28673 station = callPackage ../applications/networking/station { }; ··· 34899 34895 uacme = callPackage ../tools/admin/uacme { }; 34900 34896 34901 34897 ums = callPackage ../servers/ums { }; 34902 - 34903 - unity3d = callPackage ../development/tools/unity3d { 34904 - stdenv = stdenv_32bit; 34905 - gcc_32bit = pkgsi686Linux.gcc; 34906 - inherit (gnome2) GConf; 34907 - }; 34908 34898 34909 34899 unityhub = callPackage ../development/tools/unityhub { }; 34910 34900
+3 -1
pkgs/top-level/python-packages.nix
··· 6421 6421 6422 6422 pg8000 = callPackage ../development/python-modules/pg8000 { }; 6423 6423 6424 - pgcli = callPackage ../development/tools/database/pgcli { }; 6424 + pgcli = callPackage ../development/python-modules/pgcli { }; 6425 6425 6426 6426 pglast = callPackage ../development/python-modules/pglast { }; 6427 6427 ··· 9475 9475 schema-salad = callPackage ../development/python-modules/schema-salad { }; 9476 9476 9477 9477 schiene = callPackage ../development/python-modules/schiene { }; 9478 + 9479 + schwifty = callPackage ../development/python-modules/schwifty { }; 9478 9480 9479 9481 scikit-bio = callPackage ../development/python-modules/scikit-bio { }; 9480 9482