Merge master into staging-next

authored by github-actions[bot] and committed by GitHub ffc98950 da1f2482

+2705 -5775
+1 -6
.github/workflows/backport.yml
··· 10 10 steps: 11 11 - uses: actions/checkout@v2 12 12 with: 13 - # required to find all branches 14 - fetch-depth: 0 15 13 ref: ${{ github.event.pull_request.head.sha }} 16 14 - name: Create backport PRs 17 - # should be kept in sync with `version` 18 - uses: zeebe-io/backport-action@v0.0.5 15 + uses: zeebe-io/backport-action@v0.0.6 19 16 with: 20 17 # Config README: https://github.com/zeebe-io/backport-action#backport-action 21 18 github_token: ${{ secrets.GITHUB_TOKEN }} 22 19 github_workspace: ${{ github.workspace }} 23 - # should be kept in sync with `uses` 24 - version: v0.0.5 25 20 pull_description: |- 26 21 Bot-based backport to `${target_branch}`, triggered by a label in #${pull_number}. 27 22
+5 -3
lib/systems/platforms.nix
··· 20 20 name = "PowerNV"; 21 21 22 22 baseConfig = "powernv_defconfig"; 23 - target = "zImage"; 24 - installTarget = "install"; 25 - file = "vmlinux"; 23 + target = "vmlinux"; 26 24 autoModules = true; 27 25 # avoid driver/FS trouble arising from unusual page size 28 26 extraConfig = '' 29 27 PPC_64K_PAGES n 30 28 PPC_4K_PAGES y 31 29 IPV6 y 30 + 31 + ATA_BMDMA y 32 + ATA_SFF y 33 + VIRTIO_MENU y 32 34 ''; 33 35 }; 34 36 };
+2 -2
pkgs/applications/blockchains/exodus/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "exodus"; 7 - version = "21.8.19"; 7 + version = "21.10.25"; 8 8 9 9 src = fetchurl { 10 10 url = "https://downloads.exodus.io/releases/${pname}-linux-x64-${version}.zip"; 11 - sha256 = "1ssacadx5hdxq0cljb869ds3d11i4fyy3qd5hzh8wk5mlpdnba6k"; 11 + sha256 = "a85ddda4e73dfadddbb77cf9bc84c30fc6b893ead46367d702976bbf4da5afa4"; 12 12 }; 13 13 14 14 sourceRoot = ".";
+2 -2
pkgs/applications/misc/spicetify-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "spicetify-cli"; 5 - version = "2.2.6"; 5 + version = "2.7.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "khanhas"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-9g6rkSDjE7x/YprPX0dkzqgpjgED5qBpUUQoVv6fGkk="; 11 + sha256 = "sha256-fWh345J2fD9uoGrDiVZyEBiOlMy8giEGKHGMujT0mjo="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-g0RYIVIq4oMXdRZDBDnVYg7ombN5WEo/6O9hChQvOYs=";
+2 -5
pkgs/applications/networking/instant-messengers/gajim/default.nix
··· 21 21 22 22 python3.pkgs.buildPythonApplication rec { 23 23 pname = "gajim"; 24 - version = "1.3.2"; 24 + version = "1.3.3"; 25 25 26 26 src = fetchurl { 27 27 url = "https://gajim.org/downloads/${lib.versions.majorMinor version}/gajim-${version}.tar.gz"; 28 - sha256 = "1vjzv8zg9s393xw81klcgbkn4h6j2blzla9iil5kqfrw7wmldskh"; 28 + sha256 = "1337qkpcv7j0fgws9scnk82mn2l7s17060vmrbh3ihinmxmbxg6x"; 29 29 }; 30 30 31 31 buildInputs = [ ··· 57 57 checkInputs = [ xvfb-run dbus.daemon ]; 58 58 59 59 checkPhase = '' 60 - # https://dev.gajim.org/gajim/gajim/-/issues/10478 61 - rm test/lib/gajim_mocks.py test/unit/test_gui_interface.py 62 - 63 60 xvfb-run dbus-run-session \ 64 61 --config-file=${dbus.daemon}/share/dbus-1/session.conf \ 65 62 ${python3.interpreter} setup.py test
+36 -6
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 10 10 , hunspellDicts, spellcheckerLanguage ? null # E.g. "de_DE" 11 11 # For a full list of available languages: 12 12 # $ cat pkgs/development/libraries/hunspell/dictionaries.nix | grep "dictFileName =" | awk '{ print $3 }' 13 + , sqlcipher 13 14 }: 14 15 15 16 let ··· 21 22 in lib.optionalString (spellcheckerLanguage != null) '' 22 23 --set HUNSPELL_DICTIONARIES "${hunspellDicts.${hunspellDict}}/share/hunspell" \ 23 24 --set LC_MESSAGES "${spellcheckerLanguage}"''); 25 + 26 + sqlcipher-signal = sqlcipher.overrideAttrs (_: { 27 + # Using the same features as the upstream signal sqlcipher build 28 + # https://github.com/signalapp/better-sqlite3/blob/2fa02d2484e9f9a10df5ac7ea4617fb2dff30006/deps/defines.gypi 29 + CFLAGS = [ 30 + "-DSQLITE_LIKE_DOESNT_MATCH_BLOBS" 31 + "-DSQLITE_THREADSAFE=2" 32 + "-DSQLITE_USE_URI=0" 33 + "-DSQLITE_DEFAULT_MEMSTATUS=0" 34 + "-DSQLITE_OMIT_DEPRECATED" 35 + "-DSQLITE_OMIT_GET_TABLE" 36 + "-DSQLITE_OMIT_TCL_VARIABLE" 37 + "-DSQLITE_OMIT_PROGRESS_CALLBACK" 38 + "-DSQLITE_OMIT_SHARED_CACHE" 39 + "-DSQLITE_TRACE_SIZE_LIMIT=32" 40 + "-DSQLITE_DEFAULT_CACHE_SIZE=-16000" 41 + "-DSQLITE_DEFAULT_FOREIGN_KEYS=1" 42 + "-DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1" 43 + "-DSQLITE_ENABLE_COLUMN_METADATA" 44 + "-DSQLITE_ENABLE_UPDATE_DELETE_LIMIT" 45 + "-DSQLITE_ENABLE_STAT4" 46 + "-DSQLITE_ENABLE_FTS5" 47 + "-DSQLITE_ENABLE_JSON1" 48 + "-DSQLITE_ENABLE_RTREE" 49 + "-DSQLITE_INTROSPECTION_PRAGMAS" 50 + 51 + # SQLCipher-specific options 52 + "-DSQLITE_HAS_CODEC" 53 + "-DSQLITE_TEMP_STORE=2" 54 + "-DSQLITE_SECURE_DELETE" 55 + ]; 56 + 57 + LDFLAGS = [ "-lm" ]; 58 + }); 24 59 in stdenv.mkDerivation rec { 25 60 pname = "signal-desktop"; 26 61 version = "5.21.0"; # Please backport all updates to the stable channel. ··· 115 150 runHook postInstall 116 151 ''; 117 152 118 - # Required for $SQLCIPHER_LIB which contains "/build/" inside the path: 119 - noAuditTmpdir = true; 120 - 121 153 preFixup = '' 122 - export SQLCIPHER_LIB="$out/lib/Signal/resources/app.asar.unpacked/node_modules/better-sqlite3/build/Release/better_sqlite3.node" 123 - test -x "$SQLCIPHER_LIB" # To ensure the location hasn't changed 124 154 gappsWrapperArgs+=( 125 155 --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc ] }" 126 - --prefix LD_PRELOAD : "$SQLCIPHER_LIB" 156 + --prefix LD_PRELOAD : "${sqlcipher-signal}/lib/libsqlcipher.so" 127 157 ${customLanguageWrapperArgs} 128 158 ) 129 159
+31 -67
pkgs/applications/networking/protonvpn-gui/default.nix
··· 1 - { lib, fetchFromGitHub, makeDesktopItem, makeWrapper, imagemagick 2 - , python3Packages, wrapGAppsHook, protonvpn-cli, gtk3, pango 3 - , gobject-introspection, libnotify, libappindicator-gtk3 4 - , procps, openvpn }: 1 + { lib, fetchFromGitHub, gobject-introspection, imagemagick, 2 + wrapGAppsHook, python3Packages, gtk3, networkmanager, webkitgtk }: 5 3 6 - let 7 - extraPath = lib.makeBinPath [ procps openvpn ]; 8 - 9 - in python3Packages.buildPythonApplication rec { 4 + python3Packages.buildPythonApplication rec { 10 5 pname = "protonvpn-linux-gui"; 11 - version = "2.1.1"; 6 + version = "1.4.1"; 12 7 13 8 src = fetchFromGitHub { 14 - owner = "protonvpn"; 15 - repo = "linux-gui"; 16 - rev = "v${version}"; 17 - sha256 = "avo5/2eq53HSHCnnjtxrsmpURtHvxmLZn2BxActImGY="; 9 + owner = "ProtonVPN"; 10 + repo = "linux-app"; 11 + rev = version; 12 + sha256 = "sha256-08gXEKm8udgNltRdqvAMFL0pDCWZu/kfl1xGQtZPBCc="; 18 13 }; 19 14 20 - desktopItem = makeDesktopItem { 21 - name = "ProtonVPN"; 22 - desktopName = "ProtonVPN GUI"; 23 - type = "Application"; 24 - exec = "protonvpn-gui"; 25 - icon = "protonvpn"; 26 - categories = "Network;"; 27 - terminal = "false"; 28 - }; 29 - 30 - trayDesktopItem = makeDesktopItem { 31 - name = "ProtonVPN Tray"; 32 - desktopName = "ProtonVPN Tray"; 33 - type = "Application"; 34 - exec = "protonvpn-tray"; 35 - icon = "protonvpn"; 36 - categories = "Network;"; 37 - terminal = "false"; 38 - }; 39 - 40 - nativeBuildInputs = [ wrapGAppsHook makeWrapper imagemagick ]; 41 - 42 - propagatedBuildInputs = (with python3Packages; [ 43 - pygobject3 44 - pycairo 45 - requests 46 - configparser 47 - ]) ++ [ 48 - protonvpn-cli 49 - gtk3 50 - gobject-introspection 51 - libnotify 52 - libappindicator-gtk3 53 - ]; 15 + strictDeps = false; 54 16 55 - prePatch = '' 56 - # if pkexec is used, we want to have more time to enter password 57 - substituteInPlace linux_gui/services/login_service.py --replace 'timeout=8' 'timeout=30' 58 - ''; 17 + nativeBuildInputs = [ 18 + gobject-introspection imagemagick wrapGAppsHook 19 + ]; 59 20 60 - postInstall = '' 61 - # wrap binaries with extra required path 62 - wrapProgram "$out/bin/protonvpn-tray" --prefix PATH ":" ${extraPath} 63 - wrapProgram "$out/bin/protonvpn-gui" --prefix PATH ":" ${extraPath} 21 + propagatedBuildInputs = with python3Packages; [ 22 + protonvpn-nm-lib 23 + psutil 24 + ]; 64 25 65 - # install desktop files 66 - mkdir -p $out/share/applications 67 - cp "$desktopItem/share/applications/ProtonVPN.desktop" $out/share/applications/protonvpn-gui.desktop 68 - cp "$trayDesktopItem/share/applications/ProtonVPN Tray.desktop" $out/share/applications/protonvpn-tray.desktop 26 + buildInputs = [ 27 + gtk3 networkmanager webkitgtk 28 + ]; 69 29 70 - # create icons 30 + postFixup = '' 31 + # Setting icons 71 32 for size in 16 32 48 64 72 96 128 192 512 1024; do 72 33 mkdir -p $out/share/icons/hicolor/"$size"x"$size"/apps 73 - convert -resize "$size"x"$size" \ 74 - linux_gui/resources/img/logo/protonvpn_logo.png \ 75 - $out/share/icons/hicolor/"$size"x"$size"/apps/protonvpn.png 34 + convert -resize $size'x'$size \ 35 + protonvpn_gui/assets/icons/protonvpn-logo.png \ 36 + $out/share/icons/hicolor/$size'x'$size/apps/protonvpn.png 76 37 done 38 + 39 + install -Dm644 protonvpn.desktop -t $out/share/applications/ 40 + substituteInPlace $out/share/applications/protonvpn.desktop \ 41 + --replace 'protonvpn-logo' protonvpn 77 42 ''; 78 43 79 - # no tests 44 + # Project has a dummy test 80 45 doCheck = false; 81 46 82 47 meta = with lib; { 83 48 description = "Linux GUI for ProtonVPN, written in Python"; 84 - homepage = "https://github.com/ProtonVPN/linux-gui"; 85 - maintainers = with maintainers; [ offline ]; 49 + homepage = "https://github.com/ProtonVPN/linux-app"; 50 + maintainers = with maintainers; [ offline wolfangaukang ]; 86 51 license = licenses.gpl3Plus; 87 52 platforms = platforms.linux; 88 - mainProgram = "protonvpn-gui"; 89 53 }; 90 54 }
+9
pkgs/applications/terminal-emulators/alacritty/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , rustPlatform 5 6 6 7 , cmake ··· 86 87 ]; 87 88 88 89 outputs = [ "out" "terminfo" ]; 90 + 91 + patches = [ 92 + # Handle PTY EIO error for Rust 1.55+ 93 + (fetchpatch { 94 + url = "https://github.com/alacritty/alacritty/commit/58985a4dcbe464230b5d2566ee68e2d34a1788c8.patch"; 95 + sha256 = "sha256-Z6589yRrQtpx3/vNqkMiGgGsLysd/QyfaX7trqX+k5c="; 96 + }) 97 + ]; 89 98 90 99 postPatch = '' 91 100 substituteInPlace alacritty/src/config/ui_config.rs \
+1
pkgs/development/node-packages/node-packages.json
··· 173 173 , "livedown" 174 174 , "lodash" 175 175 , {"lumo-build-deps": "../interpreters/clojurescript/lumo" } 176 + , "lua-fmt" 176 177 , "madoko" 177 178 , "markdownlint-cli" 178 179 , "markdown-link-check"
+2499 -5668
pkgs/development/node-packages/node-packages.nix
··· 49 49 sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; 50 50 }; 51 51 }; 52 - "@angular-devkit/architect-0.1202.10" = { 52 + "@angular-devkit/architect-0.1202.11" = { 53 53 name = "_at_angular-devkit_slash_architect"; 54 54 packageName = "@angular-devkit/architect"; 55 - version = "0.1202.10"; 55 + version = "0.1202.11"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.10.tgz"; 58 - sha512 = "/sLgtXaFsNouxub5M/bQ2sBkiMIlPubuz6QMh+pA2jia82vJ3hcRMt4AnJTXuXpVY+aew4FiG0i9nt/8HETQsw=="; 59 - }; 60 - }; 61 - "@angular-devkit/core-12.0.5" = { 62 - name = "_at_angular-devkit_slash_core"; 63 - packageName = "@angular-devkit/core"; 64 - version = "12.0.5"; 65 - src = fetchurl { 66 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.0.5.tgz"; 67 - sha512 = "zVSQV+8/vjUjsUKGlj8Kf5LioA6AXJTGI0yhHW9q1dFX4dPpbW63k0R1UoIB2wJ0F/AbYVgpnPGPe9BBm2fvZA=="; 57 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.11.tgz"; 58 + sha512 = "9veul0Hse+4yGxfQW6AfeWYhxE6CM/EtrvGkv4JCrYJVVkfGW64EVG1p2nJt4yVk69iA2f+On3c4t1uXKtLy/Q=="; 68 59 }; 69 60 }; 70 61 "@angular-devkit/core-12.2.10" = { ··· 76 67 sha512 = "0qhmS7Qvl0hiRVTHxEC/ipFAfzYofPstw0ZITDpEMw+pgHlOZolOlnFrv8LyOXWNqlSIH5fS9D3WF7Hpm7ApYA=="; 77 68 }; 78 69 }; 79 - "@angular-devkit/core-12.2.7" = { 70 + "@angular-devkit/core-12.2.11" = { 80 71 name = "_at_angular-devkit_slash_core"; 81 72 packageName = "@angular-devkit/core"; 82 - version = "12.2.7"; 83 - src = fetchurl { 84 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.7.tgz"; 85 - sha512 = "WeLlDZaudpx10OGDPfVcWu/CaEWiWzAaLTUQz0Ww/yM+01FxR/P8yeH1sYAV1MS6d6KHvXGw7Lpf8PV7IA/zHA=="; 86 - }; 87 - }; 88 - "@angular-devkit/schematics-12.0.5" = { 89 - name = "_at_angular-devkit_slash_schematics"; 90 - packageName = "@angular-devkit/schematics"; 91 - version = "12.0.5"; 73 + version = "12.2.11"; 92 74 src = fetchurl { 93 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.0.5.tgz"; 94 - sha512 = "iW3XuDHScr3TXuunlEjF5O01zBpwpLgfr1oEny8PvseFGDlHK4Nj8zNIoIn3Yg936aiFO4GJAC/UXsT8g5vKxQ=="; 75 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.11.tgz"; 76 + sha512 = "JgOKDr6zQu/uVZ5le5shgCeIoq3zQvybZGwxjkdWZdoO8rc5oggoiB2PZrPStolhIjFkQ2/mUvhtqnn7D+w8UA=="; 95 77 }; 96 78 }; 97 79 "@angular-devkit/schematics-12.2.10" = { ··· 103 85 sha512 = "oQ2EWdkEDE+eAttHeviXsvBi85PsntQT+IffjKUZdbQU+Leuk/pKUpTeea1YosU1p4Cz3PKYF+P/Nl5Jy3B7IQ=="; 104 86 }; 105 87 }; 106 - "@angular-devkit/schematics-12.2.7" = { 88 + "@angular-devkit/schematics-12.2.11" = { 107 89 name = "_at_angular-devkit_slash_schematics"; 108 90 packageName = "@angular-devkit/schematics"; 109 - version = "12.2.7"; 91 + version = "12.2.11"; 110 92 src = fetchurl { 111 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.7.tgz"; 112 - sha512 = "E0hCFyyfbixjerf0Okt4ynC6F1dsT2Wl7MwAePe+wzPTHCnKIRTa2PQTxJzdWeTlSkQMkSK6ft2iyWOD/FODng=="; 93 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.11.tgz"; 94 + sha512 = "7ucnRGGRGsWqXhvFuK7oAgXMkWO58jmA9CQzXTWCNT5EFCUeyBj2eNNndI4NlWE/LgeKYn7UhUNREzdBrcDiKw=="; 113 95 }; 114 96 }; 115 - "@angular-devkit/schematics-cli-12.2.7" = { 97 + "@angular-devkit/schematics-cli-12.2.10" = { 116 98 name = "_at_angular-devkit_slash_schematics-cli"; 117 99 packageName = "@angular-devkit/schematics-cli"; 118 - version = "12.2.7"; 100 + version = "12.2.10"; 119 101 src = fetchurl { 120 - url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-12.2.7.tgz"; 121 - sha512 = "dlHY+wD6eosbVbTShgVYskc4rCWn6m06t6TJkp8T0y51kVmjNHMiyBs/7z+YkO4rSDLiHhZmn1b0RUpoxxVw7Q=="; 102 + url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-12.2.10.tgz"; 103 + sha512 = "eXzsQ4nM+g4EB0Ixh8rdN1hhm1KEnjychhITvzHgIFSLu0n6o8g36PrZgvshzvHlJViViNztm9uKjX54eaJ/Dw=="; 122 104 }; 123 105 }; 124 106 "@antora/asciidoc-loader-2.3.4" = { ··· 1210 1192 sha512 = "Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ=="; 1211 1193 }; 1212 1194 }; 1213 - "@babel/plugin-transform-object-assign-7.14.5" = { 1214 - name = "_at_babel_slash_plugin-transform-object-assign"; 1215 - packageName = "@babel/plugin-transform-object-assign"; 1216 - version = "7.14.5"; 1217 - src = fetchurl { 1218 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.14.5.tgz"; 1219 - sha512 = "lvhjk4UN9xJJYB1mI5KC0/o1D5EcJXdbhVe+4fSk08D6ZN+iuAIs7LJC+71h8av9Ew4+uRq9452v9R93SFmQlQ=="; 1220 - }; 1221 - }; 1222 1195 "@babel/plugin-transform-object-super-7.14.5" = { 1223 1196 name = "_at_babel_slash_plugin-transform-object-super"; 1224 1197 packageName = "@babel/plugin-transform-object-super"; ··· 1273 1246 sha512 = "rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ=="; 1274 1247 }; 1275 1248 }; 1276 - "@babel/plugin-transform-react-jsx-self-7.14.9" = { 1277 - name = "_at_babel_slash_plugin-transform-react-jsx-self"; 1278 - packageName = "@babel/plugin-transform-react-jsx-self"; 1279 - version = "7.14.9"; 1280 - src = fetchurl { 1281 - url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.9.tgz"; 1282 - sha512 = "Fqqu0f8zv9W+RyOnx29BX/RlEsBRANbOf5xs5oxb2aHP4FKbLXxIaVPUiCti56LAR1IixMH4EyaixhUsKqoBHw=="; 1283 - }; 1284 - }; 1285 - "@babel/plugin-transform-react-jsx-source-7.14.5" = { 1286 - name = "_at_babel_slash_plugin-transform-react-jsx-source"; 1287 - packageName = "@babel/plugin-transform-react-jsx-source"; 1288 - version = "7.14.5"; 1289 - src = fetchurl { 1290 - url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.5.tgz"; 1291 - sha512 = "1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q=="; 1292 - }; 1293 - }; 1294 1249 "@babel/plugin-transform-react-pure-annotations-7.14.5" = { 1295 1250 name = "_at_babel_slash_plugin-transform-react-pure-annotations"; 1296 1251 packageName = "@babel/plugin-transform-react-pure-annotations"; ··· 1417 1372 sha512 = "pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg=="; 1418 1373 }; 1419 1374 }; 1420 - "@babel/preset-modules-0.1.4" = { 1375 + "@babel/preset-modules-0.1.5" = { 1421 1376 name = "_at_babel_slash_preset-modules"; 1422 1377 packageName = "@babel/preset-modules"; 1423 - version = "0.1.4"; 1378 + version = "0.1.5"; 1424 1379 src = fetchurl { 1425 - url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz"; 1426 - sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 1380 + url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz"; 1381 + sha512 = "A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA=="; 1427 1382 }; 1428 1383 }; 1429 1384 "@babel/preset-react-7.14.5" = { ··· 1552 1507 sha512 = "BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig=="; 1553 1508 }; 1554 1509 }; 1555 - "@blueprintjs/colors-4.0.0-beta.0" = { 1510 + "@blueprintjs/colors-4.0.0-beta.1" = { 1556 1511 name = "_at_blueprintjs_slash_colors"; 1557 1512 packageName = "@blueprintjs/colors"; 1558 - version = "4.0.0-beta.0"; 1513 + version = "4.0.0-beta.1"; 1559 1514 src = fetchurl { 1560 - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.0-beta.0.tgz"; 1561 - sha512 = "dC98U54yUC/20GON74ToqMYk9/PKdLuI7tFSNVscAtaexMV6ETqpOcJEXB8FNwh/pot0sBCdPPevQiZtXvHNmQ=="; 1515 + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.0-beta.1.tgz"; 1516 + sha512 = "te66bqBsCkZOreBn3O0rwde9VSLS57csAApUGKwxIinpf7pexeNde97HM63ZsI3O0qmS0XeiFTPcFy32Ov7heA=="; 1562 1517 }; 1563 1518 }; 1564 - "@blueprintjs/core-3.51.1" = { 1519 + "@blueprintjs/core-3.51.3" = { 1565 1520 name = "_at_blueprintjs_slash_core"; 1566 1521 packageName = "@blueprintjs/core"; 1567 - version = "3.51.1"; 1522 + version = "3.51.3"; 1568 1523 src = fetchurl { 1569 - url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.51.1.tgz"; 1570 - sha512 = "DYwnfoXspCWlBFNnp79OalXHXKMnBNHKFjHSM/VnVwHNRRiwqdGNfT8GrVBZdOTiZsJqQfzUBxN7illjeR/TPA=="; 1524 + url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.51.3.tgz"; 1525 + sha512 = "Z3xGWBMBuboKFx19uxWNAUjITsCmpm+594R/KEAM578uT6yoydT6s5S7N12APAsFe8w3H1Yu2hbWHlHTvRfOhA=="; 1571 1526 }; 1572 1527 }; 1573 - "@blueprintjs/icons-3.30.2" = { 1528 + "@blueprintjs/icons-3.31.0" = { 1574 1529 name = "_at_blueprintjs_slash_icons"; 1575 1530 packageName = "@blueprintjs/icons"; 1576 - version = "3.30.2"; 1531 + version = "3.31.0"; 1577 1532 src = fetchurl { 1578 - url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.30.2.tgz"; 1579 - sha512 = "t0coke9JWLtAt4eQuGfTD2KQSjD+Q5V9JLnRwt1sEyV9/CHXgeoTvsEEqpiXe6gWOW72Rok6Uo86yLyICRW7wQ=="; 1533 + url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.31.0.tgz"; 1534 + sha512 = "6pXhHC8zEvoDKN5KNsIHNuCRKsemmRbXNv1jweB95VaFzR1M+Mik+Qi+13Wd+VtZrzes2ZcWttIeyuK91NoLCw=="; 1580 1535 }; 1581 1536 }; 1582 1537 "@braintree/sanitize-url-3.1.0" = { ··· 1588 1543 sha512 = "GcIY79elgB+azP74j8vqkiXz8xLFfIzbQJdlwOPisgbKT00tviJQuEghOXSMVxJ00HoYJbGswr4kcllUc4xCcg=="; 1589 1544 }; 1590 1545 }; 1591 - "@bugsnag/browser-7.13.2" = { 1592 - name = "_at_bugsnag_slash_browser"; 1593 - packageName = "@bugsnag/browser"; 1594 - version = "7.13.2"; 1595 - src = fetchurl { 1596 - url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.13.2.tgz"; 1597 - sha512 = "TNt6QhJxIqxvZ6wviLfwHu31V48EW+VnySxki0J2s4F++AF/lxCQ2o4ygFSQjOAHRMRChPI5jFM8OKDkx2q7mA=="; 1598 - }; 1599 - }; 1600 - "@bugsnag/core-7.13.2" = { 1601 - name = "_at_bugsnag_slash_core"; 1602 - packageName = "@bugsnag/core"; 1603 - version = "7.13.2"; 1604 - src = fetchurl { 1605 - url = "https://registry.npmjs.org/@bugsnag/core/-/core-7.13.2.tgz"; 1606 - sha512 = "nAQ0WNaI5Zf745ERFXbcwFmWAvrbm9Njtkk7ay45UxtlkINodP85SyV2XaktHRYCHJFjt0NQ9hbdNPeL4nTNGA=="; 1607 - }; 1608 - }; 1609 - "@bugsnag/cuid-3.0.0" = { 1610 - name = "_at_bugsnag_slash_cuid"; 1611 - packageName = "@bugsnag/cuid"; 1612 - version = "3.0.0"; 1613 - src = fetchurl { 1614 - url = "https://registry.npmjs.org/@bugsnag/cuid/-/cuid-3.0.0.tgz"; 1615 - sha512 = "LOt8aaBI+KvOQGneBtpuCz3YqzyEAehd1f3nC5yr9TIYW1+IzYKa2xWS4EiMz5pPOnRPHkyyS5t/wmSmN51Gjg=="; 1616 - }; 1617 - }; 1618 - "@bugsnag/js-7.13.2" = { 1619 - name = "_at_bugsnag_slash_js"; 1620 - packageName = "@bugsnag/js"; 1621 - version = "7.13.2"; 1622 - src = fetchurl { 1623 - url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.13.2.tgz"; 1624 - sha512 = "yXEhiVAiHgpzlP/luA3lDTo+pLgxa3TDl6cSXJtUTOvVqcgzA30k+SHG8h0KwSjXQ0MJWiQFwzPPVENdLAB5nA=="; 1625 - }; 1626 - }; 1627 - "@bugsnag/node-7.13.2" = { 1628 - name = "_at_bugsnag_slash_node"; 1629 - packageName = "@bugsnag/node"; 1630 - version = "7.13.2"; 1631 - src = fetchurl { 1632 - url = "https://registry.npmjs.org/@bugsnag/node/-/node-7.13.2.tgz"; 1633 - sha512 = "/JexaiCDmN2f54StyvwgxkMbOSRL58kNPy1GHwlQL7zAPoEiMe9Jq0LOeHIVMLzgB/i0n7gULjLIuYKDT5udfQ=="; 1634 - }; 1635 - }; 1636 - "@bugsnag/safe-json-stringify-6.0.0" = { 1637 - name = "_at_bugsnag_slash_safe-json-stringify"; 1638 - packageName = "@bugsnag/safe-json-stringify"; 1639 - version = "6.0.0"; 1640 - src = fetchurl { 1641 - url = "https://registry.npmjs.org/@bugsnag/safe-json-stringify/-/safe-json-stringify-6.0.0.tgz"; 1642 - sha512 = "htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA=="; 1643 - }; 1644 - }; 1645 - "@cdktf/hcl2cdk-0.6.4" = { 1546 + "@cdktf/hcl2cdk-0.7.0" = { 1646 1547 name = "_at_cdktf_slash_hcl2cdk"; 1647 1548 packageName = "@cdktf/hcl2cdk"; 1648 - version = "0.6.4"; 1549 + version = "0.7.0"; 1649 1550 src = fetchurl { 1650 - url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.6.4.tgz"; 1651 - sha512 = "prJ7VSSMJy8W7QYup0GMBJdCzFSorYtqsWEn10z/SLLg12JYOF5gzW+QU7KenK8MbTIMV8dFEbORObpm2pzTUA=="; 1551 + url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.7.0.tgz"; 1552 + sha512 = "HASCRZcHX/qnDYD8sgdh/AY3Npj3AW6zZlFKUAyWM3veutWoYcUl+sPC7HwpQYkREhoNRMYWbrcq6VurgrpnOg=="; 1652 1553 }; 1653 1554 }; 1654 - "@cdktf/hcl2json-0.6.4" = { 1555 + "@cdktf/hcl2json-0.7.0" = { 1655 1556 name = "_at_cdktf_slash_hcl2json"; 1656 1557 packageName = "@cdktf/hcl2json"; 1657 - version = "0.6.4"; 1558 + version = "0.7.0"; 1559 + src = fetchurl { 1560 + url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.7.0.tgz"; 1561 + sha512 = "YwZnPwEYplGalUsfJzptlIer2w7o/FmtGNblZEVlLRXqioALvDXMRrmwSeOFAQ1ycPaCMTllB4nXIaqftfTVWg=="; 1562 + }; 1563 + }; 1564 + "@cdktf/provider-generator-0.7.0" = { 1565 + name = "_at_cdktf_slash_provider-generator"; 1566 + packageName = "@cdktf/provider-generator"; 1567 + version = "0.7.0"; 1658 1568 src = fetchurl { 1659 - url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.6.4.tgz"; 1660 - sha512 = "xtfetZdKKSsF+xRGcaDO4ynfx0aJWZauBw6wCSz5PqHThJ/myOtMzw+Prk9N3zEBNzRdO5OM/lbNSYeyjbWuVw=="; 1569 + url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.7.0.tgz"; 1570 + sha512 = "PzL3qTxZEnXWFGB+nQOHub8xmEykJKhHLgc6CUEfu9z8PCmK9dnPLK6BKvDgvQtnTT2/aXmFjDr9GVbuOZ5Gsw=="; 1661 1571 }; 1662 1572 }; 1663 1573 "@chemzqm/neovim-5.4.0" = { ··· 2236 2146 sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="; 2237 2147 }; 2238 2148 }; 2239 - "@expo/config-6.0.0" = { 2149 + "@expo/config-6.0.6" = { 2240 2150 name = "_at_expo_slash_config"; 2241 2151 packageName = "@expo/config"; 2242 - version = "6.0.0"; 2152 + version = "6.0.6"; 2243 2153 src = fetchurl { 2244 - url = "https://registry.npmjs.org/@expo/config/-/config-6.0.0.tgz"; 2245 - sha512 = "pL4ZZbue6oU4Prcxew96Vpg2OApD5IE8Otk+eIKZKo0aS5BGnWEic/GszXLOAhPgGiHyP/jmylQ+GPNztz1TUA=="; 2154 + url = "https://registry.npmjs.org/@expo/config/-/config-6.0.6.tgz"; 2155 + sha512 = "GPI8EIdMAtZ5VaB4p5GcfuX50xyfGFdpEqLi0QmcfrCfTsGry1/j/Qy28hovHM1oJYHlaZylTcbGy+1ET+AO2w=="; 2246 2156 }; 2247 2157 }; 2248 - "@expo/config-plugins-4.0.0" = { 2158 + "@expo/config-plugins-4.0.6" = { 2249 2159 name = "_at_expo_slash_config-plugins"; 2250 2160 packageName = "@expo/config-plugins"; 2251 - version = "4.0.0"; 2161 + version = "4.0.6"; 2252 2162 src = fetchurl { 2253 - url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-4.0.0.tgz"; 2254 - sha512 = "6pNLI8L8oV4MfyM/w2DDx9zvzO258Jl2QfDdHI+T1QAAShupqzXdqjkRMj6+6n3CrUaeqUadSMnjqSTUF9XZlQ=="; 2163 + url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-4.0.6.tgz"; 2164 + sha512 = "K/KQaw/CU8uLQgk7sFnZC54YGHoGucKFfdjYeZx5ds2eyzbuMAiKzGFcxZ/S+1dVBZ8QHzwowsVBW3kuYhnQ3Q=="; 2255 2165 }; 2256 2166 }; 2257 - "@expo/config-types-42.0.0" = { 2167 + "@expo/config-types-43.0.1" = { 2258 2168 name = "_at_expo_slash_config-types"; 2259 2169 packageName = "@expo/config-types"; 2260 - version = "42.0.0"; 2170 + version = "43.0.1"; 2261 2171 src = fetchurl { 2262 - url = "https://registry.npmjs.org/@expo/config-types/-/config-types-42.0.0.tgz"; 2263 - sha512 = "Rj02OMZke2MrGa/1Y/EScmR7VuWbDEHPJyvfFyyLbadUt+Yv6isCdeFzDt71I7gJlPR9T4fzixeYLrtXXOTq0w=="; 2172 + url = "https://registry.npmjs.org/@expo/config-types/-/config-types-43.0.1.tgz"; 2173 + sha512 = "EtllpCGDdB/UdwAIs5YXJwBLpbFQNdlLLrxIvoILA9cXrpQMWkeDCT9lQPJzFRMFcLUaMuGvkzX2tR4tx5EQFQ=="; 2264 2174 }; 2265 2175 }; 2266 - "@expo/dev-server-0.1.85" = { 2176 + "@expo/dev-server-0.1.91" = { 2267 2177 name = "_at_expo_slash_dev-server"; 2268 2178 packageName = "@expo/dev-server"; 2269 - version = "0.1.85"; 2179 + version = "0.1.91"; 2270 2180 src = fetchurl { 2271 - url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.85.tgz"; 2272 - sha512 = "Jz8kqbpdBBx01Pu00eXy/ZfEz7hTeaQRwRsyQndVdDIUYddb0R/NI/m1aCk+JdnIZv1Et5krgw/ADdDUwWz6kQ=="; 2181 + url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.91.tgz"; 2182 + sha512 = "HZBd3Esf33i8e64dJ4JxixRilF628IEVD2Bw6a09r35S/Jp4vewBcpttBOWjilobRq/maSczDdDkXIXdrQsWJA=="; 2273 2183 }; 2274 2184 }; 2275 - "@expo/dev-tools-0.13.117" = { 2185 + "@expo/dev-tools-0.13.126" = { 2276 2186 name = "_at_expo_slash_dev-tools"; 2277 2187 packageName = "@expo/dev-tools"; 2278 - version = "0.13.117"; 2188 + version = "0.13.126"; 2279 2189 src = fetchurl { 2280 - url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.117.tgz"; 2281 - sha512 = "VF1WUNz6HsdXAtLf/tBbFU9uIkN1ddeND2ixvKdkfsEKzq0R7y5jJwT5DCBjUX3m+P87BARxRiZOe9OQQS3+cA=="; 2190 + url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.126.tgz"; 2191 + sha512 = "g+ZAvSjuOW/JmMzr7thiOl+cWXfwww8GW4ekuLBP/dQGadMn2Iaf8ZG7Yb3F5AoyX5TO+T0dEX61L/WcBV/65Q=="; 2282 2192 }; 2283 2193 }; 2284 2194 "@expo/devcert-1.0.0" = { ··· 2290 2200 sha512 = "cahGyQCmpZmHpn2U04NR9KwsOIZy7Rhsw8Fg4q+A6563lIJxbkrgPnxq/O3NQAh3ohEvOXOOnoFx0b4yycCkpQ=="; 2291 2201 }; 2292 2202 }; 2293 - "@expo/image-utils-0.3.16" = { 2203 + "@expo/image-utils-0.3.17" = { 2294 2204 name = "_at_expo_slash_image-utils"; 2295 2205 packageName = "@expo/image-utils"; 2296 - version = "0.3.16"; 2206 + version = "0.3.17"; 2297 2207 src = fetchurl { 2298 - url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.16.tgz"; 2299 - sha512 = "ZggQK5w7awqYdA/TE0DT02nYxWirQm2r7NNy043zVtzBCtjhLpFpluk1v9W0pH4+nT1ChGk1c67j0mYRKcBkjg=="; 2208 + url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.17.tgz"; 2209 + sha512 = "zaOj24JK5F+pPGpULP8D9aAbApcR7ixV2GjT43YzZqjHuyxQ5knI+EsbmZ1TNnA1vNJJKMYrigB5+chcUGwkpw=="; 2300 2210 }; 2301 2211 }; 2302 2212 "@expo/json-file-8.2.33" = { ··· 2308 2218 sha512 = "CDnhjdirUs6OdN5hOSTJ2y3i9EiJMk7Z5iDljC5xyCHCrUex7oyI8vbRsZEojAahxZccgL/PrO+CjakiFFWurg=="; 2309 2219 }; 2310 2220 }; 2311 - "@expo/metro-config-0.2.0" = { 2221 + "@expo/metro-config-0.2.6" = { 2312 2222 name = "_at_expo_slash_metro-config"; 2313 2223 packageName = "@expo/metro-config"; 2314 - version = "0.2.0"; 2224 + version = "0.2.6"; 2315 2225 src = fetchurl { 2316 - url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.2.0.tgz"; 2317 - sha512 = "p2N8V/zByM1e7YmBSWQ7eUAs6ALYFMjSa2ebMwJUr2i63b1p9A7aInGOP3rCgEiroRcwdyTIq/tUQC4rlsNRWw=="; 2226 + url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.2.6.tgz"; 2227 + sha512 = "pqbfA+sZbBYlWe3F1egynpTulyO+U9yHZ+6ucNxZtQZal1gCMtjvfAjgyMUC696kADQ94k/cCcl/PJSOUHG+Nw=="; 2318 2228 }; 2319 2229 }; 2320 2230 "@expo/osascript-2.0.30" = { ··· 2344 2254 sha512 = "LDxiS0KNZAGJu4fIJhbEKczmb+zeftl1NU0LE0tj0mozoMI5HSKdMUchgvnBm35bwBl8ekKkAfJJ0ONxljWQjQ=="; 2345 2255 }; 2346 2256 }; 2347 - "@expo/prebuild-config-3.0.0" = { 2257 + "@expo/prebuild-config-3.0.6" = { 2348 2258 name = "_at_expo_slash_prebuild-config"; 2349 2259 packageName = "@expo/prebuild-config"; 2350 - version = "3.0.0"; 2260 + version = "3.0.6"; 2351 2261 src = fetchurl { 2352 - url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-3.0.0.tgz"; 2353 - sha512 = "/6Un2nN9oiL2IVGDin00wwJfEGZbG4IRe/ycBeZbCIA5xux+ovVaiuGNJklTvlUVRxSboG5mXWt+drfa0GUwtw=="; 2262 + url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-3.0.6.tgz"; 2263 + sha512 = "KmPCi/Qhlx+jhmgDlMYNAhD64njDP3P9MWSKOl2YzpdDopk6+EGGBgI9Km6rQ1F3ESkqhuZN0uGYmABw6AoYYA=="; 2354 2264 }; 2355 2265 }; 2356 2266 "@expo/results-1.0.0" = { ··· 2398 2308 sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew=="; 2399 2309 }; 2400 2310 }; 2401 - "@expo/webpack-config-0.16.0" = { 2311 + "@expo/webpack-config-0.16.6" = { 2402 2312 name = "_at_expo_slash_webpack-config"; 2403 2313 packageName = "@expo/webpack-config"; 2404 - version = "0.16.0"; 2314 + version = "0.16.6"; 2405 2315 src = fetchurl { 2406 - url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.16.0.tgz"; 2407 - sha512 = "IwzXvzvjd5+Zc10+3K6fvjY3d5ECEH81fukka0qRyIHgCtxivl2tBlJftAQB3tfN3L32xeNTbj6iKXtAolCDvQ=="; 2316 + url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.16.6.tgz"; 2317 + sha512 = "xGovzj52z/rsF+cRD4iEqFykp9YYLDnF2l86XQemXxIB7L89owXI/zd4oi5X8kaLfJLPlTq/F8A4NaoztLxxjQ=="; 2408 2318 }; 2409 2319 }; 2410 2320 "@expo/xcpretty-3.1.4" = { ··· 2461 2371 sha512 = "iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q=="; 2462 2372 }; 2463 2373 }; 2464 - "@fluentui/react-7.177.2" = { 2374 + "@fluentui/react-7.177.3" = { 2465 2375 name = "_at_fluentui_slash_react"; 2466 2376 packageName = "@fluentui/react"; 2467 - version = "7.177.2"; 2377 + version = "7.177.3"; 2468 2378 src = fetchurl { 2469 - url = "https://registry.npmjs.org/@fluentui/react/-/react-7.177.2.tgz"; 2470 - sha512 = "jNaCKBtcGRpJ0CzADI/dgBm4gP0D8nXmDCx6VTImIS9Fbas0X+rJhCvEGnTlRaRalN2mPG8D5kUO9WIAXr61pQ=="; 2379 + url = "https://registry.npmjs.org/@fluentui/react/-/react-7.177.3.tgz"; 2380 + sha512 = "Bo4656lQImdG+o8STjmAmdRzu0Ne+WTwxG9l1HMUR6IaJ/PyeJv60U3+2es/MZ971dsNMzeGcLLiHB4TXW1LSQ=="; 2471 2381 }; 2472 2382 }; 2473 - "@fluentui/react-focus-7.18.0" = { 2383 + "@fluentui/react-focus-7.18.1" = { 2474 2384 name = "_at_fluentui_slash_react-focus"; 2475 2385 packageName = "@fluentui/react-focus"; 2476 - version = "7.18.0"; 2386 + version = "7.18.1"; 2477 2387 src = fetchurl { 2478 - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.18.0.tgz"; 2479 - sha512 = "+ykERyl/Cah9ixBqYtA4DWG5UDg61oNd0T78xKZ/ZeKzAUk2LanEQd2QQ/VX6/UFqWrHsK3IiEUFmZCQhp4wfQ=="; 2388 + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.18.1.tgz"; 2389 + sha512 = "WXXkMR3t5mr9m5hg5vRWH/JZ+kaZmbuTGpTA7E7uc+Ag/RZfG/uVN+ZwBdDpP6Xg7+6f3wlkGCBtY/UDcW6qmw=="; 2480 2390 }; 2481 2391 }; 2482 2392 "@fluentui/react-window-provider-1.0.2" = { ··· 2596 2506 sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; 2597 2507 }; 2598 2508 }; 2599 - "@graphql-tools/import-6.5.4" = { 2509 + "@graphql-tools/import-6.5.6" = { 2600 2510 name = "_at_graphql-tools_slash_import"; 2601 2511 packageName = "@graphql-tools/import"; 2602 - version = "6.5.4"; 2512 + version = "6.5.6"; 2603 2513 src = fetchurl { 2604 - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.5.4.tgz"; 2605 - sha512 = "2I3m/RFisxMoRQAAsZi807Kqc4i8Ih/RoliqVBU08nYSkMg/TH67/BbV54pVUrlRF44o9GYjGaHlr5p2mwDoIQ=="; 2514 + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.5.6.tgz"; 2515 + sha512 = "SxCpNhN3sIZM4wsMjQWXKkff/CBn7+WHoZ9OjZkdV5nxGbnzRKh5SZAAsvAFuj6Kst5Y9mlAaiwy+QufZZ1F1w=="; 2606 2516 }; 2607 2517 }; 2608 2518 "@graphql-tools/json-file-loader-6.2.6" = { ··· 2641 2551 sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow=="; 2642 2552 }; 2643 2553 }; 2644 - "@graphql-tools/merge-8.1.2" = { 2554 + "@graphql-tools/merge-8.2.0" = { 2645 2555 name = "_at_graphql-tools_slash_merge"; 2646 2556 packageName = "@graphql-tools/merge"; 2647 - version = "8.1.2"; 2557 + version = "8.2.0"; 2648 2558 src = fetchurl { 2649 - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.1.2.tgz"; 2650 - sha512 = "kFLd4kKNJXYXnKIhM8q9zgGAtbLmsy3WmGdDxYq3YHBJUogucAxnivQYyRIseUq37KGmSAIWu3pBQ23TKGsGOw=="; 2559 + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.0.tgz"; 2560 + sha512 = "nfMLYF7zczjnIbChZtqbvozRfuRweMD1Fe9HHd4RXd3Tcsj6E17srW0QJfxUoIIWh4pitj+XwZAwhj1PWBDU7g=="; 2651 2561 }; 2652 2562 }; 2653 - "@graphql-tools/mock-8.4.0" = { 2563 + "@graphql-tools/mock-8.4.1" = { 2654 2564 name = "_at_graphql-tools_slash_mock"; 2655 2565 packageName = "@graphql-tools/mock"; 2656 - version = "8.4.0"; 2566 + version = "8.4.1"; 2657 2567 src = fetchurl { 2658 - url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.4.0.tgz"; 2659 - sha512 = "RKcqmw7P5pC2ULh2/kg/erxxsd7lEV/wnI5jNgahkCw8wiSC8OI3SwNMwjfrlpYogs7eEhiXi7Ix6abCiFUURw=="; 2568 + url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.4.1.tgz"; 2569 + sha512 = "eIW2H1k9b4Sczzy1Za+GdaKBc8lTXo8MbJH4oivh1AoGl6/Tu9jTOOTS/b07zQzG+6sIQG54o9W6s2TqDmD+YQ=="; 2660 2570 }; 2661 2571 }; 2662 2572 "@graphql-tools/schema-7.1.5" = { ··· 2668 2578 sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; 2669 2579 }; 2670 2580 }; 2671 - "@graphql-tools/schema-8.2.0" = { 2581 + "@graphql-tools/schema-8.3.0" = { 2672 2582 name = "_at_graphql-tools_slash_schema"; 2673 2583 packageName = "@graphql-tools/schema"; 2674 - version = "8.2.0"; 2584 + version = "8.3.0"; 2675 2585 src = fetchurl { 2676 - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.2.0.tgz"; 2677 - sha512 = "ufmI5mJQa8NJczzfkh0pUttKvspqDcT5LLakA3jUmOrrE4d4NVj6onZlazdTzF5sAepSNqanFnwhrxZpCAJMKg=="; 2586 + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.0.tgz"; 2587 + sha512 = "OJD4Q1Xa3sffRiHzy0sskZz9ZWeqaujINfoim4CTk5Y9es1LS+WnKi25wVhmL2SGzzmKuAv7oDn+dpQAlM+Gfw=="; 2678 2588 }; 2679 2589 }; 2680 2590 "@graphql-tools/url-loader-6.10.1" = { ··· 2713 2623 sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; 2714 2624 }; 2715 2625 }; 2716 - "@graphql-tools/utils-8.3.0" = { 2626 + "@graphql-tools/utils-8.5.0" = { 2717 2627 name = "_at_graphql-tools_slash_utils"; 2718 2628 packageName = "@graphql-tools/utils"; 2719 - version = "8.3.0"; 2629 + version = "8.5.0"; 2720 2630 src = fetchurl { 2721 - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.3.0.tgz"; 2722 - sha512 = "ksE0RxS0AFllo6KIJjvQsRgcUAzoyZUgUrDbCngv4SaQwyX9YxTfddTLN4uQmbiZB9h25fPp/Xgeyaa3ARCzgg=="; 2631 + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.5.0.tgz"; 2632 + sha512 = "jMwLm6YdN+Vbqntg5GHqDvGLpLa/xPSpRs/c40d0rBuel77wo7AaQ8jHeBSpp9y+7kp7HrGSWff1u7yJ7F8ppw=="; 2723 2633 }; 2724 2634 }; 2725 2635 "@graphql-tools/wrap-7.0.8" = { ··· 2758 2668 sha512 = "CKQVuwuSPh40tgOkR7c0ZisxYRiN05PcKPW72mQL5y++qd7CwBRoaJZvU5xfXnCJDFBmS3qZGQ71Frx6Ofo2XA=="; 2759 2669 }; 2760 2670 }; 2761 - "@grpc/grpc-js-1.3.8" = { 2671 + "@grpc/grpc-js-1.4.2" = { 2762 2672 name = "_at_grpc_slash_grpc-js"; 2763 2673 packageName = "@grpc/grpc-js"; 2764 - version = "1.3.8"; 2674 + version = "1.4.2"; 2765 2675 src = fetchurl { 2766 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.8.tgz"; 2767 - sha512 = "4qJqqn+CU/nBydz9ePJP+oa8dz0U42Ut/GejlbyaQ1xTkynCc+ndNHHnISlNeHawDsv4MOAyP3mV/EnDNUw2zA=="; 2676 + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.4.2.tgz"; 2677 + sha512 = "aUN6oGk9un8rfYWz73nQgFxPCYJQYd8LpIGguZHBsNduBMyqG6EWANrsVBuTG+nl/l4dKb3x+qi1l9+oxDxqGg=="; 2768 2678 }; 2769 2679 }; 2770 2680 "@grpc/proto-loader-0.6.2" = { ··· 2792 2702 src = fetchurl { 2793 2703 url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.5.tgz"; 2794 2704 sha512 = "GZdzyVQI1Bln/kCzIYgTKu+rQJ5dno0gVrfmLe4jqQu7T2e7svSwJzpCBqVU5hhBSJP3peuPjOMWsj5GR61YmQ=="; 2705 + }; 2706 + }; 2707 + "@grpc/proto-loader-0.6.6" = { 2708 + name = "_at_grpc_slash_proto-loader"; 2709 + packageName = "@grpc/proto-loader"; 2710 + version = "0.6.6"; 2711 + src = fetchurl { 2712 + url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.6.tgz"; 2713 + sha512 = "cdMaPZ8AiFz6ua6PUbP+LKbhwJbFXnrQ/mlnKGUyzDUZ3wp7vPLksnmLCBX6SHgSmjX7CbNVNLFYD5GmmjO4GQ=="; 2795 2714 }; 2796 2715 }; 2797 2716 "@gulp-sourcemaps/identity-map-1.0.2" = { ··· 3253 3172 sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; 3254 3173 }; 3255 3174 }; 3256 - "@jsii/check-node-1.39.0" = { 3175 + "@jsii/check-node-1.37.0" = { 3176 + name = "_at_jsii_slash_check-node"; 3177 + packageName = "@jsii/check-node"; 3178 + version = "1.37.0"; 3179 + src = fetchurl { 3180 + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.37.0.tgz"; 3181 + sha512 = "s0jhnq/1X1IQQpKcAoUAd3KZ6X58nEjIi+vL4aC0iyDW6v2pmt8J5G/ilUZSbvplyJ2GdTMYi7NOCz2f3QAGZA=="; 3182 + }; 3183 + }; 3184 + "@jsii/check-node-1.40.0" = { 3257 3185 name = "_at_jsii_slash_check-node"; 3258 3186 packageName = "@jsii/check-node"; 3259 - version = "1.39.0"; 3187 + version = "1.40.0"; 3260 3188 src = fetchurl { 3261 - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.39.0.tgz"; 3262 - sha512 = "tqx5o0Zw6WrVKmB9S1X0E8AajfXjWu9yoOUtUdYVCR6NAdi8mY/NQ3uYJ8II0AF1MtC0PdASOjb/6i3h02komw=="; 3189 + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.40.0.tgz"; 3190 + sha512 = "rk0hFXxFQR8rDGUfsZT9ua6OufOpnLQWsNFyFU86AvpoKQ0ciw2KlGdWs7OYFnzPq8sQGhSS+iuBrUboaHW3jg=="; 3263 3191 }; 3264 3192 }; 3265 - "@jsii/spec-1.39.0" = { 3193 + "@jsii/spec-1.40.0" = { 3266 3194 name = "_at_jsii_slash_spec"; 3267 3195 packageName = "@jsii/spec"; 3268 - version = "1.39.0"; 3196 + version = "1.40.0"; 3269 3197 src = fetchurl { 3270 - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.39.0.tgz"; 3271 - sha512 = "NbCmAYOB938uyWHwXj6fhdeIzznhHbxLmvl4Jtwe08Nrz5Gs4n79snV29XWIQulDMa4HYkNh1yqhBXOHkd+GAg=="; 3198 + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.40.0.tgz"; 3199 + sha512 = "SJ9Kwz0C53bomYWb5PlESt6v8JmfgqqFjc1annNK+foHxcaUzs3trhKbBXgxhcoApE2pMnUIBj3DG9gLNmKdWw=="; 3272 3200 }; 3273 3201 }; 3274 3202 "@kwsites/file-exists-1.1.1" = { ··· 3937 3865 sha512 = "/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg=="; 3938 3866 }; 3939 3867 }; 3940 - "@mapbox/node-pre-gyp-1.0.5" = { 3868 + "@mapbox/node-pre-gyp-1.0.6" = { 3941 3869 name = "_at_mapbox_slash_node-pre-gyp"; 3942 3870 packageName = "@mapbox/node-pre-gyp"; 3943 - version = "1.0.5"; 3871 + version = "1.0.6"; 3944 3872 src = fetchurl { 3945 - url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.5.tgz"; 3946 - sha512 = "4srsKPXWlIxp5Vbqz5uLfBN+du2fJChBoYn/f2h991WLdk7jUvcSk/McVLSv/X+xQIPI8eGD5GjrnygdyHnhPA=="; 3873 + url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.6.tgz"; 3874 + sha512 = "qK1ECws8UxuPqOA8F5LFD90vyVU33W7N3hGfgsOVfrJaRVc8McC3JClTDHpeSbL9CBrOHly/4GsNPAvIgNZE+g=="; 3947 3875 }; 3948 3876 }; 3949 3877 "@mapbox/point-geometry-0.1.0" = { ··· 4171 4099 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 4172 4100 }; 4173 4101 }; 4174 - "@microsoft/load-themed-styles-1.10.225" = { 4102 + "@microsoft/load-themed-styles-1.10.226" = { 4175 4103 name = "_at_microsoft_slash_load-themed-styles"; 4176 4104 packageName = "@microsoft/load-themed-styles"; 4177 - version = "1.10.225"; 4105 + version = "1.10.226"; 4178 4106 src = fetchurl { 4179 - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.225.tgz"; 4180 - sha512 = "ARu2FwDnA5VcWHGpzGUnn5eB1K6lXmqCGHis7UoBKAW0uS2Asuo9Y7scblA2Fg/6lIFHLobWg4LGbzi0maYKpQ=="; 4107 + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.226.tgz"; 4108 + sha512 = "OBjndYXf2PNkGq2ezjsatEXFI2cuGCD8/boYHeopoWDxCSCsMgSJw5ZELdPTFLxNl9YELPtBeDhQ/g7myDsWxQ=="; 4181 4109 }; 4182 4110 }; 4183 4111 "@mitmaro/errors-1.0.0" = { ··· 4234 4162 sha512 = "ApwiSL2c9ObewdOE/sqt788P1C5lomBOHyO8nUBCr4ofErBCnYQ003NtJ8lS9OQZc11ximkbmgAZJjB8y6cCdA=="; 4235 4163 }; 4236 4164 }; 4237 - "@nestjs/schematics-8.0.3" = { 4165 + "@nestjs/schematics-8.0.4" = { 4238 4166 name = "_at_nestjs_slash_schematics"; 4239 4167 packageName = "@nestjs/schematics"; 4240 - version = "8.0.3"; 4168 + version = "8.0.4"; 4241 4169 src = fetchurl { 4242 - url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.3.tgz"; 4243 - sha512 = "A5qyS9yv6v2RIBqbsyYG57NfYA8Jm/aypRV1nc7JXjhdfDHwWKqCsgQ/7/82vVjhlvVAfr5x/dpCWqcF3XYd7w=="; 4170 + url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.4.tgz"; 4171 + sha512 = "uEmEfuNuIgsNr4m0wEkXIIG6usegehnpwhtOoxXWwvKO0CFO3POAx4pOazPgC4ky6pJ0XROhE/8O55JtmEw0UQ=="; 4244 4172 }; 4245 4173 }; 4246 4174 "@netflix/nerror-1.1.3" = { ··· 4252 4180 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 4253 4181 }; 4254 4182 }; 4255 - "@netlify/build-18.17.2" = { 4256 - name = "_at_netlify_slash_build"; 4257 - packageName = "@netlify/build"; 4258 - version = "18.17.2"; 4259 - src = fetchurl { 4260 - url = "https://registry.npmjs.org/@netlify/build/-/build-18.17.2.tgz"; 4261 - sha512 = "K4wmbfwQEtwB/ke/haibfhjZnesNP3j4MjtTUoUBHc/MXEBa1uFqb/7fchXMFZSbbmU+r/Ra8Fbt3NAIS15K5Q=="; 4262 - }; 4263 - }; 4264 - "@netlify/cache-utils-2.0.4" = { 4265 - name = "_at_netlify_slash_cache-utils"; 4266 - packageName = "@netlify/cache-utils"; 4267 - version = "2.0.4"; 4268 - src = fetchurl { 4269 - url = "https://registry.npmjs.org/@netlify/cache-utils/-/cache-utils-2.0.4.tgz"; 4270 - sha512 = "P6tomPTt5tdyFrrYbBWHIGBHTwiuewrElxVRMnYW1W4GfTP4Me4+iV5lOyU/Yw9OuTPg7dPzah2J0GA6cA1YCw=="; 4271 - }; 4272 - }; 4273 - "@netlify/config-15.7.2" = { 4274 - name = "_at_netlify_slash_config"; 4275 - packageName = "@netlify/config"; 4276 - version = "15.7.2"; 4277 - src = fetchurl { 4278 - url = "https://registry.npmjs.org/@netlify/config/-/config-15.7.2.tgz"; 4279 - sha512 = "hZO+vSJa+m1vpJjuTXSLh7ZyFMs8AIfElLZtllL4OTM7VMuLiC7+m7HHKWNX+xbW27lCox1G5jpUpGajtH0ajA=="; 4280 - }; 4281 - }; 4282 - "@netlify/esbuild-0.13.6" = { 4283 - name = "_at_netlify_slash_esbuild"; 4284 - packageName = "@netlify/esbuild"; 4285 - version = "0.13.6"; 4286 - src = fetchurl { 4287 - url = "https://registry.npmjs.org/@netlify/esbuild/-/esbuild-0.13.6.tgz"; 4288 - sha512 = "tiKmDcHM2riSVN79c0mJY/67EBDafXQAMitHuLiCDAMdtz3kfv+NqdVG5krgf5lWR8Uf8AeZrUW5Q9RP25REvw=="; 4289 - }; 4290 - }; 4291 - "@netlify/framework-info-5.11.0" = { 4292 - name = "_at_netlify_slash_framework-info"; 4293 - packageName = "@netlify/framework-info"; 4294 - version = "5.11.0"; 4295 - src = fetchurl { 4296 - url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.11.0.tgz"; 4297 - sha512 = "B6MW05c8vUuakO8x/ucp99ocpdYeikusCzPANqD0O1JamdLyDsDbhL7Z3j0QUhZjpY+bm+4g91Gaq7ynpX0ICg=="; 4298 - }; 4299 - }; 4300 - "@netlify/functions-utils-2.0.2" = { 4301 - name = "_at_netlify_slash_functions-utils"; 4302 - packageName = "@netlify/functions-utils"; 4303 - version = "2.0.2"; 4304 - src = fetchurl { 4305 - url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-2.0.2.tgz"; 4306 - sha512 = "mQI0NX0QPNVcYb2TQF5cpxO350BR9309r7vSOSvfn0DHkPWUea1kl3iiLXi1mm/dUC6pd3p5ctc0UboW0u+iVQ=="; 4307 - }; 4308 - }; 4309 - "@netlify/git-utils-2.0.2" = { 4310 - name = "_at_netlify_slash_git-utils"; 4311 - packageName = "@netlify/git-utils"; 4312 - version = "2.0.2"; 4313 - src = fetchurl { 4314 - url = "https://registry.npmjs.org/@netlify/git-utils/-/git-utils-2.0.2.tgz"; 4315 - sha512 = "gk1ak1AAktsjHQDY1Sg0qp8H+3dcmdB7jEmr0MD8V7X4u/CByPx8fBC0ZpksZ+HhkAdw/thRL4Qir+zhh4QtWA=="; 4316 - }; 4317 - }; 4318 - "@netlify/local-functions-proxy-1.1.1" = { 4319 - name = "_at_netlify_slash_local-functions-proxy"; 4320 - packageName = "@netlify/local-functions-proxy"; 4321 - version = "1.1.1"; 4322 - src = fetchurl { 4323 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy/-/local-functions-proxy-1.1.1.tgz"; 4324 - sha512 = "eXSsayLT6PMvjzFQpjC9nkg2Otc3lZ5GoYele9M6f8PmsvWpaXRhwjNQ0NYhQQ2UZbLMIiO2dH8dbRsT3bMkFw=="; 4325 - }; 4326 - }; 4327 - "@netlify/local-functions-proxy-darwin-arm64-1.1.1" = { 4328 - name = "_at_netlify_slash_local-functions-proxy-darwin-arm64"; 4329 - packageName = "@netlify/local-functions-proxy-darwin-arm64"; 4330 - version = "1.1.1"; 4331 - src = fetchurl { 4332 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-darwin-arm64/-/local-functions-proxy-darwin-arm64-1.1.1.tgz"; 4333 - sha512 = "lphJ9qqZ3glnKWEqlemU1LMqXxtJ/tKf7VzakqqyjigwLscXSZSb6fupSjQfd4tR1xqxA76ylws/2HDhc/gs+Q=="; 4334 - }; 4335 - }; 4336 - "@netlify/local-functions-proxy-darwin-x64-1.1.1" = { 4337 - name = "_at_netlify_slash_local-functions-proxy-darwin-x64"; 4338 - packageName = "@netlify/local-functions-proxy-darwin-x64"; 4339 - version = "1.1.1"; 4340 - src = fetchurl { 4341 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-darwin-x64/-/local-functions-proxy-darwin-x64-1.1.1.tgz"; 4342 - sha512 = "4CRB0H+dXZzoEklq5Jpmg+chizXlVwCko94d8+UHWCgy/bA3M/rU/BJ8OLZisnJaAktHoeLABKtcLOhtRHpxZQ=="; 4343 - }; 4344 - }; 4345 - "@netlify/local-functions-proxy-freebsd-arm64-1.1.1" = { 4346 - name = "_at_netlify_slash_local-functions-proxy-freebsd-arm64"; 4347 - packageName = "@netlify/local-functions-proxy-freebsd-arm64"; 4348 - version = "1.1.1"; 4349 - src = fetchurl { 4350 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-freebsd-arm64/-/local-functions-proxy-freebsd-arm64-1.1.1.tgz"; 4351 - sha512 = "u13lWTVMJDF0A6jX7V4N3HYGTIHLe5d1Z2wT43fSIHwXkTs6UXi72cGSraisajG+5JFIwHfPr7asw5vxFC0P9w=="; 4352 - }; 4353 - }; 4354 - "@netlify/local-functions-proxy-freebsd-x64-1.1.1" = { 4355 - name = "_at_netlify_slash_local-functions-proxy-freebsd-x64"; 4356 - packageName = "@netlify/local-functions-proxy-freebsd-x64"; 4357 - version = "1.1.1"; 4358 - src = fetchurl { 4359 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-freebsd-x64/-/local-functions-proxy-freebsd-x64-1.1.1.tgz"; 4360 - sha512 = "g5xw4xATK5YDzvXtzJ8S1qSkWBiyF8VVRehXPMOAMzpGjCX86twYhWp8rbAk7yA1zBWmmWrWNA2Odq/MgpKJJg=="; 4361 - }; 4362 - }; 4363 - "@netlify/local-functions-proxy-linux-arm-1.1.1" = { 4364 - name = "_at_netlify_slash_local-functions-proxy-linux-arm"; 4365 - packageName = "@netlify/local-functions-proxy-linux-arm"; 4366 - version = "1.1.1"; 4367 - src = fetchurl { 4368 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-arm/-/local-functions-proxy-linux-arm-1.1.1.tgz"; 4369 - sha512 = "YsTpL+AbHwQrfHWXmKnwUrJBjoUON363nr6jUG1ueYnpbbv6wTUA7gI5snMi/gkGpqFusBthAA7C30e6bixfiA=="; 4370 - }; 4371 - }; 4372 - "@netlify/local-functions-proxy-linux-arm64-1.1.1" = { 4373 - name = "_at_netlify_slash_local-functions-proxy-linux-arm64"; 4374 - packageName = "@netlify/local-functions-proxy-linux-arm64"; 4375 - version = "1.1.1"; 4376 - src = fetchurl { 4377 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-arm64/-/local-functions-proxy-linux-arm64-1.1.1.tgz"; 4378 - sha512 = "dPGu1H5n8na7mBKxiXQ+FNmthDAiA57wqgpm5JMAHtcdcmRvcXwJkwWVGvwfj8ShhYJHQaSaS9oPgO+mpKkgmA=="; 4379 - }; 4380 - }; 4381 - "@netlify/local-functions-proxy-linux-ia32-1.1.1" = { 4382 - name = "_at_netlify_slash_local-functions-proxy-linux-ia32"; 4383 - packageName = "@netlify/local-functions-proxy-linux-ia32"; 4384 - version = "1.1.1"; 4385 - src = fetchurl { 4386 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-ia32/-/local-functions-proxy-linux-ia32-1.1.1.tgz"; 4387 - sha512 = "Ra0FlXDrmPRaq+rYH3/ttkXSrwk1D5Zx/Na7UPfJZxMY7Qo5iY4bgi/FuzjzWzlp0uuKZOhYOYzYzsIIyrSvmw=="; 4388 - }; 4389 - }; 4390 - "@netlify/local-functions-proxy-linux-ppc64-1.1.1" = { 4391 - name = "_at_netlify_slash_local-functions-proxy-linux-ppc64"; 4392 - packageName = "@netlify/local-functions-proxy-linux-ppc64"; 4393 - version = "1.1.1"; 4394 - src = fetchurl { 4395 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-ppc64/-/local-functions-proxy-linux-ppc64-1.1.1.tgz"; 4396 - sha512 = "oXf1satwqwUUxz7LHS1BxbRqc4FFEKIDFTls04eXiLReFR3sqv9H/QuYNTCCDMuRcCOd92qKyDfATdnxT4HR8w=="; 4397 - }; 4398 - }; 4399 - "@netlify/local-functions-proxy-linux-x64-1.1.1" = { 4400 - name = "_at_netlify_slash_local-functions-proxy-linux-x64"; 4401 - packageName = "@netlify/local-functions-proxy-linux-x64"; 4402 - version = "1.1.1"; 4403 - src = fetchurl { 4404 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-x64/-/local-functions-proxy-linux-x64-1.1.1.tgz"; 4405 - sha512 = "bS3u4JuDg/eC0y4Na3i/29JBOxrdUvsK5JSjHfzUeZEbOcuXYf4KavTpHS5uikdvTgyczoSrvbmQJ5m0FLXfLA=="; 4406 - }; 4407 - }; 4408 - "@netlify/local-functions-proxy-openbsd-x64-1.1.1" = { 4409 - name = "_at_netlify_slash_local-functions-proxy-openbsd-x64"; 4410 - packageName = "@netlify/local-functions-proxy-openbsd-x64"; 4411 - version = "1.1.1"; 4412 - src = fetchurl { 4413 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-openbsd-x64/-/local-functions-proxy-openbsd-x64-1.1.1.tgz"; 4414 - sha512 = "1xLef/kLRNkBTXJ+ZGoRFcwsFxd/B2H3oeJZyXaZ3CN5umd9Mv9wZuAD74NuMt/535yRva8jtAJqvEgl9xMSdA=="; 4415 - }; 4416 - }; 4417 - "@netlify/local-functions-proxy-win32-ia32-1.1.1" = { 4418 - name = "_at_netlify_slash_local-functions-proxy-win32-ia32"; 4419 - packageName = "@netlify/local-functions-proxy-win32-ia32"; 4420 - version = "1.1.1"; 4421 - src = fetchurl { 4422 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-win32-ia32/-/local-functions-proxy-win32-ia32-1.1.1.tgz"; 4423 - sha512 = "4IOMDBxp2f8VbIkhZ85zGNDrZR4ey8d68fCMSOIwitjsnKav35YrCf8UmAh3UR6CNIRJdJL4MW1GYePJ7iJ8uA=="; 4424 - }; 4425 - }; 4426 - "@netlify/local-functions-proxy-win32-x64-1.1.1" = { 4427 - name = "_at_netlify_slash_local-functions-proxy-win32-x64"; 4428 - packageName = "@netlify/local-functions-proxy-win32-x64"; 4429 - version = "1.1.1"; 4430 - src = fetchurl { 4431 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-win32-x64/-/local-functions-proxy-win32-x64-1.1.1.tgz"; 4432 - sha512 = "VCBXBJWBujVxyo5f+3r8ovLc9I7wJqpmgDn3ixs1fvdrER5Ac+SzYwYH4mUug9HI08mzTSAKZErzKeuadSez3w=="; 4433 - }; 4434 - }; 4435 - "@netlify/open-api-2.5.1" = { 4436 - name = "_at_netlify_slash_open-api"; 4437 - packageName = "@netlify/open-api"; 4438 - version = "2.5.1"; 4439 - src = fetchurl { 4440 - url = "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.5.1.tgz"; 4441 - sha512 = "FBBgWU+09Xi4bxzPBtYiWB8p34NcGRvmUM+rxLDGus68U1r0M2+oFF+CIlfVvLMCJ+qJVTk6WV1R3+g4NrhYmg=="; 4442 - }; 4443 - }; 4444 - "@netlify/plugin-edge-handlers-1.11.22" = { 4445 - name = "_at_netlify_slash_plugin-edge-handlers"; 4446 - packageName = "@netlify/plugin-edge-handlers"; 4447 - version = "1.11.22"; 4448 - src = fetchurl { 4449 - url = "https://registry.npmjs.org/@netlify/plugin-edge-handlers/-/plugin-edge-handlers-1.11.22.tgz"; 4450 - sha512 = "tFb7J6+YEtZP0OYpS/b9Rjp1lm02XfhAQR6KRHAaeRlHp98/zgd0hhubfwXUCppP2BLfn+imkeVS0FnANh5B3g=="; 4451 - }; 4452 - }; 4453 - "@netlify/plugins-list-4.0.1" = { 4454 - name = "_at_netlify_slash_plugins-list"; 4455 - packageName = "@netlify/plugins-list"; 4456 - version = "4.0.1"; 4457 - src = fetchurl { 4458 - url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-4.0.1.tgz"; 4459 - sha512 = "5SNHrs6dfW8YlyTmJvLGTIZsdxtADuYRMn8mlRapBLLDazd99yDokzMfC8oigACyu553ghn/dtetPHHxsdGuXQ=="; 4460 - }; 4461 - }; 4462 - "@netlify/routing-local-proxy-0.34.1" = { 4463 - name = "_at_netlify_slash_routing-local-proxy"; 4464 - packageName = "@netlify/routing-local-proxy"; 4465 - version = "0.34.1"; 4466 - src = fetchurl { 4467 - url = "https://registry.npmjs.org/@netlify/routing-local-proxy/-/routing-local-proxy-0.34.1.tgz"; 4468 - sha512 = "FuzgxdxC7wJXUT08qPTtHiKwjFDHh3ViCDZwxwjm8CjOKYz+9NjhmIffkbEFl6R+uH6IV/3R6gVDL5Fb5hwRbQ=="; 4469 - }; 4470 - }; 4471 - "@netlify/run-utils-2.0.1" = { 4472 - name = "_at_netlify_slash_run-utils"; 4473 - packageName = "@netlify/run-utils"; 4474 - version = "2.0.1"; 4475 - src = fetchurl { 4476 - url = "https://registry.npmjs.org/@netlify/run-utils/-/run-utils-2.0.1.tgz"; 4477 - sha512 = "F1YcF2kje0Ttj+t5Cn5d6ojGQcKj4i/GMWgQuoZGVjQ31ToNcDXIbBm5SBKIkMMpNejtR1wF+1a0Q+aBPWiZVQ=="; 4478 - }; 4479 - }; 4480 - "@netlify/zip-it-and-ship-it-4.25.0" = { 4481 - name = "_at_netlify_slash_zip-it-and-ship-it"; 4482 - packageName = "@netlify/zip-it-and-ship-it"; 4483 - version = "4.25.0"; 4484 - src = fetchurl { 4485 - url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.25.0.tgz"; 4486 - sha512 = "4KhFSO7QWyNXVlQzFVCAmTEgdOnPnQGbkaX+Wo/5NS1boH6IvbKAzZKFqrP8fE2Vl4wIWrt9srPpQA3HpyO3NQ=="; 4487 - }; 4488 - }; 4489 - "@node-red/editor-api-2.0.6" = { 4183 + "@node-red/editor-api-2.1.3" = { 4490 4184 name = "_at_node-red_slash_editor-api"; 4491 4185 packageName = "@node-red/editor-api"; 4492 - version = "2.0.6"; 4186 + version = "2.1.3"; 4493 4187 src = fetchurl { 4494 - url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.0.6.tgz"; 4495 - sha512 = "jSC00TetcU1sQHR5SNo+R8IxEKbJWmBAeCcHd0EWDMb4ikcN1wwteQfYPOr2ID8HnsSEIBlpN8K3Hrezo3+KcQ=="; 4188 + url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.1.3.tgz"; 4189 + sha512 = "57r4f5/8Sz8Q7HEjlNWgzaMIavoWHas3boJhXpU0yLL1LBytzwZZh1jBCdYitROT37wruwPGH8XKR3s2FvBEjQ=="; 4496 4190 }; 4497 4191 }; 4498 - "@node-red/editor-client-2.0.6" = { 4192 + "@node-red/editor-client-2.1.3" = { 4499 4193 name = "_at_node-red_slash_editor-client"; 4500 4194 packageName = "@node-red/editor-client"; 4501 - version = "2.0.6"; 4195 + version = "2.1.3"; 4502 4196 src = fetchurl { 4503 - url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.0.6.tgz"; 4504 - sha512 = "uhQJcKGX7Ypa1eaebrWM6rneEkn4FniEo3zZqTzwD+VZf4rAwNeE0ZV7Z85DL4xmmPKfUmuA4Fte7TYcjqk80g=="; 4197 + url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.1.3.tgz"; 4198 + sha512 = "omSk73AKgVTrSsEphEOFQtl4SBtATWPihGJJ4UabPkeY+OBcHRfgjroMHERZ80pXPmjwVLfC0GUN0OYUs08TYA=="; 4505 4199 }; 4506 4200 }; 4507 - "@node-red/nodes-2.0.6" = { 4201 + "@node-red/nodes-2.1.3" = { 4508 4202 name = "_at_node-red_slash_nodes"; 4509 4203 packageName = "@node-red/nodes"; 4510 - version = "2.0.6"; 4204 + version = "2.1.3"; 4511 4205 src = fetchurl { 4512 - url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.0.6.tgz"; 4513 - sha512 = "KBUEUdJ89zRb1v1x+ZGrAv3MWfDJx+b+ClH83h1Ibqn2haJ+jfTBE1kZUEJaNP0Dm0CC/n4Ll9lrWnEoSSI8aQ=="; 4206 + url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.1.3.tgz"; 4207 + sha512 = "J2GOKY/4AoUK9BGBXEuPjhJQLGaaYbYtaH0GKQXfD6ROBiPQzbSOYIEWq8ZMXLdUXVcyyFTVBSIsy+2+RCdqEg=="; 4514 4208 }; 4515 4209 }; 4516 - "@node-red/registry-2.0.6" = { 4210 + "@node-red/registry-2.1.3" = { 4517 4211 name = "_at_node-red_slash_registry"; 4518 4212 packageName = "@node-red/registry"; 4519 - version = "2.0.6"; 4213 + version = "2.1.3"; 4520 4214 src = fetchurl { 4521 - url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.0.6.tgz"; 4522 - sha512 = "EhxxmUnCpYXztMlalVYkzaIi5eRGMM1rJvdFgQBIx5WWUkZ1h40a4KgnbbJ/VUthKaQLqbq62P0SX5ZU8RCtww=="; 4215 + url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.1.3.tgz"; 4216 + sha512 = "78FoG2AsMHiMYdV1fCMvAkwTKkdF+rP8mv5OfNa+iPhTU66n24AtnwFeWOdasc2ZIP4zd7Tbxr3pcT/+m0kFIw=="; 4523 4217 }; 4524 4218 }; 4525 - "@node-red/runtime-2.0.6" = { 4219 + "@node-red/runtime-2.1.3" = { 4526 4220 name = "_at_node-red_slash_runtime"; 4527 4221 packageName = "@node-red/runtime"; 4528 - version = "2.0.6"; 4222 + version = "2.1.3"; 4529 4223 src = fetchurl { 4530 - url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.0.6.tgz"; 4531 - sha512 = "AdEYjEKl4wVFjV2Xhx2BBJCDVZVMer/9PmSaUQJVFjYKkn7ouazGjtHPxowcSeAYF0WpRfb66ceRe7ZHaRbqXw=="; 4224 + url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.1.3.tgz"; 4225 + sha512 = "+Vu7a14CcODQh/fQyYP7sanPc7CFWOK4JI2l9K0n4Oy3d/4TOQ12k3ync0cFpgmJ1I/foFIN/oIg7T2ZVjQvDA=="; 4532 4226 }; 4533 4227 }; 4534 - "@node-red/util-2.0.6" = { 4228 + "@node-red/util-2.1.3" = { 4535 4229 name = "_at_node-red_slash_util"; 4536 4230 packageName = "@node-red/util"; 4537 - version = "2.0.6"; 4231 + version = "2.1.3"; 4538 4232 src = fetchurl { 4539 - url = "https://registry.npmjs.org/@node-red/util/-/util-2.0.6.tgz"; 4540 - sha512 = "ZyUIAyZwtxdBOFiFRIBQZieP+ahviAGfXZowA9KOWTFp3BRZIq3OLWldlS/tQk29PaqZmt8MK94/DSqEsZNN0A=="; 4233 + url = "https://registry.npmjs.org/@node-red/util/-/util-2.1.3.tgz"; 4234 + sha512 = "FMqNwd7Lac3jm83uSQurR3N7E62jY6QDvOP2pQ4LCCtGYRKRFwukfzG9mzumioKS740vN8If8EBTIPQgRTSZ6A=="; 4541 4235 }; 4542 4236 }; 4543 4237 "@nodelib/fs.scandir-2.1.5" = { ··· 4693 4387 sha512 = "e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g=="; 4694 4388 }; 4695 4389 }; 4696 - "@oclif/color-0.1.2" = { 4697 - name = "_at_oclif_slash_color"; 4698 - packageName = "@oclif/color"; 4699 - version = "0.1.2"; 4700 - src = fetchurl { 4701 - url = "https://registry.npmjs.org/@oclif/color/-/color-0.1.2.tgz"; 4702 - sha512 = "M9o+DOrb8l603qvgz1FogJBUGLqcMFL1aFg2ZEL0FbXJofiNTLOWIeB4faeZTLwE6dt0xH9GpCVpzksMMzGbmA=="; 4703 - }; 4704 - }; 4705 4390 "@oclif/command-1.8.0" = { 4706 4391 name = "_at_oclif_slash_command"; 4707 4392 packageName = "@oclif/command"; ··· 4781 4466 src = fetchurl { 4782 4467 url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.3.0.tgz"; 4783 4468 sha512 = "+eYQZXsWnc54IM5Hv2+IoKBTKUSDt+vRbwf5I8w+DaXvzOmx0VzAbLgL1ciJzYh66CknjWMUJf/hxoc8ykJHaQ=="; 4784 - }; 4785 - }; 4786 - "@oclif/plugin-not-found-1.2.4" = { 4787 - name = "_at_oclif_slash_plugin-not-found"; 4788 - packageName = "@oclif/plugin-not-found"; 4789 - version = "1.2.4"; 4790 - src = fetchurl { 4791 - url = "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-1.2.4.tgz"; 4792 - sha512 = "G440PCuMi/OT8b71aWkR+kCWikngGtyRjOR24sPMDbpUFV4+B3r51fz1fcqeUiiEOYqUpr0Uy/sneUe1O/NfBg=="; 4793 - }; 4794 - }; 4795 - "@oclif/plugin-plugins-1.10.1" = { 4796 - name = "_at_oclif_slash_plugin-plugins"; 4797 - packageName = "@oclif/plugin-plugins"; 4798 - version = "1.10.1"; 4799 - src = fetchurl { 4800 - url = "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-1.10.1.tgz"; 4801 - sha512 = "JDUA3NtOa4OlH8ofUBXQMTFlpEkSmeE9BxoQTD6+BeUvMgqFuZThENucRvCD00sywhCmDngmIYN59gKcXpGJeQ=="; 4802 4469 }; 4803 4470 }; 4804 4471 "@oclif/screen-1.0.4" = { ··· 4981 4648 sha512 = "a/szuMQV0Quy0/M7kKdglcbRSoorleyyOwbTNNJ32O+RBN766wbQlMTvdimImTmwYWGr+NJOni1EcC242WlRcA=="; 4982 4649 }; 4983 4650 }; 4984 - "@ot-builder/bin-composite-types-1.2.0" = { 4651 + "@ot-builder/bin-composite-types-1.3.0" = { 4985 4652 name = "_at_ot-builder_slash_bin-composite-types"; 4986 4653 packageName = "@ot-builder/bin-composite-types"; 4987 - version = "1.2.0"; 4654 + version = "1.3.0"; 4988 4655 src = fetchurl { 4989 - url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.2.0.tgz"; 4990 - sha512 = "AN2d2sVtQLq/2vrfzqIXhgOfmrXn/LeLIwqGkhGIAaqdFJt1shUAP0SMMjoNyA+27uQcBi6Cu9WqSVgUVvbNmw=="; 4656 + url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.3.0.tgz"; 4657 + sha512 = "GWjLQGjwCzWyFjeTRsY4nrw7odSA23j/jDB6rTYiFPd2XQ+TDTtsYGAWBWP30llE9Et07bjBHQAYfpJmRcnNYg=="; 4991 4658 }; 4992 4659 }; 4993 - "@ot-builder/bin-util-1.2.0" = { 4660 + "@ot-builder/bin-util-1.3.0" = { 4994 4661 name = "_at_ot-builder_slash_bin-util"; 4995 4662 packageName = "@ot-builder/bin-util"; 4996 - version = "1.2.0"; 4663 + version = "1.3.0"; 4997 4664 src = fetchurl { 4998 - url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.2.0.tgz"; 4999 - sha512 = "0WNGJALiIKSMP54FtInc+WXPn0QyfHrQZfgpjUNb1EQjfk51uG0H1044mYqOAXginhxcm8yxH6m1/I4L7nmObQ=="; 4665 + url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.3.0.tgz"; 4666 + sha512 = "y4kBgfAZfjeOU8rxnCvnlpjoVdydzjvo+PCnY+KaQ5h+naSDUHfvHdQfg6TALW2iyK2VbXYT013SAU4EK/nwng=="; 5000 4667 }; 5001 4668 }; 5002 - "@ot-builder/cli-help-shower-1.2.0" = { 4669 + "@ot-builder/cli-help-shower-1.3.0" = { 5003 4670 name = "_at_ot-builder_slash_cli-help-shower"; 5004 4671 packageName = "@ot-builder/cli-help-shower"; 5005 - version = "1.2.0"; 4672 + version = "1.3.0"; 5006 4673 src = fetchurl { 5007 - url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.2.0.tgz"; 5008 - sha512 = "oXLxLsX0NQnXE86T6WlStGdWLiBq0MirxZLR11mtBtU9FqWTIHxRQwaVA9UzvuwMRiwYC5ZL6MkYfdUBf1043w=="; 4674 + url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.3.0.tgz"; 4675 + sha512 = "t67lnwK1muzmcsj9ytG9xvYsRhnnomfJU8VPh4Mm9N1bjUAmdfkV/PWKrHtXebCpm2bDc+5L/D+fgA0EZ5qgtg=="; 5009 4676 }; 5010 4677 }; 5011 - "@ot-builder/cli-proc-1.2.0" = { 4678 + "@ot-builder/cli-proc-1.3.0" = { 5012 4679 name = "_at_ot-builder_slash_cli-proc"; 5013 4680 packageName = "@ot-builder/cli-proc"; 5014 - version = "1.2.0"; 4681 + version = "1.3.0"; 5015 4682 src = fetchurl { 5016 - url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.2.0.tgz"; 5017 - sha512 = "HeWBcJqRlrR8BT4GxV6BSeLajdr0J6sgKi9rU7eS1OQU06I85/DyQZMtMJecLYgaQ1tPFapxV3XH454/JGHnMQ=="; 4683 + url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.3.0.tgz"; 4684 + sha512 = "205Vn44R2qQrloAuA4YvrdYMIBxxk/PHRFQICnzP+fyOI01B3yPFUQpKfCNX6l+BzbEfDXJNN6Z/d6WqQuGrJw=="; 5018 4685 }; 5019 4686 }; 5020 - "@ot-builder/cli-shared-1.2.0" = { 4687 + "@ot-builder/cli-shared-1.3.0" = { 5021 4688 name = "_at_ot-builder_slash_cli-shared"; 5022 4689 packageName = "@ot-builder/cli-shared"; 5023 - version = "1.2.0"; 4690 + version = "1.3.0"; 5024 4691 src = fetchurl { 5025 - url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.2.0.tgz"; 5026 - sha512 = "0qtfGBnID4RIg7jGfc0Cs4VhB9w6FhAvIzidUTWr4xdLubI4NqiKdxR44jfakP1SX4jMOyAG5ppNthUjpW8Xlg=="; 4692 + url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.3.0.tgz"; 4693 + sha512 = "pW26ckQ2KngS56uyNjQ9rUYUP0shKzFXu/8JqdlmgxSXbs5M9RTWEHKUIHN/QkDCj7hebmKkDxhqlDFJJWFI+A=="; 5027 4694 }; 5028 4695 }; 5029 - "@ot-builder/common-impl-1.2.0" = { 4696 + "@ot-builder/common-impl-1.3.0" = { 5030 4697 name = "_at_ot-builder_slash_common-impl"; 5031 4698 packageName = "@ot-builder/common-impl"; 5032 - version = "1.2.0"; 4699 + version = "1.3.0"; 5033 4700 src = fetchurl { 5034 - url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.2.0.tgz"; 5035 - sha512 = "vOGP77F2lFx+ssf6uvZFh7E4TAiXeTPkU8JyfxZYAfnVMuKVcj0yZdgUs2tr5Akg/oxfbSo3MVWCz4hHALWXHQ=="; 4701 + url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.3.0.tgz"; 4702 + sha512 = "Io96P5AyVF2T44buNevoHDdu0zhGr/buFyKaPBYZ37RdUtTF8B5f7k74I07LWqi9wa0npE3qXQ9GXz3aMrO0IA=="; 5036 4703 }; 5037 4704 }; 5038 - "@ot-builder/errors-1.2.0" = { 4705 + "@ot-builder/errors-1.3.0" = { 5039 4706 name = "_at_ot-builder_slash_errors"; 5040 4707 packageName = "@ot-builder/errors"; 5041 - version = "1.2.0"; 4708 + version = "1.3.0"; 5042 4709 src = fetchurl { 5043 - url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.2.0.tgz"; 5044 - sha512 = "bMVw+leFX8OhcAy72K5Eyn35LVz5TqTeUPzyZC8VXqf4xr+6o2PRPdmdIkDlxrB9HG0ZX3OQu4urT4m6eonNOw=="; 4710 + url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.3.0.tgz"; 4711 + sha512 = "pUtbx4ut02Qpy+W3uLblLvZQDH+kZw+i0/IjKyWxSRuzhPrqvV0VjxOoiQFrcDltHg5m2aUsEZFwepiqP7CkJA=="; 5045 4712 }; 5046 4713 }; 5047 - "@ot-builder/io-bin-cff-1.2.0" = { 4714 + "@ot-builder/io-bin-cff-1.3.0" = { 5048 4715 name = "_at_ot-builder_slash_io-bin-cff"; 5049 4716 packageName = "@ot-builder/io-bin-cff"; 5050 - version = "1.2.0"; 4717 + version = "1.3.0"; 5051 4718 src = fetchurl { 5052 - url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.2.0.tgz"; 5053 - sha512 = "O9Snj8A7W/UI6jxcZ4cvcGhLv6Zia82BQVAZwjqaGagsyadaoVgBhd9EgHR4Pa0FFEdpG4JqC/JaP4c2Rj+I6A=="; 4719 + url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.3.0.tgz"; 4720 + sha512 = "DvZYigOGZJLnVdO6qJTgCUiInBf1BRspWACWwVNGPCmdbgW5TUR4IQtibV374y8sJp/4AHxORqUefFn6PhG1/A=="; 5054 4721 }; 5055 4722 }; 5056 - "@ot-builder/io-bin-encoding-1.2.0" = { 4723 + "@ot-builder/io-bin-encoding-1.3.0" = { 5057 4724 name = "_at_ot-builder_slash_io-bin-encoding"; 5058 4725 packageName = "@ot-builder/io-bin-encoding"; 5059 - version = "1.2.0"; 4726 + version = "1.3.0"; 5060 4727 src = fetchurl { 5061 - url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.2.0.tgz"; 5062 - sha512 = "WjjghUL45GEB+23u0fgmaoCbapT7x7GzbkjcWbWFzshFOIjDyR+IFP+gicsgP5C3BQr4RGV8t/H/QfdjvjxnZA=="; 4728 + url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.3.0.tgz"; 4729 + sha512 = "0xbnGCtCU7kW20bMA01e1fm0/f4mXsiORHvGd9MtYXxfVfOSqa7s/KFaG7GcjzqNmMAAXHjtrRy0sh8g7bo5CQ=="; 5063 4730 }; 5064 4731 }; 5065 - "@ot-builder/io-bin-ext-private-1.2.0" = { 4732 + "@ot-builder/io-bin-ext-private-1.3.0" = { 5066 4733 name = "_at_ot-builder_slash_io-bin-ext-private"; 5067 4734 packageName = "@ot-builder/io-bin-ext-private"; 5068 - version = "1.2.0"; 4735 + version = "1.3.0"; 5069 4736 src = fetchurl { 5070 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.2.0.tgz"; 5071 - sha512 = "xZBEeXf+2DEMoBnloVv7GQ603IbeCNV5kcyLf6VtjyHpDF0Gwh4wtVM6eTR3vLjfy56BEf50Gp4xjMaTR98eyw=="; 4737 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.3.0.tgz"; 4738 + sha512 = "CQHIr0d4fczqvDPJRJkl5tnjKXmj7iktcxBnZTiF8plbFtLjmswv8EZnwyP04BhT3ZgpVZNDANBFb13mO3Sd4g=="; 5072 4739 }; 5073 4740 }; 5074 - "@ot-builder/io-bin-font-1.2.0" = { 4741 + "@ot-builder/io-bin-font-1.3.0" = { 5075 4742 name = "_at_ot-builder_slash_io-bin-font"; 5076 4743 packageName = "@ot-builder/io-bin-font"; 5077 - version = "1.2.0"; 4744 + version = "1.3.0"; 5078 4745 src = fetchurl { 5079 - url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.2.0.tgz"; 5080 - sha512 = "R09LJQpAY33wJroy5dFUjggncXFC9hwTcE3rriIT0HjwAOQUd7NtRMtts7nAwTpPimGMhl4dDl9DWw9OPfsgXw=="; 4746 + url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.3.0.tgz"; 4747 + sha512 = "H8g2kmk0rNTOKQSXbQraOPUxt21Cxjs2uDL+oioth6YpxTOTlL67rOUcx1k32VyaVv/9buLGe0AD/S6qxzrl4g=="; 5081 4748 }; 5082 4749 }; 5083 - "@ot-builder/io-bin-glyph-store-1.2.0" = { 4750 + "@ot-builder/io-bin-glyph-store-1.3.0" = { 5084 4751 name = "_at_ot-builder_slash_io-bin-glyph-store"; 5085 4752 packageName = "@ot-builder/io-bin-glyph-store"; 5086 - version = "1.2.0"; 4753 + version = "1.3.0"; 5087 4754 src = fetchurl { 5088 - url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.2.0.tgz"; 5089 - sha512 = "pxJj4OtcRaMYvwSWAJEYvVyrug3S7XuRlSBvBLcl0lQ7jCADQBnQnSXGkUBRDWsIjM/t/EFBvCKeCfbS04HHFQ=="; 4755 + url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.3.0.tgz"; 4756 + sha512 = "ni127weqUSy2f20V5d21XMNBAavW1ioOwIWRVSVrHQnO4YA+X+SxWy6b48MLa1BlvfQ1vJV0NIvBZ+2jD0PQig=="; 5090 4757 }; 5091 4758 }; 5092 - "@ot-builder/io-bin-layout-1.2.0" = { 4759 + "@ot-builder/io-bin-layout-1.3.0" = { 5093 4760 name = "_at_ot-builder_slash_io-bin-layout"; 5094 4761 packageName = "@ot-builder/io-bin-layout"; 5095 - version = "1.2.0"; 4762 + version = "1.3.0"; 5096 4763 src = fetchurl { 5097 - url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.2.0.tgz"; 5098 - sha512 = "0HkF8xGSHozP8uof5GrgHtif5ahkHKsDKFz0O8KTRQEEEaZmN/4K76E18msa72EC/wDGFRdfSvoiapaQopUZGg=="; 4764 + url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.3.0.tgz"; 4765 + sha512 = "lrBlkmaOretCG1zQarLNW9Us8tZ2L1RI2DPYW5oidRzbGRV7NxhScgUGCbPi+AWYCX+2paCiiy/6XLARsq2XCA=="; 5099 4766 }; 5100 4767 }; 5101 - "@ot-builder/io-bin-metadata-1.2.0" = { 4768 + "@ot-builder/io-bin-metadata-1.3.0" = { 5102 4769 name = "_at_ot-builder_slash_io-bin-metadata"; 5103 4770 packageName = "@ot-builder/io-bin-metadata"; 5104 - version = "1.2.0"; 4771 + version = "1.3.0"; 5105 4772 src = fetchurl { 5106 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.2.0.tgz"; 5107 - sha512 = "dPb9w9IxjEv0McQN3E8zufxml8YyGV1/mSiT6x2yAhYQpuoef/cHfF1HJHpYhnqyzI2vlM5JP2UUr7XyuDvmsg=="; 4773 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.3.0.tgz"; 4774 + sha512 = "KLQdLISXLB5RzVZJYS7Qp9B3IQkGkjAXvgLD+A8ekfuG+0oc/D2ss9QAeCoikOTJ/g86WODZpIRdP8pAgTj9LA=="; 5108 4775 }; 5109 4776 }; 5110 - "@ot-builder/io-bin-metric-1.2.0" = { 4777 + "@ot-builder/io-bin-metric-1.3.0" = { 5111 4778 name = "_at_ot-builder_slash_io-bin-metric"; 5112 4779 packageName = "@ot-builder/io-bin-metric"; 5113 - version = "1.2.0"; 4780 + version = "1.3.0"; 5114 4781 src = fetchurl { 5115 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.2.0.tgz"; 5116 - sha512 = "SP5Rwv7yyptMvRErMPQLolt+96RSBFPY4ctsUvyolG61Jrz9Se6/FflCcBnSK79Xy1+9XepMMGaWvxTl57jwYQ=="; 4782 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.3.0.tgz"; 4783 + sha512 = "/t85ePUtsud1eUAwNbT5rEaB3vnOseTgTxmYTkFu/WNPJYhSLAtPi4K3SP6vLwALlNlVRMXiNIcaETDsIaNt3g=="; 5117 4784 }; 5118 4785 }; 5119 - "@ot-builder/io-bin-name-1.2.0" = { 4786 + "@ot-builder/io-bin-name-1.3.0" = { 5120 4787 name = "_at_ot-builder_slash_io-bin-name"; 5121 4788 packageName = "@ot-builder/io-bin-name"; 5122 - version = "1.2.0"; 4789 + version = "1.3.0"; 5123 4790 src = fetchurl { 5124 - url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.2.0.tgz"; 5125 - sha512 = "zMsPafrJC3fOEc/HmIBDB9ULn++QhcO5nXS7UTynW6t9ddgllaCGfBwqNdrCLYmBP1Sy0HTTL7kda/R5mfZVhg=="; 4791 + url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.3.0.tgz"; 4792 + sha512 = "04lTnQa1Eg6maFyP0WuUTkSLzU4QdcAvh7PYyGDZSdIyg/RPl1g7ymzOyi7P3DGdkH4FNORyS2DJ778v9J5OgA=="; 5126 4793 }; 5127 4794 }; 5128 - "@ot-builder/io-bin-sfnt-1.2.0" = { 4795 + "@ot-builder/io-bin-sfnt-1.3.0" = { 5129 4796 name = "_at_ot-builder_slash_io-bin-sfnt"; 5130 4797 packageName = "@ot-builder/io-bin-sfnt"; 5131 - version = "1.2.0"; 4798 + version = "1.3.0"; 5132 4799 src = fetchurl { 5133 - url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.2.0.tgz"; 5134 - sha512 = "g0E0ltjDvBnsog7gIqMPEmlRmgs7tbIurYbDd1QmorGNmmcxaCQxbyKSiZF6tcHzDmSC9vLprdymbFKzzudFPQ=="; 4800 + url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.3.0.tgz"; 4801 + sha512 = "9a/VKD5JlRGEDsM1I0boismi27TrSl8sHJXoPoBh3EFtatLRbbgcYp4fs2UJYp/pvpIT4k0Ti0gp5e4Q7z08eA=="; 5135 4802 }; 5136 4803 }; 5137 - "@ot-builder/io-bin-ttf-1.2.0" = { 4804 + "@ot-builder/io-bin-ttf-1.3.0" = { 5138 4805 name = "_at_ot-builder_slash_io-bin-ttf"; 5139 4806 packageName = "@ot-builder/io-bin-ttf"; 5140 - version = "1.2.0"; 4807 + version = "1.3.0"; 5141 4808 src = fetchurl { 5142 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.2.0.tgz"; 5143 - sha512 = "VyZgZbycG8fwXweQ8hMBQTBHyMGg6J94lgg3eWmBJnxRWiI/odBtvQJZvFlgkgJCALOvWlMFQkftmFVn8lWpDw=="; 4809 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.3.0.tgz"; 4810 + sha512 = "RLvDBBTVkInXtC9hpl8oi30DudL4oy41FUEMOoCYyWpw8tvcSOpEyqHtf46X3ehC8IdPQIsGMRRchyZFOUclZw=="; 5144 4811 }; 5145 4812 }; 5146 - "@ot-builder/io-bin-vtt-private-1.2.0" = { 4813 + "@ot-builder/io-bin-vtt-private-1.3.0" = { 5147 4814 name = "_at_ot-builder_slash_io-bin-vtt-private"; 5148 4815 packageName = "@ot-builder/io-bin-vtt-private"; 5149 - version = "1.2.0"; 4816 + version = "1.3.0"; 5150 4817 src = fetchurl { 5151 - url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.2.0.tgz"; 5152 - sha512 = "W7PXVXigsCtAlxtzTlz1fd1CCc5s2rhJfCeOcJYMpH4BfYekE1e/0gM/eAR3QVP9k9a6L/tKICsJD+AHm4NmNw=="; 4818 + url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.3.0.tgz"; 4819 + sha512 = "ZLUmXlwX3Oc83QPUUCLMlnnhyEMmN+iscyagA1fWGYyPqjagRpTAet5PVSpSkdIqosT3QZw2eZBxzrXUHB4eqw=="; 5153 4820 }; 5154 4821 }; 5155 - "@ot-builder/ot-1.2.0" = { 4822 + "@ot-builder/ot-1.3.0" = { 5156 4823 name = "_at_ot-builder_slash_ot"; 5157 4824 packageName = "@ot-builder/ot"; 5158 - version = "1.2.0"; 4825 + version = "1.3.0"; 5159 4826 src = fetchurl { 5160 - url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.2.0.tgz"; 5161 - sha512 = "0lnFEXwOXy+HvzAHTnOhPiY04c0sgLkQ3z6UbtScapP7ppmowyJsoMCSnMzuuNNCxgPu+9E1/r6pdxY4SZV4fw=="; 4827 + url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.3.0.tgz"; 4828 + sha512 = "8tnizbMO9o905/SLC1eEr8VQBKssGDDPiSSiUCA8f00gzLkrrTjpV4zgv9LSEY5YL260e0yEbg4IlZcJwtGBJA=="; 5162 4829 }; 5163 4830 }; 5164 - "@ot-builder/ot-encoding-1.2.0" = { 4831 + "@ot-builder/ot-encoding-1.3.0" = { 5165 4832 name = "_at_ot-builder_slash_ot-encoding"; 5166 4833 packageName = "@ot-builder/ot-encoding"; 5167 - version = "1.2.0"; 4834 + version = "1.3.0"; 5168 4835 src = fetchurl { 5169 - url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.2.0.tgz"; 5170 - sha512 = "HE8UEBbFR2yj2YK4tmFPyC7I2JPCcxgQStS6Z6McwfXcVCY+QLIubhUO9vpDXps52jc+/OxGjuMtcksGOiTEIw=="; 4836 + url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.3.0.tgz"; 4837 + sha512 = "rLndCSJj11TsOvlPumcwfJKqJCyx4FEV+rn6rjKGXCpSeeSrNWhLIyCBZThXwJwCNY2OdqZtl8My3/xefS3H7g=="; 5171 4838 }; 5172 4839 }; 5173 - "@ot-builder/ot-ext-private-1.2.0" = { 4840 + "@ot-builder/ot-ext-private-1.3.0" = { 5174 4841 name = "_at_ot-builder_slash_ot-ext-private"; 5175 4842 packageName = "@ot-builder/ot-ext-private"; 5176 - version = "1.2.0"; 4843 + version = "1.3.0"; 5177 4844 src = fetchurl { 5178 - url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.2.0.tgz"; 5179 - sha512 = "Ha5VyFKLTj5wletYzbKXuieRr0w9QvjkpNzHdCuh7D1SVQfhuqF6s2F7adIVJLoaHx3zrDISO6LeO2wO8gqqZA=="; 4845 + url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.3.0.tgz"; 4846 + sha512 = "Tiie59wQvM8ZRtTrprjuHrrsQ2YBI2mTMFzzro6L+q4glMqzFi2nkGrBapd6Z9dx8x7TI8NGiEjlbjefEhx0RQ=="; 5180 4847 }; 5181 4848 }; 5182 - "@ot-builder/ot-glyphs-1.2.0" = { 4849 + "@ot-builder/ot-glyphs-1.3.0" = { 5183 4850 name = "_at_ot-builder_slash_ot-glyphs"; 5184 4851 packageName = "@ot-builder/ot-glyphs"; 5185 - version = "1.2.0"; 4852 + version = "1.3.0"; 5186 4853 src = fetchurl { 5187 - url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.2.0.tgz"; 5188 - sha512 = "+XbeTewi1eNrKXEuyBxfhiYFmYGXdRhHefv+gmUrwV8YPHtMiMsjtTp0WB+1rRySJ6IYTI38su2qunK5pmHmeg=="; 4854 + url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.3.0.tgz"; 4855 + sha512 = "NXXcqydqoZ2+9fvam/5ybWdWAXL6JIyCQQluMuRMYvtT0GrZE/D7q2C/h0wiDI2PWljMS1wRl855A8fryHIOfg=="; 5189 4856 }; 5190 4857 }; 5191 - "@ot-builder/ot-layout-1.2.0" = { 4858 + "@ot-builder/ot-layout-1.3.0" = { 5192 4859 name = "_at_ot-builder_slash_ot-layout"; 5193 4860 packageName = "@ot-builder/ot-layout"; 5194 - version = "1.2.0"; 4861 + version = "1.3.0"; 5195 4862 src = fetchurl { 5196 - url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.2.0.tgz"; 5197 - sha512 = "VjDs3UPfUEKBLxpVekQMZboLUXxZ2+uG4mZD9EtE/fD6r7jrm3jf7wAT8eGbLGbEW0iH+U0Ta1dQWm2Sc4Q9TA=="; 4863 + url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.3.0.tgz"; 4864 + sha512 = "Cifx79+3GjtFouzwL6IlEMMDIk5n2KmSNeNi2ZSy9mIpHmu6MU62UTQZGs2WmTIuLcRv2CQuQnN/kLlNHt9d4A=="; 5198 4865 }; 5199 4866 }; 5200 - "@ot-builder/ot-metadata-1.2.0" = { 4867 + "@ot-builder/ot-metadata-1.3.0" = { 5201 4868 name = "_at_ot-builder_slash_ot-metadata"; 5202 4869 packageName = "@ot-builder/ot-metadata"; 5203 - version = "1.2.0"; 4870 + version = "1.3.0"; 5204 4871 src = fetchurl { 5205 - url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.2.0.tgz"; 5206 - sha512 = "xFd9MKcgKIwE7WlbgJPhxT/8urRuLTb0PfcxLgvwBB8LD7MSS13ji93ZNqDBwk0TfKrOUgh+ZW53fH4/lOGf7g=="; 4872 + url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.3.0.tgz"; 4873 + sha512 = "Qxb+vKKKmlnlIujvp/0ag1P4zqW3lFZ2D/WXbUJWunf2vQMLAkcPWI7qJy7ZNHDIcvT0Nva/JuXpbuKiQWarwg=="; 5207 4874 }; 5208 4875 }; 5209 - "@ot-builder/ot-name-1.2.0" = { 4876 + "@ot-builder/ot-name-1.3.0" = { 5210 4877 name = "_at_ot-builder_slash_ot-name"; 5211 4878 packageName = "@ot-builder/ot-name"; 5212 - version = "1.2.0"; 4879 + version = "1.3.0"; 5213 4880 src = fetchurl { 5214 - url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.2.0.tgz"; 5215 - sha512 = "vVO6uKDiI9mEOEcpvHxDriFiK4CcdMWMghE4BOgJ8BBq97IydJ5KpdbMiJnYSmOed+FMXHkUevJ46yBHpvmPEg=="; 4881 + url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.3.0.tgz"; 4882 + sha512 = "EKLpWujBo5Gg8SM6ENzXmsezGSMAyKRTBucdYwM8Dkt41q1rnTJiZKkF7clC2uBO2jCeTIxRlan9yergdaPWzg=="; 5216 4883 }; 5217 4884 }; 5218 - "@ot-builder/ot-sfnt-1.2.0" = { 4885 + "@ot-builder/ot-sfnt-1.3.0" = { 5219 4886 name = "_at_ot-builder_slash_ot-sfnt"; 5220 4887 packageName = "@ot-builder/ot-sfnt"; 5221 - version = "1.2.0"; 4888 + version = "1.3.0"; 5222 4889 src = fetchurl { 5223 - url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.2.0.tgz"; 5224 - sha512 = "An8mfyqo6QyHhnIE4n3TiWo8Y2hHPhk+ahQWEW4Ydw475WXAye/l5XhpC9/fORWjlniL55ouTfvM31VBEimzow=="; 4890 + url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.3.0.tgz"; 4891 + sha512 = "8ZQUlp/ox5OKrpCgueTfplag2bw4GQ9qqrsC/hGxXwFzcJxS/o1OIwfpkV/Rx7A4Edx4jn/Ts8Y/C67AGYPlpQ=="; 5225 4892 }; 5226 4893 }; 5227 - "@ot-builder/ot-standard-glyph-namer-1.2.0" = { 4894 + "@ot-builder/ot-standard-glyph-namer-1.3.0" = { 5228 4895 name = "_at_ot-builder_slash_ot-standard-glyph-namer"; 5229 4896 packageName = "@ot-builder/ot-standard-glyph-namer"; 5230 - version = "1.2.0"; 4897 + version = "1.3.0"; 5231 4898 src = fetchurl { 5232 - url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.2.0.tgz"; 5233 - sha512 = "1kkw1qdVJBuWegIjlGK/ZLWCoaZFPP+PhVowya4XTb0qP/EqgthZaP2uQ6+N5BMyVXn8XnaCyzjtBFZRspY37g=="; 4899 + url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.3.0.tgz"; 4900 + sha512 = "tKYXVcpaGTZSGypiqnYIZASzDrQhh6AVmu7fN1AUfGYmI8AMnPVC4osdksRpCTmi4HcgfMp4osichTGSJVpCWw=="; 5234 4901 }; 5235 4902 }; 5236 - "@ot-builder/ot-vtt-private-1.2.0" = { 4903 + "@ot-builder/ot-vtt-private-1.3.0" = { 5237 4904 name = "_at_ot-builder_slash_ot-vtt-private"; 5238 4905 packageName = "@ot-builder/ot-vtt-private"; 5239 - version = "1.2.0"; 4906 + version = "1.3.0"; 5240 4907 src = fetchurl { 5241 - url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.2.0.tgz"; 5242 - sha512 = "/LgrrD2sdW6mbGWJtrKBKgaFrV8/Kgzs83FsqgC8YVvpRm2Ncb06XHs02MHCVztkTiBt7QN6MnNfZwycojGLMw=="; 4908 + url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.3.0.tgz"; 4909 + sha512 = "RdhTIYoDUjkyZk7ZmMjRx0rT0KrcdHedmLvLQtmB3tYD+0NQlNLJuLkKDBbcTHZwW05aY/gdN0Yv2wbxfQaryg=="; 5243 4910 }; 5244 4911 }; 5245 - "@ot-builder/prelude-1.2.0" = { 4912 + "@ot-builder/prelude-1.3.0" = { 5246 4913 name = "_at_ot-builder_slash_prelude"; 5247 4914 packageName = "@ot-builder/prelude"; 5248 - version = "1.2.0"; 4915 + version = "1.3.0"; 5249 4916 src = fetchurl { 5250 - url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.2.0.tgz"; 5251 - sha512 = "Df7L2UqUbzimN5vODcdRAwsIwU4fDkUp8SObTsVsYlLWN8qtG+F5IltYw2BNVerufI5qiA1145WpSi+1Dr3J7g=="; 4917 + url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.3.0.tgz"; 4918 + sha512 = "E4LvaFA74YEKNFkzmbCyiooV31e1p/16Ajr8/Pvf8OlQGSGf0UkbZVOikpdJZBTr4kL6mpQsGRAo+xJHmeIviw=="; 5252 4919 }; 5253 4920 }; 5254 - "@ot-builder/primitive-1.2.0" = { 4921 + "@ot-builder/primitive-1.3.0" = { 5255 4922 name = "_at_ot-builder_slash_primitive"; 5256 4923 packageName = "@ot-builder/primitive"; 5257 - version = "1.2.0"; 4924 + version = "1.3.0"; 5258 4925 src = fetchurl { 5259 - url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.2.0.tgz"; 5260 - sha512 = "aiKTWfI91wrN2FMslnPi/gHQrnjyPpxtOWrxIY49rKBWNJKytnWLZf5qPc5r6CsFpywIqj/hOA0cIO+MTJCy9Q=="; 4926 + url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.3.0.tgz"; 4927 + sha512 = "KqVxt5YdH/1gusrUAenytoo+MtzSg2YyXHXBfdP9YLL5HE72gG6irVJy1eQFXr4RsZ8GVhhguIrvRZ0gMbnAPw=="; 5261 4928 }; 5262 4929 }; 5263 - "@ot-builder/rectify-1.2.0" = { 4930 + "@ot-builder/rectify-1.3.0" = { 5264 4931 name = "_at_ot-builder_slash_rectify"; 5265 4932 packageName = "@ot-builder/rectify"; 5266 - version = "1.2.0"; 4933 + version = "1.3.0"; 5267 4934 src = fetchurl { 5268 - url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.2.0.tgz"; 5269 - sha512 = "S341nLIehPw2BJWYau6sbunvymB+FZW94cPYhOubQqwMteURkKGleJrkVyCD2zVa04luZvcFJgGtUYNhcGPOzg=="; 4935 + url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.3.0.tgz"; 4936 + sha512 = "b3xNK7gTwNa5AFoiFL3cjLcqBk0vHfGrkKcbApImSM74KDUkAGK9ZeefrI1snFzIFmnWFWu5o86+DB2u/1PV8Q=="; 5270 4937 }; 5271 4938 }; 5272 - "@ot-builder/stat-glyphs-1.2.0" = { 4939 + "@ot-builder/stat-glyphs-1.3.0" = { 5273 4940 name = "_at_ot-builder_slash_stat-glyphs"; 5274 4941 packageName = "@ot-builder/stat-glyphs"; 5275 - version = "1.2.0"; 4942 + version = "1.3.0"; 5276 4943 src = fetchurl { 5277 - url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.2.0.tgz"; 5278 - sha512 = "tVTpC1Qwp5CZDHLmgiRjvn5NEmgo9uYgLKzj704orNvM6ptM4M9IADk8AYa1gXYkRezJgV8xfFyEMTXQdjFuyQ=="; 4944 + url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.3.0.tgz"; 4945 + sha512 = "TQqinShddh7lBkQMQxZV9Ry4HJGsFUThgIWanh1ztVp9wJjPiXuJN+G8d/ryQflO5syGGioAMQjMsojLIQDG1g=="; 5279 4946 }; 5280 4947 }; 5281 - "@ot-builder/trace-1.2.0" = { 4948 + "@ot-builder/trace-1.3.0" = { 5282 4949 name = "_at_ot-builder_slash_trace"; 5283 4950 packageName = "@ot-builder/trace"; 5284 - version = "1.2.0"; 4951 + version = "1.3.0"; 5285 4952 src = fetchurl { 5286 - url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.2.0.tgz"; 5287 - sha512 = "UJSOfGjo9QkC/+3XU5DrLFl9H7J09TCJtRWdReTauFqiINSpoGtVS+7Qbc8M+eVvQ6KI0OdpjdXq9uKI3dKF0g=="; 4953 + url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.3.0.tgz"; 4954 + sha512 = "EPHE78+L9mH4rBMkA/Ac+qMW/xLYTpNonxeMHzT+AxZ4ixz1gTY0LU9JtkkG+sdby3sLSLwAKPDaqFYQCQ1B3Q=="; 5288 4955 }; 5289 4956 }; 5290 - "@ot-builder/var-store-1.2.0" = { 4957 + "@ot-builder/var-store-1.3.0" = { 5291 4958 name = "_at_ot-builder_slash_var-store"; 5292 4959 packageName = "@ot-builder/var-store"; 5293 - version = "1.2.0"; 4960 + version = "1.3.0"; 5294 4961 src = fetchurl { 5295 - url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.2.0.tgz"; 5296 - sha512 = "nQYv0Ym67BnApIXSNtLnmTdfZxEGY9tihq0nFtlbh44BQQnlLVKhKQD3iKcJyPkZvV6NzPdNSLmBs99cT9YE0Q=="; 4962 + url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.3.0.tgz"; 4963 + sha512 = "7wuUX8GlosMhOU92xClWBUELkKtpszsouuPAZQsbHIoz4WaUUEYfVwpTB1Xcj3UA0M/eTSmM1rIlB0SFJ2jywQ=="; 5297 4964 }; 5298 4965 }; 5299 - "@ot-builder/variance-1.2.0" = { 4966 + "@ot-builder/variance-1.3.0" = { 5300 4967 name = "_at_ot-builder_slash_variance"; 5301 4968 packageName = "@ot-builder/variance"; 5302 - version = "1.2.0"; 4969 + version = "1.3.0"; 5303 4970 src = fetchurl { 5304 - url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.2.0.tgz"; 5305 - sha512 = "B32KgSa8zM7ZTq7EQB1GsXQmQ+IRDYuAE2W/v5+BYqzcY2B448F8QmZVK0GCYDVdDzG61c8kb2kiOViSNz5bag=="; 4971 + url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.3.0.tgz"; 4972 + sha512 = "snCKMC8X/HIJVmcqAiRSmA7LtJyDFxaBshIzqOxWYC4X8rLwcMOzpiKLGCdxIpJq38vbmb3QS9WZmjrzgKMN8w=="; 5306 4973 }; 5307 4974 }; 5308 4975 "@parcel/fs-1.11.0" = { ··· 5395 5062 sha512 = "I/gRlM2meKPKXFN/1fxLoigPXvAUsivxRCih7vgeO7o4qrNNsl6Ah85l3UBbFi0t7ttjMde2+bS1A32a1Hu0BA=="; 5396 5063 }; 5397 5064 }; 5398 - "@prisma/engines-3.2.1-1.b71d8cb16c4ddc7e3e9821f42fd09b0f82d7934c" = { 5065 + "@prisma/engines-3.3.0-30.33838b0f78f1fe9052cf9a00e9761c9dc097a63c" = { 5399 5066 name = "_at_prisma_slash_engines"; 5400 5067 packageName = "@prisma/engines"; 5401 - version = "3.2.1-1.b71d8cb16c4ddc7e3e9821f42fd09b0f82d7934c"; 5068 + version = "3.3.0-30.33838b0f78f1fe9052cf9a00e9761c9dc097a63c"; 5402 5069 src = fetchurl { 5403 - url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.2.1-1.b71d8cb16c4ddc7e3e9821f42fd09b0f82d7934c.tgz"; 5404 - sha512 = "wnHODKLQGKkE2ZCHxHQEf/4Anq/EP0ZCvX++D5w34033mwZ94iZiOsEKZZ31fgki7MTh28F1VNF5ZSFdnRjgvQ=="; 5070 + url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.3.0-30.33838b0f78f1fe9052cf9a00e9761c9dc097a63c.tgz"; 5071 + sha512 = "T3nEnRWmoneNZJPd9IBR29G8ZDUjNelA8+cG5y8/lh6vySm6ryWSNxj1s377U9YzFYyZmXiA9vK1iyxMoRff/g=="; 5405 5072 }; 5406 5073 }; 5407 5074 "@protobufjs/aspromise-1.1.2" = { ··· 5557 5224 sha512 = "tU8fQs0D76ZKhJ2cWtnfQthWqiZgGBx0gH0+5D8JvaBEBaqA8foPPBt3Nonwr3ygyv5xrw2IzKWgIY86BlGs+w=="; 5558 5225 }; 5559 5226 }; 5560 - "@redocly/openapi-core-1.0.0-beta.63" = { 5227 + "@redocly/openapi-core-1.0.0-beta.64" = { 5561 5228 name = "_at_redocly_slash_openapi-core"; 5562 5229 packageName = "@redocly/openapi-core"; 5563 - version = "1.0.0-beta.63"; 5230 + version = "1.0.0-beta.64"; 5564 5231 src = fetchurl { 5565 - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.63.tgz"; 5566 - sha512 = "ZnIoUyZ6BJZ4wnkGM9YAHe8MqHNcgEHVTjM1IsZkvwoDQ6TTV/B7P7gHOKCcgkyBb/sQNShgSAO5Y+lIfKU2+g=="; 5232 + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.64.tgz"; 5233 + sha512 = "pNyA3YVulTehGHlYIv/LVXBuV4FfXFtikJavz/JmZs14uCy+Sujr8/iq904Mwc4YdXPYw3lZKxRwl7PW2q/jsg=="; 5567 5234 }; 5568 5235 }; 5569 5236 "@redocly/react-dropdown-aria-2.0.12" = { ··· 5575 5242 sha512 = "feQEZlyBvQsbT/fvpJ4jJ5OLGaUPpnskHYDsY8DGpPymN+HUeDQrqkBEbbKRwMKidFTI2cxk2kJNNTnvdS9jyw=="; 5576 5243 }; 5577 5244 }; 5578 - "@rollup/plugin-babel-5.3.0" = { 5579 - name = "_at_rollup_slash_plugin-babel"; 5580 - packageName = "@rollup/plugin-babel"; 5581 - version = "5.3.0"; 5582 - src = fetchurl { 5583 - url = "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.0.tgz"; 5584 - sha512 = "9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw=="; 5585 - }; 5586 - }; 5587 - "@rollup/plugin-commonjs-18.1.0" = { 5588 - name = "_at_rollup_slash_plugin-commonjs"; 5589 - packageName = "@rollup/plugin-commonjs"; 5590 - version = "18.1.0"; 5591 - src = fetchurl { 5592 - url = "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-18.1.0.tgz"; 5593 - sha512 = "h3e6T9rUxVMAQswpDIobfUHn/doMzM9sgkMrsMWCFLmB84PSoC8mV8tOloAJjSRwdqhXBqstlX2BwBpHJvbhxg=="; 5594 - }; 5595 - }; 5596 - "@rollup/plugin-inject-4.0.2" = { 5597 - name = "_at_rollup_slash_plugin-inject"; 5598 - packageName = "@rollup/plugin-inject"; 5599 - version = "4.0.2"; 5600 - src = fetchurl { 5601 - url = "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-4.0.2.tgz"; 5602 - sha512 = "TSLMA8waJ7Dmgmoc8JfPnwUwVZgLjjIAM6MqeIFqPO2ODK36JqE0Cf2F54UTgCUuW8da93Mvoj75a6KAVWgylw=="; 5603 - }; 5604 - }; 5605 - "@rollup/plugin-json-4.1.0" = { 5606 - name = "_at_rollup_slash_plugin-json"; 5607 - packageName = "@rollup/plugin-json"; 5608 - version = "4.1.0"; 5609 - src = fetchurl { 5610 - url = "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz"; 5611 - sha512 = "yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw=="; 5612 - }; 5613 - }; 5614 - "@rollup/plugin-node-resolve-11.2.1" = { 5615 - name = "_at_rollup_slash_plugin-node-resolve"; 5616 - packageName = "@rollup/plugin-node-resolve"; 5617 - version = "11.2.1"; 5618 - src = fetchurl { 5619 - url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz"; 5620 - sha512 = "yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg=="; 5621 - }; 5622 - }; 5623 - "@rollup/pluginutils-3.1.0" = { 5624 - name = "_at_rollup_slash_pluginutils"; 5625 - packageName = "@rollup/pluginutils"; 5626 - version = "3.1.0"; 5627 - src = fetchurl { 5628 - url = "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz"; 5629 - sha512 = "GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg=="; 5630 - }; 5631 - }; 5632 5245 "@sailshq/lodash-3.10.4" = { 5633 5246 name = "_at_sailshq_slash_lodash"; 5634 5247 packageName = "@sailshq/lodash"; ··· 5656 5269 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 5657 5270 }; 5658 5271 }; 5659 - "@schematics/angular-12.2.10" = { 5272 + "@schematics/angular-12.2.11" = { 5660 5273 name = "_at_schematics_slash_angular"; 5661 5274 packageName = "@schematics/angular"; 5662 - version = "12.2.10"; 5275 + version = "12.2.11"; 5663 5276 src = fetchurl { 5664 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.10.tgz"; 5665 - sha512 = "hjOWrC/RlZ97oYWO92f5VRu6LDzPHnowDcyGDGvI9wCrfipL4Y7Is6LgFAiVZxCHdRz71MCnES1IXSj5w6UuBA=="; 5277 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.11.tgz"; 5278 + sha512 = "Xou0CSSD88LVxfl7GzqY3TYUG6mM4cN61zE7gTzqshCx3rR0JkbLn0Z+q67KhxYUs9qiPT5MHL0W06nJ0iLzDg=="; 5666 5279 }; 5667 5280 }; 5668 5281 "@segment/loosely-validate-event-2.0.0" = { ··· 5674 5287 sha512 = "ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw=="; 5675 5288 }; 5676 5289 }; 5677 - "@serverless/cli-1.5.2" = { 5290 + "@serverless/cli-1.5.3" = { 5678 5291 name = "_at_serverless_slash_cli"; 5679 5292 packageName = "@serverless/cli"; 5680 - version = "1.5.2"; 5293 + version = "1.5.3"; 5681 5294 src = fetchurl { 5682 - url = "https://registry.npmjs.org/@serverless/cli/-/cli-1.5.2.tgz"; 5683 - sha512 = "FMACx0qPD6Uj8U+7jDmAxEe1tdF9DsuY5VsG45nvZ3olC9xYJe/PMwxWsjXfK3tg1HUNywYAGCsy7p5fdXhNzw=="; 5295 + url = "https://registry.npmjs.org/@serverless/cli/-/cli-1.5.3.tgz"; 5296 + sha512 = "ZJ0Y7CsYoE/i45XkIMl/XBZO4KIlt0XH1qwxxNE2/84bZlih5cgRV6MZ+rKt7GlrD0iDAgQGyGv5dpyt+SGhKw=="; 5684 5297 }; 5685 5298 }; 5686 5299 "@serverless/component-metrics-1.0.8" = { ··· 5710 5323 sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ=="; 5711 5324 }; 5712 5325 }; 5713 - "@serverless/dashboard-plugin-5.4.8" = { 5326 + "@serverless/dashboard-plugin-5.5.0" = { 5714 5327 name = "_at_serverless_slash_dashboard-plugin"; 5715 5328 packageName = "@serverless/dashboard-plugin"; 5716 - version = "5.4.8"; 5329 + version = "5.5.0"; 5717 5330 src = fetchurl { 5718 - url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.4.8.tgz"; 5719 - sha512 = "vAXlfM33fRsYDeHTjFLlgA6VCxeXEkB8rx/mqQv5kv48KO4gwRsmgV4/xzEnk2fSQVPlyHL66DG0IvgFyEeC3Q=="; 5331 + url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.5.0.tgz"; 5332 + sha512 = "a3vWcAacJrUeUFcGXhm/tDxvZjqQI1KjRjFGrqbxoN0N5fCdkLtOn6578Iq4hdP8BF2XanS1xGGdhPjcYBdsUA=="; 5720 5333 }; 5721 5334 }; 5722 5335 "@serverless/event-mocks-1.1.1" = { ··· 5773 5386 sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog=="; 5774 5387 }; 5775 5388 }; 5776 - "@serverless/utils-5.18.0" = { 5389 + "@serverless/utils-5.19.0" = { 5777 5390 name = "_at_serverless_slash_utils"; 5778 5391 packageName = "@serverless/utils"; 5779 - version = "5.18.0"; 5392 + version = "5.19.0"; 5780 5393 src = fetchurl { 5781 - url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.18.0.tgz"; 5782 - sha512 = "vq6tzG3RilZVugbJBvBOU5XBVRTzGce1XH6zvivMM8c+a6wmMUcRRfTD0SPTCWxD2hSdv4WrH3Yz27Ez55vrSA=="; 5394 + url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.19.0.tgz"; 5395 + sha512 = "bgQawVfBgxcZoS1wxukJfRYKkMOZncZfOSTCRUnYzwH78fAAE79vfu49LGx2EGEJa8BThmtzjinZ9SK9yS0kIw=="; 5783 5396 }; 5784 5397 }; 5785 5398 "@serverless/utils-china-1.1.4" = { ··· 5890 5503 sha512 = "ikwHOfJF0umx1eV/JpQDMsFxODvCSdD9zdIQVDEjcTNpfofz7+PZrjfKUFkG3iQ9mSUG3BwODv0XOEvTRNdovw=="; 5891 5504 }; 5892 5505 }; 5893 - "@sindresorhus/slugify-1.1.2" = { 5894 - name = "_at_sindresorhus_slash_slugify"; 5895 - packageName = "@sindresorhus/slugify"; 5896 - version = "1.1.2"; 5897 - src = fetchurl { 5898 - url = "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.2.tgz"; 5899 - sha512 = "V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA=="; 5900 - }; 5901 - }; 5902 - "@sindresorhus/transliterate-0.1.2" = { 5903 - name = "_at_sindresorhus_slash_transliterate"; 5904 - packageName = "@sindresorhus/transliterate"; 5905 - version = "0.1.2"; 5906 - src = fetchurl { 5907 - url = "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-0.1.2.tgz"; 5908 - sha512 = "5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w=="; 5909 - }; 5910 - }; 5911 5506 "@skorfmann/ink-confirm-input-3.0.0" = { 5912 5507 name = "_at_skorfmann_slash_ink-confirm-input"; 5913 5508 packageName = "@skorfmann/ink-confirm-input"; ··· 5915 5510 src = fetchurl { 5916 5511 url = "https://registry.npmjs.org/@skorfmann/ink-confirm-input/-/ink-confirm-input-3.0.0.tgz"; 5917 5512 sha512 = "mPZe3gBAV4ZDeYZbEs6WpNZuHHj7Hse9p44z6lrKBcbAMWnvApVOC7zZUpeQsUuWPTOWQRu/QSYElDKNajQ2oA=="; 5513 + }; 5514 + }; 5515 + "@skorfmann/jsii-srcmak-0.1.374" = { 5516 + name = "_at_skorfmann_slash_jsii-srcmak"; 5517 + packageName = "@skorfmann/jsii-srcmak"; 5518 + version = "0.1.374"; 5519 + src = fetchurl { 5520 + url = "https://registry.npmjs.org/@skorfmann/jsii-srcmak/-/jsii-srcmak-0.1.374.tgz"; 5521 + sha512 = "laXjQBxKD/592o4GXQVpGwR66Hdi0o4jn5lOl3ff3Mk3NnTQmeMYWeQYfk+CI5fJPkipy/brnqtxk3IoFjr2TA=="; 5918 5522 }; 5919 5523 }; 5920 5524 "@skorfmann/terraform-cloud-1.10.1" = { ··· 6340 5944 sha512 = "jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ=="; 6341 5945 }; 6342 5946 }; 5947 + "@types/acorn-4.0.6" = { 5948 + name = "_at_types_slash_acorn"; 5949 + packageName = "@types/acorn"; 5950 + version = "4.0.6"; 5951 + src = fetchurl { 5952 + url = "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz"; 5953 + sha512 = "veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ=="; 5954 + }; 5955 + }; 6343 5956 "@types/archiver-5.3.0" = { 6344 5957 name = "_at_types_slash_archiver"; 6345 5958 packageName = "@types/archiver"; ··· 6484 6097 sha512 = "BZIU34bSYye0j/BFcPraiDZ5ka6MJADjcDVELGf7glr9K+iE8NYVjFslJFVWzskSxkLLyCrSPScE82/UUoBSvg=="; 6485 6098 }; 6486 6099 }; 6100 + "@types/commander-2.12.2" = { 6101 + name = "_at_types_slash_commander"; 6102 + packageName = "@types/commander"; 6103 + version = "2.12.2"; 6104 + src = fetchurl { 6105 + url = "https://registry.npmjs.org/@types/commander/-/commander-2.12.2.tgz"; 6106 + sha512 = "0QEFiR8ljcHp9bAbWxecjVRuAMr16ivPiGOw6KFQBVrVd0RQIcM3xKdRisH2EDWgVWujiYtHwhSkSUoAAGzH7Q=="; 6107 + }; 6108 + }; 6487 6109 "@types/common-tags-1.8.1" = { 6488 6110 name = "_at_types_slash_common-tags"; 6489 6111 packageName = "@types/common-tags"; ··· 6574 6196 sha512 = "epMsEE85fi4lfmJUH/89/iV/LI+F5CvNIvmgs5g5jYFPfhO2S/ae8WSsLOKWdwtoaZw9Q2IhJ4tQ5tFCcS/4HA=="; 6575 6197 }; 6576 6198 }; 6577 - "@types/decompress-4.2.4" = { 6578 - name = "_at_types_slash_decompress"; 6579 - packageName = "@types/decompress"; 6580 - version = "4.2.4"; 6199 + "@types/debug-4.1.7" = { 6200 + name = "_at_types_slash_debug"; 6201 + packageName = "@types/debug"; 6202 + version = "4.1.7"; 6203 + src = fetchurl { 6204 + url = "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz"; 6205 + sha512 = "9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg=="; 6206 + }; 6207 + }; 6208 + "@types/diff-3.5.4" = { 6209 + name = "_at_types_slash_diff"; 6210 + packageName = "@types/diff"; 6211 + version = "3.5.4"; 6581 6212 src = fetchurl { 6582 - url = "https://registry.npmjs.org/@types/decompress/-/decompress-4.2.4.tgz"; 6583 - sha512 = "/C8kTMRTNiNuWGl5nEyKbPiMv6HA+0RbEXzFhFBEzASM6+oa4tJro9b8nj7eRlOFfuLdzUU+DS/GPDlvvzMOhA=="; 6213 + url = "https://registry.npmjs.org/@types/diff/-/diff-3.5.4.tgz"; 6214 + sha512 = "/eg1PwPsu0YWSRDM0SIUSOEA70LNPRsO+wt+jzYEN3n5fRbHKsaqYfbWDfcL4Wscez/9ar9U4UypDzBU8n/evg=="; 6584 6215 }; 6585 6216 }; 6586 6217 "@types/dom4-2.0.2" = { ··· 6592 6223 sha512 = "Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g=="; 6593 6224 }; 6594 6225 }; 6595 - "@types/download-8.0.1" = { 6596 - name = "_at_types_slash_download"; 6597 - packageName = "@types/download"; 6598 - version = "8.0.1"; 6599 - src = fetchurl { 6600 - url = "https://registry.npmjs.org/@types/download/-/download-8.0.1.tgz"; 6601 - sha512 = "t5DjMD6Y1DxjXtEHl7Kt+nQn9rOmVLYD8p4Swrcc5QpgyqyqR2gXTIK6RwwMnNeFJ+ZIiIW789fQKzCrK7AOFA=="; 6602 - }; 6603 - }; 6604 6226 "@types/duplexify-3.6.0" = { 6605 6227 name = "_at_types_slash_duplexify"; 6606 6228 packageName = "@types/duplexify"; ··· 6619 6241 sha512 = "kM2g9Fdk/du24fKuuQhA/LBleFR4Z4JP2MVKpLxQQSzofF1uJ06D+c05zfLDAkkDO55aEeNwJih0gHrE/Ci20A=="; 6620 6242 }; 6621 6243 }; 6622 - "@types/emoji-mart-3.0.6" = { 6244 + "@types/emoji-mart-3.0.8" = { 6623 6245 name = "_at_types_slash_emoji-mart"; 6624 6246 packageName = "@types/emoji-mart"; 6625 - version = "3.0.6"; 6247 + version = "3.0.8"; 6626 6248 src = fetchurl { 6627 - url = "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.6.tgz"; 6628 - sha512 = "TbFLFkWvhZUeYkII94fB8bplhtRTUxekBjZehcKu7leq9gvg8IG7F9NBh0YJdH3XRiu+uk0Drviy+GzfcMkMCw=="; 6249 + url = "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.8.tgz"; 6250 + sha512 = "jmNew3D9XAVchIpyXHEZjR3Sa0uP8qD5TILk9U6Ev/Fcp43V6K1UFZ07KWtVVLjzyCMXaFB9UD3/3Y/2vVdGmQ=="; 6629 6251 }; 6630 6252 }; 6631 6253 "@types/engine.io-3.1.7" = { ··· 6637 6259 sha512 = "qNjVXcrp+1sS8YpRUa714r0pgzOwESdW5UjHL7D/2ZFdBX0BXUXtg1LUrp+ylvqbvMcMWUy73YpRoxPN2VoKAQ=="; 6638 6260 }; 6639 6261 }; 6640 - "@types/eslint-7.28.1" = { 6262 + "@types/eslint-7.28.2" = { 6641 6263 name = "_at_types_slash_eslint"; 6642 6264 packageName = "@types/eslint"; 6643 - version = "7.28.1"; 6265 + version = "7.28.2"; 6644 6266 src = fetchurl { 6645 - url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.1.tgz"; 6646 - sha512 = "XhZKznR3i/W5dXqUhgU9fFdJekufbeBd5DALmkuXoeFcjbQcPk+2cL+WLHf6Q81HWAnM2vrslIHpGVyCAviRwg=="; 6267 + url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.2.tgz"; 6268 + sha512 = "KubbADPkfoU75KgKeKLsFHXnU4ipH7wYg0TRT33NK3N3yiu7jlFAAoygIWBV+KbuHx/G+AvuGX6DllnK35gfJA=="; 6647 6269 }; 6648 6270 }; 6649 6271 "@types/eslint-scope-3.7.1" = { ··· 6662 6284 src = fetchurl { 6663 6285 url = "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"; 6664 6286 sha512 = "OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag=="; 6665 - }; 6666 - }; 6667 - "@types/estree-0.0.39" = { 6668 - name = "_at_types_slash_estree"; 6669 - packageName = "@types/estree"; 6670 - version = "0.0.39"; 6671 - src = fetchurl { 6672 - url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz"; 6673 - sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; 6674 6287 }; 6675 6288 }; 6676 6289 "@types/estree-0.0.50" = { ··· 6682 6295 sha512 = "C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw=="; 6683 6296 }; 6684 6297 }; 6298 + "@types/estree-jsx-0.0.1" = { 6299 + name = "_at_types_slash_estree-jsx"; 6300 + packageName = "@types/estree-jsx"; 6301 + version = "0.0.1"; 6302 + src = fetchurl { 6303 + url = "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-0.0.1.tgz"; 6304 + sha512 = "gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A=="; 6305 + }; 6306 + }; 6685 6307 "@types/expect-1.20.4" = { 6686 6308 name = "_at_types_slash_expect"; 6687 6309 packageName = "@types/expect"; ··· 6763 6385 sha512 = "1rkryxURpr6aWP7R786/UQOkJ3PcpQiWkAXBmdWc7ryFWqN6a4xfK7BtjXvFBKO9LjQ+MWQSWxYeZX1OApnArA=="; 6764 6386 }; 6765 6387 }; 6766 - "@types/glob-7.1.4" = { 6767 - name = "_at_types_slash_glob"; 6768 - packageName = "@types/glob"; 6769 - version = "7.1.4"; 6388 + "@types/get-stdin-5.0.1" = { 6389 + name = "_at_types_slash_get-stdin"; 6390 + packageName = "@types/get-stdin"; 6391 + version = "5.0.1"; 6770 6392 src = fetchurl { 6771 - url = "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz"; 6772 - sha512 = "w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA=="; 6393 + url = "https://registry.npmjs.org/@types/get-stdin/-/get-stdin-5.0.1.tgz"; 6394 + sha1 = "46afbcaf09e94fe025afa07ae994ac3168adbdf3"; 6773 6395 }; 6774 6396 }; 6775 - "@types/got-8.3.6" = { 6776 - name = "_at_types_slash_got"; 6777 - packageName = "@types/got"; 6778 - version = "8.3.6"; 6397 + "@types/glob-7.2.0" = { 6398 + name = "_at_types_slash_glob"; 6399 + packageName = "@types/glob"; 6400 + version = "7.2.0"; 6779 6401 src = fetchurl { 6780 - url = "https://registry.npmjs.org/@types/got/-/got-8.3.6.tgz"; 6781 - sha512 = "nvLlj+831dhdm4LR2Ly+HTpdLyBaMynoOr6wpIxS19d/bPeHQxFU5XQ6Gp6ohBpxvCWZM1uHQIC2+ySRH1rGrQ=="; 6402 + url = "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz"; 6403 + sha512 = "ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="; 6782 6404 }; 6783 6405 }; 6784 6406 "@types/graceful-fs-4.1.5" = { ··· 6898 6520 sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; 6899 6521 }; 6900 6522 }; 6901 - "@types/jquery-3.5.7" = { 6523 + "@types/jquery-3.5.8" = { 6902 6524 name = "_at_types_slash_jquery"; 6903 6525 packageName = "@types/jquery"; 6904 - version = "3.5.7"; 6526 + version = "3.5.8"; 6905 6527 src = fetchurl { 6906 - url = "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.7.tgz"; 6907 - sha512 = "Why+9t1KuqWtIqYKtbk6wgWbE1PjyXJOyGkpmTUh0RX5p4HL7nnRuBkjAO9P2r9tGQP6bLWxl77jRLew3V5xXg=="; 6528 + url = "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.8.tgz"; 6529 + sha512 = "cXk6NwqjDYg+UI9p2l3x0YmPa4m7RrXqmbK4IpVVpRJiYXU/QTo+UZrn54qfE1+9Gao4qpYqUnxm5ZCy2FTXAw=="; 6908 6530 }; 6909 6531 }; 6910 6532 "@types/js-yaml-3.12.5" = { ··· 7006 6628 sha512 = "EP6O3Jkr7bXvZZSZYlsgt5DIjiGr0dXP1/jVEwVLTFgg0d+3lWVQkRavYVQszV7dYUwvg0B8R0MBDpcmXg7XIA=="; 7007 6629 }; 7008 6630 }; 7009 - "@types/lodash-4.14.175" = { 6631 + "@types/lodash-4.14.176" = { 7010 6632 name = "_at_types_slash_lodash"; 7011 6633 packageName = "@types/lodash"; 7012 - version = "4.14.175"; 6634 + version = "4.14.176"; 7013 6635 src = fetchurl { 7014 - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.175.tgz"; 7015 - sha512 = "XmdEOrKQ8a1Y/yxQFOMbC47G/V2VDO1GvMRnl4O75M4GW/abC5tnfzadQYkqEveqRM1dEJGFFegfPNA2vvx2iw=="; 6636 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.176.tgz"; 6637 + sha512 = "xZmuPTa3rlZoIbtDUyJKZQimJV3bxCmzMIO2c9Pz9afyDro6kr7R79GwcB6mRhuoPmV2p1Vb66WOJH7F886WKQ=="; 7016 6638 }; 7017 6639 }; 7018 6640 "@types/long-4.0.1" = { ··· 7132 6754 sha512 = "ekGvFhFgrc2zYQoX4JeZPmVzZxw6Dtllga7iGHzfbYIYkAMUx/sAFP2GdFpLff+vdHXu5fl7WX9AT+TtqYcsyw=="; 7133 6755 }; 7134 6756 }; 6757 + "@types/ms-0.7.31" = { 6758 + name = "_at_types_slash_ms"; 6759 + packageName = "@types/ms"; 6760 + version = "0.7.31"; 6761 + src = fetchurl { 6762 + url = "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz"; 6763 + sha512 = "iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="; 6764 + }; 6765 + }; 7135 6766 "@types/multer-1.4.4" = { 7136 6767 name = "_at_types_slash_multer"; 7137 6768 packageName = "@types/multer"; ··· 7168 6799 sha512 = "F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw=="; 7169 6800 }; 7170 6801 }; 7171 - "@types/node-12.20.33" = { 6802 + "@types/node-12.20.36" = { 7172 6803 name = "_at_types_slash_node"; 7173 6804 packageName = "@types/node"; 7174 - version = "12.20.33"; 6805 + version = "12.20.36"; 7175 6806 src = fetchurl { 7176 - url = "https://registry.npmjs.org/@types/node/-/node-12.20.33.tgz"; 7177 - sha512 = "5XmYX2GECSa+CxMYaFsr2mrql71Q4EvHjKS+ox/SiwSdaASMoBIWE6UmZqFO+VX1jIcsYLStI4FFoB6V7FeIYw=="; 6807 + url = "https://registry.npmjs.org/@types/node/-/node-12.20.36.tgz"; 6808 + sha512 = "+5haRZ9uzI7rYqzDznXgkuacqb6LJhAti8mzZKWxIXn/WEtvB+GHVJ7AuMwcN1HMvXOSJcrvA6PPoYHYOYYebA=="; 7178 6809 }; 7179 6810 }; 7180 6811 "@types/node-14.11.1" = { ··· 7186 6817 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 7187 6818 }; 7188 6819 }; 7189 - "@types/node-14.17.27" = { 6820 + "@types/node-14.17.32" = { 7190 6821 name = "_at_types_slash_node"; 7191 6822 packageName = "@types/node"; 7192 - version = "14.17.27"; 6823 + version = "14.17.32"; 7193 6824 src = fetchurl { 7194 - url = "https://registry.npmjs.org/@types/node/-/node-14.17.27.tgz"; 7195 - sha512 = "94+Ahf9IcaDuJTle/2b+wzvjmutxXAEXU6O81JHblYXUg2BDG+dnBy7VxIPHKAyEEDHzCMQydTJuWvrE+Aanzw=="; 6825 + url = "https://registry.npmjs.org/@types/node/-/node-14.17.32.tgz"; 6826 + sha512 = "JcII3D5/OapPGx+eJ+Ik1SQGyt6WvuqdRfh9jUwL6/iHGjmyOriBDciBUu7lEIBTL2ijxwrR70WUnw5AEDmFvQ=="; 7196 6827 }; 7197 6828 }; 7198 6829 "@types/node-15.14.9" = { ··· 7213 6844 sha512 = "7EIraBEyRHEe7CH+Fm1XvgqU6uwZN8Q7jppJGcqjROMT29qhAuuOxYB1uEY5UMYQKEmA5D+5tBnhdaPXSsLONA=="; 7214 6845 }; 7215 6846 }; 7216 - "@types/node-16.10.3" = { 7217 - name = "_at_types_slash_node"; 7218 - packageName = "@types/node"; 7219 - version = "16.10.3"; 7220 - src = fetchurl { 7221 - url = "https://registry.npmjs.org/@types/node/-/node-16.10.3.tgz"; 7222 - sha512 = "ho3Ruq+fFnBrZhUYI46n/bV2GjwzSkwuT4dTf0GkuNFmnb8nq4ny2z9JEVemFi6bdEJanHLlYfy9c6FN9B9McQ=="; 7223 - }; 7224 - }; 7225 6847 "@types/node-16.10.4" = { 7226 6848 name = "_at_types_slash_node"; 7227 6849 packageName = "@types/node"; ··· 7231 6853 sha512 = "EITwVTX5B4nDjXjGeQAfXOrm+Jn+qNjDmyDRtWoD+wZsl/RDPRTFRKivs4Mt74iOFlLOrE5+Kf+p5yjyhm3+cA=="; 7232 6854 }; 7233 6855 }; 7234 - "@types/node-16.11.0" = { 6856 + "@types/node-16.11.6" = { 7235 6857 name = "_at_types_slash_node"; 7236 6858 packageName = "@types/node"; 7237 - version = "16.11.0"; 6859 + version = "16.11.6"; 7238 6860 src = fetchurl { 7239 - url = "https://registry.npmjs.org/@types/node/-/node-16.11.0.tgz"; 7240 - sha512 = "8MLkBIYQMuhRBQzGN9875bYsOhPnf/0rgXGo66S2FemHkhbn9qtsz9ywV1iCG+vbjigE4WUNVvw37Dx+L0qsPg=="; 6861 + url = "https://registry.npmjs.org/@types/node/-/node-16.11.6.tgz"; 6862 + sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="; 7241 6863 }; 7242 6864 }; 7243 6865 "@types/node-16.7.3" = { ··· 7258 6880 sha512 = "QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g=="; 7259 6881 }; 7260 6882 }; 7261 - "@types/node-16.9.6" = { 7262 - name = "_at_types_slash_node"; 7263 - packageName = "@types/node"; 7264 - version = "16.9.6"; 7265 - src = fetchurl { 7266 - url = "https://registry.npmjs.org/@types/node/-/node-16.9.6.tgz"; 7267 - sha512 = "YHUZhBOMTM3mjFkXVcK+WwAcYmyhe1wL4lfqNtzI0b3qAy7yuSetnM7QJazgE5PFmgVTNGiLOgRFfJMqW7XpSQ=="; 7268 - }; 7269 - }; 7270 6883 "@types/node-6.14.13" = { 7271 6884 name = "_at_types_slash_node"; 7272 6885 packageName = "@types/node"; ··· 7420 7033 sha512 = "eEQ6Hq0K0VShe00iDzG1DKxA5liTsk7jgcR5eDZ5d5cnivLjPqqcDgqurS5NlQJNfgTNg51dp7zFGWHomr5NJQ=="; 7421 7034 }; 7422 7035 }; 7423 - "@types/react-16.14.17" = { 7036 + "@types/react-16.14.20" = { 7424 7037 name = "_at_types_slash_react"; 7425 7038 packageName = "@types/react"; 7426 - version = "16.14.17"; 7039 + version = "16.14.20"; 7427 7040 src = fetchurl { 7428 - url = "https://registry.npmjs.org/@types/react/-/react-16.14.17.tgz"; 7429 - sha512 = "pMLc/7+7SEdQa9A+hN9ujI8blkjFqYAZVqh3iNXqdZ0cQ8TIR502HMkNJniaOGv9SAgc47jxVKoiBJ7c0AakvQ=="; 7041 + url = "https://registry.npmjs.org/@types/react/-/react-16.14.20.tgz"; 7042 + sha512 = "SV7TaVc8e9E/5Xuv6TIyJ5VhQpZoVFJqX6IZgj5HZoFCtIDCArE3qXkcHlc6O/Ud4UwcMoX+tlvDA95YrKdLgA=="; 7430 7043 }; 7431 7044 }; 7432 7045 "@types/react-dom-16.9.14" = { ··· 7492 7105 sha512 = "auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ=="; 7493 7106 }; 7494 7107 }; 7495 - "@types/resolve-1.17.1" = { 7496 - name = "_at_types_slash_resolve"; 7497 - packageName = "@types/resolve"; 7498 - version = "1.17.1"; 7499 - src = fetchurl { 7500 - url = "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz"; 7501 - sha512 = "yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw=="; 7502 - }; 7503 - }; 7504 7108 "@types/responselike-1.0.0" = { 7505 7109 name = "_at_types_slash_responselike"; 7506 7110 packageName = "@types/responselike"; ··· 7544 7148 src = fetchurl { 7545 7149 url = "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.3.tgz"; 7546 7150 sha512 = "Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w=="; 7547 - }; 7548 - }; 7549 - "@types/semver-7.3.8" = { 7550 - name = "_at_types_slash_semver"; 7551 - packageName = "@types/semver"; 7552 - version = "7.3.8"; 7553 - src = fetchurl { 7554 - url = "https://registry.npmjs.org/@types/semver/-/semver-7.3.8.tgz"; 7555 - sha512 = "D/2EJvAlCEtYFEYmmlGwbGXuK886HzyCc3nZX/tkFTQdEU8jZDAgiv08P162yB17y4ZXZoq7yFAnW4GDBb9Now=="; 7556 7151 }; 7557 7152 }; 7558 7153 "@types/serve-static-1.13.10" = { ··· 7942 7537 sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; 7943 7538 }; 7944 7539 }; 7945 - "@uifabric/foundation-7.10.0" = { 7540 + "@uifabric/foundation-7.10.1" = { 7946 7541 name = "_at_uifabric_slash_foundation"; 7947 7542 packageName = "@uifabric/foundation"; 7948 - version = "7.10.0"; 7543 + version = "7.10.1"; 7949 7544 src = fetchurl { 7950 - url = "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.10.0.tgz"; 7951 - sha512 = "rUVRSNvzWPUpWPJINpogsk01m4dzIDf9CbIbJNAq+SLsVvxk9yRoLfnPwX0ZYVpFqUQxYxnII8lmWdEQzoExmQ=="; 7545 + url = "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.10.1.tgz"; 7546 + sha512 = "Op05qHLBFEieT4+fG8OgpzqDHTQyei1dgVXDd6M4VS6CFJ5ZIPtC7Lwi+ZlkPkwUwccQ9mijuQumzpNKdv035A=="; 7952 7547 }; 7953 7548 }; 7954 - "@uifabric/icons-7.6.1" = { 7549 + "@uifabric/icons-7.6.2" = { 7955 7550 name = "_at_uifabric_slash_icons"; 7956 7551 packageName = "@uifabric/icons"; 7957 - version = "7.6.1"; 7552 + version = "7.6.2"; 7958 7553 src = fetchurl { 7959 - url = "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.1.tgz"; 7960 - sha512 = "EbIDmVWl007NjhX2f6/7G0srY6uq9BR6HLOkMCg4fbvyNcePPr66t8VH/rTvl1asL4w+jFt2y6RHyLRDvTWUyw=="; 7554 + url = "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.2.tgz"; 7555 + sha512 = "q7jEIwB5Tt2Egw9fqdgNPlBqBQ6hNNMQ3qs5y4S4YETRluB+AQTdKbrbYMsXo3Pm0FsJnRfiDojMzxusGX+MWA=="; 7961 7556 }; 7962 7557 }; 7963 7558 "@uifabric/merge-styles-7.19.2" = { ··· 7987 7582 sha512 = "t0Pt21dRqdC707/ConVJC0WvcQ/KF7tKLU8AZY7YdjgJpMHi1c0C427DB4jfUY19I92f60LOQyhJ4efH+KpFEg=="; 7988 7583 }; 7989 7584 }; 7990 - "@uifabric/styling-7.19.1" = { 7585 + "@uifabric/styling-7.20.0" = { 7991 7586 name = "_at_uifabric_slash_styling"; 7992 7587 packageName = "@uifabric/styling"; 7993 - version = "7.19.1"; 7588 + version = "7.20.0"; 7994 7589 src = fetchurl { 7995 - url = "https://registry.npmjs.org/@uifabric/styling/-/styling-7.19.1.tgz"; 7996 - sha512 = "1yvfVJ9HSB7TVUKocjs/ij3bsVHtfBRbhnhDtdMS9Fw13abf1IBOpwx8LPMGMt1nbeAmWbzlBI+Deoyij9lstA=="; 7590 + url = "https://registry.npmjs.org/@uifabric/styling/-/styling-7.20.0.tgz"; 7591 + sha512 = "SoaK5J4cwn8D9DWejRlWo+TmKZaHIiVlkIH+B2zLXE8Uc4ZYcotwYGxaSc1gCA16viLvGQkQU+ieWFq91RxdRw=="; 7997 7592 }; 7998 7593 }; 7999 7594 "@uifabric/utilities-7.33.5" = { ··· 8003 7598 src = fetchurl { 8004 7599 url = "https://registry.npmjs.org/@uifabric/utilities/-/utilities-7.33.5.tgz"; 8005 7600 sha512 = "I+Oi0deD/xltSluFY8l2EVd/J4mvOaMljxKO2knSD9/KoGDlo/o5GN4gbnVo8nIt76HWHLAk3KtlJKJm6BhbIQ=="; 8006 - }; 8007 - }; 8008 - "@ungap/from-entries-0.2.1" = { 8009 - name = "_at_ungap_slash_from-entries"; 8010 - packageName = "@ungap/from-entries"; 8011 - version = "0.2.1"; 8012 - src = fetchurl { 8013 - url = "https://registry.npmjs.org/@ungap/from-entries/-/from-entries-0.2.1.tgz"; 8014 - sha512 = "CAqefTFAfnUPwYqsWHXpOxHaq1Zo5UQ3m9Zm2p09LggGe57rqHoBn3c++xcoomzXKynAUuiBMDUCQvKMnXjUpA=="; 8015 7601 }; 8016 7602 }; 8017 7603 "@ungap/promise-all-settled-1.1.2" = { ··· 8059 7645 sha512 = "BZCHRz43Qfr0DwZlZQCcofR+3cr+H+HK72/ZPkZy1Uq0NYjJMlmZ3ahuMgvJxT9lfC1RA6eOEUlUsZ+gqKcMCg=="; 8060 7646 }; 8061 7647 }; 8062 - "@vercel/nft-0.15.1" = { 8063 - name = "_at_vercel_slash_nft"; 8064 - packageName = "@vercel/nft"; 8065 - version = "0.15.1"; 8066 - src = fetchurl { 8067 - url = "https://registry.npmjs.org/@vercel/nft/-/nft-0.15.1.tgz"; 8068 - sha512 = "ehD1bgCG9sZliAHku2fc1L+jKLad4wS+9HHWiIs4HT4SysA/JFSXRrfWuA+INumzuaFqrOKs3vQeLVhZ4o8lTw=="; 8069 - }; 8070 - }; 8071 7648 "@vercel/node-1.12.1" = { 8072 7649 name = "_at_vercel_slash_node"; 8073 7650 packageName = "@vercel/node"; ··· 9256 8833 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 9257 8834 }; 9258 8835 }; 9259 - "acorn-8.4.1" = { 9260 - name = "acorn"; 9261 - packageName = "acorn"; 9262 - version = "8.4.1"; 9263 - src = fetchurl { 9264 - url = "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz"; 9265 - sha512 = "asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA=="; 9266 - }; 9267 - }; 9268 8836 "acorn-8.5.0" = { 9269 8837 name = "acorn"; 9270 8838 packageName = "acorn"; ··· 9272 8840 src = fetchurl { 9273 8841 url = "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz"; 9274 8842 sha512 = "yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q=="; 9275 - }; 9276 - }; 9277 - "acorn-class-fields-1.0.0" = { 9278 - name = "acorn-class-fields"; 9279 - packageName = "acorn-class-fields"; 9280 - version = "1.0.0"; 9281 - src = fetchurl { 9282 - url = "https://registry.npmjs.org/acorn-class-fields/-/acorn-class-fields-1.0.0.tgz"; 9283 - sha512 = "l+1FokF34AeCXGBHkrXFmml9nOIRI+2yBnBpO5MaVAaTIJ96irWLtcCxX+7hAp6USHFCe+iyyBB4ZhxV807wmA=="; 9284 8843 }; 9285 8844 }; 9286 8845 "acorn-globals-1.0.9" = { ··· 9364 8923 sha512 = "8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A=="; 9365 8924 }; 9366 8925 }; 9367 - "acorn-private-class-elements-1.0.0" = { 9368 - name = "acorn-private-class-elements"; 9369 - packageName = "acorn-private-class-elements"; 9370 - version = "1.0.0"; 9371 - src = fetchurl { 9372 - url = "https://registry.npmjs.org/acorn-private-class-elements/-/acorn-private-class-elements-1.0.0.tgz"; 9373 - sha512 = "zYNcZtxKgVCg1brS39BEou86mIao1EV7eeREG+6WMwKbuYTeivRRs6S2XdWnboRde6G9wKh2w+WBydEyJsJ6mg=="; 9374 - }; 9375 - }; 9376 - "acorn-static-class-features-1.0.0" = { 9377 - name = "acorn-static-class-features"; 9378 - packageName = "acorn-static-class-features"; 9379 - version = "1.0.0"; 9380 - src = fetchurl { 9381 - url = "https://registry.npmjs.org/acorn-static-class-features/-/acorn-static-class-features-1.0.0.tgz"; 9382 - sha512 = "XZJECjbmMOKvMHiNzbiPXuXpLAJfN3dAKtfIYbk1eHiWdsutlek+gS7ND4B8yJ3oqvHo1NxfafnezVmq7NXK0A=="; 9383 - }; 9384 - }; 9385 8926 "acorn-walk-6.2.0" = { 9386 8927 name = "acorn-walk"; 9387 8928 packageName = "acorn-walk"; ··· 9400 8941 sha512 = "OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="; 9401 8942 }; 9402 8943 }; 9403 - "acorn-walk-8.1.1" = { 8944 + "acorn-walk-8.2.0" = { 9404 8945 name = "acorn-walk"; 9405 8946 packageName = "acorn-walk"; 9406 - version = "8.1.1"; 8947 + version = "8.2.0"; 9407 8948 src = fetchurl { 9408 - url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.1.1.tgz"; 9409 - sha512 = "FbJdceMlPHEAWJOILDk1fXD8lnTlEIWFkqtfk+MvmL5q/qlHfN7GEHcsFZWt/Tea9jRNPWUZG4G976nqAAmU9w=="; 8949 + url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz"; 8950 + sha512 = "k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="; 9410 8951 }; 9411 8952 }; 9412 8953 "adbkit-2.11.1" = { ··· 9670 9211 sha512 = "LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg=="; 9671 9212 }; 9672 9213 }; 9673 - "ajv-8.2.0" = { 9674 - name = "ajv"; 9675 - packageName = "ajv"; 9676 - version = "8.2.0"; 9677 - src = fetchurl { 9678 - url = "https://registry.npmjs.org/ajv/-/ajv-8.2.0.tgz"; 9679 - sha512 = "WSNGFuyWd//XO8n/m/EaOlNLtO0yL8EXT/74LqT4khdhpZjP7lkj/kT5uwRmGitKEVp/Oj7ZUHeGfPtgHhQ5CA=="; 9680 - }; 9681 - }; 9682 9214 "ajv-8.6.2" = { 9683 9215 name = "ajv"; 9684 9216 packageName = "ajv"; ··· 9706 9238 sha512 = "DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ=="; 9707 9239 }; 9708 9240 }; 9709 - "ajv-formats-2.0.2" = { 9710 - name = "ajv-formats"; 9711 - packageName = "ajv-formats"; 9712 - version = "2.0.2"; 9713 - src = fetchurl { 9714 - url = "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.0.2.tgz"; 9715 - sha512 = "Brah4Uo5/U8v76c6euTwtjVFFaVishwnJrQBYpev1JRh4vjA1F4HY3UzQez41YUCszUCXKagG8v6eVRBHV1gkw=="; 9716 - }; 9717 - }; 9718 9241 "ajv-formats-2.1.0" = { 9719 9242 name = "ajv-formats"; 9720 9243 packageName = "ajv-formats"; ··· 9769 9292 sha512 = "0mAYXMSauA8RZ7r+B4+EAOYcZEcO9OK5EiQCR7W7Cv4E44pJj56ZnkKLJ9/PAcOc0dT+LlV9fdDcq2TxVJfOYw=="; 9770 9293 }; 9771 9294 }; 9772 - "alex-9.1.0" = { 9295 + "alex-9.1.1" = { 9773 9296 name = "alex"; 9774 9297 packageName = "alex"; 9775 - version = "9.1.0"; 9298 + version = "9.1.1"; 9776 9299 src = fetchurl { 9777 - url = "https://registry.npmjs.org/alex/-/alex-9.1.0.tgz"; 9778 - sha512 = "mlNQ0CBGinzZj1pjiXaSLsihjZ4Kzq0U0EjR+DrZ3IQQfM4pf4OtxHI1agBIiEwv0tQUzimjgTk+5t9iHeT7Vw=="; 9300 + url = "https://registry.npmjs.org/alex/-/alex-9.1.1.tgz"; 9301 + sha512 = "2mYyFfQnzWzDd6lSACRePBj8YP6fzzvclPkfGfYrY6vPNFDoQKrCAAdF0XCKROGJGnbSWX1K5PrxixVTaV5ODw=="; 9779 9302 }; 9780 9303 }; 9781 9304 "align-text-0.1.4" = { ··· 9794 9317 src = fetchurl { 9795 9318 url = "https://registry.npmjs.org/aligned-block-file/-/aligned-block-file-1.2.2.tgz"; 9796 9319 sha512 = "2Sy0hWhifVb8ycNFJgicL8fDPL2Ct1r62XOVxXnykn36z22MPZwnQlCmB2viQlY/lwfuO67GaQjUZ0rJgdVP7Q=="; 9797 - }; 9798 - }; 9799 - "all-node-versions-8.0.0" = { 9800 - name = "all-node-versions"; 9801 - packageName = "all-node-versions"; 9802 - version = "8.0.0"; 9803 - src = fetchurl { 9804 - url = "https://registry.npmjs.org/all-node-versions/-/all-node-versions-8.0.0.tgz"; 9805 - sha512 = "cF8ibgj23U7ai4qjSFzpeccwDXUlPFMzKe0Z6qf6gChR+9S0JMyzYz6oYz4n0nHi/FLH9BJIefsONsMH/WDM2w=="; 9806 9320 }; 9807 9321 }; 9808 9322 "alphanum-sort-1.0.2" = { ··· 10145 9659 src = fetchurl { 10146 9660 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 10147 9661 sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 10148 - }; 10149 - }; 10150 - "ansi-styles-5.2.0" = { 10151 - name = "ansi-styles"; 10152 - packageName = "ansi-styles"; 10153 - version = "5.2.0"; 10154 - src = fetchurl { 10155 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz"; 10156 - sha512 = "Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="; 10157 9662 }; 10158 9663 }; 10159 9664 "ansi-styles-6.1.0" = { ··· 11254 10759 sha512 = "vyxPxP5arcAqN4F/ebHd/HhwnAiZtwhglvdmc7BR2f0ywbVNTOpSeyhLDbGXtE/y58hv1oC75TaNIXutnsOZsQ=="; 11255 10760 }; 11256 10761 }; 11257 - "ascii-table-0.0.9" = { 11258 - name = "ascii-table"; 11259 - packageName = "ascii-table"; 11260 - version = "0.0.9"; 11261 - src = fetchurl { 11262 - url = "https://registry.npmjs.org/ascii-table/-/ascii-table-0.0.9.tgz"; 11263 - sha1 = "06a6604d6a55d4bf41a9a47d9872d7a78da31e73"; 11264 - }; 11265 - }; 11266 10762 "asciichart-1.5.25" = { 11267 10763 name = "asciichart"; 11268 10764 packageName = "asciichart"; ··· 11396 10892 src = fetchurl { 11397 10893 url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"; 11398 10894 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 11399 - }; 11400 - }; 11401 - "ast-module-types-2.7.1" = { 11402 - name = "ast-module-types"; 11403 - packageName = "ast-module-types"; 11404 - version = "2.7.1"; 11405 - src = fetchurl { 11406 - url = "https://registry.npmjs.org/ast-module-types/-/ast-module-types-2.7.1.tgz"; 11407 - sha512 = "Rnnx/4Dus6fn7fTqdeLEAn5vUll5w7/vts0RN608yFa6si/rDOUonlIIiwugHBFWjylHjxm9owoSZn71KwG4gw=="; 11408 10895 }; 11409 10896 }; 11410 10897 "ast-types-0.12.1" = { ··· 11902 11389 sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; 11903 11390 }; 11904 11391 }; 11905 - "aws-sdk-2.1009.0" = { 11392 + "aws-sdk-2.1015.0" = { 11906 11393 name = "aws-sdk"; 11907 11394 packageName = "aws-sdk"; 11908 - version = "2.1009.0"; 11395 + version = "2.1015.0"; 11909 11396 src = fetchurl { 11910 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1009.0.tgz"; 11911 - sha512 = "qKbmt+vzQ7ZSnfEvA+u6d7CkV09AcAGnxZAiNgOAEn8GFFEtERy6C39VoAuWfON/B2avJDYvtRocjVmAxWpgjQ=="; 11397 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1015.0.tgz"; 11398 + sha512 = "jSM955n08r+kzCMMhOu1Dbua8SRZQKgGO1nAoUwBSlXjnLtN+F81P93h4yNBtWsxUg1mAMTP3DKJjXFFrRToPw=="; 11912 11399 }; 11913 11400 }; 11914 11401 "aws-sdk-2.920.0" = { ··· 12010 11497 sha512 = "j2hHu0asf6HxacVmGJKFSsrfoG8nC0JEjujIpsmRVkr74nC6o5gs6YF6AQD3e7YyJ8PaKuA7k2uSL9A2mAG9Og=="; 12011 11498 }; 12012 11499 }; 11500 + "b4a-1.0.1" = { 11501 + name = "b4a"; 11502 + packageName = "b4a"; 11503 + version = "1.0.1"; 11504 + src = fetchurl { 11505 + url = "https://registry.npmjs.org/b4a/-/b4a-1.0.1.tgz"; 11506 + sha512 = "FNuY5WpUqRNITgg8o9459kvjVrIUA4w9oO7nptPIBsF+zmrqlDZcMP+B42P3d69EopNEyEdejkXn7aiT1WhM0g=="; 11507 + }; 11508 + }; 12013 11509 "babel-code-frame-6.26.0" = { 12014 11510 name = "babel-code-frame"; 12015 11511 packageName = "babel-code-frame"; ··· 12118 11614 sha512 = "7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw=="; 12119 11615 }; 12120 11616 }; 12121 - "babel-loader-8.2.2" = { 11617 + "babel-loader-8.2.3" = { 12122 11618 name = "babel-loader"; 12123 11619 packageName = "babel-loader"; 12124 - version = "8.2.2"; 11620 + version = "8.2.3"; 12125 11621 src = fetchurl { 12126 - url = "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz"; 12127 - sha512 = "JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g=="; 11622 + url = "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz"; 11623 + sha512 = "n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw=="; 12128 11624 }; 12129 11625 }; 12130 11626 "babel-plugin-dynamic-import-node-2.3.3" = { ··· 12136 11632 sha512 = "jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ=="; 12137 11633 }; 12138 11634 }; 12139 - "babel-plugin-istanbul-6.0.0" = { 11635 + "babel-plugin-istanbul-6.1.1" = { 12140 11636 name = "babel-plugin-istanbul"; 12141 11637 packageName = "babel-plugin-istanbul"; 12142 - version = "6.0.0"; 11638 + version = "6.1.1"; 12143 11639 src = fetchurl { 12144 - url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz"; 12145 - sha512 = "AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ=="; 11640 + url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz"; 11641 + sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA=="; 12146 11642 }; 12147 11643 }; 12148 11644 "babel-plugin-jest-hoist-25.5.0" = { ··· 12298 11794 sha512 = "Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg=="; 12299 11795 }; 12300 11796 }; 12301 - "babel-plugin-styled-components-1.13.2" = { 11797 + "babel-plugin-styled-components-1.13.3" = { 12302 11798 name = "babel-plugin-styled-components"; 12303 11799 packageName = "babel-plugin-styled-components"; 12304 - version = "1.13.2"; 11800 + version = "1.13.3"; 12305 11801 src = fetchurl { 12306 - url = "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.13.2.tgz"; 12307 - sha512 = "Vb1R3d4g+MUfPQPVDMCGjm3cDocJEUTR7Xq7QS95JWWeksN1wdFRYpD2kulDgI3Huuaf1CZd+NK4KQmqUFh5dA=="; 11802 + url = "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.13.3.tgz"; 11803 + sha512 = "meGStRGv+VuKA/q0/jXxrPNWEm4LPfYIqxooDTdmh8kFsP/Ph7jJG5rUPwUPX3QHUvggwdbgdGpo88P/rRYsVw=="; 12308 11804 }; 12309 11805 }; 12310 11806 "babel-plugin-syntax-flow-6.18.0" = { ··· 12325 11821 sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"; 12326 11822 }; 12327 11823 }; 12328 - "babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0" = { 12329 - name = "babel-plugin-syntax-trailing-function-commas"; 12330 - packageName = "babel-plugin-syntax-trailing-function-commas"; 12331 - version = "7.0.0-beta.0"; 12332 - src = fetchurl { 12333 - url = "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz"; 12334 - sha512 = "Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ=="; 12335 - }; 12336 - }; 12337 11824 "babel-plugin-transform-flow-strip-types-6.22.0" = { 12338 11825 name = "babel-plugin-transform-flow-strip-types"; 12339 11826 packageName = "babel-plugin-transform-flow-strip-types"; ··· 12476 11963 src = fetchurl { 12477 11964 url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz"; 12478 11965 sha512 = "5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w=="; 12479 - }; 12480 - }; 12481 - "babel-preset-fbjs-3.4.0" = { 12482 - name = "babel-preset-fbjs"; 12483 - packageName = "babel-preset-fbjs"; 12484 - version = "3.4.0"; 12485 - src = fetchurl { 12486 - url = "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz"; 12487 - sha512 = "9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow=="; 12488 11966 }; 12489 11967 }; 12490 11968 "babel-preset-jest-25.5.0" = { ··· 12658 12136 sha512 = "kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg=="; 12659 12137 }; 12660 12138 }; 12661 - "base-x-3.0.8" = { 12139 + "base-x-3.0.9" = { 12662 12140 name = "base-x"; 12663 12141 packageName = "base-x"; 12664 - version = "3.0.8"; 12142 + version = "3.0.9"; 12665 12143 src = fetchurl { 12666 - url = "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz"; 12667 - sha512 = "Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA=="; 12144 + url = "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz"; 12145 + sha512 = "H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ=="; 12668 12146 }; 12669 12147 }; 12670 12148 "base32.js-0.1.0" = { ··· 14089 13567 sha1 = "fef069bee85975b2ddcc2264aaa7c50dc17a3c7e"; 14090 13568 }; 14091 13569 }; 14092 - "bplist-creator-0.0.8" = { 13570 + "bplist-creator-0.1.0" = { 14093 13571 name = "bplist-creator"; 14094 13572 packageName = "bplist-creator"; 14095 - version = "0.0.8"; 13573 + version = "0.1.0"; 14096 13574 src = fetchurl { 14097 - url = "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.8.tgz"; 14098 - sha512 = "Za9JKzD6fjLC16oX2wsXfc+qBEhJBJB1YPInoAQpMLhDuj5aVOv1baGeIQSq1Fr3OCqzvsoQcSBSwGId/Ja2PA=="; 13575 + url = "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz"; 13576 + sha512 = "sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg=="; 14099 13577 }; 14100 13578 }; 14101 13579 "bplist-parser-0.1.1" = { ··· 14269 13747 sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="; 14270 13748 }; 14271 13749 }; 14272 - "browser-sync-client-2.27.5" = { 13750 + "browser-sync-client-2.27.6" = { 14273 13751 name = "browser-sync-client"; 14274 13752 packageName = "browser-sync-client"; 14275 - version = "2.27.5"; 13753 + version = "2.27.6"; 14276 13754 src = fetchurl { 14277 - url = "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.27.5.tgz"; 14278 - sha512 = "l2jtf60/exv0fQiZkhi3z8RgexYYLGS7DVDnyepkrp+oFAPlKW69daL6NrVSgrwu6lzSTCCTAiPXnUSrQ57e/Q=="; 13755 + url = "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.27.6.tgz"; 13756 + sha512 = "hqTThp4/nE0Rxu6kn2UXVH9f8WhoHDls+bfhkZjhzCJfDdnGN9VyuwcgfD6gofaxvbzaDK00FiSCACFdmILDdg=="; 14279 13757 }; 14280 13758 }; 14281 - "browser-sync-ui-2.27.5" = { 13759 + "browser-sync-ui-2.27.6" = { 14282 13760 name = "browser-sync-ui"; 14283 13761 packageName = "browser-sync-ui"; 14284 - version = "2.27.5"; 13762 + version = "2.27.6"; 14285 13763 src = fetchurl { 14286 - url = "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.27.5.tgz"; 14287 - sha512 = "KxBJhQ6XNbQ8w8UlkPa9/J5R0nBHgHuJUtDpEXQx1jBapDy32WGzD0NENDozP4zGNvJUgZk3N80hqB7YCieC3g=="; 13764 + url = "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.27.6.tgz"; 13765 + sha512 = "0nKvGG39z5cGIyPWhNgJBF4p6n6X6JjQj99EpilHEkUOnagbVRtJaWOXlOrkPNxsz5IZ3zx4pk0wYEO4IX7J8w=="; 14288 13766 }; 14289 13767 }; 14290 13768 "browserify-16.5.2" = { ··· 14404 13882 sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw=="; 14405 13883 }; 14406 13884 }; 14407 - "browserslist-4.17.4" = { 13885 + "browserslist-4.17.5" = { 14408 13886 name = "browserslist"; 14409 13887 packageName = "browserslist"; 14410 - version = "4.17.4"; 13888 + version = "4.17.5"; 14411 13889 src = fetchurl { 14412 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz"; 14413 - sha512 = "Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ=="; 13890 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.5.tgz"; 13891 + sha512 = "I3ekeB92mmpctWBoLXe0d5wPS2cBuRvvW0JyyJHMrk9/HmP2ZjrTboNAZ8iuGqaEIlKguljbQY32OkOJIRrgoA=="; 14414 13892 }; 14415 13893 }; 14416 13894 "brq-0.1.8" = { ··· 14691 14169 src = fetchurl { 14692 14170 url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz"; 14693 14171 sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5"; 14694 - }; 14695 - }; 14696 - "buffer-es6-4.9.3" = { 14697 - name = "buffer-es6"; 14698 - packageName = "buffer-es6"; 14699 - version = "4.9.3"; 14700 - src = fetchurl { 14701 - url = "https://registry.npmjs.org/buffer-es6/-/buffer-es6-4.9.3.tgz"; 14702 - sha1 = "f26347b82df76fd37e18bcb5288c4970cfd5c404"; 14703 14172 }; 14704 14173 }; 14705 14174 "buffer-fill-1.0.0" = { ··· 15467 14936 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 15468 14937 }; 15469 14938 }; 15470 - "caniuse-lite-1.0.30001267" = { 14939 + "caniuse-lite-1.0.30001271" = { 15471 14940 name = "caniuse-lite"; 15472 14941 packageName = "caniuse-lite"; 15473 - version = "1.0.30001267"; 14942 + version = "1.0.30001271"; 15474 14943 src = fetchurl { 15475 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001267.tgz"; 15476 - sha512 = "r1mjTzAuJ9W8cPBGbbus8E0SKcUP7gn03R14Wk8FlAlqhH9hroy9nLqmpuXlfKEw/oILW+FGz47ipXV2O7x8lg=="; 14944 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001271.tgz"; 14945 + sha512 = "BBruZFWmt3HFdVPS8kceTBIguKxu4f99n5JNp06OlPD/luoAMIaIK5ieV5YjnBLH3Nysai9sxj9rpJj4ZisXOA=="; 15477 14946 }; 15478 14947 }; 15479 14948 "canvas-2.8.0" = { ··· 15638 15107 sha512 = "vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg=="; 15639 15108 }; 15640 15109 }; 15641 - "cdk8s-1.1.3" = { 15110 + "cdk8s-1.1.15" = { 15642 15111 name = "cdk8s"; 15643 15112 packageName = "cdk8s"; 15644 - version = "1.1.3"; 15113 + version = "1.1.15"; 15645 15114 src = fetchurl { 15646 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.1.3.tgz"; 15647 - sha512 = "ZmFZYlv0ZgErU6GC4nnANZPXeLnsjX3h0tJgw6k1GI4VgadeC27UffGhTeMZOMXn4iTHOT2XmR2GTx0DHge4UA=="; 15115 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.1.15.tgz"; 15116 + sha512 = "j1269q3DTQRKF5+qn8rYw7H/oQ+zNPi5xrLaum09ljU2P+L8ITODMHtHXMxAN8jbZVf8O6Ed+kF3W4hqN5gxAQ=="; 15648 15117 }; 15649 15118 }; 15650 15119 "cdk8s-plus-22-1.0.0-beta.21" = { ··· 15656 15125 sha512 = "kprRywa6rIKlBNMlwCAS8+Y+zNRldwPVU1PYeoa1APy8r96ZvrfE1VdRfpO08r1JTS8oEAyQOzKw2oswXGyxgA=="; 15657 15126 }; 15658 15127 }; 15659 - "cdktf-0.6.4" = { 15128 + "cdktf-0.7.0" = { 15660 15129 name = "cdktf"; 15661 15130 packageName = "cdktf"; 15662 - version = "0.6.4"; 15131 + version = "0.7.0"; 15663 15132 src = fetchurl { 15664 - url = "https://registry.npmjs.org/cdktf/-/cdktf-0.6.4.tgz"; 15665 - sha512 = "vRsVL5v6DZb5EoLNRevwGp2VfJLrJiA3TMPu3sAjaLEGrdOFY8py4iugArFUeiaIsti4Vz4+64Oc1cseSs71Fg=="; 15133 + url = "https://registry.npmjs.org/cdktf/-/cdktf-0.7.0.tgz"; 15134 + sha512 = "AhT3I6O3XAeBh2t2MiiAuPelPXmtaD4P3wIbcDtPxtlAX4gO5jTGVNHqHp11SdwvbncbDuhetdI7Egyor/EsEQ=="; 15666 15135 }; 15667 15136 }; 15668 15137 "center-align-0.1.3" = { ··· 15825 15294 src = fetchurl { 15826 15295 url = "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz"; 15827 15296 sha512 = "iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw=="; 15297 + }; 15298 + }; 15299 + "character-entities-2.0.0" = { 15300 + name = "character-entities"; 15301 + packageName = "character-entities"; 15302 + version = "2.0.0"; 15303 + src = fetchurl { 15304 + url = "https://registry.npmjs.org/character-entities/-/character-entities-2.0.0.tgz"; 15305 + sha512 = "oHqMj3eAuJ77/P5PaIRcqk+C3hdfNwyCD2DAUcD5gyXkegAuF2USC40CEqPscDk4I8FRGMTojGJQkXDsN5QlJA=="; 15828 15306 }; 15829 15307 }; 15830 15308 "character-entities-html4-1.1.4" = { ··· 15836 15314 sha512 = "HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g=="; 15837 15315 }; 15838 15316 }; 15317 + "character-entities-html4-2.0.0" = { 15318 + name = "character-entities-html4"; 15319 + packageName = "character-entities-html4"; 15320 + version = "2.0.0"; 15321 + src = fetchurl { 15322 + url = "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.0.0.tgz"; 15323 + sha512 = "dwT2xh5ZhUAjyP96k57ilMKoTQyASaw9IAMR9U5c1lCu2RUni6O6jxfpUEdO2RcPT6TJFvr8pqsbami4Jk+2oA=="; 15324 + }; 15325 + }; 15839 15326 "character-entities-legacy-1.1.4" = { 15840 15327 name = "character-entities-legacy"; 15841 15328 packageName = "character-entities-legacy"; ··· 15845 15332 sha512 = "3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA=="; 15846 15333 }; 15847 15334 }; 15335 + "character-entities-legacy-2.0.0" = { 15336 + name = "character-entities-legacy"; 15337 + packageName = "character-entities-legacy"; 15338 + version = "2.0.0"; 15339 + src = fetchurl { 15340 + url = "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-2.0.0.tgz"; 15341 + sha512 = "YwaEtEvWLpFa6Wh3uVLrvirA/ahr9fki/NUd/Bd4OR6EdJ8D22hovYQEOUCBfQfcqnC4IAMGMsHXY1eXgL4ZZA=="; 15342 + }; 15343 + }; 15848 15344 "character-parser-2.2.0" = { 15849 15345 name = "character-parser"; 15850 15346 packageName = "character-parser"; ··· 15863 15359 sha512 = "mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg=="; 15864 15360 }; 15865 15361 }; 15362 + "character-reference-invalid-2.0.0" = { 15363 + name = "character-reference-invalid"; 15364 + packageName = "character-reference-invalid"; 15365 + version = "2.0.0"; 15366 + src = fetchurl { 15367 + url = "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.0.tgz"; 15368 + sha512 = "pE3Z15lLRxDzWJy7bBHBopRwfI20sbrMVLQTC7xsPglCHf4Wv1e167OgYAFP78co2XlhojDyAqA+IAJse27//g=="; 15369 + }; 15370 + }; 15866 15371 "chardet-0.4.2" = { 15867 15372 name = "chardet"; 15868 15373 packageName = "chardet"; ··· 15881 15386 sha512 = "mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="; 15882 15387 }; 15883 15388 }; 15884 - "chardet-1.3.0" = { 15389 + "chardet-1.4.0" = { 15885 15390 name = "chardet"; 15886 15391 packageName = "chardet"; 15887 - version = "1.3.0"; 15392 + version = "1.4.0"; 15888 15393 src = fetchurl { 15889 - url = "https://registry.npmjs.org/chardet/-/chardet-1.3.0.tgz"; 15890 - sha512 = "cyTQGGptIjIT+CMGT5J/0l9c6Fb+565GCFjjeUTKxUO7w3oR+FcNCMEKTn5xtVKaLFmladN7QF68IiQsv5Fbdw=="; 15394 + url = "https://registry.npmjs.org/chardet/-/chardet-1.4.0.tgz"; 15395 + sha512 = "NpwMDdSIprbYx1CLnfbxEIarI0Z+s9MssEgggMNheGM+WD68yOhV7IEA/3r6tr0yTRgQD0HuZJDw32s99i6L+A=="; 15891 15396 }; 15892 15397 }; 15893 15398 "charenc-0.0.2" = { ··· 15926 15431 sha512 = "+2jlOobSk52c1VU6fzkh3UwqHMdSlgH1xFv9FKMqHiNCpXsGPQa/+81AFa+i3jZ253Mq9aAycPwDjnn1XbRNNw=="; 15927 15432 }; 15928 15433 }; 15929 - "chart.js-3.5.1" = { 15434 + "chart.js-3.6.0" = { 15930 15435 name = "chart.js"; 15931 15436 packageName = "chart.js"; 15932 - version = "3.5.1"; 15437 + version = "3.6.0"; 15933 15438 src = fetchurl { 15934 - url = "https://registry.npmjs.org/chart.js/-/chart.js-3.5.1.tgz"; 15935 - sha512 = "m5kzt72I1WQ9LILwQC4syla/LD/N413RYv2Dx2nnTkRS9iv/ey1xLTt0DnPc/eWV4zI+BgEgDYBIzbQhZHc/PQ=="; 15439 + url = "https://registry.npmjs.org/chart.js/-/chart.js-3.6.0.tgz"; 15440 + sha512 = "iOzzDKePL+bj+ccIsVAgWQehCXv8xOKGbaU2fO/myivH736zcx535PGJzQGanvcSGVOqX6yuLZsN3ygcQ35UgQ=="; 15936 15441 }; 15937 15442 }; 15938 15443 "chartjs-color-2.4.1" = { ··· 16439 15944 sha512 = "VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA=="; 16440 15945 }; 16441 15946 }; 16442 - "clean-css-5.2.1" = { 15947 + "clean-css-4.2.4" = { 16443 15948 name = "clean-css"; 16444 15949 packageName = "clean-css"; 16445 - version = "5.2.1"; 15950 + version = "4.2.4"; 16446 15951 src = fetchurl { 16447 - url = "https://registry.npmjs.org/clean-css/-/clean-css-5.2.1.tgz"; 16448 - sha512 = "ooQCa1/70oRfVdUUGjKpbHuxgMgm8BsDT5EBqBGvPxMoRoGXf4PNx5mMnkjzJ9Ptx4vvmDdha0QVh86QtYIk1g=="; 15952 + url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz"; 15953 + sha512 = "EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A=="; 16449 15954 }; 16450 15955 }; 16451 - "clean-deep-3.4.0" = { 16452 - name = "clean-deep"; 16453 - packageName = "clean-deep"; 16454 - version = "3.4.0"; 15956 + "clean-css-5.2.2" = { 15957 + name = "clean-css"; 15958 + packageName = "clean-css"; 15959 + version = "5.2.2"; 16455 15960 src = fetchurl { 16456 - url = "https://registry.npmjs.org/clean-deep/-/clean-deep-3.4.0.tgz"; 16457 - sha512 = "Lo78NV5ItJL/jl+B5w0BycAisaieJGXK1qYi/9m4SjR8zbqmrUtO7Yhro40wEShGmmxs/aJLI/A+jNhdkXK8mw=="; 15961 + url = "https://registry.npmjs.org/clean-css/-/clean-css-5.2.2.tgz"; 15962 + sha512 = "/eR8ru5zyxKzpBLv9YZvMXgTSSQn7AdkMItMYynsFgGwTveCRVam9IUPFloE85B4vAIj05IuKmmEoV7/AQjT0w=="; 16458 15963 }; 16459 15964 }; 16460 15965 "clean-git-ref-2.0.1" = { ··· 17213 16718 sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg=="; 17214 16719 }; 17215 16720 }; 17216 - "codemaker-1.39.0" = { 16721 + "codemaker-1.40.0" = { 17217 16722 name = "codemaker"; 17218 16723 packageName = "codemaker"; 17219 - version = "1.39.0"; 16724 + version = "1.40.0"; 17220 16725 src = fetchurl { 17221 - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.39.0.tgz"; 17222 - sha512 = "1PPD7ZCC05nrkN47elPcno3zm4Md7XSkG52CvIbNsEcXddc0Ma2xgoMZnWPu+Ab6801FunSqov9X4O+OZle95A=="; 16726 + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.40.0.tgz"; 16727 + sha512 = "X0dMlXILO5r9/YhNAbiLl9kNIfhATfGS8nAT7xC09zREipANnCEbjZuF8jtFGzrD942/k5QNROmqRtqRaZJ1QQ=="; 17223 16728 }; 17224 16729 }; 17225 16730 "codepage-1.4.0" = { ··· 17283 16788 src = fetchurl { 17284 16789 url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"; 17285 16790 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 17286 - }; 17287 - }; 17288 - "color-3.0.0" = { 17289 - name = "color"; 17290 - packageName = "color"; 17291 - version = "3.0.0"; 17292 - src = fetchurl { 17293 - url = "https://registry.npmjs.org/color/-/color-3.0.0.tgz"; 17294 - sha512 = "jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w=="; 17295 16791 }; 17296 16792 }; 17297 16793 "color-3.1.2" = { ··· 17384 16880 sha512 = "hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g=="; 17385 16881 }; 17386 16882 }; 17387 - "colorette-2.0.7" = { 17388 - name = "colorette"; 17389 - packageName = "colorette"; 17390 - version = "2.0.7"; 17391 - src = fetchurl { 17392 - url = "https://registry.npmjs.org/colorette/-/colorette-2.0.7.tgz"; 17393 - sha512 = "wSXeeDPxoi5xKvjvOGxyYlyqB3J+tbowaSsFm1rEsDsDE942aTLftbOE3XMqf3XaYC7QUtcd/3qadNAIEIsAYw=="; 17394 - }; 17395 - }; 17396 16883 "colornames-1.1.1" = { 17397 16884 name = "colornames"; 17398 16885 packageName = "colornames"; ··· 17447 16934 sha512 = "a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA=="; 17448 16935 }; 17449 16936 }; 17450 - "colorspace-1.1.2" = { 16937 + "colorspace-1.1.4" = { 17451 16938 name = "colorspace"; 17452 16939 packageName = "colorspace"; 17453 - version = "1.1.2"; 16940 + version = "1.1.4"; 17454 16941 src = fetchurl { 17455 - url = "https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz"; 17456 - sha512 = "vt+OoIP2d76xLhjwbBaucYlNSpPsrJWPlBTtwCpQKIu6/CSMutyzX93O/Do0qzpH3YoHEes8YEFXyZ797rEhzQ=="; 16942 + url = "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz"; 16943 + sha512 = "BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w=="; 17457 16944 }; 17458 16945 }; 17459 16946 "colour-0.7.1" = { ··· 17663 17150 sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; 17664 17151 }; 17665 17152 }; 17666 - "commander-3.0.2" = { 17667 - name = "commander"; 17668 - packageName = "commander"; 17669 - version = "3.0.2"; 17670 - src = fetchurl { 17671 - url = "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz"; 17672 - sha512 = "Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow=="; 17673 - }; 17674 - }; 17675 17153 "commander-4.1.1" = { 17676 17154 name = "commander"; 17677 17155 packageName = "commander"; ··· 17753 17231 sha512 = "LLKxDvHeL91/8MIyTAD5BFMNtoIwztGPMiM/7Bl8rIPmHCZXRxmSWr91h57dpOpnQ6jIUqEWdXE/uBYMfiVZDA=="; 17754 17232 }; 17755 17233 }; 17234 + "commander-8.3.0" = { 17235 + name = "commander"; 17236 + packageName = "commander"; 17237 + version = "8.3.0"; 17238 + src = fetchurl { 17239 + url = "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"; 17240 + sha512 = "OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="; 17241 + }; 17242 + }; 17756 17243 "commandpost-1.4.0" = { 17757 17244 name = "commandpost"; 17758 17245 packageName = "commandpost"; ··· 17778 17265 src = fetchurl { 17779 17266 url = "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz"; 17780 17267 sha512 = "L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w=="; 17781 - }; 17782 - }; 17783 - "common-path-prefix-3.0.0" = { 17784 - name = "common-path-prefix"; 17785 - packageName = "common-path-prefix"; 17786 - version = "3.0.0"; 17787 - src = fetchurl { 17788 - url = "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz"; 17789 - sha512 = "QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w=="; 17790 17268 }; 17791 17269 }; 17792 17270 "common-tags-1.8.0" = { ··· 18014 17492 sha512 = "4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg=="; 18015 17493 }; 18016 17494 }; 18017 - "concordance-5.0.4" = { 18018 - name = "concordance"; 18019 - packageName = "concordance"; 18020 - version = "5.0.4"; 18021 - src = fetchurl { 18022 - url = "https://registry.npmjs.org/concordance/-/concordance-5.0.4.tgz"; 18023 - sha512 = "OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw=="; 18024 - }; 18025 - }; 18026 17495 "conf-1.4.0" = { 18027 17496 name = "conf"; 18028 17497 packageName = "conf"; ··· 18366 17835 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 18367 17836 }; 18368 17837 }; 18369 - "contentful-management-7.44.1" = { 17838 + "contentful-management-7.44.2" = { 18370 17839 name = "contentful-management"; 18371 17840 packageName = "contentful-management"; 18372 - version = "7.44.1"; 17841 + version = "7.44.2"; 18373 17842 src = fetchurl { 18374 - url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.44.1.tgz"; 18375 - sha512 = "N6cRMl2O7bkpIulPe0nQD78uVC8uaWQBm0XeDnmfUFJHVrPsaU0ix2QR2TjLsFKu6OT6nqxeyl0RS+dlboDV5A=="; 17843 + url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.44.2.tgz"; 17844 + sha512 = "esOtf+vrDpNXd7SGsFd/L6zFAWnzFW3HiIMk4BBu5VCM0XimKJzjZH3FjSBTG8ap/Dck054ov0WL3RBeCBOaMA=="; 18376 17845 }; 18377 17846 }; 18378 17847 "contentful-sdk-core-6.10.3" = { ··· 18573 18042 sha512 = "ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA=="; 18574 18043 }; 18575 18044 }; 18576 - "conventional-commits-parser-3.2.2" = { 18045 + "conventional-commits-parser-3.2.3" = { 18577 18046 name = "conventional-commits-parser"; 18578 18047 packageName = "conventional-commits-parser"; 18579 - version = "3.2.2"; 18048 + version = "3.2.3"; 18580 18049 src = fetchurl { 18581 - url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.2.tgz"; 18582 - sha512 = "Jr9KAKgqAkwXMRHjxDwO/zOCDKod1XdAESHAGuJX38iZ7ZzVti/tvVoysO0suMsdAObp9NQ2rHSsSbnAqZ5f5g=="; 18050 + url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.3.tgz"; 18051 + sha512 = "YyRDR7On9H07ICFpRm/igcdjIqebXbvf4Cff+Pf0BrBys1i1EOzx9iFXNlAbdrLAR8jf7bkUYkDAr8pEy0q4Pw=="; 18583 18052 }; 18584 18053 }; 18585 18054 "conventional-recommended-bump-6.1.0" = { ··· 18789 18258 sha512 = "XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw=="; 18790 18259 }; 18791 18260 }; 18792 - "copy-template-dir-1.4.0" = { 18793 - name = "copy-template-dir"; 18794 - packageName = "copy-template-dir"; 18795 - version = "1.4.0"; 18796 - src = fetchurl { 18797 - url = "https://registry.npmjs.org/copy-template-dir/-/copy-template-dir-1.4.0.tgz"; 18798 - sha512 = "xkXSJhvKz4MfLbVkZ7GyCaFo4ciB3uKI/HHzkGwj1eyTH5+7RTFxW5CE0irWAZgV5oFcO9hd6+NVXAtY9hlo7Q=="; 18799 - }; 18800 - }; 18801 18261 "copy-webpack-plugin-6.0.4" = { 18802 18262 name = "copy-webpack-plugin"; 18803 18263 packageName = "copy-webpack-plugin"; ··· 18879 18339 sha512 = "WJeQqq6jOYgVgg4NrXKL0KLQhi0CT4ZOCvFL+3CQ5o7I6J8HkT5wd53EadMfqTDp1so/MT1J+w2ujhWcCJtN7w=="; 18880 18340 }; 18881 18341 }; 18882 - "core-js-3.18.3" = { 18342 + "core-js-3.19.0" = { 18883 18343 name = "core-js"; 18884 18344 packageName = "core-js"; 18885 - version = "3.18.3"; 18345 + version = "3.19.0"; 18886 18346 src = fetchurl { 18887 - url = "https://registry.npmjs.org/core-js/-/core-js-3.18.3.tgz"; 18888 - sha512 = "tReEhtMReZaPFVw7dajMx0vlsz3oOb8ajgPoHVYGxr8ErnZ6PcYEvvmjGmXlfpnxpkYSdOQttjB+MvVbCGfvLw=="; 18347 + url = "https://registry.npmjs.org/core-js/-/core-js-3.19.0.tgz"; 18348 + sha512 = "L1TpFRWXZ76vH1yLM+z6KssLZrP8Z6GxxW4auoCj+XiViOzNPJCAuTIkn03BGdFe6Z5clX5t64wRIRypsZQrUg=="; 18889 18349 }; 18890 18350 }; 18891 - "core-js-compat-3.18.3" = { 18351 + "core-js-compat-3.19.0" = { 18892 18352 name = "core-js-compat"; 18893 18353 packageName = "core-js-compat"; 18894 - version = "3.18.3"; 18354 + version = "3.19.0"; 18895 18355 src = fetchurl { 18896 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.18.3.tgz"; 18897 - sha512 = "4zP6/y0a2RTHN5bRGT7PTq9lVt3WzvffTNjqnTKsXhkAYNDTkdCLOIfAdOLcQ/7TDdyRj3c+NeHe1NmF1eDScw=="; 18356 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.19.0.tgz"; 18357 + sha512 = "R09rKZ56ccGBebjTLZHvzDxhz93YPT37gBm6qUhnwj3Kt7aCjjZWD1injyNbyeFHxNKfeZBSyds6O9n3MKq1sw=="; 18898 18358 }; 18899 18359 }; 18900 - "core-js-pure-3.18.3" = { 18360 + "core-js-pure-3.19.0" = { 18901 18361 name = "core-js-pure"; 18902 18362 packageName = "core-js-pure"; 18903 - version = "3.18.3"; 18363 + version = "3.19.0"; 18904 18364 src = fetchurl { 18905 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.18.3.tgz"; 18906 - sha512 = "qfskyO/KjtbYn09bn1IPkuhHl5PlJ6IzJ9s9sraJ1EqcuGyLGKzhSM1cY0zgyL9hx42eulQLZ6WaeK5ycJCkqw=="; 18365 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.19.0.tgz"; 18366 + sha512 = "UEQk8AxyCYvNAs6baNoPqDADv7BX0AmBLGxVsrAifPPx/C8EAzV4Q+2ZUJqVzfI2TQQEZITnwUkWcHpgc/IubQ=="; 18907 18367 }; 18908 18368 }; 18909 18369 "core-util-is-1.0.2" = { ··· 19039 18499 src = fetchurl { 19040 18500 url = "https://registry.npmjs.org/cp-file/-/cp-file-7.0.0.tgz"; 19041 18501 sha512 = "0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw=="; 19042 - }; 19043 - }; 19044 - "cp-file-9.1.0" = { 19045 - name = "cp-file"; 19046 - packageName = "cp-file"; 19047 - version = "9.1.0"; 19048 - src = fetchurl { 19049 - url = "https://registry.npmjs.org/cp-file/-/cp-file-9.1.0.tgz"; 19050 - sha512 = "3scnzFj/94eb7y4wyXRWwvzLFaQp87yyfTnChIjlfYrVqp5lVO3E2hIJMeQIltUT0K2ZAB3An1qXcBmwGyvuwA=="; 19051 18502 }; 19052 18503 }; 19053 18504 "cpu-percentage-1.0.3" = { ··· 19149 18600 sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; 19150 18601 }; 19151 18602 }; 19152 - "create-gatsby-1.14.0" = { 18603 + "create-gatsby-2.0.0" = { 19153 18604 name = "create-gatsby"; 19154 18605 packageName = "create-gatsby"; 19155 - version = "1.14.0"; 18606 + version = "2.0.0"; 19156 18607 src = fetchurl { 19157 - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.14.0.tgz"; 19158 - sha512 = "ba081Li7A7T7cHmcoE4oL+MO12k4ck5MWENPcuF9U8fTbOfICf+r3S0Mr+35YKbxr0w25RzhN5VcOS3+rokgbA=="; 18608 + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.0.0.tgz"; 18609 + sha512 = "GppGUN6OJTaf+wlhu1iU2rdluLXQJ079/Sef1VDap70X2fr1S+Ypg+KQRT8IRcLMfSqHBXWOFuWzOU+mD82+2g=="; 19159 18610 }; 19160 18611 }; 19161 18612 "create-graphback-1.0.1" = { ··· 21048 20499 sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b"; 21049 20500 }; 21050 20501 }; 21051 - "date-time-3.1.0" = { 21052 - name = "date-time"; 21053 - packageName = "date-time"; 21054 - version = "3.1.0"; 21055 - src = fetchurl { 21056 - url = "https://registry.npmjs.org/date-time/-/date-time-3.1.0.tgz"; 21057 - sha512 = "uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg=="; 21058 - }; 21059 - }; 21060 20502 "dateformat-2.2.0" = { 21061 20503 name = "dateformat"; 21062 20504 packageName = "dateformat"; ··· 21316 20758 src = fetchurl { 21317 20759 url = "https://registry.npmjs.org/decache/-/decache-4.4.0.tgz"; 21318 20760 sha1 = "6f6df6b85d7e7c4410a932ffc26489b78e9acd13"; 21319 - }; 21320 - }; 21321 - "decache-4.6.0" = { 21322 - name = "decache"; 21323 - packageName = "decache"; 21324 - version = "4.6.0"; 21325 - src = fetchurl { 21326 - url = "https://registry.npmjs.org/decache/-/decache-4.6.0.tgz"; 21327 - sha512 = "PppOuLiz+DFeaUvFXEYZjLxAkKiMYH/do/b/MxpDe/8AgKBi5GhZxridoVIbBq72GDbL36e4p0Ce2jTGUwwU+w=="; 21328 20761 }; 21329 20762 }; 21330 20763 "decamelize-1.2.0" = { ··· 21948 21381 sha1 = "3a36287f5034e699e7577901052c2e6c94251631"; 21949 21382 }; 21950 21383 }; 21951 - "denque-1.5.0" = { 21384 + "denque-1.5.1" = { 21952 21385 name = "denque"; 21953 21386 packageName = "denque"; 21954 - version = "1.5.0"; 21387 + version = "1.5.1"; 21955 21388 src = fetchurl { 21956 - url = "https://registry.npmjs.org/denque/-/denque-1.5.0.tgz"; 21957 - sha512 = "CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ=="; 21389 + url = "https://registry.npmjs.org/denque/-/denque-1.5.1.tgz"; 21390 + sha512 = "XwE+iZ4D6ZUB7mfYRMb5wByE8L74HCn30FBN7sWnXksWc1LO1bPDl67pBR9o/kC4z/xSNAwkMYcGgqDV3BE3Hw=="; 21958 21391 }; 21959 21392 }; 21960 - "denque-1.5.1" = { 21393 + "denque-2.0.1" = { 21961 21394 name = "denque"; 21962 21395 packageName = "denque"; 21963 - version = "1.5.1"; 21396 + version = "2.0.1"; 21964 21397 src = fetchurl { 21965 - url = "https://registry.npmjs.org/denque/-/denque-1.5.1.tgz"; 21966 - sha512 = "XwE+iZ4D6ZUB7mfYRMb5wByE8L74HCn30FBN7sWnXksWc1LO1bPDl67pBR9o/kC4z/xSNAwkMYcGgqDV3BE3Hw=="; 21398 + url = "https://registry.npmjs.org/denque/-/denque-2.0.1.tgz"; 21399 + sha512 = "tfiWc6BQLXNLpNiR5iGd0Ocu3P3VpxfzFiqubLgMfhfOw9WyvgJBd46CClNn9k3qfbjvT//0cf7AlYRX/OslMQ=="; 21967 21400 }; 21968 21401 }; 21969 21402 "dep-graph-1.1.0" = { ··· 22036 21469 src = fetchurl { 22037 21470 url = "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.1.tgz"; 22038 21471 sha512 = "1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw=="; 21472 + }; 21473 + }; 21474 + "dequal-2.0.2" = { 21475 + name = "dequal"; 21476 + packageName = "dequal"; 21477 + version = "2.0.2"; 21478 + src = fetchurl { 21479 + url = "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz"; 21480 + sha512 = "q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug=="; 22039 21481 }; 22040 21482 }; 22041 21483 "deref-0.6.4" = { ··· 22200 21642 sha512 = "6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg=="; 22201 21643 }; 22202 21644 }; 22203 - "detective-amd-3.1.0" = { 22204 - name = "detective-amd"; 22205 - packageName = "detective-amd"; 22206 - version = "3.1.0"; 22207 - src = fetchurl { 22208 - url = "https://registry.npmjs.org/detective-amd/-/detective-amd-3.1.0.tgz"; 22209 - sha512 = "G7wGWT6f0VErjUkE2utCm7IUshT7nBh7aBBH2VBOiY9Dqy2DMens5iiOvYCuhstoIxRKLrnOvVAz4/EyPIAjnw=="; 22210 - }; 22211 - }; 22212 - "detective-cjs-3.1.1" = { 22213 - name = "detective-cjs"; 22214 - packageName = "detective-cjs"; 22215 - version = "3.1.1"; 22216 - src = fetchurl { 22217 - url = "https://registry.npmjs.org/detective-cjs/-/detective-cjs-3.1.1.tgz"; 22218 - sha512 = "JQtNTBgFY6h8uT6pgph5QpV3IyxDv+z3qPk/FZRDT9TlFfm5dnRtpH39WtQEr1khqsUxVqXzKjZHpdoQvQbllg=="; 22219 - }; 22220 - }; 22221 - "detective-es6-2.2.0" = { 22222 - name = "detective-es6"; 22223 - packageName = "detective-es6"; 22224 - version = "2.2.0"; 22225 - src = fetchurl { 22226 - url = "https://registry.npmjs.org/detective-es6/-/detective-es6-2.2.0.tgz"; 22227 - sha512 = "fSpNY0SLER7/sVgQZ1NxJPwmc9uCTzNgdkQDhAaj8NPYwr7Qji9QBcmbNvtMCnuuOGMuKn3O7jv0An+/WRWJZQ=="; 22228 - }; 22229 - }; 22230 - "detective-less-1.0.2" = { 22231 - name = "detective-less"; 22232 - packageName = "detective-less"; 22233 - version = "1.0.2"; 22234 - src = fetchurl { 22235 - url = "https://registry.npmjs.org/detective-less/-/detective-less-1.0.2.tgz"; 22236 - sha512 = "Rps1xDkEEBSq3kLdsdnHZL1x2S4NGDcbrjmd4q+PykK5aJwDdP5MBgrJw1Xo+kyUHuv3JEzPqxr+Dj9ryeDRTA=="; 22237 - }; 22238 - }; 22239 - "detective-postcss-4.0.0" = { 22240 - name = "detective-postcss"; 22241 - packageName = "detective-postcss"; 22242 - version = "4.0.0"; 22243 - src = fetchurl { 22244 - url = "https://registry.npmjs.org/detective-postcss/-/detective-postcss-4.0.0.tgz"; 22245 - sha512 = "Fwc/g9VcrowODIAeKRWZfVA/EufxYL7XfuqJQFroBKGikKX83d2G7NFw6kDlSYGG3LNQIyVa+eWv1mqre+v4+A=="; 22246 - }; 22247 - }; 22248 - "detective-sass-3.0.1" = { 22249 - name = "detective-sass"; 22250 - packageName = "detective-sass"; 22251 - version = "3.0.1"; 22252 - src = fetchurl { 22253 - url = "https://registry.npmjs.org/detective-sass/-/detective-sass-3.0.1.tgz"; 22254 - sha512 = "oSbrBozRjJ+QFF4WJFbjPQKeakoaY1GiR380NPqwdbWYd5wfl5cLWv0l6LsJVqrgWfFN1bjFqSeo32Nxza8Lbw=="; 22255 - }; 22256 - }; 22257 - "detective-scss-2.0.1" = { 22258 - name = "detective-scss"; 22259 - packageName = "detective-scss"; 22260 - version = "2.0.1"; 22261 - src = fetchurl { 22262 - url = "https://registry.npmjs.org/detective-scss/-/detective-scss-2.0.1.tgz"; 22263 - sha512 = "VveyXW4WQE04s05KlJ8K0bG34jtHQVgTc9InspqoQxvnelj/rdgSAy7i2DXAazyQNFKlWSWbS+Ro2DWKFOKTPQ=="; 22264 - }; 22265 - }; 22266 - "detective-stylus-1.0.0" = { 22267 - name = "detective-stylus"; 22268 - packageName = "detective-stylus"; 22269 - version = "1.0.0"; 22270 - src = fetchurl { 22271 - url = "https://registry.npmjs.org/detective-stylus/-/detective-stylus-1.0.0.tgz"; 22272 - sha1 = "50aee7db8babb990381f010c63fabba5b58e54cd"; 22273 - }; 22274 - }; 22275 - "detective-typescript-7.0.0" = { 22276 - name = "detective-typescript"; 22277 - packageName = "detective-typescript"; 22278 - version = "7.0.0"; 22279 - src = fetchurl { 22280 - url = "https://registry.npmjs.org/detective-typescript/-/detective-typescript-7.0.0.tgz"; 22281 - sha512 = "y/Ev98AleGvl43YKTNcA2Q+lyFmsmCfTTNWy4cjEJxoLkbobcXtRS0Kvx06daCgr2GdtlwLfNzL553BkktfJoA=="; 22282 - }; 22283 - }; 22284 21645 "dev-ip-1.0.1" = { 22285 21646 name = "dev-ip"; 22286 21647 packageName = "dev-ip"; ··· 22443 21804 sha512 = "Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg=="; 22444 21805 }; 22445 21806 }; 22446 - "diff2html-3.4.12" = { 21807 + "diff2html-3.4.13" = { 22447 21808 name = "diff2html"; 22448 21809 packageName = "diff2html"; 22449 - version = "3.4.12"; 21810 + version = "3.4.13"; 22450 21811 src = fetchurl { 22451 - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.12.tgz"; 22452 - sha512 = "wBkttlsIQHwJxrikGQeU98SSv9QQZysyKo3uEDtXLA0Axfj4bPSFkx6g4WT3jSGRLY67jLp1wmFXwtEaHsxD4A=="; 21812 + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.13.tgz"; 21813 + sha512 = "IQb+P3aDVjjctcpRF089E9Uxjb6JInu/1SDklLaw2KapdwXKl3xd87mieweR2h6hNvdyAlylMHRrwK8M4oV1Sw=="; 22453 21814 }; 22454 21815 }; 22455 21816 "diff3-0.0.3" = { ··· 22731 22092 sha512 = "QjNH/VnTrWjlDekJtk5GBKbypcFUBdGexd+eOAeivwwSWky6bIJps1cw/qw1jU5K3TDMgtufAHaBh7OV5X/EqA=="; 22732 22093 }; 22733 22094 }; 22734 - "dockerfile-language-service-0.7.2" = { 22095 + "dockerfile-language-service-0.7.3" = { 22735 22096 name = "dockerfile-language-service"; 22736 22097 packageName = "dockerfile-language-service"; 22737 - version = "0.7.2"; 22098 + version = "0.7.3"; 22738 22099 src = fetchurl { 22739 - url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.7.2.tgz"; 22740 - sha512 = "kG2/HrdNz4Hp6O9F2akKSODufQ0BTwXE4hd4kCUOp99de47+r8GpWKOyqpJswr+kbvttPmxcnVdV8wT77c2p5g=="; 22100 + url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.7.3.tgz"; 22101 + sha512 = "zTDkmeBmafVGDx/34gWAst8tAysx2bUWcSnw+f5SI+b3SzpJNUzoWpgm7xtoNwHoWRuB7xHdiGmvkbrRfA2o8Q=="; 22741 22102 }; 22742 22103 }; 22743 22104 "dockerfile-utils-0.9.2" = { ··· 23181 22542 sha512 = "xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ=="; 23182 22543 }; 23183 22544 }; 23184 - "download-8.0.0" = { 23185 - name = "download"; 23186 - packageName = "download"; 23187 - version = "8.0.0"; 23188 - src = fetchurl { 23189 - url = "https://registry.npmjs.org/download/-/download-8.0.0.tgz"; 23190 - sha512 = "ASRY5QhDk7FK+XrQtQyvhpDKanLluEEQtWl/J7Lxuf/b+i8RYh997QeXvL85xitrmRKVlx9c7eTrcRdq2GS4eA=="; 23191 - }; 23192 - }; 23193 22545 "download-git-repo-1.1.0" = { 23194 22546 name = "download-git-repo"; 23195 22547 packageName = "download-git-repo"; ··· 23505 22857 sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw=="; 23506 22858 }; 23507 22859 }; 23508 - "electron-13.5.2" = { 22860 + "electron-13.6.0" = { 23509 22861 name = "electron"; 23510 22862 packageName = "electron"; 23511 - version = "13.5.2"; 22863 + version = "13.6.0"; 23512 22864 src = fetchurl { 23513 - url = "https://registry.npmjs.org/electron/-/electron-13.5.2.tgz"; 23514 - sha512 = "CPakwDpy5m8dL0383F5uJboQcVtn9bT/+6/wdDKo8LuTUO9aER1TF41v7feZgZW2c+UwoGPWa814ElSQ3qta2A=="; 22865 + url = "https://registry.npmjs.org/electron/-/electron-13.6.0.tgz"; 22866 + sha512 = "VDOUmRwa4eQ+5iXE+XHKXKX+2yk8Ey5uBe3nH9Hj6zNPUBY2S0EOClw7U90Ve2lLHXiQ6DnguNmDgOZKJLcHFQ=="; 23515 22867 }; 23516 22868 }; 23517 22869 "electron-notarize-1.1.1" = { ··· 23550 22902 sha512 = "9oxNmKlDCaf651c+yJWCDIBpF6A9aY+wQtasLEeR5AsPYPuOKEX6xHnC2+WgCLOC94JEpCZznecyC84fbwZq4A=="; 23551 22903 }; 23552 22904 }; 23553 - "electron-to-chromium-1.3.870" = { 22905 + "electron-to-chromium-1.3.880" = { 23554 22906 name = "electron-to-chromium"; 23555 22907 packageName = "electron-to-chromium"; 23556 - version = "1.3.870"; 22908 + version = "1.3.880"; 23557 22909 src = fetchurl { 23558 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.870.tgz"; 23559 - sha512 = "PiJMshfq6PL+i1V+nKLwhHbCKeD8eAz8rvO9Cwk/7cChOHJBtufmjajLyYLsSRHguRFiOCVx3XzJLeZsIAYfSA=="; 22910 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.880.tgz"; 22911 + sha512 = "iwIP/6WoeSimzUKJIQtjtpVDsK8Ir8qQCMXsUBwg+rxJR2Uh3wTNSbxoYRfs+3UWx/9MAnPIxVZCyWkm8MT0uw=="; 23560 22912 }; 23561 22913 }; 23562 22914 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 23594 22946 src = fetchurl { 23595 22947 url = "https://registry.npmjs.org/elementtree/-/elementtree-0.1.7.tgz"; 23596 22948 sha1 = "9ac91be6e52fb6e6244c4e54a4ac3ed8ae8e29c0"; 23597 - }; 23598 - }; 23599 - "elf-cam-0.1.1" = { 23600 - name = "elf-cam"; 23601 - packageName = "elf-cam"; 23602 - version = "0.1.1"; 23603 - src = fetchurl { 23604 - url = "https://registry.npmjs.org/elf-cam/-/elf-cam-0.1.1.tgz"; 23605 - sha512 = "tKSFTWOp5OwJSp6MKyQDX7umYDkvUuI8rxHXw8BuUQ63d9Trj9xLeo6SHyoTGSoZNNZVitFa+RuHHXuoAzN3Rw=="; 23606 22949 }; 23607 22950 }; 23608 22951 "elliptic-6.5.4" = { ··· 23903 23246 sha512 = "21HlvPUKaitDGE4GXNtQ7PLP0Sz4aWLddMPw2VTyFz1FVZqu/kZsJUO8WNpKuE/OCL7nkfRaOui2ZCJloGznGA=="; 23904 23247 }; 23905 23248 }; 23906 - "engine.io-4.1.1" = { 23907 - name = "engine.io"; 23908 - packageName = "engine.io"; 23909 - version = "4.1.1"; 23910 - src = fetchurl { 23911 - url = "https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz"; 23912 - sha512 = "t2E9wLlssQjGw0nluF6aYyfX8LwYU8Jj0xct+pAhfWfv/YrBn6TSNtEYsgxHIfaMqfrLx07czcMg9bMN6di+3w=="; 23913 - }; 23914 - }; 23915 23249 "engine.io-5.1.1" = { 23916 23250 name = "engine.io"; 23917 23251 packageName = "engine.io"; ··· 24002 23336 sha512 = "xEAAY0msNnESNPc00e19y5heTPX4y/TJ36gr8t1voOaNmTojP9b3oK3BbJLFufW2XFPQaaijpFewm2g2Um3uqA=="; 24003 23337 }; 24004 23338 }; 24005 - "engine.io-parser-5.0.0" = { 23339 + "engine.io-parser-5.0.1" = { 24006 23340 name = "engine.io-parser"; 24007 23341 packageName = "engine.io-parser"; 24008 - version = "5.0.0"; 23342 + version = "5.0.1"; 24009 23343 src = fetchurl { 24010 - url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.0.tgz"; 24011 - sha512 = "wn6QavHEqXoM+cg+x8uUG7GhxLBCfKEKNEsCNc7V2ugj3gB3lK91l1MuZiy6xFB2V9D1eew0aWkmpiT/aBb/KA=="; 23344 + url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.1.tgz"; 23345 + sha512 = "j4p3WwJrG2k92VISM0op7wiq60vO92MlF3CRGxhKHy9ywG1/Dkc72g0dXeDQ+//hrcDn8gqQzoEkdO9FN0d9AA=="; 24012 23346 }; 24013 23347 }; 24014 23348 "enhanced-resolve-2.3.0" = { ··· 24146 23480 sha512 = "bHz59NlBbtS0NhftmR8+ExBEekE7br0e01jw+kk0NDro7TtZzBYZ5ScGPs3OmwnpyfHTHOtr1Y6uedCdrIldtg=="; 24147 23481 }; 24148 23482 }; 24149 - "envinfo-7.5.0" = { 24150 - name = "envinfo"; 24151 - packageName = "envinfo"; 24152 - version = "7.5.0"; 24153 - src = fetchurl { 24154 - url = "https://registry.npmjs.org/envinfo/-/envinfo-7.5.0.tgz"; 24155 - sha512 = "jDgnJaF/Btomk+m3PZDTTCb5XIIIX3zYItnCRfF73zVgvinLoRomuhi75Y4su0PtQxWz4v66XnLLckyvyJTOIQ=="; 24156 - }; 24157 - }; 24158 23483 "envinfo-7.7.3" = { 24159 23484 name = "envinfo"; 24160 23485 packageName = "envinfo"; ··· 24279 23604 src = fetchurl { 24280 23605 url = "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz"; 24281 23606 sha512 = "+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ=="; 24282 - }; 24283 - }; 24284 - "es-module-lexer-0.7.1" = { 24285 - name = "es-module-lexer"; 24286 - packageName = "es-module-lexer"; 24287 - version = "0.7.1"; 24288 - src = fetchurl { 24289 - url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz"; 24290 - sha512 = "MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw=="; 24291 23607 }; 24292 23608 }; 24293 23609 "es-module-lexer-0.9.3" = { ··· 24668 23984 sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ=="; 24669 23985 }; 24670 23986 }; 24671 - "eslint-plugin-vue-7.19.1" = { 23987 + "eslint-plugin-vue-7.20.0" = { 24672 23988 name = "eslint-plugin-vue"; 24673 23989 packageName = "eslint-plugin-vue"; 24674 - version = "7.19.1"; 23990 + version = "7.20.0"; 24675 23991 src = fetchurl { 24676 - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.19.1.tgz"; 24677 - sha512 = "e2pD7nW2sTY04ThH+66BgToNwC4n6dqfNhKE+ypdJFtZgn3Zn+nP8ZEIFPG0PGqCKQ3qxy8dJk1bzUsuQd3ANA=="; 23992 + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.20.0.tgz"; 23993 + sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw=="; 24678 23994 }; 24679 23995 }; 24680 23996 "eslint-scope-3.7.3" = { ··· 24992 24308 sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="; 24993 24309 }; 24994 24310 }; 24995 - "estraverse-5.2.0" = { 24311 + "estraverse-5.3.0" = { 24996 24312 name = "estraverse"; 24997 24313 packageName = "estraverse"; 24998 - version = "5.2.0"; 24314 + version = "5.3.0"; 24999 24315 src = fetchurl { 25000 - url = "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"; 25001 - sha512 = "BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="; 24316 + url = "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"; 24317 + sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="; 25002 24318 }; 25003 24319 }; 25004 - "estree-util-is-identifier-name-1.1.0" = { 24320 + "estree-util-is-identifier-name-2.0.0" = { 25005 24321 name = "estree-util-is-identifier-name"; 25006 24322 packageName = "estree-util-is-identifier-name"; 24323 + version = "2.0.0"; 24324 + src = fetchurl { 24325 + url = "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.0.tgz"; 24326 + sha512 = "aXXZFVMnBBDRP81vS4YtAYJ0hUkgEsXea7lNKWCOeaAquGb1Jm2rcONPB5fpzwgbNxulTvrWuKnp9UElUGAKeQ=="; 24327 + }; 24328 + }; 24329 + "estree-util-visit-1.1.0" = { 24330 + name = "estree-util-visit"; 24331 + packageName = "estree-util-visit"; 25007 24332 version = "1.1.0"; 25008 24333 src = fetchurl { 25009 - url = "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz"; 25010 - sha512 = "OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ=="; 24334 + url = "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.1.0.tgz"; 24335 + sha512 = "3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ=="; 25011 24336 }; 25012 24337 }; 25013 24338 "estree-walker-0.6.1" = { ··· 25019 24344 sha512 = "SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w=="; 25020 24345 }; 25021 24346 }; 25022 - "estree-walker-1.0.1" = { 25023 - name = "estree-walker"; 25024 - packageName = "estree-walker"; 25025 - version = "1.0.1"; 25026 - src = fetchurl { 25027 - url = "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz"; 25028 - sha512 = "1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg=="; 25029 - }; 25030 - }; 25031 24347 "estree-walker-2.0.2" = { 25032 24348 name = "estree-walker"; 25033 24349 packageName = "estree-walker"; ··· 25604 24920 sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929"; 25605 24921 }; 25606 24922 }; 25607 - "expo-pwa-0.0.95" = { 24923 + "expo-pwa-0.0.101" = { 25608 24924 name = "expo-pwa"; 25609 24925 packageName = "expo-pwa"; 25610 - version = "0.0.95"; 24926 + version = "0.0.101"; 25611 24927 src = fetchurl { 25612 - url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.95.tgz"; 25613 - sha512 = "GV9rnBQ1HBwT2jPif11BoFdP9QXd0fFGq0QJd49U2/3UDT8IZIHj7np3StpbA6cz6h+l1aPo3jwXBB+kb/7xFQ=="; 24928 + url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.101.tgz"; 24929 + sha512 = "VuePnFnyHWUfb4D0axkvRmRHeGzznDY5EBxqhQG7MLa7M+d3gtpjmJ2tkkVBg7gtTvaU9OdELT71ayKy8Itftg=="; 25614 24930 }; 25615 24931 }; 25616 24932 "express-2.5.11" = { ··· 25649 24965 sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; 25650 24966 }; 25651 24967 }; 25652 - "express-async-handler-1.1.4" = { 24968 + "express-async-handler-1.2.0" = { 25653 24969 name = "express-async-handler"; 25654 24970 packageName = "express-async-handler"; 25655 - version = "1.1.4"; 24971 + version = "1.2.0"; 25656 24972 src = fetchurl { 25657 - url = "https://registry.npmjs.org/express-async-handler/-/express-async-handler-1.1.4.tgz"; 25658 - sha512 = "HdmbVF4V4w1q/iz++RV7bUxIeepTukWewiJGkoCKQMtvPF11MLTa7It9PRc/reysXXZSEyD4Pthchju+IUbMiQ=="; 24973 + url = "https://registry.npmjs.org/express-async-handler/-/express-async-handler-1.2.0.tgz"; 24974 + sha512 = "rCSVtPXRmQSW8rmik/AIb2P0op6l7r1fMW538yyvTMltCO4xQEWMmobfrIxN2V1/mVrgxB8Az3reYF6yUZw37w=="; 25659 24975 }; 25660 24976 }; 25661 24977 "express-graphql-0.12.0" = { ··· 25683 24999 src = fetchurl { 25684 25000 url = "https://registry.npmjs.org/express-history-api-fallback/-/express-history-api-fallback-2.2.1.tgz"; 25685 25001 sha1 = "3a2ad27f7bebc90fc533d110d7c6d83097bcd057"; 25686 - }; 25687 - }; 25688 - "express-logging-1.1.1" = { 25689 - name = "express-logging"; 25690 - packageName = "express-logging"; 25691 - version = "1.1.1"; 25692 - src = fetchurl { 25693 - url = "https://registry.npmjs.org/express-logging/-/express-logging-1.1.1.tgz"; 25694 - sha1 = "62839618cbab5bb3610f1a1c1485352fe9d26c2a"; 25695 25002 }; 25696 25003 }; 25697 25004 "express-normalize-query-params-middleware-0.5.1" = { ··· 26117 25424 sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; 26118 25425 }; 26119 25426 }; 26120 - "fast-equals-2.0.3" = { 26121 - name = "fast-equals"; 26122 - packageName = "fast-equals"; 26123 - version = "2.0.3"; 26124 - src = fetchurl { 26125 - url = "https://registry.npmjs.org/fast-equals/-/fast-equals-2.0.3.tgz"; 26126 - sha512 = "0EMw4TTUxsMDpDkCg0rXor2gsg+npVrMIHbEhvD0HZyIhUX6AktC/yasm+qKwfyswd06Qy95ZKk8p2crTo0iPA=="; 26127 - }; 26128 - }; 26129 25427 "fast-fifo-1.0.0" = { 26130 25428 name = "fast-fifo"; 26131 25429 packageName = "fast-fifo"; ··· 26450 25748 sha1 = "b2497f47a57d9026b3907c09756acf5f4bd34e8b"; 26451 25749 }; 26452 25750 }; 26453 - "fetch-node-website-5.0.3" = { 26454 - name = "fetch-node-website"; 26455 - packageName = "fetch-node-website"; 26456 - version = "5.0.3"; 26457 - src = fetchurl { 26458 - url = "https://registry.npmjs.org/fetch-node-website/-/fetch-node-website-5.0.3.tgz"; 26459 - sha512 = "O86T46FUWSOq4AWON39oaT8H90QFKAbmjfOVBhgaS87AFfeW00txz73KTv7QopPWtHBbGdI1S8cIT1VK1OQYLg=="; 26460 - }; 26461 - }; 26462 25751 "fetch-retry-4.1.1" = { 26463 25752 name = "fetch-retry"; 26464 25753 packageName = "fetch-retry"; ··· 26603 25892 sha1 = "48d578b93b8a8cc9c163d950cc9636e3fc8acc1c"; 26604 25893 }; 26605 25894 }; 26606 - "file-size-0.0.5" = { 26607 - name = "file-size"; 26608 - packageName = "file-size"; 26609 - version = "0.0.5"; 26610 - src = fetchurl { 26611 - url = "https://registry.npmjs.org/file-size/-/file-size-0.0.5.tgz"; 26612 - sha1 = "057d43c3a3ed735da3f90d6052ab380f1e6d5e3b"; 26613 - }; 26614 - }; 26615 25895 "file-type-10.11.0" = { 26616 25896 name = "file-type"; 26617 25897 packageName = "file-type"; ··· 26619 25899 src = fetchurl { 26620 25900 url = "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz"; 26621 25901 sha512 = "uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw=="; 26622 - }; 26623 - }; 26624 - "file-type-11.1.0" = { 26625 - name = "file-type"; 26626 - packageName = "file-type"; 26627 - version = "11.1.0"; 26628 - src = fetchurl { 26629 - url = "https://registry.npmjs.org/file-type/-/file-type-11.1.0.tgz"; 26630 - sha512 = "rM0UO7Qm9K7TWTtA6AShI/t7H5BPjDeGVDaNyg9BjHAj3PysKy7+8C8D137R88jnR3rFJZQB/tFgydl5sN5m7g=="; 26631 25902 }; 26632 25903 }; 26633 25904 "file-type-14.7.1" = { ··· 26747 26018 sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA=="; 26748 26019 }; 26749 26020 }; 26750 - "filenamify-3.0.0" = { 26751 - name = "filenamify"; 26752 - packageName = "filenamify"; 26753 - version = "3.0.0"; 26754 - src = fetchurl { 26755 - url = "https://registry.npmjs.org/filenamify/-/filenamify-3.0.0.tgz"; 26756 - sha512 = "5EFZ//MsvJgXjBAFJ+Bh2YaCTRF/VP1YOmGrgt+KJ4SFRLjI87EIdwLLuT6wQX0I4F9W41xutobzczjsOKlI/g=="; 26757 - }; 26758 - }; 26759 26021 "filenamify-4.1.0" = { 26760 26022 name = "filenamify"; 26761 26023 packageName = "filenamify"; ··· 27242 26504 sha1 = "554440766da0a0d603999f433453f6c2fc6a75c1"; 27243 26505 }; 27244 26506 }; 27245 - "flatten-1.0.3" = { 27246 - name = "flatten"; 27247 - packageName = "flatten"; 27248 - version = "1.0.3"; 27249 - src = fetchurl { 27250 - url = "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz"; 27251 - sha512 = "dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg=="; 27252 - }; 27253 - }; 27254 26507 "flora-colossus-1.0.1" = { 27255 26508 name = "flora-colossus"; 27256 26509 packageName = "flora-colossus"; ··· 27269 26522 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 27270 26523 }; 27271 26524 }; 27272 - "flow-parser-0.162.0" = { 26525 + "flow-parser-0.162.1" = { 27273 26526 name = "flow-parser"; 27274 26527 packageName = "flow-parser"; 27275 - version = "0.162.0"; 26528 + version = "0.162.1"; 27276 26529 src = fetchurl { 27277 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.162.0.tgz"; 27278 - sha512 = "tqn7GkffCpBkGl6cFPHk08gug2Gb+KgE4ShDJmYVUFAARKvwtgxiLbLk2pv22KMLtzin+OPeCku3UoBE66nQDg=="; 26530 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.162.1.tgz"; 26531 + sha512 = "yp0oSVaawR8p39PGhOb/TtclByOxJirI+DVPR99GkeRY8xZ/4gLt+BeqcLgJsed1tE1YwMgdiAYKSfhoLTFVeg=="; 27279 26532 }; 27280 26533 }; 27281 26534 "fluent-ffmpeg-2.1.2" = { ··· 27395 26648 sha512 = "3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w=="; 27396 26649 }; 27397 26650 }; 27398 - "flush-write-stream-2.0.0" = { 27399 - name = "flush-write-stream"; 27400 - packageName = "flush-write-stream"; 27401 - version = "2.0.0"; 27402 - src = fetchurl { 27403 - url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-2.0.0.tgz"; 27404 - sha512 = "uXClqPxT4xW0lcdSBheb2ObVU+kuqUk3Jk64EwieirEXZx9XUrVwp/JuBfKAWaM4T5Td/VL7QLDWPXp/MvGm/g=="; 27405 - }; 27406 - }; 27407 26651 "fn-annotate-1.2.0" = { 27408 26652 name = "fn-annotate"; 27409 26653 packageName = "fn-annotate"; ··· 27429 26673 src = fetchurl { 27430 26674 url = "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz"; 27431 26675 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 27432 - }; 27433 - }; 27434 - "folder-walker-3.2.0" = { 27435 - name = "folder-walker"; 27436 - packageName = "folder-walker"; 27437 - version = "3.2.0"; 27438 - src = fetchurl { 27439 - url = "https://registry.npmjs.org/folder-walker/-/folder-walker-3.2.0.tgz"; 27440 - sha512 = "VjAQdSLsl6AkpZNyrQJfO7BXLo4chnStqb055bumZMbRUPpVuPN3a4ktsnRCmrFZjtMlYLkyXiR5rAs4WOpC4Q=="; 27441 26676 }; 27442 26677 }; 27443 26678 "follow-redirects-1.14.4" = { ··· 27566 26801 sha512 = "DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw=="; 27567 26802 }; 27568 26803 }; 27569 - "fork-ts-checker-webpack-plugin-6.3.3" = { 26804 + "fork-ts-checker-webpack-plugin-6.3.4" = { 27570 26805 name = "fork-ts-checker-webpack-plugin"; 27571 26806 packageName = "fork-ts-checker-webpack-plugin"; 27572 - version = "6.3.3"; 26807 + version = "6.3.4"; 27573 26808 src = fetchurl { 27574 - url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.3.3.tgz"; 27575 - sha512 = "S3uMSg8IsIvs0H6VAfojtbf6RcnEXxEpDMT2Q41M2l0m20JO8eA1t4cCJybvrasC8SvvPEtK4B8ztxxfLljhNg=="; 26809 + url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.3.4.tgz"; 26810 + sha512 = "z0dns2NXH9NHH0wpW6iuUmyXYRN9BI2Lqnv+RCdL+9GXSW6tKUqYnwf+h3ZaucJsbsrdobdxuOELGgm1xVZITA=="; 27576 26811 }; 27577 26812 }; 27578 26813 "form-data-1.0.0-rc3" = { ··· 27800 27035 sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af"; 27801 27036 }; 27802 27037 }; 27803 - "from2-array-0.0.4" = { 27804 - name = "from2-array"; 27805 - packageName = "from2-array"; 27806 - version = "0.0.4"; 27807 - src = fetchurl { 27808 - url = "https://registry.npmjs.org/from2-array/-/from2-array-0.0.4.tgz"; 27809 - sha1 = "eafc16b65f6e2719bcd57fdc1869005ac1332cd6"; 27810 - }; 27811 - }; 27812 27038 "fs-capacitor-2.0.4" = { 27813 27039 name = "fs-capacitor"; 27814 27040 packageName = "fs-capacitor"; ··· 27827 27053 sha512 = "KhjJmZAs2eqfhCb6PdPx4RcZtheGTz86tpTC5JTvqBn/xda+Nb+0C7dCyjOSN7T76H6a56LvH0SVXQMchLXDRw=="; 27828 27054 }; 27829 27055 }; 27830 - "fs-chunk-store-2.0.3" = { 27056 + "fs-chunk-store-2.0.4" = { 27831 27057 name = "fs-chunk-store"; 27832 27058 packageName = "fs-chunk-store"; 27833 - version = "2.0.3"; 27059 + version = "2.0.4"; 27834 27060 src = fetchurl { 27835 - url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-2.0.3.tgz"; 27836 - sha512 = "qQi93nHX3880gtoQPt1hKQcuYBNVfCbMk8OVRDqR0cJ0riheELW25ry9yl7pII8E9gOAONTGKBD5N/zGHFSVQg=="; 27061 + url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-2.0.4.tgz"; 27062 + sha512 = "JfeKRPPWkLaUoNKZdi+eLPKzZkZK1pdj2Y5lidEw9fUCkglvK/muLe6ONjdvn8yAGrDsk4tkjNp52GS658yy0g=="; 27837 27063 }; 27838 27064 }; 27839 27065 "fs-constants-1.0.0" = { ··· 28205 27431 sha512 = "/gYxR/0VpXmWSfZOIPS3rWwU8SHgsRTwWuXhyb2O6s7aRuVtHtxCkR33bNYu3wyLyNx/Wpv0vU7FZy8Vj53VNw=="; 28206 27432 }; 28207 27433 }; 28208 - "fuzzy-0.1.3" = { 28209 - name = "fuzzy"; 28210 - packageName = "fuzzy"; 28211 - version = "0.1.3"; 28212 - src = fetchurl { 28213 - url = "https://registry.npmjs.org/fuzzy/-/fuzzy-0.1.3.tgz"; 28214 - sha1 = "4c76ec2ff0ac1a36a9dccf9a00df8623078d4ed8"; 28215 - }; 28216 - }; 28217 27434 "fuzzy-search-3.2.1" = { 28218 27435 name = "fuzzy-search"; 28219 27436 packageName = "fuzzy-search"; ··· 28250 27467 sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9"; 28251 27468 }; 28252 27469 }; 28253 - "gatsby-core-utils-2.14.0" = { 27470 + "gatsby-core-utils-3.0.0" = { 28254 27471 name = "gatsby-core-utils"; 28255 27472 packageName = "gatsby-core-utils"; 28256 - version = "2.14.0"; 27473 + version = "3.0.0"; 28257 27474 src = fetchurl { 28258 - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.14.0.tgz"; 28259 - sha512 = "HDMb1XMqysup9raLYWB0wIQU568R9qPounF7iAwjf2esFUVV5mdBTvxEpune/7yG0RmwhNPhgrEZo2rBHeJf7A=="; 27475 + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.0.0.tgz"; 27476 + sha512 = "MEQAgP+/ddDTOjcfRhyZenLfr6q3nyh01muI6QTgz0qAFsbS50lZh9SbczgpuKnb6qiST1KR0OUIYTaBFXfB2g=="; 28260 27477 }; 28261 27478 }; 28262 - "gatsby-recipes-0.25.0" = { 27479 + "gatsby-recipes-1.0.0" = { 28263 27480 name = "gatsby-recipes"; 28264 27481 packageName = "gatsby-recipes"; 28265 - version = "0.25.0"; 27482 + version = "1.0.0"; 28266 27483 src = fetchurl { 28267 - url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.25.0.tgz"; 28268 - sha512 = "eEbmmAWY78pL1zLrx0M0CNC4fMbzKza/Ug0vSQ7egfAqNk74Lt0csgODRGdBLVHbmRRKYmJpJIXK7NdE+ZWh4A=="; 27484 + url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-1.0.0.tgz"; 27485 + sha512 = "uAQs4EZjure7DuxSEseG2r4pcDz7SZC/6RepKVvdlCv+ihQQPemj3y9PujoG+j0cQpV0U8fOV98lgku87UHwUg=="; 28269 27486 }; 28270 27487 }; 28271 - "gatsby-telemetry-2.14.0" = { 27488 + "gatsby-telemetry-3.0.0" = { 28272 27489 name = "gatsby-telemetry"; 28273 27490 packageName = "gatsby-telemetry"; 28274 - version = "2.14.0"; 27491 + version = "3.0.0"; 28275 27492 src = fetchurl { 28276 - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.14.0.tgz"; 28277 - sha512 = "c8/1L1nkK1OcxYV7axyoyM+7nzM1WL7DXvgxJloI7NSwb6M3EgcWvgq9bmqUAfmWM29/whR07mO7nnl1jZntyA=="; 27493 + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.0.0.tgz"; 27494 + sha512 = "qUFH5B48R0adY3AiEVOGZ0Lu4bOBmuHtAbAdzAMLMlXvIubSfc3VvxyB64jKQfZ3l1FyAIddSHz8i5yKAXekWA=="; 28278 27495 }; 28279 27496 }; 28280 27497 "gauge-1.2.7" = { ··· 28419 27636 src = fetchurl { 28420 27637 url = "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz"; 28421 27638 sha512 = "EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg=="; 28422 - }; 28423 - }; 28424 - "get-amd-module-type-3.0.0" = { 28425 - name = "get-amd-module-type"; 28426 - packageName = "get-amd-module-type"; 28427 - version = "3.0.0"; 28428 - src = fetchurl { 28429 - url = "https://registry.npmjs.org/get-amd-module-type/-/get-amd-module-type-3.0.0.tgz"; 28430 - sha512 = "99Q7COuACPfVt18zH9N4VAMyb81S6TUgJm2NgV6ERtkh9VIkAaByZkW530wl3lLN5KTtSrK9jVLxYsoP5hQKsw=="; 28431 27639 }; 28432 27640 }; 28433 27641 "get-assigned-identifiers-1.2.0" = { ··· 28718 27926 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 28719 27927 }; 28720 27928 }; 28721 - "gh-release-fetch-2.0.4" = { 28722 - name = "gh-release-fetch"; 28723 - packageName = "gh-release-fetch"; 28724 - version = "2.0.4"; 28725 - src = fetchurl { 28726 - url = "https://registry.npmjs.org/gh-release-fetch/-/gh-release-fetch-2.0.4.tgz"; 28727 - sha512 = "PALrCv6MuxEKsj5Oz9G81iU6pxvoxgpSnwbtIqAkQ6m6fioFicNznZUl/aOW92rK2k8cuaM48Rd59G7eV2QsTA=="; 28728 - }; 28729 - }; 28730 27929 "git-apply-delta-0.0.7" = { 28731 27930 name = "git-apply-delta"; 28732 27931 packageName = "git-apply-delta"; ··· 28815 28014 src = fetchurl { 28816 28015 url = "https://registry.npmjs.org/git-remote-ssb/-/git-remote-ssb-2.0.4.tgz"; 28817 28016 sha1 = "7f51b804924d6c603fc142e3302998d4e0b4d906"; 28818 - }; 28819 - }; 28820 - "git-repo-info-2.1.1" = { 28821 - name = "git-repo-info"; 28822 - packageName = "git-repo-info"; 28823 - version = "2.1.1"; 28824 - src = fetchurl { 28825 - url = "https://registry.npmjs.org/git-repo-info/-/git-repo-info-2.1.1.tgz"; 28826 - sha512 = "8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg=="; 28827 28017 }; 28828 28018 }; 28829 28019 "git-semver-tags-4.1.1" = { ··· 28889 28079 sha1 = "41d045f3851a5ea88f03f24ca1c6178114464b9b"; 28890 28080 }; 28891 28081 }; 28892 - "gitconfiglocal-2.1.0" = { 28893 - name = "gitconfiglocal"; 28894 - packageName = "gitconfiglocal"; 28895 - version = "2.1.0"; 28896 - src = fetchurl { 28897 - url = "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-2.1.0.tgz"; 28898 - sha512 = "qoerOEliJn3z+Zyn1HW2F6eoYJqKwS6MgC9cztTLUB/xLWX8gD/6T60pKn4+t/d6tP7JlybI7Z3z+I572CR/Vg=="; 28899 - }; 28900 - }; 28901 28082 "github-from-package-0.0.0" = { 28902 28083 name = "github-from-package"; 28903 28084 packageName = "github-from-package"; ··· 29150 28331 sha512 = "+20KpaW6DDLqhG7JDiJpD1JvNvb8ts+TNl7BPOYcURqCrXqnN1Vf+XVOrkKJAFPqfX+oEhsdzOj1hLWkBTdNJg=="; 29151 28332 }; 29152 28333 }; 29153 - "global-cache-dir-2.0.0" = { 29154 - name = "global-cache-dir"; 29155 - packageName = "global-cache-dir"; 29156 - version = "2.0.0"; 29157 - src = fetchurl { 29158 - url = "https://registry.npmjs.org/global-cache-dir/-/global-cache-dir-2.0.0.tgz"; 29159 - sha512 = "30pvU3e8muclEhc9tt+jRMaywOS3QfNdURflJ5Zv0bohjhcVQpBe5bwRHghGSJORLOKW81/n+3iJvHRHs+/S1Q=="; 29160 - }; 29161 - }; 29162 28334 "global-dirs-0.1.1" = { 29163 28335 name = "global-dirs"; 29164 28336 packageName = "global-dirs"; ··· 29284 28456 src = fetchurl { 29285 28457 url = "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz"; 29286 28458 sha512 = "08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g=="; 28459 + }; 28460 + }; 28461 + "globals-13.12.0" = { 28462 + name = "globals"; 28463 + packageName = "globals"; 28464 + version = "13.12.0"; 28465 + src = fetchurl { 28466 + url = "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz"; 28467 + sha512 = "uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg=="; 29287 28468 }; 29288 28469 }; 29289 28470 "globals-9.18.0" = { ··· 29493 28674 sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; 29494 28675 }; 29495 28676 }; 29496 - "google-gax-2.27.1" = { 28677 + "google-gax-2.28.0" = { 29497 28678 name = "google-gax"; 29498 28679 packageName = "google-gax"; 29499 - version = "2.27.1"; 28680 + version = "2.28.0"; 29500 28681 src = fetchurl { 29501 - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.27.1.tgz"; 29502 - sha512 = "8j8hfY42mGZt52C1L23srr2WTxOsOGUsC3s07Aw/f1UrbofsHdRaGf72Jax4jWEFXe/2x1MVBkwMvZxHMbO1Ag=="; 28682 + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.28.0.tgz"; 28683 + sha512 = "kuqc8a4+CTCMBcF3tlOL7Sa74JWkTzcZxatAQTCVK35WToXkHnJ0qncFOJuegUv3EbV9IQY4j/+NZdFLv+lbTA=="; 29503 28684 }; 29504 28685 }; 29505 28686 "google-p12-pem-3.1.2" = { ··· 29745 28926 sha512 = "GTCJtzJmkFLWRfFJuoo9RWWa/FfamUHgiFosxi/X1Ani4AVWbeyBenZTNX6dM+7WSbbFfTo/25eh0LLkwHMw2w=="; 29746 28927 }; 29747 28928 }; 29748 - "graphql-15.6.1" = { 28929 + "graphql-15.7.0" = { 29749 28930 name = "graphql"; 29750 28931 packageName = "graphql"; 29751 - version = "15.6.1"; 28932 + version = "15.7.0"; 29752 28933 src = fetchurl { 29753 - url = "https://registry.npmjs.org/graphql/-/graphql-15.6.1.tgz"; 29754 - sha512 = "3i5lu0z6dRvJ48QP9kFxBkJ7h4Kso7PS8eahyTFz5Jm6CvQfLtNIE8LX9N6JLnXTuwR+sIYnXzaWp6anOg0QQw=="; 28934 + url = "https://registry.npmjs.org/graphql/-/graphql-15.7.0.tgz"; 28935 + sha512 = "1jvUsS5mSzcgXLTQNQyrP7eKkBZW+HUnmx2LYSnfvkyseVpij8wwO/sFBGgxbkZ+zzFwYQxrHsOana5oMXmMxg=="; 29755 28936 }; 29756 28937 }; 29757 28938 "graphql-compose-7.25.1" = { ··· 30177 29358 sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 30178 29359 }; 30179 29360 }; 30180 - "has-ansi-4.0.1" = { 30181 - name = "has-ansi"; 30182 - packageName = "has-ansi"; 30183 - version = "4.0.1"; 30184 - src = fetchurl { 30185 - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-4.0.1.tgz"; 30186 - sha512 = "Qr4RtTm30xvEdqUXbSBVWDu+PrTokJOwe/FU+VdfJPk+MXAPoeOzKpRyrDTnZIJwAkQ4oBLTU53nu0HrkF/Z2A=="; 30187 - }; 30188 - }; 30189 29361 "has-bigints-1.0.1" = { 30190 29362 name = "has-bigints"; 30191 29363 packageName = "has-bigints"; ··· 30436 29608 src = fetchurl { 30437 29609 url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz"; 30438 29610 sha512 = "taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA=="; 30439 - }; 30440 - }; 30441 - "hasha-5.2.2" = { 30442 - name = "hasha"; 30443 - packageName = "hasha"; 30444 - version = "5.2.2"; 30445 - src = fetchurl { 30446 - url = "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz"; 30447 - sha512 = "Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ=="; 30448 29611 }; 30449 29612 }; 30450 29613 "hasher-1.2.0" = { ··· 30744 29907 sha512 = "tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A=="; 30745 29908 }; 30746 29909 }; 30747 - "highlight.js-11.2.0" = { 29910 + "highlight.js-11.3.1" = { 30748 29911 name = "highlight.js"; 30749 29912 packageName = "highlight.js"; 30750 - version = "11.2.0"; 29913 + version = "11.3.1"; 30751 29914 src = fetchurl { 30752 - url = "https://registry.npmjs.org/highlight.js/-/highlight.js-11.2.0.tgz"; 30753 - sha512 = "JOySjtOEcyG8s4MLR2MNbLUyaXqUunmSnL2kdV/KuGJOmHZuAR5xC54Ko7goAXBWNhf09Vy3B+U7vR62UZ/0iw=="; 29915 + url = "https://registry.npmjs.org/highlight.js/-/highlight.js-11.3.1.tgz"; 29916 + sha512 = "PUhCRnPjLtiLHZAQ5A/Dt5F8cWZeMyj9KRsACsWT+OD6OP0x6dp5OmT5jdx0JgEyPxPZZIPQpRN2TciUT7occw=="; 30754 29917 }; 30755 29918 }; 30756 29919 "highlight.js-8.2.0" = { ··· 31230 30393 sha512 = "carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ=="; 31231 30394 }; 31232 30395 }; 31233 - "http-call-5.3.0" = { 31234 - name = "http-call"; 31235 - packageName = "http-call"; 31236 - version = "5.3.0"; 31237 - src = fetchurl { 31238 - url = "https://registry.npmjs.org/http-call/-/http-call-5.3.0.tgz"; 31239 - sha512 = "ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w=="; 31240 - }; 31241 - }; 31242 30396 "http-deceiver-1.2.7" = { 31243 30397 name = "http-deceiver"; 31244 30398 packageName = "http-deceiver"; ··· 31375 30529 sha512 = "yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q=="; 31376 30530 }; 31377 30531 }; 31378 - "http-proxy-middleware-1.3.1" = { 31379 - name = "http-proxy-middleware"; 31380 - packageName = "http-proxy-middleware"; 31381 - version = "1.3.1"; 31382 - src = fetchurl { 31383 - url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz"; 31384 - sha512 = "13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg=="; 31385 - }; 31386 - }; 31387 30532 "http-proxy-middleware-2.0.1" = { 31388 30533 name = "http-proxy-middleware"; 31389 30534 packageName = "http-proxy-middleware"; ··· 31789 30934 sha512 = "FYz4wlXgkQwIPqhzC5TdNMLSE5+GS1IIDJZY/1ZiEPCT2S3COUVZeT5OW4BmW4r5LHLQuOosSwsvnroG9GR59Q=="; 31790 30935 }; 31791 30936 }; 31792 - "i18next-20.3.2" = { 30937 + "i18next-21.3.1" = { 31793 30938 name = "i18next"; 31794 30939 packageName = "i18next"; 31795 - version = "20.3.2"; 30940 + version = "21.3.1"; 31796 30941 src = fetchurl { 31797 - url = "https://registry.npmjs.org/i18next/-/i18next-20.3.2.tgz"; 31798 - sha512 = "e8CML2R9Ng2sSQOM80wb/PrM2j8mDm84o/T4Amzn9ArVyNX5/ENWxxAXkRpZdTQNDaxKImF93Wep4mAoozFrKw=="; 30942 + url = "https://registry.npmjs.org/i18next/-/i18next-21.3.1.tgz"; 30943 + sha512 = "VElMm+LoeEuhViVwnDw1gR3snTItK9NJqgok8PZ5WU870MVO1x+5KEbzLO/6GC1zu42Uc3EuGj3nsGMGMNwT0A=="; 31799 30944 }; 31800 30945 }; 31801 30946 "iconv-lite-0.4.23" = { ··· 33148 32293 sha512 = "DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg=="; 33149 32294 }; 33150 32295 }; 32296 + "is-alphabetical-2.0.0" = { 32297 + name = "is-alphabetical"; 32298 + packageName = "is-alphabetical"; 32299 + version = "2.0.0"; 32300 + src = fetchurl { 32301 + url = "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.0.tgz"; 32302 + sha512 = "5OV8Toyq3oh4eq6sbWTYzlGdnMT/DPI5I0zxUBxjiigQsZycpkKF3kskkao3JyYGuYDHvhgJF+DrjMQp9SX86w=="; 32303 + }; 32304 + }; 33151 32305 "is-alphanumeric-1.0.0" = { 33152 32306 name = "is-alphanumeric"; 33153 32307 packageName = "is-alphanumeric"; ··· 33166 32320 sha512 = "UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A=="; 33167 32321 }; 33168 32322 }; 32323 + "is-alphanumerical-2.0.0" = { 32324 + name = "is-alphanumerical"; 32325 + packageName = "is-alphanumerical"; 32326 + version = "2.0.0"; 32327 + src = fetchurl { 32328 + url = "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.0.tgz"; 32329 + sha512 = "t+2GlJ+hO9yagJ+jU3+HSh80VKvz/3cG2cxbGGm4S0hjKuhWQXgPVUVOZz3tqZzMjhmphZ+1TIJTlRZRoe6GCQ=="; 32330 + }; 32331 + }; 33169 32332 "is-arguments-1.1.1" = { 33170 32333 name = "is-arguments"; 33171 32334 packageName = "is-arguments"; ··· 33254 32417 src = fetchurl { 33255 32418 url = "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz"; 33256 32419 sha512 = "i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="; 33257 - }; 33258 - }; 33259 - "is-builtin-module-3.1.0" = { 33260 - name = "is-builtin-module"; 33261 - packageName = "is-builtin-module"; 33262 - version = "3.1.0"; 33263 - src = fetchurl { 33264 - url = "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.1.0.tgz"; 33265 - sha512 = "OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg=="; 33266 32420 }; 33267 32421 }; 33268 32422 "is-callable-1.2.4" = { ··· 33364 32518 sha512 = "RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw=="; 33365 32519 }; 33366 32520 }; 32521 + "is-decimal-2.0.0" = { 32522 + name = "is-decimal"; 32523 + packageName = "is-decimal"; 32524 + version = "2.0.0"; 32525 + src = fetchurl { 32526 + url = "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.0.tgz"; 32527 + sha512 = "QfrfjQV0LjoWQ1K1XSoEZkTAzSa14RKVMa5zg3SdAfzEmQzRM4+tbSFWb78creCeA9rNBzaZal92opi1TwPWZw=="; 32528 + }; 32529 + }; 33367 32530 "is-deflate-1.0.0" = { 33368 32531 name = "is-deflate"; 33369 32532 packageName = "is-deflate"; ··· 33641 32804 src = fetchurl { 33642 32805 url = "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz"; 33643 32806 sha512 = "gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw=="; 32807 + }; 32808 + }; 32809 + "is-hexadecimal-2.0.0" = { 32810 + name = "is-hexadecimal"; 32811 + packageName = "is-hexadecimal"; 32812 + version = "2.0.0"; 32813 + src = fetchurl { 32814 + url = "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.0.tgz"; 32815 + sha512 = "vGOtYkiaxwIiR0+Ng/zNId+ZZehGfINwTzdrDqc6iubbnQWhnPuYymOzOKUDqa2cSl59yHnEh2h6MvRLQsyNug=="; 33644 32816 }; 33645 32817 }; 33646 32818 "is-hidden-1.1.3" = { ··· 34615 33787 sha512 = "zKqkK+O+dGqevc93KNsbZ/TqTUFd46MwWjYOoMrjIMZ51eU7DtQG3Wmd9SQQT7i7RVnuTPEiYEWHU3MSbxC1Tg=="; 34616 33788 }; 34617 33789 }; 34618 - "iserror-0.0.2" = { 34619 - name = "iserror"; 34620 - packageName = "iserror"; 34621 - version = "0.0.2"; 34622 - src = fetchurl { 34623 - url = "https://registry.npmjs.org/iserror/-/iserror-0.0.2.tgz"; 34624 - sha1 = "bd53451fe2f668b9f2402c1966787aaa2c7c0bf5"; 34625 - }; 34626 - }; 34627 33790 "isexe-1.1.2" = { 34628 33791 name = "isexe"; 34629 33792 packageName = "isexe"; ··· 34732 33895 sha512 = "0RHjbtw9QXeSYnIEY5Yrp2QZrdtz21xBDV9C/GIlY2POmgoS6a7qjkYS5siRKXScnuAj5/SPv1C3YForNCHTJA=="; 34733 33896 }; 34734 33897 }; 34735 - "istanbul-lib-coverage-3.0.2" = { 33898 + "istanbul-lib-coverage-3.2.0" = { 34736 33899 name = "istanbul-lib-coverage"; 34737 33900 packageName = "istanbul-lib-coverage"; 34738 - version = "3.0.2"; 33901 + version = "3.2.0"; 34739 33902 src = fetchurl { 34740 - url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.2.tgz"; 34741 - sha512 = "o5+eTUYzCJ11/+JhW5/FUCdfsdoYVdQ/8I/OveE2XsjehYn5DdeSnNQAbjYaO8gQ6hvGTN6GM6ddQqpTVG5j8g=="; 33903 + url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz"; 33904 + sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; 34742 33905 }; 34743 33906 }; 34744 - "istanbul-lib-instrument-4.0.3" = { 33907 + "istanbul-lib-instrument-5.0.4" = { 34745 33908 name = "istanbul-lib-instrument"; 34746 33909 packageName = "istanbul-lib-instrument"; 34747 - version = "4.0.3"; 33910 + version = "5.0.4"; 34748 33911 src = fetchurl { 34749 - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz"; 34750 - sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ=="; 33912 + url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.0.4.tgz"; 33913 + sha512 = "W6jJF9rLGEISGoCyXRqa/JCGQGmmxPO10TMu7izaUTynxvBvTjqzAIIGCK9USBmIbQAaSWD6XJPrM9Pv5INknw=="; 34751 33914 }; 34752 33915 }; 34753 33916 "isuri-2.0.3" = { ··· 34894 34057 sha512 = "DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig=="; 34895 34058 }; 34896 34059 }; 34897 - "jest-get-type-26.3.0" = { 34898 - name = "jest-get-type"; 34899 - packageName = "jest-get-type"; 34900 - version = "26.3.0"; 34901 - src = fetchurl { 34902 - url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz"; 34903 - sha512 = "TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig=="; 34904 - }; 34905 - }; 34906 34060 "jest-haste-map-25.5.1" = { 34907 34061 name = "jest-haste-map"; 34908 34062 packageName = "jest-haste-map"; ··· 34937 34091 src = fetchurl { 34938 34092 url = "https://registry.npmjs.org/jest-util/-/jest-util-25.5.0.tgz"; 34939 34093 sha512 = "KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA=="; 34940 - }; 34941 - }; 34942 - "jest-validate-25.5.0" = { 34943 - name = "jest-validate"; 34944 - packageName = "jest-validate"; 34945 - version = "25.5.0"; 34946 - src = fetchurl { 34947 - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-25.5.0.tgz"; 34948 - sha512 = "okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ=="; 34949 - }; 34950 - }; 34951 - "jest-validate-26.6.2" = { 34952 - name = "jest-validate"; 34953 - packageName = "jest-validate"; 34954 - version = "26.6.2"; 34955 - src = fetchurl { 34956 - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz"; 34957 - sha512 = "NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ=="; 34958 34094 }; 34959 34095 }; 34960 34096 "jest-worker-25.5.0" = { ··· 34975 34111 sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; 34976 34112 }; 34977 34113 }; 34978 - "jest-worker-27.2.5" = { 34114 + "jest-worker-27.3.1" = { 34979 34115 name = "jest-worker"; 34980 34116 packageName = "jest-worker"; 34981 - version = "27.2.5"; 34117 + version = "27.3.1"; 34982 34118 src = fetchurl { 34983 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.5.tgz"; 34984 - sha512 = "HTjEPZtcNKZ4LnhSp02NEH4vE+5OpJ0EsOWYvGQpHgUMLngydESAAMH5Wd/asPf29+XUDQZszxpLg1BkIIA2aw=="; 34119 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.3.1.tgz"; 34120 + sha512 = "ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g=="; 34985 34121 }; 34986 34122 }; 34987 34123 "jimp-compact-0.16.1" = { ··· 34993 34129 sha512 = "dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww=="; 34994 34130 }; 34995 34131 }; 34996 - "jitdb-3.4.2" = { 34132 + "jitdb-3.5.0" = { 34997 34133 name = "jitdb"; 34998 34134 packageName = "jitdb"; 34999 - version = "3.4.2"; 34135 + version = "3.5.0"; 35000 34136 src = fetchurl { 35001 - url = "https://registry.npmjs.org/jitdb/-/jitdb-3.4.2.tgz"; 35002 - sha512 = "iPxNlKIXZEbHWdxoHyDa99eZPKQsF0faLA0Ui1rkL2+m3QGaCe/Xso+73hzkSwow0D4s8AwAurJ7L93bPvOuCw=="; 34137 + url = "https://registry.npmjs.org/jitdb/-/jitdb-3.5.0.tgz"; 34138 + sha512 = "VWaJoWOxQ9mNL+YIHJdlgNiGoADh91McAls+AjRbZeG0Ul0/0CVddVNqJpW4WLAFThqgLeFroMyZNIwqOsoUnQ=="; 35003 34139 }; 35004 34140 }; 35005 34141 "jju-1.4.0" = { ··· 35444 34580 sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; 35445 34581 }; 35446 34582 }; 35447 - "jsii-1.39.0" = { 34583 + "jsii-1.37.0" = { 35448 34584 name = "jsii"; 35449 34585 packageName = "jsii"; 35450 - version = "1.39.0"; 34586 + version = "1.37.0"; 35451 34587 src = fetchurl { 35452 - url = "https://registry.npmjs.org/jsii/-/jsii-1.39.0.tgz"; 35453 - sha512 = "2ReD7t6rGhT+c41xovFoAMc4XU5/O2VqGRh3Ud/wN+Nn1ISjZFQa4doQ1xtZLFb1065Vxyv5VCqWp80t6Xw2iA=="; 34588 + url = "https://registry.npmjs.org/jsii/-/jsii-1.37.0.tgz"; 34589 + sha512 = "M+opnlcNb1Ne5igms/OJn/e2ZyQgcCwmqqljuOsHXBMFm7vMOVLSjEUcBYcW7ifJeM1+XYg8+wfuAoZhqY1zCg=="; 35454 34590 }; 35455 34591 }; 35456 - "jsii-pacmak-1.39.0" = { 34592 + "jsii-1.40.0" = { 34593 + name = "jsii"; 34594 + packageName = "jsii"; 34595 + version = "1.40.0"; 34596 + src = fetchurl { 34597 + url = "https://registry.npmjs.org/jsii/-/jsii-1.40.0.tgz"; 34598 + sha512 = "QUPmQzq7c/FREvtfw9+eIU16LB45hxRPtdLO2Ci2ZX1df4E4+vegtfvvjUJ21diVo2hwVp4UCftKqrXZ/cXEFg=="; 34599 + }; 34600 + }; 34601 + "jsii-pacmak-1.37.0" = { 35457 34602 name = "jsii-pacmak"; 35458 34603 packageName = "jsii-pacmak"; 35459 - version = "1.39.0"; 34604 + version = "1.37.0"; 35460 34605 src = fetchurl { 35461 - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.39.0.tgz"; 35462 - sha512 = "+B2Z62v/MQ8fQcvd1nhKUWv+ZoNEArwa6OiTSvAuMsRoZpZ7Uvabscu71Uu3zq1XzJ6WQStw90ENHkw40l/o7w=="; 34606 + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.37.0.tgz"; 34607 + sha512 = "cXLXAOyCqd/QNBy+OfcmMgj8UdNVbJJsKoM/C3SvRgdi+fpQlxh1iDTOcKUwd3/QgMuDMDLvKCCpLmq/YRjreA=="; 35463 34608 }; 35464 34609 }; 35465 - "jsii-reflect-1.39.0" = { 34610 + "jsii-pacmak-1.40.0" = { 34611 + name = "jsii-pacmak"; 34612 + packageName = "jsii-pacmak"; 34613 + version = "1.40.0"; 34614 + src = fetchurl { 34615 + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.40.0.tgz"; 34616 + sha512 = "8IyvvWiD2eUpVhw0WXrYJILz+NSeNEwcWfQB+fUmn2gL8q27hlPZhHE7BVlr8+rb+EJVVLeHmpAMgA/SF9g/vQ=="; 34617 + }; 34618 + }; 34619 + "jsii-reflect-1.40.0" = { 35466 34620 name = "jsii-reflect"; 35467 34621 packageName = "jsii-reflect"; 35468 - version = "1.39.0"; 34622 + version = "1.40.0"; 35469 34623 src = fetchurl { 35470 - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.39.0.tgz"; 35471 - sha512 = "HEMpGHJBDtUbhdnfYUH0M/NTrYxaXrb0B2DXglzN/EYzKJsdp4FAmDPzpKEwnGVK3ReJLZ68YRogTq3msyuQDQ=="; 34624 + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.40.0.tgz"; 34625 + sha512 = "/ccIjkRSfbHCl1MCfwWFaz2RjoAAiNH5teE95Qi11a4gbTu52WcOFIg3Y+8llzHmmLykr9jTDqBtgyzi9WI6dw=="; 35472 34626 }; 35473 34627 }; 35474 - "jsii-rosetta-1.39.0" = { 34628 + "jsii-rosetta-1.40.0" = { 35475 34629 name = "jsii-rosetta"; 35476 34630 packageName = "jsii-rosetta"; 35477 - version = "1.39.0"; 34631 + version = "1.40.0"; 35478 34632 src = fetchurl { 35479 - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.39.0.tgz"; 35480 - sha512 = "Fx+kQ+IDEMILQvTESW9TMXLxzQa7h/nm4EKXuDKAeglr5RNhzvTvhsgJy+WshJoMsNcT9ImCV8gmvqAqdSBrWA=="; 34633 + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.40.0.tgz"; 34634 + sha512 = "Gb257CdUbHV8ZRFYflZy7F7alH5X49T+pX2133F7eaoMpRqc0V6jQsphaL4V+S/jK29XOfXtANmq55AvmwsWLQ=="; 35481 34635 }; 35482 34636 }; 35483 - "jsii-srcmak-0.1.369" = { 34637 + "jsii-srcmak-0.1.380" = { 35484 34638 name = "jsii-srcmak"; 35485 34639 packageName = "jsii-srcmak"; 35486 - version = "0.1.369"; 34640 + version = "0.1.380"; 35487 34641 src = fetchurl { 35488 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.369.tgz"; 35489 - sha512 = "lxMMIzpBkaabuLLNz8WaFKMFoE7oCXFzSm7dMYrStrv/MfG1N2adqw3//B1CDVCNLgPYEwXsA77ToPAtfcrZhA=="; 34642 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.380.tgz"; 34643 + sha512 = "gmth9BMlth1Io/v+pXXSAHZBAl/2Bw/kow5IRgAVrZl1oYrToqPO2WX7LLv8PNrl20FqPYDAuTvzdhXo8sQ0Pw=="; 35490 34644 }; 35491 34645 }; 35492 34646 "json-bigint-1.0.0" = { ··· 36353 35507 sha512 = "dD2ga5gLcQhsq1yNoQdy1MU4x4z7YnXM5bcG9SdQuiNr5KKuAmXixH1Mggwdah5o7EfholFbcNDPSVA6BIfaug=="; 36354 35508 }; 36355 35509 }; 36356 - "katex-0.13.18" = { 35510 + "katex-0.13.20" = { 36357 35511 name = "katex"; 36358 35512 packageName = "katex"; 36359 - version = "0.13.18"; 35513 + version = "0.13.20"; 36360 35514 src = fetchurl { 36361 - url = "https://registry.npmjs.org/katex/-/katex-0.13.18.tgz"; 36362 - sha512 = "a3dC4NSVSDU3O1WZbTnOiA8rVNJ2lSiomOl0kmckCIGObccIHXof7gAseIY0o1gjEspe+34ZeSEX2D1ChFKIvA=="; 35515 + url = "https://registry.npmjs.org/katex/-/katex-0.13.20.tgz"; 35516 + sha512 = "nGuuanV0idsPpWy3LKtTYSbqHwPOr9qxXuoJ/1l5fTLA2RYXVknpqElxgudXeaMz55OnxW2KhY7BV1greb08zg=="; 36363 35517 }; 36364 35518 }; 36365 35519 "kdbush-3.0.0" = { ··· 36387 35541 src = fetchurl { 36388 35542 url = "https://registry.npmjs.org/keep-alive-agent/-/keep-alive-agent-0.0.1.tgz"; 36389 35543 sha1 = "44847ca394ce8d6b521ae85816bd64509942b385"; 36390 - }; 36391 - }; 36392 - "keep-func-props-3.0.1" = { 36393 - name = "keep-func-props"; 36394 - packageName = "keep-func-props"; 36395 - version = "3.0.1"; 36396 - src = fetchurl { 36397 - url = "https://registry.npmjs.org/keep-func-props/-/keep-func-props-3.0.1.tgz"; 36398 - sha512 = "5AsrYCiCHIUxuw/G2r7xcoTW/NTf5IFwAe1fkwf2ifM/KZzEojaTylh1Pppu60oEixww1rfcWJaRGLi3eAJsrQ=="; 36399 35544 }; 36400 35545 }; 36401 35546 "keyboardevent-key-polyfill-1.1.0" = { ··· 36614 35759 sha512 = "sZLUnTqimCkvkgRS+kbPlYW5o8q5w1cu+uIisKpEWkj31I8mx8kNG162DwRav8Zirkva6N5uoFsm9kzK4mUXjw=="; 36615 35760 }; 36616 35761 }; 35762 + "known-css-properties-0.23.0" = { 35763 + name = "known-css-properties"; 35764 + packageName = "known-css-properties"; 35765 + version = "0.23.0"; 35766 + src = fetchurl { 35767 + url = "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.23.0.tgz"; 35768 + sha512 = "h9ivI88e1lFNmTT4HovBN33Ysn0OIJG7IPG2mkpx2uniQXFWqo35QdiX7w0TovlUFXfW8aPFblP5/q0jlOr2sA=="; 35769 + }; 35770 + }; 36617 35771 "known-css-properties-0.5.0" = { 36618 35772 name = "known-css-properties"; 36619 35773 packageName = "known-css-properties"; ··· 36675 35829 src = fetchurl { 36676 35830 url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz"; 36677 35831 sha512 = "Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw=="; 36678 - }; 36679 - }; 36680 - "lambda-local-2.0.0" = { 36681 - name = "lambda-local"; 36682 - packageName = "lambda-local"; 36683 - version = "2.0.0"; 36684 - src = fetchurl { 36685 - url = "https://registry.npmjs.org/lambda-local/-/lambda-local-2.0.0.tgz"; 36686 - sha512 = "5Z7ZEhqVYJSm3djoq7QLDkEk7Ao+jNYbARo3nk3wtjKpgCnEbzOuraxDPDWg7OlZ4JKcsRDP+wNLeORMdbF2ow=="; 36687 35832 }; 36688 35833 }; 36689 35834 "last-call-webpack-plugin-3.0.0" = { ··· 36812 35957 sha512 = "KenL6EFbwxBwRxG93t0gcUyi0Nw0Ub31FJKN1laA4UscdkL1K1AxUd0gYZdcLU3v+x+wcFi4uQKS5hL+fk500g=="; 36813 35958 }; 36814 35959 }; 36815 - "lazystream-1.0.0" = { 35960 + "lazystream-1.0.1" = { 36816 35961 name = "lazystream"; 36817 35962 packageName = "lazystream"; 36818 - version = "1.0.0"; 35963 + version = "1.0.1"; 36819 35964 src = fetchurl { 36820 - url = "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz"; 36821 - sha1 = "f6995fe0f820392f61396be89462407bb77168e4"; 35965 + url = "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz"; 35966 + sha512 = "b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw=="; 36822 35967 }; 36823 35968 }; 36824 35969 "lcid-1.0.0" = { ··· 37235 36380 sha512 = "DI21mqAdwBM/Os3pcAnBrpUCoaKQzJFTEv2c+DEJUzPBnpxRGGKGurlT5FDz9QZSTag7YgBb5ghsqtjQ2MlFWg=="; 37236 36381 }; 37237 36382 }; 37238 - "lightning-4.10.3" = { 37239 - name = "lightning"; 37240 - packageName = "lightning"; 37241 - version = "4.10.3"; 37242 - src = fetchurl { 37243 - url = "https://registry.npmjs.org/lightning/-/lightning-4.10.3.tgz"; 37244 - sha512 = "dXiEe6n8eGKznThE8yJ9BRXHHju5LgVF2sPsal5Vw933dvi76NIuMPL+Z7XV2sVfKKsnrI7Uktm9Wn5edmXIcA=="; 37245 - }; 37246 - }; 37247 36383 "lightning-4.10.7" = { 37248 36384 name = "lightning"; 37249 36385 packageName = "lightning"; ··· 37271 36407 sha512 = "HtoVfuc9p8fcAOTXOBgIfH04S91A/1xlUZTRnYAdZx0h2zMjQaZ5/mpbDQjQkBn4Swf0EOHkcSI82scKm37JQg=="; 37272 36408 }; 37273 36409 }; 37274 - "lightning-4.7.1" = { 37275 - name = "lightning"; 37276 - packageName = "lightning"; 37277 - version = "4.7.1"; 37278 - src = fetchurl { 37279 - url = "https://registry.npmjs.org/lightning/-/lightning-4.7.1.tgz"; 37280 - sha512 = "K/+GISxMDmpCl7bjauCxsVMslXAV6UMbfZSbeHsZuEN0yKSHq5cnPxHLGG2R12cOfKOar1fVDPbsiXO39Upqiw=="; 37281 - }; 37282 - }; 37283 36410 "lilconfig-2.0.3" = { 37284 36411 name = "lilconfig"; 37285 36412 packageName = "lilconfig"; ··· 37460 36587 sha512 = "upswAJU9Mrfh3l+q46rvmRu8Pf7iYR2vkKyq16dgiBgxKw7fzvI8aL2Xi0xrtyoRUOUODOyEzO7/MRRhNKcvMA=="; 37461 36588 }; 37462 36589 }; 37463 - "ln-service-52.11.0" = { 37464 - name = "ln-service"; 37465 - packageName = "ln-service"; 37466 - version = "52.11.0"; 37467 - src = fetchurl { 37468 - url = "https://registry.npmjs.org/ln-service/-/ln-service-52.11.0.tgz"; 37469 - sha512 = "1QFz35rg00RDTiRctYTaKvkDHcYc9/+9liiQhNaJEblJQnQyNoA5Cid6G7oHOkIj2k7fVTJpEgyflI+qG3u2Og=="; 37470 - }; 37471 - }; 37472 36590 "ln-service-52.12.1" = { 37473 36591 name = "ln-service"; 37474 36592 packageName = "ln-service"; ··· 37496 36614 sha512 = "tLJMrknIzK6MMIx/N1r8iRjVWBPFmt0S1hI2l+DNL6+ln930nSUN+/aW3SUZho48ACLPBJDSgXwAU50ExrC+rQ=="; 37497 36615 }; 37498 36616 }; 37499 - "ln-sync-2.0.2" = { 36617 + "ln-sync-2.1.0" = { 37500 36618 name = "ln-sync"; 37501 36619 packageName = "ln-sync"; 37502 - version = "2.0.2"; 36620 + version = "2.1.0"; 37503 36621 src = fetchurl { 37504 - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-2.0.2.tgz"; 37505 - sha512 = "tPT6irw2Ad6W/uoLZ9H0mT3S59XPMRY7j7ygu+ALztbAcuixEOn3kv80+3hFjOzqXXFo/FDsXHw3DWfO2dDDng=="; 36622 + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-2.1.0.tgz"; 36623 + sha512 = "5Djy5IUeM9jT6r0s6ptnaKjJZxHTQxVATYcK+Y7vdvQ4vf15sRY+sSSPqL1uYpbUWLo5hUSwLcGuLeBYgEUDlg=="; 37506 36624 }; 37507 36625 }; 37508 - "ln-sync-2.0.3" = { 37509 - name = "ln-sync"; 37510 - packageName = "ln-sync"; 37511 - version = "2.0.3"; 37512 - src = fetchurl { 37513 - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-2.0.3.tgz"; 37514 - sha512 = "krtCggshBHgzL203L0ZBLS28SStlyuoz9siauS5hiqUQ+/UaJ5/ROYt81s6GVp008K2GF5KTRLZjaIhCMkf3Vw=="; 37515 - }; 37516 - }; 37517 - "ln-telegram-3.3.1" = { 36626 + "ln-telegram-3.3.2" = { 37518 36627 name = "ln-telegram"; 37519 36628 packageName = "ln-telegram"; 37520 - version = "3.3.1"; 36629 + version = "3.3.2"; 37521 36630 src = fetchurl { 37522 - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.3.1.tgz"; 37523 - sha512 = "W/Wu6Mb5zwYpD97Oa+1wfz2/kgRGqueJ47pHQ0bAcpEB5vFVLG0R347Gr3MNIlFRY7liGdCmO4xvB8bCxtg8uQ=="; 36631 + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.3.2.tgz"; 36632 + sha512 = "DeSbKfEsNVxR0vWv8B5/S52wJIAGnf0bdCEdTGeoNJy0lgYk5/tDu/Q9ckgWfa0DeVuR9qvt9TLrZjUP3qqpZg=="; 37524 36633 }; 37525 36634 }; 37526 36635 "load-bmfont-1.4.1" = { ··· 37566 36675 src = fetchurl { 37567 36676 url = "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"; 37568 36677 sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b"; 37569 - }; 37570 - }; 37571 - "load-json-file-5.3.0" = { 37572 - name = "load-json-file"; 37573 - packageName = "load-json-file"; 37574 - version = "5.3.0"; 37575 - src = fetchurl { 37576 - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz"; 37577 - sha512 = "cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw=="; 37578 36678 }; 37579 36679 }; 37580 36680 "load-json-file-6.2.0" = { ··· 38261 37361 sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 38262 37362 }; 38263 37363 }; 38264 - "lodash.deburr-4.1.0" = { 38265 - name = "lodash.deburr"; 38266 - packageName = "lodash.deburr"; 38267 - version = "4.1.0"; 38268 - src = fetchurl { 38269 - url = "https://registry.npmjs.org/lodash.deburr/-/lodash.deburr-4.1.0.tgz"; 38270 - sha1 = "ddb1bbb3ef07458c0177ba07de14422cb033ff9b"; 38271 - }; 38272 - }; 38273 37364 "lodash.defaults-3.1.2" = { 38274 37365 name = "lodash.defaults"; 38275 37366 packageName = "lodash.defaults"; ··· 38486 37577 sha1 = "6c2e171db2a257cd96802fd43b01b20d5f5870f6"; 38487 37578 }; 38488 37579 }; 38489 - "lodash.isempty-4.4.0" = { 38490 - name = "lodash.isempty"; 38491 - packageName = "lodash.isempty"; 38492 - version = "4.4.0"; 38493 - src = fetchurl { 38494 - url = "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz"; 38495 - sha1 = "6f86cbedd8be4ec987be9aaf33c9684db1b31e7e"; 38496 - }; 38497 - }; 38498 37580 "lodash.isequal-4.5.0" = { 38499 37581 name = "lodash.isequal"; 38500 37582 packageName = "lodash.isequal"; ··· 38864 37946 sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561"; 38865 37947 }; 38866 37948 }; 38867 - "lodash.transform-4.6.0" = { 38868 - name = "lodash.transform"; 38869 - packageName = "lodash.transform"; 38870 - version = "4.6.0"; 38871 - src = fetchurl { 38872 - url = "https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz"; 38873 - sha1 = "12306422f63324aed8483d3f38332b5f670547a0"; 38874 - }; 38875 - }; 38876 37949 "lodash.truncate-4.4.2" = { 38877 37950 name = "lodash.truncate"; 38878 37951 packageName = "lodash.truncate"; ··· 38954 38027 sha512 = "U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg=="; 38955 38028 }; 38956 38029 }; 38957 - "log-node-8.0.1" = { 38030 + "log-node-8.0.2" = { 38958 38031 name = "log-node"; 38959 38032 packageName = "log-node"; 38960 - version = "8.0.1"; 38033 + version = "8.0.2"; 38961 38034 src = fetchurl { 38962 - url = "https://registry.npmjs.org/log-node/-/log-node-8.0.1.tgz"; 38963 - sha512 = "w6ii8zZo+O4Os9EBB0+ruaeVU6CysNgYj/cUDOtobBxnNPRHynjMjzyqjEuNKGT/AD89sZzGh0pS3/0ZPRR1iQ=="; 38964 - }; 38965 - }; 38966 - "log-process-errors-6.3.0" = { 38967 - name = "log-process-errors"; 38968 - packageName = "log-process-errors"; 38969 - version = "6.3.0"; 38970 - src = fetchurl { 38971 - url = "https://registry.npmjs.org/log-process-errors/-/log-process-errors-6.3.0.tgz"; 38972 - sha512 = "dHwGgWFuz9LUDoLIG7E0SlDurosfZEpgNLJMPzNL9GPdyh4Wdm5RJlQbuqy3Pj2wOcbDzykeTCBEqyrwriqPnA=="; 38035 + url = "https://registry.npmjs.org/log-node/-/log-node-8.0.2.tgz"; 38036 + sha512 = "H+3t002yGqZRJhVW3A/EksIB7i1M84cwcWzBPsnAmQWOA2ePAV2fXJpNPBnw6VEdhzPcedIxQwT5jhBVTlYQww=="; 38973 38037 }; 38974 38038 }; 38975 38039 "log-symbols-1.0.2" = { ··· 39179 38243 sha512 = "vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg=="; 39180 38244 }; 39181 38245 }; 38246 + "longest-streak-3.0.0" = { 38247 + name = "longest-streak"; 38248 + packageName = "longest-streak"; 38249 + version = "3.0.0"; 38250 + src = fetchurl { 38251 + url = "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.0.tgz"; 38252 + sha512 = "XhUjWR5CFaQ03JOP+iSDS9koy8T5jfoImCZ4XprElw3BXsSk4MpVYOLw/6LTDKZhO13PlAXnB5gS4MHQTpkSOw=="; 38253 + }; 38254 + }; 39182 38255 "looper-2.0.0" = { 39183 38256 name = "looper"; 39184 38257 packageName = "looper"; ··· 39449 38522 sha512 = "RB4zR6Mrp/0wTNS9WxMvpgfht/7u/8QAC9DpPD19opL/4OASPa28uoliFqeDkLUU8pQ4aeAfATBZmz1aSAHkMw=="; 39450 38523 }; 39451 38524 }; 38525 + "luaparse-git://github.com/oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802" = { 38526 + name = "luaparse"; 38527 + packageName = "luaparse"; 38528 + version = "0.2.1"; 38529 + src = fetchgit { 38530 + url = "git://github.com/oxyc/luaparse"; 38531 + rev = "ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802"; 38532 + sha256 = "f813d671f8f8088d70d29f7a7770bdd5ed41ed97240ae9346d7ced0c094ee049"; 38533 + }; 38534 + }; 39452 38535 "lunr-2.3.9" = { 39453 38536 name = "lunr"; 39454 38537 packageName = "lunr"; ··· 39665 38748 sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw=="; 39666 38749 }; 39667 38750 }; 39668 - "makeerror-1.0.11" = { 38751 + "makeerror-1.0.12" = { 39669 38752 name = "makeerror"; 39670 38753 packageName = "makeerror"; 39671 - version = "1.0.11"; 38754 + version = "1.0.12"; 39672 38755 src = fetchurl { 39673 - url = "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz"; 39674 - sha1 = "e01a5c9109f2af79660e4e8b9587790184f5a96c"; 38756 + url = "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz"; 38757 + sha512 = "JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="; 39675 38758 }; 39676 38759 }; 39677 38760 "map-age-cleaner-0.1.3" = { ··· 40196 39279 sha512 = "APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg=="; 40197 39280 }; 40198 39281 }; 40199 - "maxstache-1.0.7" = { 40200 - name = "maxstache"; 40201 - packageName = "maxstache"; 40202 - version = "1.0.7"; 40203 - src = fetchurl { 40204 - url = "https://registry.npmjs.org/maxstache/-/maxstache-1.0.7.tgz"; 40205 - sha1 = "2231d5180ba783d5ecfc31c45fedac7ae4276984"; 40206 - }; 40207 - }; 40208 - "maxstache-stream-1.0.4" = { 40209 - name = "maxstache-stream"; 40210 - packageName = "maxstache-stream"; 40211 - version = "1.0.4"; 40212 - src = fetchurl { 40213 - url = "https://registry.npmjs.org/maxstache-stream/-/maxstache-stream-1.0.4.tgz"; 40214 - sha1 = "9c7f5cab7e5fdd2d90da86143b4e9631ea328040"; 40215 - }; 40216 - }; 40217 39282 "md5-2.2.1" = { 40218 39283 name = "md5"; 40219 39284 packageName = "md5"; ··· 40250 39315 sha512 = "xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw=="; 40251 39316 }; 40252 39317 }; 40253 - "md5-hex-3.0.1" = { 40254 - name = "md5-hex"; 40255 - packageName = "md5-hex"; 40256 - version = "3.0.1"; 40257 - src = fetchurl { 40258 - url = "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz"; 40259 - sha512 = "BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw=="; 40260 - }; 40261 - }; 40262 39318 "md5.js-1.3.5" = { 40263 39319 name = "md5.js"; 40264 39320 packageName = "md5.js"; ··· 40329 39385 src = fetchurl { 40330 39386 url = "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz"; 40331 39387 sha512 = "2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ=="; 39388 + }; 39389 + }; 39390 + "mdast-util-from-markdown-1.0.4" = { 39391 + name = "mdast-util-from-markdown"; 39392 + packageName = "mdast-util-from-markdown"; 39393 + version = "1.0.4"; 39394 + src = fetchurl { 39395 + url = "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.0.4.tgz"; 39396 + sha512 = "BlL42o885QO+6o43ceoc6KBdp/bi9oYyamj0hUbeu730yhP1WDC7m2XYSBfmQkOb0TdoHSAJ3de3SMqse69u+g=="; 40332 39397 }; 40333 39398 }; 40334 39399 "mdast-util-frontmatter-0.2.0" = { ··· 40394 39459 sha512 = "8ZuuegRqS0KESgjAGW8zTx4tJ3VNIiIaGFNEzFpRSAQBavVc7AvOo9I4g3crcZBfYisHs4seYh0rAVimO6HyOw=="; 40395 39460 }; 40396 39461 }; 40397 - "mdast-util-mdx-0.1.1" = { 39462 + "mdast-util-mdx-1.1.0" = { 40398 39463 name = "mdast-util-mdx"; 40399 39464 packageName = "mdast-util-mdx"; 40400 - version = "0.1.1"; 39465 + version = "1.1.0"; 40401 39466 src = fetchurl { 40402 - url = "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-0.1.1.tgz"; 40403 - sha512 = "9nncdnHNYSb4HNxY3AwE6gU632jhbXsDGXe9PkkJoEawYWJ8tTwmEOHGlGa2TCRidtkd6FF5I8ogDU9pTDlQyA=="; 39467 + url = "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-1.1.0.tgz"; 39468 + sha512 = "leKb9uG7laXdyFlTleYV4ZEaCpsxeU1LlkkR/xp35pgKrfV1Y0fNCuOw9vaRc2a9YDpH22wd145Wt7UY5yzeZw=="; 40404 39469 }; 40405 39470 }; 40406 - "mdast-util-mdx-expression-0.1.1" = { 39471 + "mdast-util-mdx-expression-1.1.1" = { 40407 39472 name = "mdast-util-mdx-expression"; 40408 39473 packageName = "mdast-util-mdx-expression"; 40409 - version = "0.1.1"; 39474 + version = "1.1.1"; 40410 39475 src = fetchurl { 40411 - url = "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-0.1.1.tgz"; 40412 - sha512 = "SoO8y1B9NjMOYlNdwXMchuTVvqSTlUmXm1P5QvZNPv7OH7aa8qJV+3aA+vl1DHK9Vk1uZAlgwokjvDQhS6bINA=="; 39476 + url = "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.1.1.tgz"; 39477 + sha512 = "RDLRkBFmBKCJl6/fQdxxKL2BqNtoPFoNBmQAlj5ZNKOijIWRKjdhPkeufsUOaexLj+78mhJc+L7d1MYka8/LdQ=="; 40413 39478 }; 40414 39479 }; 40415 - "mdast-util-mdx-jsx-0.1.4" = { 39480 + "mdast-util-mdx-jsx-1.1.1" = { 40416 39481 name = "mdast-util-mdx-jsx"; 40417 39482 packageName = "mdast-util-mdx-jsx"; 40418 - version = "0.1.4"; 39483 + version = "1.1.1"; 40419 39484 src = fetchurl { 40420 - url = "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-0.1.4.tgz"; 40421 - sha512 = "67KOAvCmypBSpr+AJEAVQg1Obig5Wnguo4ETTxASe5WVP4TLt57bZjDX/9EW5sWYQsO4gPqLxkUOlypVn5rkhg=="; 39485 + url = "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-1.1.1.tgz"; 39486 + sha512 = "C4W4hXmagipaeMwi5O8y+lVWE4qP2MDxfKlIh0lZN6MZWSPpQTK5RPwKBH4DdYHorgjbV2rKk84rNWlRtvoZCg=="; 40422 39487 }; 40423 39488 }; 40424 - "mdast-util-mdxjs-esm-0.1.1" = { 39489 + "mdast-util-mdxjs-esm-1.1.1" = { 40425 39490 name = "mdast-util-mdxjs-esm"; 40426 39491 packageName = "mdast-util-mdxjs-esm"; 40427 - version = "0.1.1"; 39492 + version = "1.1.1"; 40428 39493 src = fetchurl { 40429 - url = "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-0.1.1.tgz"; 40430 - sha512 = "kBiYeashz+nuhfv+712nc4THQhzXIH2gBFUDbuLxuDCqU/fZeg+9FAcdRBx9E13dkpk1p2Xwufzs3wsGJ+mISQ=="; 39494 + url = "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.1.1.tgz"; 39495 + sha512 = "IpHNNMubCt6ue2FIQasx1ByvETglnqc7A3XvIc0Yyql1hNI73SEGa044dZG6jeJQE8boBdTn8nxs3DjQLvVN1w=="; 40431 39496 }; 40432 39497 }; 40433 39498 "mdast-util-to-markdown-0.6.5" = { ··· 40437 39502 src = fetchurl { 40438 39503 url = "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz"; 40439 39504 sha512 = "XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ=="; 39505 + }; 39506 + }; 39507 + "mdast-util-to-markdown-1.2.3" = { 39508 + name = "mdast-util-to-markdown"; 39509 + packageName = "mdast-util-to-markdown"; 39510 + version = "1.2.3"; 39511 + src = fetchurl { 39512 + url = "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.2.3.tgz"; 39513 + sha512 = "040jJYtjOUdbvYAXCfPrpLJRdvMOmR33KRqlhT4r+fEbVM+jao1RMbA8RmGeRmw8RAj3vQ+HvhIaJPijvnOwCg=="; 40440 39514 }; 40441 39515 }; 40442 39516 "mdast-util-to-nlcst-3.2.3" = { ··· 40473 39547 src = fetchurl { 40474 39548 url = "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz"; 40475 39549 sha512 = "AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w=="; 39550 + }; 39551 + }; 39552 + "mdast-util-to-string-3.1.0" = { 39553 + name = "mdast-util-to-string"; 39554 + packageName = "mdast-util-to-string"; 39555 + version = "3.1.0"; 39556 + src = fetchurl { 39557 + url = "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz"; 39558 + sha512 = "n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA=="; 40476 39559 }; 40477 39560 }; 40478 39561 "mdmanifest-1.0.8" = { ··· 41006 40089 sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 41007 40090 }; 41008 40091 }; 41009 - "metro-babel-transformer-0.59.0" = { 41010 - name = "metro-babel-transformer"; 41011 - packageName = "metro-babel-transformer"; 41012 - version = "0.59.0"; 41013 - src = fetchurl { 41014 - url = "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.59.0.tgz"; 41015 - sha512 = "fdZJl8rs54GVFXokxRdD7ZrQ1TJjxWzOi/xSP25VR3E8tbm3nBZqS+/ylu643qSr/IueABR+jrlqAyACwGEf6w=="; 41016 - }; 41017 - }; 41018 - "metro-react-native-babel-preset-0.59.0" = { 41019 - name = "metro-react-native-babel-preset"; 41020 - packageName = "metro-react-native-babel-preset"; 41021 - version = "0.59.0"; 41022 - src = fetchurl { 41023 - url = "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.59.0.tgz"; 41024 - sha512 = "BoO6ncPfceIDReIH8pQ5tQptcGo5yRWQXJGVXfANbiKLq4tfgdZB1C1e2rMUJ6iypmeJU9dzl+EhPmIFKtgREg=="; 41025 - }; 41026 - }; 41027 - "metro-react-native-babel-transformer-0.59.0" = { 41028 - name = "metro-react-native-babel-transformer"; 41029 - packageName = "metro-react-native-babel-transformer"; 41030 - version = "0.59.0"; 41031 - src = fetchurl { 41032 - url = "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.59.0.tgz"; 41033 - sha512 = "1O3wrnMq4NcPQ1asEcl9lRDn/t+F1Oef6S9WaYVIKEhg9m/EQRGVrrTVP+R6B5Eeaj3+zNKbzM8Dx/NWy1hUbQ=="; 41034 - }; 41035 - }; 41036 - "metro-source-map-0.59.0" = { 41037 - name = "metro-source-map"; 41038 - packageName = "metro-source-map"; 41039 - version = "0.59.0"; 41040 - src = fetchurl { 41041 - url = "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.59.0.tgz"; 41042 - sha512 = "0w5CmCM+ybSqXIjqU4RiK40t4bvANL6lafabQ2GP2XD3vSwkLY+StWzCtsb4mPuyi9R/SgoLBel+ZOXHXAH0eQ=="; 41043 - }; 41044 - }; 41045 - "metro-symbolicate-0.59.0" = { 41046 - name = "metro-symbolicate"; 41047 - packageName = "metro-symbolicate"; 41048 - version = "0.59.0"; 41049 - src = fetchurl { 41050 - url = "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.59.0.tgz"; 41051 - sha512 = "asLaF2A7rndrToGFIknL13aiohwPJ95RKHf0NM3hP/nipiLDoMzXT6ZnQvBqDxkUKyP+51AI75DMtb+Wcyw4Bw=="; 41052 - }; 41053 - }; 41054 - "micro-api-client-3.3.0" = { 41055 - name = "micro-api-client"; 41056 - packageName = "micro-api-client"; 41057 - version = "3.3.0"; 41058 - src = fetchurl { 41059 - url = "https://registry.npmjs.org/micro-api-client/-/micro-api-client-3.3.0.tgz"; 41060 - sha512 = "y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg=="; 41061 - }; 41062 - }; 41063 - "micro-memoize-4.0.9" = { 41064 - name = "micro-memoize"; 41065 - packageName = "micro-memoize"; 41066 - version = "4.0.9"; 41067 - src = fetchurl { 41068 - url = "https://registry.npmjs.org/micro-memoize/-/micro-memoize-4.0.9.tgz"; 41069 - sha512 = "Z2uZi/IUMGQDCXASdujXRqrXXEwSY0XffUrAOllhqzQI3wpUyZbiZTiE2JuYC0HSG2G7DbCS5jZmsEKEGZuemg=="; 41070 - }; 41071 - }; 41072 40092 "microee-0.0.6" = { 41073 40093 name = "microee"; 41074 40094 packageName = "microee"; ··· 41094 40114 src = fetchurl { 41095 40115 url = "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz"; 41096 40116 sha512 = "+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA=="; 40117 + }; 40118 + }; 40119 + "micromark-3.0.7" = { 40120 + name = "micromark"; 40121 + packageName = "micromark"; 40122 + version = "3.0.7"; 40123 + src = fetchurl { 40124 + url = "https://registry.npmjs.org/micromark/-/micromark-3.0.7.tgz"; 40125 + sha512 = "67ipZ2CzQVsDyH1kqNLh7dLwe5QMPJwjFBGppW7JCLByaSc6ZufV0ywPOxt13MIDAzzmj3wctDL6Ov5w0fOHXw=="; 40126 + }; 40127 + }; 40128 + "micromark-core-commonmark-1.0.4" = { 40129 + name = "micromark-core-commonmark"; 40130 + packageName = "micromark-core-commonmark"; 40131 + version = "1.0.4"; 40132 + src = fetchurl { 40133 + url = "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.4.tgz"; 40134 + sha512 = "HAtoZisp1M/sQFuw2zoUKGo1pMKod7GSvdM6B2oBU0U2CEN5/C6Tmydmi1rmvEieEhGQsjMyiiSoYgxISNxGFA=="; 41097 40135 }; 41098 40136 }; 41099 40137 "micromark-extension-footnote-0.3.2" = { ··· 41168 40206 sha512 = "0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ=="; 41169 40207 }; 41170 40208 }; 41171 - "micromark-extension-mdx-0.2.1" = { 41172 - name = "micromark-extension-mdx"; 41173 - packageName = "micromark-extension-mdx"; 41174 - version = "0.2.1"; 41175 - src = fetchurl { 41176 - url = "https://registry.npmjs.org/micromark-extension-mdx/-/micromark-extension-mdx-0.2.1.tgz"; 41177 - sha512 = "J+nZegf1ExPz1Ft6shxu8M9WfRom1gwRIx6gpJK1SEEqKzY5LjOR1d/WHRtjwV4KoMXrL53+PoN7T1Rw1euJew=="; 41178 - }; 41179 - }; 41180 - "micromark-extension-mdx-expression-0.3.2" = { 40209 + "micromark-extension-mdx-expression-1.0.2" = { 41181 40210 name = "micromark-extension-mdx-expression"; 41182 40211 packageName = "micromark-extension-mdx-expression"; 41183 - version = "0.3.2"; 40212 + version = "1.0.2"; 41184 40213 src = fetchurl { 41185 - url = "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-0.3.2.tgz"; 41186 - sha512 = "Sh8YHLSAlbm/7TZkVKEC4wDcJE8XhVpZ9hUXBue1TcAicrrzs/oXu7PHH3NcyMemjGyMkiVS34Y0AHC5KG3y4A=="; 40214 + url = "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.2.tgz"; 40215 + sha512 = "KbkM9D9x/ZOV6gLwaN8izl2ZMI3sg+C4JLuUSmd8zJ4Z2d3mSWrznJRLuXkZcyN9lLaRm4Dz2VPjae3AkC5X1A=="; 41187 40216 }; 41188 40217 }; 41189 - "micromark-extension-mdx-jsx-0.3.3" = { 40218 + "micromark-extension-mdx-jsx-1.0.2" = { 41190 40219 name = "micromark-extension-mdx-jsx"; 41191 40220 packageName = "micromark-extension-mdx-jsx"; 41192 - version = "0.3.3"; 40221 + version = "1.0.2"; 41193 40222 src = fetchurl { 41194 - url = "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-0.3.3.tgz"; 41195 - sha512 = "kG3VwaJlzAPdtIVDznfDfBfNGMTIzsHqKpTmMlew/iPnUCDRNkX+48ElpaOzXAtK5axtpFKE3Hu3VBriZDnRTQ=="; 40223 + url = "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.2.tgz"; 40224 + sha512 = "MBppeDuXEBIL1uo4B/bL5eJ1q3m5pXzdzIWpOnJuzzBZF+S+9zbb5WnS2K/LEVQeoyiLzOuoteU4SFPuGJhhWw=="; 41196 40225 }; 41197 40226 }; 41198 - "micromark-extension-mdx-md-0.1.1" = { 40227 + "micromark-extension-mdx-md-1.0.0" = { 41199 40228 name = "micromark-extension-mdx-md"; 41200 40229 packageName = "micromark-extension-mdx-md"; 41201 - version = "0.1.1"; 40230 + version = "1.0.0"; 41202 40231 src = fetchurl { 41203 - url = "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-0.1.1.tgz"; 41204 - sha512 = "emlFQEyfx/2aPhwyEqeNDfKE6jPH1cvLTb5ANRo4qZBjaUObnzjLRdzK8RJ4Xc8+/dOmKN8TTRxFnOYF5/EAwQ=="; 40232 + url = "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz"; 40233 + sha512 = "xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw=="; 41205 40234 }; 41206 40235 }; 41207 - "micromark-extension-mdxjs-0.3.0" = { 40236 + "micromark-extension-mdxjs-1.0.0" = { 41208 40237 name = "micromark-extension-mdxjs"; 41209 40238 packageName = "micromark-extension-mdxjs"; 41210 - version = "0.3.0"; 40239 + version = "1.0.0"; 41211 40240 src = fetchurl { 41212 - url = "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-0.3.0.tgz"; 41213 - sha512 = "NQuiYA0lw+eFDtSG4+c7ao3RG9dM4P0Kx/sn8OLyPhxtIc6k+9n14k5VfLxRKfAxYRTo8c5PLZPaRNmslGWxJw=="; 40241 + url = "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz"; 40242 + sha512 = "TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ=="; 41214 40243 }; 41215 40244 }; 41216 - "micromark-extension-mdxjs-esm-0.3.1" = { 40245 + "micromark-extension-mdxjs-esm-1.0.2" = { 41217 40246 name = "micromark-extension-mdxjs-esm"; 41218 40247 packageName = "micromark-extension-mdxjs-esm"; 41219 - version = "0.3.1"; 40248 + version = "1.0.2"; 40249 + src = fetchurl { 40250 + url = "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.2.tgz"; 40251 + sha512 = "bIaxblNIM+CCaJvp3L/V+168l79iuNmxEiTU6i3vB0YuDW+rumV64BFMxvhfRDxaJxQE1zD5vTPdyLBbW4efGA=="; 40252 + }; 40253 + }; 40254 + "micromark-factory-destination-1.0.0" = { 40255 + name = "micromark-factory-destination"; 40256 + packageName = "micromark-factory-destination"; 40257 + version = "1.0.0"; 40258 + src = fetchurl { 40259 + url = "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz"; 40260 + sha512 = "eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw=="; 40261 + }; 40262 + }; 40263 + "micromark-factory-label-1.0.2" = { 40264 + name = "micromark-factory-label"; 40265 + packageName = "micromark-factory-label"; 40266 + version = "1.0.2"; 40267 + src = fetchurl { 40268 + url = "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz"; 40269 + sha512 = "CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg=="; 40270 + }; 40271 + }; 40272 + "micromark-factory-mdx-expression-1.0.4" = { 40273 + name = "micromark-factory-mdx-expression"; 40274 + packageName = "micromark-factory-mdx-expression"; 40275 + version = "1.0.4"; 40276 + src = fetchurl { 40277 + url = "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.4.tgz"; 40278 + sha512 = "1mS1Cg/GmvvafgHQvxz4OqhcO1JGwzzTuGh1C8NIUrmnr6/3A1dJiAphHz7kJKI/b9WIr69Q8VswuwyWo576yQ=="; 40279 + }; 40280 + }; 40281 + "micromark-factory-space-1.0.0" = { 40282 + name = "micromark-factory-space"; 40283 + packageName = "micromark-factory-space"; 40284 + version = "1.0.0"; 40285 + src = fetchurl { 40286 + url = "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz"; 40287 + sha512 = "qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew=="; 40288 + }; 40289 + }; 40290 + "micromark-factory-title-1.0.2" = { 40291 + name = "micromark-factory-title"; 40292 + packageName = "micromark-factory-title"; 40293 + version = "1.0.2"; 40294 + src = fetchurl { 40295 + url = "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz"; 40296 + sha512 = "zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A=="; 40297 + }; 40298 + }; 40299 + "micromark-factory-whitespace-1.0.0" = { 40300 + name = "micromark-factory-whitespace"; 40301 + packageName = "micromark-factory-whitespace"; 40302 + version = "1.0.0"; 40303 + src = fetchurl { 40304 + url = "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz"; 40305 + sha512 = "Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A=="; 40306 + }; 40307 + }; 40308 + "micromark-util-character-1.1.0" = { 40309 + name = "micromark-util-character"; 40310 + packageName = "micromark-util-character"; 40311 + version = "1.1.0"; 40312 + src = fetchurl { 40313 + url = "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz"; 40314 + sha512 = "agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg=="; 40315 + }; 40316 + }; 40317 + "micromark-util-chunked-1.0.0" = { 40318 + name = "micromark-util-chunked"; 40319 + packageName = "micromark-util-chunked"; 40320 + version = "1.0.0"; 40321 + src = fetchurl { 40322 + url = "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz"; 40323 + sha512 = "5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g=="; 40324 + }; 40325 + }; 40326 + "micromark-util-classify-character-1.0.0" = { 40327 + name = "micromark-util-classify-character"; 40328 + packageName = "micromark-util-classify-character"; 40329 + version = "1.0.0"; 40330 + src = fetchurl { 40331 + url = "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz"; 40332 + sha512 = "F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA=="; 40333 + }; 40334 + }; 40335 + "micromark-util-combine-extensions-1.0.0" = { 40336 + name = "micromark-util-combine-extensions"; 40337 + packageName = "micromark-util-combine-extensions"; 40338 + version = "1.0.0"; 40339 + src = fetchurl { 40340 + url = "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz"; 40341 + sha512 = "J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA=="; 40342 + }; 40343 + }; 40344 + "micromark-util-decode-numeric-character-reference-1.0.0" = { 40345 + name = "micromark-util-decode-numeric-character-reference"; 40346 + packageName = "micromark-util-decode-numeric-character-reference"; 40347 + version = "1.0.0"; 40348 + src = fetchurl { 40349 + url = "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz"; 40350 + sha512 = "OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w=="; 40351 + }; 40352 + }; 40353 + "micromark-util-decode-string-1.0.1" = { 40354 + name = "micromark-util-decode-string"; 40355 + packageName = "micromark-util-decode-string"; 40356 + version = "1.0.1"; 40357 + src = fetchurl { 40358 + url = "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.1.tgz"; 40359 + sha512 = "Wf3H6jLaO3iIlHEvblESXaKAr72nK7JtBbLLICPwuZc3eJkMcp4j8rJ5Xv1VbQWMCWWDvKUbVUbE2MfQNznwTA=="; 40360 + }; 40361 + }; 40362 + "micromark-util-encode-1.0.0" = { 40363 + name = "micromark-util-encode"; 40364 + packageName = "micromark-util-encode"; 40365 + version = "1.0.0"; 40366 + src = fetchurl { 40367 + url = "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.0.tgz"; 40368 + sha512 = "cJpFVM768h6zkd8qJ1LNRrITfY4gwFt+tziPcIf71Ui8yFzY9wG3snZQqiWVq93PG4Sw6YOtcNiKJfVIs9qfGg=="; 40369 + }; 40370 + }; 40371 + "micromark-util-events-to-acorn-1.0.4" = { 40372 + name = "micromark-util-events-to-acorn"; 40373 + packageName = "micromark-util-events-to-acorn"; 40374 + version = "1.0.4"; 40375 + src = fetchurl { 40376 + url = "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.0.4.tgz"; 40377 + sha512 = "dpo8ecREK5s/KMph7jJ46RLM6g7N21CMc9LAJQbDLdbQnTpijigkSJPTIfLXZ+h5wdXlcsQ+b6ufAE9v76AdgA=="; 40378 + }; 40379 + }; 40380 + "micromark-util-html-tag-name-1.0.0" = { 40381 + name = "micromark-util-html-tag-name"; 40382 + packageName = "micromark-util-html-tag-name"; 40383 + version = "1.0.0"; 40384 + src = fetchurl { 40385 + url = "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.0.0.tgz"; 40386 + sha512 = "NenEKIshW2ZI/ERv9HtFNsrn3llSPZtY337LID/24WeLqMzeZhBEE6BQ0vS2ZBjshm5n40chKtJ3qjAbVV8S0g=="; 40387 + }; 40388 + }; 40389 + "micromark-util-normalize-identifier-1.0.0" = { 40390 + name = "micromark-util-normalize-identifier"; 40391 + packageName = "micromark-util-normalize-identifier"; 40392 + version = "1.0.0"; 40393 + src = fetchurl { 40394 + url = "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz"; 40395 + sha512 = "yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg=="; 40396 + }; 40397 + }; 40398 + "micromark-util-resolve-all-1.0.0" = { 40399 + name = "micromark-util-resolve-all"; 40400 + packageName = "micromark-util-resolve-all"; 40401 + version = "1.0.0"; 40402 + src = fetchurl { 40403 + url = "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz"; 40404 + sha512 = "CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw=="; 40405 + }; 40406 + }; 40407 + "micromark-util-sanitize-uri-1.0.0" = { 40408 + name = "micromark-util-sanitize-uri"; 40409 + packageName = "micromark-util-sanitize-uri"; 40410 + version = "1.0.0"; 40411 + src = fetchurl { 40412 + url = "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.0.0.tgz"; 40413 + sha512 = "cCxvBKlmac4rxCGx6ejlIviRaMKZc0fWm5HdCHEeDWRSkn44l6NdYVRyU+0nT1XC72EQJMZV8IPHF+jTr56lAg=="; 40414 + }; 40415 + }; 40416 + "micromark-util-subtokenize-1.0.2" = { 40417 + name = "micromark-util-subtokenize"; 40418 + packageName = "micromark-util-subtokenize"; 40419 + version = "1.0.2"; 41220 40420 src = fetchurl { 41221 - url = "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-0.3.1.tgz"; 41222 - sha512 = "tuLgcELrgY1a5tPxjk+MrI3BdYtwW67UaHZdzKiDYD8loNbxwIscfdagI6A2BKuAkrfeyHF6FW3B8KuDK3ZMXw=="; 40421 + url = "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz"; 40422 + sha512 = "d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA=="; 40423 + }; 40424 + }; 40425 + "micromark-util-symbol-1.0.0" = { 40426 + name = "micromark-util-symbol"; 40427 + packageName = "micromark-util-symbol"; 40428 + version = "1.0.0"; 40429 + src = fetchurl { 40430 + url = "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.0.tgz"; 40431 + sha512 = "NZA01jHRNCt4KlOROn8/bGi6vvpEmlXld7EHcRH+aYWUfL3Wc8JLUNNlqUMKa0hhz6GrpUWsHtzPmKof57v0gQ=="; 40432 + }; 40433 + }; 40434 + "micromark-util-types-1.0.1" = { 40435 + name = "micromark-util-types"; 40436 + packageName = "micromark-util-types"; 40437 + version = "1.0.1"; 40438 + src = fetchurl { 40439 + url = "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.1.tgz"; 40440 + sha512 = "UT0ylWEEy80RFYzK9pEaugTqaxoD/j0Y9WhHpSyitxd99zjoQz7JJ+iKuhPAgOW2MiPSUAx+c09dcqokeyaROA=="; 41223 40441 }; 41224 40442 }; 41225 40443 "micromatch-2.3.11" = { ··· 41933 41151 sha512 = "A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q=="; 41934 41152 }; 41935 41153 }; 41936 - "module-definition-3.3.1" = { 41937 - name = "module-definition"; 41938 - packageName = "module-definition"; 41939 - version = "3.3.1"; 41940 - src = fetchurl { 41941 - url = "https://registry.npmjs.org/module-definition/-/module-definition-3.3.1.tgz"; 41942 - sha512 = "kLidGPwQ2yq484nSD+D3JoJp4Etc0Ox9P0L34Pu/cU4X4HcG7k7p62XI5BBuvURWMRX3RPyuhOcBHbKus+UH4A=="; 41943 - }; 41944 - }; 41945 41154 "module-deps-6.2.3" = { 41946 41155 name = "module-deps"; 41947 41156 packageName = "module-deps"; ··· 41958 41167 src = fetchurl { 41959 41168 url = "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.3.tgz"; 41960 41169 sha1 = "114c949673e2a8a35e9d35788527aa37b679da2b"; 41961 - }; 41962 - }; 41963 - "moize-6.1.0" = { 41964 - name = "moize"; 41965 - packageName = "moize"; 41966 - version = "6.1.0"; 41967 - src = fetchurl { 41968 - url = "https://registry.npmjs.org/moize/-/moize-6.1.0.tgz"; 41969 - sha512 = "WrMcM+C2Jy+qyOC/UMhA3BCHGowxV34dhDZnDNfxsREW/8N+33SFjmc23Q61Xv1WUthUA1vYopTitP1sZ5jkeg=="; 41970 41170 }; 41971 41171 }; 41972 41172 "mold-source-map-0.4.0" = { ··· 43194 42394 sha512 = "AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug=="; 43195 42395 }; 43196 42396 }; 43197 - "netlify-8.0.2" = { 43198 - name = "netlify"; 43199 - packageName = "netlify"; 43200 - version = "8.0.2"; 43201 - src = fetchurl { 43202 - url = "https://registry.npmjs.org/netlify/-/netlify-8.0.2.tgz"; 43203 - sha512 = "qOOcIgLjZL000JiUWBAJeSlqwvueNe/KjTHr0Oi7U/7gJIeCIUM0ktENJht2wF18jikO2zm1POZudYCzdQOnJw=="; 43204 - }; 43205 - }; 43206 - "netlify-headers-parser-4.0.1" = { 43207 - name = "netlify-headers-parser"; 43208 - packageName = "netlify-headers-parser"; 43209 - version = "4.0.1"; 43210 - src = fetchurl { 43211 - url = "https://registry.npmjs.org/netlify-headers-parser/-/netlify-headers-parser-4.0.1.tgz"; 43212 - sha512 = "Wq1ZKXLv8xnTmzWhjbkFnzIAAmas7GhtrFJXCeMfEoeGthuSekcEz+IMfpSDjhL/X3Ls5YIk9SuNUf/5/+TlEQ=="; 43213 - }; 43214 - }; 43215 - "netlify-redirect-parser-11.0.2" = { 43216 - name = "netlify-redirect-parser"; 43217 - packageName = "netlify-redirect-parser"; 43218 - version = "11.0.2"; 43219 - src = fetchurl { 43220 - url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-11.0.2.tgz"; 43221 - sha512 = "ngGSxRUv8dsao586J0MsfQFpi66TnIlYND1KRl1vCgjuuMBzvO9WbV8maqJA9d0G6f9NVKb+LqufmOQj4AkkFw=="; 43222 - }; 43223 - }; 43224 - "netlify-redirector-0.2.1" = { 43225 - name = "netlify-redirector"; 43226 - packageName = "netlify-redirector"; 43227 - version = "0.2.1"; 43228 - src = fetchurl { 43229 - url = "https://registry.npmjs.org/netlify-redirector/-/netlify-redirector-0.2.1.tgz"; 43230 - sha512 = "17vDR9p1Loanp+vd57y+b6WlKb5X+qb0LZ44oTYsKJbdonz4Md+Ybv1lzH1w1aKm5YWWXHR8LMpWyY9bjlAJKw=="; 43231 - }; 43232 - }; 43233 42397 "netmask-1.0.6" = { 43234 42398 name = "netmask"; 43235 42399 packageName = "netmask"; ··· 43726 42890 sha512 = "CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ=="; 43727 42891 }; 43728 42892 }; 43729 - "node-gyp-8.2.0" = { 42893 + "node-gyp-8.3.0" = { 43730 42894 name = "node-gyp"; 43731 42895 packageName = "node-gyp"; 43732 - version = "8.2.0"; 42896 + version = "8.3.0"; 43733 42897 src = fetchurl { 43734 - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-8.2.0.tgz"; 43735 - sha512 = "KG8SdcoAnw2d6augGwl1kOayALUrXW/P2uOAm2J2+nmW/HjZo7y+8TDg7LejxbekOOSv3kzhq+NSUYkIDAX8eA=="; 42898 + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-8.3.0.tgz"; 42899 + sha512 = "e+vmKyTiybKgrmvs4M2REFKCnOd+NcrAAnn99Yko6NQA+zZdMlRvbIUHojfsHrSQ1CddLgZnHicnEVgDHziJzA=="; 43736 42900 }; 43737 42901 }; 43738 42902 "node-gyp-build-3.9.0" = { ··· 43879 43043 sha512 = "TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q=="; 43880 43044 }; 43881 43045 }; 43882 - "node-pre-gyp-0.13.0" = { 43883 - name = "node-pre-gyp"; 43884 - packageName = "node-pre-gyp"; 43885 - version = "0.13.0"; 43886 - src = fetchurl { 43887 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz"; 43888 - sha512 = "Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ=="; 43889 - }; 43890 - }; 43891 43046 "node-pre-gyp-0.6.39" = { 43892 43047 name = "node-pre-gyp"; 43893 43048 packageName = "node-pre-gyp"; ··· 43924 43079 sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; 43925 43080 }; 43926 43081 }; 43927 - "node-releases-2.0.0" = { 43082 + "node-releases-2.0.1" = { 43928 43083 name = "node-releases"; 43929 43084 packageName = "node-releases"; 43930 - version = "2.0.0"; 43085 + version = "2.0.1"; 43931 43086 src = fetchurl { 43932 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.0.tgz"; 43933 - sha512 = "aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA=="; 43934 - }; 43935 - }; 43936 - "node-source-walk-4.2.0" = { 43937 - name = "node-source-walk"; 43938 - packageName = "node-source-walk"; 43939 - version = "4.2.0"; 43940 - src = fetchurl { 43941 - url = "https://registry.npmjs.org/node-source-walk/-/node-source-walk-4.2.0.tgz"; 43942 - sha512 = "hPs/QMe6zS94f5+jG3kk9E7TNm4P2SulrKiLWMzKszBfNZvL/V6wseHlTd7IvfW0NZWqPtK3+9yYNr+3USGteA=="; 43087 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz"; 43088 + sha512 = "CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA=="; 43943 43089 }; 43944 43090 }; 43945 43091 "node-ssdp-2.9.1" = { ··· 44003 43149 src = fetchurl { 44004 43150 url = "https://registry.npmjs.org/node-version/-/node-version-1.2.0.tgz"; 44005 43151 sha512 = "ma6oU4Sk0qOoKEAymVoTvk8EdXEobdS7m/mAGhDJ8Rouugho48crHBORAmy5BoOcv8wraPM6xumapQp5hl4iIQ=="; 44006 - }; 44007 - }; 44008 - "node-version-alias-1.0.1" = { 44009 - name = "node-version-alias"; 44010 - packageName = "node-version-alias"; 44011 - version = "1.0.1"; 44012 - src = fetchurl { 44013 - url = "https://registry.npmjs.org/node-version-alias/-/node-version-alias-1.0.1.tgz"; 44014 - sha512 = "E9EhoJkpIIZyYplB298W8ZfhcojQrnKnUPcaOgJqVqICUZwPZkuj10nTzEscwdziOOj545v4tGPvNBG3ieUbSw=="; 44015 43152 }; 44016 43153 }; 44017 43154 "node-wsfederation-0.1.1" = { ··· 44131 43268 sha1 = "94a2b1633c4f1317553007d8966fd0e841b6a4c2"; 44132 43269 }; 44133 43270 }; 44134 - "noop2-2.0.0" = { 44135 - name = "noop2"; 44136 - packageName = "noop2"; 44137 - version = "2.0.0"; 44138 - src = fetchurl { 44139 - url = "https://registry.npmjs.org/noop2/-/noop2-2.0.0.tgz"; 44140 - sha1 = "4b636015e9882b54783c02b412f699d8c5cd0a5b"; 44141 - }; 44142 - }; 44143 43271 "nopt-1.0.10" = { 44144 43272 name = "nopt"; 44145 43273 packageName = "nopt"; ··· 44203 43331 sha512 = "Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ=="; 44204 43332 }; 44205 43333 }; 44206 - "normalize-node-version-10.0.0" = { 44207 - name = "normalize-node-version"; 44208 - packageName = "normalize-node-version"; 44209 - version = "10.0.0"; 44210 - src = fetchurl { 44211 - url = "https://registry.npmjs.org/normalize-node-version/-/normalize-node-version-10.0.0.tgz"; 44212 - sha512 = "/gVbS/qAnowVxr2fJy3F0MxmCvx8QdXJDl8XUE7HT3vsDeDjQfZkX9OiPahF+51Hgy93cKG1hP6uyBjQsMCvWQ=="; 44213 - }; 44214 - }; 44215 43334 "normalize-package-data-2.5.0" = { 44216 43335 name = "normalize-package-data"; 44217 43336 packageName = "normalize-package-data"; ··· 44653 43772 sha1 = "201095a487e1ad36081b3432fa3cada4f8d071b0"; 44654 43773 }; 44655 43774 }; 43775 + "nullthrows-1.1.1" = { 43776 + name = "nullthrows"; 43777 + packageName = "nullthrows"; 43778 + version = "1.1.1"; 43779 + src = fetchurl { 43780 + url = "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz"; 43781 + sha512 = "2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw=="; 43782 + }; 43783 + }; 44656 43784 "num-sort-3.0.0" = { 44657 43785 name = "num-sort"; 44658 43786 packageName = "num-sort"; ··· 44825 43953 sha1 = "793cef251d45ebdeac32ae40a8b6814faab1d483"; 44826 43954 }; 44827 43955 }; 44828 - "ob1-0.59.0" = { 44829 - name = "ob1"; 44830 - packageName = "ob1"; 44831 - version = "0.59.0"; 44832 - src = fetchurl { 44833 - url = "https://registry.npmjs.org/ob1/-/ob1-0.59.0.tgz"; 44834 - sha512 = "opXMTxyWJ9m68ZglCxwo0OPRESIC/iGmKFPXEXzMZqsVIrgoRXOHmoMDkQzz4y3irVjbyPJRAh5pI9fd0MJTFQ=="; 44835 - }; 44836 - }; 44837 43956 "object-assign-1.0.0" = { 44838 43957 name = "object-assign"; 44839 43958 packageName = "object-assign"; ··· 45167 44286 sha512 = "rH3U4eLHsV+OgkOS29ULiC9JLspwMCyCIH/+BglLPXDxQs13IK8AGD+nVmkGXqGN5JefZu85YhfIi05CsOKWPw=="; 45168 44287 }; 45169 44288 }; 45170 - "oclif-plugin-completion-0.6.0" = { 45171 - name = "oclif-plugin-completion"; 45172 - packageName = "oclif-plugin-completion"; 45173 - version = "0.6.0"; 45174 - src = fetchurl { 45175 - url = "https://registry.npmjs.org/oclif-plugin-completion/-/oclif-plugin-completion-0.6.0.tgz"; 45176 - sha512 = "0HGaSR/E/seIhSzFxLkh0QqckuNSre4iGqSElZRUv1hVHH2YgrZ7xtQL9McwL8o1fh6HqkzykjUx0Iy2haVIUg=="; 45177 - }; 45178 - }; 45179 - "office-ui-fabric-react-7.177.2" = { 44289 + "office-ui-fabric-react-7.177.3" = { 45180 44290 name = "office-ui-fabric-react"; 45181 44291 packageName = "office-ui-fabric-react"; 45182 - version = "7.177.2"; 44292 + version = "7.177.3"; 45183 44293 src = fetchurl { 45184 - url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.177.2.tgz"; 45185 - sha512 = "YKDdpU7s+ISHFGtOlSOv4qC9R6pW2Ixw73WkVaj7PcRQTx1UXz5tZfZHJadN27x7vJKxYQqgv6mFYgYQnTb4qQ=="; 44294 + url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.177.3.tgz"; 44295 + sha512 = "Y+0tDtVnRAKTnOVYK+fV/CLnCsRo04gZuEs3602ZOENCbBr3LWt6YmzxZJIWxXQzqqrhZi2R8XOQW/1dw/Ik5g=="; 45186 44296 }; 45187 44297 }; 45188 44298 "omggif-1.0.10" = { ··· 45192 44302 src = fetchurl { 45193 44303 url = "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz"; 45194 44304 sha512 = "LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw=="; 45195 - }; 45196 - }; 45197 - "omit.js-2.0.2" = { 45198 - name = "omit.js"; 45199 - packageName = "omit.js"; 45200 - version = "2.0.2"; 45201 - src = fetchurl { 45202 - url = "https://registry.npmjs.org/omit.js/-/omit.js-2.0.2.tgz"; 45203 - sha512 = "hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg=="; 45204 44305 }; 45205 44306 }; 45206 44307 "on-change-network-0.0.2" = { ··· 45356 44457 sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; 45357 44458 }; 45358 44459 }; 45359 - "oo-ascii-tree-1.39.0" = { 44460 + "oo-ascii-tree-1.40.0" = { 45360 44461 name = "oo-ascii-tree"; 45361 44462 packageName = "oo-ascii-tree"; 45362 - version = "1.39.0"; 44463 + version = "1.40.0"; 45363 44464 src = fetchurl { 45364 - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.39.0.tgz"; 45365 - sha512 = "a0g33GTdCizt5jnQzY9j6cRNyx5xITmZb+b3C21+KNweaERltcR1BQO/tLUuuVEFRVWvZcUqrFDVa8f8nqOafA=="; 44465 + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.40.0.tgz"; 44466 + sha512 = "nkiEc8TJZwGxPdEB1jRxHWyc/qBTPQSf70KhO+WjuiWzVfLVEWF/dksWRjm8e510YmPrBjfYCJOn+BVlOUojSQ=="; 45366 44467 }; 45367 44468 }; 45368 44469 "opal-runtime-1.0.11" = { ··· 45437 44538 sha512 = "rXILpcQlkF/QuFez2BJDf3GsqpjGKbkUUToAIGo9A0Q6ZkoSGogZJulrUdwRkrAsoQvoZsrjCYt8+zblOk7JQQ=="; 45438 44539 }; 45439 44540 }; 45440 - "open-8.3.0" = { 44541 + "open-8.4.0" = { 45441 44542 name = "open"; 45442 44543 packageName = "open"; 45443 - version = "8.3.0"; 44544 + version = "8.4.0"; 45444 44545 src = fetchurl { 45445 - url = "https://registry.npmjs.org/open/-/open-8.3.0.tgz"; 45446 - sha512 = "7INcPWb1UcOwSQxAXTnBJ+FxVV4MPs/X++FWWBtgY69/J5lc+tCteMt/oFK1MnkyHC4VILLa9ntmwKTwDR4Q9w=="; 44546 + url = "https://registry.npmjs.org/open/-/open-8.4.0.tgz"; 44547 + sha512 = "XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q=="; 45447 44548 }; 45448 44549 }; 45449 44550 "openapi-default-setter-2.1.0" = { ··· 45923 45024 sha512 = "9tXIMPvjZ7hPTbk8DFq1f7Kow/HU/pQYB60JbNq+QnGwcyhWVZaQ4hM9zQDEsPxw/muLpgiHSaumUZxCAmod/w=="; 45924 45025 }; 45925 45026 }; 45926 - "ora-5.4.0" = { 45927 - name = "ora"; 45928 - packageName = "ora"; 45929 - version = "5.4.0"; 45930 - src = fetchurl { 45931 - url = "https://registry.npmjs.org/ora/-/ora-5.4.0.tgz"; 45932 - sha512 = "1StwyXQGoU6gdjYkyVcqOLnVlbKj+6yPNNOxJVgpt9t4eksKjiriiHuxktLYkgllwk+D6MbC4ihH84L1udRXPg=="; 45933 - }; 45934 - }; 45935 45027 "ora-5.4.1" = { 45936 45028 name = "ora"; 45937 45029 packageName = "ora"; ··· 46067 45159 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; 46068 45160 }; 46069 45161 }; 46070 - "ot-builder-1.2.0" = { 45162 + "ot-builder-1.3.0" = { 46071 45163 name = "ot-builder"; 46072 45164 packageName = "ot-builder"; 46073 - version = "1.2.0"; 45165 + version = "1.3.0"; 46074 45166 src = fetchurl { 46075 - url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.2.0.tgz"; 46076 - sha512 = "zVVOHksH1kdHx8FSuiNFXbFW2nJg8QgoK1Kng9fw7vR6r8EXl0hGuqkHtknsydL+kLX07JC4apwG6ftNu6TKYQ=="; 45167 + url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.3.0.tgz"; 45168 + sha512 = "FPUhp3BlpGYtjIwngN+7onKCKKR659LO8qajLzJQF48s7EAvqt2JxRZyLesWm9CgI6v0LS+CPyy8MrdKpxmn4Q=="; 46077 45169 }; 46078 45170 }; 46079 - "otb-ttc-bundle-1.2.0" = { 45171 + "otb-ttc-bundle-1.3.0" = { 46080 45172 name = "otb-ttc-bundle"; 46081 45173 packageName = "otb-ttc-bundle"; 46082 - version = "1.2.0"; 45174 + version = "1.3.0"; 46083 45175 src = fetchurl { 46084 - url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.2.0.tgz"; 46085 - sha512 = "RwPZjepVm3WJnr49jnZvw8iS5Gkf7y9TJO3lMBI8Mb2//CqCmZ37hDnZB4cu1Q5EsYXpheZmh6ldOp/o1r0Bkg=="; 45176 + url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.3.0.tgz"; 45177 + sha512 = "bb+46cdq0mvvf97Sx4llGxAuzkO7awX4+vdJZFEYFgeu40yHWUSEQBsWRgdsk6//jJ3oIiMiYZOq+qQcz/Wsww=="; 46086 45178 }; 46087 45179 }; 46088 45180 "ow-0.21.0" = { ··· 46193 45285 sha512 = "KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ=="; 46194 45286 }; 46195 45287 }; 46196 - "p-every-2.0.0" = { 46197 - name = "p-every"; 46198 - packageName = "p-every"; 46199 - version = "2.0.0"; 46200 - src = fetchurl { 46201 - url = "https://registry.npmjs.org/p-every/-/p-every-2.0.0.tgz"; 46202 - sha512 = "MCz9DqD5opPC48Zsd+BHm56O/HfhYIQQtupfDzhXoVgQdg/Ux4F8/JcdRuQ+arq7zD5fB6zP3axbH3d9Nr8dlw=="; 46203 - }; 46204 - }; 46205 45288 "p-filter-2.1.0" = { 46206 45289 name = "p-filter"; 46207 45290 packageName = "p-filter"; ··· 46515 45598 src = fetchurl { 46516 45599 url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"; 46517 45600 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 46518 - }; 46519 - }; 46520 - "p-wait-for-3.2.0" = { 46521 - name = "p-wait-for"; 46522 - packageName = "p-wait-for"; 46523 - version = "3.2.0"; 46524 - src = fetchurl { 46525 - url = "https://registry.npmjs.org/p-wait-for/-/p-wait-for-3.2.0.tgz"; 46526 - sha512 = "wpgERjNkLrBiFmkMEjuZJEWKKDrNfHCKA1OhyN1wg1FrLkULbviEy6py1AyJUgZ72YWFbZ38FIpnqvVqAlDUwA=="; 46527 45601 }; 46528 45602 }; 46529 45603 "p-waterfall-2.1.1" = { ··· 46859 45933 sha512 = "kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ=="; 46860 45934 }; 46861 45935 }; 45936 + "parse-entities-3.0.0" = { 45937 + name = "parse-entities"; 45938 + packageName = "parse-entities"; 45939 + version = "3.0.0"; 45940 + src = fetchurl { 45941 + url = "https://registry.npmjs.org/parse-entities/-/parse-entities-3.0.0.tgz"; 45942 + sha512 = "AJlcIFDNPEP33KyJLguv0xJc83BNvjxwpuUIcetyXUsLpVXAUCePJ5kIoYtEN2R1ac0cYaRu/vk9dVFkewHQhQ=="; 45943 + }; 45944 + }; 46862 45945 "parse-filepath-1.0.2" = { 46863 45946 name = "parse-filepath"; 46864 45947 packageName = "parse-filepath"; ··· 47271 46354 src = fetchurl { 47272 46355 url = "https://registry.npmjs.org/passport/-/passport-0.4.1.tgz"; 47273 46356 sha512 = "IxXgZZs8d7uFSt3eqNjM9NQ3g3uQCW5avD8mRNoXV99Yig50vjuaez6dQK2qC0kVWPRTujxY0dWgGfT09adjYg=="; 46357 + }; 46358 + }; 46359 + "passport-0.5.0" = { 46360 + name = "passport"; 46361 + packageName = "passport"; 46362 + version = "0.5.0"; 46363 + src = fetchurl { 46364 + url = "https://registry.npmjs.org/passport/-/passport-0.5.0.tgz"; 46365 + sha512 = "ln+ue5YaNDS+fes6O5PCzXKSseY5u8MYhX9H5Co4s+HfYI5oqvnHKoOORLYDUPh+8tHvrxugF2GFcUA1Q1Gqfg=="; 47274 46366 }; 47275 46367 }; 47276 46368 "passport-http-bearer-1.0.1" = { ··· 47714 46806 sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50"; 47715 46807 }; 47716 46808 }; 47717 - "perfect-scrollbar-1.5.2" = { 46809 + "perfect-scrollbar-1.5.3" = { 47718 46810 name = "perfect-scrollbar"; 47719 46811 packageName = "perfect-scrollbar"; 47720 - version = "1.5.2"; 46812 + version = "1.5.3"; 47721 46813 src = fetchurl { 47722 - url = "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.2.tgz"; 47723 - sha512 = "McHAinFkyzKbBZrFtb4MT2mxkehp15KvOX/UrjB8C5EZZXHTHgyETo5IGFYtHRTI2Pb2bsV0OE0YnkjT9Cw3aw=="; 46814 + url = "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.3.tgz"; 46815 + sha512 = "+Lo6t61lSuCY9ghpqh1NFMXOu8fNwlYGqPoUMOZ3HTFIL4g7+L7zD7hQCLW5yjkOZ6LGTw1m9+MfEew7cngtAQ=="; 47724 46816 }; 47725 46817 }; 47726 46818 "performance-now-0.2.0" = { ··· 48498 47590 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 48499 47591 }; 48500 47592 }; 47593 + "postcss-8.3.11" = { 47594 + name = "postcss"; 47595 + packageName = "postcss"; 47596 + version = "8.3.11"; 47597 + src = fetchurl { 47598 + url = "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz"; 47599 + sha512 = "hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA=="; 47600 + }; 47601 + }; 48501 47602 "postcss-8.3.9" = { 48502 47603 name = "postcss"; 48503 47604 packageName = "postcss"; ··· 48948 48049 sha512 = "Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g=="; 48949 48050 }; 48950 48051 }; 48052 + "postcss-safe-parser-6.0.0" = { 48053 + name = "postcss-safe-parser"; 48054 + packageName = "postcss-safe-parser"; 48055 + version = "6.0.0"; 48056 + src = fetchurl { 48057 + url = "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz"; 48058 + sha512 = "FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ=="; 48059 + }; 48060 + }; 48951 48061 "postcss-sass-0.2.0" = { 48952 48062 name = "postcss-sass"; 48953 48063 packageName = "postcss-sass"; ··· 49054 48164 src = fetchurl { 49055 48165 url = "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz"; 49056 48166 sha512 = "97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ=="; 49057 - }; 49058 - }; 49059 - "postcss-values-parser-2.0.1" = { 49060 - name = "postcss-values-parser"; 49061 - packageName = "postcss-values-parser"; 49062 - version = "2.0.1"; 49063 - src = fetchurl { 49064 - url = "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz"; 49065 - sha512 = "2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg=="; 49066 48167 }; 49067 48168 }; 49068 48169 "postgres-array-2.0.0" = { ··· 49146 48247 sha512 = "W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw=="; 49147 48248 }; 49148 48249 }; 49149 - "potpack-1.0.1" = { 48250 + "potpack-1.0.2" = { 49150 48251 name = "potpack"; 49151 48252 packageName = "potpack"; 49152 - version = "1.0.1"; 48253 + version = "1.0.2"; 49153 48254 src = fetchurl { 49154 - url = "https://registry.npmjs.org/potpack/-/potpack-1.0.1.tgz"; 49155 - sha512 = "15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw=="; 48255 + url = "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz"; 48256 + sha512 = "choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ=="; 49156 48257 }; 49157 48258 }; 49158 48259 "pouchdb-abstract-mapreduce-7.2.2" = { ··· 49434 48535 sha512 = "Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ=="; 49435 48536 }; 49436 48537 }; 49437 - "precinct-8.1.0" = { 49438 - name = "precinct"; 49439 - packageName = "precinct"; 49440 - version = "8.1.0"; 49441 - src = fetchurl { 49442 - url = "https://registry.npmjs.org/precinct/-/precinct-8.1.0.tgz"; 49443 - sha512 = "oeZBR9IdER42Ef6Rz11z1oOUqicsI5J1Qffj6tYghKLhxN2UnHy7uE1axxNr0VZRevPK2HWkROk36uXrbJwHFA=="; 49444 - }; 49445 - }; 49446 48538 "precond-0.2.3" = { 49447 48539 name = "precond"; 49448 48540 packageName = "precond"; ··· 49830 48922 sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182"; 49831 48923 }; 49832 48924 }; 49833 - "process-es6-0.11.6" = { 49834 - name = "process-es6"; 49835 - packageName = "process-es6"; 49836 - version = "0.11.6"; 49837 - src = fetchurl { 49838 - url = "https://registry.npmjs.org/process-es6/-/process-es6-0.11.6.tgz"; 49839 - sha1 = "c6bb389f9a951f82bd4eb169600105bd2ff9c778"; 49840 - }; 49841 - }; 49842 48925 "process-exists-3.1.0" = { 49843 48926 name = "process-exists"; 49844 48927 packageName = "process-exists"; ··· 50199 49282 sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; 50200 49283 }; 50201 49284 }; 50202 - "proto3-json-serializer-0.1.4" = { 49285 + "proto3-json-serializer-0.1.5" = { 50203 49286 name = "proto3-json-serializer"; 50204 49287 packageName = "proto3-json-serializer"; 50205 - version = "0.1.4"; 49288 + version = "0.1.5"; 50206 49289 src = fetchurl { 50207 - url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.4.tgz"; 50208 - sha512 = "bFzdsKU/zaTobWrRxRniMZIzzcgKYlmBWL1gAcTXZ2M7TQTGPI0JoYYs6bN7tpWj59ZCfwg7Ii/A2e8BbQGYnQ=="; 49290 + url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.5.tgz"; 49291 + sha512 = "G395jcZkgNXNeS+6FGqd09TsXeoCs9wmBWByDiwFy7Yd7HD8pyfyvf6q+rGh7PhT4AshRpG4NowzoKYUtkNjKg=="; 50209 49292 }; 50210 49293 }; 50211 49294 "protobufjs-3.8.2" = { ··· 51351 50434 sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; 51352 50435 }; 51353 50436 }; 51354 - "pyright-1.1.178" = { 50437 + "pyright-1.1.182" = { 51355 50438 name = "pyright"; 51356 50439 packageName = "pyright"; 51357 - version = "1.1.178"; 50440 + version = "1.1.182"; 51358 50441 src = fetchurl { 51359 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.178.tgz"; 51360 - sha512 = "OhEoC5HfKZqvY5GVCsHeroYDx85xp4CZwevhNsePxNzZyW+W491K4bfLTvuOBnvcnMWip+aMQ7zzFDkw74Gtkg=="; 50442 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.182.tgz"; 50443 + sha512 = "7LK10Lp8ARTQbHcZ9RHvAAY5jw5APU7oeso0OOH6RIzTDXndvng9RlzVkcUdexisQfT7pLEzONhK5PHkYEldyg=="; 51361 50444 }; 51362 50445 }; 51363 50446 "q-0.9.7" = { ··· 52161 51244 sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; 52162 51245 }; 52163 51246 }; 52164 - "react-devtools-core-4.20.0" = { 51247 + "react-devtools-core-4.20.2" = { 52165 51248 name = "react-devtools-core"; 52166 51249 packageName = "react-devtools-core"; 52167 - version = "4.20.0"; 51250 + version = "4.20.2"; 52168 51251 src = fetchurl { 52169 - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.20.0.tgz"; 52170 - sha512 = "85889TaQpU4HImySgOjVwsGE1vkS9dgEjtruRHutnXlBN3IZN8lDRuqRBLmhFkS50BEmfpTR28qV7bHAqwHooA=="; 51252 + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.20.2.tgz"; 51253 + sha512 = "ep2j84M1ZtDFWsTtFrKyLyg4GEbnw4gFj/8brA+BZtsINgKHhWEVzscz5E/bFWRdyTM8mWdcaKQAk2hR+IezPw=="; 52171 51254 }; 52172 51255 }; 52173 51256 "react-dom-16.14.0" = { ··· 52285 51368 src = fetchurl { 52286 51369 url = "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.26.2.tgz"; 52287 51370 sha512 = "nK6kgY28HwrMNwDnMui3dvm3rCFjZrcGiuwLc5COUipBK5hWHLOxMJhSnSomirqWwjPBJKV1QcbkI0VJr7Gl1Q=="; 52288 - }; 52289 - }; 52290 - "react-refresh-0.4.3" = { 52291 - name = "react-refresh"; 52292 - packageName = "react-refresh"; 52293 - version = "0.4.3"; 52294 - src = fetchurl { 52295 - url = "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz"; 52296 - sha512 = "Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA=="; 52297 51371 }; 52298 51372 }; 52299 51373 "react-side-effect-2.1.1" = { ··· 53007 52081 sha512 = "pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A=="; 53008 52082 }; 53009 52083 }; 53010 - "redux-4.1.1" = { 52084 + "redux-4.0.5" = { 53011 52085 name = "redux"; 53012 52086 packageName = "redux"; 53013 - version = "4.1.1"; 52087 + version = "4.0.5"; 53014 52088 src = fetchurl { 53015 - url = "https://registry.npmjs.org/redux/-/redux-4.1.1.tgz"; 53016 - sha512 = "hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw=="; 52089 + url = "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz"; 52090 + sha512 = "VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w=="; 53017 52091 }; 53018 52092 }; 53019 52093 "reflect-metadata-0.1.13" = { ··· 53808 52882 sha512 = "lcuG1J74VGTT4gl8oH33HpkHrqorxjxMlJnBupLFrVowqvJ2hAq8yPJdGZ7P46uZOYw+Xz+Qv08bF8A73PNWxQ=="; 53809 52883 }; 53810 52884 }; 53811 - "remark-mdx-2.0.0-next.9" = { 52885 + "remark-mdx-2.0.0-next.7" = { 52886 + name = "remark-mdx"; 52887 + packageName = "remark-mdx"; 52888 + version = "2.0.0-next.7"; 52889 + src = fetchurl { 52890 + url = "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.0.0-next.7.tgz"; 52891 + sha512 = "JHYCfxJzvjTw8h5y10f+mCvbfIt5klAkWlULqPu1nM/r6ghF3tzJl0AFQFj5b/m/7U553+yYb/y4n0julMERYA=="; 52892 + }; 52893 + }; 52894 + "remark-mdx-2.0.0-rc.1" = { 53812 52895 name = "remark-mdx"; 53813 52896 packageName = "remark-mdx"; 53814 - version = "2.0.0-next.9"; 52897 + version = "2.0.0-rc.1"; 53815 52898 src = fetchurl { 53816 - url = "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.0.0-next.9.tgz"; 53817 - sha512 = "I5dCKP5VE18SMd5ycIeeEk8Hl6oaldUY6PIvjrfm65l7d0QRnLqknb62O2g3QEmOxCswcHTtwITtz6rfUIVs+A=="; 52899 + url = "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.0.0-rc.1.tgz"; 52900 + sha512 = "y3cj3wDwpXTE1boMco/nsquHj2noK0mtnXwBC8FJ/CtU06y66jOBWX1kLknluBl06pYbxtx1ypAOHKvjgT4vsA=="; 53818 52901 }; 53819 52902 }; 53820 52903 "remark-mdxjs-2.0.0-next.8" = { ··· 54276 53359 sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 54277 53360 }; 54278 53361 }; 54279 - "require-package-name-2.0.1" = { 54280 - name = "require-package-name"; 54281 - packageName = "require-package-name"; 54282 - version = "2.0.1"; 54283 - src = fetchurl { 54284 - url = "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz"; 54285 - sha1 = "c11e97276b65b8e2923f75dabf5fb2ef0c3841b9"; 54286 - }; 54287 - }; 54288 53362 "require-relative-0.8.7" = { 54289 53363 name = "require-relative"; 54290 53364 packageName = "require-relative"; ··· 54339 53413 sha512 = "YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ=="; 54340 53414 }; 54341 53415 }; 54342 - "reselect-4.0.0" = { 53416 + "reselect-4.1.1" = { 54343 53417 name = "reselect"; 54344 53418 packageName = "reselect"; 54345 - version = "4.0.0"; 53419 + version = "4.1.1"; 54346 53420 src = fetchurl { 54347 - url = "https://registry.npmjs.org/reselect/-/reselect-4.0.0.tgz"; 54348 - sha512 = "qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA=="; 53421 + url = "https://registry.npmjs.org/reselect/-/reselect-4.1.1.tgz"; 53422 + sha512 = "Jjt8Us6hAWJpjucyladHvUGR+q1mHHgWtGDXlhvvKyNyIeQ3bjuWLDX0bsTLhbm/gd4iXEACBlODUHBlLWiNnA=="; 54349 53423 }; 54350 53424 }; 54351 53425 "reserved-words-0.1.2" = { ··· 54382 53456 src = fetchurl { 54383 53457 url = "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz"; 54384 53458 sha512 = "c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw=="; 54385 - }; 54386 - }; 54387 - "resolve-2.0.0-next.3" = { 54388 - name = "resolve"; 54389 - packageName = "resolve"; 54390 - version = "2.0.0-next.3"; 54391 - src = fetchurl { 54392 - url = "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz"; 54393 - sha512 = "W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q=="; 54394 53459 }; 54395 53460 }; 54396 53461 "resolve-alpn-1.2.1" = { ··· 54987 54052 sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; 54988 54053 }; 54989 54054 }; 54990 - "rollup-2.58.0" = { 54991 - name = "rollup"; 54992 - packageName = "rollup"; 54993 - version = "2.58.0"; 54994 - src = fetchurl { 54995 - url = "https://registry.npmjs.org/rollup/-/rollup-2.58.0.tgz"; 54996 - sha512 = "NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw=="; 54997 - }; 54998 - }; 54999 54055 "rollup-plugin-babel-4.4.0" = { 55000 54056 name = "rollup-plugin-babel"; 55001 54057 packageName = "rollup-plugin-babel"; ··· 55023 54079 sha512 = "jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q=="; 55024 54080 }; 55025 54081 }; 55026 - "rollup-plugin-inject-3.0.2" = { 55027 - name = "rollup-plugin-inject"; 55028 - packageName = "rollup-plugin-inject"; 55029 - version = "3.0.2"; 55030 - src = fetchurl { 55031 - url = "https://registry.npmjs.org/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz"; 55032 - sha512 = "ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w=="; 55033 - }; 55034 - }; 55035 - "rollup-plugin-node-polyfills-0.2.1" = { 55036 - name = "rollup-plugin-node-polyfills"; 55037 - packageName = "rollup-plugin-node-polyfills"; 55038 - version = "0.2.1"; 55039 - src = fetchurl { 55040 - url = "https://registry.npmjs.org/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz"; 55041 - sha512 = "4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA=="; 55042 - }; 55043 - }; 55044 54082 "rollup-plugin-node-resolve-5.2.0" = { 55045 54083 name = "rollup-plugin-node-resolve"; 55046 54084 packageName = "rollup-plugin-node-resolve"; ··· 55057 54095 src = fetchurl { 55058 54096 url = "https://registry.npmjs.org/rollup-plugin-replace/-/rollup-plugin-replace-2.2.0.tgz"; 55059 54097 sha512 = "/5bxtUPkDHyBJAKketb4NfaeZjL5yLZdeUihSfbF2PQMz+rSTEb8ARKoOl3UBT4m7/X+QOXJo3sLTcq+yMMYTA=="; 55060 - }; 55061 - }; 55062 - "rollup-plugin-terser-7.0.2" = { 55063 - name = "rollup-plugin-terser"; 55064 - packageName = "rollup-plugin-terser"; 55065 - version = "7.0.2"; 55066 - src = fetchurl { 55067 - url = "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz"; 55068 - sha512 = "w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ=="; 55069 54098 }; 55070 54099 }; 55071 54100 "rollup-pluginutils-2.8.2" = { ··· 55554 54583 sha1 = "478be1429500fcfaa780be88b3343ced7d2a9182"; 55555 54584 }; 55556 54585 }; 55557 - "sass-1.43.2" = { 54586 + "sass-1.43.4" = { 55558 54587 name = "sass"; 55559 54588 packageName = "sass"; 55560 - version = "1.43.2"; 54589 + version = "1.43.4"; 55561 54590 src = fetchurl { 55562 - url = "https://registry.npmjs.org/sass/-/sass-1.43.2.tgz"; 55563 - sha512 = "DncYhjl3wBaPMMJR0kIUaH3sF536rVrOcqqVGmTZHQRRzj7LQlyGV7Mb8aCKFyILMr5VsPHwRYtyKpnKYlmQSQ=="; 54591 + url = "https://registry.npmjs.org/sass/-/sass-1.43.4.tgz"; 54592 + sha512 = "/ptG7KE9lxpGSYiXn7Ar+lKOv37xfWsZRtFYal2QHNigyVQDx685VFT/h7ejVr+R8w7H4tmUgtulsKl5YpveOg=="; 55564 54593 }; 55565 54594 }; 55566 54595 "sax-0.5.8" = { ··· 56319 55348 sha1 = "27d171efcc82a118b99639ff581660242b506e7c"; 56320 55349 }; 56321 55350 }; 56322 - "sha256-universal-1.1.2" = { 55351 + "sha256-universal-1.2.1" = { 56323 55352 name = "sha256-universal"; 56324 55353 packageName = "sha256-universal"; 56325 - version = "1.1.2"; 55354 + version = "1.2.1"; 56326 55355 src = fetchurl { 56327 - url = "https://registry.npmjs.org/sha256-universal/-/sha256-universal-1.1.2.tgz"; 56328 - sha512 = "sheCCiEJve+8rS/fgCaXax8SpXrLzPipCvp0+VDXXjDEHw2DdYqV2PdHVNMNWZrQ3fiQjaor4rQCzYdr3g7TIA=="; 55356 + url = "https://registry.npmjs.org/sha256-universal/-/sha256-universal-1.2.1.tgz"; 55357 + sha512 = "ghn3muhdn1ailCQqqceNxRgkOeZSVfSE13RQWEg6njB+itsFzGVSJv+O//2hvNXZuxVIRyNzrgsZ37SPDdGJJw=="; 56329 55358 }; 56330 55359 }; 56331 - "sha256-wasm-2.2.1" = { 55360 + "sha256-wasm-2.2.2" = { 56332 55361 name = "sha256-wasm"; 56333 55362 packageName = "sha256-wasm"; 56334 - version = "2.2.1"; 55363 + version = "2.2.2"; 56335 55364 src = fetchurl { 56336 - url = "https://registry.npmjs.org/sha256-wasm/-/sha256-wasm-2.2.1.tgz"; 56337 - sha512 = "OkqDgOpo86LzdWlpYVC/MfcQ1jytfR/wxPsGFJTWeEIyLaJg4spZTNQ40vuhYsLNDFidxqvMGae6u9VirkgqqA=="; 55365 + url = "https://registry.npmjs.org/sha256-wasm/-/sha256-wasm-2.2.2.tgz"; 55366 + sha512 = "qKSGARvao+JQlFiA+sjJZhJ/61gmW/3aNLblB2rsgIxDlDxsJPHo8a1seXj12oKtuHVgJSJJ7QEGBUYQN741lQ=="; 56338 55367 }; 56339 55368 }; 56340 - "sha512-universal-1.1.2" = { 55369 + "sha512-universal-1.2.1" = { 56341 55370 name = "sha512-universal"; 56342 55371 packageName = "sha512-universal"; 56343 - version = "1.1.2"; 55372 + version = "1.2.1"; 56344 55373 src = fetchurl { 56345 - url = "https://registry.npmjs.org/sha512-universal/-/sha512-universal-1.1.2.tgz"; 56346 - sha512 = "QGS+eFX3ycFiRl5TxIxWv5ltAYXaLpnUeLMJpnEVIB7dEI/7pw3X0kYe3msuE4XaHERReuqDKBYRrCiQsqlESQ=="; 55374 + url = "https://registry.npmjs.org/sha512-universal/-/sha512-universal-1.2.1.tgz"; 55375 + sha512 = "kehYuigMoRkIngCv7rhgruLJNNHDnitGTBdkcYbCbooL8Cidj/bS78MDxByIjcc69M915WxcQTgZetZ1JbeQTQ=="; 56347 55376 }; 56348 55377 }; 56349 - "sha512-wasm-2.3.1" = { 55378 + "sha512-wasm-2.3.2" = { 56350 55379 name = "sha512-wasm"; 56351 55380 packageName = "sha512-wasm"; 56352 - version = "2.3.1"; 55381 + version = "2.3.2"; 56353 55382 src = fetchurl { 56354 - url = "https://registry.npmjs.org/sha512-wasm/-/sha512-wasm-2.3.1.tgz"; 56355 - sha512 = "YxBYNsaHzTJh5gmk6AbD5aAvXktHy5LsjqbaEVdL60XslC4C7U23w2Mt8g+UDcvidr/K9aFZy3V71Y86Ech27A=="; 55383 + url = "https://registry.npmjs.org/sha512-wasm/-/sha512-wasm-2.3.2.tgz"; 55384 + sha512 = "vywsp4B4T7bv0xdBFiZAc88uEbuQd0Ll8hrnpZOsR/6Vz5lqJgboWdD6HEIUBIfMxQRaxwywDOKPSsa0Hp9pcA=="; 56356 55385 }; 56357 55386 }; 56358 55387 "shallow-clone-3.0.1" = { ··· 56463 55492 sha512 = "mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg=="; 56464 55493 }; 56465 55494 }; 55495 + "shell-quote-1.7.3" = { 55496 + name = "shell-quote"; 55497 + packageName = "shell-quote"; 55498 + version = "1.7.3"; 55499 + src = fetchurl { 55500 + url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz"; 55501 + sha512 = "Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw=="; 55502 + }; 55503 + }; 56466 55504 "shelljs-0.3.0" = { 56467 55505 name = "shelljs"; 56468 55506 packageName = "shelljs"; ··· 56724 55762 sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg=="; 56725 55763 }; 56726 55764 }; 56727 - "simple-git-2.46.0" = { 55765 + "simple-git-2.47.0" = { 56728 55766 name = "simple-git"; 56729 55767 packageName = "simple-git"; 56730 - version = "2.46.0"; 55768 + version = "2.47.0"; 56731 55769 src = fetchurl { 56732 - url = "https://registry.npmjs.org/simple-git/-/simple-git-2.46.0.tgz"; 56733 - sha512 = "6eumII1vfP4NpRqxZcVWCcIT5xHH6dRyvBZSjkH4dJRDRpv+0f75hrN5ysp++y23Mfr3AbRC/dO2NDbfj1lJpQ=="; 55770 + url = "https://registry.npmjs.org/simple-git/-/simple-git-2.47.0.tgz"; 55771 + sha512 = "+HfCpqPBEZTPWiW9fPdbiPJDslM22MLqrktfzNKyI2pWaJa6DhfNVx4Mds04KZzVv5vjC9/ksw3y5gVf8ECWDg=="; 56734 55772 }; 56735 55773 }; 56736 55774 "simple-handshake-3.0.0" = { ··· 56796 55834 sha512 = "qvdNu/dGMHBm2uQ7oLhQBMhYlrOZC1ywXNCH/i8I4etxR1vrjCnU6ZSQBptndB1gcakjo2+w4OHo7Sjza1SHxg=="; 56797 55835 }; 56798 55836 }; 56799 - "simple-plist-1.1.1" = { 55837 + "simple-plist-1.3.0" = { 56800 55838 name = "simple-plist"; 56801 55839 packageName = "simple-plist"; 56802 - version = "1.1.1"; 55840 + version = "1.3.0"; 56803 55841 src = fetchurl { 56804 - url = "https://registry.npmjs.org/simple-plist/-/simple-plist-1.1.1.tgz"; 56805 - sha512 = "pKMCVKvZbZTsqYR6RKgLfBHkh2cV89GXcA/0CVPje3sOiNOnXA8+rp/ciAMZ7JRaUdLzlEM6JFfUn+fS6Nt3hg=="; 55842 + url = "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.0.tgz"; 55843 + sha512 = "uYWpeGFtZtVt2NhG4AHgpwx323zxD85x42heMJBan1qAiqqozIlaGrwrEt6kRjXWRWIXsuV1VLCvVmZan2B5dg=="; 56806 55844 }; 56807 55845 }; 56808 55846 "simple-sha1-2.1.2" = { ··· 57246 56284 sha512 = "Si18v0mMXGAqLqCVpTxBa8MGqriHGQh8ccEOhmsmNS3thNCGBwO8WGrwMibANsWtQQ5NStdZwHqZR3naJVFc3w=="; 57247 56285 }; 57248 56286 }; 57249 - "socket.io-3.1.2" = { 56287 + "socket.io-4.1.3" = { 57250 56288 name = "socket.io"; 57251 56289 packageName = "socket.io"; 57252 - version = "3.1.2"; 56290 + version = "4.1.3"; 57253 56291 src = fetchurl { 57254 - url = "https://registry.npmjs.org/socket.io/-/socket.io-3.1.2.tgz"; 57255 - sha512 = "JubKZnTQ4Z8G4IZWtaAZSiRP3I/inpy8c/Bsx2jrwGrTbKeVU5xd6qkKMHpChYeM3dWZSO0QACiGK+obhBNwYw=="; 56292 + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.1.3.tgz"; 56293 + sha512 = "tLkaY13RcO4nIRh1K2hT5iuotfTaIQw7cVIe0FUykN3SuQi0cm7ALxuyT5/CtDswOMWUzMGTibxYNx/gU7In+Q=="; 57256 56294 }; 57257 56295 }; 57258 - "socket.io-4.1.3" = { 56296 + "socket.io-4.3.1" = { 57259 56297 name = "socket.io"; 57260 56298 packageName = "socket.io"; 57261 - version = "4.1.3"; 56299 + version = "4.3.1"; 57262 56300 src = fetchurl { 57263 - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.1.3.tgz"; 57264 - sha512 = "tLkaY13RcO4nIRh1K2hT5iuotfTaIQw7cVIe0FUykN3SuQi0cm7ALxuyT5/CtDswOMWUzMGTibxYNx/gU7In+Q=="; 56301 + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.3.1.tgz"; 56302 + sha512 = "HC5w5Olv2XZ0XJ4gOLGzzHEuOCfj3G0SmoW3jLHYYh34EVsIr3EkW9h6kgfW+K3TFEcmYy8JcPWe//KUkBp5jA=="; 57265 56303 }; 57266 56304 }; 57267 56305 "socket.io-adapter-0.2.0" = { ··· 57280 56318 src = fetchurl { 57281 56319 url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz"; 57282 56320 sha512 = "WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g=="; 57283 - }; 57284 - }; 57285 - "socket.io-adapter-2.1.0" = { 57286 - name = "socket.io-adapter"; 57287 - packageName = "socket.io-adapter"; 57288 - version = "2.1.0"; 57289 - src = fetchurl { 57290 - url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.1.0.tgz"; 57291 - sha512 = "+vDov/aTsLjViYTwS9fPy5pEtTkrbEKsw2M+oVSoFGw6OD1IpvlV1VPhUzNbofCQ8oyMbdYJqDtGdmHQK6TdPg=="; 57292 56321 }; 57293 56322 }; 57294 56323 "socket.io-adapter-2.3.2" = { ··· 58137 57166 sha1 = "825236a78d52a18ff912a631ad3034c15ded5fe3"; 58138 57167 }; 58139 57168 }; 58140 - "split2-1.1.1" = { 58141 - name = "split2"; 58142 - packageName = "split2"; 58143 - version = "1.1.1"; 58144 - src = fetchurl { 58145 - url = "https://registry.npmjs.org/split2/-/split2-1.1.1.tgz"; 58146 - sha1 = "162d9b18865f02ab2f2ad9585522db9b54c481f9"; 58147 - }; 58148 - }; 58149 57169 "split2-2.2.0" = { 58150 57170 name = "split2"; 58151 57171 packageName = "split2"; ··· 58326 57346 sha512 = "UF+4+khFXILLBqtu9HfrpUwYnDXIdAyJe3u9X4GrApuoakxuSKwaUGakUxLPyo6COyV2brMqufUgf+fDOI8Ftw=="; 58327 57347 }; 58328 57348 }; 58329 - "ssb-config-3.4.5" = { 57349 + "ssb-config-3.4.6" = { 58330 57350 name = "ssb-config"; 58331 57351 packageName = "ssb-config"; 58332 - version = "3.4.5"; 57352 + version = "3.4.6"; 58333 57353 src = fetchurl { 58334 - url = "https://registry.npmjs.org/ssb-config/-/ssb-config-3.4.5.tgz"; 58335 - sha512 = "DyCrGIsl01GkdHreAkkaDUorV7SAgRSqKn/htg4ZwbvH6g0NAdOi84x/8ehzDuojPev78hbkWjZXgIqi+/Jo0g=="; 57354 + url = "https://registry.npmjs.org/ssb-config/-/ssb-config-3.4.6.tgz"; 57355 + sha512 = "arKSuP3S5qlsqY7w5g0VGCidi7oullM5KBEqy/0M9OgedN1uW5SKyIgEjCE85PbkHBfCpAcCNps4exZzP317FA=="; 58336 57356 }; 58337 57357 }; 58338 57358 "ssb-db-19.2.0" = { ··· 58344 57364 sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung=="; 58345 57365 }; 58346 57366 }; 58347 - "ssb-db2-2.6.5" = { 57367 + "ssb-db2-2.6.6" = { 58348 57368 name = "ssb-db2"; 58349 57369 packageName = "ssb-db2"; 58350 - version = "2.6.5"; 57370 + version = "2.6.6"; 58351 57371 src = fetchurl { 58352 - url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.6.5.tgz"; 58353 - sha512 = "MFMQQEs1kdYl/eKp/7Bb4Ru/W/6nSUbHeJJhKuYg1iF4R9XJR2R8J5nyECI0y2DTRvz2UCEiVdGWu58+Y6Y2lA=="; 57372 + url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.6.6.tgz"; 57373 + sha512 = "c6cNjhrsKJ/WdKO/t0FTdlR7ee+j/cNN5iPqatk8mGXx+pdWE/9Ft1IbVhgS3TTp3z7ZrhAk3eoWgI3M+roY+A=="; 58354 57374 }; 58355 57375 }; 58356 57376 "ssb-ebt-5.6.7" = { ··· 58632 57652 sha512 = "B1UMy/+sZLbVo0KvdiAvOeSCalYWSaFXxxEmuZ0K0wRqIkn/KU7vdXeaXxp+bRmTTnABdu+k/O7qRJtdiD6e0w=="; 58633 57653 }; 58634 57654 }; 58635 - "ssb-validate2-rsjs-node-1.0.1" = { 57655 + "ssb-validate2-rsjs-node-1.0.3" = { 58636 57656 name = "ssb-validate2-rsjs-node"; 58637 57657 packageName = "ssb-validate2-rsjs-node"; 58638 - version = "1.0.1"; 57658 + version = "1.0.3"; 58639 57659 src = fetchurl { 58640 - url = "https://registry.npmjs.org/ssb-validate2-rsjs-node/-/ssb-validate2-rsjs-node-1.0.1.tgz"; 58641 - sha512 = "DoJDRrdJ0fHH/71QmnQ4D2XxtlLopIUVUH/+3nLFtOp8x563VVimwskQsOO/LzvwsstJ/XZSx9c7f+txApLNfg=="; 57660 + url = "https://registry.npmjs.org/ssb-validate2-rsjs-node/-/ssb-validate2-rsjs-node-1.0.3.tgz"; 57661 + sha512 = "jqMfr/EzgVkz53XCA/4cN+8sGrW4n8VPrDT5yjx4XcRxqiSHQYA0hp3M7N1XvLo1Zy+Eu51jGDLYXzlbql64Xw=="; 58642 57662 }; 58643 57663 }; 58644 57664 "ssb-ws-6.2.3" = { ··· 58650 57670 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 58651 57671 }; 58652 57672 }; 58653 - "sscaff-1.2.96" = { 57673 + "sscaff-1.2.109" = { 58654 57674 name = "sscaff"; 58655 57675 packageName = "sscaff"; 58656 - version = "1.2.96"; 57676 + version = "1.2.109"; 58657 57677 src = fetchurl { 58658 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.96.tgz"; 58659 - sha512 = "0Hp9NxV7Ba+ZJU5f3DAPZsvGi7pGKmFPGB2q0F1KHW4V6GVydK1lsyYTqSWmY4tKecN7DKi3mmyGSt01fKqxxw=="; 57678 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.109.tgz"; 57679 + sha512 = "yfhDBP1fFzjr9YrDF+LyLdyNUdskaVEEeAvVi+oZCDbJ+VWTQW+3SznmLt3jdVqtv0OhLYFIgHs5v8SBRFOHkQ=="; 58660 57680 }; 58661 57681 }; 58662 57682 "ssh-config-1.1.6" = { ··· 58758 57778 sha1 = "e923598a9be51e617682cb21cf1b2818a449ada2"; 58759 57779 }; 58760 57780 }; 58761 - "stack-generator-2.0.5" = { 58762 - name = "stack-generator"; 58763 - packageName = "stack-generator"; 58764 - version = "2.0.5"; 58765 - src = fetchurl { 58766 - url = "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.5.tgz"; 58767 - sha512 = "/t1ebrbHkrLrDuNMdeAcsvynWgoH/i4o8EGGfX7dEYDoTXOYVAkEpFdtshlvabzc6JlJ8Kf9YdFEoz7JkzGN9Q=="; 58768 - }; 58769 - }; 58770 57781 "stack-trace-0.0.10" = { 58771 57782 name = "stack-trace"; 58772 57783 packageName = "stack-trace"; ··· 58875 57886 sha512 = "D8vv82E/Kpmz3TXHKG8PPsCPg+RAX6cbCOyvjM6x04qZtQ47EtJFVwRsdov3n5d6/6ynrOY9XB4JkaZwB2xoRQ=="; 58876 57887 }; 58877 57888 }; 58878 - "static-server-2.2.1" = { 58879 - name = "static-server"; 58880 - packageName = "static-server"; 58881 - version = "2.2.1"; 58882 - src = fetchurl { 58883 - url = "https://registry.npmjs.org/static-server/-/static-server-2.2.1.tgz"; 58884 - sha512 = "j5eeW6higxYNmXMIT8iHjsdiViTpQDthg7o+SHsRtqdbxscdHqBHXwrXjHC8hL3F0Tsu34ApUpDkwzMBPBsrLw=="; 58885 - }; 58886 - }; 58887 57889 "statistics-3.3.0" = { 58888 57890 name = "statistics"; 58889 57891 packageName = "statistics"; ··· 58900 57902 src = fetchurl { 58901 57903 url = "https://registry.npmjs.org/stats-lite/-/stats-lite-2.2.0.tgz"; 58902 57904 sha512 = "/Kz55rgUIv2KP2MKphwYT/NCuSfAlbbMRv2ZWw7wyXayu230zdtzhxxuXXcvsc6EmmhS8bSJl3uS1wmMHFumbA=="; 58903 - }; 58904 - }; 58905 - "statsd-client-0.4.7" = { 58906 - name = "statsd-client"; 58907 - packageName = "statsd-client"; 58908 - version = "0.4.7"; 58909 - src = fetchurl { 58910 - url = "https://registry.npmjs.org/statsd-client/-/statsd-client-0.4.7.tgz"; 58911 - sha512 = "+sGCE6FednJ/vI7vywErOg/mhVqmf6Zlktz7cdGRnF/cQWXD9ifMgtqU1CIIXmhSwm11SCk4zDN+bwNCvIR/Kg=="; 58912 57905 }; 58913 57906 }; 58914 57907 "statuses-1.3.1" = { ··· 59613 58606 sha512 = "3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg=="; 59614 58607 }; 59615 58608 }; 58609 + "stringify-entities-4.0.1" = { 58610 + name = "stringify-entities"; 58611 + packageName = "stringify-entities"; 58612 + version = "4.0.1"; 58613 + src = fetchurl { 58614 + url = "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.1.tgz"; 58615 + sha512 = "gmMQxKXPWIO3NXNSPyWNhlYcBNGpPA/487D+9dLPnU4xBnIrnHdr8cv5rGJOS/1BRxEXRb7uKwg7BA36IWV7xg=="; 58616 + }; 58617 + }; 59616 58618 "stringify-package-1.0.1" = { 59617 58619 name = "stringify-package"; 59618 58620 packageName = "stringify-package"; ··· 59721 58723 sha512 = "cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw=="; 59722 58724 }; 59723 58725 }; 59724 - "strip-ansi-control-characters-2.0.0" = { 59725 - name = "strip-ansi-control-characters"; 59726 - packageName = "strip-ansi-control-characters"; 59727 - version = "2.0.0"; 59728 - src = fetchurl { 59729 - url = "https://registry.npmjs.org/strip-ansi-control-characters/-/strip-ansi-control-characters-2.0.0.tgz"; 59730 - sha512 = "Q0/k5orrVGeaOlIOUn1gybGU0IcAbgHQT1faLo5hik4DqClKVSaka5xOhNNoRgtfztHVxCYxi7j71mrWom0bIw=="; 59731 - }; 59732 - }; 59733 58726 "strip-bom-2.0.0" = { 59734 58727 name = "strip-bom"; 59735 58728 packageName = "strip-bom"; ··· 60009 59002 sha512 = "CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA=="; 60010 59003 }; 60011 59004 }; 60012 - "styled-components-5.3.1" = { 59005 + "styled-components-5.3.3" = { 60013 59006 name = "styled-components"; 60014 59007 packageName = "styled-components"; 60015 - version = "5.3.1"; 59008 + version = "5.3.3"; 60016 59009 src = fetchurl { 60017 - url = "https://registry.npmjs.org/styled-components/-/styled-components-5.3.1.tgz"; 60018 - sha512 = "JThv2JRzyH0NOIURrk9iskdxMSAAtCfj/b2Sf1WJaCUsloQkblepy1jaCLX/bYE+mhYo3unmwVSI9I5d9ncSiQ=="; 59010 + url = "https://registry.npmjs.org/styled-components/-/styled-components-5.3.3.tgz"; 59011 + sha512 = "++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw=="; 60019 59012 }; 60020 59013 }; 60021 59014 "stylehacks-4.0.3" = { ··· 60135 59128 sha1 = "3a26ab96e06f78cf4ace8d083f6227fa55970947"; 60136 59129 }; 60137 59130 }; 60138 - "sucrase-3.20.2" = { 59131 + "sucrase-3.20.3" = { 60139 59132 name = "sucrase"; 60140 59133 packageName = "sucrase"; 60141 - version = "3.20.2"; 59134 + version = "3.20.3"; 60142 59135 src = fetchurl { 60143 - url = "https://registry.npmjs.org/sucrase/-/sucrase-3.20.2.tgz"; 60144 - sha512 = "EdJ5M6VEvToIZwIWiZ71cxe4CklDRG8PdSjUSst+BZCUGlaEhnrdQo/LOXsuq3MjWRbfepg1XTffClK0Tmo0HQ=="; 59136 + url = "https://registry.npmjs.org/sucrase/-/sucrase-3.20.3.tgz"; 59137 + sha512 = "azqwq0/Bs6RzLAdb4dXxsCgMtAaD2hzmUr4UhSfsxO46JFPAwMnnb441B/qsudZiS6Ylea3JXZe3Q497lsgXzQ=="; 60145 59138 }; 60146 59139 }; 60147 59140 "sudo-block-1.2.0" = { ··· 60684 59677 sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA=="; 60685 59678 }; 60686 59679 }; 60687 - "systeminformation-5.9.7" = { 59680 + "systeminformation-5.9.8" = { 60688 59681 name = "systeminformation"; 60689 59682 packageName = "systeminformation"; 60690 - version = "5.9.7"; 59683 + version = "5.9.8"; 60691 59684 src = fetchurl { 60692 - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.9.7.tgz"; 60693 - sha512 = "Vcmc8HaWPMFM4DoasuKN2lpvIwS2AqaoPuEGZc4HCT6tlRJH+IQ5GhA2BrUgjpBDJjFMj2Bti6qLOzP3T1arCw=="; 59685 + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.9.8.tgz"; 59686 + sha512 = "Dt54Vuu4Q5pGCsBtbVjIzD3Lahek7qIL+2vqAPqcPtPAlFRPf+ef4VKB4F5AL5UmdjYm7NFCTnwjoiu7qtxmQQ=="; 60694 59687 }; 60695 59688 }; 60696 59689 "table-3.8.3" = { ··· 61603 60596 sha512 = "jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA=="; 61604 60597 }; 61605 60598 }; 61606 - "through2-map-3.0.0" = { 61607 - name = "through2-map"; 61608 - packageName = "through2-map"; 61609 - version = "3.0.0"; 61610 - src = fetchurl { 61611 - url = "https://registry.npmjs.org/through2-map/-/through2-map-3.0.0.tgz"; 61612 - sha1 = "a6c3026ce63b4898a997d540506b66ffd970f271"; 61613 - }; 61614 - }; 61615 60599 "thunkify-2.1.2" = { 61616 60600 name = "thunkify"; 61617 60601 packageName = "thunkify"; ··· 61691 60675 src = fetchurl { 61692 60676 url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz"; 61693 60677 sha1 = "764a5a11af50561921b133f3b44e618687e0f5c3"; 61694 - }; 61695 - }; 61696 - "time-zone-1.0.0" = { 61697 - name = "time-zone"; 61698 - packageName = "time-zone"; 61699 - version = "1.0.0"; 61700 - src = fetchurl { 61701 - url = "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz"; 61702 - sha1 = "99c5bf55958966af6d06d83bdf3800dc82faec5d"; 61703 60678 }; 61704 60679 }; 61705 60680 "timed-out-2.0.0" = { ··· 61900 60875 sha512 = "76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ=="; 61901 60876 }; 61902 60877 }; 61903 - "tmp-promise-3.0.2" = { 61904 - name = "tmp-promise"; 61905 - packageName = "tmp-promise"; 61906 - version = "3.0.2"; 61907 - src = fetchurl { 61908 - url = "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.2.tgz"; 61909 - sha512 = "OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA=="; 61910 - }; 61911 - }; 61912 60878 "tmpl-1.0.5" = { 61913 60879 name = "tmpl"; 61914 60880 packageName = "tmpl"; ··· 62179 61145 sha512 = "gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ=="; 62180 61146 }; 62181 61147 }; 62182 - "toml-3.0.0" = { 62183 - name = "toml"; 62184 - packageName = "toml"; 62185 - version = "3.0.0"; 62186 - src = fetchurl { 62187 - url = "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz"; 62188 - sha512 = "y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w=="; 62189 - }; 62190 - }; 62191 - "tomlify-j0.4-3.0.0" = { 62192 - name = "tomlify-j0.4"; 62193 - packageName = "tomlify-j0.4"; 62194 - version = "3.0.0"; 62195 - src = fetchurl { 62196 - url = "https://registry.npmjs.org/tomlify-j0.4/-/tomlify-j0.4-3.0.0.tgz"; 62197 - sha512 = "2Ulkc8T7mXJ2l0W476YC/A209PR38Nw8PuaCNtk9uI3t1zzFdGQeWYGQvmj2PZkVvRC/Yoi4xQKMRnWc/N29tQ=="; 62198 - }; 62199 - }; 62200 61148 "too-hot-1.0.0" = { 62201 61149 name = "too-hot"; 62202 61150 packageName = "too-hot"; ··· 62294 61242 src = fetchurl { 62295 61243 url = "https://registry.npmjs.org/tosource/-/tosource-1.0.0.tgz"; 62296 61244 sha1 = "42d88dd116618bcf00d6106dd5446f3427902ff1"; 61245 + }; 61246 + }; 61247 + "totalist-2.0.0" = { 61248 + name = "totalist"; 61249 + packageName = "totalist"; 61250 + version = "2.0.0"; 61251 + src = fetchurl { 61252 + url = "https://registry.npmjs.org/totalist/-/totalist-2.0.0.tgz"; 61253 + sha512 = "+Y17F0YzxfACxTyjfhnJQEe7afPA0GSpYlFkl2VFMxYP7jshQf9gXV7cH47EfToBumFThfKBvfAcoUn6fdNeRQ=="; 62297 61254 }; 62298 61255 }; 62299 61256 "touch-3.1.0" = { ··· 63421 62378 sha512 = "+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ=="; 63422 62379 }; 63423 62380 }; 63424 - "ua-parser-js-0.7.28" = { 62381 + "ua-parser-js-0.7.30" = { 62382 + name = "ua-parser-js"; 62383 + packageName = "ua-parser-js"; 62384 + version = "0.7.30"; 62385 + src = fetchurl { 62386 + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.30.tgz"; 62387 + sha512 = "uXEtSresNUlXQ1QL4/3dQORcGv7+J2ookOG2ybA/ga9+HYEXueT2o+8dUJQkpedsyTyCJ6jCCirRcKtdtx1kbg=="; 62388 + }; 62389 + }; 62390 + "ua-parser-js-1.0.1" = { 63425 62391 name = "ua-parser-js"; 63426 62392 packageName = "ua-parser-js"; 63427 - version = "0.7.28"; 62393 + version = "1.0.1"; 63428 62394 src = fetchurl { 63429 - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz"; 63430 - sha512 = "6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g=="; 62395 + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.1.tgz"; 62396 + sha512 = "ZMu7XRN3M3R+g/YaFQKiVW0J42bzciF0+xAxP5uuO6VibE30MQvRRBctHuh22uS3yAe5jkru/i8QVOwRDJazIw=="; 63431 62397 }; 63432 62398 }; 63433 62399 "uc.micro-1.0.6" = { ··· 63446 62412 src = fetchurl { 63447 62413 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz"; 63448 62414 sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd"; 63449 - }; 63450 - }; 63451 - "uglify-js-3.14.1" = { 63452 - name = "uglify-js"; 63453 - packageName = "uglify-js"; 63454 - version = "3.14.1"; 63455 - src = fetchurl { 63456 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.1.tgz"; 63457 - sha512 = "JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g=="; 63458 62415 }; 63459 62416 }; 63460 62417 "uglify-js-3.14.2" = { ··· 63673 62630 sha512 = "pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw=="; 63674 62631 }; 63675 62632 }; 63676 - "undefsafe-2.0.3" = { 62633 + "undefsafe-2.0.5" = { 63677 62634 name = "undefsafe"; 63678 62635 packageName = "undefsafe"; 63679 - version = "2.0.3"; 62636 + version = "2.0.5"; 63680 62637 src = fetchurl { 63681 - url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz"; 63682 - sha512 = "nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A=="; 62638 + url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz"; 62639 + sha512 = "WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA=="; 63683 62640 }; 63684 62641 }; 63685 62642 "underscore-1.12.1" = { ··· 64132 63089 sha512 = "ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg=="; 64133 63090 }; 64134 63091 }; 63092 + "unist-util-is-5.1.1" = { 63093 + name = "unist-util-is"; 63094 + packageName = "unist-util-is"; 63095 + version = "5.1.1"; 63096 + src = fetchurl { 63097 + url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz"; 63098 + sha512 = "F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ=="; 63099 + }; 63100 + }; 64135 63101 "unist-util-map-1.0.5" = { 64136 63102 name = "unist-util-map"; 64137 63103 packageName = "unist-util-map"; ··· 64168 63134 sha512 = "w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA=="; 64169 63135 }; 64170 63136 }; 63137 + "unist-util-position-from-estree-1.1.1" = { 63138 + name = "unist-util-position-from-estree"; 63139 + packageName = "unist-util-position-from-estree"; 63140 + version = "1.1.1"; 63141 + src = fetchurl { 63142 + url = "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz"; 63143 + sha512 = "xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw=="; 63144 + }; 63145 + }; 64171 63146 "unist-util-remove-2.1.0" = { 64172 63147 name = "unist-util-remove"; 64173 63148 packageName = "unist-util-remove"; ··· 64195 63170 sha512 = "fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA=="; 64196 63171 }; 64197 63172 }; 64198 - "unist-util-remove-position-3.0.0" = { 63173 + "unist-util-remove-position-4.0.1" = { 64199 63174 name = "unist-util-remove-position"; 64200 63175 packageName = "unist-util-remove-position"; 64201 - version = "3.0.0"; 63176 + version = "4.0.1"; 64202 63177 src = fetchurl { 64203 - url = "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-3.0.0.tgz"; 64204 - sha512 = "17kIOuolVuK16LMb9KyMJlqdfCtlfQY5FjY3Sdo9iC7F5wqdXhNjMq0PBvMpkVNNnAmHxXssUW+rZ9T2zbP0Rg=="; 63178 + url = "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz"; 63179 + sha512 = "0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ=="; 64205 63180 }; 64206 63181 }; 64207 63182 "unist-util-stringify-position-1.1.2" = { ··· 64249 63224 sha512 = "iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q=="; 64250 63225 }; 64251 63226 }; 63227 + "unist-util-visit-4.1.0" = { 63228 + name = "unist-util-visit"; 63229 + packageName = "unist-util-visit"; 63230 + version = "4.1.0"; 63231 + src = fetchurl { 63232 + url = "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz"; 63233 + sha512 = "n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ=="; 63234 + }; 63235 + }; 64252 63236 "unist-util-visit-children-1.1.4" = { 64253 63237 name = "unist-util-visit-children"; 64254 63238 packageName = "unist-util-visit-children"; ··· 64274 63258 src = fetchurl { 64275 63259 url = "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz"; 64276 63260 sha512 = "1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg=="; 63261 + }; 63262 + }; 63263 + "unist-util-visit-parents-5.1.0" = { 63264 + name = "unist-util-visit-parents"; 63265 + packageName = "unist-util-visit-parents"; 63266 + version = "5.1.0"; 63267 + src = fetchurl { 63268 + url = "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz"; 63269 + sha512 = "y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg=="; 64277 63270 }; 64278 63271 }; 64279 63272 "universal-analytics-0.4.23" = { ··· 64717 63710 sha1 = "741c6c2f4596c4830d6718460920d0c92202dc78"; 64718 63711 }; 64719 63712 }; 64720 - "url-join-2.0.5" = { 64721 - name = "url-join"; 64722 - packageName = "url-join"; 64723 - version = "2.0.5"; 64724 - src = fetchurl { 64725 - url = "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz"; 64726 - sha1 = "5af22f18c052a000a48d7b82c5e9c2e2feeda728"; 64727 - }; 64728 - }; 64729 63713 "url-join-4.0.0" = { 64730 63714 name = "url-join"; 64731 63715 packageName = "url-join"; ··· 65231 64215 sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 65232 64216 }; 65233 64217 }; 64218 + "uvu-0.5.2" = { 64219 + name = "uvu"; 64220 + packageName = "uvu"; 64221 + version = "0.5.2"; 64222 + src = fetchurl { 64223 + url = "https://registry.npmjs.org/uvu/-/uvu-0.5.2.tgz"; 64224 + sha512 = "m2hLe7I2eROhh+tm3WE5cTo/Cv3WQA7Oc9f7JB6uWv+/zVKvfAm53bMyOoGOSZeQ7Ov2Fu9pLhFr7p07bnT20w=="; 64225 + }; 64226 + }; 65234 64227 "v8-compile-cache-2.3.0" = { 65235 64228 name = "v8-compile-cache"; 65236 64229 packageName = "v8-compile-cache"; ··· 65348 64341 sha1 = "1c243a50b595c1be54a754bfece8563b9ff8d813"; 65349 64342 }; 65350 64343 }; 65351 - "value-or-promise-1.0.10" = { 64344 + "value-or-promise-1.0.11" = { 65352 64345 name = "value-or-promise"; 65353 64346 packageName = "value-or-promise"; 65354 - version = "1.0.10"; 64347 + version = "1.0.11"; 65355 64348 src = fetchurl { 65356 - url = "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.10.tgz"; 65357 - sha512 = "1OwTzvcfXkAfabk60UVr5NdjtjJ0Fg0T5+B1bhxtrOEwSH2fe8y4DnLgoksfCyd8yZCOQQHB0qLMQnwgCjbXLQ=="; 64349 + url = "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.11.tgz"; 64350 + sha512 = "41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg=="; 65358 64351 }; 65359 64352 }; 65360 64353 "value-or-promise-1.0.6" = { ··· 65717 64710 sha512 = "JGBhm5Bf6fiGTUSB5Qr5ckw/KU9FJcSV5xIe/y4IobM/i/KNwI1i1fP45LzP4F4yZc0DMTwJod2UvFHGk9plKA=="; 65718 64711 }; 65719 64712 }; 65720 - "vega-typings-0.22.0" = { 64713 + "vega-typings-0.22.1" = { 65721 64714 name = "vega-typings"; 65722 64715 packageName = "vega-typings"; 65723 - version = "0.22.0"; 64716 + version = "0.22.1"; 65724 64717 src = fetchurl { 65725 - url = "https://registry.npmjs.org/vega-typings/-/vega-typings-0.22.0.tgz"; 65726 - sha512 = "TgBGRkZHQgcduGsoFKq3Scpn6eNY4L3p0YKRhgCPVU3HEaCeYkPFGaR8ynK+XrKmvrqpDv0YHIOwCt7Gn3RpCA=="; 64718 + url = "https://registry.npmjs.org/vega-typings/-/vega-typings-0.22.1.tgz"; 64719 + sha512 = "88cIrjmoTxo/0nWTf+GuitkFhirHWVWCfymADiCUXt6s9arpQ6XPP5xjrN5KDc0LZd9xr7p4FIiEgADghgLTgw=="; 65727 64720 }; 65728 64721 }; 65729 64722 "vega-util-1.16.1" = { ··· 65789 64782 sha512 = "/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w=="; 65790 64783 }; 65791 64784 }; 65792 - "verda-1.4.0" = { 64785 + "verda-1.4.1" = { 65793 64786 name = "verda"; 65794 64787 packageName = "verda"; 65795 - version = "1.4.0"; 64788 + version = "1.4.1"; 65796 64789 src = fetchurl { 65797 - url = "https://registry.npmjs.org/verda/-/verda-1.4.0.tgz"; 65798 - sha512 = "XzAxyH/99hE4B729ImVqv3TBYxDYwMsjVB8q4fIBOMtnsY9hvrT4xmiim9cRvwyKpCkF2uysyVbeMbFRqN3qgw=="; 64790 + url = "https://registry.npmjs.org/verda/-/verda-1.4.1.tgz"; 64791 + sha512 = "mhvGm8JE+IWLhHBDnlvW14hUtkdyZ+D7YZLsn3BGMLguhfpajjCqWezHPZEH8Dxmwvy/gmLbTddzTGXZs5gwrg=="; 65799 64792 }; 65800 64793 }; 65801 64794 "verror-1.1.0" = { ··· 66104 65097 sha512 = "DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow=="; 66105 65098 }; 66106 65099 }; 66107 - "vlq-1.0.1" = { 66108 - name = "vlq"; 66109 - packageName = "vlq"; 66110 - version = "1.0.1"; 66111 - src = fetchurl { 66112 - url = "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz"; 66113 - sha512 = "gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w=="; 66114 - }; 66115 - }; 66116 - "vls-0.7.4" = { 65100 + "vls-0.7.6" = { 66117 65101 name = "vls"; 66118 65102 packageName = "vls"; 66119 - version = "0.7.4"; 65103 + version = "0.7.6"; 66120 65104 src = fetchurl { 66121 - url = "https://registry.npmjs.org/vls/-/vls-0.7.4.tgz"; 66122 - sha512 = "uU5HCIK5vX096eMA5fBwyR7tv36m1Ssy910w5ILT5OvCUTXgBR58gZRJWrL2HxCyG8oYXC+oFWjhJc7+ExBUgQ=="; 65105 + url = "https://registry.npmjs.org/vls/-/vls-0.7.6.tgz"; 65106 + sha512 = "UaE5peKpeT0dsTg4KAbxRVKLotD4i0DW3wb/srcJgNJmpBmTv2HAkE3hMR/naf1bMmUTpQyQPUaZOJE5ihBqlA=="; 66123 65107 }; 66124 65108 }; 66125 65109 "vm-browserify-1.1.2" = { ··· 66131 65115 sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="; 66132 65116 }; 66133 65117 }; 66134 - "vm2-3.9.4" = { 65118 + "vm2-3.9.5" = { 66135 65119 name = "vm2"; 66136 65120 packageName = "vm2"; 66137 - version = "3.9.4"; 65121 + version = "3.9.5"; 66138 65122 src = fetchurl { 66139 - url = "https://registry.npmjs.org/vm2/-/vm2-3.9.4.tgz"; 66140 - sha512 = "sOdharrJ7KEePIpHekiWaY1DwgueuiBeX/ZBJUPgETsVlJsXuEx0K0/naATq2haFvJrvZnRiORQRubR0b7Ye6g=="; 65123 + url = "https://registry.npmjs.org/vm2/-/vm2-3.9.5.tgz"; 65124 + sha512 = "LuCAHZN75H9tdrAiLFf030oW7nJV5xwNMuk1ymOZwopmuK3d2H4L1Kv4+GFHgarKiLfXXLFU+7LDABHnwOkWng=="; 66141 65125 }; 66142 65126 }; 66143 65127 "voc-1.2.0" = { ··· 66167 65151 sha1 = "614f7fbf8d801f0bb5f0661f5b2f5785750e4f09"; 66168 65152 }; 66169 65153 }; 66170 - "vsce-1.100.1" = { 65154 + "vsce-1.100.2" = { 66171 65155 name = "vsce"; 66172 65156 packageName = "vsce"; 66173 - version = "1.100.1"; 65157 + version = "1.100.2"; 66174 65158 src = fetchurl { 66175 - url = "https://registry.npmjs.org/vsce/-/vsce-1.100.1.tgz"; 66176 - sha512 = "1VjLyse5g6e2eQ6jUpslu7IDq44velwF8Jy8s7ePdwGNuG8EzfmaOfVyig3ZSMJ0l8DiJmZllx5bRAB4RMdnHg=="; 65159 + url = "https://registry.npmjs.org/vsce/-/vsce-1.100.2.tgz"; 65160 + sha512 = "eDeubJNc0iav6mbTESZ90E9WcSzqAAl/lunb4KbNjRrz9tf+657i1mKhnWUyvK7Y4D8kN5NBD2FXD4FFMZj7ig=="; 66177 65161 }; 66178 65162 }; 66179 65163 "vscode-css-languageservice-3.0.13" = { ··· 66203 65187 sha512 = "DTMa8QbVmujFPvD3NxoC5jjIXCyCG+cvn3hNzwQRhvhsk8LblNymBZBwzfcDdgEtqsi4O/2AB5HnMIRzxhzEzg=="; 66204 65188 }; 66205 65189 }; 66206 - "vscode-css-languageservice-5.1.7" = { 65190 + "vscode-css-languageservice-5.1.8" = { 66207 65191 name = "vscode-css-languageservice"; 66208 65192 packageName = "vscode-css-languageservice"; 66209 - version = "5.1.7"; 65193 + version = "5.1.8"; 66210 65194 src = fetchurl { 66211 - url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.1.7.tgz"; 66212 - sha512 = "h4oafcZaGFe2VtbNIlkZDmLEP0GQha3E5Ct2YMH4p/p9xYC8yWDNQ5CD+VF3UnSijKPSKmA+oc4cKjhJBowGKw=="; 65195 + url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.1.8.tgz"; 65196 + sha512 = "Si1sMykS8U/p8LYgLGPCfZD1YFT0AtvUJQp9XJGw64DZWhtwYo28G2l64USLS9ge4ZPMZpwdpOK7PfbVKfgiiA=="; 66213 65197 }; 66214 65198 }; 66215 65199 "vscode-debugadapter-testsupport-1.49.0" = { ··· 66266 65250 sha512 = "UmC+GS0IqBeZnOAmdtQvaDzoH1c5/un+b7qALUziu/Y4SOPXso5dF+YkJeTqsde6YU2pLm78RtMDzl9BParwbw=="; 66267 65251 }; 66268 65252 }; 66269 - "vscode-html-languageservice-4.1.0" = { 65253 + "vscode-html-languageservice-4.1.1" = { 66270 65254 name = "vscode-html-languageservice"; 66271 65255 packageName = "vscode-html-languageservice"; 66272 - version = "4.1.0"; 65256 + version = "4.1.1"; 66273 65257 src = fetchurl { 66274 - url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.1.0.tgz"; 66275 - sha512 = "QQrEKfpfbeglD8Jcai4fQDQ7vOJrN6LyiOs47Y6qAxnhve+ervw1kP2UCt9ohHe/6teNWJDYTGxLDgs5iAvitw=="; 65258 + url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.1.1.tgz"; 65259 + sha512 = "rrDyCiOgMwOPgchpPGAeLzjYVVEW/Ror2/a1BWUEI3S9+NQhA9vj4SQkzmH6g2Bq9S9SV0OQeadD+xphOf1N3w=="; 66276 65260 }; 66277 65261 }; 66278 65262 "vscode-json-languageserver-1.3.4" = { ··· 66302 65286 sha512 = "QW2SFk4kln5lTPQajGNuXWtmr2z9hVA6Sfi4qPFEW2vjt2XaUAp38/1OrcUQYiJXOyXntbWN2jZJaGxg+hDUxw=="; 66303 65287 }; 66304 65288 }; 66305 - "vscode-json-languageservice-4.1.8" = { 65289 + "vscode-json-languageservice-4.1.9" = { 66306 65290 name = "vscode-json-languageservice"; 66307 65291 packageName = "vscode-json-languageservice"; 66308 - version = "4.1.8"; 65292 + version = "4.1.9"; 66309 65293 src = fetchurl { 66310 - url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.8.tgz"; 66311 - sha512 = "0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg=="; 65294 + url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.9.tgz"; 65295 + sha512 = "kxNHitUy2fCxmP6vAp0SRLrUSuecUYzzxlC+85cC3jJlFHWmvtCJOzikC+kcUnIdls9fQSB8n0yHs8Sl6taxJw=="; 66312 65296 }; 66313 65297 }; 66314 65298 "vscode-jsonrpc-3.5.0" = { ··· 66905 65889 sha512 = "3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg=="; 66906 65890 }; 66907 65891 }; 66908 - "wait-port-0.2.9" = { 66909 - name = "wait-port"; 66910 - packageName = "wait-port"; 66911 - version = "0.2.9"; 66912 - src = fetchurl { 66913 - url = "https://registry.npmjs.org/wait-port/-/wait-port-0.2.9.tgz"; 66914 - sha512 = "hQ/cVKsNqGZ/UbZB/oakOGFqic00YAMM5/PEj3Bt4vKarv2jWIWzDbqlwT94qMs/exAQAsvMOq99sZblV92zxQ=="; 66915 - }; 66916 - }; 66917 65892 "walk-2.3.15" = { 66918 65893 name = "walk"; 66919 65894 packageName = "walk"; ··· 66941 65916 sha512 = "hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg=="; 66942 65917 }; 66943 65918 }; 66944 - "walker-1.0.7" = { 65919 + "walker-1.0.8" = { 66945 65920 name = "walker"; 66946 65921 packageName = "walker"; 66947 - version = "1.0.7"; 65922 + version = "1.0.8"; 66948 65923 src = fetchurl { 66949 - url = "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz"; 66950 - sha1 = "2f7f9b8fd10d677262b18a884e28d19618e028fb"; 65924 + url = "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz"; 65925 + sha512 = "ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="; 66951 65926 }; 66952 65927 }; 66953 65928 "ware-1.3.0" = { ··· 67031 66006 sha1 = "79331f666366b3b1c6ab02ceb04bad8dd2eebb0c"; 67032 66007 }; 67033 66008 }; 67034 - "wavedrom-2.8.3" = { 66009 + "wavedrom-2.9.0" = { 67035 66010 name = "wavedrom"; 67036 66011 packageName = "wavedrom"; 67037 - version = "2.8.3"; 66012 + version = "2.9.0"; 67038 66013 src = fetchurl { 67039 - url = "https://registry.npmjs.org/wavedrom/-/wavedrom-2.8.3.tgz"; 67040 - sha512 = "Ey9A/uABN6rpjC8iFU6ZfL/NhIoXyrQ7h2+gH83kQxRvl6h9VFkJYglGayse2NfU9DDdm2C2uRDE0UpxNMde0w=="; 66014 + url = "https://registry.npmjs.org/wavedrom/-/wavedrom-2.9.0.tgz"; 66015 + sha512 = "PazQFmo/DFJU5AoZt+1LxKTEkgokK8Q1Nsc1s/6Y6LEY9z4WKv8RWn6uvh+p6Jh1sLezknACZTCrTasvpwEaiQ=="; 67041 66016 }; 67042 66017 }; 67043 66018 "wawoff2-2.0.0" = { ··· 67229 66204 sha512 = "6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q=="; 67230 66205 }; 67231 66206 }; 67232 - "webpack-5.45.1" = { 66207 + "webpack-5.58.2" = { 67233 66208 name = "webpack"; 67234 66209 packageName = "webpack"; 67235 - version = "5.45.1"; 66210 + version = "5.58.2"; 67236 66211 src = fetchurl { 67237 - url = "https://registry.npmjs.org/webpack/-/webpack-5.45.1.tgz"; 67238 - sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ=="; 66212 + url = "https://registry.npmjs.org/webpack/-/webpack-5.58.2.tgz"; 66213 + sha512 = "3S6e9Vo1W2ijk4F4PPWRIu6D/uGgqaPmqw+av3W3jLDujuNkdxX5h5c+RQ6GkjVR+WwIPOfgY8av+j5j4tMqJw=="; 67239 66214 }; 67240 66215 }; 67241 - "webpack-5.58.2" = { 66216 + "webpack-5.60.0" = { 67242 66217 name = "webpack"; 67243 66218 packageName = "webpack"; 67244 - version = "5.58.2"; 66219 + version = "5.60.0"; 67245 66220 src = fetchurl { 67246 - url = "https://registry.npmjs.org/webpack/-/webpack-5.58.2.tgz"; 67247 - sha512 = "3S6e9Vo1W2ijk4F4PPWRIu6D/uGgqaPmqw+av3W3jLDujuNkdxX5h5c+RQ6GkjVR+WwIPOfgY8av+j5j4tMqJw=="; 66221 + url = "https://registry.npmjs.org/webpack/-/webpack-5.60.0.tgz"; 66222 + sha512 = "OL5GDYi2dKxnwJPSOg2tODgzDxAffN0osgWkZaBo/l3ikCxDFP+tuJT3uF7GyBE3SDBpKML/+a8EobyWAQO3DQ=="; 67248 66223 }; 67249 66224 }; 67250 66225 "webpack-bundle-analyzer-3.9.0" = { ··· 67265 66240 sha512 = "NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag=="; 67266 66241 }; 67267 66242 }; 67268 - "webpack-cli-4.9.0" = { 66243 + "webpack-cli-4.9.1" = { 67269 66244 name = "webpack-cli"; 67270 66245 packageName = "webpack-cli"; 67271 - version = "4.9.0"; 66246 + version = "4.9.1"; 67272 66247 src = fetchurl { 67273 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.0.tgz"; 67274 - sha512 = "n/jZZBMzVEl4PYIBs+auy2WI0WTQ74EnJDiyD98O2JZY6IVIHJNitkYp/uTXOviIOMfgzrNvC9foKv/8o8KSZw=="; 66248 + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz"; 66249 + sha512 = "JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ=="; 67275 66250 }; 67276 66251 }; 67277 66252 "webpack-core-0.6.9" = { ··· 67382 66357 sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ=="; 67383 66358 }; 67384 66359 }; 67385 - "webpack-sources-2.3.1" = { 67386 - name = "webpack-sources"; 67387 - packageName = "webpack-sources"; 67388 - version = "2.3.1"; 67389 - src = fetchurl { 67390 - url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz"; 67391 - sha512 = "y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA=="; 67392 - }; 67393 - }; 67394 66360 "webpack-sources-3.2.1" = { 67395 66361 name = "webpack-sources"; 67396 66362 packageName = "webpack-sources"; ··· 67454 66420 sha512 = "7iZ+u28Ljw5hCnMiq0BCOeSYf0vCFQe/ORY0HgscTiKjQed8WqugpBUggJ2NTnB9fahn1kEnPRX2jf8Px5PhJw=="; 67455 66421 }; 67456 66422 }; 67457 - "webtorrent-1.5.6" = { 66423 + "webtorrent-1.5.8" = { 67458 66424 name = "webtorrent"; 67459 66425 packageName = "webtorrent"; 67460 - version = "1.5.6"; 67461 - src = fetchurl { 67462 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.6.tgz"; 67463 - sha512 = "P9+0ylzpvtz/bdEPOfYQYA0gjngvaMSP6U9hHI4eSaFDGZBGiGGs6cdSemV1rCStRUtH4t5PQ7nPKL19MV2N4Q=="; 67464 - }; 67465 - }; 67466 - "well-known-symbols-2.0.0" = { 67467 - name = "well-known-symbols"; 67468 - packageName = "well-known-symbols"; 67469 - version = "2.0.0"; 66426 + version = "1.5.8"; 67470 66427 src = fetchurl { 67471 - url = "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz"; 67472 - sha512 = "ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q=="; 66428 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.8.tgz"; 66429 + sha512 = "ltYdloqDamay36XN8FZ+O2fqRQNDt+JGhRbOt1gCBeC+fFhke3WxEVs3/A2UtKjhwN8OEp3Go7tWU9R0S+29Lw=="; 67473 66430 }; 67474 66431 }; 67475 66432 "whatwg-encoding-1.0.5" = { ··· 68435 67392 sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ=="; 68436 67393 }; 68437 67394 }; 68438 - "xdl-59.2.1" = { 67395 + "xdl-59.2.10" = { 68439 67396 name = "xdl"; 68440 67397 packageName = "xdl"; 68441 - version = "59.2.1"; 67398 + version = "59.2.10"; 68442 67399 src = fetchurl { 68443 - url = "https://registry.npmjs.org/xdl/-/xdl-59.2.1.tgz"; 68444 - sha512 = "dBLUs8rGnOnhZR9RRpX2Eby5fJVyqB4W/hj39RPn/s3BdqT63e+sNWv21u3skkctBvOuHnHM1BCIMxB2DQArkg=="; 67400 + url = "https://registry.npmjs.org/xdl/-/xdl-59.2.10.tgz"; 67401 + sha512 = "5CXoOVqDfNOp/JiZvOkASQ5BmGk8s9UIEt3fV7rc/TLYI+aeRIotBb6p76MxaOVv8A5FN+yAsFTvFdoiPR0ZBw=="; 68445 67402 }; 68446 67403 }; 68447 67404 "xenvar-0.5.1" = { ··· 69318 68275 sha512 = "7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA=="; 69319 68276 }; 69320 68277 }; 69321 - "yarn-1.22.15" = { 69322 - name = "yarn"; 69323 - packageName = "yarn"; 69324 - version = "1.22.15"; 69325 - src = fetchurl { 69326 - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.15.tgz"; 69327 - sha512 = "AzoEDxj256BOS/jqDXA3pjyhmi4FRBBUMgYoTHI4EIt2EhREkvH0soPVEtnD+DQIJfU5R9bKhcZ1H9l8zPWeoA=="; 69328 - }; 69329 - }; 69330 68278 "yarn-1.22.4" = { 69331 68279 name = "yarn"; 69332 68280 packageName = "yarn"; ··· 69570 68518 sha512 = "V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw=="; 69571 68519 }; 69572 68520 }; 68521 + "zwitch-2.0.2" = { 68522 + name = "zwitch"; 68523 + packageName = "zwitch"; 68524 + version = "2.0.2"; 68525 + src = fetchurl { 68526 + url = "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz"; 68527 + sha512 = "JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA=="; 68528 + }; 68529 + }; 69573 68530 "zxcvbn-4.4.2" = { 69574 68531 name = "zxcvbn"; 69575 68532 packageName = "zxcvbn"; ··· 69585 68542 "@angular/cli" = nodeEnv.buildNodePackage { 69586 68543 name = "_at_angular_slash_cli"; 69587 68544 packageName = "@angular/cli"; 69588 - version = "12.2.10"; 68545 + version = "12.2.11"; 69589 68546 src = fetchurl { 69590 - url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.10.tgz"; 69591 - sha512 = "gx2XlOUjAAYyJBBIz4QkgsLLRMdFTQbcOR41/Yv0kgpR6AStrOWhz7tpYPbU6vWMjehpuTaWv4NE5eGjwVTZqg=="; 68547 + url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.11.tgz"; 68548 + sha512 = "zstz/oH0BBWC1n1a6oSFLSaSCDUCoaawG8a83E61MN65wYaCuwIW+Z7Lz3FiF7P4Ce16T56ZwJPIA5SjS7KBhg=="; 69592 68549 }; 69593 68550 dependencies = [ 69594 - sources."@angular-devkit/architect-0.1202.10" 69595 - sources."@angular-devkit/core-12.2.10" 69596 - sources."@angular-devkit/schematics-12.2.10" 68551 + sources."@angular-devkit/architect-0.1202.11" 68552 + sources."@angular-devkit/core-12.2.11" 68553 + sources."@angular-devkit/schematics-12.2.11" 69597 68554 sources."@gar/promisify-1.1.2" 69598 68555 sources."@npmcli/fs-1.0.0" 69599 68556 sources."@npmcli/git-2.1.0" ··· 69602 68559 sources."@npmcli/node-gyp-1.0.3" 69603 68560 sources."@npmcli/promise-spawn-1.3.2" 69604 68561 sources."@npmcli/run-script-1.8.6" 69605 - sources."@schematics/angular-12.2.10" 68562 + sources."@schematics/angular-12.2.11" 69606 68563 sources."@tootallnate/once-1.1.2" 69607 68564 sources."@yarnpkg/lockfile-1.1.0" 69608 68565 sources."abbrev-1.1.1" ··· 70071 69028 sources."json5-2.1.3" 70072 69029 sources."jsonfile-4.0.0" 70073 69030 sources."keyv-3.1.0" 70074 - (sources."lazystream-1.0.0" // { 69031 + (sources."lazystream-1.0.1" // { 70075 69032 dependencies = [ 70076 69033 sources."readable-stream-2.3.7" 70077 69034 sources."safe-buffer-5.1.2" ··· 70266 69223 sources."escape-string-regexp-1.0.5" 70267 69224 sources."escodegen-2.0.0" 70268 69225 sources."esprima-4.0.1" 70269 - sources."estraverse-5.2.0" 69226 + sources."estraverse-5.3.0" 70270 69227 sources."esutils-2.0.3" 70271 69228 sources."external-editor-3.1.0" 70272 69229 sources."fast-levenshtein-2.0.6" ··· 70308 69265 sources."node-forge-0.10.0" 70309 69266 sources."nwsapi-2.2.0" 70310 69267 sources."onetime-5.1.2" 70311 - sources."open-8.3.0" 69268 + sources."open-8.4.0" 70312 69269 sources."optionator-0.8.3" 70313 69270 sources."os-tmpdir-1.0.2" 70314 69271 sources."papaparse-5.3.1" ··· 70426 69383 sources."color-name-1.1.4" 70427 69384 sources."compare-func-2.0.0" 70428 69385 sources."conventional-changelog-angular-5.0.13" 70429 - sources."conventional-commits-parser-3.2.2" 69386 + sources."conventional-commits-parser-3.2.3" 70430 69387 sources."cosmiconfig-7.0.1" 70431 69388 sources."create-require-1.1.1" 70432 69389 sources."cross-spawn-7.0.3" ··· 70617 69574 sources."@hyperswarm/hypersign-2.1.1" 70618 69575 sources."@hyperswarm/network-2.1.0" 70619 69576 sources."@leichtgewicht/ip-codec-2.0.3" 70620 - sources."@types/node-16.11.0" 69577 + sources."@types/node-16.11.6" 70621 69578 sources."abstract-extension-3.1.1" 70622 69579 sources."abstract-leveldown-6.2.3" 70623 69580 sources."ansi-colors-3.2.3" ··· 70634 69591 sources."array-lru-1.1.1" 70635 69592 sources."atomic-batcher-1.0.2" 70636 69593 sources."await-lock-2.1.0" 69594 + sources."b4a-1.0.1" 70637 69595 sources."balanced-match-1.0.2" 70638 69596 sources."base64-js-1.5.1" 70639 69597 sources."binary-extensions-2.2.0" ··· 70963 69921 }) 70964 69922 sources."semver-5.7.1" 70965 69923 sources."set-blocking-2.0.0" 70966 - sources."sha256-universal-1.1.2" 70967 - (sources."sha256-wasm-2.2.1" // { 69924 + sources."sha256-universal-1.2.1" 69925 + (sources."sha256-wasm-2.2.2" // { 70968 69926 dependencies = [ 70969 69927 sources."nanoassert-2.0.0" 70970 69928 ]; 70971 69929 }) 70972 - sources."sha512-universal-1.1.2" 70973 - (sources."sha512-wasm-2.3.1" // { 69930 + sources."sha512-universal-1.2.1" 69931 + (sources."sha512-wasm-2.3.2" // { 70974 69932 dependencies = [ 70975 69933 sources."nanoassert-2.0.0" 70976 69934 ]; ··· 71065 70023 ]; 71066 70024 }) 71067 70025 sources."varint-5.0.0" 71068 - sources."vm2-3.9.4" 70026 + sources."vm2-3.9.5" 71069 70027 sources."which-1.3.1" 71070 70028 sources."which-boxed-primitive-1.0.2" 71071 70029 sources."which-module-2.0.0" ··· 71147 70105 sources."@nodelib/fs.scandir-2.1.5" 71148 70106 sources."@nodelib/fs.stat-2.0.5" 71149 70107 sources."@nodelib/fs.walk-1.2.8" 71150 - sources."@types/glob-7.1.4" 70108 + sources."@types/glob-7.2.0" 71151 70109 sources."@types/minimatch-3.0.5" 71152 - sources."@types/node-16.11.0" 70110 + sources."@types/node-16.11.6" 71153 70111 sources."@types/tough-cookie-2.3.8" 71154 70112 sources."abbrev-1.1.1" 71155 70113 sources."abort-controller-3.0.0" ··· 72104 71062 sources."restore-cursor-3.1.0" 72105 71063 sources."safe-buffer-5.2.1" 72106 71064 sources."signal-exit-3.0.5" 72107 - sources."simple-git-2.46.0" 71065 + sources."simple-git-2.47.0" 72108 71066 sources."sprintf-js-1.0.3" 72109 71067 sources."string_decoder-1.3.0" 72110 71068 sources."strip-ansi-6.0.1" ··· 72134 71092 "@nestjs/cli" = nodeEnv.buildNodePackage { 72135 71093 name = "_at_nestjs_slash_cli"; 72136 71094 packageName = "@nestjs/cli"; 72137 - version = "8.1.2"; 71095 + version = "8.1.4"; 72138 71096 src = fetchurl { 72139 - url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.1.2.tgz"; 72140 - sha512 = "HzjCIyECFHNl+Vv1Sfq0SdenujvdfPPUny9XcPlZK75dmNhIOJmx7Wl/rG72qJ7sZzxoQ3h8r2+jp8ajx227HA=="; 71097 + url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.1.4.tgz"; 71098 + sha512 = "QXZ0fkybNEPUeP3wcWuFore8XVicrT76IYToHkc4PJ+kQ7/thQzpy5mqWGTalv83aNM5LKAjl5OTSBBrPiWrlg=="; 72141 71099 }; 72142 71100 dependencies = [ 72143 - sources."@angular-devkit/core-12.2.7" 72144 - sources."@angular-devkit/schematics-12.2.7" 72145 - (sources."@angular-devkit/schematics-cli-12.2.7" // { 71101 + sources."@angular-devkit/core-12.2.10" 71102 + sources."@angular-devkit/schematics-12.2.10" 71103 + (sources."@angular-devkit/schematics-cli-12.2.10" // { 72146 71104 dependencies = [ 72147 71105 sources."chalk-4.1.2" 72148 71106 sources."inquirer-8.1.2" ··· 72162 71120 sources."supports-color-5.5.0" 72163 71121 ]; 72164 71122 }) 72165 - (sources."@nestjs/schematics-8.0.3" // { 72166 - dependencies = [ 72167 - sources."@angular-devkit/core-12.0.5" 72168 - sources."@angular-devkit/schematics-12.0.5" 72169 - sources."ajv-8.2.0" 72170 - sources."ajv-formats-2.0.2" 72171 - sources."chalk-4.1.2" 72172 - sources."ora-5.4.0" 72173 - ]; 72174 - }) 72175 - sources."@types/eslint-7.28.1" 71123 + sources."@nestjs/schematics-8.0.4" 71124 + sources."@types/eslint-7.28.2" 72176 71125 sources."@types/eslint-scope-3.7.1" 72177 71126 sources."@types/estree-0.0.50" 72178 71127 sources."@types/json-schema-7.0.9" 72179 71128 sources."@types/json5-0.0.29" 72180 - sources."@types/node-16.11.0" 71129 + sources."@types/node-16.11.6" 72181 71130 sources."@types/parse-json-4.0.0" 72182 71131 sources."@webassemblyjs/ast-1.11.1" 72183 71132 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 72197 71146 sources."@xtuc/ieee754-1.2.0" 72198 71147 sources."@xtuc/long-4.2.2" 72199 71148 sources."acorn-8.5.0" 71149 + sources."acorn-import-assertions-1.8.0" 72200 71150 sources."ajv-8.6.2" 72201 71151 sources."ajv-formats-2.1.0" 72202 71152 sources."ajv-keywords-3.5.2" ··· 72212 71162 sources."bl-4.1.0" 72213 71163 sources."brace-expansion-1.1.11" 72214 71164 sources."braces-3.0.2" 72215 - sources."browserslist-4.17.4" 71165 + sources."browserslist-4.17.5" 72216 71166 sources."buffer-5.7.1" 72217 71167 sources."buffer-from-1.1.2" 72218 71168 sources."callsites-3.1.0" 72219 - sources."caniuse-lite-1.0.30001267" 71169 + sources."caniuse-lite-1.0.30001271" 72220 71170 sources."chalk-3.0.0" 72221 71171 sources."chardet-0.7.0" 72222 71172 sources."chokidar-3.5.2" 72223 71173 sources."chrome-trace-event-1.0.3" 72224 71174 sources."cli-cursor-3.1.0" 72225 71175 sources."cli-spinners-2.6.1" 72226 - (sources."cli-table3-0.5.1" // { 72227 - dependencies = [ 72228 - sources."ansi-regex-3.0.0" 72229 - sources."is-fullwidth-code-point-2.0.0" 72230 - sources."string-width-2.1.1" 72231 - sources."strip-ansi-4.0.0" 72232 - ]; 72233 - }) 71176 + sources."cli-table3-0.6.0" 72234 71177 sources."cli-width-3.0.0" 72235 71178 sources."clone-1.0.4" 72236 71179 sources."color-convert-2.0.1" ··· 72242 71185 sources."cross-spawn-7.0.3" 72243 71186 sources."deepmerge-4.2.2" 72244 71187 sources."defaults-1.0.3" 72245 - sources."electron-to-chromium-1.3.870" 71188 + sources."electron-to-chromium-1.3.880" 72246 71189 sources."emoji-regex-8.0.0" 72247 71190 sources."end-of-stream-1.4.4" 72248 71191 (sources."enhanced-resolve-5.8.3" // { ··· 72251 71194 ]; 72252 71195 }) 72253 71196 sources."error-ex-1.3.2" 72254 - sources."es-module-lexer-0.7.1" 71197 + sources."es-module-lexer-0.9.3" 72255 71198 sources."escalade-3.1.1" 72256 71199 sources."escape-string-regexp-1.0.5" 72257 71200 sources."eslint-scope-5.1.1" 72258 71201 (sources."esrecurse-4.3.0" // { 72259 71202 dependencies = [ 72260 - sources."estraverse-5.2.0" 71203 + sources."estraverse-5.3.0" 72261 71204 ]; 72262 71205 }) 72263 71206 sources."estraverse-4.3.0" ··· 72268 71211 sources."fast-json-stable-stringify-2.1.0" 72269 71212 sources."figures-3.2.0" 72270 71213 sources."fill-range-7.0.1" 72271 - (sources."fork-ts-checker-webpack-plugin-6.3.3" // { 71214 + (sources."fork-ts-checker-webpack-plugin-6.3.4" // { 72272 71215 dependencies = [ 72273 71216 sources."chalk-4.1.2" 72274 71217 sources."fs-extra-9.1.0" ··· 72309 71252 sources."is-stream-2.0.1" 72310 71253 sources."is-unicode-supported-0.1.0" 72311 71254 sources."isexe-2.0.0" 72312 - (sources."jest-worker-27.2.5" // { 71255 + (sources."jest-worker-27.3.1" // { 72313 71256 dependencies = [ 72314 71257 sources."supports-color-8.1.1" 72315 71258 ]; ··· 72342 71285 sources."mute-stream-0.0.8" 72343 71286 sources."neo-async-2.6.2" 72344 71287 sources."node-emoji-1.11.0" 72345 - sources."node-releases-2.0.0" 71288 + sources."node-releases-2.0.1" 72346 71289 sources."normalize-path-3.0.0" 72347 71290 sources."npm-run-path-4.0.1" 72348 71291 sources."object-assign-4.1.1" ··· 72392 71335 sources."shebang-regex-3.0.0" 72393 71336 sources."shelljs-0.8.4" 72394 71337 sources."signal-exit-3.0.5" 72395 - sources."source-list-map-2.0.1" 72396 71338 sources."source-map-0.7.3" 72397 71339 (sources."source-map-support-0.5.20" // { 72398 71340 dependencies = [ ··· 72439 71381 sources."util-deprecate-1.0.2" 72440 71382 sources."watchpack-2.2.0" 72441 71383 sources."wcwidth-1.0.1" 72442 - (sources."webpack-5.45.1" // { 71384 + (sources."webpack-5.58.2" // { 72443 71385 dependencies = [ 72444 71386 sources."ajv-6.12.6" 72445 71387 sources."json-schema-traverse-0.4.1" ··· 72448 71390 ]; 72449 71391 }) 72450 71392 sources."webpack-node-externals-3.0.0" 72451 - (sources."webpack-sources-2.3.1" // { 72452 - dependencies = [ 72453 - sources."source-map-0.6.1" 72454 - ]; 72455 - }) 71393 + sources."webpack-sources-3.2.1" 72456 71394 sources."which-2.0.2" 72457 71395 sources."windows-release-4.0.0" 72458 71396 sources."wrappy-1.0.2" ··· 72660 71598 sources."@babel/plugin-transform-unicode-regex-7.14.5" 72661 71599 sources."@babel/preset-env-7.15.8" 72662 71600 sources."@babel/preset-flow-7.14.5" 72663 - sources."@babel/preset-modules-0.1.4" 71601 + sources."@babel/preset-modules-0.1.5" 72664 71602 sources."@babel/preset-typescript-7.15.0" 72665 71603 (sources."@babel/register-7.15.3" // { 72666 71604 dependencies = [ ··· 72708 71646 sources."@types/express-4.17.13" 72709 71647 sources."@types/express-serve-static-core-4.17.24" 72710 71648 sources."@types/fs-capacitor-2.0.0" 72711 - sources."@types/glob-7.1.4" 71649 + sources."@types/glob-7.2.0" 72712 71650 sources."@types/http-assert-1.5.3" 72713 71651 sources."@types/http-errors-1.8.1" 72714 71652 sources."@types/inquirer-6.5.0" ··· 72725 71663 sources."@types/long-4.0.1" 72726 71664 sources."@types/mime-1.3.2" 72727 71665 sources."@types/minimatch-3.0.5" 72728 - sources."@types/node-16.11.0" 71666 + sources."@types/node-16.11.6" 72729 71667 sources."@types/normalize-package-data-2.4.1" 72730 71668 sources."@types/qs-6.9.7" 72731 71669 sources."@types/range-parser-1.2.4" ··· 72843 71781 }) 72844 71782 sources."brace-expansion-1.1.11" 72845 71783 sources."braces-2.3.2" 72846 - sources."browserslist-4.17.4" 71784 + sources."browserslist-4.17.5" 72847 71785 sources."buffer-5.7.1" 72848 71786 sources."buffer-alloc-1.2.0" 72849 71787 sources."buffer-alloc-unsafe-1.1.0" ··· 72863 71801 sources."call-bind-1.0.2" 72864 71802 sources."call-me-maybe-1.0.1" 72865 71803 sources."camelcase-5.3.1" 72866 - sources."caniuse-lite-1.0.30001267" 71804 + sources."caniuse-lite-1.0.30001271" 72867 71805 sources."caseless-0.12.0" 72868 71806 sources."caw-2.0.1" 72869 71807 sources."chalk-2.4.2" ··· 72919 71857 sources."cookie-0.4.0" 72920 71858 sources."cookie-signature-1.0.6" 72921 71859 sources."copy-descriptor-0.1.1" 72922 - (sources."core-js-compat-3.18.3" // { 71860 + (sources."core-js-compat-3.19.0" // { 72923 71861 dependencies = [ 72924 71862 sources."semver-7.0.0" 72925 71863 ]; 72926 71864 }) 72927 - sources."core-js-pure-3.18.3" 71865 + sources."core-js-pure-3.19.0" 72928 71866 sources."core-util-is-1.0.2" 72929 71867 sources."cors-2.8.5" 72930 71868 (sources."cross-spawn-6.0.5" // { ··· 72990 71928 sources."ecc-jsbn-0.1.2" 72991 71929 sources."ee-first-1.1.1" 72992 71930 sources."ejs-2.7.4" 72993 - sources."electron-to-chromium-1.3.870" 71931 + sources."electron-to-chromium-1.3.880" 72994 71932 sources."emoji-regex-8.0.0" 72995 71933 sources."encodeurl-1.0.2" 72996 71934 sources."end-of-stream-1.4.4" ··· 73073 72011 }) 73074 72012 sources."find-up-3.0.0" 73075 72013 sources."fkill-6.2.0" 73076 - sources."flow-parser-0.162.0" 72014 + sources."flow-parser-0.162.1" 73077 72015 sources."for-each-0.3.3" 73078 72016 sources."for-in-1.0.2" 73079 72017 sources."forever-agent-0.6.1" ··· 73329 72267 sources."which-2.0.2" 73330 72268 ]; 73331 72269 }) 73332 - sources."node-releases-2.0.0" 72270 + sources."node-releases-2.0.1" 73333 72271 (sources."normalize-package-data-2.5.0" // { 73334 72272 dependencies = [ 73335 72273 sources."semver-5.7.1" ··· 73512 72450 sources."shallow-clone-3.0.1" 73513 72451 sources."shebang-command-1.2.0" 73514 72452 sources."shebang-regex-1.0.0" 73515 - sources."shell-quote-1.7.2" 72453 + sources."shell-quote-1.7.3" 73516 72454 sources."shellwords-0.1.1" 73517 72455 sources."shortid-2.2.16" 73518 72456 sources."side-channel-1.0.4" ··· 74004 72942 sources."async-3.2.1" 74005 72943 sources."balanced-match-1.0.2" 74006 72944 sources."brace-expansion-1.1.11" 74007 - sources."browserslist-4.17.4" 74008 - sources."caniuse-lite-1.0.30001267" 72945 + sources."browserslist-4.17.5" 72946 + sources."caniuse-lite-1.0.30001271" 74009 72947 sources."chalk-2.4.2" 74010 72948 sources."color-convert-1.9.3" 74011 72949 sources."color-name-1.1.3" 74012 72950 sources."colors-1.4.0" 74013 - sources."commander-8.2.0" 72951 + sources."commander-8.3.0" 74014 72952 sources."concat-map-0.0.1" 74015 72953 sources."convert-source-map-1.8.0" 74016 72954 sources."debug-4.3.2" 74017 72955 sources."ejs-3.1.6" 74018 - sources."electron-to-chromium-1.3.870" 72956 + sources."electron-to-chromium-1.3.880" 74019 72957 sources."ensure-posix-path-1.1.1" 74020 72958 sources."escalade-3.1.1" 74021 72959 sources."escape-string-regexp-1.0.5" ··· 74061 72999 sources."minimist-1.2.5" 74062 73000 sources."moment-2.29.1" 74063 73001 sources."ms-2.1.2" 74064 - sources."node-releases-2.0.0" 73002 + sources."node-releases-2.0.1" 74065 73003 sources."node.extend-2.0.2" 74066 73004 (sources."nomnom-1.8.1" // { 74067 73005 dependencies = [ ··· 74108 73046 sha512 = "vyxPxP5arcAqN4F/ebHd/HhwnAiZtwhglvdmc7BR2f0ywbVNTOpSeyhLDbGXtE/y58hv1oC75TaNIXutnsOZsQ=="; 74109 73047 }; 74110 73048 dependencies = [ 74111 - sources."@types/glob-7.1.4" 73049 + sources."@types/glob-7.2.0" 74112 73050 sources."@types/minimatch-3.0.5" 74113 - sources."@types/node-16.11.0" 73051 + sources."@types/node-16.11.6" 74114 73052 sources."balanced-match-1.0.2" 74115 73053 sources."brace-expansion-1.1.11" 74116 73054 sources."chromium-pickle-js-0.2.0" ··· 74144 73082 sha512 = "EmGpu0nnQVmMhX8ROoJ7Mx8mKYPlcUHuxkwrRYEYMz85lu7H09v8w6R1P0JPdn/hKU32GjpLBFEOuIlDWCRWvg=="; 74145 73083 }; 74146 73084 dependencies = [ 74147 - (sources."browserslist-4.17.4" // { 73085 + (sources."browserslist-4.17.5" // { 74148 73086 dependencies = [ 74149 73087 sources."picocolors-1.0.0" 74150 73088 ]; 74151 73089 }) 74152 - sources."caniuse-lite-1.0.30001267" 74153 - sources."electron-to-chromium-1.3.870" 73090 + sources."caniuse-lite-1.0.30001271" 73091 + sources."electron-to-chromium-1.3.880" 74154 73092 sources."escalade-3.1.1" 74155 73093 sources."fraction.js-4.1.1" 74156 - sources."node-releases-2.0.0" 73094 + sources."node-releases-2.0.1" 74157 73095 sources."normalize-range-0.1.2" 74158 73096 sources."picocolors-0.2.1" 74159 73097 sources."postcss-value-parser-4.1.0" ··· 74178 73116 }; 74179 73117 dependencies = [ 74180 73118 sources."@tootallnate/once-1.1.2" 74181 - sources."@types/node-16.11.0" 73119 + sources."@types/node-16.11.6" 74182 73120 sources."@types/yauzl-2.9.2" 74183 73121 sources."agent-base-6.0.2" 74184 73122 sources."ansi-escapes-4.3.2" 74185 73123 sources."ansi-regex-5.0.1" 74186 73124 sources."ansi-styles-4.3.0" 74187 73125 sources."ast-types-0.13.4" 74188 - (sources."aws-sdk-2.1009.0" // { 73126 + (sources."aws-sdk-2.1015.0" // { 74189 73127 dependencies = [ 74190 73128 sources."uuid-3.3.2" 74191 73129 ]; ··· 74214 73152 sources."clone-1.0.4" 74215 73153 sources."color-convert-2.0.1" 74216 73154 sources."color-name-1.1.4" 74217 - sources."commander-8.2.0" 73155 + sources."commander-8.3.0" 74218 73156 sources."concat-map-0.0.1" 74219 73157 sources."core-util-is-1.0.3" 74220 73158 sources."css-select-4.1.3" ··· 74389 73327 balanceofsatoshis = nodeEnv.buildNodePackage { 74390 73328 name = "balanceofsatoshis"; 74391 73329 packageName = "balanceofsatoshis"; 74392 - version = "11.6.2"; 73330 + version = "11.7.2"; 74393 73331 src = fetchurl { 74394 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.6.2.tgz"; 74395 - sha512 = "/FXZqX/ntG2fkpcYCaxg042n4sdHcR0M0ETp3ZQEw5lzPwBm0idG7JmFzsUIU1TlWjmN9VR0b+JCXZMjjHRq3w=="; 73332 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.7.2.tgz"; 73333 + sha512 = "05rPVm92Kz8q445UPjqG8z+61QmuH/Ks0/3qAoiQeLc85bo6GCHbI0mc+anwukFNtEKYVXMvG7zgn/GONBtZ2g=="; 74396 73334 }; 74397 73335 dependencies = [ 74398 73336 sources."@alexbosworth/html2unicode-1.1.5" ··· 74401 73339 sources."@cto.af/textdecoder-0.0.0" 74402 73340 (sources."@grpc/grpc-js-1.3.7" // { 74403 73341 dependencies = [ 74404 - sources."@types/node-16.11.0" 73342 + sources."@types/node-16.11.6" 74405 73343 ]; 74406 73344 }) 74407 73345 sources."@grpc/proto-loader-0.6.4" ··· 74466 73404 ]; 74467 73405 }) 74468 73406 sources."asynckit-0.4.0" 74469 - sources."base-x-3.0.8" 73407 + sources."base-x-3.0.9" 74470 73408 sources."base64-js-1.5.1" 74471 73409 (sources."basic-auth-2.0.1" // { 74472 73410 dependencies = [ ··· 74753 73691 sources."ws-8.2.3" 74754 73692 ]; 74755 73693 }) 74756 - (sources."ln-sync-2.0.3" // { 73694 + (sources."ln-sync-2.1.0" // { 74757 73695 dependencies = [ 74758 73696 sources."@grpc/proto-loader-0.6.5" 74759 73697 sources."@types/node-16.10.4" ··· 74763 73701 sources."lightning-4.10.7" 74764 73702 ]; 74765 73703 }) 74766 - (sources."ln-telegram-3.3.1" // { 74767 - dependencies = [ 74768 - sources."@grpc/proto-loader-0.6.5" 74769 - sources."@types/node-16.10.3" 74770 - sources."@types/ws-8.2.0" 74771 - sources."bn.js-5.2.0" 74772 - sources."bolt09-0.2.0" 74773 - sources."cbor-8.0.0" 74774 - sources."colorette-2.0.7" 74775 - sources."lightning-4.10.3" 74776 - sources."ln-service-52.11.0" 74777 - (sources."ln-sync-2.0.2" // { 74778 - dependencies = [ 74779 - sources."@types/node-16.9.6" 74780 - sources."@types/ws-7.4.7" 74781 - sources."lightning-4.7.1" 74782 - ]; 74783 - }) 74784 - sources."ws-8.2.3" 74785 - ]; 74786 - }) 73704 + sources."ln-telegram-3.3.2" 74787 73705 sources."lodash-4.17.21" 74788 73706 sources."lodash.camelcase-4.3.0" 74789 73707 sources."lodash.clonedeep-4.5.0" ··· 74909 73827 sources."process-nextick-args-2.0.1" 74910 73828 (sources."protobufjs-6.11.2" // { 74911 73829 dependencies = [ 74912 - sources."@types/node-16.11.0" 73830 + sources."@types/node-16.11.6" 74913 73831 ]; 74914 73832 }) 74915 73833 sources."proxy-addr-2.0.7" ··· 75726 74644 sources."safer-buffer-2.1.2" 75727 74645 sources."sha.js-2.4.11" 75728 74646 sources."shasum-object-1.0.0" 75729 - sources."shell-quote-1.7.2" 74647 + sources."shell-quote-1.7.3" 75730 74648 sources."side-channel-1.0.4" 75731 74649 sources."simple-concat-1.0.1" 75732 74650 sources."source-map-0.5.7" ··· 75781 74699 browser-sync = nodeEnv.buildNodePackage { 75782 74700 name = "browser-sync"; 75783 74701 packageName = "browser-sync"; 75784 - version = "2.27.5"; 74702 + version = "2.27.6"; 75785 74703 src = fetchurl { 75786 - url = "https://registry.npmjs.org/browser-sync/-/browser-sync-2.27.5.tgz"; 75787 - sha512 = "0GMEPDqccbTxwYOUGCk5AZloDj9I/1eDZCLXUKXu7iBJPznGGOnMHs88mrhaFL0fTA0R23EmsXX9nLZP+k5YzA=="; 74704 + url = "https://registry.npmjs.org/browser-sync/-/browser-sync-2.27.6.tgz"; 74705 + sha512 = "lknOs7RmALVC8iLvQuNv0vhe6lChaT+GTP8qVw7s4+fZAhNvFn6jWedX94HMRs4iJOrwrm7kdg52G9mf1oHmAA=="; 75788 74706 }; 75789 74707 dependencies = [ 75790 74708 sources."accepts-1.3.7" ··· 75805 74723 sources."blob-0.0.5" 75806 74724 sources."brace-expansion-1.1.11" 75807 74725 sources."braces-3.0.2" 75808 - sources."browser-sync-client-2.27.5" 75809 - sources."browser-sync-ui-2.27.5" 74726 + sources."browser-sync-client-2.27.6" 74727 + sources."browser-sync-ui-2.27.6" 75810 74728 sources."bs-recipes-1.3.4" 75811 74729 sources."bs-snippet-injector-2.0.1" 75812 74730 sources."bytes-3.1.0" ··· 75988 74906 sources."to-array-0.1.4" 75989 74907 sources."to-regex-range-5.0.1" 75990 74908 sources."toidentifier-1.0.0" 75991 - sources."ua-parser-js-0.7.28" 74909 + sources."ua-parser-js-1.0.1" 75992 74910 sources."universalify-0.1.2" 75993 74911 sources."unpipe-1.0.0" 75994 74912 sources."utils-merge-1.0.1" ··· 76066 74984 sources."axios-0.21.4" 76067 74985 sources."babel-walk-3.0.0-canary-5" 76068 74986 sources."balanced-match-1.0.2" 76069 - sources."base-x-3.0.8" 74987 + sources."base-x-3.0.9" 76070 74988 sources."base64-js-1.5.1" 76071 74989 sources."basic-auth-2.0.1" 76072 74990 sources."bcrypt-pbkdf-1.0.2" ··· 76109 75027 sources."chalk-2.4.2" 76110 75028 sources."character-parser-2.2.0" 76111 75029 sources."charenc-0.0.2" 76112 - sources."chart.js-3.5.1" 75030 + sources."chart.js-3.6.0" 76113 75031 sources."cipher-base-1.0.4" 76114 75032 sources."cliui-5.0.0" 76115 75033 sources."color-convert-1.9.3" ··· 76183 75101 sources."debug-2.6.9" 76184 75102 ]; 76185 75103 }) 76186 - sources."express-async-handler-1.1.4" 75104 + sources."express-async-handler-1.2.0" 76187 75105 (sources."express-session-1.17.2" // { 76188 75106 dependencies = [ 76189 75107 sources."cookie-0.4.1" ··· 76411 75329 sources."set-blocking-2.0.0" 76412 75330 sources."setprototypeof-1.1.1" 76413 75331 sources."sha.js-2.4.11" 76414 - sources."simple-git-2.46.0" 75332 + sources."simple-git-2.47.0" 76415 75333 sources."spdx-correct-3.1.1" 76416 75334 sources."spdx-exceptions-2.3.0" 76417 75335 sources."spdx-expression-parse-3.0.1" ··· 76501 75419 sources."@protobufjs/pool-1.1.0" 76502 75420 sources."@protobufjs/utf8-1.1.0" 76503 75421 sources."@types/long-4.0.1" 76504 - sources."@types/node-16.11.0" 75422 + sources."@types/node-16.11.6" 76505 75423 sources."addr-to-ip-port-1.5.4" 76506 75424 sources."airplay-js-0.2.16" 76507 75425 sources."ajv-6.12.6" ··· 76563 75481 sources."co-3.1.0" 76564 75482 sources."codepage-1.4.0" 76565 75483 sources."combined-stream-1.0.8" 76566 - sources."commander-8.2.0" 75484 + sources."commander-8.3.0" 76567 75485 sources."compact2string-1.4.1" 76568 75486 sources."concat-map-0.0.1" 76569 75487 (sources."concat-stream-2.0.0" // { ··· 77504 76422 cdk8s-cli = nodeEnv.buildNodePackage { 77505 76423 name = "cdk8s-cli"; 77506 76424 packageName = "cdk8s-cli"; 77507 - version = "1.0.3"; 76425 + version = "1.0.15"; 77508 76426 src = fetchurl { 77509 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.3.tgz"; 77510 - sha512 = "dje6/93p/gKJgsRvj2Jvtnz2VFlr8O24hyHjFEk/eJq126CVLdvsUyHP9XPhE5CWCznmhfoMVwLGmmR4e1shwg=="; 76427 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.15.tgz"; 76428 + sha512 = "tcgYW1T6KShT7oiHQVkBzKgSllWlMKycEIl4h2kY01LgXZ1Ks97y/AOfgIOxHt3b4ThRwu1MOjVPbeBWRR7YWw=="; 77511 76429 }; 77512 76430 dependencies = [ 77513 - sources."@jsii/check-node-1.39.0" 77514 - sources."@jsii/spec-1.39.0" 77515 - sources."@types/node-12.20.33" 76431 + sources."@jsii/check-node-1.40.0" 76432 + sources."@jsii/spec-1.40.0" 76433 + sources."@types/node-12.20.36" 77516 76434 sources."@xmldom/xmldom-0.7.5" 77517 76435 sources."ajv-8.6.3" 77518 76436 sources."ansi-regex-5.0.1" ··· 77522 76440 sources."call-bind-1.0.2" 77523 76441 sources."camelcase-6.2.0" 77524 76442 sources."case-1.6.3" 77525 - sources."cdk8s-1.1.3" 76443 + sources."cdk8s-1.1.15" 77526 76444 sources."cdk8s-plus-22-1.0.0-beta.21" 77527 76445 sources."chalk-4.1.2" 77528 76446 sources."cliui-7.0.4" 77529 76447 sources."clone-2.1.2" 77530 - (sources."codemaker-1.39.0" // { 76448 + (sources."codemaker-1.40.0" // { 77531 76449 dependencies = [ 77532 76450 sources."fs-extra-9.1.0" 77533 76451 ]; ··· 77592 76510 sources."is-weakref-1.0.1" 77593 76511 sources."is-weakset-2.0.1" 77594 76512 sources."isarray-2.0.5" 77595 - (sources."jsii-1.39.0" // { 76513 + (sources."jsii-1.40.0" // { 77596 76514 dependencies = [ 77597 76515 sources."fs-extra-9.1.0" 77598 76516 sources."yargs-16.2.0" 77599 76517 ]; 77600 76518 }) 77601 - (sources."jsii-pacmak-1.39.0" // { 76519 + (sources."jsii-pacmak-1.40.0" // { 77602 76520 dependencies = [ 77603 76521 sources."fs-extra-9.1.0" 77604 76522 sources."yargs-16.2.0" 77605 76523 ]; 77606 76524 }) 77607 - (sources."jsii-reflect-1.39.0" // { 76525 + (sources."jsii-reflect-1.40.0" // { 77608 76526 dependencies = [ 77609 76527 sources."fs-extra-9.1.0" 77610 76528 sources."yargs-16.2.0" 77611 76529 ]; 77612 76530 }) 77613 - (sources."jsii-rosetta-1.39.0" // { 76531 + (sources."jsii-rosetta-1.40.0" // { 77614 76532 dependencies = [ 77615 76533 sources."fs-extra-9.1.0" 77616 76534 sources."yargs-16.2.0" 77617 76535 ]; 77618 76536 }) 77619 - (sources."jsii-srcmak-0.1.369" // { 76537 + (sources."jsii-srcmak-0.1.380" // { 77620 76538 dependencies = [ 77621 76539 sources."fs-extra-9.1.0" 77622 76540 ]; ··· 77639 76557 sources."object-is-1.1.5" 77640 76558 sources."object-keys-1.1.1" 77641 76559 sources."object.assign-4.1.2" 77642 - sources."oo-ascii-tree-1.39.0" 76560 + sources."oo-ascii-tree-1.40.0" 77643 76561 sources."p-limit-2.3.0" 77644 76562 sources."p-locate-4.1.0" 77645 76563 sources."p-try-2.2.0" ··· 77661 76579 sources."snake-case-3.0.4" 77662 76580 sources."sort-json-2.0.0" 77663 76581 sources."spdx-license-list-6.4.0" 77664 - sources."sscaff-1.2.96" 76582 + sources."sscaff-1.2.109" 77665 76583 (sources."streamroller-2.2.4" // { 77666 76584 dependencies = [ 77667 76585 sources."date-format-2.1.0" ··· 77711 76629 cdktf-cli = nodeEnv.buildNodePackage { 77712 76630 name = "cdktf-cli"; 77713 76631 packageName = "cdktf-cli"; 77714 - version = "0.6.4"; 76632 + version = "0.7.0"; 77715 76633 src = fetchurl { 77716 - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.6.4.tgz"; 77717 - sha512 = "+/UpcjyL8UC+cYm3KYaf2UfoiHPojX3WpezTGdkBsjaSEOLbJOkpvgwMyoILrx4Ob2Pa2dCqgyCt6grqUdhqFw=="; 76634 + url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.7.0.tgz"; 76635 + sha512 = "N0U5YgquMYZTqfO+SSIdP6K/EAnFqS5gHj8eISvP2ZjrphfSFM7hs4VO0bVvzNoMe/ByBbUtQMHXCs5r1XdB9Q=="; 77718 76636 }; 77719 76637 dependencies = [ 77720 76638 sources."@apollo/client-3.4.16" ··· 77741 76659 sources."@babel/parser-7.15.8" 77742 76660 sources."@babel/template-7.15.4" 77743 76661 sources."@babel/types-7.15.6" 77744 - sources."@cdktf/hcl2cdk-0.6.4" 77745 - sources."@cdktf/hcl2json-0.6.4" 76662 + sources."@cdktf/hcl2cdk-0.7.0" 76663 + sources."@cdktf/hcl2json-0.7.0" 76664 + sources."@cdktf/provider-generator-0.7.0" 77746 76665 (sources."@graphql-tools/graphql-file-loader-6.2.7" // { 77747 76666 dependencies = [ 77748 76667 sources."tslib-2.1.0" 77749 76668 ]; 77750 76669 }) 77751 - (sources."@graphql-tools/import-6.5.4" // { 76670 + (sources."@graphql-tools/import-6.5.6" // { 77752 76671 dependencies = [ 77753 - sources."@graphql-tools/utils-8.3.0" 76672 + sources."@graphql-tools/utils-8.5.0" 77754 76673 ]; 77755 76674 }) 77756 76675 (sources."@graphql-tools/load-6.2.8" // { ··· 77763 76682 sources."@graphql-tools/utils-8.0.2" 77764 76683 ]; 77765 76684 }) 77766 - (sources."@graphql-tools/mock-8.4.0" // { 76685 + (sources."@graphql-tools/mock-8.4.1" // { 77767 76686 dependencies = [ 77768 - sources."@graphql-tools/utils-8.3.0" 76687 + sources."@graphql-tools/utils-8.5.0" 77769 76688 ]; 77770 76689 }) 77771 - (sources."@graphql-tools/schema-8.2.0" // { 76690 + (sources."@graphql-tools/schema-8.3.0" // { 77772 76691 dependencies = [ 77773 - sources."@graphql-tools/merge-8.1.2" 77774 - sources."@graphql-tools/utils-8.3.0" 76692 + sources."@graphql-tools/merge-8.2.0" 76693 + sources."@graphql-tools/utils-8.5.0" 77775 76694 ]; 77776 76695 }) 77777 76696 (sources."@graphql-tools/utils-7.10.0" // { ··· 77781 76700 }) 77782 76701 sources."@graphql-typed-document-node/core-3.1.0" 77783 76702 sources."@josephg/resolvable-1.0.1" 77784 - sources."@jsii/check-node-1.39.0" 77785 - sources."@jsii/spec-1.39.0" 76703 + sources."@jsii/check-node-1.40.0" 76704 + sources."@jsii/spec-1.40.0" 77786 76705 sources."@nodelib/fs.scandir-2.1.5" 77787 76706 sources."@nodelib/fs.stat-2.0.5" 77788 76707 sources."@nodelib/fs.walk-1.2.8" ··· 77798 76717 sources."@protobufjs/pool-1.1.0" 77799 76718 sources."@protobufjs/utf8-1.1.0" 77800 76719 sources."@skorfmann/ink-confirm-input-3.0.0" 76720 + (sources."@skorfmann/jsii-srcmak-0.1.374" // { 76721 + dependencies = [ 76722 + sources."ansi-styles-4.3.0" 76723 + sources."camelcase-5.3.1" 76724 + sources."cliui-6.0.0" 76725 + sources."color-convert-2.0.1" 76726 + sources."color-name-1.1.4" 76727 + sources."decamelize-1.2.0" 76728 + sources."fs-extra-9.1.0" 76729 + sources."wrap-ansi-6.2.0" 76730 + sources."y18n-4.0.3" 76731 + sources."yargs-15.4.1" 76732 + sources."yargs-parser-18.1.3" 76733 + ]; 76734 + }) 77801 76735 sources."@skorfmann/terraform-cloud-1.10.1" 77802 76736 sources."@types/accepts-1.3.5" 77803 76737 sources."@types/body-parser-1.19.1" ··· 77807 76741 sources."@types/express-serve-static-core-4.17.24" 77808 76742 sources."@types/long-4.0.1" 77809 76743 sources."@types/mime-1.3.2" 77810 - sources."@types/node-14.17.27" 76744 + sources."@types/node-14.17.32" 77811 76745 sources."@types/node-fetch-2.5.12" 77812 76746 sources."@types/qs-6.9.7" 77813 76747 sources."@types/range-parser-1.2.4" ··· 77839 76773 sources."apollo-server-caching-3.2.0" 77840 76774 (sources."apollo-server-core-3.4.0" // { 77841 76775 dependencies = [ 77842 - sources."@graphql-tools/utils-8.3.0" 76776 + sources."@graphql-tools/utils-8.5.0" 77843 76777 ]; 77844 76778 }) 77845 76779 sources."apollo-server-env-4.1.0" ··· 77850 76784 sources."archiver-5.3.0" 77851 76785 (sources."archiver-utils-2.1.0" // { 77852 76786 dependencies = [ 76787 + sources."isarray-1.0.0" 77853 76788 sources."normalize-path-3.0.0" 77854 76789 sources."readable-stream-2.3.7" 77855 76790 sources."safe-buffer-5.1.2" ··· 77885 76820 ]; 77886 76821 }) 77887 76822 sources."case-1.6.3" 77888 - sources."cdktf-0.6.4" 76823 + sources."cdktf-0.7.0" 77889 76824 (sources."chalk-4.1.2" // { 77890 76825 dependencies = [ 77891 76826 sources."ansi-styles-4.3.0" ··· 77908 76843 sources."cli-truncate-2.1.0" 77909 76844 sources."cli-width-3.0.0" 77910 76845 sources."cliui-7.0.4" 77911 - sources."clone-1.0.4" 76846 + sources."clone-2.1.2" 77912 76847 sources."code-excerpt-3.0.0" 77913 76848 (sources."codemaker-0.22.0" // { 77914 76849 dependencies = [ 77915 76850 sources."camelcase-5.3.1" 76851 + sources."decamelize-1.2.0" 77916 76852 ]; 77917 76853 }) 77918 76854 sources."color-convert-1.9.3" ··· 77937 76873 sources."convert-to-spaces-1.0.2" 77938 76874 sources."cookie-0.4.0" 77939 76875 sources."cookie-signature-1.0.6" 77940 - sources."core-js-pure-3.18.3" 76876 + sources."core-js-pure-3.19.0" 77941 76877 sources."core-util-is-1.0.3" 77942 76878 sources."cors-2.8.5" 77943 76879 sources."crc-32-1.2.0" ··· 77952 76888 sources."date-fns-2.25.0" 77953 76889 sources."date-format-3.0.0" 77954 76890 sources."debug-2.6.9" 77955 - sources."decamelize-1.2.0" 77956 - (sources."deep-equal-2.0.5" // { 76891 + sources."decamelize-5.0.1" 76892 + sources."deep-equal-2.0.5" 76893 + (sources."defaults-1.0.3" // { 77957 76894 dependencies = [ 77958 - sources."isarray-2.0.5" 76895 + sources."clone-1.0.4" 77959 76896 ]; 77960 76897 }) 77961 - sources."defaults-1.0.3" 77962 76898 sources."define-properties-1.1.3" 77963 76899 sources."delay-5.0.0" 77964 76900 sources."delayed-stream-1.0.0" ··· 77974 76910 sources."end-of-stream-1.4.4" 77975 76911 sources."entities-2.0.3" 77976 76912 sources."es-abstract-1.19.1" 77977 - (sources."es-get-iterator-1.1.2" // { 77978 - dependencies = [ 77979 - sources."isarray-2.0.5" 77980 - ]; 77981 - }) 76913 + sources."es-get-iterator-1.1.2" 77982 76914 sources."es-to-primitive-1.2.1" 77983 76915 sources."escalade-3.1.1" 77984 76916 sources."escape-html-1.0.3" ··· 78035 76967 sources."graceful-fs-4.2.8" 78036 76968 sources."graphology-0.20.0" 78037 76969 sources."graphology-types-0.19.5" 78038 - sources."graphql-15.6.1" 76970 + sources."graphql-15.7.0" 78039 76971 sources."graphql-subscriptions-1.2.1" 78040 76972 sources."graphql-tag-2.12.5" 78041 76973 sources."has-1.0.3" ··· 78101 77033 sources."is-weakref-1.0.1" 78102 77034 sources."is-weakset-2.0.1" 78103 77035 sources."is-wsl-2.2.0" 78104 - sources."isarray-1.0.0" 77036 + sources."isarray-2.0.5" 78105 77037 sources."isexe-2.0.0" 78106 77038 sources."iterall-1.3.0" 78107 77039 sources."js-tokens-4.0.0" 78108 77040 sources."jsesc-2.5.2" 78109 - (sources."jsii-1.39.0" // { 77041 + (sources."jsii-1.37.0" // { 78110 77042 dependencies = [ 77043 + sources."@jsii/check-node-1.37.0" 78111 77044 sources."fs-extra-9.1.0" 78112 77045 sources."yargs-16.2.0" 78113 77046 ]; 78114 77047 }) 78115 - (sources."jsii-pacmak-1.39.0" // { 77048 + (sources."jsii-pacmak-1.37.0" // { 78116 77049 dependencies = [ 78117 - sources."clone-2.1.2" 78118 - sources."codemaker-1.39.0" 78119 - sources."decamelize-5.0.1" 77050 + sources."@jsii/check-node-1.37.0" 77051 + sources."codemaker-1.40.0" 78120 77052 sources."escape-string-regexp-4.0.0" 78121 77053 sources."fs-extra-9.1.0" 78122 77054 sources."yargs-16.2.0" 78123 77055 ]; 78124 77056 }) 78125 - (sources."jsii-reflect-1.39.0" // { 77057 + (sources."jsii-reflect-1.40.0" // { 78126 77058 dependencies = [ 78127 77059 sources."fs-extra-9.1.0" 78128 77060 sources."yargs-16.2.0" 78129 77061 ]; 78130 77062 }) 78131 - (sources."jsii-rosetta-1.39.0" // { 77063 + (sources."jsii-rosetta-1.40.0" // { 78132 77064 dependencies = [ 78133 77065 sources."fs-extra-9.1.0" 78134 77066 sources."yargs-16.2.0" 78135 77067 ]; 78136 77068 }) 78137 - (sources."jsii-srcmak-0.1.369" // { 78138 - dependencies = [ 78139 - sources."ansi-styles-4.3.0" 78140 - sources."camelcase-5.3.1" 78141 - sources."cliui-6.0.0" 78142 - sources."color-convert-2.0.1" 78143 - sources."color-name-1.1.4" 78144 - sources."fs-extra-9.1.0" 78145 - sources."wrap-ansi-6.2.0" 78146 - sources."y18n-4.0.3" 78147 - sources."yargs-15.4.1" 78148 - sources."yargs-parser-18.1.3" 78149 - ]; 78150 - }) 78151 77069 sources."jsonfile-6.1.0" 78152 77070 sources."jsonschema-1.4.0" 78153 - (sources."lazystream-1.0.0" // { 77071 + (sources."lazystream-1.0.1" // { 78154 77072 dependencies = [ 77073 + sources."isarray-1.0.0" 78155 77074 sources."readable-stream-2.3.7" 78156 77075 sources."safe-buffer-5.1.2" 78157 77076 ]; ··· 78208 77127 sources."on-finished-2.3.0" 78209 77128 sources."once-1.4.0" 78210 77129 sources."onetime-5.1.2" 78211 - sources."oo-ascii-tree-1.39.0" 77130 + sources."oo-ascii-tree-1.40.0" 78212 77131 sources."open-7.4.2" 78213 77132 sources."optimism-0.16.1" 78214 77133 sources."ora-5.4.1" ··· 78244 77163 sources."range-parser-1.2.1" 78245 77164 sources."raw-body-2.4.0" 78246 77165 sources."react-16.14.0" 78247 - sources."react-devtools-core-4.20.0" 77166 + sources."react-devtools-core-4.20.2" 78248 77167 sources."react-is-16.13.1" 78249 77168 sources."react-reconciler-0.26.2" 78250 77169 sources."readable-stream-3.6.0" ··· 78287 77206 sources."sha.js-2.4.11" 78288 77207 sources."shebang-command-2.0.0" 78289 77208 sources."shebang-regex-3.0.0" 78290 - sources."shell-quote-1.7.2" 77209 + sources."shell-quote-1.7.3" 78291 77210 sources."side-channel-1.0.4" 78292 77211 sources."signal-exit-3.0.5" 78293 77212 sources."slash-3.0.0" ··· 78301 77220 sources."sort-json-2.0.0" 78302 77221 sources."source-map-0.5.7" 78303 77222 sources."spdx-license-list-6.4.0" 78304 - sources."sscaff-1.2.96" 77223 + sources."sscaff-1.2.109" 78305 77224 (sources."stack-utils-2.0.5" // { 78306 77225 dependencies = [ 78307 77226 sources."escape-string-regexp-2.0.0" ··· 78355 77274 sources."utils-merge-1.0.1" 78356 77275 sources."uuid-8.3.2" 78357 77276 sources."valid-url-1.0.9" 78358 - sources."value-or-promise-1.0.10" 77277 + sources."value-or-promise-1.0.11" 78359 77278 sources."vary-1.1.2" 78360 77279 sources."wcwidth-1.0.1" 78361 77280 sources."webidl-conversions-3.0.1" ··· 78403 77322 clean-css-cli = nodeEnv.buildNodePackage { 78404 77323 name = "clean-css-cli"; 78405 77324 packageName = "clean-css-cli"; 78406 - version = "5.4.1"; 77325 + version = "5.4.2"; 78407 77326 src = fetchurl { 78408 - url = "https://registry.npmjs.org/clean-css-cli/-/clean-css-cli-5.4.1.tgz"; 78409 - sha512 = "LQLY8HKQP2d/M0FVbNfpoVbHMHh/ARIET2r80odAKuTN0RUOp8J8pU9eDlqMa1yezuUH3ipQxTVM/+vpunAhnA=="; 77327 + url = "https://registry.npmjs.org/clean-css-cli/-/clean-css-cli-5.4.2.tgz"; 77328 + sha512 = "BYxVOuBQL8f2+yucOgmwUi1idpAQV4k9bxG6mxTrBikuwrkXBG5/Pq6tqCi4GZUtgvslMj8dGVtFSoXp9OLzeA=="; 78410 77329 }; 78411 77330 dependencies = [ 78412 77331 sources."balanced-match-1.0.2" 78413 77332 sources."brace-expansion-1.1.11" 78414 - sources."clean-css-5.2.1" 77333 + sources."clean-css-5.2.2" 78415 77334 sources."commander-7.2.0" 78416 77335 sources."concat-map-0.0.1" 78417 77336 sources."fs.realpath-1.0.0" ··· 78720 77639 coc-explorer = nodeEnv.buildNodePackage { 78721 77640 name = "coc-explorer"; 78722 77641 packageName = "coc-explorer"; 78723 - version = "0.19.0"; 77642 + version = "0.19.1"; 78724 77643 src = fetchurl { 78725 - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.19.0.tgz"; 78726 - sha512 = "b6V4EVjeX6sfyDf9M/gmTB+OVKnkHxvO0XDwWs4/iqF+rhRyC7q7vGrp4ezUPOED2FOklFPCYZ+HGHJ2ldFn0g=="; 77644 + url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.19.1.tgz"; 77645 + sha512 = "XQj+h9E+jT14jAejM7F0tTsgw6c0nvvag8V9/fX4xkvgDQ1NWF+cm255batpsjmg0Wibui6elw9UjNg8zmDcyw=="; 78727 77646 }; 78728 77647 dependencies = [ 78729 77648 sources."@sindresorhus/df-3.1.1" ··· 78767 77686 sources."npm-run-path-3.1.0" 78768 77687 sources."once-1.4.0" 78769 77688 sources."onetime-5.1.2" 78770 - sources."open-8.3.0" 77689 + sources."open-8.4.0" 78771 77690 sources."os-homedir-1.0.2" 78772 77691 sources."p-finally-2.0.1" 78773 77692 sources."p-map-4.0.0" ··· 78959 77878 sources."ms-2.0.0" 78960 77879 sources."request-light-0.4.0" 78961 77880 sources."vscode-json-languageserver-1.3.4" 78962 - (sources."vscode-json-languageservice-4.1.8" // { 77881 + (sources."vscode-json-languageservice-4.1.9" // { 78963 77882 dependencies = [ 78964 77883 sources."vscode-nls-5.0.0" 78965 77884 ]; ··· 79020 77939 coc-metals = nodeEnv.buildNodePackage { 79021 77940 name = "coc-metals"; 79022 77941 packageName = "coc-metals"; 79023 - version = "1.0.9"; 77942 + version = "1.0.10"; 79024 77943 src = fetchurl { 79025 - url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.9.tgz"; 79026 - sha512 = "xy7flhVZAMTJbFVlZixkJ670aQqUSHGlw+jCU3+oSTCvd7QxYnWCHAEwmNXRwtndBoJlVh17ZvAiJsW802gCPg=="; 77944 + url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.10.tgz"; 77945 + sha512 = "Hm17BLPzwxy5VE6ekDLyvYdt1xMcAbmGK/YbcHJzhQo4cHahW+HIextEy7KL5EU7uF3SrZYaBo7tH2JH4Tk0Qg=="; 79027 77946 }; 79028 77947 dependencies = [ 79029 77948 sources."@chemzqm/neovim-5.4.0" ··· 79167 78086 sources."setimmediate-1.0.5" 79168 78087 sources."shebang-command-1.2.0" 79169 78088 sources."shebang-regex-1.0.0" 79170 - sources."shell-quote-1.7.2" 78089 + sources."shell-quote-1.7.3" 79171 78090 sources."side-channel-1.0.4" 79172 78091 sources."signal-exit-3.0.5" 79173 78092 (sources."streamroller-2.2.4" // { ··· 79321 78240 sources."callsites-3.1.0" 79322 78241 sources."camelcase-2.1.1" 79323 78242 sources."camelcase-keys-2.1.0" 79324 - sources."caniuse-lite-1.0.30001267" 78243 + sources."caniuse-lite-1.0.30001271" 79325 78244 sources."capture-stack-trace-1.0.1" 79326 78245 sources."ccount-1.1.0" 79327 78246 (sources."chalk-4.1.2" // { ··· 79383 78302 ]; 79384 78303 }) 79385 78304 sources."copy-descriptor-0.1.1" 79386 - sources."core-js-3.18.3" 78305 + sources."core-js-3.19.0" 79387 78306 sources."cosmiconfig-3.1.0" 79388 78307 sources."create-error-class-3.0.2" 79389 78308 sources."cross-spawn-7.0.3" ··· 79419 78338 sources."domutils-1.7.0" 79420 78339 sources."dot-prop-5.3.0" 79421 78340 sources."duplexer3-0.1.4" 79422 - sources."electron-to-chromium-1.3.870" 78341 + sources."electron-to-chromium-1.3.880" 79423 78342 sources."emoji-regex-8.0.0" 79424 78343 sources."end-of-stream-1.4.4" 79425 78344 sources."enquirer-2.3.6" ··· 79438 78357 sources."esprima-4.0.1" 79439 78358 (sources."esquery-1.4.0" // { 79440 78359 dependencies = [ 79441 - sources."estraverse-5.2.0" 78360 + sources."estraverse-5.3.0" 79442 78361 ]; 79443 78362 }) 79444 78363 (sources."esrecurse-4.3.0" // { 79445 78364 dependencies = [ 79446 - sources."estraverse-5.2.0" 78365 + sources."estraverse-5.3.0" 79447 78366 ]; 79448 78367 }) 79449 78368 sources."estraverse-4.3.0" ··· 80218 79137 coc-pyright = nodeEnv.buildNodePackage { 80219 79138 name = "coc-pyright"; 80220 79139 packageName = "coc-pyright"; 80221 - version = "1.1.177"; 79140 + version = "1.1.181"; 80222 79141 src = fetchurl { 80223 - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.177.tgz"; 80224 - sha512 = "TtSU3bWibZqq1LrUa5iLR1TF69x83dzmVNKpXaawYJZoejN81Gnv6DRaLybBjLjOSodjzw9S0D7j6tbeJeLCdg=="; 79142 + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.181.tgz"; 79143 + sha512 = "dtsGJiL/ul+kCNKkQ7cw0ZHJV3bw3sWEu2V2dtoDFDP8yVtIHEXbz5O8ujULwl+FkO3X4Th+Q8ZR02mqDwdapQ=="; 80225 79144 }; 80226 79145 dependencies = [ 80227 - sources."pyright-1.1.178" 79146 + sources."pyright-1.1.182" 80228 79147 ]; 80229 79148 buildInputs = globalBuildInputs; 80230 79149 meta = { ··· 80298 79217 coc-rust-analyzer = nodeEnv.buildNodePackage { 80299 79218 name = "coc-rust-analyzer"; 80300 79219 packageName = "coc-rust-analyzer"; 80301 - version = "0.53.0"; 79220 + version = "0.54.0"; 80302 79221 src = fetchurl { 80303 - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.53.0.tgz"; 80304 - sha512 = "B8QCO3v0oH4olnhYJqgLN3ItSJuQ8tqoTvZIWMhlK8lYGZ4AIHwHl8s3jxQITosLg9OaD9ulTNuiShuGEvUmHQ=="; 79222 + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.54.0.tgz"; 79223 + sha512 = "pj7VGs/Fzi50vWsF2VlmjmZDE1IScxEMO9TKgpaj8Fi/eGczFz8WxAnbGiAjDzVHYqyaCq/eQtU0Ix7bm1V3Bw=="; 80305 79224 }; 80306 79225 buildInputs = globalBuildInputs; 80307 79226 meta = { ··· 80430 79349 ]; 80431 79350 }) 80432 79351 sources."braces-3.0.2" 80433 - sources."browserslist-4.17.4" 79352 + sources."browserslist-4.17.5" 80434 79353 sources."callsites-3.1.0" 80435 79354 sources."camelcase-5.3.1" 80436 79355 sources."camelcase-keys-6.2.2" 80437 - sources."caniuse-lite-1.0.30001267" 79356 + sources."caniuse-lite-1.0.30001271" 80438 79357 (sources."chalk-4.1.2" // { 80439 79358 dependencies = [ 80440 79359 sources."ansi-styles-4.3.0" ··· 80471 79390 sources."domelementtype-1.3.1" 80472 79391 sources."domhandler-2.4.2" 80473 79392 sources."domutils-1.7.0" 80474 - sources."electron-to-chromium-1.3.870" 79393 + sources."electron-to-chromium-1.3.880" 80475 79394 sources."emoji-regex-8.0.0" 80476 79395 sources."entities-1.1.2" 80477 79396 sources."error-ex-1.3.2" ··· 80568 79487 ]; 80569 79488 }) 80570 79489 sources."ms-2.1.2" 80571 - sources."node-releases-2.0.0" 79490 + sources."node-releases-2.0.1" 80572 79491 (sources."normalize-package-data-3.0.3" // { 80573 79492 dependencies = [ 80574 79493 sources."semver-7.3.5" ··· 80890 79809 sources."balanced-match-1.0.2" 80891 79810 sources."brace-expansion-1.1.11" 80892 79811 sources."builtin-modules-1.1.1" 79812 + sources."call-bind-1.0.2" 80893 79813 sources."callsites-3.1.0" 80894 79814 (sources."chalk-4.1.2" // { 80895 79815 dependencies = [ ··· 80900 79820 sources."supports-color-7.2.0" 80901 79821 ]; 80902 79822 }) 79823 + sources."character-parser-2.2.0" 80903 79824 sources."color-convert-1.9.3" 80904 79825 sources."color-name-1.1.3" 80905 79826 sources."commander-2.20.3" ··· 80913 79834 sources."enquirer-2.3.6" 80914 79835 sources."escape-string-regexp-4.0.0" 80915 79836 sources."eslint-7.32.0" 80916 - (sources."eslint-plugin-vue-7.19.1" // { 79837 + (sources."eslint-plugin-vue-7.20.0" // { 80917 79838 dependencies = [ 80918 79839 sources."semver-6.3.0" 80919 79840 ]; ··· 80933 79854 sources."esprima-4.0.1" 80934 79855 (sources."esquery-1.4.0" // { 80935 79856 dependencies = [ 80936 - sources."estraverse-5.2.0" 79857 + sources."estraverse-5.3.0" 80937 79858 ]; 80938 79859 }) 80939 79860 (sources."esrecurse-4.3.0" // { 80940 79861 dependencies = [ 80941 - sources."estraverse-5.2.0" 79862 + sources."estraverse-5.3.0" 80942 79863 ]; 80943 79864 }) 80944 79865 sources."estraverse-4.3.0" ··· 80952 79873 sources."fs.realpath-1.0.0" 80953 79874 sources."function-bind-1.1.1" 80954 79875 sources."functional-red-black-tree-1.0.1" 79876 + sources."get-intrinsic-1.1.1" 80955 79877 sources."glob-7.2.0" 80956 79878 sources."glob-parent-5.1.2" 80957 79879 sources."globals-13.11.0" 80958 79880 sources."has-1.0.3" 80959 79881 sources."has-flag-3.0.0" 79882 + sources."has-symbols-1.0.2" 79883 + sources."has-tostringtag-1.0.0" 80960 79884 sources."ignore-4.0.6" 80961 79885 sources."import-fresh-3.3.0" 80962 79886 sources."imurmurhash-0.1.4" 80963 79887 sources."inflight-1.0.6" 80964 79888 sources."inherits-2.0.4" 80965 79889 sources."is-core-module-2.8.0" 79890 + sources."is-expression-4.0.0" 80966 79891 sources."is-extglob-2.1.1" 80967 79892 sources."is-fullwidth-code-point-3.0.0" 80968 79893 sources."is-glob-4.0.3" 79894 + sources."is-regex-1.1.4" 80969 79895 sources."isexe-2.0.0" 80970 79896 sources."js-tokens-4.0.0" 80971 79897 sources."js-yaml-3.14.1" ··· 80982 79908 sources."mkdirp-0.5.5" 80983 79909 sources."ms-2.1.2" 80984 79910 sources."natural-compare-1.4.0" 79911 + sources."object-assign-4.1.1" 80985 79912 sources."once-1.4.0" 80986 79913 sources."optionator-0.9.1" 80987 79914 sources."parent-module-1.0.1" ··· 80991 79918 sources."prelude-ls-1.2.1" 80992 79919 sources."prettier-2.4.1" 80993 79920 sources."progress-2.0.3" 79921 + sources."pug-error-2.0.0" 79922 + sources."pug-lexer-5.0.1" 80994 79923 sources."punycode-2.1.1" 80995 79924 sources."regexpp-3.2.0" 80996 79925 sources."require-from-string-2.0.2" ··· 81033 79962 sources."typescript-4.4.4" 81034 79963 sources."uri-js-4.4.1" 81035 79964 sources."v8-compile-cache-2.3.0" 81036 - sources."vls-0.7.4" 79965 + sources."vls-0.7.6" 81037 79966 (sources."vue-eslint-parser-7.11.0" // { 81038 79967 dependencies = [ 81039 79968 sources."eslint-visitor-keys-1.3.0" ··· 81429 80358 sources."@dabh/diagnostics-2.0.2" 81430 80359 sources."async-3.2.1" 81431 80360 sources."bintrees-1.0.1" 81432 - sources."color-3.0.0" 80361 + sources."color-3.2.1" 81433 80362 sources."color-convert-1.9.3" 81434 80363 sources."color-name-1.1.3" 81435 80364 sources."color-string-1.6.0" 81436 80365 sources."colors-1.4.0" 81437 - sources."colorspace-1.1.2" 80366 + sources."colorspace-1.1.4" 81438 80367 sources."commander-8.0.0" 81439 80368 sources."core-util-is-1.0.3" 81440 80369 sources."enabled-2.0.0" ··· 81532 80461 sources."conventional-changelog-preset-loader-2.3.4" 81533 80462 sources."conventional-changelog-writer-5.0.0" 81534 80463 sources."conventional-commits-filter-2.0.7" 81535 - sources."conventional-commits-parser-3.2.2" 80464 + sources."conventional-commits-parser-3.2.3" 81536 80465 sources."core-util-is-1.0.3" 81537 80466 sources."dargs-7.0.0" 81538 80467 sources."dateformat-3.0.3" ··· 82323 81252 sources."@babel/highlight-7.14.5" 82324 81253 sources."@mrmlnc/readdir-enhanced-2.2.1" 82325 81254 sources."@nodelib/fs.stat-1.1.3" 82326 - sources."@types/glob-7.1.4" 81255 + sources."@types/glob-7.2.0" 82327 81256 sources."@types/minimatch-3.0.5" 82328 81257 sources."@types/minimist-1.2.2" 82329 - sources."@types/node-16.11.0" 81258 + sources."@types/node-16.11.6" 82330 81259 sources."@types/normalize-package-data-2.4.1" 82331 81260 sources."aggregate-error-3.1.0" 82332 81261 sources."ansi-styles-3.2.1" ··· 82697 81626 sources."@cycle/run-3.4.0" 82698 81627 sources."@cycle/time-0.10.1" 82699 81628 sources."@types/cookiejar-2.1.2" 82700 - sources."@types/node-16.11.0" 81629 + sources."@types/node-16.11.6" 82701 81630 sources."@types/superagent-3.8.2" 82702 81631 sources."ansi-escapes-3.2.0" 82703 81632 sources."ansi-regex-2.1.1" ··· 83780 82709 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 83781 82710 sources."@babel/plugin-transform-unicode-regex-7.14.5" 83782 82711 sources."@babel/preset-env-7.15.8" 83783 - sources."@babel/preset-modules-0.1.4" 82712 + sources."@babel/preset-modules-0.1.5" 83784 82713 sources."@babel/preset-react-7.14.5" 83785 82714 sources."@babel/runtime-7.15.4" 83786 82715 sources."@babel/template-7.15.4" 83787 82716 sources."@babel/traverse-7.15.4" 83788 82717 sources."@babel/types-7.15.6" 83789 - sources."@blueprintjs/colors-4.0.0-beta.0" 83790 - sources."@blueprintjs/core-3.51.1" 83791 - sources."@blueprintjs/icons-3.30.2" 82718 + sources."@blueprintjs/colors-4.0.0-beta.1" 82719 + sources."@blueprintjs/core-3.51.3" 82720 + sources."@blueprintjs/icons-3.31.0" 83792 82721 sources."@electron/get-1.13.0" 83793 82722 sources."@hypnosphi/create-react-context-0.3.1" 83794 82723 sources."@mapbox/extent-0.4.0" ··· 83808 82737 sources."@szmarczak/http-timer-1.1.2" 83809 82738 sources."@types/debounce-1.2.1" 83810 82739 sources."@types/dom4-2.0.2" 83811 - sources."@types/emoji-mart-3.0.6" 82740 + sources."@types/emoji-mart-3.0.8" 83812 82741 sources."@types/geojson-7946.0.8" 83813 82742 sources."@types/mapbox-gl-0.54.5" 83814 82743 sources."@types/mime-types-2.1.1" 83815 - sources."@types/node-14.17.27" 82744 + sources."@types/node-14.17.32" 83816 82745 sources."@types/node-fetch-2.5.12" 83817 82746 sources."@types/prop-types-15.7.4" 83818 82747 sources."@types/rc-1.2.0" 83819 - sources."@types/react-16.14.17" 82748 + sources."@types/react-16.14.20" 83820 82749 sources."@types/react-dom-16.9.14" 83821 82750 sources."@types/react-window-1.8.5" 83822 82751 sources."@types/react-window-infinite-loader-1.0.5" ··· 83858 82787 sources."extend-shallow-2.0.1" 83859 82788 ]; 83860 82789 }) 83861 - sources."browserslist-4.17.4" 82790 + sources."browserslist-4.17.5" 83862 82791 sources."buffer-crc32-0.2.13" 83863 82792 sources."buffer-from-1.1.2" 83864 82793 sources."cache-base-1.0.1" ··· 83869 82798 ]; 83870 82799 }) 83871 82800 sources."call-bind-1.0.2" 83872 - sources."caniuse-lite-1.0.30001267" 82801 + sources."caniuse-lite-1.0.30001271" 83873 82802 sources."chalk-2.4.2" 83874 82803 sources."chokidar-2.1.8" 83875 82804 (sources."class-utils-0.3.6" // { ··· 83910 82839 ]; 83911 82840 }) 83912 82841 sources."copy-descriptor-0.1.1" 83913 - sources."core-js-3.18.3" 83914 - (sources."core-js-compat-3.18.3" // { 82842 + sources."core-js-3.19.0" 82843 + (sources."core-js-compat-3.19.0" // { 83915 82844 dependencies = [ 83916 82845 sources."semver-7.0.0" 83917 82846 ]; ··· 83936 82865 sources."dom4-2.1.6" 83937 82866 sources."duplexer3-0.1.4" 83938 82867 sources."earcut-2.2.3" 83939 - sources."electron-13.5.2" 83940 - sources."electron-to-chromium-1.3.870" 82868 + sources."electron-13.6.0" 82869 + sources."electron-to-chromium-1.3.880" 83941 82870 sources."emoji-js-clean-4.0.0" 83942 82871 sources."emoji-mart-3.0.1" 83943 82872 sources."emoji-regex-9.2.2" ··· 84116 83045 sources."napi-macros-2.0.0" 84117 83046 sources."node-fetch-2.6.5" 84118 83047 sources."node-gyp-build-4.3.0" 84119 - sources."node-releases-2.0.0" 83048 + sources."node-releases-2.0.1" 84120 83049 sources."normalize-path-3.0.0" 84121 83050 sources."normalize-url-4.5.1" 84122 83051 sources."normalize.css-8.0.1" ··· 84155 83084 sources."pify-3.0.0" 84156 83085 sources."popper.js-1.16.1" 84157 83086 sources."posix-character-classes-0.1.1" 84158 - sources."potpack-1.0.1" 83087 + sources."potpack-1.0.2" 84159 83088 sources."prepend-http-2.0.0" 84160 83089 sources."process-nextick-args-2.0.1" 84161 83090 sources."progress-2.0.3" ··· 84216 83145 sources."rw-0.1.4" 84217 83146 sources."safe-buffer-5.2.1" 84218 83147 sources."safe-regex-1.1.0" 84219 - (sources."sass-1.43.2" // { 83148 + (sources."sass-1.43.4" // { 84220 83149 dependencies = [ 84221 83150 sources."anymatch-3.1.2" 84222 83151 sources."binary-extensions-2.2.0" ··· 84480 83409 dockerfile-language-server-nodejs = nodeEnv.buildNodePackage { 84481 83410 name = "dockerfile-language-server-nodejs"; 84482 83411 packageName = "dockerfile-language-server-nodejs"; 84483 - version = "0.7.1"; 83412 + version = "0.7.2"; 84484 83413 src = fetchurl { 84485 - url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.7.1.tgz"; 84486 - sha512 = "mk1FkdckiNi0gxm/KIsgOJRpPROOqq27fF90f8CtetbaqRvL/mwKDTN2umLeRenJ4ayxdz/Gpf7gWOOQz1kZ1Q=="; 83414 + url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.7.2.tgz"; 83415 + sha512 = "TrUvQ+Mq/R4uODRPHNsDKwFXucGsJBm4cObKENYtwNkXCeT7QmrNBc9d8lQQM0B+Gsc7mDASWKn1Jn+1FwVtIw=="; 84487 83416 }; 84488 83417 dependencies = [ 84489 83418 sources."dockerfile-ast-0.3.4" 84490 - sources."dockerfile-language-service-0.7.2" 83419 + sources."dockerfile-language-service-0.7.3" 84491 83420 sources."dockerfile-utils-0.9.2" 84492 83421 sources."vscode-jsonrpc-8.0.0-next.3" 84493 83422 sources."vscode-languageserver-8.0.0-next.3" ··· 84520 83449 dependencies = [ 84521 83450 sources."@fast-csv/format-4.3.5" 84522 83451 sources."@fast-csv/parse-4.3.6" 84523 - sources."@types/node-14.17.27" 83452 + sources."@types/node-14.17.32" 84524 83453 sources."JSONStream-1.3.5" 84525 83454 sources."ajv-6.12.6" 84526 83455 sources."asn1-0.2.4" ··· 84719 83648 sources."@szmarczak/http-timer-4.0.6" 84720 83649 sources."@tootallnate/once-1.1.2" 84721 83650 sources."@types/cacheable-request-6.0.2" 84722 - sources."@types/glob-7.1.4" 83651 + sources."@types/glob-7.2.0" 84723 83652 sources."@types/http-cache-semantics-4.0.1" 84724 83653 sources."@types/keyv-3.1.3" 84725 83654 sources."@types/minimatch-3.0.5" 84726 - sources."@types/node-16.11.0" 83655 + sources."@types/node-16.11.6" 84727 83656 sources."@types/responselike-1.0.0" 84728 83657 sources."@types/yauzl-2.9.2" 84729 83658 sources."abbrev-1.1.1" ··· 84805 83734 sources."concat-map-0.0.1" 84806 83735 sources."config-chain-1.1.13" 84807 83736 sources."console-control-strings-1.1.0" 84808 - sources."core-js-3.18.3" 83737 + sources."core-js-3.19.0" 84809 83738 sources."core-util-is-1.0.3" 84810 83739 sources."cross-spawn-7.0.3" 84811 83740 (sources."cross-spawn-windows-exe-1.2.0" // { ··· 85021 83950 sources."lowercase-keys-2.0.0" 85022 83951 sources."lru-cache-6.0.0" 85023 83952 sources."lzma-native-8.0.1" 85024 - sources."make-fetch-happen-8.0.14" 83953 + sources."make-fetch-happen-9.1.0" 85025 83954 sources."map-age-cleaner-0.1.3" 85026 83955 sources."map-obj-1.0.1" 85027 83956 (sources."matcher-3.0.0" // { ··· 85059 83988 sources."mkdirp-1.0.4" 85060 83989 sources."ms-2.0.0" 85061 83990 sources."mute-stream-0.0.8" 83991 + sources."negotiator-0.6.2" 85062 83992 sources."nice-try-1.0.5" 85063 83993 (sources."node-abi-2.30.1" // { 85064 83994 dependencies = [ ··· 85068 83998 sources."node-addon-api-3.2.1" 85069 83999 sources."node-api-version-0.1.4" 85070 84000 sources."node-fetch-2.6.5" 85071 - sources."node-gyp-8.2.0" 84001 + sources."node-gyp-8.3.0" 85072 84002 sources."node-gyp-build-4.3.0" 85073 84003 sources."nopt-5.0.0" 85074 84004 (sources."normalize-package-data-2.5.0" // { ··· 85099 84029 sources."object-keys-0.4.0" 85100 84030 sources."once-1.4.0" 85101 84031 sources."onetime-5.1.2" 85102 - sources."open-8.3.0" 84032 + sources."open-8.4.0" 85103 84033 sources."ora-5.4.1" 85104 84034 sources."os-tmpdir-1.0.2" 85105 84035 sources."p-cancelable-2.1.1" ··· 85192 84122 sources."single-line-log-1.1.2" 85193 84123 sources."smart-buffer-4.2.0" 85194 84124 sources."socks-2.6.1" 85195 - sources."socks-proxy-agent-5.0.1" 84125 + sources."socks-proxy-agent-6.1.0" 85196 84126 sources."source-map-0.6.1" 85197 84127 sources."source-map-support-0.5.20" 85198 84128 sources."spdx-correct-3.1.1" ··· 85384 84314 sources."auto-bind-4.0.0" 85385 84315 sources."balanced-match-1.0.2" 85386 84316 sources."brace-expansion-1.1.11" 85387 - sources."browserslist-4.17.4" 84317 + sources."browserslist-4.17.5" 85388 84318 sources."caller-callsite-2.0.0" 85389 84319 sources."caller-path-2.0.0" 85390 84320 sources."callsites-2.0.0" 85391 84321 sources."camelcase-5.3.1" 85392 84322 sources."camelcase-keys-6.2.2" 85393 - sources."caniuse-lite-1.0.30001267" 84323 + sources."caniuse-lite-1.0.30001271" 85394 84324 sources."chalk-2.4.2" 85395 84325 sources."ci-info-2.0.0" 85396 84326 sources."cli-boxes-2.2.1" ··· 85419 84349 ]; 85420 84350 }) 85421 84351 sources."dot-prop-5.3.0" 85422 - sources."electron-to-chromium-1.3.870" 84352 + sources."electron-to-chromium-1.3.880" 85423 84353 sources."emoji-regex-8.0.0" 85424 84354 sources."emojilib-2.4.0" 85425 84355 sources."end-of-stream-1.4.4" ··· 85509 84439 sources."minimist-options-4.1.0" 85510 84440 sources."ms-2.1.2" 85511 84441 sources."nice-try-1.0.5" 85512 - sources."node-releases-2.0.0" 84442 + sources."node-releases-2.0.1" 85513 84443 sources."normalize-package-data-2.5.0" 85514 84444 sources."npm-run-path-2.0.2" 85515 84445 sources."object-assign-4.1.1" ··· 85545 84475 sources."punycode-2.1.1" 85546 84476 sources."quick-lru-4.0.1" 85547 84477 sources."react-16.14.0" 85548 - sources."react-devtools-core-4.20.0" 84478 + sources."react-devtools-core-4.20.2" 85549 84479 sources."react-is-16.13.1" 85550 84480 sources."react-reconciler-0.26.2" 85551 84481 (sources."read-pkg-5.2.0" // { ··· 85572 84502 sources."semver-5.7.1" 85573 84503 sources."shebang-command-1.2.0" 85574 84504 sources."shebang-regex-1.0.0" 85575 - sources."shell-quote-1.7.2" 84505 + sources."shell-quote-1.7.3" 85576 84506 sources."signal-exit-3.0.5" 85577 84507 sources."skin-tone-1.0.0" 85578 84508 (sources."slice-ansi-3.0.0" // { ··· 85663 84593 sources."@fluentui/date-time-utilities-7.9.1" 85664 84594 sources."@fluentui/dom-utilities-1.1.2" 85665 84595 sources."@fluentui/keyboard-key-0.2.17" 85666 - sources."@fluentui/react-7.177.2" 85667 - sources."@fluentui/react-focus-7.18.0" 84596 + sources."@fluentui/react-7.177.3" 84597 + sources."@fluentui/react-focus-7.18.1" 85668 84598 sources."@fluentui/react-window-provider-1.0.2" 85669 84599 sources."@fluentui/theme-1.7.4" 85670 84600 sources."@gar/promisify-1.1.2" ··· 85678 84608 sources."normalize-path-2.1.1" 85679 84609 ]; 85680 84610 }) 85681 - sources."@microsoft/load-themed-styles-1.10.225" 84611 + sources."@microsoft/load-themed-styles-1.10.226" 85682 84612 sources."@nodelib/fs.scandir-2.1.5" 85683 84613 sources."@nodelib/fs.stat-2.0.5" 85684 84614 sources."@nodelib/fs.walk-1.2.8" ··· 85699 84629 sources."@types/express-4.17.8" 85700 84630 sources."@types/express-serve-static-core-4.17.24" 85701 84631 sources."@types/fancy-log-1.3.0" 85702 - sources."@types/glob-7.1.4" 84632 + sources."@types/glob-7.2.0" 85703 84633 sources."@types/hls.js-0.13.1" 85704 84634 sources."@types/js-yaml-3.12.5" 85705 84635 sources."@types/json-schema-7.0.9" ··· 85728 84658 sources."@types/sqlite3-3.1.6" 85729 84659 sources."@types/tough-cookie-4.0.1" 85730 84660 sources."@types/url-join-4.0.0" 85731 - sources."@uifabric/foundation-7.10.0" 85732 - sources."@uifabric/icons-7.6.1" 84661 + sources."@uifabric/foundation-7.10.1" 84662 + sources."@uifabric/icons-7.6.2" 85733 84663 sources."@uifabric/merge-styles-7.19.2" 85734 84664 sources."@uifabric/react-hooks-7.14.0" 85735 84665 sources."@uifabric/set-version-7.0.24" 85736 - sources."@uifabric/styling-7.19.1" 84666 + sources."@uifabric/styling-7.20.0" 85737 84667 sources."@uifabric/utilities-7.33.5" 85738 84668 sources."@webassemblyjs/ast-1.9.0" 85739 84669 sources."@webassemblyjs/floating-point-hex-parser-1.9.0" ··· 86160 85090 sources."esprima-4.0.1" 86161 85091 (sources."esrecurse-4.3.0" // { 86162 85092 dependencies = [ 86163 - sources."estraverse-5.2.0" 85093 + sources."estraverse-5.3.0" 86164 85094 ]; 86165 85095 }) 86166 85096 sources."estraverse-4.3.0" ··· 86462 85392 sources."kind-of-6.0.3" 86463 85393 sources."last-run-1.1.1" 86464 85394 sources."latest-version-5.1.0" 86465 - (sources."lazystream-1.0.0" // { 85395 + (sources."lazystream-1.0.1" // { 86466 85396 dependencies = [ 86467 85397 sources."isarray-1.0.0" 86468 85398 sources."readable-stream-2.3.7" ··· 86706 85636 sources."object.map-1.0.1" 86707 85637 sources."object.pick-1.3.0" 86708 85638 sources."object.reduce-1.0.1" 86709 - sources."office-ui-fabric-react-7.177.2" 85639 + sources."office-ui-fabric-react-7.177.3" 86710 85640 sources."on-finished-2.3.0" 86711 85641 sources."on-headers-1.0.2" 86712 85642 sources."once-1.4.0" ··· 86933 85863 sources."safe-buffer-5.1.2" 86934 85864 sources."safe-regex-1.1.0" 86935 85865 sources."safer-buffer-2.1.2" 86936 - (sources."sass-1.43.2" // { 85866 + (sources."sass-1.43.4" // { 86937 85867 dependencies = [ 86938 85868 sources."anymatch-3.1.2" 86939 85869 sources."binary-extensions-2.2.0" ··· 87354 86284 eslint = nodeEnv.buildNodePackage { 87355 86285 name = "eslint"; 87356 86286 packageName = "eslint"; 87357 - version = "8.0.1"; 86287 + version = "8.1.0"; 87358 86288 src = fetchurl { 87359 - url = "https://registry.npmjs.org/eslint/-/eslint-8.0.1.tgz"; 87360 - sha512 = "LsgcwZgQ72vZ+SMp4K6pAnk2yFDWL7Ti4pJaRvsZ0Hsw2h8ZjUIW38a9AFn2cZXdBMlScMFYYgsSp4ttFI/0bA=="; 86289 + url = "https://registry.npmjs.org/eslint/-/eslint-8.1.0.tgz"; 86290 + sha512 = "JZvNneArGSUsluHWJ8g8MMs3CfIEzwaLx9KyH4tZ2i+R2/rPWzL8c0zg3rHdwYVpN/1sB9gqnjHwz9HoeJpGHw=="; 87361 86291 }; 87362 86292 dependencies = [ 87363 86293 (sources."@eslint/eslintrc-1.0.3" // { ··· 87398 86328 sources."esprima-4.0.1" 87399 86329 sources."esquery-1.4.0" 87400 86330 sources."esrecurse-4.3.0" 87401 - sources."estraverse-5.2.0" 86331 + sources."estraverse-5.3.0" 87402 86332 sources."esutils-2.0.3" 87403 86333 sources."fast-deep-equal-3.1.3" 87404 86334 sources."fast-json-stable-stringify-2.1.0" ··· 87539 86469 sources."esprima-4.0.1" 87540 86470 (sources."esquery-1.4.0" // { 87541 86471 dependencies = [ 87542 - sources."estraverse-5.2.0" 86472 + sources."estraverse-5.3.0" 87543 86473 ]; 87544 86474 }) 87545 86475 (sources."esrecurse-4.3.0" // { 87546 86476 dependencies = [ 87547 - sources."estraverse-5.2.0" 86477 + sources."estraverse-5.3.0" 87548 86478 ]; 87549 86479 }) 87550 86480 sources."estraverse-4.3.0" ··· 87656 86586 expo-cli = nodeEnv.buildNodePackage { 87657 86587 name = "expo-cli"; 87658 86588 packageName = "expo-cli"; 87659 - version = "4.12.1"; 86589 + version = "4.12.10"; 87660 86590 src = fetchurl { 87661 - url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.12.1.tgz"; 87662 - sha512 = "bA212xB4Luw10FGlqvCB472WZZzlIhXt2du3+YJPyAgkPJy18EmPEAMr498EV6egRSnEY5dMx0Bj3bjNOh80Xw=="; 86591 + url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.12.10.tgz"; 86592 + sha512 = "gr5ohW1cyYHeL31HoQnu33bvkN0cxLLOfC9dtNjFnEfh/B+WGxlnsTpJbu8UOu5qenOLtaATHxEuXRcbfk18qA=="; 87663 86593 }; 87664 86594 dependencies = [ 87665 86595 sources."@babel/code-frame-7.10.4" 87666 - sources."@babel/compat-data-7.15.0" 87667 - (sources."@babel/core-7.15.8" // { 86596 + (sources."@babel/core-7.9.0" // { 87668 86597 dependencies = [ 87669 - sources."@babel/code-frame-7.15.8" 87670 86598 sources."json5-2.2.0" 87671 - sources."semver-6.3.0" 86599 + sources."semver-5.7.1" 87672 86600 ]; 87673 86601 }) 87674 86602 sources."@babel/generator-7.15.8" 87675 - sources."@babel/helper-annotate-as-pure-7.15.4" 87676 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 87677 - (sources."@babel/helper-compilation-targets-7.15.4" // { 87678 - dependencies = [ 87679 - sources."browserslist-4.17.4" 87680 - sources."node-releases-2.0.0" 87681 - sources."semver-6.3.0" 87682 - ]; 87683 - }) 87684 - sources."@babel/helper-create-class-features-plugin-7.15.4" 87685 - sources."@babel/helper-create-regexp-features-plugin-7.14.5" 87686 - (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 87687 - dependencies = [ 87688 - sources."semver-6.3.0" 87689 - ]; 87690 - }) 87691 - sources."@babel/helper-explode-assignable-expression-7.15.4" 87692 86603 sources."@babel/helper-function-name-7.15.4" 87693 86604 sources."@babel/helper-get-function-arity-7.15.4" 87694 86605 sources."@babel/helper-hoist-variables-7.15.4" ··· 87696 86607 sources."@babel/helper-module-imports-7.15.4" 87697 86608 sources."@babel/helper-module-transforms-7.15.8" 87698 86609 sources."@babel/helper-optimise-call-expression-7.15.4" 87699 - sources."@babel/helper-plugin-utils-7.14.5" 87700 86610 sources."@babel/helper-replace-supers-7.15.4" 87701 86611 sources."@babel/helper-simple-access-7.15.4" 87702 - sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 87703 86612 sources."@babel/helper-split-export-declaration-7.15.4" 87704 86613 sources."@babel/helper-validator-identifier-7.15.7" 87705 - sources."@babel/helper-validator-option-7.14.5" 87706 86614 sources."@babel/helpers-7.15.4" 87707 86615 (sources."@babel/highlight-7.14.5" // { 87708 86616 dependencies = [ ··· 87710 86618 ]; 87711 86619 }) 87712 86620 sources."@babel/parser-7.15.8" 87713 - sources."@babel/plugin-proposal-class-properties-7.14.5" 87714 - sources."@babel/plugin-proposal-export-default-from-7.14.5" 87715 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 87716 - sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 87717 - sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 87718 - sources."@babel/plugin-proposal-optional-chaining-7.14.5" 87719 - sources."@babel/plugin-syntax-class-properties-7.12.13" 87720 - sources."@babel/plugin-syntax-dynamic-import-7.8.3" 87721 - sources."@babel/plugin-syntax-export-default-from-7.14.5" 87722 - sources."@babel/plugin-syntax-flow-7.14.5" 87723 - sources."@babel/plugin-syntax-jsx-7.14.5" 87724 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 87725 - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 87726 - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 87727 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 87728 - sources."@babel/plugin-syntax-typescript-7.14.5" 87729 - sources."@babel/plugin-transform-arrow-functions-7.14.5" 87730 - sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 87731 - sources."@babel/plugin-transform-block-scoping-7.15.3" 87732 - sources."@babel/plugin-transform-classes-7.15.4" 87733 - sources."@babel/plugin-transform-computed-properties-7.14.5" 87734 - sources."@babel/plugin-transform-destructuring-7.14.7" 87735 - sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 87736 - sources."@babel/plugin-transform-flow-strip-types-7.14.5" 87737 - sources."@babel/plugin-transform-for-of-7.15.4" 87738 - sources."@babel/plugin-transform-function-name-7.14.5" 87739 - sources."@babel/plugin-transform-literals-7.14.5" 87740 - sources."@babel/plugin-transform-member-expression-literals-7.14.5" 87741 - sources."@babel/plugin-transform-modules-commonjs-7.15.4" 87742 - sources."@babel/plugin-transform-object-assign-7.14.5" 87743 - sources."@babel/plugin-transform-object-super-7.14.5" 87744 - sources."@babel/plugin-transform-parameters-7.15.4" 87745 - sources."@babel/plugin-transform-property-literals-7.14.5" 87746 - sources."@babel/plugin-transform-react-display-name-7.15.1" 87747 - sources."@babel/plugin-transform-react-jsx-7.14.9" 87748 - sources."@babel/plugin-transform-react-jsx-self-7.14.9" 87749 - sources."@babel/plugin-transform-react-jsx-source-7.14.5" 87750 - sources."@babel/plugin-transform-regenerator-7.14.5" 87751 - (sources."@babel/plugin-transform-runtime-7.15.8" // { 87752 - dependencies = [ 87753 - sources."semver-6.3.0" 87754 - ]; 87755 - }) 87756 - sources."@babel/plugin-transform-shorthand-properties-7.14.5" 87757 - sources."@babel/plugin-transform-spread-7.15.8" 87758 - sources."@babel/plugin-transform-sticky-regex-7.14.5" 87759 - sources."@babel/plugin-transform-template-literals-7.14.5" 87760 - sources."@babel/plugin-transform-typescript-7.15.8" 87761 - sources."@babel/plugin-transform-unicode-regex-7.14.5" 87762 86621 sources."@babel/runtime-7.9.0" 87763 86622 (sources."@babel/template-7.15.4" // { 87764 86623 dependencies = [ ··· 87773 86632 sources."@babel/types-7.15.6" 87774 86633 sources."@expo/apple-utils-0.0.0-alpha.25" 87775 86634 sources."@expo/bunyan-4.0.0" 87776 - sources."@expo/config-6.0.0" 87777 - (sources."@expo/config-plugins-4.0.0" // { 86635 + sources."@expo/config-6.0.6" 86636 + (sources."@expo/config-plugins-4.0.6" // { 87778 86637 dependencies = [ 87779 86638 sources."semver-7.3.5" 87780 86639 ]; 87781 86640 }) 87782 - sources."@expo/config-types-42.0.0" 87783 - (sources."@expo/dev-server-0.1.85" // { 87784 - dependencies = [ 87785 - sources."body-parser-1.19.0" 87786 - sources."bytes-3.1.0" 87787 - sources."debug-2.6.9" 87788 - sources."http-errors-1.7.2" 87789 - sources."iconv-lite-0.4.24" 87790 - sources."inherits-2.0.3" 87791 - sources."ms-2.0.0" 87792 - sources."open-8.3.0" 87793 - sources."qs-6.7.0" 87794 - sources."raw-body-2.4.0" 87795 - sources."setprototypeof-1.1.1" 87796 - sources."statuses-1.5.0" 87797 - sources."temp-dir-2.0.0" 87798 - ]; 87799 - }) 87800 - sources."@expo/dev-tools-0.13.117" 86641 + sources."@expo/config-types-43.0.1" 86642 + sources."@expo/dev-server-0.1.91" 86643 + sources."@expo/dev-tools-0.13.126" 87801 86644 (sources."@expo/devcert-1.0.0" // { 87802 86645 dependencies = [ 87803 86646 sources."debug-3.2.7" ··· 87805 86648 sources."sudo-prompt-8.2.5" 87806 86649 ]; 87807 86650 }) 87808 - (sources."@expo/image-utils-0.3.16" // { 86651 + (sources."@expo/image-utils-0.3.17" // { 87809 86652 dependencies = [ 87810 - sources."mime-2.5.2" 86653 + sources."temp-dir-1.0.0" 87811 86654 sources."tempy-0.3.0" 86655 + sources."type-fest-0.3.1" 87812 86656 ]; 87813 86657 }) 87814 86658 sources."@expo/json-file-8.2.33" 87815 - sources."@expo/metro-config-0.2.0" 86659 + sources."@expo/metro-config-0.2.6" 87816 86660 sources."@expo/osascript-2.0.30" 87817 86661 (sources."@expo/package-manager-0.0.47" // { 87818 86662 dependencies = [ ··· 87826 86670 sources."xmlbuilder-14.0.0" 87827 86671 ]; 87828 86672 }) 87829 - sources."@expo/prebuild-config-3.0.0" 86673 + sources."@expo/prebuild-config-3.0.6" 87830 86674 sources."@expo/results-1.0.0" 87831 86675 sources."@expo/rudder-sdk-node-1.1.0" 87832 86676 (sources."@expo/schemer-1.3.31" // { ··· 87838 86682 }) 87839 86683 sources."@expo/sdk-runtime-versions-1.0.0" 87840 86684 sources."@expo/spawn-async-1.5.0" 87841 - (sources."@expo/webpack-config-0.16.0" // { 86685 + (sources."@expo/webpack-config-0.16.6" // { 87842 86686 dependencies = [ 87843 - (sources."@babel/core-7.9.0" // { 87844 - dependencies = [ 87845 - sources."semver-5.7.1" 87846 - ]; 87847 - }) 87848 - sources."json5-2.2.0" 86687 + sources."is-wsl-2.2.0" 87849 86688 ]; 87850 86689 }) 87851 86690 (sources."@expo/xcpretty-3.1.4" // { ··· 87883 86722 sources."@npmcli/promise-spawn-1.3.2" 87884 86723 sources."@npmcli/run-script-1.8.6" 87885 86724 sources."@react-native-community/cli-debugger-ui-5.0.1" 87886 - (sources."@react-native-community/cli-server-api-5.0.1" // { 87887 - dependencies = [ 87888 - sources."ultron-1.0.2" 87889 - sources."ws-1.1.5" 87890 - ]; 87891 - }) 86725 + sources."@react-native-community/cli-server-api-5.0.1" 87892 86726 (sources."@react-native-community/cli-tools-5.0.1" // { 87893 86727 dependencies = [ 87894 86728 sources."ansi-styles-4.3.0" ··· 87896 86730 sources."color-convert-2.0.1" 87897 86731 sources."color-name-1.1.4" 87898 86732 sources."has-flag-4.0.0" 87899 - sources."is-wsl-1.1.0" 87900 - sources."mime-2.5.2" 87901 86733 sources."open-6.4.0" 87902 - sources."shell-quote-1.6.1" 87903 86734 sources."supports-color-7.2.0" 87904 86735 ]; 87905 86736 }) ··· 87912 86743 sources."@szmarczak/http-timer-4.0.6" 87913 86744 sources."@tootallnate/once-1.1.2" 87914 86745 sources."@types/cacheable-request-6.0.2" 87915 - sources."@types/glob-7.1.4" 86746 + sources."@types/glob-7.2.0" 87916 86747 sources."@types/html-minifier-terser-5.1.2" 87917 86748 sources."@types/http-cache-semantics-4.0.1" 87918 86749 sources."@types/istanbul-lib-coverage-2.0.3" ··· 87921 86752 sources."@types/json-schema-7.0.9" 87922 86753 sources."@types/keyv-3.1.3" 87923 86754 sources."@types/minimatch-3.0.5" 87924 - sources."@types/node-9.6.61" 86755 + sources."@types/node-16.11.6" 87925 86756 sources."@types/q-1.5.5" 87926 86757 sources."@types/responselike-1.0.0" 87927 86758 sources."@types/retry-0.12.1" ··· 87989 86820 sources."ansi-styles-3.2.1" 87990 86821 sources."any-promise-1.3.0" 87991 86822 sources."anymatch-3.1.2" 87992 - sources."apollo-link-1.2.1" 86823 + (sources."apollo-link-1.2.1" // { 86824 + dependencies = [ 86825 + sources."@types/node-9.6.61" 86826 + ]; 86827 + }) 87993 86828 sources."apollo-utilities-1.3.4" 87994 86829 sources."application-config-path-0.1.0" 87995 86830 sources."aproba-1.2.0" ··· 88035 86870 sources."schema-utils-2.7.1" 88036 86871 ]; 88037 86872 }) 88038 - sources."babel-plugin-dynamic-import-node-2.3.3" 88039 - (sources."babel-plugin-polyfill-corejs2-0.2.2" // { 88040 - dependencies = [ 88041 - sources."semver-6.3.0" 88042 - ]; 88043 - }) 88044 - sources."babel-plugin-polyfill-corejs3-0.2.5" 88045 - sources."babel-plugin-polyfill-regenerator-0.2.2" 88046 - sources."babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0" 88047 - sources."babel-preset-fbjs-3.4.0" 88048 86873 sources."backo2-1.0.2" 88049 86874 sources."balanced-match-1.0.2" 88050 86875 (sources."base-0.11.2" // { ··· 88063 86888 sources."bindings-1.5.0" 88064 86889 sources."bluebird-3.7.2" 88065 86890 sources."bn.js-5.2.0" 88066 - (sources."body-parser-1.18.3" // { 86891 + (sources."body-parser-1.19.0" // { 88067 86892 dependencies = [ 86893 + sources."bytes-3.1.0" 88068 86894 sources."debug-2.6.9" 86895 + sources."http-errors-1.7.2" 86896 + sources."inherits-2.0.3" 88069 86897 sources."ms-2.0.0" 88070 86898 ]; 88071 86899 }) ··· 88080 86908 sources."type-fest-0.20.2" 88081 86909 ]; 88082 86910 }) 88083 - sources."bplist-creator-0.0.8" 86911 + sources."bplist-creator-0.1.0" 88084 86912 sources."bplist-parser-0.2.0" 88085 86913 sources."brace-expansion-1.1.11" 88086 86914 sources."braces-3.0.2" ··· 88126 86954 }) 88127 86955 sources."camelcase-6.2.0" 88128 86956 sources."caniuse-api-3.0.0" 88129 - sources."caniuse-lite-1.0.30001267" 86957 + sources."caniuse-lite-1.0.30001271" 88130 86958 sources."caseless-0.12.0" 88131 86959 (sources."chalk-4.1.2" // { 88132 86960 dependencies = [ ··· 88159 86987 sources."kind-of-5.1.0" 88160 86988 ]; 88161 86989 }) 88162 - (sources."clean-css-4.2.3" // { 86990 + (sources."clean-css-4.2.4" // { 88163 86991 dependencies = [ 88164 86992 sources."source-map-0.6.1" 88165 86993 ]; ··· 88222 87050 (sources."connect-3.7.0" // { 88223 87051 dependencies = [ 88224 87052 sources."debug-2.6.9" 88225 - sources."finalhandler-1.1.2" 88226 87053 sources."ms-2.0.0" 88227 - sources."statuses-1.5.0" 88228 87054 ]; 88229 87055 }) 88230 87056 sources."connect-history-api-fallback-1.6.0" ··· 88256 87082 sources."pkg-dir-4.2.0" 88257 87083 sources."schema-utils-2.7.1" 88258 87084 sources."semver-6.3.0" 88259 - ]; 88260 - }) 88261 - (sources."core-js-compat-3.18.3" // { 88262 - dependencies = [ 88263 - sources."browserslist-4.17.4" 88264 - sources."node-releases-2.0.0" 88265 - sources."semver-7.0.0" 88266 87085 ]; 88267 87086 }) 88268 87087 sources."core-util-is-1.0.3" ··· 88393 87212 sources."duplexify-3.7.1" 88394 87213 sources."ecc-jsbn-0.1.2" 88395 87214 sources."ee-first-1.1.1" 88396 - sources."electron-to-chromium-1.3.870" 87215 + sources."electron-to-chromium-1.3.880" 88397 87216 (sources."elliptic-6.5.4" // { 88398 87217 dependencies = [ 88399 87218 sources."bn.js-4.12.0" ··· 88416 87235 sources."entities-2.2.0" 88417 87236 sources."env-editor-0.4.2" 88418 87237 sources."env-paths-2.2.1" 88419 - sources."envinfo-7.5.0" 87238 + sources."envinfo-7.8.1" 88420 87239 sources."eol-0.9.1" 88421 87240 sources."err-code-2.0.3" 88422 87241 sources."errno-0.1.8" ··· 88431 87250 sources."esprima-4.0.1" 88432 87251 (sources."esrecurse-4.3.0" // { 88433 87252 dependencies = [ 88434 - sources."estraverse-5.2.0" 87253 + sources."estraverse-5.3.0" 88435 87254 ]; 88436 87255 }) 88437 87256 sources."estraverse-4.3.0" ··· 88467 87286 sources."ms-2.0.0" 88468 87287 ]; 88469 87288 }) 88470 - (sources."expo-pwa-0.0.95" // { 87289 + (sources."expo-pwa-0.0.101" // { 88471 87290 dependencies = [ 88472 87291 sources."commander-2.20.0" 88473 87292 ]; 88474 87293 }) 88475 87294 (sources."express-4.16.4" // { 88476 87295 dependencies = [ 87296 + sources."body-parser-1.18.3" 88477 87297 sources."debug-2.6.9" 87298 + sources."finalhandler-1.1.1" 87299 + sources."http-errors-1.6.3" 87300 + sources."iconv-lite-0.4.23" 87301 + sources."inherits-2.0.3" 87302 + sources."mime-1.4.1" 88478 87303 sources."ms-2.0.0" 87304 + sources."qs-6.5.2" 87305 + sources."raw-body-2.3.3" 87306 + sources."send-0.16.2" 87307 + sources."serve-static-1.13.2" 87308 + sources."setprototypeof-1.1.0" 87309 + sources."statuses-1.4.0" 88479 87310 ]; 88480 87311 }) 88481 87312 sources."extend-3.0.2" ··· 88506 87337 sources."file-uri-to-path-1.0.0" 88507 87338 sources."filesize-6.1.0" 88508 87339 sources."fill-range-7.0.1" 88509 - (sources."finalhandler-1.1.1" // { 87340 + (sources."finalhandler-1.1.2" // { 88510 87341 dependencies = [ 88511 87342 sources."debug-2.6.9" 88512 87343 sources."ms-2.0.0" ··· 88645 87476 sources."htmlparser2-4.1.0" 88646 87477 sources."http-cache-semantics-4.1.0" 88647 87478 sources."http-deceiver-1.2.7" 88648 - (sources."http-errors-1.6.3" // { 88649 - dependencies = [ 88650 - sources."inherits-2.0.3" 88651 - ]; 88652 - }) 87479 + sources."http-errors-1.7.3" 88653 87480 (sources."http-proxy-1.18.1" // { 88654 87481 dependencies = [ 88655 87482 sources."eventemitter3-4.0.7" ··· 88672 87499 sources."https-browserify-1.0.0" 88673 87500 sources."https-proxy-agent-5.0.0" 88674 87501 sources."humanize-ms-1.2.1" 88675 - sources."iconv-lite-0.4.23" 87502 + sources."iconv-lite-0.4.24" 88676 87503 sources."icss-utils-4.1.1" 88677 87504 sources."ieee754-1.2.1" 88678 87505 sources."iferr-0.1.5" ··· 88695 87522 sources."ini-1.3.8" 88696 87523 sources."internal-ip-4.3.0" 88697 87524 sources."internal-slot-1.0.3" 88698 - sources."invariant-2.2.4" 88699 87525 sources."ip-1.1.5" 88700 87526 sources."ip-regex-2.1.0" 88701 87527 sources."ipaddr.js-1.9.1" ··· 88773 87599 sources."is-valid-path-0.1.1" 88774 87600 sources."is-weakref-1.0.1" 88775 87601 sources."is-windows-1.0.2" 88776 - sources."is-wsl-2.2.0" 87602 + sources."is-wsl-1.1.0" 88777 87603 sources."isarray-1.0.0" 88778 87604 sources."isexe-2.0.0" 88779 87605 sources."isobject-3.0.1" ··· 88836 87662 sources."locate-path-6.0.0" 88837 87663 sources."lodash-4.17.21" 88838 87664 sources."lodash.assign-4.2.0" 88839 - sources."lodash.debounce-4.0.8" 88840 87665 sources."lodash.isobject-3.0.2" 88841 87666 sources."lodash.isstring-4.0.1" 88842 87667 sources."lodash.memoize-4.1.2" ··· 88847 87672 ]; 88848 87673 }) 88849 87674 sources."loglevel-1.7.1" 88850 - sources."loose-envify-1.4.0" 88851 87675 (sources."lower-case-2.0.2" // { 88852 87676 dependencies = [ 88853 87677 sources."tslib-2.3.1" ··· 88879 87703 sources."merge-stream-2.0.0" 88880 87704 sources."merge2-1.4.1" 88881 87705 sources."methods-1.1.2" 88882 - sources."metro-babel-transformer-0.59.0" 88883 - sources."metro-react-native-babel-preset-0.59.0" 88884 - sources."metro-react-native-babel-transformer-0.59.0" 88885 - sources."metro-source-map-0.59.0" 88886 - sources."metro-symbolicate-0.59.0" 88887 87706 sources."microevent.ts-0.1.1" 88888 87707 sources."micromatch-4.0.4" 88889 87708 (sources."miller-rabin-4.0.1" // { ··· 88891 87710 sources."bn.js-4.12.0" 88892 87711 ]; 88893 87712 }) 88894 - sources."mime-1.4.1" 87713 + sources."mime-2.5.2" 88895 87714 sources."mime-db-1.50.0" 88896 87715 sources."mime-types-2.1.33" 88897 87716 sources."mimic-fn-1.2.0" ··· 89028 87847 sources."npm-run-path-2.0.2" 89029 87848 sources."npmlog-4.1.2" 89030 87849 sources."nth-check-2.0.1" 87850 + sources."nullthrows-1.1.1" 89031 87851 sources."number-is-nan-1.0.1" 89032 87852 sources."oauth-sign-0.9.0" 89033 - sources."ob1-0.59.0" 89034 87853 sources."object-assign-4.1.1" 89035 87854 (sources."object-copy-0.1.0" // { 89036 87855 dependencies = [ ··· 89059 87878 sources."on-headers-1.0.2" 89060 87879 sources."once-1.4.0" 89061 87880 sources."onetime-2.0.1" 89062 - sources."open-7.4.2" 89063 - (sources."opn-5.5.0" // { 87881 + (sources."open-8.4.0" // { 89064 87882 dependencies = [ 89065 - sources."is-wsl-1.1.0" 87883 + sources."is-wsl-2.2.0" 89066 87884 ]; 89067 87885 }) 87886 + sources."opn-5.5.0" 89068 87887 sources."optimize-css-assets-webpack-plugin-5.0.8" 89069 87888 sources."options-0.0.6" 89070 87889 (sources."ora-3.4.0" // { ··· 89079 87898 sources."os-homedir-1.0.2" 89080 87899 sources."os-tmpdir-1.0.2" 89081 87900 sources."osenv-0.1.5" 89082 - sources."p-any-2.1.0" 87901 + (sources."p-any-2.1.0" // { 87902 + dependencies = [ 87903 + sources."type-fest-0.3.1" 87904 + ]; 87905 + }) 89083 87906 sources."p-cancelable-2.1.1" 89084 87907 sources."p-finally-1.0.0" 89085 87908 sources."p-limit-3.1.0" ··· 89158 87981 sources."path-type-4.0.0" 89159 87982 sources."pbkdf2-3.1.2" 89160 87983 sources."performance-now-2.1.0" 89161 - sources."picocolors-1.0.0" 87984 + sources."picocolors-0.2.1" 89162 87985 sources."picomatch-2.3.0" 89163 87986 sources."pify-4.0.1" 89164 87987 sources."pinkie-2.0.4" ··· 89194 88017 sources."posix-character-classes-0.1.1" 89195 88018 (sources."postcss-7.0.39" // { 89196 88019 dependencies = [ 89197 - sources."picocolors-0.2.1" 89198 88020 sources."source-map-0.6.1" 89199 88021 ]; 89200 88022 }) ··· 89343 88165 sources."punycode-2.1.1" 89344 88166 sources."q-1.5.1" 89345 88167 sources."qrcode-terminal-0.11.0" 89346 - sources."qs-6.5.2" 88168 + sources."qs-6.7.0" 89347 88169 sources."querystring-0.2.0" 89348 88170 sources."querystring-es3-0.2.1" 89349 88171 sources."querystringify-2.2.0" ··· 89358 88180 sources."uuid-3.0.0" 89359 88181 ]; 89360 88182 }) 89361 - sources."raw-body-2.3.3" 88183 + (sources."raw-body-2.4.0" // { 88184 + dependencies = [ 88185 + sources."bytes-3.1.0" 88186 + sources."http-errors-1.7.2" 88187 + sources."inherits-2.0.3" 88188 + ]; 88189 + }) 89362 88190 sources."rc-1.2.8" 89363 88191 (sources."react-dev-utils-11.0.4" // { 89364 88192 dependencies = [ ··· 89370 88198 sources."cross-spawn-7.0.3" 89371 88199 sources."escape-string-regexp-2.0.0" 89372 88200 sources."find-up-4.1.0" 88201 + sources."is-wsl-2.2.0" 89373 88202 sources."locate-path-5.0.0" 88203 + sources."open-7.4.2" 89374 88204 sources."p-limit-2.3.0" 89375 88205 sources."p-locate-4.1.0" 89376 88206 sources."path-key-3.1.1" 89377 88207 sources."prompts-2.4.0" 89378 88208 sources."shebang-command-2.0.0" 89379 88209 sources."shebang-regex-3.0.0" 88210 + sources."shell-quote-1.7.2" 89380 88211 sources."strip-ansi-6.0.0" 89381 88212 sources."which-2.0.2" 89382 88213 ]; 89383 88214 }) 89384 88215 sources."react-error-overlay-6.0.9" 89385 88216 sources."react-is-17.0.2" 89386 - sources."react-refresh-0.4.3" 89387 88217 sources."read-chunk-3.2.0" 89388 88218 sources."read-last-lines-1.6.0" 89389 88219 sources."read-package-json-fast-2.0.3" 89390 88220 sources."readable-stream-2.3.7" 89391 88221 sources."readdirp-3.6.0" 89392 88222 sources."recursive-readdir-2.2.2" 89393 - sources."regenerate-1.4.2" 89394 - sources."regenerate-unicode-properties-9.0.0" 89395 88223 sources."regenerator-runtime-0.13.9" 89396 - sources."regenerator-transform-0.14.5" 89397 88224 sources."regex-not-1.0.2" 89398 88225 sources."regexp.prototype.flags-1.3.1" 89399 - sources."regexpu-core-4.8.0" 89400 88226 sources."registry-auth-token-3.3.2" 89401 88227 sources."registry-url-3.1.0" 89402 - sources."regjsgen-0.5.2" 89403 - (sources."regjsparser-0.7.0" // { 89404 - dependencies = [ 89405 - sources."jsesc-0.5.0" 89406 - ]; 89407 - }) 89408 88228 sources."relateurl-0.2.7" 89409 88229 sources."remove-trailing-separator-1.1.0" 89410 88230 sources."remove-trailing-slash-0.1.1" ··· 89421 88241 (sources."request-2.88.2" // { 89422 88242 dependencies = [ 89423 88243 sources."form-data-2.3.3" 88244 + sources."qs-6.5.2" 89424 88245 sources."uuid-3.4.0" 89425 88246 ]; 89426 88247 }) ··· 89467 88288 sources."select-hose-2.0.0" 89468 88289 sources."selfsigned-1.10.11" 89469 88290 sources."semver-7.3.2" 89470 - (sources."send-0.16.2" // { 88291 + (sources."send-0.17.1" // { 89471 88292 dependencies = [ 89472 - sources."debug-2.6.9" 89473 - sources."ms-2.0.0" 89474 - ]; 89475 - }) 89476 - (sources."serialize-error-6.0.0" // { 89477 - dependencies = [ 89478 - sources."type-fest-0.12.0" 88293 + (sources."debug-2.6.9" // { 88294 + dependencies = [ 88295 + sources."ms-2.0.0" 88296 + ]; 88297 + }) 88298 + sources."mime-1.6.0" 88299 + sources."ms-2.1.1" 89479 88300 ]; 89480 88301 }) 88302 + sources."serialize-error-6.0.0" 89481 88303 sources."serialize-javascript-4.0.0" 89482 88304 (sources."serve-index-1.9.1" // { 89483 88305 dependencies = [ 89484 88306 sources."debug-2.6.9" 88307 + sources."http-errors-1.6.3" 88308 + sources."inherits-2.0.3" 89485 88309 sources."ms-2.0.0" 88310 + sources."setprototypeof-1.1.0" 89486 88311 ]; 89487 88312 }) 89488 - sources."serve-static-1.13.2" 88313 + sources."serve-static-1.14.1" 89489 88314 sources."set-blocking-2.0.0" 89490 88315 (sources."set-value-2.0.1" // { 89491 88316 dependencies = [ ··· 89493 88318 ]; 89494 88319 }) 89495 88320 sources."setimmediate-1.0.5" 89496 - sources."setprototypeof-1.1.0" 88321 + sources."setprototypeof-1.1.1" 89497 88322 sources."sha.js-2.4.11" 89498 88323 sources."shebang-command-1.2.0" 89499 88324 sources."shebang-regex-1.0.0" 89500 - sources."shell-quote-1.7.2" 88325 + sources."shell-quote-1.6.1" 89501 88326 sources."side-channel-1.0.4" 89502 88327 sources."signal-exit-3.0.5" 89503 - sources."simple-plist-1.1.1" 88328 + (sources."simple-plist-1.3.0" // { 88329 + dependencies = [ 88330 + sources."bplist-parser-0.3.0" 88331 + ]; 88332 + }) 89504 88333 (sources."simple-swizzle-0.2.2" // { 89505 88334 dependencies = [ 89506 88335 sources."is-arrayish-0.3.2" ··· 89592 88421 sources."kind-of-5.1.0" 89593 88422 ]; 89594 88423 }) 89595 - sources."statuses-1.4.0" 88424 + sources."statuses-1.5.0" 89596 88425 sources."stream-browserify-2.0.2" 89597 88426 sources."stream-buffers-2.2.0" 89598 88427 sources."stream-each-1.2.3" ··· 89621 88450 sources."postcss-selector-parser-3.1.2" 89622 88451 ]; 89623 88452 }) 89624 - sources."subscriptions-transport-ws-0.9.8" 89625 - (sources."sucrase-3.20.2" // { 88453 + (sources."subscriptions-transport-ws-0.9.8" // { 88454 + dependencies = [ 88455 + sources."ultron-1.1.1" 88456 + sources."ws-3.3.3" 88457 + ]; 88458 + }) 88459 + (sources."sucrase-3.20.3" // { 89626 88460 dependencies = [ 89627 88461 sources."commander-4.1.1" 89628 88462 ]; ··· 89658 88492 sources."mkdirp-1.0.4" 89659 88493 ]; 89660 88494 }) 89661 - sources."temp-dir-1.0.0" 88495 + sources."temp-dir-2.0.0" 89662 88496 (sources."tempy-0.7.1" // { 89663 88497 dependencies = [ 89664 88498 sources."crypto-random-string-2.0.0" 89665 - sources."temp-dir-2.0.0" 89666 88499 sources."type-fest-0.16.0" 89667 88500 sources."unique-string-2.0.0" 89668 88501 ]; ··· 89725 88558 sources."tunnel-agent-0.6.0" 89726 88559 sources."turndown-7.0.0" 89727 88560 sources."tweetnacl-0.14.5" 89728 - sources."type-fest-0.3.1" 88561 + sources."type-fest-0.12.0" 89729 88562 sources."type-is-1.6.18" 89730 88563 sources."typedarray-0.0.6" 89731 - sources."ultron-1.1.1" 88564 + sources."ultron-1.0.2" 89732 88565 sources."unbox-primitive-1.0.1" 89733 - sources."unicode-canonical-property-names-ecmascript-2.0.0" 89734 - sources."unicode-match-property-ecmascript-2.0.0" 89735 - sources."unicode-match-property-value-ecmascript-2.0.0" 89736 - sources."unicode-property-aliases-ecmascript-2.0.0" 89737 88566 sources."union-value-1.0.1" 89738 88567 sources."uniq-1.0.1" 89739 88568 sources."uniqs-2.0.0" ··· 89791 88620 sources."core-util-is-1.0.2" 89792 88621 ]; 89793 88622 }) 89794 - sources."vlq-1.0.1" 89795 88623 sources."vm-browserify-1.1.2" 89796 88624 sources."watchpack-1.7.5" 89797 88625 (sources."watchpack-chokidar2-2.0.1" // { ··· 89825 88653 sources."extend-shallow-2.0.1" 89826 88654 sources."fill-range-4.0.0" 89827 88655 sources."is-number-3.0.0" 89828 - sources."is-wsl-1.1.0" 89829 88656 sources."kind-of-3.2.2" 89830 88657 sources."loader-utils-1.4.0" 89831 88658 sources."lru-cache-5.1.1" ··· 89839 88666 sources."yallist-3.1.1" 89840 88667 ]; 89841 88668 }) 89842 - (sources."webpack-dev-middleware-3.7.3" // { 89843 - dependencies = [ 89844 - sources."mime-2.5.2" 89845 - ]; 89846 - }) 88669 + sources."webpack-dev-middleware-3.7.3" 89847 88670 (sources."webpack-dev-server-3.11.0" // { 89848 88671 dependencies = [ 89849 88672 sources."ansi-regex-2.1.1" 89850 88673 sources."anymatch-2.0.0" 89851 88674 sources."array-union-1.0.2" 89852 88675 sources."binary-extensions-1.13.1" 89853 - (sources."body-parser-1.19.0" // { 89854 - dependencies = [ 89855 - sources."debug-2.6.9" 89856 - ]; 89857 - }) 89858 88676 sources."braces-2.3.2" 89859 - sources."bytes-3.1.0" 89860 88677 sources."chokidar-2.1.8" 89861 88678 sources."content-disposition-0.5.3" 89862 88679 sources."cookie-0.4.0" ··· 89868 88685 }) 89869 88686 sources."extend-shallow-2.0.1" 89870 88687 sources."fill-range-4.0.0" 89871 - (sources."finalhandler-1.1.2" // { 89872 - dependencies = [ 89873 - sources."debug-2.6.9" 89874 - ]; 89875 - }) 89876 88688 sources."fsevents-1.2.13" 89877 88689 sources."glob-parent-3.1.0" 89878 88690 sources."globby-6.1.0" 89879 - sources."http-errors-1.7.2" 89880 - sources."iconv-lite-0.4.24" 89881 - sources."inherits-2.0.3" 89882 88691 sources."is-absolute-url-3.0.3" 89883 88692 sources."is-binary-path-1.0.1" 89884 88693 sources."is-glob-3.1.0" 89885 88694 sources."is-number-3.0.0" 89886 88695 sources."kind-of-3.2.2" 89887 88696 sources."micromatch-3.1.10" 89888 - sources."mime-1.6.0" 89889 88697 sources."ms-2.0.0" 89890 88698 sources."normalize-path-2.1.1" 89891 88699 sources."p-map-2.1.0" 89892 88700 sources."p-retry-3.0.1" 89893 88701 sources."pify-2.3.0" 89894 - sources."qs-6.7.0" 89895 - sources."raw-body-2.4.0" 89896 88702 sources."readdirp-2.2.1" 89897 88703 sources."rimraf-2.7.1" 89898 88704 sources."schema-utils-1.0.0" 89899 88705 sources."semver-6.3.0" 89900 - (sources."send-0.17.1" // { 89901 - dependencies = [ 89902 - (sources."debug-2.6.9" // { 89903 - dependencies = [ 89904 - sources."ms-2.0.0" 89905 - ]; 89906 - }) 89907 - sources."ms-2.1.1" 89908 - ]; 89909 - }) 89910 - sources."serve-static-1.14.1" 89911 - sources."setprototypeof-1.1.1" 89912 - sources."statuses-1.5.0" 89913 88706 sources."strip-ansi-3.0.1" 89914 88707 sources."supports-color-6.1.0" 89915 88708 sources."to-regex-range-2.1.1" ··· 89953 88746 }) 89954 88747 sources."wrappy-1.0.2" 89955 88748 sources."write-file-atomic-2.4.3" 89956 - sources."ws-3.3.3" 88749 + sources."ws-1.1.5" 89957 88750 (sources."xcode-3.0.1" // { 89958 88751 dependencies = [ 89959 88752 sources."uuid-7.0.3" 89960 88753 ]; 89961 88754 }) 89962 - (sources."xdl-59.2.1" // { 88755 + (sources."xdl-59.2.10" // { 89963 88756 dependencies = [ 89964 88757 sources."bplist-parser-0.3.0" 89965 88758 sources."chownr-1.1.4" ··· 90054 88847 sources."@babel/traverse-7.15.4" 90055 88848 sources."@babel/types-7.15.6" 90056 88849 sources."@types/minimist-1.2.2" 90057 - sources."@types/node-16.11.0" 88850 + sources."@types/node-16.11.6" 90058 88851 sources."@types/normalize-package-data-2.4.1" 90059 88852 sources."@types/yauzl-2.9.2" 90060 88853 sources."@types/yoga-layout-1.9.2" ··· 90073 88866 sources."base64-js-1.5.1" 90074 88867 sources."bl-4.1.0" 90075 88868 sources."brace-expansion-1.1.11" 90076 - sources."browserslist-4.17.4" 88869 + sources."browserslist-4.17.5" 90077 88870 sources."buffer-5.7.1" 90078 88871 sources."buffer-crc32-0.2.13" 90079 88872 sources."caller-callsite-2.0.0" ··· 90081 88874 sources."callsites-2.0.0" 90082 88875 sources."camelcase-5.3.1" 90083 88876 sources."camelcase-keys-6.2.2" 90084 - sources."caniuse-lite-1.0.30001267" 88877 + sources."caniuse-lite-1.0.30001271" 90085 88878 sources."chalk-2.4.2" 90086 88879 sources."chownr-1.1.4" 90087 88880 sources."ci-info-2.0.0" ··· 90105 88898 }) 90106 88899 sources."delay-5.0.0" 90107 88900 sources."devtools-protocol-0.0.869402" 90108 - sources."electron-to-chromium-1.3.870" 88901 + sources."electron-to-chromium-1.3.880" 90109 88902 sources."emoji-regex-8.0.0" 90110 88903 sources."end-of-stream-1.4.4" 90111 88904 sources."error-ex-1.3.2" ··· 90173 88966 sources."mkdirp-classic-0.5.3" 90174 88967 sources."ms-2.1.2" 90175 88968 sources."node-fetch-2.6.5" 90176 - sources."node-releases-2.0.0" 88969 + sources."node-releases-2.0.1" 90177 88970 (sources."normalize-package-data-3.0.3" // { 90178 88971 dependencies = [ 90179 88972 sources."semver-7.3.5" ··· 90200 88993 sources."puppeteer-9.1.1" 90201 88994 sources."quick-lru-4.0.1" 90202 88995 sources."react-16.14.0" 90203 - sources."react-devtools-core-4.20.0" 88996 + sources."react-devtools-core-4.20.2" 90204 88997 sources."react-is-16.13.1" 90205 88998 sources."react-reconciler-0.26.2" 90206 88999 (sources."read-pkg-5.2.0" // { ··· 90225 89018 sources."safe-buffer-5.1.2" 90226 89019 sources."scheduler-0.20.2" 90227 89020 sources."semver-6.3.0" 90228 - sources."shell-quote-1.7.2" 89021 + sources."shell-quote-1.7.3" 90229 89022 sources."signal-exit-3.0.5" 90230 89023 (sources."slice-ansi-3.0.0" // { 90231 89024 dependencies = [ ··· 90973 89766 firebase-tools = nodeEnv.buildNodePackage { 90974 89767 name = "firebase-tools"; 90975 89768 packageName = "firebase-tools"; 90976 - version = "9.20.0"; 89769 + version = "9.21.0"; 90977 89770 src = fetchurl { 90978 - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.20.0.tgz"; 90979 - sha512 = "/5LzkZtW8aC57syHf34FXY1w6g9unb7qdvtlYROdJA33sk2xsWsJmuvtJylhYhTNX8zrwFsmiTHRlaBxA9YWtg=="; 89771 + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.21.0.tgz"; 89772 + sha512 = "/Zp9dHhofgKhCSfeLmlecNQ7YX1//db80sFHDHonBxJMqThju8LVpeppHvszJF2WmlkyV3PWeikmB2zB8jvdmg=="; 90980 89773 }; 90981 89774 dependencies = [ 90982 89775 (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { ··· 90995 89788 sources."google-auth-library-7.10.1" 90996 89789 ]; 90997 89790 }) 90998 - sources."@grpc/grpc-js-1.3.8" 90999 - sources."@grpc/proto-loader-0.6.5" 89791 + sources."@grpc/grpc-js-1.4.2" 89792 + sources."@grpc/proto-loader-0.6.6" 91000 89793 sources."@jsdevtools/ono-7.1.3" 91001 89794 (sources."@npmcli/fs-1.0.0" // { 91002 89795 dependencies = [ ··· 91025 89818 sources."@tootallnate/once-1.1.2" 91026 89819 sources."@types/archiver-5.3.0" 91027 89820 sources."@types/duplexify-3.6.0" 91028 - sources."@types/glob-7.1.4" 89821 + sources."@types/glob-7.2.0" 91029 89822 sources."@types/json-schema-7.0.9" 91030 89823 sources."@types/long-4.0.1" 91031 89824 sources."@types/minimatch-3.0.5" 91032 - sources."@types/node-16.11.0" 89825 + sources."@types/node-16.11.6" 91033 89826 sources."JSONStream-1.3.5" 91034 89827 sources."abbrev-1.1.1" 91035 89828 sources."abort-controller-3.0.0" ··· 91152 89945 sources."clone-1.0.4" 91153 89946 sources."clone-response-1.0.2" 91154 89947 sources."code-point-at-1.1.0" 91155 - (sources."color-3.0.0" // { 89948 + (sources."color-3.2.1" // { 91156 89949 dependencies = [ 91157 89950 sources."color-convert-1.9.3" 91158 89951 sources."color-name-1.1.3" ··· 91162 89955 sources."color-name-1.1.4" 91163 89956 sources."color-string-1.6.0" 91164 89957 sources."colors-1.0.3" 91165 - sources."colorspace-1.1.2" 89958 + sources."colorspace-1.1.4" 91166 89959 sources."combined-stream-1.0.8" 91167 89960 sources."commander-4.1.1" 91168 89961 sources."compare-semver-1.1.0" ··· 91369 90162 sources."glob-slasher-1.0.1" 91370 90163 sources."global-dirs-2.1.0" 91371 90164 sources."google-auth-library-6.1.6" 91372 - (sources."google-gax-2.27.1" // { 90165 + (sources."google-gax-2.28.0" // { 91373 90166 dependencies = [ 91374 90167 sources."google-auth-library-7.10.1" 91375 90168 ]; ··· 91480 90273 sources."keyv-3.1.0" 91481 90274 sources."kuler-2.0.0" 91482 90275 sources."latest-version-5.1.0" 91483 - (sources."lazystream-1.0.0" // { 90276 + (sources."lazystream-1.0.1" // { 91484 90277 dependencies = [ 91485 90278 sources."readable-stream-2.3.7" 91486 90279 sources."safe-buffer-5.1.2" ··· 91526 90319 sources."semver-6.3.0" 91527 90320 ]; 91528 90321 }) 91529 - sources."make-fetch-happen-8.0.14" 90322 + (sources."make-fetch-happen-9.1.0" // { 90323 + dependencies = [ 90324 + sources."socks-proxy-agent-6.1.0" 90325 + ]; 90326 + }) 91530 90327 sources."marked-0.7.0" 91531 90328 sources."marked-terminal-3.3.0" 91532 90329 sources."media-typer-0.3.0" ··· 91574 90371 sources."node-emoji-1.11.0" 91575 90372 sources."node-fetch-2.6.5" 91576 90373 sources."node-forge-0.10.0" 91577 - (sources."node-gyp-8.2.0" // { 90374 + (sources."node-gyp-8.3.0" // { 91578 90375 dependencies = [ 91579 90376 sources."mkdirp-1.0.4" 91580 90377 sources."semver-7.3.5" ··· 91635 90432 sources."promise-breaker-5.0.0" 91636 90433 sources."promise-inflight-1.0.1" 91637 90434 sources."promise-retry-2.0.1" 91638 - sources."proto3-json-serializer-0.1.4" 90435 + sources."proto3-json-serializer-0.1.5" 91639 90436 sources."protobufjs-6.11.2" 91640 90437 sources."proxy-addr-2.0.7" 91641 90438 (sources."proxy-agent-5.0.0" // { ··· 91849 90646 sources."core-util-is-1.0.2" 91850 90647 ]; 91851 90648 }) 91852 - sources."vm2-3.9.4" 90649 + sources."vm2-3.9.5" 91853 90650 sources."wcwidth-1.0.1" 91854 90651 sources."webidl-conversions-3.0.1" 91855 90652 sources."whatwg-url-5.0.0" ··· 92161 90958 sources."@types/atob-2.1.2" 92162 90959 sources."@types/bn.js-5.1.0" 92163 90960 sources."@types/inquirer-6.5.0" 92164 - sources."@types/node-16.11.0" 90961 + sources."@types/node-16.11.6" 92165 90962 sources."@types/pbkdf2-3.1.0" 92166 90963 sources."@types/secp256k1-4.0.3" 92167 90964 sources."@types/through-0.0.30" ··· 92178 90975 sources."atob-2.1.2" 92179 90976 sources."aws-sign2-0.7.0" 92180 90977 sources."aws4-1.11.0" 92181 - sources."base-x-3.0.8" 90978 + sources."base-x-3.0.9" 92182 90979 sources."bcrypt-pbkdf-1.0.2" 92183 90980 sources."binary-search-tree-0.2.5" 92184 90981 sources."blakejs-1.1.1" ··· 92865 91662 gatsby-cli = nodeEnv.buildNodePackage { 92866 91663 name = "gatsby-cli"; 92867 91664 packageName = "gatsby-cli"; 92868 - version = "3.14.2"; 91665 + version = "4.0.0"; 92869 91666 src = fetchurl { 92870 - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.14.2.tgz"; 92871 - sha512 = "p3E6XyzwVPGpHd0AYVkvnPkZoEElWLWjAG10173k5aGtpoM6dIuJuSlgBPrjeev9PQ7y3oCoCO3zBjnGdB1/WQ=="; 91667 + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.0.0.tgz"; 91668 + sha512 = "h+CiY2sRNClovF0+ThojL7mZN3D22Va+h0u2Cu2Hjzt4CoMSNkTzUhhsuAm2xoF1V1RhEboDdVsPpidMHylG4g=="; 92872 91669 }; 92873 91670 dependencies = [ 92874 91671 (sources."@ardatan/aggregate-error-0.0.6" // { ··· 92958 91755 sources."@tokenizer/token-0.3.0" 92959 91756 sources."@turist/fetch-7.1.7" 92960 91757 sources."@turist/time-0.0.2" 91758 + sources."@types/acorn-4.0.6" 92961 91759 sources."@types/cacheable-request-6.0.2" 92962 91760 sources."@types/common-tags-1.8.1" 91761 + sources."@types/debug-4.1.7" 91762 + sources."@types/estree-0.0.50" 91763 + sources."@types/estree-jsx-0.0.1" 92963 91764 sources."@types/http-cache-semantics-4.0.1" 92964 91765 sources."@types/istanbul-lib-coverage-2.0.3" 92965 91766 sources."@types/istanbul-lib-report-3.0.0" 92966 91767 sources."@types/istanbul-reports-1.1.2" 92967 91768 sources."@types/json-patch-0.0.30" 92968 91769 sources."@types/keyv-3.1.3" 92969 - sources."@types/node-16.11.0" 91770 + sources."@types/mdast-3.0.10" 91771 + sources."@types/ms-0.7.31" 91772 + sources."@types/node-16.11.6" 92970 91773 sources."@types/node-fetch-2.5.12" 92971 91774 sources."@types/responselike-1.0.0" 92972 91775 sources."@types/unist-2.0.6" ··· 92978 91781 sources."acorn-jsx-5.3.2" 92979 91782 sources."address-1.1.2" 92980 91783 sources."ansi-align-3.0.1" 92981 - sources."ansi-escapes-4.3.2" 91784 + (sources."ansi-escapes-4.3.2" // { 91785 + dependencies = [ 91786 + sources."type-fest-0.21.3" 91787 + ]; 91788 + }) 92982 91789 sources."ansi-regex-5.0.1" 92983 91790 sources."ansi-styles-3.2.1" 92984 91791 sources."anymatch-3.1.2" ··· 93001 91808 ]; 93002 91809 }) 93003 91810 sources."boolbase-1.0.0" 93004 - (sources."boxen-4.2.0" // { 93005 - dependencies = [ 93006 - sources."ansi-styles-4.3.0" 93007 - sources."chalk-3.0.0" 93008 - sources."color-convert-2.0.1" 93009 - sources."color-name-1.1.4" 93010 - sources."has-flag-4.0.0" 93011 - sources."supports-color-7.2.0" 93012 - sources."type-fest-0.8.1" 93013 - ]; 93014 - }) 91811 + sources."boxen-5.1.2" 93015 91812 sources."brace-expansion-1.1.11" 93016 91813 sources."braces-3.0.2" 93017 - sources."browserslist-4.17.4" 91814 + sources."browserslist-4.17.5" 93018 91815 sources."bytes-3.1.0" 93019 91816 sources."cacheable-lookup-5.0.4" 93020 91817 (sources."cacheable-request-7.0.2" // { ··· 93024 91821 }) 93025 91822 sources."call-bind-1.0.2" 93026 91823 sources."camel-case-4.1.2" 93027 - sources."camelcase-5.3.1" 93028 - sources."caniuse-lite-1.0.30001267" 91824 + sources."camelcase-6.2.0" 91825 + sources."caniuse-lite-1.0.30001271" 93029 91826 sources."ccount-1.1.0" 93030 91827 (sources."chalk-4.1.2" // { 93031 91828 dependencies = [ ··· 93036 91833 sources."supports-color-7.2.0" 93037 91834 ]; 93038 91835 }) 93039 - sources."character-entities-1.2.4" 93040 - sources."character-entities-html4-1.1.4" 93041 - sources."character-entities-legacy-1.1.4" 93042 - sources."character-reference-invalid-1.1.4" 91836 + sources."character-entities-2.0.0" 91837 + sources."character-entities-html4-2.0.0" 91838 + sources."character-entities-legacy-2.0.0" 91839 + sources."character-reference-invalid-2.0.0" 93043 91840 sources."chardet-0.7.0" 93044 91841 sources."chokidar-3.5.2" 93045 91842 sources."ci-info-2.0.0" ··· 93074 91871 ]; 93075 91872 }) 93076 91873 sources."content-type-1.0.4" 93077 - sources."contentful-management-7.44.1" 91874 + (sources."contentful-management-7.44.2" // { 91875 + dependencies = [ 91876 + sources."type-fest-0.21.3" 91877 + ]; 91878 + }) 93078 91879 sources."contentful-sdk-core-6.10.3" 93079 91880 sources."convert-hrtime-3.0.0" 93080 91881 (sources."convert-source-map-1.8.0" // { ··· 93085 91886 sources."cookie-0.4.0" 93086 91887 sources."cookie-signature-1.0.6" 93087 91888 sources."cors-2.8.5" 93088 - sources."create-gatsby-1.14.0" 91889 + sources."create-gatsby-2.0.0" 93089 91890 (sources."cross-spawn-6.0.5" // { 93090 91891 dependencies = [ 93091 91892 sources."semver-5.7.1" ··· 93106 91907 sources."defer-to-connect-2.0.1" 93107 91908 sources."delayed-stream-1.0.0" 93108 91909 sources."depd-1.1.2" 91910 + sources."dequal-2.0.2" 93109 91911 sources."destroy-1.0.4" 93110 91912 sources."detect-newline-1.0.3" 93111 91913 (sources."detect-port-1.3.0" // { ··· 93114 91916 sources."ms-2.0.0" 93115 91917 ]; 93116 91918 }) 91919 + sources."diff-5.0.0" 93117 91920 sources."diff-sequences-25.2.6" 93118 91921 sources."dom-converter-0.2.0" 93119 91922 sources."dom-serializer-1.3.2" ··· 93124 91927 sources."dotenv-8.6.0" 93125 91928 sources."duplexer3-0.1.4" 93126 91929 sources."ee-first-1.1.1" 93127 - sources."electron-to-chromium-1.3.870" 91930 + sources."electron-to-chromium-1.3.880" 93128 91931 sources."emoji-regex-8.0.0" 93129 91932 sources."encodeurl-1.0.2" 93130 91933 sources."end-of-stream-1.4.4" ··· 93134 91937 sources."escape-goat-2.1.1" 93135 91938 sources."escape-html-1.0.3" 93136 91939 sources."escape-string-regexp-1.0.5" 93137 - sources."estree-util-is-identifier-name-1.1.0" 91940 + sources."estree-util-is-identifier-name-2.0.0" 91941 + sources."estree-util-visit-1.1.0" 93138 91942 sources."etag-1.8.1" 93139 91943 (sources."execa-5.1.1" // { 93140 91944 dependencies = [ ··· 93195 91999 sources."fs.realpath-1.0.0" 93196 92000 sources."fsevents-2.3.2" 93197 92001 sources."function-bind-1.1.1" 93198 - sources."gatsby-core-utils-2.14.0" 93199 - (sources."gatsby-recipes-0.25.0" // { 92002 + sources."gatsby-core-utils-3.0.0" 92003 + (sources."gatsby-recipes-1.0.0" // { 93200 92004 dependencies = [ 93201 92005 sources."strip-ansi-6.0.1" 93202 92006 ]; 93203 92007 }) 93204 - sources."gatsby-telemetry-2.14.0" 92008 + (sources."gatsby-telemetry-3.0.0" // { 92009 + dependencies = [ 92010 + sources."ansi-styles-4.3.0" 92011 + sources."boxen-4.2.0" 92012 + sources."camelcase-5.3.1" 92013 + sources."chalk-3.0.0" 92014 + sources."color-convert-2.0.1" 92015 + sources."color-name-1.1.4" 92016 + sources."has-flag-4.0.0" 92017 + sources."supports-color-7.2.0" 92018 + sources."type-fest-0.8.1" 92019 + ]; 92020 + }) 93205 92021 sources."gensync-1.0.0-beta.2" 93206 92022 sources."get-caller-file-2.0.5" 93207 92023 sources."get-intrinsic-1.1.1" ··· 93214 92030 sources."globals-11.12.0" 93215 92031 sources."got-11.8.2" 93216 92032 sources."graceful-fs-4.2.8" 93217 - sources."graphql-15.6.1" 92033 + sources."graphql-15.7.0" 93218 92034 sources."graphql-compose-7.25.1" 93219 92035 sources."graphql-subscriptions-1.2.1" 93220 92036 sources."graphql-type-json-0.3.2" ··· 93248 92064 ]; 93249 92065 }) 93250 92066 sources."ipaddr.js-1.9.1" 93251 - sources."is-alphabetical-1.0.4" 92067 + sources."is-alphabetical-2.0.0" 93252 92068 sources."is-alphanumeric-1.0.0" 93253 - sources."is-alphanumerical-1.0.4" 92069 + sources."is-alphanumerical-2.0.0" 93254 92070 sources."is-binary-path-2.1.0" 93255 92071 sources."is-buffer-2.0.5" 93256 92072 sources."is-ci-2.0.0" 93257 92073 sources."is-core-module-2.8.0" 93258 - sources."is-decimal-1.0.4" 92074 + sources."is-decimal-2.0.0" 93259 92075 sources."is-docker-2.2.1" 93260 92076 sources."is-extglob-2.1.1" 93261 92077 sources."is-fullwidth-code-point-3.0.0" 93262 92078 sources."is-glob-4.0.3" 93263 - sources."is-hexadecimal-1.0.4" 92079 + sources."is-hexadecimal-2.0.0" 93264 92080 sources."is-installed-globally-0.4.0" 93265 92081 (sources."is-invalid-path-0.1.0" // { 93266 92082 dependencies = [ ··· 93307 92123 sources."json5-2.2.0" 93308 92124 sources."jsonfile-6.1.0" 93309 92125 sources."keyv-4.0.3" 93310 - sources."kleur-3.0.3" 92126 + sources."kleur-4.1.4" 93311 92127 sources."latest-version-5.1.0" 93312 92128 sources."locate-path-5.0.0" 93313 92129 sources."lock-1.1.0" 93314 92130 sources."lodash-4.17.21" 93315 92131 sources."lodash.isplainobject-4.0.6" 93316 92132 sources."lodash.isstring-4.0.1" 93317 - sources."longest-streak-2.0.4" 92133 + sources."longest-streak-3.0.0" 93318 92134 sources."loose-envify-1.4.0" 93319 92135 sources."lower-case-2.0.2" 93320 92136 sources."lowercase-keys-2.0.0" ··· 93327 92143 sources."markdown-escapes-1.0.4" 93328 92144 sources."markdown-table-2.0.0" 93329 92145 sources."mdast-util-compact-2.0.1" 93330 - sources."mdast-util-mdx-0.1.1" 93331 - sources."mdast-util-mdx-expression-0.1.1" 93332 - sources."mdast-util-mdx-jsx-0.1.4" 93333 - sources."mdast-util-mdxjs-esm-0.1.1" 93334 - sources."mdast-util-to-markdown-0.6.5" 93335 - sources."mdast-util-to-string-2.0.0" 92146 + sources."mdast-util-from-markdown-1.0.4" 92147 + sources."mdast-util-mdx-1.1.0" 92148 + sources."mdast-util-mdx-expression-1.1.1" 92149 + sources."mdast-util-mdx-jsx-1.1.1" 92150 + sources."mdast-util-mdxjs-esm-1.1.1" 92151 + (sources."mdast-util-to-markdown-1.2.3" // { 92152 + dependencies = [ 92153 + sources."unist-util-visit-4.1.0" 92154 + ]; 92155 + }) 92156 + sources."mdast-util-to-string-3.1.0" 93336 92157 sources."meant-1.0.3" 93337 92158 sources."media-typer-0.3.0" 93338 92159 sources."merge-descriptors-1.0.1" 93339 92160 sources."merge-stream-2.0.0" 93340 92161 sources."methods-1.1.2" 93341 - sources."micromark-2.11.4" 93342 - sources."micromark-extension-mdx-0.2.1" 93343 - sources."micromark-extension-mdx-expression-0.3.2" 93344 - sources."micromark-extension-mdx-jsx-0.3.3" 93345 - sources."micromark-extension-mdx-md-0.1.1" 93346 - sources."micromark-extension-mdxjs-0.3.0" 93347 - sources."micromark-extension-mdxjs-esm-0.3.1" 92162 + sources."micromark-3.0.7" 92163 + sources."micromark-core-commonmark-1.0.4" 92164 + sources."micromark-extension-mdx-expression-1.0.2" 92165 + sources."micromark-extension-mdx-jsx-1.0.2" 92166 + sources."micromark-extension-mdx-md-1.0.0" 92167 + sources."micromark-extension-mdxjs-1.0.0" 92168 + sources."micromark-extension-mdxjs-esm-1.0.2" 92169 + sources."micromark-factory-destination-1.0.0" 92170 + sources."micromark-factory-label-1.0.2" 92171 + sources."micromark-factory-mdx-expression-1.0.4" 92172 + sources."micromark-factory-space-1.0.0" 92173 + sources."micromark-factory-title-1.0.2" 92174 + sources."micromark-factory-whitespace-1.0.0" 92175 + sources."micromark-util-character-1.1.0" 92176 + sources."micromark-util-chunked-1.0.0" 92177 + sources."micromark-util-classify-character-1.0.0" 92178 + sources."micromark-util-combine-extensions-1.0.0" 92179 + sources."micromark-util-decode-numeric-character-reference-1.0.0" 92180 + sources."micromark-util-decode-string-1.0.1" 92181 + sources."micromark-util-encode-1.0.0" 92182 + sources."micromark-util-events-to-acorn-1.0.4" 92183 + sources."micromark-util-html-tag-name-1.0.0" 92184 + sources."micromark-util-normalize-identifier-1.0.0" 92185 + sources."micromark-util-resolve-all-1.0.0" 92186 + sources."micromark-util-sanitize-uri-1.0.0" 92187 + sources."micromark-util-subtokenize-1.0.2" 92188 + sources."micromark-util-symbol-1.0.0" 92189 + sources."micromark-util-types-1.0.1" 93348 92190 sources."mime-1.6.0" 93349 92191 sources."mime-db-1.50.0" 93350 92192 sources."mime-types-2.1.33" 93351 92193 sources."mimic-fn-2.1.0" 93352 92194 sources."mimic-response-1.0.1" 93353 - sources."min-indent-1.0.1" 93354 92195 sources."minimatch-3.0.4" 93355 92196 sources."minimist-1.2.5" 93356 92197 sources."mitt-1.2.0" 93357 92198 sources."mkdirp-0.5.5" 92199 + sources."mri-1.2.0" 93358 92200 sources."ms-2.1.2" 93359 92201 sources."mute-stream-0.0.8" 93360 92202 sources."negotiator-0.6.2" ··· 93363 92205 sources."node-eta-0.9.0" 93364 92206 sources."node-fetch-2.6.5" 93365 92207 sources."node-object-hash-2.3.10" 93366 - sources."node-releases-2.0.0" 92208 + sources."node-releases-2.0.1" 93367 92209 sources."normalize-path-3.0.0" 93368 92210 sources."normalize-url-6.1.0" 93369 92211 sources."npm-run-path-2.0.2" ··· 93405 92247 sources."semver-6.3.0" 93406 92248 ]; 93407 92249 }) 93408 - sources."parse-entities-2.0.0" 92250 + sources."parse-entities-3.0.0" 93409 92251 sources."parse-path-4.0.3" 93410 92252 sources."parse-url-6.0.0" 93411 92253 sources."parseurl-1.3.3" ··· 93430 92272 ]; 93431 92273 }) 93432 92274 sources."progress-2.0.3" 93433 - sources."prompts-2.4.2" 92275 + (sources."prompts-2.4.2" // { 92276 + dependencies = [ 92277 + sources."kleur-3.0.3" 92278 + ]; 92279 + }) 93434 92280 sources."prop-types-15.7.2" 93435 92281 sources."proper-lockfile-4.1.2" 93436 92282 sources."protocols-1.4.8" ··· 93452 92298 sources."readable-stream-3.6.0" 93453 92299 sources."readable-web-to-node-stream-3.0.2" 93454 92300 sources."readdirp-3.6.0" 93455 - sources."redux-4.1.1" 92301 + sources."redux-4.0.5" 93456 92302 sources."regenerator-runtime-0.13.9" 93457 92303 sources."registry-auth-token-4.2.1" 93458 92304 sources."registry-url-5.1.0" 93459 - sources."remark-mdx-2.0.0-next.9" 92305 + sources."remark-mdx-2.0.0-rc.1" 93460 92306 (sources."remark-mdxjs-2.0.0-next.8" // { 93461 92307 dependencies = [ 93462 92308 sources."@babel/core-7.10.5" ··· 93468 92314 }) 93469 92315 (sources."remark-parse-6.0.3" // { 93470 92316 dependencies = [ 92317 + sources."character-entities-1.2.4" 92318 + sources."character-entities-legacy-1.1.4" 92319 + sources."character-reference-invalid-1.1.4" 92320 + sources."is-alphabetical-1.0.4" 92321 + sources."is-alphanumerical-1.0.4" 92322 + sources."is-decimal-1.0.4" 92323 + sources."is-hexadecimal-1.0.4" 93471 92324 sources."parse-entities-1.2.2" 92325 + sources."unist-util-is-3.0.0" 93472 92326 sources."unist-util-remove-position-1.1.4" 93473 92327 sources."unist-util-visit-1.4.1" 92328 + sources."unist-util-visit-parents-2.1.2" 93474 92329 ]; 93475 92330 }) 93476 - sources."remark-stringify-8.1.1" 92331 + (sources."remark-stringify-8.1.1" // { 92332 + dependencies = [ 92333 + sources."character-entities-1.2.4" 92334 + sources."character-entities-html4-1.1.4" 92335 + sources."character-entities-legacy-1.1.4" 92336 + sources."character-reference-invalid-1.1.4" 92337 + sources."is-alphabetical-1.0.4" 92338 + sources."is-alphanumerical-1.0.4" 92339 + sources."is-decimal-1.0.4" 92340 + sources."is-hexadecimal-1.0.4" 92341 + sources."longest-streak-2.0.4" 92342 + sources."parse-entities-2.0.0" 92343 + sources."stringify-entities-3.1.0" 92344 + ]; 92345 + }) 93477 92346 (sources."renderkid-2.0.7" // { 93478 92347 dependencies = [ 93479 92348 sources."ansi-regex-2.1.1" ··· 93497 92366 sources."tslib-1.14.1" 93498 92367 ]; 93499 92368 }) 92369 + sources."sade-1.7.4" 93500 92370 sources."safe-buffer-5.2.1" 93501 92371 sources."safer-buffer-2.1.2" 93502 92372 sources."semver-7.3.5" ··· 93536 92406 ]; 93537 92407 }) 93538 92408 sources."string_decoder-1.3.0" 93539 - sources."stringify-entities-3.1.0" 92409 + sources."stringify-entities-4.0.1" 93540 92410 (sources."strip-ansi-5.2.0" // { 93541 92411 dependencies = [ 93542 92412 sources."ansi-regex-4.1.0" ··· 93544 92414 }) 93545 92415 sources."strip-eof-1.0.0" 93546 92416 sources."strip-final-newline-2.0.0" 93547 - sources."strip-indent-3.0.0" 93548 92417 sources."strip-json-comments-2.0.1" 93549 92418 sources."strtok3-6.2.4" 93550 92419 sources."style-to-object-0.3.0" 93551 92420 sources."supports-color-5.5.0" 92421 + sources."symbol-observable-1.2.0" 93552 92422 sources."term-size-2.2.1" 93553 92423 sources."through-2.3.8" 93554 92424 sources."tmp-0.2.1" ··· 93557 92427 sources."to-regex-range-5.0.1" 93558 92428 sources."toidentifier-1.0.0" 93559 92429 sources."token-types-4.1.1" 92430 + sources."totalist-2.0.0" 93560 92431 sources."tr46-0.0.3" 93561 92432 sources."trim-0.0.1" 93562 92433 sources."trim-trailing-lines-1.1.4" 93563 92434 sources."trough-1.0.5" 93564 92435 sources."tslib-2.2.0" 93565 - sources."type-fest-0.21.3" 92436 + sources."type-fest-0.20.2" 93566 92437 sources."type-is-1.6.18" 93567 92438 sources."typedarray-to-buffer-3.1.5" 93568 92439 sources."unherit-1.1.3" 93569 92440 sources."unified-8.4.2" 93570 92441 sources."unique-string-2.0.0" 93571 - sources."unist-util-is-3.0.0" 92442 + sources."unist-util-is-5.1.1" 92443 + sources."unist-util-position-from-estree-1.1.1" 93572 92444 (sources."unist-util-remove-2.1.0" // { 93573 92445 dependencies = [ 93574 92446 sources."unist-util-is-4.1.0" 93575 92447 ]; 93576 92448 }) 93577 - sources."unist-util-remove-position-3.0.0" 93578 - sources."unist-util-stringify-position-2.0.3" 92449 + (sources."unist-util-remove-position-4.0.1" // { 92450 + dependencies = [ 92451 + sources."unist-util-visit-4.1.0" 92452 + ]; 92453 + }) 92454 + sources."unist-util-stringify-position-3.0.0" 93579 92455 (sources."unist-util-visit-2.0.3" // { 93580 92456 dependencies = [ 93581 92457 sources."unist-util-is-4.1.0" 93582 92458 sources."unist-util-visit-parents-3.1.1" 93583 92459 ]; 93584 92460 }) 93585 - sources."unist-util-visit-parents-2.1.2" 92461 + sources."unist-util-visit-parents-5.1.0" 93586 92462 sources."universalify-2.0.0" 93587 92463 sources."unpipe-1.0.0" 93588 - (sources."update-notifier-5.1.0" // { 93589 - dependencies = [ 93590 - sources."boxen-5.1.2" 93591 - sources."camelcase-6.2.0" 93592 - sources."type-fest-0.20.2" 93593 - ]; 93594 - }) 92464 + sources."update-notifier-5.1.0" 93595 92465 sources."url-parse-lax-3.0.0" 93596 92466 sources."util-deprecate-1.0.2" 93597 92467 sources."utila-0.4.0" 93598 92468 sources."utils-merge-1.0.1" 93599 92469 sources."uuid-3.4.0" 92470 + sources."uvu-0.5.2" 93600 92471 sources."value-or-promise-1.0.6" 93601 92472 sources."vary-1.1.2" 93602 - sources."vfile-4.2.1" 92473 + (sources."vfile-4.2.1" // { 92474 + dependencies = [ 92475 + sources."unist-util-stringify-position-2.0.3" 92476 + sources."vfile-message-2.0.4" 92477 + ]; 92478 + }) 93603 92479 sources."vfile-location-2.0.6" 93604 - sources."vfile-message-2.0.4" 92480 + sources."vfile-message-3.0.2" 93605 92481 sources."webidl-conversions-3.0.1" 93606 92482 sources."whatwg-url-5.0.0" 93607 92483 sources."which-1.3.1" ··· 93624 92500 sources."y18n-4.0.3" 93625 92501 sources."yallist-4.0.0" 93626 92502 sources."yargs-15.4.1" 93627 - sources."yargs-parser-18.1.3" 92503 + (sources."yargs-parser-18.1.3" // { 92504 + dependencies = [ 92505 + sources."camelcase-5.3.1" 92506 + ]; 92507 + }) 93628 92508 sources."yoga-layout-prebuilt-1.10.0" 93629 92509 (sources."yurnalist-2.1.0" // { 93630 92510 dependencies = [ 93631 92511 sources."chalk-2.4.2" 93632 92512 ]; 93633 92513 }) 93634 - sources."zwitch-1.0.5" 92514 + sources."zwitch-2.0.2" 93635 92515 ]; 93636 92516 buildInputs = globalBuildInputs; 93637 92517 meta = { ··· 94024 92904 sources."ssb-caps-1.1.0" 94025 92905 (sources."ssb-client-4.9.0" // { 94026 92906 dependencies = [ 94027 - sources."ssb-config-3.4.5" 92907 + (sources."ssb-config-3.4.6" // { 92908 + dependencies = [ 92909 + sources."ssb-keys-8.2.0" 92910 + ]; 92911 + }) 94028 92912 ]; 94029 92913 }) 94030 92914 sources."ssb-config-2.3.9" ··· 94415 93299 sources."url-parse-lax-3.0.0" 94416 93300 sources."util-deprecate-1.0.2" 94417 93301 sources."validate-npm-package-license-3.0.4" 94418 - sources."vm2-3.9.4" 93302 + sources."vm2-3.9.5" 94419 93303 sources."wcwidth-1.0.1" 94420 93304 sources."webidl-conversions-3.0.1" 94421 93305 sources."whatwg-url-5.0.0" ··· 94523 93407 sources."tslib-2.1.0" 94524 93408 ]; 94525 93409 }) 94526 - (sources."@graphql-tools/import-6.5.4" // { 93410 + (sources."@graphql-tools/import-6.5.6" // { 94527 93411 dependencies = [ 94528 - sources."@graphql-tools/utils-8.3.0" 93412 + sources."@graphql-tools/utils-8.5.0" 94529 93413 sources."tslib-2.3.1" 94530 93414 ]; 94531 93415 }) ··· 94550 93434 sources."tslib-2.3.1" 94551 93435 ]; 94552 93436 }) 94553 - (sources."@graphql-tools/schema-8.2.0" // { 93437 + (sources."@graphql-tools/schema-8.3.0" // { 94554 93438 dependencies = [ 94555 - sources."@graphql-tools/merge-8.1.2" 94556 - sources."@graphql-tools/utils-8.3.0" 93439 + sources."@graphql-tools/merge-8.2.0" 93440 + sources."@graphql-tools/utils-8.5.0" 94557 93441 sources."tslib-2.3.1" 94558 93442 ]; 94559 93443 }) ··· 94584 93468 sources."@nodelib/fs.walk-1.2.8" 94585 93469 sources."@sindresorhus/is-0.14.0" 94586 93470 sources."@szmarczak/http-timer-1.1.2" 94587 - sources."@types/node-16.11.0" 93471 + sources."@types/node-16.11.6" 94588 93472 sources."@types/parse-json-4.0.0" 94589 93473 sources."@types/websocket-1.0.2" 94590 93474 sources."abort-controller-3.0.0" ··· 95014 93898 sources."url-parse-lax-3.0.0" 95015 93899 sources."uuid-3.4.0" 95016 93900 sources."valid-url-1.0.9" 95017 - sources."value-or-promise-1.0.10" 93901 + sources."value-or-promise-1.0.11" 95018 93902 sources."verror-1.10.0" 95019 93903 sources."wcwidth-1.0.1" 95020 93904 sources."which-1.3.1" ··· 95342 94226 sources."supports-color-7.2.0" 95343 94227 ]; 95344 94228 }) 95345 - sources."systeminformation-5.9.7" 94229 + sources."systeminformation-5.9.8" 95346 94230 sources."term-canvas-0.0.5" 95347 94231 sources."type-fest-0.21.3" 95348 94232 sources."wordwrap-0.0.3" ··· 95606 94490 sources."just-debounce-1.1.0" 95607 94491 sources."kind-of-6.0.3" 95608 94492 sources."last-run-1.1.1" 95609 - sources."lazystream-1.0.0" 94493 + sources."lazystream-1.0.1" 95610 94494 sources."lcid-1.0.0" 95611 94495 sources."lead-1.0.0" 95612 94496 sources."liftoff-3.1.0" ··· 96230 95114 }; 96231 95115 dependencies = [ 96232 95116 sources."camel-case-3.0.0" 96233 - sources."clean-css-4.2.3" 95117 + sources."clean-css-4.2.4" 96234 95118 sources."commander-2.20.3" 96235 95119 sources."he-1.2.0" 96236 95120 sources."lower-case-1.1.4" ··· 96260 95144 sha512 = "ciCpeMEGZ7CbfK+MgK8ykV+wzUHz5he06mAiq8OQLuYN6pxFxZDAhwPwByirOYwdF3GV2M4s7spq2A/g/XMncQ=="; 96261 95145 }; 96262 95146 dependencies = [ 96263 - sources."@types/node-16.11.0" 95147 + sources."@types/node-16.11.6" 96264 95148 sources."@types/node-fetch-2.5.12" 96265 95149 sources."ansi-styles-4.3.0" 96266 95150 sources."async-3.2.0" ··· 96313 95197 http-server = nodeEnv.buildNodePackage { 96314 95198 name = "http-server"; 96315 95199 packageName = "http-server"; 96316 - version = "13.0.2"; 95200 + version = "14.0.0"; 96317 95201 src = fetchurl { 96318 - url = "https://registry.npmjs.org/http-server/-/http-server-13.0.2.tgz"; 96319 - sha512 = "R8kvPT7qp11AMJWLZsRShvm6heIXdlR/+tL5oAWNG/86A/X+IAFX6q0F9SA2G+dR5aH/759+9PLH0V34Q6j4rg=="; 95202 + url = "https://registry.npmjs.org/http-server/-/http-server-14.0.0.tgz"; 95203 + sha512 = "XTePIXAo5x72bI8SlKFSqsg7UuSHwsOa4+RJIe56YeMUvfTvGDy7TxFkTEhfIRmM/Dnf6x29ut541ythSBZdkQ=="; 96320 95204 }; 96321 95205 dependencies = [ 96322 95206 sources."async-2.6.3" 96323 - sources."basic-auth-1.1.0" 95207 + sources."basic-auth-2.0.1" 96324 95208 sources."call-bind-1.0.2" 96325 95209 sources."colors-1.4.0" 96326 95210 sources."corser-2.0.1" ··· 96332 95216 sources."has-1.0.3" 96333 95217 sources."has-symbols-1.0.2" 96334 95218 sources."he-1.2.0" 95219 + sources."html-encoding-sniffer-3.0.0" 96335 95220 sources."http-proxy-1.18.1" 95221 + sources."iconv-lite-0.6.3" 96336 95222 sources."lodash-4.17.21" 96337 95223 sources."mime-1.6.0" 96338 95224 sources."minimist-1.2.5" ··· 96343 95229 sources."portfinder-1.0.28" 96344 95230 sources."qs-6.10.1" 96345 95231 sources."requires-port-1.0.0" 95232 + sources."safe-buffer-5.1.2" 95233 + sources."safer-buffer-2.1.2" 96346 95234 sources."secure-compare-3.0.1" 96347 95235 sources."side-channel-1.0.4" 96348 95236 sources."union-0.5.0" 96349 - sources."url-join-2.0.5" 95237 + sources."url-join-4.0.1" 95238 + sources."whatwg-encoding-2.0.0" 96350 95239 ]; 96351 95240 buildInputs = globalBuildInputs; 96352 95241 meta = { ··· 96361 95250 hsd = nodeEnv.buildNodePackage { 96362 95251 name = "hsd"; 96363 95252 packageName = "hsd"; 96364 - version = "3.0.0"; 95253 + version = "3.0.1"; 96365 95254 src = fetchurl { 96366 - url = "https://registry.npmjs.org/hsd/-/hsd-3.0.0.tgz"; 96367 - sha512 = "FjdNbLW3VXv36o7axOQXbPFBCqgO6tbKd8dCj7b/7p3yA4Vm0RnPS9XTEw1zrZcY0Sp03aj7BK8WjfunOccZyw=="; 95255 + url = "https://registry.npmjs.org/hsd/-/hsd-3.0.1.tgz"; 95256 + sha512 = "AI7ruyDhxyzKQzaDdEj0N2zjjYXjEPwQGlWQTootg85ByNKWQsAfZChvWqi2ek0FLPuNlM1toaDT+jcYi+UmqA=="; 96368 95257 }; 96369 95258 dependencies = [ 96370 95259 sources."bcfg-0.1.7" ··· 96531 95420 dependencies = [ 96532 95421 sources."@fast-csv/format-4.3.5" 96533 95422 sources."@fast-csv/parse-4.3.6" 96534 - sources."@types/node-14.17.27" 95423 + sources."@types/node-14.17.32" 96535 95424 sources."ajv-6.12.6" 96536 95425 sources."ansi-regex-5.0.1" 96537 95426 sources."ansi-styles-4.3.0" ··· 96540 95429 sources."assert-plus-1.0.0" 96541 95430 sources."async-2.6.3" 96542 95431 sources."asynckit-0.4.0" 96543 - sources."aws-sdk-2.1009.0" 95432 + sources."aws-sdk-2.1015.0" 96544 95433 sources."aws-sign2-0.7.0" 96545 95434 sources."aws4-1.11.0" 96546 95435 sources."base64-js-1.5.1" ··· 97078 95967 }; 97079 95968 dependencies = [ 97080 95969 sources."@jcubic/lily-0.3.0" 97081 - sources."@types/jquery-3.5.7" 95970 + sources."@types/jquery-3.5.8" 97082 95971 sources."@types/sizzle-2.3.3" 97083 95972 sources."ansidec-0.3.4" 97084 95973 sources."arch-2.2.0" ··· 97464 96353 dependencies = [ 97465 96354 sources."@iarna/toml-2.2.5" 97466 96355 sources."@msgpack/msgpack-2.7.1" 97467 - sources."@ot-builder/bin-composite-types-1.2.0" 97468 - sources."@ot-builder/bin-util-1.2.0" 97469 - (sources."@ot-builder/cli-help-shower-1.2.0" // { 96356 + sources."@ot-builder/bin-composite-types-1.3.0" 96357 + sources."@ot-builder/bin-util-1.3.0" 96358 + (sources."@ot-builder/cli-help-shower-1.3.0" // { 97470 96359 dependencies = [ 97471 96360 sources."ansi-styles-4.3.0" 97472 96361 sources."chalk-4.1.2" ··· 97476 96365 sources."supports-color-7.2.0" 97477 96366 ]; 97478 96367 }) 97479 - sources."@ot-builder/cli-proc-1.2.0" 97480 - sources."@ot-builder/cli-shared-1.2.0" 97481 - sources."@ot-builder/common-impl-1.2.0" 97482 - sources."@ot-builder/errors-1.2.0" 97483 - sources."@ot-builder/io-bin-cff-1.2.0" 97484 - sources."@ot-builder/io-bin-encoding-1.2.0" 97485 - sources."@ot-builder/io-bin-ext-private-1.2.0" 97486 - sources."@ot-builder/io-bin-font-1.2.0" 97487 - sources."@ot-builder/io-bin-glyph-store-1.2.0" 97488 - sources."@ot-builder/io-bin-layout-1.2.0" 97489 - sources."@ot-builder/io-bin-metadata-1.2.0" 97490 - sources."@ot-builder/io-bin-metric-1.2.0" 97491 - sources."@ot-builder/io-bin-name-1.2.0" 97492 - sources."@ot-builder/io-bin-sfnt-1.2.0" 97493 - sources."@ot-builder/io-bin-ttf-1.2.0" 97494 - sources."@ot-builder/io-bin-vtt-private-1.2.0" 97495 - sources."@ot-builder/ot-1.2.0" 97496 - sources."@ot-builder/ot-encoding-1.2.0" 97497 - sources."@ot-builder/ot-ext-private-1.2.0" 97498 - sources."@ot-builder/ot-glyphs-1.2.0" 97499 - sources."@ot-builder/ot-layout-1.2.0" 97500 - sources."@ot-builder/ot-metadata-1.2.0" 97501 - sources."@ot-builder/ot-name-1.2.0" 97502 - sources."@ot-builder/ot-sfnt-1.2.0" 97503 - sources."@ot-builder/ot-standard-glyph-namer-1.2.0" 97504 - sources."@ot-builder/ot-vtt-private-1.2.0" 97505 - sources."@ot-builder/prelude-1.2.0" 97506 - sources."@ot-builder/primitive-1.2.0" 97507 - sources."@ot-builder/rectify-1.2.0" 97508 - sources."@ot-builder/stat-glyphs-1.2.0" 97509 - sources."@ot-builder/trace-1.2.0" 97510 - sources."@ot-builder/var-store-1.2.0" 97511 - sources."@ot-builder/variance-1.2.0" 96368 + sources."@ot-builder/cli-proc-1.3.0" 96369 + sources."@ot-builder/cli-shared-1.3.0" 96370 + sources."@ot-builder/common-impl-1.3.0" 96371 + sources."@ot-builder/errors-1.3.0" 96372 + sources."@ot-builder/io-bin-cff-1.3.0" 96373 + sources."@ot-builder/io-bin-encoding-1.3.0" 96374 + sources."@ot-builder/io-bin-ext-private-1.3.0" 96375 + sources."@ot-builder/io-bin-font-1.3.0" 96376 + sources."@ot-builder/io-bin-glyph-store-1.3.0" 96377 + sources."@ot-builder/io-bin-layout-1.3.0" 96378 + sources."@ot-builder/io-bin-metadata-1.3.0" 96379 + sources."@ot-builder/io-bin-metric-1.3.0" 96380 + sources."@ot-builder/io-bin-name-1.3.0" 96381 + sources."@ot-builder/io-bin-sfnt-1.3.0" 96382 + sources."@ot-builder/io-bin-ttf-1.3.0" 96383 + sources."@ot-builder/io-bin-vtt-private-1.3.0" 96384 + sources."@ot-builder/ot-1.3.0" 96385 + sources."@ot-builder/ot-encoding-1.3.0" 96386 + sources."@ot-builder/ot-ext-private-1.3.0" 96387 + sources."@ot-builder/ot-glyphs-1.3.0" 96388 + sources."@ot-builder/ot-layout-1.3.0" 96389 + sources."@ot-builder/ot-metadata-1.3.0" 96390 + sources."@ot-builder/ot-name-1.3.0" 96391 + sources."@ot-builder/ot-sfnt-1.3.0" 96392 + sources."@ot-builder/ot-standard-glyph-namer-1.3.0" 96393 + sources."@ot-builder/ot-vtt-private-1.3.0" 96394 + sources."@ot-builder/prelude-1.3.0" 96395 + sources."@ot-builder/primitive-1.3.0" 96396 + sources."@ot-builder/rectify-1.3.0" 96397 + sources."@ot-builder/stat-glyphs-1.3.0" 96398 + sources."@ot-builder/trace-1.3.0" 96399 + sources."@ot-builder/var-store-1.3.0" 96400 + sources."@ot-builder/variance-1.3.0" 97512 96401 sources."@unicode/unicode-13.0.0-1.2.1" 97513 96402 sources."@xmldom/xmldom-0.7.5" 97514 96403 sources."aglfn-1.0.2" ··· 97561 96450 sources."estraverse-4.1.1" 97562 96451 ]; 97563 96452 }) 97564 - sources."estraverse-5.2.0" 96453 + sources."estraverse-5.3.0" 97565 96454 sources."esutils-2.0.3" 97566 96455 sources."fast-deep-equal-3.1.3" 97567 96456 sources."fast-levenshtein-2.0.6" ··· 97590 96479 sources."once-1.4.0" 97591 96480 sources."onetime-5.1.2" 97592 96481 sources."optionator-0.8.3" 97593 - sources."ot-builder-1.2.0" 97594 - sources."otb-ttc-bundle-1.2.0" 96482 + sources."ot-builder-1.3.0" 96483 + sources."otb-ttc-bundle-1.3.0" 97595 96484 sources."passerror-1.1.1" 97596 96485 sources."patel-0.35.1" 97597 96486 sources."path-is-absolute-1.0.1" ··· 97632 96521 sources."typo-geom-0.12.1" 97633 96522 sources."unicoderegexp-0.4.1" 97634 96523 sources."universalify-2.0.0" 97635 - (sources."verda-1.4.0" // { 96524 + (sources."verda-1.4.1" // { 97636 96525 dependencies = [ 97637 96526 sources."ansi-styles-4.3.0" 97638 96527 sources."chalk-4.1.2" ··· 97853 96742 sources."async-mutex-0.1.4" 97854 96743 sources."asynckit-0.4.0" 97855 96744 sources."atob-2.1.2" 97856 - (sources."aws-sdk-2.1009.0" // { 96745 + (sources."aws-sdk-2.1015.0" // { 97857 96746 dependencies = [ 97858 96747 sources."sax-1.2.1" 97859 96748 sources."uuid-3.3.2" ··· 97889 96778 sources."chokidar-3.5.2" 97890 96779 sources."chownr-1.1.4" 97891 96780 sources."chroma-js-2.1.2" 97892 - sources."clean-css-4.2.3" 96781 + sources."clean-css-4.2.4" 97893 96782 sources."cliss-0.0.2" 97894 96783 sources."code-point-at-1.1.0" 97895 96784 sources."color-3.1.2" ··· 98092 96981 sources."has-flag-4.0.0" 98093 96982 sources."has-unicode-2.0.1" 98094 96983 sources."he-1.2.0" 98095 - sources."highlight.js-11.2.0" 96984 + sources."highlight.js-11.3.1" 98096 96985 sources."html-encoding-sniffer-1.0.2" 98097 96986 sources."html-entities-1.4.0" 98098 96987 sources."html-minifier-3.5.21" ··· 98174 97063 sources."json-stringify-safe-5.0.1" 98175 97064 sources."jsonfile-2.4.0" 98176 97065 sources."jsprim-1.4.1" 98177 - (sources."katex-0.13.18" // { 97066 + (sources."katex-0.13.20" // { 98178 97067 dependencies = [ 98179 97068 sources."commander-6.2.1" 98180 97069 ]; ··· 98359 97248 ]; 98360 97249 }) 98361 97250 sources."requires-port-1.0.0" 98362 - sources."reselect-4.0.0" 97251 + sources."reselect-4.1.1" 98363 97252 sources."resolve-url-0.2.1" 98364 97253 sources."retry-0.10.1" 98365 97254 sources."rimraf-2.7.1" ··· 99869 98758 katex = nodeEnv.buildNodePackage { 99870 98759 name = "katex"; 99871 98760 packageName = "katex"; 99872 - version = "0.13.18"; 98761 + version = "0.13.20"; 99873 98762 src = fetchurl { 99874 - url = "https://registry.npmjs.org/katex/-/katex-0.13.18.tgz"; 99875 - sha512 = "a3dC4NSVSDU3O1WZbTnOiA8rVNJ2lSiomOl0kmckCIGObccIHXof7gAseIY0o1gjEspe+34ZeSEX2D1ChFKIvA=="; 98763 + url = "https://registry.npmjs.org/katex/-/katex-0.13.20.tgz"; 98764 + sha512 = "nGuuanV0idsPpWy3LKtTYSbqHwPOr9qxXuoJ/1l5fTLA2RYXVknpqElxgudXeaMz55OnxW2KhY7BV1greb08zg=="; 99876 98765 }; 99877 98766 dependencies = [ 99878 98767 sources."commander-6.2.1" ··· 99890 98779 karma = nodeEnv.buildNodePackage { 99891 98780 name = "karma"; 99892 98781 packageName = "karma"; 99893 - version = "6.3.4"; 98782 + version = "6.3.6"; 99894 98783 src = fetchurl { 99895 - url = "https://registry.npmjs.org/karma/-/karma-6.3.4.tgz"; 99896 - sha512 = "hbhRogUYIulfkBTZT7xoPrCYhRBnBoqbbL4fszWD0ReFGUxU+LYBr3dwKdAluaDQ/ynT9/7C+Lf7pPNW4gSx4Q=="; 98784 + url = "https://registry.npmjs.org/karma/-/karma-6.3.6.tgz"; 98785 + sha512 = "xsiu3D6AjCv6Uq0YKXJgC6TvXX2WloQ5+XtHXmC1lwiLVG617DDV3W2DdM4BxCMKHlmz6l3qESZHFQGHAKvrew=="; 99897 98786 }; 99898 98787 dependencies = [ 99899 98788 sources."@types/component-emitter-1.2.11" 99900 98789 sources."@types/cookie-0.4.1" 99901 98790 sources."@types/cors-2.8.12" 99902 - sources."@types/node-16.11.0" 98791 + sources."@types/node-16.11.6" 99903 98792 sources."accepts-1.3.7" 99904 98793 sources."ansi-regex-5.0.1" 99905 98794 sources."ansi-styles-4.3.0" 99906 98795 sources."anymatch-3.1.2" 99907 98796 sources."balanced-match-1.0.2" 99908 - sources."base64-arraybuffer-0.1.4" 98797 + sources."base64-arraybuffer-1.0.1" 99909 98798 sources."base64id-2.0.0" 99910 98799 sources."binary-extensions-2.2.0" 99911 98800 sources."body-parser-1.19.0" ··· 99932 98821 sources."ee-first-1.1.1" 99933 98822 sources."emoji-regex-8.0.0" 99934 98823 sources."encodeurl-1.0.2" 99935 - (sources."engine.io-4.1.1" // { 98824 + (sources."engine.io-6.0.0" // { 99936 98825 dependencies = [ 99937 98826 sources."debug-4.3.2" 99938 98827 sources."ms-2.1.2" 99939 98828 ]; 99940 98829 }) 99941 - sources."engine.io-parser-4.0.3" 98830 + sources."engine.io-parser-5.0.1" 99942 98831 sources."ent-2.2.0" 99943 98832 sources."escalade-3.1.1" 99944 98833 sources."escape-html-1.0.3" ··· 99999 98888 sources."rimraf-3.0.2" 100000 98889 sources."safer-buffer-2.1.2" 100001 98890 sources."setprototypeof-1.1.1" 100002 - (sources."socket.io-3.1.2" // { 98891 + (sources."socket.io-4.3.1" // { 100003 98892 dependencies = [ 100004 98893 sources."debug-4.3.2" 100005 98894 sources."ms-2.1.2" 100006 98895 ]; 100007 98896 }) 100008 - sources."socket.io-adapter-2.1.0" 98897 + sources."socket.io-adapter-2.3.2" 100009 98898 (sources."socket.io-parser-4.0.4" // { 100010 98899 dependencies = [ 100011 98900 sources."debug-4.3.2" ··· 100027 98916 sources."to-regex-range-5.0.1" 100028 98917 sources."toidentifier-1.0.0" 100029 98918 sources."type-is-1.6.18" 100030 - sources."ua-parser-js-0.7.28" 98919 + sources."ua-parser-js-0.7.30" 100031 98920 sources."universalify-0.1.2" 100032 98921 sources."unpipe-1.0.0" 100033 98922 sources."utils-merge-1.0.1" ··· 100035 98924 sources."void-elements-2.0.1" 100036 98925 sources."wrap-ansi-7.0.0" 100037 98926 sources."wrappy-1.0.2" 100038 - sources."ws-7.4.6" 98927 + sources."ws-8.2.3" 100039 98928 sources."y18n-5.0.8" 100040 98929 sources."yargs-16.2.0" 100041 98930 sources."yargs-parser-20.2.9" ··· 100157 99046 sources."brace-expansion-1.1.11" 100158 99047 sources."browser-or-node-1.3.0" 100159 99048 sources."browser-process-hrtime-1.0.0" 100160 - sources."browserslist-4.17.4" 99049 + sources."browserslist-4.17.5" 100161 99050 sources."buffer-from-1.1.2" 100162 99051 sources."bytes-3.1.0" 100163 99052 sources."bytesish-0.4.4" 100164 99053 sources."call-bind-1.0.2" 100165 - sources."caniuse-lite-1.0.30001267" 99054 + sources."caniuse-lite-1.0.30001271" 100166 99055 sources."caseless-0.12.0" 100167 99056 sources."chalk-2.4.2" 100168 - sources."chardet-1.3.0" 99057 + sources."chardet-1.4.0" 100169 99058 sources."cipher-base-1.0.4" 100170 99059 sources."cliui-7.0.4" 100171 99060 sources."clone-deep-4.0.1" ··· 100180 99069 sources."convert-source-map-1.8.0" 100181 99070 sources."cookie-0.4.0" 100182 99071 sources."cookie-signature-1.0.6" 100183 - sources."core-js-3.18.3" 99072 + sources."core-js-3.19.0" 100184 99073 sources."cors-2.8.5" 100185 99074 sources."create-hash-1.2.0" 100186 99075 sources."create-hmac-1.1.7" ··· 100213 99102 }) 100214 99103 sources."dotenv-8.6.0" 100215 99104 sources."ee-first-1.1.1" 100216 - sources."electron-to-chromium-1.3.870" 99105 + sources."electron-to-chromium-1.3.880" 100217 99106 sources."emoji-regex-8.0.0" 100218 99107 sources."encodeurl-1.0.2" 100219 99108 sources."enquirer-2.3.6" ··· 100228 99117 ]; 100229 99118 }) 100230 99119 sources."esprima-4.0.1" 100231 - sources."estraverse-5.2.0" 99120 + sources."estraverse-5.3.0" 100232 99121 sources."esutils-2.0.3" 100233 99122 sources."etag-1.8.1" 100234 99123 sources."events-3.3.0" ··· 100345 99234 sources."node-fetch-2.6.5" 100346 99235 sources."node-localstorage-1.3.1" 100347 99236 sources."node-modules-regexp-1.0.0" 100348 - sources."node-releases-2.0.0" 99237 + sources."node-releases-2.0.1" 100349 99238 sources."nwsapi-2.2.0" 100350 99239 sources."object-assign-4.1.1" 100351 99240 sources."object-inspect-1.11.0" ··· 100526 99415 sources."is-windows-1.0.2" 100527 99416 sources."isarray-1.0.0" 100528 99417 sources."json-stable-stringify-without-jsonify-1.0.1" 100529 - sources."lazystream-1.0.0" 99418 + sources."lazystream-1.0.1" 100530 99419 sources."lead-1.0.0" 100531 99420 sources."minimatch-3.0.4" 100532 99421 sources."normalize-path-2.1.1" ··· 101320 100209 ]; 101321 100210 }) 101322 100211 sources."conventional-commits-filter-2.0.7" 101323 - sources."conventional-commits-parser-3.2.2" 100212 + sources."conventional-commits-parser-3.2.3" 101324 100213 sources."conventional-recommended-bump-6.1.0" 101325 100214 sources."core-util-is-1.0.2" 101326 100215 sources."cosmiconfig-7.0.1" ··· 102864 101753 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 102865 101754 sources."@babel/plugin-transform-unicode-regex-7.14.5" 102866 101755 sources."@babel/preset-env-7.15.8" 102867 - sources."@babel/preset-modules-0.1.4" 101756 + sources."@babel/preset-modules-0.1.5" 102868 101757 sources."@babel/preset-stage-2-7.8.3" 102869 101758 sources."@babel/runtime-7.15.4" 102870 101759 sources."@babel/template-7.15.4" ··· 102890 101779 sources."@types/istanbul-lib-report-3.0.0" 102891 101780 sources."@types/istanbul-reports-1.1.2" 102892 101781 sources."@types/json-schema-7.0.9" 102893 - sources."@types/node-16.11.0" 101782 + sources."@types/node-16.11.6" 102894 101783 sources."@types/normalize-package-data-2.4.1" 102895 101784 sources."@types/resolve-0.0.8" 102896 101785 sources."@types/yargs-15.0.14" ··· 102964 101853 sources."babel-helper-remove-or-void-0.4.3" 102965 101854 sources."babel-helper-to-multiple-sequence-expressions-0.5.0" 102966 101855 sources."babel-jest-25.5.1" 102967 - sources."babel-loader-8.2.2" 101856 + sources."babel-loader-8.2.3" 102968 101857 sources."babel-plugin-dynamic-import-node-2.3.3" 102969 - sources."babel-plugin-istanbul-6.0.0" 101858 + sources."babel-plugin-istanbul-6.1.1" 102970 101859 sources."babel-plugin-jest-hoist-25.5.0" 102971 101860 sources."babel-plugin-minify-builtins-0.5.0" 102972 101861 sources."babel-plugin-minify-constant-folding-0.5.0" ··· 103047 101936 ]; 103048 101937 }) 103049 101938 sources."browserify-zlib-0.2.0" 103050 - sources."browserslist-4.17.4" 101939 + sources."browserslist-4.17.5" 103051 101940 sources."bser-2.1.1" 103052 101941 sources."buffer-5.2.1" 103053 101942 sources."buffer-from-1.1.2" ··· 103063 101952 sources."cached-path-relative-1.0.2" 103064 101953 sources."call-bind-1.0.2" 103065 101954 sources."camelcase-5.3.1" 103066 - sources."caniuse-lite-1.0.30001267" 101955 + sources."caniuse-lite-1.0.30001271" 103067 101956 sources."capture-exit-2.0.0" 103068 101957 sources."caseless-0.12.0" 103069 101958 (sources."chalk-3.0.0" // { ··· 103134 102023 }) 103135 102024 sources."copy-descriptor-0.1.1" 103136 102025 sources."core-js-2.6.12" 103137 - (sources."core-js-compat-3.18.3" // { 102026 + (sources."core-js-compat-3.19.0" // { 103138 102027 dependencies = [ 103139 102028 sources."semver-7.0.0" 103140 102029 ]; ··· 103186 102075 sources."duplexer2-0.1.4" 103187 102076 sources."duplexify-3.7.1" 103188 102077 sources."ecc-jsbn-0.1.2" 103189 - sources."electron-to-chromium-1.3.870" 102078 + sources."electron-to-chromium-1.3.880" 103190 102079 (sources."elliptic-6.5.4" // { 103191 102080 dependencies = [ 103192 102081 sources."bn.js-4.12.0" ··· 103209 102098 sources."esprima-4.0.1" 103210 102099 (sources."esrecurse-4.3.0" // { 103211 102100 dependencies = [ 103212 - sources."estraverse-5.2.0" 102101 + sources."estraverse-5.3.0" 103213 102102 ]; 103214 102103 }) 103215 102104 sources."estraverse-4.3.0" ··· 103386 102275 sources."isexe-2.0.0" 103387 102276 sources."isobject-3.0.1" 103388 102277 sources."isstream-0.1.2" 103389 - sources."istanbul-lib-coverage-3.0.2" 103390 - sources."istanbul-lib-instrument-4.0.3" 102278 + sources."istanbul-lib-coverage-3.2.0" 102279 + sources."istanbul-lib-instrument-5.0.4" 103391 102280 sources."jest-haste-map-25.5.1" 103392 102281 sources."jest-regex-util-25.2.6" 103393 102282 sources."jest-serializer-25.5.0" ··· 103429 102318 sources."lru-cache-5.1.1" 103430 102319 sources."magic-string-0.25.7" 103431 102320 sources."make-dir-3.1.0" 103432 - sources."makeerror-1.0.11" 102321 + sources."makeerror-1.0.12" 103433 102322 sources."map-cache-0.2.2" 103434 102323 sources."map-visit-1.0.0" 103435 102324 sources."md5.js-1.3.5" ··· 103489 102378 ]; 103490 102379 }) 103491 102380 sources."node-modules-regexp-1.0.0" 103492 - sources."node-releases-2.0.0" 102381 + sources."node-releases-2.0.1" 103493 102382 (sources."normalize-package-data-2.5.0" // { 103494 102383 dependencies = [ 103495 102384 sources."semver-5.7.1" ··· 103652 102541 sources."shasum-object-1.0.0" 103653 102542 sources."shebang-command-1.2.0" 103654 102543 sources."shebang-regex-1.0.0" 103655 - sources."shell-quote-1.7.2" 102544 + sources."shell-quote-1.7.3" 103656 102545 sources."signal-exit-3.0.5" 103657 102546 sources."simple-concat-1.0.1" 103658 102547 sources."slash-3.0.0" ··· 103833 102722 }) 103834 102723 sources."vinyl-2.2.1" 103835 102724 sources."vm-browserify-1.1.2" 103836 - sources."walker-1.0.7" 102725 + sources."walker-1.0.8" 103837 102726 sources."watchpack-1.7.5" 103838 102727 (sources."watchpack-chokidar2-2.0.1" // { 103839 102728 dependencies = [ ··· 103912 102801 bypassCache = true; 103913 102802 reconstructLock = true; 103914 102803 }; 102804 + lua-fmt = nodeEnv.buildNodePackage { 102805 + name = "lua-fmt"; 102806 + packageName = "lua-fmt"; 102807 + version = "2.6.0"; 102808 + src = fetchurl { 102809 + url = "https://registry.npmjs.org/lua-fmt/-/lua-fmt-2.6.0.tgz"; 102810 + sha1 = "ef9ac0573d1da7330dca09c022c39a33aed347a3"; 102811 + }; 102812 + dependencies = [ 102813 + sources."@types/commander-2.12.2" 102814 + sources."@types/diff-3.5.4" 102815 + sources."@types/get-stdin-5.0.1" 102816 + sources."@types/node-16.11.6" 102817 + sources."commander-2.20.3" 102818 + sources."diff-3.5.0" 102819 + sources."get-stdin-5.0.1" 102820 + sources."luaparse-git://github.com/oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802" 102821 + ]; 102822 + buildInputs = globalBuildInputs; 102823 + meta = { 102824 + description = "Format Lua code"; 102825 + homepage = "https://github.com/trixnz/lua-fmt"; 102826 + license = "MIT"; 102827 + }; 102828 + production = true; 102829 + bypassCache = true; 102830 + reconstructLock = true; 102831 + }; 103915 102832 madoko = nodeEnv.buildNodePackage { 103916 102833 name = "madoko"; 103917 102834 packageName = "madoko"; ··· 104285 103202 sources."esprima-4.0.1" 104286 103203 (sources."esquery-1.4.0" // { 104287 103204 dependencies = [ 104288 - sources."estraverse-5.2.0" 103205 + sources."estraverse-5.3.0" 104289 103206 ]; 104290 103207 }) 104291 103208 (sources."esrecurse-4.3.0" // { 104292 103209 dependencies = [ 104293 - sources."estraverse-5.2.0" 103210 + sources."estraverse-5.3.0" 104294 103211 ]; 104295 103212 }) 104296 103213 sources."estraverse-4.3.0" ··· 104554 103471 "@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage { 104555 103472 name = "_at_mermaid-js_slash_mermaid-cli"; 104556 103473 packageName = "@mermaid-js/mermaid-cli"; 104557 - version = "8.13.2"; 103474 + version = "8.13.3"; 104558 103475 src = fetchurl { 104559 - url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.13.2.tgz"; 104560 - sha512 = "/VCmgVj8oIi63Sp3zeNJbT1O5ExXbxjSAq5IWYXf4XaeMo2JiVjeNyLwUzp7uvDPugbm6jxoeqPDK5t36hP2aw=="; 103476 + url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.13.3.tgz"; 103477 + sha512 = "0iDpNyk45DPihwXxgeiU9NZgn0U3VwO52a09rwLE8Q+a7iC18eXK+10k/5FJ7c5g1w9BNiMBOgxDNsjegReS6w=="; 104561 103478 }; 104562 103479 dependencies = [ 104563 103480 sources."@braintree/sanitize-url-3.1.0" 104564 - sources."@types/node-16.11.0" 103481 + sources."@types/node-16.11.6" 104565 103482 sources."@types/yauzl-2.9.2" 104566 103483 sources."agent-base-6.0.2" 104567 103484 sources."ansi-styles-4.3.0" ··· 104575 103492 sources."chownr-1.1.4" 104576 103493 sources."color-convert-2.0.1" 104577 103494 sources."color-name-1.1.4" 104578 - sources."commander-8.2.0" 103495 + sources."commander-8.3.0" 104579 103496 sources."concat-map-0.0.1" 104580 103497 sources."d3-7.1.1" 104581 103498 sources."d3-array-3.1.1" ··· 104983 103900 dependencies = [ 104984 103901 sources."@msgpack/msgpack-1.12.2" 104985 103902 sources."async-2.6.3" 104986 - sources."color-3.0.0" 103903 + sources."color-3.2.1" 104987 103904 sources."color-convert-1.9.3" 104988 103905 sources."color-name-1.1.3" 104989 103906 sources."color-string-1.6.0" 104990 103907 sources."colornames-1.1.1" 104991 103908 sources."colors-1.4.0" 104992 - sources."colorspace-1.1.2" 103909 + sources."colorspace-1.1.4" 104993 103910 sources."core-util-is-1.0.3" 104994 103911 sources."diagnostics-1.1.1" 104995 103912 sources."enabled-1.0.2" ··· 105032 103949 bypassCache = true; 105033 103950 reconstructLock = true; 105034 103951 }; 105035 - netlify-cli = nodeEnv.buildNodePackage { 105036 - name = "netlify-cli"; 105037 - packageName = "netlify-cli"; 105038 - version = "6.13.2"; 105039 - src = fetchurl { 105040 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.13.2.tgz"; 105041 - sha512 = "GKisG/cEDcnB4Okmu+jZJqlrzHRD3s4slvhxT1tJ8QhMRVTSz4oefcdfRdc8YOagfVHKQ0OY8i2MgUIVmuRh9A=="; 105042 - }; 105043 - dependencies = [ 105044 - sources."@babel/code-frame-7.15.8" 105045 - sources."@babel/compat-data-7.15.0" 105046 - (sources."@babel/core-7.15.8" // { 105047 - dependencies = [ 105048 - sources."semver-6.3.0" 105049 - ]; 105050 - }) 105051 - sources."@babel/generator-7.15.8" 105052 - sources."@babel/helper-annotate-as-pure-7.15.4" 105053 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 105054 - (sources."@babel/helper-compilation-targets-7.15.4" // { 105055 - dependencies = [ 105056 - sources."semver-6.3.0" 105057 - ]; 105058 - }) 105059 - sources."@babel/helper-create-class-features-plugin-7.15.4" 105060 - sources."@babel/helper-create-regexp-features-plugin-7.14.5" 105061 - (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 105062 - dependencies = [ 105063 - sources."semver-6.3.0" 105064 - ]; 105065 - }) 105066 - sources."@babel/helper-explode-assignable-expression-7.15.4" 105067 - sources."@babel/helper-function-name-7.15.4" 105068 - sources."@babel/helper-get-function-arity-7.15.4" 105069 - sources."@babel/helper-hoist-variables-7.15.4" 105070 - sources."@babel/helper-member-expression-to-functions-7.15.4" 105071 - sources."@babel/helper-module-imports-7.15.4" 105072 - sources."@babel/helper-module-transforms-7.15.8" 105073 - sources."@babel/helper-optimise-call-expression-7.15.4" 105074 - sources."@babel/helper-plugin-utils-7.14.5" 105075 - sources."@babel/helper-remap-async-to-generator-7.15.4" 105076 - sources."@babel/helper-replace-supers-7.15.4" 105077 - sources."@babel/helper-simple-access-7.15.4" 105078 - sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 105079 - sources."@babel/helper-split-export-declaration-7.15.4" 105080 - sources."@babel/helper-validator-identifier-7.15.7" 105081 - sources."@babel/helper-validator-option-7.14.5" 105082 - sources."@babel/helper-wrap-function-7.15.4" 105083 - sources."@babel/helpers-7.15.4" 105084 - (sources."@babel/highlight-7.14.5" // { 105085 - dependencies = [ 105086 - sources."ansi-styles-3.2.1" 105087 - sources."chalk-2.4.2" 105088 - sources."color-convert-1.9.3" 105089 - sources."color-name-1.1.3" 105090 - sources."escape-string-regexp-1.0.5" 105091 - sources."has-flag-3.0.0" 105092 - sources."supports-color-5.5.0" 105093 - ]; 105094 - }) 105095 - sources."@babel/parser-7.15.8" 105096 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 105097 - sources."@babel/plugin-proposal-async-generator-functions-7.15.8" 105098 - sources."@babel/plugin-proposal-class-properties-7.14.5" 105099 - sources."@babel/plugin-proposal-class-static-block-7.15.4" 105100 - sources."@babel/plugin-proposal-dynamic-import-7.14.5" 105101 - sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 105102 - sources."@babel/plugin-proposal-json-strings-7.14.5" 105103 - sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 105104 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 105105 - sources."@babel/plugin-proposal-numeric-separator-7.14.5" 105106 - sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 105107 - sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 105108 - sources."@babel/plugin-proposal-optional-chaining-7.14.5" 105109 - sources."@babel/plugin-proposal-private-methods-7.14.5" 105110 - sources."@babel/plugin-proposal-private-property-in-object-7.15.4" 105111 - sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 105112 - sources."@babel/plugin-syntax-async-generators-7.8.4" 105113 - sources."@babel/plugin-syntax-class-properties-7.12.13" 105114 - sources."@babel/plugin-syntax-class-static-block-7.14.5" 105115 - sources."@babel/plugin-syntax-dynamic-import-7.8.3" 105116 - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 105117 - sources."@babel/plugin-syntax-json-strings-7.8.3" 105118 - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 105119 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 105120 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 105121 - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 105122 - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 105123 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 105124 - sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 105125 - sources."@babel/plugin-syntax-top-level-await-7.14.5" 105126 - sources."@babel/plugin-transform-arrow-functions-7.14.5" 105127 - sources."@babel/plugin-transform-async-to-generator-7.14.5" 105128 - sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 105129 - sources."@babel/plugin-transform-block-scoping-7.15.3" 105130 - sources."@babel/plugin-transform-classes-7.15.4" 105131 - sources."@babel/plugin-transform-computed-properties-7.14.5" 105132 - sources."@babel/plugin-transform-destructuring-7.14.7" 105133 - sources."@babel/plugin-transform-dotall-regex-7.14.5" 105134 - sources."@babel/plugin-transform-duplicate-keys-7.14.5" 105135 - sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 105136 - sources."@babel/plugin-transform-for-of-7.15.4" 105137 - sources."@babel/plugin-transform-function-name-7.14.5" 105138 - sources."@babel/plugin-transform-literals-7.14.5" 105139 - sources."@babel/plugin-transform-member-expression-literals-7.14.5" 105140 - sources."@babel/plugin-transform-modules-amd-7.14.5" 105141 - sources."@babel/plugin-transform-modules-commonjs-7.15.4" 105142 - sources."@babel/plugin-transform-modules-systemjs-7.15.4" 105143 - sources."@babel/plugin-transform-modules-umd-7.14.5" 105144 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 105145 - sources."@babel/plugin-transform-new-target-7.14.5" 105146 - sources."@babel/plugin-transform-object-super-7.14.5" 105147 - sources."@babel/plugin-transform-parameters-7.15.4" 105148 - sources."@babel/plugin-transform-property-literals-7.14.5" 105149 - sources."@babel/plugin-transform-regenerator-7.14.5" 105150 - sources."@babel/plugin-transform-reserved-words-7.14.5" 105151 - sources."@babel/plugin-transform-shorthand-properties-7.14.5" 105152 - sources."@babel/plugin-transform-spread-7.15.8" 105153 - sources."@babel/plugin-transform-sticky-regex-7.14.5" 105154 - sources."@babel/plugin-transform-template-literals-7.14.5" 105155 - sources."@babel/plugin-transform-typeof-symbol-7.14.5" 105156 - sources."@babel/plugin-transform-unicode-escapes-7.14.5" 105157 - sources."@babel/plugin-transform-unicode-regex-7.14.5" 105158 - (sources."@babel/preset-env-7.15.8" // { 105159 - dependencies = [ 105160 - sources."semver-6.3.0" 105161 - ]; 105162 - }) 105163 - sources."@babel/preset-modules-0.1.4" 105164 - sources."@babel/runtime-7.15.4" 105165 - sources."@babel/template-7.15.4" 105166 - sources."@babel/traverse-7.15.4" 105167 - sources."@babel/types-7.15.6" 105168 - sources."@bugsnag/browser-7.13.2" 105169 - sources."@bugsnag/core-7.13.2" 105170 - sources."@bugsnag/cuid-3.0.0" 105171 - sources."@bugsnag/js-7.13.2" 105172 - sources."@bugsnag/node-7.13.2" 105173 - sources."@bugsnag/safe-json-stringify-6.0.0" 105174 - sources."@dabh/diagnostics-2.0.2" 105175 - sources."@jest/types-26.6.2" 105176 - sources."@mapbox/node-pre-gyp-1.0.5" 105177 - sources."@mrmlnc/readdir-enhanced-2.2.1" 105178 - (sources."@netlify/build-18.17.2" // { 105179 - dependencies = [ 105180 - sources."resolve-2.0.0-next.3" 105181 - ]; 105182 - }) 105183 - (sources."@netlify/cache-utils-2.0.4" // { 105184 - dependencies = [ 105185 - sources."@nodelib/fs.stat-2.0.5" 105186 - sources."array-union-2.1.0" 105187 - sources."braces-3.0.2" 105188 - (sources."del-5.1.0" // { 105189 - dependencies = [ 105190 - sources."globby-10.0.2" 105191 - ]; 105192 - }) 105193 - sources."dir-glob-3.0.1" 105194 - sources."fast-glob-3.2.7" 105195 - sources."fill-range-7.0.1" 105196 - sources."glob-parent-5.1.2" 105197 - sources."ignore-5.1.8" 105198 - sources."is-number-7.0.0" 105199 - sources."micromatch-4.0.4" 105200 - sources."p-map-3.0.0" 105201 - sources."slash-3.0.0" 105202 - sources."to-regex-range-5.0.1" 105203 - ]; 105204 - }) 105205 - (sources."@netlify/config-15.7.2" // { 105206 - dependencies = [ 105207 - sources."dot-prop-5.3.0" 105208 - ]; 105209 - }) 105210 - sources."@netlify/esbuild-0.13.6" 105211 - sources."@netlify/framework-info-5.11.0" 105212 - sources."@netlify/functions-utils-2.0.2" 105213 - (sources."@netlify/git-utils-2.0.2" // { 105214 - dependencies = [ 105215 - sources."braces-3.0.2" 105216 - sources."fill-range-7.0.1" 105217 - sources."is-number-7.0.0" 105218 - sources."micromatch-4.0.4" 105219 - sources."to-regex-range-5.0.1" 105220 - ]; 105221 - }) 105222 - sources."@netlify/local-functions-proxy-1.1.1" 105223 - sources."@netlify/local-functions-proxy-darwin-arm64-1.1.1" 105224 - sources."@netlify/local-functions-proxy-darwin-x64-1.1.1" 105225 - sources."@netlify/local-functions-proxy-freebsd-arm64-1.1.1" 105226 - sources."@netlify/local-functions-proxy-freebsd-x64-1.1.1" 105227 - sources."@netlify/local-functions-proxy-linux-arm-1.1.1" 105228 - sources."@netlify/local-functions-proxy-linux-arm64-1.1.1" 105229 - sources."@netlify/local-functions-proxy-linux-ia32-1.1.1" 105230 - sources."@netlify/local-functions-proxy-linux-ppc64-1.1.1" 105231 - sources."@netlify/local-functions-proxy-linux-x64-1.1.1" 105232 - sources."@netlify/local-functions-proxy-openbsd-x64-1.1.1" 105233 - sources."@netlify/local-functions-proxy-win32-ia32-1.1.1" 105234 - sources."@netlify/local-functions-proxy-win32-x64-1.1.1" 105235 - sources."@netlify/open-api-2.5.1" 105236 - (sources."@netlify/plugin-edge-handlers-1.11.22" // { 105237 - dependencies = [ 105238 - sources."@types/node-14.17.27" 105239 - ]; 105240 - }) 105241 - sources."@netlify/plugins-list-4.0.1" 105242 - sources."@netlify/routing-local-proxy-0.34.1" 105243 - sources."@netlify/run-utils-2.0.1" 105244 - (sources."@netlify/zip-it-and-ship-it-4.25.0" // { 105245 - dependencies = [ 105246 - sources."ansi-styles-4.3.0" 105247 - sources."cliui-7.0.4" 105248 - sources."cp-file-9.1.0" 105249 - sources."resolve-2.0.0-next.3" 105250 - sources."wrap-ansi-7.0.0" 105251 - sources."y18n-5.0.8" 105252 - sources."yargs-16.2.0" 105253 - sources."yargs-parser-20.2.9" 105254 - ]; 105255 - }) 105256 - (sources."@nodelib/fs.scandir-2.1.5" // { 105257 - dependencies = [ 105258 - sources."@nodelib/fs.stat-2.0.5" 105259 - ]; 105260 - }) 105261 - sources."@nodelib/fs.stat-1.1.3" 105262 - sources."@nodelib/fs.walk-1.2.8" 105263 - (sources."@oclif/color-0.1.2" // { 105264 - dependencies = [ 105265 - sources."ansi-regex-4.1.0" 105266 - sources."ansi-styles-3.2.1" 105267 - (sources."chalk-3.0.0" // { 105268 - dependencies = [ 105269 - sources."ansi-styles-4.3.0" 105270 - sources."color-convert-2.0.1" 105271 - sources."color-name-1.1.4" 105272 - sources."supports-color-7.2.0" 105273 - ]; 105274 - }) 105275 - sources."color-convert-1.9.3" 105276 - sources."color-name-1.1.3" 105277 - sources."has-flag-3.0.0" 105278 - sources."strip-ansi-5.2.0" 105279 - sources."supports-color-5.5.0" 105280 - ]; 105281 - }) 105282 - sources."@oclif/command-1.8.0" 105283 - (sources."@oclif/config-1.17.0" // { 105284 - dependencies = [ 105285 - sources."tslib-2.3.1" 105286 - ]; 105287 - }) 105288 - (sources."@oclif/core-0.5.41" // { 105289 - dependencies = [ 105290 - sources."ansi-styles-4.3.0" 105291 - sources."fs-extra-9.1.0" 105292 - sources."jsonfile-6.1.0" 105293 - sources."tslib-2.3.1" 105294 - sources."universalify-2.0.0" 105295 - sources."wrap-ansi-7.0.0" 105296 - ]; 105297 - }) 105298 - (sources."@oclif/errors-1.3.5" // { 105299 - dependencies = [ 105300 - sources."ansi-styles-4.3.0" 105301 - sources."wrap-ansi-7.0.0" 105302 - ]; 105303 - }) 105304 - sources."@oclif/linewrap-1.0.0" 105305 - (sources."@oclif/parser-3.8.5" // { 105306 - dependencies = [ 105307 - sources."ansi-styles-3.2.1" 105308 - sources."chalk-2.4.2" 105309 - sources."color-convert-1.9.3" 105310 - sources."color-name-1.1.3" 105311 - sources."escape-string-regexp-1.0.5" 105312 - sources."has-flag-3.0.0" 105313 - sources."supports-color-5.5.0" 105314 - ]; 105315 - }) 105316 - sources."@oclif/plugin-help-3.3.0" 105317 - (sources."@oclif/plugin-not-found-1.2.4" // { 105318 - dependencies = [ 105319 - sources."ansi-escapes-3.2.0" 105320 - sources."ansi-regex-4.1.0" 105321 - sources."ansi-styles-3.2.1" 105322 - sources."chalk-2.4.2" 105323 - sources."clean-stack-2.2.0" 105324 - sources."cli-ux-4.9.3" 105325 - sources."color-convert-1.9.3" 105326 - sources."color-name-1.1.3" 105327 - sources."escape-string-regexp-1.0.5" 105328 - sources."fs-extra-7.0.1" 105329 - sources."has-flag-3.0.0" 105330 - sources."indent-string-3.2.0" 105331 - sources."is-wsl-1.1.0" 105332 - sources."semver-5.7.1" 105333 - sources."strip-ansi-5.2.0" 105334 - sources."supports-color-5.5.0" 105335 - ]; 105336 - }) 105337 - (sources."@oclif/plugin-plugins-1.10.1" // { 105338 - dependencies = [ 105339 - sources."fs-extra-9.1.0" 105340 - sources."jsonfile-6.1.0" 105341 - sources."tslib-2.3.1" 105342 - sources."universalify-2.0.0" 105343 - ]; 105344 - }) 105345 - sources."@oclif/screen-1.0.4" 105346 - sources."@octokit/auth-token-2.5.0" 105347 - sources."@octokit/core-3.5.1" 105348 - (sources."@octokit/endpoint-6.0.12" // { 105349 - dependencies = [ 105350 - sources."is-plain-object-5.0.0" 105351 - ]; 105352 - }) 105353 - sources."@octokit/graphql-4.8.0" 105354 - sources."@octokit/openapi-types-11.2.0" 105355 - sources."@octokit/plugin-paginate-rest-2.17.0" 105356 - sources."@octokit/plugin-request-log-1.0.4" 105357 - sources."@octokit/plugin-rest-endpoint-methods-5.13.0" 105358 - (sources."@octokit/request-5.6.2" // { 105359 - dependencies = [ 105360 - sources."is-plain-object-5.0.0" 105361 - ]; 105362 - }) 105363 - sources."@octokit/request-error-2.1.0" 105364 - sources."@octokit/rest-18.12.0" 105365 - sources."@octokit/types-6.34.0" 105366 - sources."@rollup/plugin-babel-5.3.0" 105367 - (sources."@rollup/plugin-commonjs-18.1.0" // { 105368 - dependencies = [ 105369 - sources."estree-walker-2.0.2" 105370 - ]; 105371 - }) 105372 - sources."@rollup/plugin-inject-4.0.2" 105373 - sources."@rollup/plugin-json-4.1.0" 105374 - sources."@rollup/plugin-node-resolve-11.2.1" 105375 - sources."@rollup/pluginutils-3.1.0" 105376 - sources."@samverschueren/stream-to-observable-0.3.1" 105377 - sources."@sindresorhus/is-2.1.1" 105378 - sources."@sindresorhus/slugify-1.1.2" 105379 - (sources."@sindresorhus/transliterate-0.1.2" // { 105380 - dependencies = [ 105381 - sources."escape-string-regexp-2.0.0" 105382 - ]; 105383 - }) 105384 - sources."@szmarczak/http-timer-4.0.6" 105385 - sources."@types/cacheable-request-6.0.2" 105386 - sources."@types/decompress-4.2.4" 105387 - sources."@types/download-8.0.1" 105388 - sources."@types/estree-0.0.39" 105389 - sources."@types/glob-7.1.4" 105390 - sources."@types/got-8.3.6" 105391 - sources."@types/http-cache-semantics-4.0.1" 105392 - sources."@types/http-proxy-1.17.7" 105393 - sources."@types/istanbul-lib-coverage-2.0.3" 105394 - sources."@types/istanbul-lib-report-3.0.0" 105395 - sources."@types/istanbul-reports-3.0.1" 105396 - sources."@types/keyv-3.1.3" 105397 - sources."@types/minimatch-3.0.5" 105398 - sources."@types/node-16.11.0" 105399 - sources."@types/node-fetch-2.5.12" 105400 - sources."@types/normalize-package-data-2.4.1" 105401 - sources."@types/resolve-1.17.1" 105402 - sources."@types/responselike-1.0.0" 105403 - sources."@types/semver-7.3.8" 105404 - sources."@types/yargs-15.0.14" 105405 - sources."@types/yargs-parser-20.2.1" 105406 - sources."@typescript-eslint/types-4.33.0" 105407 - sources."@typescript-eslint/typescript-estree-4.33.0" 105408 - sources."@typescript-eslint/visitor-keys-4.33.0" 105409 - sources."@ungap/from-entries-0.2.1" 105410 - (sources."@vercel/nft-0.15.1" // { 105411 - dependencies = [ 105412 - sources."braces-3.0.2" 105413 - sources."estree-walker-2.0.2" 105414 - sources."fill-range-7.0.1" 105415 - sources."is-number-7.0.0" 105416 - sources."micromatch-4.0.4" 105417 - sources."to-regex-range-5.0.1" 105418 - ]; 105419 - }) 105420 - sources."abbrev-1.1.1" 105421 - sources."accepts-1.3.7" 105422 - sources."acorn-8.5.0" 105423 - sources."acorn-class-fields-1.0.0" 105424 - sources."acorn-private-class-elements-1.0.0" 105425 - sources."acorn-static-class-features-1.0.0" 105426 - sources."agent-base-6.0.2" 105427 - (sources."aggregate-error-3.1.0" // { 105428 - dependencies = [ 105429 - sources."clean-stack-2.2.0" 105430 - ]; 105431 - }) 105432 - sources."ajv-8.6.3" 105433 - (sources."all-node-versions-8.0.0" // { 105434 - dependencies = [ 105435 - sources."@jest/types-25.5.0" 105436 - sources."@types/istanbul-reports-1.1.2" 105437 - sources."ansi-styles-4.3.0" 105438 - sources."camelcase-5.3.1" 105439 - sources."chalk-3.0.0" 105440 - sources."get-stream-5.2.0" 105441 - sources."jest-get-type-25.2.6" 105442 - sources."jest-validate-25.5.0" 105443 - sources."pretty-format-25.5.0" 105444 - sources."react-is-16.13.1" 105445 - sources."supports-color-7.2.0" 105446 - ]; 105447 - }) 105448 - sources."ansi-align-3.0.1" 105449 - sources."ansi-escapes-4.3.2" 105450 - sources."ansi-regex-5.0.1" 105451 - sources."ansi-styles-5.2.0" 105452 - sources."ansicolors-0.3.2" 105453 - sources."any-observable-0.3.0" 105454 - sources."anymatch-3.1.2" 105455 - sources."aproba-1.2.0" 105456 - (sources."archive-type-4.0.0" // { 105457 - dependencies = [ 105458 - sources."file-type-4.4.0" 105459 - ]; 105460 - }) 105461 - (sources."archiver-5.3.0" // { 105462 - dependencies = [ 105463 - sources."readable-stream-3.6.0" 105464 - ]; 105465 - }) 105466 - sources."archiver-utils-2.1.0" 105467 - sources."are-we-there-yet-1.1.7" 105468 - sources."argparse-2.0.1" 105469 - sources."arr-diff-4.0.0" 105470 - sources."arr-flatten-1.1.0" 105471 - sources."arr-union-3.1.0" 105472 - sources."array-flat-polyfill-1.0.1" 105473 - sources."array-flatten-1.1.1" 105474 - sources."array-union-1.0.2" 105475 - sources."array-uniq-1.0.3" 105476 - sources."array-unique-0.3.2" 105477 - sources."arrify-2.0.1" 105478 - sources."ascii-table-0.0.9" 105479 - sources."assign-symbols-1.0.0" 105480 - sources."ast-module-types-2.7.1" 105481 - sources."async-3.2.1" 105482 - sources."asynckit-0.4.0" 105483 - sources."at-least-node-1.0.0" 105484 - sources."atob-2.1.2" 105485 - sources."babel-plugin-dynamic-import-node-2.3.3" 105486 - (sources."babel-plugin-polyfill-corejs2-0.2.2" // { 105487 - dependencies = [ 105488 - sources."semver-6.3.0" 105489 - ]; 105490 - }) 105491 - sources."babel-plugin-polyfill-corejs3-0.2.5" 105492 - sources."babel-plugin-polyfill-regenerator-0.2.2" 105493 - sources."backoff-2.5.0" 105494 - sources."balanced-match-1.0.2" 105495 - (sources."base-0.11.2" // { 105496 - dependencies = [ 105497 - sources."define-property-1.0.0" 105498 - ]; 105499 - }) 105500 - sources."base64-js-1.5.1" 105501 - sources."before-after-hook-2.2.2" 105502 - sources."better-opn-2.1.1" 105503 - sources."binary-extensions-2.2.0" 105504 - sources."bindings-1.5.0" 105505 - (sources."bl-4.1.0" // { 105506 - dependencies = [ 105507 - sources."readable-stream-3.6.0" 105508 - ]; 105509 - }) 105510 - sources."blueimp-md5-2.19.0" 105511 - (sources."body-parser-1.19.0" // { 105512 - dependencies = [ 105513 - sources."debug-2.6.9" 105514 - sources."raw-body-2.4.0" 105515 - ]; 105516 - }) 105517 - (sources."boxen-5.1.2" // { 105518 - dependencies = [ 105519 - sources."ansi-styles-4.3.0" 105520 - sources."type-fest-0.20.2" 105521 - sources."wrap-ansi-7.0.0" 105522 - ]; 105523 - }) 105524 - sources."brace-expansion-1.1.11" 105525 - (sources."braces-2.3.2" // { 105526 - dependencies = [ 105527 - sources."extend-shallow-2.0.1" 105528 - ]; 105529 - }) 105530 - sources."browserslist-4.17.4" 105531 - sources."buffer-5.7.1" 105532 - sources."buffer-alloc-1.2.0" 105533 - sources."buffer-alloc-unsafe-1.1.0" 105534 - sources."buffer-crc32-0.2.13" 105535 - sources."buffer-es6-4.9.3" 105536 - sources."buffer-fill-1.0.0" 105537 - sources."buffer-from-1.1.2" 105538 - sources."builtin-modules-3.2.0" 105539 - sources."builtins-1.0.3" 105540 - sources."byline-5.0.0" 105541 - sources."bytes-3.1.0" 105542 - sources."cache-base-1.0.1" 105543 - sources."cacheable-lookup-2.0.1" 105544 - (sources."cacheable-request-7.0.2" // { 105545 - dependencies = [ 105546 - sources."get-stream-5.2.0" 105547 - ]; 105548 - }) 105549 - sources."cachedir-2.3.0" 105550 - sources."call-bind-1.0.2" 105551 - sources."call-me-maybe-1.0.1" 105552 - sources."callsite-1.0.0" 105553 - sources."camelcase-6.2.0" 105554 - sources."caniuse-lite-1.0.30001267" 105555 - sources."cardinal-2.1.1" 105556 - (sources."chalk-4.1.2" // { 105557 - dependencies = [ 105558 - sources."ansi-styles-4.3.0" 105559 - sources."supports-color-7.2.0" 105560 - ]; 105561 - }) 105562 - sources."chardet-0.7.0" 105563 - (sources."chokidar-3.5.2" // { 105564 - dependencies = [ 105565 - sources."braces-3.0.2" 105566 - sources."fill-range-7.0.1" 105567 - sources."glob-parent-5.1.2" 105568 - sources."is-number-7.0.0" 105569 - sources."to-regex-range-5.0.1" 105570 - ]; 105571 - }) 105572 - sources."chownr-2.0.0" 105573 - sources."ci-info-3.2.0" 105574 - (sources."class-utils-0.3.6" // { 105575 - dependencies = [ 105576 - sources."define-property-0.2.5" 105577 - (sources."is-accessor-descriptor-0.1.6" // { 105578 - dependencies = [ 105579 - sources."kind-of-3.2.2" 105580 - ]; 105581 - }) 105582 - (sources."is-data-descriptor-0.1.4" // { 105583 - dependencies = [ 105584 - sources."kind-of-3.2.2" 105585 - ]; 105586 - }) 105587 - sources."is-descriptor-0.1.6" 105588 - sources."kind-of-5.1.0" 105589 - ]; 105590 - }) 105591 - sources."clean-deep-3.4.0" 105592 - sources."clean-stack-3.0.1" 105593 - sources."cli-boxes-2.2.1" 105594 - sources."cli-cursor-2.1.0" 105595 - sources."cli-progress-3.9.1" 105596 - sources."cli-spinners-2.6.1" 105597 - (sources."cli-truncate-0.2.1" // { 105598 - dependencies = [ 105599 - sources."ansi-regex-2.1.1" 105600 - sources."is-fullwidth-code-point-1.0.0" 105601 - sources."string-width-1.0.2" 105602 - sources."strip-ansi-3.0.1" 105603 - ]; 105604 - }) 105605 - (sources."cli-ux-5.6.3" // { 105606 - dependencies = [ 105607 - sources."ansi-styles-4.3.0" 105608 - sources."argparse-1.0.10" 105609 - sources."extract-stack-2.0.0" 105610 - sources."js-yaml-3.14.1" 105611 - (sources."supports-hyperlinks-2.2.0" // { 105612 - dependencies = [ 105613 - sources."supports-color-7.2.0" 105614 - ]; 105615 - }) 105616 - sources."tslib-2.3.1" 105617 - ]; 105618 - }) 105619 - sources."cli-width-2.2.1" 105620 - sources."cliui-6.0.0" 105621 - sources."clone-1.0.4" 105622 - (sources."clone-response-1.0.2" // { 105623 - dependencies = [ 105624 - sources."mimic-response-1.0.1" 105625 - ]; 105626 - }) 105627 - sources."code-point-at-1.1.0" 105628 - sources."collection-visit-1.0.0" 105629 - (sources."color-3.0.0" // { 105630 - dependencies = [ 105631 - sources."color-convert-1.9.3" 105632 - sources."color-name-1.1.3" 105633 - ]; 105634 - }) 105635 - sources."color-convert-2.0.1" 105636 - sources."color-name-1.1.4" 105637 - sources."color-string-1.6.0" 105638 - sources."colors-1.4.0" 105639 - sources."colorspace-1.1.2" 105640 - sources."combined-stream-1.0.8" 105641 - sources."commander-2.20.3" 105642 - sources."common-path-prefix-3.0.0" 105643 - sources."commondir-1.0.1" 105644 - sources."component-emitter-1.3.0" 105645 - (sources."compress-commons-4.1.1" // { 105646 - dependencies = [ 105647 - sources."readable-stream-3.6.0" 105648 - ]; 105649 - }) 105650 - sources."concat-map-0.0.1" 105651 - sources."concordance-5.0.4" 105652 - (sources."configstore-5.0.1" // { 105653 - dependencies = [ 105654 - sources."dot-prop-5.3.0" 105655 - ]; 105656 - }) 105657 - sources."console-control-strings-1.1.0" 105658 - sources."content-disposition-0.5.3" 105659 - sources."content-type-1.0.4" 105660 - sources."convert-source-map-1.8.0" 105661 - sources."cookie-0.4.1" 105662 - sources."cookie-signature-1.0.6" 105663 - sources."copy-descriptor-0.1.1" 105664 - (sources."copy-template-dir-1.4.0" // { 105665 - dependencies = [ 105666 - sources."pump-1.0.3" 105667 - sources."readdirp-2.2.1" 105668 - ]; 105669 - }) 105670 - (sources."core-js-compat-3.18.3" // { 105671 - dependencies = [ 105672 - sources."semver-7.0.0" 105673 - ]; 105674 - }) 105675 - sources."core-util-is-1.0.3" 105676 - sources."cp-file-7.0.0" 105677 - (sources."cpy-8.1.2" // { 105678 - dependencies = [ 105679 - sources."globby-9.2.0" 105680 - sources."p-map-3.0.0" 105681 - ]; 105682 - }) 105683 - sources."crc-32-1.2.0" 105684 - (sources."crc32-stream-4.0.2" // { 105685 - dependencies = [ 105686 - sources."readable-stream-3.6.0" 105687 - ]; 105688 - }) 105689 - sources."cross-spawn-7.0.3" 105690 - sources."crypto-random-string-2.0.0" 105691 - sources."cyclist-1.0.1" 105692 - sources."date-fns-1.30.1" 105693 - sources."date-time-3.1.0" 105694 - (sources."debug-4.3.2" // { 105695 - dependencies = [ 105696 - sources."ms-2.1.2" 105697 - ]; 105698 - }) 105699 - sources."decache-4.6.0" 105700 - sources."decamelize-1.2.0" 105701 - sources."decode-uri-component-0.2.0" 105702 - (sources."decompress-4.2.1" // { 105703 - dependencies = [ 105704 - (sources."make-dir-1.3.0" // { 105705 - dependencies = [ 105706 - sources."pify-3.0.0" 105707 - ]; 105708 - }) 105709 - sources."pify-2.3.0" 105710 - ]; 105711 - }) 105712 - sources."decompress-response-5.0.0" 105713 - (sources."decompress-tar-4.1.1" // { 105714 - dependencies = [ 105715 - sources."bl-1.2.3" 105716 - sources."file-type-5.2.0" 105717 - sources."is-stream-1.1.0" 105718 - sources."tar-stream-1.6.2" 105719 - ]; 105720 - }) 105721 - (sources."decompress-tarbz2-4.1.1" // { 105722 - dependencies = [ 105723 - sources."file-type-6.2.0" 105724 - sources."is-stream-1.1.0" 105725 - ]; 105726 - }) 105727 - (sources."decompress-targz-4.1.1" // { 105728 - dependencies = [ 105729 - sources."file-type-5.2.0" 105730 - sources."is-stream-1.1.0" 105731 - ]; 105732 - }) 105733 - (sources."decompress-unzip-4.0.1" // { 105734 - dependencies = [ 105735 - sources."file-type-3.9.0" 105736 - sources."get-stream-2.3.1" 105737 - sources."pify-2.3.0" 105738 - ]; 105739 - }) 105740 - sources."deep-extend-0.6.0" 105741 - sources."deep-is-0.1.4" 105742 - sources."deepmerge-4.2.2" 105743 - sources."defaults-1.0.3" 105744 - sources."defer-to-connect-2.0.1" 105745 - sources."define-properties-1.1.3" 105746 - sources."define-property-2.0.2" 105747 - (sources."del-6.0.0" // { 105748 - dependencies = [ 105749 - sources."slash-3.0.0" 105750 - ]; 105751 - }) 105752 - sources."delayed-stream-1.0.0" 105753 - sources."delegates-1.0.0" 105754 - sources."depd-1.1.2" 105755 - sources."deprecation-2.3.1" 105756 - sources."destroy-1.0.4" 105757 - sources."detect-libc-1.0.3" 105758 - sources."detective-amd-3.1.0" 105759 - sources."detective-cjs-3.1.1" 105760 - sources."detective-es6-2.2.0" 105761 - sources."detective-less-1.0.2" 105762 - sources."detective-postcss-4.0.0" 105763 - sources."detective-sass-3.0.1" 105764 - sources."detective-scss-2.0.1" 105765 - sources."detective-stylus-1.0.0" 105766 - (sources."detective-typescript-7.0.0" // { 105767 - dependencies = [ 105768 - sources."typescript-3.9.10" 105769 - ]; 105770 - }) 105771 - (sources."dir-glob-2.2.2" // { 105772 - dependencies = [ 105773 - sources."path-type-3.0.0" 105774 - sources."pify-3.0.0" 105775 - ]; 105776 - }) 105777 - sources."dot-prop-6.0.1" 105778 - sources."dotenv-10.0.0" 105779 - (sources."download-8.0.0" // { 105780 - dependencies = [ 105781 - sources."@sindresorhus/is-0.7.0" 105782 - (sources."cacheable-request-2.1.4" // { 105783 - dependencies = [ 105784 - sources."get-stream-3.0.0" 105785 - sources."lowercase-keys-1.0.0" 105786 - ]; 105787 - }) 105788 - sources."decompress-response-3.3.0" 105789 - sources."get-stream-4.1.0" 105790 - (sources."got-8.3.2" // { 105791 - dependencies = [ 105792 - sources."get-stream-3.0.0" 105793 - sources."pify-3.0.0" 105794 - ]; 105795 - }) 105796 - sources."http-cache-semantics-3.8.1" 105797 - sources."is-plain-obj-1.1.0" 105798 - sources."json-buffer-3.0.0" 105799 - sources."keyv-3.0.0" 105800 - sources."lowercase-keys-1.0.1" 105801 - sources."make-dir-2.1.0" 105802 - sources."mimic-response-1.0.1" 105803 - sources."normalize-url-2.0.1" 105804 - sources."p-cancelable-0.4.1" 105805 - sources."p-event-2.3.1" 105806 - sources."responselike-1.0.2" 105807 - sources."semver-5.7.1" 105808 - sources."sort-keys-2.0.0" 105809 - ]; 105810 - }) 105811 - sources."duplexer3-0.1.4" 105812 - sources."ee-first-1.1.1" 105813 - sources."electron-to-chromium-1.3.870" 105814 - sources."elegant-spinner-1.0.1" 105815 - sources."elf-cam-0.1.1" 105816 - sources."emoji-regex-8.0.0" 105817 - sources."enabled-2.0.0" 105818 - sources."encodeurl-1.0.2" 105819 - sources."end-of-stream-1.4.4" 105820 - sources."env-paths-2.2.1" 105821 - sources."envinfo-7.8.1" 105822 - sources."error-ex-1.3.2" 105823 - sources."error-stack-parser-2.0.6" 105824 - sources."es-module-lexer-0.9.3" 105825 - sources."escalade-3.1.1" 105826 - sources."escape-goat-2.1.1" 105827 - sources."escape-html-1.0.3" 105828 - sources."escape-string-regexp-4.0.0" 105829 - (sources."escodegen-2.0.0" // { 105830 - dependencies = [ 105831 - sources."source-map-0.6.1" 105832 - ]; 105833 - }) 105834 - sources."eslint-visitor-keys-2.1.0" 105835 - sources."esprima-4.0.1" 105836 - sources."estraverse-5.2.0" 105837 - sources."estree-walker-1.0.1" 105838 - sources."esutils-2.0.3" 105839 - sources."etag-1.8.1" 105840 - sources."eventemitter3-4.0.7" 105841 - (sources."execa-5.1.1" // { 105842 - dependencies = [ 105843 - sources."human-signals-2.1.0" 105844 - ]; 105845 - }) 105846 - sources."exit-on-epipe-1.0.1" 105847 - (sources."expand-brackets-2.1.4" // { 105848 - dependencies = [ 105849 - sources."debug-2.6.9" 105850 - sources."define-property-0.2.5" 105851 - sources."extend-shallow-2.0.1" 105852 - (sources."is-accessor-descriptor-0.1.6" // { 105853 - dependencies = [ 105854 - sources."kind-of-3.2.2" 105855 - ]; 105856 - }) 105857 - (sources."is-data-descriptor-0.1.4" // { 105858 - dependencies = [ 105859 - sources."kind-of-3.2.2" 105860 - ]; 105861 - }) 105862 - sources."is-descriptor-0.1.6" 105863 - sources."kind-of-5.1.0" 105864 - ]; 105865 - }) 105866 - (sources."express-4.17.1" // { 105867 - dependencies = [ 105868 - sources."cookie-0.4.0" 105869 - sources."debug-2.6.9" 105870 - ]; 105871 - }) 105872 - sources."express-logging-1.1.1" 105873 - sources."ext-list-2.2.2" 105874 - sources."ext-name-5.0.0" 105875 - (sources."extend-shallow-3.0.2" // { 105876 - dependencies = [ 105877 - sources."is-extendable-1.0.1" 105878 - ]; 105879 - }) 105880 - (sources."external-editor-3.1.0" // { 105881 - dependencies = [ 105882 - sources."tmp-0.0.33" 105883 - ]; 105884 - }) 105885 - (sources."extglob-2.0.4" // { 105886 - dependencies = [ 105887 - sources."define-property-1.0.0" 105888 - sources."extend-shallow-2.0.1" 105889 - ]; 105890 - }) 105891 - sources."extract-stack-1.0.0" 105892 - sources."fast-deep-equal-3.1.3" 105893 - sources."fast-diff-1.2.0" 105894 - sources."fast-equals-2.0.3" 105895 - sources."fast-glob-2.2.7" 105896 - sources."fast-levenshtein-2.0.6" 105897 - sources."fast-safe-stringify-2.1.1" 105898 - sources."fastq-1.13.0" 105899 - sources."fd-slicer-1.1.0" 105900 - sources."fecha-4.2.1" 105901 - (sources."fetch-node-website-5.0.3" // { 105902 - dependencies = [ 105903 - (sources."@jest/types-25.5.0" // { 105904 - dependencies = [ 105905 - sources."chalk-3.0.0" 105906 - ]; 105907 - }) 105908 - sources."@types/istanbul-reports-1.1.2" 105909 - sources."ansi-styles-4.3.0" 105910 - sources."camelcase-5.3.1" 105911 - sources."jest-get-type-25.2.6" 105912 - (sources."jest-validate-25.5.0" // { 105913 - dependencies = [ 105914 - sources."chalk-3.0.0" 105915 - ]; 105916 - }) 105917 - sources."pretty-format-25.5.0" 105918 - sources."react-is-16.13.1" 105919 - sources."supports-color-7.2.0" 105920 - ]; 105921 - }) 105922 - (sources."figures-3.2.0" // { 105923 - dependencies = [ 105924 - sources."escape-string-regexp-1.0.5" 105925 - ]; 105926 - }) 105927 - sources."file-size-0.0.5" 105928 - sources."file-type-11.1.0" 105929 - sources."file-uri-to-path-1.0.0" 105930 - sources."filename-reserved-regex-2.0.0" 105931 - sources."filenamify-3.0.0" 105932 - (sources."fill-range-4.0.0" // { 105933 - dependencies = [ 105934 - sources."extend-shallow-2.0.1" 105935 - ]; 105936 - }) 105937 - sources."filter-obj-2.0.2" 105938 - (sources."finalhandler-1.1.2" // { 105939 - dependencies = [ 105940 - sources."debug-2.6.9" 105941 - ]; 105942 - }) 105943 - sources."find-up-5.0.0" 105944 - sources."flatten-1.0.3" 105945 - (sources."flush-write-stream-2.0.0" // { 105946 - dependencies = [ 105947 - sources."readable-stream-3.6.0" 105948 - ]; 105949 - }) 105950 - sources."fn.name-1.1.0" 105951 - sources."folder-walker-3.2.0" 105952 - sources."follow-redirects-1.14.4" 105953 - sources."for-in-1.0.2" 105954 - sources."form-data-3.0.1" 105955 - sources."forwarded-0.2.0" 105956 - sources."fragment-cache-0.2.1" 105957 - sources."fresh-0.5.2" 105958 - sources."from2-2.3.0" 105959 - sources."from2-array-0.0.4" 105960 - sources."fs-constants-1.0.0" 105961 - sources."fs-extra-8.1.0" 105962 - sources."fs-minipass-2.1.0" 105963 - sources."fs.realpath-1.0.0" 105964 - sources."fsevents-2.3.2" 105965 - sources."function-bind-1.1.1" 105966 - sources."fuzzy-0.1.3" 105967 - (sources."gauge-2.7.4" // { 105968 - dependencies = [ 105969 - sources."ansi-regex-2.1.1" 105970 - sources."is-fullwidth-code-point-1.0.0" 105971 - sources."string-width-1.0.2" 105972 - sources."strip-ansi-3.0.1" 105973 - ]; 105974 - }) 105975 - sources."gensync-1.0.0-beta.2" 105976 - sources."get-amd-module-type-3.0.0" 105977 - sources."get-caller-file-2.0.5" 105978 - sources."get-intrinsic-1.1.1" 105979 - sources."get-package-type-0.1.0" 105980 - sources."get-port-5.1.1" 105981 - sources."get-stream-6.0.1" 105982 - sources."get-value-2.0.6" 105983 - sources."gh-release-fetch-2.0.4" 105984 - sources."git-repo-info-2.1.1" 105985 - sources."gitconfiglocal-2.1.0" 105986 - sources."glob-7.2.0" 105987 - (sources."glob-parent-3.1.0" // { 105988 - dependencies = [ 105989 - sources."is-glob-3.1.0" 105990 - ]; 105991 - }) 105992 - sources."glob-to-regexp-0.3.0" 105993 - sources."global-cache-dir-2.0.0" 105994 - (sources."global-dirs-3.0.0" // { 105995 - dependencies = [ 105996 - sources."ini-2.0.0" 105997 - ]; 105998 - }) 105999 - sources."globals-11.12.0" 106000 - (sources."globby-11.0.4" // { 106001 - dependencies = [ 106002 - sources."@nodelib/fs.stat-2.0.5" 106003 - sources."array-union-2.1.0" 106004 - sources."braces-3.0.2" 106005 - sources."dir-glob-3.0.1" 106006 - sources."fast-glob-3.2.7" 106007 - sources."fill-range-7.0.1" 106008 - sources."glob-parent-5.1.2" 106009 - sources."ignore-5.1.8" 106010 - sources."is-number-7.0.0" 106011 - sources."micromatch-4.0.4" 106012 - sources."slash-3.0.0" 106013 - sources."to-regex-range-5.0.1" 106014 - ]; 106015 - }) 106016 - sources."gonzales-pe-4.3.0" 106017 - (sources."got-10.7.0" // { 106018 - dependencies = [ 106019 - sources."get-stream-5.2.0" 106020 - sources."type-fest-0.10.0" 106021 - ]; 106022 - }) 106023 - sources."graceful-fs-4.2.8" 106024 - sources."has-1.0.3" 106025 - (sources."has-ansi-2.0.0" // { 106026 - dependencies = [ 106027 - sources."ansi-regex-2.1.1" 106028 - ]; 106029 - }) 106030 - sources."has-flag-4.0.0" 106031 - (sources."has-glob-1.0.0" // { 106032 - dependencies = [ 106033 - sources."is-glob-3.1.0" 106034 - ]; 106035 - }) 106036 - sources."has-symbol-support-x-1.4.2" 106037 - sources."has-symbols-1.0.2" 106038 - sources."has-to-string-tag-x-1.4.1" 106039 - sources."has-unicode-2.0.1" 106040 - sources."has-value-1.0.0" 106041 - (sources."has-values-1.0.0" // { 106042 - dependencies = [ 106043 - sources."kind-of-4.0.0" 106044 - ]; 106045 - }) 106046 - sources."has-yarn-2.1.0" 106047 - (sources."hasbin-1.2.3" // { 106048 - dependencies = [ 106049 - sources."async-1.5.2" 106050 - ]; 106051 - }) 106052 - (sources."hasha-5.2.2" // { 106053 - dependencies = [ 106054 - sources."type-fest-0.8.1" 106055 - ]; 106056 - }) 106057 - sources."hosted-git-info-2.8.9" 106058 - sources."http-cache-semantics-4.1.0" 106059 - sources."http-call-5.3.0" 106060 - (sources."http-errors-1.7.2" // { 106061 - dependencies = [ 106062 - sources."inherits-2.0.3" 106063 - ]; 106064 - }) 106065 - sources."http-proxy-1.18.1" 106066 - (sources."http-proxy-middleware-1.3.1" // { 106067 - dependencies = [ 106068 - sources."braces-3.0.2" 106069 - sources."fill-range-7.0.1" 106070 - sources."is-number-7.0.0" 106071 - sources."micromatch-4.0.4" 106072 - sources."to-regex-range-5.0.1" 106073 - ]; 106074 - }) 106075 - sources."https-proxy-agent-5.0.0" 106076 - sources."human-signals-1.1.1" 106077 - sources."hyperlinker-1.0.0" 106078 - sources."iconv-lite-0.4.24" 106079 - sources."ieee754-1.2.1" 106080 - sources."ignore-4.0.6" 106081 - sources."ignore-walk-3.0.4" 106082 - sources."import-lazy-2.1.0" 106083 - sources."imurmurhash-0.1.4" 106084 - sources."indent-string-4.0.0" 106085 - sources."indexes-of-1.0.1" 106086 - sources."inflight-1.0.6" 106087 - sources."inherits-2.0.4" 106088 - sources."ini-1.3.8" 106089 - (sources."inquirer-6.5.2" // { 106090 - dependencies = [ 106091 - sources."ansi-escapes-3.2.0" 106092 - sources."ansi-regex-3.0.0" 106093 - sources."ansi-styles-3.2.1" 106094 - sources."chalk-2.4.2" 106095 - sources."color-convert-1.9.3" 106096 - sources."color-name-1.1.3" 106097 - sources."escape-string-regexp-1.0.5" 106098 - sources."figures-2.0.0" 106099 - sources."has-flag-3.0.0" 106100 - sources."is-fullwidth-code-point-2.0.0" 106101 - (sources."string-width-2.1.1" // { 106102 - dependencies = [ 106103 - sources."strip-ansi-4.0.0" 106104 - ]; 106105 - }) 106106 - (sources."strip-ansi-5.2.0" // { 106107 - dependencies = [ 106108 - sources."ansi-regex-4.1.0" 106109 - ]; 106110 - }) 106111 - sources."supports-color-5.5.0" 106112 - ]; 106113 - }) 106114 - sources."inquirer-autocomplete-prompt-1.4.0" 106115 - sources."into-stream-3.1.0" 106116 - sources."ipaddr.js-1.9.1" 106117 - sources."is-accessor-descriptor-1.0.0" 106118 - sources."is-arrayish-0.2.1" 106119 - sources."is-binary-path-2.1.0" 106120 - sources."is-buffer-1.1.6" 106121 - sources."is-builtin-module-3.1.0" 106122 - (sources."is-ci-2.0.0" // { 106123 - dependencies = [ 106124 - sources."ci-info-2.0.0" 106125 - ]; 106126 - }) 106127 - sources."is-core-module-2.8.0" 106128 - sources."is-data-descriptor-1.0.0" 106129 - sources."is-descriptor-1.0.2" 106130 - sources."is-docker-2.2.1" 106131 - sources."is-extendable-0.1.1" 106132 - sources."is-extglob-2.1.1" 106133 - sources."is-fullwidth-code-point-3.0.0" 106134 - sources."is-glob-4.0.3" 106135 - sources."is-installed-globally-0.4.0" 106136 - sources."is-interactive-1.0.0" 106137 - sources."is-module-1.0.0" 106138 - sources."is-natural-number-4.0.1" 106139 - sources."is-npm-5.0.0" 106140 - (sources."is-number-3.0.0" // { 106141 - dependencies = [ 106142 - sources."kind-of-3.2.2" 106143 - ]; 106144 - }) 106145 - sources."is-obj-2.0.0" 106146 - sources."is-object-1.0.2" 106147 - sources."is-observable-1.1.0" 106148 - sources."is-path-cwd-2.2.0" 106149 - sources."is-path-inside-3.0.3" 106150 - sources."is-plain-obj-3.0.0" 106151 - sources."is-plain-object-2.0.4" 106152 - sources."is-promise-2.2.2" 106153 - sources."is-reference-1.2.1" 106154 - sources."is-retry-allowed-1.2.0" 106155 - sources."is-stream-2.0.1" 106156 - sources."is-typedarray-1.0.0" 106157 - sources."is-unicode-supported-0.1.0" 106158 - sources."is-url-1.2.4" 106159 - sources."is-windows-1.0.2" 106160 - sources."is-wsl-2.2.0" 106161 - sources."is-yarn-global-0.3.0" 106162 - sources."isarray-1.0.0" 106163 - sources."iserror-0.0.2" 106164 - sources."isexe-2.0.0" 106165 - sources."isobject-3.0.1" 106166 - sources."isurl-1.0.0" 106167 - sources."jest-get-type-26.3.0" 106168 - sources."jest-validate-26.6.2" 106169 - (sources."jest-worker-26.6.2" // { 106170 - dependencies = [ 106171 - sources."supports-color-7.2.0" 106172 - ]; 106173 - }) 106174 - sources."js-string-escape-1.0.1" 106175 - sources."js-tokens-4.0.0" 106176 - sources."js-yaml-4.1.0" 106177 - sources."jsesc-2.5.2" 106178 - sources."json-buffer-3.0.1" 106179 - sources."json-parse-better-errors-1.0.2" 106180 - sources."json-parse-even-better-errors-2.3.1" 106181 - sources."json-schema-traverse-1.0.0" 106182 - sources."json5-2.2.0" 106183 - sources."jsonfile-4.0.0" 106184 - sources."junk-3.1.0" 106185 - sources."jwt-decode-3.1.2" 106186 - sources."keep-func-props-3.0.1" 106187 - sources."keyv-4.0.3" 106188 - sources."kind-of-6.0.3" 106189 - sources."kuler-2.0.0" 106190 - (sources."lambda-local-2.0.0" // { 106191 - dependencies = [ 106192 - sources."commander-7.2.0" 106193 - ]; 106194 - }) 106195 - sources."latest-version-5.1.0" 106196 - sources."lazystream-1.0.0" 106197 - sources."leven-3.1.0" 106198 - sources."levn-0.3.0" 106199 - sources."lines-and-columns-1.1.6" 106200 - (sources."listr-0.14.3" // { 106201 - dependencies = [ 106202 - sources."is-stream-1.1.0" 106203 - sources."p-map-2.1.0" 106204 - ]; 106205 - }) 106206 - sources."listr-silent-renderer-1.1.1" 106207 - (sources."listr-update-renderer-0.5.0" // { 106208 - dependencies = [ 106209 - sources."ansi-regex-2.1.1" 106210 - sources."ansi-styles-2.2.1" 106211 - sources."chalk-1.1.3" 106212 - sources."escape-string-regexp-1.0.5" 106213 - sources."figures-1.7.0" 106214 - sources."indent-string-3.2.0" 106215 - sources."log-symbols-1.0.2" 106216 - sources."strip-ansi-3.0.1" 106217 - sources."supports-color-2.0.0" 106218 - ]; 106219 - }) 106220 - (sources."listr-verbose-renderer-0.5.0" // { 106221 - dependencies = [ 106222 - sources."ansi-styles-3.2.1" 106223 - sources."chalk-2.4.2" 106224 - sources."color-convert-1.9.3" 106225 - sources."color-name-1.1.3" 106226 - sources."escape-string-regexp-1.0.5" 106227 - sources."figures-2.0.0" 106228 - sources."has-flag-3.0.0" 106229 - sources."supports-color-5.5.0" 106230 - ]; 106231 - }) 106232 - (sources."load-json-file-5.3.0" // { 106233 - dependencies = [ 106234 - sources."type-fest-0.3.1" 106235 - ]; 106236 - }) 106237 - sources."locate-path-6.0.0" 106238 - sources."lodash-4.17.21" 106239 - sources."lodash._reinterpolate-3.0.0" 106240 - sources."lodash.camelcase-4.3.0" 106241 - sources."lodash.debounce-4.0.8" 106242 - sources."lodash.deburr-4.1.0" 106243 - sources."lodash.defaults-4.2.0" 106244 - sources."lodash.difference-4.5.0" 106245 - sources."lodash.flatten-4.4.0" 106246 - sources."lodash.isempty-4.4.0" 106247 - sources."lodash.isplainobject-4.0.6" 106248 - sources."lodash.template-4.5.0" 106249 - sources."lodash.templatesettings-4.2.0" 106250 - sources."lodash.transform-4.6.0" 106251 - sources."lodash.union-4.6.0" 106252 - sources."log-process-errors-6.3.0" 106253 - sources."log-symbols-4.1.0" 106254 - (sources."log-update-2.3.0" // { 106255 - dependencies = [ 106256 - sources."ansi-escapes-3.2.0" 106257 - sources."ansi-regex-3.0.0" 106258 - sources."is-fullwidth-code-point-2.0.0" 106259 - sources."string-width-2.1.1" 106260 - sources."strip-ansi-4.0.0" 106261 - sources."wrap-ansi-3.0.1" 106262 - ]; 106263 - }) 106264 - (sources."logform-2.3.0" // { 106265 - dependencies = [ 106266 - sources."ms-2.1.3" 106267 - ]; 106268 - }) 106269 - sources."lowercase-keys-2.0.0" 106270 - sources."lru-cache-6.0.0" 106271 - sources."macos-release-2.5.0" 106272 - sources."magic-string-0.25.7" 106273 - (sources."make-dir-3.1.0" // { 106274 - dependencies = [ 106275 - sources."semver-6.3.0" 106276 - ]; 106277 - }) 106278 - sources."map-cache-0.2.2" 106279 - sources."map-obj-4.3.0" 106280 - sources."map-visit-1.0.0" 106281 - sources."maxstache-1.0.7" 106282 - (sources."maxstache-stream-1.0.4" // { 106283 - dependencies = [ 106284 - sources."pump-1.0.3" 106285 - ]; 106286 - }) 106287 - sources."md5-hex-3.0.1" 106288 - sources."media-typer-0.3.0" 106289 - sources."memoize-one-5.2.1" 106290 - sources."merge-descriptors-1.0.1" 106291 - (sources."merge-options-3.0.4" // { 106292 - dependencies = [ 106293 - sources."is-plain-obj-2.1.0" 106294 - ]; 106295 - }) 106296 - sources."merge-stream-2.0.0" 106297 - sources."merge2-1.4.1" 106298 - sources."methods-1.1.2" 106299 - sources."micro-api-client-3.3.0" 106300 - sources."micro-memoize-4.0.9" 106301 - sources."micromatch-3.1.10" 106302 - sources."mime-1.6.0" 106303 - sources."mime-db-1.50.0" 106304 - sources."mime-types-2.1.33" 106305 - sources."mimic-fn-3.1.0" 106306 - sources."mimic-response-2.1.0" 106307 - sources."minimatch-3.0.4" 106308 - sources."minimist-1.2.5" 106309 - sources."minipass-3.1.5" 106310 - sources."minizlib-2.1.2" 106311 - (sources."mixin-deep-1.3.2" // { 106312 - dependencies = [ 106313 - sources."is-extendable-1.0.1" 106314 - ]; 106315 - }) 106316 - sources."mkdirp-0.5.5" 106317 - sources."module-definition-3.3.1" 106318 - sources."moize-6.1.0" 106319 - sources."move-file-2.1.0" 106320 - sources."ms-2.0.0" 106321 - (sources."multiparty-4.2.2" // { 106322 - dependencies = [ 106323 - sources."http-errors-1.8.0" 106324 - sources."safe-buffer-5.2.1" 106325 - sources."setprototypeof-1.2.0" 106326 - ]; 106327 - }) 106328 - sources."mute-stream-0.0.7" 106329 - sources."nanoid-3.1.30" 106330 - sources."nanomatch-1.2.13" 106331 - sources."natural-orderby-2.0.3" 106332 - (sources."needle-2.9.1" // { 106333 - dependencies = [ 106334 - sources."debug-3.2.7" 106335 - sources."ms-2.1.3" 106336 - ]; 106337 - }) 106338 - sources."negotiator-0.6.2" 106339 - sources."nested-error-stacks-2.1.0" 106340 - (sources."netlify-8.0.2" // { 106341 - dependencies = [ 106342 - sources."qs-6.10.1" 106343 - ]; 106344 - }) 106345 - sources."netlify-headers-parser-4.0.1" 106346 - sources."netlify-redirect-parser-11.0.2" 106347 - sources."netlify-redirector-0.2.1" 106348 - sources."nice-try-1.0.5" 106349 - sources."node-fetch-2.6.5" 106350 - sources."node-gyp-build-4.3.0" 106351 - (sources."node-pre-gyp-0.13.0" // { 106352 - dependencies = [ 106353 - sources."chownr-1.1.4" 106354 - sources."fs-minipass-1.2.7" 106355 - sources."minipass-2.9.0" 106356 - sources."minizlib-1.3.3" 106357 - sources."nopt-4.0.3" 106358 - sources."rimraf-2.7.1" 106359 - sources."safe-buffer-5.2.1" 106360 - sources."semver-5.7.1" 106361 - sources."tar-4.4.19" 106362 - sources."yallist-3.1.1" 106363 - ]; 106364 - }) 106365 - sources."node-releases-2.0.0" 106366 - sources."node-source-walk-4.2.0" 106367 - (sources."node-version-alias-1.0.1" // { 106368 - dependencies = [ 106369 - sources."@jest/types-25.5.0" 106370 - sources."@types/istanbul-reports-1.1.2" 106371 - sources."ansi-styles-4.3.0" 106372 - sources."camelcase-5.3.1" 106373 - sources."chalk-3.0.0" 106374 - sources."jest-get-type-25.2.6" 106375 - sources."jest-validate-25.5.0" 106376 - sources."pretty-format-25.5.0" 106377 - sources."react-is-16.13.1" 106378 - sources."supports-color-7.2.0" 106379 - ]; 106380 - }) 106381 - sources."noop2-2.0.0" 106382 - sources."nopt-5.0.0" 106383 - (sources."normalize-node-version-10.0.0" // { 106384 - dependencies = [ 106385 - sources."@jest/types-25.5.0" 106386 - sources."@types/istanbul-reports-1.1.2" 106387 - sources."ansi-styles-4.3.0" 106388 - sources."camelcase-5.3.1" 106389 - sources."chalk-3.0.0" 106390 - sources."jest-get-type-25.2.6" 106391 - sources."jest-validate-25.5.0" 106392 - sources."pretty-format-25.5.0" 106393 - sources."react-is-16.13.1" 106394 - sources."supports-color-7.2.0" 106395 - ]; 106396 - }) 106397 - (sources."normalize-package-data-2.5.0" // { 106398 - dependencies = [ 106399 - sources."semver-5.7.1" 106400 - ]; 106401 - }) 106402 - sources."normalize-path-3.0.0" 106403 - sources."normalize-url-6.1.0" 106404 - sources."npm-bundled-1.1.2" 106405 - sources."npm-normalize-package-bin-1.0.1" 106406 - sources."npm-packlist-1.4.8" 106407 - sources."npm-run-path-4.0.1" 106408 - sources."npmlog-4.1.2" 106409 - sources."number-is-nan-1.0.1" 106410 - sources."object-assign-4.1.1" 106411 - (sources."object-copy-0.1.0" // { 106412 - dependencies = [ 106413 - sources."define-property-0.2.5" 106414 - sources."is-accessor-descriptor-0.1.6" 106415 - sources."is-data-descriptor-0.1.4" 106416 - (sources."is-descriptor-0.1.6" // { 106417 - dependencies = [ 106418 - sources."kind-of-5.1.0" 106419 - ]; 106420 - }) 106421 - sources."kind-of-3.2.2" 106422 - ]; 106423 - }) 106424 - sources."object-inspect-1.11.0" 106425 - sources."object-keys-1.1.1" 106426 - sources."object-treeify-1.1.33" 106427 - sources."object-visit-1.0.1" 106428 - sources."object.assign-4.1.2" 106429 - sources."object.pick-1.3.0" 106430 - (sources."oclif-plugin-completion-0.6.0" // { 106431 - dependencies = [ 106432 - sources."tslib-2.3.1" 106433 - ]; 106434 - }) 106435 - sources."omit.js-2.0.2" 106436 - sources."on-finished-2.3.0" 106437 - sources."on-headers-1.0.2" 106438 - sources."once-1.4.0" 106439 - sources."one-time-1.0.0" 106440 - (sources."onetime-5.1.2" // { 106441 - dependencies = [ 106442 - sources."mimic-fn-2.1.0" 106443 - ]; 106444 - }) 106445 - sources."open-7.4.2" 106446 - (sources."opn-5.5.0" // { 106447 - dependencies = [ 106448 - sources."is-wsl-1.1.0" 106449 - ]; 106450 - }) 106451 - sources."optionator-0.8.3" 106452 - (sources."ora-5.4.1" // { 106453 - dependencies = [ 106454 - sources."cli-cursor-3.1.0" 106455 - sources."restore-cursor-3.1.0" 106456 - ]; 106457 - }) 106458 - sources."os-homedir-1.0.2" 106459 - sources."os-name-4.0.1" 106460 - sources."os-tmpdir-1.0.2" 106461 - sources."osenv-0.1.5" 106462 - (sources."p-all-2.1.0" // { 106463 - dependencies = [ 106464 - sources."p-map-2.1.0" 106465 - ]; 106466 - }) 106467 - sources."p-cancelable-2.1.1" 106468 - (sources."p-event-4.2.0" // { 106469 - dependencies = [ 106470 - sources."p-timeout-3.2.0" 106471 - ]; 106472 - }) 106473 - (sources."p-every-2.0.0" // { 106474 - dependencies = [ 106475 - sources."p-map-2.1.0" 106476 - ]; 106477 - }) 106478 - (sources."p-filter-2.1.0" // { 106479 - dependencies = [ 106480 - sources."p-map-2.1.0" 106481 - ]; 106482 - }) 106483 - sources."p-finally-1.0.0" 106484 - sources."p-is-promise-1.1.0" 106485 - sources."p-limit-3.1.0" 106486 - sources."p-locate-5.0.0" 106487 - sources."p-map-4.0.0" 106488 - sources."p-reduce-2.1.0" 106489 - sources."p-timeout-2.0.1" 106490 - sources."p-try-2.2.0" 106491 - (sources."p-wait-for-3.2.0" // { 106492 - dependencies = [ 106493 - sources."p-timeout-3.2.0" 106494 - ]; 106495 - }) 106496 - (sources."package-json-6.5.0" // { 106497 - dependencies = [ 106498 - sources."@sindresorhus/is-0.14.0" 106499 - sources."@szmarczak/http-timer-1.1.2" 106500 - (sources."cacheable-request-6.1.0" // { 106501 - dependencies = [ 106502 - sources."get-stream-5.2.0" 106503 - sources."lowercase-keys-2.0.0" 106504 - ]; 106505 - }) 106506 - sources."decompress-response-3.3.0" 106507 - sources."defer-to-connect-1.1.3" 106508 - sources."get-stream-4.1.0" 106509 - sources."got-9.6.0" 106510 - sources."json-buffer-3.0.0" 106511 - sources."keyv-3.1.0" 106512 - sources."lowercase-keys-1.0.1" 106513 - sources."mimic-response-1.0.1" 106514 - sources."normalize-url-4.5.1" 106515 - sources."p-cancelable-1.1.0" 106516 - sources."responselike-1.0.2" 106517 - sources."semver-6.3.0" 106518 - sources."to-readable-stream-1.0.0" 106519 - ]; 106520 - }) 106521 - sources."parallel-transform-1.2.0" 106522 - sources."parse-github-url-1.0.2" 106523 - sources."parse-gitignore-1.0.1" 106524 - sources."parse-json-4.0.0" 106525 - sources."parse-ms-2.1.0" 106526 - sources."parseurl-1.3.3" 106527 - sources."pascalcase-0.1.1" 106528 - (sources."password-prompt-1.1.2" // { 106529 - dependencies = [ 106530 - sources."ansi-escapes-3.2.0" 106531 - sources."cross-spawn-6.0.5" 106532 - sources."path-key-2.0.1" 106533 - sources."semver-5.7.1" 106534 - sources."shebang-command-1.2.0" 106535 - sources."shebang-regex-1.0.0" 106536 - sources."which-1.3.1" 106537 - ]; 106538 - }) 106539 - sources."path-dirname-1.0.2" 106540 - sources."path-exists-4.0.0" 106541 - sources."path-is-absolute-1.0.1" 106542 - sources."path-key-3.1.1" 106543 - sources."path-parse-1.0.7" 106544 - sources."path-to-regexp-0.1.7" 106545 - sources."path-type-4.0.0" 106546 - sources."pend-1.2.0" 106547 - sources."picocolors-1.0.0" 106548 - sources."picomatch-2.3.0" 106549 - sources."pify-4.0.1" 106550 - sources."pinkie-2.0.4" 106551 - sources."pinkie-promise-2.0.1" 106552 - sources."pkg-dir-5.0.0" 106553 - sources."posix-character-classes-0.1.1" 106554 - (sources."postcss-8.3.9" // { 106555 - dependencies = [ 106556 - sources."picocolors-0.2.1" 106557 - ]; 106558 - }) 106559 - sources."postcss-values-parser-2.0.1" 106560 - sources."precinct-8.1.0" 106561 - sources."precond-0.2.3" 106562 - sources."prelude-ls-1.1.2" 106563 - sources."prepend-http-2.0.0" 106564 - (sources."pretty-format-26.6.2" // { 106565 - dependencies = [ 106566 - sources."ansi-styles-4.3.0" 106567 - ]; 106568 - }) 106569 - sources."pretty-ms-7.0.1" 106570 - sources."prettyjson-1.2.1" 106571 - sources."printj-1.1.2" 106572 - sources."process-es6-0.11.6" 106573 - sources."process-nextick-args-2.0.1" 106574 - sources."proxy-addr-2.0.7" 106575 - sources."ps-list-7.2.0" 106576 - sources."pump-3.0.0" 106577 - sources."punycode-2.1.1" 106578 - sources."pupa-2.1.1" 106579 - sources."qs-6.7.0" 106580 - sources."query-string-5.1.1" 106581 - sources."queue-microtask-1.2.3" 106582 - sources."random-bytes-1.0.0" 106583 - sources."randombytes-2.1.0" 106584 - sources."range-parser-1.2.1" 106585 - (sources."raw-body-2.4.1" // { 106586 - dependencies = [ 106587 - sources."http-errors-1.7.3" 106588 - ]; 106589 - }) 106590 - sources."rc-1.2.8" 106591 - sources."react-is-17.0.2" 106592 - sources."read-package-json-fast-2.0.3" 106593 - (sources."read-pkg-5.2.0" // { 106594 - dependencies = [ 106595 - sources."parse-json-5.2.0" 106596 - sources."type-fest-0.6.0" 106597 - ]; 106598 - }) 106599 - (sources."read-pkg-up-7.0.1" // { 106600 - dependencies = [ 106601 - sources."find-up-4.1.0" 106602 - sources."locate-path-5.0.0" 106603 - sources."p-limit-2.3.0" 106604 - sources."p-locate-4.1.0" 106605 - sources."type-fest-0.8.1" 106606 - ]; 106607 - }) 106608 - sources."readable-stream-2.3.7" 106609 - sources."readdir-glob-1.1.1" 106610 - sources."readdirp-3.6.0" 106611 - sources."redeyed-2.1.1" 106612 - sources."regenerate-1.4.2" 106613 - sources."regenerate-unicode-properties-9.0.0" 106614 - sources."regenerator-runtime-0.13.9" 106615 - sources."regenerator-transform-0.14.5" 106616 - sources."regex-not-1.0.2" 106617 - sources."regexpu-core-4.8.0" 106618 - sources."registry-auth-token-4.2.1" 106619 - sources."registry-url-5.1.0" 106620 - sources."regjsgen-0.5.2" 106621 - (sources."regjsparser-0.7.0" // { 106622 - dependencies = [ 106623 - sources."jsesc-0.5.0" 106624 - ]; 106625 - }) 106626 - sources."remove-trailing-separator-1.1.0" 106627 - sources."repeat-element-1.1.4" 106628 - sources."repeat-string-1.6.1" 106629 - sources."require-directory-2.1.1" 106630 - sources."require-from-string-2.0.2" 106631 - sources."require-main-filename-2.0.0" 106632 - sources."require-package-name-2.0.1" 106633 - sources."requires-port-1.0.0" 106634 - sources."resolve-1.20.0" 106635 - sources."resolve-from-5.0.0" 106636 - sources."resolve-url-0.2.1" 106637 - sources."responselike-2.0.0" 106638 - (sources."restore-cursor-2.0.0" // { 106639 - dependencies = [ 106640 - sources."mimic-fn-1.2.0" 106641 - sources."onetime-2.0.1" 106642 - ]; 106643 - }) 106644 - sources."ret-0.1.15" 106645 - sources."reusify-1.0.4" 106646 - sources."rfdc-1.3.0" 106647 - sources."rimraf-3.0.2" 106648 - sources."rollup-2.58.0" 106649 - (sources."rollup-plugin-inject-3.0.2" // { 106650 - dependencies = [ 106651 - sources."estree-walker-0.6.1" 106652 - ]; 106653 - }) 106654 - sources."rollup-plugin-node-polyfills-0.2.1" 106655 - sources."rollup-plugin-terser-7.0.2" 106656 - (sources."rollup-pluginutils-2.8.2" // { 106657 - dependencies = [ 106658 - sources."estree-walker-0.6.1" 106659 - ]; 106660 - }) 106661 - sources."run-async-2.4.1" 106662 - sources."run-parallel-1.2.0" 106663 - sources."rxjs-6.6.7" 106664 - sources."safe-buffer-5.1.2" 106665 - sources."safe-json-stringify-1.2.0" 106666 - sources."safe-regex-1.1.0" 106667 - sources."safe-stable-stringify-1.1.1" 106668 - sources."safer-buffer-2.1.2" 106669 - sources."sax-1.2.4" 106670 - sources."seek-bzip-1.0.6" 106671 - sources."semver-7.3.5" 106672 - (sources."semver-diff-3.1.1" // { 106673 - dependencies = [ 106674 - sources."semver-6.3.0" 106675 - ]; 106676 - }) 106677 - (sources."send-0.17.1" // { 106678 - dependencies = [ 106679 - (sources."debug-2.6.9" // { 106680 - dependencies = [ 106681 - sources."ms-2.0.0" 106682 - ]; 106683 - }) 106684 - sources."ms-2.1.1" 106685 - ]; 106686 - }) 106687 - sources."serialize-javascript-4.0.0" 106688 - sources."serve-static-1.14.1" 106689 - sources."set-blocking-2.0.0" 106690 - (sources."set-value-2.0.1" // { 106691 - dependencies = [ 106692 - sources."extend-shallow-2.0.1" 106693 - ]; 106694 - }) 106695 - sources."setprototypeof-1.1.1" 106696 - sources."shebang-command-2.0.0" 106697 - sources."shebang-regex-3.0.0" 106698 - sources."side-channel-1.0.4" 106699 - sources."signal-exit-3.0.5" 106700 - (sources."simple-swizzle-0.2.2" // { 106701 - dependencies = [ 106702 - sources."is-arrayish-0.3.2" 106703 - ]; 106704 - }) 106705 - sources."slash-2.0.0" 106706 - sources."slice-ansi-0.0.4" 106707 - (sources."snapdragon-0.8.2" // { 106708 - dependencies = [ 106709 - sources."debug-2.6.9" 106710 - sources."define-property-0.2.5" 106711 - sources."extend-shallow-2.0.1" 106712 - (sources."is-accessor-descriptor-0.1.6" // { 106713 - dependencies = [ 106714 - sources."kind-of-3.2.2" 106715 - ]; 106716 - }) 106717 - (sources."is-data-descriptor-0.1.4" // { 106718 - dependencies = [ 106719 - sources."kind-of-3.2.2" 106720 - ]; 106721 - }) 106722 - sources."is-descriptor-0.1.6" 106723 - sources."kind-of-5.1.0" 106724 - ]; 106725 - }) 106726 - (sources."snapdragon-node-2.1.1" // { 106727 - dependencies = [ 106728 - sources."define-property-1.0.0" 106729 - ]; 106730 - }) 106731 - (sources."snapdragon-util-3.0.1" // { 106732 - dependencies = [ 106733 - sources."kind-of-3.2.2" 106734 - ]; 106735 - }) 106736 - (sources."sort-keys-1.1.2" // { 106737 - dependencies = [ 106738 - sources."is-plain-obj-1.1.0" 106739 - ]; 106740 - }) 106741 - sources."sort-keys-length-1.0.1" 106742 - sources."source-map-0.5.7" 106743 - sources."source-map-js-0.6.2" 106744 - sources."source-map-resolve-0.5.3" 106745 - (sources."source-map-support-0.5.20" // { 106746 - dependencies = [ 106747 - sources."source-map-0.6.1" 106748 - ]; 106749 - }) 106750 - sources."source-map-url-0.4.1" 106751 - sources."sourcemap-codec-1.4.8" 106752 - sources."spdx-correct-3.1.1" 106753 - sources."spdx-exceptions-2.3.0" 106754 - sources."spdx-expression-parse-3.0.1" 106755 - sources."spdx-license-ids-3.0.10" 106756 - sources."split-string-3.1.0" 106757 - sources."split2-1.1.1" 106758 - sources."sprintf-js-1.0.3" 106759 - sources."stack-generator-2.0.5" 106760 - sources."stack-trace-0.0.10" 106761 - sources."stackframe-1.2.0" 106762 - (sources."static-extend-0.1.2" // { 106763 - dependencies = [ 106764 - sources."define-property-0.2.5" 106765 - (sources."is-accessor-descriptor-0.1.6" // { 106766 - dependencies = [ 106767 - sources."kind-of-3.2.2" 106768 - ]; 106769 - }) 106770 - (sources."is-data-descriptor-0.1.4" // { 106771 - dependencies = [ 106772 - sources."kind-of-3.2.2" 106773 - ]; 106774 - }) 106775 - sources."is-descriptor-0.1.6" 106776 - sources."kind-of-5.1.0" 106777 - ]; 106778 - }) 106779 - (sources."static-server-2.2.1" // { 106780 - dependencies = [ 106781 - sources."ansi-regex-0.2.1" 106782 - sources."ansi-styles-1.1.0" 106783 - sources."chalk-0.5.1" 106784 - sources."escape-string-regexp-1.0.5" 106785 - sources."has-ansi-0.1.0" 106786 - sources."strip-ansi-0.3.0" 106787 - sources."supports-color-0.2.0" 106788 - ]; 106789 - }) 106790 - sources."statsd-client-0.4.7" 106791 - sources."statuses-1.5.0" 106792 - sources."strict-uri-encode-1.1.0" 106793 - sources."string-width-4.2.3" 106794 - sources."string_decoder-1.1.1" 106795 - sources."strip-ansi-6.0.1" 106796 - sources."strip-ansi-control-characters-2.0.0" 106797 - sources."strip-bom-3.0.0" 106798 - sources."strip-dirs-2.1.0" 106799 - sources."strip-final-newline-2.0.0" 106800 - sources."strip-json-comments-2.0.1" 106801 - (sources."strip-outer-1.0.1" // { 106802 - dependencies = [ 106803 - sources."escape-string-regexp-1.0.5" 106804 - ]; 106805 - }) 106806 - sources."supports-color-8.1.1" 106807 - (sources."supports-hyperlinks-1.0.1" // { 106808 - dependencies = [ 106809 - sources."has-flag-2.0.0" 106810 - (sources."supports-color-5.5.0" // { 106811 - dependencies = [ 106812 - sources."has-flag-3.0.0" 106813 - ]; 106814 - }) 106815 - ]; 106816 - }) 106817 - sources."symbol-observable-1.2.0" 106818 - (sources."tar-6.1.11" // { 106819 - dependencies = [ 106820 - sources."mkdirp-1.0.4" 106821 - ]; 106822 - }) 106823 - (sources."tar-stream-2.2.0" // { 106824 - dependencies = [ 106825 - sources."readable-stream-3.6.0" 106826 - ]; 106827 - }) 106828 - sources."temp-dir-2.0.0" 106829 - (sources."tempy-1.0.1" // { 106830 - dependencies = [ 106831 - sources."type-fest-0.16.0" 106832 - ]; 106833 - }) 106834 - (sources."terser-5.9.0" // { 106835 - dependencies = [ 106836 - sources."source-map-0.7.3" 106837 - ]; 106838 - }) 106839 - sources."text-hex-1.0.0" 106840 - sources."through-2.3.8" 106841 - sources."through2-2.0.5" 106842 - sources."through2-filter-3.0.0" 106843 - sources."through2-map-3.0.0" 106844 - sources."time-zone-1.0.0" 106845 - sources."timed-out-4.0.1" 106846 - sources."tmp-0.2.1" 106847 - sources."tmp-promise-3.0.2" 106848 - sources."to-buffer-1.1.1" 106849 - sources."to-fast-properties-2.0.0" 106850 - (sources."to-object-path-0.3.0" // { 106851 - dependencies = [ 106852 - sources."kind-of-3.2.2" 106853 - ]; 106854 - }) 106855 - sources."to-readable-stream-2.1.0" 106856 - sources."to-regex-3.0.2" 106857 - sources."to-regex-range-2.1.1" 106858 - sources."toidentifier-1.0.0" 106859 - sources."toml-3.0.0" 106860 - sources."tomlify-j0.4-3.0.0" 106861 - sources."tr46-0.0.3" 106862 - sources."treeify-1.1.0" 106863 - (sources."trim-repeated-1.0.0" // { 106864 - dependencies = [ 106865 - sources."escape-string-regexp-1.0.5" 106866 - ]; 106867 - }) 106868 - sources."triple-beam-1.3.0" 106869 - sources."tslib-1.14.1" 106870 - sources."tsutils-3.21.0" 106871 - sources."tunnel-agent-0.6.0" 106872 - sources."type-check-0.3.2" 106873 - sources."type-fest-0.21.3" 106874 - sources."type-is-1.6.18" 106875 - sources."typedarray-to-buffer-3.1.5" 106876 - sources."typescript-4.4.4" 106877 - sources."uid-safe-2.1.5" 106878 - sources."unbzip2-stream-1.4.3" 106879 - sources."unicode-canonical-property-names-ecmascript-2.0.0" 106880 - sources."unicode-match-property-ecmascript-2.0.0" 106881 - sources."unicode-match-property-value-ecmascript-2.0.0" 106882 - sources."unicode-property-aliases-ecmascript-2.0.0" 106883 - sources."union-value-1.0.1" 106884 - sources."uniq-1.0.1" 106885 - sources."unique-string-2.0.0" 106886 - sources."universal-user-agent-6.0.0" 106887 - sources."universalify-0.1.2" 106888 - (sources."unixify-1.0.0" // { 106889 - dependencies = [ 106890 - sources."normalize-path-2.1.1" 106891 - ]; 106892 - }) 106893 - sources."unpipe-1.0.0" 106894 - (sources."unset-value-1.0.0" // { 106895 - dependencies = [ 106896 - (sources."has-value-0.3.1" // { 106897 - dependencies = [ 106898 - sources."isobject-2.1.0" 106899 - ]; 106900 - }) 106901 - sources."has-values-0.1.4" 106902 - ]; 106903 - }) 106904 - sources."update-notifier-5.1.0" 106905 - sources."uri-js-4.4.1" 106906 - sources."urix-0.1.0" 106907 - sources."url-parse-lax-3.0.0" 106908 - sources."url-to-options-1.0.1" 106909 - sources."use-3.1.1" 106910 - sources."util-deprecate-1.0.2" 106911 - sources."utils-merge-1.0.1" 106912 - sources."uuid-8.3.2" 106913 - sources."validate-npm-package-license-3.0.4" 106914 - sources."validate-npm-package-name-3.0.0" 106915 - sources."vary-1.1.2" 106916 - (sources."wait-port-0.2.9" // { 106917 - dependencies = [ 106918 - sources."ansi-styles-3.2.1" 106919 - sources."chalk-2.4.2" 106920 - sources."color-convert-1.9.3" 106921 - sources."color-name-1.1.3" 106922 - sources."commander-3.0.2" 106923 - sources."escape-string-regexp-1.0.5" 106924 - sources."has-flag-3.0.0" 106925 - sources."supports-color-5.5.0" 106926 - ]; 106927 - }) 106928 - sources."wcwidth-1.0.1" 106929 - sources."webidl-conversions-3.0.1" 106930 - sources."well-known-symbols-2.0.0" 106931 - sources."whatwg-url-5.0.0" 106932 - sources."which-2.0.2" 106933 - sources."which-module-2.0.0" 106934 - sources."wide-align-1.1.5" 106935 - sources."widest-line-3.1.0" 106936 - (sources."windows-release-4.0.0" // { 106937 - dependencies = [ 106938 - sources."execa-4.1.0" 106939 - sources."get-stream-5.2.0" 106940 - ]; 106941 - }) 106942 - (sources."winston-3.3.3" // { 106943 - dependencies = [ 106944 - sources."readable-stream-3.6.0" 106945 - ]; 106946 - }) 106947 - sources."winston-transport-4.4.0" 106948 - sources."word-wrap-1.2.3" 106949 - (sources."wrap-ansi-6.2.0" // { 106950 - dependencies = [ 106951 - sources."ansi-styles-4.3.0" 106952 - ]; 106953 - }) 106954 - sources."wrappy-1.0.2" 106955 - sources."write-file-atomic-3.0.3" 106956 - sources."xdg-basedir-4.0.0" 106957 - sources."xtend-4.0.2" 106958 - sources."y18n-4.0.3" 106959 - sources."yallist-4.0.0" 106960 - (sources."yargs-15.4.1" // { 106961 - dependencies = [ 106962 - sources."find-up-4.1.0" 106963 - sources."locate-path-5.0.0" 106964 - sources."p-limit-2.3.0" 106965 - sources."p-locate-4.1.0" 106966 - ]; 106967 - }) 106968 - (sources."yargs-parser-18.1.3" // { 106969 - dependencies = [ 106970 - sources."camelcase-5.3.1" 106971 - ]; 106972 - }) 106973 - sources."yarn-1.22.15" 106974 - sources."yauzl-2.10.0" 106975 - sources."yocto-queue-0.1.0" 106976 - (sources."zip-stream-4.1.0" // { 106977 - dependencies = [ 106978 - sources."readable-stream-3.6.0" 106979 - ]; 106980 - }) 106981 - ]; 106982 - buildInputs = globalBuildInputs; 106983 - meta = { 106984 - description = "Netlify command line tool"; 106985 - homepage = "https://github.com/netlify/cli"; 106986 - license = "MIT"; 106987 - }; 106988 - production = true; 106989 - bypassCache = true; 106990 - reconstructLock = true; 106991 - }; 106992 103952 nijs = nodeEnv.buildNodePackage { 106993 103953 name = "nijs"; 106994 103954 packageName = "nijs"; ··· 107014 103974 node-gyp = nodeEnv.buildNodePackage { 107015 103975 name = "node-gyp"; 107016 103976 packageName = "node-gyp"; 107017 - version = "8.2.0"; 103977 + version = "8.3.0"; 107018 103978 src = fetchurl { 107019 - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-8.2.0.tgz"; 107020 - sha512 = "KG8SdcoAnw2d6augGwl1kOayALUrXW/P2uOAm2J2+nmW/HjZo7y+8TDg7LejxbekOOSv3kzhq+NSUYkIDAX8eA=="; 103979 + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-8.3.0.tgz"; 103980 + sha512 = "e+vmKyTiybKgrmvs4M2REFKCnOd+NcrAAnn99Yko6NQA+zZdMlRvbIUHojfsHrSQ1CddLgZnHicnEVgDHziJzA=="; 107021 103981 }; 107022 103982 dependencies = [ 107023 103983 sources."@gar/promisify-1.1.2" ··· 107068 104028 sources."isarray-1.0.0" 107069 104029 sources."isexe-2.0.0" 107070 104030 sources."lru-cache-6.0.0" 107071 - sources."make-fetch-happen-8.0.14" 104031 + sources."make-fetch-happen-9.1.0" 107072 104032 sources."minimatch-3.0.4" 107073 104033 sources."minipass-3.1.5" 107074 104034 sources."minipass-collect-1.0.2" ··· 107079 104039 sources."minizlib-2.1.2" 107080 104040 sources."mkdirp-1.0.4" 107081 104041 sources."ms-2.1.2" 104042 + sources."negotiator-0.6.2" 107082 104043 sources."nopt-5.0.0" 107083 104044 sources."npmlog-4.1.2" 107084 104045 sources."number-is-nan-1.0.1" ··· 107099 104060 sources."signal-exit-3.0.5" 107100 104061 sources."smart-buffer-4.2.0" 107101 104062 sources."socks-2.6.1" 107102 - sources."socks-proxy-agent-5.0.1" 104063 + sources."socks-proxy-agent-6.1.0" 107103 104064 sources."ssri-8.0.1" 107104 104065 sources."string-width-1.0.2" 107105 104066 sources."string_decoder-1.1.1" ··· 107532 104493 node-red = nodeEnv.buildNodePackage { 107533 104494 name = "node-red"; 107534 104495 packageName = "node-red"; 107535 - version = "2.0.6"; 104496 + version = "2.1.3"; 107536 104497 src = fetchurl { 107537 - url = "https://registry.npmjs.org/node-red/-/node-red-2.0.6.tgz"; 107538 - sha512 = "UdQPwnciQMcFIXjldFhP9XfqBHcFYtAIXDt3be8kp+OZPxRqjxSDI5EuIfxY8QnUK1YVqwDV+5CKDhh97+dA0w=="; 104498 + url = "https://registry.npmjs.org/node-red/-/node-red-2.1.3.tgz"; 104499 + sha512 = "IRpc8+1CR3jeZQOSX+iAE7ggu/sRfVsv6Cp/flRElIyhuZeFanbsU319KOIPnfuqF4ijwPiwWFj2zjtDllN++Q=="; 107539 104500 }; 107540 104501 dependencies = [ 107541 104502 sources."@babel/runtime-7.15.4" 107542 - sources."@mapbox/node-pre-gyp-1.0.5" 107543 - sources."@node-red/editor-api-2.0.6" 107544 - sources."@node-red/editor-client-2.0.6" 107545 - (sources."@node-red/nodes-2.0.6" // { 104503 + sources."@mapbox/node-pre-gyp-1.0.6" 104504 + sources."@node-red/editor-api-2.1.3" 104505 + sources."@node-red/editor-client-2.1.3" 104506 + (sources."@node-red/nodes-2.1.3" // { 107546 104507 dependencies = [ 107547 104508 sources."http-errors-1.7.3" 107548 104509 sources."iconv-lite-0.6.3" ··· 107555 104516 }) 107556 104517 ]; 107557 104518 }) 107558 - sources."@node-red/registry-2.0.6" 107559 - sources."@node-red/runtime-2.0.6" 107560 - sources."@node-red/util-2.0.6" 104519 + sources."@node-red/registry-2.1.3" 104520 + sources."@node-red/runtime-2.1.3" 104521 + sources."@node-red/util-2.1.3" 107561 104522 sources."@sindresorhus/is-4.2.0" 107562 104523 sources."@szmarczak/http-timer-4.0.6" 107563 104524 sources."@types/cacheable-request-6.0.2" 107564 104525 sources."@types/http-cache-semantics-4.0.1" 107565 104526 sources."@types/keyv-3.1.3" 107566 - sources."@types/node-16.11.0" 104527 + sources."@types/node-16.11.6" 107567 104528 sources."@types/responselike-1.0.0" 107568 104529 sources."abbrev-1.1.1" 107569 104530 sources."accepts-1.3.7" 107570 - sources."acorn-8.4.1" 107571 - sources."acorn-walk-8.1.1" 104531 + sources."acorn-8.5.0" 104532 + sources."acorn-walk-8.2.0" 107572 104533 (sources."agent-base-6.0.2" // { 107573 104534 dependencies = [ 107574 104535 sources."debug-4.3.2" 107575 104536 sources."ms-2.1.2" 107576 104537 ]; 107577 104538 }) 107578 - sources."ajv-8.6.2" 104539 + sources."ajv-8.6.3" 107579 104540 sources."ansi-colors-4.1.1" 107580 - sources."ansi-regex-2.1.1" 104541 + sources."ansi-regex-3.0.0" 107581 104542 sources."append-field-1.0.0" 107582 - sources."aproba-1.2.0" 107583 - (sources."are-we-there-yet-1.1.7" // { 104543 + sources."aproba-2.0.0" 104544 + (sources."are-we-there-yet-2.0.0" // { 107584 104545 dependencies = [ 107585 - sources."isarray-1.0.0" 107586 - sources."readable-stream-2.3.7" 107587 - sources."safe-buffer-5.1.2" 107588 - sources."string_decoder-1.1.1" 104546 + sources."readable-stream-3.6.0" 104547 + sources."string_decoder-1.3.0" 107589 104548 ]; 107590 104549 }) 107591 104550 sources."argparse-1.0.10" ··· 107625 104584 sources."cli-table-0.3.6" 107626 104585 sources."clone-2.1.2" 107627 104586 sources."clone-response-1.0.2" 107628 - sources."code-point-at-1.1.0" 104587 + sources."color-support-1.1.3" 107629 104588 sources."colors-1.0.3" 107630 104589 sources."combined-stream-1.0.8" 107631 104590 sources."commist-1.1.0" ··· 107666 104625 sources."defer-to-connect-2.0.1" 107667 104626 sources."delayed-stream-1.0.0" 107668 104627 sources."delegates-1.0.0" 107669 - sources."denque-1.5.0" 104628 + sources."denque-2.0.1" 107670 104629 sources."depd-1.1.2" 107671 104630 sources."destroy-1.0.4" 107672 104631 sources."detect-libc-1.0.3" ··· 107714 104673 sources."fs-minipass-2.1.0" 107715 104674 sources."fs.notify-0.0.4" 107716 104675 sources."fs.realpath-1.0.0" 107717 - sources."gauge-2.7.4" 104676 + sources."gauge-3.0.1" 107718 104677 sources."get-stream-5.2.0" 107719 104678 sources."glob-7.2.0" 107720 104679 sources."got-11.8.2" ··· 107738 104697 sources."ms-2.1.2" 107739 104698 ]; 107740 104699 }) 107741 - sources."i18next-20.3.2" 104700 + sources."i18next-21.3.1" 107742 104701 sources."iconv-lite-0.4.24" 107743 104702 sources."ieee754-1.2.1" 107744 104703 sources."inflight-1.0.6" 107745 104704 sources."inherits-2.0.3" 107746 104705 sources."ipaddr.js-1.9.1" 107747 - sources."is-fullwidth-code-point-1.0.0" 104706 + sources."is-fullwidth-code-point-2.0.0" 107748 104707 sources."is-utf8-0.2.1" 107749 104708 sources."isarray-0.0.1" 107750 104709 sources."js-yaml-3.14.1" ··· 107820 104779 sources."node-red-admin-2.2.1" 107821 104780 sources."nopt-5.0.0" 107822 104781 sources."normalize-url-6.1.0" 107823 - sources."npmlog-4.1.2" 104782 + sources."npmlog-5.0.1" 107824 104783 sources."nth-check-2.0.1" 107825 - sources."number-is-nan-1.0.1" 107826 104784 sources."oauth2orize-1.11.0" 107827 104785 sources."object-assign-4.1.1" 107828 104786 sources."on-finished-2.3.0" ··· 107832 104790 sources."parse5-6.0.1" 107833 104791 sources."parse5-htmlparser2-tree-adapter-6.0.1" 107834 104792 sources."parseurl-1.3.3" 107835 - sources."passport-0.4.1" 104793 + sources."passport-0.5.0" 107836 104794 sources."passport-http-bearer-1.0.1" 107837 104795 sources."passport-oauth2-client-password-0.1.2" 107838 104796 sources."passport-strategy-1.0.0" ··· 107888 104846 sources."statuses-1.5.0" 107889 104847 sources."stream-shift-1.0.1" 107890 104848 sources."streamsearch-0.1.2" 107891 - sources."string-width-1.0.2" 104849 + sources."string-width-2.1.1" 107892 104850 sources."string_decoder-0.10.31" 107893 - sources."strip-ansi-3.0.1" 104851 + sources."strip-ansi-4.0.0" 107894 104852 (sources."tar-6.1.11" // { 107895 104853 dependencies = [ 107896 104854 sources."mkdirp-1.0.4" ··· 107903 104861 sources."tslib-2.3.1" 107904 104862 sources."type-is-1.6.18" 107905 104863 sources."typedarray-0.0.6" 107906 - sources."uglify-js-3.14.1" 104864 + sources."uglify-js-3.14.2" 107907 104865 sources."uid-safe-2.1.5" 107908 104866 sources."uid2-0.0.4" 107909 104867 sources."universalify-0.1.2" ··· 108134 105092 nodemon = nodeEnv.buildNodePackage { 108135 105093 name = "nodemon"; 108136 105094 packageName = "nodemon"; 108137 - version = "2.0.13"; 105095 + version = "2.0.14"; 108138 105096 src = fetchurl { 108139 - url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.13.tgz"; 108140 - sha512 = "UMXMpsZsv1UXUttCn6gv8eQPhn6DR4BW+txnL3IN5IHqrCwcrT/yWHfL35UsClGXknTH79r5xbu+6J1zNHuSyA=="; 105097 + url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.14.tgz"; 105098 + sha512 = "frcpDx+PviKEQRSYzwhckuO2zoHcBYLHI754RE9z5h1RGtrngerc04mLpQQCPWBkH/2ObrX7We9YiwVSYZpFJQ=="; 108141 105099 }; 108142 105100 dependencies = [ 108143 105101 sources."@sindresorhus/is-0.14.0" ··· 108263 105221 sources."touch-3.1.0" 108264 105222 sources."type-fest-0.20.2" 108265 105223 sources."typedarray-to-buffer-3.1.5" 108266 - (sources."undefsafe-2.0.3" // { 108267 - dependencies = [ 108268 - sources."debug-2.6.9" 108269 - sources."ms-2.0.0" 108270 - ]; 108271 - }) 105224 + sources."undefsafe-2.0.5" 108272 105225 sources."unique-string-2.0.0" 108273 105226 (sources."update-notifier-5.1.0" // { 108274 105227 dependencies = [ ··· 108329 105282 sources."@types/http-cache-semantics-4.0.1" 108330 105283 sources."@types/keyv-3.1.3" 108331 105284 sources."@types/minimist-1.2.2" 108332 - sources."@types/node-16.11.0" 105285 + sources."@types/node-16.11.6" 108333 105286 sources."@types/normalize-package-data-2.4.1" 108334 105287 sources."@types/parse-json-4.0.0" 108335 105288 sources."@types/responselike-1.0.0" ··· 108820 105773 npm = nodeEnv.buildNodePackage { 108821 105774 name = "npm"; 108822 105775 packageName = "npm"; 108823 - version = "8.1.0"; 105776 + version = "8.1.1"; 108824 105777 src = fetchurl { 108825 - url = "https://registry.npmjs.org/npm/-/npm-8.1.0.tgz"; 108826 - sha512 = "rPiiYY4t8pqK1rCDQy1bE6HRR63B2RwfYsIVc1/BNkeIilvqZMwGeTksSBK8WTozBz8c/tMd7jk0c4Q4f/F+UA=="; 105778 + url = "https://registry.npmjs.org/npm/-/npm-8.1.1.tgz"; 105779 + sha512 = "sD4+ZHh/5Bx3wiTWbKwT+77RFoXvIKUfiSg6VJ/DFYucSDhSocKVyFzK1KviGkbsCFXAMETDifSGLb9kvDm6KA=="; 108827 105780 }; 108828 105781 buildInputs = globalBuildInputs; 108829 105782 meta = { ··· 109548 106501 sources."semver-6.3.0" 109549 106502 ]; 109550 106503 }) 109551 - sources."@babel/preset-modules-0.1.4" 106504 + sources."@babel/preset-modules-0.1.5" 109552 106505 sources."@babel/runtime-7.15.4" 109553 106506 sources."@babel/template-7.15.4" 109554 106507 sources."@babel/traverse-7.15.4" ··· 109657 106610 sources."pako-1.0.11" 109658 106611 ]; 109659 106612 }) 109660 - sources."browserslist-4.17.4" 106613 + sources."browserslist-4.17.5" 109661 106614 (sources."buffer-4.9.2" // { 109662 106615 dependencies = [ 109663 106616 sources."isarray-1.0.0" ··· 109674 106627 sources."caller-path-2.0.0" 109675 106628 sources."callsites-2.0.0" 109676 106629 sources."caniuse-api-3.0.0" 109677 - sources."caniuse-lite-1.0.30001267" 106630 + sources."caniuse-lite-1.0.30001271" 109678 106631 sources."caseless-0.12.0" 109679 106632 sources."chalk-2.4.2" 109680 106633 sources."chokidar-2.1.8" ··· 109700 106653 sources."convert-source-map-1.8.0" 109701 106654 sources."copy-descriptor-0.1.1" 109702 106655 sources."core-js-2.6.12" 109703 - (sources."core-js-compat-3.18.3" // { 106656 + (sources."core-js-compat-3.19.0" // { 109704 106657 dependencies = [ 109705 106658 sources."semver-7.0.0" 109706 106659 ]; ··· 109811 106764 sources."duplexer2-0.1.4" 109812 106765 sources."ecc-jsbn-0.1.2" 109813 106766 sources."ee-first-1.1.1" 109814 - sources."electron-to-chromium-1.3.870" 106767 + sources."electron-to-chromium-1.3.880" 109815 106768 (sources."elliptic-6.5.4" // { 109816 106769 dependencies = [ 109817 106770 sources."bn.js-4.12.0" ··· 110078 107031 sources."punycode-1.4.1" 110079 107032 ]; 110080 107033 }) 110081 - sources."node-releases-2.0.0" 107034 + sources."node-releases-2.0.1" 110082 107035 sources."normalize-path-3.0.0" 110083 107036 sources."normalize-url-3.3.0" 110084 107037 sources."nth-check-1.0.2" ··· 111291 108244 sources."bencode-2.0.2" 111292 108245 ]; 111293 108246 }) 111294 - (sources."lazystream-1.0.0" // { 108247 + (sources."lazystream-1.0.1" // { 111295 108248 dependencies = [ 111296 108249 sources."readable-stream-2.3.7" 111297 108250 ]; ··· 111491 108444 pkg = nodeEnv.buildNodePackage { 111492 108445 name = "pkg"; 111493 108446 packageName = "pkg"; 111494 - version = "5.3.3"; 108447 + version = "5.4.0"; 111495 108448 src = fetchurl { 111496 - url = "https://registry.npmjs.org/pkg/-/pkg-5.3.3.tgz"; 111497 - sha512 = "48qPxwyPvKfUuXxeK+kS3mBvfWWTX2khAdceDThbWCc8OUz3RFyO1Ft8SVkq2gQfPU2DtiPtWaf2SKH0Dlx59g=="; 108449 + url = "https://registry.npmjs.org/pkg/-/pkg-5.4.0.tgz"; 108450 + sha512 = "OPLjbZ0NUwv7qlutITd9/2VI/4rtCdY5YeLsecj3qDz5hdL/pW55pnUWRCVcI04ZIXSC8YMVGN5+KJP+yKDwjQ=="; 111498 108451 }; 111499 108452 dependencies = [ 111500 108453 sources."@babel/helper-validator-identifier-7.15.7" ··· 111538 108491 sources."escalade-3.1.1" 111539 108492 sources."escodegen-2.0.0" 111540 108493 sources."esprima-4.0.1" 111541 - sources."estraverse-5.2.0" 108494 + sources."estraverse-5.3.0" 111542 108495 sources."esutils-2.0.3" 111543 108496 sources."expand-template-2.0.3" 111544 108497 sources."fast-glob-3.2.7" ··· 111872 108825 sources."statuses-1.5.0" 111873 108826 sources."string_decoder-0.10.31" 111874 108827 sources."supports-color-7.2.0" 111875 - sources."systeminformation-5.9.7" 108828 + sources."systeminformation-5.9.8" 111876 108829 sources."to-regex-range-5.0.1" 111877 108830 sources."toidentifier-1.0.0" 111878 108831 sources."tslib-2.3.1" ··· 111887 108840 sources."async-2.6.3" 111888 108841 ]; 111889 108842 }) 111890 - sources."vm2-3.9.4" 108843 + sources."vm2-3.9.5" 111891 108844 sources."word-wrap-1.2.3" 111892 108845 sources."wrappy-1.0.2" 111893 108846 sources."ws-7.4.6" ··· 111908 108861 pnpm = nodeEnv.buildNodePackage { 111909 108862 name = "pnpm"; 111910 108863 packageName = "pnpm"; 111911 - version = "6.17.1"; 108864 + version = "6.19.1"; 111912 108865 src = fetchurl { 111913 - url = "https://registry.npmjs.org/pnpm/-/pnpm-6.17.1.tgz"; 111914 - sha512 = "rxl28iv4zYrhv7hKRMfO49hlXMFGQDgDyJrAoLkQPlJuAziCjEdfMV0OTt5BsntxbQMLsGgwpqSfosNVMbCdNQ=="; 108866 + url = "https://registry.npmjs.org/pnpm/-/pnpm-6.19.1.tgz"; 108867 + sha512 = "591jc9Ppqow44ztAMwH2m3G0gBIqd7oa5UBI5uA6iFjV0V9Fgjn+BBFQZEY75xtwjWdeLFOJTIk3fjYVXSX+ng=="; 111915 108868 }; 111916 108869 buildInputs = globalBuildInputs; 111917 108870 meta = { ··· 111954 108907 postcss = nodeEnv.buildNodePackage { 111955 108908 name = "postcss"; 111956 108909 packageName = "postcss"; 111957 - version = "8.3.9"; 108910 + version = "8.3.11"; 111958 108911 src = fetchurl { 111959 - url = "https://registry.npmjs.org/postcss/-/postcss-8.3.9.tgz"; 111960 - sha512 = "f/ZFyAKh9Dnqytx5X62jgjhhzttjZS7hMsohcI7HEI5tjELX/HxCy3EFhsRxyzGvrzFF+82XPvCS8T9TFleVJw=="; 108912 + url = "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz"; 108913 + sha512 = "hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA=="; 111961 108914 }; 111962 108915 dependencies = [ 111963 108916 sources."nanoid-3.1.30" 111964 - sources."picocolors-0.2.1" 108917 + sources."picocolors-1.0.0" 111965 108918 sources."source-map-js-0.6.2" 111966 108919 ]; 111967 108920 buildInputs = globalBuildInputs; ··· 112109 109062 prisma = nodeEnv.buildNodePackage { 112110 109063 name = "prisma"; 112111 109064 packageName = "prisma"; 112112 - version = "3.2.1"; 109065 + version = "3.3.0"; 112113 109066 src = fetchurl { 112114 - url = "https://registry.npmjs.org/prisma/-/prisma-3.2.1.tgz"; 112115 - sha512 = "nXhldcFYemNSMqdTAEziggVWBNbCHTrr0amkCJruP3G2AFpzxrKtksPRLYNetxdKMJAt7aRRumusbtmTTDgyzw=="; 109067 + url = "https://registry.npmjs.org/prisma/-/prisma-3.3.0.tgz"; 109068 + sha512 = "E7C9mXRwZVpcnSeJT533qGHUVrYULsE9ihFvAtQMuxhTXkxoRlMLyo/1ZOyeu9GdXP8DJ7ruLOw06kEs/N3dVg=="; 112116 109069 }; 112117 109070 dependencies = [ 112118 - sources."@prisma/engines-3.2.1-1.b71d8cb16c4ddc7e3e9821f42fd09b0f82d7934c" 109071 + sources."@prisma/engines-3.3.0-30.33838b0f78f1fe9052cf9a00e9761c9dc097a63c" 112119 109072 ]; 112120 109073 buildInputs = globalBuildInputs; 112121 109074 meta = { ··· 112381 109334 sources."sha.js-2.4.11" 112382 109335 sources."shasum-1.0.2" 112383 109336 sources."shasum-object-1.0.0" 112384 - sources."shell-quote-1.7.2" 109337 + sources."shell-quote-1.7.3" 112385 109338 sources."simple-concat-1.0.1" 112386 109339 sources."sorcery-0.10.0" 112387 109340 sources."source-map-0.5.7" ··· 112440 109393 purescript-language-server = nodeEnv.buildNodePackage { 112441 109394 name = "purescript-language-server"; 112442 109395 packageName = "purescript-language-server"; 112443 - version = "0.15.7"; 109396 + version = "0.15.8"; 112444 109397 src = fetchurl { 112445 - url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.7.tgz"; 112446 - sha512 = "bl62M0n/fAq/ZWvyZD2Wpxlg5A9I0zyCnAvqdRsS052gbGlbyRmzJJz2kT2NexfZvubZT5EYTsENKI/zewUvuw=="; 109398 + url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.8.tgz"; 109399 + sha512 = "eXOOG0c7nCKtxPOJVScZTXwxVx/of515wSQY4zqiqEvVbmd7y1+ldnFUJKq1wJmKjimGA447n2QFF6S38NwjXg=="; 112447 109400 }; 112448 109401 dependencies = [ 112449 109402 sources."ajv-6.12.6" ··· 112578 109531 sources."safer-buffer-2.1.2" 112579 109532 sources."shebang-command-2.0.0" 112580 109533 sources."shebang-regex-3.0.0" 112581 - sources."shell-quote-1.7.2" 109534 + sources."shell-quote-1.7.3" 112582 109535 sources."signal-exit-3.0.5" 112583 109536 sources."spago-0.20.3" 112584 109537 sources."sshpk-1.16.1" ··· 112610 109563 sources."core-util-is-1.0.2" 112611 109564 ]; 112612 109565 }) 112613 - sources."vscode-jsonrpc-5.0.1" 112614 - sources."vscode-languageserver-6.1.1" 112615 - (sources."vscode-languageserver-protocol-3.16.0" // { 112616 - dependencies = [ 112617 - sources."vscode-jsonrpc-6.0.0" 112618 - ]; 112619 - }) 109566 + sources."vscode-jsonrpc-8.0.0-next.3" 109567 + sources."vscode-languageserver-8.0.0-next.3" 109568 + sources."vscode-languageserver-protocol-3.17.0-next.9" 112620 109569 sources."vscode-languageserver-textdocument-1.0.2" 112621 - sources."vscode-languageserver-types-3.16.0" 109570 + sources."vscode-languageserver-types-3.17.0-next.4" 112622 109571 sources."vscode-uri-2.1.2" 112623 109572 sources."which-2.0.2" 112624 109573 sources."wrap-ansi-5.1.0" ··· 112777 109726 pyright = nodeEnv.buildNodePackage { 112778 109727 name = "pyright"; 112779 109728 packageName = "pyright"; 112780 - version = "1.1.178"; 109729 + version = "1.1.182"; 112781 109730 src = fetchurl { 112782 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.178.tgz"; 112783 - sha512 = "OhEoC5HfKZqvY5GVCsHeroYDx85xp4CZwevhNsePxNzZyW+W491K4bfLTvuOBnvcnMWip+aMQ7zzFDkw74Gtkg=="; 109731 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.182.tgz"; 109732 + sha512 = "7LK10Lp8ARTQbHcZ9RHvAAY5jw5APU7oeso0OOH6RIzTDXndvng9RlzVkcUdexisQfT7pLEzONhK5PHkYEldyg=="; 112784 109733 }; 112785 109734 buildInputs = globalBuildInputs; 112786 109735 meta = { ··· 113258 110207 sources."semver-6.3.0" 113259 110208 ]; 113260 110209 }) 113261 - sources."@babel/preset-modules-0.1.4" 110210 + sources."@babel/preset-modules-0.1.5" 113262 110211 sources."@babel/preset-react-7.14.5" 113263 110212 sources."@babel/preset-stage-0-7.8.3" 113264 110213 sources."@babel/register-7.15.3" ··· 113268 110217 sources."@babel/types-7.15.6" 113269 110218 sources."@reach/router-1.3.4" 113270 110219 sources."@sindresorhus/is-0.7.0" 113271 - sources."@types/glob-7.1.4" 110220 + sources."@types/glob-7.2.0" 113272 110221 sources."@types/json-schema-7.0.9" 113273 110222 sources."@types/minimatch-3.0.5" 113274 - sources."@types/node-16.11.0" 110223 + sources."@types/node-16.11.6" 113275 110224 sources."@types/parse-json-4.0.0" 113276 110225 sources."@types/q-1.5.5" 113277 110226 sources."@webassemblyjs/ast-1.9.0" ··· 113350 110299 }) 113351 110300 sources."axios-0.21.4" 113352 110301 sources."babel-core-7.0.0-bridge.0" 113353 - (sources."babel-loader-8.2.2" // { 110302 + (sources."babel-loader-8.2.3" // { 113354 110303 dependencies = [ 113355 110304 sources."find-cache-dir-3.3.2" 113356 110305 sources."find-up-4.1.0" ··· 113429 110378 ]; 113430 110379 }) 113431 110380 sources."browserify-zlib-0.1.4" 113432 - sources."browserslist-4.17.4" 110381 + sources."browserslist-4.17.5" 113433 110382 sources."buffer-5.7.1" 113434 110383 sources."buffer-alloc-1.2.0" 113435 110384 sources."buffer-alloc-unsafe-1.1.0" ··· 113463 110412 sources."camel-case-3.0.0" 113464 110413 sources."camelcase-5.3.1" 113465 110414 sources."caniuse-api-3.0.0" 113466 - sources."caniuse-lite-1.0.30001267" 110415 + sources."caniuse-lite-1.0.30001271" 113467 110416 sources."case-sensitive-paths-webpack-plugin-2.4.0" 113468 110417 sources."caw-2.0.1" 113469 110418 sources."chalk-2.4.2" ··· 113491 110440 sources."kind-of-5.1.0" 113492 110441 ]; 113493 110442 }) 113494 - (sources."clean-css-4.2.3" // { 110443 + (sources."clean-css-4.2.4" // { 113495 110444 dependencies = [ 113496 110445 sources."source-map-0.6.1" 113497 110446 ]; ··· 113543 110492 sources."copy-concurrently-1.0.5" 113544 110493 sources."copy-descriptor-0.1.1" 113545 110494 sources."core-js-2.6.12" 113546 - (sources."core-js-compat-3.18.3" // { 110495 + (sources."core-js-compat-3.19.0" // { 113547 110496 dependencies = [ 113548 110497 sources."semver-7.0.0" 113549 110498 ]; ··· 113687 110636 sources."duplexify-3.7.1" 113688 110637 sources."ee-first-1.1.1" 113689 110638 sources."ejs-2.7.4" 113690 - sources."electron-to-chromium-1.3.870" 110639 + sources."electron-to-chromium-1.3.880" 113691 110640 (sources."elliptic-6.5.4" // { 113692 110641 dependencies = [ 113693 110642 sources."bn.js-4.12.0" ··· 113727 110676 sources."esprima-4.0.1" 113728 110677 (sources."esrecurse-4.3.0" // { 113729 110678 dependencies = [ 113730 - sources."estraverse-5.2.0" 110679 + sources."estraverse-5.3.0" 113731 110680 ]; 113732 110681 }) 113733 110682 sources."estraverse-4.3.0" ··· 114132 111081 ]; 114133 111082 }) 114134 111083 sources."node-modules-regexp-1.0.0" 114135 - sources."node-releases-2.0.0" 111084 + sources."node-releases-2.0.1" 114136 111085 sources."normalize-path-3.0.0" 114137 111086 sources."normalize-range-0.1.2" 114138 111087 (sources."normalize-url-2.0.1" // { ··· 114985 111934 sources."escalade-3.1.1" 114986 111935 sources."escodegen-2.0.0" 114987 111936 sources."esprima-4.0.1" 114988 - sources."estraverse-5.2.0" 111937 + sources."estraverse-5.3.0" 114989 111938 sources."esutils-2.0.3" 114990 111939 sources."fast-levenshtein-2.0.6" 114991 111940 sources."form-data-4.0.0" ··· 115077 112026 sources."@emotion/unitless-0.7.5" 115078 112027 sources."@exodus/schemasafe-1.0.0-rc.6" 115079 112028 sources."@redocly/ajv-8.6.2" 115080 - sources."@redocly/openapi-core-1.0.0-beta.63" 112029 + sources."@redocly/openapi-core-1.0.0-beta.64" 115081 112030 sources."@redocly/react-dropdown-aria-2.0.12" 115082 112031 sources."@types/json-schema-7.0.9" 115083 - sources."@types/node-14.17.27" 112032 + sources."@types/node-14.17.32" 115084 112033 sources."ansi-regex-5.0.1" 115085 112034 sources."ansi-styles-3.2.1" 115086 112035 sources."anymatch-3.1.2" ··· 115095 112044 sources."util-0.10.3" 115096 112045 ]; 115097 112046 }) 115098 - sources."babel-plugin-styled-components-1.13.2" 112047 + sources."babel-plugin-styled-components-1.13.3" 115099 112048 sources."babel-plugin-syntax-jsx-6.18.0" 115100 112049 sources."balanced-match-1.0.2" 115101 112050 sources."base64-js-1.5.1" ··· 115249 112198 sources."parse-asn1-5.1.6" 115250 112199 sources."path-browserify-0.0.1" 115251 112200 sources."pbkdf2-3.1.2" 115252 - sources."perfect-scrollbar-1.5.2" 112201 + sources."perfect-scrollbar-1.5.3" 115253 112202 sources."picomatch-2.3.0" 115254 112203 sources."polished-4.1.3" 115255 112204 sources."postcss-value-parser-4.1.0" ··· 115310 112259 sources."string-width-4.2.3" 115311 112260 sources."string_decoder-1.3.0" 115312 112261 sources."strip-ansi-6.0.1" 115313 - sources."styled-components-5.3.1" 112262 + sources."styled-components-5.3.3" 115314 112263 sources."supports-color-5.5.0" 115315 112264 sources."swagger2openapi-7.0.8" 115316 112265 sources."timers-browserify-2.0.12" ··· 115557 112506 rollup = nodeEnv.buildNodePackage { 115558 112507 name = "rollup"; 115559 112508 packageName = "rollup"; 115560 - version = "2.58.0"; 112509 + version = "2.58.3"; 115561 112510 src = fetchurl { 115562 - url = "https://registry.npmjs.org/rollup/-/rollup-2.58.0.tgz"; 115563 - sha512 = "NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw=="; 112511 + url = "https://registry.npmjs.org/rollup/-/rollup-2.58.3.tgz"; 112512 + sha512 = "ei27MSw1KhRur4p87Q0/Va2NAYqMXOX++FNEumMBcdreIRLURKy+cE2wcDJKBn0nfmhP2ZGrJkP1XPO+G8FJQw=="; 115564 112513 }; 115565 112514 dependencies = [ 115566 112515 sources."fsevents-2.3.2" ··· 115601 112550 sources."@nodelib/fs.stat-2.0.5" 115602 112551 sources."@nodelib/fs.walk-1.2.8" 115603 112552 sources."@tootallnate/once-1.1.2" 115604 - sources."@types/glob-7.1.4" 112553 + sources."@types/glob-7.2.0" 115605 112554 sources."@types/json-schema-7.0.9" 115606 112555 sources."@types/minimatch-3.0.5" 115607 112556 sources."@types/mocha-8.2.3" 115608 - sources."@types/node-14.17.27" 112557 + sources."@types/node-14.17.32" 115609 112558 sources."@types/node-fetch-2.5.12" 115610 112559 sources."@types/vscode-1.61.0" 115611 112560 sources."@typescript-eslint/eslint-plugin-4.33.0" ··· 115762 112711 sources."esprima-4.0.1" 115763 112712 (sources."esquery-1.4.0" // { 115764 112713 dependencies = [ 115765 - sources."estraverse-5.2.0" 112714 + sources."estraverse-5.3.0" 115766 112715 ]; 115767 112716 }) 115768 112717 (sources."esrecurse-4.3.0" // { 115769 112718 dependencies = [ 115770 - sources."estraverse-5.2.0" 112719 + sources."estraverse-5.3.0" 115771 112720 ]; 115772 112721 }) 115773 112722 sources."estraverse-4.3.0" ··· 115976 112925 sources."url-join-1.1.0" 115977 112926 sources."util-deprecate-1.0.2" 115978 112927 sources."v8-compile-cache-2.3.0" 115979 - (sources."vsce-1.100.1" // { 112928 + (sources."vsce-1.100.2" // { 115980 112929 dependencies = [ 115981 112930 sources."chalk-2.4.2" 115982 112931 sources."commander-6.2.1" ··· 116119 113068 sass = nodeEnv.buildNodePackage { 116120 113069 name = "sass"; 116121 113070 packageName = "sass"; 116122 - version = "1.43.2"; 113071 + version = "1.43.4"; 116123 113072 src = fetchurl { 116124 - url = "https://registry.npmjs.org/sass/-/sass-1.43.2.tgz"; 116125 - sha512 = "DncYhjl3wBaPMMJR0kIUaH3sF536rVrOcqqVGmTZHQRRzj7LQlyGV7Mb8aCKFyILMr5VsPHwRYtyKpnKYlmQSQ=="; 113073 + url = "https://registry.npmjs.org/sass/-/sass-1.43.4.tgz"; 113074 + sha512 = "/ptG7KE9lxpGSYiXn7Ar+lKOv37xfWsZRtFYal2QHNigyVQDx685VFT/h7ejVr+R8w7H4tmUgtulsKl5YpveOg=="; 116126 113075 }; 116127 113076 dependencies = [ 116128 113077 sources."anymatch-3.1.2" ··· 116292 113241 serverless = nodeEnv.buildNodePackage { 116293 113242 name = "serverless"; 116294 113243 packageName = "serverless"; 116295 - version = "2.63.0"; 113244 + version = "2.64.1"; 116296 113245 src = fetchurl { 116297 - url = "https://registry.npmjs.org/serverless/-/serverless-2.63.0.tgz"; 116298 - sha512 = "8R3WceUjjFBZRcL0YXT6+3hEWIxlzyCIWiIVy9x2Rf2TDBBJTTv82T1JHvLr9dRVBSOcQBu6cHlzSqwk1ozbLA=="; 113246 + url = "https://registry.npmjs.org/serverless/-/serverless-2.64.1.tgz"; 113247 + sha512 = "9DErsV4ACg/2UkRoX2EYRkcDyRi3NBld/gexCeVnkmUunadSwnmtSBeVU8spvg+zc61b1vbusTHE4woqcd2gvw=="; 116299 113248 }; 116300 113249 dependencies = [ 116301 113250 sources."2-thenable-1.0.0" ··· 116319 113268 sources."@protobufjs/path-1.1.2" 116320 113269 sources."@protobufjs/pool-1.1.0" 116321 113270 sources."@protobufjs/utf8-1.1.0" 116322 - (sources."@serverless/cli-1.5.2" // { 113271 + (sources."@serverless/cli-1.5.3" // { 116323 113272 dependencies = [ 116324 113273 sources."@serverless/utils-1.2.0" 116325 113274 sources."chalk-2.4.2" 116326 113275 sources."dotenv-8.6.0" 116327 - sources."strip-ansi-5.2.0" 116328 113276 sources."uuid-3.4.0" 116329 113277 ]; 116330 113278 }) ··· 116354 113302 sources."semver-6.3.0" 116355 113303 ]; 116356 113304 }) 116357 - sources."@serverless/dashboard-plugin-5.4.8" 113305 + sources."@serverless/dashboard-plugin-5.5.0" 116358 113306 sources."@serverless/event-mocks-1.1.1" 116359 113307 (sources."@serverless/platform-client-4.3.0" // { 116360 113308 dependencies = [ ··· 116369 113317 ]; 116370 113318 }) 116371 113319 sources."@serverless/template-1.1.4" 116372 - (sources."@serverless/utils-5.18.0" // { 113320 + (sources."@serverless/utils-5.19.0" // { 116373 113321 dependencies = [ 116374 113322 sources."get-stream-6.0.1" 116375 113323 sources."has-flag-4.0.0" ··· 116386 113334 sources."@types/caseless-0.12.2" 116387 113335 sources."@types/http-cache-semantics-4.0.1" 116388 113336 sources."@types/keyv-3.1.3" 116389 - sources."@types/lodash-4.14.175" 113337 + sources."@types/lodash-4.14.176" 116390 113338 sources."@types/long-4.0.1" 116391 - sources."@types/node-16.11.0" 113339 + sources."@types/node-16.11.6" 116392 113340 sources."@types/request-2.48.7" 116393 113341 sources."@types/request-promise-native-1.0.18" 116394 113342 sources."@types/responselike-1.0.0" ··· 116410 113358 ]; 116411 113359 }) 116412 113360 sources."ansi-escapes-4.3.2" 116413 - sources."ansi-regex-4.1.0" 113361 + sources."ansi-regex-2.1.1" 116414 113362 sources."ansi-styles-3.2.1" 116415 113363 sources."anymatch-3.1.2" 116416 113364 sources."aproba-1.2.0" ··· 116448 113396 sources."async-2.6.3" 116449 113397 sources."asynckit-0.4.0" 116450 113398 sources."at-least-node-1.0.0" 116451 - (sources."aws-sdk-2.1009.0" // { 113399 + (sources."aws-sdk-2.1015.0" // { 116452 113400 dependencies = [ 116453 113401 sources."buffer-4.9.2" 116454 113402 sources."ieee754-1.1.13" ··· 116535 113483 sources."cli-progress-footer-2.1.1" 116536 113484 (sources."cli-sprintf-format-1.1.0" // { 116537 113485 dependencies = [ 116538 - sources."ansi-regex-2.1.1" 116539 113486 sources."cli-color-1.4.0" 116540 113487 ]; 116541 113488 }) 116542 113489 sources."cli-width-3.0.0" 116543 113490 sources."clone-response-1.0.2" 116544 113491 sources."code-point-at-1.1.0" 116545 - sources."color-3.0.0" 113492 + sources."color-3.2.1" 116546 113493 sources."color-convert-1.9.3" 116547 113494 sources."color-name-1.1.3" 116548 113495 sources."color-string-1.6.0" 116549 113496 sources."colornames-1.1.1" 116550 113497 sources."colors-1.3.3" 116551 - sources."colorspace-1.1.2" 113498 + sources."colorspace-1.1.4" 116552 113499 sources."combined-stream-1.0.8" 116553 113500 sources."commander-2.19.0" 116554 113501 sources."component-bind-1.0.0" ··· 116695 113642 sources."fsevents-2.3.2" 116696 113643 (sources."gauge-2.7.4" // { 116697 113644 dependencies = [ 116698 - sources."ansi-regex-2.1.1" 116699 113645 sources."strip-ansi-3.0.1" 116700 113646 ]; 116701 113647 }) ··· 116727 113673 sources."graphlib-2.1.8" 116728 113674 sources."har-schema-2.0.0" 116729 113675 sources."har-validator-5.1.5" 116730 - sources."has-ansi-4.0.1" 116731 113676 (sources."has-binary2-1.0.3" // { 116732 113677 dependencies = [ 116733 113678 sources."isarray-2.0.1" ··· 116813 113758 }) 116814 113759 sources."keyv-3.1.0" 116815 113760 sources."kuler-1.0.1" 116816 - (sources."lazystream-1.0.0" // { 113761 + (sources."lazystream-1.0.1" // { 116817 113762 dependencies = [ 116818 113763 sources."readable-stream-2.3.7" 116819 113764 sources."safe-buffer-5.1.2" ··· 116828 113773 sources."lodash.isplainobject-4.0.6" 116829 113774 sources."lodash.union-4.6.0" 116830 113775 sources."log-6.3.1" 116831 - (sources."log-node-8.0.1" // { 113776 + (sources."log-node-8.0.2" // { 116832 113777 dependencies = [ 113778 + sources."ansi-regex-5.0.1" 116833 113779 sources."has-flag-4.0.0" 116834 113780 sources."supports-color-8.1.1" 116835 113781 ]; ··· 116988 113934 sources."signal-exit-3.0.5" 116989 113935 sources."simple-concat-1.0.1" 116990 113936 sources."simple-get-2.8.1" 116991 - (sources."simple-git-2.46.0" // { 113937 + (sources."simple-git-2.47.0" // { 116992 113938 dependencies = [ 116993 113939 sources."debug-4.3.2" 116994 113940 sources."ms-2.1.2" ··· 117020 113966 sources."stream-shift-1.0.1" 117021 113967 (sources."string-width-1.0.2" // { 117022 113968 dependencies = [ 117023 - sources."ansi-regex-2.1.1" 117024 113969 sources."strip-ansi-3.0.1" 117025 113970 ]; 117026 113971 }) ··· 117814 114759 snyk = nodeEnv.buildNodePackage { 117815 114760 name = "snyk"; 117816 114761 packageName = "snyk"; 117817 - version = "1.737.0"; 114762 + version = "1.745.0"; 117818 114763 src = fetchurl { 117819 - url = "https://registry.npmjs.org/snyk/-/snyk-1.737.0.tgz"; 117820 - sha512 = "74RuQLRB2lIDoS3dFY/XXRsPJvL1qr5t7LisJ10q5O2wLi4ISEyNU39XPICVOj+kg1eT30CjKUecMzF+9P2xfQ=="; 114764 + url = "https://registry.npmjs.org/snyk/-/snyk-1.745.0.tgz"; 114765 + sha512 = "taeCDSDDPHgawEGFjnLysUHhjqTofSYBayc9AiDt7msROsYSt0106/opAa2TyvXg7QYE4eeAbvmHOg01Ix6P9w=="; 117821 114766 }; 117822 114767 buildInputs = globalBuildInputs; 117823 114768 meta = { ··· 117832 114777 "socket.io" = nodeEnv.buildNodePackage { 117833 114778 name = "socket.io"; 117834 114779 packageName = "socket.io"; 117835 - version = "4.3.0"; 114780 + version = "4.3.1"; 117836 114781 src = fetchurl { 117837 - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.3.0.tgz"; 117838 - sha512 = "15eJ4fLho1uQTgdvAKlkMPvhvurky8KAc0F+wAdrSoIk+rKEYor8vPKiV5grp4J0sQpPms/AW7w9BV6b/HB0oA=="; 114782 + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.3.1.tgz"; 114783 + sha512 = "HC5w5Olv2XZ0XJ4gOLGzzHEuOCfj3G0SmoW3jLHYYh34EVsIr3EkW9h6kgfW+K3TFEcmYy8JcPWe//KUkBp5jA=="; 117839 114784 }; 117840 114785 dependencies = [ 117841 114786 sources."@types/component-emitter-1.2.11" 117842 114787 sources."@types/cookie-0.4.1" 117843 114788 sources."@types/cors-2.8.12" 117844 - sources."@types/node-16.11.0" 114789 + sources."@types/node-16.11.6" 117845 114790 sources."accepts-1.3.7" 117846 114791 sources."base64-arraybuffer-1.0.1" 117847 114792 sources."base64id-2.0.0" ··· 117850 114795 sources."cors-2.8.5" 117851 114796 sources."debug-4.3.2" 117852 114797 sources."engine.io-6.0.0" 117853 - sources."engine.io-parser-5.0.0" 114798 + sources."engine.io-parser-5.0.1" 117854 114799 sources."mime-db-1.50.0" 117855 114800 sources."mime-types-2.1.33" 117856 114801 sources."ms-2.1.2" ··· 118406 115351 sources."isarray-1.0.0" 118407 115352 sources."isexe-2.0.0" 118408 115353 sources."isobject-2.1.0" 118409 - (sources."jitdb-3.4.2" // { 115354 + (sources."jitdb-3.5.0" // { 118410 115355 dependencies = [ 118411 115356 sources."mkdirp-1.0.4" 118412 115357 sources."push-stream-11.0.1" ··· 118813 115758 sources."ssb-blobs-1.2.2" 118814 115759 sources."ssb-caps-1.1.0" 118815 115760 sources."ssb-client-4.9.0" 118816 - sources."ssb-config-3.4.5" 115761 + (sources."ssb-config-3.4.6" // { 115762 + dependencies = [ 115763 + sources."ssb-keys-8.2.0" 115764 + ]; 115765 + }) 118817 115766 sources."ssb-db-19.2.0" 118818 - (sources."ssb-db2-2.6.5" // { 115767 + (sources."ssb-db2-2.6.6" // { 118819 115768 dependencies = [ 118820 115769 sources."abstract-leveldown-6.2.3" 118821 115770 (sources."flumecodec-0.0.1" // { ··· 118878 115827 ]; 118879 115828 }) 118880 115829 sources."ssb-validate2-0.1.2" 118881 - sources."ssb-validate2-rsjs-node-1.0.1" 115830 + sources."ssb-validate2-rsjs-node-1.0.3" 118882 115831 sources."ssb-ws-6.2.3" 118883 115832 sources."stack-0.1.0" 118884 115833 (sources."static-extend-0.1.2" // { ··· 119083 116032 sources."async-1.5.2" 119084 116033 sources."async-limiter-1.0.1" 119085 116034 sources."asynckit-0.4.0" 119086 - (sources."aws-sdk-2.1009.0" // { 116035 + (sources."aws-sdk-2.1015.0" // { 119087 116036 dependencies = [ 119088 116037 sources."uuid-3.3.2" 119089 116038 ]; ··· 119135 116084 sources."chalk-1.1.3" 119136 116085 sources."chance-1.0.18" 119137 116086 sources."character-parser-2.2.0" 119138 - sources."clean-css-4.2.3" 116087 + sources."clean-css-4.2.4" 119139 116088 sources."cliui-2.1.0" 119140 116089 sources."code-point-at-1.1.0" 119141 116090 sources."colors-1.0.3" ··· 119860 116809 stylelint = nodeEnv.buildNodePackage { 119861 116810 name = "stylelint"; 119862 116811 packageName = "stylelint"; 119863 - version = "13.13.1"; 116812 + version = "14.0.1"; 119864 116813 src = fetchurl { 119865 - url = "https://registry.npmjs.org/stylelint/-/stylelint-13.13.1.tgz"; 119866 - sha512 = "Mv+BQr5XTUrKqAXmpqm6Ddli6Ief+AiPZkRsIrAoUKFuq/ElkUh9ZMYxXD0iQNZ5ADghZKLOWz1h7hTClB7zgQ=="; 116814 + url = "https://registry.npmjs.org/stylelint/-/stylelint-14.0.1.tgz"; 116815 + sha512 = "ZcAkmFLVCultmwkQUjxKzxW/o5+CzNmDk6TPJj/d4Y7ipTGGrewIWmNm+InjdSr04PR5/yynsAJeYJY/wisdMg=="; 119867 116816 }; 119868 116817 dependencies = [ 119869 116818 sources."@babel/code-frame-7.15.8" 119870 - sources."@babel/compat-data-7.15.0" 119871 - sources."@babel/core-7.15.8" 119872 - sources."@babel/generator-7.15.8" 119873 - sources."@babel/helper-compilation-targets-7.15.4" 119874 - sources."@babel/helper-function-name-7.15.4" 119875 - sources."@babel/helper-get-function-arity-7.15.4" 119876 - sources."@babel/helper-hoist-variables-7.15.4" 119877 - sources."@babel/helper-member-expression-to-functions-7.15.4" 119878 - sources."@babel/helper-module-imports-7.15.4" 119879 - sources."@babel/helper-module-transforms-7.15.8" 119880 - sources."@babel/helper-optimise-call-expression-7.15.4" 119881 - sources."@babel/helper-replace-supers-7.15.4" 119882 - sources."@babel/helper-simple-access-7.15.4" 119883 - sources."@babel/helper-split-export-declaration-7.15.4" 119884 116819 sources."@babel/helper-validator-identifier-7.15.7" 119885 - sources."@babel/helper-validator-option-7.14.5" 119886 - sources."@babel/helpers-7.15.4" 119887 - (sources."@babel/highlight-7.14.5" // { 119888 - dependencies = [ 119889 - sources."chalk-2.4.2" 119890 - ]; 119891 - }) 119892 - sources."@babel/parser-7.15.8" 119893 - sources."@babel/template-7.15.4" 119894 - sources."@babel/traverse-7.15.4" 119895 - sources."@babel/types-7.15.6" 116820 + sources."@babel/highlight-7.14.5" 119896 116821 sources."@nodelib/fs.scandir-2.1.5" 119897 116822 sources."@nodelib/fs.stat-2.0.5" 119898 116823 sources."@nodelib/fs.walk-1.2.8" 119899 - sources."@stylelint/postcss-css-in-js-0.37.2" 119900 - sources."@stylelint/postcss-markdown-0.36.2" 119901 - sources."@types/mdast-3.0.10" 119902 116824 sources."@types/minimist-1.2.2" 119903 116825 sources."@types/normalize-package-data-2.4.1" 119904 116826 sources."@types/parse-json-4.0.0" 119905 - sources."@types/unist-2.0.6" 119906 116827 sources."ajv-8.6.3" 119907 116828 sources."ansi-regex-5.0.1" 119908 116829 sources."ansi-styles-3.2.1" 119909 116830 sources."array-union-2.1.0" 119910 116831 sources."arrify-1.0.1" 119911 116832 sources."astral-regex-2.0.0" 119912 - (sources."autoprefixer-9.8.8" // { 119913 - dependencies = [ 119914 - sources."picocolors-0.2.1" 119915 - ]; 119916 - }) 119917 - sources."bail-1.0.5" 119918 116833 sources."balanced-match-2.0.0" 119919 116834 (sources."brace-expansion-1.1.11" // { 119920 116835 dependencies = [ ··· 119922 116837 ]; 119923 116838 }) 119924 116839 sources."braces-3.0.2" 119925 - sources."browserslist-4.17.4" 119926 116840 sources."callsites-3.1.0" 119927 116841 sources."camelcase-5.3.1" 119928 116842 sources."camelcase-keys-6.2.2" 119929 - sources."caniuse-lite-1.0.30001267" 119930 - (sources."chalk-4.1.2" // { 119931 - dependencies = [ 119932 - sources."ansi-styles-4.3.0" 119933 - sources."color-convert-2.0.1" 119934 - sources."color-name-1.1.4" 119935 - sources."has-flag-4.0.0" 119936 - sources."supports-color-7.2.0" 119937 - ]; 119938 - }) 119939 - sources."character-entities-1.2.4" 119940 - sources."character-entities-legacy-1.1.4" 119941 - sources."character-reference-invalid-1.1.4" 116843 + sources."chalk-2.4.2" 119942 116844 sources."clone-regexp-2.2.0" 119943 116845 sources."color-convert-1.9.3" 119944 116846 sources."color-name-1.1.3" 119945 116847 sources."concat-map-0.0.1" 119946 - sources."convert-source-map-1.8.0" 119947 116848 sources."cosmiconfig-7.0.1" 119948 116849 sources."cssesc-3.0.0" 119949 116850 sources."debug-4.3.2" ··· 119954 116855 ]; 119955 116856 }) 119956 116857 sources."dir-glob-3.0.1" 119957 - (sources."dom-serializer-0.2.2" // { 119958 - dependencies = [ 119959 - sources."domelementtype-2.2.0" 119960 - sources."entities-2.2.0" 119961 - ]; 119962 - }) 119963 - sources."domelementtype-1.3.1" 119964 - sources."domhandler-2.4.2" 119965 - sources."domutils-1.7.0" 119966 - sources."electron-to-chromium-1.3.870" 119967 116858 sources."emoji-regex-8.0.0" 119968 - sources."entities-1.1.2" 119969 116859 sources."error-ex-1.3.2" 119970 - sources."escalade-3.1.1" 119971 116860 sources."escape-string-regexp-1.0.5" 119972 116861 sources."execall-2.0.0" 119973 - sources."extend-3.0.2" 119974 116862 sources."fast-deep-equal-3.1.3" 119975 116863 sources."fast-glob-3.2.7" 119976 116864 sources."fastest-levenshtein-1.0.12" ··· 119982 116870 sources."flatted-3.2.2" 119983 116871 sources."fs.realpath-1.0.0" 119984 116872 sources."function-bind-1.1.1" 119985 - sources."gensync-1.0.0-beta.2" 119986 116873 sources."get-stdin-8.0.0" 119987 116874 sources."glob-7.2.0" 119988 116875 sources."glob-parent-5.1.2" 119989 116876 sources."global-modules-2.0.0" 119990 116877 sources."global-prefix-3.0.0" 119991 - sources."globals-11.12.0" 119992 116878 sources."globby-11.0.4" 119993 116879 sources."globjoin-0.1.4" 119994 - sources."gonzales-pe-4.3.0" 119995 116880 sources."hard-rejection-2.1.0" 119996 116881 sources."has-1.0.3" 119997 116882 sources."has-flag-3.0.0" 119998 116883 sources."hosted-git-info-4.0.2" 119999 116884 sources."html-tags-3.1.0" 120000 - sources."htmlparser2-3.10.1" 120001 116885 sources."ignore-5.1.8" 120002 116886 (sources."import-fresh-3.3.0" // { 120003 116887 dependencies = [ ··· 120010 116894 sources."inflight-1.0.6" 120011 116895 sources."inherits-2.0.4" 120012 116896 sources."ini-1.3.8" 120013 - sources."is-alphabetical-1.0.4" 120014 - sources."is-alphanumerical-1.0.4" 120015 116897 sources."is-arrayish-0.2.1" 120016 - sources."is-buffer-2.0.5" 120017 116898 sources."is-core-module-2.8.0" 120018 - sources."is-decimal-1.0.4" 120019 116899 sources."is-extglob-2.1.1" 120020 116900 sources."is-fullwidth-code-point-3.0.0" 120021 116901 sources."is-glob-4.0.3" 120022 - sources."is-hexadecimal-1.0.4" 120023 116902 sources."is-number-7.0.0" 120024 - sources."is-plain-obj-2.1.0" 116903 + sources."is-plain-obj-1.1.0" 116904 + sources."is-plain-object-5.0.0" 120025 116905 sources."is-regexp-2.1.0" 120026 116906 sources."is-typedarray-1.0.0" 120027 - sources."is-unicode-supported-0.1.0" 120028 116907 sources."isexe-2.0.0" 120029 116908 sources."js-tokens-4.0.0" 120030 - sources."jsesc-2.5.2" 120031 116909 sources."json-parse-even-better-errors-2.3.1" 120032 116910 sources."json-schema-traverse-1.0.0" 120033 - sources."json5-2.2.0" 120034 116911 sources."kind-of-6.0.3" 120035 - sources."known-css-properties-0.21.0" 116912 + sources."known-css-properties-0.23.0" 120036 116913 sources."lines-and-columns-1.1.6" 120037 116914 sources."locate-path-5.0.0" 120038 - sources."lodash-4.17.21" 120039 116915 sources."lodash.clonedeep-4.5.0" 120040 116916 sources."lodash.truncate-4.4.2" 120041 - sources."log-symbols-4.1.0" 120042 - sources."longest-streak-2.0.4" 120043 116917 sources."lru-cache-6.0.0" 120044 116918 sources."map-obj-4.3.0" 120045 116919 sources."mathml-tag-names-2.1.3" 120046 - sources."mdast-util-from-markdown-0.8.5" 120047 - sources."mdast-util-to-markdown-0.6.5" 120048 - sources."mdast-util-to-string-2.0.0" 120049 116920 sources."meow-9.0.0" 120050 116921 sources."merge2-1.4.1" 120051 - sources."micromark-2.11.4" 120052 116922 sources."micromatch-4.0.4" 120053 116923 sources."min-indent-1.0.1" 120054 116924 sources."minimatch-3.0.4" 120055 - sources."minimist-1.2.5" 120056 - (sources."minimist-options-4.1.0" // { 120057 - dependencies = [ 120058 - sources."is-plain-obj-1.1.0" 120059 - ]; 120060 - }) 116925 + sources."minimist-options-4.1.0" 120061 116926 sources."ms-2.1.2" 120062 - sources."node-releases-2.0.0" 120063 - (sources."normalize-package-data-3.0.3" // { 120064 - dependencies = [ 120065 - sources."semver-7.3.5" 120066 - ]; 120067 - }) 120068 - sources."normalize-range-0.1.2" 116927 + sources."nanoid-3.1.30" 116928 + sources."normalize-package-data-3.0.3" 116929 + sources."normalize-path-3.0.0" 120069 116930 sources."normalize-selector-0.2.0" 120070 - sources."num2fraction-1.2.2" 120071 116931 sources."once-1.4.0" 120072 116932 sources."p-limit-2.3.0" 120073 116933 sources."p-locate-4.1.0" 120074 116934 sources."p-try-2.2.0" 120075 116935 sources."parent-module-1.0.1" 120076 - sources."parse-entities-2.0.0" 120077 116936 sources."parse-json-5.2.0" 120078 116937 sources."path-exists-4.0.0" 120079 116938 sources."path-is-absolute-1.0.1" ··· 120081 116940 sources."path-type-4.0.0" 120082 116941 sources."picocolors-1.0.0" 120083 116942 sources."picomatch-2.3.0" 120084 - (sources."postcss-7.0.39" // { 120085 - dependencies = [ 120086 - sources."picocolors-0.2.1" 120087 - sources."source-map-0.6.1" 120088 - ]; 120089 - }) 120090 - sources."postcss-html-0.36.0" 120091 - sources."postcss-less-3.1.4" 116943 + sources."postcss-8.3.11" 120092 116944 sources."postcss-media-query-parser-0.2.3" 120093 116945 sources."postcss-resolve-nested-selector-0.1.1" 120094 - sources."postcss-safe-parser-4.0.2" 120095 - sources."postcss-sass-0.4.4" 120096 - sources."postcss-scss-2.1.1" 116946 + sources."postcss-safe-parser-6.0.0" 120097 116947 sources."postcss-selector-parser-6.0.6" 120098 - sources."postcss-syntax-0.36.2" 120099 116948 sources."postcss-value-parser-4.1.0" 120100 116949 sources."punycode-2.1.1" 120101 116950 sources."queue-microtask-1.2.3" ··· 120113 116962 sources."type-fest-0.8.1" 120114 116963 ]; 120115 116964 }) 120116 - sources."readable-stream-3.6.0" 120117 116965 sources."redent-3.0.0" 120118 - sources."remark-13.0.0" 120119 - sources."remark-parse-9.0.0" 120120 - sources."remark-stringify-9.0.1" 120121 - sources."repeat-string-1.6.1" 120122 116966 sources."require-from-string-2.0.2" 120123 116967 sources."resolve-1.20.0" 120124 116968 sources."resolve-from-5.0.0" 120125 116969 sources."reusify-1.0.4" 120126 116970 sources."rimraf-3.0.2" 120127 116971 sources."run-parallel-1.2.0" 120128 - sources."safe-buffer-5.1.2" 120129 - sources."semver-6.3.0" 116972 + sources."semver-7.3.5" 120130 116973 sources."signal-exit-3.0.5" 120131 116974 sources."slash-3.0.0" 120132 116975 (sources."slice-ansi-4.0.0" // { ··· 120136 116979 sources."color-name-1.1.4" 120137 116980 ]; 120138 116981 }) 120139 - sources."source-map-0.5.7" 116982 + sources."source-map-js-0.6.2" 120140 116983 sources."spdx-correct-3.1.1" 120141 116984 sources."spdx-exceptions-2.3.0" 120142 116985 sources."spdx-expression-parse-3.0.1" 120143 116986 sources."spdx-license-ids-3.0.10" 120144 116987 sources."specificity-0.4.1" 120145 116988 sources."string-width-4.2.3" 120146 - (sources."string_decoder-1.3.0" // { 120147 - dependencies = [ 120148 - sources."safe-buffer-5.2.1" 120149 - ]; 120150 - }) 120151 116989 sources."strip-ansi-6.0.1" 120152 116990 sources."strip-indent-3.0.0" 120153 116991 sources."style-search-0.1.0" 120154 - sources."sugarss-2.0.0" 120155 116992 sources."supports-color-5.5.0" 120156 116993 sources."svg-tags-1.0.0" 120157 116994 sources."table-6.7.2" 120158 - sources."to-fast-properties-2.0.0" 120159 116995 sources."to-regex-range-5.0.1" 120160 116996 sources."trim-newlines-3.0.1" 120161 - sources."trough-1.0.5" 120162 116997 sources."type-fest-0.18.1" 120163 116998 sources."typedarray-to-buffer-3.1.5" 120164 - sources."unified-9.2.2" 120165 - sources."unist-util-find-all-after-3.0.2" 120166 - sources."unist-util-is-4.1.0" 120167 - sources."unist-util-stringify-position-2.0.3" 120168 116999 sources."uri-js-4.4.1" 120169 117000 sources."util-deprecate-1.0.2" 120170 117001 sources."v8-compile-cache-2.3.0" 120171 117002 sources."validate-npm-package-license-3.0.4" 120172 - sources."vfile-4.2.1" 120173 - sources."vfile-message-2.0.4" 120174 117003 sources."which-1.3.1" 120175 117004 sources."wrappy-1.0.2" 120176 117005 sources."write-file-atomic-3.0.3" 120177 117006 sources."yallist-4.0.0" 120178 117007 sources."yaml-1.10.2" 120179 117008 sources."yargs-parser-20.2.9" 120180 - sources."zwitch-1.0.5" 120181 117009 ]; 120182 117010 buildInputs = globalBuildInputs; 120183 117011 meta = { ··· 120201 117029 sources."@nodelib/fs.scandir-2.1.5" 120202 117030 sources."@nodelib/fs.stat-2.0.5" 120203 117031 sources."@nodelib/fs.walk-1.2.8" 120204 - sources."@types/node-16.11.0" 117032 + sources."@types/node-16.11.6" 120205 117033 sources."@types/pug-2.0.5" 120206 117034 sources."@types/sass-1.16.1" 120207 117035 sources."ansi-styles-4.3.0" ··· 120291 117119 sources."@nodelib/fs.scandir-2.1.5" 120292 117120 sources."@nodelib/fs.stat-2.0.5" 120293 117121 sources."@nodelib/fs.walk-1.2.8" 120294 - sources."@types/node-16.11.0" 117122 + sources."@types/node-16.11.6" 120295 117123 sources."@types/pug-2.0.5" 120296 117124 sources."@types/sass-1.16.1" 120297 117125 sources."anymatch-3.1.2" ··· 120982 117810 sources."type-is-1.6.18" 120983 117811 sources."typedarray-0.0.6" 120984 117812 sources."uglify-js-3.14.2" 120985 - sources."undefsafe-2.0.3" 117813 + sources."undefsafe-2.0.5" 120986 117814 (sources."union-value-1.0.1" // { 120987 117815 dependencies = [ 120988 117816 sources."is-extendable-0.1.1" ··· 121584 118412 sources."@types/normalize-package-data-2.4.1" 121585 118413 sources."@types/parse5-5.0.3" 121586 118414 sources."@types/unist-2.0.6" 121587 - sources."acorn-8.5.0" 121588 - sources."acorn-jsx-5.3.2" 121589 - sources."alex-9.1.0" 118415 + sources."alex-9.1.1" 121590 118416 sources."ansi-align-3.0.1" 121591 118417 sources."ansi-regex-5.0.1" 121592 118418 sources."ansi-styles-3.2.1" ··· 121662 118488 sources."escape-goat-2.1.1" 121663 118489 sources."escape-string-regexp-1.0.5" 121664 118490 sources."esprima-4.0.1" 121665 - sources."estree-util-is-identifier-name-1.1.0" 121666 118491 sources."event-stream-3.1.7" 121667 118492 sources."extend-3.0.2" 121668 118493 sources."fault-1.0.4" ··· 121713 118538 sources."inherits-2.0.4" 121714 118539 sources."ini-1.3.8" 121715 118540 sources."is-alphabetical-1.0.4" 118541 + sources."is-alphanumeric-1.0.0" 121716 118542 sources."is-alphanumerical-1.0.4" 121717 118543 sources."is-arrayish-0.2.1" 121718 118544 sources."is-buffer-2.0.5" ··· 121763 118589 sources."map-obj-4.3.0" 121764 118590 sources."map-stream-0.1.0" 121765 118591 sources."markdown-escapes-1.0.4" 118592 + sources."markdown-table-2.0.0" 121766 118593 sources."mdast-comment-marker-1.1.2" 121767 - sources."mdast-util-mdx-0.1.1" 121768 - sources."mdast-util-mdx-expression-0.1.1" 121769 - sources."mdast-util-mdx-jsx-0.1.4" 121770 - sources."mdast-util-mdxjs-esm-0.1.1" 121771 - sources."mdast-util-to-markdown-0.6.5" 118594 + sources."mdast-util-compact-2.0.1" 121772 118595 sources."mdast-util-to-nlcst-4.0.1" 121773 - sources."mdast-util-to-string-2.0.0" 121774 118596 sources."meow-7.1.1" 121775 - sources."micromark-2.11.4" 121776 - sources."micromark-extension-mdx-0.2.1" 121777 - sources."micromark-extension-mdx-expression-0.3.2" 121778 - sources."micromark-extension-mdx-jsx-0.3.3" 121779 - sources."micromark-extension-mdx-md-0.1.1" 121780 - sources."micromark-extension-mdxjs-0.3.0" 121781 - sources."micromark-extension-mdxjs-esm-0.3.1" 121782 118597 sources."mimic-response-1.0.1" 121783 118598 sources."min-indent-1.0.1" 121784 118599 sources."minimatch-3.0.4" ··· 121838 118653 sources."rehype-parse-7.0.1" 121839 118654 sources."rehype-retext-2.0.4" 121840 118655 sources."remark-frontmatter-2.0.0" 121841 - sources."remark-mdx-2.0.0-next.9" 118656 + sources."remark-mdx-2.0.0-next.7" 121842 118657 sources."remark-message-control-6.0.0" 121843 - (sources."remark-parse-8.0.3" // { 121844 - dependencies = [ 121845 - sources."unist-util-remove-position-2.0.1" 121846 - ]; 121847 - }) 118658 + sources."remark-parse-8.0.3" 121848 118659 sources."remark-retext-4.0.0" 118660 + sources."remark-stringify-8.1.1" 121849 118661 sources."repeat-string-1.6.1" 121850 118662 sources."resolve-1.20.0" 121851 118663 sources."resolve-from-5.0.0" ··· 121936 118748 sources."unist-util-is-4.1.0" 121937 118749 sources."unist-util-modify-children-2.0.0" 121938 118750 sources."unist-util-position-3.1.0" 121939 - sources."unist-util-remove-position-3.0.0" 118751 + sources."unist-util-remove-position-2.0.1" 121940 118752 sources."unist-util-stringify-position-2.0.3" 121941 118753 sources."unist-util-visit-2.0.3" 121942 118754 sources."unist-util-visit-children-1.1.4" ··· 121972 118784 sources."xdg-basedir-4.0.0" 121973 118785 sources."xtend-4.0.2" 121974 118786 sources."yargs-parser-18.1.3" 121975 - sources."zwitch-1.0.5" 121976 118787 ]; 121977 118788 buildInputs = globalBuildInputs; 121978 118789 meta = { ··· 122384 119195 sources."@types/cacheable-request-6.0.2" 122385 119196 sources."@types/http-cache-semantics-4.0.1" 122386 119197 sources."@types/keyv-3.1.3" 122387 - sources."@types/node-16.11.0" 119198 + sources."@types/node-16.11.6" 122388 119199 sources."@types/responselike-1.0.0" 122389 119200 sources."abbrev-1.1.1" 122390 119201 sources."abstract-logging-2.0.1" ··· 122460 119271 sources."content-type-1.0.4" 122461 119272 sources."cookie-0.4.0" 122462 119273 sources."cookie-signature-1.0.6" 122463 - sources."core-js-3.18.3" 119274 + sources."core-js-3.19.0" 122464 119275 sources."core-util-is-1.0.2" 122465 119276 sources."css-select-1.2.0" 122466 119277 sources."css-what-2.1.3" ··· 122859 119670 titanium = nodeEnv.buildNodePackage { 122860 119671 name = "titanium"; 122861 119672 packageName = "titanium"; 122862 - version = "5.3.2"; 119673 + version = "5.4.0"; 122863 119674 src = fetchurl { 122864 - url = "https://registry.npmjs.org/titanium/-/titanium-5.3.2.tgz"; 122865 - sha512 = "fVpcAtANFCRTadfJ87uMKb41FpWeCikJkoFkFdRzCOQ/cA/9OgSbi2P08otCCyY2oAjLmRO5eOHZAeud+eKwzA=="; 119675 + url = "https://registry.npmjs.org/titanium/-/titanium-5.4.0.tgz"; 119676 + sha512 = "IPKfQkfSv9QjTSVDpsBK1rW9Zc3fsGa+wIvBmwX/vdBW44ymjSxrvbZ+6MFwYOELmzWkn7K+nETDHFBk8V9zOQ=="; 122866 119677 }; 122867 119678 dependencies = [ 119679 + sources."@octokit/auth-token-2.5.0" 119680 + sources."@octokit/core-3.5.1" 119681 + sources."@octokit/endpoint-6.0.12" 119682 + sources."@octokit/graphql-4.8.0" 119683 + sources."@octokit/openapi-types-11.2.0" 119684 + sources."@octokit/plugin-paginate-rest-2.17.0" 119685 + sources."@octokit/plugin-request-log-1.0.4" 119686 + sources."@octokit/plugin-rest-endpoint-methods-5.13.0" 119687 + sources."@octokit/request-5.6.2" 119688 + sources."@octokit/request-error-2.1.0" 119689 + sources."@octokit/rest-18.12.0" 119690 + sources."@octokit/types-6.34.0" 122868 119691 sources."ajv-6.12.6" 122869 119692 sources."asn1-0.2.4" 122870 119693 sources."assert-plus-1.0.0" ··· 122875 119698 sources."aws4-1.11.0" 122876 119699 sources."balanced-match-1.0.2" 122877 119700 sources."bcrypt-pbkdf-1.0.2" 119701 + sources."before-after-hook-2.2.2" 122878 119702 sources."brace-expansion-1.1.11" 122879 119703 sources."buffer-crc32-0.2.13" 122880 119704 sources."caseless-0.12.0" ··· 122885 119709 sources."cycle-1.0.3" 122886 119710 sources."dashdash-1.14.1" 122887 119711 sources."delayed-stream-1.0.0" 119712 + sources."deprecation-2.3.1" 122888 119713 sources."ecc-jsbn-0.1.2" 122889 119714 sources."extend-3.0.2" 122890 119715 sources."extsprintf-1.3.0" ··· 122910 119735 sources."humanize-0.0.9" 122911 119736 sources."inflight-1.0.6" 122912 119737 sources."inherits-2.0.4" 119738 + sources."is-plain-object-5.0.0" 122913 119739 sources."is-typedarray-1.0.0" 122914 119740 sources."isstream-0.1.2" 122915 119741 sources."jsbn-0.1.1" ··· 122930 119756 sources."minimist-1.2.5" 122931 119757 sources."mkdirp-0.5.5" 122932 119758 sources."node-appc-1.1.2" 119759 + sources."node-fetch-2.6.5" 122933 119760 sources."oauth-sign-0.9.0" 122934 119761 sources."once-1.4.0" 122935 119762 sources."path-is-absolute-1.0.1" ··· 122952 119779 sources."stack-trace-0.0.10" 122953 119780 sources."temp-0.9.4" 122954 119781 sources."tough-cookie-2.5.0" 119782 + sources."tr46-0.0.3" 122955 119783 sources."tunnel-agent-0.6.0" 122956 119784 sources."tweetnacl-0.14.5" 119785 + sources."universal-user-agent-6.0.0" 122957 119786 sources."universalify-1.0.0" 122958 119787 sources."uri-js-4.4.1" 122959 119788 sources."uuid-8.3.2" 122960 119789 sources."verror-1.10.0" 119790 + sources."webidl-conversions-3.0.1" 119791 + sources."whatwg-url-5.0.0" 122961 119792 (sources."winston-2.4.5" // { 122962 119793 dependencies = [ 122963 119794 sources."async-1.0.0" ··· 123399 120230 sources."@types/component-emitter-1.2.11" 123400 120231 sources."@types/cookie-0.4.1" 123401 120232 sources."@types/cors-2.8.12" 123402 - sources."@types/node-14.17.27" 120233 + sources."@types/node-14.17.32" 123403 120234 sources."abbrev-1.1.1" 123404 120235 sources."accepts-1.3.7" 123405 120236 sources."ansi-regex-5.0.1" ··· 123428 120259 sources."cliui-7.0.4" 123429 120260 sources."clone-2.1.2" 123430 120261 sources."clone-response-1.0.2" 123431 - sources."color-3.0.0" 120262 + sources."color-3.2.1" 123432 120263 sources."color-convert-1.9.3" 123433 120264 sources."color-name-1.1.3" 123434 120265 sources."color-string-1.6.0" 123435 120266 sources."colors-1.4.0" 123436 - sources."colorspace-1.1.2" 120267 + sources."colorspace-1.1.4" 123437 120268 sources."component-emitter-1.3.0" 123438 120269 sources."concat-map-0.0.1" 123439 120270 sources."content-disposition-0.5.3" ··· 123452 120283 sources."depd-1.1.2" 123453 120284 sources."destroy-1.0.4" 123454 120285 sources."diff-5.0.0" 123455 - sources."diff2html-3.4.12" 120286 + sources."diff2html-3.4.13" 123456 120287 sources."dnd-page-scroll-0.0.4" 123457 120288 sources."duplexer3-0.1.4" 123458 120289 sources."ee-first-1.1.1" ··· 123680 120511 sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w=="; 123681 120512 }; 123682 120513 dependencies = [ 123683 - sources."@types/node-16.11.0" 120514 + sources."@types/node-16.11.6" 123684 120515 sources."@types/unist-2.0.6" 123685 120516 sources."@types/vfile-3.0.2" 123686 120517 sources."@types/vfile-message-2.0.0" ··· 123831 120662 sha512 = "UuxW79x2n0bYBexa3vblI2o4CPhIJTBGvA0remuNm74RjkjMkDHMXDriCs5sYQ7jYyekvROmvmC9t/Pn0g0+6Q=="; 123832 120663 }; 123833 120664 dependencies = [ 123834 - sources."@mapbox/node-pre-gyp-1.0.5" 120665 + sources."@mapbox/node-pre-gyp-1.0.6" 123835 120666 sources."@types/estree-0.0.50" 123836 120667 sources."abbrev-1.1.1" 123837 120668 sources."agent-base-6.0.2" 123838 - sources."ansi-regex-2.1.1" 120669 + sources."ansi-regex-3.0.0" 123839 120670 sources."ansi-styles-4.3.0" 123840 - sources."aproba-1.2.0" 123841 - sources."are-we-there-yet-1.1.7" 120671 + sources."aproba-2.0.0" 120672 + sources."are-we-there-yet-2.0.0" 123842 120673 sources."balanced-match-1.0.2" 123843 120674 sources."brace-expansion-1.1.11" 123844 120675 sources."canvas-2.8.0" ··· 123851 120682 sources."strip-ansi-6.0.1" 123852 120683 ]; 123853 120684 }) 123854 - sources."code-point-at-1.1.0" 123855 120685 sources."color-convert-2.0.1" 123856 120686 sources."color-name-1.1.4" 120687 + sources."color-support-1.1.3" 123857 120688 sources."commander-2.20.3" 123858 120689 sources."concat-map-0.0.1" 123859 120690 sources."console-control-strings-1.1.0" 123860 - sources."core-util-is-1.0.3" 123861 120691 sources."d3-array-2.12.1" 123862 120692 sources."d3-color-2.0.0" 123863 120693 sources."d3-delaunay-5.3.0" ··· 123886 120716 sources."fs-minipass-2.1.0" 123887 120717 sources."fs.realpath-1.0.0" 123888 120718 sources."function-bind-1.1.1" 123889 - sources."gauge-2.7.4" 120719 + sources."gauge-3.0.1" 123890 120720 sources."get-caller-file-2.0.5" 123891 120721 sources."glob-7.2.0" 123892 120722 sources."has-1.0.3" ··· 123897 120727 sources."inherits-2.0.4" 123898 120728 sources."internmap-1.0.1" 123899 120729 sources."is-core-module-2.8.0" 123900 - sources."is-fullwidth-code-point-1.0.0" 123901 - sources."isarray-1.0.0" 120730 + sources."is-fullwidth-code-point-2.0.0" 123902 120731 sources."lru-cache-6.0.0" 123903 120732 (sources."make-dir-3.1.0" // { 123904 120733 dependencies = [ ··· 123914 120743 sources."nan-2.15.0" 123915 120744 sources."node-fetch-2.6.5" 123916 120745 sources."nopt-5.0.0" 123917 - sources."npmlog-4.1.2" 123918 - sources."number-is-nan-1.0.1" 120746 + sources."npmlog-5.0.1" 123919 120747 sources."object-assign-4.1.1" 123920 120748 sources."once-1.4.0" 123921 120749 sources."path-is-absolute-1.0.1" 123922 120750 sources."path-parse-1.0.7" 123923 - sources."process-nextick-args-2.0.1" 123924 - sources."readable-stream-2.3.7" 120751 + sources."readable-stream-3.6.0" 123925 120752 sources."require-directory-2.1.1" 123926 120753 sources."resolve-1.20.0" 123927 120754 sources."rimraf-3.0.2" 123928 120755 sources."rw-1.3.3" 123929 - sources."safe-buffer-5.1.2" 120756 + sources."safe-buffer-5.2.1" 123930 120757 sources."safer-buffer-2.1.2" 123931 120758 sources."semver-7.3.5" 123932 120759 sources."set-blocking-2.0.0" 123933 120760 sources."signal-exit-3.0.5" 123934 120761 sources."simple-concat-1.0.1" 123935 120762 sources."simple-get-3.1.0" 123936 - sources."string-width-1.0.2" 123937 - sources."string_decoder-1.1.1" 123938 - sources."strip-ansi-3.0.1" 120763 + sources."string-width-2.1.1" 120764 + sources."string_decoder-1.3.0" 120765 + sources."strip-ansi-4.0.0" 123939 120766 sources."tar-6.1.11" 123940 120767 sources."topojson-client-3.1.0" 123941 120768 sources."tr46-0.0.3" ··· 123964 120791 sources."vega-statistics-1.7.10" 123965 120792 sources."vega-time-2.0.4" 123966 120793 sources."vega-transforms-4.9.4" 123967 - sources."vega-typings-0.22.0" 120794 + sources."vega-typings-0.22.1" 123968 120795 sources."vega-util-1.17.0" 123969 120796 sources."vega-view-5.10.1" 123970 120797 sources."vega-view-transforms-4.5.8" ··· 124061 120888 dependencies = [ 124062 120889 sources."@sindresorhus/is-0.14.0" 124063 120890 sources."@szmarczak/http-timer-1.1.2" 124064 - sources."@types/node-16.11.0" 120891 + sources."@types/node-16.11.6" 124065 120892 sources."@vercel/build-utils-2.12.2" 124066 120893 sources."@vercel/go-1.2.3" 124067 120894 sources."@vercel/node-1.12.1" ··· 124189 121016 vls = nodeEnv.buildNodePackage { 124190 121017 name = "vls"; 124191 121018 packageName = "vls"; 124192 - version = "0.7.4"; 121019 + version = "0.7.6"; 124193 121020 src = fetchurl { 124194 - url = "https://registry.npmjs.org/vls/-/vls-0.7.4.tgz"; 124195 - sha512 = "uU5HCIK5vX096eMA5fBwyR7tv36m1Ssy910w5ILT5OvCUTXgBR58gZRJWrL2HxCyG8oYXC+oFWjhJc7+ExBUgQ=="; 121021 + url = "https://registry.npmjs.org/vls/-/vls-0.7.6.tgz"; 121022 + sha512 = "UaE5peKpeT0dsTg4KAbxRVKLotD4i0DW3wb/srcJgNJmpBmTv2HAkE3hMR/naf1bMmUTpQyQPUaZOJE5ihBqlA=="; 124196 121023 }; 124197 121024 dependencies = [ 124198 121025 sources."@babel/code-frame-7.12.11" ··· 124217 121044 sources."balanced-match-1.0.2" 124218 121045 sources."brace-expansion-1.1.11" 124219 121046 sources."builtin-modules-1.1.1" 121047 + sources."call-bind-1.0.2" 124220 121048 sources."callsites-3.1.0" 124221 121049 (sources."chalk-4.1.2" // { 124222 121050 dependencies = [ ··· 124227 121055 sources."supports-color-7.2.0" 124228 121056 ]; 124229 121057 }) 121058 + sources."character-parser-2.2.0" 124230 121059 sources."color-convert-1.9.3" 124231 121060 sources."color-name-1.1.3" 124232 121061 sources."commander-2.20.3" ··· 124240 121069 sources."enquirer-2.3.6" 124241 121070 sources."escape-string-regexp-4.0.0" 124242 121071 sources."eslint-7.32.0" 124243 - (sources."eslint-plugin-vue-7.19.1" // { 121072 + (sources."eslint-plugin-vue-7.20.0" // { 124244 121073 dependencies = [ 124245 121074 sources."semver-6.3.0" 124246 121075 ]; ··· 124260 121089 sources."esprima-4.0.1" 124261 121090 (sources."esquery-1.4.0" // { 124262 121091 dependencies = [ 124263 - sources."estraverse-5.2.0" 121092 + sources."estraverse-5.3.0" 124264 121093 ]; 124265 121094 }) 124266 121095 (sources."esrecurse-4.3.0" // { 124267 121096 dependencies = [ 124268 - sources."estraverse-5.2.0" 121097 + sources."estraverse-5.3.0" 124269 121098 ]; 124270 121099 }) 124271 121100 sources."estraverse-4.3.0" ··· 124279 121108 sources."fs.realpath-1.0.0" 124280 121109 sources."function-bind-1.1.1" 124281 121110 sources."functional-red-black-tree-1.0.1" 121111 + sources."get-intrinsic-1.1.1" 124282 121112 sources."glob-7.2.0" 124283 121113 sources."glob-parent-5.1.2" 124284 - sources."globals-13.11.0" 121114 + sources."globals-13.12.0" 124285 121115 sources."has-1.0.3" 124286 121116 sources."has-flag-3.0.0" 121117 + sources."has-symbols-1.0.2" 121118 + sources."has-tostringtag-1.0.0" 124287 121119 sources."ignore-4.0.6" 124288 121120 sources."import-fresh-3.3.0" 124289 121121 sources."imurmurhash-0.1.4" 124290 121122 sources."inflight-1.0.6" 124291 121123 sources."inherits-2.0.4" 124292 121124 sources."is-core-module-2.8.0" 121125 + sources."is-expression-4.0.0" 124293 121126 sources."is-extglob-2.1.1" 124294 121127 sources."is-fullwidth-code-point-3.0.0" 124295 121128 sources."is-glob-4.0.3" 121129 + sources."is-regex-1.1.4" 124296 121130 sources."isexe-2.0.0" 124297 121131 sources."js-tokens-4.0.0" 124298 121132 sources."js-yaml-3.14.1" ··· 124309 121143 sources."mkdirp-0.5.5" 124310 121144 sources."ms-2.1.2" 124311 121145 sources."natural-compare-1.4.0" 121146 + sources."object-assign-4.1.1" 124312 121147 sources."once-1.4.0" 124313 121148 sources."optionator-0.9.1" 124314 121149 sources."parent-module-1.0.1" ··· 124318 121153 sources."prelude-ls-1.2.1" 124319 121154 sources."prettier-2.4.1" 124320 121155 sources."progress-2.0.3" 121156 + sources."pug-error-2.0.0" 121157 + sources."pug-lexer-5.0.1" 124321 121158 sources."punycode-2.1.1" 124322 121159 sources."regexpp-3.2.0" 124323 121160 sources."require-from-string-2.0.2" ··· 124466 121303 sources."jsonc-parser-3.0.0" 124467 121304 sources."ms-2.0.0" 124468 121305 sources."request-light-0.4.0" 124469 - (sources."vscode-json-languageservice-4.1.8" // { 121306 + (sources."vscode-json-languageservice-4.1.9" // { 124470 121307 dependencies = [ 124471 121308 sources."vscode-nls-5.0.0" 124472 121309 ]; ··· 124542 121379 vscode-langservers-extracted = nodeEnv.buildNodePackage { 124543 121380 name = "vscode-langservers-extracted"; 124544 121381 packageName = "vscode-langservers-extracted"; 124545 - version = "3.0.0"; 121382 + version = "3.0.1"; 124546 121383 src = fetchurl { 124547 - url = "https://registry.npmjs.org/vscode-langservers-extracted/-/vscode-langservers-extracted-3.0.0.tgz"; 124548 - sha512 = "iu39jFf+P1n9gf8UDkgZPnQwUiqeOvOuwFuO5kYMopA1DTGliqonXMxGX6RwYLfRrBQQBbu+pyoc89cF1V96Og=="; 121384 + url = "https://registry.npmjs.org/vscode-langservers-extracted/-/vscode-langservers-extracted-3.0.1.tgz"; 121385 + sha512 = "jKFt6vcLH6IZ3qdvcrPwfsUHBMfcMTw6q2EIXHgur0HTbLDReWRAMjdvTHUqjo2Jn38MxiGYTZDsF2RhEv5zpA=="; 124549 121386 }; 124550 121387 dependencies = [ 124551 121388 sources."jsonc-parser-3.0.0" 124552 121389 sources."request-light-0.5.4" 124553 121390 sources."typescript-4.4.4" 124554 - sources."vscode-css-languageservice-5.1.7" 124555 - sources."vscode-html-languageservice-4.1.0" 124556 - sources."vscode-json-languageservice-4.1.8" 121391 + sources."vscode-css-languageservice-5.1.8" 121392 + sources."vscode-html-languageservice-4.1.1" 121393 + sources."vscode-json-languageservice-4.1.9" 124557 121394 sources."vscode-jsonrpc-8.0.0-next.3" 124558 121395 sources."vscode-languageserver-8.0.0-next.3" 124559 121396 (sources."vscode-languageserver-protocol-3.17.0-next.9" // { ··· 124583 121420 src = ../../misc/vscode-extensions/vscode-lldb/build-deps; 124584 121421 dependencies = [ 124585 121422 sources."@discoveryjs/json-ext-0.5.5" 124586 - sources."@types/eslint-7.28.1" 121423 + sources."@types/eslint-7.28.2" 124587 121424 sources."@types/eslint-scope-3.7.1" 124588 121425 sources."@types/estree-0.0.50" 124589 121426 sources."@types/json-schema-7.0.9" ··· 124629 121466 sources."brace-expansion-1.1.11" 124630 121467 sources."braces-3.0.2" 124631 121468 sources."browser-stdout-1.3.1" 124632 - sources."browserslist-4.17.4" 121469 + sources."browserslist-4.17.5" 124633 121470 sources."buffer-crc32-0.2.13" 124634 121471 sources."buffer-from-1.1.2" 124635 121472 sources."call-bind-1.0.2" 124636 121473 sources."camelcase-6.2.0" 124637 - sources."caniuse-lite-1.0.30001267" 121474 + sources."caniuse-lite-1.0.30001271" 124638 121475 (sources."chalk-4.1.2" // { 124639 121476 dependencies = [ 124640 121477 sources."supports-color-7.2.0" ··· 124674 121511 sources."domelementtype-2.2.0" 124675 121512 sources."domhandler-4.2.2" 124676 121513 sources."domutils-2.8.0" 124677 - sources."electron-to-chromium-1.3.870" 121514 + sources."electron-to-chromium-1.3.880" 124678 121515 sources."emoji-regex-8.0.0" 124679 121516 sources."emojis-list-3.0.0" 124680 121517 sources."enhanced-resolve-5.8.3" ··· 124687 121524 sources."eslint-scope-5.1.1" 124688 121525 (sources."esrecurse-4.3.0" // { 124689 121526 dependencies = [ 124690 - sources."estraverse-5.2.0" 121527 + sources."estraverse-5.3.0" 124691 121528 ]; 124692 121529 }) 124693 121530 sources."estraverse-4.3.0" ··· 124734 121571 sources."isarray-0.0.1" 124735 121572 sources."isexe-2.0.0" 124736 121573 sources."isobject-3.0.1" 124737 - sources."jest-worker-27.2.5" 121574 + sources."jest-worker-27.3.1" 124738 121575 sources."js-yaml-4.0.0" 124739 121576 sources."json-parse-better-errors-1.0.2" 124740 121577 sources."json-schema-traverse-0.4.1" ··· 124777 121614 sources."mute-stream-0.0.8" 124778 121615 sources."nanoid-3.1.20" 124779 121616 sources."neo-async-2.6.2" 124780 - sources."node-releases-2.0.0" 121617 + sources."node-releases-2.0.1" 124781 121618 sources."normalize-path-3.0.0" 124782 121619 sources."npm-run-path-4.0.1" 124783 121620 sources."nth-check-2.0.1" ··· 124872 121709 sources."uri-js-4.4.1" 124873 121710 sources."url-join-1.1.0" 124874 121711 sources."util-deprecate-1.0.2" 124875 - sources."v8-compile-cache-2.3.0" 124876 - (sources."vsce-1.100.1" // { 121712 + (sources."vsce-1.100.2" // { 124877 121713 dependencies = [ 124878 121714 sources."ansi-styles-3.2.1" 124879 121715 sources."chalk-2.4.2" ··· 124887 121723 sources."vscode-debugadapter-testsupport-1.49.0" 124888 121724 sources."vscode-debugprotocol-1.49.0" 124889 121725 sources."watchpack-2.2.0" 124890 - sources."webpack-5.58.2" 124891 - (sources."webpack-cli-4.9.0" // { 121726 + sources."webpack-5.60.0" 121727 + (sources."webpack-cli-4.9.1" // { 124892 121728 dependencies = [ 124893 121729 sources."commander-7.2.0" 124894 121730 ]; ··· 125250 122086 sources."@starptech/rehype-webparser-0.10.0" 125251 122087 sources."@starptech/webparser-0.10.0" 125252 122088 sources."@szmarczak/http-timer-1.1.2" 125253 - sources."@types/node-16.11.0" 122089 + sources."@types/node-16.11.6" 125254 122090 sources."@types/unist-2.0.6" 125255 122091 sources."@types/vfile-3.0.2" 125256 122092 sources."@types/vfile-message-2.0.0" ··· 125466 122302 sources."esprima-4.0.1" 125467 122303 (sources."esquery-1.4.0" // { 125468 122304 dependencies = [ 125469 - sources."estraverse-5.2.0" 122305 + sources."estraverse-5.3.0" 125470 122306 ]; 125471 122307 }) 125472 122308 (sources."esrecurse-4.3.0" // { 125473 122309 dependencies = [ 125474 - sources."estraverse-5.2.0" 122310 + sources."estraverse-5.3.0" 125475 122311 ]; 125476 122312 }) 125477 122313 sources."estraverse-4.3.0" ··· 126176 123012 }; 126177 123013 dependencies = [ 126178 123014 sources."@babel/runtime-corejs3-7.15.4" 126179 - sources."@mapbox/node-pre-gyp-1.0.5" 123015 + sources."@mapbox/node-pre-gyp-1.0.6" 126180 123016 sources."@tootallnate/once-1.1.2" 126181 123017 sources."@types/raf-3.4.0" 126182 123018 sources."abab-2.0.5" ··· 126189 123025 }) 126190 123026 sources."acorn-walk-7.2.0" 126191 123027 sources."agent-base-6.0.2" 126192 - sources."ansi-regex-2.1.1" 123028 + sources."ansi-regex-3.0.0" 126193 123029 sources."ansi-styles-4.3.0" 126194 - sources."aproba-1.2.0" 126195 - sources."are-we-there-yet-1.1.7" 123030 + sources."aproba-2.0.0" 123031 + sources."are-we-there-yet-2.0.0" 126196 123032 sources."asynckit-0.4.0" 126197 123033 sources."atob-2.1.2" 126198 123034 sources."balanced-match-1.0.2" ··· 126211 123047 sources."strip-ansi-6.0.1" 126212 123048 ]; 126213 123049 }) 126214 - sources."code-point-at-1.1.0" 126215 123050 sources."color-convert-2.0.1" 126216 123051 sources."color-name-1.1.4" 123052 + sources."color-support-1.1.3" 126217 123053 sources."combined-stream-1.0.8" 126218 123054 sources."concat-map-0.0.1" 126219 123055 sources."console-control-strings-1.1.0" 126220 - sources."core-js-pure-3.18.3" 126221 - sources."core-util-is-1.0.3" 123056 + sources."core-js-pure-3.19.0" 126222 123057 sources."cssom-0.4.4" 126223 123058 (sources."cssstyle-2.3.0" // { 126224 123059 dependencies = [ ··· 126248 123083 sources."escalade-3.1.1" 126249 123084 sources."escodegen-2.0.0" 126250 123085 sources."esprima-4.0.1" 126251 - sources."estraverse-5.2.0" 123086 + sources."estraverse-5.3.0" 126252 123087 sources."esutils-2.0.3" 126253 123088 sources."fast-levenshtein-2.0.6" 126254 123089 sources."form-data-3.0.1" 126255 123090 sources."fs-extra-10.0.0" 126256 123091 sources."fs-minipass-2.1.0" 126257 123092 sources."fs.realpath-1.0.0" 126258 - sources."gauge-2.7.4" 123093 + sources."gauge-3.0.1" 126259 123094 sources."get-caller-file-2.0.5" 126260 123095 sources."glob-7.2.0" 126261 123096 sources."graceful-fs-4.2.8" ··· 126266 123101 sources."iconv-lite-0.4.24" 126267 123102 sources."inflight-1.0.6" 126268 123103 sources."inherits-2.0.4" 126269 - sources."is-fullwidth-code-point-1.0.0" 123104 + sources."is-fullwidth-code-point-2.0.0" 126270 123105 sources."is-potential-custom-element-name-1.0.1" 126271 - sources."isarray-1.0.0" 126272 123106 (sources."jsdom-16.7.0" // { 126273 123107 dependencies = [ 126274 123108 sources."tr46-2.1.0" ··· 126299 123133 sources."nan-2.15.0" 126300 123134 sources."node-fetch-2.6.5" 126301 123135 sources."nopt-5.0.0" 126302 - sources."npmlog-4.1.2" 126303 - sources."number-is-nan-1.0.1" 123136 + sources."npmlog-5.0.1" 126304 123137 sources."nwsapi-2.2.0" 126305 123138 sources."object-assign-4.1.1" 126306 123139 sources."once-1.4.0" ··· 126310 123143 sources."path-is-absolute-1.0.1" 126311 123144 sources."performance-now-2.1.0" 126312 123145 sources."prelude-ls-1.1.2" 126313 - sources."process-nextick-args-2.0.1" 126314 123146 sources."psl-1.8.0" 126315 123147 sources."punycode-2.1.1" 126316 123148 sources."raf-3.4.1" 126317 - sources."readable-stream-2.3.7" 123149 + sources."readable-stream-3.6.0" 126318 123150 sources."regenerator-runtime-0.13.9" 126319 123151 sources."require-directory-2.1.1" 126320 123152 sources."rgbcolor-1.0.1" 126321 123153 sources."rimraf-3.0.2" 126322 - sources."safe-buffer-5.1.2" 123154 + sources."safe-buffer-5.2.1" 126323 123155 sources."safer-buffer-2.1.2" 126324 123156 sources."sax-1.2.4" 126325 123157 sources."saxes-5.0.1" ··· 126330 123162 sources."simple-get-3.1.0" 126331 123163 sources."source-map-0.6.1" 126332 123164 sources."stackblur-canvas-2.5.0" 126333 - sources."string-width-1.0.2" 126334 - sources."string_decoder-1.1.1" 126335 - sources."strip-ansi-3.0.1" 123165 + sources."string-width-2.1.1" 123166 + sources."string_decoder-1.3.0" 123167 + sources."strip-ansi-4.0.0" 126336 123168 sources."svg-pathdata-5.0.5" 126337 123169 sources."svg2img-0.9.4" 126338 123170 sources."symbol-tree-3.2.4" ··· 126349 123181 sources."util-deprecate-1.0.2" 126350 123182 sources."w3c-hr-time-1.0.2" 126351 123183 sources."w3c-xmlserializer-2.0.0" 126352 - sources."wavedrom-2.8.3" 123184 + sources."wavedrom-2.9.0" 126353 123185 sources."webidl-conversions-3.0.1" 126354 123186 sources."whatwg-encoding-1.0.5" 126355 123187 sources."whatwg-mimetype-2.3.0" ··· 126435 123267 sources."@sindresorhus/is-0.14.0" 126436 123268 sources."@szmarczak/http-timer-1.1.2" 126437 123269 sources."@types/minimatch-3.0.5" 126438 - sources."@types/node-16.11.0" 123270 + sources."@types/node-16.11.6" 126439 123271 sources."@types/yauzl-2.9.2" 126440 123272 sources."acorn-7.4.1" 126441 123273 sources."acorn-jsx-5.3.2" ··· 126588 123420 sources."esprima-4.0.1" 126589 123421 (sources."esquery-1.4.0" // { 126590 123422 dependencies = [ 126591 - sources."estraverse-5.2.0" 123423 + sources."estraverse-5.3.0" 126592 123424 ]; 126593 123425 }) 126594 123426 (sources."esrecurse-4.3.0" // { 126595 123427 dependencies = [ 126596 - sources."estraverse-5.2.0" 123428 + sources."estraverse-5.3.0" 126597 123429 ]; 126598 123430 }) 126599 123431 sources."estraverse-4.3.0" ··· 126650 123482 sources."glob-parent-5.1.2" 126651 123483 sources."glob-to-regexp-0.4.1" 126652 123484 sources."global-dirs-3.0.0" 126653 - sources."globals-13.11.0" 123485 + sources."globals-13.12.0" 126654 123486 (sources."got-9.6.0" // { 126655 123487 dependencies = [ 126656 123488 sources."get-stream-4.1.0" ··· 126990 123822 webpack = nodeEnv.buildNodePackage { 126991 123823 name = "webpack"; 126992 123824 packageName = "webpack"; 126993 - version = "5.58.2"; 123825 + version = "5.60.0"; 126994 123826 src = fetchurl { 126995 - url = "https://registry.npmjs.org/webpack/-/webpack-5.58.2.tgz"; 126996 - sha512 = "3S6e9Vo1W2ijk4F4PPWRIu6D/uGgqaPmqw+av3W3jLDujuNkdxX5h5c+RQ6GkjVR+WwIPOfgY8av+j5j4tMqJw=="; 123827 + url = "https://registry.npmjs.org/webpack/-/webpack-5.60.0.tgz"; 123828 + sha512 = "OL5GDYi2dKxnwJPSOg2tODgzDxAffN0osgWkZaBo/l3ikCxDFP+tuJT3uF7GyBE3SDBpKML/+a8EobyWAQO3DQ=="; 126997 123829 }; 126998 123830 dependencies = [ 126999 - sources."@types/eslint-7.28.1" 123831 + sources."@types/eslint-7.28.2" 127000 123832 sources."@types/eslint-scope-3.7.1" 127001 123833 sources."@types/estree-0.0.50" 127002 123834 sources."@types/json-schema-7.0.9" 127003 - sources."@types/node-16.11.0" 123835 + sources."@types/node-16.11.6" 127004 123836 sources."@webassemblyjs/ast-1.11.1" 127005 123837 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 127006 123838 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 127022 123854 sources."acorn-import-assertions-1.8.0" 127023 123855 sources."ajv-6.12.6" 127024 123856 sources."ajv-keywords-3.5.2" 127025 - sources."browserslist-4.17.4" 123857 + sources."browserslist-4.17.5" 127026 123858 sources."buffer-from-1.1.2" 127027 - sources."caniuse-lite-1.0.30001267" 123859 + sources."caniuse-lite-1.0.30001271" 127028 123860 sources."chrome-trace-event-1.0.3" 127029 123861 sources."commander-2.20.3" 127030 - sources."electron-to-chromium-1.3.870" 123862 + sources."electron-to-chromium-1.3.880" 127031 123863 sources."enhanced-resolve-5.8.3" 127032 123864 sources."es-module-lexer-0.9.3" 127033 123865 sources."escalade-3.1.1" 127034 123866 sources."eslint-scope-5.1.1" 127035 123867 (sources."esrecurse-4.3.0" // { 127036 123868 dependencies = [ 127037 - sources."estraverse-5.2.0" 123869 + sources."estraverse-5.3.0" 127038 123870 ]; 127039 123871 }) 127040 123872 sources."estraverse-4.3.0" ··· 127044 123876 sources."glob-to-regexp-0.4.1" 127045 123877 sources."graceful-fs-4.2.8" 127046 123878 sources."has-flag-4.0.0" 127047 - sources."jest-worker-27.2.5" 123879 + sources."jest-worker-27.3.1" 127048 123880 sources."json-parse-better-errors-1.0.2" 127049 123881 sources."json-schema-traverse-0.4.1" 127050 123882 sources."loader-runner-4.2.0" ··· 127052 123884 sources."mime-db-1.50.0" 127053 123885 sources."mime-types-2.1.33" 127054 123886 sources."neo-async-2.6.2" 127055 - sources."node-releases-2.0.0" 123887 + sources."node-releases-2.0.1" 127056 123888 sources."p-limit-3.1.0" 127057 123889 sources."picocolors-1.0.0" 127058 123890 sources."punycode-2.1.1" ··· 127088 123920 webpack-cli = nodeEnv.buildNodePackage { 127089 123921 name = "webpack-cli"; 127090 123922 packageName = "webpack-cli"; 127091 - version = "4.9.0"; 123923 + version = "4.9.1"; 127092 123924 src = fetchurl { 127093 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.0.tgz"; 127094 - sha512 = "n/jZZBMzVEl4PYIBs+auy2WI0WTQ74EnJDiyD98O2JZY6IVIHJNitkYp/uTXOviIOMfgzrNvC9foKv/8o8KSZw=="; 123925 + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz"; 123926 + sha512 = "JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ=="; 127095 123927 }; 127096 123928 dependencies = [ 127097 123929 sources."@discoveryjs/json-ext-0.5.5" ··· 127139 123971 sources."shebang-regex-3.0.0" 127140 123972 sources."signal-exit-3.0.5" 127141 123973 sources."strip-final-newline-2.0.0" 127142 - sources."v8-compile-cache-2.3.0" 127143 123974 sources."webpack-merge-5.8.0" 127144 123975 sources."which-2.0.2" 127145 123976 sources."wildcard-2.0.0" ··· 127168 123999 sources."@nodelib/fs.walk-1.2.8" 127169 124000 sources."@types/http-proxy-1.17.7" 127170 124001 sources."@types/json-schema-7.0.9" 127171 - sources."@types/node-16.11.0" 124002 + sources."@types/node-16.11.6" 127172 124003 sources."@types/retry-0.12.1" 127173 124004 sources."accepts-1.3.7" 127174 124005 sources."aggregate-error-3.1.0" ··· 127341 124172 sources."on-headers-1.0.2" 127342 124173 sources."once-1.4.0" 127343 124174 sources."onetime-5.1.2" 127344 - sources."open-8.3.0" 124175 + sources."open-8.4.0" 127345 124176 sources."p-event-4.2.0" 127346 124177 sources."p-finally-1.0.0" 127347 124178 sources."p-map-4.0.0" ··· 127544 124375 sources."@protobufjs/pool-1.1.0" 127545 124376 sources."@protobufjs/utf8-1.1.0" 127546 124377 sources."@types/long-4.0.1" 127547 - sources."@types/node-16.11.0" 124378 + sources."@types/node-16.11.6" 127548 124379 sources."addr-to-ip-port-1.5.4" 127549 124380 sources."airplay-js-0.3.0" 127550 124381 sources."ansi-regex-5.0.1" ··· 127652 124483 sources."fast-fifo-1.0.0" 127653 124484 sources."filestream-5.0.0" 127654 124485 sources."freelist-1.0.3" 127655 - (sources."fs-chunk-store-2.0.3" // { 124486 + (sources."fs-chunk-store-2.0.4" // { 127656 124487 dependencies = [ 127657 124488 sources."thunky-1.1.0" 127658 124489 ]; ··· 127730 124561 sources."nodebmc-0.0.7" 127731 124562 sources."on-finished-2.3.0" 127732 124563 sources."once-1.4.0" 127733 - sources."open-8.3.0" 124564 + sources."open-8.4.0" 127734 124565 sources."package-json-versionify-1.0.4" 127735 124566 (sources."parse-torrent-9.1.4" // { 127736 124567 dependencies = [ ··· 127838 124669 sources."utp-native-2.5.3" 127839 124670 sources."videostream-3.2.2" 127840 124671 sources."vlc-command-1.2.0" 127841 - (sources."webtorrent-1.5.6" // { 124672 + (sources."webtorrent-1.5.8" // { 127842 124673 dependencies = [ 127843 124674 sources."debug-4.3.2" 127844 124675 sources."decompress-response-6.0.0" ··· 127935 124766 sources."vscode-nls-4.1.2" 127936 124767 ]; 127937 124768 }) 127938 - sources."vscode-json-languageservice-4.1.8" 124769 + sources."vscode-json-languageservice-4.1.9" 127939 124770 sources."vscode-jsonrpc-6.0.0" 127940 124771 sources."vscode-languageserver-7.0.0" 127941 124772 sources."vscode-languageserver-protocol-3.16.0" ··· 128018 124849 yarn = nodeEnv.buildNodePackage { 128019 124850 name = "yarn"; 128020 124851 packageName = "yarn"; 128021 - version = "1.22.15"; 124852 + version = "1.22.17"; 128022 124853 src = fetchurl { 128023 - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.15.tgz"; 128024 - sha512 = "AzoEDxj256BOS/jqDXA3pjyhmi4FRBBUMgYoTHI4EIt2EhREkvH0soPVEtnD+DQIJfU5R9bKhcZ1H9l8zPWeoA=="; 124854 + url = "https://registry.npmjs.org/yarn/-/yarn-1.22.17.tgz"; 124855 + sha512 = "H0p241BXaH0UN9IeH//RT82tl5PfNraVpSpEoW+ET7lmopNC61eZ+A+IDvU8FM6Go5vx162SncDL8J1ZjRBriQ=="; 128025 124856 }; 128026 124857 buildInputs = globalBuildInputs; 128027 124858 meta = { ··· 128202 125033 sources."config-chain-1.1.13" 128203 125034 sources."configstore-3.1.5" 128204 125035 sources."console-control-strings-1.1.0" 128205 - sources."core-js-3.18.3" 125036 + sources."core-js-3.19.0" 128206 125037 sources."core-util-is-1.0.3" 128207 125038 sources."create-error-class-3.0.2" 128208 125039 sources."cross-spawn-6.0.5" ··· 128982 125813 sources."@nodelib/fs.walk-1.2.8" 128983 125814 sources."@types/fs-extra-9.0.13" 128984 125815 sources."@types/minimist-1.2.2" 128985 - sources."@types/node-16.11.0" 125816 + sources."@types/node-16.11.6" 128986 125817 sources."@types/node-fetch-2.5.12" 128987 125818 sources."ansi-styles-4.3.0" 128988 125819 sources."array-union-3.0.1"
+2 -2
pkgs/development/python-modules/nbxmpp/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "nbxmpp"; 16 - version = "2.0.3"; 16 + version = "2.0.4"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 ··· 22 22 owner = "gajim"; 23 23 repo = "python-nbxmpp"; 24 24 rev = "nbxmpp-${version}"; 25 - sha256 = "0gzyd25sja7n49f1ihyg6gch1b0r409r0p3qpwn8w8xy7jgn6ysc"; 25 + sha256 = "1c2ncx1k93gxndaw183x0vlqgjnippl3v6sknklj3z2yjcj0l1ks"; 26 26 }; 27 27 28 28 buildInputs = [
+50
pkgs/development/python-modules/proton-client/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , bcrypt 6 + , pyopenssl 7 + , python-gnupg 8 + , requests 9 + , openssl 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "proton-client"; 14 + version = "0.7.0"; 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "ProtonMail"; 19 + repo = "proton-python-client"; 20 + rev = version; 21 + sha256 = "sha256-98tEL3DUYtx27JcI6pPFS2iDJXS8K3yyvCU9UVrg1EM="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + bcrypt 26 + pyopenssl 27 + python-gnupg 28 + requests 29 + ]; 30 + 31 + buildInputs = [ openssl ]; 32 + 33 + # This patch is supposed to indicate where to load OpenSSL library, 34 + # but it is not working as intended. 35 + #patchPhase = '' 36 + # substituteInPlace proton/srp/_ctsrp.py --replace \ 37 + # "ctypes.cdll.LoadLibrary('libssl.so.10')" "'${openssl.out}/lib/libssl.so'" 38 + #''; 39 + # Regarding the issue above, I'm disabling tests for now 40 + doCheck = false; 41 + 42 + pythonImportsCheck = [ "proton" ]; 43 + 44 + meta = with lib; { 45 + description = "Python Proton client module"; 46 + homepage = "https://github.com/ProtonMail/proton-python-client"; 47 + license = licenses.gpl3Only; 48 + maintainers = with maintainers; [ wolfangaukang ]; 49 + }; 50 + }
+47
pkgs/development/python-modules/protonvpn-nm-lib/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , distro 6 + , jinja2 7 + , keyring 8 + , proton-client 9 + , pygobject3 10 + , pyxdg 11 + , systemd 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "protonvpn-nm-lib"; 16 + version = "3.5.0"; 17 + disabled = pythonOlder "3.7"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "ProtonVPN"; 21 + repo = pname; 22 + rev = version; 23 + sha256 = "sha256-E75toza++l5UFdOLGgolH8pL5xvoUkLE7u+8L5RDFbI="; 24 + }; 25 + 26 + propagatedBuildInputs = [ 27 + distro 28 + jinja2 29 + keyring 30 + proton-client 31 + pygobject3 32 + pyxdg 33 + systemd 34 + ]; 35 + 36 + # Project has a dummy test. 37 + doCheck = false; 38 + 39 + pythonImportsCheck = [ "protonvpn_nm_lib" ]; 40 + 41 + meta = with lib; { 42 + description = "ProtonVPN NetworkManager Library intended for every ProtonVPN service user"; 43 + homepage = "https://github.com/ProtonVPN/protonvpn-nm-lib"; 44 + license = licenses.gpl3Only; 45 + maintainers = with maintainers; [ wolfangaukang ]; 46 + }; 47 + }
+2 -2
pkgs/development/python-modules/qcs-api-client/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "qcs-api-client"; 21 - version = "0.8.0"; 21 + version = "0.14.0"; 22 22 23 23 disabled = pythonOlder "3.7"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - sha256 = "1c0g3aa2pk4zd40banap2j797080qivd42q7imla2yvv6cvq24b8"; 27 + sha256 = "sha256-CoiLMpaPRTISc0EO0jIMw/daTW8MyXQqaeGq0zaykmc="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+3 -3
pkgs/tools/graphics/shotgun/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "shotgun"; 5 - version = "2.2.0"; 5 + version = "2.2.1"; 6 6 7 7 nativeBuildInputs = [ pkg-config ]; 8 8 ··· 12 12 owner = "neXromancers"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "0fpc09yvxjcvjkai7afyig4gyc7inaqxxrwzs17mh8wdgzawb6dl"; 15 + sha256 = "sha256-ClQP/iNs9b4foDUVpH37YCZyjVSgweHLKnSwnpkRwZI="; 16 16 }; 17 17 18 - cargoSha256 = "06zplpy480965lhgav984m6wkfijv7cqa49kpramp8b6ws62pikl"; 18 + cargoSha256 = "sha256-w5s9I7lXO8HN9zHqZQCeqBXSd7jmbsaqMZRwPLnbqNk="; 19 19 20 20 meta = with lib; { 21 21 description = "Minimal X screenshot utility";
+5 -5
pkgs/tools/misc/kak-lsp/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, rustPlatform, Security }: 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, Security, SystemConfiguration }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "kak-lsp"; 5 - version = "11.0.0"; 5 + version = "11.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "198y2k3vi8dh9kfqgl7vpgkxvjlfvryi9c8hmb43m0lpwsja0010"; 11 + sha256 = "sha256-rSUXMQF4V+ToYw3RIfEZd2AfAiHoRPDC3DZBAg2zeKo="; 12 12 }; 13 13 14 - cargoSha256 = "0sv1a2k5rcf4hl1w50mh041r3w3nir6avyl6xa3rlcc7cy19q21y"; 14 + cargoSha256 = "sha256-vcq+WVHmGFrZFLzNWyHU7qN6cDSKP9pAzxZNs2+8jR8="; 15 15 16 - buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 16 + buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 17 17 18 18 meta = with lib; { 19 19 description = "Kakoune Language Server Protocol Client";
+3 -3
pkgs/tools/networking/tendermint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tendermint"; 5 - version = "0.34.13"; 5 + version = "0.34.14"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tendermint"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-z3rbDdk68PTvJ/LPnAx8kOjCGXMfxQA0LK9GLYgaiUY="; 11 + sha256 = "sha256-/FYkwHamJTty/h80KaNAmyNg0wCqiOAA3o2whouAOZc="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-bwDyis/dHKSqBFw5jFWSZip5YjBe1bq/ieg6Jg0P/TM="; 14 + vendorSha256 = "sha256-9wjiL8/fhWLuGglFkS8OH026zwbrmuadB3goBqFqnvc="; 15 15 16 16 subPackages = [ "cmd/tendermint" ]; 17 17
+1 -1
pkgs/top-level/all-packages.nix
··· 6632 6632 kakouneUtils = callPackage ../applications/editors/kakoune/plugins/kakoune-utils.nix { }; 6633 6633 6634 6634 kak-lsp = callPackage ../tools/misc/kak-lsp { 6635 - inherit (darwin.apple_sdk.frameworks) Security; 6635 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 6636 6636 }; 6637 6637 6638 6638 kbdd = callPackage ../applications/window-managers/kbdd { };
+4
pkgs/top-level/python-packages.nix
··· 5950 5950 5951 5951 protobuf3-to-dict = callPackage ../development/python-modules/protobuf3-to-dict { }; 5952 5952 5953 + proton-client = callPackage ../development/python-modules/proton-client { }; 5954 + 5953 5955 protonup = callPackage ../development/python-modules/protonup { }; 5956 + 5957 + protonvpn-nm-lib = callPackage ../development/python-modules/protonvpn-nm-lib { }; 5954 5958 5955 5959 prov = callPackage ../development/python-modules/prov { }; 5956 5960