Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 5ed67a84 ad1de317

+3935 -3676
+27
nixos/modules/services/monitoring/grafana.nix
··· 675 675 User = "grafana"; 676 676 RuntimeDirectory = "grafana"; 677 677 RuntimeDirectoryMode = "0755"; 678 + # Hardening 679 + CapabilityBoundingSet = [ "" ]; 680 + DeviceAllow = [ "" ]; 681 + LockPersonality = true; 682 + MemoryDenyWriteExecute = true; 683 + NoNewPrivileges = true; 684 + PrivateDevices = true; 685 + PrivateTmp = true; 686 + PrivateUsers = true; 687 + ProcSubset = "pid"; 688 + ProtectClock = true; 689 + ProtectControlGroups = true; 690 + ProtectHome = true; 691 + ProtectHostname = true; 692 + ProtectKernelLogs = true; 693 + ProtectKernelModules = true; 694 + ProtectKernelTunables = true; 695 + ProtectProc = "invisible"; 696 + ProtectSystem = "full"; 697 + RemoveIPC = true; 698 + RestrictAddressFamilies = [ "AF_INET" "AF_INET6" "AF_UNIX" ]; 699 + RestrictNamespaces = true; 700 + RestrictRealtime = true; 701 + RestrictSUIDSGID = true; 702 + SystemCallArchitectures = "native"; 703 + SystemCallFilter = [ "@system-service" "~@privileged" "~@resources" ]; 704 + UMask = "0027"; 678 705 }; 679 706 preStart = '' 680 707 ln -fs ${cfg.package}/share/grafana/conf ${cfg.dataDir}
+107
pkgs/applications/audio/exaile/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub 2 + , gobject-introspection, makeWrapper, wrapGAppsHook 3 + , gtk3, gst_all_1, python3 4 + , gettext, gnome, help2man, keybinder3, libnotify, librsvg, streamripper, udisks, webkitgtk 5 + , iconTheme ? gnome.adwaita-icon-theme 6 + , deviceDetectionSupport ? true 7 + , documentationSupport ? true 8 + , notificationSupport ? true 9 + , scalableIconSupport ? true 10 + , translationSupport ? true 11 + , bpmCounterSupport ? false 12 + , ipythonSupport ? false 13 + , lastfmSupport ? false 14 + , lyricsManiaSupport ? false 15 + , lyricsWikiSupport ? false 16 + , multimediaKeySupport ? false 17 + , musicBrainzSupport ? false 18 + , podcastSupport ? false 19 + , streamripperSupport ? false 20 + , wikipediaSupport ? false 21 + , fetchpatch 22 + }: 23 + 24 + stdenv.mkDerivation rec { 25 + pname = "exaile"; 26 + version = "4.1.1"; 27 + 28 + src = fetchFromGitHub { 29 + owner = "exaile"; 30 + repo = pname; 31 + rev = version; 32 + sha256 = "0s29lm0i4slgaw5l5s9a2zx0b83xac43rnil5cvyi210dxm5s048"; 33 + }; 34 + patches = [ 35 + (fetchpatch { 36 + url = "https://github.com/exaile/exaile/pull/751.patch"; 37 + sha256 = "sha256-jCJh85Z3HQcyS4ntQP5HwYJgM7WNHcWzjf0BdNJitsM="; 38 + }) 39 + ]; 40 + 41 + nativeBuildInputs = [ 42 + gobject-introspection 43 + makeWrapper 44 + wrapGAppsHook 45 + ] ++ lib.optionals documentationSupport [ 46 + help2man 47 + python3.pkgs.sphinx 48 + python3.pkgs.sphinx_rtd_theme 49 + ] ++ lib.optional translationSupport gettext; 50 + 51 + buildInputs = [ 52 + iconTheme 53 + gtk3 54 + ] ++ (with gst_all_1; [ 55 + gstreamer 56 + gst-plugins-base 57 + gst-plugins-good 58 + ]) ++ (with python3.pkgs; [ 59 + bsddb3 60 + dbus-python 61 + mutagen 62 + pygobject3 63 + pycairo 64 + gst-python 65 + ]) ++ lib.optional deviceDetectionSupport udisks 66 + ++ lib.optional notificationSupport libnotify 67 + ++ lib.optional scalableIconSupport librsvg 68 + ++ lib.optional bpmCounterSupport gst_all_1.gst-plugins-bad 69 + ++ lib.optional ipythonSupport python3.pkgs.ipython 70 + ++ lib.optional lastfmSupport python3.pkgs.pylast 71 + ++ lib.optional (lyricsManiaSupport || lyricsWikiSupport) python3.pkgs.lxml 72 + ++ lib.optional lyricsWikiSupport python3.pkgs.beautifulsoup4 73 + ++ lib.optional multimediaKeySupport keybinder3 74 + ++ lib.optional musicBrainzSupport python3.pkgs.musicbrainzngs 75 + ++ lib.optional podcastSupport python3.pkgs.feedparser 76 + ++ lib.optional wikipediaSupport webkitgtk; 77 + 78 + checkInputs = with python3.pkgs; [ 79 + mox3 80 + pytest 81 + ]; 82 + 83 + makeFlags = [ 84 + "PREFIX=${placeholder "out"}" 85 + ]; 86 + 87 + doCheck = true; 88 + preCheck = '' 89 + substituteInPlace Makefile --replace "PYTHONPATH=$(shell pwd)" "PYTHONPATH=$PYTHONPATH:$(shell pwd)" 90 + export PYTEST="py.test" 91 + export XDG_CACHE_HOME=$(mktemp -d) 92 + ''; 93 + 94 + postInstall = '' 95 + wrapProgram $out/bin/exaile \ 96 + --set PYTHONPATH $PYTHONPATH \ 97 + ${lib.optionalString streamripperSupport "--prefix PATH : ${lib.makeBinPath [ streamripper ]}"} 98 + ''; 99 + 100 + meta = with lib; { 101 + homepage = "https://www.exaile.org/"; 102 + description = "A music player with a simple interface and powerful music management capabilities"; 103 + license = licenses.gpl2Only; 104 + maintainers = with maintainers; [ ryneeverett ]; 105 + platforms = platforms.all; 106 + }; 107 + }
+2 -2
pkgs/applications/networking/cluster/cni/plugins.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cni-plugins"; 5 - version = "1.0.0"; 5 + version = "1.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "containernetworking"; 9 9 repo = "plugins"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-RcDZW/iOAcJodGiuzmeZk3obtD0/mQoMF9vL0xNehbQ="; 11 + sha256 = "sha256-zIL9KG1WL+DlgC5c+b9gV1i7mB0Ge8bapcuSV4GNIck="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2 -7
pkgs/applications/networking/gnome-network-displays/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "gnome-network-displays"; 24 - version = "0.90.4"; 24 + version = "0.90.5"; 25 25 26 26 src = fetchurl { 27 27 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 28 - sha256 = "04snnfz5jxxpjkrwa7dchc2h4shszi8mq9g3ihvsvipgzjw3d498"; 28 + sha256 = "sha256-2SBVQK4fJeK8Y2UrrL0g5vQIerDdGE1nhFc6ke4oIpI="; 29 29 }; 30 30 31 31 patches = [ ··· 35 35 (fetchpatch { 36 36 url = "https://gitlab.gnome.org/GNOME/gnome-network-displays/-/commit/ef3f3ff565acd8238da46de604a1e750d4f02f07.diff"; 37 37 sha256 = "1ljiwgqia6am4lansg70qnwkch9mp1fr6bga98s5fwyiaw6b6f4p"; 38 - }) 39 - # Fixes an upstream bug: https://gitlab.gnome.org/GNOME/gnome-network-displays/-/issues/147 40 - (fetchpatch { 41 - url = "https://gitlab.gnome.org/GNOME/gnome-network-displays/-/commit/23164b58f4d5dd59de988525906d6e5e82c5a63c.patch"; 42 - sha256 = "0x32dvkzv9m04q41aicscpf4aspghx81a65462kjqnsavi64lga5"; 43 38 }) 44 39 ]; 45 40
+3 -3
pkgs/applications/virtualization/docker-slim/default.nix
··· 6 6 7 7 buildGoPackage rec { 8 8 pname = "docker-slim"; 9 - version = "1.36.2"; 9 + version = "1.36.4"; 10 10 11 11 goPackagePath = "github.com/docker-slim/docker-slim"; 12 12 ··· 14 14 owner = "docker-slim"; 15 15 repo = "docker-slim"; 16 16 rev = version; 17 - sha256 = "sha256-Q8M8+krPC6WRDCxe88gzX5bDG8x6sJ8TduTKjA85WFA="; 17 + sha256 = "0hgiigai5jpczjll4s4r4jzbq272s3p8f0r6mj4r3mjjs89hkqz1"; 18 18 }; 19 19 20 20 subPackages = [ "cmd/docker-slim" "cmd/docker-slim-sensor" ]; ··· 38 38 meta = with lib; { 39 39 description = "Minify and secure Docker containers"; 40 40 homepage = "https://dockersl.im/"; 41 - changelog = "https://github.com/docker-slim/docker-slim/blob/${version}/CHANGELOG.md"; 41 + changelog = "https://github.com/docker-slim/docker-slim/raw/${version}/CHANGELOG.md"; 42 42 license = licenses.asl20; 43 43 maintainers = with maintainers; [ Br1ght0ne marsam mbrgm ]; 44 44 };
+3 -2
pkgs/build-support/mkshell/default.nix
··· 14 14 , ... 15 15 }@attrs: 16 16 let 17 - mergeInputs = name: lib.concatLists (lib.catAttrs name 18 - ([ attrs ] ++ inputsFrom)); 17 + mergeInputs = name: 18 + (attrs.${name} or []) ++ 19 + (lib.subtractLists inputsFrom (lib.catAttrs name inputsFrom)); 19 20 20 21 rest = builtins.removeAttrs attrs [ 21 22 "packages"
+2 -3
pkgs/development/coq-modules/corn/default.nix
··· 5 5 inherit version; 6 6 defaultVersion = switch coq.coq-version [ 7 7 { case = "8.6"; out = "8.8.1"; } 8 - { case = (versions.range "8.7" "8.12"); out = "8.12.0"; } 9 - { case = (versions.range "8.13" "8.13"); out = "c366d3f01ec1812b145117a4da940518b092d3a6"; } 8 + { case = (versions.range "8.7" "8.13"); out = "8.13.0"; } 10 9 ] null; 11 10 release = { 12 11 "8.8.1".sha256 = "0gh32j0f18vv5lmf6nb87nr5450w6ai06rhrnvlx2wwi79gv10wp"; 13 12 "8.12.0".sha256 = "0b92vhyzn1j6cs84z2182fn82hxxj0bqq7hk6cs4awwb3vc7dkhi"; 14 - "c366d3f01ec1812b145117a4da940518b092d3a6".sha256 = "1wzr7mdsnf1rq7q0dvmv55vxzysy85b00ahwbs868bl7m8fk8x5b"; 13 + "8.13.0".sha256 = "1wzr7mdsnf1rq7q0dvmv55vxzysy85b00ahwbs868bl7m8fk8x5b"; 15 14 }; 16 15 17 16 preConfigure = "patchShebangs ./configure.sh";
+16 -7
pkgs/development/libraries/ip2location-c/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + }: 2 6 3 7 stdenv.mkDerivation rec { 4 8 pname = "ip2location-c"; 5 - version = "7.0.2"; # meta.homepage might change after a major update 9 + version = "8.4.0"; 6 10 7 - src = fetchurl { 8 - sha256 = "1gs43qgcyfn83abrkhvvw1s67d1sbkbj3hab9m17ysn6swafiycx"; 9 - url = "https://www.ip2location.com/downloads/ip2location-c-${version}.tar.gz"; 11 + src = fetchFromGitHub { 12 + owner = "chrislim2888"; 13 + repo = "IP2Location-C-Library"; 14 + rev = version; 15 + sha256 = "0rqjgmv62s7abiiqi3ff3ff838qx4pzr509irmzvqlflnkxxi0q6"; 10 16 }; 11 17 12 - nativeBuildInputs = [ autoreconfHook ]; 18 + nativeBuildInputs = [ 19 + autoreconfHook 20 + ]; 13 21 14 22 enableParallelBuilding = true; 15 23 ··· 25 33 weather, MCC, MNC, mobile brand name, elevation and usage type of 26 34 any IP address or host name in the IP2Location databases. 27 35 ''; 28 - homepage = "http://www.ip2location.com/developers/c-7"; 36 + homepage = "https://www.ip2location.com/developers/c"; 29 37 license = with licenses; [ gpl3Plus lgpl3Plus ]; 38 + maintainers = with maintainers; [ ]; 30 39 platforms = platforms.linux; 31 40 }; 32 41 }
+3644 -3568
pkgs/development/node-packages/node-packages.nix
··· 40 40 sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; 41 41 }; 42 42 }; 43 - "@angular-devkit/architect-0.1202.3" = { 43 + "@angular-devkit/architect-0.1202.4" = { 44 44 name = "_at_angular-devkit_slash_architect"; 45 45 packageName = "@angular-devkit/architect"; 46 - version = "0.1202.3"; 46 + version = "0.1202.4"; 47 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.3.tgz"; 49 - sha512 = "AwLdofKggAiv0hThYe0v3MWOl94XJdJlgq/MXnYU/Ma/IeJDLlRa9WJuajL9AB//x5G+uH06smD3E4Ni8mv2ag=="; 48 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.4.tgz"; 49 + sha512 = "RBatkiiZWGX7/qYYaWVNAzaF3E8TCEt9dRfAoZSaLy/JLQLT3xjX+qT4bBC/XPdC8SQCWvMjW3IjfYRaKTBv1g=="; 50 50 }; 51 51 }; 52 52 "@angular-devkit/core-12.0.5" = { ··· 67 67 sha512 = "KOzGD8JbP/7EeUwPiU5x+fo3ZEQ5R4IVW5WoH92PaO3mdpqXC7UL2MWLct8PUe9il9nqJMvrBMldSSvP9PCT2w=="; 68 68 }; 69 69 }; 70 - "@angular-devkit/core-12.2.3" = { 70 + "@angular-devkit/core-12.2.4" = { 71 71 name = "_at_angular-devkit_slash_core"; 72 72 packageName = "@angular-devkit/core"; 73 - version = "12.2.3"; 73 + version = "12.2.4"; 74 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.3.tgz"; 76 - sha512 = "qt1hcX5zydGmCI9gEFcqTyJDcFEScSHPRqx0dlm61hCtBF75C2g7erSgb35zE3kZ7UE9UQY28JffFnwCj6uJhQ=="; 75 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.4.tgz"; 76 + sha512 = "lONchANfqBHE0UgqK1PFcaBwpT/FetM8atuLjbhgdM1VcR6lVLzyZImhR12gtNWJ5nledhMp8QeGkFvO3KCdxw=="; 77 77 }; 78 78 }; 79 79 "@angular-devkit/schematics-12.0.5" = { ··· 94 94 sha512 = "yD3y3pK/K5piOgvALFoCCiPp4H8emNa3yZL+vlpEpewVLpF1MM55LeTxc0PI5s0uqtOGVnvcbA5wYgMm3YsUEA=="; 95 95 }; 96 96 }; 97 - "@angular-devkit/schematics-12.2.3" = { 97 + "@angular-devkit/schematics-12.2.4" = { 98 98 name = "_at_angular-devkit_slash_schematics"; 99 99 packageName = "@angular-devkit/schematics"; 100 - version = "12.2.3"; 100 + version = "12.2.4"; 101 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.3.tgz"; 103 - sha512 = "pbYOK8DK1V7YCzt8C3OckjQDGvCQqrLmg5kH+nLLAYOlkToRk3DBPIocuF9tCflNt6tEIkRJM4lPeDyy/z/GjQ=="; 102 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.4.tgz"; 103 + sha512 = "hL2POzb2G8PzYzLl3Dmc3ePCRyXg1LnJEpGTXvTqgLCUI6fKGb2T7hwn3fbD7keCv88UleGazOPq9iU7Qqvx3Q=="; 104 104 }; 105 105 }; 106 106 "@angular-devkit/schematics-cli-12.1.4" = { ··· 229 229 sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w=="; 230 230 }; 231 231 }; 232 - "@apollo/client-3.4.9" = { 232 + "@apollo/client-3.4.10" = { 233 233 name = "_at_apollo_slash_client"; 234 234 packageName = "@apollo/client"; 235 - version = "3.4.9"; 235 + version = "3.4.10"; 236 236 src = fetchurl { 237 - url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.9.tgz"; 238 - sha512 = "1AlYjRJ/ktDApEUEP2DqHI38tqSyhSlsF/Q3fFb/aCbLHQfcSZ1dCv7ZlC9UXRyDwQYc0w23gYJ7wZde6W8P4A=="; 237 + url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.10.tgz"; 238 + sha512 = "b+8TT3jBM2BtEJi+V2FuLpvoYDZCY3baNYrgAgEyw4fjnuBCSRPY7qVjqriZAwMaGiTLtyVifGhmdeICQs4Eow=="; 239 239 }; 240 240 }; 241 241 "@apollo/protobufjs-1.2.2" = { ··· 310 310 sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20"; 311 311 }; 312 312 }; 313 - "@babel/cli-7.14.8" = { 313 + "@babel/cli-7.15.4" = { 314 314 name = "_at_babel_slash_cli"; 315 315 packageName = "@babel/cli"; 316 - version = "7.14.8"; 316 + version = "7.15.4"; 317 317 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.14.8.tgz"; 319 - sha512 = "lcy6Lymft9Rpfqmrqdd4oTDdUx9ZwaAhAfywVrHG4771Pa6PPT0danJ1kDHBXYqh4HHSmIdA+nlmfxfxSDPtBg=="; 318 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.15.4.tgz"; 319 + sha512 = "9RhhQ7tgKRcSO/jI3rNLxalLSk30cHqeM8bb+nGOJTyYBDpkoXw/A9QHZ2SYjlslAt4tr90pZQGIEobwWHSIDw=="; 320 320 }; 321 321 }; 322 322 "@babel/code-frame-7.10.4" = { ··· 364 364 sha512 = "O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w=="; 365 365 }; 366 366 }; 367 - "@babel/core-7.15.0" = { 367 + "@babel/core-7.15.5" = { 368 368 name = "_at_babel_slash_core"; 369 369 packageName = "@babel/core"; 370 - version = "7.15.0"; 370 + version = "7.15.5"; 371 371 src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/core/-/core-7.15.0.tgz"; 373 - sha512 = "tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw=="; 372 + url = "https://registry.npmjs.org/@babel/core/-/core-7.15.5.tgz"; 373 + sha512 = "pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg=="; 374 374 }; 375 375 }; 376 376 "@babel/core-7.9.0" = { ··· 382 382 sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w=="; 383 383 }; 384 384 }; 385 - "@babel/generator-7.15.0" = { 385 + "@babel/generator-7.15.4" = { 386 386 name = "_at_babel_slash_generator"; 387 387 packageName = "@babel/generator"; 388 - version = "7.15.0"; 388 + version = "7.15.4"; 389 389 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.0.tgz"; 391 - sha512 = "eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ=="; 390 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.4.tgz"; 391 + sha512 = "d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw=="; 392 392 }; 393 393 }; 394 - "@babel/helper-annotate-as-pure-7.14.5" = { 394 + "@babel/helper-annotate-as-pure-7.15.4" = { 395 395 name = "_at_babel_slash_helper-annotate-as-pure"; 396 396 packageName = "@babel/helper-annotate-as-pure"; 397 - version = "7.14.5"; 397 + version = "7.15.4"; 398 398 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz"; 400 - sha512 = "EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA=="; 399 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz"; 400 + sha512 = "QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA=="; 401 401 }; 402 402 }; 403 - "@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" = { 403 + "@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" = { 404 404 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 405 405 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 406 - version = "7.14.5"; 406 + version = "7.15.4"; 407 407 src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz"; 409 - sha512 = "YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w=="; 408 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz"; 409 + sha512 = "P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q=="; 410 410 }; 411 411 }; 412 - "@babel/helper-compilation-targets-7.15.0" = { 412 + "@babel/helper-compilation-targets-7.15.4" = { 413 413 name = "_at_babel_slash_helper-compilation-targets"; 414 414 packageName = "@babel/helper-compilation-targets"; 415 - version = "7.15.0"; 415 + version = "7.15.4"; 416 416 src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz"; 418 - sha512 = "h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A=="; 417 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz"; 418 + sha512 = "rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ=="; 419 419 }; 420 420 }; 421 - "@babel/helper-create-class-features-plugin-7.15.0" = { 421 + "@babel/helper-create-class-features-plugin-7.15.4" = { 422 422 name = "_at_babel_slash_helper-create-class-features-plugin"; 423 423 packageName = "@babel/helper-create-class-features-plugin"; 424 - version = "7.15.0"; 424 + version = "7.15.4"; 425 425 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz"; 427 - sha512 = "MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q=="; 426 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz"; 427 + sha512 = "7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw=="; 428 428 }; 429 429 }; 430 430 "@babel/helper-create-regexp-features-plugin-7.14.5" = { ··· 445 445 sha512 = "RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew=="; 446 446 }; 447 447 }; 448 - "@babel/helper-explode-assignable-expression-7.14.5" = { 448 + "@babel/helper-explode-assignable-expression-7.15.4" = { 449 449 name = "_at_babel_slash_helper-explode-assignable-expression"; 450 450 packageName = "@babel/helper-explode-assignable-expression"; 451 - version = "7.14.5"; 451 + version = "7.15.4"; 452 452 src = fetchurl { 453 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz"; 454 - sha512 = "Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ=="; 453 + url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz"; 454 + sha512 = "J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g=="; 455 455 }; 456 456 }; 457 - "@babel/helper-function-name-7.14.5" = { 457 + "@babel/helper-function-name-7.15.4" = { 458 458 name = "_at_babel_slash_helper-function-name"; 459 459 packageName = "@babel/helper-function-name"; 460 - version = "7.14.5"; 460 + version = "7.15.4"; 461 461 src = fetchurl { 462 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz"; 463 - sha512 = "Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ=="; 462 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz"; 463 + sha512 = "Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw=="; 464 464 }; 465 465 }; 466 - "@babel/helper-get-function-arity-7.14.5" = { 466 + "@babel/helper-get-function-arity-7.15.4" = { 467 467 name = "_at_babel_slash_helper-get-function-arity"; 468 468 packageName = "@babel/helper-get-function-arity"; 469 - version = "7.14.5"; 469 + version = "7.15.4"; 470 470 src = fetchurl { 471 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz"; 472 - sha512 = "I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg=="; 471 + url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz"; 472 + sha512 = "1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA=="; 473 473 }; 474 474 }; 475 - "@babel/helper-hoist-variables-7.14.5" = { 475 + "@babel/helper-hoist-variables-7.15.4" = { 476 476 name = "_at_babel_slash_helper-hoist-variables"; 477 477 packageName = "@babel/helper-hoist-variables"; 478 - version = "7.14.5"; 478 + version = "7.15.4"; 479 479 src = fetchurl { 480 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz"; 481 - sha512 = "R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ=="; 480 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz"; 481 + sha512 = "VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA=="; 482 482 }; 483 483 }; 484 - "@babel/helper-member-expression-to-functions-7.15.0" = { 484 + "@babel/helper-member-expression-to-functions-7.15.4" = { 485 485 name = "_at_babel_slash_helper-member-expression-to-functions"; 486 486 packageName = "@babel/helper-member-expression-to-functions"; 487 - version = "7.15.0"; 487 + version = "7.15.4"; 488 488 src = fetchurl { 489 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz"; 490 - sha512 = "Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg=="; 489 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz"; 490 + sha512 = "cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA=="; 491 491 }; 492 492 }; 493 - "@babel/helper-module-imports-7.14.5" = { 493 + "@babel/helper-module-imports-7.15.4" = { 494 494 name = "_at_babel_slash_helper-module-imports"; 495 495 packageName = "@babel/helper-module-imports"; 496 - version = "7.14.5"; 496 + version = "7.15.4"; 497 497 src = fetchurl { 498 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz"; 499 - sha512 = "SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ=="; 498 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz"; 499 + sha512 = "jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA=="; 500 500 }; 501 501 }; 502 - "@babel/helper-module-transforms-7.15.0" = { 502 + "@babel/helper-module-transforms-7.15.4" = { 503 503 name = "_at_babel_slash_helper-module-transforms"; 504 504 packageName = "@babel/helper-module-transforms"; 505 - version = "7.15.0"; 505 + version = "7.15.4"; 506 506 src = fetchurl { 507 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz"; 508 - sha512 = "RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg=="; 507 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.4.tgz"; 508 + sha512 = "9fHHSGE9zTC++KuXLZcB5FKgvlV83Ox+NLUmQTawovwlJ85+QMhk1CnVk406CQVj97LaWod6KVjl2Sfgw9Aktw=="; 509 509 }; 510 510 }; 511 - "@babel/helper-optimise-call-expression-7.14.5" = { 511 + "@babel/helper-optimise-call-expression-7.15.4" = { 512 512 name = "_at_babel_slash_helper-optimise-call-expression"; 513 513 packageName = "@babel/helper-optimise-call-expression"; 514 - version = "7.14.5"; 514 + version = "7.15.4"; 515 515 src = fetchurl { 516 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz"; 517 - sha512 = "IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA=="; 516 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz"; 517 + sha512 = "E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw=="; 518 518 }; 519 519 }; 520 520 "@babel/helper-plugin-utils-7.10.4" = { ··· 535 535 sha512 = "/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="; 536 536 }; 537 537 }; 538 - "@babel/helper-remap-async-to-generator-7.14.5" = { 538 + "@babel/helper-remap-async-to-generator-7.15.4" = { 539 539 name = "_at_babel_slash_helper-remap-async-to-generator"; 540 540 packageName = "@babel/helper-remap-async-to-generator"; 541 - version = "7.14.5"; 541 + version = "7.15.4"; 542 542 src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz"; 544 - sha512 = "rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A=="; 543 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz"; 544 + sha512 = "v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ=="; 545 545 }; 546 546 }; 547 - "@babel/helper-replace-supers-7.15.0" = { 547 + "@babel/helper-replace-supers-7.15.4" = { 548 548 name = "_at_babel_slash_helper-replace-supers"; 549 549 packageName = "@babel/helper-replace-supers"; 550 - version = "7.15.0"; 550 + version = "7.15.4"; 551 551 src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz"; 553 - sha512 = "6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA=="; 552 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz"; 553 + sha512 = "/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw=="; 554 554 }; 555 555 }; 556 - "@babel/helper-simple-access-7.14.8" = { 556 + "@babel/helper-simple-access-7.15.4" = { 557 557 name = "_at_babel_slash_helper-simple-access"; 558 558 packageName = "@babel/helper-simple-access"; 559 - version = "7.14.8"; 559 + version = "7.15.4"; 560 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz"; 562 - sha512 = "TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg=="; 561 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz"; 562 + sha512 = "UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg=="; 563 563 }; 564 564 }; 565 - "@babel/helper-skip-transparent-expression-wrappers-7.14.5" = { 565 + "@babel/helper-skip-transparent-expression-wrappers-7.15.4" = { 566 566 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 567 567 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 568 - version = "7.14.5"; 568 + version = "7.15.4"; 569 569 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz"; 571 - sha512 = "dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ=="; 570 + url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz"; 571 + sha512 = "BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A=="; 572 572 }; 573 573 }; 574 - "@babel/helper-split-export-declaration-7.14.5" = { 574 + "@babel/helper-split-export-declaration-7.15.4" = { 575 575 name = "_at_babel_slash_helper-split-export-declaration"; 576 576 packageName = "@babel/helper-split-export-declaration"; 577 - version = "7.14.5"; 577 + version = "7.15.4"; 578 578 src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz"; 580 - sha512 = "hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA=="; 579 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz"; 580 + sha512 = "HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw=="; 581 581 }; 582 582 }; 583 583 "@babel/helper-validator-identifier-7.14.9" = { ··· 598 598 sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; 599 599 }; 600 600 }; 601 - "@babel/helper-wrap-function-7.14.5" = { 601 + "@babel/helper-wrap-function-7.15.4" = { 602 602 name = "_at_babel_slash_helper-wrap-function"; 603 603 packageName = "@babel/helper-wrap-function"; 604 - version = "7.14.5"; 604 + version = "7.15.4"; 605 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz"; 607 - sha512 = "YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ=="; 606 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz"; 607 + sha512 = "Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw=="; 608 608 }; 609 609 }; 610 - "@babel/helpers-7.15.3" = { 610 + "@babel/helpers-7.15.4" = { 611 611 name = "_at_babel_slash_helpers"; 612 612 packageName = "@babel/helpers"; 613 - version = "7.15.3"; 613 + version = "7.15.4"; 614 614 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.3.tgz"; 616 - sha512 = "HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g=="; 615 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz"; 616 + sha512 = "V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ=="; 617 617 }; 618 618 }; 619 619 "@babel/highlight-7.14.5" = { ··· 625 625 sha512 = "qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg=="; 626 626 }; 627 627 }; 628 + "@babel/node-7.15.4" = { 629 + name = "_at_babel_slash_node"; 630 + packageName = "@babel/node"; 631 + version = "7.15.4"; 632 + src = fetchurl { 633 + url = "https://registry.npmjs.org/@babel/node/-/node-7.15.4.tgz"; 634 + sha512 = "UZue+j8p5aKTaVjvy5psYmqLHqmz+9cIboAFoa97S1xeZyUr0gT6KzXB8ZkfBIsP/u79biOdjGHVXBXnW3rVfw=="; 635 + }; 636 + }; 628 637 "@babel/parser-7.13.13" = { 629 638 name = "_at_babel_slash_parser"; 630 639 packageName = "@babel/parser"; ··· 634 643 sha512 = "OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw=="; 635 644 }; 636 645 }; 637 - "@babel/parser-7.15.3" = { 646 + "@babel/parser-7.15.5" = { 638 647 name = "_at_babel_slash_parser"; 639 648 packageName = "@babel/parser"; 640 - version = "7.15.3"; 649 + version = "7.15.5"; 641 650 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.3.tgz"; 643 - sha512 = "O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA=="; 651 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.5.tgz"; 652 + sha512 = "2hQstc6I7T6tQsWzlboMh3SgMRPaS4H6H7cPQsJkdzTzEGqQrpLDsE2BGASU5sBPoEQyHzeqU6C8uKbFeEk6sg=="; 644 653 }; 645 654 }; 646 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" = { 655 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" = { 647 656 name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 648 657 packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 649 - version = "7.14.5"; 658 + version = "7.15.4"; 650 659 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz"; 652 - sha512 = "ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ=="; 660 + url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz"; 661 + sha512 = "eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog=="; 653 662 }; 654 663 }; 655 664 "@babel/plugin-external-helpers-7.8.3" = { ··· 661 670 sha512 = "mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw=="; 662 671 }; 663 672 }; 664 - "@babel/plugin-proposal-async-generator-functions-7.14.9" = { 673 + "@babel/plugin-proposal-async-generator-functions-7.15.4" = { 665 674 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 666 675 packageName = "@babel/plugin-proposal-async-generator-functions"; 667 - version = "7.14.9"; 676 + version = "7.15.4"; 668 677 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.9.tgz"; 670 - sha512 = "d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw=="; 678 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.4.tgz"; 679 + sha512 = "2zt2g5vTXpMC3OmK6uyjvdXptbhBXfA77XGrd3gh93zwG8lZYBLOBImiGBEG0RANu3JqKEACCz5CGk73OJROBw=="; 671 680 }; 672 681 }; 673 682 "@babel/plugin-proposal-class-properties-7.14.5" = { ··· 679 688 sha512 = "q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg=="; 680 689 }; 681 690 }; 682 - "@babel/plugin-proposal-class-static-block-7.14.5" = { 691 + "@babel/plugin-proposal-class-static-block-7.15.4" = { 683 692 name = "_at_babel_slash_plugin-proposal-class-static-block"; 684 693 packageName = "@babel/plugin-proposal-class-static-block"; 685 - version = "7.14.5"; 694 + version = "7.15.4"; 686 695 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz"; 688 - sha512 = "KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg=="; 696 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz"; 697 + sha512 = "M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA=="; 689 698 }; 690 699 }; 691 700 "@babel/plugin-proposal-dynamic-import-7.14.5" = { ··· 796 805 sha512 = "838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g=="; 797 806 }; 798 807 }; 799 - "@babel/plugin-proposal-private-property-in-object-7.14.5" = { 808 + "@babel/plugin-proposal-private-property-in-object-7.15.4" = { 800 809 name = "_at_babel_slash_plugin-proposal-private-property-in-object"; 801 810 packageName = "@babel/plugin-proposal-private-property-in-object"; 802 - version = "7.14.5"; 811 + version = "7.15.4"; 803 812 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz"; 805 - sha512 = "62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q=="; 813 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz"; 814 + sha512 = "X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA=="; 806 815 }; 807 816 }; 808 817 "@babel/plugin-proposal-unicode-property-regex-7.14.5" = { ··· 1039 1048 sha512 = "nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q=="; 1040 1049 }; 1041 1050 }; 1042 - "@babel/plugin-transform-classes-7.14.9" = { 1051 + "@babel/plugin-transform-classes-7.15.4" = { 1043 1052 name = "_at_babel_slash_plugin-transform-classes"; 1044 1053 packageName = "@babel/plugin-transform-classes"; 1045 - version = "7.14.9"; 1054 + version = "7.15.4"; 1046 1055 src = fetchurl { 1047 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.9.tgz"; 1048 - sha512 = "NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A=="; 1056 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz"; 1057 + sha512 = "Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg=="; 1049 1058 }; 1050 1059 }; 1051 1060 "@babel/plugin-transform-computed-properties-7.14.5" = { ··· 1102 1111 sha512 = "KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA=="; 1103 1112 }; 1104 1113 }; 1105 - "@babel/plugin-transform-for-of-7.14.5" = { 1114 + "@babel/plugin-transform-for-of-7.15.4" = { 1106 1115 name = "_at_babel_slash_plugin-transform-for-of"; 1107 1116 packageName = "@babel/plugin-transform-for-of"; 1108 - version = "7.14.5"; 1117 + version = "7.15.4"; 1109 1118 src = fetchurl { 1110 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz"; 1111 - sha512 = "CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA=="; 1119 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz"; 1120 + sha512 = "DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA=="; 1112 1121 }; 1113 1122 }; 1114 1123 "@babel/plugin-transform-function-name-7.14.5" = { ··· 1147 1156 sha512 = "3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g=="; 1148 1157 }; 1149 1158 }; 1150 - "@babel/plugin-transform-modules-commonjs-7.15.0" = { 1159 + "@babel/plugin-transform-modules-commonjs-7.15.4" = { 1151 1160 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 1152 1161 packageName = "@babel/plugin-transform-modules-commonjs"; 1153 - version = "7.15.0"; 1162 + version = "7.15.4"; 1154 1163 src = fetchurl { 1155 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz"; 1156 - sha512 = "3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig=="; 1164 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz"; 1165 + sha512 = "qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA=="; 1157 1166 }; 1158 1167 }; 1159 - "@babel/plugin-transform-modules-systemjs-7.14.5" = { 1168 + "@babel/plugin-transform-modules-systemjs-7.15.4" = { 1160 1169 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 1161 1170 packageName = "@babel/plugin-transform-modules-systemjs"; 1162 - version = "7.14.5"; 1171 + version = "7.15.4"; 1163 1172 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz"; 1165 - sha512 = "mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA=="; 1173 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz"; 1174 + sha512 = "fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw=="; 1166 1175 }; 1167 1176 }; 1168 1177 "@babel/plugin-transform-modules-umd-7.14.5" = { ··· 1210 1219 sha512 = "MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg=="; 1211 1220 }; 1212 1221 }; 1213 - "@babel/plugin-transform-parameters-7.14.5" = { 1222 + "@babel/plugin-transform-parameters-7.15.4" = { 1214 1223 name = "_at_babel_slash_plugin-transform-parameters"; 1215 1224 packageName = "@babel/plugin-transform-parameters"; 1216 - version = "7.14.5"; 1225 + version = "7.15.4"; 1217 1226 src = fetchurl { 1218 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz"; 1219 - sha512 = "Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA=="; 1227 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz"; 1228 + sha512 = "9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ=="; 1220 1229 }; 1221 1230 }; 1222 1231 "@babel/plugin-transform-property-literals-7.14.5" = { ··· 1354 1363 sha512 = "lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw=="; 1355 1364 }; 1356 1365 }; 1357 - "@babel/plugin-transform-typescript-7.15.0" = { 1366 + "@babel/plugin-transform-typescript-7.15.4" = { 1358 1367 name = "_at_babel_slash_plugin-transform-typescript"; 1359 1368 packageName = "@babel/plugin-transform-typescript"; 1360 - version = "7.15.0"; 1369 + version = "7.15.4"; 1361 1370 src = fetchurl { 1362 - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.0.tgz"; 1363 - sha512 = "WIIEazmngMEEHDaPTx0IZY48SaAmjVWe3TRSX7cmJXn0bEv9midFzAjxiruOWYIVf5iQ10vFx7ASDpgEO08L5w=="; 1371 + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.4.tgz"; 1372 + sha512 = "sM1/FEjwYjXvMwu1PJStH11kJ154zd/lpY56NQJ5qH2D0mabMv1CAy/kdvS9RP4Xgfj9fBBA3JiSLdDHgXdzOA=="; 1364 1373 }; 1365 1374 }; 1366 1375 "@babel/plugin-transform-unicode-escapes-7.14.5" = { ··· 1381 1390 sha512 = "UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw=="; 1382 1391 }; 1383 1392 }; 1384 - "@babel/preset-env-7.15.0" = { 1393 + "@babel/preset-env-7.15.4" = { 1385 1394 name = "_at_babel_slash_preset-env"; 1386 1395 packageName = "@babel/preset-env"; 1387 - version = "7.15.0"; 1396 + version = "7.15.4"; 1388 1397 src = fetchurl { 1389 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.0.tgz"; 1390 - sha512 = "FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q=="; 1398 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.4.tgz"; 1399 + sha512 = "4f2nLw+q6ht8gl3sHCmNhmA5W6b1ItLzbH3UrKuJxACHr2eCpk96jwjrAfCAaXaaVwTQGnyUYHY2EWXJGt7TUQ=="; 1391 1400 }; 1392 1401 }; 1393 1402 "@babel/preset-flow-7.14.5" = { ··· 1462 1471 sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA=="; 1463 1472 }; 1464 1473 }; 1465 - "@babel/runtime-7.15.3" = { 1474 + "@babel/runtime-7.15.4" = { 1466 1475 name = "_at_babel_slash_runtime"; 1467 1476 packageName = "@babel/runtime"; 1468 - version = "7.15.3"; 1477 + version = "7.15.4"; 1469 1478 src = fetchurl { 1470 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz"; 1471 - sha512 = "OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA=="; 1479 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz"; 1480 + sha512 = "99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw=="; 1472 1481 }; 1473 1482 }; 1474 1483 "@babel/runtime-7.9.0" = { ··· 1480 1489 sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA=="; 1481 1490 }; 1482 1491 }; 1483 - "@babel/runtime-corejs3-7.15.3" = { 1492 + "@babel/runtime-corejs3-7.15.4" = { 1484 1493 name = "_at_babel_slash_runtime-corejs3"; 1485 1494 packageName = "@babel/runtime-corejs3"; 1486 - version = "7.15.3"; 1495 + version = "7.15.4"; 1487 1496 src = fetchurl { 1488 - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.3.tgz"; 1489 - sha512 = "30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A=="; 1497 + url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz"; 1498 + sha512 = "lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg=="; 1490 1499 }; 1491 1500 }; 1492 - "@babel/standalone-7.15.3" = { 1501 + "@babel/standalone-7.15.5" = { 1493 1502 name = "_at_babel_slash_standalone"; 1494 1503 packageName = "@babel/standalone"; 1495 - version = "7.15.3"; 1504 + version = "7.15.5"; 1496 1505 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.15.3.tgz"; 1498 - sha512 = "Bst2YWEyQ2ROyO0+jxPVnnkSmUh44/x54+LSbe5M4N5LGfOkxpajEUKVE4ndXtIVrLlHCyuiqCPwv3eC1ItnCg=="; 1506 + url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.15.5.tgz"; 1507 + sha512 = "rho2fzDGLrdYVbl0S71I8z6AREWnVvADzv7Gb4TLKhqpE6cJAvno0ALMuF253+wqhN8futx4ELWQpBYMxi4jmA=="; 1499 1508 }; 1500 1509 }; 1501 - "@babel/template-7.14.5" = { 1510 + "@babel/template-7.15.4" = { 1502 1511 name = "_at_babel_slash_template"; 1503 1512 packageName = "@babel/template"; 1504 - version = "7.14.5"; 1513 + version = "7.15.4"; 1505 1514 src = fetchurl { 1506 - url = "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz"; 1507 - sha512 = "6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g=="; 1515 + url = "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz"; 1516 + sha512 = "UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg=="; 1508 1517 }; 1509 1518 }; 1510 - "@babel/traverse-7.15.0" = { 1519 + "@babel/traverse-7.15.4" = { 1511 1520 name = "_at_babel_slash_traverse"; 1512 1521 packageName = "@babel/traverse"; 1513 - version = "7.15.0"; 1522 + version = "7.15.4"; 1514 1523 src = fetchurl { 1515 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz"; 1516 - sha512 = "392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw=="; 1524 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz"; 1525 + sha512 = "W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA=="; 1517 1526 }; 1518 1527 }; 1519 1528 "@babel/types-7.13.12" = { ··· 1525 1534 sha512 = "K4nY2xFN4QMvQwkQ+zmBDp6ANMbVNw6BbxWmYA4qNjhR9W+Lj/8ky5MEY2Me5r+B2c6/v6F53oMndG+f9s3IiA=="; 1526 1535 }; 1527 1536 }; 1528 - "@babel/types-7.15.0" = { 1537 + "@babel/types-7.15.4" = { 1529 1538 name = "_at_babel_slash_types"; 1530 1539 packageName = "@babel/types"; 1531 - version = "7.15.0"; 1540 + version = "7.15.4"; 1532 1541 src = fetchurl { 1533 - url = "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz"; 1534 - sha512 = "OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ=="; 1542 + url = "https://registry.npmjs.org/@babel/types/-/types-7.15.4.tgz"; 1543 + sha512 = "0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw=="; 1535 1544 }; 1536 1545 }; 1537 - "@blueprintjs/colors-1.0.0" = { 1546 + "@blueprintjs/colors-3.0.0" = { 1538 1547 name = "_at_blueprintjs_slash_colors"; 1539 1548 packageName = "@blueprintjs/colors"; 1540 - version = "1.0.0"; 1549 + version = "3.0.0"; 1541 1550 src = fetchurl { 1542 - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-1.0.0.tgz"; 1543 - sha512 = "eJh111ucz8HYxLBON6ADkAGQQBACqdbX6Zws/GpuiTkeCFJ3IAjZdBpk7IM7/Y5XuGuSS1ujwjnLDOEtyywtKw=="; 1551 + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-3.0.0.tgz"; 1552 + sha512 = "8rRkIcnnOwMEMAGDciKFdVQ3dZXvCkSGcgEzVR2ijopCvLZrrHf+ySzn8v7Y2d60A2Q2A3Of8NDrYbV32sBssg=="; 1544 1553 }; 1545 1554 }; 1546 - "@blueprintjs/core-3.48.0" = { 1555 + "@blueprintjs/core-3.49.1" = { 1547 1556 name = "_at_blueprintjs_slash_core"; 1548 1557 packageName = "@blueprintjs/core"; 1549 - version = "3.48.0"; 1558 + version = "3.49.1"; 1550 1559 src = fetchurl { 1551 - url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.48.0.tgz"; 1552 - sha512 = "tuAL3dZrNaTq36RRy6O86wjmkiLt8LwHkleZ1zUcn/DC3cXsM3dSsRpV3f662bcEiAXMPeGemSC3tqv6uZCeLg=="; 1560 + url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.49.1.tgz"; 1561 + sha512 = "H6UAYZeBZcGDQb24vEkFps0eKlkyKvy/B/OJ2elZjHC1B1Regv7TwIDjju9wgzZvzKCcCVZzUg9OqtH43V+1yA=="; 1553 1562 }; 1554 1563 }; 1555 - "@blueprintjs/icons-3.28.0" = { 1564 + "@blueprintjs/icons-3.29.0" = { 1556 1565 name = "_at_blueprintjs_slash_icons"; 1557 1566 packageName = "@blueprintjs/icons"; 1558 - version = "3.28.0"; 1567 + version = "3.29.0"; 1559 1568 src = fetchurl { 1560 - url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.28.0.tgz"; 1561 - sha512 = "gDvvU2ljV4NXsY5ofKcs1ChXAgmqNp/DIMu2uJIJmXhSXfP6JDd4qbnbGMsP3FmLTaqQP3E9oBZqAG/FRB8VmQ=="; 1569 + url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.29.0.tgz"; 1570 + sha512 = "FDpPsEBwzsFBsxDXNsea+u+bU+iFWcVTbKH05+jtGEpvDEOrpOsOwUYvkBvVaReR0DORREVye2/NL0/uvLCRrg=="; 1562 1571 }; 1563 1572 }; 1564 1573 "@braintree/sanitize-url-3.1.0" = { ··· 1642 1651 sha512 = "3E4/6sCLEcoPUk6FJHOpLGqBNSE2AHrIrErXKRFU3je/MZotxvWrfrZY3IsENJgjJ69Zv0dxMxTZo/l+BVNa3w=="; 1643 1652 }; 1644 1653 }; 1645 - "@chemzqm/neovim-5.3.5" = { 1654 + "@chemzqm/neovim-5.4.0" = { 1646 1655 name = "_at_chemzqm_slash_neovim"; 1647 1656 packageName = "@chemzqm/neovim"; 1648 - version = "5.3.5"; 1657 + version = "5.4.0"; 1649 1658 src = fetchurl { 1650 - url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.3.5.tgz"; 1651 - sha512 = "khqF4y0Z1WLPJR3LPJRgTAAZHQYTxHFXw3Nzr799aRsKXummSX85SS7ZLnVDyDjzd3x4yonYdWk89K2ZpJslnQ=="; 1652 - }; 1653 - }; 1654 - "@chinachu/aribts-1.3.5-mirakurun.3" = { 1655 - name = "_at_chinachu_slash_aribts"; 1656 - packageName = "@chinachu/aribts"; 1657 - version = "1.3.5-mirakurun.3"; 1658 - src = fetchurl { 1659 - url = "https://registry.npmjs.org/@chinachu/aribts/-/aribts-1.3.5-mirakurun.3.tgz"; 1660 - sha512 = "JQPzfaYF7swQwKp2OsoRGZEjyrIo2muHQbwCKhfigqQrA3gCyGf3run+xCjNqKlI4wF9qjfgJpxfc1J56aIvog=="; 1659 + url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.4.0.tgz"; 1660 + sha512 = "BjOAR5sliE2kp3EGZsyUmrYwTMRrxvXe6WBQTxL0m5uRIvfxShRaWyKOGbqoe0+sHCfgT67QsMevUAjB1Ovskw=="; 1661 1661 }; 1662 1662 }; 1663 1663 "@cnakazawa/watch-1.0.4" = { ··· 1930 1930 sha512 = "Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g=="; 1931 1931 }; 1932 1932 }; 1933 - "@electron-forge/async-ora-6.0.0-beta.59" = { 1933 + "@electron-forge/async-ora-6.0.0-beta.60" = { 1934 1934 name = "_at_electron-forge_slash_async-ora"; 1935 1935 packageName = "@electron-forge/async-ora"; 1936 - version = "6.0.0-beta.59"; 1936 + version = "6.0.0-beta.60"; 1937 1937 src = fetchurl { 1938 - url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.59.tgz"; 1939 - sha512 = "vF60XyjHCyoyXHgkDi/tZy+OB9K6oSBio2at7B4pwZLO6nqstofkeAB+Gz/XUsVj9Nim+vHKtyXPzE0BTXQkZQ=="; 1938 + url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.60.tgz"; 1939 + sha512 = "MGRAfcxHkBVstgoZl/vk35IufNCu+xEYyZwaBk94w7NicIcW69z2VnP/W/v35sP3ekhqjpDCc0QGSQP5S1Zmuw=="; 1940 1940 }; 1941 1941 }; 1942 - "@electron-forge/core-6.0.0-beta.59" = { 1942 + "@electron-forge/core-6.0.0-beta.60" = { 1943 1943 name = "_at_electron-forge_slash_core"; 1944 1944 packageName = "@electron-forge/core"; 1945 - version = "6.0.0-beta.59"; 1945 + version = "6.0.0-beta.60"; 1946 1946 src = fetchurl { 1947 - url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.59.tgz"; 1948 - sha512 = "DRls31VQdVqGlna9EviHGKPchTkcbYPsRjOHSTrpksyOBQGck7for/hD1sxFREQ0r1qfKMR4xtmXbpXqzD8AyQ=="; 1947 + url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.60.tgz"; 1948 + sha512 = "JOUcO+PNdSeA623Y38zBJYvGnR6eIGNs+GA15ba9X/BKwX4zNjXDubc2tct+tiMNudTdSIAA/dwlzCJw9hTF9g=="; 1949 1949 }; 1950 1950 }; 1951 - "@electron-forge/installer-base-6.0.0-beta.59" = { 1951 + "@electron-forge/installer-base-6.0.0-beta.60" = { 1952 1952 name = "_at_electron-forge_slash_installer-base"; 1953 1953 packageName = "@electron-forge/installer-base"; 1954 - version = "6.0.0-beta.59"; 1954 + version = "6.0.0-beta.60"; 1955 1955 src = fetchurl { 1956 - url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.59.tgz"; 1957 - sha512 = "rmayhhJXj5aXed8xrkqOPTGF4J1DqZdTGo05RAVKoCmXv0iGBPUp0VvkiQinOvoBopr/5XorZTzCxgqps0UC6w=="; 1956 + url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.60.tgz"; 1957 + sha512 = "WnU7LEw98Lew1/5Kv/DzvqW19BNPPXxPTtTfpHnhOybm5g9uJ2sEjol4We5bgK0UFbCCORmwgbZYZsMCN/mx4A=="; 1958 1958 }; 1959 1959 }; 1960 - "@electron-forge/installer-darwin-6.0.0-beta.59" = { 1960 + "@electron-forge/installer-darwin-6.0.0-beta.60" = { 1961 1961 name = "_at_electron-forge_slash_installer-darwin"; 1962 1962 packageName = "@electron-forge/installer-darwin"; 1963 - version = "6.0.0-beta.59"; 1963 + version = "6.0.0-beta.60"; 1964 1964 src = fetchurl { 1965 - url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.59.tgz"; 1966 - sha512 = "2bssItA6CWgdL0G0/opG5usUdpCurCptdrA1bC8el6hlgv/v+hhRxalkPX9A38cWTB3w8VMhesDti+PpEYnniw=="; 1965 + url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.60.tgz"; 1966 + sha512 = "qAbPhr5Dt+aALmwC47cjNKR70hj+spNKRkMYSJMxD6tpbG4JDS+UQaHeuQAWY50XGgBWdialN6Hvr+y+d+QgGg=="; 1967 1967 }; 1968 1968 }; 1969 - "@electron-forge/installer-deb-6.0.0-beta.59" = { 1969 + "@electron-forge/installer-deb-6.0.0-beta.60" = { 1970 1970 name = "_at_electron-forge_slash_installer-deb"; 1971 1971 packageName = "@electron-forge/installer-deb"; 1972 - version = "6.0.0-beta.59"; 1972 + version = "6.0.0-beta.60"; 1973 1973 src = fetchurl { 1974 - url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.59.tgz"; 1975 - sha512 = "z2095DHbNm81gClIn+fkid/Z8FKlBnAySIodDRFKNjNDaGcWcg2Wurv3vV32Xq4kBlsHRduhxA31IqnGY1zOvA=="; 1974 + url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.60.tgz"; 1975 + sha512 = "Wma/FqochMopLeQTxW2/3uRt69JkkL7xq91P5PDJzIgEXEjlU0SyR8LKvNC8VMPQ7/cBDHowpI79cMBVjif25g=="; 1976 1976 }; 1977 1977 }; 1978 - "@electron-forge/installer-dmg-6.0.0-beta.59" = { 1978 + "@electron-forge/installer-dmg-6.0.0-beta.60" = { 1979 1979 name = "_at_electron-forge_slash_installer-dmg"; 1980 1980 packageName = "@electron-forge/installer-dmg"; 1981 - version = "6.0.0-beta.59"; 1981 + version = "6.0.0-beta.60"; 1982 1982 src = fetchurl { 1983 - url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.59.tgz"; 1984 - sha512 = "QAYJ0H31hVMiTQDQ9ngBkAFBbSTb9Okj3mKNsym+Yw4RlQJQEc9XWWOmiTjPHCB1LR/NmaescT06sJ6Kh0wtQw=="; 1983 + url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.60.tgz"; 1984 + sha512 = "N0rXYeMA4qcsDH9WadJU4RT/HmveO8ggNw3zDVmuvvV1y0nt1OGU3kHaJuslDYAUY6DNpwdHoz6wd7XLsBzDrw=="; 1985 1985 }; 1986 1986 }; 1987 - "@electron-forge/installer-exe-6.0.0-beta.59" = { 1987 + "@electron-forge/installer-exe-6.0.0-beta.60" = { 1988 1988 name = "_at_electron-forge_slash_installer-exe"; 1989 1989 packageName = "@electron-forge/installer-exe"; 1990 - version = "6.0.0-beta.59"; 1990 + version = "6.0.0-beta.60"; 1991 1991 src = fetchurl { 1992 - url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.59.tgz"; 1993 - sha512 = "FJ0vu65K6wBz8gY5RJNfLanXJEGMs2w/WrawSLh5xGH5GzOkWwq3RRD5AdN1CFRrkXSCBbgkdF6x+F1kdwH7OQ=="; 1992 + url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.60.tgz"; 1993 + sha512 = "YZ8V5DGTRgKB1+97t9wOtJh1T7yo7ea9CWK899yodGxYmFh1Xtc4hwfszOhnnXCoy5LyQhjvnrHWA3lRffOInA=="; 1994 1994 }; 1995 1995 }; 1996 - "@electron-forge/installer-linux-6.0.0-beta.59" = { 1996 + "@electron-forge/installer-linux-6.0.0-beta.60" = { 1997 1997 name = "_at_electron-forge_slash_installer-linux"; 1998 1998 packageName = "@electron-forge/installer-linux"; 1999 - version = "6.0.0-beta.59"; 1999 + version = "6.0.0-beta.60"; 2000 2000 src = fetchurl { 2001 - url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.59.tgz"; 2002 - sha512 = "dB1A8j6oubCnAOQQzmtFWQWTMMSijeiClaGMricNOlC0wC2U3BHiBwrU2jJqxvy4M401kfgR9UiMs6mQNSPdPg=="; 2001 + url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.60.tgz"; 2002 + sha512 = "yi78aQvFtpyOe0WynsuJOOIXh2BSwrHPoufVgQpqicyAF8Ql/cteL5bZAbP7YNapWRBC/dI7XjxhUl5MbbEGTg=="; 2003 2003 }; 2004 2004 }; 2005 - "@electron-forge/installer-rpm-6.0.0-beta.59" = { 2005 + "@electron-forge/installer-rpm-6.0.0-beta.60" = { 2006 2006 name = "_at_electron-forge_slash_installer-rpm"; 2007 2007 packageName = "@electron-forge/installer-rpm"; 2008 - version = "6.0.0-beta.59"; 2008 + version = "6.0.0-beta.60"; 2009 2009 src = fetchurl { 2010 - url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.59.tgz"; 2011 - sha512 = "h/S5uMl8Vvg+Euv5xIhynjB8Q6biaBauJJoPtlALxSgSNuKnWWIuc4edwqY5F0cBIw3WO4tnmA/CE6gVWgGJMg=="; 2010 + url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.60.tgz"; 2011 + sha512 = "JKP2ZefoC4mi3nCFXt6Md82QdEFn0A2WEW5q5R1xTOLbYm0SuYYX34S0Mo+6EZgBQYqot2ExA/l6C0beq1+GRQ=="; 2012 2012 }; 2013 2013 }; 2014 - "@electron-forge/installer-zip-6.0.0-beta.59" = { 2014 + "@electron-forge/installer-zip-6.0.0-beta.60" = { 2015 2015 name = "_at_electron-forge_slash_installer-zip"; 2016 2016 packageName = "@electron-forge/installer-zip"; 2017 - version = "6.0.0-beta.59"; 2017 + version = "6.0.0-beta.60"; 2018 2018 src = fetchurl { 2019 - url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.59.tgz"; 2020 - sha512 = "sTYv2NR0liFUUa9snpQs+SCWPMOUddVNK/sNBNkwU1q5jrO+ZjfTF22u5C5RawIWKgTrwxc3dFUYDYXh8753og=="; 2019 + url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.60.tgz"; 2020 + sha512 = "MMnCESVjn1nCVBGHHd1fD+4pBEgKj/aKCwAxYP9VmZdR/EcxpcFo+yjYEHtf39gFXHAKtVtJTO/FF7m7peUz+g=="; 2021 2021 }; 2022 2022 }; 2023 - "@electron-forge/maker-base-6.0.0-beta.59" = { 2023 + "@electron-forge/maker-base-6.0.0-beta.60" = { 2024 2024 name = "_at_electron-forge_slash_maker-base"; 2025 2025 packageName = "@electron-forge/maker-base"; 2026 - version = "6.0.0-beta.59"; 2026 + version = "6.0.0-beta.60"; 2027 2027 src = fetchurl { 2028 - url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.59.tgz"; 2029 - sha512 = "S/Qdu2kwio5PdZgoDDxZPo6JSf2YwcuXi3sy9Tw2Qj58+ZT9nOHn0C+JBHI8sREv3IRK52Axu1/RYkwtX9+V8w=="; 2028 + url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.60.tgz"; 2029 + sha512 = "z31j1tWMQunHpy9tCvbwEIFaF8/3ip13NAerTOSdABj1ngH1Wj+wdGm05iIeRQVcCrGSn/IIj/u7RGZ5CIRE6g=="; 2030 2030 }; 2031 2031 }; 2032 - "@electron-forge/plugin-base-6.0.0-beta.59" = { 2032 + "@electron-forge/plugin-base-6.0.0-beta.60" = { 2033 2033 name = "_at_electron-forge_slash_plugin-base"; 2034 2034 packageName = "@electron-forge/plugin-base"; 2035 - version = "6.0.0-beta.59"; 2035 + version = "6.0.0-beta.60"; 2036 2036 src = fetchurl { 2037 - url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.59.tgz"; 2038 - sha512 = "S30s/hfuIjKhCI2U4DwChjTx1ulGouqyorXpkHn3hlyfIXiC35T6fJ4Baw4Ng1W4BJrnZTmkVnglEHriFyV+Lg=="; 2037 + url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.60.tgz"; 2038 + sha512 = "tNRGBmh/kFr/S/EXLvuyIRZYeu8axwt4IhJem/26rSe7byJ4ynjDYvhWBhT4S+//3w/fMmuJJX47cPKPfHxjgg=="; 2039 2039 }; 2040 2040 }; 2041 - "@electron-forge/publisher-base-6.0.0-beta.59" = { 2041 + "@electron-forge/publisher-base-6.0.0-beta.60" = { 2042 2042 name = "_at_electron-forge_slash_publisher-base"; 2043 2043 packageName = "@electron-forge/publisher-base"; 2044 - version = "6.0.0-beta.59"; 2044 + version = "6.0.0-beta.60"; 2045 2045 src = fetchurl { 2046 - url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.59.tgz"; 2047 - sha512 = "W+fKf8ehtHU6GQLZnpnyy1XS+9o2dw8PJcRBU+pQNEUcbFqBxcAJhLkfh6cGE2tQQ/rN+N77RMWEnLh9GjZMCQ=="; 2046 + url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.60.tgz"; 2047 + sha512 = "x7Zm/mukxPnvrJzP8mvhT1hohaIrAnGrDx4AKR8P2wxvz/lejU4VOJ6uRo+7w3OIi07IYJIrG52qhSyipEspqQ=="; 2048 2048 }; 2049 2049 }; 2050 - "@electron-forge/shared-types-6.0.0-beta.59" = { 2050 + "@electron-forge/shared-types-6.0.0-beta.60" = { 2051 2051 name = "_at_electron-forge_slash_shared-types"; 2052 2052 packageName = "@electron-forge/shared-types"; 2053 - version = "6.0.0-beta.59"; 2053 + version = "6.0.0-beta.60"; 2054 2054 src = fetchurl { 2055 - url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.59.tgz"; 2056 - sha512 = "3tRCgfHqn5/8LijlVZsLb2xHm9W3qgzQ+KZNWXdYhb0Wj1+h6/sXn8rlxw10Mmb2mlYJEBW/NvIhpUDHgrGPXA=="; 2055 + url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.60.tgz"; 2056 + sha512 = "ZAD7Aj+FpdKSrVvxnY54G8GsZKQYIbFtYmVljOgwV9hRaSt70uCMME60yBv6gbKeX+FYk0UopiU5Txrna2EeKA=="; 2057 2057 }; 2058 2058 }; 2059 - "@electron-forge/template-base-6.0.0-beta.59" = { 2059 + "@electron-forge/template-base-6.0.0-beta.60" = { 2060 2060 name = "_at_electron-forge_slash_template-base"; 2061 2061 packageName = "@electron-forge/template-base"; 2062 - version = "6.0.0-beta.59"; 2062 + version = "6.0.0-beta.60"; 2063 2063 src = fetchurl { 2064 - url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.59.tgz"; 2065 - sha512 = "PHPSHlJ72fYlk8hrEj6+6ok0Xlxz3EeFkn2DSO4ol7fjFJI7cqbaSdNuDL55CmsWsWr/3RUqk/44pn5ywmvoOg=="; 2064 + url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.60.tgz"; 2065 + sha512 = "+/BM7QMljccaBFVq5wGUuf6vi1/UJt9gJq32TRlc4srZGjKarwmr393agedXYUkej85ns2dXK3mexF2ehIh4qQ=="; 2066 2066 }; 2067 2067 }; 2068 - "@electron-forge/template-typescript-6.0.0-beta.59" = { 2068 + "@electron-forge/template-typescript-6.0.0-beta.60" = { 2069 2069 name = "_at_electron-forge_slash_template-typescript"; 2070 2070 packageName = "@electron-forge/template-typescript"; 2071 - version = "6.0.0-beta.59"; 2071 + version = "6.0.0-beta.60"; 2072 2072 src = fetchurl { 2073 - url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.59.tgz"; 2074 - sha512 = "GD+KyNv9y1ga6RbbXwlTNVsBeg055E/92Q5+1Y/dM+f2LLx0El0whXEwBf8eJ1+AXzrBsD0JQzAFkAIFyECLkQ=="; 2073 + url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.60.tgz"; 2074 + sha512 = "FN0mbNg4jyRSbrr1+hpx7JV6wyWwclDjB6X9vItrTc9IXz+xCWWrvTDvEfziwm5GMqNZ7u7/yWyJZnehre2k6A=="; 2075 2075 }; 2076 2076 }; 2077 - "@electron-forge/template-typescript-webpack-6.0.0-beta.59" = { 2077 + "@electron-forge/template-typescript-webpack-6.0.0-beta.60" = { 2078 2078 name = "_at_electron-forge_slash_template-typescript-webpack"; 2079 2079 packageName = "@electron-forge/template-typescript-webpack"; 2080 - version = "6.0.0-beta.59"; 2080 + version = "6.0.0-beta.60"; 2081 2081 src = fetchurl { 2082 - url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.59.tgz"; 2083 - sha512 = "OPYA8eVbkFZFIpXCVTmDJntPTatzgaESyF2+eKwN1f6/j00kvHCbREL9zbXbji3gryt0a59bT+GKigWXldln5g=="; 2082 + url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.60.tgz"; 2083 + sha512 = "UKGeLuq9Ds9/DBsu3c/99q8/6aBpFNENPjZI6kZ5CWq1wXXg+6QZaZLD+D6JAEYs3QJgAVT2bYMyvjysLglNoQ=="; 2084 2084 }; 2085 2085 }; 2086 - "@electron-forge/template-webpack-6.0.0-beta.59" = { 2086 + "@electron-forge/template-webpack-6.0.0-beta.60" = { 2087 2087 name = "_at_electron-forge_slash_template-webpack"; 2088 2088 packageName = "@electron-forge/template-webpack"; 2089 - version = "6.0.0-beta.59"; 2089 + version = "6.0.0-beta.60"; 2090 2090 src = fetchurl { 2091 - url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.59.tgz"; 2092 - sha512 = "ScPVUQ//zqqnpr53/WY8pVygs6KVTpXsPlAoo0ZeYfOjuTRh2uSMPN0+2UnUUD5FGjLm3hkpIibUH4ZMtLu8aw=="; 2091 + url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.60.tgz"; 2092 + sha512 = "RyYLOzuQXKQ2mFV2d2DiUObWVe99rHXZ+d+PmOcysJWnNHjuEuLc8OOQQskRjFBy1pUkVCuv530Q1d1ufwY8lg=="; 2093 2093 }; 2094 2094 }; 2095 2095 "@electron/get-1.13.0" = { ··· 2416 2416 sha512 = "o8iU1VIY+QsqVRWARKiky29fh4KR1xaKSgMClXIi65qkt8EDDhjmlzL0KVDEoDA2GWukwb/1PpaVCWDg4v3cUQ=="; 2417 2417 }; 2418 2418 }; 2419 - "@fluentui/date-time-utilities-8.2.2" = { 2420 - name = "_at_fluentui_slash_date-time-utilities"; 2421 - packageName = "@fluentui/date-time-utilities"; 2422 - version = "8.2.2"; 2423 - src = fetchurl { 2424 - url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.2.2.tgz"; 2425 - sha512 = "djHrX/38ty+F93qLQjzmRzPzK598CW9g/RPhQH6GyrFBLPSWM1swYKB5TP6E7FrIf+fT4pVqrNUSYZhgi2rrOQ=="; 2426 - }; 2427 - }; 2428 2419 "@fluentui/dom-utilities-1.1.2" = { 2429 2420 name = "_at_fluentui_slash_dom-utilities"; 2430 2421 packageName = "@fluentui/dom-utilities"; ··· 2434 2425 sha512 = "XqPS7l3YoMwxdNlaYF6S2Mp0K3FmVIOIy2K3YkMc+eRxu9wFK6emr2Q/3rBhtG5u/On37NExRT7/5CTLnoi9gw=="; 2435 2426 }; 2436 2427 }; 2437 - "@fluentui/dom-utilities-2.1.4" = { 2438 - name = "_at_fluentui_slash_dom-utilities"; 2439 - packageName = "@fluentui/dom-utilities"; 2440 - version = "2.1.4"; 2441 - src = fetchurl { 2442 - url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.1.4.tgz"; 2443 - sha512 = "+gsAnEjgoKB37o+tsMdSLtgqZ9z2PzpvnHx/2IqhRWjQQd7Xc7MbQsbZaQ5qfkioFHLnWGc/+WORpqKPy/sWrg=="; 2444 - }; 2445 - }; 2446 - "@fluentui/font-icons-mdl2-8.1.10" = { 2447 - name = "_at_fluentui_slash_font-icons-mdl2"; 2448 - packageName = "@fluentui/font-icons-mdl2"; 2449 - version = "8.1.10"; 2450 - src = fetchurl { 2451 - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.1.10.tgz"; 2452 - sha512 = "oxAErjUx8xqlk81lxClEqdpF05Fy+5tKndYKm27k7cRD0f6CKLjT5Hu5oWDLwcYqa1eScXZV1I5IVHKjChsBSA=="; 2453 - }; 2454 - }; 2455 - "@fluentui/foundation-legacy-8.1.10" = { 2456 - name = "_at_fluentui_slash_foundation-legacy"; 2457 - packageName = "@fluentui/foundation-legacy"; 2458 - version = "8.1.10"; 2459 - src = fetchurl { 2460 - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.1.10.tgz"; 2461 - sha512 = "IhDS3OajyHHi+QmZlOhlXbVGFQ5TJNt2HFV6sy005jxw0xiBghG1niqjKjB09n3MfcmMdWNEkOFDpQuuyRWDjg=="; 2462 - }; 2463 - }; 2464 2428 "@fluentui/keyboard-key-0.2.17" = { 2465 2429 name = "_at_fluentui_slash_keyboard-key"; 2466 2430 packageName = "@fluentui/keyboard-key"; ··· 2470 2434 sha512 = "iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q=="; 2471 2435 }; 2472 2436 }; 2473 - "@fluentui/keyboard-key-0.3.4" = { 2474 - name = "_at_fluentui_slash_keyboard-key"; 2475 - packageName = "@fluentui/keyboard-key"; 2476 - version = "0.3.4"; 2477 - src = fetchurl { 2478 - url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.3.4.tgz"; 2479 - sha512 = "pVY2m3IC5+LLmMzsaPApX9eKTzpOzdgQwrR3FNTE6mGx3N/+QWYM7fdF+T1ldZQt87dCRSeQnmAo5kqjtxeA/w=="; 2480 - }; 2481 - }; 2482 - "@fluentui/merge-styles-8.1.5" = { 2483 - name = "_at_fluentui_slash_merge-styles"; 2484 - packageName = "@fluentui/merge-styles"; 2485 - version = "8.1.5"; 2486 - src = fetchurl { 2487 - url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.1.5.tgz"; 2488 - sha512 = "hmEb5LnOxCTpM/6oJQJI0w5AlYzwrceozPgsMdOF5BuT5MkXPlXLK3L2auzXGNYHkoGiouH61ImsS/TSM0mV/g=="; 2489 - }; 2490 - }; 2491 - "@fluentui/react-7.174.1" = { 2437 + "@fluentui/react-7.175.2" = { 2492 2438 name = "_at_fluentui_slash_react"; 2493 2439 packageName = "@fluentui/react"; 2494 - version = "7.174.1"; 2440 + version = "7.175.2"; 2495 2441 src = fetchurl { 2496 - url = "https://registry.npmjs.org/@fluentui/react/-/react-7.174.1.tgz"; 2497 - sha512 = "c6OF4iMImss6a+8NODme85Ekrvq6AV1jzW6BUGJ3Gc11pMuvxJsQwg5NCHzy8cXWsK7DbPP11JAM1cFNU2kG8w=="; 2442 + url = "https://registry.npmjs.org/@fluentui/react/-/react-7.175.2.tgz"; 2443 + sha512 = "jikYyizEWUEkXISiYKA5/bmV0Am1480rmct2nTMQZgWxnZGh00NG8jTPpr+rQKRENTyBvvpE8wZVp4/f5XKzAg=="; 2498 2444 }; 2499 2445 }; 2500 - "@fluentui/react-8.27.0" = { 2501 - name = "_at_fluentui_slash_react"; 2502 - packageName = "@fluentui/react"; 2503 - version = "8.27.0"; 2504 - src = fetchurl { 2505 - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.27.0.tgz"; 2506 - sha512 = "5LSh5XVU3qy6nY949jxS3BwF7UZA6jGjcH9JOTosgtxuHZUIXkzfZlT7fyt5xp+27B1B5ro9K9u2pDjItDHVHg=="; 2507 - }; 2508 - }; 2509 - "@fluentui/react-focus-7.17.6" = { 2446 + "@fluentui/react-focus-7.18.0" = { 2510 2447 name = "_at_fluentui_slash_react-focus"; 2511 2448 packageName = "@fluentui/react-focus"; 2512 - version = "7.17.6"; 2449 + version = "7.18.0"; 2513 2450 src = fetchurl { 2514 - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.17.6.tgz"; 2515 - sha512 = "JkLWNDe567lhvbnIhbYv9nUWYDIVN06utc3krs0UZBI+A0YZtQmftBtY0ghXo4PSjgozZocdu9sYkkgZOgyRLg=="; 2516 - }; 2517 - }; 2518 - "@fluentui/react-focus-8.2.1" = { 2519 - name = "_at_fluentui_slash_react-focus"; 2520 - packageName = "@fluentui/react-focus"; 2521 - version = "8.2.1"; 2522 - src = fetchurl { 2523 - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.2.1.tgz"; 2524 - sha512 = "kPGlyc8sj/1OjY/juaOG/CATc0GPsAkbFj8JNbPGPkcxdSkr1hVN4AQq34E8ddVe5d/t+Nevftl9kkYAAxfnoA=="; 2525 - }; 2526 - }; 2527 - "@fluentui/react-hooks-8.3.1" = { 2528 - name = "_at_fluentui_slash_react-hooks"; 2529 - packageName = "@fluentui/react-hooks"; 2530 - version = "8.3.1"; 2531 - src = fetchurl { 2532 - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.3.1.tgz"; 2533 - sha512 = "fgkL4/4m8ds7dK6+o6qfk9Ok1ssbTV3dA7k1w5xZgw/FE4AWTt6zfLx9HhGpxF71l0X+R0DCWWb6W/LqE7+Ylg=="; 2451 + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.18.0.tgz"; 2452 + sha512 = "+ykERyl/Cah9ixBqYtA4DWG5UDg61oNd0T78xKZ/ZeKzAUk2LanEQd2QQ/VX6/UFqWrHsK3IiEUFmZCQhp4wfQ=="; 2534 2453 }; 2535 2454 }; 2536 2455 "@fluentui/react-window-provider-1.0.2" = { ··· 2542 2461 sha512 = "fGSgL3Vp/+6t1Ysfz21FWZmqsU+iFVxOigvHnm5uKVyyRPwtaabv/F6kQ2y5isLMI2YmJaUd2i0cDJKu8ggrvw=="; 2543 2462 }; 2544 2463 }; 2545 - "@fluentui/react-window-provider-2.1.4" = { 2546 - name = "_at_fluentui_slash_react-window-provider"; 2547 - packageName = "@fluentui/react-window-provider"; 2548 - version = "2.1.4"; 2549 - src = fetchurl { 2550 - url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.1.4.tgz"; 2551 - sha512 = "RztmJ7ol2eMDr3NCs2OcAA1cQjZdPPUEa4aurgh4Aq+JM/BiY0aK6S4SeFtVD7F8Q7PBOz/xwOG4HlnSMQtlsg=="; 2552 - }; 2553 - }; 2554 - "@fluentui/set-version-8.1.4" = { 2555 - name = "_at_fluentui_slash_set-version"; 2556 - packageName = "@fluentui/set-version"; 2557 - version = "8.1.4"; 2558 - src = fetchurl { 2559 - url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.1.4.tgz"; 2560 - sha512 = "2otMyJ+s+W+hjBD4BKjwYKKinJUDeIKYKz93qKrrJS0i3fKfftNroy9dHFlIblZ7n747L334plLi3bzQO1bnvA=="; 2561 - }; 2562 - }; 2563 - "@fluentui/style-utilities-8.3.1" = { 2564 - name = "_at_fluentui_slash_style-utilities"; 2565 - packageName = "@fluentui/style-utilities"; 2566 - version = "8.3.1"; 2567 - src = fetchurl { 2568 - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.3.1.tgz"; 2569 - sha512 = "EEaol+tIgTwEI8iHQfJHA7w2xtl7B+ofkheyMIK/97ONVqD4onf42p5r34rmuBhgIo4pXQsEQDPb5b5ClSzDFw=="; 2570 - }; 2571 - }; 2572 2464 "@fluentui/theme-1.7.4" = { 2573 2465 name = "_at_fluentui_slash_theme"; 2574 2466 packageName = "@fluentui/theme"; ··· 2578 2470 sha512 = "o4eo7lstLxxXl1g2RR9yz18Yt8yjQO/LbQuZjsiAfv/4Bf0CRnb+3j1F7gxIdBWAchKj9gzaMpIFijfI98pvYQ=="; 2579 2471 }; 2580 2472 }; 2581 - "@fluentui/theme-2.3.1" = { 2582 - name = "_at_fluentui_slash_theme"; 2583 - packageName = "@fluentui/theme"; 2584 - version = "2.3.1"; 2585 - src = fetchurl { 2586 - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.3.1.tgz"; 2587 - sha512 = "S+AM8+Jg5/KMQYcxcN6LcZPA51pXVVapnkk1eMGKQYDdJ4KS4r50L2OkIPVfbFn3uiW8VZOesHMsvBTnvZfdng=="; 2588 - }; 2589 - }; 2590 - "@fluentui/utilities-8.3.1" = { 2591 - name = "_at_fluentui_slash_utilities"; 2592 - packageName = "@fluentui/utilities"; 2593 - version = "8.3.1"; 2594 - src = fetchurl { 2595 - url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.3.1.tgz"; 2596 - sha512 = "V/6bokboB7J1di6XWnS2AuT1A2x0N8BvfCbdaTqvrmCarmViaY/3cawO8shV91d+ahiR2ZzN0CqOMkIDvjr4tA=="; 2597 - }; 2598 - }; 2599 2473 "@gar/promisify-1.1.2" = { 2600 2474 name = "_at_gar_slash_promisify"; 2601 2475 packageName = "@gar/promisify"; ··· 2695 2569 sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; 2696 2570 }; 2697 2571 }; 2698 - "@graphql-tools/import-6.3.1" = { 2572 + "@graphql-tools/import-6.4.0" = { 2699 2573 name = "_at_graphql-tools_slash_import"; 2700 2574 packageName = "@graphql-tools/import"; 2701 - version = "6.3.1"; 2575 + version = "6.4.0"; 2702 2576 src = fetchurl { 2703 - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.3.1.tgz"; 2704 - sha512 = "1szR19JI6WPibjYurMLdadHKZoG9C//8I/FZ0Dt4vJSbrMdVNp8WFxg4QnZrDeMG4MzZc90etsyF5ofKjcC+jw=="; 2577 + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.4.0.tgz"; 2578 + sha512 = "jfE01oPcmc4vzAcYLs6xT7XC4jJWrM1HNtIwc7HyyHTxrC3nf36XrF3txEZ2l20GT53+OWnMgYx1HhauLGdJmA=="; 2705 2579 }; 2706 2580 }; 2707 2581 "@graphql-tools/json-file-loader-6.2.6" = { ··· 2740 2614 sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow=="; 2741 2615 }; 2742 2616 }; 2743 - "@graphql-tools/merge-8.0.3" = { 2617 + "@graphql-tools/merge-8.1.2" = { 2744 2618 name = "_at_graphql-tools_slash_merge"; 2745 2619 packageName = "@graphql-tools/merge"; 2746 - version = "8.0.3"; 2620 + version = "8.1.2"; 2747 2621 src = fetchurl { 2748 - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.0.3.tgz"; 2749 - sha512 = "lVMyW9cREs+nQYbUvMaaqSl+pRCezl2RafNMFi/04akjvOtjVefdi7n3pArpSqPhLHPJDyQRlI8CK8cmOZ9jTA=="; 2622 + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.1.2.tgz"; 2623 + sha512 = "kFLd4kKNJXYXnKIhM8q9zgGAtbLmsy3WmGdDxYq3YHBJUogucAxnivQYyRIseUq37KGmSAIWu3pBQ23TKGsGOw=="; 2750 2624 }; 2751 2625 }; 2752 - "@graphql-tools/mock-8.2.2" = { 2626 + "@graphql-tools/mock-8.3.1" = { 2753 2627 name = "_at_graphql-tools_slash_mock"; 2754 2628 packageName = "@graphql-tools/mock"; 2755 - version = "8.2.2"; 2629 + version = "8.3.1"; 2756 2630 src = fetchurl { 2757 - url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.2.2.tgz"; 2758 - sha512 = "3cUJi14UHW1/8mebbXlAqfZl78IxeKzF2QlcJV5PSRQe27Dp/UnkHyid1UH/iwBdA98J7l0uw8NU1MRRVjhjIA=="; 2631 + url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.3.1.tgz"; 2632 + sha512 = "iJ3GeQ10Vqa0Tg4QJHiulxUUI4r84RAvltM3Sc+XPj07QlrLzMHOHO/goO7FC4TN2/HVncj7pWHwrmLPT9du/Q=="; 2759 2633 }; 2760 2634 }; 2761 2635 "@graphql-tools/schema-7.1.5" = { ··· 2767 2641 sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; 2768 2642 }; 2769 2643 }; 2770 - "@graphql-tools/schema-8.1.2" = { 2644 + "@graphql-tools/schema-8.2.0" = { 2771 2645 name = "_at_graphql-tools_slash_schema"; 2772 2646 packageName = "@graphql-tools/schema"; 2773 - version = "8.1.2"; 2647 + version = "8.2.0"; 2774 2648 src = fetchurl { 2775 - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.1.2.tgz"; 2776 - sha512 = "rX2pg42a0w7JLVYT+f/yeEKpnoZL5PpLq68TxC3iZ8slnNBNjfVfvzzOn8Q8Q6Xw3t17KP9QespmJEDfuQe4Rg=="; 2649 + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.2.0.tgz"; 2650 + sha512 = "ufmI5mJQa8NJczzfkh0pUttKvspqDcT5LLakA3jUmOrrE4d4NVj6onZlazdTzF5sAepSNqanFnwhrxZpCAJMKg=="; 2777 2651 }; 2778 2652 }; 2779 2653 "@graphql-tools/url-loader-6.10.1" = { ··· 2812 2686 sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; 2813 2687 }; 2814 2688 }; 2815 - "@graphql-tools/utils-8.1.2" = { 2689 + "@graphql-tools/utils-8.2.2" = { 2816 2690 name = "_at_graphql-tools_slash_utils"; 2817 2691 packageName = "@graphql-tools/utils"; 2818 - version = "8.1.2"; 2692 + version = "8.2.2"; 2819 2693 src = fetchurl { 2820 - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.1.2.tgz"; 2821 - sha512 = "3G+NIBR5mHjPm78jAD0l07JRE0XH+lr9m7yL/wl69jAzK0Jr/H+/Ok4ljEolI70iglz+ZhIShVPAwyesF6rnFg=="; 2694 + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz"; 2695 + sha512 = "29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g=="; 2822 2696 }; 2823 2697 }; 2824 2698 "@graphql-tools/wrap-7.0.8" = { ··· 3271 3145 sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; 3272 3146 }; 3273 3147 }; 3274 - "@joplin/fork-htmlparser2-4.1.33" = { 3148 + "@joplin/fork-htmlparser2-4.1.34" = { 3275 3149 name = "_at_joplin_slash_fork-htmlparser2"; 3276 3150 packageName = "@joplin/fork-htmlparser2"; 3277 - version = "4.1.33"; 3151 + version = "4.1.34"; 3278 3152 src = fetchurl { 3279 - url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.33.tgz"; 3280 - sha512 = "Q5GR6mVKS/1JgNTHtS0hc08YexfVZIq9RAj9j33Zm9SXEDstXn0WP4UpULCWLYOen3ffJ2z4uv9a2vLKcvbbIg=="; 3153 + url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.34.tgz"; 3154 + sha512 = "1/tQZEDnI36RaEJte0eumw1/c8OhmJOpgFyW+Nxsk2u/vvcgnEvjFjauiH2ZxtO5FTJB3BMQ4M23+Y5dw2cnnw=="; 3281 3155 }; 3282 3156 }; 3283 - "@joplin/fork-sax-1.2.37" = { 3157 + "@joplin/fork-sax-1.2.38" = { 3284 3158 name = "_at_joplin_slash_fork-sax"; 3285 3159 packageName = "@joplin/fork-sax"; 3286 - version = "1.2.37"; 3160 + version = "1.2.38"; 3287 3161 src = fetchurl { 3288 - url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.37.tgz"; 3289 - sha512 = "3S71WcFLsZQ4tlZ7LNZRBoEE0LJJL8gxhqwAKZXKYTF5syShZDNWwSpntB4AoFWry3L0I+HnjXm2psQfQzo15Q=="; 3162 + url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.38.tgz"; 3163 + sha512 = "XRwYieoXtTdjwOT4J1FpWVnOZe1f2KSNK2KXe7s4UiLxhVKQWPQrqgP8xoNyHH5/Y78fqwajU4pYvRgctNqdfw=="; 3290 3164 }; 3291 3165 }; 3292 3166 "@joplin/lib-2.3.1" = { ··· 3307 3181 sha512 = "wOxuScEao2f3kIs+A0qroWe6CiWs1LeZqwBz/w869Qi8MW8wvy2aeyirpnb7yEYh9aCevfiQcUMUvYZ9ekMskg=="; 3308 3182 }; 3309 3183 }; 3310 - "@joplin/turndown-4.0.55" = { 3184 + "@joplin/turndown-4.0.56" = { 3311 3185 name = "_at_joplin_slash_turndown"; 3312 3186 packageName = "@joplin/turndown"; 3313 - version = "4.0.55"; 3187 + version = "4.0.56"; 3314 3188 src = fetchurl { 3315 - url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.55.tgz"; 3316 - sha512 = "9IgtCAQXzCtkXNE+/4q6dWnbt90kvZIefTLFXLxE+w/gLbBDxSmTCfhCCFPzUA1ORp3LkAJZIiE710fRM0O3gg=="; 3189 + url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.56.tgz"; 3190 + sha512 = "5odtgBk4u1c+IehuvS7/C3yxCY96UMiUdVdoSpyk5m11nLupEr5LA1oQ1JAJTehUk5cuJR+rofD67m+XgZt+tQ=="; 3317 3191 }; 3318 3192 }; 3319 - "@joplin/turndown-plugin-gfm-1.0.37" = { 3193 + "@joplin/turndown-plugin-gfm-1.0.38" = { 3320 3194 name = "_at_joplin_slash_turndown-plugin-gfm"; 3321 3195 packageName = "@joplin/turndown-plugin-gfm"; 3322 - version = "1.0.37"; 3196 + version = "1.0.38"; 3323 3197 src = fetchurl { 3324 - url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.37.tgz"; 3325 - sha512 = "LRiIezmtnJSdczIT3mPuCvUIdFT01lDYTBDdSNGwBheNt7R9tYIj0nh87OnpBGztktIIsOH/66nbB8KQjVtisQ=="; 3198 + url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.38.tgz"; 3199 + sha512 = "STRS9Y1YkxmKO2pEEkbUAp8KxLW+41rm3Dom0uGMw4kAYLDcxbOscu6XScLRvRtleftU6YS7aZd+4/9SBx75Zw=="; 3326 3200 }; 3327 3201 }; 3328 3202 "@josephg/resolvable-1.0.1" = { ··· 4135 4009 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 4136 4010 }; 4137 4011 }; 4138 - "@microsoft/load-themed-styles-1.10.203" = { 4012 + "@microsoft/load-themed-styles-1.10.207" = { 4139 4013 name = "_at_microsoft_slash_load-themed-styles"; 4140 4014 packageName = "@microsoft/load-themed-styles"; 4141 - version = "1.10.203"; 4015 + version = "1.10.207"; 4142 4016 src = fetchurl { 4143 - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.203.tgz"; 4144 - sha512 = "9UV+1kIAEdV1a8JI58iOpDc7mmFdgTW5qI4pAyL4Drk468ZCPmg/tHPbgAM/Pg8EtkWyIJm5E6KVofo+meavQQ=="; 4017 + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.207.tgz"; 4018 + sha512 = "ZFLYVCBn59Rh7JUVRZd3zjiH/dM7LAItGchC2Xs66XQnDhyq8dwuuIxmJmeozhQcklcLt3SnRHQPENDjb5w03w=="; 4145 4019 }; 4146 4020 }; 4147 4021 "@mitmaro/errors-1.0.0" = { ··· 4189 4063 sha512 = "Vwhc3ObxmDZmA5hY8mfsau2rJ4vGPvzbj20QSZ2/E1GDPF61QVyjLfNHak9xmel6pW4heRt3v1fHa6np9Ehfeg=="; 4190 4064 }; 4191 4065 }; 4192 - "@msgpack/msgpack-2.7.0" = { 4066 + "@msgpack/msgpack-2.7.1" = { 4193 4067 name = "_at_msgpack_slash_msgpack"; 4194 4068 packageName = "@msgpack/msgpack"; 4195 - version = "2.7.0"; 4196 - src = fetchurl { 4197 - url = "https://registry.npmjs.org/@msgpack/msgpack/-/msgpack-2.7.0.tgz"; 4198 - sha512 = "mlRYq9FSsOd4m+3wZWatemn3hGFZPWNJ4JQOdrir4rrMK2PyIk26idKBoUWrqF3HJJHl+5GpRU+M0wEruJwecg=="; 4199 - }; 4200 - }; 4201 - "@napi-rs/triples-1.0.3" = { 4202 - name = "_at_napi-rs_slash_triples"; 4203 - packageName = "@napi-rs/triples"; 4204 - version = "1.0.3"; 4069 + version = "2.7.1"; 4205 4070 src = fetchurl { 4206 - url = "https://registry.npmjs.org/@napi-rs/triples/-/triples-1.0.3.tgz"; 4207 - sha512 = "jDJTpta+P4p1NZTFVLHJ/TLFVYVcOqv6l8xwOeBKNPMgY/zDYH/YH7SJbvrr/h1RcS9GzbPcLKGzpuK9cV56UA=="; 4071 + url = "https://registry.npmjs.org/@msgpack/msgpack/-/msgpack-2.7.1.tgz"; 4072 + sha512 = "ApwiSL2c9ObewdOE/sqt788P1C5lomBOHyO8nUBCr4ofErBCnYQ003NtJ8lS9OQZc11ximkbmgAZJjB8y6cCdA=="; 4208 4073 }; 4209 4074 }; 4210 4075 "@nestjs/schematics-8.0.3" = { ··· 4225 4090 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 4226 4091 }; 4227 4092 }; 4228 - "@netlify/build-18.6.0" = { 4093 + "@netlify/build-18.8.0" = { 4229 4094 name = "_at_netlify_slash_build"; 4230 4095 packageName = "@netlify/build"; 4231 - version = "18.6.0"; 4096 + version = "18.8.0"; 4232 4097 src = fetchurl { 4233 - url = "https://registry.npmjs.org/@netlify/build/-/build-18.6.0.tgz"; 4234 - sha512 = "rUkJp68Q7Of6nWflbVRKhD/ZqAu3LGcxSYPX28Y94Q6LVnvz27dwF0gufkdDJX6cQk8P5OvIZJVYzfPQITfYow=="; 4098 + url = "https://registry.npmjs.org/@netlify/build/-/build-18.8.0.tgz"; 4099 + sha512 = "6xU3mGfkSPJlhK5r0y9fMgBRmQFzs6UxPB4MLQ6hmufL/Tj4vFx56hCXX5+fADpThe0uMw+ubNbMr0L44b5gzQ=="; 4235 4100 }; 4236 4101 }; 4237 4102 "@netlify/cache-utils-2.0.3" = { ··· 4243 4108 sha512 = "820dYhacTHXKxpYm81VlmCJ48ySGj+6GZi1oPLevdTSkMXGM1BphBKUjM/r9+GUE1ocGOh8Vdt3PsDp8f7gS4w=="; 4244 4109 }; 4245 4110 }; 4246 - "@netlify/config-15.5.0" = { 4111 + "@netlify/config-15.6.0" = { 4247 4112 name = "_at_netlify_slash_config"; 4248 4113 packageName = "@netlify/config"; 4249 - version = "15.5.0"; 4114 + version = "15.6.0"; 4250 4115 src = fetchurl { 4251 - url = "https://registry.npmjs.org/@netlify/config/-/config-15.5.0.tgz"; 4252 - sha512 = "c+ICajSGQ7gD6O1V0wsl9SFxSC+owzg5JQyW9SBKV68nDxQBMwn31QHOHijopWeDPMQnp+gIHc2/wgwwtQ2YMQ=="; 4116 + url = "https://registry.npmjs.org/@netlify/config/-/config-15.6.0.tgz"; 4117 + sha512 = "PqCWAnxR5jI7VyyG8MH58ZjIzGaUfIbuvf4jPnlMwvyXfUaIBf5iZPNumPm2hNZSMeNWtkJa9juGsCw+2cu7mg=="; 4253 4118 }; 4254 4119 }; 4255 4120 "@netlify/esbuild-0.13.6" = { ··· 4423 4288 sha512 = "tFb7J6+YEtZP0OYpS/b9Rjp1lm02XfhAQR6KRHAaeRlHp98/zgd0hhubfwXUCppP2BLfn+imkeVS0FnANh5B3g=="; 4424 4289 }; 4425 4290 }; 4426 - "@netlify/plugins-list-3.5.0" = { 4291 + "@netlify/plugins-list-3.6.0" = { 4427 4292 name = "_at_netlify_slash_plugins-list"; 4428 4293 packageName = "@netlify/plugins-list"; 4429 - version = "3.5.0"; 4294 + version = "3.6.0"; 4430 4295 src = fetchurl { 4431 - url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-3.5.0.tgz"; 4432 - sha512 = "qBJC80fWY1T/UrvOsr/54ftfBoL2uybjzWuTZY8uYG2DnlJ4OaWjM3O9Srf7LXxHL3pdwV7kfdr9fQ6gbmARKg=="; 4296 + url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-3.6.0.tgz"; 4297 + sha512 = "yRgsmBw8Wzk6/I/afcerhC+3XtVxXUF0xrSMOYgxV0bmaKJmB/0StJG4FY9TOAmb/IzCp82mR/63ZpzwIvpVzw=="; 4433 4298 }; 4434 4299 }; 4435 4300 "@netlify/routing-local-proxy-0.31.0" = { ··· 4459 4324 sha512 = "+wo8rupUJbrfw/lEBPccVP+GhFEJEbzx7M67eSEWxqwQkUKtZIHbBc6Ile+iVXqFnLyM2ryfxLTcSIm1pc797g=="; 4460 4325 }; 4461 4326 }; 4462 - "@node-red/editor-api-2.0.5" = { 4327 + "@node-red/editor-api-2.0.6" = { 4463 4328 name = "_at_node-red_slash_editor-api"; 4464 4329 packageName = "@node-red/editor-api"; 4465 - version = "2.0.5"; 4330 + version = "2.0.6"; 4466 4331 src = fetchurl { 4467 - url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.0.5.tgz"; 4468 - sha512 = "efiWLuNk/lwpIULt4Bu8WycW9+v6xVx0VHAK+j1y8Kl5S6u6sbfkTlmDDpaN2NqPHGdMT+roF9EHKHISTmVN9g=="; 4332 + url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.0.6.tgz"; 4333 + sha512 = "jSC00TetcU1sQHR5SNo+R8IxEKbJWmBAeCcHd0EWDMb4ikcN1wwteQfYPOr2ID8HnsSEIBlpN8K3Hrezo3+KcQ=="; 4469 4334 }; 4470 4335 }; 4471 - "@node-red/editor-client-2.0.5" = { 4336 + "@node-red/editor-client-2.0.6" = { 4472 4337 name = "_at_node-red_slash_editor-client"; 4473 4338 packageName = "@node-red/editor-client"; 4474 - version = "2.0.5"; 4339 + version = "2.0.6"; 4475 4340 src = fetchurl { 4476 - url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.0.5.tgz"; 4477 - sha512 = "C/Vu7NZX3VGTU/LEXxDUTxEEDu/NFIbAOCAJAcvJKdNPEL4InwTF75PRRiWsfeDu8DhBnvFqFe9XTS4fr+nrPA=="; 4341 + url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.0.6.tgz"; 4342 + sha512 = "uhQJcKGX7Ypa1eaebrWM6rneEkn4FniEo3zZqTzwD+VZf4rAwNeE0ZV7Z85DL4xmmPKfUmuA4Fte7TYcjqk80g=="; 4478 4343 }; 4479 4344 }; 4480 - "@node-red/nodes-2.0.5" = { 4345 + "@node-red/nodes-2.0.6" = { 4481 4346 name = "_at_node-red_slash_nodes"; 4482 4347 packageName = "@node-red/nodes"; 4483 - version = "2.0.5"; 4348 + version = "2.0.6"; 4484 4349 src = fetchurl { 4485 - url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.0.5.tgz"; 4486 - sha512 = "o9hdie+2YtjoMFFe+vAcIkkHPJIO5pkPrRUNQcx7EHzXPEMP0uxhhr/DpC/J6AQ0tOlfS6shWKge0E4bBKfJDQ=="; 4350 + url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.0.6.tgz"; 4351 + sha512 = "KBUEUdJ89zRb1v1x+ZGrAv3MWfDJx+b+ClH83h1Ibqn2haJ+jfTBE1kZUEJaNP0Dm0CC/n4Ll9lrWnEoSSI8aQ=="; 4487 4352 }; 4488 4353 }; 4489 - "@node-red/registry-2.0.5" = { 4354 + "@node-red/registry-2.0.6" = { 4490 4355 name = "_at_node-red_slash_registry"; 4491 4356 packageName = "@node-red/registry"; 4492 - version = "2.0.5"; 4357 + version = "2.0.6"; 4493 4358 src = fetchurl { 4494 - url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.0.5.tgz"; 4495 - sha512 = "UVM1UFuyNGtyLIL3Fjme67uvlxiiQlYVrabFwzUa0u2zHWf0YpzIQgcwtFY9kIuj3h0rVIN+EzuPZIbQZVISNw=="; 4359 + url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.0.6.tgz"; 4360 + sha512 = "EhxxmUnCpYXztMlalVYkzaIi5eRGMM1rJvdFgQBIx5WWUkZ1h40a4KgnbbJ/VUthKaQLqbq62P0SX5ZU8RCtww=="; 4496 4361 }; 4497 4362 }; 4498 - "@node-red/runtime-2.0.5" = { 4363 + "@node-red/runtime-2.0.6" = { 4499 4364 name = "_at_node-red_slash_runtime"; 4500 4365 packageName = "@node-red/runtime"; 4501 - version = "2.0.5"; 4366 + version = "2.0.6"; 4502 4367 src = fetchurl { 4503 - url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.0.5.tgz"; 4504 - sha512 = "eK55TQ+iTX0xZy8k4eW3JJCHywgnxpszuKg1aXurKD1sBURGa9qNztB/IW+0T0upnRYgQSTTI8j//msG6s76LQ=="; 4368 + url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.0.6.tgz"; 4369 + sha512 = "AdEYjEKl4wVFjV2Xhx2BBJCDVZVMer/9PmSaUQJVFjYKkn7ouazGjtHPxowcSeAYF0WpRfb66ceRe7ZHaRbqXw=="; 4505 4370 }; 4506 4371 }; 4507 - "@node-red/util-2.0.5" = { 4372 + "@node-red/util-2.0.6" = { 4508 4373 name = "_at_node-red_slash_util"; 4509 4374 packageName = "@node-red/util"; 4510 - version = "2.0.5"; 4375 + version = "2.0.6"; 4511 4376 src = fetchurl { 4512 - url = "https://registry.npmjs.org/@node-red/util/-/util-2.0.5.tgz"; 4513 - sha512 = "+RF8i+LxgyXcAIKjKyht3rRZFBEhrvgXKN2/HlkMWerADwiDTNfBL8JjQZoMKlFKl1cgapp8vp4P1Xf3glH+fQ=="; 4514 - }; 4515 - }; 4516 - "@node-rs/crc32-1.2.1" = { 4517 - name = "_at_node-rs_slash_crc32"; 4518 - packageName = "@node-rs/crc32"; 4519 - version = "1.2.1"; 4520 - src = fetchurl { 4521 - url = "https://registry.npmjs.org/@node-rs/crc32/-/crc32-1.2.1.tgz"; 4522 - sha512 = "Hw9QJPisg1ZR9Rj6w3sQLcEZkPanu1RLb4yk0Wq0cT4RNYssw35RtOkN/x/tW9iIMLq2YjHUyb6tun82dLVTPQ=="; 4523 - }; 4524 - }; 4525 - "@node-rs/crc32-android-arm64-1.2.1" = { 4526 - name = "_at_node-rs_slash_crc32-android-arm64"; 4527 - packageName = "@node-rs/crc32-android-arm64"; 4528 - version = "1.2.1"; 4529 - src = fetchurl { 4530 - url = "https://registry.npmjs.org/@node-rs/crc32-android-arm64/-/crc32-android-arm64-1.2.1.tgz"; 4531 - sha512 = "SWz9X44WQzZqzURYz4DY3DccB97T+aKJl+i6rvREwf1Y5suWiPdxU4xqg9zZ66aG6XeE3ts+WeqKH26bVbZTQA=="; 4532 - }; 4533 - }; 4534 - "@node-rs/crc32-darwin-arm64-1.2.1" = { 4535 - name = "_at_node-rs_slash_crc32-darwin-arm64"; 4536 - packageName = "@node-rs/crc32-darwin-arm64"; 4537 - version = "1.2.1"; 4538 - src = fetchurl { 4539 - url = "https://registry.npmjs.org/@node-rs/crc32-darwin-arm64/-/crc32-darwin-arm64-1.2.1.tgz"; 4540 - sha512 = "JKKYEc5YKrZZ0CQ0nXSLCraU+6b9SldGU3/Wf3s4WCzYGkkB4XtMwjx3t7bGZAGmZ2ZcRy9M2EGJ8tUfV8cOOg=="; 4541 - }; 4542 - }; 4543 - "@node-rs/crc32-darwin-x64-1.2.1" = { 4544 - name = "_at_node-rs_slash_crc32-darwin-x64"; 4545 - packageName = "@node-rs/crc32-darwin-x64"; 4546 - version = "1.2.1"; 4547 - src = fetchurl { 4548 - url = "https://registry.npmjs.org/@node-rs/crc32-darwin-x64/-/crc32-darwin-x64-1.2.1.tgz"; 4549 - sha512 = "BaWeOdzJ73MyrChWQqQkJEKM9jRUjb19tE7PbFhG8cZPVxBFyxgTFNuBrR0xHOByCHI4QXSBvNCLEfawHbsscQ=="; 4550 - }; 4551 - }; 4552 - "@node-rs/crc32-freebsd-x64-1.2.1" = { 4553 - name = "_at_node-rs_slash_crc32-freebsd-x64"; 4554 - packageName = "@node-rs/crc32-freebsd-x64"; 4555 - version = "1.2.1"; 4556 - src = fetchurl { 4557 - url = "https://registry.npmjs.org/@node-rs/crc32-freebsd-x64/-/crc32-freebsd-x64-1.2.1.tgz"; 4558 - sha512 = "ZzAJS9EwUwvclfhvDT6vn0CYpU4CAvDYpPjXb+e0bsFbvqoh8mQcXvzK1myU3fSjjKUU47Pp5wLe68vW+2Q0Pw=="; 4559 - }; 4560 - }; 4561 - "@node-rs/crc32-linux-arm-gnueabihf-1.2.1" = { 4562 - name = "_at_node-rs_slash_crc32-linux-arm-gnueabihf"; 4563 - packageName = "@node-rs/crc32-linux-arm-gnueabihf"; 4564 - version = "1.2.1"; 4565 - src = fetchurl { 4566 - url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm-gnueabihf/-/crc32-linux-arm-gnueabihf-1.2.1.tgz"; 4567 - sha512 = "6nRDyFgGsLc9bqaiK21KANqAdeh+9ZOHf3MY9HWvZoGQnxj2/LwvSHyaeG9ut+TvkL+Ic2hMtjLDNYYBaUcImw=="; 4568 - }; 4569 - }; 4570 - "@node-rs/crc32-linux-arm64-gnu-1.2.1" = { 4571 - name = "_at_node-rs_slash_crc32-linux-arm64-gnu"; 4572 - packageName = "@node-rs/crc32-linux-arm64-gnu"; 4573 - version = "1.2.1"; 4574 - src = fetchurl { 4575 - url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-gnu/-/crc32-linux-arm64-gnu-1.2.1.tgz"; 4576 - sha512 = "ZNluh2Wse68JgLGRl75fkLmVkAPSb1LE/2OdPXKZ85ExGYB5/3el2nE1CnysbqxqzL/Cc6kJ7UnsI/cxSe/D4Q=="; 4577 - }; 4578 - }; 4579 - "@node-rs/crc32-linux-arm64-musl-1.2.1" = { 4580 - name = "_at_node-rs_slash_crc32-linux-arm64-musl"; 4581 - packageName = "@node-rs/crc32-linux-arm64-musl"; 4582 - version = "1.2.1"; 4583 - src = fetchurl { 4584 - url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-musl/-/crc32-linux-arm64-musl-1.2.1.tgz"; 4585 - sha512 = "e490eNo9GB57koS4gabDeZ+f7wB3/SNtPbdXPk7bBNSFAB0gPdrqxiVUzLkY6AALVPR/juQGRb+geJOp1Oja/g=="; 4586 - }; 4587 - }; 4588 - "@node-rs/crc32-linux-x64-gnu-1.2.1" = { 4589 - name = "_at_node-rs_slash_crc32-linux-x64-gnu"; 4590 - packageName = "@node-rs/crc32-linux-x64-gnu"; 4591 - version = "1.2.1"; 4592 - src = fetchurl { 4593 - url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-gnu/-/crc32-linux-x64-gnu-1.2.1.tgz"; 4594 - sha512 = "laJ7cAzYfNk+h3OOSwYsDdxfp1bXnpWqXVObXvylwHZQwIqUqTC5GCOa6kMMz2ElzJ9gDBgVvLplI8QX7BQnwA=="; 4595 - }; 4596 - }; 4597 - "@node-rs/crc32-linux-x64-musl-1.2.1" = { 4598 - name = "_at_node-rs_slash_crc32-linux-x64-musl"; 4599 - packageName = "@node-rs/crc32-linux-x64-musl"; 4600 - version = "1.2.1"; 4601 - src = fetchurl { 4602 - url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-musl/-/crc32-linux-x64-musl-1.2.1.tgz"; 4603 - sha512 = "d6DyJMgIg4E2E+GHeIYMImqDd+iaGQjwGrzLDqO1TaC08yE63chlvCMNNoQ5k2c8mzdWH2VX72IapWT5nArR0A=="; 4604 - }; 4605 - }; 4606 - "@node-rs/crc32-win32-arm64-msvc-1.2.1" = { 4607 - name = "_at_node-rs_slash_crc32-win32-arm64-msvc"; 4608 - packageName = "@node-rs/crc32-win32-arm64-msvc"; 4609 - version = "1.2.1"; 4610 - src = fetchurl { 4611 - url = "https://registry.npmjs.org/@node-rs/crc32-win32-arm64-msvc/-/crc32-win32-arm64-msvc-1.2.1.tgz"; 4612 - sha512 = "qwDzpv/9oZcK6SrFomALjYDMkEhtjfxNmjhCYKDgeXvAkTAdwzpVdj+8PDyyBN63afpVndDnBqGhSEwHJPB6aQ=="; 4613 - }; 4614 - }; 4615 - "@node-rs/crc32-win32-ia32-msvc-1.2.1" = { 4616 - name = "_at_node-rs_slash_crc32-win32-ia32-msvc"; 4617 - packageName = "@node-rs/crc32-win32-ia32-msvc"; 4618 - version = "1.2.1"; 4619 - src = fetchurl { 4620 - url = "https://registry.npmjs.org/@node-rs/crc32-win32-ia32-msvc/-/crc32-win32-ia32-msvc-1.2.1.tgz"; 4621 - sha512 = "g/3UVw8LBmsTn+DUD39WDhfcL+S0pILBz/3+HM9QxbY2ptPxI8QtEK0sTIBAKTcRjq6dS8MmtcDWBFsDTs+/mQ=="; 4622 - }; 4623 - }; 4624 - "@node-rs/crc32-win32-x64-msvc-1.2.1" = { 4625 - name = "_at_node-rs_slash_crc32-win32-x64-msvc"; 4626 - packageName = "@node-rs/crc32-win32-x64-msvc"; 4627 - version = "1.2.1"; 4628 - src = fetchurl { 4629 - url = "https://registry.npmjs.org/@node-rs/crc32-win32-x64-msvc/-/crc32-win32-x64-msvc-1.2.1.tgz"; 4630 - sha512 = "BGTEFRdIk6Vq9BSC3VuBVYKadZXOhhtPT8LUfz4s9cK3k8ba6nFzKIbOm5UsPIUSz2lRqlWdHQQWVaCoGAAvbQ=="; 4631 - }; 4632 - }; 4633 - "@node-rs/helper-1.2.1" = { 4634 - name = "_at_node-rs_slash_helper"; 4635 - packageName = "@node-rs/helper"; 4636 - version = "1.2.1"; 4637 - src = fetchurl { 4638 - url = "https://registry.npmjs.org/@node-rs/helper/-/helper-1.2.1.tgz"; 4639 - sha512 = "R5wEmm8nbuQU0YGGmYVjEc0OHtYsuXdpRG+Ut/3wZ9XAvQWyThN08bTh2cBJgoZxHQUPtvRfeQuxcAgLuiBISg=="; 4377 + url = "https://registry.npmjs.org/@node-red/util/-/util-2.0.6.tgz"; 4378 + sha512 = "ZyUIAyZwtxdBOFiFRIBQZieP+ahviAGfXZowA9KOWTFp3BRZIq3OLWldlS/tQk29PaqZmt8MK94/DSqEsZNN0A=="; 4640 4379 }; 4641 4380 }; 4642 4381 "@nodelib/fs.scandir-2.1.5" = { ··· 4675 4414 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 4676 4415 }; 4677 4416 }; 4678 - "@npmcli/arborist-2.8.2" = { 4417 + "@npmcli/arborist-2.8.3" = { 4679 4418 name = "_at_npmcli_slash_arborist"; 4680 4419 packageName = "@npmcli/arborist"; 4681 - version = "2.8.2"; 4420 + version = "2.8.3"; 4682 4421 src = fetchurl { 4683 - url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.8.2.tgz"; 4684 - sha512 = "6E1XJ0YXBaI9J+25gcTF110MGNx3jv6npr4Rz1U0UAqkuVV7bbDznVJvNqi6F0p8vgrE+Smf9jDTn1DR+7uBjQ=="; 4422 + url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.8.3.tgz"; 4423 + sha512 = "miFcxbZjmQqeFTeRSLLh+lc/gxIKDO5L4PVCp+dp+kmcwJmYsEJmF7YvHR2yi3jF+fxgvLf3CCFzboPIXAuabg=="; 4685 4424 }; 4686 4425 }; 4687 4426 "@npmcli/ci-detect-1.3.0" = { ··· 4819 4558 sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA=="; 4820 4559 }; 4821 4560 }; 4822 - "@oclif/core-0.5.32" = { 4561 + "@oclif/core-0.5.35" = { 4823 4562 name = "_at_oclif_slash_core"; 4824 4563 packageName = "@oclif/core"; 4825 - version = "0.5.32"; 4564 + version = "0.5.35"; 4826 4565 src = fetchurl { 4827 - url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.32.tgz"; 4828 - sha512 = "ZRGh/9IccLT/iyJ9FiTK2KdqPmxewkCkdFXkNhTVgtzQXI3ZFhDba3pFjxfI+nbhbrVRLfGzTnHXV6c4rka6pw=="; 4566 + url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.35.tgz"; 4567 + sha512 = "5nTd+lOcDh1QPa9mM74qFChmApp5oHnP3EqYGYwqhfA3ad4qIfyYEn8pKxf0MlrYoPA8j2PrmceuRZThstKssA=="; 4829 4568 }; 4830 4569 }; 4831 4570 "@oclif/errors-1.3.5" = { ··· 4936 4675 sha512 = "lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA=="; 4937 4676 }; 4938 4677 }; 4939 - "@octokit/graphql-4.6.4" = { 4678 + "@octokit/graphql-4.8.0" = { 4940 4679 name = "_at_octokit_slash_graphql"; 4941 4680 packageName = "@octokit/graphql"; 4942 - version = "4.6.4"; 4681 + version = "4.8.0"; 4943 4682 src = fetchurl { 4944 - url = "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.6.4.tgz"; 4945 - sha512 = "SWTdXsVheRmlotWNjKzPOb6Js6tjSqA2a8z9+glDJng0Aqjzti8MEWOtuT8ZSu6wHnci7LZNuarE87+WJBG4vg=="; 4683 + url = "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz"; 4684 + sha512 = "0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg=="; 4946 4685 }; 4947 4686 }; 4948 - "@octokit/openapi-types-9.7.0" = { 4687 + "@octokit/openapi-types-10.1.1" = { 4949 4688 name = "_at_octokit_slash_openapi-types"; 4950 4689 packageName = "@octokit/openapi-types"; 4951 - version = "9.7.0"; 4690 + version = "10.1.1"; 4952 4691 src = fetchurl { 4953 - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-9.7.0.tgz"; 4954 - sha512 = "TUJ16DJU8mekne6+KVcMV5g6g/rJlrnIKn7aALG9QrNpnEipFc1xjoarh0PKaAWf2Hf+HwthRKYt+9mCm5RsRg=="; 4692 + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.1.1.tgz"; 4693 + sha512 = "ygp/6r25Ezb1CJuVMnFfOsScEtPF0zosdTJDZ7mZ+I8IULl7DP1BS5ZvPRwglcarGPXOvS5sHdR0bjnVDDfQdQ=="; 4955 4694 }; 4956 4695 }; 4957 4696 "@octokit/plugin-enterprise-rest-6.0.1" = { ··· 4963 4702 sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw=="; 4964 4703 }; 4965 4704 }; 4966 - "@octokit/plugin-paginate-rest-2.15.1" = { 4705 + "@octokit/plugin-paginate-rest-2.16.0" = { 4967 4706 name = "_at_octokit_slash_plugin-paginate-rest"; 4968 4707 packageName = "@octokit/plugin-paginate-rest"; 4969 - version = "2.15.1"; 4708 + version = "2.16.0"; 4970 4709 src = fetchurl { 4971 - url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.15.1.tgz"; 4972 - sha512 = "47r52KkhQDkmvUKZqXzA1lKvcyJEfYh3TKAIe5+EzMeyDM3d+/s5v11i2gTk8/n6No6DPi3k5Ind6wtDbo/AEg=="; 4710 + url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.0.tgz"; 4711 + sha512 = "8YYzALPMvEZ35kgy5pdYvQ22Roz+BIuEaedO575GwE2vb/ACDqQn0xQrTJR4tnZCJn7pi8+AWPVjrFDaERIyXQ=="; 4973 4712 }; 4974 4713 }; 4975 4714 "@octokit/plugin-request-log-1.0.4" = { ··· 4981 4720 sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA=="; 4982 4721 }; 4983 4722 }; 4984 - "@octokit/plugin-rest-endpoint-methods-5.8.0" = { 4723 + "@octokit/plugin-rest-endpoint-methods-5.10.0" = { 4985 4724 name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 4986 4725 packageName = "@octokit/plugin-rest-endpoint-methods"; 4987 - version = "5.8.0"; 4726 + version = "5.10.0"; 4988 4727 src = fetchurl { 4989 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.8.0.tgz"; 4990 - sha512 = "qeLZZLotNkoq+it6F+xahydkkbnvSK0iDjlXFo3jNTB+Ss0qIbYQb9V/soKLMkgGw8Q2sHjY5YEXiA47IVPp4A=="; 4728 + url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.10.0.tgz"; 4729 + sha512 = "HiUZliq5wNg15cevJlTo9zDnPXAD0BMRhLxbRNPnq9J3HELKesDTOiou56ax2jC/rECUkK/uJTugrizYKSo/jg=="; 4991 4730 }; 4992 4731 }; 4993 4732 "@octokit/request-5.6.1" = { ··· 5008 4747 sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg=="; 5009 4748 }; 5010 4749 }; 5011 - "@octokit/rest-18.9.1" = { 4750 + "@octokit/rest-18.10.0" = { 5012 4751 name = "_at_octokit_slash_rest"; 5013 4752 packageName = "@octokit/rest"; 5014 - version = "18.9.1"; 4753 + version = "18.10.0"; 5015 4754 src = fetchurl { 5016 - url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.9.1.tgz"; 5017 - sha512 = "idZ3e5PqXVWOhtZYUa546IDHTHjkGZbj3tcJsN0uhCy984KD865e8GB2WbYDc2ZxFuJRiyd0AftpL2uPNhF+UA=="; 4755 + url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.10.0.tgz"; 4756 + sha512 = "esHR5OKy38bccL/sajHqZudZCvmv4yjovMJzyXlphaUo7xykmtOdILGJ3aAm0mFHmMLmPFmDMJXf39cAjNJsrw=="; 5018 4757 }; 5019 4758 }; 5020 - "@octokit/types-6.25.0" = { 4759 + "@octokit/types-6.27.0" = { 5021 4760 name = "_at_octokit_slash_types"; 5022 4761 packageName = "@octokit/types"; 5023 - version = "6.25.0"; 4762 + version = "6.27.0"; 5024 4763 src = fetchurl { 5025 - url = "https://registry.npmjs.org/@octokit/types/-/types-6.25.0.tgz"; 5026 - sha512 = "bNvyQKfngvAd/08COlYIN54nRgxskmejgywodizQNyiKoXmWRAjKup2/LYwm+T9V0gsKH6tuld1gM0PzmOiB4Q=="; 4764 + url = "https://registry.npmjs.org/@octokit/types/-/types-6.27.0.tgz"; 4765 + sha512 = "ha27f8DToxXBPEJdzHCCuqpw7AgKfjhWGdNf3yIlBAhAsaexBXTfWw36zNSsncALXGvJq4EjLy1p3Wz45Aqb4A=="; 5027 4766 }; 5028 4767 }; 5029 4768 "@opencensus/core-0.0.8" = { ··· 5053 4792 sha512 = "PffXX2AL8Sh0VHQ52jJC4u3T0H6wDK6N/4bg7xh4ngMYOIi13aR1kzVvX1sVDBgfGwDOkMbl4c54Xm3tlPx/+A=="; 5054 4793 }; 5055 4794 }; 5056 - "@opentelemetry/api-1.0.2" = { 4795 + "@opentelemetry/api-1.0.3" = { 5057 4796 name = "_at_opentelemetry_slash_api"; 5058 4797 packageName = "@opentelemetry/api"; 5059 - version = "1.0.2"; 4798 + version = "1.0.3"; 5060 4799 src = fetchurl { 5061 - url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.2.tgz"; 5062 - sha512 = "DCF9oC89ao8/EJUqrp/beBlDR8Bp2R43jqtzayqCoomIvkwTuPfLcHdVhIGRR69GFlkykFjcDW+V92t0AS7Tww=="; 4800 + url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.3.tgz"; 4801 + sha512 = "puWxACExDe9nxbBB3lOymQFrLYml2dVOrd7USiVRnSbgXE+KwBu+HxFvxrzfqsiSda9IWsXJG1ef7C1O2/GmKQ=="; 5063 4802 }; 5064 4803 }; 5065 4804 "@opentelemetry/semantic-conventions-0.24.0" = { ··· 5611 5350 sha512 = "tU8fQs0D76ZKhJ2cWtnfQthWqiZgGBx0gH0+5D8JvaBEBaqA8foPPBt3Nonwr3ygyv5xrw2IzKWgIY86BlGs+w=="; 5612 5351 }; 5613 5352 }; 5614 - "@redocly/openapi-core-1.0.0-beta.55" = { 5353 + "@redocly/openapi-core-1.0.0-beta.58" = { 5615 5354 name = "_at_redocly_slash_openapi-core"; 5616 5355 packageName = "@redocly/openapi-core"; 5617 - version = "1.0.0-beta.55"; 5356 + version = "1.0.0-beta.58"; 5618 5357 src = fetchurl { 5619 - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.55.tgz"; 5620 - sha512 = "n/uukofKgqLdF1RyaqIOz+QneonKudV77M8j8SnGxP+bg7ujn+lmjcLy96ECtLvom0+BTbbzSMQpJeEix6MGuQ=="; 5358 + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.58.tgz"; 5359 + sha512 = "aHohzi5PCBJd47cXXLD1sigVWEs4Xs9E5MOMq2RZ3FNmufiRxY+u1b4oPYGfcr4n3mBnG2qH1mFiTue6Levq7w=="; 5621 5360 }; 5622 5361 }; 5623 5362 "@redocly/react-dropdown-aria-2.0.12" = { ··· 5710 5449 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 5711 5450 }; 5712 5451 }; 5713 - "@schematics/angular-12.2.3" = { 5452 + "@schematics/angular-12.2.4" = { 5714 5453 name = "_at_schematics_slash_angular"; 5715 5454 packageName = "@schematics/angular"; 5716 - version = "12.2.3"; 5455 + version = "12.2.4"; 5717 5456 src = fetchurl { 5718 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.3.tgz"; 5719 - sha512 = "MyInM0/Dg1geP5eYx370IX6l70ZTtGq7QIt9CFBViHlX4BWNmXq5bbJIPYJ/FWwT+zhSK7zp5AcyDKg6PWqh/Q=="; 5457 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.4.tgz"; 5458 + sha512 = "JPyjoTQMiVnaFmaEgACm7dzRMp7WMq78abeVaAg/xy8z2apMeDhTBXoSSLhXpQNtFvzLmfM4ovC6sCwn9esU9A=="; 5720 5459 }; 5721 5460 }; 5722 5461 "@segment/loosely-validate-event-2.0.0" = { ··· 5746 5485 sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang=="; 5747 5486 }; 5748 5487 }; 5749 - "@serverless/components-3.16.0" = { 5488 + "@serverless/components-3.17.0" = { 5750 5489 name = "_at_serverless_slash_components"; 5751 5490 packageName = "@serverless/components"; 5752 - version = "3.16.0"; 5491 + version = "3.17.0"; 5753 5492 src = fetchurl { 5754 - url = "https://registry.npmjs.org/@serverless/components/-/components-3.16.0.tgz"; 5755 - sha512 = "vgsfR0V4dierB97GKgtfFp/s5XN3zmEQlhRfshWLHjoXvJe2HvWOZXy5Bqyzb1WMr6S0dp/wXQzcnVStbiyBaw=="; 5493 + url = "https://registry.npmjs.org/@serverless/components/-/components-3.17.0.tgz"; 5494 + sha512 = "F0ReVFmwnbSDyH9PaifjrxvR0HvnKS37VyoEOCagj/31vGrksyrvuwI8BxC0YwPReRDb4n99+CtGkDsdGb9AQg=="; 5756 5495 }; 5757 5496 }; 5758 5497 "@serverless/core-1.1.2" = { ··· 5791 5530 sha512 = "q2CMqCkKeBaKA/UwfJAZLkdUsbghSbiYPvAX4rl9rsR5APm4KWtjKQP9CTOtVO5JRMWYoysK6jF0d5VJOABRzQ=="; 5792 5531 }; 5793 5532 }; 5794 - "@serverless/platform-client-china-2.2.3" = { 5533 + "@serverless/platform-client-china-2.2.6" = { 5795 5534 name = "_at_serverless_slash_platform-client-china"; 5796 5535 packageName = "@serverless/platform-client-china"; 5797 - version = "2.2.3"; 5536 + version = "2.2.6"; 5798 5537 src = fetchurl { 5799 - url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.2.3.tgz"; 5800 - sha512 = "MoDxI0d3HMesHwdyk7gzwLNU0wuJk/ovL9+XD/gAZgnrdZpFFq9kwnJAm2midL7jdhpnEFu/aoGJ0eE+xtQJ7w=="; 5538 + url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.2.6.tgz"; 5539 + sha512 = "CRQi3vi1iqWF8qeMNjU5lq+V7ztdVY3pUf6qNhCwcxM1TAOFncM3lsbIc4yf9gsKkOThHDmltf686u/KqDGgJg=="; 5801 5540 }; 5802 5541 }; 5803 5542 "@serverless/template-1.1.4" = { ··· 5827 5566 sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog=="; 5828 5567 }; 5829 5568 }; 5830 - "@serverless/utils-5.7.0" = { 5569 + "@serverless/utils-5.8.1" = { 5831 5570 name = "_at_serverless_slash_utils"; 5832 5571 packageName = "@serverless/utils"; 5833 - version = "5.7.0"; 5572 + version = "5.8.1"; 5834 5573 src = fetchurl { 5835 - url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.7.0.tgz"; 5836 - sha512 = "4/9lTag4NNMtgoK7qRSoP//VplnKUTqgKMJ5pjvuXHFTBNoGYbdi5Cr1UmbHwnG8FfYBUy95jNUHjSEeUXDqgg=="; 5574 + url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.8.1.tgz"; 5575 + sha512 = "tUOvlGq9xpLrq6dguH4bjAJqycoOUx7aVJIjbX4T7MZxuovxg/x2ZXc+Hrfqq0t+jRKVm78ZjHCjCASJDxbYPA=="; 5837 5576 }; 5838 5577 }; 5839 5578 "@serverless/utils-china-1.1.4" = { ··· 6403 6142 sha512 = "pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A=="; 6404 6143 }; 6405 6144 }; 6406 - "@types/babel__core-7.1.15" = { 6145 + "@types/babel__core-7.1.16" = { 6407 6146 name = "_at_types_slash_babel__core"; 6408 6147 packageName = "@types/babel__core"; 6409 - version = "7.1.15"; 6148 + version = "7.1.16"; 6410 6149 src = fetchurl { 6411 - url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.15.tgz"; 6412 - sha512 = "bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew=="; 6150 + url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz"; 6151 + sha512 = "EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ=="; 6413 6152 }; 6414 6153 }; 6415 6154 "@types/babel__generator-7.6.3" = { ··· 6763 6502 sha512 = "mQjDxyOM1Cpocd+vm1kZBP7smwKZ4TNokFeds9LV7OZibmPJFEzY3+xZMrKfUdNT71lv8GoCPD6upKwHxubClw=="; 6764 6503 }; 6765 6504 }; 6766 - "@types/fast-json-stable-stringify-2.1.0" = { 6767 - name = "_at_types_slash_fast-json-stable-stringify"; 6768 - packageName = "@types/fast-json-stable-stringify"; 6769 - version = "2.1.0"; 6770 - src = fetchurl { 6771 - url = "https://registry.npmjs.org/@types/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 6772 - sha512 = "IyNhGHu71jH1jCXTHmafuoAAdsbBON3kDh7u/UUhLmjYgN5TYB54e1R8ckTCiIevl2UuZaCsi9XRxineY5yUjw=="; 6773 - }; 6774 - }; 6775 6505 "@types/fs-capacitor-2.0.0" = { 6776 6506 name = "_at_types_slash_fs-capacitor"; 6777 6507 packageName = "@types/fs-capacitor"; ··· 7015 6745 sha512 = "GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw=="; 7016 6746 }; 7017 6747 }; 7018 - "@types/keyv-3.1.2" = { 6748 + "@types/keyv-3.1.3" = { 7019 6749 name = "_at_types_slash_keyv"; 7020 6750 packageName = "@types/keyv"; 7021 - version = "3.1.2"; 6751 + version = "3.1.3"; 7022 6752 src = fetchurl { 7023 - url = "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.2.tgz"; 7024 - sha512 = "/FvAK2p4jQOaJ6CGDHJTqZcUtbZe820qIeTg7o0Shg7drB4JHeL+V/dhSaly7NXx6u8eSee+r7coT+yuJEvDLg=="; 6753 + url = "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.3.tgz"; 6754 + sha512 = "FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg=="; 7025 6755 }; 7026 6756 }; 7027 6757 "@types/koa-2.13.4" = { ··· 7222 6952 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 7223 6953 }; 7224 6954 }; 7225 - "@types/node-14.17.12" = { 6955 + "@types/node-14.17.15" = { 7226 6956 name = "_at_types_slash_node"; 7227 6957 packageName = "@types/node"; 7228 - version = "14.17.12"; 6958 + version = "14.17.15"; 7229 6959 src = fetchurl { 7230 - url = "https://registry.npmjs.org/@types/node/-/node-14.17.12.tgz"; 7231 - sha512 = "vhUqgjJR1qxwTWV5Ps5txuy2XMdf7Fw+OrdChRboy8BmWUPkckOhphaohzFG6b8DW7CrxaBMdrdJ47SYFq1okw=="; 6960 + url = "https://registry.npmjs.org/@types/node/-/node-14.17.15.tgz"; 6961 + sha512 = "D1sdW0EcSCmNdLKBGMYb38YsHUS6JcM7yQ6sLQ9KuZ35ck7LYCKE7kYFHOO59ayFOY3zobWVZxf4KXhYHcHYFA=="; 7232 6962 }; 7233 6963 }; 7234 6964 "@types/node-15.12.5" = { ··· 7276 7006 sha512 = "Sr7BhXEAer9xyGuCN3Ek9eg9xPviCF2gfu9kTfuU2HkTVAMYSDeX40fvpmo72n5nansg3nsBjuQBrsS28r+NUw=="; 7277 7007 }; 7278 7008 }; 7279 - "@types/node-16.7.2" = { 7009 + "@types/node-16.7.13" = { 7280 7010 name = "_at_types_slash_node"; 7281 7011 packageName = "@types/node"; 7282 - version = "16.7.2"; 7012 + version = "16.7.13"; 7283 7013 src = fetchurl { 7284 - url = "https://registry.npmjs.org/@types/node/-/node-16.7.2.tgz"; 7285 - sha512 = "TbG4TOx9hng8FKxaVrCisdaxKxqEwJ3zwHoCWXZ0Jw6mnvTInpaB99/2Cy4+XxpXtjNv9/TgfGSvZFyfV/t8Fw=="; 7014 + url = "https://registry.npmjs.org/@types/node/-/node-16.7.13.tgz"; 7015 + sha512 = "pLUPDn+YG3FYEt/pHI74HmnJOWzeR+tOIQzUx93pi9M7D8OE7PSLr97HboXwk5F+JS+TLtWuzCOW97AHjmOXXA=="; 7016 + }; 7017 + }; 7018 + "@types/node-16.7.3" = { 7019 + name = "_at_types_slash_node"; 7020 + packageName = "@types/node"; 7021 + version = "16.7.3"; 7022 + src = fetchurl { 7023 + url = "https://registry.npmjs.org/@types/node/-/node-16.7.3.tgz"; 7024 + sha512 = "S6gm2sm9xIRWTxD7Ttj8N1ZrYfqdqZEU38Nwnrhd6krk7zf8vdgMgzz8hpAX9CfmXaJfP+Vqy2EhJpVavNEocg=="; 7025 + }; 7026 + }; 7027 + "@types/node-16.7.6" = { 7028 + name = "_at_types_slash_node"; 7029 + packageName = "@types/node"; 7030 + version = "16.7.6"; 7031 + src = fetchurl { 7032 + url = "https://registry.npmjs.org/@types/node/-/node-16.7.6.tgz"; 7033 + sha512 = "VESVNFoa/ahYA62xnLBjo5ur6gPsgEE5cNRy8SrdnkZ2nwJSW0kJ4ufbFr2zuU9ALtHM8juY53VcRoTA7htXSg=="; 7286 7034 }; 7287 7035 }; 7288 7036 "@types/node-6.14.13" = { ··· 7429 7177 sha512 = "eEQ6Hq0K0VShe00iDzG1DKxA5liTsk7jgcR5eDZ5d5cnivLjPqqcDgqurS5NlQJNfgTNg51dp7zFGWHomr5NJQ=="; 7430 7178 }; 7431 7179 }; 7432 - "@types/react-16.14.14" = { 7180 + "@types/react-16.14.15" = { 7433 7181 name = "_at_types_slash_react"; 7434 7182 packageName = "@types/react"; 7435 - version = "16.14.14"; 7183 + version = "16.14.15"; 7436 7184 src = fetchurl { 7437 - url = "https://registry.npmjs.org/@types/react/-/react-16.14.14.tgz"; 7438 - sha512 = "uwIWDYW8LznHzEMJl7ag9St1RsK0gw/xaFZ5+uI1ZM1HndwUgmPH3/wQkSb87GkOVg7shUxnpNW8DcN0AzvG5Q=="; 7185 + url = "https://registry.npmjs.org/@types/react/-/react-16.14.15.tgz"; 7186 + sha512 = "jOxlBV9RGZhphdeqJTCv35VZOkjY+XIEY2owwSk84BNDdDv2xS6Csj6fhi+B/q30SR9Tz8lDNt/F2Z5RF3TrRg=="; 7439 7187 }; 7440 7188 }; 7441 7189 "@types/react-dom-16.9.14" = { ··· 7690 7438 sha512 = "KtQLad12+4T/NfSxpoDhmr22+fig3T7/08QCgmutYA6QSznSRmEtuL95GrhVV40/0otTEdFc+etRcCTqhh1q5Q=="; 7691 7439 }; 7692 7440 }; 7693 - "@types/uuid-3.4.10" = { 7694 - name = "_at_types_slash_uuid"; 7695 - packageName = "@types/uuid"; 7696 - version = "3.4.10"; 7697 - src = fetchurl { 7698 - url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.10.tgz"; 7699 - sha512 = "BgeaZuElf7DEYZhWYDTc/XcLZXdVgFkVSTa13BqKvbnmUrxr3TJFKofUxCtDO9UQOdhnV+HPOESdHiHKZOJV1A=="; 7700 - }; 7701 - }; 7702 7441 "@types/vfile-3.0.2" = { 7703 7442 name = "_at_types_slash_vfile"; 7704 7443 packageName = "@types/vfile"; ··· 7717 7456 sha512 = "GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw=="; 7718 7457 }; 7719 7458 }; 7720 - "@types/vinyl-2.0.5" = { 7459 + "@types/vinyl-2.0.6" = { 7721 7460 name = "_at_types_slash_vinyl"; 7722 7461 packageName = "@types/vinyl"; 7723 - version = "2.0.5"; 7462 + version = "2.0.6"; 7724 7463 src = fetchurl { 7725 - url = "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.5.tgz"; 7726 - sha512 = "1m6uReH8R/RuLVQGvTT/4LlWq67jZEUxp+FBHt0hYv2BT7TUwFbKI0wa7JZVEU/XtlcnX1QcTuZ36es4rGj7jg=="; 7464 + url = "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.6.tgz"; 7465 + sha512 = "ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g=="; 7727 7466 }; 7728 7467 }; 7729 - "@types/vscode-1.59.0" = { 7468 + "@types/vscode-1.60.0" = { 7730 7469 name = "_at_types_slash_vscode"; 7731 7470 packageName = "@types/vscode"; 7732 - version = "1.59.0"; 7471 + version = "1.60.0"; 7733 7472 src = fetchurl { 7734 - url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.59.0.tgz"; 7735 - sha512 = "Zg38rusx2nU6gy6QdF7v4iqgxNfxzlBlDhrRCjOiPQp+sfaNrp3f9J6OHIhpGNN1oOAca4+9Hq0+8u3jwzPMlQ=="; 7473 + url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.60.0.tgz"; 7474 + sha512 = "wZt3VTmzYrgZ0l/3QmEbCq4KAJ71K3/hmMQ/nfpv84oH8e81KKwPEoQ5v8dNCxfHFVJ1JabHKmCvqdYOoVm1Ow=="; 7736 7475 }; 7737 7476 }; 7738 7477 "@types/webpack-4.41.30" = { ··· 7760 7499 src = fetchurl { 7761 7500 url = "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.2.tgz"; 7762 7501 sha512 = "B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ=="; 7763 - }; 7764 - }; 7765 - "@types/ws-6.0.4" = { 7766 - name = "_at_types_slash_ws"; 7767 - packageName = "@types/ws"; 7768 - version = "6.0.4"; 7769 - src = fetchurl { 7770 - url = "https://registry.npmjs.org/@types/ws/-/ws-6.0.4.tgz"; 7771 - sha512 = "PpPrX7SZW9re6+Ha8ojZG4Se8AZXgf0GK6zmfqEuCsY49LFDNXO3SByp44X3dFEqtB73lkCDAdUazhAjVPiNwg=="; 7772 7502 }; 7773 7503 }; 7774 7504 "@types/ws-7.4.4" = { ··· 7843 7573 sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="; 7844 7574 }; 7845 7575 }; 7846 - "@typescript-eslint/eslint-plugin-4.29.3" = { 7576 + "@typescript-eslint/eslint-plugin-4.31.0" = { 7847 7577 name = "_at_typescript-eslint_slash_eslint-plugin"; 7848 7578 packageName = "@typescript-eslint/eslint-plugin"; 7849 - version = "4.29.3"; 7579 + version = "4.31.0"; 7850 7580 src = fetchurl { 7851 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.3.tgz"; 7852 - sha512 = "tBgfA3K/3TsZY46ROGvoRxQr1wBkclbVqRQep97MjVHJzcRBURRY3sNFqLk0/Xr//BY5hM9H2p/kp+6qim85SA=="; 7581 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.31.0.tgz"; 7582 + sha512 = "iPKZTZNavAlOhfF4gymiSuUkgLne/nh5Oz2/mdiUmuZVD42m9PapnCnzjxuDsnpnbH3wT5s2D8bw6S39TC6GNw=="; 7853 7583 }; 7854 7584 }; 7855 7585 "@typescript-eslint/experimental-utils-3.10.1" = { ··· 7861 7591 sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw=="; 7862 7592 }; 7863 7593 }; 7864 - "@typescript-eslint/experimental-utils-4.29.3" = { 7594 + "@typescript-eslint/experimental-utils-4.31.0" = { 7865 7595 name = "_at_typescript-eslint_slash_experimental-utils"; 7866 7596 packageName = "@typescript-eslint/experimental-utils"; 7867 - version = "4.29.3"; 7597 + version = "4.31.0"; 7868 7598 src = fetchurl { 7869 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.3.tgz"; 7870 - sha512 = "ffIvbytTVWz+3keg+Sy94FG1QeOvmV9dP2YSdLFHw/ieLXWCa3U1TYu8IRCOpMv2/SPS8XqhM1+ou1YHsdzKrg=="; 7599 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.31.0.tgz"; 7600 + sha512 = "Hld+EQiKLMppgKKkdUsLeVIeEOrwKc2G983NmznY/r5/ZtZCDvIOXnXtwqJIgYz/ymsy7n7RGvMyrzf1WaSQrw=="; 7871 7601 }; 7872 7602 }; 7873 7603 "@typescript-eslint/parser-3.10.1" = { ··· 7879 7609 sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw=="; 7880 7610 }; 7881 7611 }; 7882 - "@typescript-eslint/parser-4.29.3" = { 7612 + "@typescript-eslint/parser-4.31.0" = { 7883 7613 name = "_at_typescript-eslint_slash_parser"; 7884 7614 packageName = "@typescript-eslint/parser"; 7885 - version = "4.29.3"; 7615 + version = "4.31.0"; 7886 7616 src = fetchurl { 7887 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.29.3.tgz"; 7888 - sha512 = "jrHOV5g2u8ROghmspKoW7pN8T/qUzk0+DITun0MELptvngtMrwUJ1tv5zMI04CYVEUsSrN4jV7AKSv+I0y0EfQ=="; 7617 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.31.0.tgz"; 7618 + sha512 = "oWbzvPh5amMuTmKaf1wp0ySxPt2ZXHnFQBN2Szu1O//7LmOvgaKTCIDNLK2NvzpmVd5A2M/1j/rujBqO37hj3w=="; 7889 7619 }; 7890 7620 }; 7891 - "@typescript-eslint/scope-manager-4.29.3" = { 7621 + "@typescript-eslint/scope-manager-4.31.0" = { 7892 7622 name = "_at_typescript-eslint_slash_scope-manager"; 7893 7623 packageName = "@typescript-eslint/scope-manager"; 7894 - version = "4.29.3"; 7624 + version = "4.31.0"; 7895 7625 src = fetchurl { 7896 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.29.3.tgz"; 7897 - sha512 = "x+w8BLXO7iWPkG5mEy9bA1iFRnk36p/goVlYobVWHyDw69YmaH9q6eA+Fgl7kYHmFvWlebUTUfhtIg4zbbl8PA=="; 7626 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.31.0.tgz"; 7627 + sha512 = "LJ+xtl34W76JMRLjbaQorhR0hfRAlp3Lscdiz9NeI/8i+q0hdBZ7BsiYieLoYWqy+AnRigaD3hUwPFugSzdocg=="; 7898 7628 }; 7899 7629 }; 7900 7630 "@typescript-eslint/types-3.10.1" = { ··· 7906 7636 sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ=="; 7907 7637 }; 7908 7638 }; 7909 - "@typescript-eslint/types-4.29.3" = { 7639 + "@typescript-eslint/types-4.31.0" = { 7910 7640 name = "_at_typescript-eslint_slash_types"; 7911 7641 packageName = "@typescript-eslint/types"; 7912 - version = "4.29.3"; 7642 + version = "4.31.0"; 7913 7643 src = fetchurl { 7914 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.29.3.tgz"; 7915 - sha512 = "s1eV1lKNgoIYLAl1JUba8NhULmf+jOmmeFO1G5MN/RBCyyzg4TIOfIOICVNC06lor+Xmy4FypIIhFiJXOknhIg=="; 7644 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.31.0.tgz"; 7645 + sha512 = "9XR5q9mk7DCXgXLS7REIVs+BaAswfdHhx91XqlJklmqWpTALGjygWVIb/UnLh4NWhfwhR5wNe1yTyCInxVhLqQ=="; 7916 7646 }; 7917 7647 }; 7918 7648 "@typescript-eslint/typescript-estree-3.10.1" = { ··· 7924 7654 sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w=="; 7925 7655 }; 7926 7656 }; 7927 - "@typescript-eslint/typescript-estree-4.29.3" = { 7657 + "@typescript-eslint/typescript-estree-4.31.0" = { 7928 7658 name = "_at_typescript-eslint_slash_typescript-estree"; 7929 7659 packageName = "@typescript-eslint/typescript-estree"; 7930 - version = "4.29.3"; 7660 + version = "4.31.0"; 7931 7661 src = fetchurl { 7932 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.3.tgz"; 7933 - sha512 = "45oQJA0bxna4O5TMwz55/TpgjX1YrAPOI/rb6kPgmdnemRZx/dB0rsx+Ku8jpDvqTxcE1C/qEbVHbS3h0hflag=="; 7662 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.31.0.tgz"; 7663 + sha512 = "QHl2014t3ptg+xpmOSSPn5hm4mY8D4s97ftzyk9BZ8RxYQ3j73XcwuijnJ9cMa6DO4aLXeo8XS3z1omT9LA/Eg=="; 7934 7664 }; 7935 7665 }; 7936 7666 "@typescript-eslint/visitor-keys-3.10.1" = { ··· 7942 7672 sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ=="; 7943 7673 }; 7944 7674 }; 7945 - "@typescript-eslint/visitor-keys-4.29.3" = { 7675 + "@typescript-eslint/visitor-keys-4.31.0" = { 7946 7676 name = "_at_typescript-eslint_slash_visitor-keys"; 7947 7677 packageName = "@typescript-eslint/visitor-keys"; 7948 - version = "4.29.3"; 7678 + version = "4.31.0"; 7949 7679 src = fetchurl { 7950 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.3.tgz"; 7951 - sha512 = "MGGfJvXT4asUTeVs0Q2m+sY63UsfnA+C/FDgBKV3itLBmM9H0u+URcneePtkd0at1YELmZK6HSolCqM4Fzs6yA=="; 7680 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.31.0.tgz"; 7681 + sha512 = "HUcRp2a9I+P21+O21yu3ezv3GEPGjyGiXoEUQwZXjR8UxRApGeLyWH4ZIIUSalE28aG4YsV6GjtaAVB3QKOu0w=="; 7952 7682 }; 7953 7683 }; 7954 - "@uifabric/foundation-7.9.26" = { 7684 + "@uifabric/foundation-7.10.0" = { 7955 7685 name = "_at_uifabric_slash_foundation"; 7956 7686 packageName = "@uifabric/foundation"; 7957 - version = "7.9.26"; 7687 + version = "7.10.0"; 7958 7688 src = fetchurl { 7959 - url = "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.9.26.tgz"; 7960 - sha512 = "1FLTb+jlH/Tuel2L9wT/zLl5ZW6W4Lbjrs5VUVjv81vWxzznvPnTf8+Ew0qkzaH7xDuMNMl7okswhV0IfJyheg=="; 7689 + url = "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.10.0.tgz"; 7690 + sha512 = "rUVRSNvzWPUpWPJINpogsk01m4dzIDf9CbIbJNAq+SLsVvxk9yRoLfnPwX0ZYVpFqUQxYxnII8lmWdEQzoExmQ=="; 7961 7691 }; 7962 7692 }; 7963 - "@uifabric/icons-7.5.23" = { 7693 + "@uifabric/icons-7.6.0" = { 7964 7694 name = "_at_uifabric_slash_icons"; 7965 7695 packageName = "@uifabric/icons"; 7966 - version = "7.5.23"; 7696 + version = "7.6.0"; 7967 7697 src = fetchurl { 7968 - url = "https://registry.npmjs.org/@uifabric/icons/-/icons-7.5.23.tgz"; 7969 - sha512 = "eIvUbH0EWgFgdfgFfINgqS2ZVZTyJ/9n5nR4bmcyAe75wsKxm4ser4WIT9IvaBF6+HFVfjUF/v6+VMD7y2LBng=="; 7698 + url = "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.0.tgz"; 7699 + sha512 = "Xx+CVMYOafJDijllYYkgE22lvKpKaodrB9XUgVSI77QveGcOV+x9z5FVa5CzwERb6Zjoafyj7q7SmH/EOi+AZw=="; 7970 7700 }; 7971 7701 }; 7972 7702 "@uifabric/merge-styles-7.19.2" = { ··· 7996 7726 sha512 = "t0Pt21dRqdC707/ConVJC0WvcQ/KF7tKLU8AZY7YdjgJpMHi1c0C427DB4jfUY19I92f60LOQyhJ4efH+KpFEg=="; 7997 7727 }; 7998 7728 }; 7999 - "@uifabric/styling-7.19.0" = { 7729 + "@uifabric/styling-7.19.1" = { 8000 7730 name = "_at_uifabric_slash_styling"; 8001 7731 packageName = "@uifabric/styling"; 8002 - version = "7.19.0"; 7732 + version = "7.19.1"; 8003 7733 src = fetchurl { 8004 - url = "https://registry.npmjs.org/@uifabric/styling/-/styling-7.19.0.tgz"; 8005 - sha512 = "fXComDtGV7dHF4rP4cLHwI6fC+1f/nvPavpMBz4IQdySwixta9TVMKbzt0OA6i0mJztqZCVAd27F/sl9R/JmcQ=="; 7734 + url = "https://registry.npmjs.org/@uifabric/styling/-/styling-7.19.1.tgz"; 7735 + sha512 = "1yvfVJ9HSB7TVUKocjs/ij3bsVHtfBRbhnhDtdMS9Fw13abf1IBOpwx8LPMGMt1nbeAmWbzlBI+Deoyij9lstA=="; 8006 7736 }; 8007 7737 }; 8008 7738 "@uifabric/utilities-7.33.5" = { ··· 8131 7861 sha512 = "B6PedV/H2kcGEAgnqncwjHe3E8fqUNXCLv1BsrNwkHHWQJXkDN7dFeuEB4oaucBOVbjhH7KGLJ6JAiXPE3S7xA=="; 8132 7862 }; 8133 7863 }; 8134 - "@vue/compiler-core-3.2.6" = { 7864 + "@vue/compiler-core-3.2.10" = { 8135 7865 name = "_at_vue_slash_compiler-core"; 8136 7866 packageName = "@vue/compiler-core"; 8137 - version = "3.2.6"; 7867 + version = "3.2.10"; 8138 7868 src = fetchurl { 8139 - url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.6.tgz"; 8140 - sha512 = "vbwnz7+OhtLO5p5i630fTuQCL+MlUpEMTKHuX+RfetQ+3pFCkItt2JUH+9yMaBG2Hkz6av+T9mwN/acvtIwpbw=="; 7869 + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.10.tgz"; 7870 + sha512 = "KKFxveRE0zm9Je7vlutHOF59JRytUROYBXDuoOpiDOId7kVQWdeIzc1TondASsXUgzDjbYrWkRHXiHAzKFfsHA=="; 8141 7871 }; 8142 7872 }; 8143 - "@vue/compiler-dom-3.2.6" = { 7873 + "@vue/compiler-dom-3.2.10" = { 8144 7874 name = "_at_vue_slash_compiler-dom"; 8145 7875 packageName = "@vue/compiler-dom"; 8146 - version = "3.2.6"; 7876 + version = "3.2.10"; 8147 7877 src = fetchurl { 8148 - url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.6.tgz"; 8149 - sha512 = "+a/3oBAzFIXhHt8L5IHJOTP4a5egzvpXYyi13jR7CUYOR1S+Zzv7vBWKYBnKyJLwnrxTZnTQVjeHCgJq743XKg=="; 7878 + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.10.tgz"; 7879 + sha512 = "WFOWBj9dvIz5ktReYwvw2GMQ8YHtY//cOGTyCw5XSQw58sKm4JCQGe1HXfuEVDmRRI1s4L/gOFR2NgbRfGCtMw=="; 8150 7880 }; 8151 7881 }; 8152 - "@vue/shared-3.2.6" = { 7882 + "@vue/shared-3.2.10" = { 8153 7883 name = "_at_vue_slash_shared"; 8154 7884 packageName = "@vue/shared"; 8155 - version = "3.2.6"; 7885 + version = "3.2.10"; 8156 7886 src = fetchurl { 8157 - url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.6.tgz"; 8158 - sha512 = "uwX0Qs2e6kdF+WmxwuxJxOnKs/wEkMArtYpHSm7W+VY/23Tl8syMRyjnzEeXrNCAP0/8HZxEGkHJsjPEDNRuHw=="; 7887 + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.10.tgz"; 7888 + sha512 = "Z5hbCx5jqAK0kscWcsVBpEeS0LfuSjgnkCBewQfsdBRyvHdJWKRUnCAJ7GqJO/iJtjSZHBFJYNoYyP7a/goh2A=="; 8159 7889 }; 8160 7890 }; 8161 7891 "@webassemblyjs/ast-1.11.1" = { ··· 8716 8446 sha512 = "WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw=="; 8717 8447 }; 8718 8448 }; 8719 - "@xmldom/xmldom-0.7.2" = { 8449 + "@xmldom/xmldom-0.7.4" = { 8720 8450 name = "_at_xmldom_slash_xmldom"; 8721 8451 packageName = "@xmldom/xmldom"; 8722 - version = "0.7.2"; 8452 + version = "0.7.4"; 8453 + src = fetchurl { 8454 + url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.4.tgz"; 8455 + sha512 = "wdxC79cvO7PjSM34jATd/RYZuYWQ8y/R7MidZl1NYYlbpFn1+spfjkiR3ZsJfcaTs2IyslBN7VwBBJwrYKM+zw=="; 8456 + }; 8457 + }; 8458 + "@xmpp/base64-0.12.1" = { 8459 + name = "_at_xmpp_slash_base64"; 8460 + packageName = "@xmpp/base64"; 8461 + version = "0.12.1"; 8462 + src = fetchurl { 8463 + url = "https://registry.npmjs.org/@xmpp/base64/-/base64-0.12.1.tgz"; 8464 + sha512 = "CpPQdhEAveROH5q7GkCMryCMsqIDu4RJOaYi5GJ7oxyrWpgv6bi5225hAD50kAOC4q+NWyksWiLnUwf2+C3kDA=="; 8465 + }; 8466 + }; 8467 + "@xmpp/client-0.12.1" = { 8468 + name = "_at_xmpp_slash_client"; 8469 + packageName = "@xmpp/client"; 8470 + version = "0.12.1"; 8471 + src = fetchurl { 8472 + url = "https://registry.npmjs.org/@xmpp/client/-/client-0.12.1.tgz"; 8473 + sha512 = "M9VsUd3wnZHrskHCGAPUbabH+6zIVAqlE5gmV1gTgzM+TwXY3Sz6q3k9Yfz0ERWF9qbOT6+hY3G7spNs9NNVyw=="; 8474 + }; 8475 + }; 8476 + "@xmpp/client-core-0.12.1" = { 8477 + name = "_at_xmpp_slash_client-core"; 8478 + packageName = "@xmpp/client-core"; 8479 + version = "0.12.1"; 8480 + src = fetchurl { 8481 + url = "https://registry.npmjs.org/@xmpp/client-core/-/client-core-0.12.1.tgz"; 8482 + sha512 = "Gml+Z4qlWgHfFVB2ALfhOkKr9YD5X7NT8JgwXq0xk+P8TbUleGgmrkAaX2fzQbnntuG6puFk3+9C2a7Q71pwXQ=="; 8483 + }; 8484 + }; 8485 + "@xmpp/connection-0.12.1" = { 8486 + name = "_at_xmpp_slash_connection"; 8487 + packageName = "@xmpp/connection"; 8488 + version = "0.12.1"; 8489 + src = fetchurl { 8490 + url = "https://registry.npmjs.org/@xmpp/connection/-/connection-0.12.1.tgz"; 8491 + sha512 = "AdOt/fMjuCT+ru6v6tYKdvP42AH2P+pqyL4M71VI9kprifDV03L/Ud8jzCqSVpJUEXDFEAukDG1KNwUkBEIaXw=="; 8492 + }; 8493 + }; 8494 + "@xmpp/connection-tcp-0.12.1" = { 8495 + name = "_at_xmpp_slash_connection-tcp"; 8496 + packageName = "@xmpp/connection-tcp"; 8497 + version = "0.12.1"; 8498 + src = fetchurl { 8499 + url = "https://registry.npmjs.org/@xmpp/connection-tcp/-/connection-tcp-0.12.1.tgz"; 8500 + sha512 = "axoxsyyDifNEaKK3gVoVMsCtKm1VsXOdzbGwtvMHwRxiArlbSxLpHLFWv6hjH63BJvNSet1txzHt/0+rrVLWVg=="; 8501 + }; 8502 + }; 8503 + "@xmpp/debug-0.12.1" = { 8504 + name = "_at_xmpp_slash_debug"; 8505 + packageName = "@xmpp/debug"; 8506 + version = "0.12.1"; 8507 + src = fetchurl { 8508 + url = "https://registry.npmjs.org/@xmpp/debug/-/debug-0.12.1.tgz"; 8509 + sha512 = "nQ9w+lkholzAvDKBvPTbKLDAyq5LhTjQ5Qf7vWPqgP56JHvDDAFdQ/YPRJVOFFB5L08/c3+/6AjEz0TD8iSXYA=="; 8510 + }; 8511 + }; 8512 + "@xmpp/error-0.12.1" = { 8513 + name = "_at_xmpp_slash_error"; 8514 + packageName = "@xmpp/error"; 8515 + version = "0.12.1"; 8516 + src = fetchurl { 8517 + url = "https://registry.npmjs.org/@xmpp/error/-/error-0.12.1.tgz"; 8518 + sha512 = "n5UyU25Pl6x1GMAX5tuJPmY9I+cM03iQF06ENOPxPHHLf3TBnoCtpJRP/oONHXK84vpxU9uJBuMAMHWIaWprrQ=="; 8519 + }; 8520 + }; 8521 + "@xmpp/events-0.12.1" = { 8522 + name = "_at_xmpp_slash_events"; 8523 + packageName = "@xmpp/events"; 8524 + version = "0.12.1"; 8525 + src = fetchurl { 8526 + url = "https://registry.npmjs.org/@xmpp/events/-/events-0.12.1.tgz"; 8527 + sha512 = "8kSwhY4ZxuXVG9QCAdQZijJvde0+/VBHZJw0Ase1ZcrBjlL46UfRwVNpru7SBZMIZB8CLav4AaArzlTFDRJljg=="; 8528 + }; 8529 + }; 8530 + "@xmpp/id-0.12.1" = { 8531 + name = "_at_xmpp_slash_id"; 8532 + packageName = "@xmpp/id"; 8533 + version = "0.12.1"; 8534 + src = fetchurl { 8535 + url = "https://registry.npmjs.org/@xmpp/id/-/id-0.12.1.tgz"; 8536 + sha512 = "tIPSDyYn1Ah2JPmaD9gSHqHYG3nWKzxISGJf0EMeAQ1Hd4pldNv4pKv+mO2ZVrHQie0oc3KC409QASmYfVP7xA=="; 8537 + }; 8538 + }; 8539 + "@xmpp/iq-0.12.1" = { 8540 + name = "_at_xmpp_slash_iq"; 8541 + packageName = "@xmpp/iq"; 8542 + version = "0.12.1"; 8543 + src = fetchurl { 8544 + url = "https://registry.npmjs.org/@xmpp/iq/-/iq-0.12.1.tgz"; 8545 + sha512 = "XlYnbCUWS6CgWrLUb9aWl0IJ7FfHbTxSlBybQb9zsOJEHb9J3FBV6SZwNUgmtnTwYtgIt6RTSvZtpGDX7Q5Xcw=="; 8546 + }; 8547 + }; 8548 + "@xmpp/jid-0.12.1" = { 8549 + name = "_at_xmpp_slash_jid"; 8550 + packageName = "@xmpp/jid"; 8551 + version = "0.12.1"; 8552 + src = fetchurl { 8553 + url = "https://registry.npmjs.org/@xmpp/jid/-/jid-0.12.1.tgz"; 8554 + sha512 = "PdXJy17Os5ADr03I+JXIWYLExEZjTW7AH23CwvbS8kLQh/CNrfhbFynW9krUZ4Lf4YAFn88oOsFsQRNgsAj/Vw=="; 8555 + }; 8556 + }; 8557 + "@xmpp/middleware-0.12.1" = { 8558 + name = "_at_xmpp_slash_middleware"; 8559 + packageName = "@xmpp/middleware"; 8560 + version = "0.12.1"; 8561 + src = fetchurl { 8562 + url = "https://registry.npmjs.org/@xmpp/middleware/-/middleware-0.12.1.tgz"; 8563 + sha512 = "XZTXKuV3xre9tQe2X2bX20jChagp4hrL83LRgpRHsp3V4SzKsiBWDXb+0rNmyhKrWAeJOxUNPZ7HlV/1ZD5fvA=="; 8564 + }; 8565 + }; 8566 + "@xmpp/reconnect-0.12.1" = { 8567 + name = "_at_xmpp_slash_reconnect"; 8568 + packageName = "@xmpp/reconnect"; 8569 + version = "0.12.1"; 8570 + src = fetchurl { 8571 + url = "https://registry.npmjs.org/@xmpp/reconnect/-/reconnect-0.12.1.tgz"; 8572 + sha512 = "uORfO/iY2VC4ZK3/dJSd4meU0j96+qeybj62K7sexxJtcw/qM8GAFfpWDsIu/6MhQZ0dOweQ2iZn3gSk66WjMg=="; 8573 + }; 8574 + }; 8575 + "@xmpp/resolve-0.12.1" = { 8576 + name = "_at_xmpp_slash_resolve"; 8577 + packageName = "@xmpp/resolve"; 8578 + version = "0.12.1"; 8579 + src = fetchurl { 8580 + url = "https://registry.npmjs.org/@xmpp/resolve/-/resolve-0.12.1.tgz"; 8581 + sha512 = "1enBxGpt/0frifKjwkHxsVHOCKC3B1BdcFbrQCc+FQEcVLIsFgAKLAFOp18p0Y1pxqT+O/4IZ4CUUqNFpfyXKg=="; 8582 + }; 8583 + }; 8584 + "@xmpp/resource-binding-0.12.1" = { 8585 + name = "_at_xmpp_slash_resource-binding"; 8586 + packageName = "@xmpp/resource-binding"; 8587 + version = "0.12.1"; 8588 + src = fetchurl { 8589 + url = "https://registry.npmjs.org/@xmpp/resource-binding/-/resource-binding-0.12.1.tgz"; 8590 + sha512 = "AV3NGIyNBnArvwShNYdsTVHcLPDDXDzDoRk07ZxztN/D5sYQAzhbHK/5BIIkIEOeR91h4qXpSv69QLEYmWj0Ug=="; 8591 + }; 8592 + }; 8593 + "@xmpp/sasl-0.12.1" = { 8594 + name = "_at_xmpp_slash_sasl"; 8595 + packageName = "@xmpp/sasl"; 8596 + version = "0.12.1"; 8597 + src = fetchurl { 8598 + url = "https://registry.npmjs.org/@xmpp/sasl/-/sasl-0.12.1.tgz"; 8599 + sha512 = "KuxuiEX2bhZCB9aYYJjVpVT1MmQHv8BPZGEyRA6YjVqhWCQUSP+OtKV9zy6hLBDBVfd45ybYVC+sMM0i9Y2R9Q=="; 8600 + }; 8601 + }; 8602 + "@xmpp/sasl-anonymous-0.12.1" = { 8603 + name = "_at_xmpp_slash_sasl-anonymous"; 8604 + packageName = "@xmpp/sasl-anonymous"; 8605 + version = "0.12.1"; 8606 + src = fetchurl { 8607 + url = "https://registry.npmjs.org/@xmpp/sasl-anonymous/-/sasl-anonymous-0.12.1.tgz"; 8608 + sha512 = "9A5y9FdwhT8cmTEVkJGl6UV+iYmgPqgbitnFI6DdkS4HzTLQVjV7SjXayrLoOjVniKHnxHOBEbjcQG/H5iHW4w=="; 8609 + }; 8610 + }; 8611 + "@xmpp/sasl-plain-0.12.1" = { 8612 + name = "_at_xmpp_slash_sasl-plain"; 8613 + packageName = "@xmpp/sasl-plain"; 8614 + version = "0.12.1"; 8615 + src = fetchurl { 8616 + url = "https://registry.npmjs.org/@xmpp/sasl-plain/-/sasl-plain-0.12.1.tgz"; 8617 + sha512 = "Ym6qCPA86vssLVvt/noiA/YgT6T/IxA5281xinOsZP9wtP/csqbjcBDRD7pk3HAmHhEGwUH61eydbIKHHw7o5w=="; 8618 + }; 8619 + }; 8620 + "@xmpp/sasl-scram-sha-1-0.12.1" = { 8621 + name = "_at_xmpp_slash_sasl-scram-sha-1"; 8622 + packageName = "@xmpp/sasl-scram-sha-1"; 8623 + version = "0.12.1"; 8723 8624 src = fetchurl { 8724 - url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.2.tgz"; 8725 - sha512 = "t/Zqo0ewes3iq6zGqEqJNUWI27Acr3jkmSUNp6E3nl0Z2XbtqAG5XYqPNLdYonILmhcxANsIidh69tHzjXtuRg=="; 8625 + url = "https://registry.npmjs.org/@xmpp/sasl-scram-sha-1/-/sasl-scram-sha-1-0.12.1.tgz"; 8626 + sha512 = "h9OenKiaJDYZCxv2FyMBpoTdmYu2oxy/FIM8FXMgnPJrCru7kBepksIb8lOfcyTyFxbQJk/Vrf8zyBUdAm6Jyg=="; 8726 8627 }; 8727 8628 }; 8728 - "@xstate/fsm-1.6.1" = { 8629 + "@xmpp/session-establishment-0.12.1" = { 8630 + name = "_at_xmpp_slash_session-establishment"; 8631 + packageName = "@xmpp/session-establishment"; 8632 + version = "0.12.1"; 8633 + src = fetchurl { 8634 + url = "https://registry.npmjs.org/@xmpp/session-establishment/-/session-establishment-0.12.1.tgz"; 8635 + sha512 = "6+uffTA/Wy5JmoZIs3uk0oPKuLrb4MEzwo6J6QZYPHC5pwKH9dYaQ+Xjw03qaac8i73HREhK5p2cA5zpxPZoRw=="; 8636 + }; 8637 + }; 8638 + "@xmpp/starttls-0.12.1" = { 8639 + name = "_at_xmpp_slash_starttls"; 8640 + packageName = "@xmpp/starttls"; 8641 + version = "0.12.1"; 8642 + src = fetchurl { 8643 + url = "https://registry.npmjs.org/@xmpp/starttls/-/starttls-0.12.1.tgz"; 8644 + sha512 = "AZPXppxar9n1J1IOG39xkZf/eoPQXhq3y5/tVOEyeG+WRcJGddeYJleXUm4Jwol+PTc0l0F6tlThPlhrIt/8vA=="; 8645 + }; 8646 + }; 8647 + "@xmpp/stream-features-0.12.1" = { 8648 + name = "_at_xmpp_slash_stream-features"; 8649 + packageName = "@xmpp/stream-features"; 8650 + version = "0.12.1"; 8651 + src = fetchurl { 8652 + url = "https://registry.npmjs.org/@xmpp/stream-features/-/stream-features-0.12.1.tgz"; 8653 + sha512 = "OautwK8DMSZSeAU9YFt6wdmHutbi7I/Gy5bzR12UYgtjFcgZ2FUNhj4kYOFcwOhCG8hKyGgMvv0V7/0iDr40QA=="; 8654 + }; 8655 + }; 8656 + "@xmpp/stream-management-0.12.1" = { 8657 + name = "_at_xmpp_slash_stream-management"; 8658 + packageName = "@xmpp/stream-management"; 8659 + version = "0.12.1"; 8660 + src = fetchurl { 8661 + url = "https://registry.npmjs.org/@xmpp/stream-management/-/stream-management-0.12.1.tgz"; 8662 + sha512 = "3fsSGFAKZ+SpdvQQ+cgPUdZcekI66rpMeUMDJMiWG5hGTicp2PfoDVjAvlPlgsTmIudm2UdNVW62MMZxnRnjbQ=="; 8663 + }; 8664 + }; 8665 + "@xmpp/tcp-0.12.1" = { 8666 + name = "_at_xmpp_slash_tcp"; 8667 + packageName = "@xmpp/tcp"; 8668 + version = "0.12.1"; 8669 + src = fetchurl { 8670 + url = "https://registry.npmjs.org/@xmpp/tcp/-/tcp-0.12.1.tgz"; 8671 + sha512 = "sILbQli4EpqfsTmeVj/INlhA0ZYUYdRkp9wtKbDaIv53QAUaD62L37TYXFCUEnyIxOpxdecNAMbgpnarv15bcg=="; 8672 + }; 8673 + }; 8674 + "@xmpp/tls-0.12.1" = { 8675 + name = "_at_xmpp_slash_tls"; 8676 + packageName = "@xmpp/tls"; 8677 + version = "0.12.1"; 8678 + src = fetchurl { 8679 + url = "https://registry.npmjs.org/@xmpp/tls/-/tls-0.12.1.tgz"; 8680 + sha512 = "KMMEzRQCdSTN7uCL2CmRcxvlfKcRSGwHrqKuGflvYAzvuQEJaRS2vAzvXmP2derEnJzG1Jb4Fle888MRjifWbg=="; 8681 + }; 8682 + }; 8683 + "@xmpp/websocket-0.12.1" = { 8684 + name = "_at_xmpp_slash_websocket"; 8685 + packageName = "@xmpp/websocket"; 8686 + version = "0.12.1"; 8687 + src = fetchurl { 8688 + url = "https://registry.npmjs.org/@xmpp/websocket/-/websocket-0.12.1.tgz"; 8689 + sha512 = "r1R2uzqSc5uFEImWZCI43oduha0jZqTS8iCmryB4aSDsaevQgeZgOOSpv8y4Jui5v5C1asnQzFb7H164SUcGkw=="; 8690 + }; 8691 + }; 8692 + "@xmpp/xml-0.12.1" = { 8693 + name = "_at_xmpp_slash_xml"; 8694 + packageName = "@xmpp/xml"; 8695 + version = "0.12.1"; 8696 + src = fetchurl { 8697 + url = "https://registry.npmjs.org/@xmpp/xml/-/xml-0.12.1.tgz"; 8698 + sha512 = "3SIr/jmyHDMkCzOtcH03YG9qTAJeE7auPg/V7e9tJrhiW329hNMhg8+VAO72Tp1AOi5bMhma09ACRS2Y9bMOKA=="; 8699 + }; 8700 + }; 8701 + "@xstate/fsm-1.6.2" = { 8729 8702 name = "_at_xstate_slash_fsm"; 8730 8703 packageName = "@xstate/fsm"; 8731 - version = "1.6.1"; 8704 + version = "1.6.2"; 8732 8705 src = fetchurl { 8733 - url = "https://registry.npmjs.org/@xstate/fsm/-/fsm-1.6.1.tgz"; 8734 - sha512 = "xYKDNuPR36/fUK+jmhM+oauBmbdUAfuJKnDjg3/7NbN+Pj03TX7e94LXnzkwGgAR+U/HWoMqM5UPTuGIYfIx9g=="; 8706 + url = "https://registry.npmjs.org/@xstate/fsm/-/fsm-1.6.2.tgz"; 8707 + sha512 = "vOfiFVQu9mQceA8oJ3PcA4vwhtyo/j/mbVDVIlHDOh3iuiTqMnp805zZ3QsouRdO2Ie3B7n3jMw8BntI74fZxg=="; 8735 8708 }; 8736 8709 }; 8737 8710 "@xtuc/ieee754-1.2.0" = { ··· 9013 8986 sha512 = "asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA=="; 9014 8987 }; 9015 8988 }; 8989 + "acorn-8.5.0" = { 8990 + name = "acorn"; 8991 + packageName = "acorn"; 8992 + version = "8.5.0"; 8993 + src = fetchurl { 8994 + url = "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz"; 8995 + sha512 = "yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q=="; 8996 + }; 8997 + }; 9016 8998 "acorn-globals-1.0.9" = { 9017 8999 name = "acorn-globals"; 9018 9000 packageName = "acorn-globals"; ··· 9715 9697 sha1 = "813584021962a9e9e6fd039f940d12f56ca7859e"; 9716 9698 }; 9717 9699 }; 9700 + "ansi-html-community-0.0.8" = { 9701 + name = "ansi-html-community"; 9702 + packageName = "ansi-html-community"; 9703 + version = "0.0.8"; 9704 + src = fetchurl { 9705 + url = "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz"; 9706 + sha512 = "1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw=="; 9707 + }; 9708 + }; 9718 9709 "ansi-red-0.1.1" = { 9719 9710 name = "ansi-red"; 9720 9711 packageName = "ansi-red"; ··· 10345 10336 sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"; 10346 10337 }; 10347 10338 }; 10348 - "are-we-there-yet-1.1.5" = { 10339 + "are-we-there-yet-1.1.7" = { 10349 10340 name = "are-we-there-yet"; 10350 10341 packageName = "are-we-there-yet"; 10351 - version = "1.1.5"; 10342 + version = "1.1.7"; 10352 10343 src = fetchurl { 10353 - url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; 10354 - sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w=="; 10344 + url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz"; 10345 + sha512 = "nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g=="; 10346 + }; 10347 + }; 10348 + "are-we-there-yet-2.0.0" = { 10349 + name = "are-we-there-yet"; 10350 + packageName = "are-we-there-yet"; 10351 + version = "2.0.0"; 10352 + src = fetchurl { 10353 + url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz"; 10354 + sha512 = "Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw=="; 10355 10355 }; 10356 10356 }; 10357 10357 "arg-2.0.0" = { ··· 11290 11290 sha512 = "zVWTmAnxxHaeB2B1te84oecI8zTDJ/8G49aVBblRX6be0oq6pAybNcUSxwfgVOmOjSCvN4aYZAqwtyNI8e1YGw=="; 11291 11291 }; 11292 11292 }; 11293 - "async-mutex-0.3.1" = { 11293 + "async-mutex-0.3.2" = { 11294 11294 name = "async-mutex"; 11295 11295 packageName = "async-mutex"; 11296 - version = "0.3.1"; 11296 + version = "0.3.2"; 11297 11297 src = fetchurl { 11298 - url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.3.1.tgz"; 11299 - sha512 = "vRfQwcqBnJTLzVQo72Sf7KIUbcSUP5hNchx6udI1U6LuPQpfePgdjJzlCe76yFZ8pxlLjn9lwcl/Ya0TSOv0Tw=="; 11298 + url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.3.2.tgz"; 11299 + sha512 = "HuTK7E7MT7jZEh1P9GtRW9+aTWiDWWi9InbZ5hjxrnRa39KS4BW04+xLBhYNS2aXhHUIKZSw3gj4Pn1pj+qGAA=="; 11300 11300 }; 11301 11301 }; 11302 11302 "async-retry-1.3.3" = { ··· 11506 11506 sha512 = "XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg=="; 11507 11507 }; 11508 11508 }; 11509 - "available-typed-arrays-1.0.4" = { 11509 + "available-typed-arrays-1.0.5" = { 11510 11510 name = "available-typed-arrays"; 11511 11511 packageName = "available-typed-arrays"; 11512 - version = "1.0.4"; 11512 + version = "1.0.5"; 11513 11513 src = fetchurl { 11514 - url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.4.tgz"; 11515 - sha512 = "SA5mXJWrId1TaQjfxUYghbqQ/hYioKmLJvPJyDuYRtXXenFNMjj4hSSt1Cf1xsuXSXrtxrVC5Ot4eU6cOtBDdA=="; 11514 + url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"; 11515 + sha512 = "DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="; 11516 11516 }; 11517 11517 }; 11518 11518 "await-lock-2.1.0" = { ··· 11551 11551 sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; 11552 11552 }; 11553 11553 }; 11554 - "aws-sdk-2.976.0" = { 11554 + "aws-sdk-2.984.0" = { 11555 11555 name = "aws-sdk"; 11556 11556 packageName = "aws-sdk"; 11557 - version = "2.976.0"; 11557 + version = "2.984.0"; 11558 11558 src = fetchurl { 11559 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.976.0.tgz"; 11560 - sha512 = "LWVh3nko6yGDfGcDW9nIClaukthkTueq7I/dXVNv4g9kuy2VOl5fVTPMACgTibWINAM29wZCM+gVQSSZu/Veow=="; 11561 - }; 11562 - }; 11563 - "aws-sdk-2.977.0" = { 11564 - name = "aws-sdk"; 11565 - packageName = "aws-sdk"; 11566 - version = "2.977.0"; 11567 - src = fetchurl { 11568 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.977.0.tgz"; 11569 - sha512 = "LU0ityBR3w28Ewwr+V0xu4KyQr8i4C1ypafmBNttYm3FHVUDDPQ/hLHASnGq1zGp6rBxBxO1ZE6meFqpKXIaug=="; 11559 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.984.0.tgz"; 11560 + sha512 = "wFwNKhlO03V7UnpIge2qT/gYOMvGUlmVuFgF2gQRIkt6lWYvnf8/QDTCKZLhGBpC8/mml10m0CM3khMNwU1KVQ=="; 11570 11561 }; 11571 11562 }; 11572 11563 "aws-sign2-0.6.0" = { ··· 11614 11605 sha512 = "dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA=="; 11615 11606 }; 11616 11607 }; 11608 + "axios-0.21.4" = { 11609 + name = "axios"; 11610 + packageName = "axios"; 11611 + version = "0.21.4"; 11612 + src = fetchurl { 11613 + url = "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"; 11614 + sha512 = "ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg=="; 11615 + }; 11616 + }; 11617 11617 "axios-retry-3.1.9" = { 11618 11618 name = "axios-retry"; 11619 11619 packageName = "axios-retry"; ··· 11792 11792 src = fetchurl { 11793 11793 url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz"; 11794 11794 sha512 = "u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g=="; 11795 + }; 11796 + }; 11797 + "babel-plugin-jsx-pragmatic-1.0.2" = { 11798 + name = "babel-plugin-jsx-pragmatic"; 11799 + packageName = "babel-plugin-jsx-pragmatic"; 11800 + version = "1.0.2"; 11801 + src = fetchurl { 11802 + url = "https://registry.npmjs.org/babel-plugin-jsx-pragmatic/-/babel-plugin-jsx-pragmatic-1.0.2.tgz"; 11803 + sha1 = "41e2beb8642235f34b2a7ab12ca39e07201b8e59"; 11795 11804 }; 11796 11805 }; 11797 11806 "babel-plugin-macros-2.8.0" = { ··· 12280 12289 sha1 = "780a99c84e7d600260361511c4877613bf24f6bb"; 12281 12290 }; 12282 12291 }; 12292 + "base-64-1.0.0" = { 12293 + name = "base-64"; 12294 + packageName = "base-64"; 12295 + version = "1.0.0"; 12296 + src = fetchurl { 12297 + url = "https://registry.npmjs.org/base-64/-/base-64-1.0.0.tgz"; 12298 + sha512 = "kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg=="; 12299 + }; 12300 + }; 12283 12301 "base-x-3.0.8" = { 12284 12302 name = "base-x"; 12285 12303 packageName = "base-x"; ··· 12955 12973 sha512 = "SrLwMzrpETJDiH9z12EMcqtApgcQo9XsPi+S9Aodezu53ALcGjBBQ7+C+IWbsSCBlSvNEec8sqfh3itO/j/QUw=="; 12956 12974 }; 12957 12975 }; 12958 - "bit-field-1.5.2" = { 12976 + "bit-field-1.5.3" = { 12959 12977 name = "bit-field"; 12960 12978 packageName = "bit-field"; 12961 - version = "1.5.2"; 12979 + version = "1.5.3"; 12962 12980 src = fetchurl { 12963 - url = "https://registry.npmjs.org/bit-field/-/bit-field-1.5.2.tgz"; 12964 - sha512 = "CYS3HRGgIlm7A6/zqGFd/KPSUIv4EoEQVQ8mWcvBEdlf0db1q3j/fj5W/PXJasBfsvN2jM0Tzw3w1C7HUoR/fg=="; 12981 + url = "https://registry.npmjs.org/bit-field/-/bit-field-1.5.3.tgz"; 12982 + sha512 = "bSrkdGpRwPWWi9WOrrMV9xcF1PQAKGG5HnNgVUntIaL1OFND2n7LBM4p1VGXF6OYMKap0vB/OmzOhneDfSgIpg=="; 12965 12983 }; 12966 12984 }; 12967 12985 "bitcoin-ops-1.4.1" = { ··· 13072 13090 sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c"; 13073 13091 }; 13074 13092 }; 13075 - "bittorrent-tracker-9.18.0" = { 13093 + "bittorrent-tracker-9.18.2" = { 13076 13094 name = "bittorrent-tracker"; 13077 13095 packageName = "bittorrent-tracker"; 13078 - version = "9.18.0"; 13096 + version = "9.18.2"; 13079 13097 src = fetchurl { 13080 - url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.18.0.tgz"; 13081 - sha512 = "bZhW94TOExkRhn9g67SLWjGfT6seSlT//+oG7+AFve0wQP6DMNSnu7ued6McsTMaL+XivNFCE9YVWPbQ4moTYA=="; 13098 + url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.18.2.tgz"; 13099 + sha512 = "r4v+gIi/aQP4h0rvx7WVjnEFvu7Vw2ePPFzoyQjdPfyoJaV/JTdD3kFTZBaVO/Egj5y2O2Y+bTCdPIgD2MzT+A=="; 13100 + }; 13101 + }; 13102 + "bitwise-xor-0.0.0" = { 13103 + name = "bitwise-xor"; 13104 + packageName = "bitwise-xor"; 13105 + version = "0.0.0"; 13106 + src = fetchurl { 13107 + url = "https://registry.npmjs.org/bitwise-xor/-/bitwise-xor-0.0.0.tgz"; 13108 + sha1 = "040a8172b5bb8cc562b0b7119f230b2a1a780e3d"; 13082 13109 }; 13083 13110 }; 13084 13111 "bl-1.2.3" = { ··· 13180 13207 sha512 = "S3jE7riCbWnAK8OT+ta4Z8RX/X6nfISxzn0SDIMFYuY90qUwqx7w7e9fIsc2m2ODwma7dFcXNwGSjyayfKd1DQ=="; 13181 13208 }; 13182 13209 }; 13183 - "blgr-0.1.8" = { 13210 + "blgr-0.1.9" = { 13184 13211 name = "blgr"; 13185 13212 packageName = "blgr"; 13186 - version = "0.1.8"; 13213 + version = "0.1.9"; 13187 13214 src = fetchurl { 13188 - url = "https://registry.npmjs.org/blgr/-/blgr-0.1.8.tgz"; 13189 - sha512 = "9AvDK+lc92q//63S8cHtkaB060YOZqoqd0DkMwn35mR1SrcY0FXnCHePHZFx6Oe1d/6wj8Lw7mKEGoShCUf3Yw=="; 13215 + url = "https://registry.npmjs.org/blgr/-/blgr-0.1.9.tgz"; 13216 + sha512 = "ikJQoiQlhbJVIqcJ+CZxXXLD/et4bQ47/pdGpjdTq1p43qF5jfXtbWygZyWm05MInFruUicnw+U0oaoDgLx3PA=="; 13190 13217 }; 13191 13218 }; 13192 13219 "blob-0.0.2" = { ··· 13810 13837 sha512 = "TkOR1cQGdmXU9zW4YukWzWVSJwrxmNdADFbqbE3HFgQWe5wqZmOawqZ7J/8MPCwk/W8yY7Y0h+7mOtcZxLP23g=="; 13811 13838 }; 13812 13839 }; 13813 - "browserify-17.0.0" = { 13814 - name = "browserify"; 13815 - packageName = "browserify"; 13816 - version = "17.0.0"; 13817 - src = fetchurl { 13818 - url = "https://registry.npmjs.org/browserify/-/browserify-17.0.0.tgz"; 13819 - sha512 = "SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w=="; 13820 - }; 13821 - }; 13822 13840 "browserify-aes-1.2.0" = { 13823 13841 name = "browserify-aes"; 13824 13842 packageName = "browserify-aes"; ··· 13927 13945 sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw=="; 13928 13946 }; 13929 13947 }; 13930 - "browserslist-4.16.8" = { 13948 + "browserslist-4.17.0" = { 13931 13949 name = "browserslist"; 13932 13950 packageName = "browserslist"; 13933 - version = "4.16.8"; 13951 + version = "4.17.0"; 13934 13952 src = fetchurl { 13935 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz"; 13936 - sha512 = "sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ=="; 13953 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.0.tgz"; 13954 + sha512 = "g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g=="; 13937 13955 }; 13938 13956 }; 13939 13957 "brq-0.1.8" = { ··· 14432 14450 sha512 = "GtKwd/4etuk1hNeprXoESBO1RSeRYJMXKf+O0qHmWdUomLT8ysNEfX/4bZFXr3BK6eukpHiEnhY2uMtEHDM2ng=="; 14433 14451 }; 14434 14452 }; 14435 - "bull-3.29.1" = { 14453 + "bull-3.29.2" = { 14436 14454 name = "bull"; 14437 14455 packageName = "bull"; 14438 - version = "3.29.1"; 14456 + version = "3.29.2"; 14439 14457 src = fetchurl { 14440 - url = "https://registry.npmjs.org/bull/-/bull-3.29.1.tgz"; 14441 - sha512 = "ASNnorakKCV4hmgHABfn8Ir+gy24a4gaGnXH/0bm1Msq+djOnNfM5XW7Igzsa5iTjpboWXhY9dHFVjiWRKsSGw=="; 14458 + url = "https://registry.npmjs.org/bull/-/bull-3.29.2.tgz"; 14459 + sha512 = "zWHyza/ElwVvJUqIEDJdUhGKd1V9EHjituUL7sJAmJoxS9Z7QMhYcMOWcgbUlWPgtiKN1g9ZlOtFAoq7C4/SQw=="; 14442 14460 }; 14443 14461 }; 14444 14462 "bunyan-1.5.1" = { ··· 14945 14963 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 14946 14964 }; 14947 14965 }; 14948 - "caniuse-lite-1.0.30001252" = { 14966 + "caniuse-lite-1.0.30001255" = { 14949 14967 name = "caniuse-lite"; 14950 14968 packageName = "caniuse-lite"; 14951 - version = "1.0.30001252"; 14969 + version = "1.0.30001255"; 14952 14970 src = fetchurl { 14953 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz"; 14954 - sha512 = "I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw=="; 14971 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001255.tgz"; 14972 + sha512 = "F+A3N9jTZL882f/fg/WWVnKSu6IOo3ueLz4zwaOPbPYHNmM/ZaDUyzyJwS1mZhX7Ex5jqTyW599Gdelh5PDYLQ=="; 14955 14973 }; 14956 14974 }; 14957 14975 "canvas-2.8.0" = { ··· 15357 15375 src = fetchurl { 15358 15376 url = "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz"; 15359 15377 sha512 = "mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="; 15378 + }; 15379 + }; 15380 + "chardet-1.3.0" = { 15381 + name = "chardet"; 15382 + packageName = "chardet"; 15383 + version = "1.3.0"; 15384 + src = fetchurl { 15385 + url = "https://registry.npmjs.org/chardet/-/chardet-1.3.0.tgz"; 15386 + sha512 = "cyTQGGptIjIT+CMGT5J/0l9c6Fb+565GCFjjeUTKxUO7w3oR+FcNCMEKTn5xtVKaLFmladN7QF68IiQsv5Fbdw=="; 15360 15387 }; 15361 15388 }; 15362 15389 "charenc-0.0.2" = { ··· 16052 16079 sha512 = "J0uW2u06pWI0tMKCbcCiMOZd8TbWj4EpuYgPo4Jiwih/FfGbd4dbLcJieO0Ior1pY1HBrnmCuHFk6GB9azE4pg=="; 16053 16080 }; 16054 16081 }; 16082 + "cli-progress-footer-2.0.0" = { 16083 + name = "cli-progress-footer"; 16084 + packageName = "cli-progress-footer"; 16085 + version = "2.0.0"; 16086 + src = fetchurl { 16087 + url = "https://registry.npmjs.org/cli-progress-footer/-/cli-progress-footer-2.0.0.tgz"; 16088 + sha512 = "+MWvSb0KGFOetUptNubegAYWj9NyDwI1XPrfvYE+YWOsufBinF/M7G3VLMjBEGvqSnLYM2nnAX76cHHh0eXsBg=="; 16089 + }; 16090 + }; 16055 16091 "cli-spinner-0.2.10" = { 16056 16092 name = "cli-spinner"; 16057 16093 packageName = "cli-spinner"; ··· 16077 16113 src = fetchurl { 16078 16114 url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz"; 16079 16115 sha512 = "t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q=="; 16116 + }; 16117 + }; 16118 + "cli-sprintf-format-1.1.0" = { 16119 + name = "cli-sprintf-format"; 16120 + packageName = "cli-sprintf-format"; 16121 + version = "1.1.0"; 16122 + src = fetchurl { 16123 + url = "https://registry.npmjs.org/cli-sprintf-format/-/cli-sprintf-format-1.1.0.tgz"; 16124 + sha512 = "t3LcCdPvrypZovStadWdRS4a186gsq9aoHJYTIer55VY20YdVjGVHDV4uPWcWCXTw1tPjfwlRGE7zKMWJ663Sw=="; 16080 16125 }; 16081 16126 }; 16082 16127 "cli-table-0.3.6" = { ··· 16799 16844 sha512 = "ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w=="; 16800 16845 }; 16801 16846 }; 16847 + "colorette-1.4.0" = { 16848 + name = "colorette"; 16849 + packageName = "colorette"; 16850 + version = "1.4.0"; 16851 + src = fetchurl { 16852 + url = "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz"; 16853 + sha512 = "Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g=="; 16854 + }; 16855 + }; 16802 16856 "colornames-1.1.1" = { 16803 16857 name = "colornames"; 16804 16858 packageName = "colornames"; ··· 17681 17735 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 17682 17736 }; 17683 17737 }; 17684 - "constructs-3.3.133" = { 17738 + "constructs-3.3.147" = { 17685 17739 name = "constructs"; 17686 17740 packageName = "constructs"; 17687 - version = "3.3.133"; 17741 + version = "3.3.147"; 17688 17742 src = fetchurl { 17689 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.133.tgz"; 17690 - sha512 = "f0HgM9tmmR66A9XrzDXS7kXRbB9Gazb+KPldP9RRIkrFGhHuGeII+2YyTxxzY15cDgU58NrLrac+gynhrLy6Uw=="; 17743 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.147.tgz"; 17744 + sha512 = "xTSA87W5hscsHdFC2NcbJWALeMt8QWoCvVXRHPIuoBDDXdvBuNoqL2a5kY1yEWSMLQvBPnrDyinfz3twTX6dAw=="; 17691 17745 }; 17692 17746 }; 17693 17747 "consume-http-header-1.0.0" = { ··· 17763 17817 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 17764 17818 }; 17765 17819 }; 17766 - "contentful-management-7.33.0" = { 17820 + "contentful-management-7.36.2" = { 17767 17821 name = "contentful-management"; 17768 17822 packageName = "contentful-management"; 17769 - version = "7.33.0"; 17823 + version = "7.36.2"; 17770 17824 src = fetchurl { 17771 - url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.33.0.tgz"; 17772 - sha512 = "Q6Y0peBdmZUkQyrKP5rRuv2IbVpt5LflYfRdWstTQ9sERyAOgYJWBtvDCupXKw3g1oBXUxLXXU7vZY2M5jnTpQ=="; 17825 + url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.36.2.tgz"; 17826 + sha512 = "pOyHyIuOygqQPDfF9C1MQKTAKAJcounClp4R5afhKkXDdh8jUPc34Ej9BACCtseo99Q9BftLQn49nmk9xJHylQ=="; 17773 17827 }; 17774 17828 }; 17775 - "contentful-sdk-core-6.8.0" = { 17829 + "contentful-sdk-core-6.8.5" = { 17776 17830 name = "contentful-sdk-core"; 17777 17831 packageName = "contentful-sdk-core"; 17778 - version = "6.8.0"; 17832 + version = "6.8.5"; 17779 17833 src = fetchurl { 17780 - url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.8.0.tgz"; 17781 - sha512 = "X45uNrcbQ2qY2p4G/Wx2EFUdnLnoDXjw29i+d0JVTUXqCG58p3q4GHuAPzTX+uafJL4h0ZY2xPOn4nvJ83eRBQ=="; 17834 + url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.8.5.tgz"; 17835 + sha512 = "Efmv/Jf0zeTdRNqCW6y+iMsNbDa/+KpxYOaYYz0z1qVd4q88qtZDJrvLdjPHtYvrcrvkhYtucVRFr9oe2b+cAA=="; 17782 17836 }; 17783 17837 }; 17784 17838 "continuable-1.1.8" = { ··· 18276 18330 sha512 = "5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g=="; 18277 18331 }; 18278 18332 }; 18279 - "core-js-3.16.3" = { 18333 + "core-js-3.17.2" = { 18280 18334 name = "core-js"; 18281 18335 packageName = "core-js"; 18282 - version = "3.16.3"; 18336 + version = "3.17.2"; 18283 18337 src = fetchurl { 18284 - url = "https://registry.npmjs.org/core-js/-/core-js-3.16.3.tgz"; 18285 - sha512 = "lM3GftxzHNtPNUJg0v4pC2RC6puwMd6VZA7vXUczi+SKmCWSf4JwO89VJGMqbzmB7jlK7B5hr3S64PqwFL49cA=="; 18338 + url = "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz"; 18339 + sha512 = "XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA=="; 18286 18340 }; 18287 18341 }; 18288 - "core-js-compat-3.16.3" = { 18342 + "core-js-compat-3.17.2" = { 18289 18343 name = "core-js-compat"; 18290 18344 packageName = "core-js-compat"; 18291 - version = "3.16.3"; 18345 + version = "3.17.2"; 18292 18346 src = fetchurl { 18293 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.3.tgz"; 18294 - sha512 = "A/OtSfSJQKLAFRVd4V0m6Sep9lPdjD8bpN8v3tCCGwE0Tmh0hOiVDm9tw6mXmWOKOSZIyr3EkywPo84cJjGvIQ=="; 18347 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.2.tgz"; 18348 + sha512 = "lHnt7A1Oqplebl5i0MrQyFv/yyEzr9p29OjlkcsFRDDgHwwQyVckfRGJ790qzXhkwM8ba4SFHHa2sO+T5f1zGg=="; 18295 18349 }; 18296 18350 }; 18297 - "core-js-pure-3.16.3" = { 18351 + "core-js-pure-3.17.2" = { 18298 18352 name = "core-js-pure"; 18299 18353 packageName = "core-js-pure"; 18300 - version = "3.16.3"; 18354 + version = "3.17.2"; 18301 18355 src = fetchurl { 18302 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.3.tgz"; 18303 - sha512 = "6In+2RwN0FT5yK0ZnhDP5rco/NnuuFZhHauQizZiHo5lDnqAvq8Phxcpy3f+prJOqtKodt/cftBl/GTOW0kiqQ=="; 18356 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.17.2.tgz"; 18357 + sha512 = "2VV7DlIbooyTI7Bh+yzOOWL9tGwLnQKHno7qATE+fqZzDKYr6llVjVQOzpD/QLZFgXDPb8T71pJokHEZHEYJhQ=="; 18304 18358 }; 18305 18359 }; 18306 18360 "core-util-is-1.0.2" = { ··· 18310 18364 src = fetchurl { 18311 18365 url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; 18312 18366 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 18367 + }; 18368 + }; 18369 + "core-util-is-1.0.3" = { 18370 + name = "core-util-is"; 18371 + packageName = "core-util-is"; 18372 + version = "1.0.3"; 18373 + src = fetchurl { 18374 + url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"; 18375 + sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; 18313 18376 }; 18314 18377 }; 18315 18378 "core_d-3.2.0" = { ··· 18537 18600 sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; 18538 18601 }; 18539 18602 }; 18540 - "create-gatsby-1.12.0" = { 18603 + "create-gatsby-1.13.0" = { 18541 18604 name = "create-gatsby"; 18542 18605 packageName = "create-gatsby"; 18543 - version = "1.12.0"; 18606 + version = "1.13.0"; 18544 18607 src = fetchurl { 18545 - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.12.0.tgz"; 18546 - sha512 = "d8wlwgNgKrmd6J+cr4z1Hsis+sCwr9LoxnqSFqFzXcWowlODS5NP8gUZdCZ54hHd+0qIuAA77Wp67GAyhkFlCA=="; 18608 + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.13.0.tgz"; 18609 + sha512 = "ypJeb+nj5uZybFeic+ab5myxGh21oZQ+OeCRkKHPL9NPZbzcvQE/y5lWXgVXHqy2/xf2IBnotkImrmiQiqPOxg=="; 18547 18610 }; 18548 18611 }; 18549 18612 "create-graphback-1.0.1" = { ··· 19212 19275 sha1 = "d1cfd8743c2f849a0abb2fd544db56695d19a490"; 19213 19276 }; 19214 19277 }; 19215 - "csv-parse-4.16.0" = { 19278 + "csv-parse-4.16.3" = { 19216 19279 name = "csv-parse"; 19217 19280 packageName = "csv-parse"; 19218 - version = "4.16.0"; 19281 + version = "4.16.3"; 19219 19282 src = fetchurl { 19220 - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.0.tgz"; 19221 - sha512 = "Zb4tGPANH4SW0LgC9+s9Mnequs9aqn7N3/pCqNbVjs2XhEF6yWNU2Vm4OGl1v2Go9nw8rXt87Cm2QN/o6Vpqgg=="; 19283 + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz"; 19284 + sha512 = "cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg=="; 19222 19285 }; 19223 19286 }; 19224 19287 "csv-parser-1.12.1" = { ··· 20958 21021 sha1 = "9ced65ea0bc0b09f42a6d79c1b1903f9d913cc18"; 20959 21022 }; 20960 21023 }; 20961 - "deep-is-0.1.3" = { 21024 + "deep-is-0.1.4" = { 20962 21025 name = "deep-is"; 20963 21026 packageName = "deep-is"; 20964 - version = "0.1.3"; 21027 + version = "0.1.4"; 20965 21028 src = fetchurl { 20966 - url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; 20967 - sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 21029 + url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"; 21030 + sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 20968 21031 }; 20969 21032 }; 20970 21033 "deepcopy-2.1.0" = { ··· 21777 21840 sha512 = "Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg=="; 21778 21841 }; 21779 21842 }; 21780 - "diff2html-3.4.9" = { 21843 + "diff2html-3.4.11" = { 21781 21844 name = "diff2html"; 21782 21845 packageName = "diff2html"; 21783 - version = "3.4.9"; 21846 + version = "3.4.11"; 21784 21847 src = fetchurl { 21785 - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.9.tgz"; 21786 - sha512 = "33x45h6Xgfasjt49e0ldfLnUdCjLjHIdablpAlrKnQyyG1RA7w+4cbp9+bUfNLxfFj584BookXqh5KJEt4+MLA=="; 21848 + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.11.tgz"; 21849 + sha512 = "FBW74QVkbVqbqM36NbSsmStU3mAovluM3Zg6QuuPtn26nzdfoVgnG2axKnbEbiHffM+CCQwrcpCBcDZhkN9VSw=="; 21787 21850 }; 21788 21851 }; 21789 21852 "diff3-0.0.3" = { ··· 22056 22119 sha512 = "2FFKzmLGOnD+Y378bRKH+gTjRMuSpH7OKgPy31KjjfCoKZx7tU8Dmqfd/3fhG2d/4bppuN8/KtWMUZBAcUCRnQ=="; 22057 22120 }; 22058 22121 }; 22059 - "dockerfile-ast-0.3.0" = { 22122 + "dockerfile-ast-0.3.1" = { 22060 22123 name = "dockerfile-ast"; 22061 22124 packageName = "dockerfile-ast"; 22062 - version = "0.3.0"; 22125 + version = "0.3.1"; 22063 22126 src = fetchurl { 22064 - url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.3.0.tgz"; 22065 - sha512 = "wEbFtqeHZffyOYP2pMfMLQ0m2wdHUzty0UTDoAMNa6/nvLfDRSEaPkszIWFy86tuWwHucBtcczIHQlFATJ54eA=="; 22127 + url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.3.1.tgz"; 22128 + sha512 = "sxFv+wY4TNC68+JkbZ4kPn3pAfnfvbFBUcvYAA9KFg7Es58FgWr+trskeDRWFkCFeuM1QIXeBC5exMeiAeW96Q=="; 22066 22129 }; 22067 22130 }; 22068 - "dockerfile-language-service-0.4.0" = { 22131 + "dockerfile-language-service-0.5.0" = { 22069 22132 name = "dockerfile-language-service"; 22070 22133 packageName = "dockerfile-language-service"; 22071 - version = "0.4.0"; 22134 + version = "0.5.0"; 22072 22135 src = fetchurl { 22073 - url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.4.0.tgz"; 22074 - sha512 = "P4yj9in7PMLeN3StBn5e+Ofiju+nfs5ZdDv4EqfK91mYx/+U7wm8QipyP05iUXaVKFh6I9tn9Qmi1tpt5jj2hw=="; 22136 + url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.5.0.tgz"; 22137 + sha512 = "63B8rASoOz69NI4a3ftC64mVTDnQhd6xXdu5J6PN53+2wEm6vhO+zf6R4A5/ssxB3nSnckV25OtHCdBX2CYluQ=="; 22075 22138 }; 22076 22139 }; 22077 - "dockerfile-utils-0.5.0" = { 22140 + "dockerfile-utils-0.7.0" = { 22078 22141 name = "dockerfile-utils"; 22079 22142 packageName = "dockerfile-utils"; 22080 - version = "0.5.0"; 22143 + version = "0.7.0"; 22081 22144 src = fetchurl { 22082 - url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.5.0.tgz"; 22083 - sha512 = "a12B6qAwLpl7D9Y6Zxt0AhW74g0k5NarpWF+NUb66A6la5vs1igI/KfdXZbFoQtpTOsv1T+OfKmhlE982Ars1w=="; 22145 + url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.7.0.tgz"; 22146 + sha512 = "27Qh1oT1yjbAPbV/VheDZICoSOYfb9pEgkZSiQMbGQOXw0a4ZObDRNxqYQ2o9udVOTbb/HS4y/hm+reCpz8i9g=="; 22084 22147 }; 22085 22148 }; 22086 22149 "doctoc-2.0.1" = { ··· 22119 22182 sha1 = "ea80b106a87538774e8a3a4a5afe293de489e0a9"; 22120 22183 }; 22121 22184 }; 22122 - "doipjs-0.11.2" = { 22185 + "doipjs-0.13.0" = { 22123 22186 name = "doipjs"; 22124 22187 packageName = "doipjs"; 22125 - version = "0.11.2"; 22188 + version = "0.13.0"; 22126 22189 src = fetchurl { 22127 - url = "https://registry.npmjs.org/doipjs/-/doipjs-0.11.2.tgz"; 22128 - sha512 = "UZJegmUvMBJS5luh2a64JOVMGO80KdkGY7I9noxr5rmwuiSNzhSy5571DY1z2vacYOrZ1xpxUnlzB0bC9+NiNg=="; 22190 + url = "https://registry.npmjs.org/doipjs/-/doipjs-0.13.0.tgz"; 22191 + sha512 = "PgLmVcrSAfIZk/Tb9xvmDQ2S9dkHd+o7i2NBI0mEI0rTWk6p2TvpWSPyrupaPeAmNDSbKwmmBmXH/+ThdWqHMg=="; 22129 22192 }; 22130 22193 }; 22131 22194 "dom-converter-0.2.0" = { ··· 22317 22380 sha512 = "J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA=="; 22318 22381 }; 22319 22382 }; 22320 - "domhandler-4.2.0" = { 22383 + "domhandler-4.2.2" = { 22321 22384 name = "domhandler"; 22322 22385 packageName = "domhandler"; 22323 - version = "4.2.0"; 22386 + version = "4.2.2"; 22324 22387 src = fetchurl { 22325 - url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz"; 22326 - sha512 = "zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA=="; 22388 + url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz"; 22389 + sha512 = "PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w=="; 22327 22390 }; 22328 22391 }; 22329 22392 "domino-2.1.6" = { ··· 22371 22434 sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="; 22372 22435 }; 22373 22436 }; 22374 - "domutils-2.7.0" = { 22437 + "domutils-2.8.0" = { 22375 22438 name = "domutils"; 22376 22439 packageName = "domutils"; 22377 - version = "2.7.0"; 22440 + version = "2.8.0"; 22378 22441 src = fetchurl { 22379 - url = "https://registry.npmjs.org/domutils/-/domutils-2.7.0.tgz"; 22380 - sha512 = "8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg=="; 22442 + url = "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz"; 22443 + sha512 = "w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="; 22381 22444 }; 22382 22445 }; 22383 22446 "dot-case-3.0.4" = { ··· 22821 22884 sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw=="; 22822 22885 }; 22823 22886 }; 22824 - "electron-13.2.2" = { 22887 + "electron-13.3.0" = { 22825 22888 name = "electron"; 22826 22889 packageName = "electron"; 22827 - version = "13.2.2"; 22890 + version = "13.3.0"; 22828 22891 src = fetchurl { 22829 - url = "https://registry.npmjs.org/electron/-/electron-13.2.2.tgz"; 22830 - sha512 = "thGq2YaZqQWK1HexRghxdb26a8hA7ZSebukUSHlnHrY9+Sx9rW7e3uEHbibk/seRXVoXO76HndjKdHyObP9/Kw=="; 22892 + url = "https://registry.npmjs.org/electron/-/electron-13.3.0.tgz"; 22893 + sha512 = "d/BvOLDjI4i7yf9tqCuLL2fFGA2TrM/D9PyRpua+rJolG0qrwp/FohP02L0m+44kmPpofIo4l3NPwLmzyKKimA=="; 22831 22894 }; 22832 22895 }; 22833 - "electron-notarize-1.1.0" = { 22896 + "electron-notarize-1.1.1" = { 22834 22897 name = "electron-notarize"; 22835 22898 packageName = "electron-notarize"; 22836 - version = "1.1.0"; 22899 + version = "1.1.1"; 22837 22900 src = fetchurl { 22838 - url = "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.1.0.tgz"; 22839 - sha512 = "Dmp/jm2y3PTcjmjVe+jCT0sjsbBfbNuk7GOPtduZce2iae1hgAPnlNErk6x70TalsGIL5Ip3liSryqde/6eB5w=="; 22901 + url = "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.1.1.tgz"; 22902 + sha512 = "kufsnqh86CTX89AYNG3NCPoboqnku/+32RxeJ2+7A4Rbm4bbOx0Nc7XTy3/gAlBfpj9xPAxHfhZLOHgfi6cJVw=="; 22840 22903 }; 22841 22904 }; 22842 22905 "electron-osx-sign-0.5.0" = { ··· 22857 22920 sha512 = "PHcykXinmjPyJcYoNGbOWNsOU25nIbMLHBAfg4caazWzYELFL14FshDZEqqrvVOMEUnqjx/Ktc1NmMIN5ZRomQ=="; 22858 22921 }; 22859 22922 }; 22860 - "electron-rebuild-2.3.5" = { 22923 + "electron-rebuild-3.2.3" = { 22861 22924 name = "electron-rebuild"; 22862 22925 packageName = "electron-rebuild"; 22863 - version = "2.3.5"; 22926 + version = "3.2.3"; 22864 22927 src = fetchurl { 22865 - url = "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-2.3.5.tgz"; 22866 - sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ=="; 22928 + url = "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-3.2.3.tgz"; 22929 + sha512 = "9oxNmKlDCaf651c+yJWCDIBpF6A9aY+wQtasLEeR5AsPYPuOKEX6xHnC2+WgCLOC94JEpCZznecyC84fbwZq4A=="; 22867 22930 }; 22868 22931 }; 22869 - "electron-to-chromium-1.3.818" = { 22932 + "electron-to-chromium-1.3.832" = { 22870 22933 name = "electron-to-chromium"; 22871 22934 packageName = "electron-to-chromium"; 22872 - version = "1.3.818"; 22935 + version = "1.3.832"; 22873 22936 src = fetchurl { 22874 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.818.tgz"; 22875 - sha512 = "c/Z9gIr+jDZAR9q+mn40hEc1NharBT+8ejkarjbCDnBNFviI6hvcC5j2ezkAXru//bTnQp5n6iPi0JA83Tla1Q=="; 22937 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.832.tgz"; 22938 + sha512 = "x7lO8tGoW0CyV53qON4Lb5Rok9ipDelNdBIAiYUZ03dqy4u9vohMM1qV047+s/hiyJiqUWX/3PNwkX3kexX5ig=="; 22876 22939 }; 22877 22940 }; 22878 22941 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 23228 23291 sha512 = "aMWot7H5aC8L4/T8qMYbLdvKlZOdJTH54FxfdFunTGvhMx1BHkJOntWArsVfgAZVwAO9LC2sryPWRcEeUzCe5w=="; 23229 23292 }; 23230 23293 }; 23294 + "engine.io-5.2.0" = { 23295 + name = "engine.io"; 23296 + packageName = "engine.io"; 23297 + version = "5.2.0"; 23298 + src = fetchurl { 23299 + url = "https://registry.npmjs.org/engine.io/-/engine.io-5.2.0.tgz"; 23300 + sha512 = "d1DexkQx87IFr1FLuV+0f5kAm1Hk1uOVijLOb+D1sDO2QMb7YjE02VHtZtxo7xIXMgcWLb+vl3HRT0rI9tr4jQ=="; 23301 + }; 23302 + }; 23231 23303 "engine.io-client-1.3.1" = { 23232 23304 name = "engine.io-client"; 23233 23305 packageName = "engine.io-client"; ··· 23273 23345 sha512 = "x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg=="; 23274 23346 }; 23275 23347 }; 23276 - "engine.io-parser-4.0.2" = { 23348 + "engine.io-parser-4.0.3" = { 23277 23349 name = "engine.io-parser"; 23278 23350 packageName = "engine.io-parser"; 23279 - version = "4.0.2"; 23351 + version = "4.0.3"; 23280 23352 src = fetchurl { 23281 - url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.2.tgz"; 23282 - sha512 = "sHfEQv6nmtJrq6TKuIz5kyEKH/qSdK56H/A+7DnAuUPWosnIZAS2NHNcPLmyjtY3cGS/MqJdZbUjW97JU72iYg=="; 23353 + url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.3.tgz"; 23354 + sha512 = "xEAAY0msNnESNPc00e19y5heTPX4y/TJ36gr8t1voOaNmTojP9b3oK3BbJLFufW2XFPQaaijpFewm2g2Um3uqA=="; 23283 23355 }; 23284 23356 }; 23285 23357 "enhanced-resolve-2.3.0" = { ··· 23534 23606 sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="; 23535 23607 }; 23536 23608 }; 23537 - "es-abstract-1.18.5" = { 23609 + "es-abstract-1.18.6" = { 23538 23610 name = "es-abstract"; 23539 23611 packageName = "es-abstract"; 23540 - version = "1.18.5"; 23612 + version = "1.18.6"; 23541 23613 src = fetchurl { 23542 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.5.tgz"; 23543 - sha512 = "DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA=="; 23614 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.6.tgz"; 23615 + sha512 = "kAeIT4cku5eNLNuUKhlmtuk1/TRZvQoYccn6TO0cSVdf1kzB0T7+dYuVK9MWM7l+/53W2Q8M7N2c6MQvhXFcUQ=="; 23544 23616 }; 23545 23617 }; 23546 23618 "es-get-iterator-1.1.2" = { ··· 23912 23984 sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ=="; 23913 23985 }; 23914 23986 }; 23915 - "eslint-plugin-vue-7.16.0" = { 23987 + "eslint-plugin-vue-7.17.0" = { 23916 23988 name = "eslint-plugin-vue"; 23917 23989 packageName = "eslint-plugin-vue"; 23918 - version = "7.16.0"; 23990 + version = "7.17.0"; 23919 23991 src = fetchurl { 23920 - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.16.0.tgz"; 23921 - sha512 = "0E2dVvVC7I2Xm1HXyx+ZwPj9CNX4NJjs4K4r+GVsHWyt5Pew3JLD4fI7A91b2jeL0TXE7LlszrwLSTJU9eqehw=="; 23992 + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.17.0.tgz"; 23993 + sha512 = "Rq5R2QetDCgC+kBFQw1+aJ5B93tQ4xqZvoCUxuIzwTonngNArsdP8ChM8PowIzsJvRtWl4ltGh/bZcN3xhFWSw=="; 23922 23994 }; 23923 23995 }; 23924 23996 "eslint-scope-3.7.3" = { ··· 24893 24965 sha512 = "64YwTWpxgVGnwoLi4zvKaQ5RWIV0dkxVE4GGkBF7D89RI0/I6gTRUDL25Il4AK3cUqyLtxnX2X5BZ2YRvRx5uQ=="; 24894 24966 }; 24895 24967 }; 24896 - "express-openapi-8.0.0" = { 24897 - name = "express-openapi"; 24898 - packageName = "express-openapi"; 24899 - version = "8.0.0"; 24900 - src = fetchurl { 24901 - url = "https://registry.npmjs.org/express-openapi/-/express-openapi-8.0.0.tgz"; 24902 - sha512 = "MUntG3qQKdU5eRG51WLglaUfIXrVagQHNmStwl44lzu6XKiMj4TBDm/cIbubO49HAMCqNkX5BaiKCOK6pvP5Wg=="; 24903 - }; 24904 - }; 24905 24968 "express-session-1.17.2" = { 24906 24969 name = "express-session"; 24907 24970 packageName = "express-session"; ··· 24929 24992 sha1 = "f5fc2f9fa9e9a8578634f10e86ba5a4346b96f4f"; 24930 24993 }; 24931 24994 }; 24995 + "express-validator-6.12.1" = { 24996 + name = "express-validator"; 24997 + packageName = "express-validator"; 24998 + version = "6.12.1"; 24999 + src = fetchurl { 25000 + url = "https://registry.npmjs.org/express-validator/-/express-validator-6.12.1.tgz"; 25001 + sha512 = "olpTAv0ZB5IhNuDQ2rodKAuJsewgFgLIsczJMAWD6T0Yvxsa+j/Hk61jl8e26lAq+oJr6hUqPRjdlOBKhFlWeQ=="; 25002 + }; 25003 + }; 24932 25004 "express-ws-2.0.0" = { 24933 25005 name = "express-ws"; 24934 25006 packageName = "express-ws"; ··· 25397 25469 sha1 = "a45aff345196006d406ca6cdcd05f69051ef35b8"; 25398 25470 }; 25399 25471 }; 25400 - "fast-redact-3.0.1" = { 25472 + "fast-redact-3.0.2" = { 25401 25473 name = "fast-redact"; 25402 25474 packageName = "fast-redact"; 25403 - version = "3.0.1"; 25475 + version = "3.0.2"; 25404 25476 src = fetchurl { 25405 - url = "https://registry.npmjs.org/fast-redact/-/fast-redact-3.0.1.tgz"; 25406 - sha512 = "kYpn4Y/valC9MdrISg47tZOpYBNoTXKgT9GYXFpHN/jYFs+lFkPoisY+LcBODdKVMY96ATzvzsWv+ES/4Kmufw=="; 25477 + url = "https://registry.npmjs.org/fast-redact/-/fast-redact-3.0.2.tgz"; 25478 + sha512 = "YN+CYfCVRVMUZOUPeinHNKgytM1wPI/C/UCLEi56EsY2dwwvI00kIJHJoI7pMVqGoMew8SMZ2SSfHKHULHXDsg=="; 25407 25479 }; 25408 25480 }; 25409 25481 "fast-safe-stringify-1.2.3" = { ··· 25415 25487 sha512 = "QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw=="; 25416 25488 }; 25417 25489 }; 25418 - "fast-safe-stringify-2.0.8" = { 25490 + "fast-safe-stringify-2.1.0" = { 25491 + name = "fast-safe-stringify"; 25492 + packageName = "fast-safe-stringify"; 25493 + version = "2.1.0"; 25494 + src = fetchurl { 25495 + url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.0.tgz"; 25496 + sha512 = "xHSIyDJTOVQjtMBGcUokl3tpaOKgTyVTjlHj255V4Q4J1oho3cnrWrf5sCx8z1jq7gzNMv8y0PH53pYYuZUFPQ=="; 25497 + }; 25498 + }; 25499 + "fast-safe-stringify-2.1.1" = { 25419 25500 name = "fast-safe-stringify"; 25420 25501 packageName = "fast-safe-stringify"; 25421 - version = "2.0.8"; 25502 + version = "2.1.1"; 25422 25503 src = fetchurl { 25423 - url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.8.tgz"; 25424 - sha512 = "lXatBjf3WPjmWD6DpIZxkeSsCOwqI0maYMpgDlx8g4U2qi4lbjA9oH/HD2a87G+KfsUmo5WbJFmqBZlPxtptag=="; 25504 + url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz"; 25505 + sha512 = "W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="; 25425 25506 }; 25426 25507 }; 25427 25508 "fast-text-encoding-1.0.3" = { ··· 25496 25577 sha512 = "CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA=="; 25497 25578 }; 25498 25579 }; 25499 - "faunadb-4.3.0" = { 25580 + "faunadb-4.4.1" = { 25500 25581 name = "faunadb"; 25501 25582 packageName = "faunadb"; 25502 - version = "4.3.0"; 25583 + version = "4.4.1"; 25503 25584 src = fetchurl { 25504 - url = "https://registry.npmjs.org/faunadb/-/faunadb-4.3.0.tgz"; 25505 - sha512 = "H5ZnInUNLAvrjqDHYXmYX+S55HP8Ib85QbF/UK1fV/bz125unl7J7LbjqKvMGcREYqOvIrpQCaniK1LwAkXHTw=="; 25585 + url = "https://registry.npmjs.org/faunadb/-/faunadb-4.4.1.tgz"; 25586 + sha512 = "1V2ve22T4Q45C3PBB+LD7Fpk4lVajbtxDXDpENsujC+LMe88LqBQ9brl5v5uB3sCTSVAX0fsGtuZ+N5x15vdoQ=="; 25506 25587 }; 25507 25588 }; 25508 25589 "faye-websocket-0.10.0" = { ··· 25919 26000 sha512 = "mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ=="; 25920 26001 }; 25921 26002 }; 25922 - "filesize-7.0.0" = { 26003 + "filesize-8.0.0" = { 25923 26004 name = "filesize"; 25924 26005 packageName = "filesize"; 25925 - version = "7.0.0"; 26006 + version = "8.0.0"; 25926 26007 src = fetchurl { 25927 - url = "https://registry.npmjs.org/filesize/-/filesize-7.0.0.tgz"; 25928 - sha512 = "Wsstw+O1lZ9gVmOI1thyeQvODsaoId2qw14lCqIzUhoHKXX7T2hVpB7BR6SvgodMBgWccrx/y2eyV8L7tDmY6A=="; 26008 + url = "https://registry.npmjs.org/filesize/-/filesize-8.0.0.tgz"; 26009 + sha512 = "sb690gQx3y/5KZIztgWAKM/r4Hf1V3R8mkAE0OhasMw2FDYduFTYCji8YN9BVpsGoMxrHPFvia1BMxwfLHX+fQ=="; 25929 26010 }; 25930 26011 }; 25931 26012 "filestream-5.0.0" = { ··· 26027 26108 sha512 = "Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ=="; 26028 26109 }; 26029 26110 }; 26030 - "find-cache-dir-3.3.1" = { 26111 + "find-cache-dir-3.3.2" = { 26031 26112 name = "find-cache-dir"; 26032 26113 packageName = "find-cache-dir"; 26033 - version = "3.3.1"; 26114 + version = "3.3.2"; 26034 26115 src = fetchurl { 26035 - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz"; 26036 - sha512 = "t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ=="; 26116 + url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; 26117 + sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; 26037 26118 }; 26038 26119 }; 26039 26120 "find-replace-1.0.3" = { ··· 26369 26450 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 26370 26451 }; 26371 26452 }; 26372 - "flow-parser-0.158.0" = { 26453 + "flow-parser-0.159.0" = { 26373 26454 name = "flow-parser"; 26374 26455 packageName = "flow-parser"; 26375 - version = "0.158.0"; 26456 + version = "0.159.0"; 26376 26457 src = fetchurl { 26377 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.158.0.tgz"; 26378 - sha512 = "0hMsPkBTRrkII/0YiG9ehOxFXy4gOWdk8RSRze5WbfeKAQpL5kC2K4BmumyTfU9o5gr7/llgElF3UpSSrjzQAA=="; 26458 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.159.0.tgz"; 26459 + sha512 = "/AFSLMSbqictmgPm+vrXBD0rLTsVRrlKfiGRoDjt/WhhUxqy5ZMuLVHbRD/g3C3JRnJgDrKSb3+piQoM1dzVGw=="; 26379 26460 }; 26380 26461 }; 26381 26462 "fluent-ffmpeg-2.1.2" = { ··· 26540 26621 sha512 = "VjAQdSLsl6AkpZNyrQJfO7BXLo4chnStqb055bumZMbRUPpVuPN3a4ktsnRCmrFZjtMlYLkyXiR5rAs4WOpC4Q=="; 26541 26622 }; 26542 26623 }; 26543 - "follow-redirects-1.14.2" = { 26624 + "follow-redirects-1.14.3" = { 26544 26625 name = "follow-redirects"; 26545 26626 packageName = "follow-redirects"; 26546 - version = "1.14.2"; 26627 + version = "1.14.3"; 26547 26628 src = fetchurl { 26548 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.2.tgz"; 26549 - sha512 = "yLR6WaE2lbF0x4K2qE2p9PEXKLDjUjnR/xmjS3wHAYxtlsI9MLLBJUZirAHKzUZDGLxje7w/cXR49WOUo4rbsA=="; 26629 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.3.tgz"; 26630 + sha512 = "3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw=="; 26550 26631 }; 26551 26632 }; 26552 26633 "follow-redirects-1.5.10" = { ··· 27134 27215 sha512 = "kSAfx/P8oLSi5+tblecTETcJJ/Q+qL+xzGx4hns/+gHXMkTOZEzG73/2dBDW1FFy5+ZW080XoMaBAN2kCN55aQ=="; 27135 27216 }; 27136 27217 }; 27137 - "fs-routes-8.0.0" = { 27138 - name = "fs-routes"; 27139 - packageName = "fs-routes"; 27140 - version = "8.0.0"; 27141 - src = fetchurl { 27142 - url = "https://registry.npmjs.org/fs-routes/-/fs-routes-8.0.0.tgz"; 27143 - sha512 = "EezW71GPu+VK2ZOnX0Aljaref63+mvhkkz55DqUp5xryV/mJraA2t/XFmBxNMwgRq6tFUOYuQOlr+RQh4nq5kQ=="; 27144 - }; 27145 - }; 27146 27218 "fs-write-stream-atomic-1.0.10" = { 27147 27219 name = "fs-write-stream-atomic"; 27148 27220 packageName = "fs-write-stream-atomic"; ··· 27350 27422 sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9"; 27351 27423 }; 27352 27424 }; 27353 - "gatsby-core-utils-2.12.0" = { 27425 + "gatsby-core-utils-2.13.0" = { 27354 27426 name = "gatsby-core-utils"; 27355 27427 packageName = "gatsby-core-utils"; 27356 - version = "2.12.0"; 27428 + version = "2.13.0"; 27357 27429 src = fetchurl { 27358 - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.12.0.tgz"; 27359 - sha512 = "aN9fub3XX/uEqAstxG3mr8BH6hMGhTmAzANZH3HSV4tyG1Y4a4FKisZA0ggmy/dKOy5cyeuoMHmzAr8+qtHcAw=="; 27430 + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.13.0.tgz"; 27431 + sha512 = "fkMAxiWFY8N26Iui/Wq8yfE2FY2b31bGJVtlIlSwLgfsoO7fpta64lxeivRtfpNLbAoywmWY/L8TC74GFlnuWg=="; 27360 27432 }; 27361 27433 }; 27362 - "gatsby-recipes-0.23.0" = { 27434 + "gatsby-recipes-0.24.0" = { 27363 27435 name = "gatsby-recipes"; 27364 27436 packageName = "gatsby-recipes"; 27365 - version = "0.23.0"; 27437 + version = "0.24.0"; 27366 27438 src = fetchurl { 27367 - url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.23.0.tgz"; 27368 - sha512 = "dR/u2mFiWhPf+0O8MuFfnl5JTbjOChYKG9+CIhubLwAjJN0cDbvleSJEQ7K32quKd56dqNf1psXqpZ+UUlx8vA=="; 27439 + url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.24.0.tgz"; 27440 + sha512 = "azDY4tnOCy5/CK+Kv53CBIgzmEroAGe/mLaiW2PuizTQIdhoY3lg63ZXK6kPQHAq1F4qAYHGkBM4ECgSfaq5HA=="; 27369 27441 }; 27370 27442 }; 27371 - "gatsby-telemetry-2.12.0" = { 27443 + "gatsby-telemetry-2.13.0" = { 27372 27444 name = "gatsby-telemetry"; 27373 27445 packageName = "gatsby-telemetry"; 27374 - version = "2.12.0"; 27446 + version = "2.13.0"; 27375 27447 src = fetchurl { 27376 - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.12.0.tgz"; 27377 - sha512 = "W27oKt7/ThrNz12lPiclb9J7v/Q6ZM5Eh+JQ5w/TRFs4vqLOsfJZxmYG2HzFvAZtoFUB1JsbvmHZDMxUtR84Uw=="; 27448 + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.13.0.tgz"; 27449 + sha512 = "PN9kKbZd0i2QkoVvHyCa3VjuRVIvBwjXTyZHwL+se5yrbYufZQXoyMiMMXFV48FvxMgE53ON1U2vtzeRvE8U2w=="; 27378 27450 }; 27379 27451 }; 27380 27452 "gauge-1.2.7" = { ··· 27404 27476 sha512 = "6STz6KdQgxO4S/ko+AbjlFGGdGcknluoqU+79GOFCDqqyYj5OanQf9AjxwN0jCidtT+ziPMmPSt9E4hfQ0CwIQ=="; 27405 27477 }; 27406 27478 }; 27407 - "gaxios-4.3.0" = { 27479 + "gaxios-4.3.1" = { 27408 27480 name = "gaxios"; 27409 27481 packageName = "gaxios"; 27410 - version = "4.3.0"; 27482 + version = "4.3.1"; 27411 27483 src = fetchurl { 27412 - url = "https://registry.npmjs.org/gaxios/-/gaxios-4.3.0.tgz"; 27413 - sha512 = "pHplNbslpwCLMyII/lHPWFQbJWOX0B3R1hwBEOvzYi1GmdKZruuEHK4N9V6f7tf1EaPYyF80mui1+344p6SmLg=="; 27484 + url = "https://registry.npmjs.org/gaxios/-/gaxios-4.3.1.tgz"; 27485 + sha512 = "9qXV7yrMCGzTrphl9/YGMVH41oSg0rhn1j3wJWed4Oqk45/hXDD2wBT5J1NjQcqTCcv4g3nFnyQ7reSRHNgBgw=="; 27414 27486 }; 27415 27487 }; 27416 27488 "gaze-1.1.3" = { ··· 27431 27503 sha512 = "4FcCj9e8j8rCjvLkqRpGZBLgTC/xr9XEf5By3x77cDucWWB3pJK6FEwXZCTCbb4z8xdaOoi4owBNrvn3ciDdxA=="; 27432 27504 }; 27433 27505 }; 27434 - "gcp-metadata-4.3.0" = { 27506 + "gcp-metadata-4.3.1" = { 27435 27507 name = "gcp-metadata"; 27436 27508 packageName = "gcp-metadata"; 27437 - version = "4.3.0"; 27509 + version = "4.3.1"; 27438 27510 src = fetchurl { 27439 - url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-4.3.0.tgz"; 27440 - sha512 = "L9XQUpvKJCM76YRSmcxrR4mFPzPGsgZUH+GgHMxAET8qc6+BhRJq63RLhWakgEO2KKVgeSDVfyiNjkGSADwNTA=="; 27511 + url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-4.3.1.tgz"; 27512 + sha512 = "x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A=="; 27441 27513 }; 27442 27514 }; 27443 27515 "gelf-stream-1.1.1" = { ··· 27602 27674 sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; 27603 27675 }; 27604 27676 }; 27605 - "get-pkg-repo-4.1.2" = { 27677 + "get-pkg-repo-4.2.0" = { 27606 27678 name = "get-pkg-repo"; 27607 27679 packageName = "get-pkg-repo"; 27608 - version = "4.1.2"; 27680 + version = "4.2.0"; 27609 27681 src = fetchurl { 27610 - url = "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.1.2.tgz"; 27611 - sha512 = "/FjamZL9cBYllEbReZkxF2IMh80d8TJoC4e3bmLNif8ibHw95aj0N/tzqK0kZz9eU/3w3dL6lF4fnnX/sDdW3A=="; 27682 + url = "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.0.tgz"; 27683 + sha512 = "eiSexNxIsij+l+IZzkqT52t4Lh+0ChN9l6Z3oennXLQT8OaJNvp9ecoXpmZ220lPYMwwM1KDal4w4ZA+smVLHA=="; 27612 27684 }; 27613 27685 }; 27614 27686 "get-port-3.2.0" = { ··· 27737 27809 sha512 = "ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="; 27738 27810 }; 27739 27811 }; 27812 + "get-symbol-description-1.0.0" = { 27813 + name = "get-symbol-description"; 27814 + packageName = "get-symbol-description"; 27815 + version = "1.0.0"; 27816 + src = fetchurl { 27817 + url = "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"; 27818 + sha512 = "2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw=="; 27819 + }; 27820 + }; 27740 27821 "get-uri-3.0.2" = { 27741 27822 name = "get-uri"; 27742 27823 packageName = "get-uri"; ··· 27944 28025 sha512 = "YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA=="; 27945 28026 }; 27946 28027 }; 27947 - "git-url-parse-11.5.0" = { 28028 + "git-url-parse-11.6.0" = { 27948 28029 name = "git-url-parse"; 27949 28030 packageName = "git-url-parse"; 27950 - version = "11.5.0"; 28031 + version = "11.6.0"; 27951 28032 src = fetchurl { 27952 - url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.5.0.tgz"; 27953 - sha512 = "TZYSMDeM37r71Lqg1mbnMlOqlHd7BSij9qN7XwTkRqSAYFMihGLGhfHwgqQob3GUhEneKnV4nskN9rbQw2KGxA=="; 28033 + url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.6.0.tgz"; 28034 + sha512 = "WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g=="; 27954 28035 }; 27955 28036 }; 27956 28037 "gitconfiglocal-1.0.0" = { ··· 28521 28602 sha512 = "TDwMwK7j0vU/aOlQIkL6WqrYoFBOAYnJ9l2ueK3d60IHspycYKPyO9yBaX1bzsaS7nBH5YjuXBYncZK+12TSZQ=="; 28522 28603 }; 28523 28604 }; 28605 + "goldengate-10.4.0" = { 28606 + name = "goldengate"; 28607 + packageName = "goldengate"; 28608 + version = "10.4.0"; 28609 + src = fetchurl { 28610 + url = "https://registry.npmjs.org/goldengate/-/goldengate-10.4.0.tgz"; 28611 + sha512 = "GWQgk3aaev6LVJbaRHZVWKSE7l+mAkcN9dMwdWgC1LU36CdA7Z/5n2LmdZvkmi2M47+Eog3/4rQfnK1r1I0vQA=="; 28612 + }; 28613 + }; 28524 28614 "gonzales-pe-4.3.0" = { 28525 28615 name = "gonzales-pe"; 28526 28616 packageName = "gonzales-pe"; ··· 28539 28629 sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ=="; 28540 28630 }; 28541 28631 }; 28542 - "google-auth-library-7.6.2" = { 28632 + "google-auth-library-7.9.1" = { 28543 28633 name = "google-auth-library"; 28544 28634 packageName = "google-auth-library"; 28545 - version = "7.6.2"; 28635 + version = "7.9.1"; 28546 28636 src = fetchurl { 28547 - url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.6.2.tgz"; 28548 - sha512 = "yvEnwVsvgH8RXTtpf6e84e7dqIdUEKJhmQvTJwzYP+RDdHjLrDp9sk2u2ZNDJPLKZ7DJicx/+AStcQspJiq+Qw=="; 28637 + url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.9.1.tgz"; 28638 + sha512 = "cWGykH2WBR+UuYPGRnGVZ6Cjq2ftQiEIFjQWNIRIauZH7hUWoYTr/lkKUqLTYt5dex77nlWWVQ8aPV80mhfp5w=="; 28549 28639 }; 28550 28640 }; 28551 28641 "google-closure-compiler-js-20170910.0.1" = { ··· 28557 28647 sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; 28558 28648 }; 28559 28649 }; 28560 - "google-gax-2.24.2" = { 28650 + "google-gax-2.25.0" = { 28561 28651 name = "google-gax"; 28562 28652 packageName = "google-gax"; 28563 - version = "2.24.2"; 28653 + version = "2.25.0"; 28564 28654 src = fetchurl { 28565 - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.24.2.tgz"; 28566 - sha512 = "4OtyEIt/KAXRX5o2W/6DGf8MnMs1lMXwcGoPHR4PwXfTUVKjK7ywRe2/yRIMkYEDzAwu/kppPgfpX+kCG2rWfw=="; 28655 + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.25.0.tgz"; 28656 + sha512 = "s2V5UA/M5or7PFMpsp159X1FrWgIJZ2TSp+k57giUsiS+idMTtKoVgZ+LI59+UyOkFuDg7IBLRcBwZ1TgavEBw=="; 28567 28657 }; 28568 28658 }; 28569 28659 "google-p12-pem-3.1.2" = { ··· 28764 28854 sha512 = "h5mJWgZXpuZQzBAMWhVIOluGNIYUP043eh7BHcecRWhSkD4eiZAh+uM4XX2rGL1vig9XQ3JVYl9gmK+ajy+JPA=="; 28765 28855 }; 28766 28856 }; 28767 - "graphology-types-0.19.3" = { 28857 + "graphology-types-0.19.4" = { 28768 28858 name = "graphology-types"; 28769 28859 packageName = "graphology-types"; 28770 - version = "0.19.3"; 28860 + version = "0.19.4"; 28771 28861 src = fetchurl { 28772 - url = "https://registry.npmjs.org/graphology-types/-/graphology-types-0.19.3.tgz"; 28773 - sha512 = "N9zuoXkhoEhx/7FaMlMTgHqPl17Mcub67YHLk0d+i8mOSsxpD9kLzvUwUo5v39xeoOUqRb3rC0Y2h9zTssZUGg=="; 28862 + url = "https://registry.npmjs.org/graphology-types/-/graphology-types-0.19.4.tgz"; 28863 + sha512 = "jBRgWBKCVzoSMmQh7I5KsPQcOai4FJLNdhPBtSTRfVcyafGZHxwt80z5EftRB6ZSyTiBqiolzu7n1CZEnRkAHA=="; 28774 28864 }; 28775 28865 }; 28776 28866 "graphql-0.11.7" = { ··· 28809 28899 sha512 = "GTCJtzJmkFLWRfFJuoo9RWWa/FfamUHgiFosxi/X1Ani4AVWbeyBenZTNX6dM+7WSbbFfTo/25eh0LLkwHMw2w=="; 28810 28900 }; 28811 28901 }; 28812 - "graphql-15.5.1" = { 28902 + "graphql-15.5.3" = { 28813 28903 name = "graphql"; 28814 28904 packageName = "graphql"; 28815 - version = "15.5.1"; 28905 + version = "15.5.3"; 28816 28906 src = fetchurl { 28817 - url = "https://registry.npmjs.org/graphql/-/graphql-15.5.1.tgz"; 28818 - sha512 = "FeTRX67T3LoE3LWAxxOlW2K3Bz+rMYAC18rRguK4wgXaTZMiJwSUwDmPFo3UadAKbzirKIg5Qy+sNJXbpPRnQw=="; 28907 + url = "https://registry.npmjs.org/graphql/-/graphql-15.5.3.tgz"; 28908 + sha512 = "sM+jXaO5KinTui6lbK/7b7H/Knj9BpjGxZ+Ki35v7YbUJxxdBCUqNM0h3CRVU1ZF9t5lNiBzvBCSYPvIwxPOQA=="; 28819 28909 }; 28820 28910 }; 28821 28911 "graphql-compose-7.25.1" = { ··· 29239 29329 src = fetchurl { 29240 29330 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; 29241 29331 sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 29332 + }; 29333 + }; 29334 + "has-ansi-4.0.1" = { 29335 + name = "has-ansi"; 29336 + packageName = "has-ansi"; 29337 + version = "4.0.1"; 29338 + src = fetchurl { 29339 + url = "https://registry.npmjs.org/has-ansi/-/has-ansi-4.0.1.tgz"; 29340 + sha512 = "Qr4RtTm30xvEdqUXbSBVWDu+PrTokJOwe/FU+VdfJPk+MXAPoeOzKpRyrDTnZIJwAkQ4oBLTU53nu0HrkF/Z2A=="; 29242 29341 }; 29243 29342 }; 29244 29343 "has-bigints-1.0.1" = { ··· 30610 30709 sha512 = "yozWXZx3yXVprf/MM9WqMt5WY60Im8k6ELJDNFGfyMeO+UieITbDmkvVwMnKQA3ptWqUK8fPf/tEGgklWh7Weg=="; 30611 30710 }; 30612 30711 }; 30613 - "hyperbee-1.6.2" = { 30712 + "hyperbee-1.6.3" = { 30614 30713 name = "hyperbee"; 30615 30714 packageName = "hyperbee"; 30616 - version = "1.6.2"; 30715 + version = "1.6.3"; 30617 30716 src = fetchurl { 30618 - url = "https://registry.npmjs.org/hyperbee/-/hyperbee-1.6.2.tgz"; 30619 - sha512 = "0pn4srJRD8edAOfJpSsdYGO9bwteD+A9OzHjjZZrfIdWZXXwtg862Wi/6L6JZhJ9ITfhlkEZTYJnOwi+wNwWqA=="; 30717 + url = "https://registry.npmjs.org/hyperbee/-/hyperbee-1.6.3.tgz"; 30718 + sha512 = "Jn3i5IUrW/8Qv6xKCIJI38omFSZFhv8xnPk7YTlW90zBQJtwfA8qx3NSK27idrl11iXtmCAETnZRDZrmjlMywQ=="; 30620 30719 }; 30621 30720 }; 30622 30721 "hypercore-7.7.1" = { ··· 30628 30727 sha512 = "boEiPCK848pNGACW1j111tJApu530e/UPpwbHytJZlrVf3YdgUIP1KL3aSi5xJFLUnuO8GLGl4lIsSeH8TaQQA=="; 30629 30728 }; 30630 30729 }; 30631 - "hypercore-9.10.0" = { 30730 + "hypercore-9.11.0" = { 30632 30731 name = "hypercore"; 30633 30732 packageName = "hypercore"; 30634 - version = "9.10.0"; 30733 + version = "9.11.0"; 30635 30734 src = fetchurl { 30636 - url = "https://registry.npmjs.org/hypercore/-/hypercore-9.10.0.tgz"; 30637 - sha512 = "vMaUNcYvtiiXbnjjhj3YbBK/KZEofXfrajiJxJ8rlWVXSyh2fIJcyxTJewfh58IW5bVYNrBPui/CpPyBZiXuZQ=="; 30735 + url = "https://registry.npmjs.org/hypercore/-/hypercore-9.11.0.tgz"; 30736 + sha512 = "/HwisY6gwkdMkEtn0vHkxrdJt6C0TK2YrnN59fCjSL3msfGLWOJ4lQxG39n0Ehd1dRdDWCj27MaTMI8krLU/Cw=="; 30638 30737 }; 30639 30738 }; 30640 30739 "hypercore-byte-stream-1.0.12" = { ··· 31906 32005 sha512 = "UnU0bS3+cMA2UvYrF5RXp/Hm7v/nYiA3F0GVCOeRmDiZmXAt/eO7KdqyRzewopvhBlev7F7t7GZzRRYY1XE3xg=="; 31907 32006 }; 31908 32007 }; 31909 - "ioredis-4.27.8" = { 32008 + "ioredis-4.27.9" = { 31910 32009 name = "ioredis"; 31911 32010 packageName = "ioredis"; 31912 - version = "4.27.8"; 32011 + version = "4.27.9"; 31913 32012 src = fetchurl { 31914 - url = "https://registry.npmjs.org/ioredis/-/ioredis-4.27.8.tgz"; 31915 - sha512 = "AcMEevap2wKxNcYEybZ/Qp+MR2HbNNUwGjG4sVCC3cAJ/zR9HXKAkolXOuR6YcOGPf7DHx9mWb/JKtAGujyPow=="; 32013 + url = "https://registry.npmjs.org/ioredis/-/ioredis-4.27.9.tgz"; 32014 + sha512 = "hAwrx9F+OQ0uIvaJefuS3UTqW+ByOLyLIV+j0EH8ClNVxvFyH9Vmb08hCL4yje6mDYT5zMquShhypkd50RRzkg=="; 31916 32015 }; 31917 32016 }; 31918 32017 "iota-array-1.0.0" = { ··· 32021 32120 src = fetchurl { 32022 32121 url = "https://registry.npmjs.org/ipv4-peers/-/ipv4-peers-2.0.0.tgz"; 32023 32122 sha512 = "6ZMWB3JnCWT0gISUkzChcUEkJS6+LpGRU3h10f9Mfc0usVmyIcbcTN9+QPMg29gLOY8WtaKFbM5ME8qNySoh8g=="; 32123 + }; 32124 + }; 32125 + "irc-colors-1.5.0" = { 32126 + name = "irc-colors"; 32127 + packageName = "irc-colors"; 32128 + version = "1.5.0"; 32129 + src = fetchurl { 32130 + url = "https://registry.npmjs.org/irc-colors/-/irc-colors-1.5.0.tgz"; 32131 + sha512 = "HtszKchBQTcqw1DC09uD7i7vvMayHGM1OCo6AHt5pkgZEyo99ClhHTMJdf+Ezc9ovuNNxcH89QfyclGthjZJOw=="; 32024 32132 }; 32025 32133 }; 32026 32134 "irc-framework-4.9.0" = { ··· 32041 32149 sha1 = "5bf4125fb6ec0f3929a89647b26e653232942b79"; 32042 32150 }; 32043 32151 }; 32152 + "irc-upd-0.11.0" = { 32153 + name = "irc-upd"; 32154 + packageName = "irc-upd"; 32155 + version = "0.11.0"; 32156 + src = fetchurl { 32157 + url = "https://registry.npmjs.org/irc-upd/-/irc-upd-0.11.0.tgz"; 32158 + sha512 = "A1hV5cUkl5HZsKWRYcszD2Usfz33hB8igSSox8dEmrMyfy8/Ra6T/o4jwzs7jYMZ7ljLquSIWzcvSZHZ/bEAZA=="; 32159 + }; 32160 + }; 32044 32161 "irregular-plurals-1.4.0" = { 32045 32162 name = "irregular-plurals"; 32046 32163 packageName = "irregular-plurals"; ··· 33265 33382 sha1 = "4e1aa0fb51bfbcb3e92688001397202c1775b66e"; 33266 33383 }; 33267 33384 }; 33268 - "is-typed-array-1.1.7" = { 33385 + "is-typed-array-1.1.8" = { 33269 33386 name = "is-typed-array"; 33270 33387 packageName = "is-typed-array"; 33271 - version = "1.1.7"; 33388 + version = "1.1.8"; 33272 33389 src = fetchurl { 33273 - url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.7.tgz"; 33274 - sha512 = "VxlpTBGknhQ3o7YiVjIhdLU6+oD8dPz/79vvvH4F+S/c8608UCVa9fgDpa1kZgFoUST2DCgacc70UszKgzKuvA=="; 33390 + url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.8.tgz"; 33391 + sha512 = "HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA=="; 33275 33392 }; 33276 33393 }; 33277 33394 "is-typedarray-1.0.0" = { ··· 33895 34012 sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; 33896 34013 }; 33897 34014 }; 33898 - "jest-worker-27.0.6" = { 34015 + "jest-worker-27.1.0" = { 33899 34016 name = "jest-worker"; 33900 34017 packageName = "jest-worker"; 33901 - version = "27.0.6"; 34018 + version = "27.1.0"; 33902 34019 src = fetchurl { 33903 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.6.tgz"; 33904 - sha512 = "qupxcj/dRuA3xHPMUd40gr2EaAurFbkwzOh7wfPaeE9id7hyjURRQoqNfHifHK3XjJU6YJJUQKILGUnwGPEOCA=="; 34020 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.1.0.tgz"; 34021 + sha512 = "mO4PHb2QWLn9yRXGp7rkvXLAYuxwhq1ZYUo0LoDhg8wqvv4QizP1ZWEJOeolgbEgAWZLIEU0wsku8J+lGWfBhg=="; 33905 34022 }; 33906 34023 }; 33907 34024 "jimp-compact-0.16.1" = { ··· 34048 34165 sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ=="; 34049 34166 }; 34050 34167 }; 34051 - "js-base64-3.6.1" = { 34168 + "js-base64-3.6.2" = { 34052 34169 name = "js-base64"; 34053 34170 packageName = "js-base64"; 34054 - version = "3.6.1"; 34171 + version = "3.6.2"; 34055 34172 src = fetchurl { 34056 - url = "https://registry.npmjs.org/js-base64/-/js-base64-3.6.1.tgz"; 34057 - sha512 = "Frdq2+tRRGLQUIQOgsIGSCd1VePCS2fsddTG5dTCqR0JHgltXWfsxnY0gIXPoMeRmdom6Oyq+UMOFg5suduOjQ=="; 34173 + url = "https://registry.npmjs.org/js-base64/-/js-base64-3.6.2.tgz"; 34174 + sha512 = "9xRCVqFwEuPH1SmwknrCRfGjcaUCt+boLjGZt5g/aAr98K8OtR9cI8K89U3cPT8xatgmzWQnJwgRQTd5tq2EOg=="; 34058 34175 }; 34059 34176 }; 34060 34177 "js-beautify-1.14.0" = { ··· 34363 34480 sha512 = "GOGAy5b+zCGeyYziBoNVXgamL2CEZKMj5moeemkyN4AUHUqugNk3fSul2Zdbxs2S13Suk0D9iYAgChDxew0bOw=="; 34364 34481 }; 34365 34482 }; 34366 - "jsii-srcmak-0.1.335" = { 34483 + "jsii-srcmak-0.1.341" = { 34367 34484 name = "jsii-srcmak"; 34368 34485 packageName = "jsii-srcmak"; 34369 - version = "0.1.335"; 34486 + version = "0.1.341"; 34370 34487 src = fetchurl { 34371 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.335.tgz"; 34372 - sha512 = "9Htj62cspqqlxHw961LxHKL9YQv2+11BRXf8nQkxURWlRqbH+73iXzy8LaUvBTA52ZgEJffY38FuDjHv9gqhCw=="; 34488 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.341.tgz"; 34489 + sha512 = "G8BUBXJDTXYsqpv5CWMSwYuGz21WdY1TRJZZVp+CIPTEbxCBc2nEJ41Ihsa1u8MCs9D1ddWGrX3JmZwqvMqUxw=="; 34373 34490 }; 34374 34491 }; 34375 34492 "json-bigint-1.0.0" = { ··· 34660 34777 sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 34661 34778 }; 34662 34779 }; 34663 - "json2jsii-0.2.7" = { 34780 + "json2jsii-0.2.17" = { 34664 34781 name = "json2jsii"; 34665 34782 packageName = "json2jsii"; 34666 - version = "0.2.7"; 34783 + version = "0.2.17"; 34667 34784 src = fetchurl { 34668 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.7.tgz"; 34669 - sha512 = "cOfUWGFat3g6v1cWJ6+yPDFkV9O802hp8AcJfPgp16FWeDMNgnIsaavSw+i3IPFns3Fap1O+Oj/8g6s1+NwCJg=="; 34785 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.17.tgz"; 34786 + sha512 = "dU28KQ5UBvyGcc4QaQey98a2uTwwsnh+bP4EI6wnJjsCKjMKxSLFot1jwSCA/olaWIpJFGCIYif2IJ/0Dy5a8w=="; 34670 34787 }; 34671 34788 }; 34672 34789 "json3-3.2.6" = { ··· 34732 34849 sha512 = "oDPf7b6nFDKcX2qt5OLI/ZwGwH43qS/g2Z98UWo8ChoNtVMYdGa3Y48WHvjPqvNKnTUa2fOanvHFeE7ZxkiboQ=="; 34733 34850 }; 34734 34851 }; 34735 - "jsonata-1.8.4" = { 34852 + "jsonata-1.8.5" = { 34736 34853 name = "jsonata"; 34737 34854 packageName = "jsonata"; 34738 - version = "1.8.4"; 34855 + version = "1.8.5"; 34739 34856 src = fetchurl { 34740 - url = "https://registry.npmjs.org/jsonata/-/jsonata-1.8.4.tgz"; 34741 - sha512 = "OqzmM5IICtm/687zckG5BROZzInGCEuKojpYs48H8RnkII8Np+o912ryvhnYwsRrSI24TQRG/qqrSwBuaneDbg=="; 34857 + url = "https://registry.npmjs.org/jsonata/-/jsonata-1.8.5.tgz"; 34858 + sha512 = "ilDyTBkg6qhNoNVr8PUPzz5GYvRK+REKOM5MdOGzH2y6V4yvPRMegSvbZLpbTtI0QAgz09QM7drDhSHUlwp9pA=="; 34742 34859 }; 34743 34860 }; 34744 34861 "jsonc-parser-1.0.3" = { ··· 34865 34982 src = fetchurl { 34866 34983 url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.1.0.tgz"; 34867 34984 sha512 = "CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg=="; 34868 - }; 34869 - }; 34870 - "jsonrpc2-ws-1.0.0-beta9" = { 34871 - name = "jsonrpc2-ws"; 34872 - packageName = "jsonrpc2-ws"; 34873 - version = "1.0.0-beta9"; 34874 - src = fetchurl { 34875 - url = "https://registry.npmjs.org/jsonrpc2-ws/-/jsonrpc2-ws-1.0.0-beta9.tgz"; 34876 - sha512 = "0KA+ufhSy7gN2/jGXagXLz4V5m+vymmNTI5IpNBIUiunday45P6dspdaOO0wwt2JJyrACC/BKMH154OqsuB80w=="; 34877 34985 }; 34878 34986 }; 34879 34987 "jsonschema-1.4.0" = { ··· 35219 35327 sha512 = "dD2ga5gLcQhsq1yNoQdy1MU4x4z7YnXM5bcG9SdQuiNr5KKuAmXixH1Mggwdah5o7EfholFbcNDPSVA6BIfaug=="; 35220 35328 }; 35221 35329 }; 35222 - "katex-0.13.13" = { 35330 + "katex-0.13.18" = { 35223 35331 name = "katex"; 35224 35332 packageName = "katex"; 35225 - version = "0.13.13"; 35333 + version = "0.13.18"; 35226 35334 src = fetchurl { 35227 - url = "https://registry.npmjs.org/katex/-/katex-0.13.13.tgz"; 35228 - sha512 = "cCMcil4jwMm7behpXGiQfXJA29sko/Gd/26iCsr53Dv5Jn2iHbHyEb14dm9uVrIijUXx6Zz1WhlFhHE6DckvkQ=="; 35335 + url = "https://registry.npmjs.org/katex/-/katex-0.13.18.tgz"; 35336 + sha512 = "a3dC4NSVSDU3O1WZbTnOiA8rVNJ2lSiomOl0kmckCIGObccIHXof7gAseIY0o1gjEspe+34ZeSEX2D1ChFKIvA=="; 35229 35337 }; 35230 35338 }; 35231 35339 "kdbush-3.0.0" = { ··· 35469 35577 src = fetchurl { 35470 35578 url = "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.5.0.tgz"; 35471 35579 sha512 = "LOS0CoS8zcZnB1EjLw4LLqDXw8nvt3AGH5dXLQP3D9O1nLLA+9GC5GnPl5mmF+JiQAtSX4VyZC7KvEtcA4kUtA=="; 35580 + }; 35581 + }; 35582 + "koa-compose-4.2.0" = { 35583 + name = "koa-compose"; 35584 + packageName = "koa-compose"; 35585 + version = "4.2.0"; 35586 + src = fetchurl { 35587 + url = "https://registry.npmjs.org/koa-compose/-/koa-compose-4.2.0.tgz"; 35588 + sha512 = "/Io2dpt3uU/wWkn2pkRBj3vudzsi6hMssGkREZCxLIczAIvLWy5Jw9PW7ctTxvcfXKCisbgsMLsgE1BvSZB6Kw=="; 35472 35589 }; 35473 35590 }; 35474 35591 "kuler-1.0.1" = { ··· 36083 36200 sha512 = "ngS2829bxBMgK/MFanm6jypvpIbxzxBX/vFbUKyFrj3MxcSKvMQzr1sXRppYxZXHwOuqyiN91QnaKNg3upQ9sg=="; 36084 36201 }; 36085 36202 }; 36203 + "lightning-4.1.3" = { 36204 + name = "lightning"; 36205 + packageName = "lightning"; 36206 + version = "4.1.3"; 36207 + src = fetchurl { 36208 + url = "https://registry.npmjs.org/lightning/-/lightning-4.1.3.tgz"; 36209 + sha512 = "DI21mqAdwBM/Os3pcAnBrpUCoaKQzJFTEv2c+DEJUzPBnpxRGGKGurlT5FDz9QZSTag7YgBb5ghsqtjQ2MlFWg=="; 36210 + }; 36211 + }; 36212 + "lightning-4.2.1" = { 36213 + name = "lightning"; 36214 + packageName = "lightning"; 36215 + version = "4.2.1"; 36216 + src = fetchurl { 36217 + url = "https://registry.npmjs.org/lightning/-/lightning-4.2.1.tgz"; 36218 + sha512 = "ltYLcoJcGjL9yuBpoZfi8tLZ+SwInX3l/BrZIK1d14Wlk0dAu8jhLPClPDm0kt91HULpnynl/xxeOPVdQqdsHA=="; 36219 + }; 36220 + }; 36086 36221 "lilconfig-2.0.3" = { 36087 36222 name = "lilconfig"; 36088 36223 packageName = "lilconfig"; ··· 36227 36362 sha512 = "04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw=="; 36228 36363 }; 36229 36364 }; 36230 - "ln-accounting-5.0.0" = { 36365 + "ln-accounting-5.0.1" = { 36231 36366 name = "ln-accounting"; 36232 36367 packageName = "ln-accounting"; 36233 - version = "5.0.0"; 36368 + version = "5.0.1"; 36234 36369 src = fetchurl { 36235 - url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.0.tgz"; 36236 - sha512 = "iKvNJI8qRv5O7rI3m7ARXTg9fergI3AEx2RqnB3A/dTo80zt78+x57zyBw7WmqE/BiV5eJ4kyOw1lIx1N0eC1g=="; 36370 + url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.1.tgz"; 36371 + sha512 = "5hHO3/ZdKwVicDpgU0ElDnSqKSrqx9Cz7eD6r/3STjqLnLuOjj9/ILzPOgY3lPyD7j3gHifzuJg5dUx2Bxh0sg=="; 36237 36372 }; 36238 36373 }; 36239 36374 "ln-service-51.8.2" = { ··· 36263 36398 sha512 = "ETL/rpidWMS7nCsZoRb3/0vU5nk7RE1PRtn3YBnmUWJcdhjREPhQRLHm7/vZ+JFRdAwvW7V/lqCvOkDZXCKo6w=="; 36264 36399 }; 36265 36400 }; 36401 + "ln-service-52.0.3" = { 36402 + name = "ln-service"; 36403 + packageName = "ln-service"; 36404 + version = "52.0.3"; 36405 + src = fetchurl { 36406 + url = "https://registry.npmjs.org/ln-service/-/ln-service-52.0.3.tgz"; 36407 + sha512 = "upswAJU9Mrfh3l+q46rvmRu8Pf7iYR2vkKyq16dgiBgxKw7fzvI8aL2Xi0xrtyoRUOUODOyEzO7/MRRhNKcvMA=="; 36408 + }; 36409 + }; 36410 + "ln-service-52.1.0" = { 36411 + name = "ln-service"; 36412 + packageName = "ln-service"; 36413 + version = "52.1.0"; 36414 + src = fetchurl { 36415 + url = "https://registry.npmjs.org/ln-service/-/ln-service-52.1.0.tgz"; 36416 + sha512 = "xB+Si8fQoHpmJWQDA3JFVxs/xV/c26OU2NsnkIRcbNQagwQtSKV08fcwbfKs3tpZLHQiyzmKos4XF82TfYtzeA=="; 36417 + }; 36418 + }; 36266 36419 "ln-sync-0.4.7" = { 36267 36420 name = "ln-sync"; 36268 36421 packageName = "ln-sync"; ··· 37613 37766 sha1 = "ec6662e4896408ed4ab6c542a3990b72cc080020"; 37614 37767 }; 37615 37768 }; 37616 - "log-6.0.0" = { 37769 + "log-6.1.0" = { 37617 37770 name = "log"; 37618 37771 packageName = "log"; 37619 - version = "6.0.0"; 37772 + version = "6.1.0"; 37620 37773 src = fetchurl { 37621 - url = "https://registry.npmjs.org/log/-/log-6.0.0.tgz"; 37622 - sha512 = "sxChESNYJ/EcQv8C7xpmxhtTOngoXuMEqGDAkhXBEmt3MAzM3SM/TmIBOqnMEVdrOv1+VgZoYbo6U2GemQiU4g=="; 37774 + url = "https://registry.npmjs.org/log/-/log-6.1.0.tgz"; 37775 + sha512 = "ZulFTrSNfKd8AlMNhl2sQ/jphhTReGeYYsB/ABV1u3jADp2wedQ7+uhSaXlBdu3VMM5PS0ribMFb0UJMesaGng=="; 37623 37776 }; 37624 37777 }; 37625 37778 "log-driver-1.2.7" = { ··· 37631 37784 sha512 = "U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg=="; 37632 37785 }; 37633 37786 }; 37787 + "log-node-8.0.0" = { 37788 + name = "log-node"; 37789 + packageName = "log-node"; 37790 + version = "8.0.0"; 37791 + src = fetchurl { 37792 + url = "https://registry.npmjs.org/log-node/-/log-node-8.0.0.tgz"; 37793 + sha512 = "ogrmq+slTOCXG6TMgXxZ2lkfm00CrnO8LLgvqpvEzDhzJ/DmOCGj2AlSjEClk36k7S4k1HNw3WLwF2nqx15SKQ=="; 37794 + }; 37795 + }; 37634 37796 "log-process-errors-6.3.0" = { 37635 37797 name = "log-process-errors"; 37636 37798 packageName = "log-process-errors"; ··· 38099 38261 sha1 = "f35ca91c493f7b73da0e07495304f17b31f87ee5"; 38100 38262 }; 38101 38263 }; 38264 + "ltx-2.10.0" = { 38265 + name = "ltx"; 38266 + packageName = "ltx"; 38267 + version = "2.10.0"; 38268 + src = fetchurl { 38269 + url = "https://registry.npmjs.org/ltx/-/ltx-2.10.0.tgz"; 38270 + sha512 = "RB4zR6Mrp/0wTNS9WxMvpgfht/7u/8QAC9DpPD19opL/4OASPa28uoliFqeDkLUU8pQ4aeAfATBZmz1aSAHkMw=="; 38271 + }; 38272 + }; 38102 38273 "lunr-2.3.9" = { 38103 38274 name = "lunr"; 38104 38275 packageName = "lunr"; ··· 38117 38288 sha512 = "ZRioYLCgRHrtTORaZX1mx+jtxKtKuI5ZDvHNAmqpUzGqSrR+tL4FVLn/CUGMA3h0+AKD1MAxGI5GnCqR5txNqg=="; 38118 38289 }; 38119 38290 }; 38120 - "lzma-native-6.0.1" = { 38291 + "lzma-native-8.0.1" = { 38121 38292 name = "lzma-native"; 38122 38293 packageName = "lzma-native"; 38123 - version = "6.0.1"; 38294 + version = "8.0.1"; 38124 38295 src = fetchurl { 38125 - url = "https://registry.npmjs.org/lzma-native/-/lzma-native-6.0.1.tgz"; 38126 - sha512 = "O6oWF0xe1AFvOCjU8uOZBZ/lhjaMNwHfVNaqVMqmoQXlRwBcFWpCAToiZOdXcKVMdo/5s/D0a2QgA5laMErxHQ=="; 38296 + url = "https://registry.npmjs.org/lzma-native/-/lzma-native-8.0.1.tgz"; 38297 + sha512 = "Ryr9X3yDVZhRYOxR8QhUBCNe6GdEfy9BvFDIFtUvEkocvSvnrYt9lRm6FR1z0eQn0QSMenrgrDIJRMgUf9zsKQ=="; 38127 38298 }; 38128 38299 }; 38129 38300 "macaroon-3.0.4" = { ··· 39305 39476 sha512 = "QKFbPwGCh1ypmc2H8BUYpbapwT/x2AOCYZQogzSui4rUNes7WVMagQXsirPIfp18EarX0SSY9Fpg426nSjew4Q=="; 39306 39477 }; 39307 39478 }; 39308 - "memfs-3.2.2" = { 39479 + "memfs-3.2.4" = { 39309 39480 name = "memfs"; 39310 39481 packageName = "memfs"; 39311 - version = "3.2.2"; 39482 + version = "3.2.4"; 39312 39483 src = fetchurl { 39313 - url = "https://registry.npmjs.org/memfs/-/memfs-3.2.2.tgz"; 39314 - sha512 = "RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q=="; 39484 + url = "https://registry.npmjs.org/memfs/-/memfs-3.2.4.tgz"; 39485 + sha512 = "2mDCPhuduRPOxlfgsXF9V+uqC6Jgz8zt/bNe4d4W7d5f6pCzHrWkxLNr17jKGXd4+j2kQNsAG2HARPnt74sqVQ=="; 39315 39486 }; 39316 39487 }; 39317 39488 "memoize-one-5.2.1" = { ··· 39575 39746 sha512 = "TIurLf/ustQNMXi5foClGTcEsRvH6DCvxeAKu68OrwHMOSM/M1pgPXb7qe52Svk1ClvmZuAVpLtP5FWKzPr/sw=="; 39576 39747 }; 39577 39748 }; 39578 - "mermaid-8.12.0" = { 39749 + "mermaid-8.12.1" = { 39579 39750 name = "mermaid"; 39580 39751 packageName = "mermaid"; 39581 - version = "8.12.0"; 39752 + version = "8.12.1"; 39582 39753 src = fetchurl { 39583 - url = "https://registry.npmjs.org/mermaid/-/mermaid-8.12.0.tgz"; 39584 - sha512 = "YegtLgtdpnd+y7J9gfSfFkD7T3G7cXQ6orOL7x4jAx6SWyJSMAQIb34JBKuhagXNsi34nK6gpfHbv63Br7246g=="; 39754 + url = "https://registry.npmjs.org/mermaid/-/mermaid-8.12.1.tgz"; 39755 + sha512 = "0UCcSF0FLoNcPBsRF4f9OIV32t41fV18//z8o3S+FDz2PbDA1CRGKdQF9IX84VP4Tv9kcgJI/oqJdcBEtB/GPA=="; 39585 39756 }; 39586 39757 }; 39587 39758 "meros-1.1.4" = { ··· 40295 40466 sha512 = "6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA=="; 40296 40467 }; 40297 40468 }; 40298 - "minipass-fetch-1.3.4" = { 40469 + "minipass-fetch-1.4.1" = { 40299 40470 name = "minipass-fetch"; 40300 40471 packageName = "minipass-fetch"; 40301 - version = "1.3.4"; 40472 + version = "1.4.1"; 40302 40473 src = fetchurl { 40303 - url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.3.4.tgz"; 40304 - sha512 = "TielGogIzbUEtd1LsjZFs47RWuHHfhl6TiCx1InVxApBAmQ8bL0dL5ilkLGcRvuyW/A9nE+Lvn855Ewz8S0PnQ=="; 40474 + url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz"; 40475 + sha512 = "CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw=="; 40305 40476 }; 40306 40477 }; 40307 40478 "minipass-flush-1.0.5" = { ··· 40502 40673 sha512 = "sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw=="; 40503 40674 }; 40504 40675 }; 40505 - "mobx-6.3.2" = { 40676 + "mobx-6.3.3" = { 40506 40677 name = "mobx"; 40507 40678 packageName = "mobx"; 40508 - version = "6.3.2"; 40679 + version = "6.3.3"; 40509 40680 src = fetchurl { 40510 - url = "https://registry.npmjs.org/mobx/-/mobx-6.3.2.tgz"; 40511 - sha512 = "xGPM9dIE1qkK9Nrhevp0gzpsmELKU4MFUJRORW/jqxVFIHHWIoQrjDjL8vkwoJYY3C2CeVJqgvl38hgKTalTWg=="; 40681 + url = "https://registry.npmjs.org/mobx/-/mobx-6.3.3.tgz"; 40682 + sha512 = "JoNU50rO6d1wHwKPJqKq4rmUMbYnI9CsJmBo+Cu4exBYenFvIN77LWrZENpzW6reZPADtXMmB1DicbDSfy8Clw=="; 40512 40683 }; 40513 40684 }; 40514 40685 "mobx-react-7.2.0" = { ··· 40520 40691 sha512 = "KHUjZ3HBmZlNnPd1M82jcdVsQRDlfym38zJhZEs33VxyVQTvL77hODCArq6+C1P1k/6erEeo2R7rpE7ZeOL7dg=="; 40521 40692 }; 40522 40693 }; 40523 - "mobx-react-lite-3.2.0" = { 40694 + "mobx-react-lite-3.2.1" = { 40524 40695 name = "mobx-react-lite"; 40525 40696 packageName = "mobx-react-lite"; 40526 - version = "3.2.0"; 40697 + version = "3.2.1"; 40527 40698 src = fetchurl { 40528 - url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.2.0.tgz"; 40529 - sha512 = "q5+UHIqYCOpBoFm/PElDuOhbcatvTllgRp3M1s+Hp5j0Z6XNgDbgqxawJ0ZAUEyKM8X1zs70PCuhAIzX1f4Q/g=="; 40699 + url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.2.1.tgz"; 40700 + sha512 = "hwURgfmP2apX3HQrB55V9DN47kuN3C6KlQvI5UIfJRibXma72C/JudcNt2r9dWjAdFMrcZoz1ivvtXMCkJ2aQA=="; 40530 40701 }; 40531 40702 }; 40532 40703 "mocha-2.5.3" = { ··· 40556 40727 sha512 = "hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ=="; 40557 40728 }; 40558 40729 }; 40559 - "mocha-9.1.0" = { 40730 + "mocha-9.1.1" = { 40560 40731 name = "mocha"; 40561 40732 packageName = "mocha"; 40562 - version = "9.1.0"; 40733 + version = "9.1.1"; 40563 40734 src = fetchurl { 40564 - url = "https://registry.npmjs.org/mocha/-/mocha-9.1.0.tgz"; 40565 - sha512 = "Kjg/XxYOFFUi0h/FwMOeb6RoroiZ+P1yOfya6NK7h3dNhahrJx1r2XIT3ge4ZQvJM86mdjNA+W5phqRQh7DwCg=="; 40735 + url = "https://registry.npmjs.org/mocha/-/mocha-9.1.1.tgz"; 40736 + sha512 = "0wE74YMgOkCgBUj8VyIDwmLUjTsS13WV1Pg7l0SHea2qzZzlq7MDnfbPsHKcELBRk3+izEVkRofjmClpycudCA=="; 40566 40737 }; 40567 40738 }; 40568 40739 "mock-require-3.0.3" = { ··· 40619 40790 sha1 = "114c949673e2a8a35e9d35788527aa37b679da2b"; 40620 40791 }; 40621 40792 }; 40622 - "moize-6.0.3" = { 40793 + "moize-6.1.0" = { 40623 40794 name = "moize"; 40624 40795 packageName = "moize"; 40625 - version = "6.0.3"; 40796 + version = "6.1.0"; 40626 40797 src = fetchurl { 40627 - url = "https://registry.npmjs.org/moize/-/moize-6.0.3.tgz"; 40628 - sha512 = "7Jz9TSiqW9G2u8HwUWnaBQMFMPLblrWKEiWN4BA/GPOfQlsnfQqq0yRnTGHckGPlKApA9Eu1HPb/eTqvK9EtKg=="; 40798 + url = "https://registry.npmjs.org/moize/-/moize-6.1.0.tgz"; 40799 + sha512 = "WrMcM+C2Jy+qyOC/UMhA3BCHGowxV34dhDZnDNfxsREW/8N+33SFjmc23Q61Xv1WUthUA1vYopTitP1sZ5jkeg=="; 40629 40800 }; 40630 40801 }; 40631 40802 "mold-source-map-0.4.0" = { ··· 41717 41888 sha512 = "4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg=="; 41718 41889 }; 41719 41890 }; 41720 - "needle-2.9.0" = { 41891 + "needle-2.9.1" = { 41721 41892 name = "needle"; 41722 41893 packageName = "needle"; 41723 - version = "2.9.0"; 41894 + version = "2.9.1"; 41724 41895 src = fetchurl { 41725 - url = "https://registry.npmjs.org/needle/-/needle-2.9.0.tgz"; 41726 - sha512 = "UBLC4P8w9to3rAhWOQYXIXzTUio9yVnDzIeKxfGbF+Hngy+2bXTqqFK+6nF42EAQKfJdezXK6vzMsefUa1Y3ag=="; 41896 + url = "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz"; 41897 + sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; 41727 41898 }; 41728 41899 }; 41729 41900 "negotiator-0.3.0" = { ··· 42051 42222 sha512 = "0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q=="; 42052 42223 }; 42053 42224 }; 42054 - "node-abi-2.30.0" = { 42225 + "node-abi-2.30.1" = { 42055 42226 name = "node-abi"; 42056 42227 packageName = "node-abi"; 42057 - version = "2.30.0"; 42228 + version = "2.30.1"; 42058 42229 src = fetchurl { 42059 - url = "https://registry.npmjs.org/node-abi/-/node-abi-2.30.0.tgz"; 42060 - sha512 = "g6bZh3YCKQRdwuO/tSZZYJAw622SjsRfJ2X0Iy4sSOHZ34/sPPdVBn8fev2tj7njzLwuqPw9uMtGsGkO5kIQvg=="; 42230 + url = "https://registry.npmjs.org/node-abi/-/node-abi-2.30.1.tgz"; 42231 + sha512 = "/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w=="; 42061 42232 }; 42062 42233 }; 42063 42234 "node-addon-api-1.7.2" = { ··· 42103 42274 src = fetchurl { 42104 42275 url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz"; 42105 42276 sha512 = "mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A=="; 42277 + }; 42278 + }; 42279 + "node-api-version-0.1.4" = { 42280 + name = "node-api-version"; 42281 + packageName = "node-api-version"; 42282 + version = "0.1.4"; 42283 + src = fetchurl { 42284 + url = "https://registry.npmjs.org/node-api-version/-/node-api-version-0.1.4.tgz"; 42285 + sha512 = "KGXihXdUChwJAOHO53bv9/vXcLmdUsZ6jIptbvYvkpKfth+r7jw44JkVxQFA3kX5nQjzjmGu1uAu/xNNLNlI5g=="; 42106 42286 }; 42107 42287 }; 42108 42288 "node-appc-1.1.2" = { ··· 42239 42419 src = fetchurl { 42240 42420 url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz"; 42241 42421 sha512 = "V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="; 42422 + }; 42423 + }; 42424 + "node-fetch-2.6.2" = { 42425 + name = "node-fetch"; 42426 + packageName = "node-fetch"; 42427 + version = "2.6.2"; 42428 + src = fetchurl { 42429 + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.2.tgz"; 42430 + sha512 = "aLoxToI6RfZ+0NOjmWAgn9+LEd30YCkJKFSyWacNZdEKTit/ZMcKjGkTRo8uWEsnIb/hfKecNPEbln02PdWbcA=="; 42242 42431 }; 42243 42432 }; 42244 42433 "node-fetch-h2-2.3.0" = { ··· 43150 43339 sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg=="; 43151 43340 }; 43152 43341 }; 43153 - "npmlog-5.0.0" = { 43342 + "npmlog-5.0.1" = { 43154 43343 name = "npmlog"; 43155 43344 packageName = "npmlog"; 43156 - version = "5.0.0"; 43345 + version = "5.0.1"; 43157 43346 src = fetchurl { 43158 - url = "https://registry.npmjs.org/npmlog/-/npmlog-5.0.0.tgz"; 43159 - sha512 = "ftpIiLjerL2tUg3dCqN8pOSoB90gqZlzv/gaZoxHaKjeLClrfJIEQ1Pdxi6qSzflz916Bljdy8dTWQ4J7hAFSQ=="; 43347 + url = "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz"; 43348 + sha512 = "AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw=="; 43160 43349 }; 43161 43350 }; 43162 43351 "nprogress-0.2.0" = { ··· 43518 43707 src = fetchurl { 43519 43708 url = "https://registry.npmjs.org/object-path/-/object-path-0.11.5.tgz"; 43520 43709 sha512 = "jgSbThcoR/s+XumvGMTMf81QVBmah+/Q7K7YduKeKVWL7N111unR2d6pZZarSk6kY/caeNxUDyxOvMWyzoU2eg=="; 43710 + }; 43711 + }; 43712 + "object-path-0.11.7" = { 43713 + name = "object-path"; 43714 + packageName = "object-path"; 43715 + version = "0.11.7"; 43716 + src = fetchurl { 43717 + url = "https://registry.npmjs.org/object-path/-/object-path-0.11.7.tgz"; 43718 + sha512 = "T4evaK9VfGGQskXBDILcn6F90ZD+WO3OwRFFQ2rmZdUH4vQeDBpiolTpVlPY2yj5xSepyILTjDyM6UvbbdHMZw=="; 43521 43719 }; 43522 43720 }; 43523 43721 "object-to-arguments-0.0.8" = { ··· 43718 43916 sha512 = "0HGaSR/E/seIhSzFxLkh0QqckuNSre4iGqSElZRUv1hVHH2YgrZ7xtQL9McwL8o1fh6HqkzykjUx0Iy2haVIUg=="; 43719 43917 }; 43720 43918 }; 43721 - "office-ui-fabric-react-7.174.1" = { 43919 + "office-ui-fabric-react-7.175.2" = { 43722 43920 name = "office-ui-fabric-react"; 43723 43921 packageName = "office-ui-fabric-react"; 43724 - version = "7.174.1"; 43922 + version = "7.175.2"; 43725 43923 src = fetchurl { 43726 - url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.174.1.tgz"; 43727 - sha512 = "zRUpUqZtVncvb+Tt+5SVNEcI3MfpwTLU+v2u7ZdF9ukPbD+UBKJSkIbydyO0P2S5jVizgdqioSOarfUA70ICvw=="; 43924 + url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.175.2.tgz"; 43925 + sha512 = "8D57MG+F4m8aTbV4M9oeFQNdu8NNYSV8yI9wSL20FmdeYSCddqhrxW/JqivJMiDBn1Y4+dnjXLRahudUbePBQQ=="; 43728 43926 }; 43729 43927 }; 43730 43928 "omggif-1.0.10" = { ··· 43997 44195 sha512 = "wRqgsLfZB3LXx8l3RfKo8icdDPDucnrRD2EkygTMiUv5W1/OdZJmo1ChgD6FjQUZH/7U67IxEjnXPEWfnu+dRw=="; 43998 44196 }; 43999 44197 }; 44000 - "openapi-default-setter-8.0.0" = { 44001 - name = "openapi-default-setter"; 44002 - packageName = "openapi-default-setter"; 44003 - version = "8.0.0"; 44004 - src = fetchurl { 44005 - url = "https://registry.npmjs.org/openapi-default-setter/-/openapi-default-setter-8.0.0.tgz"; 44006 - sha512 = "Ro0hg8w+lTPe18r5noVUjHgYMXZ3mPe5evW6fA0hdahqLns444wR/Cuvcykb/FHteqaq0WooQrsoKObO4lIHWA=="; 44007 - }; 44008 - }; 44009 44198 "openapi-framework-0.26.0" = { 44010 44199 name = "openapi-framework"; 44011 44200 packageName = "openapi-framework"; ··· 44024 44213 sha512 = "t+sGVNMs2apX6d/rf5oq/3S6tCyBTgCjgFY0EDEIKKWepO4v3wM+kjy/Ve9iU92Ui5GeWbGR6ceFKY6VP/OKfQ=="; 44025 44214 }; 44026 44215 }; 44027 - "openapi-framework-8.0.0" = { 44028 - name = "openapi-framework"; 44029 - packageName = "openapi-framework"; 44030 - version = "8.0.0"; 44031 - src = fetchurl { 44032 - url = "https://registry.npmjs.org/openapi-framework/-/openapi-framework-8.0.0.tgz"; 44033 - sha512 = "T9rP8onTa5xU+7+FCiiBO/p0DLjbHlcfhu+8yUEWFlmlCyihqjbsH0YiH7cCQYNOLgKZUCQZOaxJDiYBlVIaQQ=="; 44034 - }; 44035 - }; 44036 44216 "openapi-jsonschema-parameters-1.2.0" = { 44037 44217 name = "openapi-jsonschema-parameters"; 44038 44218 packageName = "openapi-jsonschema-parameters"; ··· 44051 44231 sha512 = "hnhuSbyB0gwA2KrDmMve0A+XC3rqhiQwlvOpZ+kGDz9nWqgLgFJA582LpA4V1W+nI3WruS0nEkAvfG8EHKD+qQ=="; 44052 44232 }; 44053 44233 }; 44054 - "openapi-jsonschema-parameters-8.0.0" = { 44055 - name = "openapi-jsonschema-parameters"; 44056 - packageName = "openapi-jsonschema-parameters"; 44057 - version = "8.0.0"; 44058 - src = fetchurl { 44059 - url = "https://registry.npmjs.org/openapi-jsonschema-parameters/-/openapi-jsonschema-parameters-8.0.0.tgz"; 44060 - sha512 = "yBBShgxPyo1M33q6RHNAvhTH6AydMDyDl7e89YUA/VkAf1wrU2HO/7Nok65R0vGbZFF43yml4i8sIak3GGnqVA=="; 44061 - }; 44062 - }; 44063 44234 "openapi-request-coercer-2.4.0" = { 44064 44235 name = "openapi-request-coercer"; 44065 44236 packageName = "openapi-request-coercer"; ··· 44078 44249 sha512 = "wvrh3xSEpmgKaHiAnVhPxL6Yp9IXW+NEI192z6X5RiU6xe+jszn6A3v8vJcceyNsvDBA4tkm4I3mFndDlhc6Zw=="; 44079 44250 }; 44080 44251 }; 44081 - "openapi-request-coercer-8.0.0" = { 44082 - name = "openapi-request-coercer"; 44083 - packageName = "openapi-request-coercer"; 44084 - version = "8.0.0"; 44085 - src = fetchurl { 44086 - url = "https://registry.npmjs.org/openapi-request-coercer/-/openapi-request-coercer-8.0.0.tgz"; 44087 - sha512 = "CTWZJT6rAPiLO7kvBpN9CJ7TXbCTlZzE7Z/Id/gegK/5FlxYIoB+ybx4tYC4IwJEjfm/lxY7Xv2CRp6RLJfKPw=="; 44088 - }; 44089 - }; 44090 44252 "openapi-request-validator-4.2.0" = { 44091 44253 name = "openapi-request-validator"; 44092 44254 packageName = "openapi-request-validator"; ··· 44105 44267 sha512 = "0rnslY82Btw5nM6rUEuXkvupav4ujvP+e9WziZvcMrE+VZ6IxRGDP8F7w0XmtPBwMS2nJGgt/J7BnRXAFTx5tw=="; 44106 44268 }; 44107 44269 }; 44108 - "openapi-request-validator-8.0.0" = { 44109 - name = "openapi-request-validator"; 44110 - packageName = "openapi-request-validator"; 44111 - version = "8.0.0"; 44112 - src = fetchurl { 44113 - url = "https://registry.npmjs.org/openapi-request-validator/-/openapi-request-validator-8.0.0.tgz"; 44114 - sha512 = "7gqNp4MvYu+pbdbq8Pw0qMsKqlhWQeYdKCHiu1OeOgBG8YkjlNGGeTuX028TsBEB/jGw7PgMCggaHuMl/W3bmQ=="; 44115 - }; 44116 - }; 44117 44270 "openapi-response-validator-4.0.0" = { 44118 44271 name = "openapi-response-validator"; 44119 44272 packageName = "openapi-response-validator"; ··· 44132 44285 sha512 = "Su8jA45PhegUgJnEAT15DYt2spPJgvjyTtXqg+Lw5AtGePfcQskV6ACEzsL0XPoAXIFf09Vx6sBor9pek+tl+Q=="; 44133 44286 }; 44134 44287 }; 44135 - "openapi-response-validator-8.0.0" = { 44136 - name = "openapi-response-validator"; 44137 - packageName = "openapi-response-validator"; 44138 - version = "8.0.0"; 44139 - src = fetchurl { 44140 - url = "https://registry.npmjs.org/openapi-response-validator/-/openapi-response-validator-8.0.0.tgz"; 44141 - sha512 = "h41hcEIgT7ldowLafcWlaE2m3+ss9IgRRrBfEzTtdBab2SyefYeXBV5keicL/muC1msmhT2p2rftjQnvfQN2jA=="; 44142 - }; 44143 - }; 44144 44288 "openapi-sampler-1.1.0" = { 44145 44289 name = "openapi-sampler"; 44146 44290 packageName = "openapi-sampler"; ··· 44166 44310 src = fetchurl { 44167 44311 url = "https://registry.npmjs.org/openapi-schema-validator/-/openapi-schema-validator-7.2.3.tgz"; 44168 44312 sha512 = "XT8NM5e/zBBa/cydTS1IeYkCPzJp9oixvt9Y1lEx+2gsCTOooNxw9x/KEivtWMSokne7X1aR+VtsYHQtNNOSyA=="; 44169 - }; 44170 - }; 44171 - "openapi-schema-validator-8.0.0" = { 44172 - name = "openapi-schema-validator"; 44173 - packageName = "openapi-schema-validator"; 44174 - version = "8.0.0"; 44175 - src = fetchurl { 44176 - url = "https://registry.npmjs.org/openapi-schema-validator/-/openapi-schema-validator-8.0.0.tgz"; 44177 - sha512 = "cxacCVE/pIhlfzDPjhMREEVgWsFFUxU/+bKU258LKDmgXcdbbajtWtRT63VarXPnQ0sS4Bhl3V4ZKWxdJMiOXA=="; 44178 44313 }; 44179 44314 }; 44180 44315 "openapi-security-handler-2.0.4" = { ··· 44195 44330 sha512 = "6wC2MXUv/FOy6uK6kkvPx1Pmh4WI3rpj7fsA1jwKCIPMwVcaJQA7/4Cfw3VWMNF0mVz7Nlxt9/aiziXHSOfiLg=="; 44196 44331 }; 44197 44332 }; 44198 - "openapi-security-handler-8.0.0" = { 44199 - name = "openapi-security-handler"; 44200 - packageName = "openapi-security-handler"; 44201 - version = "8.0.0"; 44202 - src = fetchurl { 44203 - url = "https://registry.npmjs.org/openapi-security-handler/-/openapi-security-handler-8.0.0.tgz"; 44204 - sha512 = "XWD15AQSZA3OQFS1gqupC9KoxOuUacyG8PUEna91sihPvZdO5lVcAfqHkJ1tqOKcn5k8Y8EsSoCwlr0d5njCaw=="; 44205 - }; 44206 - }; 44207 44333 "openapi-to-graphql-2.2.5" = { 44208 44334 name = "openapi-to-graphql"; 44209 44335 packageName = "openapi-to-graphql"; ··· 44247 44373 src = fetchurl { 44248 44374 url = "https://registry.npmjs.org/openapi-types/-/openapi-types-7.2.3.tgz"; 44249 44375 sha512 = "olbaNxz12R27+mTyJ/ZAFEfUruauHH27AkeQHDHRq5AF0LdNkK1SSV7EourXQDK+4aX7dv2HtyirAGK06WMAsA=="; 44250 - }; 44251 - }; 44252 - "openapi-types-8.0.0" = { 44253 - name = "openapi-types"; 44254 - packageName = "openapi-types"; 44255 - version = "8.0.0"; 44256 - src = fetchurl { 44257 - url = "https://registry.npmjs.org/openapi-types/-/openapi-types-8.0.0.tgz"; 44258 - sha512 = "dcHYyCDOAy4QQTrur5Sn1L3lPVspB7rd04Rw/Q7AsMvfV797IiWgmKziFCbq8VhnBoREU/SPPSBDxtK9Biwa1g=="; 44259 44376 }; 44260 44377 }; 44261 44378 "openapi3-ts-2.0.1" = { ··· 46697 46814 sha1 = "084b5093ddc92506e259f874b8d9b1afb8c79593"; 46698 46815 }; 46699 46816 }; 46700 - "plist-3.0.3" = { 46817 + "plist-3.0.4" = { 46701 46818 name = "plist"; 46702 46819 packageName = "plist"; 46703 - version = "3.0.3"; 46820 + version = "3.0.4"; 46704 46821 src = fetchurl { 46705 - url = "https://registry.npmjs.org/plist/-/plist-3.0.3.tgz"; 46706 - sha512 = "ghdOKN99hh1oEmAlwBmPYo4L+tSQ7O3jRpkhWqOrMz86CWotpVzMevvQ+czo7oPDpOZyA6K06Ci7QVHpoh9gaA=="; 46822 + url = "https://registry.npmjs.org/plist/-/plist-3.0.4.tgz"; 46823 + sha512 = "ksrr8y9+nXOxQB2osVNqrgvX/XQPOXaU4BQMKjYq8PvaY1U18mo+fKgBSwzK+luSyinOuPae956lSVcBwxlAMg=="; 46707 46824 }; 46708 46825 }; 46709 46826 "plist-with-patches-0.5.1" = { ··· 49596 49713 sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; 49597 49714 }; 49598 49715 }; 49599 - "pyright-1.1.163" = { 49716 + "pyright-1.1.166" = { 49600 49717 name = "pyright"; 49601 49718 packageName = "pyright"; 49602 - version = "1.1.163"; 49719 + version = "1.1.166"; 49603 49720 src = fetchurl { 49604 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.163.tgz"; 49605 - sha512 = "CU0WPzr+6ZKIqCqqVrOtxMFWdzdOV18zKmC7dVBzp3snuun8JafnnmUzNJpO8IJLN/bQNSLb3riLtXFM/8Xxbg=="; 49721 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.166.tgz"; 49722 + sha512 = "mO+iPT2dhHzlplAV3iKE6u4gUstGZxxLyMSRd1PKZqWhwhTCCGjn3/7VqbAwUt4fuhY8g0V+SAsu+MPT4H3FvQ=="; 49606 49723 }; 49607 49724 }; 49608 49725 "q-0.9.7" = { ··· 50397 50514 sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; 50398 50515 }; 50399 50516 }; 50400 - "react-devtools-core-4.17.0" = { 50517 + "react-devtools-core-4.18.0" = { 50401 50518 name = "react-devtools-core"; 50402 50519 packageName = "react-devtools-core"; 50403 - version = "4.17.0"; 50520 + version = "4.18.0"; 50404 50521 src = fetchurl { 50405 - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.17.0.tgz"; 50406 - sha512 = "+9/aF7Gc8gswkAsoyUyQdIrhKHY/hOaMdK0oPIHuxzckJC5Cd4R1Mx75DKaqn84znwrYvXQ65kAseA+X44jMTw=="; 50522 + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.18.0.tgz"; 50523 + sha512 = "Kg/LhDkdt9J0ned1D1RfeuSdX4cKW83/valJLYswGdsYc0g2msmD0kfYozsaRacjDoZwcKlxGOES1wrkET5O6Q=="; 50407 50524 }; 50408 50525 }; 50409 50526 "react-dom-16.14.0" = { ··· 50676 50793 sha512 = "aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng=="; 50677 50794 }; 50678 50795 }; 50679 - "read-package-json-4.0.1" = { 50796 + "read-package-json-4.1.1" = { 50680 50797 name = "read-package-json"; 50681 50798 packageName = "read-package-json"; 50682 - version = "4.0.1"; 50799 + version = "4.1.1"; 50683 50800 src = fetchurl { 50684 - url = "https://registry.npmjs.org/read-package-json/-/read-package-json-4.0.1.tgz"; 50685 - sha512 = "czqCcYfkEl6sIFJVOND/5/Goseu7cVw1rcDUATq6ED0jLGjMm9/HOPmFmEZMvRu9yl272YERaMUcOlvcNU9InQ=="; 50801 + url = "https://registry.npmjs.org/read-package-json/-/read-package-json-4.1.1.tgz"; 50802 + sha512 = "P82sbZJ3ldDrWCOSKxJT0r/CXMWR0OR3KRh55SgKo3p91GSIEEC32v3lSHAvO/UcH3/IoL7uqhOFBduAnwdldw=="; 50686 50803 }; 50687 50804 }; 50688 50805 "read-package-json-fast-2.0.3" = { ··· 52332 52449 sha512 = "fimzjIVw506FBZLspTAXHdpvgvQebyjpNyLRd0e6drPPRq7gcrROeGWRyF81wLqFg5ijPgnOQbmfck5wdTqpSA=="; 52333 52450 }; 52334 52451 }; 52452 + "request-light-0.5.4" = { 52453 + name = "request-light"; 52454 + packageName = "request-light"; 52455 + version = "0.5.4"; 52456 + src = fetchurl { 52457 + url = "https://registry.npmjs.org/request-light/-/request-light-0.5.4.tgz"; 52458 + sha512 = "t3566CMweOFlUk7Y1DJMu5OrtpoZEb6aSTsLQVT3wtrIEJ5NhcY9G/Oqxvjllzl4a15zXfFlcr9q40LbLVQJqw=="; 52459 + }; 52460 + }; 52335 52461 "request-progress-2.0.1" = { 52336 52462 name = "request-progress"; 52337 52463 packageName = "request-progress"; ··· 52539 52665 sha512 = "W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q=="; 52540 52666 }; 52541 52667 }; 52542 - "resolve-alpn-1.2.0" = { 52668 + "resolve-alpn-1.2.1" = { 52543 52669 name = "resolve-alpn"; 52544 52670 packageName = "resolve-alpn"; 52545 - version = "1.2.0"; 52671 + version = "1.2.1"; 52546 52672 src = fetchurl { 52547 - url = "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.0.tgz"; 52548 - sha512 = "e4FNQs+9cINYMO5NMFc6kOUCdohjqFPSgMuwuZAOUWqrfWsen+Yjy5qZFkV5K7VO7tFSLKcUL97olkED7sCBHA=="; 52673 + url = "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz"; 52674 + sha512 = "0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="; 52549 52675 }; 52550 52676 }; 52551 52677 "resolve-cwd-2.0.0" = { ··· 53637 53763 sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg=="; 53638 53764 }; 53639 53765 }; 53640 - "sass-1.38.1" = { 53766 + "sasl-anonymous-0.1.0" = { 53767 + name = "sasl-anonymous"; 53768 + packageName = "sasl-anonymous"; 53769 + version = "0.1.0"; 53770 + src = fetchurl { 53771 + url = "https://registry.npmjs.org/sasl-anonymous/-/sasl-anonymous-0.1.0.tgz"; 53772 + sha1 = "f544c7e824df2a40d9ad4733829572cc8d9ed5a5"; 53773 + }; 53774 + }; 53775 + "sasl-plain-0.1.0" = { 53776 + name = "sasl-plain"; 53777 + packageName = "sasl-plain"; 53778 + version = "0.1.0"; 53779 + src = fetchurl { 53780 + url = "https://registry.npmjs.org/sasl-plain/-/sasl-plain-0.1.0.tgz"; 53781 + sha1 = "cf145e7c02222b64d60c0806d9cd2ae5380426cc"; 53782 + }; 53783 + }; 53784 + "sasl-scram-sha-1-1.2.1" = { 53785 + name = "sasl-scram-sha-1"; 53786 + packageName = "sasl-scram-sha-1"; 53787 + version = "1.2.1"; 53788 + src = fetchurl { 53789 + url = "https://registry.npmjs.org/sasl-scram-sha-1/-/sasl-scram-sha-1-1.2.1.tgz"; 53790 + sha1 = "d88d51feaa0ff320d8eb1d6fc75657653f9dcd4b"; 53791 + }; 53792 + }; 53793 + "saslmechanisms-0.1.1" = { 53794 + name = "saslmechanisms"; 53795 + packageName = "saslmechanisms"; 53796 + version = "0.1.1"; 53797 + src = fetchurl { 53798 + url = "https://registry.npmjs.org/saslmechanisms/-/saslmechanisms-0.1.1.tgz"; 53799 + sha1 = "478be1429500fcfaa780be88b3343ced7d2a9182"; 53800 + }; 53801 + }; 53802 + "sass-1.39.0" = { 53641 53803 name = "sass"; 53642 53804 packageName = "sass"; 53643 - version = "1.38.1"; 53805 + version = "1.39.0"; 53644 53806 src = fetchurl { 53645 - url = "https://registry.npmjs.org/sass/-/sass-1.38.1.tgz"; 53646 - sha512 = "Lj8nPaSYOuRhgqdyShV50fY5jKnvaRmikUNalMPmbH+tKMGgEKVkltI/lP30PEfO2T1t6R9yc2QIBLgOc3uaFw=="; 53807 + url = "https://registry.npmjs.org/sass/-/sass-1.39.0.tgz"; 53808 + sha512 = "F4o+RhJkNOIG0b6QudYU8c78ZADKZjKDk5cyrf8XTKWfrgbtyVVXImFstJrc+1pkQDCggyidIOytq6gS4gCCZg=="; 53647 53809 }; 53648 53810 }; 53649 53811 "sax-0.5.8" = { ··· 54798 54960 sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg=="; 54799 54961 }; 54800 54962 }; 54801 - "simple-git-2.44.0" = { 54963 + "simple-git-2.45.1" = { 54802 54964 name = "simple-git"; 54803 54965 packageName = "simple-git"; 54804 - version = "2.44.0"; 54966 + version = "2.45.1"; 54805 54967 src = fetchurl { 54806 - url = "https://registry.npmjs.org/simple-git/-/simple-git-2.44.0.tgz"; 54807 - sha512 = "wIjcAmymhzgdaM0Y/a+XxmNGlivvHQTPZDYXVmyHMShVDwdeVqu3+OOyDbYu0DnfVzqLs2EOxRTgMNbC3YquwQ=="; 54968 + url = "https://registry.npmjs.org/simple-git/-/simple-git-2.45.1.tgz"; 54969 + sha512 = "NmEoThiLTJxl26WNtZxtJTue18ReTcSrf3so5vJG/O8KY9uMxH+yAhXV/DElBJyOYZrrBbVsH8JOFxgENdc9Xg=="; 54808 54970 }; 54809 54971 }; 54810 54972 "simple-handshake-3.0.0" = { ··· 54816 54978 sha512 = "8Te0vlxvhpNCMgwnWFTbRR6Re2l8hq8wyXQc3lY9dPYXFxYwVkh79LhDQHFCOWRavmbiOdfqq1l5HT/73Rn2/w=="; 54817 54979 }; 54818 54980 }; 54819 - "simple-hypercore-protocol-2.1.1" = { 54981 + "simple-hypercore-protocol-2.1.2" = { 54820 54982 name = "simple-hypercore-protocol"; 54821 54983 packageName = "simple-hypercore-protocol"; 54822 - version = "2.1.1"; 54984 + version = "2.1.2"; 54823 54985 src = fetchurl { 54824 - url = "https://registry.npmjs.org/simple-hypercore-protocol/-/simple-hypercore-protocol-2.1.1.tgz"; 54825 - sha512 = "xKuomRCfDDf+r6PDOD3RD88cjOLcbJ0E3Iz9Z+daB4Sq3FVv6efKYsOytgzTfSZMzkszF9EpYHGIILdVI669qA=="; 54986 + url = "https://registry.npmjs.org/simple-hypercore-protocol/-/simple-hypercore-protocol-2.1.2.tgz"; 54987 + sha512 = "zCwEMw/Evd5iDPkVEjO+1T3OJqbuDukJSuZtMZ7A7Wfn0RxmaJFbwngfUnDNyQFbPMxiINNxGBMD85fFJF8ghA=="; 54826 54988 }; 54827 54989 }; 54828 54990 "simple-markdown-0.4.4" = { ··· 55149 55311 sha512 = "FkMq+MQc5hzYgM86nLuHI98Acwi3p4wX+a5BO9Hhw4JdK4L7WueIiZ4tXEobImPqBz2sVcV0+Mu3GRB30IGang=="; 55150 55312 }; 55151 55313 }; 55152 - "smart-buffer-1.1.15" = { 55153 - name = "smart-buffer"; 55154 - packageName = "smart-buffer"; 55155 - version = "1.1.15"; 55156 - src = fetchurl { 55157 - url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz"; 55158 - sha1 = "7f114b5b65fab3e2a35aa775bb12f0d1c649bf16"; 55159 - }; 55160 - }; 55161 55314 "smart-buffer-4.2.0" = { 55162 55315 name = "smart-buffer"; 55163 55316 packageName = "smart-buffer"; ··· 55347 55500 sha512 = "+vDov/aTsLjViYTwS9fPy5pEtTkrbEKsw2M+oVSoFGw6OD1IpvlV1VPhUzNbofCQ8oyMbdYJqDtGdmHQK6TdPg=="; 55348 55501 }; 55349 55502 }; 55350 - "socket.io-adapter-2.3.1" = { 55503 + "socket.io-adapter-2.3.2" = { 55351 55504 name = "socket.io-adapter"; 55352 55505 packageName = "socket.io-adapter"; 55353 - version = "2.3.1"; 55506 + version = "2.3.2"; 55354 55507 src = fetchurl { 55355 - url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.1.tgz"; 55356 - sha512 = "8cVkRxI8Nt2wadkY6u60Y4rpW3ejA1rxgcK2JuyIhmF+RMNpTy1QRtkHIDUOf3B4HlQwakMsWbKftMv/71VMmw=="; 55508 + url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.2.tgz"; 55509 + sha512 = "PBZpxUPYjmoogY0aoaTmo1643JelsaS1CiAwNjRVdrI0X9Seuc19Y2Wife8k88avW6haG8cznvwbubAZwH4Mtg=="; 55357 55510 }; 55358 55511 }; 55359 55512 "socket.io-client-1.0.6" = { ··· 55462 55615 src = fetchurl { 55463 55616 url = "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz"; 55464 55617 sha512 = "ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ=="; 55465 - }; 55466 - }; 55467 - "socks-1.1.10" = { 55468 - name = "socks"; 55469 - packageName = "socks"; 55470 - version = "1.1.10"; 55471 - src = fetchurl { 55472 - url = "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz"; 55473 - sha1 = "5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a"; 55474 55618 }; 55475 55619 }; 55476 55620 "socks-2.6.1" = { ··· 56607 56751 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 56608 56752 }; 56609 56753 }; 56610 - "sscaff-1.2.54" = { 56754 + "sscaff-1.2.63" = { 56611 56755 name = "sscaff"; 56612 56756 packageName = "sscaff"; 56613 - version = "1.2.54"; 56757 + version = "1.2.63"; 56614 56758 src = fetchurl { 56615 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.54.tgz"; 56616 - sha512 = "092MKLW//UTJIFc8dnugvXKMgGsyiY/PP2C6MP1ThFRtwg58vH6TOfkVYo2OMxFqP7yBWJsc7VyIkzl8EiXpdQ=="; 56759 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.63.tgz"; 56760 + sha512 = "7T/JlrjNIc7kD+3mBvfE3JEpOAV0qstAEbCy3WOrMHWcgROAOESA9llkqQPcDQZB9bRV8JLqQIAgqVtpwljFOw=="; 56617 56761 }; 56618 56762 }; 56619 56763 "ssh-config-1.1.6" = { ··· 58281 58425 sha512 = "mDAmaltQl6e5zU2VEtoWEf7eLTfuOTGr9zt+BpA3AGHo8MIhKiNSPE9OLTCTOMgj0vj/uL9QBbaNmpG4G1CgIA=="; 58282 58426 }; 58283 58427 }; 58284 - "svelte-preprocess-4.8.0" = { 58428 + "svelte-preprocess-4.9.2" = { 58285 58429 name = "svelte-preprocess"; 58286 58430 packageName = "svelte-preprocess"; 58287 - version = "4.8.0"; 58431 + version = "4.9.2"; 58288 58432 src = fetchurl { 58289 - url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.8.0.tgz"; 58290 - sha512 = "i9Z17cwGlp+kuSSv3kJWdAdAP2L26A5yMzHHdDj8YL+86sN64Yz5/gfjQp3Xb6fiaToo4sB+wTpid/23Gz0yvw=="; 58433 + url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.9.2.tgz"; 58434 + sha512 = "Eu/09bEpcBD8a9pGxcILEAZssXifnWoi5ad5GgUAgoT4alblNikOIpKrWDFkepMqjgioXciWbIZOROoTX3ZLdA=="; 58291 58435 }; 58292 58436 }; 58293 58437 "svelte2tsx-0.4.5" = { ··· 58443 58587 sha512 = "xk5CMbwoQVI53rTq9o/iMojAqXP5NT4/+TMeTP4uXWDIH18pB9AXgO5Olqt0RXuf3jH032DA4DS4qzem6XdXAw=="; 58444 58588 }; 58445 58589 }; 58446 - "swagger-ui-dist-3.51.2" = { 58447 - name = "swagger-ui-dist"; 58448 - packageName = "swagger-ui-dist"; 58449 - version = "3.51.2"; 58450 - src = fetchurl { 58451 - url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.51.2.tgz"; 58452 - sha512 = "7aDfpvGrya61WQN4Eb6x5TELvYb5+7SRJQNYySkKUDGiRIwj1A8B2PNsXs4xMD0/5t8uNi4zW58KSofutcBdhw=="; 58453 - }; 58454 - }; 58455 58590 "swagger2openapi-7.0.8" = { 58456 58591 name = "swagger2openapi"; 58457 58592 packageName = "swagger2openapi"; ··· 58587 58722 sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA=="; 58588 58723 }; 58589 58724 }; 58590 - "systeminformation-5.8.6" = { 58725 + "systeminformation-5.8.7" = { 58591 58726 name = "systeminformation"; 58592 58727 packageName = "systeminformation"; 58593 - version = "5.8.6"; 58728 + version = "5.8.7"; 58594 58729 src = fetchurl { 58595 - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.8.6.tgz"; 58596 - sha512 = "R37NZR9f6OejKvERiatjh1vK49xkJ/MOgFpwpCw2h0NoD+1nKAgGzxkyjNX7bsf6ADaKzyAZ2SFK1mXddytIaA=="; 58730 + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.8.7.tgz"; 58731 + sha512 = "e7b47PXn+GvPHLZm7FxC+IgPs5lqqsrmw7xtdxrr0U8aivYZO6V3CawMqCy5bfGB/ghZh/7AWlJEoXUPLyH3iw=="; 58597 58732 }; 58598 58733 }; 58599 58734 "table-3.8.3" = { ··· 58820 58955 src = fetchurl { 58821 58956 url = "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz"; 58822 58957 sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA=="; 58823 - }; 58824 - }; 58825 - "tar-6.1.2" = { 58826 - name = "tar"; 58827 - packageName = "tar"; 58828 - version = "6.1.2"; 58829 - src = fetchurl { 58830 - url = "https://registry.npmjs.org/tar/-/tar-6.1.2.tgz"; 58831 - sha512 = "EwKEgqJ7nJoS+s8QfLYVGMDmAsj+StbI2AM/RTHeUSsOw6Z8bwNBRv5z3CY0m7laC5qUAqruLX5AhMuc5deY3Q=="; 58832 58958 }; 58833 58959 }; 58834 58960 "tar-fs-1.16.3" = { ··· 59182 59308 sha512 = "3qAQpykRTD5DReLu5/cwpsg7EZFzP3Q0Hp2XUWJUw2mpq2jfgOKTZr8IZKKnNieRVVo1UauROTdhbQJZveGKtQ=="; 59183 59309 }; 59184 59310 }; 59185 - "terser-webpack-plugin-5.1.4" = { 59311 + "terser-webpack-plugin-5.2.3" = { 59186 59312 name = "terser-webpack-plugin"; 59187 59313 packageName = "terser-webpack-plugin"; 59188 - version = "5.1.4"; 59314 + version = "5.2.3"; 59189 59315 src = fetchurl { 59190 - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.4.tgz"; 59191 - sha512 = "C2WkFwstHDhVEmsmlCxrXUtVklS+Ir1A7twrYzrDrQQOIMOaVAYykaoo/Aq1K0QRkMoY2hhvDQY1cm4jnIMFwA=="; 59316 + url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.3.tgz"; 59317 + sha512 = "eDbuaDlXhVaaoKuLD3DTNTozKqln6xOG6Us0SzlKG5tNlazG+/cdl8pm9qiF1Di89iWScTI0HcO+CDcf2dkXiw=="; 59192 59318 }; 59193 59319 }; 59194 59320 "test-exclude-6.0.0" = { ··· 59767 59893 sha512 = "OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA=="; 59768 59894 }; 59769 59895 }; 59770 - "tmpl-1.0.4" = { 59896 + "tmpl-1.0.5" = { 59771 59897 name = "tmpl"; 59772 59898 packageName = "tmpl"; 59773 - version = "1.0.4"; 59899 + version = "1.0.5"; 59774 59900 src = fetchurl { 59775 - url = "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz"; 59776 - sha1 = "23640dd7b42d00433911140820e5cf440e521dd1"; 59901 + url = "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz"; 59902 + sha512 = "3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="; 59777 59903 }; 59778 59904 }; 59779 59905 "to-absolute-glob-2.0.2" = { ··· 60109 60235 sha1 = "2d17d82cf669ada7f9dfe75db4b31f7034b71e29"; 60110 60236 }; 60111 60237 }; 60112 - "torrent-discovery-9.4.4" = { 60238 + "torrent-discovery-9.4.6" = { 60113 60239 name = "torrent-discovery"; 60114 60240 packageName = "torrent-discovery"; 60115 - version = "9.4.4"; 60241 + version = "9.4.6"; 60116 60242 src = fetchurl { 60117 - url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.4.tgz"; 60118 - sha512 = "psD/QcqSevMouHFbPKz4V9X5u2HuR/SaxeIp2T/JAduHKmDoq/pgxMQiAe/4DlhDgSCIAYWEB2xKP0dUTInBpQ=="; 60243 + url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.6.tgz"; 60244 + sha512 = "11FlrGmDvgD3RJhZLrC749yyqS7tKx3gXWbYN7xayVYsAcc6f8lQRQQIOF7TBgJE4f0e+ZS8dsct++aOlxFjRw=="; 60119 60245 }; 60120 60246 }; 60121 60247 "torrent-piece-1.1.2" = { ··· 60298 60424 sha512 = "L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A=="; 60299 60425 }; 60300 60426 }; 60301 - "tree-kit-0.7.0" = { 60427 + "tree-kit-0.7.1" = { 60302 60428 name = "tree-kit"; 60303 60429 packageName = "tree-kit"; 60304 - version = "0.7.0"; 60430 + version = "0.7.1"; 60305 60431 src = fetchurl { 60306 - url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.0.tgz"; 60307 - sha512 = "MAqFo2oJJ39zmxq3xETx0nMAgZw2z6pnJPjIAehEcrDaeePDhBBTshAlyhCDtezMDTIu1Av+vGE501xN3Sh8VA=="; 60432 + url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.1.tgz"; 60433 + sha512 = "7v5c7ipKxUBR0J3P+WCGg6WqbFV/2glYmTuibgQtyna1DaNJk5mSM3oxPC2AZ/xQN1dTbFWvih4aSbwSBDfx4Q=="; 60308 60434 }; 60309 60435 }; 60310 60436 "tree-sitter-0.17.2" = { ··· 61027 61153 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 61028 61154 }; 61029 61155 }; 61030 - "typed-rest-client-1.8.5" = { 61156 + "typed-rest-client-1.8.6" = { 61031 61157 name = "typed-rest-client"; 61032 61158 packageName = "typed-rest-client"; 61033 - version = "1.8.5"; 61159 + version = "1.8.6"; 61034 61160 src = fetchurl { 61035 - url = "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.8.5.tgz"; 61036 - sha512 = "952/Aegu3lTqUAI1anbDLbewojnF/gh8at9iy1CIrfS1h/+MtNjB1Y9z6ZF5n2kZd+97em56lZ9uu7Zz3y/pwg=="; 61161 + url = "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.8.6.tgz"; 61162 + sha512 = "xcQpTEAJw2DP7GqVNECh4dD+riS+C1qndXLfBCJ3xk0kqprtGN491P5KlmrDbKdtuW8NEcP/5ChxiJI3S9WYTA=="; 61037 61163 }; 61038 61164 }; 61039 61165 "typed-styles-0.0.7" = { ··· 61171 61297 sha512 = "DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA=="; 61172 61298 }; 61173 61299 }; 61300 + "typescript-4.4.2" = { 61301 + name = "typescript"; 61302 + packageName = "typescript"; 61303 + version = "4.4.2"; 61304 + src = fetchurl { 61305 + url = "https://registry.npmjs.org/typescript/-/typescript-4.4.2.tgz"; 61306 + sha512 = "gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ=="; 61307 + }; 61308 + }; 61174 61309 "typescript-eslint-parser-16.0.1" = { 61175 61310 name = "typescript-eslint-parser"; 61176 61311 packageName = "typescript-eslint-parser"; ··· 61261 61396 sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd"; 61262 61397 }; 61263 61398 }; 61264 - "uglify-js-3.13.10" = { 61399 + "uglify-js-3.14.1" = { 61265 61400 name = "uglify-js"; 61266 61401 packageName = "uglify-js"; 61267 - version = "3.13.10"; 61402 + version = "3.14.1"; 61268 61403 src = fetchurl { 61269 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.10.tgz"; 61270 - sha512 = "57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg=="; 61404 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.1.tgz"; 61405 + sha512 = "JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g=="; 61271 61406 }; 61272 61407 }; 61273 - "uglify-js-3.14.1" = { 61408 + "uglify-js-3.14.2" = { 61274 61409 name = "uglify-js"; 61275 61410 packageName = "uglify-js"; 61276 - version = "3.14.1"; 61411 + version = "3.14.2"; 61277 61412 src = fetchurl { 61278 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.1.tgz"; 61279 - sha512 = "JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g=="; 61413 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.2.tgz"; 61414 + sha512 = "rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A=="; 61280 61415 }; 61281 61416 }; 61282 61417 "uglify-js-3.4.10" = { ··· 62638 62773 sha1 = "23f89069a6c62f46cf3a1d3b00169cefb90be0c6"; 62639 62774 }; 62640 62775 }; 62641 - "usb-1.7.1" = { 62776 + "usb-1.7.2" = { 62642 62777 name = "usb"; 62643 62778 packageName = "usb"; 62644 - version = "1.7.1"; 62779 + version = "1.7.2"; 62645 62780 src = fetchurl { 62646 - url = "https://registry.npmjs.org/usb/-/usb-1.7.1.tgz"; 62647 - sha512 = "HTCfx6NnNRhv5y98t04Y8j2+A8dmQnEGxCMY2/zN/0gkiioLYfTZ5w/PEKlWRVUY+3qLe9xwRv9pHLkjQYNw/g=="; 62781 + url = "https://registry.npmjs.org/usb/-/usb-1.7.2.tgz"; 62782 + sha512 = "SfVSItgsD9+YfEpcK1UZ8tQ7e8GdxQ0xoQtB773omNBKTVj3IuFJNKjwSnpE58FGcV4tUoKLHmBMc018RUY5SA=="; 62648 62783 }; 62649 62784 }; 62650 62785 "use-3.1.1" = { ··· 63008 63143 sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 63009 63144 }; 63010 63145 }; 63011 - "uws-9.148.0" = { 63012 - name = "uws"; 63013 - packageName = "uws"; 63014 - version = "9.148.0"; 63015 - src = fetchurl { 63016 - url = "https://registry.npmjs.org/uws/-/uws-9.148.0.tgz"; 63017 - sha512 = "vWt+e8dOdwLM4neb1xIeZuQ7ZUN3l7n0qTKrOUtU1EZrV4BpmrSnsEL30d062/ocqRMGtLpwzVFsLKFgXomA9g=="; 63018 - }; 63019 - }; 63020 63146 "v8-compile-cache-2.3.0" = { 63021 63147 name = "v8-compile-cache"; 63022 63148 packageName = "v8-compile-cache"; ··· 63107 63233 sha512 = "X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw=="; 63108 63234 }; 63109 63235 }; 63236 + "validator-13.6.0" = { 63237 + name = "validator"; 63238 + packageName = "validator"; 63239 + version = "13.6.0"; 63240 + src = fetchurl { 63241 + url = "https://registry.npmjs.org/validator/-/validator-13.6.0.tgz"; 63242 + sha512 = "gVgKbdbHgtxpRyR8K0O6oFZPhhB5tT1jeEHZR0Znr9Svg03U0+r9DXWMrnRAB+HtCStDQKlaIZm42tVsVjqtjg=="; 63243 + }; 63244 + }; 63110 63245 "validator-5.7.0" = { 63111 63246 name = "validator"; 63112 63247 packageName = "validator"; ··· 63917 64052 sha512 = "FS5ou3G+WRnPPr/tWVs8b/jVzeDacgZHy/y7/QQW7maSPFEAmRt2bFGUJtJVEUDLBqtDm/3VGMJ7D31cF2U1tw=="; 63918 64053 }; 63919 64054 }; 63920 - "vsce-1.96.1" = { 64055 + "vsce-1.97.0" = { 63921 64056 name = "vsce"; 63922 64057 packageName = "vsce"; 63923 - version = "1.96.1"; 64058 + version = "1.97.0"; 63924 64059 src = fetchurl { 63925 - url = "https://registry.npmjs.org/vsce/-/vsce-1.96.1.tgz"; 63926 - sha512 = "KnEVqjfc1dXrpZsbJ8J7B9VQ7GAAx8o5RqBNk42Srv1KF9+e2/aXchQHe9QZxeUs/FiliHoMGpGvnHTXwKIT2A=="; 64060 + url = "https://registry.npmjs.org/vsce/-/vsce-1.97.0.tgz"; 64061 + sha512 = "5Rxj6qO0dN4FnzVS9G94osstx8R3r1OQP39G7WYERpoO9X+OSodVVkRhFDapPNjekfUNo+d5Qn7W1EtNQVoLCg=="; 63927 64062 }; 63928 64063 }; 63929 64064 "vscode-css-languageservice-3.0.13" = { ··· 64133 64268 sha512 = "dEmliPZGbSyIcEeKRGzosCy7y7zsc8FXg1l5BBOGgMUbemlo3vUnsa2GFqpILJwJvlbvkRcF2QASNwIlKe9J7g=="; 64134 64269 }; 64135 64270 }; 64271 + "vscode-jsonrpc-8.0.0-next.2" = { 64272 + name = "vscode-jsonrpc"; 64273 + packageName = "vscode-jsonrpc"; 64274 + version = "8.0.0-next.2"; 64275 + src = fetchurl { 64276 + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.2.tgz"; 64277 + sha512 = "gxUyTBAjmwGkiHW/UaRScre2s4i98P8M7gnc3VB4DrVQUm3vQ0idi2cN9nbkfcjATx+uEt8C22j+MLN/8UzsJA=="; 64278 + }; 64279 + }; 64136 64280 "vscode-languageclient-4.0.1" = { 64137 64281 name = "vscode-languageclient"; 64138 64282 packageName = "vscode-languageclient"; ··· 64230 64374 src = fetchurl { 64231 64375 url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.1.0-next.4.tgz"; 64232 64376 sha512 = "/65lxR/CuLJoOdzTjOTYUPWS7k5qzaWese4PObnWc6jwLryUrSa7DslYfaRXigh5/xr1nlaUZCcJwkpgM0wFvw=="; 64377 + }; 64378 + }; 64379 + "vscode-languageserver-8.0.0-next.2" = { 64380 + name = "vscode-languageserver"; 64381 + packageName = "vscode-languageserver"; 64382 + version = "8.0.0-next.2"; 64383 + src = fetchurl { 64384 + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.0-next.2.tgz"; 64385 + sha512 = "7qCEXTeGZKkI8BGvlKh0JPXTY7BaWoiwQYKCcGaUgnMs34wt6F/yaKcxoC3XIouBBVyRxiI6Ml/JdztM3XYEaA=="; 64233 64386 }; 64234 64387 }; 64235 64388 "vscode-languageserver-protocol-3.14.1" = { ··· 64286 64439 sha512 = "f1kGsoOpISB5jSqQNeMDl2446enxVahyux2e5vZap6pu/TC+2UlvPT4DCR0gPph95KOQZweL9zq1SzLoPdqhuA=="; 64287 64440 }; 64288 64441 }; 64442 + "vscode-languageserver-protocol-3.17.0-next.8" = { 64443 + name = "vscode-languageserver-protocol"; 64444 + packageName = "vscode-languageserver-protocol"; 64445 + version = "3.17.0-next.8"; 64446 + src = fetchurl { 64447 + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.8.tgz"; 64448 + sha512 = "P89vSuJ+FA5JzFmcOoZN13Ig1yd6LsiPOig0O5m5BSGuO/rplQegCd9J0wKpaTy7trf/SYHRoypnbUBdzy14sg=="; 64449 + }; 64450 + }; 64289 64451 "vscode-languageserver-protocol-3.5.1" = { 64290 64452 name = "vscode-languageserver-protocol"; 64291 64453 packageName = "vscode-languageserver-protocol"; ··· 64383 64545 src = fetchurl { 64384 64546 url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.2.tgz"; 64385 64547 sha512 = "L5S2kNLCgYJMVWgsZjBaorMM/6+itAfvOyl6Kv1bgFzDNaUKm9HsnUlehjpWPdV5DqnfJhJ5E03Z+/3Mw8ii+Q=="; 64548 + }; 64549 + }; 64550 + "vscode-languageserver-types-3.17.0-next.3" = { 64551 + name = "vscode-languageserver-types"; 64552 + packageName = "vscode-languageserver-types"; 64553 + version = "3.17.0-next.3"; 64554 + src = fetchurl { 64555 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.3.tgz"; 64556 + sha512 = "VQcXnhKYxUW6OiRMhG++SzmZYMJwusXknJGd+FfdOnS1yHAo734OHyR0e2eEHDlv0/oWc8RZPgx/VKSKyondVg=="; 64386 64557 }; 64387 64558 }; 64388 64559 "vscode-languageserver-types-3.5.0" = { ··· 64547 64718 sha512 = "8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA=="; 64548 64719 }; 64549 64720 }; 64550 - "vue-eslint-parser-7.10.0" = { 64721 + "vue-eslint-parser-7.11.0" = { 64551 64722 name = "vue-eslint-parser"; 64552 64723 packageName = "vue-eslint-parser"; 64553 - version = "7.10.0"; 64724 + version = "7.11.0"; 64554 64725 src = fetchurl { 64555 - url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.10.0.tgz"; 64556 - sha512 = "7tc/ewS9Vq9Bn741pvpg8op2fWJPH3k32aL+jcIcWGCTzh/zXSdh7pZ5FV3W2aJancP9+ftPAv292zY5T5IPCg=="; 64726 + url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz"; 64727 + sha512 = "qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg=="; 64557 64728 }; 64558 64729 }; 64559 64730 "vue-onsenui-helper-json-1.0.2" = { ··· 64781 64952 sha512 = "tB0F+ccobsfw5jTWBinWJKyd/YdCdRbKj+CFSnsJeEgFYysOULvWFYyeCxn9KuQvG/3UF1t3cTAcJzBec5LCWA=="; 64782 64953 }; 64783 64954 }; 64784 - "web-streams-polyfill-3.1.0" = { 64955 + "web-streams-polyfill-3.1.1" = { 64785 64956 name = "web-streams-polyfill"; 64786 64957 packageName = "web-streams-polyfill"; 64787 - version = "3.1.0"; 64958 + version = "3.1.1"; 64788 64959 src = fetchurl { 64789 - url = "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.1.0.tgz"; 64790 - sha512 = "wO9r1YnYe7kFBLHyyVEhV1H8VRWoNiNnuP+v/HUUmSTaRF8F93Kmd3JMrETx0f11GXxRek6OcL2QtjFIdc5WYw=="; 64960 + url = "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.1.1.tgz"; 64961 + sha512 = "Czi3fG883e96T4DLEPRvufrF2ydhOOW1+1a6c3gNjH2aIh50DNFBdfwh2AKoOf1rXvpvavAoA11Qdq9+BKjE0Q=="; 64791 64962 }; 64792 64963 }; 64793 64964 "web-tree-sitter-0.17.1" = { ··· 64907 65078 sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ=="; 64908 65079 }; 64909 65080 }; 64910 - "webpack-5.51.1" = { 65081 + "webpack-5.52.0" = { 64911 65082 name = "webpack"; 64912 65083 packageName = "webpack"; 64913 - version = "5.51.1"; 65084 + version = "5.52.0"; 64914 65085 src = fetchurl { 64915 - url = "https://registry.npmjs.org/webpack/-/webpack-5.51.1.tgz"; 64916 - sha512 = "xsn3lwqEKoFvqn4JQggPSRxE4dhsRcysWTqYABAZlmavcoTmwlOb9b1N36Inbt/eIispSkuHa80/FJkDTPos1A=="; 65086 + url = "https://registry.npmjs.org/webpack/-/webpack-5.52.0.tgz"; 65087 + sha512 = "yRZOat8jWGwBwHpco3uKQhVU7HYaNunZiJ4AkAVQkPCUGoZk/tiIXiwG+8HIy/F+qsiZvSOa+GLQOj3q5RKRYg=="; 64917 65088 }; 64918 65089 }; 64919 65090 "webpack-bundle-analyzer-3.9.0" = { ··· 65123 65294 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 65124 65295 }; 65125 65296 }; 65126 - "webtorrent-1.5.4" = { 65297 + "webtorrent-1.5.5" = { 65127 65298 name = "webtorrent"; 65128 65299 packageName = "webtorrent"; 65129 - version = "1.5.4"; 65300 + version = "1.5.5"; 65130 65301 src = fetchurl { 65131 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.4.tgz"; 65132 - sha512 = "XXvOHlCskDgDjFoId0YrTebQQ/11rIJIm0MQqkBPctSA+RPrRDDooJa8yHAsVP+Aa2PtoxrKPSHr9RFDq+46aQ=="; 65302 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.5.tgz"; 65303 + sha512 = "YAEtWZxxf8N6DvdLgt79fQlIXSJU0G61YEkcWyBA+aopQGV0vCAMp1N/ifKIFt760pgKV+qzwRSbVP+/lBJ08g=="; 65133 65304 }; 65134 65305 }; 65135 65306 "well-known-symbols-2.0.0" = { ··· 65321 65492 sha1 = "20b721df05b35b706176ffa10b0909aba4603035"; 65322 65493 }; 65323 65494 }; 65324 - "which-typed-array-1.1.6" = { 65495 + "which-typed-array-1.1.7" = { 65325 65496 name = "which-typed-array"; 65326 65497 packageName = "which-typed-array"; 65327 - version = "1.1.6"; 65498 + version = "1.1.7"; 65328 65499 src = fetchurl { 65329 - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.6.tgz"; 65330 - sha512 = "DdY984dGD5sQ7Tf+x1CkXzdg85b9uEel6nr4UkFg1LoE9OXv3uRuZhe5CoWdawhGACeFpEZXH8fFLQnDhbpm/Q=="; 65500 + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.7.tgz"; 65501 + sha512 = "vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw=="; 65331 65502 }; 65332 65503 }; 65333 65504 "wide-align-1.1.3" = { ··· 65942 66113 sha512 = "2c6faOUH/nhoQN6abwMloF7Iyl0ZS2E9HGtsiLrWn0zOOMWlhtDmdf/uihDt6jnuCxgtwGBNy6Onsoy2s2O2Ow=="; 65943 66114 }; 65944 66115 }; 65945 - "ws-7.5.3" = { 66116 + "ws-7.5.4" = { 65946 66117 name = "ws"; 65947 66118 packageName = "ws"; 65948 - version = "7.5.3"; 66119 + version = "7.5.4"; 65949 66120 src = fetchurl { 65950 - url = "https://registry.npmjs.org/ws/-/ws-7.5.3.tgz"; 65951 - sha512 = "kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg=="; 66121 + url = "https://registry.npmjs.org/ws/-/ws-7.5.4.tgz"; 66122 + sha512 = "zP9z6GXm6zC27YtspwH99T3qTG7bBFv2VIkeHstMLrLlDJuzA7tQ5ls3OJ1hOGGCzTQPniNJoHXIAOS0Jljohg=="; 65952 66123 }; 65953 66124 }; 65954 66125 "ws-8.1.0" = { ··· 65967 66138 src = fetchurl { 65968 66139 url = "https://registry.npmjs.org/ws/-/ws-8.2.0.tgz"; 65969 66140 sha512 = "uYhVJ/m9oXwEI04iIVmgLmugh2qrZihkywG9y5FfZV2ATeLIzHf93qs+tUNqlttbQK957/VX3mtwAS+UfIwA4g=="; 66141 + }; 66142 + }; 66143 + "ws-8.2.1" = { 66144 + name = "ws"; 66145 + packageName = "ws"; 66146 + version = "8.2.1"; 66147 + src = fetchurl { 66148 + url = "https://registry.npmjs.org/ws/-/ws-8.2.1.tgz"; 66149 + sha512 = "XkgWpJU3sHU7gX8f13NqTn6KQ85bd1WU7noBHTT8fSohx7OS1TPY8k+cyRPCzFkia7C4mM229yeHr1qK9sM4JQ=="; 65970 66150 }; 65971 66151 }; 65972 66152 "x-default-browser-0.3.1" = { ··· 66456 66636 sha512 = "2t7FahYnGJys6DpHLhajusId7R0Pm2yTmuL0GV9+mV0ZlaLSnb2toBmppATfg5sWIhZQGlsTLoecSzya+l4EAQ=="; 66457 66637 }; 66458 66638 }; 66459 - "xstate-4.23.1" = { 66639 + "xstate-4.23.4" = { 66460 66640 name = "xstate"; 66461 66641 packageName = "xstate"; 66462 - version = "4.23.1"; 66642 + version = "4.23.4"; 66463 66643 src = fetchurl { 66464 - url = "https://registry.npmjs.org/xstate/-/xstate-4.23.1.tgz"; 66465 - sha512 = "8ZoCe8d6wDSPfkep+GBgi+fKAdMyXcaizoNf5FKceEhlso4+9n1TeK6oviaDsXZ3Z5O8xKkJOxXPNuD4cA9LCw=="; 66644 + url = "https://registry.npmjs.org/xstate/-/xstate-4.23.4.tgz"; 66645 + sha512 = "lWaUvyrd0HGhosyKnf8i9wBlszVaS+/uIs0EfnuPYNsZIh1BW9ed4bZ64P57wVYk2uln7v3u+Mv98FC+r8xrxQ=="; 66466 66646 }; 66467 66647 }; 66468 66648 "xstream-11.14.0" = { ··· 67068 67248 sha512 = "Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg=="; 67069 67249 }; 67070 67250 }; 67071 - "zen-observable-ts-1.2.0" = { 67251 + "zen-observable-ts-1.2.2" = { 67072 67252 name = "zen-observable-ts"; 67073 67253 packageName = "zen-observable-ts"; 67074 - version = "1.2.0"; 67254 + version = "1.2.2"; 67075 67255 src = fetchurl { 67076 - url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.0.tgz"; 67077 - sha512 = "3IklmJSChXaqAD2gPz6yKHThAnZL46D51x5EPpN/MHuPjrepVdSg3qI7f5fh1RT8Y+K46Owo9fpVuJiuJXLMMA=="; 67256 + url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.2.tgz"; 67257 + sha512 = "o15G3luGAPoWD2//djCQsnC7886KpgQETAvTwnDPMN33RS+XACoFR46fm5e3tC/WNTF0uzHPL91Yyakc280Xiw=="; 67078 67258 }; 67079 67259 }; 67080 67260 "zeromq-5.2.8" = { ··· 67164 67344 "@angular/cli" = nodeEnv.buildNodePackage { 67165 67345 name = "_at_angular_slash_cli"; 67166 67346 packageName = "@angular/cli"; 67167 - version = "12.2.3"; 67347 + version = "12.2.4"; 67168 67348 src = fetchurl { 67169 - url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.3.tgz"; 67170 - sha512 = "QBudMbLc+m/Z7GZTskeStk8PUAIPYVYRDq+9dQyKmill56t4MdmTU/m8eteVUXWpQFdRwhqIz6L9hlsfJXzP6A=="; 67349 + url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.4.tgz"; 67350 + sha512 = "oUpUKnFyunUMaWXF/5mXgM4r2Yav0ucysNN5rIhqtKPwGePGMALIuBWAhgsuIyT+SrmF9HIp1dVC5+sGA1WzYQ=="; 67171 67351 }; 67172 67352 dependencies = [ 67173 - sources."@angular-devkit/architect-0.1202.3" 67174 - sources."@angular-devkit/core-12.2.3" 67175 - sources."@angular-devkit/schematics-12.2.3" 67353 + sources."@angular-devkit/architect-0.1202.4" 67354 + sources."@angular-devkit/core-12.2.4" 67355 + sources."@angular-devkit/schematics-12.2.4" 67176 67356 sources."@gar/promisify-1.1.2" 67177 67357 sources."@npmcli/fs-1.0.0" 67178 67358 sources."@npmcli/git-2.1.0" ··· 67181 67361 sources."@npmcli/node-gyp-1.0.2" 67182 67362 sources."@npmcli/promise-spawn-1.3.2" 67183 67363 sources."@npmcli/run-script-1.8.6" 67184 - sources."@schematics/angular-12.2.3" 67364 + sources."@schematics/angular-12.2.4" 67185 67365 sources."@tootallnate/once-1.1.2" 67186 67366 sources."@yarnpkg/lockfile-1.1.0" 67187 67367 sources."abbrev-1.1.1" ··· 67195 67375 sources."ansi-regex-5.0.0" 67196 67376 sources."ansi-styles-4.3.0" 67197 67377 sources."aproba-1.2.0" 67198 - (sources."are-we-there-yet-1.1.5" // { 67378 + (sources."are-we-there-yet-1.1.7" // { 67199 67379 dependencies = [ 67200 67380 sources."readable-stream-2.3.7" 67201 67381 sources."safe-buffer-5.1.2" ··· 67230 67410 sources."combined-stream-1.0.8" 67231 67411 sources."concat-map-0.0.1" 67232 67412 sources."console-control-strings-1.1.0" 67233 - sources."core-util-is-1.0.2" 67413 + sources."core-util-is-1.0.3" 67234 67414 sources."dashdash-1.14.1" 67235 67415 sources."debug-4.3.2" 67236 67416 sources."defaults-1.0.3" ··· 67332 67512 sources."minimatch-3.0.4" 67333 67513 sources."minipass-3.1.3" 67334 67514 sources."minipass-collect-1.0.2" 67335 - sources."minipass-fetch-1.3.4" 67515 + sources."minipass-fetch-1.4.1" 67336 67516 sources."minipass-flush-1.0.5" 67337 67517 sources."minipass-json-stream-1.0.1" 67338 67518 sources."minipass-pipeline-1.2.4" ··· 67416 67596 sources."util-deprecate-1.0.2" 67417 67597 sources."uuid-8.3.2" 67418 67598 sources."validate-npm-package-name-3.0.0" 67419 - sources."verror-1.10.0" 67599 + (sources."verror-1.10.0" // { 67600 + dependencies = [ 67601 + sources."core-util-is-1.0.2" 67602 + ]; 67603 + }) 67420 67604 sources."wcwidth-1.0.1" 67421 67605 sources."which-2.0.2" 67422 67606 (sources."wide-align-1.1.3" // { ··· 67552 67736 ]; 67553 67737 }) 67554 67738 sources."convict-6.0.1" 67555 - sources."core-util-is-1.0.2" 67739 + sources."core-util-is-1.0.3" 67556 67740 sources."crc-32-1.2.0" 67557 67741 sources."decamelize-1.2.0" 67558 67742 sources."decompress-response-4.2.1" ··· 67756 67940 ]; 67757 67941 }) 67758 67942 sources."to-utf8-0.0.1" 67759 - sources."uglify-js-3.14.1" 67943 + sources."uglify-js-3.14.2" 67760 67944 sources."unc-path-regex-0.1.2" 67761 67945 sources."unique-stream-2.3.1" 67762 67946 sources."universalify-0.1.2" ··· 67804 67988 dependencies = [ 67805 67989 sources."@tootallnate/once-1.1.2" 67806 67990 sources."abab-2.0.5" 67807 - sources."acorn-8.4.1" 67991 + sources."acorn-8.5.0" 67808 67992 (sources."acorn-globals-6.0.0" // { 67809 67993 dependencies = [ 67810 67994 sources."acorn-7.4.1" ··· 67836 68020 sources."data-urls-2.0.0" 67837 68021 sources."debug-4.3.2" 67838 68022 sources."decimal.js-10.3.1" 67839 - sources."deep-is-0.1.3" 68023 + sources."deep-is-0.1.4" 67840 68024 sources."define-lazy-prop-2.0.0" 67841 68025 sources."delayed-stream-1.0.0" 67842 68026 (sources."domexception-2.0.1" // { ··· 67880 68064 sources."mimic-fn-2.1.0" 67881 68065 sources."ms-2.1.2" 67882 68066 sources."mute-stream-0.0.8" 67883 - sources."node-fetch-2.6.1" 68067 + sources."node-fetch-2.6.2" 67884 68068 sources."node-forge-0.10.0" 67885 68069 sources."nwsapi-2.2.0" 67886 68070 sources."onetime-5.1.2" ··· 67925 68109 sources."whatwg-mimetype-2.3.0" 67926 68110 sources."whatwg-url-8.7.0" 67927 68111 sources."word-wrap-1.2.3" 67928 - sources."ws-7.5.3" 68112 + sources."ws-7.5.4" 67929 68113 sources."xml-name-validator-3.0.0" 67930 68114 sources."xmlchars-2.2.0" 67931 68115 sources."zxcvbn-4.4.2" ··· 68181 68365 sources."@hyperswarm/hypersign-2.1.1" 68182 68366 sources."@hyperswarm/network-2.1.0" 68183 68367 sources."@leichtgewicht/ip-codec-2.0.3" 68184 - sources."@types/node-16.7.2" 68368 + sources."@types/node-16.7.13" 68185 68369 sources."abstract-extension-3.1.1" 68186 68370 sources."abstract-leveldown-6.2.3" 68187 68371 sources."ansi-colors-3.2.3" ··· 68259 68443 sources."readable-stream-3.6.0" 68260 68444 ]; 68261 68445 }) 68262 - sources."core-util-is-1.0.2" 68446 + sources."core-util-is-1.0.3" 68263 68447 sources."corestore-5.8.2" 68264 68448 sources."count-trailing-zeros-1.0.1" 68265 68449 sources."cross-spawn-async-2.2.5" ··· 68286 68470 sources."encoding-down-6.3.0" 68287 68471 sources."end-of-stream-1.4.4" 68288 68472 sources."errno-0.1.8" 68289 - (sources."es-abstract-1.18.5" // { 68473 + (sources."es-abstract-1.18.6" // { 68290 68474 dependencies = [ 68291 68475 sources."object.assign-4.1.2" 68292 68476 ]; ··· 68314 68498 sources."generate-object-property-1.2.0" 68315 68499 sources."get-caller-file-2.0.5" 68316 68500 sources."get-intrinsic-1.1.1" 68501 + sources."get-symbol-description-1.0.0" 68317 68502 sources."glob-7.1.3" 68318 68503 sources."glob-parent-5.1.2" 68319 68504 sources."growl-1.10.5" ··· 68330 68515 sources."hrpc-2.2.0" 68331 68516 sources."hrpc-runtime-2.1.1" 68332 68517 sources."hyperbeam-1.1.3" 68333 - sources."hyperbee-1.6.2" 68334 - sources."hypercore-9.10.0" 68518 + sources."hyperbee-1.6.3" 68519 + sources."hypercore-9.11.0" 68335 68520 (sources."hypercore-byte-stream-1.0.12" // { 68336 68521 dependencies = [ 68337 68522 sources."readable-stream-3.6.0" ··· 68545 68730 sources."nanoassert-2.0.0" 68546 68731 ]; 68547 68732 }) 68548 - sources."simple-hypercore-protocol-2.1.1" 68733 + sources."simple-hypercore-protocol-2.1.2" 68549 68734 sources."simple-message-channels-1.2.1" 68550 68735 (sources."siphash24-1.2.0" // { 68551 68736 dependencies = [ ··· 68688 68873 sources."@octokit/auth-token-2.4.5" 68689 68874 sources."@octokit/core-3.5.1" 68690 68875 sources."@octokit/endpoint-6.0.12" 68691 - sources."@octokit/graphql-4.6.4" 68692 - sources."@octokit/openapi-types-9.7.0" 68693 - sources."@octokit/plugin-paginate-rest-2.15.1" 68876 + sources."@octokit/graphql-4.8.0" 68877 + sources."@octokit/openapi-types-10.1.1" 68878 + sources."@octokit/plugin-paginate-rest-2.16.0" 68694 68879 sources."@octokit/plugin-request-log-1.0.4" 68695 - sources."@octokit/plugin-rest-endpoint-methods-5.8.0" 68880 + sources."@octokit/plugin-rest-endpoint-methods-5.10.0" 68696 68881 sources."@octokit/request-5.6.1" 68697 68882 sources."@octokit/request-error-2.1.0" 68698 - sources."@octokit/rest-18.9.1" 68699 - sources."@octokit/types-6.25.0" 68883 + sources."@octokit/rest-18.10.0" 68884 + sources."@octokit/types-6.27.0" 68700 68885 sources."@sideway/address-4.1.2" 68701 68886 sources."@sideway/formula-3.0.0" 68702 68887 sources."@sideway/pinpoint-2.0.0" ··· 68740 68925 sources."mimic-fn-2.1.0" 68741 68926 sources."ms-2.1.2" 68742 68927 sources."netrc-0.1.4" 68743 - sources."node-fetch-2.6.1" 68928 + sources."node-fetch-2.6.2" 68744 68929 sources."node-version-1.2.0" 68745 68930 sources."once-1.4.0" 68746 68931 sources."onetime-5.1.2" ··· 68752 68937 sources."restore-cursor-3.1.0" 68753 68938 sources."safe-buffer-5.2.1" 68754 68939 sources."signal-exit-3.0.3" 68755 - sources."simple-git-2.44.0" 68940 + sources."simple-git-2.45.1" 68756 68941 sources."sprintf-js-1.0.3" 68757 68942 sources."string_decoder-1.3.0" 68758 68943 sources."strip-ansi-6.0.0" ··· 68819 69004 sources."@types/eslint-scope-3.7.1" 68820 69005 sources."@types/estree-0.0.50" 68821 69006 sources."@types/json-schema-7.0.9" 68822 - sources."@types/node-16.7.2" 69007 + sources."@types/node-16.7.13" 68823 69008 sources."@types/parse-json-4.0.0" 68824 69009 sources."@webassemblyjs/ast-1.11.1" 68825 69010 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 68838 69023 sources."@webassemblyjs/wast-printer-1.11.1" 68839 69024 sources."@xtuc/ieee754-1.2.0" 68840 69025 sources."@xtuc/long-4.2.2" 68841 - sources."acorn-8.4.1" 69026 + sources."acorn-8.5.0" 68842 69027 sources."ajv-8.6.0" 68843 69028 sources."ajv-formats-2.1.0" 68844 69029 sources."ajv-keywords-3.5.2" ··· 68854 69039 sources."bl-4.1.0" 68855 69040 sources."brace-expansion-1.1.11" 68856 69041 sources."braces-3.0.2" 68857 - sources."browserslist-4.16.8" 69042 + sources."browserslist-4.17.0" 68858 69043 sources."buffer-5.7.1" 68859 69044 sources."buffer-from-1.1.2" 68860 69045 sources."callsites-3.1.0" 68861 - sources."caniuse-lite-1.0.30001252" 69046 + sources."caniuse-lite-1.0.30001255" 68862 69047 sources."chalk-3.0.0" 68863 69048 sources."chardet-0.7.0" 68864 69049 sources."chokidar-3.5.2" ··· 68877 69062 sources."clone-1.0.4" 68878 69063 sources."color-convert-2.0.1" 68879 69064 sources."color-name-1.1.4" 68880 - sources."colorette-1.3.0" 69065 + sources."colorette-1.4.0" 68881 69066 sources."colors-1.4.0" 68882 69067 sources."commander-4.1.1" 68883 69068 sources."concat-map-0.0.1" ··· 68885 69070 sources."cross-spawn-7.0.3" 68886 69071 sources."deepmerge-4.2.2" 68887 69072 sources."defaults-1.0.3" 68888 - sources."electron-to-chromium-1.3.818" 69073 + sources."electron-to-chromium-1.3.832" 68889 69074 sources."emoji-regex-8.0.0" 68890 69075 sources."end-of-stream-1.4.4" 68891 69076 (sources."enhanced-resolve-5.8.2" // { ··· 68952 69137 sources."is-stream-2.0.1" 68953 69138 sources."is-unicode-supported-0.1.0" 68954 69139 sources."isexe-2.0.0" 68955 - (sources."jest-worker-27.0.6" // { 69140 + (sources."jest-worker-27.1.0" // { 68956 69141 dependencies = [ 68957 69142 sources."supports-color-8.1.1" 68958 69143 ]; ··· 68976 69161 sources."lru-cache-6.0.0" 68977 69162 sources."macos-release-2.5.0" 68978 69163 sources."magic-string-0.25.7" 68979 - sources."memfs-3.2.2" 69164 + sources."memfs-3.2.4" 68980 69165 sources."merge-stream-2.0.0" 68981 69166 sources."mime-db-1.49.0" 68982 69167 sources."mime-types-2.1.32" ··· 69056 69241 sources."commander-2.20.3" 69057 69242 ]; 69058 69243 }) 69059 - (sources."terser-webpack-plugin-5.1.4" // { 69244 + (sources."terser-webpack-plugin-5.2.3" // { 69060 69245 dependencies = [ 69061 69246 sources."ajv-6.12.6" 69062 69247 sources."json-schema-traverse-0.4.1" ··· 69158 69343 sources."util-deprecate-1.0.2" 69159 69344 sources."wasm-feature-detect-1.2.11" 69160 69345 sources."wcwidth-1.0.1" 69161 - sources."web-streams-polyfill-3.1.0" 69346 + sources."web-streams-polyfill-3.1.1" 69162 69347 ]; 69163 69348 buildInputs = globalBuildInputs; 69164 69349 meta = { ··· 69190 69375 sources."@apollographql/graphql-upload-8-fork-8.1.3" 69191 69376 sources."@babel/code-frame-7.14.5" 69192 69377 sources."@babel/compat-data-7.15.0" 69193 - sources."@babel/core-7.15.0" 69194 - sources."@babel/generator-7.15.0" 69195 - sources."@babel/helper-annotate-as-pure-7.14.5" 69196 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 69197 - sources."@babel/helper-compilation-targets-7.15.0" 69198 - sources."@babel/helper-create-class-features-plugin-7.15.0" 69378 + sources."@babel/core-7.15.5" 69379 + sources."@babel/generator-7.15.4" 69380 + sources."@babel/helper-annotate-as-pure-7.15.4" 69381 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 69382 + sources."@babel/helper-compilation-targets-7.15.4" 69383 + sources."@babel/helper-create-class-features-plugin-7.15.4" 69199 69384 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 69200 69385 sources."@babel/helper-define-polyfill-provider-0.2.3" 69201 - sources."@babel/helper-explode-assignable-expression-7.14.5" 69202 - sources."@babel/helper-function-name-7.14.5" 69203 - sources."@babel/helper-get-function-arity-7.14.5" 69204 - sources."@babel/helper-hoist-variables-7.14.5" 69205 - sources."@babel/helper-member-expression-to-functions-7.15.0" 69206 - sources."@babel/helper-module-imports-7.14.5" 69207 - sources."@babel/helper-module-transforms-7.15.0" 69208 - sources."@babel/helper-optimise-call-expression-7.14.5" 69386 + sources."@babel/helper-explode-assignable-expression-7.15.4" 69387 + sources."@babel/helper-function-name-7.15.4" 69388 + sources."@babel/helper-get-function-arity-7.15.4" 69389 + sources."@babel/helper-hoist-variables-7.15.4" 69390 + sources."@babel/helper-member-expression-to-functions-7.15.4" 69391 + sources."@babel/helper-module-imports-7.15.4" 69392 + sources."@babel/helper-module-transforms-7.15.4" 69393 + sources."@babel/helper-optimise-call-expression-7.15.4" 69209 69394 sources."@babel/helper-plugin-utils-7.14.5" 69210 - sources."@babel/helper-remap-async-to-generator-7.14.5" 69211 - sources."@babel/helper-replace-supers-7.15.0" 69212 - sources."@babel/helper-simple-access-7.14.8" 69213 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 69214 - sources."@babel/helper-split-export-declaration-7.14.5" 69395 + sources."@babel/helper-remap-async-to-generator-7.15.4" 69396 + sources."@babel/helper-replace-supers-7.15.4" 69397 + sources."@babel/helper-simple-access-7.15.4" 69398 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 69399 + sources."@babel/helper-split-export-declaration-7.15.4" 69215 69400 sources."@babel/helper-validator-identifier-7.14.9" 69216 69401 sources."@babel/helper-validator-option-7.14.5" 69217 - sources."@babel/helper-wrap-function-7.14.5" 69218 - sources."@babel/helpers-7.15.3" 69402 + sources."@babel/helper-wrap-function-7.15.4" 69403 + sources."@babel/helpers-7.15.4" 69219 69404 sources."@babel/highlight-7.14.5" 69220 - sources."@babel/parser-7.15.3" 69221 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 69222 - sources."@babel/plugin-proposal-async-generator-functions-7.14.9" 69405 + sources."@babel/parser-7.15.5" 69406 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 69407 + sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 69223 69408 sources."@babel/plugin-proposal-class-properties-7.14.5" 69224 - sources."@babel/plugin-proposal-class-static-block-7.14.5" 69409 + sources."@babel/plugin-proposal-class-static-block-7.15.4" 69225 69410 sources."@babel/plugin-proposal-dynamic-import-7.14.5" 69226 69411 sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 69227 69412 sources."@babel/plugin-proposal-json-strings-7.14.5" ··· 69232 69417 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 69233 69418 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 69234 69419 sources."@babel/plugin-proposal-private-methods-7.14.5" 69235 - sources."@babel/plugin-proposal-private-property-in-object-7.14.5" 69420 + sources."@babel/plugin-proposal-private-property-in-object-7.15.4" 69236 69421 sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 69237 69422 sources."@babel/plugin-syntax-async-generators-7.8.4" 69238 69423 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 69254 69439 sources."@babel/plugin-transform-async-to-generator-7.14.5" 69255 69440 sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 69256 69441 sources."@babel/plugin-transform-block-scoping-7.15.3" 69257 - sources."@babel/plugin-transform-classes-7.14.9" 69442 + sources."@babel/plugin-transform-classes-7.15.4" 69258 69443 sources."@babel/plugin-transform-computed-properties-7.14.5" 69259 69444 sources."@babel/plugin-transform-destructuring-7.14.7" 69260 69445 sources."@babel/plugin-transform-dotall-regex-7.14.5" 69261 69446 sources."@babel/plugin-transform-duplicate-keys-7.14.5" 69262 69447 sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 69263 69448 sources."@babel/plugin-transform-flow-strip-types-7.14.5" 69264 - sources."@babel/plugin-transform-for-of-7.14.5" 69449 + sources."@babel/plugin-transform-for-of-7.15.4" 69265 69450 sources."@babel/plugin-transform-function-name-7.14.5" 69266 69451 sources."@babel/plugin-transform-literals-7.14.5" 69267 69452 sources."@babel/plugin-transform-member-expression-literals-7.14.5" 69268 69453 sources."@babel/plugin-transform-modules-amd-7.14.5" 69269 - sources."@babel/plugin-transform-modules-commonjs-7.15.0" 69270 - sources."@babel/plugin-transform-modules-systemjs-7.14.5" 69454 + sources."@babel/plugin-transform-modules-commonjs-7.15.4" 69455 + sources."@babel/plugin-transform-modules-systemjs-7.15.4" 69271 69456 sources."@babel/plugin-transform-modules-umd-7.14.5" 69272 69457 sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 69273 69458 sources."@babel/plugin-transform-new-target-7.14.5" 69274 69459 sources."@babel/plugin-transform-object-super-7.14.5" 69275 - sources."@babel/plugin-transform-parameters-7.14.5" 69460 + sources."@babel/plugin-transform-parameters-7.15.4" 69276 69461 sources."@babel/plugin-transform-property-literals-7.14.5" 69277 69462 sources."@babel/plugin-transform-regenerator-7.14.5" 69278 69463 sources."@babel/plugin-transform-reserved-words-7.14.5" ··· 69281 69466 sources."@babel/plugin-transform-sticky-regex-7.14.5" 69282 69467 sources."@babel/plugin-transform-template-literals-7.14.5" 69283 69468 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 69284 - sources."@babel/plugin-transform-typescript-7.15.0" 69469 + sources."@babel/plugin-transform-typescript-7.15.4" 69285 69470 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 69286 69471 sources."@babel/plugin-transform-unicode-regex-7.14.5" 69287 - sources."@babel/preset-env-7.15.0" 69472 + sources."@babel/preset-env-7.15.4" 69288 69473 sources."@babel/preset-flow-7.14.5" 69289 69474 sources."@babel/preset-modules-0.1.4" 69290 69475 sources."@babel/preset-typescript-7.15.0" ··· 69295 69480 sources."semver-5.7.1" 69296 69481 ]; 69297 69482 }) 69298 - sources."@babel/runtime-7.15.3" 69299 - sources."@babel/template-7.14.5" 69300 - sources."@babel/traverse-7.15.0" 69301 - sources."@babel/types-7.15.0" 69483 + sources."@babel/runtime-7.15.4" 69484 + sources."@babel/template-7.15.4" 69485 + sources."@babel/traverse-7.15.4" 69486 + sources."@babel/types-7.15.4" 69302 69487 sources."@hapi/address-2.1.4" 69303 69488 sources."@hapi/bourne-1.3.2" 69304 69489 sources."@hapi/hoek-8.5.1" ··· 69351 69536 sources."@types/long-4.0.1" 69352 69537 sources."@types/mime-1.3.2" 69353 69538 sources."@types/minimatch-3.0.5" 69354 - sources."@types/node-16.7.2" 69539 + sources."@types/node-16.7.13" 69355 69540 sources."@types/normalize-package-data-2.4.1" 69356 69541 sources."@types/qs-6.9.7" 69357 69542 sources."@types/range-parser-1.2.4" ··· 69366 69551 }) 69367 69552 sources."@vue/cli-ui-addon-webpack-4.5.13" 69368 69553 sources."@vue/cli-ui-addon-widgets-4.5.13" 69369 - (sources."@vue/compiler-core-3.2.6" // { 69554 + (sources."@vue/compiler-core-3.2.10" // { 69370 69555 dependencies = [ 69371 69556 sources."source-map-0.6.1" 69372 69557 ]; 69373 69558 }) 69374 - sources."@vue/compiler-dom-3.2.6" 69375 - sources."@vue/shared-3.2.6" 69559 + sources."@vue/compiler-dom-3.2.10" 69560 + sources."@vue/shared-3.2.10" 69376 69561 sources."@wry/equality-0.1.11" 69377 69562 sources."accepts-1.3.7" 69378 69563 sources."aggregate-error-3.1.0" ··· 69474 69659 }) 69475 69660 sources."brace-expansion-1.1.11" 69476 69661 sources."braces-2.3.2" 69477 - sources."browserslist-4.16.8" 69662 + sources."browserslist-4.17.0" 69478 69663 sources."buffer-5.7.1" 69479 69664 sources."buffer-alloc-1.2.0" 69480 69665 sources."buffer-alloc-unsafe-1.1.0" ··· 69494 69679 sources."call-bind-1.0.2" 69495 69680 sources."call-me-maybe-1.0.1" 69496 69681 sources."camelcase-5.3.1" 69497 - sources."caniuse-lite-1.0.30001252" 69682 + sources."caniuse-lite-1.0.30001255" 69498 69683 sources."caseless-0.12.0" 69499 69684 sources."caw-2.0.1" 69500 69685 sources."chalk-2.4.2" ··· 69529 69714 sources."collection-visit-1.0.0" 69530 69715 sources."color-convert-1.9.3" 69531 69716 sources."color-name-1.1.3" 69532 - sources."colorette-1.3.0" 69717 + sources."colorette-1.4.0" 69533 69718 sources."colors-1.4.0" 69534 69719 sources."combined-stream-1.0.8" 69535 69720 sources."commander-2.20.3" ··· 69551 69736 sources."cookie-0.4.0" 69552 69737 sources."cookie-signature-1.0.6" 69553 69738 sources."copy-descriptor-0.1.1" 69554 - (sources."core-js-compat-3.16.3" // { 69739 + (sources."core-js-compat-3.17.2" // { 69555 69740 dependencies = [ 69556 69741 sources."semver-7.0.0" 69557 69742 ]; 69558 69743 }) 69559 - sources."core-js-pure-3.16.3" 69744 + sources."core-js-pure-3.17.2" 69560 69745 sources."core-util-is-1.0.2" 69561 69746 sources."cors-2.8.5" 69562 69747 (sources."cross-spawn-6.0.5" // { ··· 69622 69807 sources."ecc-jsbn-0.1.2" 69623 69808 sources."ee-first-1.1.1" 69624 69809 sources."ejs-2.7.4" 69625 - sources."electron-to-chromium-1.3.818" 69810 + sources."electron-to-chromium-1.3.832" 69626 69811 sources."emoji-regex-7.0.3" 69627 69812 sources."encodeurl-1.0.2" 69628 69813 sources."end-of-stream-1.4.4" 69629 69814 sources."entities-2.2.0" 69630 69815 sources."envinfo-7.8.1" 69631 69816 sources."error-ex-1.3.2" 69632 - sources."es-abstract-1.18.5" 69817 + sources."es-abstract-1.18.6" 69633 69818 sources."es-to-primitive-1.2.1" 69634 69819 sources."escalade-3.1.1" 69635 69820 sources."escape-html-1.0.3" ··· 69705 69890 }) 69706 69891 sources."find-up-3.0.0" 69707 69892 sources."fkill-6.2.0" 69708 - sources."flow-parser-0.158.0" 69893 + sources."flow-parser-0.159.0" 69709 69894 sources."for-each-0.3.3" 69710 69895 sources."for-in-1.0.2" 69711 69896 sources."forever-agent-0.6.1" ··· 69728 69913 sources."get-intrinsic-1.1.1" 69729 69914 sources."get-proxy-2.1.0" 69730 69915 sources."get-stream-4.1.0" 69916 + sources."get-symbol-description-1.0.0" 69731 69917 sources."get-value-2.0.6" 69732 69918 sources."getpass-0.1.7" 69733 69919 sources."git-clone-0.1.0" ··· 69946 70132 sources."neo-async-2.6.2" 69947 70133 sources."nice-try-1.0.5" 69948 70134 sources."node-dir-0.1.17" 69949 - sources."node-fetch-2.6.1" 70135 + sources."node-fetch-2.6.2" 69950 70136 sources."node-ipc-9.2.1" 69951 70137 sources."node-modules-regexp-1.0.0" 69952 70138 (sources."node-notifier-9.0.1" // { ··· 69988 70174 }) 69989 70175 sources."object-inspect-1.11.0" 69990 70176 sources."object-keys-1.1.1" 69991 - sources."object-path-0.11.5" 70177 + sources."object-path-0.11.7" 69992 70178 sources."object-visit-1.0.1" 69993 70179 sources."object.assign-4.1.2" 69994 70180 sources."object.getownpropertydescriptors-2.1.2" ··· 70365 70551 }) 70366 70552 sources."wrappy-1.0.2" 70367 70553 sources."write-file-atomic-2.4.3" 70368 - sources."ws-7.5.3" 70554 + sources."ws-7.5.4" 70369 70555 sources."xml2js-0.4.23" 70370 70556 sources."xmlbuilder-11.0.1" 70371 70557 sources."xss-1.0.9" ··· 70518 70704 }; 70519 70705 dependencies = [ 70520 70706 sources."@babel/code-frame-7.14.5" 70521 - sources."@babel/generator-7.15.0" 70707 + sources."@babel/generator-7.15.4" 70522 70708 sources."@babel/helper-validator-identifier-7.14.9" 70523 70709 sources."@babel/highlight-7.14.5" 70524 - sources."@babel/parser-7.15.3" 70525 - sources."@babel/template-7.14.5" 70526 - sources."@babel/types-7.15.0" 70710 + sources."@babel/parser-7.15.5" 70711 + sources."@babel/template-7.15.4" 70712 + sources."@babel/types-7.15.4" 70527 70713 sources."@webassemblyjs/ast-1.11.1" 70528 70714 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 70529 70715 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 70599 70785 dependencies = [ 70600 70786 sources."@babel/code-frame-7.14.5" 70601 70787 sources."@babel/compat-data-7.15.0" 70602 - (sources."@babel/core-7.15.0" // { 70788 + (sources."@babel/core-7.15.5" // { 70603 70789 dependencies = [ 70604 70790 sources."source-map-0.5.7" 70605 70791 ]; 70606 70792 }) 70607 - (sources."@babel/generator-7.15.0" // { 70793 + (sources."@babel/generator-7.15.4" // { 70608 70794 dependencies = [ 70609 70795 sources."source-map-0.5.7" 70610 70796 ]; 70611 70797 }) 70612 - sources."@babel/helper-compilation-targets-7.15.0" 70613 - sources."@babel/helper-function-name-7.14.5" 70614 - sources."@babel/helper-get-function-arity-7.14.5" 70615 - sources."@babel/helper-hoist-variables-7.14.5" 70616 - sources."@babel/helper-member-expression-to-functions-7.15.0" 70617 - sources."@babel/helper-module-imports-7.14.5" 70618 - sources."@babel/helper-module-transforms-7.15.0" 70619 - sources."@babel/helper-optimise-call-expression-7.14.5" 70620 - sources."@babel/helper-replace-supers-7.15.0" 70621 - sources."@babel/helper-simple-access-7.14.8" 70622 - sources."@babel/helper-split-export-declaration-7.14.5" 70798 + sources."@babel/helper-compilation-targets-7.15.4" 70799 + sources."@babel/helper-function-name-7.15.4" 70800 + sources."@babel/helper-get-function-arity-7.15.4" 70801 + sources."@babel/helper-hoist-variables-7.15.4" 70802 + sources."@babel/helper-member-expression-to-functions-7.15.4" 70803 + sources."@babel/helper-module-imports-7.15.4" 70804 + sources."@babel/helper-module-transforms-7.15.4" 70805 + sources."@babel/helper-optimise-call-expression-7.15.4" 70806 + sources."@babel/helper-replace-supers-7.15.4" 70807 + sources."@babel/helper-simple-access-7.15.4" 70808 + sources."@babel/helper-split-export-declaration-7.15.4" 70623 70809 sources."@babel/helper-validator-identifier-7.14.9" 70624 70810 sources."@babel/helper-validator-option-7.14.5" 70625 - sources."@babel/helpers-7.15.3" 70811 + sources."@babel/helpers-7.15.4" 70626 70812 sources."@babel/highlight-7.14.5" 70627 - sources."@babel/parser-7.15.3" 70628 - sources."@babel/template-7.14.5" 70629 - sources."@babel/traverse-7.15.0" 70630 - sources."@babel/types-7.15.0" 70813 + sources."@babel/parser-7.15.5" 70814 + sources."@babel/template-7.15.4" 70815 + sources."@babel/traverse-7.15.4" 70816 + sources."@babel/types-7.15.4" 70631 70817 sources."JSV-4.0.2" 70632 70818 sources."ansi-styles-3.2.1" 70633 70819 sources."array-unique-0.3.2" 70634 70820 sources."async-3.2.1" 70635 70821 sources."balanced-match-1.0.2" 70636 70822 sources."brace-expansion-1.1.11" 70637 - sources."browserslist-4.16.8" 70638 - sources."caniuse-lite-1.0.30001252" 70823 + sources."browserslist-4.17.0" 70824 + sources."caniuse-lite-1.0.30001255" 70639 70825 sources."chalk-2.4.2" 70640 70826 sources."color-convert-1.9.3" 70641 70827 sources."color-name-1.1.3" 70642 - sources."colorette-1.3.0" 70828 + sources."colorette-1.4.0" 70643 70829 sources."colors-1.4.0" 70644 70830 sources."commander-8.1.0" 70645 70831 sources."concat-map-0.0.1" 70646 70832 sources."convert-source-map-1.8.0" 70647 70833 sources."debug-4.3.2" 70648 70834 sources."ejs-3.1.6" 70649 - sources."electron-to-chromium-1.3.818" 70835 + sources."electron-to-chromium-1.3.832" 70650 70836 sources."ensure-posix-path-1.1.1" 70651 70837 sources."escalade-3.1.1" 70652 70838 sources."escape-string-regexp-1.0.5" ··· 70740 70926 dependencies = [ 70741 70927 sources."@types/glob-7.1.4" 70742 70928 sources."@types/minimatch-3.0.5" 70743 - sources."@types/node-16.7.2" 70929 + sources."@types/node-16.7.13" 70744 70930 sources."balanced-match-1.0.2" 70745 70931 sources."brace-expansion-1.1.11" 70746 70932 sources."chromium-pickle-js-0.2.0" ··· 70768 70954 autoprefixer = nodeEnv.buildNodePackage { 70769 70955 name = "autoprefixer"; 70770 70956 packageName = "autoprefixer"; 70771 - version = "10.3.3"; 70957 + version = "10.3.4"; 70772 70958 src = fetchurl { 70773 - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.3.tgz"; 70774 - sha512 = "yRzjxfnggrP/+qVHlUuZz5FZzEbkT+Yt0/Df6ScEMnbbZBLzYB2W0KLxoQCW+THm1SpOsM1ZPcTHAwuvmibIsQ=="; 70959 + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.4.tgz"; 70960 + sha512 = "EKjKDXOq7ug+jagLzmnoTRpTT0q1KVzEJqrJd0hCBa7FiG0WbFOBCcJCy2QkW1OckpO3qgttA1aWjVbeIPAecw=="; 70775 70961 }; 70776 70962 dependencies = [ 70777 - sources."browserslist-4.16.8" 70778 - sources."caniuse-lite-1.0.30001252" 70779 - sources."colorette-1.3.0" 70780 - sources."electron-to-chromium-1.3.818" 70963 + sources."browserslist-4.17.0" 70964 + sources."caniuse-lite-1.0.30001255" 70965 + sources."colorette-1.4.0" 70966 + sources."electron-to-chromium-1.3.832" 70781 70967 sources."escalade-3.1.1" 70782 70968 sources."fraction.js-4.1.1" 70783 70969 sources."node-releases-1.1.75" ··· 70804 70990 }; 70805 70991 dependencies = [ 70806 70992 sources."@tootallnate/once-1.1.2" 70807 - sources."@types/node-16.7.2" 70993 + sources."@types/node-16.7.13" 70808 70994 sources."@types/yauzl-2.9.2" 70809 70995 sources."agent-base-6.0.2" 70810 70996 sources."ansi-escapes-4.3.2" 70811 70997 sources."ansi-regex-5.0.0" 70812 70998 sources."ansi-styles-4.3.0" 70813 70999 sources."ast-types-0.13.4" 70814 - (sources."aws-sdk-2.976.0" // { 71000 + (sources."aws-sdk-2.984.0" // { 70815 71001 dependencies = [ 70816 71002 sources."uuid-3.3.2" 70817 71003 ]; ··· 70842 71028 sources."color-name-1.1.4" 70843 71029 sources."commander-8.1.0" 70844 71030 sources."concat-map-0.0.1" 70845 - sources."core-util-is-1.0.2" 71031 + sources."core-util-is-1.0.3" 70846 71032 sources."css-select-4.1.3" 70847 71033 sources."css-what-5.0.1" 70848 71034 sources."data-uri-to-buffer-3.0.1" 70849 71035 sources."debug-4.3.2" 70850 - sources."deep-is-0.1.3" 71036 + sources."deep-is-0.1.4" 70851 71037 sources."defaults-1.0.3" 70852 71038 sources."degenerator-2.2.0" 70853 71039 sources."depd-1.1.2" 70854 71040 sources."devtools-protocol-0.0.901419" 70855 71041 sources."dom-serializer-1.3.2" 70856 71042 sources."domelementtype-2.2.0" 70857 - sources."domhandler-4.2.0" 70858 - sources."domutils-2.7.0" 71043 + sources."domhandler-4.2.2" 71044 + sources."domutils-2.8.0" 70859 71045 sources."emoji-regex-8.0.0" 70860 71046 sources."end-of-stream-1.4.4" 70861 71047 sources."entities-2.2.0" ··· 71015 71201 balanceofsatoshis = nodeEnv.buildNodePackage { 71016 71202 name = "balanceofsatoshis"; 71017 71203 packageName = "balanceofsatoshis"; 71018 - version = "10.9.2"; 71204 + version = "10.12.0"; 71019 71205 src = fetchurl { 71020 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.9.2.tgz"; 71021 - sha512 = "tFjaQXQZ2Zu7Kz1ETOab3mnmjH1LYKJS3oeSVhT0tmQGF7MPFAoSghcjFz0vDmMxrQxIzBWXWjlRLOyTtGdWUw=="; 71206 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.12.0.tgz"; 71207 + sha512 = "G8UVRAfWYPQSJwLiw1eqh61jfDSFKt0cDEfNbTzgv9Z5X+WnaGvk/0XzHCpoqNfHqRxRO2Zf9KHkFXS007bm5A=="; 71022 71208 }; 71023 71209 dependencies = [ 71024 71210 sources."@alexbosworth/html2unicode-1.1.5" ··· 71026 71212 sources."@cto.af/textdecoder-0.0.0" 71027 71213 (sources."@grpc/grpc-js-1.3.7" // { 71028 71214 dependencies = [ 71029 - sources."@types/node-16.7.2" 71215 + sources."@types/node-16.7.13" 71030 71216 ]; 71031 71217 }) 71032 71218 sources."@grpc/proto-loader-0.6.4" ··· 71074 71260 sources."ansi-escapes-1.4.0" 71075 71261 sources."ansi-regex-3.0.0" 71076 71262 sources."ansi-styles-2.2.1" 71077 - (sources."are-we-there-yet-1.1.5" // { 71263 + (sources."are-we-there-yet-1.1.7" // { 71078 71264 dependencies = [ 71079 71265 sources."readable-stream-2.3.7" 71080 71266 sources."safe-buffer-5.1.2" ··· 71202 71388 sources."content-type-1.0.4" 71203 71389 sources."cookie-0.4.0" 71204 71390 sources."cookie-signature-1.0.6" 71205 - sources."core-util-is-1.0.2" 71391 + sources."core-util-is-1.0.3" 71206 71392 sources."cors-2.8.5" 71207 71393 sources."create-hash-1.2.0" 71208 71394 sources."create-hmac-1.1.7" 71209 71395 sources."crypto-js-4.1.1" 71210 71396 sources."crypto-random-string-2.0.0" 71211 - sources."csv-parse-4.16.0" 71397 + sources."csv-parse-4.16.3" 71212 71398 sources."cycle-1.0.3" 71213 71399 sources."debug-2.6.9" 71214 71400 sources."decompress-response-3.3.0" ··· 71254 71440 sources."get-caller-file-2.0.5" 71255 71441 sources."get-stream-4.1.0" 71256 71442 sources."global-dirs-3.0.0" 71257 - (sources."goldengate-10.3.0" // { 71443 + (sources."goldengate-10.4.0" // { 71258 71444 dependencies = [ 71259 71445 sources."bech32-2.0.0" 71260 71446 sources."bn.js-5.2.0" 71447 + sources."ln-service-52.0.3" 71261 71448 ]; 71262 71449 }) 71263 71450 sources."got-9.6.0" ··· 71343 71530 sources."keyv-3.1.0" 71344 71531 sources."kind-of-6.0.3" 71345 71532 sources."latest-version-5.1.0" 71346 - (sources."lightning-4.1.0" // { 71533 + (sources."lightning-4.1.3" // { 71347 71534 dependencies = [ 71348 - sources."@types/node-16.6.1" 71535 + sources."@types/node-16.7.3" 71349 71536 sources."bn.js-5.2.0" 71350 71537 ]; 71351 71538 }) 71352 - sources."ln-accounting-5.0.0" 71353 - sources."ln-service-52.0.1" 71539 + sources."ln-accounting-5.0.1" 71540 + (sources."ln-service-52.1.0" // { 71541 + dependencies = [ 71542 + sources."@types/node-16.7.6" 71543 + sources."bn.js-5.2.0" 71544 + sources."lightning-4.2.1" 71545 + sources."ws-8.2.1" 71546 + ]; 71547 + }) 71354 71548 (sources."ln-sync-0.4.7" // { 71355 71549 dependencies = [ 71356 71550 sources."@grpc/grpc-js-1.3.6" ··· 71364 71558 sources."nofilter-2.0.3" 71365 71559 ]; 71366 71560 }) 71367 - sources."ln-telegram-3.2.11" 71561 + (sources."ln-telegram-3.2.11" // { 71562 + dependencies = [ 71563 + sources."@types/node-16.6.1" 71564 + sources."bech32-2.0.0" 71565 + sources."bn.js-5.2.0" 71566 + sources."goldengate-10.3.0" 71567 + sources."lightning-4.1.0" 71568 + sources."ln-service-52.0.1" 71569 + sources."ws-8.1.0" 71570 + ]; 71571 + }) 71368 71572 sources."lodash-4.17.21" 71369 71573 sources."lodash.camelcase-4.3.0" 71370 71574 sources."lodash.clonedeep-4.5.0" ··· 71496 71700 sources."process-nextick-args-2.0.1" 71497 71701 (sources."protobufjs-6.11.2" // { 71498 71702 dependencies = [ 71499 - sources."@types/node-16.7.2" 71703 + sources."@types/node-16.7.13" 71500 71704 ]; 71501 71705 }) 71502 71706 sources."proxy-addr-2.0.7" ··· 71651 71855 }) 71652 71856 sources."wrappy-1.0.2" 71653 71857 sources."write-file-atomic-3.0.3" 71654 - sources."ws-8.1.0" 71858 + sources."ws-8.2.0" 71655 71859 sources."xdg-basedir-4.0.0" 71656 71860 sources."y18n-5.0.8" 71657 71861 sources."yallist-4.0.0" ··· 71716 71920 sources."whatwg-url-7.1.0" 71717 71921 ]; 71718 71922 }) 71719 - sources."deep-is-0.1.3" 71923 + sources."deep-is-0.1.4" 71720 71924 sources."delayed-stream-1.0.0" 71721 71925 sources."domexception-1.0.1" 71722 71926 sources."ecc-jsbn-0.1.2" ··· 71829 72033 sources."anchor-markdown-header-0.5.7" 71830 72034 sources."ansi-regex-2.1.1" 71831 72035 sources."aproba-1.2.0" 71832 - sources."are-we-there-yet-1.1.5" 72036 + sources."are-we-there-yet-1.1.7" 71833 72037 sources."bail-1.0.5" 71834 72038 sources."base64-js-1.5.1" 71835 72039 (sources."bl-4.1.0" // { ··· 71847 72051 sources."collapse-white-space-1.0.6" 71848 72052 sources."commander-6.2.1" 71849 72053 sources."console-control-strings-1.1.0" 71850 - sources."core-util-is-1.0.2" 72054 + sources."core-util-is-1.0.3" 71851 72055 sources."debug-4.3.2" 71852 72056 sources."decompress-response-4.2.1" 71853 72057 sources."deep-extend-0.6.0" ··· 71856 72060 sources."doctoc-2.0.1" 71857 72061 (sources."dom-serializer-1.3.2" // { 71858 72062 dependencies = [ 71859 - sources."domhandler-4.2.0" 72063 + sources."domhandler-4.2.2" 71860 72064 ]; 71861 72065 }) 71862 72066 sources."domelementtype-2.2.0" 71863 72067 sources."domhandler-3.3.0" 71864 - (sources."domutils-2.7.0" // { 72068 + (sources."domutils-2.8.0" // { 71865 72069 dependencies = [ 71866 - sources."domhandler-4.2.0" 72070 + sources."domhandler-4.2.2" 71867 72071 ]; 71868 72072 }) 71869 72073 sources."emoji-regex-6.1.3" ··· 71898 72102 sources."ms-2.1.2" 71899 72103 sources."nan-2.15.0" 71900 72104 sources."napi-build-utils-1.0.2" 71901 - sources."node-abi-2.30.0" 72105 + sources."node-abi-2.30.1" 71902 72106 sources."noop-logger-0.1.1" 71903 72107 sources."npmlog-4.1.2" 71904 72108 sources."number-is-nan-1.0.1" ··· 72153 72357 sources."util-0.10.3" 72154 72358 ]; 72155 72359 }) 72156 - sources."available-typed-arrays-1.0.4" 72360 + sources."available-typed-arrays-1.0.5" 72157 72361 sources."balanced-match-1.0.2" 72158 72362 sources."base64-js-1.5.1" 72159 72363 sources."bn.js-5.2.0" ··· 72184 72388 sources."console-browserify-1.2.0" 72185 72389 sources."constants-browserify-1.0.0" 72186 72390 sources."convert-source-map-1.1.3" 72187 - sources."core-util-is-1.0.2" 72391 + sources."core-util-is-1.0.3" 72188 72392 (sources."create-ecdh-4.0.4" // { 72189 72393 dependencies = [ 72190 72394 sources."bn.js-4.12.0" ··· 72211 72415 sources."bn.js-4.12.0" 72212 72416 ]; 72213 72417 }) 72214 - sources."es-abstract-1.18.5" 72418 + sources."es-abstract-1.18.6" 72215 72419 sources."es-to-primitive-1.2.1" 72216 72420 sources."events-3.3.0" 72217 72421 sources."evp_bytestokey-1.0.3" 72218 - sources."fast-safe-stringify-2.0.8" 72422 + sources."fast-safe-stringify-2.1.0" 72219 72423 sources."foreach-2.0.5" 72220 72424 sources."fs.realpath-1.0.0" 72221 72425 sources."function-bind-1.1.1" 72222 72426 sources."get-assigned-identifiers-1.2.0" 72223 72427 sources."get-intrinsic-1.1.1" 72428 + sources."get-symbol-description-1.0.0" 72224 72429 sources."glob-7.1.7" 72225 72430 sources."has-1.0.3" 72226 72431 sources."has-bigints-1.0.1" ··· 72254 72459 sources."is-regex-1.1.4" 72255 72460 sources."is-string-1.0.7" 72256 72461 sources."is-symbol-1.0.4" 72257 - sources."is-typed-array-1.1.7" 72462 + sources."is-typed-array-1.1.8" 72258 72463 sources."isarray-1.0.0" 72259 72464 sources."jsonparse-1.3.1" 72260 72465 sources."labeled-stream-splicer-2.0.2" ··· 72348 72553 sources."util-deprecate-1.0.2" 72349 72554 sources."vm-browserify-1.1.2" 72350 72555 sources."which-boxed-primitive-1.0.2" 72351 - sources."which-typed-array-1.1.6" 72556 + sources."which-typed-array-1.1.7" 72352 72557 sources."wrappy-1.0.2" 72353 72558 sources."xtend-4.0.2" 72354 72559 ]; ··· 72374 72579 sources."@babel/code-frame-7.14.5" 72375 72580 sources."@babel/helper-validator-identifier-7.14.9" 72376 72581 sources."@babel/highlight-7.14.5" 72377 - sources."@babel/parser-7.15.3" 72378 - sources."@babel/types-7.15.0" 72582 + sources."@babel/parser-7.15.5" 72583 + sources."@babel/types-7.15.4" 72379 72584 sources."@kwsites/file-exists-1.1.1" 72380 72585 sources."@kwsites/promise-deferred-1.1.1" 72381 72586 sources."@types/minimist-1.2.2" ··· 72398 72603 sources."asynckit-0.4.0" 72399 72604 sources."aws-sign2-0.7.0" 72400 72605 sources."aws4-1.11.0" 72401 - sources."axios-0.21.1" 72606 + sources."axios-0.21.4" 72402 72607 sources."babel-walk-3.0.0-canary-5" 72403 72608 sources."balanced-match-1.0.2" 72404 72609 sources."base-x-3.0.8" ··· 72538 72743 ]; 72539 72744 }) 72540 72745 sources."find-up-4.1.0" 72541 - sources."follow-redirects-1.14.2" 72746 + sources."follow-redirects-1.14.3" 72542 72747 sources."forever-agent-0.6.1" 72543 72748 sources."form-data-2.3.3" 72544 72749 sources."forwarded-0.2.0" ··· 72746 72951 sources."set-blocking-2.0.0" 72747 72952 sources."setprototypeof-1.1.1" 72748 72953 sources."sha.js-2.4.11" 72749 - sources."simple-git-2.44.0" 72954 + sources."simple-git-2.45.1" 72750 72955 sources."spdx-correct-3.1.1" 72751 72956 sources."spdx-exceptions-2.3.0" 72752 72957 sources."spdx-expression-parse-3.0.1" ··· 72836 73041 sources."@protobufjs/pool-1.1.0" 72837 73042 sources."@protobufjs/utf8-1.1.0" 72838 73043 sources."@types/long-4.0.1" 72839 - sources."@types/node-16.7.2" 73044 + sources."@types/node-16.7.13" 72840 73045 sources."addr-to-ip-port-1.5.4" 72841 73046 sources."airplay-js-0.2.16" 72842 73047 sources."ajv-6.12.6" ··· 72907 73112 sources."string_decoder-1.3.0" 72908 73113 ]; 72909 73114 }) 72910 - sources."core-util-is-1.0.2" 73115 + sources."core-util-is-1.0.3" 72911 73116 sources."currently-unhandled-0.4.1" 72912 73117 sources."cyclist-0.1.1" 72913 73118 sources."dashdash-1.14.1" ··· 73078 73283 sources."supports-color-0.2.0" 73079 73284 ]; 73080 73285 }) 73081 - sources."plist-3.0.3" 73286 + sources."plist-3.0.4" 73082 73287 sources."process-nextick-args-2.0.1" 73083 73288 sources."promiscuous-0.6.0" 73084 73289 sources."protobufjs-6.11.2" ··· 73203 73408 sources."utp-0.0.7" 73204 73409 sources."uuid-3.4.0" 73205 73410 sources."validate-npm-package-license-3.0.4" 73206 - sources."verror-1.10.0" 73411 + (sources."verror-1.10.0" // { 73412 + dependencies = [ 73413 + sources."core-util-is-1.0.2" 73414 + ]; 73415 + }) 73207 73416 sources."voc-1.2.0" 73208 73417 sources."ware-1.3.0" 73209 73418 sources."windows-no-runnable-0.0.6" ··· 73221 73430 ]; 73222 73431 }) 73223 73432 sources."xmlbuilder-9.0.7" 73224 - sources."xmldom-0.6.0" 73225 73433 sources."xspfr-0.3.1" 73226 73434 sources."xtend-4.0.2" 73227 73435 ]; ··· 73238 73446 cdk8s-cli = nodeEnv.buildNodePackage { 73239 73447 name = "cdk8s-cli"; 73240 73448 packageName = "cdk8s-cli"; 73241 - version = "1.0.0-beta.45"; 73449 + version = "1.0.0-beta.49"; 73242 73450 src = fetchurl { 73243 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.45.tgz"; 73244 - sha512 = "4ixIu+0Fm5gv6nQ+cNhIHu5heJ95yC5HgVTU/Ad4hg5g0zWQLQcOn7s6znqgpFMDtrpH1v4RTMNp/jv10+FPiw=="; 73451 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.49.tgz"; 73452 + sha512 = "ny1PfLC72UR7wwguONBmPvcJ3MwXCdK4iOU5xC47iToG3nLbofSf8WXdJAzLesk68vv/mFWKQwg4MMlSaTUQvQ=="; 73245 73453 }; 73246 73454 dependencies = [ 73247 73455 sources."@jsii/check-node-1.34.0" 73248 73456 sources."@jsii/spec-1.34.0" 73249 73457 sources."@types/node-10.17.60" 73250 - sources."@xmldom/xmldom-0.7.2" 73458 + sources."@xmldom/xmldom-0.7.4" 73251 73459 sources."ansi-regex-5.0.0" 73252 73460 sources."ansi-styles-4.3.0" 73253 73461 sources."at-least-node-1.0.0" 73254 - sources."available-typed-arrays-1.0.4" 73462 + sources."available-typed-arrays-1.0.5" 73255 73463 sources."call-bind-1.0.2" 73256 73464 sources."camelcase-6.2.0" 73257 73465 sources."case-1.6.3" ··· 73269 73477 sources."color-name-1.1.4" 73270 73478 sources."colors-1.4.0" 73271 73479 sources."commonmark-0.30.0" 73272 - sources."constructs-3.3.133" 73480 + sources."constructs-3.3.147" 73273 73481 sources."date-format-3.0.0" 73274 73482 sources."debug-4.3.2" 73275 73483 sources."decamelize-5.0.0" ··· 73280 73488 sources."dot-case-3.0.4" 73281 73489 sources."emoji-regex-8.0.0" 73282 73490 sources."entities-2.0.3" 73283 - sources."es-abstract-1.18.5" 73491 + sources."es-abstract-1.18.6" 73284 73492 sources."es-get-iterator-1.1.2" 73285 73493 sources."es-to-primitive-1.2.1" 73286 73494 sources."escalade-3.1.1" ··· 73297 73505 sources."function-bind-1.1.1" 73298 73506 sources."get-caller-file-2.0.5" 73299 73507 sources."get-intrinsic-1.1.1" 73508 + sources."get-symbol-description-1.0.0" 73300 73509 sources."graceful-fs-4.2.8" 73301 73510 sources."has-1.0.3" 73302 73511 sources."has-bigints-1.0.1" ··· 73317 73526 sources."is-set-2.0.2" 73318 73527 sources."is-string-1.0.7" 73319 73528 sources."is-symbol-1.0.4" 73320 - sources."is-typed-array-1.1.7" 73529 + sources."is-typed-array-1.1.8" 73321 73530 sources."is-weakmap-2.0.1" 73322 73531 sources."is-weakset-2.0.1" 73323 73532 sources."isarray-2.0.5" ··· 73345 73554 sources."yargs-16.2.0" 73346 73555 ]; 73347 73556 }) 73348 - (sources."jsii-srcmak-0.1.335" // { 73557 + (sources."jsii-srcmak-0.1.341" // { 73349 73558 dependencies = [ 73350 73559 sources."fs-extra-9.1.0" 73351 73560 ]; 73352 73561 }) 73353 73562 sources."json-schema-0.3.0" 73354 - sources."json2jsii-0.2.7" 73563 + sources."json2jsii-0.2.17" 73355 73564 sources."jsonfile-6.1.0" 73356 73565 sources."jsonschema-1.4.0" 73357 73566 sources."locate-path-5.0.0" ··· 73387 73596 sources."snake-case-3.0.4" 73388 73597 sources."sort-json-2.0.0" 73389 73598 sources."spdx-license-list-6.4.0" 73390 - sources."sscaff-1.2.54" 73599 + sources."sscaff-1.2.63" 73391 73600 (sources."streamroller-2.2.4" // { 73392 73601 dependencies = [ 73393 73602 sources."date-format-2.1.0" ··· 73406 73615 sources."which-boxed-primitive-1.0.2" 73407 73616 sources."which-collection-1.0.1" 73408 73617 sources."which-module-2.0.0" 73409 - sources."which-typed-array-1.1.6" 73618 + sources."which-typed-array-1.1.7" 73410 73619 sources."wrap-ansi-7.0.0" 73411 73620 sources."xmlbuilder-15.1.1" 73412 73621 sources."y18n-5.0.8" ··· 73442 73651 sha512 = "53HldFlYJdptaQ9yZyx8xuN0pxmBwI7yaVImmPwGmauoOYWsO89YrAjyPIiAaR+GWI8avbQeg3jz5Z1Q+MoIGA=="; 73443 73652 }; 73444 73653 dependencies = [ 73445 - sources."@apollo/client-3.4.9" 73654 + sources."@apollo/client-3.4.10" 73446 73655 (sources."@apollo/protobufjs-1.2.2" // { 73447 73656 dependencies = [ 73448 73657 sources."@types/node-10.17.60" ··· 73456 73665 ]; 73457 73666 }) 73458 73667 sources."@babel/code-frame-7.14.5" 73459 - sources."@babel/generator-7.15.0" 73668 + sources."@babel/generator-7.15.4" 73460 73669 sources."@babel/helper-validator-identifier-7.14.9" 73461 73670 (sources."@babel/highlight-7.14.5" // { 73462 73671 dependencies = [ 73463 73672 sources."chalk-2.4.2" 73464 73673 ]; 73465 73674 }) 73466 - sources."@babel/parser-7.15.3" 73467 - sources."@babel/template-7.14.5" 73468 - sources."@babel/types-7.15.0" 73675 + sources."@babel/parser-7.15.5" 73676 + sources."@babel/template-7.15.4" 73677 + sources."@babel/types-7.15.4" 73469 73678 sources."@cdktf/hcl2cdk-0.5.0" 73470 73679 sources."@cdktf/hcl2json-0.5.0" 73471 73680 (sources."@graphql-tools/graphql-file-loader-6.2.7" // { ··· 73473 73682 sources."tslib-2.1.0" 73474 73683 ]; 73475 73684 }) 73476 - (sources."@graphql-tools/import-6.3.1" // { 73477 - dependencies = [ 73478 - sources."tslib-2.2.0" 73479 - ]; 73480 - }) 73685 + sources."@graphql-tools/import-6.4.0" 73481 73686 (sources."@graphql-tools/load-6.2.8" // { 73482 73687 dependencies = [ 73483 73688 sources."tslib-2.2.0" ··· 73488 73693 sources."@graphql-tools/utils-8.0.2" 73489 73694 ]; 73490 73695 }) 73491 - (sources."@graphql-tools/mock-8.2.2" // { 73696 + (sources."@graphql-tools/mock-8.3.1" // { 73492 73697 dependencies = [ 73493 - sources."@graphql-tools/utils-8.1.2" 73698 + sources."@graphql-tools/utils-8.2.2" 73494 73699 ]; 73495 73700 }) 73496 - (sources."@graphql-tools/schema-8.1.2" // { 73701 + (sources."@graphql-tools/schema-8.2.0" // { 73497 73702 dependencies = [ 73498 - sources."@graphql-tools/merge-8.0.3" 73499 - sources."@graphql-tools/utils-8.1.2" 73703 + sources."@graphql-tools/merge-8.1.2" 73704 + sources."@graphql-tools/utils-8.2.2" 73500 73705 ]; 73501 73706 }) 73502 73707 (sources."@graphql-tools/utils-7.10.0" // { ··· 73531 73736 sources."@types/express-serve-static-core-4.17.24" 73532 73737 sources."@types/long-4.0.1" 73533 73738 sources."@types/mime-1.3.2" 73534 - sources."@types/node-14.17.12" 73739 + sources."@types/node-14.17.15" 73535 73740 sources."@types/node-fetch-2.5.12" 73536 73741 sources."@types/qs-6.9.7" 73537 73742 sources."@types/range-parser-1.2.4" ··· 73541 73746 sources."@wry/context-0.6.1" 73542 73747 sources."@wry/equality-0.5.2" 73543 73748 sources."@wry/trie-0.3.1" 73544 - sources."@xmldom/xmldom-0.7.2" 73749 + sources."@xmldom/xmldom-0.7.4" 73545 73750 sources."accepts-1.3.7" 73546 73751 sources."address-1.1.2" 73547 73752 (sources."ansi-escapes-4.3.2" // { ··· 73562 73767 sources."apollo-server-caching-3.1.0" 73563 73768 (sources."apollo-server-core-3.3.0" // { 73564 73769 dependencies = [ 73565 - sources."@graphql-tools/utils-8.1.2" 73770 + sources."@graphql-tools/utils-8.2.2" 73566 73771 ]; 73567 73772 }) 73568 73773 sources."apollo-server-env-4.0.3" ··· 73586 73791 sources."asynckit-0.4.0" 73587 73792 sources."at-least-node-1.0.0" 73588 73793 sources."auto-bind-4.0.0" 73589 - sources."available-typed-arrays-1.0.4" 73590 - sources."axios-0.21.1" 73794 + sources."available-typed-arrays-1.0.5" 73795 + sources."axios-0.21.4" 73591 73796 sources."backo2-1.0.2" 73592 73797 sources."balanced-match-1.0.2" 73593 73798 sources."base64-js-1.5.1" ··· 73650 73855 ]; 73651 73856 }) 73652 73857 sources."concat-map-0.0.1" 73653 - sources."constructs-3.3.133" 73858 + sources."constructs-3.3.147" 73654 73859 (sources."content-disposition-0.5.3" // { 73655 73860 dependencies = [ 73656 73861 sources."safe-buffer-5.1.2" ··· 73660 73865 sources."convert-to-spaces-1.0.2" 73661 73866 sources."cookie-0.4.0" 73662 73867 sources."cookie-signature-1.0.6" 73663 - sources."core-js-pure-3.16.3" 73664 - sources."core-util-is-1.0.2" 73868 + sources."core-js-pure-3.17.2" 73869 + sources."core-util-is-1.0.3" 73665 73870 sources."cors-2.8.5" 73666 73871 sources."crc-32-1.2.0" 73667 73872 sources."crc32-stream-4.0.2" 73668 - sources."cross-fetch-3.1.4" 73873 + (sources."cross-fetch-3.1.4" // { 73874 + dependencies = [ 73875 + sources."node-fetch-2.6.1" 73876 + ]; 73877 + }) 73669 73878 sources."cross-spawn-7.0.3" 73670 73879 sources."cssfilter-0.0.10" 73671 73880 sources."date-fns-2.23.0" ··· 73692 73901 sources."encodeurl-1.0.2" 73693 73902 sources."end-of-stream-1.4.4" 73694 73903 sources."entities-2.0.3" 73695 - sources."es-abstract-1.18.5" 73904 + sources."es-abstract-1.18.6" 73696 73905 (sources."es-get-iterator-1.1.2" // { 73697 73906 dependencies = [ 73698 73907 sources."isarray-2.0.5" ··· 73729 73938 sources."finalhandler-1.1.2" 73730 73939 sources."find-up-4.1.0" 73731 73940 sources."flatted-2.0.2" 73732 - sources."follow-redirects-1.14.2" 73941 + sources."follow-redirects-1.14.3" 73733 73942 sources."foreach-2.0.5" 73734 73943 sources."form-data-3.0.1" 73735 73944 sources."forwarded-0.2.0" ··· 73747 73956 sources."get-caller-file-2.0.5" 73748 73957 sources."get-intrinsic-1.1.1" 73749 73958 sources."get-stream-6.0.1" 73959 + sources."get-symbol-description-1.0.0" 73750 73960 sources."glob-7.1.7" 73751 73961 sources."glob-parent-5.1.2" 73752 73962 sources."globby-11.0.3" 73753 73963 sources."graceful-fs-4.2.8" 73754 73964 sources."graphology-0.20.0" 73755 - sources."graphology-types-0.19.3" 73756 - sources."graphql-15.5.1" 73965 + sources."graphology-types-0.19.4" 73966 + sources."graphql-15.5.3" 73757 73967 sources."graphql-subscriptions-1.2.1" 73758 73968 sources."graphql-tag-2.12.5" 73759 73969 sources."has-1.0.3" ··· 73811 74021 sources."is-stream-2.0.1" 73812 74022 sources."is-string-1.0.7" 73813 74023 sources."is-symbol-1.0.4" 73814 - sources."is-typed-array-1.1.7" 74024 + sources."is-typed-array-1.1.8" 73815 74025 sources."is-unicode-supported-0.1.0" 73816 74026 sources."is-valid-domain-0.1.2" 73817 74027 sources."is-weakmap-2.0.1" ··· 73850 74060 sources."yargs-16.2.0" 73851 74061 ]; 73852 74062 }) 73853 - (sources."jsii-srcmak-0.1.335" // { 74063 + (sources."jsii-srcmak-0.1.341" // { 73854 74064 dependencies = [ 73855 74065 sources."fs-extra-9.1.0" 73856 74066 ]; ··· 73903 74113 sources."ncp-2.0.0" 73904 74114 sources."negotiator-0.6.2" 73905 74115 sources."no-case-3.0.4" 73906 - sources."node-fetch-2.6.1" 74116 + sources."node-fetch-2.6.2" 73907 74117 sources."normalize-path-2.1.1" 73908 74118 sources."npm-run-path-4.0.1" 73909 74119 sources."object-assign-4.1.1" ··· 73951 74161 sources."range-parser-1.2.1" 73952 74162 sources."raw-body-2.4.0" 73953 74163 sources."react-16.14.0" 73954 - sources."react-devtools-core-4.17.0" 74164 + sources."react-devtools-core-4.18.0" 73955 74165 sources."react-is-16.13.1" 73956 74166 sources."react-reconciler-0.24.0" 73957 74167 sources."readable-stream-3.6.0" ··· 74008 74218 sources."sort-json-2.0.0" 74009 74219 sources."source-map-0.5.7" 74010 74220 sources."spdx-license-list-6.4.0" 74011 - sources."sscaff-1.2.54" 74221 + sources."sscaff-1.2.63" 74012 74222 (sources."stack-utils-2.0.3" // { 74013 74223 dependencies = [ 74014 74224 sources."escape-string-regexp-2.0.0" ··· 74068 74278 sources."which-boxed-primitive-1.0.2" 74069 74279 sources."which-collection-1.0.1" 74070 74280 sources."which-module-2.0.0" 74071 - sources."which-typed-array-1.1.6" 74281 + sources."which-typed-array-1.1.7" 74072 74282 sources."widest-line-3.1.0" 74073 74283 (sources."wrap-ansi-7.0.0" // { 74074 74284 dependencies = [ ··· 74078 74288 ]; 74079 74289 }) 74080 74290 sources."wrappy-1.0.2" 74081 - sources."ws-7.5.3" 74291 + sources."ws-7.5.4" 74082 74292 sources."xmlbuilder-15.1.1" 74083 74293 sources."xss-1.0.9" 74084 74294 sources."y18n-5.0.8" ··· 74101 74311 sources."yocto-queue-0.1.0" 74102 74312 sources."yoga-layout-prebuilt-1.10.0" 74103 74313 sources."zen-observable-0.8.15" 74104 - sources."zen-observable-ts-1.2.0" 74314 + sources."zen-observable-ts-1.2.2" 74105 74315 sources."zip-stream-4.1.0" 74106 74316 sources."zod-1.11.17" 74107 74317 ]; ··· 74314 74524 coc-clangd = nodeEnv.buildNodePackage { 74315 74525 name = "coc-clangd"; 74316 74526 packageName = "coc-clangd"; 74317 - version = "0.14.0"; 74527 + version = "0.14.1"; 74318 74528 src = fetchurl { 74319 - url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.14.0.tgz"; 74320 - sha512 = "CxeuK0gr5GKnswwuTKgWmRm3/KEmzeH0T8sV1AIRYuB/vZ61kBMplgb9fRvrNI540pKDR2xqWs5XZk6NyitPgA=="; 74529 + url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.14.1.tgz"; 74530 + sha512 = "VhEqQMIWrFtF+qzA03kLfwU7fX9f3qIVWltTk4Gc3QLqcIM0qtmpqnSRS7x/jRtbh/kLk2ckuwupQE59sTigCQ=="; 74321 74531 }; 74322 74532 buildInputs = globalBuildInputs; 74323 74533 meta = { ··· 74426 74636 coc-explorer = nodeEnv.buildNodePackage { 74427 74637 name = "coc-explorer"; 74428 74638 packageName = "coc-explorer"; 74429 - version = "0.18.16"; 74639 + version = "0.18.17"; 74430 74640 src = fetchurl { 74431 - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.16.tgz"; 74432 - sha512 = "sFk/5y7v/ITvuIeLia4VYRvQvD4fXgOI/Z3iS+1etkxuhiQo5fDwkRACWL6B4kRn6SWIn2scHyt49ePx1LURNg=="; 74641 + url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.17.tgz"; 74642 + sha512 = "RTbiCTMpRwlBS/fysJ0hUp9FsQJoCt6VMBF1sodkuOGR79Ha9I+XbyhnnxhVOnjUG4N4b4/OOfw8O0vBmWmMCQ=="; 74433 74643 }; 74434 74644 dependencies = [ 74435 74645 sources."@sindresorhus/df-3.1.1" ··· 74537 74747 }; 74538 74748 dependencies = [ 74539 74749 sources."isexe-2.0.0" 74540 - sources."node-fetch-2.6.1" 74750 + sources."node-fetch-2.6.2" 74541 74751 sources."tslib-2.3.1" 74542 74752 sources."vscode-languageserver-textdocument-1.0.1" 74543 74753 sources."vscode-uri-3.0.2" ··· 74578 74788 sha512 = "7SHQYzpRKPrpaLcTm1UUk1zu9VvFEJKFqxwDIuqv/CL0cBTtEvlsfpVh9DOaMHlZPu8U8Lgyf04bHV/sFS1zJw=="; 74579 74789 }; 74580 74790 dependencies = [ 74581 - sources."typescript-4.3.5" 74791 + sources."typescript-4.4.2" 74582 74792 ]; 74583 74793 buildInputs = globalBuildInputs; 74584 74794 meta = { ··· 74723 74933 coc-metals = nodeEnv.buildNodePackage { 74724 74934 name = "coc-metals"; 74725 74935 packageName = "coc-metals"; 74726 - version = "1.0.7"; 74936 + version = "1.0.8"; 74727 74937 src = fetchurl { 74728 - url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.7.tgz"; 74729 - sha512 = "EiD4lpcGW2WyzxEDpRMYPrjxAa0FhG69SzDoc1KbDht2Do/vgnRzvrtIsufPT14dALAesieN3kVVMCCfA9S6jA=="; 74938 + url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.8.tgz"; 74939 + sha512 = "ruCWV8SWSngpJFZrwghzi2yVVZ+Pa0o0vsNN106GlhMFgjtV+YudjVsPw7gH9NLBU77Zlpya4vtxP3AhgGfQ2w=="; 74730 74940 }; 74731 74941 dependencies = [ 74732 - sources."@chemzqm/neovim-5.3.5" 74942 + sources."@chemzqm/neovim-5.4.0" 74733 74943 sources."@tootallnate/once-1.1.2" 74734 74944 sources."agent-base-6.0.2" 74735 74945 sources."arch-2.2.0" ··· 74751 74961 sources."coc.nvim-0.0.79" 74752 74962 sources."concat-map-0.0.1" 74753 74963 sources."content-disposition-0.5.3" 74754 - sources."core-util-is-1.0.2" 74964 + sources."core-util-is-1.0.3" 74755 74965 (sources."cross-spawn-6.0.5" // { 74756 74966 dependencies = [ 74757 74967 sources."semver-5.7.1" ··· 74765 74975 sources."define-properties-1.1.3" 74766 74976 sources."duplexer2-0.1.4" 74767 74977 sources."end-of-stream-1.4.4" 74768 - sources."es-abstract-1.18.5" 74978 + sources."es-abstract-1.18.6" 74769 74979 sources."es-to-primitive-1.2.1" 74770 74980 sources."event-lite-0.1.2" 74771 74981 sources."execa-1.0.0" 74772 74982 sources."fast-diff-1.2.0" 74773 74983 sources."fb-watchman-2.0.1" 74774 74984 sources."flatted-2.0.2" 74775 - sources."follow-redirects-1.14.2" 74985 + sources."follow-redirects-1.14.3" 74776 74986 sources."fp-ts-2.11.1" 74777 74987 sources."fs-extra-8.1.0" 74778 74988 sources."fs-minipass-2.1.0" ··· 74786 74996 sources."function-bind-1.1.1" 74787 74997 sources."get-intrinsic-1.1.1" 74788 74998 sources."get-stream-4.1.0" 74999 + sources."get-symbol-description-1.0.0" 74789 75000 sources."glob-7.1.7" 74790 75001 sources."graceful-fs-4.2.8" 74791 75002 sources."has-1.0.3" ··· 74843 75054 }) 74844 75055 sources."ncp-2.0.0" 74845 75056 sources."nice-try-1.0.5" 74846 - sources."node-fetch-2.6.1" 75057 + sources."node-fetch-2.6.2" 74847 75058 sources."node-int64-0.4.0" 74848 75059 sources."npm-run-path-2.0.2" 74849 75060 sources."object-inspect-1.11.0" ··· 75018 75229 sources."callsites-3.1.0" 75019 75230 sources."camelcase-2.1.1" 75020 75231 sources."camelcase-keys-2.1.0" 75021 - sources."caniuse-lite-1.0.30001252" 75232 + sources."caniuse-lite-1.0.30001255" 75022 75233 sources."capture-stack-trace-1.0.1" 75023 75234 sources."ccount-1.1.0" 75024 75235 (sources."chalk-4.1.2" // { ··· 75080 75291 ]; 75081 75292 }) 75082 75293 sources."copy-descriptor-0.1.1" 75083 - sources."core-js-3.16.3" 75294 + sources."core-js-3.17.2" 75084 75295 sources."cosmiconfig-3.1.0" 75085 75296 sources."create-error-class-3.0.2" 75086 75297 sources."cross-spawn-7.0.3" ··· 75091 75302 sources."decamelize-keys-1.1.0" 75092 75303 sources."decode-uri-component-0.2.0" 75093 75304 sources."deep-extend-0.6.0" 75094 - sources."deep-is-0.1.3" 75305 + sources."deep-is-0.1.4" 75095 75306 (sources."define-property-2.0.2" // { 75096 75307 dependencies = [ 75097 75308 sources."isobject-3.0.1" ··· 75116 75327 sources."domutils-1.7.0" 75117 75328 sources."dot-prop-5.3.0" 75118 75329 sources."duplexer3-0.1.4" 75119 - sources."electron-to-chromium-1.3.818" 75330 + sources."electron-to-chromium-1.3.832" 75120 75331 sources."emoji-regex-8.0.0" 75121 75332 sources."end-of-stream-1.4.4" 75122 75333 sources."enquirer-2.3.6" ··· 75915 76126 coc-pyright = nodeEnv.buildNodePackage { 75916 76127 name = "coc-pyright"; 75917 76128 packageName = "coc-pyright"; 75918 - version = "1.1.164"; 76129 + version = "1.1.166"; 75919 76130 src = fetchurl { 75920 - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.164.tgz"; 75921 - sha512 = "7j+xroHX57poXJ9T+1OVYIx3NlTTKk6d0eoqLorv8BPFtjF0g+cTCLG67PNgpmfunBaF2g47aUoebli1x0fuKg=="; 76131 + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.166.tgz"; 76132 + sha512 = "ler5AiK0fE5BbQ+RlkQYO+qzGUfFRmQW0XrSPFPCWgjvTfL20qXx7DU+lSZKRUJUQo3wXXHbnBnv7HHIOhokSw=="; 75922 76133 }; 75923 76134 dependencies = [ 75924 - sources."pyright-1.1.163" 76135 + sources."pyright-1.1.166" 75925 76136 ]; 75926 76137 buildInputs = globalBuildInputs; 75927 76138 meta = { ··· 75995 76206 coc-rust-analyzer = nodeEnv.buildNodePackage { 75996 76207 name = "coc-rust-analyzer"; 75997 76208 packageName = "coc-rust-analyzer"; 75998 - version = "0.50.0"; 76209 + version = "0.52.0"; 75999 76210 src = fetchurl { 76000 - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.50.0.tgz"; 76001 - sha512 = "IqZL5m/fWXmUEF6xWXY1FA2sXJiCLQgi68Znm/Nz5sG+Hrl+OFCfaVCel6jr6xlshjmnnxtb8MoQlGbtChhKyg=="; 76211 + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.52.0.tgz"; 76212 + sha512 = "mT9Y7bzuhvHDj+Cv2+EbEUTGwdkulKpiGwyJ0Hm0/8+i3fM8zsoAuLM8l/A3TSIYlbt10Ru3dV5ilHwdt0MZkg=="; 76002 76213 }; 76003 76214 buildInputs = globalBuildInputs; 76004 76215 meta = { ··· 76073 76284 dependencies = [ 76074 76285 sources."@babel/code-frame-7.14.5" 76075 76286 sources."@babel/compat-data-7.15.0" 76076 - sources."@babel/core-7.15.0" 76077 - sources."@babel/generator-7.15.0" 76078 - sources."@babel/helper-compilation-targets-7.15.0" 76079 - sources."@babel/helper-function-name-7.14.5" 76080 - sources."@babel/helper-get-function-arity-7.14.5" 76081 - sources."@babel/helper-hoist-variables-7.14.5" 76082 - sources."@babel/helper-member-expression-to-functions-7.15.0" 76083 - sources."@babel/helper-module-imports-7.14.5" 76084 - sources."@babel/helper-module-transforms-7.15.0" 76085 - sources."@babel/helper-optimise-call-expression-7.14.5" 76086 - sources."@babel/helper-replace-supers-7.15.0" 76087 - sources."@babel/helper-simple-access-7.14.8" 76088 - sources."@babel/helper-split-export-declaration-7.14.5" 76287 + sources."@babel/core-7.15.5" 76288 + sources."@babel/generator-7.15.4" 76289 + sources."@babel/helper-compilation-targets-7.15.4" 76290 + sources."@babel/helper-function-name-7.15.4" 76291 + sources."@babel/helper-get-function-arity-7.15.4" 76292 + sources."@babel/helper-hoist-variables-7.15.4" 76293 + sources."@babel/helper-member-expression-to-functions-7.15.4" 76294 + sources."@babel/helper-module-imports-7.15.4" 76295 + sources."@babel/helper-module-transforms-7.15.4" 76296 + sources."@babel/helper-optimise-call-expression-7.15.4" 76297 + sources."@babel/helper-replace-supers-7.15.4" 76298 + sources."@babel/helper-simple-access-7.15.4" 76299 + sources."@babel/helper-split-export-declaration-7.15.4" 76089 76300 sources."@babel/helper-validator-identifier-7.14.9" 76090 76301 sources."@babel/helper-validator-option-7.14.5" 76091 - sources."@babel/helpers-7.15.3" 76302 + sources."@babel/helpers-7.15.4" 76092 76303 (sources."@babel/highlight-7.14.5" // { 76093 76304 dependencies = [ 76094 76305 sources."chalk-2.4.2" 76095 76306 ]; 76096 76307 }) 76097 - sources."@babel/parser-7.15.3" 76098 - sources."@babel/template-7.14.5" 76099 - sources."@babel/traverse-7.15.0" 76100 - sources."@babel/types-7.15.0" 76308 + sources."@babel/parser-7.15.5" 76309 + sources."@babel/template-7.15.4" 76310 + sources."@babel/traverse-7.15.4" 76311 + sources."@babel/types-7.15.4" 76101 76312 sources."@nodelib/fs.scandir-2.1.5" 76102 76313 sources."@nodelib/fs.stat-2.0.5" 76103 76314 sources."@nodelib/fs.walk-1.2.8" ··· 76123 76334 ]; 76124 76335 }) 76125 76336 sources."braces-3.0.2" 76126 - sources."browserslist-4.16.8" 76337 + sources."browserslist-4.17.0" 76127 76338 sources."callsites-3.1.0" 76128 76339 sources."camelcase-5.3.1" 76129 76340 sources."camelcase-keys-6.2.2" 76130 - sources."caniuse-lite-1.0.30001252" 76341 + sources."caniuse-lite-1.0.30001255" 76131 76342 (sources."chalk-4.1.2" // { 76132 76343 dependencies = [ 76133 76344 sources."ansi-styles-4.3.0" ··· 76143 76354 sources."clone-regexp-2.2.0" 76144 76355 sources."color-convert-1.9.3" 76145 76356 sources."color-name-1.1.3" 76146 - sources."colorette-1.3.0" 76357 + sources."colorette-1.4.0" 76147 76358 sources."concat-map-0.0.1" 76148 76359 sources."convert-source-map-1.8.0" 76149 76360 sources."cosmiconfig-7.0.1" ··· 76165 76376 sources."domelementtype-1.3.1" 76166 76377 sources."domhandler-2.4.2" 76167 76378 sources."domutils-1.7.0" 76168 - sources."electron-to-chromium-1.3.818" 76379 + sources."electron-to-chromium-1.3.832" 76169 76380 sources."emoji-regex-8.0.0" 76170 76381 sources."entities-1.1.2" 76171 76382 sources."error-ex-1.3.2" ··· 76545 76756 sha512 = "RTet29nZNYrOWEuquBOAv3yFtWyHPE7xGbsHjRdNbTP6g9PF+2nV2TnDO+c/T5HAk/1J0lKKZBu6hZTnEJ2f4w=="; 76546 76757 }; 76547 76758 dependencies = [ 76548 - sources."typescript-4.3.5" 76759 + sources."typescript-4.4.2" 76549 76760 ]; 76550 76761 buildInputs = globalBuildInputs; 76551 76762 meta = { ··· 76604 76815 sources."concat-map-0.0.1" 76605 76816 sources."cross-spawn-7.0.3" 76606 76817 sources."debug-4.3.2" 76607 - sources."deep-is-0.1.3" 76818 + sources."deep-is-0.1.4" 76608 76819 sources."diff-4.0.2" 76609 76820 sources."doctrine-3.0.0" 76610 76821 sources."emoji-regex-8.0.0" 76611 76822 sources."enquirer-2.3.6" 76612 76823 sources."escape-string-regexp-4.0.0" 76613 76824 sources."eslint-7.32.0" 76614 - (sources."eslint-plugin-vue-7.16.0" // { 76825 + (sources."eslint-plugin-vue-7.17.0" // { 76615 76826 dependencies = [ 76616 76827 sources."semver-6.3.0" 76617 76828 ]; ··· 76728 76939 sources."tsutils-2.29.0" 76729 76940 sources."type-check-0.4.0" 76730 76941 sources."type-fest-0.20.2" 76731 - sources."typescript-4.3.5" 76942 + sources."typescript-4.4.2" 76732 76943 sources."uri-js-4.4.1" 76733 76944 sources."v8-compile-cache-2.3.0" 76734 76945 sources."vls-0.7.4" 76735 - (sources."vue-eslint-parser-7.10.0" // { 76946 + (sources."vue-eslint-parser-7.11.0" // { 76736 76947 dependencies = [ 76737 76948 sources."eslint-visitor-keys-1.3.0" 76738 76949 sources."espree-6.2.1" ··· 76756 76967 coc-vimlsp = nodeEnv.buildNodePackage { 76757 76968 name = "coc-vimlsp"; 76758 76969 packageName = "coc-vimlsp"; 76759 - version = "0.12.3"; 76970 + version = "0.12.4"; 76760 76971 src = fetchurl { 76761 - url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.12.3.tgz"; 76762 - sha512 = "mq6V4fQmcQSiGvilJ0j1pbbj5EHeS8QC6ThuLVBJ+2wRqO8fiTkPYJrXPDUQDcICV9hUjdTBE8klaFYlK6oviA=="; 76972 + url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.12.4.tgz"; 76973 + sha512 = "P4S+opRqtCXh2XqE5uj1u45+Jk3jCRIQl6/hdyCTSj8mMVR/BWf3xV2LjOuYoWIe0vIpYroYrxiU7ZvRYLRUrQ=="; 76763 76974 }; 76764 76975 buildInputs = globalBuildInputs; 76765 76976 meta = { ··· 76888 77099 sha512 = "uPhR9IKtN1z6gt9mpRH5OAdYjJQgQq7CCQpm5VmCpLe2QdGDzi4xfB3ybXGaBRX+UN4whtz3pZvgZssJvBwcqQ=="; 76889 77100 }; 76890 77101 dependencies = [ 76891 - sources."@xstate/fsm-1.6.1" 77102 + sources."@xstate/fsm-1.6.2" 76892 77103 sources."ansi-styles-3.2.1" 76893 77104 sources."balanced-match-1.0.2" 76894 77105 sources."base64-js-1.5.1" ··· 76908 77119 sources."commander-5.1.0" 76909 77120 sources."concat-map-0.0.1" 76910 77121 sources."config-chain-1.1.13" 76911 - sources."core-util-is-1.0.2" 77122 + sources."core-util-is-1.0.3" 76912 77123 sources."create-error-class-3.0.2" 76913 77124 sources."cross-spawn-6.0.5" 76914 77125 sources."decompress-4.2.1" ··· 76991 77202 sources."pify-2.3.0" 76992 77203 sources."pinkie-2.0.4" 76993 77204 sources."pinkie-promise-2.0.1" 76994 - sources."plist-3.0.3" 77205 + sources."plist-3.0.4" 76995 77206 sources."prepend-http-1.0.4" 76996 77207 sources."process-nextick-args-2.0.1" 76997 77208 sources."proto-list-1.2.4" ··· 77040 77251 sources."wrappy-1.0.2" 77041 77252 sources."xmlbuilder-9.0.7" 77042 77253 sources."xmlcreate-2.0.3" 77043 - sources."xmldom-0.6.0" 77044 77254 sources."xtend-4.0.2" 77045 77255 sources."yauzl-2.10.0" 77046 77256 ]; ··· 77082 77292 dependencies = [ 77083 77293 sources."ansi-regex-3.0.0" 77084 77294 sources."ansi-styles-3.2.1" 77085 - sources."axios-0.21.1" 77295 + sources."axios-0.21.4" 77086 77296 sources."chalk-2.4.2" 77087 77297 sources."cli-cursor-2.1.0" 77088 77298 sources."cli-spinners-1.3.1" ··· 77092 77302 sources."colors-1.4.0" 77093 77303 sources."commander-2.20.3" 77094 77304 sources."escape-string-regexp-1.0.5" 77095 - sources."follow-redirects-1.14.2" 77305 + sources."follow-redirects-1.14.3" 77096 77306 sources."has-flag-3.0.0" 77097 77307 sources."is-fullwidth-code-point-2.0.0" 77098 77308 sources."log-symbols-2.2.0" ··· 77135 77345 sources."colors-1.4.0" 77136 77346 sources."colorspace-1.1.2" 77137 77347 sources."commander-8.0.0" 77138 - sources."core-util-is-1.0.2" 77348 + sources."core-util-is-1.0.3" 77139 77349 sources."enabled-2.0.0" 77140 77350 sources."eventemitter3-4.0.7" 77141 - sources."fast-safe-stringify-2.0.8" 77351 + sources."fast-safe-stringify-2.1.0" 77142 77352 sources."fecha-4.2.1" 77143 77353 sources."fn.name-1.1.0" 77144 - sources."follow-redirects-1.14.2" 77354 + sources."follow-redirects-1.14.3" 77145 77355 sources."http-proxy-1.18.1" 77146 77356 sources."inherits-2.0.4" 77147 77357 sources."is-arrayish-0.3.2" ··· 77200 77410 sources."@types/normalize-package-data-2.4.1" 77201 77411 sources."JSONStream-1.3.5" 77202 77412 sources."add-stream-1.0.0" 77203 - sources."ansi-styles-3.2.1" 77413 + sources."ansi-regex-5.0.0" 77414 + sources."ansi-styles-4.3.0" 77204 77415 sources."array-ify-1.0.0" 77205 77416 sources."arrify-1.0.1" 77206 77417 sources."camelcase-5.3.1" 77207 77418 sources."camelcase-keys-6.2.2" 77208 - sources."chalk-2.4.2" 77209 - sources."color-convert-1.9.3" 77210 - sources."color-name-1.1.3" 77419 + (sources."chalk-2.4.2" // { 77420 + dependencies = [ 77421 + sources."ansi-styles-3.2.1" 77422 + sources."color-convert-1.9.3" 77423 + sources."color-name-1.1.3" 77424 + ]; 77425 + }) 77426 + sources."cliui-7.0.4" 77427 + sources."color-convert-2.0.1" 77428 + sources."color-name-1.1.4" 77211 77429 sources."compare-func-2.0.0" 77212 77430 sources."conventional-changelog-3.1.24" 77213 77431 sources."conventional-changelog-angular-5.0.12" ··· 77224 77442 sources."conventional-changelog-writer-5.0.0" 77225 77443 sources."conventional-commits-filter-2.0.7" 77226 77444 sources."conventional-commits-parser-3.2.1" 77227 - sources."core-util-is-1.0.2" 77445 + sources."core-util-is-1.0.3" 77228 77446 sources."dargs-7.0.0" 77229 77447 sources."dateformat-3.0.3" 77230 77448 sources."decamelize-1.2.0" ··· 77234 77452 ]; 77235 77453 }) 77236 77454 sources."dot-prop-5.3.0" 77455 + sources."emoji-regex-8.0.0" 77237 77456 sources."error-ex-1.3.2" 77457 + sources."escalade-3.1.1" 77238 77458 sources."escape-string-regexp-1.0.5" 77239 - sources."find-up-4.1.0" 77459 + sources."find-up-2.1.0" 77240 77460 sources."function-bind-1.1.1" 77241 - (sources."get-pkg-repo-4.1.2" // { 77461 + sources."get-caller-file-2.0.5" 77462 + (sources."get-pkg-repo-4.2.0" // { 77242 77463 dependencies = [ 77243 - sources."meow-7.1.1" 77244 - (sources."normalize-package-data-2.5.0" // { 77245 - dependencies = [ 77246 - sources."hosted-git-info-2.8.9" 77247 - ]; 77248 - }) 77249 - (sources."read-pkg-5.2.0" // { 77250 - dependencies = [ 77251 - sources."type-fest-0.6.0" 77252 - ]; 77253 - }) 77254 - (sources."read-pkg-up-7.0.1" // { 77255 - dependencies = [ 77256 - sources."type-fest-0.8.1" 77257 - ]; 77258 - }) 77259 77464 sources."readable-stream-2.3.7" 77260 77465 sources."safe-buffer-5.1.2" 77261 - sources."semver-5.7.1" 77262 77466 sources."string_decoder-1.1.1" 77263 77467 sources."through2-2.0.5" 77264 77468 ]; ··· 77278 77482 sources."ini-1.3.8" 77279 77483 sources."is-arrayish-0.2.1" 77280 77484 sources."is-core-module-2.6.0" 77485 + sources."is-fullwidth-code-point-3.0.0" 77281 77486 sources."is-obj-2.0.0" 77282 77487 sources."is-plain-obj-1.1.0" 77283 77488 sources."is-text-path-1.0.1" ··· 77291 77496 sources."lines-and-columns-1.1.6" 77292 77497 (sources."load-json-file-4.0.0" // { 77293 77498 dependencies = [ 77294 - sources."parse-json-4.0.0" 77295 77499 sources."pify-3.0.0" 77296 77500 ]; 77297 77501 }) 77298 - sources."locate-path-5.0.0" 77502 + sources."locate-path-2.0.0" 77299 77503 sources."lodash-4.17.21" 77300 77504 sources."lodash.ismatch-4.4.0" 77301 77505 sources."lru-cache-6.0.0" 77302 77506 sources."map-obj-4.2.1" 77303 77507 (sources."meow-8.1.2" // { 77304 77508 dependencies = [ 77509 + sources."find-up-4.1.0" 77305 77510 sources."hosted-git-info-2.8.9" 77511 + sources."locate-path-5.0.0" 77512 + sources."p-limit-2.3.0" 77513 + sources."p-locate-4.1.0" 77514 + sources."p-try-2.2.0" 77515 + sources."parse-json-5.2.0" 77516 + sources."path-exists-4.0.0" 77306 77517 (sources."read-pkg-5.2.0" // { 77307 77518 dependencies = [ 77308 77519 sources."normalize-package-data-2.5.0" ··· 77315 77526 ]; 77316 77527 }) 77317 77528 sources."semver-5.7.1" 77318 - sources."type-fest-0.18.1" 77319 - sources."yargs-parser-20.2.9" 77320 77529 ]; 77321 77530 }) 77322 77531 sources."min-indent-1.0.1" ··· 77329 77538 sources."semver-7.3.5" 77330 77539 ]; 77331 77540 }) 77332 - sources."p-limit-2.3.0" 77333 - sources."p-locate-4.1.0" 77334 - sources."p-try-2.2.0" 77335 - sources."parse-json-5.2.0" 77336 - sources."path-exists-4.0.0" 77541 + sources."p-limit-1.3.0" 77542 + sources."p-locate-2.0.0" 77543 + sources."p-try-1.0.0" 77544 + sources."parse-json-4.0.0" 77545 + sources."path-exists-3.0.0" 77337 77546 sources."path-parse-1.0.7" 77338 77547 (sources."path-type-3.0.0" // { 77339 77548 dependencies = [ ··· 77351 77560 sources."semver-5.7.1" 77352 77561 ]; 77353 77562 }) 77354 - (sources."read-pkg-up-3.0.0" // { 77355 - dependencies = [ 77356 - sources."find-up-2.1.0" 77357 - sources."locate-path-2.0.0" 77358 - sources."p-limit-1.3.0" 77359 - sources."p-locate-2.0.0" 77360 - sources."p-try-1.0.0" 77361 - sources."path-exists-3.0.0" 77362 - ]; 77363 - }) 77563 + sources."read-pkg-up-3.0.0" 77364 77564 sources."readable-stream-3.6.0" 77365 77565 sources."redent-3.0.0" 77566 + sources."require-directory-2.1.1" 77366 77567 sources."resolve-1.20.0" 77367 77568 sources."safe-buffer-5.2.1" 77368 77569 sources."semver-6.3.0" ··· 77373 77574 sources."spdx-license-ids-3.0.10" 77374 77575 sources."split-1.0.1" 77375 77576 sources."split2-3.2.2" 77577 + sources."string-width-4.2.2" 77376 77578 sources."string_decoder-1.3.0" 77579 + sources."strip-ansi-6.0.0" 77377 77580 sources."strip-bom-3.0.0" 77378 77581 sources."strip-indent-3.0.0" 77379 77582 sources."supports-color-5.5.0" ··· 77384 77587 sources."through2-4.0.2" 77385 77588 sources."trim-newlines-3.0.1" 77386 77589 sources."trim-off-newlines-1.0.1" 77387 - sources."type-fest-0.13.1" 77388 - sources."uglify-js-3.14.1" 77590 + sources."type-fest-0.18.1" 77591 + sources."uglify-js-3.14.2" 77389 77592 sources."util-deprecate-1.0.2" 77390 77593 sources."uuid-3.4.0" 77391 77594 sources."validate-npm-package-license-3.0.4" 77392 77595 sources."wordwrap-1.0.0" 77596 + sources."wrap-ansi-7.0.0" 77393 77597 sources."xtend-4.0.2" 77598 + sources."y18n-5.0.8" 77394 77599 sources."yallist-4.0.0" 77395 - sources."yargs-parser-18.1.3" 77600 + sources."yargs-17.1.1" 77601 + sources."yargs-parser-20.2.9" 77396 77602 ]; 77397 77603 buildInputs = globalBuildInputs; 77398 77604 meta = { ··· 77447 77653 sources."ansi-regex-2.1.1" 77448 77654 sources."ansi-styles-4.3.0" 77449 77655 sources."aproba-1.2.0" 77450 - sources."are-we-there-yet-1.1.5" 77656 + sources."are-we-there-yet-1.1.7" 77451 77657 sources."array-find-index-1.0.2" 77452 77658 sources."array-flatten-1.1.1" 77453 77659 sources."array-union-2.1.0" ··· 77545 77751 ]; 77546 77752 }) 77547 77753 sources."cordova-serve-4.0.0" 77548 - sources."core-util-is-1.0.2" 77754 + sources."core-util-is-1.0.3" 77549 77755 sources."cross-spawn-7.0.3" 77550 77756 sources."crypto-random-string-2.0.0" 77551 77757 sources."currently-unhandled-0.4.1" ··· 77772 77978 sources."minimist-1.2.5" 77773 77979 sources."minipass-3.1.3" 77774 77980 sources."minipass-collect-1.0.2" 77775 - sources."minipass-fetch-1.3.4" 77981 + sources."minipass-fetch-1.4.1" 77776 77982 sources."minipass-flush-1.0.5" 77777 77983 sources."minipass-json-stream-1.0.1" 77778 77984 sources."minipass-pipeline-1.2.4" ··· 77847 78053 sources."picomatch-2.3.0" 77848 78054 sources."pify-4.0.1" 77849 78055 sources."pkg-up-2.0.0" 77850 - sources."plist-3.0.3" 78056 + sources."plist-3.0.4" 77851 78057 sources."prepend-http-2.0.0" 77852 78058 sources."process-nextick-args-2.0.1" 77853 78059 sources."promise-inflight-1.0.1" ··· 77968 78174 sources."validate-npm-package-license-3.0.4" 77969 78175 sources."validate-npm-package-name-3.0.0" 77970 78176 sources."vary-1.1.2" 77971 - sources."verror-1.10.0" 78177 + (sources."verror-1.10.0" // { 78178 + dependencies = [ 78179 + sources."core-util-is-1.0.2" 78180 + ]; 78181 + }) 77972 78182 sources."which-2.0.2" 77973 78183 sources."wide-align-1.1.3" 77974 78184 (sources."widest-line-3.1.0" // { ··· 77999 78209 sources."write-file-atomic-3.0.3" 78000 78210 sources."xdg-basedir-4.0.0" 78001 78211 sources."xmlbuilder-9.0.7" 78002 - sources."xmldom-0.6.0" 78003 78212 sources."yallist-4.0.0" 78004 78213 ]; 78005 78214 buildInputs = globalBuildInputs; ··· 78029 78238 sources."@types/glob-7.1.4" 78030 78239 sources."@types/minimatch-3.0.5" 78031 78240 sources."@types/minimist-1.2.2" 78032 - sources."@types/node-16.7.2" 78241 + sources."@types/node-16.7.13" 78033 78242 sources."@types/normalize-package-data-2.4.1" 78034 78243 sources."aggregate-error-3.1.0" 78035 78244 sources."ansi-styles-3.2.1" ··· 78400 78609 sources."@cycle/run-3.4.0" 78401 78610 sources."@cycle/time-0.10.1" 78402 78611 sources."@types/cookiejar-2.1.2" 78403 - sources."@types/node-16.7.2" 78612 + sources."@types/node-16.7.13" 78404 78613 sources."@types/superagent-3.8.2" 78405 78614 sources."ansi-escapes-3.2.0" 78406 78615 sources."ansi-regex-2.1.1" ··· 78422 78631 sources."combined-stream-1.0.8" 78423 78632 sources."component-emitter-1.3.0" 78424 78633 sources."cookiejar-2.1.2" 78425 - sources."core-util-is-1.0.2" 78634 + sources."core-util-is-1.0.3" 78426 78635 sources."cross-spawn-5.1.0" 78427 78636 sources."cssauron-1.4.0" 78428 78637 sources."custom-error-instance-2.1.1" ··· 78569 78778 sources."color-name-1.1.4" 78570 78779 sources."commander-4.1.1" 78571 78780 sources."concat-map-0.0.1" 78572 - sources."core-util-is-1.0.2" 78781 + sources."core-util-is-1.0.3" 78573 78782 sources."cross-spawn-7.0.3" 78574 78783 sources."debug-2.6.9" 78575 78784 sources."duplexer2-0.0.2" ··· 78805 79014 sources."connections-1.4.2" 78806 79015 sources."content-types-0.1.0" 78807 79016 sources."copy-descriptor-0.1.1" 78808 - sources."core-util-is-1.0.2" 79017 + sources."core-util-is-1.0.3" 78809 79018 sources."corsify-2.1.0" 78810 79019 sources."count-trailing-zeros-1.0.1" 78811 79020 sources."create-error-class-3.0.2" ··· 79322 79531 }) 79323 79532 sources."uuid-3.4.0" 79324 79533 sources."varint-3.0.1" 79325 - sources."verror-1.10.0" 79534 + (sources."verror-1.10.0" // { 79535 + dependencies = [ 79536 + sources."core-util-is-1.0.2" 79537 + ]; 79538 + }) 79326 79539 sources."which-1.3.1" 79327 79540 sources."widest-line-2.0.1" 79328 79541 (sources."winston-2.4.5" // { ··· 79375 79588 dependencies = [ 79376 79589 sources."@babel/code-frame-7.14.5" 79377 79590 sources."@babel/compat-data-7.15.0" 79378 - (sources."@babel/core-7.15.0" // { 79591 + (sources."@babel/core-7.15.5" // { 79379 79592 dependencies = [ 79380 79593 sources."source-map-0.5.7" 79381 79594 ]; 79382 79595 }) 79383 - (sources."@babel/generator-7.15.0" // { 79596 + (sources."@babel/generator-7.15.4" // { 79384 79597 dependencies = [ 79385 79598 sources."source-map-0.5.7" 79386 79599 ]; 79387 79600 }) 79388 - sources."@babel/helper-annotate-as-pure-7.14.5" 79389 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 79390 - sources."@babel/helper-compilation-targets-7.15.0" 79391 - sources."@babel/helper-create-class-features-plugin-7.15.0" 79601 + sources."@babel/helper-annotate-as-pure-7.15.4" 79602 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 79603 + sources."@babel/helper-compilation-targets-7.15.4" 79604 + sources."@babel/helper-create-class-features-plugin-7.15.4" 79392 79605 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 79393 79606 sources."@babel/helper-define-polyfill-provider-0.2.3" 79394 - sources."@babel/helper-explode-assignable-expression-7.14.5" 79395 - sources."@babel/helper-function-name-7.14.5" 79396 - sources."@babel/helper-get-function-arity-7.14.5" 79397 - sources."@babel/helper-hoist-variables-7.14.5" 79398 - sources."@babel/helper-member-expression-to-functions-7.15.0" 79399 - sources."@babel/helper-module-imports-7.14.5" 79400 - sources."@babel/helper-module-transforms-7.15.0" 79401 - sources."@babel/helper-optimise-call-expression-7.14.5" 79607 + sources."@babel/helper-explode-assignable-expression-7.15.4" 79608 + sources."@babel/helper-function-name-7.15.4" 79609 + sources."@babel/helper-get-function-arity-7.15.4" 79610 + sources."@babel/helper-hoist-variables-7.15.4" 79611 + sources."@babel/helper-member-expression-to-functions-7.15.4" 79612 + sources."@babel/helper-module-imports-7.15.4" 79613 + sources."@babel/helper-module-transforms-7.15.4" 79614 + sources."@babel/helper-optimise-call-expression-7.15.4" 79402 79615 sources."@babel/helper-plugin-utils-7.14.5" 79403 - sources."@babel/helper-remap-async-to-generator-7.14.5" 79404 - sources."@babel/helper-replace-supers-7.15.0" 79405 - sources."@babel/helper-simple-access-7.14.8" 79406 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 79407 - sources."@babel/helper-split-export-declaration-7.14.5" 79616 + sources."@babel/helper-remap-async-to-generator-7.15.4" 79617 + sources."@babel/helper-replace-supers-7.15.4" 79618 + sources."@babel/helper-simple-access-7.15.4" 79619 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 79620 + sources."@babel/helper-split-export-declaration-7.15.4" 79408 79621 sources."@babel/helper-validator-identifier-7.14.9" 79409 79622 sources."@babel/helper-validator-option-7.14.5" 79410 - sources."@babel/helper-wrap-function-7.14.5" 79411 - sources."@babel/helpers-7.15.3" 79623 + sources."@babel/helper-wrap-function-7.15.4" 79624 + sources."@babel/helpers-7.15.4" 79412 79625 sources."@babel/highlight-7.14.5" 79413 - sources."@babel/parser-7.15.3" 79414 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 79415 - sources."@babel/plugin-proposal-async-generator-functions-7.14.9" 79626 + sources."@babel/parser-7.15.5" 79627 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 79628 + sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 79416 79629 sources."@babel/plugin-proposal-class-properties-7.14.5" 79417 - sources."@babel/plugin-proposal-class-static-block-7.14.5" 79630 + sources."@babel/plugin-proposal-class-static-block-7.15.4" 79418 79631 sources."@babel/plugin-proposal-dynamic-import-7.14.5" 79419 79632 sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 79420 79633 sources."@babel/plugin-proposal-json-strings-7.14.5" ··· 79425 79638 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 79426 79639 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 79427 79640 sources."@babel/plugin-proposal-private-methods-7.14.5" 79428 - sources."@babel/plugin-proposal-private-property-in-object-7.14.5" 79641 + sources."@babel/plugin-proposal-private-property-in-object-7.15.4" 79429 79642 sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 79430 79643 sources."@babel/plugin-syntax-async-generators-7.8.4" 79431 79644 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 79446 79659 sources."@babel/plugin-transform-async-to-generator-7.14.5" 79447 79660 sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 79448 79661 sources."@babel/plugin-transform-block-scoping-7.15.3" 79449 - sources."@babel/plugin-transform-classes-7.14.9" 79662 + sources."@babel/plugin-transform-classes-7.15.4" 79450 79663 sources."@babel/plugin-transform-computed-properties-7.14.5" 79451 79664 sources."@babel/plugin-transform-destructuring-7.14.7" 79452 79665 sources."@babel/plugin-transform-dotall-regex-7.14.5" 79453 79666 sources."@babel/plugin-transform-duplicate-keys-7.14.5" 79454 79667 sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 79455 - sources."@babel/plugin-transform-for-of-7.14.5" 79668 + sources."@babel/plugin-transform-for-of-7.15.4" 79456 79669 sources."@babel/plugin-transform-function-name-7.14.5" 79457 79670 sources."@babel/plugin-transform-literals-7.14.5" 79458 79671 sources."@babel/plugin-transform-member-expression-literals-7.14.5" 79459 79672 sources."@babel/plugin-transform-modules-amd-7.14.5" 79460 - sources."@babel/plugin-transform-modules-commonjs-7.15.0" 79461 - sources."@babel/plugin-transform-modules-systemjs-7.14.5" 79673 + sources."@babel/plugin-transform-modules-commonjs-7.15.4" 79674 + sources."@babel/plugin-transform-modules-systemjs-7.15.4" 79462 79675 sources."@babel/plugin-transform-modules-umd-7.14.5" 79463 79676 sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 79464 79677 sources."@babel/plugin-transform-new-target-7.14.5" 79465 79678 sources."@babel/plugin-transform-object-super-7.14.5" 79466 - sources."@babel/plugin-transform-parameters-7.14.5" 79679 + sources."@babel/plugin-transform-parameters-7.15.4" 79467 79680 sources."@babel/plugin-transform-property-literals-7.14.5" 79468 79681 sources."@babel/plugin-transform-react-display-name-7.15.1" 79469 79682 sources."@babel/plugin-transform-react-jsx-7.14.9" ··· 79478 79691 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 79479 79692 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 79480 79693 sources."@babel/plugin-transform-unicode-regex-7.14.5" 79481 - sources."@babel/preset-env-7.15.0" 79694 + sources."@babel/preset-env-7.15.4" 79482 79695 sources."@babel/preset-modules-0.1.4" 79483 79696 sources."@babel/preset-react-7.14.5" 79484 - sources."@babel/runtime-7.15.3" 79485 - sources."@babel/template-7.14.5" 79486 - sources."@babel/traverse-7.15.0" 79487 - sources."@babel/types-7.15.0" 79488 - sources."@blueprintjs/colors-1.0.0" 79489 - sources."@blueprintjs/core-3.48.0" 79490 - sources."@blueprintjs/icons-3.28.0" 79697 + sources."@babel/runtime-7.15.4" 79698 + sources."@babel/template-7.15.4" 79699 + sources."@babel/traverse-7.15.4" 79700 + sources."@babel/types-7.15.4" 79701 + sources."@blueprintjs/colors-3.0.0" 79702 + sources."@blueprintjs/core-3.49.1" 79703 + sources."@blueprintjs/icons-3.29.0" 79491 79704 sources."@electron/get-1.13.0" 79492 79705 sources."@hypnosphi/create-react-context-0.3.1" 79493 79706 sources."@mapbox/extent-0.4.0" ··· 79512 79725 sources."@types/geojson-7946.0.8" 79513 79726 sources."@types/mapbox-gl-0.54.5" 79514 79727 sources."@types/mime-types-2.1.1" 79515 - sources."@types/node-14.17.12" 79728 + sources."@types/node-14.17.15" 79516 79729 sources."@types/node-fetch-2.5.12" 79517 79730 sources."@types/prop-types-15.7.4" 79518 79731 sources."@types/rc-1.2.0" 79519 - sources."@types/react-16.14.14" 79732 + sources."@types/react-16.14.15" 79520 79733 sources."@types/react-dom-16.9.14" 79521 79734 sources."@types/react-virtualized-9.21.13" 79522 79735 sources."@types/scheduler-0.16.2" ··· 79558 79771 sources."extend-shallow-2.0.1" 79559 79772 ]; 79560 79773 }) 79561 - sources."browserslist-4.16.8" 79774 + sources."browserslist-4.17.0" 79562 79775 sources."buffer-crc32-0.2.13" 79563 79776 sources."buffer-from-1.1.2" 79564 79777 sources."cache-base-1.0.1" ··· 79569 79782 ]; 79570 79783 }) 79571 79784 sources."call-bind-1.0.2" 79572 - sources."caniuse-lite-1.0.30001252" 79785 + sources."caniuse-lite-1.0.30001255" 79573 79786 sources."chalk-2.4.2" 79574 79787 sources."chokidar-2.1.8" 79575 79788 (sources."class-utils-0.3.6" // { ··· 79595 79808 sources."collection-visit-1.0.0" 79596 79809 sources."color-convert-1.9.3" 79597 79810 sources."color-name-1.1.3" 79598 - sources."colorette-1.3.0" 79811 + sources."colorette-1.4.0" 79599 79812 sources."combined-stream-1.0.8" 79600 79813 sources."component-emitter-1.3.0" 79601 79814 (sources."concat-stream-1.6.2" // { ··· 79612 79825 ]; 79613 79826 }) 79614 79827 sources."copy-descriptor-0.1.1" 79615 - sources."core-js-3.16.3" 79616 - (sources."core-js-compat-3.16.3" // { 79828 + sources."core-js-3.17.2" 79829 + (sources."core-js-compat-3.17.2" // { 79617 79830 dependencies = [ 79618 79831 sources."semver-7.0.0" 79619 79832 ]; 79620 79833 }) 79621 - sources."core-util-is-1.0.2" 79834 + sources."core-util-is-1.0.3" 79622 79835 sources."crypto-random-string-1.0.0" 79623 79836 sources."csscolorparser-1.0.3" 79624 79837 sources."csstype-3.0.8" ··· 79638 79851 sources."dom4-2.1.6" 79639 79852 sources."duplexer3-0.1.4" 79640 79853 sources."earcut-2.2.3" 79641 - sources."electron-13.2.2" 79642 - sources."electron-to-chromium-1.3.818" 79854 + sources."electron-13.3.0" 79855 + sources."electron-to-chromium-1.3.832" 79643 79856 sources."emoji-js-clean-4.0.0" 79644 79857 sources."emoji-mart-3.0.1" 79645 79858 sources."emoji-regex-9.2.2" ··· 79815 80028 sources."nan-2.15.0" 79816 80029 sources."nanomatch-1.2.13" 79817 80030 sources."napi-macros-2.0.0" 79818 - sources."node-fetch-2.6.1" 80031 + sources."node-fetch-2.6.2" 79819 80032 sources."node-gyp-build-4.2.3" 79820 80033 sources."node-releases-1.1.75" 79821 80034 sources."normalize-path-3.0.0" ··· 79918 80131 sources."rw-0.1.4" 79919 80132 sources."safe-buffer-5.2.1" 79920 80133 sources."safe-regex-1.1.0" 79921 - (sources."sass-1.38.1" // { 80134 + (sources."sass-1.39.0" // { 79922 80135 dependencies = [ 79923 80136 sources."anymatch-3.1.2" 79924 80137 sources."binary-extensions-2.2.0" ··· 80179 80392 dockerfile-language-server-nodejs = nodeEnv.buildNodePackage { 80180 80393 name = "dockerfile-language-server-nodejs"; 80181 80394 packageName = "dockerfile-language-server-nodejs"; 80182 - version = "0.5.0"; 80395 + version = "0.6.0"; 80183 80396 src = fetchurl { 80184 - url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.5.0.tgz"; 80185 - sha512 = "aDwANs1c1xIh5lQTbMlsGx8tMDk1k+sjsYbIXYjWvGY9Ff2e40MQ6RgALItVVij1dj1049FkG9MOHLFqekxZoA=="; 80397 + url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.6.0.tgz"; 80398 + sha512 = "+5bTaLsYJ+sb9bOzV7i6374Bb61jKlE3eh0mMlaLKwG9ZJO8r/pTMbsRNt9vXipkcJEvc9N8xZJyDs2EYnyfPA=="; 80186 80399 }; 80187 80400 dependencies = [ 80188 - (sources."dockerfile-ast-0.3.0" // { 80189 - dependencies = [ 80190 - sources."vscode-languageserver-types-3.16.0" 80191 - ]; 80192 - }) 80193 - sources."dockerfile-language-service-0.4.0" 80194 - (sources."dockerfile-utils-0.5.0" // { 80195 - dependencies = [ 80196 - sources."vscode-languageserver-types-3.16.0" 80197 - ]; 80198 - }) 80199 - sources."vscode-jsonrpc-6.0.0" 80200 - sources."vscode-languageserver-7.0.0" 80201 - (sources."vscode-languageserver-protocol-3.16.0" // { 80202 - dependencies = [ 80203 - sources."vscode-languageserver-types-3.16.0" 80204 - ]; 80205 - }) 80401 + sources."dockerfile-ast-0.3.1" 80402 + sources."dockerfile-language-service-0.5.0" 80403 + sources."dockerfile-utils-0.7.0" 80404 + sources."vscode-jsonrpc-8.0.0-next.2" 80405 + sources."vscode-languageserver-8.0.0-next.2" 80406 + sources."vscode-languageserver-protocol-3.17.0-next.8" 80206 80407 sources."vscode-languageserver-textdocument-1.0.1" 80207 - sources."vscode-languageserver-types-3.17.0-next.1" 80408 + sources."vscode-languageserver-types-3.17.0-next.3" 80208 80409 ]; 80209 80410 buildInputs = globalBuildInputs; 80210 80411 meta = { ··· 80227 80428 dependencies = [ 80228 80429 sources."@fast-csv/format-4.3.5" 80229 80430 sources."@fast-csv/parse-4.3.6" 80230 - sources."@types/node-14.17.12" 80431 + sources."@types/node-14.17.15" 80231 80432 sources."JSONStream-1.3.5" 80232 80433 sources."ajv-6.12.6" 80233 80434 sources."asn1-0.2.4" ··· 80365 80566 "@electron-forge/cli" = nodeEnv.buildNodePackage { 80366 80567 name = "_at_electron-forge_slash_cli"; 80367 80568 packageName = "@electron-forge/cli"; 80368 - version = "6.0.0-beta.59"; 80569 + version = "6.0.0-beta.60"; 80369 80570 src = fetchurl { 80370 - url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.59.tgz"; 80371 - sha512 = "cFYnr5LKi+Hg+rzhL2OZq5S7vlqzNS8rlQzXiYtv4Ft6BY27CTJ8mz76nAxgjRFv0/rDUyKTY2NZUOPeztziMQ=="; 80571 + url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.60.tgz"; 80572 + sha512 = "bbppliO8kl54MHwe7hCNapzmaqP0RNUONFcK/fd9Od917+ib23KqRAgbrN4ukwKjXzIfzLfoAsEY06UgL0DvIg=="; 80372 80573 }; 80373 80574 dependencies = [ 80374 - sources."@electron-forge/async-ora-6.0.0-beta.59" 80375 - sources."@electron-forge/core-6.0.0-beta.59" 80376 - sources."@electron-forge/installer-base-6.0.0-beta.59" 80377 - sources."@electron-forge/installer-darwin-6.0.0-beta.59" 80378 - sources."@electron-forge/installer-deb-6.0.0-beta.59" 80379 - sources."@electron-forge/installer-dmg-6.0.0-beta.59" 80380 - sources."@electron-forge/installer-exe-6.0.0-beta.59" 80381 - sources."@electron-forge/installer-linux-6.0.0-beta.59" 80382 - sources."@electron-forge/installer-rpm-6.0.0-beta.59" 80383 - sources."@electron-forge/installer-zip-6.0.0-beta.59" 80384 - sources."@electron-forge/maker-base-6.0.0-beta.59" 80385 - sources."@electron-forge/plugin-base-6.0.0-beta.59" 80386 - sources."@electron-forge/publisher-base-6.0.0-beta.59" 80387 - sources."@electron-forge/shared-types-6.0.0-beta.59" 80388 - sources."@electron-forge/template-base-6.0.0-beta.59" 80389 - sources."@electron-forge/template-typescript-6.0.0-beta.59" 80390 - sources."@electron-forge/template-typescript-webpack-6.0.0-beta.59" 80391 - sources."@electron-forge/template-webpack-6.0.0-beta.59" 80575 + sources."@electron-forge/async-ora-6.0.0-beta.60" 80576 + sources."@electron-forge/core-6.0.0-beta.60" 80577 + sources."@electron-forge/installer-base-6.0.0-beta.60" 80578 + sources."@electron-forge/installer-darwin-6.0.0-beta.60" 80579 + sources."@electron-forge/installer-deb-6.0.0-beta.60" 80580 + sources."@electron-forge/installer-dmg-6.0.0-beta.60" 80581 + sources."@electron-forge/installer-exe-6.0.0-beta.60" 80582 + sources."@electron-forge/installer-linux-6.0.0-beta.60" 80583 + sources."@electron-forge/installer-rpm-6.0.0-beta.60" 80584 + sources."@electron-forge/installer-zip-6.0.0-beta.60" 80585 + sources."@electron-forge/maker-base-6.0.0-beta.60" 80586 + sources."@electron-forge/plugin-base-6.0.0-beta.60" 80587 + sources."@electron-forge/publisher-base-6.0.0-beta.60" 80588 + sources."@electron-forge/shared-types-6.0.0-beta.60" 80589 + sources."@electron-forge/template-base-6.0.0-beta.60" 80590 + sources."@electron-forge/template-typescript-6.0.0-beta.60" 80591 + sources."@electron-forge/template-typescript-webpack-6.0.0-beta.60" 80592 + sources."@electron-forge/template-webpack-6.0.0-beta.60" 80392 80593 (sources."@electron/get-1.13.0" // { 80393 80594 dependencies = [ 80394 80595 sources."@sindresorhus/is-0.14.0" ··· 80415 80616 sources."universalify-0.1.2" 80416 80617 ]; 80417 80618 }) 80619 + sources."@gar/promisify-1.1.2" 80418 80620 sources."@malept/cross-spawn-promise-2.0.0" 80419 80621 sources."@nodelib/fs.scandir-2.1.5" 80420 80622 sources."@nodelib/fs.stat-2.0.5" 80421 80623 sources."@nodelib/fs.walk-1.2.8" 80624 + sources."@npmcli/fs-1.0.0" 80625 + sources."@npmcli/move-file-1.1.2" 80422 80626 sources."@sindresorhus/is-4.0.1" 80423 80627 sources."@szmarczak/http-timer-4.0.6" 80628 + sources."@tootallnate/once-1.1.2" 80424 80629 sources."@types/cacheable-request-6.0.2" 80425 80630 sources."@types/glob-7.1.4" 80426 80631 sources."@types/http-cache-semantics-4.0.1" 80427 - sources."@types/keyv-3.1.2" 80632 + sources."@types/keyv-3.1.3" 80428 80633 sources."@types/minimatch-3.0.5" 80429 - sources."@types/node-16.7.2" 80634 + sources."@types/node-16.7.13" 80430 80635 sources."@types/responselike-1.0.0" 80431 80636 sources."@types/yauzl-2.9.2" 80432 80637 sources."abbrev-1.1.1" 80638 + sources."agent-base-6.0.2" 80639 + sources."agentkeepalive-4.1.4" 80640 + sources."aggregate-error-3.1.0" 80433 80641 sources."ajv-6.12.6" 80434 80642 (sources."ansi-escapes-4.3.2" // { 80435 80643 dependencies = [ ··· 80439 80647 sources."ansi-regex-5.0.0" 80440 80648 sources."ansi-styles-4.3.0" 80441 80649 sources."aproba-1.2.0" 80442 - (sources."are-we-there-yet-1.1.5" // { 80650 + (sources."are-we-there-yet-1.1.7" // { 80443 80651 dependencies = [ 80444 80652 sources."readable-stream-2.3.7" 80445 80653 sources."safe-buffer-5.1.2" ··· 80473 80681 sources."buffer-crc32-0.2.13" 80474 80682 sources."buffer-fill-1.0.0" 80475 80683 sources."buffer-from-1.1.2" 80684 + sources."cacache-15.3.0" 80476 80685 sources."cacheable-lookup-5.0.4" 80477 80686 sources."cacheable-request-7.0.2" 80478 80687 sources."camelcase-2.1.1" ··· 80480 80689 sources."caseless-0.12.0" 80481 80690 sources."chalk-4.1.2" 80482 80691 sources."chardet-0.7.0" 80483 - sources."chownr-1.1.4" 80692 + sources."chownr-2.0.0" 80484 80693 sources."chromium-pickle-js-0.2.0" 80694 + sources."clean-stack-2.2.0" 80485 80695 sources."cli-cursor-3.1.0" 80486 80696 sources."cli-spinners-2.6.0" 80487 80697 sources."cli-width-3.0.0" ··· 80503 80713 sources."concat-map-0.0.1" 80504 80714 sources."config-chain-1.1.13" 80505 80715 sources."console-control-strings-1.1.0" 80506 - sources."core-js-3.16.3" 80507 - sources."core-util-is-1.0.2" 80716 + sources."core-js-3.17.2" 80717 + sources."core-util-is-1.0.3" 80508 80718 sources."cross-spawn-7.0.3" 80509 80719 (sources."cross-spawn-windows-exe-1.2.0" // { 80510 80720 dependencies = [ ··· 80524 80734 sources."mimic-response-3.1.0" 80525 80735 ]; 80526 80736 }) 80527 - sources."deep-extend-0.6.0" 80528 80737 sources."defaults-1.0.3" 80529 80738 sources."defer-to-connect-2.0.1" 80530 80739 sources."define-lazy-prop-2.0.0" ··· 80535 80744 }) 80536 80745 sources."delayed-stream-1.0.0" 80537 80746 sources."delegates-1.0.0" 80747 + sources."depd-1.1.2" 80538 80748 sources."detect-libc-1.0.3" 80539 80749 sources."detect-node-2.1.0" 80540 80750 sources."duplexer3-0.1.4" 80541 80751 sources."ecc-jsbn-0.1.2" 80542 - (sources."electron-notarize-1.1.0" // { 80752 + (sources."electron-notarize-1.1.1" // { 80543 80753 dependencies = [ 80544 80754 sources."fs-extra-9.1.0" 80545 80755 ]; ··· 80554 80764 sources."fs-extra-9.1.0" 80555 80765 ]; 80556 80766 }) 80557 - (sources."electron-rebuild-2.3.5" // { 80558 - dependencies = [ 80559 - sources."@malept/cross-spawn-promise-1.1.1" 80560 - sources."fs-extra-9.1.0" 80561 - ]; 80562 - }) 80767 + sources."electron-rebuild-3.2.3" 80563 80768 sources."emoji-regex-8.0.0" 80564 80769 sources."encodeurl-1.0.2" 80770 + sources."encoding-0.1.13" 80565 80771 sources."end-of-stream-1.4.4" 80566 80772 sources."env-paths-2.2.1" 80773 + sources."err-code-2.0.3" 80567 80774 sources."error-ex-1.3.2" 80568 80775 sources."es6-error-4.1.1" 80569 80776 sources."escalade-3.1.1" ··· 80581 80788 }) 80582 80789 sources."expand-tilde-2.0.2" 80583 80790 sources."extend-3.0.2" 80584 - sources."external-editor-3.1.0" 80791 + (sources."external-editor-3.1.0" // { 80792 + dependencies = [ 80793 + sources."iconv-lite-0.4.24" 80794 + ]; 80795 + }) 80585 80796 sources."extract-zip-2.0.1" 80586 80797 sources."extsprintf-1.3.0" 80587 80798 sources."fast-deep-equal-3.1.3" ··· 80611 80822 sources."forever-agent-0.6.1" 80612 80823 sources."form-data-2.3.3" 80613 80824 sources."fs-extra-10.0.0" 80614 - sources."fs-minipass-1.2.7" 80825 + sources."fs-minipass-2.1.0" 80615 80826 sources."fs.realpath-1.0.0" 80616 80827 sources."function-bind-1.1.1" 80617 80828 (sources."galactus-0.2.1" // { ··· 80660 80871 sources."homedir-polyfill-1.0.3" 80661 80872 sources."hosted-git-info-2.8.9" 80662 80873 sources."http-cache-semantics-4.1.0" 80874 + sources."http-proxy-agent-4.0.1" 80663 80875 sources."http-signature-1.2.0" 80664 80876 sources."http2-wrapper-1.0.3" 80665 - sources."iconv-lite-0.4.24" 80877 + sources."https-proxy-agent-5.0.0" 80878 + sources."humanize-ms-1.2.1" 80879 + sources."iconv-lite-0.6.3" 80666 80880 sources."ieee754-1.2.1" 80667 - sources."ignore-walk-3.0.4" 80668 - sources."indent-string-2.1.0" 80881 + sources."imurmurhash-0.1.4" 80882 + sources."indent-string-4.0.0" 80883 + sources."infer-owner-1.0.4" 80669 80884 sources."inflight-1.0.6" 80670 80885 sources."inherits-2.0.4" 80671 80886 sources."ini-1.3.8" ··· 80675 80890 sources."string-width-4.2.2" 80676 80891 ]; 80677 80892 }) 80893 + sources."ip-1.1.5" 80678 80894 sources."is-arrayish-0.2.1" 80679 80895 sources."is-core-module-2.6.0" 80680 80896 sources."is-docker-2.2.1" ··· 80683 80899 sources."is-fullwidth-code-point-1.0.0" 80684 80900 sources."is-glob-4.0.1" 80685 80901 sources."is-interactive-1.0.0" 80902 + sources."is-lambda-1.0.1" 80686 80903 sources."is-number-7.0.0" 80687 80904 sources."is-stream-1.1.0" 80688 80905 sources."is-typedarray-1.0.0" ··· 80710 80927 sources."log-symbols-4.1.0" 80711 80928 sources."loud-rejection-1.6.0" 80712 80929 sources."lowercase-keys-2.0.0" 80713 - (sources."lru-cache-6.0.0" // { 80714 - dependencies = [ 80715 - sources."yallist-4.0.0" 80716 - ]; 80717 - }) 80718 - (sources."lzma-native-6.0.1" // { 80719 - dependencies = [ 80720 - sources."readable-stream-2.3.7" 80721 - sources."safe-buffer-5.1.2" 80722 - sources."string_decoder-1.1.1" 80723 - ]; 80724 - }) 80930 + sources."lru-cache-6.0.0" 80931 + sources."lzma-native-8.0.1" 80932 + sources."make-fetch-happen-8.0.14" 80725 80933 sources."map-age-cleaner-0.1.3" 80726 80934 sources."map-obj-1.0.1" 80727 80935 (sources."matcher-3.0.0" // { ··· 80749 80957 sources."mimic-response-1.0.1" 80750 80958 sources."minimatch-3.0.4" 80751 80959 sources."minimist-1.2.5" 80752 - sources."minipass-2.9.0" 80753 - sources."minizlib-1.3.3" 80754 - sources."mkdirp-0.5.5" 80960 + sources."minipass-3.1.3" 80961 + sources."minipass-collect-1.0.2" 80962 + sources."minipass-fetch-1.4.1" 80963 + sources."minipass-flush-1.0.5" 80964 + sources."minipass-pipeline-1.2.4" 80965 + sources."minipass-sized-1.0.3" 80966 + sources."minizlib-2.1.2" 80967 + sources."mkdirp-1.0.4" 80755 80968 sources."ms-2.0.0" 80756 80969 sources."mute-stream-0.0.8" 80757 - (sources."needle-2.9.0" // { 80758 - dependencies = [ 80759 - sources."debug-3.2.7" 80760 - sources."ms-2.1.3" 80761 - ]; 80762 - }) 80763 80970 sources."nice-try-1.0.5" 80764 - (sources."node-abi-2.30.0" // { 80765 - dependencies = [ 80766 - sources."semver-5.7.1" 80767 - ]; 80768 - }) 80769 - sources."node-addon-api-1.7.2" 80770 - sources."node-fetch-2.6.1" 80771 - (sources."node-gyp-7.1.2" // { 80772 - dependencies = [ 80773 - sources."nopt-5.0.0" 80774 - sources."rimraf-3.0.2" 80775 - ]; 80776 - }) 80777 - (sources."node-pre-gyp-0.11.0" // { 80971 + (sources."node-abi-2.30.1" // { 80778 80972 dependencies = [ 80779 80973 sources."semver-5.7.1" 80780 - sources."tar-4.4.19" 80781 80974 ]; 80782 80975 }) 80783 - sources."nopt-4.0.3" 80976 + sources."node-addon-api-3.2.1" 80977 + sources."node-api-version-0.1.4" 80978 + sources."node-fetch-2.6.2" 80979 + sources."node-gyp-8.2.0" 80980 + sources."node-gyp-build-4.2.3" 80981 + sources."nopt-5.0.0" 80784 80982 (sources."normalize-package-data-2.5.0" // { 80785 80983 dependencies = [ 80786 80984 sources."semver-5.7.1" 80787 80985 ]; 80788 80986 }) 80789 80987 sources."normalize-url-6.1.0" 80790 - sources."npm-bundled-1.1.2" 80791 80988 (sources."npm-conf-1.1.3" // { 80792 80989 dependencies = [ 80793 80990 sources."pify-3.0.0" 80794 80991 ]; 80795 80992 }) 80796 - sources."npm-normalize-package-bin-1.0.1" 80797 - sources."npm-packlist-1.4.8" 80798 80993 (sources."npm-run-path-2.0.2" // { 80799 80994 dependencies = [ 80800 80995 sources."path-key-2.0.1" ··· 80814 81009 sources."onetime-5.1.2" 80815 81010 sources."open-8.2.1" 80816 81011 sources."ora-5.4.1" 80817 - sources."os-homedir-1.0.2" 80818 81012 sources."os-tmpdir-1.0.2" 80819 - sources."osenv-0.1.5" 80820 81013 sources."p-cancelable-2.1.1" 80821 81014 sources."p-defer-1.0.0" 80822 81015 sources."p-finally-1.0.0" 80823 81016 sources."p-is-promise-2.1.0" 80824 81017 sources."p-limit-1.3.0" 80825 81018 sources."p-locate-2.0.0" 81019 + sources."p-map-4.0.0" 80826 81020 sources."p-try-1.0.0" 80827 81021 sources."parse-author-2.0.0" 80828 81022 sources."parse-json-2.2.0" ··· 80849 81043 sources."path-exists-4.0.0" 80850 81044 ]; 80851 81045 }) 80852 - sources."plist-3.0.3" 81046 + sources."plist-3.0.4" 80853 81047 sources."prepend-http-2.0.0" 80854 81048 sources."pretty-bytes-1.0.4" 80855 81049 sources."pretty-ms-7.0.1" 80856 81050 sources."process-nextick-args-2.0.1" 80857 81051 sources."progress-2.0.3" 80858 81052 sources."progress-stream-1.2.0" 81053 + sources."promise-inflight-1.0.1" 81054 + sources."promise-retry-2.0.1" 80859 81055 sources."proto-list-1.2.4" 80860 81056 sources."psl-1.8.0" 80861 81057 sources."pump-3.0.0" ··· 80863 81059 sources."qs-6.5.2" 80864 81060 sources."queue-microtask-1.2.3" 80865 81061 sources."quick-lru-5.1.1" 80866 - sources."rc-1.2.8" 80867 81062 sources."rcedit-3.0.1" 80868 81063 sources."read-pkg-2.0.0" 80869 81064 (sources."read-pkg-up-2.0.0" // { ··· 80872 81067 ]; 80873 81068 }) 80874 81069 sources."readable-stream-3.6.0" 80875 - sources."redent-1.0.0" 81070 + (sources."redent-1.0.0" // { 81071 + dependencies = [ 81072 + sources."indent-string-2.1.0" 81073 + ]; 81074 + }) 80876 81075 sources."repeating-2.0.1" 80877 81076 sources."request-2.88.2" 80878 81077 sources."require-directory-2.1.1" 80879 81078 sources."resolve-1.20.0" 80880 - sources."resolve-alpn-1.2.0" 81079 + sources."resolve-alpn-1.2.1" 80881 81080 sources."resolve-dir-1.0.1" 80882 81081 sources."resolve-package-1.0.1" 80883 81082 sources."responselike-2.0.0" 80884 81083 sources."restore-cursor-3.1.0" 81084 + sources."retry-0.12.0" 80885 81085 sources."reusify-1.0.4" 80886 - sources."rimraf-2.7.1" 81086 + sources."rimraf-3.0.2" 80887 81087 sources."roarr-2.15.4" 80888 81088 sources."run-async-2.4.1" 80889 81089 sources."run-parallel-1.2.0" 80890 81090 sources."rxjs-7.3.0" 80891 81091 sources."safe-buffer-5.2.1" 80892 81092 sources."safer-buffer-2.1.2" 80893 - sources."sax-1.2.4" 80894 81093 sources."semver-7.3.5" 80895 81094 sources."semver-compare-1.0.0" 80896 81095 sources."serialize-error-7.0.1" ··· 80899 81098 sources."shebang-regex-3.0.0" 80900 81099 sources."signal-exit-3.0.3" 80901 81100 sources."single-line-log-1.1.2" 81101 + sources."smart-buffer-4.2.0" 81102 + sources."socks-2.6.1" 81103 + sources."socks-proxy-agent-5.0.1" 80902 81104 sources."source-map-0.6.1" 80903 81105 sources."source-map-support-0.5.19" 80904 81106 sources."spdx-correct-3.1.1" ··· 80908 81110 sources."speedometer-0.1.4" 80909 81111 sources."sprintf-js-1.1.2" 80910 81112 sources."sshpk-1.16.1" 81113 + sources."ssri-8.0.1" 80911 81114 (sources."string-width-1.0.2" // { 80912 81115 dependencies = [ 80913 81116 sources."ansi-regex-2.1.1" ··· 80919 81122 sources."strip-bom-3.0.0" 80920 81123 sources."strip-eof-1.0.0" 80921 81124 sources."strip-indent-1.0.1" 80922 - sources."strip-json-comments-2.0.1" 80923 81125 sources."strip-outer-1.0.1" 80924 81126 sources."sudo-prompt-9.2.1" 80925 81127 sources."sumchecker-3.0.1" 80926 81128 sources."supports-color-7.2.0" 80927 - (sources."tar-6.1.11" // { 80928 - dependencies = [ 80929 - sources."chownr-2.0.0" 80930 - sources."fs-minipass-2.1.0" 80931 - sources."minipass-3.1.3" 80932 - sources."minizlib-2.1.2" 80933 - sources."mkdirp-1.0.4" 80934 - sources."yallist-4.0.0" 80935 - ]; 80936 - }) 81129 + sources."tar-6.1.11" 80937 81130 sources."throttleit-0.0.2" 80938 81131 sources."through-2.3.8" 80939 81132 (sources."through2-0.2.3" // { ··· 80954 81147 sources."tunnel-agent-0.6.0" 80955 81148 sources."tweetnacl-0.14.5" 80956 81149 sources."type-fest-0.13.1" 81150 + sources."unique-filename-1.1.1" 81151 + sources."unique-slug-2.0.2" 80957 81152 sources."universalify-2.0.0" 80958 81153 sources."uri-js-4.4.1" 80959 81154 sources."url-parse-lax-3.0.0" ··· 80961 81156 sources."util-deprecate-1.0.2" 80962 81157 sources."uuid-3.4.0" 80963 81158 sources."validate-npm-package-license-3.0.4" 80964 - sources."verror-1.10.0" 81159 + (sources."verror-1.10.0" // { 81160 + dependencies = [ 81161 + sources."core-util-is-1.0.2" 81162 + ]; 81163 + }) 80965 81164 sources."wcwidth-1.0.1" 80966 81165 sources."which-2.0.2" 80967 81166 sources."wide-align-1.1.3" ··· 80973 81172 }) 80974 81173 sources."wrappy-1.0.2" 80975 81174 sources."xmlbuilder-9.0.7" 80976 - sources."xmldom-0.6.0" 80977 81175 sources."xtend-2.1.2" 80978 81176 sources."y18n-5.0.8" 80979 - sources."yallist-3.1.1" 80980 - (sources."yargs-16.2.0" // { 81177 + sources."yallist-4.0.0" 81178 + (sources."yargs-17.1.1" // { 80981 81179 dependencies = [ 80982 81180 sources."is-fullwidth-code-point-3.0.0" 80983 81181 sources."string-width-4.2.2" ··· 81028 81226 emoj = nodeEnv.buildNodePackage { 81029 81227 name = "emoj"; 81030 81228 packageName = "emoj"; 81031 - version = "3.1.0"; 81229 + version = "3.2.0"; 81032 81230 src = fetchurl { 81033 - url = "https://registry.npmjs.org/emoj/-/emoj-3.1.0.tgz"; 81034 - sha512 = "ohjlUXM2v39rDqGIrlyxdcn9ql+4b+X1u90CXNWjYw5wX6C3wTHRfqFfeV8jajYD6Xc+ufn2X1QeZZWhRBXTlA=="; 81231 + url = "https://registry.npmjs.org/emoj/-/emoj-3.2.0.tgz"; 81232 + sha512 = "ceJSyC2s1VCIqyzGkHeJkWBq/85QXaHM+0rZ1lRRtmcK9CsfRDyLSIZ7KJDZhPdIRUXBgBkdcOAW3AIu/yO/ew=="; 81035 81233 }; 81036 81234 dependencies = [ 81037 81235 sources."@babel/code-frame-7.14.5" 81038 81236 sources."@babel/compat-data-7.15.0" 81039 - (sources."@babel/core-7.15.0" // { 81237 + (sources."@babel/core-7.15.5" // { 81040 81238 dependencies = [ 81041 81239 sources."semver-6.3.0" 81042 81240 ]; 81043 81241 }) 81044 - sources."@babel/generator-7.15.0" 81045 - sources."@babel/helper-annotate-as-pure-7.14.5" 81046 - (sources."@babel/helper-compilation-targets-7.15.0" // { 81242 + sources."@babel/generator-7.15.4" 81243 + sources."@babel/helper-annotate-as-pure-7.15.4" 81244 + (sources."@babel/helper-compilation-targets-7.15.4" // { 81047 81245 dependencies = [ 81048 81246 sources."semver-6.3.0" 81049 81247 ]; 81050 81248 }) 81051 - sources."@babel/helper-function-name-7.14.5" 81052 - sources."@babel/helper-get-function-arity-7.14.5" 81053 - sources."@babel/helper-hoist-variables-7.14.5" 81054 - sources."@babel/helper-member-expression-to-functions-7.15.0" 81055 - sources."@babel/helper-module-imports-7.14.5" 81056 - sources."@babel/helper-module-transforms-7.15.0" 81057 - sources."@babel/helper-optimise-call-expression-7.14.5" 81249 + sources."@babel/helper-function-name-7.15.4" 81250 + sources."@babel/helper-get-function-arity-7.15.4" 81251 + sources."@babel/helper-hoist-variables-7.15.4" 81252 + sources."@babel/helper-member-expression-to-functions-7.15.4" 81253 + sources."@babel/helper-module-imports-7.15.4" 81254 + sources."@babel/helper-module-transforms-7.15.4" 81255 + sources."@babel/helper-optimise-call-expression-7.15.4" 81058 81256 sources."@babel/helper-plugin-utils-7.14.5" 81059 - sources."@babel/helper-replace-supers-7.15.0" 81060 - sources."@babel/helper-simple-access-7.14.8" 81061 - sources."@babel/helper-split-export-declaration-7.14.5" 81257 + sources."@babel/helper-replace-supers-7.15.4" 81258 + sources."@babel/helper-simple-access-7.15.4" 81259 + sources."@babel/helper-split-export-declaration-7.15.4" 81062 81260 sources."@babel/helper-validator-identifier-7.14.9" 81063 81261 sources."@babel/helper-validator-option-7.14.5" 81064 - sources."@babel/helpers-7.15.3" 81262 + sources."@babel/helpers-7.15.4" 81065 81263 sources."@babel/highlight-7.14.5" 81066 - sources."@babel/parser-7.15.3" 81264 + sources."@babel/parser-7.15.5" 81067 81265 sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 81068 81266 sources."@babel/plugin-syntax-jsx-7.14.5" 81069 81267 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 81070 81268 sources."@babel/plugin-transform-destructuring-7.14.7" 81071 - sources."@babel/plugin-transform-parameters-7.14.5" 81269 + sources."@babel/plugin-transform-parameters-7.15.4" 81072 81270 sources."@babel/plugin-transform-react-jsx-7.14.9" 81073 - sources."@babel/template-7.14.5" 81074 - sources."@babel/traverse-7.15.0" 81075 - sources."@babel/types-7.15.0" 81076 - sources."@sindresorhus/is-4.0.1" 81077 - sources."@szmarczak/http-timer-4.0.6" 81078 - sources."@types/cacheable-request-6.0.2" 81079 - sources."@types/http-cache-semantics-4.0.1" 81080 - sources."@types/keyv-3.1.2" 81271 + sources."@babel/template-7.15.4" 81272 + sources."@babel/traverse-7.15.4" 81273 + sources."@babel/types-7.15.4" 81081 81274 sources."@types/minimist-1.2.2" 81082 - sources."@types/node-16.7.2" 81083 81275 sources."@types/normalize-package-data-2.4.1" 81084 - sources."@types/responselike-1.0.0" 81085 81276 sources."@types/yoga-layout-1.9.2" 81086 81277 sources."ajv-6.12.6" 81087 81278 (sources."ansi-escapes-4.3.2" // { ··· 81098 81289 sources."auto-bind-4.0.0" 81099 81290 sources."balanced-match-1.0.2" 81100 81291 sources."brace-expansion-1.1.11" 81101 - sources."browserslist-4.16.8" 81102 - sources."cacheable-lookup-5.0.4" 81103 - (sources."cacheable-request-7.0.2" // { 81104 - dependencies = [ 81105 - sources."get-stream-5.2.0" 81106 - ]; 81107 - }) 81292 + sources."browserslist-4.17.0" 81108 81293 sources."caller-callsite-2.0.0" 81109 81294 sources."caller-path-2.0.0" 81110 81295 sources."callsites-2.0.0" 81111 81296 sources."camelcase-5.3.1" 81112 - (sources."camelcase-keys-6.2.2" // { 81113 - dependencies = [ 81114 - sources."quick-lru-4.0.1" 81115 - ]; 81116 - }) 81117 - sources."caniuse-lite-1.0.30001252" 81297 + sources."camelcase-keys-6.2.2" 81298 + sources."caniuse-lite-1.0.30001255" 81118 81299 sources."chalk-2.4.2" 81119 81300 sources."ci-info-2.0.0" 81120 81301 sources."cli-boxes-2.2.1" 81121 81302 sources."cli-cursor-3.1.0" 81122 81303 sources."cli-truncate-2.1.0" 81123 81304 sources."clipboardy-2.3.0" 81124 - sources."clone-response-1.0.2" 81125 81305 sources."code-excerpt-3.0.0" 81126 81306 sources."color-convert-1.9.3" 81127 81307 sources."color-name-1.1.3" 81128 - sources."colorette-1.3.0" 81308 + sources."colorette-1.4.0" 81129 81309 sources."commondir-1.0.1" 81130 81310 sources."concat-map-0.0.1" 81131 81311 (sources."conf-7.1.2" // { ··· 81144 81324 sources."map-obj-1.0.1" 81145 81325 ]; 81146 81326 }) 81147 - (sources."decompress-response-6.0.0" // { 81148 - dependencies = [ 81149 - sources."mimic-response-3.1.0" 81150 - ]; 81151 - }) 81152 - sources."defer-to-connect-2.0.1" 81153 81327 sources."dot-prop-5.3.0" 81154 - sources."electron-to-chromium-1.3.818" 81328 + sources."electron-to-chromium-1.3.832" 81155 81329 sources."emoji-regex-8.0.0" 81156 81330 sources."emojilib-2.4.0" 81157 81331 sources."end-of-stream-1.4.4" ··· 81162 81336 sources."execa-1.0.0" 81163 81337 sources."fast-deep-equal-3.1.3" 81164 81338 sources."fast-json-stable-stringify-2.1.0" 81165 - sources."find-cache-dir-3.3.1" 81339 + sources."find-cache-dir-3.3.2" 81166 81340 sources."find-up-3.0.0" 81167 81341 sources."fs.realpath-1.0.0" 81168 81342 sources."function-bind-1.1.1" ··· 81170 81344 sources."get-stream-4.1.0" 81171 81345 sources."glob-7.1.7" 81172 81346 sources."globals-11.12.0" 81173 - sources."got-11.8.2" 81174 81347 sources."hard-rejection-2.1.0" 81175 81348 sources."has-1.0.3" 81176 81349 sources."has-flag-3.0.0" 81177 81350 sources."hosted-git-info-2.8.9" 81178 - sources."http-cache-semantics-4.1.0" 81179 - sources."http2-wrapper-1.0.3" 81180 81351 sources."import-jsx-4.0.0" 81181 81352 sources."indent-string-4.0.0" 81182 81353 sources."inflight-1.0.6" ··· 81214 81385 sources."isexe-2.0.0" 81215 81386 sources."js-tokens-4.0.0" 81216 81387 sources."jsesc-2.5.2" 81217 - sources."json-buffer-3.0.1" 81218 81388 sources."json-parse-even-better-errors-2.3.1" 81219 81389 sources."json-schema-traverse-0.4.1" 81220 81390 sources."json-schema-typed-7.0.3" 81221 81391 sources."json5-2.2.0" 81222 - sources."keyv-4.0.3" 81223 81392 sources."kind-of-6.0.3" 81224 81393 sources."lines-and-columns-1.1.6" 81225 81394 sources."locate-path-3.0.0" 81226 81395 sources."lodash-4.17.21" 81227 81396 sources."loose-envify-1.4.0" 81228 - sources."lowercase-keys-2.0.0" 81229 81397 sources."lru-cache-6.0.0" 81230 81398 (sources."make-dir-3.1.0" // { 81231 81399 dependencies = [ ··· 81241 81409 ]; 81242 81410 }) 81243 81411 sources."mimic-fn-3.1.0" 81244 - sources."mimic-response-1.0.1" 81245 81412 sources."min-indent-1.0.1" 81246 81413 sources."minimatch-3.0.4" 81247 81414 sources."minimist-1.2.5" ··· 81250 81417 sources."nice-try-1.0.5" 81251 81418 sources."node-releases-1.1.75" 81252 81419 sources."normalize-package-data-2.5.0" 81253 - sources."normalize-url-6.1.0" 81254 81420 sources."npm-run-path-2.0.2" 81255 81421 sources."object-assign-4.1.1" 81256 81422 sources."once-1.4.0" ··· 81259 81425 sources."mimic-fn-2.1.0" 81260 81426 ]; 81261 81427 }) 81262 - sources."p-cancelable-2.1.1" 81263 81428 sources."p-defer-1.0.0" 81264 81429 sources."p-finally-1.0.0" 81265 81430 sources."p-limit-2.3.0" ··· 81283 81448 sources."prop-types-15.7.2" 81284 81449 sources."pump-3.0.0" 81285 81450 sources."punycode-2.1.1" 81286 - sources."quick-lru-5.1.1" 81451 + sources."quick-lru-4.0.1" 81287 81452 sources."react-16.14.0" 81288 - sources."react-devtools-core-4.17.0" 81453 + sources."react-devtools-core-4.18.0" 81289 81454 sources."react-is-16.13.1" 81290 81455 sources."react-reconciler-0.24.0" 81291 81456 (sources."read-pkg-5.2.0" // { ··· 81304 81469 }) 81305 81470 sources."redent-3.0.0" 81306 81471 sources."resolve-1.20.0" 81307 - sources."resolve-alpn-1.2.0" 81308 81472 sources."resolve-from-3.0.0" 81309 - sources."responselike-2.0.0" 81310 81473 sources."restore-cursor-3.1.0" 81311 81474 sources."rimraf-3.0.2" 81312 81475 sources."safe-buffer-5.1.2" ··· 81355 81518 ]; 81356 81519 }) 81357 81520 sources."wrappy-1.0.2" 81358 - sources."ws-7.5.3" 81521 + sources."ws-7.5.4" 81359 81522 sources."yallist-4.0.0" 81360 81523 sources."yargs-parser-18.1.3" 81361 81524 sources."yoga-layout-prebuilt-1.10.0" ··· 81405 81568 sources."@fluentui/date-time-utilities-7.9.1" 81406 81569 sources."@fluentui/dom-utilities-1.1.2" 81407 81570 sources."@fluentui/keyboard-key-0.2.17" 81408 - sources."@fluentui/react-7.174.1" 81409 - sources."@fluentui/react-focus-7.17.6" 81571 + sources."@fluentui/react-7.175.2" 81572 + sources."@fluentui/react-focus-7.18.0" 81410 81573 sources."@fluentui/react-window-provider-1.0.2" 81411 81574 sources."@fluentui/theme-1.7.4" 81412 81575 sources."@gar/promisify-1.1.2" ··· 81420 81583 sources."normalize-path-2.1.1" 81421 81584 ]; 81422 81585 }) 81423 - sources."@microsoft/load-themed-styles-1.10.203" 81586 + sources."@microsoft/load-themed-styles-1.10.207" 81424 81587 sources."@nodelib/fs.scandir-2.1.5" 81425 81588 sources."@nodelib/fs.stat-2.0.5" 81426 81589 sources."@nodelib/fs.walk-1.2.8" ··· 81470 81633 sources."@types/sqlite3-3.1.6" 81471 81634 sources."@types/tough-cookie-4.0.1" 81472 81635 sources."@types/url-join-4.0.0" 81473 - sources."@uifabric/foundation-7.9.26" 81474 - sources."@uifabric/icons-7.5.23" 81636 + sources."@uifabric/foundation-7.10.0" 81637 + sources."@uifabric/icons-7.6.0" 81475 81638 sources."@uifabric/merge-styles-7.19.2" 81476 81639 sources."@uifabric/react-hooks-7.14.0" 81477 81640 sources."@uifabric/set-version-7.0.24" 81478 - sources."@uifabric/styling-7.19.0" 81641 + sources."@uifabric/styling-7.19.1" 81479 81642 sources."@uifabric/utilities-7.33.5" 81480 81643 sources."@webassemblyjs/ast-1.9.0" 81481 81644 sources."@webassemblyjs/floating-point-hex-parser-1.9.0" ··· 81539 81702 sources."append-field-1.0.0" 81540 81703 sources."aproba-1.2.0" 81541 81704 sources."archy-1.0.0" 81542 - (sources."are-we-there-yet-1.1.5" // { 81705 + (sources."are-we-there-yet-1.1.7" // { 81543 81706 dependencies = [ 81544 81707 sources."isarray-1.0.0" 81545 81708 sources."readable-stream-2.3.7" ··· 81780 81943 ]; 81781 81944 }) 81782 81945 sources."core-js-2.6.12" 81783 - sources."core-util-is-1.0.2" 81946 + sources."core-util-is-1.0.3" 81784 81947 sources."crc-3.8.0" 81785 81948 (sources."create-ecdh-4.0.4" // { 81786 81949 dependencies = [ ··· 81963 82126 sources."file-uri-to-path-1.0.0" 81964 82127 sources."fill-range-7.0.1" 81965 82128 sources."finalhandler-1.1.2" 81966 - sources."find-cache-dir-3.3.1" 82129 + sources."find-cache-dir-3.3.2" 81967 82130 sources."find-up-1.1.2" 81968 82131 (sources."findup-sync-3.0.0" // { 81969 82132 dependencies = [ ··· 82373 82536 }) 82374 82537 sources."nan-2.15.0" 82375 82538 sources."nanomatch-1.2.13" 82376 - (sources."needle-2.9.0" // { 82539 + (sources."needle-2.9.1" // { 82377 82540 dependencies = [ 82378 82541 sources."debug-3.2.7" 82379 82542 sources."ms-2.1.3" ··· 82448 82611 sources."object.map-1.0.1" 82449 82612 sources."object.pick-1.3.0" 82450 82613 sources."object.reduce-1.0.1" 82451 - sources."office-ui-fabric-react-7.174.1" 82614 + sources."office-ui-fabric-react-7.175.2" 82452 82615 sources."on-finished-2.3.0" 82453 82616 sources."on-headers-1.0.2" 82454 82617 sources."once-1.4.0" ··· 82675 82838 sources."safe-buffer-5.1.2" 82676 82839 sources."safe-regex-1.1.0" 82677 82840 sources."safer-buffer-2.1.2" 82678 - (sources."sass-1.38.1" // { 82841 + (sources."sass-1.39.0" // { 82679 82842 dependencies = [ 82680 82843 sources."anymatch-3.1.2" 82681 82844 sources."binary-extensions-2.2.0" ··· 82961 83124 sources."validate-npm-package-license-3.0.4" 82962 83125 sources."value-or-function-3.0.0" 82963 83126 sources."vary-1.1.2" 82964 - sources."verror-1.10.0" 83127 + (sources."verror-1.10.0" // { 83128 + dependencies = [ 83129 + sources."core-util-is-1.0.2" 83130 + ]; 83131 + }) 82965 83132 sources."vinyl-2.2.1" 82966 83133 (sources."vinyl-fs-3.0.3" // { 82967 83134 dependencies = [ ··· 83046 83213 ]; 83047 83214 }) 83048 83215 sources."wrappy-1.0.2" 83049 - sources."ws-7.5.3" 83216 + sources."ws-7.5.4" 83050 83217 sources."xmlhttprequest-ssl-1.5.5" 83051 83218 sources."xtend-4.0.2" 83052 83219 sources."y18n-3.2.2" ··· 83134 83301 sources."concat-map-0.0.1" 83135 83302 sources."cross-spawn-7.0.3" 83136 83303 sources."debug-4.3.2" 83137 - sources."deep-is-0.1.3" 83304 + sources."deep-is-0.1.4" 83138 83305 sources."doctrine-3.0.0" 83139 83306 sources."emoji-regex-8.0.0" 83140 83307 sources."enquirer-2.3.6" ··· 83253 83420 eslint_d = nodeEnv.buildNodePackage { 83254 83421 name = "eslint_d"; 83255 83422 packageName = "eslint_d"; 83256 - version = "10.1.3"; 83423 + version = "11.0.0"; 83257 83424 src = fetchurl { 83258 - url = "https://registry.npmjs.org/eslint_d/-/eslint_d-10.1.3.tgz"; 83259 - sha512 = "B8ESWH1KrLNgV0CR9r/Mc4lbgArnbWIuHnHrJlmuWx+02UriPXNnk4+nNFakzXHRh/sTHeCA4LiArkSfIqsfsw=="; 83425 + url = "https://registry.npmjs.org/eslint_d/-/eslint_d-11.0.0.tgz"; 83426 + sha512 = "eR6yaJepLQ8hMGIfW2Bj41e4ZnxbsbMZvYjDxWl98YnUlqn46qoUi20N3VB0xq9mv1IKsOO+Rqfnjov5Y93zLg=="; 83260 83427 }; 83261 83428 dependencies = [ 83262 83429 sources."@babel/code-frame-7.12.11" ··· 83297 83464 sources."core_d-3.2.0" 83298 83465 sources."cross-spawn-7.0.3" 83299 83466 sources."debug-4.3.2" 83300 - sources."deep-is-0.1.3" 83467 + sources."deep-is-0.1.4" 83301 83468 sources."doctrine-3.0.0" 83302 83469 sources."emoji-regex-8.0.0" 83303 83470 sources."enquirer-2.3.6" ··· 83443 83610 dependencies = [ 83444 83611 sources."@babel/code-frame-7.10.4" 83445 83612 sources."@babel/compat-data-7.15.0" 83446 - (sources."@babel/core-7.15.0" // { 83613 + (sources."@babel/core-7.15.5" // { 83447 83614 dependencies = [ 83448 83615 sources."@babel/code-frame-7.14.5" 83449 83616 sources."json5-2.2.0" 83450 83617 sources."semver-6.3.0" 83451 83618 ]; 83452 83619 }) 83453 - sources."@babel/generator-7.15.0" 83454 - sources."@babel/helper-annotate-as-pure-7.14.5" 83455 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 83456 - (sources."@babel/helper-compilation-targets-7.15.0" // { 83620 + sources."@babel/generator-7.15.4" 83621 + sources."@babel/helper-annotate-as-pure-7.15.4" 83622 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 83623 + (sources."@babel/helper-compilation-targets-7.15.4" // { 83457 83624 dependencies = [ 83458 - sources."browserslist-4.16.8" 83625 + sources."browserslist-4.17.0" 83459 83626 sources."semver-6.3.0" 83460 83627 ]; 83461 83628 }) 83462 - sources."@babel/helper-create-class-features-plugin-7.15.0" 83629 + sources."@babel/helper-create-class-features-plugin-7.15.4" 83463 83630 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 83464 83631 (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 83465 83632 dependencies = [ 83466 83633 sources."semver-6.3.0" 83467 83634 ]; 83468 83635 }) 83469 - sources."@babel/helper-explode-assignable-expression-7.14.5" 83470 - sources."@babel/helper-function-name-7.14.5" 83471 - sources."@babel/helper-get-function-arity-7.14.5" 83472 - sources."@babel/helper-hoist-variables-7.14.5" 83473 - sources."@babel/helper-member-expression-to-functions-7.15.0" 83474 - sources."@babel/helper-module-imports-7.14.5" 83475 - sources."@babel/helper-module-transforms-7.15.0" 83476 - sources."@babel/helper-optimise-call-expression-7.14.5" 83636 + sources."@babel/helper-explode-assignable-expression-7.15.4" 83637 + sources."@babel/helper-function-name-7.15.4" 83638 + sources."@babel/helper-get-function-arity-7.15.4" 83639 + sources."@babel/helper-hoist-variables-7.15.4" 83640 + sources."@babel/helper-member-expression-to-functions-7.15.4" 83641 + sources."@babel/helper-module-imports-7.15.4" 83642 + sources."@babel/helper-module-transforms-7.15.4" 83643 + sources."@babel/helper-optimise-call-expression-7.15.4" 83477 83644 sources."@babel/helper-plugin-utils-7.14.5" 83478 - sources."@babel/helper-replace-supers-7.15.0" 83479 - sources."@babel/helper-simple-access-7.14.8" 83480 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 83481 - sources."@babel/helper-split-export-declaration-7.14.5" 83645 + sources."@babel/helper-replace-supers-7.15.4" 83646 + sources."@babel/helper-simple-access-7.15.4" 83647 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 83648 + sources."@babel/helper-split-export-declaration-7.15.4" 83482 83649 sources."@babel/helper-validator-identifier-7.14.9" 83483 83650 sources."@babel/helper-validator-option-7.14.5" 83484 - sources."@babel/helpers-7.15.3" 83651 + sources."@babel/helpers-7.15.4" 83485 83652 (sources."@babel/highlight-7.14.5" // { 83486 83653 dependencies = [ 83487 83654 sources."chalk-2.4.2" 83488 83655 ]; 83489 83656 }) 83490 - sources."@babel/parser-7.15.3" 83657 + sources."@babel/parser-7.15.5" 83491 83658 sources."@babel/plugin-proposal-class-properties-7.14.5" 83492 83659 sources."@babel/plugin-proposal-export-default-from-7.14.5" 83493 83660 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" ··· 83507 83674 sources."@babel/plugin-transform-arrow-functions-7.14.5" 83508 83675 sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 83509 83676 sources."@babel/plugin-transform-block-scoping-7.15.3" 83510 - sources."@babel/plugin-transform-classes-7.14.9" 83677 + sources."@babel/plugin-transform-classes-7.15.4" 83511 83678 sources."@babel/plugin-transform-computed-properties-7.14.5" 83512 83679 sources."@babel/plugin-transform-destructuring-7.14.7" 83513 83680 sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 83514 83681 sources."@babel/plugin-transform-flow-strip-types-7.14.5" 83515 - sources."@babel/plugin-transform-for-of-7.14.5" 83682 + sources."@babel/plugin-transform-for-of-7.15.4" 83516 83683 sources."@babel/plugin-transform-function-name-7.14.5" 83517 83684 sources."@babel/plugin-transform-literals-7.14.5" 83518 83685 sources."@babel/plugin-transform-member-expression-literals-7.14.5" 83519 - sources."@babel/plugin-transform-modules-commonjs-7.15.0" 83686 + sources."@babel/plugin-transform-modules-commonjs-7.15.4" 83520 83687 sources."@babel/plugin-transform-object-assign-7.14.5" 83521 83688 sources."@babel/plugin-transform-object-super-7.14.5" 83522 - sources."@babel/plugin-transform-parameters-7.14.5" 83689 + sources."@babel/plugin-transform-parameters-7.15.4" 83523 83690 sources."@babel/plugin-transform-property-literals-7.14.5" 83524 83691 sources."@babel/plugin-transform-react-display-name-7.15.1" 83525 83692 sources."@babel/plugin-transform-react-jsx-7.14.9" ··· 83535 83702 sources."@babel/plugin-transform-spread-7.14.6" 83536 83703 sources."@babel/plugin-transform-sticky-regex-7.14.5" 83537 83704 sources."@babel/plugin-transform-template-literals-7.14.5" 83538 - sources."@babel/plugin-transform-typescript-7.15.0" 83705 + sources."@babel/plugin-transform-typescript-7.15.4" 83539 83706 sources."@babel/plugin-transform-unicode-regex-7.14.5" 83540 83707 sources."@babel/runtime-7.9.0" 83541 - (sources."@babel/template-7.14.5" // { 83708 + (sources."@babel/template-7.15.4" // { 83542 83709 dependencies = [ 83543 83710 sources."@babel/code-frame-7.14.5" 83544 83711 ]; 83545 83712 }) 83546 - (sources."@babel/traverse-7.15.0" // { 83713 + (sources."@babel/traverse-7.15.4" // { 83547 83714 dependencies = [ 83548 83715 sources."@babel/code-frame-7.14.5" 83549 83716 ]; 83550 83717 }) 83551 - sources."@babel/types-7.15.0" 83718 + sources."@babel/types-7.15.4" 83552 83719 sources."@dabh/diagnostics-2.0.2" 83553 83720 sources."@expo/apple-utils-0.0.0-alpha.25" 83554 83721 sources."@expo/bunyan-4.0.0" ··· 83701 83868 sources."@types/istanbul-lib-report-3.0.0" 83702 83869 sources."@types/istanbul-reports-3.0.1" 83703 83870 sources."@types/json-schema-7.0.9" 83704 - sources."@types/keyv-3.1.2" 83871 + sources."@types/keyv-3.1.3" 83705 83872 sources."@types/minimatch-3.0.5" 83706 83873 sources."@types/node-9.6.61" 83707 83874 sources."@types/q-1.5.5" ··· 83745 83912 sources."@webassemblyjs/wast-parser-1.9.0" 83746 83913 sources."@webassemblyjs/wast-printer-1.9.0" 83747 83914 sources."@wry/equality-0.1.11" 83748 - sources."@xmldom/xmldom-0.7.2" 83915 + sources."@xmldom/xmldom-0.7.4" 83749 83916 sources."@xtuc/ieee754-1.2.0" 83750 83917 sources."@xtuc/long-4.2.2" 83751 83918 sources."abbrev-1.1.1" ··· 83786 83953 sources."apollo-utilities-1.3.4" 83787 83954 sources."application-config-path-0.1.0" 83788 83955 sources."aproba-1.2.0" 83789 - sources."are-we-there-yet-1.1.5" 83956 + sources."are-we-there-yet-1.1.7" 83790 83957 sources."argparse-2.0.1" 83791 83958 sources."arr-diff-4.0.0" 83792 83959 sources."arr-flatten-1.1.0" ··· 83902 84069 sources."buffer-xor-1.0.3" 83903 84070 sources."builtin-status-codes-3.0.0" 83904 84071 sources."builtins-1.0.3" 83905 - (sources."bull-3.29.1" // { 84072 + (sources."bull-3.29.2" // { 83906 84073 dependencies = [ 83907 84074 sources."get-port-5.1.1" 83908 84075 sources."p-timeout-3.2.0" ··· 83931 84098 }) 83932 84099 sources."camelcase-6.2.0" 83933 84100 sources."caniuse-api-3.0.0" 83934 - sources."caniuse-lite-1.0.30001252" 84101 + sources."caniuse-lite-1.0.30001255" 83935 84102 sources."caseless-0.12.0" 83936 84103 (sources."chalk-4.1.2" // { 83937 84104 dependencies = [ ··· 84008 84175 sources."color-convert-1.9.3" 84009 84176 sources."color-name-1.1.3" 84010 84177 sources."color-string-1.6.0" 84011 - sources."colorette-1.3.0" 84178 + sources."colorette-1.4.0" 84012 84179 sources."colors-1.4.0" 84013 84180 sources."colorspace-1.1.2" 84014 84181 sources."combined-stream-1.0.8" ··· 84052 84219 sources."copy-descriptor-0.1.1" 84053 84220 (sources."copy-webpack-plugin-6.0.4" // { 84054 84221 dependencies = [ 84055 - sources."find-cache-dir-3.3.1" 84222 + sources."find-cache-dir-3.3.2" 84056 84223 sources."find-up-4.1.0" 84057 84224 sources."locate-path-5.0.0" 84058 84225 sources."make-dir-3.1.0" ··· 84066 84233 sources."serialize-javascript-4.0.0" 84067 84234 ]; 84068 84235 }) 84069 - sources."core-js-3.16.3" 84070 - (sources."core-js-compat-3.16.3" // { 84236 + sources."core-js-3.17.2" 84237 + (sources."core-js-compat-3.17.2" // { 84071 84238 dependencies = [ 84072 - sources."browserslist-4.16.8" 84239 + sources."browserslist-4.17.0" 84073 84240 sources."semver-7.0.0" 84074 84241 ]; 84075 84242 }) 84076 - sources."core-util-is-1.0.2" 84243 + sources."core-util-is-1.0.3" 84077 84244 sources."cosmiconfig-5.2.1" 84078 84245 (sources."create-ecdh-4.0.4" // { 84079 84246 dependencies = [ ··· 84102 84269 }) 84103 84270 (sources."css-select-4.1.3" // { 84104 84271 dependencies = [ 84105 - sources."domhandler-4.2.0" 84272 + sources."domhandler-4.2.2" 84106 84273 ]; 84107 84274 }) 84108 84275 sources."css-select-base-adapter-0.1.1" ··· 84180 84347 sources."dom-converter-0.2.0" 84181 84348 (sources."dom-serializer-1.3.2" // { 84182 84349 dependencies = [ 84183 - sources."domhandler-4.2.0" 84350 + sources."domhandler-4.2.2" 84184 84351 ]; 84185 84352 }) 84186 84353 sources."domain-browser-1.2.0" 84187 84354 sources."domelementtype-2.2.0" 84188 84355 sources."domhandler-3.3.0" 84189 84356 sources."domino-2.1.6" 84190 - (sources."domutils-2.7.0" // { 84357 + (sources."domutils-2.8.0" // { 84191 84358 dependencies = [ 84192 - sources."domhandler-4.2.0" 84359 + sources."domhandler-4.2.2" 84193 84360 ]; 84194 84361 }) 84195 84362 (sources."dot-case-3.0.4" // { ··· 84203 84370 sources."duplexify-3.7.1" 84204 84371 sources."ecc-jsbn-0.1.2" 84205 84372 sources."ee-first-1.1.1" 84206 - sources."electron-to-chromium-1.3.818" 84373 + sources."electron-to-chromium-1.3.832" 84207 84374 (sources."elliptic-6.5.4" // { 84208 84375 dependencies = [ 84209 84376 sources."bn.js-4.12.0" ··· 84237 84404 ]; 84238 84405 }) 84239 84406 sources."errorhandler-1.5.1" 84240 - sources."es-abstract-1.18.5" 84407 + sources."es-abstract-1.18.6" 84241 84408 sources."es-to-primitive-1.2.1" 84242 84409 sources."escalade-3.1.1" 84243 84410 sources."escape-html-1.0.3" ··· 84309 84476 sources."fast-deep-equal-3.1.3" 84310 84477 sources."fast-glob-3.2.7" 84311 84478 sources."fast-json-stable-stringify-2.1.0" 84312 - sources."fast-safe-stringify-2.0.8" 84479 + sources."fast-safe-stringify-2.1.0" 84313 84480 sources."fastq-1.12.0" 84314 84481 sources."faye-websocket-0.10.0" 84315 84482 sources."fecha-4.2.1" ··· 84330 84497 sources."find-yarn-workspace-root-2.0.0" 84331 84498 sources."flush-write-stream-1.1.1" 84332 84499 sources."fn.name-1.1.0" 84333 - sources."follow-redirects-1.14.2" 84500 + sources."follow-redirects-1.14.3" 84334 84501 sources."for-each-0.3.3" 84335 84502 sources."for-in-1.0.2" 84336 84503 sources."forever-agent-0.6.1" ··· 84386 84553 sources."get-intrinsic-1.1.1" 84387 84554 sources."get-port-3.2.0" 84388 84555 sources."get-stream-5.2.0" 84556 + sources."get-symbol-description-1.0.0" 84389 84557 sources."get-value-2.0.6" 84390 84558 sources."getenv-1.0.0" 84391 84559 sources."getpass-0.1.7" ··· 84515 84683 sources."internal-ip-4.3.0" 84516 84684 sources."internal-slot-1.0.3" 84517 84685 sources."invariant-2.2.4" 84518 - (sources."ioredis-4.27.8" // { 84686 + (sources."ioredis-4.27.9" // { 84519 84687 dependencies = [ 84520 84688 sources."p-map-2.1.0" 84521 84689 ]; ··· 84746 84914 sources."minipass-3.1.3" 84747 84915 ]; 84748 84916 }) 84749 - (sources."minipass-fetch-1.3.4" // { 84917 + (sources."minipass-fetch-1.4.1" // { 84750 84918 dependencies = [ 84751 84919 sources."minipass-3.1.3" 84752 84920 ]; ··· 84798 84966 sources."nan-2.15.0" 84799 84967 sources."nanomatch-1.2.13" 84800 84968 sources."ncp-2.0.0" 84801 - (sources."needle-2.9.0" // { 84969 + (sources."needle-2.9.1" // { 84802 84970 dependencies = [ 84803 84971 sources."debug-3.2.7" 84804 84972 ]; ··· 84813 84981 ]; 84814 84982 }) 84815 84983 sources."nocache-2.1.0" 84816 - sources."node-fetch-2.6.1" 84984 + sources."node-fetch-2.6.2" 84817 84985 sources."node-forge-0.10.0" 84818 84986 (sources."node-gyp-7.1.2" // { 84819 84987 dependencies = [ ··· 85015 85183 sources."path-exists-3.0.0" 85016 85184 ]; 85017 85185 }) 85018 - sources."plist-3.0.3" 85186 + sources."plist-3.0.4" 85019 85187 sources."pngjs-3.4.0" 85020 85188 sources."pnp-webpack-plugin-1.7.0" 85021 85189 (sources."portfinder-1.0.28" // { ··· 85252 85420 (sources."renderkid-2.0.7" // { 85253 85421 dependencies = [ 85254 85422 sources."ansi-regex-2.1.1" 85255 - sources."domhandler-4.2.0" 85423 + sources."domhandler-4.2.2" 85256 85424 sources."htmlparser2-6.1.0" 85257 85425 sources."strip-ansi-3.0.1" 85258 85426 ]; ··· 85275 85443 }) 85276 85444 sources."requires-port-1.0.0" 85277 85445 sources."resolve-1.20.0" 85278 - sources."resolve-alpn-1.2.0" 85446 + sources."resolve-alpn-1.2.1" 85279 85447 (sources."resolve-cwd-2.0.0" // { 85280 85448 dependencies = [ 85281 85449 sources."resolve-from-3.0.0" ··· 85518 85686 }) 85519 85687 (sources."terser-webpack-plugin-3.1.0" // { 85520 85688 dependencies = [ 85521 - sources."find-cache-dir-3.3.1" 85689 + sources."find-cache-dir-3.3.2" 85522 85690 sources."find-up-4.1.0" 85523 85691 sources."locate-path-5.0.0" 85524 85692 sources."make-dir-3.1.0" ··· 85570 85738 sources."type-fest-0.3.1" 85571 85739 sources."type-is-1.6.18" 85572 85740 sources."typedarray-0.0.6" 85573 - sources."uglify-js-3.14.1" 85741 + sources."uglify-js-3.14.2" 85574 85742 sources."ultron-1.1.1" 85575 85743 sources."unbox-primitive-1.0.1" 85576 85744 sources."unicode-canonical-property-names-ecmascript-1.0.4" ··· 85633 85801 sources."validate-npm-package-name-3.0.0" 85634 85802 sources."vary-1.1.2" 85635 85803 sources."vendors-1.0.4" 85636 - sources."verror-1.10.0" 85804 + (sources."verror-1.10.0" // { 85805 + dependencies = [ 85806 + sources."core-util-is-1.0.2" 85807 + ]; 85808 + }) 85637 85809 sources."vlq-1.0.1" 85638 85810 sources."vm-browserify-1.1.2" 85639 85811 sources."watchpack-1.7.5" ··· 85841 86013 ]; 85842 86014 }) 85843 86015 sources."xmlbuilder-9.0.7" 85844 - sources."xmldom-0.6.0" 85845 86016 sources."xtend-4.0.2" 85846 86017 sources."y18n-4.0.3" 85847 86018 sources."yallist-4.0.0" ··· 85887 86058 dependencies = [ 85888 86059 sources."@babel/code-frame-7.14.5" 85889 86060 sources."@babel/compat-data-7.15.0" 85890 - sources."@babel/core-7.15.0" 85891 - sources."@babel/generator-7.15.0" 85892 - sources."@babel/helper-annotate-as-pure-7.14.5" 85893 - sources."@babel/helper-compilation-targets-7.15.0" 85894 - sources."@babel/helper-function-name-7.14.5" 85895 - sources."@babel/helper-get-function-arity-7.14.5" 85896 - sources."@babel/helper-hoist-variables-7.14.5" 85897 - sources."@babel/helper-member-expression-to-functions-7.15.0" 85898 - sources."@babel/helper-module-imports-7.14.5" 85899 - sources."@babel/helper-module-transforms-7.15.0" 85900 - sources."@babel/helper-optimise-call-expression-7.14.5" 86061 + sources."@babel/core-7.15.5" 86062 + sources."@babel/generator-7.15.4" 86063 + sources."@babel/helper-annotate-as-pure-7.15.4" 86064 + sources."@babel/helper-compilation-targets-7.15.4" 86065 + sources."@babel/helper-function-name-7.15.4" 86066 + sources."@babel/helper-get-function-arity-7.15.4" 86067 + sources."@babel/helper-hoist-variables-7.15.4" 86068 + sources."@babel/helper-member-expression-to-functions-7.15.4" 86069 + sources."@babel/helper-module-imports-7.15.4" 86070 + sources."@babel/helper-module-transforms-7.15.4" 86071 + sources."@babel/helper-optimise-call-expression-7.15.4" 85901 86072 sources."@babel/helper-plugin-utils-7.14.5" 85902 - sources."@babel/helper-replace-supers-7.15.0" 85903 - sources."@babel/helper-simple-access-7.14.8" 85904 - sources."@babel/helper-split-export-declaration-7.14.5" 86073 + sources."@babel/helper-replace-supers-7.15.4" 86074 + sources."@babel/helper-simple-access-7.15.4" 86075 + sources."@babel/helper-split-export-declaration-7.15.4" 85905 86076 sources."@babel/helper-validator-identifier-7.14.9" 85906 86077 sources."@babel/helper-validator-option-7.14.5" 85907 - sources."@babel/helpers-7.15.3" 86078 + sources."@babel/helpers-7.15.4" 85908 86079 sources."@babel/highlight-7.14.5" 85909 - sources."@babel/parser-7.15.3" 86080 + sources."@babel/parser-7.15.5" 85910 86081 sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 85911 86082 sources."@babel/plugin-syntax-jsx-7.14.5" 85912 86083 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 85913 86084 sources."@babel/plugin-transform-destructuring-7.14.7" 85914 - sources."@babel/plugin-transform-parameters-7.14.5" 86085 + sources."@babel/plugin-transform-parameters-7.15.4" 85915 86086 sources."@babel/plugin-transform-react-jsx-7.14.9" 85916 - sources."@babel/template-7.14.5" 85917 - sources."@babel/traverse-7.15.0" 85918 - sources."@babel/types-7.15.0" 86087 + sources."@babel/template-7.15.4" 86088 + sources."@babel/traverse-7.15.4" 86089 + sources."@babel/types-7.15.4" 85919 86090 sources."@types/minimist-1.2.2" 85920 - sources."@types/node-16.7.2" 86091 + sources."@types/node-16.7.13" 85921 86092 sources."@types/normalize-package-data-2.4.1" 85922 86093 sources."@types/yauzl-2.9.2" 85923 86094 sources."@types/yoga-layout-1.9.2" ··· 85936 86107 sources."base64-js-1.5.1" 85937 86108 sources."bl-4.1.0" 85938 86109 sources."brace-expansion-1.1.11" 85939 - sources."browserslist-4.16.8" 86110 + sources."browserslist-4.17.0" 85940 86111 sources."buffer-5.7.1" 85941 86112 sources."buffer-crc32-0.2.13" 85942 86113 sources."caller-callsite-2.0.0" ··· 85944 86115 sources."callsites-2.0.0" 85945 86116 sources."camelcase-5.3.1" 85946 86117 sources."camelcase-keys-6.2.2" 85947 - sources."caniuse-lite-1.0.30001252" 86118 + sources."caniuse-lite-1.0.30001255" 85948 86119 sources."chalk-2.4.2" 85949 86120 sources."chownr-1.1.4" 85950 86121 sources."ci-info-2.0.0" ··· 85955 86126 sources."code-excerpt-3.0.0" 85956 86127 sources."color-convert-1.9.3" 85957 86128 sources."color-name-1.1.3" 85958 - sources."colorette-1.3.0" 86129 + sources."colorette-1.4.0" 85959 86130 sources."commondir-1.0.1" 85960 86131 sources."concat-map-0.0.1" 85961 86132 sources."convert-source-map-1.8.0" ··· 85969 86140 }) 85970 86141 sources."delay-5.0.0" 85971 86142 sources."devtools-protocol-0.0.869402" 85972 - sources."electron-to-chromium-1.3.818" 86143 + sources."electron-to-chromium-1.3.832" 85973 86144 sources."emoji-regex-8.0.0" 85974 86145 sources."end-of-stream-1.4.4" 85975 86146 sources."error-ex-1.3.2" ··· 85977 86148 sources."escape-string-regexp-1.0.5" 85978 86149 sources."extract-zip-2.0.1" 85979 86150 sources."fd-slicer-1.1.0" 85980 - sources."find-cache-dir-3.3.1" 86151 + sources."find-cache-dir-3.3.2" 85981 86152 sources."find-up-4.1.0" 85982 86153 sources."fs-constants-1.0.0" 85983 86154 sources."fs.realpath-1.0.0" ··· 86036 86207 sources."minimist-options-4.1.0" 86037 86208 sources."mkdirp-classic-0.5.3" 86038 86209 sources."ms-2.1.2" 86039 - sources."node-fetch-2.6.1" 86210 + sources."node-fetch-2.6.2" 86040 86211 sources."node-releases-1.1.75" 86041 86212 (sources."normalize-package-data-3.0.3" // { 86042 86213 dependencies = [ ··· 86063 86234 sources."puppeteer-9.1.1" 86064 86235 sources."quick-lru-4.0.1" 86065 86236 sources."react-16.14.0" 86066 - sources."react-devtools-core-4.17.0" 86237 + sources."react-devtools-core-4.18.0" 86067 86238 sources."react-is-16.13.1" 86068 86239 sources."react-reconciler-0.24.0" 86069 86240 (sources."read-pkg-5.2.0" // { ··· 86134 86305 ]; 86135 86306 }) 86136 86307 sources."wrappy-1.0.2" 86137 - sources."ws-7.5.3" 86308 + sources."ws-7.5.4" 86138 86309 sources."yallist-4.0.0" 86139 86310 sources."yargs-parser-20.2.9" 86140 86311 sources."yauzl-2.10.0" ··· 86184 86355 sources."tslib-2.3.1" 86185 86356 ]; 86186 86357 }) 86187 - (sources."@oclif/core-0.5.32" // { 86358 + (sources."@oclif/core-0.5.35" // { 86188 86359 dependencies = [ 86189 86360 sources."chalk-4.1.2" 86190 86361 (sources."cli-ux-5.6.3" // { ··· 86357 86528 sources."component-emitter-1.3.0" 86358 86529 sources."concat-map-0.0.1" 86359 86530 sources."copy-descriptor-0.1.1" 86360 - sources."core-util-is-1.0.2" 86361 - sources."cross-fetch-3.1.4" 86531 + sources."core-util-is-1.0.3" 86532 + (sources."cross-fetch-3.1.4" // { 86533 + dependencies = [ 86534 + sources."node-fetch-2.6.1" 86535 + ]; 86536 + }) 86362 86537 (sources."cross-spawn-6.0.5" // { 86363 86538 dependencies = [ 86364 86539 sources."semver-5.7.1" ··· 86368 86543 sources."debug-4.3.2" 86369 86544 sources."decode-uri-component-0.2.0" 86370 86545 sources."decompress-response-3.3.0" 86371 - sources."deep-is-0.1.3" 86546 + sources."deep-is-0.1.4" 86372 86547 sources."defaults-1.0.3" 86373 86548 sources."define-property-2.0.2" 86374 86549 sources."delayed-stream-1.0.0" ··· 86424 86599 sources."fast-json-stable-stringify-2.1.0" 86425 86600 sources."fast-levenshtein-2.0.6" 86426 86601 sources."fastq-1.12.0" 86427 - (sources."faunadb-4.3.0" // { 86602 + (sources."faunadb-4.4.1" // { 86428 86603 dependencies = [ 86429 86604 sources."chalk-4.1.2" 86430 86605 sources."has-flag-4.0.0" ··· 86603 86778 ]; 86604 86779 }) 86605 86780 sources."nice-try-1.0.5" 86606 - sources."node-fetch-2.6.1" 86781 + sources."node-fetch-2.6.2" 86607 86782 sources."normalize-url-2.0.1" 86608 86783 sources."npm-run-path-2.0.2" 86609 86784 sources."oauth-sign-0.9.0" ··· 86808 86983 sources."use-3.1.1" 86809 86984 sources."util-deprecate-1.0.2" 86810 86985 sources."uuid-3.4.0" 86811 - sources."verror-1.10.0" 86986 + (sources."verror-1.10.0" // { 86987 + dependencies = [ 86988 + sources."core-util-is-1.0.2" 86989 + ]; 86990 + }) 86812 86991 sources."wcwidth-1.0.1" 86813 86992 sources."which-1.3.1" 86814 86993 sources."widest-line-3.1.0" ··· 86830 87009 firebase-tools = nodeEnv.buildNodePackage { 86831 87010 name = "firebase-tools"; 86832 87011 packageName = "firebase-tools"; 86833 - version = "9.16.6"; 87012 + version = "9.17.0"; 86834 87013 src = fetchurl { 86835 - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.16.6.tgz"; 86836 - sha512 = "bW4rT+pTE6n8892rXd5ier9H1snXUZIXrL3WKzuVWXSUqDjUbx6SIgXhjp1++GIdkiMGnfDY5EJR4nV/YrTO5A=="; 87014 + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.17.0.tgz"; 87015 + sha512 = "+srVeGz6w3ouR567ELHe33Nm0nwhhVvu5IHuQOaH0qQvDzX8LgBGqCpatqgYToUmPgDMGG34f1d+aa8vQ0pEBw=="; 86837 87016 }; 86838 87017 dependencies = [ 86839 87018 (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { ··· 86849 87028 sources."@google-cloud/promisify-2.0.3" 86850 87029 (sources."@google-cloud/pubsub-2.17.0" // { 86851 87030 dependencies = [ 86852 - sources."google-auth-library-7.6.2" 87031 + sources."google-auth-library-7.9.1" 86853 87032 ]; 86854 87033 }) 86855 87034 sources."@grpc/grpc-js-1.3.7" ··· 86865 87044 sources."mkdirp-1.0.4" 86866 87045 ]; 86867 87046 }) 86868 - sources."@opentelemetry/api-1.0.2" 87047 + sources."@opentelemetry/api-1.0.3" 86869 87048 sources."@opentelemetry/semantic-conventions-0.24.0" 86870 87049 sources."@protobufjs/aspromise-1.1.2" 86871 87050 sources."@protobufjs/base64-1.1.2" ··· 86886 87065 sources."@types/json-schema-7.0.9" 86887 87066 sources."@types/long-4.0.1" 86888 87067 sources."@types/minimatch-3.0.5" 86889 - sources."@types/node-16.7.2" 87068 + sources."@types/node-16.7.13" 86890 87069 sources."JSONStream-1.3.5" 86891 87070 sources."abbrev-1.1.1" 86892 87071 sources."abort-controller-3.0.0" ··· 86918 87097 sources."string_decoder-1.1.1" 86919 87098 ]; 86920 87099 }) 86921 - (sources."are-we-there-yet-1.1.5" // { 87100 + (sources."are-we-there-yet-1.1.7" // { 86922 87101 dependencies = [ 86923 87102 sources."readable-stream-2.3.7" 86924 87103 sources."safe-buffer-5.1.2" ··· 87058 87237 sources."content-type-1.0.4" 87059 87238 sources."cookie-0.4.0" 87060 87239 sources."cookie-signature-1.0.6" 87061 - sources."core-util-is-1.0.2" 87240 + sources."core-util-is-1.0.3" 87062 87241 sources."cors-2.8.5" 87063 87242 sources."crc-32-1.2.0" 87064 87243 sources."crc32-stream-4.0.2" ··· 87084 87263 sources."decompress-response-3.3.0" 87085 87264 sources."deep-extend-0.6.0" 87086 87265 sources."deep-freeze-0.0.1" 87087 - sources."deep-is-0.1.3" 87266 + sources."deep-is-0.1.4" 87088 87267 sources."defaults-1.0.3" 87089 87268 sources."defer-to-connect-1.1.3" 87090 87269 sources."degenerator-2.2.0" ··· 87160 87339 sources."fast-deep-equal-3.1.3" 87161 87340 sources."fast-json-stable-stringify-2.1.0" 87162 87341 sources."fast-levenshtein-2.0.6" 87163 - sources."fast-safe-stringify-2.0.8" 87342 + sources."fast-safe-stringify-2.1.0" 87164 87343 sources."fast-text-encoding-1.0.3" 87165 87344 (sources."fast-url-parser-1.1.3" // { 87166 87345 dependencies = [ ··· 87219 87398 sources."strip-ansi-3.0.1" 87220 87399 ]; 87221 87400 }) 87222 - sources."gaxios-4.3.0" 87223 - sources."gcp-metadata-4.3.0" 87401 + sources."gaxios-4.3.1" 87402 + sources."gcp-metadata-4.3.1" 87224 87403 sources."get-caller-file-2.0.5" 87225 87404 sources."get-stream-4.1.0" 87226 87405 (sources."get-uri-3.0.2" // { ··· 87235 87414 sources."glob-slasher-1.0.1" 87236 87415 sources."global-dirs-2.1.0" 87237 87416 sources."google-auth-library-6.1.6" 87238 - (sources."google-gax-2.24.2" // { 87417 + (sources."google-gax-2.25.0" // { 87239 87418 dependencies = [ 87240 - sources."google-auth-library-7.6.2" 87419 + sources."google-auth-library-7.9.1" 87241 87420 ]; 87242 87421 }) 87243 87422 sources."google-p12-pem-3.1.2" ··· 87412 87591 sources."minimist-1.2.5" 87413 87592 sources."minipass-3.1.3" 87414 87593 sources."minipass-collect-1.0.2" 87415 - sources."minipass-fetch-1.3.4" 87594 + sources."minipass-fetch-1.4.1" 87416 87595 sources."minipass-flush-1.0.5" 87417 87596 sources."minipass-pipeline-1.2.4" 87418 87597 sources."minipass-sized-1.0.3" ··· 87438 87617 sources."next-tick-1.0.0" 87439 87618 sources."nice-try-1.0.5" 87440 87619 sources."node-emoji-1.11.0" 87441 - sources."node-fetch-2.6.1" 87620 + sources."node-fetch-2.6.2" 87442 87621 sources."node-forge-0.10.0" 87443 87622 (sources."node-gyp-8.2.0" // { 87444 87623 dependencies = [ ··· 87708 87887 sources."uuid-3.4.0" 87709 87888 sources."valid-url-1.0.9" 87710 87889 sources."vary-1.1.2" 87711 - sources."verror-1.10.0" 87890 + (sources."verror-1.10.0" // { 87891 + dependencies = [ 87892 + sources."core-util-is-1.0.2" 87893 + ]; 87894 + }) 87712 87895 sources."wcwidth-1.0.1" 87713 87896 sources."which-1.3.1" 87714 87897 (sources."wide-align-1.1.3" // { ··· 87732 87915 sources."wrap-ansi-7.0.0" 87733 87916 sources."wrappy-1.0.2" 87734 87917 sources."write-file-atomic-3.0.3" 87735 - sources."ws-7.5.3" 87918 + sources."ws-7.5.4" 87736 87919 sources."xdg-basedir-4.0.0" 87737 87920 sources."xregexp-2.0.0" 87738 87921 sources."xtend-4.0.2" ··· 87992 88175 dependencies = [ 87993 88176 sources."@types/atob-2.1.2" 87994 88177 sources."@types/inquirer-6.5.0" 87995 - sources."@types/node-16.7.2" 88178 + sources."@types/node-16.7.13" 87996 88179 sources."@types/through-0.0.30" 87997 88180 sources."ajv-6.12.6" 87998 88181 sources."ansi-escapes-4.3.2" ··· 88101 88284 sources."mkdirp-0.5.5" 88102 88285 sources."mute-stream-0.0.8" 88103 88286 sources."nedb-1.8.0" 88104 - sources."node-fetch-2.6.1" 88287 + sources."node-fetch-2.6.2" 88105 88288 (sources."number-to-bn-1.7.0" // { 88106 88289 dependencies = [ 88107 88290 sources."bn.js-4.11.6" ··· 88227 88410 sources."async-1.5.2" 88228 88411 sources."async-each-1.0.3" 88229 88412 sources."atob-2.1.2" 88230 - sources."available-typed-arrays-1.0.4" 88413 + sources."available-typed-arrays-1.0.5" 88231 88414 sources."balanced-match-1.0.2" 88232 88415 (sources."base-0.11.2" // { 88233 88416 dependencies = [ ··· 88284 88467 sources."concat-map-0.0.1" 88285 88468 sources."configstore-4.0.0" 88286 88469 sources."copy-descriptor-0.1.1" 88287 - sources."core-util-is-1.0.2" 88470 + sources."core-util-is-1.0.3" 88288 88471 sources."crypto-random-string-1.0.0" 88289 88472 sources."cycle-1.0.3" 88290 88473 sources."debug-2.6.9" ··· 88296 88479 sources."director-1.2.7" 88297 88480 sources."dot-prop-4.2.1" 88298 88481 sources."duplexer-0.1.2" 88299 - sources."es-abstract-1.18.5" 88482 + sources."es-abstract-1.18.6" 88300 88483 sources."es-get-iterator-1.1.2" 88301 88484 sources."es-to-primitive-1.2.1" 88302 88485 sources."event-stream-3.3.4" ··· 88346 88529 sources."fsevents-1.2.13" 88347 88530 sources."function-bind-1.1.1" 88348 88531 sources."get-intrinsic-1.1.1" 88532 + sources."get-symbol-description-1.0.0" 88349 88533 sources."get-value-2.0.6" 88350 88534 sources."glob-7.1.7" 88351 88535 (sources."glob-parent-3.1.0" // { ··· 88397 88581 sources."is-set-2.0.2" 88398 88582 sources."is-string-1.0.7" 88399 88583 sources."is-symbol-1.0.4" 88400 - sources."is-typed-array-1.1.7" 88584 + sources."is-typed-array-1.1.8" 88401 88585 sources."is-weakmap-2.0.1" 88402 88586 sources."is-weakset-2.0.1" 88403 88587 sources."is-windows-1.0.2" ··· 88601 88785 }) 88602 88786 sources."which-boxed-primitive-1.0.2" 88603 88787 sources."which-collection-1.0.1" 88604 - sources."which-typed-array-1.1.6" 88788 + sources."which-typed-array-1.1.7" 88605 88789 (sources."winston-0.8.3" // { 88606 88790 dependencies = [ 88607 88791 sources."async-0.2.10" ··· 88677 88861 gatsby-cli = nodeEnv.buildNodePackage { 88678 88862 name = "gatsby-cli"; 88679 88863 packageName = "gatsby-cli"; 88680 - version = "3.12.0"; 88864 + version = "3.13.0"; 88681 88865 src = fetchurl { 88682 - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.12.0.tgz"; 88683 - sha512 = "Yf2Xa1mLbRi0yjtIRwklRCuTJB+DEKx5jl/2jFKKZkAdIHU8mXizBEkh4Pf0zeERv/22OjsfeCixjBcAw7WbHA=="; 88866 + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.13.0.tgz"; 88867 + sha512 = "QTJZUY4wPwXLuK4aP3GCqBpklruV2hv/jtf65ED5zfeF2YnZlFvrJXt40n9o1ptc5XYe/FF6yFBxu1Lwbt9qtg=="; 88684 88868 }; 88685 88869 dependencies = [ 88686 88870 (sources."@ardatan/aggregate-error-0.0.6" // { ··· 88690 88874 }) 88691 88875 sources."@babel/code-frame-7.14.5" 88692 88876 sources."@babel/compat-data-7.15.0" 88693 - (sources."@babel/core-7.15.0" // { 88877 + (sources."@babel/core-7.15.5" // { 88694 88878 dependencies = [ 88695 88879 sources."semver-6.3.0" 88696 88880 sources."source-map-0.5.7" 88697 88881 ]; 88698 88882 }) 88699 - (sources."@babel/generator-7.15.0" // { 88883 + (sources."@babel/generator-7.15.4" // { 88700 88884 dependencies = [ 88701 88885 sources."source-map-0.5.7" 88702 88886 ]; 88703 88887 }) 88704 - sources."@babel/helper-annotate-as-pure-7.14.5" 88705 - (sources."@babel/helper-compilation-targets-7.15.0" // { 88888 + sources."@babel/helper-annotate-as-pure-7.15.4" 88889 + (sources."@babel/helper-compilation-targets-7.15.4" // { 88706 88890 dependencies = [ 88707 88891 sources."semver-6.3.0" 88708 88892 ]; 88709 88893 }) 88710 - sources."@babel/helper-function-name-7.14.5" 88711 - sources."@babel/helper-get-function-arity-7.14.5" 88712 - sources."@babel/helper-hoist-variables-7.14.5" 88713 - sources."@babel/helper-member-expression-to-functions-7.15.0" 88714 - sources."@babel/helper-module-imports-7.14.5" 88715 - sources."@babel/helper-module-transforms-7.15.0" 88716 - sources."@babel/helper-optimise-call-expression-7.14.5" 88894 + sources."@babel/helper-function-name-7.15.4" 88895 + sources."@babel/helper-get-function-arity-7.15.4" 88896 + sources."@babel/helper-hoist-variables-7.15.4" 88897 + sources."@babel/helper-member-expression-to-functions-7.15.4" 88898 + sources."@babel/helper-module-imports-7.15.4" 88899 + sources."@babel/helper-module-transforms-7.15.4" 88900 + sources."@babel/helper-optimise-call-expression-7.15.4" 88717 88901 sources."@babel/helper-plugin-utils-7.14.5" 88718 - sources."@babel/helper-replace-supers-7.15.0" 88719 - sources."@babel/helper-simple-access-7.14.8" 88720 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 88721 - sources."@babel/helper-split-export-declaration-7.14.5" 88902 + sources."@babel/helper-replace-supers-7.15.4" 88903 + sources."@babel/helper-simple-access-7.15.4" 88904 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 88905 + sources."@babel/helper-split-export-declaration-7.15.4" 88722 88906 sources."@babel/helper-validator-identifier-7.14.9" 88723 88907 sources."@babel/helper-validator-option-7.14.5" 88724 - sources."@babel/helpers-7.15.3" 88908 + sources."@babel/helpers-7.15.4" 88725 88909 (sources."@babel/highlight-7.14.5" // { 88726 88910 dependencies = [ 88727 88911 sources."chalk-2.4.2" 88728 88912 ]; 88729 88913 }) 88730 - sources."@babel/parser-7.15.3" 88914 + sources."@babel/parser-7.15.5" 88731 88915 sources."@babel/plugin-proposal-object-rest-spread-7.10.4" 88732 88916 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 88733 88917 sources."@babel/plugin-syntax-jsx-7.14.5" 88734 88918 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 88735 88919 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 88736 - sources."@babel/plugin-transform-parameters-7.14.5" 88920 + sources."@babel/plugin-transform-parameters-7.15.4" 88737 88921 sources."@babel/plugin-transform-react-jsx-7.14.9" 88738 - sources."@babel/runtime-7.15.3" 88739 - sources."@babel/standalone-7.15.3" 88740 - sources."@babel/template-7.14.5" 88741 - sources."@babel/traverse-7.15.0" 88742 - sources."@babel/types-7.15.0" 88922 + sources."@babel/runtime-7.15.4" 88923 + sources."@babel/standalone-7.15.5" 88924 + sources."@babel/template-7.15.4" 88925 + sources."@babel/traverse-7.15.4" 88926 + sources."@babel/types-7.15.4" 88743 88927 sources."@graphql-tools/schema-7.1.5" 88744 88928 sources."@graphql-tools/utils-7.10.0" 88745 88929 sources."@hapi/address-2.1.4" ··· 88775 88959 sources."@types/istanbul-lib-report-3.0.0" 88776 88960 sources."@types/istanbul-reports-1.1.2" 88777 88961 sources."@types/json-patch-0.0.30" 88778 - sources."@types/node-16.7.2" 88962 + sources."@types/node-16.7.13" 88779 88963 sources."@types/node-fetch-2.5.12" 88780 88964 sources."@types/unist-2.0.6" 88781 88965 sources."@types/yargs-15.0.14" 88782 88966 sources."@types/yargs-parser-20.2.1" 88783 88967 sources."@types/yoga-layout-1.9.2" 88784 88968 sources."accepts-1.3.7" 88785 - sources."acorn-8.4.1" 88969 + sources."acorn-8.5.0" 88786 88970 sources."acorn-jsx-5.3.2" 88787 88971 sources."address-1.1.2" 88788 88972 (sources."ansi-align-3.0.0" // { ··· 88790 88974 sources."string-width-3.1.0" 88791 88975 ]; 88792 88976 }) 88793 - (sources."ansi-escapes-4.3.2" // { 88794 - dependencies = [ 88795 - sources."type-fest-0.21.3" 88796 - ]; 88797 - }) 88977 + sources."ansi-escapes-4.3.2" 88798 88978 sources."ansi-regex-5.0.0" 88799 88979 sources."ansi-styles-3.2.1" 88800 88980 sources."anymatch-3.1.2" ··· 88802 88982 sources."array-flatten-1.1.1" 88803 88983 sources."async-retry-ng-2.0.1" 88804 88984 sources."asynckit-0.4.0" 88805 - sources."axios-0.21.1" 88985 + sources."axios-0.21.4" 88806 88986 sources."bail-1.0.5" 88807 88987 sources."balanced-match-1.0.2" 88808 88988 sources."better-opn-2.1.1" ··· 88830 89010 }) 88831 89011 sources."brace-expansion-1.1.11" 88832 89012 sources."braces-3.0.2" 88833 - sources."browserslist-4.16.8" 89013 + sources."browserslist-4.17.0" 88834 89014 sources."bytes-3.1.0" 88835 89015 (sources."cacheable-request-6.1.0" // { 88836 89016 dependencies = [ ··· 88842 89022 sources."call-bind-1.0.2" 88843 89023 sources."camel-case-4.1.2" 88844 89024 sources."camelcase-5.3.1" 88845 - sources."caniuse-lite-1.0.30001252" 89025 + sources."caniuse-lite-1.0.30001255" 88846 89026 sources."ccount-1.1.0" 88847 89027 (sources."chalk-4.1.2" // { 88848 89028 dependencies = [ ··· 88881 89061 sources."collapse-white-space-1.0.6" 88882 89062 sources."color-convert-1.9.3" 88883 89063 sources."color-name-1.1.3" 88884 - sources."colorette-1.3.0" 89064 + sources."colorette-1.4.0" 88885 89065 sources."combined-stream-1.0.8" 88886 89066 sources."common-tags-1.8.0" 88887 89067 sources."concat-map-0.0.1" ··· 88892 89072 ]; 88893 89073 }) 88894 89074 sources."content-type-1.0.4" 88895 - sources."contentful-management-7.33.0" 88896 - sources."contentful-sdk-core-6.8.0" 89075 + sources."contentful-management-7.36.2" 89076 + sources."contentful-sdk-core-6.8.5" 88897 89077 sources."convert-hrtime-3.0.0" 88898 89078 (sources."convert-source-map-1.8.0" // { 88899 89079 dependencies = [ ··· 88903 89083 sources."cookie-0.4.0" 88904 89084 sources."cookie-signature-1.0.6" 88905 89085 sources."cors-2.8.5" 88906 - sources."create-gatsby-1.12.0" 89086 + sources."create-gatsby-1.13.0" 88907 89087 (sources."cross-spawn-6.0.5" // { 88908 89088 dependencies = [ 88909 89089 sources."semver-5.7.1" ··· 88932 89112 sources."dom-converter-0.2.0" 88933 89113 sources."dom-serializer-1.3.2" 88934 89114 sources."domelementtype-2.2.0" 88935 - sources."domhandler-4.2.0" 88936 - sources."domutils-2.7.0" 89115 + sources."domhandler-4.2.2" 89116 + sources."domutils-2.8.0" 88937 89117 sources."dot-prop-5.3.0" 88938 89118 sources."dotenv-8.6.0" 88939 89119 sources."duplexer3-0.1.4" 88940 89120 sources."ee-first-1.1.1" 88941 - sources."electron-to-chromium-1.3.818" 89121 + sources."electron-to-chromium-1.3.832" 88942 89122 sources."emoji-regex-7.0.3" 88943 89123 sources."encodeurl-1.0.2" 88944 89124 sources."end-of-stream-1.4.4" ··· 89000 89180 ]; 89001 89181 }) 89002 89182 sources."find-up-4.1.0" 89003 - sources."follow-redirects-1.14.2" 89183 + sources."follow-redirects-1.14.3" 89004 89184 sources."form-data-3.0.1" 89005 89185 sources."forwarded-0.2.0" 89006 89186 sources."fresh-0.5.2" ··· 89009 89189 sources."fs.realpath-1.0.0" 89010 89190 sources."fsevents-2.3.2" 89011 89191 sources."function-bind-1.1.1" 89012 - sources."gatsby-core-utils-2.12.0" 89013 - (sources."gatsby-recipes-0.23.0" // { 89192 + sources."gatsby-core-utils-2.13.0" 89193 + (sources."gatsby-recipes-0.24.0" // { 89014 89194 dependencies = [ 89015 89195 sources."strip-ansi-6.0.0" 89016 89196 ]; 89017 89197 }) 89018 - sources."gatsby-telemetry-2.12.0" 89198 + sources."gatsby-telemetry-2.13.0" 89019 89199 sources."gensync-1.0.0-beta.2" 89020 89200 sources."get-caller-file-2.0.5" 89021 89201 sources."get-intrinsic-1.1.1" ··· 89028 89208 sources."globals-11.12.0" 89029 89209 sources."got-9.6.0" 89030 89210 sources."graceful-fs-4.2.8" 89031 - sources."graphql-15.5.1" 89211 + sources."graphql-15.5.3" 89032 89212 sources."graphql-compose-7.25.1" 89033 89213 sources."graphql-subscriptions-1.2.1" 89034 89214 sources."graphql-type-json-0.3.2" ··· 89173 89353 sources."nice-try-1.0.5" 89174 89354 sources."no-case-3.0.4" 89175 89355 sources."node-eta-0.9.0" 89176 - sources."node-fetch-2.6.1" 89356 + sources."node-fetch-2.6.2" 89177 89357 sources."node-object-hash-2.3.9" 89178 89358 sources."node-releases-1.1.75" 89179 89359 sources."normalize-path-3.0.0" ··· 89354 89534 sources."trim-trailing-lines-1.1.4" 89355 89535 sources."trough-1.0.5" 89356 89536 sources."tslib-2.2.0" 89357 - sources."type-fest-0.20.2" 89537 + sources."type-fest-0.21.3" 89358 89538 sources."type-is-1.6.18" 89359 89539 sources."typedarray-to-buffer-3.1.5" 89360 89540 sources."unherit-1.1.3" ··· 89381 89561 dependencies = [ 89382 89562 sources."boxen-5.0.1" 89383 89563 sources."camelcase-6.2.0" 89564 + sources."type-fest-0.20.2" 89384 89565 ]; 89385 89566 }) 89386 89567 sources."url-parse-lax-3.0.0" ··· 89406 89587 }) 89407 89588 sources."wrappy-1.0.2" 89408 89589 sources."write-file-atomic-3.0.3" 89409 - sources."ws-7.5.3" 89590 + sources."ws-7.5.4" 89410 89591 sources."xdg-basedir-4.0.0" 89411 - sources."xstate-4.23.1" 89592 + sources."xstate-4.23.4" 89412 89593 sources."xtend-4.0.2" 89413 89594 sources."y18n-4.0.3" 89414 89595 sources."yallist-4.0.0" ··· 89435 89616 generator-code = nodeEnv.buildNodePackage { 89436 89617 name = "generator-code"; 89437 89618 packageName = "generator-code"; 89438 - version = "1.5.5"; 89619 + version = "1.6.0"; 89439 89620 src = fetchurl { 89440 - url = "https://registry.npmjs.org/generator-code/-/generator-code-1.5.5.tgz"; 89441 - sha512 = "KxmZfEzhV0JYIonYtKBihZAFFVt0tqKoGL1OAbW8RdFQAgR/Yt5H0zF5K/7q7/M446JRcHCrI/pn9dmWmCXiDA=="; 89621 + url = "https://registry.npmjs.org/generator-code/-/generator-code-1.6.0.tgz"; 89622 + sha512 = "AZQg3krSIoySkTfHUhcWdDAALT5rIRvlFI8EcbrFMjIgedYZk04HdxYtq8FGdsWD9D/3F2zQN++iuWXowQw8Ig=="; 89442 89623 }; 89443 89624 dependencies = [ 89444 89625 sources."@babel/code-frame-7.14.5" ··· 89456 89637 sources."@octokit/auth-token-2.4.5" 89457 89638 sources."@octokit/core-3.5.1" 89458 89639 sources."@octokit/endpoint-6.0.12" 89459 - sources."@octokit/graphql-4.6.4" 89460 - sources."@octokit/openapi-types-9.7.0" 89461 - sources."@octokit/plugin-paginate-rest-2.15.1" 89640 + sources."@octokit/graphql-4.8.0" 89641 + sources."@octokit/openapi-types-10.1.1" 89642 + sources."@octokit/plugin-paginate-rest-2.16.0" 89462 89643 sources."@octokit/plugin-request-log-1.0.4" 89463 - sources."@octokit/plugin-rest-endpoint-methods-5.8.0" 89644 + sources."@octokit/plugin-rest-endpoint-methods-5.10.0" 89464 89645 sources."@octokit/request-5.6.1" 89465 89646 sources."@octokit/request-error-2.1.0" 89466 - sources."@octokit/rest-18.9.1" 89467 - sources."@octokit/types-6.25.0" 89647 + sources."@octokit/rest-18.10.0" 89648 + sources."@octokit/types-6.27.0" 89468 89649 sources."@types/normalize-package-data-2.4.1" 89469 - sources."agent-base-4.3.0" 89470 89650 sources."ansi-regex-2.1.1" 89471 89651 sources."ansi-styles-4.3.0" 89472 89652 sources."balanced-match-1.0.2" ··· 89480 89660 sources."concat-map-0.0.1" 89481 89661 sources."cross-spawn-7.0.3" 89482 89662 sources."dargs-7.0.0" 89483 - sources."debug-3.1.0" 89663 + sources."debug-4.3.2" 89484 89664 sources."deprecation-2.3.1" 89485 89665 sources."end-of-stream-1.4.4" 89486 89666 sources."error-ex-1.3.2" 89487 - sources."es6-promise-4.2.8" 89488 - sources."es6-promisify-5.0.0" 89489 89667 sources."escape-string-regexp-1.0.5" 89490 89668 sources."execa-4.1.0" 89491 89669 sources."fast-plist-0.1.2" ··· 89500 89678 sources."has-ansi-2.0.0" 89501 89679 sources."has-flag-4.0.0" 89502 89680 sources."hosted-git-info-2.8.9" 89503 - sources."http-proxy-agent-2.1.0" 89504 - sources."https-proxy-agent-2.2.4" 89505 89681 sources."human-signals-1.1.1" 89506 89682 sources."inflight-1.0.6" 89507 89683 sources."inherits-2.0.4" ··· 89522 89698 sources."mimic-fn-2.1.0" 89523 89699 sources."minimatch-3.0.4" 89524 89700 sources."minimist-1.2.5" 89525 - sources."ms-2.0.0" 89526 - sources."node-fetch-2.6.1" 89701 + sources."ms-2.1.2" 89702 + sources."node-fetch-2.6.2" 89527 89703 (sources."normalize-package-data-2.5.0" // { 89528 89704 dependencies = [ 89529 89705 sources."semver-5.7.1" ··· 89550 89726 }) 89551 89727 sources."read-pkg-up-7.0.1" 89552 89728 sources."rechoir-0.6.2" 89553 - sources."request-light-0.4.0" 89729 + sources."request-light-0.5.4" 89554 89730 sources."resolve-1.20.0" 89555 89731 sources."run-async-2.4.1" 89556 89732 sources."sanitize-filename-1.6.3" ··· 89579 89755 sources."universal-user-agent-6.0.0" 89580 89756 sources."utf8-byte-length-1.0.4" 89581 89757 sources."validate-npm-package-license-3.0.4" 89582 - sources."vscode-nls-4.1.2" 89583 89758 sources."which-2.0.2" 89584 89759 (sources."wrap-ansi-2.1.0" // { 89585 89760 dependencies = [ ··· 89589 89764 }) 89590 89765 sources."wrappy-1.0.2" 89591 89766 sources."yallist-4.0.0" 89592 - (sources."yeoman-generator-5.4.2" // { 89593 - dependencies = [ 89594 - sources."debug-4.3.2" 89595 - sources."ms-2.1.2" 89596 - ]; 89597 - }) 89767 + sources."yeoman-generator-5.4.2" 89598 89768 (sources."yosay-2.0.2" // { 89599 89769 dependencies = [ 89600 89770 sources."ansi-styles-3.2.1" ··· 89637 89807 sources."has-flag-3.0.0" 89638 89808 sources."iterall-1.3.0" 89639 89809 sources."minimist-1.2.5" 89640 - sources."node-fetch-2.6.1" 89810 + sources."node-fetch-2.6.2" 89641 89811 sources."supports-color-5.5.0" 89642 89812 ]; 89643 89813 buildInputs = globalBuildInputs; ··· 89850 90020 sources."tweetnacl-0.14.5" 89851 90021 sources."tweetnacl-auth-0.3.1" 89852 90022 sources."typedarray-to-buffer-4.0.0" 89853 - sources."ws-7.5.3" 90023 + sources."ws-7.5.4" 89854 90024 sources."xtend-4.0.2" 89855 90025 ]; 89856 90026 buildInputs = globalBuildInputs; ··· 89884 90054 gitmoji-cli = nodeEnv.buildNodePackage { 89885 90055 name = "gitmoji-cli"; 89886 90056 packageName = "gitmoji-cli"; 89887 - version = "4.5.1"; 90057 + version = "4.6.1"; 89888 90058 src = fetchurl { 89889 - url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.5.1.tgz"; 89890 - sha512 = "jKet1JrZa/pxV1JePwm6Asd3ZnyqIQG8FN3caTjd9hM+LygssW2NLSFOpnlrvblNXzhpwLxNxcvIv4RoU1Impw=="; 90059 + url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.6.1.tgz"; 90060 + sha512 = "B2wwKFTFDPrs0vESTIsU2jJXlqvq8PCC6aTkOS+1qPsATPkepeYC0PHw/CZpjx1o77aoTCkbmitb1dP8hVs8Gw=="; 89891 90061 }; 89892 90062 dependencies = [ 89893 90063 sources."@babel/code-frame-7.14.5" ··· 89960 90130 sources."dot-prop-5.3.0" 89961 90131 ]; 89962 90132 }) 89963 - sources."core-util-is-1.0.2" 90133 + sources."core-util-is-1.0.3" 89964 90134 sources."cross-spawn-7.0.3" 89965 90135 sources."crypto-random-string-2.0.0" 89966 90136 sources."data-uri-to-buffer-3.0.1" ··· 89974 90144 }) 89975 90145 sources."decompress-response-3.3.0" 89976 90146 sources."deep-extend-0.6.0" 89977 - sources."deep-is-0.1.3" 90147 + sources."deep-is-0.1.4" 89978 90148 sources."defaults-1.0.3" 89979 90149 sources."defer-to-connect-1.1.3" 89980 90150 sources."degenerator-3.0.1" ··· 90097 90267 sources."ms-2.1.2" 90098 90268 sources."mute-stream-0.0.8" 90099 90269 sources."netmask-2.0.2" 90100 - sources."node-fetch-2.6.1" 90270 + sources."node-fetch-2.6.2" 90101 90271 sources."normalize-package-data-3.0.3" 90102 90272 sources."normalize-url-4.5.1" 90103 90273 sources."npm-run-path-4.0.1" ··· 90322 90492 sources."tslib-2.1.0" 90323 90493 ]; 90324 90494 }) 90325 - (sources."@graphql-tools/import-6.3.1" // { 90495 + (sources."@graphql-tools/import-6.4.0" // { 90326 90496 dependencies = [ 90327 - sources."tslib-2.2.0" 90497 + sources."tslib-2.3.1" 90328 90498 ]; 90329 90499 }) 90330 90500 (sources."@graphql-tools/json-file-loader-6.2.6" // { ··· 90348 90518 sources."tslib-2.3.1" 90349 90519 ]; 90350 90520 }) 90351 - (sources."@graphql-tools/schema-8.1.2" // { 90521 + (sources."@graphql-tools/schema-8.2.0" // { 90352 90522 dependencies = [ 90353 - sources."@graphql-tools/merge-8.0.3" 90354 - sources."@graphql-tools/utils-8.1.2" 90523 + sources."@graphql-tools/merge-8.1.2" 90524 + sources."@graphql-tools/utils-8.2.2" 90355 90525 sources."tslib-2.3.1" 90356 90526 ]; 90357 90527 }) ··· 90382 90552 sources."@nodelib/fs.walk-1.2.8" 90383 90553 sources."@sindresorhus/is-0.14.0" 90384 90554 sources."@szmarczak/http-timer-1.1.2" 90385 - sources."@types/node-16.7.2" 90555 + sources."@types/node-16.7.13" 90386 90556 sources."@types/parse-json-4.0.0" 90387 90557 sources."@types/websocket-1.0.2" 90388 90558 sources."abort-controller-3.0.0" ··· 90401 90571 sources."assert-plus-1.0.0" 90402 90572 sources."asynckit-0.4.0" 90403 90573 sources."at-least-node-1.0.0" 90404 - sources."available-typed-arrays-1.0.4" 90574 + sources."available-typed-arrays-1.0.5" 90405 90575 sources."aws-sign2-0.7.0" 90406 90576 sources."aws4-1.11.0" 90407 90577 sources."backo2-1.0.2" ··· 90476 90646 sources."emoji-regex-8.0.0" 90477 90647 sources."end-of-stream-1.4.4" 90478 90648 sources."error-ex-1.3.2" 90479 - sources."es-abstract-1.18.5" 90649 + sources."es-abstract-1.18.6" 90480 90650 sources."es-get-iterator-1.1.2" 90481 90651 sources."es-to-primitive-1.2.1" 90482 90652 sources."es6-promise-3.3.1" ··· 90497 90667 sources."fast-deep-equal-3.1.3" 90498 90668 sources."fast-glob-3.2.7" 90499 90669 sources."fast-json-stable-stringify-2.1.0" 90500 - sources."fast-safe-stringify-2.0.8" 90670 + sources."fast-safe-stringify-2.1.0" 90501 90671 sources."fastq-1.12.0" 90502 90672 sources."figlet-1.5.0" 90503 90673 sources."figures-3.2.0" ··· 90515 90685 sources."get-caller-file-2.0.5" 90516 90686 sources."get-intrinsic-1.1.1" 90517 90687 sources."get-stream-4.1.0" 90688 + sources."get-symbol-description-1.0.0" 90518 90689 sources."getpass-0.1.7" 90519 90690 sources."glob-7.1.7" 90520 90691 sources."glob-parent-5.1.2" ··· 90589 90760 sources."is-stream-1.1.0" 90590 90761 sources."is-string-1.0.7" 90591 90762 sources."is-symbol-1.0.4" 90592 - sources."is-typed-array-1.1.7" 90763 + sources."is-typed-array-1.1.8" 90593 90764 sources."is-typedarray-1.0.0" 90594 90765 sources."is-unicode-supported-0.1.0" 90595 90766 sources."is-weakmap-2.0.1" ··· 90815 90986 sources."which-1.3.1" 90816 90987 sources."which-boxed-primitive-1.0.2" 90817 90988 sources."which-collection-1.0.1" 90818 - sources."which-typed-array-1.1.6" 90989 + sources."which-typed-array-1.1.7" 90819 90990 (sources."wrap-ansi-7.0.0" // { 90820 90991 dependencies = [ 90821 90992 sources."ansi-regex-5.0.0" ··· 91083 91254 sources."color-convert-2.0.1" 91084 91255 sources."color-name-1.1.4" 91085 91256 sources."colors-1.0.3" 91086 - sources."core-util-is-1.0.2" 91257 + sources."core-util-is-1.0.3" 91087 91258 sources."drawille-blessed-contrib-1.0.0" 91088 91259 sources."drawille-canvas-blessed-contrib-0.1.3" 91089 91260 sources."escape-string-regexp-1.0.5" ··· 91128 91299 sources."supports-color-7.2.0" 91129 91300 ]; 91130 91301 }) 91131 - sources."systeminformation-5.8.6" 91302 + sources."systeminformation-5.8.7" 91132 91303 sources."term-canvas-0.0.5" 91133 91304 sources."type-fest-0.21.3" 91134 91305 sources."wordwrap-0.0.3" ··· 91251 91422 sources."is-plain-object-5.0.0" 91252 91423 ]; 91253 91424 }) 91254 - sources."core-util-is-1.0.2" 91425 + sources."core-util-is-1.0.3" 91255 91426 sources."d-1.0.1" 91256 91427 sources."debug-2.6.9" 91257 91428 sources."decamelize-1.2.0" ··· 91673 91844 sources."concat-stream-1.6.2" 91674 91845 sources."copy-descriptor-0.1.1" 91675 91846 sources."copy-props-2.0.5" 91676 - sources."core-util-is-1.0.2" 91847 + sources."core-util-is-1.0.3" 91677 91848 sources."d-1.0.1" 91678 91849 sources."debug-2.6.9" 91679 91850 sources."decamelize-1.2.0" ··· 92024 92195 sources."param-case-2.1.1" 92025 92196 sources."relateurl-0.2.7" 92026 92197 sources."source-map-0.6.1" 92027 - sources."uglify-js-3.14.1" 92198 + sources."uglify-js-3.14.2" 92028 92199 sources."upper-case-1.1.3" 92029 92200 ]; 92030 92201 buildInputs = globalBuildInputs; ··· 92147 92318 sources."corser-2.0.1" 92148 92319 sources."debug-3.2.7" 92149 92320 sources."eventemitter3-4.0.7" 92150 - sources."follow-redirects-1.14.2" 92321 + sources."follow-redirects-1.14.3" 92151 92322 sources."function-bind-1.1.1" 92152 92323 sources."get-intrinsic-1.1.1" 92153 92324 sources."has-1.0.3" ··· 92198 92369 sources."bfilter-1.0.5" 92199 92370 sources."bheep-0.1.5" 92200 92371 sources."binet-0.3.6" 92201 - sources."blgr-0.1.8" 92372 + sources."blgr-0.1.9" 92202 92373 sources."blru-0.1.6" 92203 92374 sources."blst-0.1.5" 92204 92375 sources."bmutex-0.1.6" ··· 92407 92578 sources."uuid-2.0.3" 92408 92579 ]; 92409 92580 }) 92410 - sources."core-util-is-1.0.2" 92581 + sources."core-util-is-1.0.3" 92411 92582 sources."css-select-1.0.0" 92412 92583 sources."css-what-1.0.0" 92413 92584 sources."csso-2.0.0" ··· 92565 92736 sources."uri-js-4.4.1" 92566 92737 sources."util-deprecate-1.0.2" 92567 92738 sources."uuid-3.4.0" 92568 - sources."verror-1.10.0" 92739 + (sources."verror-1.10.0" // { 92740 + dependencies = [ 92741 + sources."core-util-is-1.0.2" 92742 + ]; 92743 + }) 92569 92744 sources."whet.extend-0.9.9" 92570 92745 sources."window-size-0.1.0" 92571 92746 sources."wordwrap-0.0.2" ··· 92599 92774 sources."bunyan-1.8.15" 92600 92775 sources."colors-0.6.2" 92601 92776 sources."concat-map-0.0.1" 92602 - sources."core-util-is-1.0.2" 92777 + sources."core-util-is-1.0.3" 92603 92778 sources."cycle-1.0.3" 92604 92779 sources."dtrace-provider-0.8.8" 92605 92780 sources."eyes-0.1.8" ··· 92659 92834 sources."async-limiter-1.0.1" 92660 92835 sources."chrome-remote-interface-0.27.2" 92661 92836 sources."commander-2.11.0" 92662 - sources."node-fetch-2.6.1" 92837 + sources."node-fetch-2.6.2" 92663 92838 sources."semver-5.7.1" 92664 92839 sources."source-map-0.7.3" 92665 92840 sources."ws-6.2.2" ··· 92801 92976 sources."component-emitter-1.3.0" 92802 92977 sources."concat-map-0.0.1" 92803 92978 sources."cookiejar-2.1.2" 92804 - sources."core-util-is-1.0.2" 92979 + sources."core-util-is-1.0.3" 92805 92980 sources."cross-spawn-7.0.3" 92806 92981 sources."data-uri-to-buffer-3.0.1" 92807 92982 sources."debug-4.3.2" 92808 - sources."deep-is-0.1.3" 92983 + sources."deep-is-0.1.4" 92809 92984 sources."degenerator-2.2.0" 92810 92985 sources."delayed-stream-1.0.0" 92811 92986 sources."depd-1.1.2" ··· 93043 93218 }) 93044 93219 sources."wrappy-1.0.2" 93045 93220 sources."write-file-atomic-3.0.3" 93046 - sources."ws-7.5.3" 93221 + sources."ws-7.5.4" 93047 93222 sources."xregexp-2.0.0" 93048 93223 sources."yallist-3.1.1" 93049 93224 ]; ··· 93068 93243 }; 93069 93244 dependencies = [ 93070 93245 sources."@iarna/toml-2.2.5" 93071 - sources."@msgpack/msgpack-2.7.0" 93246 + sources."@msgpack/msgpack-2.7.1" 93072 93247 sources."@ot-builder/bin-composite-types-1.1.0" 93073 93248 sources."@ot-builder/bin-util-1.1.0" 93074 93249 (sources."@ot-builder/cli-help-shower-1.1.0" // { ··· 93113 93288 sources."@ot-builder/var-store-1.1.0" 93114 93289 sources."@ot-builder/variance-1.1.0" 93115 93290 sources."@unicode/unicode-13.0.0-1.2.0" 93116 - sources."@xmldom/xmldom-0.7.2" 93291 + sources."@xmldom/xmldom-0.7.4" 93117 93292 sources."aglfn-1.0.2" 93118 93293 sources."amdefine-1.0.1" 93119 93294 sources."ansi-regex-5.0.0" ··· 93136 93311 sources."css-parse-2.0.0" 93137 93312 sources."debug-3.1.0" 93138 93313 sources."decode-uri-component-0.2.0" 93139 - sources."deep-is-0.1.3" 93314 + sources."deep-is-0.1.4" 93140 93315 sources."ejs-3.1.6" 93141 93316 sources."emoji-regex-8.0.0" 93142 93317 sources."escalade-3.1.1" ··· 93405 93580 dependencies = [ 93406 93581 sources."@braintree/sanitize-url-3.1.0" 93407 93582 sources."@cronvel/get-pixels-3.4.0" 93408 - sources."@joplin/fork-htmlparser2-4.1.33" 93409 - sources."@joplin/fork-sax-1.2.37" 93583 + sources."@joplin/fork-htmlparser2-4.1.34" 93584 + sources."@joplin/fork-sax-1.2.38" 93410 93585 sources."@joplin/lib-2.3.1" 93411 93586 (sources."@joplin/renderer-2.3.1" // { 93412 93587 dependencies = [ ··· 93415 93590 sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support" 93416 93591 ]; 93417 93592 }) 93418 - (sources."@joplin/turndown-4.0.55" // { 93593 + (sources."@joplin/turndown-4.0.56" // { 93419 93594 dependencies = [ 93420 93595 sources."css-2.2.4" 93421 93596 ]; 93422 93597 }) 93423 - sources."@joplin/turndown-plugin-gfm-1.0.37" 93598 + sources."@joplin/turndown-plugin-gfm-1.0.38" 93424 93599 sources."abab-2.0.5" 93425 93600 sources."abbrev-1.1.1" 93426 93601 sources."acorn-7.4.1" ··· 93445 93620 }) 93446 93621 sources."anymatch-3.1.2" 93447 93622 sources."aproba-1.2.0" 93448 - sources."are-we-there-yet-1.1.5" 93623 + sources."are-we-there-yet-1.1.7" 93449 93624 (sources."argparse-1.0.10" // { 93450 93625 dependencies = [ 93451 93626 sources."sprintf-js-1.0.3" ··· 93460 93635 sources."async-mutex-0.1.4" 93461 93636 sources."asynckit-0.4.0" 93462 93637 sources."atob-2.1.2" 93463 - (sources."aws-sdk-2.977.0" // { 93638 + (sources."aws-sdk-2.984.0" // { 93464 93639 dependencies = [ 93465 93640 sources."sax-1.2.1" 93466 93641 sources."uuid-3.3.2" ··· 93526 93701 ]; 93527 93702 }) 93528 93703 sources."cwise-compiler-1.1.3" 93529 - sources."d3-7.0.1" 93530 - sources."d3-array-3.0.2" 93531 - sources."d3-axis-3.0.0" 93532 - sources."d3-brush-3.0.0" 93533 - sources."d3-chord-3.0.1" 93704 + sources."d3-5.16.0" 93705 + sources."d3-array-1.2.4" 93706 + sources."d3-axis-1.0.12" 93707 + sources."d3-brush-1.1.6" 93708 + sources."d3-chord-1.0.6" 93534 93709 sources."d3-collection-1.0.7" 93535 - sources."d3-color-3.0.1" 93536 - sources."d3-contour-3.0.1" 93537 - sources."d3-delaunay-6.0.2" 93538 - sources."d3-dispatch-3.0.1" 93539 - sources."d3-drag-3.0.0" 93540 - (sources."d3-dsv-3.0.1" // { 93541 - dependencies = [ 93542 - sources."commander-7.2.0" 93543 - sources."iconv-lite-0.6.3" 93544 - ]; 93545 - }) 93546 - sources."d3-ease-3.0.1" 93547 - sources."d3-fetch-3.0.1" 93548 - sources."d3-force-3.0.0" 93549 - sources."d3-format-3.0.1" 93550 - sources."d3-geo-3.0.1" 93551 - sources."d3-hierarchy-3.0.1" 93552 - sources."d3-interpolate-3.0.1" 93553 - sources."d3-path-3.0.1" 93554 - sources."d3-polygon-3.0.1" 93555 - sources."d3-quadtree-3.0.1" 93556 - sources."d3-random-3.0.1" 93557 - sources."d3-scale-4.0.0" 93558 - sources."d3-scale-chromatic-3.0.0" 93559 - sources."d3-selection-3.0.0" 93560 - sources."d3-shape-3.0.1" 93561 - sources."d3-time-3.0.0" 93562 - sources."d3-time-format-4.0.0" 93563 - sources."d3-timer-3.0.1" 93564 - sources."d3-transition-3.0.1" 93710 + sources."d3-color-1.4.1" 93711 + sources."d3-contour-1.3.2" 93712 + sources."d3-dispatch-1.0.6" 93713 + sources."d3-drag-1.2.5" 93714 + sources."d3-dsv-1.2.0" 93715 + sources."d3-ease-1.0.7" 93716 + sources."d3-fetch-1.2.0" 93717 + sources."d3-force-1.2.1" 93718 + sources."d3-format-1.4.5" 93719 + sources."d3-geo-1.12.1" 93720 + sources."d3-hierarchy-1.1.9" 93721 + sources."d3-interpolate-1.4.0" 93722 + sources."d3-path-1.0.9" 93723 + sources."d3-polygon-1.0.6" 93724 + sources."d3-quadtree-1.0.7" 93725 + sources."d3-random-1.1.2" 93726 + sources."d3-scale-2.2.2" 93727 + sources."d3-scale-chromatic-1.5.0" 93728 + sources."d3-selection-1.4.2" 93729 + sources."d3-shape-1.3.7" 93730 + sources."d3-time-1.1.0" 93731 + sources."d3-time-format-2.3.0" 93732 + sources."d3-timer-1.0.10" 93733 + sources."d3-transition-1.3.2" 93565 93734 sources."d3-voronoi-1.1.4" 93566 - sources."d3-zoom-3.0.0" 93735 + sources."d3-zoom-1.8.3" 93567 93736 sources."dagre-0.8.5" 93568 - (sources."dagre-d3-0.6.4" // { 93569 - dependencies = [ 93570 - sources."d3-5.16.0" 93571 - sources."d3-array-1.2.4" 93572 - sources."d3-axis-1.0.12" 93573 - sources."d3-brush-1.1.6" 93574 - sources."d3-chord-1.0.6" 93575 - sources."d3-color-1.4.1" 93576 - sources."d3-contour-1.3.2" 93577 - sources."d3-dispatch-1.0.6" 93578 - sources."d3-drag-1.2.5" 93579 - sources."d3-dsv-1.2.0" 93580 - sources."d3-ease-1.0.7" 93581 - sources."d3-fetch-1.2.0" 93582 - sources."d3-force-1.2.1" 93583 - sources."d3-format-1.4.5" 93584 - sources."d3-geo-1.12.1" 93585 - sources."d3-hierarchy-1.1.9" 93586 - sources."d3-interpolate-1.4.0" 93587 - sources."d3-path-1.0.9" 93588 - sources."d3-polygon-1.0.6" 93589 - sources."d3-quadtree-1.0.7" 93590 - sources."d3-random-1.1.2" 93591 - sources."d3-scale-2.2.2" 93592 - sources."d3-scale-chromatic-1.5.0" 93593 - sources."d3-selection-1.4.2" 93594 - sources."d3-shape-1.3.7" 93595 - sources."d3-time-1.1.0" 93596 - sources."d3-time-format-2.3.0" 93597 - sources."d3-timer-1.0.10" 93598 - sources."d3-transition-1.3.2" 93599 - sources."d3-zoom-1.8.3" 93600 - ]; 93601 - }) 93737 + sources."dagre-d3-0.6.4" 93602 93738 sources."dashdash-1.14.1" 93603 93739 sources."data-urls-1.1.0" 93604 93740 sources."debug-3.2.7" 93605 93741 sources."decode-uri-component-0.2.0" 93606 93742 sources."decompress-response-4.2.1" 93607 93743 sources."deep-extend-0.6.0" 93608 - sources."deep-is-0.1.3" 93744 + sources."deep-is-0.1.4" 93609 93745 sources."deepmerge-2.2.1" 93610 - sources."delaunator-5.0.0" 93611 93746 sources."delayed-stream-1.0.0" 93612 93747 sources."delegates-1.0.0" 93613 93748 sources."depd-1.1.2" ··· 93615 93750 sources."diff-match-patch-1.0.5" 93616 93751 (sources."dom-serializer-1.3.2" // { 93617 93752 dependencies = [ 93618 - sources."domhandler-4.2.0" 93753 + sources."domhandler-4.2.2" 93619 93754 ]; 93620 93755 }) 93621 93756 sources."domelementtype-2.2.0" 93622 93757 sources."domexception-1.0.1" 93623 93758 sources."domhandler-3.3.0" 93624 93759 sources."dompurify-2.3.1" 93625 - (sources."domutils-2.7.0" // { 93760 + (sources."domutils-2.8.0" // { 93626 93761 dependencies = [ 93627 - sources."domhandler-4.2.0" 93762 + sources."domhandler-4.2.2" 93628 93763 ]; 93629 93764 }) 93630 93765 sources."ecc-jsbn-0.1.2" ··· 93662 93797 sources."file-uri-to-path-1.0.0" 93663 93798 sources."fill-range-7.0.1" 93664 93799 sources."find-up-2.1.0" 93665 - sources."follow-redirects-1.14.2" 93800 + sources."follow-redirects-1.14.3" 93666 93801 sources."font-awesome-filetypes-2.1.0" 93667 93802 sources."for-each-property-0.0.4" 93668 93803 sources."for-each-property-deep-0.0.3" ··· 93744 93879 sources."split-skip-0.0.1" 93745 93880 ]; 93746 93881 }) 93747 - sources."internmap-2.0.1" 93748 93882 sources."iota-array-1.0.0" 93749 93883 sources."ip-regex-2.1.0" 93750 93884 sources."is-absolute-0.2.6" ··· 93781 93915 sources."json-stringify-safe-5.0.1" 93782 93916 sources."jsonfile-2.4.0" 93783 93917 sources."jsprim-1.4.1" 93784 - (sources."katex-0.13.13" // { 93918 + (sources."katex-0.13.18" // { 93785 93919 dependencies = [ 93786 93920 sources."commander-6.2.1" 93787 93921 ]; ··· 93835 93969 sources."md5-2.3.0" 93836 93970 sources."md5-file-4.0.0" 93837 93971 sources."mdurl-1.0.1" 93838 - sources."mermaid-8.12.0" 93972 + sources."mermaid-8.12.1" 93839 93973 sources."mime-db-1.49.0" 93840 93974 sources."mime-types-2.1.32" 93841 93975 sources."mimic-response-2.1.0" ··· 93858 93992 sources."napi-build-utils-1.0.2" 93859 93993 sources."ndarray-1.0.19" 93860 93994 sources."ndarray-pack-1.2.1" 93861 - sources."needle-2.9.0" 93995 + sources."needle-2.9.1" 93862 93996 sources."nextgen-events-1.5.2" 93863 93997 sources."no-case-2.3.2" 93864 - (sources."node-abi-2.30.0" // { 93998 + (sources."node-abi-2.30.1" // { 93865 93999 dependencies = [ 93866 94000 sources."semver-5.7.1" 93867 94001 ]; ··· 93970 94104 sources."resolve-url-0.2.1" 93971 94105 sources."retry-0.10.1" 93972 94106 sources."rimraf-2.7.1" 93973 - sources."robust-predicates-3.0.1" 93974 94107 sources."rw-1.3.3" 93975 94108 sources."safe-buffer-5.2.1" 93976 94109 sources."safer-buffer-2.1.2" ··· 94074 94207 sources."toidentifier-1.0.0" 94075 94208 sources."tough-cookie-3.0.1" 94076 94209 sources."tr46-1.0.1" 94077 - sources."tree-kit-0.7.0" 94210 + sources."tree-kit-0.7.1" 94078 94211 sources."tunnel-agent-0.6.0" 94079 94212 sources."tweetnacl-0.14.5" 94080 94213 sources."type-check-0.3.2" ··· 94123 94256 ]; 94124 94257 }) 94125 94258 sources."wrappy-1.0.2" 94126 - sources."ws-7.5.3" 94259 + sources."ws-7.5.4" 94127 94260 sources."xml-name-validator-3.0.0" 94128 94261 sources."xml2js-0.4.23" 94129 94262 sources."xmlbuilder-11.0.1" ··· 94214 94347 sha512 = "sxKt7h0vzCd+3Y81Ey2qinupL6DpRSZJclS04ugHDNmRUXGzqicMJ6iwayhSA0S0DwwX30c5ozyUthr1QKF6uw=="; 94215 94348 }; 94216 94349 dependencies = [ 94217 - sources."@babel/parser-7.15.3" 94350 + sources."@babel/parser-7.15.5" 94218 94351 sources."argparse-1.0.10" 94219 94352 sources."bluebird-3.7.2" 94220 94353 sources."catharsis-0.9.0" ··· 94262 94395 sources."cli-1.0.1" 94263 94396 sources."concat-map-0.0.1" 94264 94397 sources."console-browserify-1.1.0" 94265 - sources."core-util-is-1.0.2" 94398 + sources."core-util-is-1.0.3" 94266 94399 sources."date-now-0.1.4" 94267 94400 (sources."dom-serializer-0.2.2" // { 94268 94401 dependencies = [ ··· 94359 94492 sources."commander-4.1.1" 94360 94493 sources."component-emitter-1.3.0" 94361 94494 sources."cookiejar-2.1.2" 94362 - sources."core-util-is-1.0.2" 94495 + sources."core-util-is-1.0.3" 94363 94496 sources."debug-3.2.7" 94364 94497 sources."delayed-stream-1.0.0" 94365 94498 sources."esprima-4.0.1" ··· 94769 94902 sources."cookie-0.4.0" 94770 94903 sources."cookie-signature-1.0.6" 94771 94904 sources."copy-descriptor-0.1.1" 94772 - sources."core-util-is-1.0.2" 94905 + sources."core-util-is-1.0.3" 94773 94906 sources."cors-2.8.5" 94774 94907 sources."create-error-class-3.0.2" 94775 94908 sources."dashdash-1.14.1" ··· 95212 95345 sources."uuid-3.4.0" 95213 95346 sources."validate-npm-package-license-3.0.4" 95214 95347 sources."vary-1.1.2" 95215 - sources."verror-1.10.0" 95348 + (sources."verror-1.10.0" // { 95349 + dependencies = [ 95350 + sources."core-util-is-1.0.2" 95351 + ]; 95352 + }) 95216 95353 sources."which-module-1.0.0" 95217 95354 sources."widest-line-1.0.0" 95218 95355 sources."window-size-0.2.0" ··· 95255 95392 sources."tslib-2.3.1" 95256 95393 ]; 95257 95394 }) 95258 - (sources."@oclif/core-0.5.32" // { 95395 + (sources."@oclif/core-0.5.35" // { 95259 95396 dependencies = [ 95260 95397 sources."fs-extra-9.1.0" 95261 95398 sources."jsonfile-6.1.0" ··· 95278 95415 sources."@oclif/screen-1.0.4" 95279 95416 (sources."@putdotio/api-client-8.17.0" // { 95280 95417 dependencies = [ 95281 - sources."axios-0.21.1" 95418 + sources."axios-0.21.4" 95282 95419 ]; 95283 95420 }) 95284 95421 sources."ajv-6.12.6" ··· 95365 95502 }) 95366 95503 sources."fill-range-7.0.1" 95367 95504 sources."find-up-3.0.0" 95368 - sources."follow-redirects-1.14.2" 95505 + sources."follow-redirects-1.14.3" 95369 95506 sources."form-data-3.0.1" 95370 95507 sources."fs-extra-8.1.0" 95371 95508 sources."function-bind-1.1.1" ··· 95493 95630 katex = nodeEnv.buildNodePackage { 95494 95631 name = "katex"; 95495 95632 packageName = "katex"; 95496 - version = "0.13.13"; 95633 + version = "0.13.18"; 95497 95634 src = fetchurl { 95498 - url = "https://registry.npmjs.org/katex/-/katex-0.13.13.tgz"; 95499 - sha512 = "cCMcil4jwMm7behpXGiQfXJA29sko/Gd/26iCsr53Dv5Jn2iHbHyEb14dm9uVrIijUXx6Zz1WhlFhHE6DckvkQ=="; 95635 + url = "https://registry.npmjs.org/katex/-/katex-0.13.18.tgz"; 95636 + sha512 = "a3dC4NSVSDU3O1WZbTnOiA8rVNJ2lSiomOl0kmckCIGObccIHXof7gAseIY0o1gjEspe+34ZeSEX2D1ChFKIvA=="; 95500 95637 }; 95501 95638 dependencies = [ 95502 95639 sources."commander-6.2.1" ··· 95523 95660 sources."@types/component-emitter-1.2.10" 95524 95661 sources."@types/cookie-0.4.1" 95525 95662 sources."@types/cors-2.8.12" 95526 - sources."@types/node-16.7.2" 95663 + sources."@types/node-16.7.13" 95527 95664 sources."accepts-1.3.7" 95528 95665 sources."ansi-regex-5.0.0" 95529 95666 sources."ansi-styles-4.3.0" ··· 95562 95699 sources."ms-2.1.2" 95563 95700 ]; 95564 95701 }) 95565 - sources."engine.io-parser-4.0.2" 95702 + sources."engine.io-parser-4.0.3" 95566 95703 sources."ent-2.2.0" 95567 95704 sources."escalade-3.1.1" 95568 95705 sources."escape-html-1.0.3" ··· 95571 95708 sources."fill-range-7.0.1" 95572 95709 sources."finalhandler-1.1.2" 95573 95710 sources."flatted-2.0.2" 95574 - sources."follow-redirects-1.14.2" 95711 + sources."follow-redirects-1.14.3" 95575 95712 sources."fs-extra-8.1.0" 95576 95713 sources."fs.realpath-1.0.0" 95577 95714 sources."fsevents-2.3.2" ··· 95677 95814 keyoxide = nodeEnv.buildNodePackage { 95678 95815 name = "keyoxide"; 95679 95816 packageName = "keyoxide"; 95680 - version = "0.3.0"; 95817 + version = "0.4.2"; 95681 95818 src = fetchurl { 95682 - url = "https://registry.npmjs.org/keyoxide/-/keyoxide-0.3.0.tgz"; 95683 - sha512 = "LTy8I1D5hkQptMCy7XdSEY7GB5QG8TzOgp28D9B/XNt/wKKr2hRwrcW1eLGzazJQkMrdVg2AASLpgmFzPpVPrw=="; 95819 + url = "https://registry.npmjs.org/keyoxide/-/keyoxide-0.4.2.tgz"; 95820 + sha512 = "JErcr+qnJbmS7ZwHlm5mFKzM162WtALhxaTdkr1SDhi8oS+hSVAniGACqIFfMNvGhODGh6iBipOpMVykAYKfNw=="; 95684 95821 }; 95685 95822 dependencies = [ 95686 - sources."JSONStream-1.3.5" 95687 - sources."acorn-7.4.1" 95688 - sources."acorn-node-1.8.2" 95689 - sources."acorn-walk-7.2.0" 95690 - sources."ansi-colors-4.1.1" 95691 - sources."ansi-regex-5.0.0" 95692 - sources."ansi-styles-4.3.0" 95693 - (sources."asn1.js-5.4.1" // { 95823 + sources."@babel/cli-7.15.4" 95824 + sources."@babel/code-frame-7.14.5" 95825 + sources."@babel/compat-data-7.15.0" 95826 + (sources."@babel/core-7.15.5" // { 95694 95827 dependencies = [ 95695 - sources."bn.js-4.12.0" 95828 + sources."semver-6.3.0" 95696 95829 ]; 95697 95830 }) 95698 - (sources."assert-1.5.0" // { 95831 + sources."@babel/generator-7.15.4" 95832 + sources."@babel/helper-annotate-as-pure-7.15.4" 95833 + (sources."@babel/helper-compilation-targets-7.15.4" // { 95834 + dependencies = [ 95835 + sources."semver-6.3.0" 95836 + ]; 95837 + }) 95838 + sources."@babel/helper-function-name-7.15.4" 95839 + sources."@babel/helper-get-function-arity-7.15.4" 95840 + sources."@babel/helper-hoist-variables-7.15.4" 95841 + sources."@babel/helper-member-expression-to-functions-7.15.4" 95842 + sources."@babel/helper-module-imports-7.15.4" 95843 + sources."@babel/helper-module-transforms-7.15.4" 95844 + sources."@babel/helper-optimise-call-expression-7.15.4" 95845 + sources."@babel/helper-plugin-utils-7.14.5" 95846 + sources."@babel/helper-replace-supers-7.15.4" 95847 + sources."@babel/helper-simple-access-7.15.4" 95848 + sources."@babel/helper-split-export-declaration-7.15.4" 95849 + sources."@babel/helper-validator-identifier-7.14.9" 95850 + sources."@babel/helper-validator-option-7.14.5" 95851 + sources."@babel/helpers-7.15.4" 95852 + sources."@babel/highlight-7.14.5" 95853 + sources."@babel/node-7.15.4" 95854 + sources."@babel/parser-7.15.5" 95855 + sources."@babel/plugin-syntax-jsx-7.14.5" 95856 + sources."@babel/plugin-transform-react-jsx-7.14.9" 95857 + sources."@babel/register-7.15.3" 95858 + sources."@babel/template-7.15.4" 95859 + sources."@babel/traverse-7.15.4" 95860 + sources."@babel/types-7.15.4" 95861 + sources."@tootallnate/once-1.1.2" 95862 + sources."@xmpp/base64-0.12.1" 95863 + sources."@xmpp/client-0.12.1" 95864 + sources."@xmpp/client-core-0.12.1" 95865 + sources."@xmpp/connection-0.12.1" 95866 + sources."@xmpp/connection-tcp-0.12.1" 95867 + sources."@xmpp/debug-0.12.1" 95868 + sources."@xmpp/error-0.12.1" 95869 + sources."@xmpp/events-0.12.1" 95870 + sources."@xmpp/id-0.12.1" 95871 + sources."@xmpp/iq-0.12.1" 95872 + sources."@xmpp/jid-0.12.1" 95873 + sources."@xmpp/middleware-0.12.1" 95874 + sources."@xmpp/reconnect-0.12.1" 95875 + sources."@xmpp/resolve-0.12.1" 95876 + sources."@xmpp/resource-binding-0.12.1" 95877 + sources."@xmpp/sasl-0.12.1" 95878 + sources."@xmpp/sasl-anonymous-0.12.1" 95879 + sources."@xmpp/sasl-plain-0.12.1" 95880 + sources."@xmpp/sasl-scram-sha-1-0.12.1" 95881 + sources."@xmpp/session-establishment-0.12.1" 95882 + sources."@xmpp/starttls-0.12.1" 95883 + sources."@xmpp/stream-features-0.12.1" 95884 + sources."@xmpp/stream-management-0.12.1" 95885 + sources."@xmpp/tcp-0.12.1" 95886 + sources."@xmpp/tls-0.12.1" 95887 + sources."@xmpp/websocket-0.12.1" 95888 + sources."@xmpp/xml-0.12.1" 95889 + sources."abab-2.0.5" 95890 + sources."accepts-1.3.7" 95891 + sources."acorn-8.5.0" 95892 + (sources."acorn-globals-6.0.0" // { 95699 95893 dependencies = [ 95700 - sources."inherits-2.0.1" 95701 - sources."util-0.10.3" 95894 + sources."acorn-7.4.1" 95702 95895 ]; 95703 95896 }) 95704 - sources."available-typed-arrays-1.0.4" 95897 + sources."acorn-walk-7.2.0" 95898 + sources."agent-base-6.0.2" 95899 + sources."ansi-colors-4.1.1" 95900 + sources."ansi-regex-5.0.0" 95901 + sources."ansi-styles-3.2.1" 95902 + sources."array-flatten-1.1.1" 95903 + sources."asn1.js-5.4.1" 95904 + sources."asynckit-0.4.0" 95905 + sources."babel-plugin-jsx-pragmatic-1.0.2" 95906 + sources."babel-plugin-syntax-jsx-6.18.0" 95705 95907 sources."balanced-match-1.0.2" 95706 - sources."base64-js-1.5.1" 95908 + sources."base-64-1.0.0" 95707 95909 sources."bent-7.3.12" 95708 - sources."bn.js-5.2.0" 95709 - sources."brace-expansion-1.1.11" 95710 - sources."brorand-1.1.0" 95711 - sources."browser-pack-6.1.0" 95712 - sources."browser-resolve-2.0.0" 95713 - sources."browserify-17.0.0" 95714 - sources."browserify-aes-1.2.0" 95715 - sources."browserify-cipher-1.0.1" 95716 - sources."browserify-des-1.0.2" 95717 - sources."browserify-rsa-4.1.0" 95718 - (sources."browserify-sign-4.2.1" // { 95910 + sources."bitwise-xor-0.0.0" 95911 + sources."bn.js-4.12.0" 95912 + (sources."body-parser-1.19.0" // { 95719 95913 dependencies = [ 95720 - sources."readable-stream-3.6.0" 95914 + sources."debug-2.6.9" 95915 + sources."ms-2.0.0" 95721 95916 ]; 95722 95917 }) 95723 - sources."browserify-zlib-0.2.0" 95724 - sources."buffer-5.2.1" 95918 + sources."brace-expansion-1.1.11" 95919 + sources."browser-or-node-1.3.0" 95920 + sources."browser-process-hrtime-1.0.0" 95921 + sources."browserslist-4.17.0" 95725 95922 sources."buffer-from-1.1.2" 95726 - sources."buffer-xor-1.0.3" 95727 - sources."builtin-status-codes-3.0.0" 95923 + sources."bytes-3.1.0" 95728 95924 sources."bytesish-0.4.4" 95729 - sources."cached-path-relative-1.0.2" 95730 95925 sources."call-bind-1.0.2" 95926 + sources."caniuse-lite-1.0.30001255" 95731 95927 sources."caseless-0.12.0" 95928 + sources."chalk-2.4.2" 95929 + sources."chardet-1.3.0" 95732 95930 sources."cipher-base-1.0.4" 95733 95931 sources."cliui-7.0.4" 95734 - sources."color-convert-2.0.1" 95735 - sources."color-name-1.1.4" 95736 - sources."combine-source-map-0.8.0" 95932 + sources."clone-deep-4.0.1" 95933 + sources."color-convert-1.9.3" 95934 + sources."color-name-1.1.3" 95935 + sources."colorette-1.4.0" 95936 + sources."combined-stream-1.0.8" 95937 + sources."commander-4.1.1" 95938 + sources."commondir-1.0.1" 95737 95939 sources."concat-map-0.0.1" 95738 - sources."concat-stream-1.6.2" 95739 - sources."console-browserify-1.2.0" 95740 - sources."constants-browserify-1.0.0" 95741 - sources."convert-source-map-1.1.3" 95742 - sources."core-util-is-1.0.2" 95743 - (sources."create-ecdh-4.0.4" // { 95940 + sources."content-disposition-0.5.3" 95941 + sources."content-type-1.0.4" 95942 + sources."convert-source-map-1.8.0" 95943 + sources."cookie-0.4.0" 95944 + sources."cookie-signature-1.0.6" 95945 + sources."core-js-3.17.2" 95946 + sources."cors-2.8.5" 95947 + sources."create-hash-1.2.0" 95948 + sources."create-hmac-1.1.7" 95949 + sources."cssom-0.4.4" 95950 + (sources."cssstyle-2.3.0" // { 95744 95951 dependencies = [ 95745 - sources."bn.js-4.12.0" 95952 + sources."cssom-0.3.8" 95746 95953 ]; 95747 95954 }) 95748 - sources."create-hash-1.2.0" 95749 - sources."create-hmac-1.1.7" 95750 - sources."crypto-browserify-3.12.0" 95751 - sources."dash-ast-1.0.0" 95955 + sources."data-urls-2.0.0" 95956 + sources."debug-4.3.2" 95957 + sources."decimal.js-10.3.1" 95752 95958 sources."decode-uri-component-0.2.0" 95959 + sources."deep-is-0.1.4" 95753 95960 sources."define-properties-1.1.3" 95754 - sources."defined-1.0.0" 95755 - sources."deps-sort-2.0.1" 95756 - sources."des.js-1.0.1" 95757 - sources."detective-5.2.0" 95758 - (sources."diffie-hellman-5.0.3" // { 95961 + sources."delayed-stream-1.0.0" 95962 + sources."depd-1.1.2" 95963 + sources."destroy-1.0.4" 95964 + sources."doipjs-0.13.0" 95965 + (sources."domexception-2.0.1" // { 95759 95966 dependencies = [ 95760 - sources."bn.js-4.12.0" 95967 + sources."webidl-conversions-5.0.0" 95761 95968 ]; 95762 95969 }) 95763 - sources."doipjs-0.11.2" 95764 - sources."domain-browser-1.2.0" 95765 - sources."duplexer2-0.1.4" 95766 - (sources."elliptic-6.5.4" // { 95767 - dependencies = [ 95768 - sources."bn.js-4.12.0" 95769 - ]; 95770 - }) 95970 + sources."dotenv-8.6.0" 95971 + sources."ee-first-1.1.1" 95972 + sources."electron-to-chromium-1.3.832" 95771 95973 sources."emoji-regex-8.0.0" 95974 + sources."encodeurl-1.0.2" 95772 95975 sources."enquirer-2.3.6" 95773 - sources."es-abstract-1.18.5" 95976 + sources."es-abstract-1.18.6" 95774 95977 sources."es-to-primitive-1.2.1" 95775 95978 sources."escalade-3.1.1" 95979 + sources."escape-html-1.0.3" 95980 + sources."escape-string-regexp-1.0.5" 95981 + (sources."escodegen-2.0.0" // { 95982 + dependencies = [ 95983 + sources."source-map-0.6.1" 95984 + ]; 95985 + }) 95986 + sources."esprima-4.0.1" 95987 + sources."estraverse-5.2.0" 95988 + sources."esutils-2.0.3" 95989 + sources."etag-1.8.1" 95776 95990 sources."events-3.3.0" 95777 - sources."evp_bytestokey-1.0.3" 95778 - sources."fast-safe-stringify-2.0.8" 95991 + (sources."express-4.17.1" // { 95992 + dependencies = [ 95993 + sources."debug-2.6.9" 95994 + sources."ms-2.0.0" 95995 + ]; 95996 + }) 95997 + sources."express-validator-6.12.1" 95998 + sources."fast-levenshtein-2.0.6" 95779 95999 sources."filter-obj-1.1.0" 95780 - sources."foreach-2.0.5" 96000 + (sources."finalhandler-1.1.2" // { 96001 + dependencies = [ 96002 + sources."debug-2.6.9" 96003 + sources."ms-2.0.0" 96004 + ]; 96005 + }) 96006 + sources."find-cache-dir-2.1.0" 96007 + sources."find-up-3.0.0" 96008 + sources."form-data-3.0.1" 96009 + sources."forwarded-0.2.0" 96010 + sources."fresh-0.5.2" 96011 + sources."fs-readdir-recursive-1.1.0" 95781 96012 sources."fs.realpath-1.0.0" 95782 96013 sources."function-bind-1.1.1" 95783 - sources."get-assigned-identifiers-1.2.0" 96014 + sources."gensync-1.0.0-beta.2" 95784 96015 sources."get-caller-file-2.0.5" 95785 96016 sources."get-intrinsic-1.1.1" 96017 + sources."get-symbol-description-1.0.0" 95786 96018 sources."glob-7.1.7" 96019 + sources."globals-11.12.0" 95787 96020 sources."graceful-fs-4.2.8" 95788 96021 sources."has-1.0.3" 95789 96022 sources."has-bigints-1.0.1" 96023 + sources."has-flag-3.0.0" 95790 96024 sources."has-symbols-1.0.2" 95791 96025 sources."has-tostringtag-1.0.0" 95792 96026 (sources."hash-base-3.1.0" // { 95793 96027 dependencies = [ 95794 - sources."readable-stream-3.6.0" 96028 + sources."safe-buffer-5.2.1" 96029 + ]; 96030 + }) 96031 + sources."homedir-polyfill-1.0.3" 96032 + sources."html-encoding-sniffer-2.0.1" 96033 + (sources."http-errors-1.7.2" // { 96034 + dependencies = [ 96035 + sources."inherits-2.0.3" 95795 96036 ]; 95796 96037 }) 95797 - sources."hash.js-1.1.7" 95798 - sources."hmac-drbg-1.0.1" 95799 - sources."htmlescape-1.1.1" 95800 - sources."https-browserify-1.0.0" 95801 - sources."ieee754-1.2.1" 96038 + sources."http-proxy-agent-4.0.1" 96039 + sources."https-proxy-agent-5.0.0" 96040 + sources."iconv-lite-0.4.24" 95802 96041 sources."imurmurhash-0.1.4" 95803 96042 sources."inflight-1.0.6" 95804 96043 sources."inherits-2.0.4" 95805 - sources."inline-source-map-0.6.2" 95806 - sources."insert-module-globals-7.2.1" 95807 96044 sources."internal-slot-1.0.3" 95808 - sources."is-arguments-1.1.1" 96045 + sources."ipaddr.js-1.9.1" 96046 + sources."irc-colors-1.5.0" 96047 + (sources."irc-upd-0.11.0" // { 96048 + dependencies = [ 96049 + sources."iconv-lite-0.6.3" 96050 + ]; 96051 + }) 95809 96052 sources."is-bigint-1.0.4" 95810 96053 sources."is-boolean-object-1.1.2" 95811 - sources."is-buffer-1.1.6" 95812 96054 sources."is-callable-1.2.4" 95813 - sources."is-core-module-2.6.0" 95814 96055 sources."is-date-object-1.0.5" 95815 96056 sources."is-fullwidth-code-point-3.0.0" 95816 - sources."is-generator-function-1.0.10" 95817 96057 sources."is-negative-zero-2.0.1" 95818 96058 sources."is-number-object-1.0.6" 95819 96059 sources."is-plain-obj-2.1.0" 96060 + sources."is-plain-object-2.0.4" 96061 + sources."is-potential-custom-element-name-1.0.1" 95820 96062 sources."is-regex-1.1.4" 95821 96063 sources."is-stream-2.0.1" 95822 96064 sources."is-string-1.0.7" 95823 96065 sources."is-symbol-1.0.4" 95824 - sources."is-typed-array-1.1.7" 95825 - sources."isarray-1.0.0" 95826 - sources."jsonparse-1.3.1" 95827 - sources."labeled-stream-splicer-2.0.2" 95828 - sources."lodash.memoize-3.0.4" 95829 - sources."md5.js-1.3.5" 95830 - sources."merge-options-3.0.4" 95831 - (sources."miller-rabin-4.0.1" // { 96066 + sources."isobject-3.0.1" 96067 + sources."js-tokens-4.0.0" 96068 + (sources."jsdom-16.7.0" // { 95832 96069 dependencies = [ 95833 - sources."bn.js-4.12.0" 96070 + sources."ws-7.5.4" 95834 96071 ]; 95835 96072 }) 96073 + sources."jsesc-2.5.2" 96074 + sources."json5-2.2.0" 96075 + sources."kind-of-6.0.3" 96076 + sources."koa-compose-4.2.0" 96077 + sources."levn-0.3.0" 96078 + sources."locate-path-3.0.0" 96079 + sources."lodash-4.17.21" 96080 + sources."ltx-2.10.0" 96081 + sources."make-dir-2.1.0" 96082 + sources."md5.js-1.3.5" 96083 + sources."media-typer-0.3.0" 96084 + sources."merge-descriptors-1.0.1" 96085 + sources."merge-options-3.0.4" 96086 + sources."methods-1.1.2" 96087 + sources."mime-1.6.0" 96088 + sources."mime-db-1.49.0" 96089 + sources."mime-types-2.1.32" 95836 96090 sources."minimalistic-assert-1.0.1" 95837 - sources."minimalistic-crypto-utils-1.0.1" 95838 96091 sources."minimatch-3.0.4" 95839 96092 sources."minimist-1.2.5" 95840 - sources."mkdirp-classic-0.5.3" 95841 - sources."module-deps-6.2.3" 95842 - sources."node-fetch-2.6.1" 96093 + sources."ms-2.1.2" 96094 + sources."negotiator-0.6.2" 96095 + sources."node-environment-flags-1.0.6" 96096 + sources."node-fetch-2.6.2" 95843 96097 sources."node-localstorage-1.3.1" 96098 + sources."node-modules-regexp-1.0.0" 96099 + sources."node-releases-1.1.75" 96100 + sources."nwsapi-2.2.0" 95844 96101 sources."object-assign-4.1.1" 95845 96102 sources."object-inspect-1.11.0" 95846 96103 sources."object-keys-1.1.1" 95847 96104 sources."object.assign-4.1.2" 96105 + sources."object.getownpropertydescriptors-2.1.2" 96106 + sources."on-finished-2.3.0" 95848 96107 sources."once-1.4.0" 95849 96108 sources."openpgp-4.10.10" 95850 - sources."os-browserify-0.3.0" 95851 - sources."pako-1.0.11" 95852 - sources."parents-1.0.1" 95853 - sources."parse-asn1-5.1.6" 95854 - sources."path-browserify-1.0.1" 96109 + sources."optionator-0.8.3" 96110 + sources."p-limit-2.3.0" 96111 + sources."p-locate-3.0.0" 96112 + sources."p-try-2.2.0" 96113 + sources."parse-passwd-1.0.0" 96114 + sources."parse5-6.0.1" 96115 + sources."parseurl-1.3.3" 96116 + sources."path-exists-3.0.0" 95855 96117 sources."path-is-absolute-1.0.1" 95856 - sources."path-parse-1.0.7" 95857 - sources."path-platform-0.11.15" 95858 - sources."pbkdf2-3.1.2" 95859 - sources."prettier-2.3.2" 95860 - sources."process-0.11.10" 95861 - sources."process-nextick-args-2.0.1" 95862 - (sources."public-encrypt-4.0.3" // { 95863 - dependencies = [ 95864 - sources."bn.js-4.12.0" 95865 - ]; 95866 - }) 95867 - sources."punycode-1.4.1" 96118 + sources."path-to-regexp-0.1.7" 96119 + sources."pify-4.0.1" 96120 + sources."pirates-4.0.1" 96121 + sources."pkg-dir-3.0.0" 96122 + sources."prelude-ls-1.1.2" 96123 + sources."proxy-addr-2.0.7" 96124 + sources."psl-1.8.0" 96125 + sources."punycode-2.1.1" 96126 + sources."qs-6.7.0" 95868 96127 sources."query-string-6.14.1" 95869 - sources."querystring-0.2.0" 95870 - sources."querystring-es3-0.2.1" 95871 96128 sources."randombytes-2.1.0" 95872 - sources."randomfill-1.0.4" 95873 - sources."read-only-stream-2.0.0" 95874 - (sources."readable-stream-2.3.7" // { 95875 - dependencies = [ 95876 - sources."safe-buffer-5.1.2" 95877 - sources."string_decoder-1.1.1" 95878 - ]; 95879 - }) 96129 + sources."range-parser-1.2.1" 96130 + sources."raw-body-2.4.0" 96131 + sources."readable-stream-3.6.0" 96132 + sources."regenerator-runtime-0.13.9" 95880 96133 sources."require-directory-2.1.1" 95881 - sources."resolve-1.20.0" 95882 96134 sources."ripemd160-2.0.2" 95883 - sources."safe-buffer-5.2.1" 96135 + sources."safe-buffer-5.1.2" 95884 96136 sources."safer-buffer-2.1.2" 96137 + sources."sasl-anonymous-0.1.0" 96138 + sources."sasl-plain-0.1.0" 96139 + sources."sasl-scram-sha-1-1.2.1" 96140 + sources."saslmechanisms-0.1.1" 96141 + sources."saxes-5.0.1" 96142 + sources."semver-5.7.1" 96143 + (sources."send-0.17.1" // { 96144 + dependencies = [ 96145 + (sources."debug-2.6.9" // { 96146 + dependencies = [ 96147 + sources."ms-2.0.0" 96148 + ]; 96149 + }) 96150 + sources."ms-2.1.1" 96151 + ]; 96152 + }) 96153 + sources."serve-static-1.14.1" 96154 + sources."setprototypeof-1.1.1" 95885 96155 sources."sha.js-2.4.11" 95886 - sources."shasum-object-1.0.0" 95887 - sources."shell-quote-1.7.2" 96156 + sources."shallow-clone-3.0.1" 95888 96157 sources."side-channel-1.0.4" 95889 - sources."simple-concat-1.0.1" 96158 + sources."slash-2.0.0" 95890 96159 sources."slide-1.1.6" 95891 96160 sources."source-map-0.5.7" 95892 - sources."split-on-first-1.1.0" 95893 - (sources."stream-browserify-3.0.0" // { 95894 - dependencies = [ 95895 - sources."readable-stream-3.6.0" 95896 - ]; 95897 - }) 95898 - sources."stream-combiner2-1.1.1" 95899 - (sources."stream-http-3.2.0" // { 96161 + (sources."source-map-support-0.5.19" // { 95900 96162 dependencies = [ 95901 - sources."readable-stream-3.6.0" 96163 + sources."source-map-0.6.1" 95902 96164 ]; 95903 96165 }) 95904 - sources."stream-splicer-2.0.1" 96166 + sources."split-on-first-1.1.0" 96167 + sources."statuses-1.5.0" 95905 96168 sources."strict-uri-encode-2.0.0" 95906 96169 sources."string-width-4.2.2" 95907 96170 sources."string.prototype.trimend-1.0.4" 95908 96171 sources."string.prototype.trimstart-1.0.4" 95909 - sources."string_decoder-1.3.0" 95910 - sources."strip-ansi-6.0.0" 95911 - sources."subarg-1.0.0" 95912 - sources."syntax-error-1.4.0" 95913 - sources."through-2.3.8" 95914 - sources."through2-2.0.5" 95915 - sources."timers-browserify-1.4.2" 95916 - sources."tty-browserify-0.0.1" 95917 - sources."typedarray-0.0.6" 95918 - sources."umd-3.0.3" 95919 - sources."unbox-primitive-1.0.1" 95920 - sources."undeclared-identifiers-1.1.3" 95921 - (sources."url-0.11.0" // { 96172 + (sources."string_decoder-1.3.0" // { 95922 96173 dependencies = [ 95923 - sources."punycode-1.3.2" 96174 + sources."safe-buffer-5.2.1" 95924 96175 ]; 95925 96176 }) 95926 - sources."util-0.12.4" 96177 + sources."strip-ansi-6.0.0" 96178 + sources."supports-color-5.5.0" 96179 + sources."symbol-tree-3.2.4" 96180 + sources."to-fast-properties-2.0.0" 96181 + sources."toidentifier-1.0.0" 96182 + sources."tough-cookie-4.0.0" 96183 + sources."tr46-2.1.0" 96184 + sources."type-check-0.3.2" 96185 + sources."type-is-1.6.18" 96186 + sources."unbox-primitive-1.0.1" 96187 + sources."universalify-0.1.2" 96188 + sources."unpipe-1.0.0" 95927 96189 sources."util-deprecate-1.0.2" 96190 + sources."utils-merge-1.0.1" 96191 + sources."v8flags-3.2.0" 95928 96192 sources."valid-url-1.0.9" 95929 - sources."vm-browserify-1.1.2" 96193 + sources."validator-13.6.0" 96194 + sources."vary-1.1.2" 96195 + sources."w3c-hr-time-1.0.2" 96196 + sources."w3c-xmlserializer-2.0.0" 96197 + sources."webidl-conversions-6.1.0" 96198 + sources."whatwg-encoding-1.0.5" 96199 + sources."whatwg-mimetype-2.3.0" 96200 + sources."whatwg-url-8.7.0" 95930 96201 sources."which-boxed-primitive-1.0.2" 95931 - sources."which-typed-array-1.1.6" 95932 - sources."wrap-ansi-7.0.0" 96202 + sources."word-wrap-1.2.3" 96203 + (sources."wrap-ansi-7.0.0" // { 96204 + dependencies = [ 96205 + sources."ansi-styles-4.3.0" 96206 + sources."color-convert-2.0.1" 96207 + sources."color-name-1.1.4" 96208 + ]; 96209 + }) 95933 96210 sources."wrappy-1.0.2" 95934 96211 sources."write-file-atomic-1.3.4" 95935 - sources."xtend-4.0.2" 96212 + sources."ws-8.2.1" 96213 + sources."xml-name-validator-3.0.0" 96214 + sources."xmlchars-2.2.0" 95936 96215 sources."y18n-5.0.8" 95937 96216 sources."yargs-16.2.0" 95938 96217 sources."yargs-parser-20.2.9" ··· 95967 96246 sources."cloneable-readable-1.1.3" 95968 96247 sources."concat-map-0.0.1" 95969 96248 sources."convert-source-map-1.8.0" 95970 - sources."core-util-is-1.0.2" 96249 + sources."core-util-is-1.0.3" 95971 96250 sources."define-properties-1.1.3" 95972 96251 sources."duplexify-3.7.1" 95973 96252 sources."end-of-stream-1.4.4" ··· 96083 96362 sources."colors-1.4.0" 96084 96363 sources."combined-stream-1.0.8" 96085 96364 sources."concat-map-0.0.1" 96086 - sources."core-util-is-1.0.2" 96365 + sources."core-util-is-1.0.3" 96087 96366 sources."cross-spawn-6.0.5" 96088 96367 sources."css-select-1.2.0" 96089 96368 sources."css-what-2.1.3" ··· 96093 96372 sources."dashdash-1.14.1" 96094 96373 sources."decamelize-1.2.0" 96095 96374 sources."deep-equal-0.2.2" 96096 - sources."deep-is-0.1.3" 96375 + sources."deep-is-0.1.4" 96097 96376 sources."defaults-1.0.3" 96098 96377 sources."delayed-stream-1.0.0" 96099 96378 sources."dom-serializer-0.1.1" ··· 96253 96532 ]; 96254 96533 }) 96255 96534 sources."uuid-3.4.0" 96256 - sources."verror-1.10.0" 96535 + (sources."verror-1.10.0" // { 96536 + dependencies = [ 96537 + sources."core-util-is-1.0.2" 96538 + ]; 96539 + }) 96257 96540 sources."wcwidth-1.0.1" 96258 96541 sources."webidl-conversions-2.0.1" 96259 96542 sources."whatwg-url-compat-0.6.5" ··· 96340 96623 sources."colors-1.4.0" 96341 96624 sources."combined-stream-1.0.8" 96342 96625 sources."concat-map-0.0.1" 96343 - sources."core-util-is-1.0.2" 96626 + sources."core-util-is-1.0.3" 96344 96627 sources."css-select-1.2.0" 96345 96628 sources."css-what-2.1.3" 96346 96629 sources."cssom-0.3.8" ··· 96349 96632 sources."dashdash-1.14.1" 96350 96633 sources."decamelize-1.2.0" 96351 96634 sources."deep-equal-0.2.2" 96352 - sources."deep-is-0.1.3" 96635 + sources."deep-is-0.1.4" 96353 96636 sources."defaults-1.0.3" 96354 96637 sources."delayed-stream-1.0.0" 96355 96638 sources."dom-serializer-0.1.1" ··· 96489 96772 ]; 96490 96773 }) 96491 96774 sources."uuid-3.4.0" 96492 - sources."verror-1.10.0" 96775 + (sources."verror-1.10.0" // { 96776 + dependencies = [ 96777 + sources."core-util-is-1.0.2" 96778 + ]; 96779 + }) 96493 96780 sources."wcwidth-1.0.1" 96494 96781 sources."webidl-conversions-2.0.1" 96495 96782 sources."whatwg-url-compat-0.6.5" ··· 96673 96960 sources."is-plain-object-5.0.0" 96674 96961 ]; 96675 96962 }) 96676 - sources."@octokit/graphql-4.6.4" 96677 - sources."@octokit/openapi-types-9.7.0" 96963 + sources."@octokit/graphql-4.8.0" 96964 + sources."@octokit/openapi-types-10.1.1" 96678 96965 sources."@octokit/plugin-enterprise-rest-6.0.1" 96679 - sources."@octokit/plugin-paginate-rest-2.15.1" 96966 + sources."@octokit/plugin-paginate-rest-2.16.0" 96680 96967 sources."@octokit/plugin-request-log-1.0.4" 96681 - sources."@octokit/plugin-rest-endpoint-methods-5.8.0" 96968 + sources."@octokit/plugin-rest-endpoint-methods-5.10.0" 96682 96969 (sources."@octokit/request-5.6.1" // { 96683 96970 dependencies = [ 96684 96971 sources."is-plain-object-5.0.0" 96685 96972 ]; 96686 96973 }) 96687 96974 sources."@octokit/request-error-2.1.0" 96688 - sources."@octokit/rest-18.9.1" 96689 - sources."@octokit/types-6.25.0" 96975 + sources."@octokit/rest-18.10.0" 96976 + sources."@octokit/types-6.27.0" 96690 96977 sources."@tootallnate/once-1.1.2" 96691 96978 sources."@types/minimatch-3.0.5" 96692 96979 sources."@types/minimist-1.2.2" ··· 96707 96994 sources."ansi-regex-2.1.1" 96708 96995 sources."ansi-styles-4.3.0" 96709 96996 sources."aproba-2.0.0" 96710 - (sources."are-we-there-yet-1.1.5" // { 96997 + (sources."are-we-there-yet-1.1.7" // { 96711 96998 dependencies = [ 96712 96999 sources."readable-stream-2.3.7" 96713 97000 sources."safe-buffer-5.1.2" ··· 96819 97106 sources."envinfo-7.8.1" 96820 97107 sources."err-code-2.0.3" 96821 97108 sources."error-ex-1.3.2" 96822 - sources."es-abstract-1.18.5" 97109 + sources."es-abstract-1.18.6" 96823 97110 sources."es-to-primitive-1.2.1" 96824 97111 sources."escalade-3.1.1" 96825 97112 sources."escape-string-regexp-1.0.5" ··· 96855 97142 }) 96856 97143 sources."get-caller-file-2.0.5" 96857 97144 sources."get-intrinsic-1.1.1" 96858 - (sources."get-pkg-repo-4.1.2" // { 97145 + (sources."get-pkg-repo-4.2.0" // { 96859 97146 dependencies = [ 96860 - sources."meow-7.1.1" 96861 - (sources."read-pkg-5.2.0" // { 96862 - dependencies = [ 96863 - sources."type-fest-0.6.0" 96864 - ]; 96865 - }) 96866 - (sources."read-pkg-up-7.0.1" // { 96867 - dependencies = [ 96868 - sources."type-fest-0.8.1" 96869 - ]; 96870 - }) 96871 97147 sources."readable-stream-2.3.7" 96872 97148 sources."safe-buffer-5.1.2" 96873 97149 sources."string_decoder-1.1.1" 96874 97150 sources."through2-2.0.5" 96875 - sources."type-fest-0.13.1" 96876 - sources."yargs-parser-18.1.3" 97151 + sources."yargs-17.1.1" 96877 97152 ]; 96878 97153 }) 96879 97154 sources."get-port-5.1.1" 96880 97155 sources."get-stream-6.0.1" 97156 + sources."get-symbol-description-1.0.0" 96881 97157 sources."getpass-0.1.7" 96882 97158 sources."git-raw-commits-2.0.10" 96883 97159 (sources."git-remote-origin-url-2.0.0" // { ··· 96891 97167 ]; 96892 97168 }) 96893 97169 sources."git-up-4.0.5" 96894 - sources."git-url-parse-11.5.0" 97170 + sources."git-url-parse-11.6.0" 96895 97171 sources."gitconfiglocal-1.0.0" 96896 97172 sources."glob-7.1.7" 96897 97173 sources."glob-parent-5.1.2" ··· 96932 97208 (sources."init-package-json-2.0.4" // { 96933 97209 dependencies = [ 96934 97210 sources."normalize-package-data-3.0.3" 96935 - sources."read-package-json-4.0.1" 97211 + sources."read-package-json-4.1.1" 96936 97212 ]; 96937 97213 }) 96938 97214 (sources."inquirer-7.3.3" // { ··· 97043 97319 }) 97044 97320 sources."minipass-3.1.3" 97045 97321 sources."minipass-collect-1.0.2" 97046 - sources."minipass-fetch-1.3.4" 97322 + sources."minipass-fetch-1.4.1" 97047 97323 sources."minipass-flush-1.0.5" 97048 97324 sources."minipass-json-stream-1.0.1" 97049 97325 sources."minipass-pipeline-1.2.4" ··· 97057 97333 sources."mute-stream-0.0.8" 97058 97334 sources."negotiator-0.6.2" 97059 97335 sources."neo-async-2.6.2" 97060 - sources."node-fetch-2.6.1" 97336 + sources."node-fetch-2.6.2" 97061 97337 sources."node-gyp-7.1.2" 97062 97338 sources."nopt-5.0.0" 97063 97339 (sources."normalize-package-data-2.5.0" // { ··· 97250 97526 sources."type-fest-0.4.1" 97251 97527 sources."typedarray-0.0.6" 97252 97528 sources."typedarray-to-buffer-3.1.5" 97253 - sources."uglify-js-3.14.1" 97529 + sources."uglify-js-3.14.2" 97254 97530 sources."uid-number-0.0.6" 97255 97531 sources."umask-1.1.0" 97256 97532 sources."unbox-primitive-1.0.1" ··· 97339 97615 sources."make-dir-2.1.0" 97340 97616 sources."mime-1.6.0" 97341 97617 sources."ms-2.1.3" 97342 - sources."needle-2.9.0" 97618 + sources."needle-2.9.1" 97343 97619 sources."parse-node-version-1.0.1" 97344 97620 sources."pify-4.0.1" 97345 97621 sources."prr-1.0.1" ··· 97447 97723 sources."component-emitter-1.3.0" 97448 97724 sources."connect-3.7.0" 97449 97725 sources."copy-descriptor-0.1.1" 97450 - sources."core-util-is-1.0.2" 97726 + sources."core-util-is-1.0.3" 97451 97727 sources."cors-2.8.5" 97452 97728 sources."debug-2.6.9" 97453 97729 sources."decode-uri-component-0.2.0" ··· 97793 98069 sources."cookie-0.4.0" 97794 98070 sources."cookie-signature-1.0.6" 97795 98071 sources."copy-descriptor-0.1.1" 97796 - sources."core-util-is-1.0.2" 98072 + sources."core-util-is-1.0.3" 97797 98073 sources."dashdash-1.14.1" 97798 98074 sources."debug-2.6.9" 97799 98075 sources."decode-uri-component-0.2.0" ··· 98195 98471 sources."utils-merge-1.0.1" 98196 98472 sources."uuid-3.4.0" 98197 98473 sources."vary-1.1.2" 98198 - sources."verror-1.10.0" 98474 + (sources."verror-1.10.0" // { 98475 + dependencies = [ 98476 + sources."core-util-is-1.0.2" 98477 + ]; 98478 + }) 98199 98479 sources."ws-7.4.6" 98200 98480 sources."xmlhttprequest-ssl-1.6.3" 98201 98481 sources."yeast-0.1.2" ··· 98236 98516 dependencies = [ 98237 98517 sources."@babel/code-frame-7.14.5" 98238 98518 sources."@babel/compat-data-7.15.0" 98239 - sources."@babel/core-7.15.0" 98240 - sources."@babel/generator-7.15.0" 98241 - sources."@babel/helper-annotate-as-pure-7.14.5" 98242 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 98243 - sources."@babel/helper-compilation-targets-7.15.0" 98244 - sources."@babel/helper-create-class-features-plugin-7.15.0" 98519 + sources."@babel/core-7.15.5" 98520 + sources."@babel/generator-7.15.4" 98521 + sources."@babel/helper-annotate-as-pure-7.15.4" 98522 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 98523 + sources."@babel/helper-compilation-targets-7.15.4" 98524 + sources."@babel/helper-create-class-features-plugin-7.15.4" 98245 98525 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 98246 98526 sources."@babel/helper-define-polyfill-provider-0.2.3" 98247 - sources."@babel/helper-explode-assignable-expression-7.14.5" 98248 - sources."@babel/helper-function-name-7.14.5" 98249 - sources."@babel/helper-get-function-arity-7.14.5" 98250 - sources."@babel/helper-hoist-variables-7.14.5" 98251 - sources."@babel/helper-member-expression-to-functions-7.15.0" 98252 - sources."@babel/helper-module-imports-7.14.5" 98253 - sources."@babel/helper-module-transforms-7.15.0" 98254 - sources."@babel/helper-optimise-call-expression-7.14.5" 98527 + sources."@babel/helper-explode-assignable-expression-7.15.4" 98528 + sources."@babel/helper-function-name-7.15.4" 98529 + sources."@babel/helper-get-function-arity-7.15.4" 98530 + sources."@babel/helper-hoist-variables-7.15.4" 98531 + sources."@babel/helper-member-expression-to-functions-7.15.4" 98532 + sources."@babel/helper-module-imports-7.15.4" 98533 + sources."@babel/helper-module-transforms-7.15.4" 98534 + sources."@babel/helper-optimise-call-expression-7.15.4" 98255 98535 sources."@babel/helper-plugin-utils-7.14.5" 98256 - sources."@babel/helper-remap-async-to-generator-7.14.5" 98257 - sources."@babel/helper-replace-supers-7.15.0" 98258 - sources."@babel/helper-simple-access-7.14.8" 98259 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 98260 - sources."@babel/helper-split-export-declaration-7.14.5" 98536 + sources."@babel/helper-remap-async-to-generator-7.15.4" 98537 + sources."@babel/helper-replace-supers-7.15.4" 98538 + sources."@babel/helper-simple-access-7.15.4" 98539 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 98540 + sources."@babel/helper-split-export-declaration-7.15.4" 98261 98541 sources."@babel/helper-validator-identifier-7.14.9" 98262 98542 sources."@babel/helper-validator-option-7.14.5" 98263 - sources."@babel/helper-wrap-function-7.14.5" 98264 - sources."@babel/helpers-7.15.3" 98543 + sources."@babel/helper-wrap-function-7.15.4" 98544 + sources."@babel/helpers-7.15.4" 98265 98545 (sources."@babel/highlight-7.14.5" // { 98266 98546 dependencies = [ 98267 98547 sources."chalk-2.4.2" 98268 98548 ]; 98269 98549 }) 98270 - sources."@babel/parser-7.15.3" 98271 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 98550 + sources."@babel/parser-7.15.5" 98551 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 98272 98552 sources."@babel/plugin-external-helpers-7.8.3" 98273 - sources."@babel/plugin-proposal-async-generator-functions-7.14.9" 98553 + sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 98274 98554 sources."@babel/plugin-proposal-class-properties-7.14.5" 98275 - sources."@babel/plugin-proposal-class-static-block-7.14.5" 98555 + sources."@babel/plugin-proposal-class-static-block-7.15.4" 98276 98556 sources."@babel/plugin-proposal-dynamic-import-7.14.5" 98277 98557 sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 98278 98558 sources."@babel/plugin-proposal-json-strings-7.14.5" ··· 98283 98563 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 98284 98564 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 98285 98565 sources."@babel/plugin-proposal-private-methods-7.14.5" 98286 - sources."@babel/plugin-proposal-private-property-in-object-7.14.5" 98566 + sources."@babel/plugin-proposal-private-property-in-object-7.15.4" 98287 98567 sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 98288 98568 sources."@babel/plugin-syntax-async-generators-7.8.4" 98289 98569 sources."@babel/plugin-syntax-bigint-7.8.3" ··· 98305 98585 sources."@babel/plugin-transform-async-to-generator-7.14.5" 98306 98586 sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 98307 98587 sources."@babel/plugin-transform-block-scoping-7.15.3" 98308 - sources."@babel/plugin-transform-classes-7.14.9" 98588 + sources."@babel/plugin-transform-classes-7.15.4" 98309 98589 sources."@babel/plugin-transform-computed-properties-7.14.5" 98310 98590 sources."@babel/plugin-transform-destructuring-7.14.7" 98311 98591 sources."@babel/plugin-transform-dotall-regex-7.14.5" 98312 98592 sources."@babel/plugin-transform-duplicate-keys-7.14.5" 98313 98593 sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 98314 - sources."@babel/plugin-transform-for-of-7.14.5" 98594 + sources."@babel/plugin-transform-for-of-7.15.4" 98315 98595 sources."@babel/plugin-transform-function-name-7.14.5" 98316 98596 sources."@babel/plugin-transform-literals-7.14.5" 98317 98597 sources."@babel/plugin-transform-member-expression-literals-7.14.5" 98318 98598 sources."@babel/plugin-transform-modules-amd-7.14.5" 98319 - sources."@babel/plugin-transform-modules-commonjs-7.15.0" 98320 - sources."@babel/plugin-transform-modules-systemjs-7.14.5" 98599 + sources."@babel/plugin-transform-modules-commonjs-7.15.4" 98600 + sources."@babel/plugin-transform-modules-systemjs-7.15.4" 98321 98601 sources."@babel/plugin-transform-modules-umd-7.14.5" 98322 98602 sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 98323 98603 sources."@babel/plugin-transform-new-target-7.14.5" 98324 98604 sources."@babel/plugin-transform-object-super-7.14.5" 98325 - sources."@babel/plugin-transform-parameters-7.14.5" 98605 + sources."@babel/plugin-transform-parameters-7.15.4" 98326 98606 sources."@babel/plugin-transform-property-literals-7.14.5" 98327 98607 sources."@babel/plugin-transform-regenerator-7.14.5" 98328 98608 sources."@babel/plugin-transform-reserved-words-7.14.5" ··· 98334 98614 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 98335 98615 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 98336 98616 sources."@babel/plugin-transform-unicode-regex-7.14.5" 98337 - sources."@babel/preset-env-7.15.0" 98617 + sources."@babel/preset-env-7.15.4" 98338 98618 sources."@babel/preset-modules-0.1.4" 98339 98619 sources."@babel/preset-stage-2-7.8.3" 98340 - sources."@babel/runtime-7.15.3" 98341 - sources."@babel/template-7.14.5" 98342 - sources."@babel/traverse-7.15.0" 98343 - sources."@babel/types-7.15.0" 98620 + sources."@babel/runtime-7.15.4" 98621 + sources."@babel/template-7.15.4" 98622 + sources."@babel/traverse-7.15.4" 98623 + sources."@babel/types-7.15.4" 98344 98624 sources."@cnakazawa/watch-1.0.4" 98345 98625 sources."@comandeer/babel-plugin-banner-5.0.0" 98346 98626 sources."@istanbuljs/load-nyc-config-1.1.0" ··· 98351 98631 ]; 98352 98632 }) 98353 98633 sources."@jest/types-25.5.0" 98354 - sources."@types/babel__core-7.1.15" 98634 + sources."@types/babel__core-7.1.16" 98355 98635 sources."@types/babel__generator-7.6.3" 98356 98636 sources."@types/babel__template-7.4.1" 98357 98637 sources."@types/babel__traverse-7.14.2" ··· 98361 98641 sources."@types/istanbul-lib-report-3.0.0" 98362 98642 sources."@types/istanbul-reports-1.1.2" 98363 98643 sources."@types/json-schema-7.0.9" 98364 - sources."@types/node-16.7.2" 98644 + sources."@types/node-16.7.13" 98365 98645 sources."@types/normalize-package-data-2.4.1" 98366 98646 sources."@types/resolve-0.0.8" 98367 98647 sources."@types/yargs-15.0.14" ··· 98518 98798 ]; 98519 98799 }) 98520 98800 sources."browserify-zlib-0.2.0" 98521 - sources."browserslist-4.16.8" 98801 + sources."browserslist-4.17.0" 98522 98802 sources."bser-2.1.1" 98523 98803 sources."buffer-5.2.1" 98524 98804 sources."buffer-from-1.1.2" ··· 98534 98814 sources."cached-path-relative-1.0.2" 98535 98815 sources."call-bind-1.0.2" 98536 98816 sources."camelcase-5.3.1" 98537 - sources."caniuse-lite-1.0.30001252" 98817 + sources."caniuse-lite-1.0.30001255" 98538 98818 sources."capture-exit-2.0.0" 98539 98819 sources."caseless-0.12.0" 98540 98820 (sources."chalk-3.0.0" // { ··· 98583 98863 sources."collection-visit-1.0.0" 98584 98864 sources."color-convert-1.9.3" 98585 98865 sources."color-name-1.1.3" 98586 - sources."colorette-1.3.0" 98866 + sources."colorette-1.4.0" 98587 98867 sources."colors-1.4.0" 98588 98868 (sources."combine-source-map-0.8.0" // { 98589 98869 dependencies = [ ··· 98606 98886 }) 98607 98887 sources."copy-descriptor-0.1.1" 98608 98888 sources."core-js-2.6.12" 98609 - (sources."core-js-compat-3.16.3" // { 98889 + (sources."core-js-compat-3.17.2" // { 98610 98890 dependencies = [ 98611 98891 sources."semver-7.0.0" 98612 98892 ]; 98613 98893 }) 98614 - sources."core-util-is-1.0.2" 98894 + sources."core-util-is-1.0.3" 98615 98895 (sources."create-ecdh-4.0.4" // { 98616 98896 dependencies = [ 98617 98897 sources."bn.js-4.12.0" ··· 98658 98938 sources."duplexer2-0.1.4" 98659 98939 sources."duplexify-3.7.1" 98660 98940 sources."ecc-jsbn-0.1.2" 98661 - sources."electron-to-chromium-1.3.818" 98941 + sources."electron-to-chromium-1.3.832" 98662 98942 (sources."elliptic-6.5.4" // { 98663 98943 dependencies = [ 98664 98944 sources."bn.js-4.12.0" ··· 98727 99007 sources."extsprintf-1.3.0" 98728 99008 sources."fast-deep-equal-3.1.3" 98729 99009 sources."fast-json-stable-stringify-2.1.0" 98730 - sources."fast-safe-stringify-2.0.8" 99010 + sources."fast-safe-stringify-2.1.0" 98731 99011 sources."fb-watchman-2.0.1" 98732 99012 sources."figgy-pudding-3.5.2" 98733 99013 sources."file-uri-to-path-1.0.0" ··· 98736 99016 sources."extend-shallow-2.0.1" 98737 99017 ]; 98738 99018 }) 98739 - sources."find-cache-dir-3.3.1" 99019 + sources."find-cache-dir-3.3.2" 98740 99020 sources."find-up-4.1.0" 98741 99021 (sources."findup-sync-3.0.0" // { 98742 99022 dependencies = [ ··· 98946 99226 sources."ncp-2.0.0" 98947 99227 sources."neo-async-2.6.2" 98948 99228 sources."nice-try-1.0.5" 98949 - sources."node-fetch-2.6.1" 99229 + sources."node-fetch-2.6.2" 98950 99230 sources."node-int64-0.4.0" 98951 99231 (sources."node-libs-browser-2.2.1" // { 98952 99232 dependencies = [ ··· 99242 99522 sources."through-2.3.8" 99243 99523 sources."through2-2.0.5" 99244 99524 sources."timers-browserify-1.4.2" 99245 - sources."tmpl-1.0.4" 99525 + sources."tmpl-1.0.5" 99246 99526 sources."to-arraybuffer-1.0.1" 99247 99527 sources."to-fast-properties-2.0.0" 99248 99528 (sources."to-object-path-0.3.0" // { ··· 99296 99576 sources."uuid-3.4.0" 99297 99577 sources."v8-compile-cache-2.3.0" 99298 99578 sources."validate-npm-package-license-3.0.4" 99299 - sources."verror-1.10.0" 99579 + (sources."verror-1.10.0" // { 99580 + dependencies = [ 99581 + sources."core-util-is-1.0.2" 99582 + ]; 99583 + }) 99300 99584 sources."vinyl-2.2.1" 99301 99585 sources."vm-browserify-1.1.2" 99302 99586 sources."walker-1.0.7" ··· 99598 99882 sources."combined-stream-1.0.8" 99599 99883 sources."concat-map-0.0.1" 99600 99884 sources."concat-stream-1.6.2" 99601 - sources."core-util-is-1.0.2" 99885 + sources."core-util-is-1.0.3" 99602 99886 sources."d-1.0.1" 99603 99887 sources."dashdash-1.14.1" 99604 99888 sources."dateformat-2.2.0" 99605 99889 sources."deasync-0.1.20" 99606 99890 sources."debug-2.6.9" 99607 99891 sources."deep-extend-0.5.1" 99608 - sources."deep-is-0.1.3" 99892 + sources."deep-is-0.1.4" 99609 99893 sources."delayed-stream-1.0.0" 99610 99894 sources."doctrine-2.1.0" 99611 99895 (sources."duplexer2-0.0.2" // { ··· 99822 100106 sources."user-home-2.0.0" 99823 100107 sources."util-deprecate-1.0.2" 99824 100108 sources."uuid-3.4.0" 99825 - sources."verror-1.10.0" 100109 + (sources."verror-1.10.0" // { 100110 + dependencies = [ 100111 + sources."core-util-is-1.0.2" 100112 + ]; 100113 + }) 99826 100114 sources."vinyl-0.5.3" 99827 100115 sources."word-wrap-1.2.3" 99828 100116 sources."wrappy-1.0.2" ··· 99899 100187 "@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage { 99900 100188 name = "_at_mermaid-js_slash_mermaid-cli"; 99901 100189 packageName = "@mermaid-js/mermaid-cli"; 99902 - version = "8.11.5"; 100190 + version = "8.12.1"; 99903 100191 src = fetchurl { 99904 - url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.11.5.tgz"; 99905 - sha512 = "kvOJ9VkabUFEASC0yE7KiWT7e8t2OBb6cw4YOXctXRJtbxSubLSANpfSxuy+MuaR9JJCMWcqD6sYy8FmdaPiaQ=="; 100192 + url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.12.1.tgz"; 100193 + sha512 = "cgs55tY9sLgtt9/67J7rfDLN/IM5BbobduO3FrKXBKVVanXbMubeTztcpVTtIRYEfJLmn+c+nfmnkNKruN3k0w=="; 99906 100194 }; 99907 100195 dependencies = [ 99908 100196 sources."@braintree/sanitize-url-3.1.0" 99909 - sources."@types/node-16.7.2" 100197 + sources."@types/node-16.7.13" 99910 100198 sources."@types/yauzl-2.9.2" 99911 100199 sources."agent-base-6.0.2" 99912 100200 sources."ansi-styles-4.3.0" ··· 99922 100210 sources."color-name-1.1.4" 99923 100211 sources."commander-8.1.0" 99924 100212 sources."concat-map-0.0.1" 99925 - sources."d3-7.0.1" 99926 - sources."d3-array-3.0.2" 99927 - sources."d3-axis-3.0.0" 99928 - sources."d3-brush-3.0.0" 99929 - sources."d3-chord-3.0.1" 100213 + sources."d3-5.16.0" 100214 + sources."d3-array-1.2.4" 100215 + sources."d3-axis-1.0.12" 100216 + sources."d3-brush-1.1.6" 100217 + sources."d3-chord-1.0.6" 99930 100218 sources."d3-collection-1.0.7" 99931 - sources."d3-color-3.0.1" 99932 - sources."d3-contour-3.0.1" 99933 - sources."d3-delaunay-6.0.2" 99934 - sources."d3-dispatch-3.0.1" 99935 - sources."d3-drag-3.0.0" 99936 - (sources."d3-dsv-3.0.1" // { 100219 + sources."d3-color-1.4.1" 100220 + sources."d3-contour-1.3.2" 100221 + sources."d3-dispatch-1.0.6" 100222 + sources."d3-drag-1.2.5" 100223 + (sources."d3-dsv-1.2.0" // { 99937 100224 dependencies = [ 99938 - sources."commander-7.2.0" 100225 + sources."commander-2.20.3" 99939 100226 ]; 99940 100227 }) 99941 - sources."d3-ease-3.0.1" 99942 - sources."d3-fetch-3.0.1" 99943 - sources."d3-force-3.0.0" 99944 - sources."d3-format-3.0.1" 99945 - sources."d3-geo-3.0.1" 99946 - sources."d3-hierarchy-3.0.1" 99947 - sources."d3-interpolate-3.0.1" 99948 - sources."d3-path-3.0.1" 99949 - sources."d3-polygon-3.0.1" 99950 - sources."d3-quadtree-3.0.1" 99951 - sources."d3-random-3.0.1" 99952 - sources."d3-scale-4.0.0" 99953 - sources."d3-scale-chromatic-3.0.0" 99954 - sources."d3-selection-3.0.0" 99955 - sources."d3-shape-3.0.1" 99956 - sources."d3-time-3.0.0" 99957 - sources."d3-time-format-4.0.0" 99958 - sources."d3-timer-3.0.1" 99959 - sources."d3-transition-3.0.1" 100228 + sources."d3-ease-1.0.7" 100229 + sources."d3-fetch-1.2.0" 100230 + sources."d3-force-1.2.1" 100231 + sources."d3-format-1.4.5" 100232 + sources."d3-geo-1.12.1" 100233 + sources."d3-hierarchy-1.1.9" 100234 + sources."d3-interpolate-1.4.0" 100235 + sources."d3-path-1.0.9" 100236 + sources."d3-polygon-1.0.6" 100237 + sources."d3-quadtree-1.0.7" 100238 + sources."d3-random-1.1.2" 100239 + sources."d3-scale-2.2.2" 100240 + sources."d3-scale-chromatic-1.5.0" 100241 + sources."d3-selection-1.4.2" 100242 + sources."d3-shape-1.3.7" 100243 + sources."d3-time-1.1.0" 100244 + sources."d3-time-format-2.3.0" 100245 + sources."d3-timer-1.0.10" 100246 + sources."d3-transition-1.3.2" 99960 100247 sources."d3-voronoi-1.1.4" 99961 - sources."d3-zoom-3.0.0" 100248 + sources."d3-zoom-1.8.3" 99962 100249 sources."dagre-0.8.5" 99963 - (sources."dagre-d3-0.6.4" // { 99964 - dependencies = [ 99965 - sources."commander-2.20.3" 99966 - sources."d3-5.16.0" 99967 - sources."d3-array-1.2.4" 99968 - sources."d3-axis-1.0.12" 99969 - sources."d3-brush-1.1.6" 99970 - sources."d3-chord-1.0.6" 99971 - sources."d3-color-1.4.1" 99972 - sources."d3-contour-1.3.2" 99973 - sources."d3-dispatch-1.0.6" 99974 - sources."d3-drag-1.2.5" 99975 - sources."d3-dsv-1.2.0" 99976 - sources."d3-ease-1.0.7" 99977 - sources."d3-fetch-1.2.0" 99978 - sources."d3-force-1.2.1" 99979 - sources."d3-format-1.4.5" 99980 - sources."d3-geo-1.12.1" 99981 - sources."d3-hierarchy-1.1.9" 99982 - sources."d3-interpolate-1.4.0" 99983 - sources."d3-path-1.0.9" 99984 - sources."d3-polygon-1.0.6" 99985 - sources."d3-quadtree-1.0.7" 99986 - sources."d3-random-1.1.2" 99987 - sources."d3-scale-2.2.2" 99988 - sources."d3-scale-chromatic-1.5.0" 99989 - sources."d3-selection-1.4.2" 99990 - sources."d3-shape-1.3.7" 99991 - sources."d3-time-1.1.0" 99992 - sources."d3-time-format-2.3.0" 99993 - sources."d3-timer-1.0.10" 99994 - sources."d3-transition-1.3.2" 99995 - sources."d3-zoom-1.8.3" 99996 - sources."iconv-lite-0.4.24" 99997 - ]; 99998 - }) 100250 + sources."dagre-d3-0.6.4" 99999 100251 sources."debug-4.3.1" 100000 - sources."delaunator-5.0.0" 100001 100252 sources."devtools-protocol-0.0.901419" 100002 100253 sources."dompurify-2.3.1" 100003 100254 sources."end-of-stream-1.4.4" ··· 100011 100262 sources."graphlib-2.1.8" 100012 100263 sources."has-flag-4.0.0" 100013 100264 sources."https-proxy-agent-5.0.0" 100014 - sources."iconv-lite-0.6.3" 100265 + sources."iconv-lite-0.4.24" 100015 100266 sources."ieee754-1.2.1" 100016 100267 sources."inflight-1.0.6" 100017 100268 sources."inherits-2.0.4" 100018 - sources."internmap-2.0.1" 100019 100269 sources."khroma-1.4.1" 100020 100270 sources."locate-path-5.0.0" 100021 100271 sources."lodash-4.17.21" 100022 - sources."mermaid-8.12.0" 100272 + sources."mermaid-8.12.1" 100023 100273 sources."minimatch-3.0.4" 100024 100274 sources."minimist-1.2.5" 100025 100275 sources."mkdirp-0.5.5" ··· 100040 100290 sources."puppeteer-10.2.0" 100041 100291 sources."readable-stream-3.6.0" 100042 100292 sources."rimraf-3.0.2" 100043 - sources."robust-predicates-3.0.1" 100044 100293 sources."rw-1.3.3" 100045 100294 sources."safe-buffer-5.2.1" 100046 100295 sources."safer-buffer-2.1.2" ··· 100066 100315 bypassCache = true; 100067 100316 reconstructLock = true; 100068 100317 }; 100069 - mirakurun = nodeEnv.buildNodePackage { 100070 - name = "mirakurun"; 100071 - packageName = "mirakurun"; 100072 - version = "3.9.0-beta.2"; 100073 - src = fetchurl { 100074 - url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.9.0-beta.2.tgz"; 100075 - sha512 = "67eI8su/4N6KvHKveYHYuimSIdk5gZug4mGPPkeSib+y9IHCnHK6LUwN28NMvsYQPYRVRfhk8Y76TfPV4dpzwQ=="; 100076 - }; 100077 - dependencies = [ 100078 - sources."@chinachu/aribts-1.3.5-mirakurun.3" 100079 - sources."@fluentui/date-time-utilities-8.2.2" 100080 - sources."@fluentui/dom-utilities-2.1.4" 100081 - sources."@fluentui/font-icons-mdl2-8.1.10" 100082 - sources."@fluentui/foundation-legacy-8.1.10" 100083 - sources."@fluentui/keyboard-key-0.3.4" 100084 - sources."@fluentui/merge-styles-8.1.5" 100085 - sources."@fluentui/react-8.27.0" 100086 - sources."@fluentui/react-focus-8.2.1" 100087 - sources."@fluentui/react-hooks-8.3.1" 100088 - sources."@fluentui/react-window-provider-2.1.4" 100089 - sources."@fluentui/set-version-8.1.4" 100090 - sources."@fluentui/style-utilities-8.3.1" 100091 - sources."@fluentui/theme-2.3.1" 100092 - sources."@fluentui/utilities-8.3.1" 100093 - sources."@microsoft/load-themed-styles-1.10.203" 100094 - sources."@napi-rs/triples-1.0.3" 100095 - sources."@node-rs/crc32-1.2.1" 100096 - sources."@node-rs/crc32-android-arm64-1.2.1" 100097 - sources."@node-rs/crc32-darwin-arm64-1.2.1" 100098 - sources."@node-rs/crc32-darwin-x64-1.2.1" 100099 - sources."@node-rs/crc32-freebsd-x64-1.2.1" 100100 - sources."@node-rs/crc32-linux-arm-gnueabihf-1.2.1" 100101 - sources."@node-rs/crc32-linux-arm64-gnu-1.2.1" 100102 - sources."@node-rs/crc32-linux-arm64-musl-1.2.1" 100103 - sources."@node-rs/crc32-linux-x64-gnu-1.2.1" 100104 - sources."@node-rs/crc32-linux-x64-musl-1.2.1" 100105 - sources."@node-rs/crc32-win32-arm64-msvc-1.2.1" 100106 - sources."@node-rs/crc32-win32-ia32-msvc-1.2.1" 100107 - sources."@node-rs/crc32-win32-x64-msvc-1.2.1" 100108 - sources."@node-rs/helper-1.2.1" 100109 - sources."@sindresorhus/is-0.14.0" 100110 - sources."@szmarczak/http-timer-1.1.2" 100111 - sources."@types/node-16.7.2" 100112 - sources."@types/uuid-3.4.10" 100113 - sources."@types/ws-6.0.4" 100114 - sources."accepts-1.3.7" 100115 - sources."ajv-6.12.6" 100116 - sources."ansi-escapes-1.4.0" 100117 - sources."ansi-regex-2.1.1" 100118 - sources."ansi-styles-2.2.1" 100119 - sources."argparse-1.0.10" 100120 - sources."array-flatten-1.1.1" 100121 - sources."async-limiter-1.0.1" 100122 - sources."babel-polyfill-6.23.0" 100123 - (sources."babel-runtime-6.26.0" // { 100124 - dependencies = [ 100125 - sources."regenerator-runtime-0.11.1" 100126 - ]; 100127 - }) 100128 - sources."backo2-1.0.2" 100129 - sources."balanced-match-1.0.2" 100130 - sources."basic-auth-2.0.1" 100131 - (sources."body-parser-1.19.0" // { 100132 - dependencies = [ 100133 - sources."iconv-lite-0.4.24" 100134 - ]; 100135 - }) 100136 - sources."brace-expansion-1.1.11" 100137 - sources."buffer-from-1.1.2" 100138 - sources."bufferutil-4.0.3" 100139 - sources."builtin-status-codes-3.0.0" 100140 - sources."bytes-3.1.0" 100141 - (sources."cacheable-request-6.1.0" // { 100142 - dependencies = [ 100143 - sources."get-stream-5.2.0" 100144 - sources."lowercase-keys-2.0.0" 100145 - ]; 100146 - }) 100147 - sources."chalk-1.1.3" 100148 - sources."chardet-0.4.2" 100149 - sources."cli-cursor-2.1.0" 100150 - sources."cli-width-2.2.1" 100151 - sources."clone-response-1.0.2" 100152 - sources."colors-1.4.0" 100153 - sources."concat-map-0.0.1" 100154 - sources."content-disposition-0.5.3" 100155 - sources."content-type-1.0.4" 100156 - sources."cookie-0.4.0" 100157 - sources."cookie-signature-1.0.6" 100158 - sources."core-js-2.6.12" 100159 - sources."cors-2.8.5" 100160 - sources."debug-2.6.9" 100161 - sources."decompress-response-3.3.0" 100162 - sources."deep-extend-0.6.0" 100163 - sources."defer-to-connect-1.1.3" 100164 - sources."depd-1.1.2" 100165 - sources."destroy-1.0.4" 100166 - sources."difunc-0.0.4" 100167 - sources."dotenv-8.6.0" 100168 - sources."duplexer3-0.1.4" 100169 - sources."ee-first-1.1.1" 100170 - sources."encodeurl-1.0.2" 100171 - sources."encoding-0.1.13" 100172 - sources."end-of-stream-1.4.4" 100173 - sources."escape-html-1.0.3" 100174 - sources."escape-string-regexp-1.0.5" 100175 - sources."esprima-4.0.1" 100176 - sources."etag-1.8.1" 100177 - sources."eventemitter3-4.0.7" 100178 - sources."express-4.17.1" 100179 - sources."express-normalize-query-params-middleware-0.5.1" 100180 - (sources."express-openapi-8.0.0" // { 100181 - dependencies = [ 100182 - sources."openapi-types-8.0.0" 100183 - ]; 100184 - }) 100185 - (sources."external-editor-2.2.0" // { 100186 - dependencies = [ 100187 - sources."iconv-lite-0.4.24" 100188 - ]; 100189 - }) 100190 - sources."fast-deep-equal-3.1.3" 100191 - sources."fast-json-stable-stringify-2.1.0" 100192 - sources."figures-2.0.0" 100193 - sources."finalhandler-1.1.2" 100194 - sources."forwarded-0.2.0" 100195 - sources."fresh-0.5.2" 100196 - sources."fs-routes-8.0.0" 100197 - sources."fs.realpath-1.0.0" 100198 - sources."get-stream-4.1.0" 100199 - sources."glob-7.1.7" 100200 - sources."got-9.6.0" 100201 - sources."has-ansi-2.0.0" 100202 - sources."http-cache-semantics-4.1.0" 100203 - sources."http-errors-1.7.2" 100204 - sources."iconv-lite-0.6.3" 100205 - sources."inflight-1.0.6" 100206 - sources."inherits-2.0.3" 100207 - sources."ini-1.3.8" 100208 - sources."inquirer-3.0.6" 100209 - sources."ip-1.1.5" 100210 - sources."ipaddr.js-1.9.1" 100211 - sources."is-dir-1.0.0" 100212 - sources."is-fullwidth-code-point-2.0.0" 100213 - sources."is-stream-1.1.0" 100214 - sources."isomorphic-ws-4.0.1" 100215 - sources."js-tokens-4.0.0" 100216 - (sources."js-yaml-4.1.0" // { 100217 - dependencies = [ 100218 - sources."argparse-2.0.1" 100219 - ]; 100220 - }) 100221 - sources."json-buffer-3.0.0" 100222 - sources."json-schema-traverse-0.4.1" 100223 - (sources."jsonrpc2-ws-1.0.0-beta9" // { 100224 - dependencies = [ 100225 - sources."eventemitter3-3.1.2" 100226 - ]; 100227 - }) 100228 - sources."keyv-3.1.0" 100229 - sources."latest-version-5.1.0" 100230 - sources."lodash-4.17.21" 100231 - sources."lodash.merge-4.6.2" 100232 - sources."loose-envify-1.4.0" 100233 - sources."lowercase-keys-1.0.1" 100234 - sources."lru-cache-6.0.0" 100235 - sources."media-typer-0.3.0" 100236 - sources."merge-descriptors-1.0.1" 100237 - sources."methods-1.1.2" 100238 - sources."mime-1.6.0" 100239 - sources."mime-db-1.49.0" 100240 - sources."mime-types-2.1.32" 100241 - sources."mimic-fn-1.2.0" 100242 - sources."mimic-response-1.0.1" 100243 - sources."minimatch-3.0.4" 100244 - sources."minimist-1.2.5" 100245 - (sources."morgan-1.10.0" // { 100246 - dependencies = [ 100247 - sources."depd-2.0.0" 100248 - ]; 100249 - }) 100250 - sources."ms-2.0.0" 100251 - sources."mute-stream-0.0.7" 100252 - sources."negotiator-0.6.2" 100253 - sources."node-fetch-1.6.3" 100254 - sources."node-gyp-build-4.2.3" 100255 - sources."normalize-url-4.5.1" 100256 - sources."object-assign-4.1.1" 100257 - sources."on-finished-2.3.0" 100258 - sources."on-headers-1.0.2" 100259 - sources."once-1.4.0" 100260 - sources."onetime-2.0.1" 100261 - (sources."openapi-default-setter-8.0.0" // { 100262 - dependencies = [ 100263 - sources."openapi-types-8.0.0" 100264 - ]; 100265 - }) 100266 - (sources."openapi-framework-8.0.0" // { 100267 - dependencies = [ 100268 - sources."js-yaml-3.14.1" 100269 - sources."openapi-types-8.0.0" 100270 - ]; 100271 - }) 100272 - (sources."openapi-jsonschema-parameters-8.0.0" // { 100273 - dependencies = [ 100274 - sources."openapi-types-8.0.0" 100275 - ]; 100276 - }) 100277 - (sources."openapi-request-coercer-8.0.0" // { 100278 - dependencies = [ 100279 - sources."openapi-types-8.0.0" 100280 - ]; 100281 - }) 100282 - (sources."openapi-request-validator-8.0.0" // { 100283 - dependencies = [ 100284 - sources."openapi-types-8.0.0" 100285 - ]; 100286 - }) 100287 - (sources."openapi-response-validator-8.0.0" // { 100288 - dependencies = [ 100289 - sources."openapi-types-8.0.0" 100290 - ]; 100291 - }) 100292 - (sources."openapi-schema-validator-8.0.0" // { 100293 - dependencies = [ 100294 - sources."openapi-types-8.0.0" 100295 - ]; 100296 - }) 100297 - (sources."openapi-security-handler-8.0.0" // { 100298 - dependencies = [ 100299 - sources."openapi-types-8.0.0" 100300 - ]; 100301 - }) 100302 - sources."openapi-types-7.2.3" 100303 - (sources."opencollective-1.0.3" // { 100304 - dependencies = [ 100305 - sources."minimist-1.2.0" 100306 - ]; 100307 - }) 100308 - sources."opencollective-postinstall-2.0.3" 100309 - sources."opn-4.0.2" 100310 - sources."os-tmpdir-1.0.2" 100311 - sources."p-cancelable-1.1.0" 100312 - (sources."package-json-6.5.0" // { 100313 - dependencies = [ 100314 - sources."semver-6.3.0" 100315 - ]; 100316 - }) 100317 - sources."parseurl-1.3.3" 100318 - sources."path-is-absolute-1.0.1" 100319 - sources."path-to-regexp-0.1.7" 100320 - sources."pinkie-2.0.4" 100321 - sources."pinkie-promise-2.0.1" 100322 - sources."prepend-http-2.0.0" 100323 - sources."promise-queue-2.2.5" 100324 - sources."proxy-addr-2.0.7" 100325 - sources."pump-3.0.0" 100326 - sources."punycode-2.1.1" 100327 - sources."qs-6.7.0" 100328 - sources."range-parser-1.2.1" 100329 - (sources."raw-body-2.4.0" // { 100330 - dependencies = [ 100331 - sources."iconv-lite-0.4.24" 100332 - ]; 100333 - }) 100334 - sources."rc-1.2.8" 100335 - sources."react-17.0.2" 100336 - sources."react-dom-17.0.2" 100337 - sources."readable-stream-3.6.0" 100338 - sources."regenerator-runtime-0.10.5" 100339 - sources."registry-auth-token-4.2.1" 100340 - sources."registry-url-5.1.0" 100341 - sources."responselike-1.0.2" 100342 - sources."restore-cursor-2.0.0" 100343 - sources."rfdc-1.3.0" 100344 - sources."run-async-2.4.1" 100345 - sources."rx-4.1.0" 100346 - sources."safe-buffer-5.1.2" 100347 - sources."safer-buffer-2.1.2" 100348 - sources."scheduler-0.20.2" 100349 - sources."semver-7.3.5" 100350 - (sources."send-0.17.1" // { 100351 - dependencies = [ 100352 - sources."ms-2.1.1" 100353 - ]; 100354 - }) 100355 - sources."serve-static-1.14.1" 100356 - sources."setprototypeof-1.1.1" 100357 - sources."sift-7.0.1" 100358 - sources."signal-exit-3.0.3" 100359 - sources."source-map-0.6.1" 100360 - sources."source-map-support-0.5.19" 100361 - sources."sprintf-js-1.0.3" 100362 - sources."statuses-1.5.0" 100363 - (sources."stream-http-3.2.0" // { 100364 - dependencies = [ 100365 - sources."inherits-2.0.4" 100366 - ]; 100367 - }) 100368 - (sources."string-width-2.1.1" // { 100369 - dependencies = [ 100370 - sources."ansi-regex-3.0.0" 100371 - sources."strip-ansi-4.0.0" 100372 - ]; 100373 - }) 100374 - (sources."string_decoder-1.3.0" // { 100375 - dependencies = [ 100376 - sources."safe-buffer-5.2.1" 100377 - ]; 100378 - }) 100379 - sources."strip-ansi-3.0.1" 100380 - sources."strip-json-comments-2.0.1" 100381 - sources."supports-color-2.0.0" 100382 - sources."swagger-schema-official-2.0.0-bab6bed" 100383 - sources."swagger-ui-dist-3.51.2" 100384 - sources."tail-2.2.3" 100385 - sources."through-2.3.8" 100386 - sources."tmp-0.0.33" 100387 - sources."to-readable-stream-1.0.0" 100388 - sources."toidentifier-1.0.0" 100389 - sources."ts-log-2.2.3" 100390 - sources."tslib-2.3.1" 100391 - sources."type-is-1.6.18" 100392 - sources."unpipe-1.0.0" 100393 - sources."uri-js-4.4.1" 100394 - sources."url-parse-lax-3.0.0" 100395 - sources."utf-8-validate-5.0.5" 100396 - sources."util-deprecate-1.0.2" 100397 - sources."utils-merge-1.0.1" 100398 - sources."uuid-3.4.0" 100399 - sources."uws-9.148.0" 100400 - sources."vary-1.1.2" 100401 - sources."wrappy-1.0.2" 100402 - sources."ws-6.2.2" 100403 - sources."xtend-4.0.2" 100404 - sources."yallist-4.0.0" 100405 - ]; 100406 - buildInputs = globalBuildInputs; 100407 - meta = { 100408 - description = "Japanese DTV Tuner Server Service."; 100409 - homepage = "https://github.com/Chinachu/Mirakurun"; 100410 - license = "Apache-2.0"; 100411 - }; 100412 - production = true; 100413 - bypassCache = true; 100414 - reconstructLock = true; 100415 - }; 100416 100318 mocha = nodeEnv.buildNodePackage { 100417 100319 name = "mocha"; 100418 100320 packageName = "mocha"; 100419 - version = "9.1.0"; 100321 + version = "9.1.1"; 100420 100322 src = fetchurl { 100421 - url = "https://registry.npmjs.org/mocha/-/mocha-9.1.0.tgz"; 100422 - sha512 = "Kjg/XxYOFFUi0h/FwMOeb6RoroiZ+P1yOfya6NK7h3dNhahrJx1r2XIT3ge4ZQvJM86mdjNA+W5phqRQh7DwCg=="; 100323 + url = "https://registry.npmjs.org/mocha/-/mocha-9.1.1.tgz"; 100324 + sha512 = "0wE74YMgOkCgBUj8VyIDwmLUjTsS13WV1Pg7l0SHea2qzZzlq7MDnfbPsHKcELBRk3+izEVkRofjmClpycudCA=="; 100423 100325 }; 100424 100326 dependencies = [ 100425 100327 sources."@ungap/promise-all-settled-1.1.2" ··· 100556 100458 sources."commander-2.20.3" 100557 100459 sources."component-emitter-1.3.0" 100558 100460 sources."cookiejar-2.1.2" 100559 - sources."core-util-is-1.0.2" 100461 + sources."core-util-is-1.0.3" 100560 100462 sources."debug-3.2.7" 100561 100463 sources."delayed-stream-1.0.0" 100562 100464 sources."esprima-4.0.1" ··· 100650 100552 sources."log-symbols-4.1.0" 100651 100553 sources."mimic-fn-2.1.0" 100652 100554 sources."mute-stream-0.0.8" 100653 - sources."node-fetch-2.6.1" 100555 + sources."node-fetch-2.6.2" 100654 100556 sources."onetime-5.1.2" 100655 100557 sources."ora-5.4.1" 100656 100558 sources."os-tmpdir-1.0.2" ··· 100701 100603 sources."colornames-1.1.1" 100702 100604 sources."colors-1.4.0" 100703 100605 sources."colorspace-1.1.2" 100704 - sources."core-util-is-1.0.2" 100606 + sources."core-util-is-1.0.3" 100705 100607 sources."diagnostics-1.1.1" 100706 100608 sources."enabled-1.0.2" 100707 100609 sources."env-variable-0.0.6" 100708 - sources."fast-safe-stringify-2.0.8" 100610 + sources."fast-safe-stringify-2.1.0" 100709 100611 sources."fecha-2.3.3" 100710 100612 sources."inherits-2.0.4" 100711 100613 sources."is-arrayish-0.3.2" ··· 100746 100648 netlify-cli = nodeEnv.buildNodePackage { 100747 100649 name = "netlify-cli"; 100748 100650 packageName = "netlify-cli"; 100749 - version = "6.7.6"; 100651 + version = "6.8.8"; 100750 100652 src = fetchurl { 100751 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.7.6.tgz"; 100752 - sha512 = "yGdBrNqFPHRrIEcyRXseYt8NOPj7XWeMZiQ6ZGO4Zgkju6nSPnaI9Cxm0rBi7+92c9xU7yhtqY1Z+rs69jaLRw=="; 100653 + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.8.8.tgz"; 100654 + sha512 = "yJeroGBn98WDbrl+Af1NUgOjFjEU+AYrHIlenEAytS4asfAX0PumF+/2qRlLegnVkLpr9iIMqUppcriCoMpiXQ=="; 100753 100655 }; 100754 100656 dependencies = [ 100755 100657 sources."@babel/code-frame-7.14.5" 100756 100658 sources."@babel/compat-data-7.15.0" 100757 - (sources."@babel/core-7.15.0" // { 100659 + (sources."@babel/core-7.15.5" // { 100758 100660 dependencies = [ 100759 100661 sources."semver-6.3.0" 100760 100662 ]; 100761 100663 }) 100762 - sources."@babel/generator-7.15.0" 100763 - sources."@babel/helper-annotate-as-pure-7.14.5" 100764 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 100765 - (sources."@babel/helper-compilation-targets-7.15.0" // { 100664 + sources."@babel/generator-7.15.4" 100665 + sources."@babel/helper-annotate-as-pure-7.15.4" 100666 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 100667 + (sources."@babel/helper-compilation-targets-7.15.4" // { 100766 100668 dependencies = [ 100767 100669 sources."semver-6.3.0" 100768 100670 ]; 100769 100671 }) 100770 - sources."@babel/helper-create-class-features-plugin-7.15.0" 100672 + sources."@babel/helper-create-class-features-plugin-7.15.4" 100771 100673 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 100772 100674 (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 100773 100675 dependencies = [ 100774 100676 sources."semver-6.3.0" 100775 100677 ]; 100776 100678 }) 100777 - sources."@babel/helper-explode-assignable-expression-7.14.5" 100778 - sources."@babel/helper-function-name-7.14.5" 100779 - sources."@babel/helper-get-function-arity-7.14.5" 100780 - sources."@babel/helper-hoist-variables-7.14.5" 100781 - sources."@babel/helper-member-expression-to-functions-7.15.0" 100782 - sources."@babel/helper-module-imports-7.14.5" 100783 - sources."@babel/helper-module-transforms-7.15.0" 100784 - sources."@babel/helper-optimise-call-expression-7.14.5" 100679 + sources."@babel/helper-explode-assignable-expression-7.15.4" 100680 + sources."@babel/helper-function-name-7.15.4" 100681 + sources."@babel/helper-get-function-arity-7.15.4" 100682 + sources."@babel/helper-hoist-variables-7.15.4" 100683 + sources."@babel/helper-member-expression-to-functions-7.15.4" 100684 + sources."@babel/helper-module-imports-7.15.4" 100685 + sources."@babel/helper-module-transforms-7.15.4" 100686 + sources."@babel/helper-optimise-call-expression-7.15.4" 100785 100687 sources."@babel/helper-plugin-utils-7.14.5" 100786 - sources."@babel/helper-remap-async-to-generator-7.14.5" 100787 - sources."@babel/helper-replace-supers-7.15.0" 100788 - sources."@babel/helper-simple-access-7.14.8" 100789 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 100790 - sources."@babel/helper-split-export-declaration-7.14.5" 100688 + sources."@babel/helper-remap-async-to-generator-7.15.4" 100689 + sources."@babel/helper-replace-supers-7.15.4" 100690 + sources."@babel/helper-simple-access-7.15.4" 100691 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 100692 + sources."@babel/helper-split-export-declaration-7.15.4" 100791 100693 sources."@babel/helper-validator-identifier-7.14.9" 100792 100694 sources."@babel/helper-validator-option-7.14.5" 100793 - sources."@babel/helper-wrap-function-7.14.5" 100794 - sources."@babel/helpers-7.15.3" 100695 + sources."@babel/helper-wrap-function-7.15.4" 100696 + sources."@babel/helpers-7.15.4" 100795 100697 (sources."@babel/highlight-7.14.5" // { 100796 100698 dependencies = [ 100797 100699 sources."ansi-styles-3.2.1" ··· 100802 100704 sources."supports-color-5.5.0" 100803 100705 ]; 100804 100706 }) 100805 - sources."@babel/parser-7.15.3" 100806 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 100807 - sources."@babel/plugin-proposal-async-generator-functions-7.14.9" 100707 + sources."@babel/parser-7.15.5" 100708 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 100709 + sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 100808 100710 sources."@babel/plugin-proposal-class-properties-7.14.5" 100809 - sources."@babel/plugin-proposal-class-static-block-7.14.5" 100711 + sources."@babel/plugin-proposal-class-static-block-7.15.4" 100810 100712 sources."@babel/plugin-proposal-dynamic-import-7.14.5" 100811 100713 sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 100812 100714 sources."@babel/plugin-proposal-json-strings-7.14.5" ··· 100817 100719 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 100818 100720 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 100819 100721 sources."@babel/plugin-proposal-private-methods-7.14.5" 100820 - sources."@babel/plugin-proposal-private-property-in-object-7.14.5" 100722 + sources."@babel/plugin-proposal-private-property-in-object-7.15.4" 100821 100723 sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 100822 100724 sources."@babel/plugin-syntax-async-generators-7.8.4" 100823 100725 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 100837 100739 sources."@babel/plugin-transform-async-to-generator-7.14.5" 100838 100740 sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 100839 100741 sources."@babel/plugin-transform-block-scoping-7.15.3" 100840 - sources."@babel/plugin-transform-classes-7.14.9" 100742 + sources."@babel/plugin-transform-classes-7.15.4" 100841 100743 sources."@babel/plugin-transform-computed-properties-7.14.5" 100842 100744 sources."@babel/plugin-transform-destructuring-7.14.7" 100843 100745 sources."@babel/plugin-transform-dotall-regex-7.14.5" 100844 100746 sources."@babel/plugin-transform-duplicate-keys-7.14.5" 100845 100747 sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 100846 - sources."@babel/plugin-transform-for-of-7.14.5" 100748 + sources."@babel/plugin-transform-for-of-7.15.4" 100847 100749 sources."@babel/plugin-transform-function-name-7.14.5" 100848 100750 sources."@babel/plugin-transform-literals-7.14.5" 100849 100751 sources."@babel/plugin-transform-member-expression-literals-7.14.5" 100850 100752 sources."@babel/plugin-transform-modules-amd-7.14.5" 100851 - sources."@babel/plugin-transform-modules-commonjs-7.15.0" 100852 - sources."@babel/plugin-transform-modules-systemjs-7.14.5" 100753 + sources."@babel/plugin-transform-modules-commonjs-7.15.4" 100754 + sources."@babel/plugin-transform-modules-systemjs-7.15.4" 100853 100755 sources."@babel/plugin-transform-modules-umd-7.14.5" 100854 100756 sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 100855 100757 sources."@babel/plugin-transform-new-target-7.14.5" 100856 100758 sources."@babel/plugin-transform-object-super-7.14.5" 100857 - sources."@babel/plugin-transform-parameters-7.14.5" 100759 + sources."@babel/plugin-transform-parameters-7.15.4" 100858 100760 sources."@babel/plugin-transform-property-literals-7.14.5" 100859 100761 sources."@babel/plugin-transform-regenerator-7.14.5" 100860 100762 sources."@babel/plugin-transform-reserved-words-7.14.5" ··· 100865 100767 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 100866 100768 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 100867 100769 sources."@babel/plugin-transform-unicode-regex-7.14.5" 100868 - (sources."@babel/preset-env-7.15.0" // { 100770 + (sources."@babel/preset-env-7.15.4" // { 100869 100771 dependencies = [ 100870 100772 sources."semver-6.3.0" 100871 100773 ]; 100872 100774 }) 100873 100775 sources."@babel/preset-modules-0.1.4" 100874 - sources."@babel/runtime-7.15.3" 100875 - sources."@babel/template-7.14.5" 100876 - sources."@babel/traverse-7.15.0" 100877 - sources."@babel/types-7.15.0" 100776 + sources."@babel/runtime-7.15.4" 100777 + sources."@babel/template-7.15.4" 100778 + sources."@babel/traverse-7.15.4" 100779 + sources."@babel/types-7.15.4" 100878 100780 sources."@bugsnag/browser-7.11.0" 100879 100781 sources."@bugsnag/core-7.11.0" 100880 100782 sources."@bugsnag/cuid-3.0.0" ··· 100884 100786 sources."@dabh/diagnostics-2.0.2" 100885 100787 sources."@jest/types-26.6.2" 100886 100788 sources."@mrmlnc/readdir-enhanced-2.2.1" 100887 - (sources."@netlify/build-18.6.0" // { 100789 + (sources."@netlify/build-18.8.0" // { 100888 100790 dependencies = [ 100889 100791 sources."resolve-2.0.0-next.3" 100890 100792 ]; ··· 100896 100798 sources."slash-3.0.0" 100897 100799 ]; 100898 100800 }) 100899 - (sources."@netlify/config-15.5.0" // { 100801 + (sources."@netlify/config-15.6.0" // { 100900 100802 dependencies = [ 100901 100803 sources."dot-prop-5.3.0" 100902 100804 ]; ··· 100929 100831 sources."@netlify/open-api-2.5.0" 100930 100832 (sources."@netlify/plugin-edge-handlers-1.11.22" // { 100931 100833 dependencies = [ 100932 - sources."@types/node-14.17.12" 100834 + sources."@types/node-14.17.15" 100933 100835 ]; 100934 100836 }) 100935 - sources."@netlify/plugins-list-3.5.0" 100837 + sources."@netlify/plugins-list-3.6.0" 100936 100838 sources."@netlify/routing-local-proxy-0.31.0" 100937 100839 sources."@netlify/run-utils-2.0.1" 100938 100840 (sources."@netlify/zip-it-and-ship-it-4.20.0" // { ··· 100996 100898 sources."tslib-2.3.1" 100997 100899 ]; 100998 100900 }) 100999 - (sources."@oclif/core-0.5.32" // { 100901 + (sources."@oclif/core-0.5.35" // { 101000 100902 dependencies = [ 101001 100903 sources."@nodelib/fs.stat-2.0.5" 101002 100904 sources."ansi-styles-4.3.0" ··· 101072 100974 sources."is-plain-object-5.0.0" 101073 100975 ]; 101074 100976 }) 101075 - sources."@octokit/graphql-4.6.4" 101076 - sources."@octokit/openapi-types-9.7.0" 101077 - sources."@octokit/plugin-paginate-rest-2.15.1" 100977 + sources."@octokit/graphql-4.8.0" 100978 + sources."@octokit/openapi-types-10.1.1" 100979 + sources."@octokit/plugin-paginate-rest-2.16.0" 101078 100980 sources."@octokit/plugin-request-log-1.0.4" 101079 - sources."@octokit/plugin-rest-endpoint-methods-5.8.0" 100981 + sources."@octokit/plugin-rest-endpoint-methods-5.10.0" 101080 100982 (sources."@octokit/request-5.6.1" // { 101081 100983 dependencies = [ 101082 100984 sources."is-plain-object-5.0.0" 101083 100985 ]; 101084 100986 }) 101085 100987 sources."@octokit/request-error-2.1.0" 101086 - sources."@octokit/rest-18.9.1" 101087 - sources."@octokit/types-6.25.0" 100988 + sources."@octokit/rest-18.10.0" 100989 + sources."@octokit/types-6.27.0" 101088 100990 sources."@rollup/plugin-babel-5.3.0" 101089 100991 (sources."@rollup/plugin-commonjs-18.1.0" // { 101090 100992 dependencies = [ ··· 101096 100998 sources."@rollup/plugin-node-resolve-11.2.1" 101097 100999 sources."@rollup/pluginutils-3.1.0" 101098 101000 sources."@samverschueren/stream-to-observable-0.3.1" 101099 - sources."@sindresorhus/is-0.14.0" 101001 + sources."@sindresorhus/is-2.1.1" 101100 101002 sources."@sindresorhus/slugify-1.1.2" 101101 101003 (sources."@sindresorhus/transliterate-0.1.2" // { 101102 101004 dependencies = [ 101103 101005 sources."escape-string-regexp-2.0.0" 101104 101006 ]; 101105 101007 }) 101106 - sources."@szmarczak/http-timer-1.1.2" 101008 + sources."@szmarczak/http-timer-4.0.6" 101107 101009 sources."@types/cacheable-request-6.0.2" 101108 101010 sources."@types/decompress-4.2.4" 101109 101011 sources."@types/download-8.0.1" ··· 101115 101017 sources."@types/istanbul-lib-coverage-2.0.3" 101116 101018 sources."@types/istanbul-lib-report-3.0.0" 101117 101019 sources."@types/istanbul-reports-3.0.1" 101118 - sources."@types/keyv-3.1.2" 101020 + sources."@types/keyv-3.1.3" 101119 101021 sources."@types/minimatch-3.0.5" 101120 - sources."@types/node-16.7.2" 101022 + sources."@types/node-16.7.13" 101121 101023 sources."@types/node-fetch-2.5.12" 101122 101024 sources."@types/normalize-package-data-2.4.1" 101123 101025 sources."@types/resolve-1.17.1" ··· 101125 101027 sources."@types/semver-7.3.8" 101126 101028 sources."@types/yargs-15.0.14" 101127 101029 sources."@types/yargs-parser-20.2.1" 101128 - sources."@typescript-eslint/types-4.29.3" 101129 - (sources."@typescript-eslint/typescript-estree-4.29.3" // { 101030 + sources."@typescript-eslint/types-4.31.0" 101031 + (sources."@typescript-eslint/typescript-estree-4.31.0" // { 101130 101032 dependencies = [ 101131 101033 sources."@nodelib/fs.stat-2.0.5" 101132 101034 sources."array-union-2.1.0" ··· 101143 101045 sources."to-regex-range-5.0.1" 101144 101046 ]; 101145 101047 }) 101146 - sources."@typescript-eslint/visitor-keys-4.29.3" 101048 + sources."@typescript-eslint/visitor-keys-4.31.0" 101147 101049 sources."@ungap/from-entries-0.2.1" 101148 101050 sources."accepts-1.3.7" 101149 - sources."acorn-8.4.1" 101051 + sources."acorn-8.5.0" 101150 101052 sources."agent-base-6.0.2" 101151 101053 (sources."aggregate-error-3.1.0" // { 101152 101054 dependencies = [ ··· 101253 101155 sources."extend-shallow-2.0.1" 101254 101156 ]; 101255 101157 }) 101256 - sources."browserslist-4.16.8" 101158 + sources."browserslist-4.17.0" 101257 101159 sources."buffer-5.7.1" 101258 101160 sources."buffer-alloc-1.2.0" 101259 101161 sources."buffer-alloc-unsafe-1.1.0" ··· 101266 101168 sources."byline-5.0.0" 101267 101169 sources."bytes-3.1.0" 101268 101170 sources."cache-base-1.0.1" 101269 - (sources."cacheable-lookup-2.0.1" // { 101270 - dependencies = [ 101271 - sources."json-buffer-3.0.1" 101272 - sources."keyv-4.0.3" 101273 - ]; 101274 - }) 101275 - (sources."cacheable-request-6.1.0" // { 101171 + sources."cacheable-lookup-2.0.1" 101172 + (sources."cacheable-request-7.0.2" // { 101276 101173 dependencies = [ 101277 101174 sources."get-stream-5.2.0" 101278 - sources."lowercase-keys-2.0.0" 101279 101175 ]; 101280 101176 }) 101281 101177 sources."cachedir-2.3.0" ··· 101283 101179 sources."call-me-maybe-1.0.1" 101284 101180 sources."callsite-1.0.0" 101285 101181 sources."camelcase-6.2.0" 101286 - sources."caniuse-lite-1.0.30001252" 101182 + sources."caniuse-lite-1.0.30001255" 101287 101183 sources."cardinal-2.1.1" 101288 101184 (sources."chalk-4.1.2" // { 101289 101185 dependencies = [ ··· 101352 101248 sources."cli-width-2.2.1" 101353 101249 sources."cliui-6.0.0" 101354 101250 sources."clone-1.0.4" 101355 - sources."clone-response-1.0.2" 101251 + (sources."clone-response-1.0.2" // { 101252 + dependencies = [ 101253 + sources."mimic-response-1.0.1" 101254 + ]; 101255 + }) 101356 101256 sources."code-point-at-1.1.0" 101357 101257 sources."collection-visit-1.0.0" 101358 101258 (sources."color-3.0.0" // { ··· 101364 101264 sources."color-convert-2.0.1" 101365 101265 sources."color-name-1.1.4" 101366 101266 sources."color-string-1.6.0" 101367 - sources."colorette-1.3.0" 101267 + sources."colorette-1.4.0" 101368 101268 sources."colors-1.4.0" 101369 101269 sources."colorspace-1.1.2" 101370 101270 sources."combined-stream-1.0.8" ··· 101393 101293 sources."readdirp-2.2.1" 101394 101294 ]; 101395 101295 }) 101396 - (sources."core-js-compat-3.16.3" // { 101296 + (sources."core-js-compat-3.17.2" // { 101397 101297 dependencies = [ 101398 101298 sources."semver-7.0.0" 101399 101299 ]; 101400 101300 }) 101401 - sources."core-util-is-1.0.2" 101301 + sources."core-util-is-1.0.3" 101402 101302 sources."cp-file-7.0.0" 101403 101303 (sources."cpy-8.1.2" // { 101404 101304 dependencies = [ ··· 101431 101331 sources."pify-2.3.0" 101432 101332 ]; 101433 101333 }) 101434 - sources."decompress-response-3.3.0" 101334 + sources."decompress-response-5.0.0" 101435 101335 (sources."decompress-tar-4.1.1" // { 101436 101336 dependencies = [ 101437 101337 sources."bl-1.2.3" ··· 101461 101361 ]; 101462 101362 }) 101463 101363 sources."deep-extend-0.6.0" 101464 - sources."deep-is-0.1.3" 101364 + sources."deep-is-0.1.4" 101465 101365 sources."deepmerge-4.2.2" 101466 101366 sources."defaults-1.0.3" 101467 - sources."defer-to-connect-1.1.3" 101367 + sources."defer-to-connect-2.0.1" 101468 101368 sources."define-properties-1.1.3" 101469 101369 sources."define-property-2.0.2" 101470 101370 (sources."del-6.0.0" // { ··· 101515 101415 (sources."cacheable-request-2.1.4" // { 101516 101416 dependencies = [ 101517 101417 sources."get-stream-3.0.0" 101418 + sources."lowercase-keys-1.0.0" 101518 101419 ]; 101519 101420 }) 101421 + sources."decompress-response-3.3.0" 101520 101422 sources."get-stream-4.1.0" 101521 101423 (sources."got-8.3.2" // { 101522 101424 dependencies = [ ··· 101526 101428 }) 101527 101429 sources."http-cache-semantics-3.8.1" 101528 101430 sources."is-plain-obj-1.1.0" 101431 + sources."json-buffer-3.0.0" 101529 101432 sources."keyv-3.0.0" 101530 - sources."lowercase-keys-1.0.0" 101433 + sources."lowercase-keys-1.0.1" 101531 101434 sources."make-dir-2.1.0" 101435 + sources."mimic-response-1.0.1" 101532 101436 sources."normalize-url-2.0.1" 101533 101437 sources."p-cancelable-0.4.1" 101534 101438 sources."p-event-2.3.1" 101439 + sources."responselike-1.0.2" 101535 101440 sources."semver-5.7.1" 101536 101441 sources."sort-keys-2.0.0" 101537 101442 ]; 101538 101443 }) 101539 101444 sources."duplexer3-0.1.4" 101540 101445 sources."ee-first-1.1.1" 101541 - sources."electron-to-chromium-1.3.818" 101446 + sources."electron-to-chromium-1.3.832" 101542 101447 sources."elegant-spinner-1.0.1" 101543 101448 sources."elf-cam-0.1.1" 101544 101449 sources."emoji-regex-8.0.0" ··· 101621 101526 sources."fast-equals-2.0.3" 101622 101527 sources."fast-glob-2.2.7" 101623 101528 sources."fast-levenshtein-2.0.6" 101624 - sources."fast-safe-stringify-2.0.8" 101529 + sources."fast-safe-stringify-2.1.0" 101625 101530 sources."fastq-1.12.0" 101626 101531 sources."fd-slicer-1.1.0" 101627 101532 sources."fecha-4.2.1" ··· 101632 101537 sources."chalk-3.0.0" 101633 101538 ]; 101634 101539 }) 101635 - sources."@sindresorhus/is-2.1.1" 101636 - sources."@szmarczak/http-timer-4.0.6" 101637 101540 sources."@types/istanbul-reports-1.1.2" 101638 101541 sources."ansi-styles-4.3.0" 101639 - sources."cacheable-request-7.0.2" 101640 101542 sources."camelcase-5.3.1" 101641 - sources."decompress-response-5.0.0" 101642 - sources."defer-to-connect-2.0.1" 101643 - sources."get-stream-5.2.0" 101644 - sources."got-10.7.0" 101645 101543 sources."has-flag-4.0.0" 101646 101544 sources."jest-get-type-25.2.6" 101647 101545 (sources."jest-validate-25.5.0" // { ··· 101649 101547 sources."chalk-3.0.0" 101650 101548 ]; 101651 101549 }) 101652 - sources."json-buffer-3.0.1" 101653 - sources."keyv-4.0.3" 101654 - sources."lowercase-keys-2.0.0" 101655 - sources."mimic-response-2.1.0" 101656 - sources."normalize-url-6.1.0" 101657 - sources."p-cancelable-2.1.1" 101658 101550 sources."pretty-format-25.5.0" 101659 101551 sources."react-is-16.13.1" 101660 - sources."responselike-2.0.0" 101661 101552 sources."supports-color-7.2.0" 101662 - sources."type-fest-0.10.0" 101663 101553 ]; 101664 101554 }) 101665 101555 (sources."figures-3.2.0" // { ··· 101687 101577 sources."flush-write-stream-2.0.0" 101688 101578 sources."fn.name-1.1.0" 101689 101579 sources."folder-walker-3.2.0" 101690 - sources."follow-redirects-1.14.2" 101580 + sources."follow-redirects-1.14.3" 101691 101581 sources."for-in-1.0.2" 101692 101582 sources."form-data-3.0.1" 101693 101583 sources."forwarded-0.2.0" ··· 101747 101637 ]; 101748 101638 }) 101749 101639 sources."gonzales-pe-4.3.0" 101750 - (sources."got-9.6.0" // { 101640 + (sources."got-10.7.0" // { 101751 101641 dependencies = [ 101752 - sources."get-stream-4.1.0" 101753 - sources."to-readable-stream-1.0.0" 101642 + sources."get-stream-5.2.0" 101643 + sources."type-fest-0.10.0" 101754 101644 ]; 101755 101645 }) 101756 101646 sources."graceful-fs-4.2.8" ··· 101909 101799 sources."js-tokens-4.0.0" 101910 101800 sources."js-yaml-4.1.0" 101911 101801 sources."jsesc-2.5.2" 101912 - sources."json-buffer-3.0.0" 101802 + sources."json-buffer-3.0.1" 101913 101803 sources."json-parse-better-errors-1.0.2" 101914 101804 sources."json-parse-even-better-errors-2.3.1" 101915 101805 sources."json-schema-traverse-1.0.0" ··· 101918 101808 sources."junk-3.1.0" 101919 101809 sources."jwt-decode-3.1.2" 101920 101810 sources."keep-func-props-3.0.1" 101921 - sources."keyv-3.1.0" 101811 + sources."keyv-4.0.3" 101922 101812 sources."kind-of-6.0.3" 101923 101813 sources."kuler-2.0.0" 101924 101814 (sources."lambda-local-2.0.0" // { ··· 102004 101894 sources."ms-2.1.3" 102005 101895 ]; 102006 101896 }) 102007 - sources."lowercase-keys-1.0.1" 101897 + sources."lowercase-keys-2.0.0" 102008 101898 sources."lru-cache-6.0.0" 102009 101899 sources."macos-release-2.5.0" 102010 101900 sources."magic-string-0.25.7" ··· 102041 101931 sources."mime-db-1.49.0" 102042 101932 sources."mime-types-2.1.32" 102043 101933 sources."mimic-fn-3.1.0" 102044 - sources."mimic-response-1.0.1" 101934 + sources."mimic-response-2.1.0" 102045 101935 sources."minimatch-3.0.4" 102046 101936 sources."minimist-1.2.5" 102047 101937 (sources."mixin-deep-1.3.2" // { ··· 102051 101941 }) 102052 101942 sources."mkdirp-0.5.5" 102053 101943 sources."module-definition-3.3.1" 102054 - sources."moize-6.0.3" 101944 + sources."moize-6.1.0" 102055 101945 sources."move-file-2.1.0" 102056 101946 sources."ms-2.0.0" 102057 101947 (sources."multiparty-4.2.2" // { ··· 102076 101966 sources."netlify-redirect-parser-11.0.2" 102077 101967 sources."netlify-redirector-0.2.1" 102078 101968 sources."nice-try-1.0.5" 102079 - sources."node-fetch-2.6.1" 101969 + sources."node-fetch-2.6.2" 102080 101970 sources."node-releases-1.1.75" 102081 101971 sources."node-source-walk-4.2.0" 102082 101972 (sources."node-version-alias-1.0.1" // { ··· 102116 102006 ]; 102117 102007 }) 102118 102008 sources."normalize-path-3.0.0" 102119 - sources."normalize-url-4.5.1" 102009 + sources."normalize-url-6.1.0" 102120 102010 sources."npm-normalize-package-bin-1.0.1" 102121 102011 sources."npm-run-path-4.0.1" 102122 102012 sources."number-is-nan-1.0.1" ··· 102175 102065 sources."p-map-2.1.0" 102176 102066 ]; 102177 102067 }) 102178 - sources."p-cancelable-1.1.0" 102068 + sources."p-cancelable-2.1.1" 102179 102069 (sources."p-event-4.2.0" // { 102180 102070 dependencies = [ 102181 102071 sources."p-timeout-3.2.0" ··· 102206 102096 }) 102207 102097 (sources."package-json-6.5.0" // { 102208 102098 dependencies = [ 102099 + sources."@sindresorhus/is-0.14.0" 102100 + sources."@szmarczak/http-timer-1.1.2" 102101 + (sources."cacheable-request-6.1.0" // { 102102 + dependencies = [ 102103 + sources."get-stream-5.2.0" 102104 + sources."lowercase-keys-2.0.0" 102105 + ]; 102106 + }) 102107 + sources."decompress-response-3.3.0" 102108 + sources."defer-to-connect-1.1.3" 102109 + sources."get-stream-4.1.0" 102110 + sources."got-9.6.0" 102111 + sources."json-buffer-3.0.0" 102112 + sources."keyv-3.1.0" 102113 + sources."lowercase-keys-1.0.1" 102114 + sources."mimic-response-1.0.1" 102115 + sources."normalize-url-4.5.1" 102116 + sources."p-cancelable-1.1.0" 102117 + sources."responselike-1.0.2" 102209 102118 sources."semver-6.3.0" 102119 + sources."to-readable-stream-1.0.0" 102210 102120 ]; 102211 102121 }) 102212 102122 (sources."parallel-transform-1.2.0" // { ··· 102322 102232 sources."requires-port-1.0.0" 102323 102233 sources."resolve-1.20.0" 102324 102234 sources."resolve-url-0.2.1" 102325 - sources."responselike-1.0.2" 102235 + sources."responselike-2.0.0" 102326 102236 (sources."restore-cursor-2.0.0" // { 102327 102237 dependencies = [ 102328 102238 sources."mimic-fn-1.2.0" ··· 102557 102467 sources."type-fest-0.21.3" 102558 102468 sources."type-is-1.6.18" 102559 102469 sources."typedarray-to-buffer-3.1.5" 102560 - sources."typescript-4.3.5" 102470 + sources."typescript-4.4.2" 102561 102471 sources."uid-safe-2.1.5" 102562 102472 sources."unbzip2-stream-1.4.3" 102563 102473 sources."unicode-canonical-property-names-ecmascript-1.0.4" ··· 102706 102616 sources."aggregate-error-3.1.0" 102707 102617 sources."ansi-regex-2.1.1" 102708 102618 sources."aproba-1.2.0" 102709 - sources."are-we-there-yet-1.1.5" 102619 + sources."are-we-there-yet-1.1.7" 102710 102620 sources."balanced-match-1.0.2" 102711 102621 sources."brace-expansion-1.1.11" 102712 102622 sources."cacache-15.3.0" ··· 102715 102625 sources."code-point-at-1.1.0" 102716 102626 sources."concat-map-0.0.1" 102717 102627 sources."console-control-strings-1.1.0" 102718 - sources."core-util-is-1.0.2" 102628 + sources."core-util-is-1.0.3" 102719 102629 sources."debug-4.3.2" 102720 102630 sources."delegates-1.0.0" 102721 102631 sources."depd-1.1.2" ··· 102748 102658 sources."minimatch-3.0.4" 102749 102659 sources."minipass-3.1.3" 102750 102660 sources."minipass-collect-1.0.2" 102751 - sources."minipass-fetch-1.3.4" 102661 + sources."minipass-fetch-1.4.1" 102752 102662 sources."minipass-flush-1.0.5" 102753 102663 sources."minipass-pipeline-1.2.4" 102754 102664 sources."minipass-sized-1.0.3" ··· 102832 102742 sources."ajv-4.11.8" 102833 102743 sources."ansi-regex-2.1.1" 102834 102744 sources."aproba-1.2.0" 102835 - sources."are-we-there-yet-1.1.5" 102745 + sources."are-we-there-yet-1.1.7" 102836 102746 sources."array-find-index-1.0.2" 102837 102747 sources."array-flatten-1.1.1" 102838 102748 sources."asn1-0.2.4" ··· 102866 102776 sources."content-type-1.0.4" 102867 102777 sources."cookie-0.4.0" 102868 102778 sources."cookie-signature-1.0.6" 102869 - sources."core-util-is-1.0.2" 102779 + sources."core-util-is-1.0.3" 102870 102780 sources."cryptiles-2.0.5" 102871 102781 sources."currently-unhandled-0.4.1" 102872 102782 (sources."dashdash-1.14.1" // { ··· 103082 102992 (sources."verror-1.10.0" // { 103083 102993 dependencies = [ 103084 102994 sources."assert-plus-1.0.0" 102995 + sources."core-util-is-1.0.2" 103085 102996 ]; 103086 102997 }) 103087 102998 sources."which-1.3.1" ··· 103127 103038 sources."abbrev-1.1.1" 103128 103039 sources."ansi-regex-2.1.1" 103129 103040 sources."aproba-1.2.0" 103130 - sources."are-we-there-yet-1.1.5" 103041 + sources."are-we-there-yet-1.1.7" 103131 103042 sources."balanced-match-1.0.2" 103132 103043 sources."brace-expansion-1.1.11" 103133 103044 sources."chownr-1.1.4" 103134 103045 sources."code-point-at-1.1.0" 103135 103046 sources."concat-map-0.0.1" 103136 103047 sources."console-control-strings-1.1.0" 103137 - sources."core-util-is-1.0.2" 103048 + sources."core-util-is-1.0.3" 103138 103049 sources."debug-3.2.7" 103139 103050 sources."deep-extend-0.6.0" 103140 103051 sources."delegates-1.0.0" ··· 103157 103068 sources."minizlib-1.3.3" 103158 103069 sources."mkdirp-0.5.5" 103159 103070 sources."ms-2.1.3" 103160 - sources."needle-2.9.0" 103071 + sources."needle-2.9.1" 103161 103072 sources."nopt-4.0.3" 103162 103073 sources."npm-bundled-1.1.2" 103163 103074 sources."npm-normalize-package-bin-1.0.1" ··· 103207 103118 node-red = nodeEnv.buildNodePackage { 103208 103119 name = "node-red"; 103209 103120 packageName = "node-red"; 103210 - version = "2.0.5"; 103121 + version = "2.0.6"; 103211 103122 src = fetchurl { 103212 - url = "https://registry.npmjs.org/node-red/-/node-red-2.0.5.tgz"; 103213 - sha512 = "S3vhm/EqQwEvHDBw/375j4f5vVT9YknfTEeQjbA/Fa2XAK0WLCC+ENLV+4HzkpSAIi+9hmrF3TpdhjVLksmk1A=="; 103123 + url = "https://registry.npmjs.org/node-red/-/node-red-2.0.6.tgz"; 103124 + sha512 = "UdQPwnciQMcFIXjldFhP9XfqBHcFYtAIXDt3be8kp+OZPxRqjxSDI5EuIfxY8QnUK1YVqwDV+5CKDhh97+dA0w=="; 103214 103125 }; 103215 103126 dependencies = [ 103216 - sources."@babel/runtime-7.15.3" 103127 + sources."@babel/runtime-7.15.4" 103217 103128 sources."@mapbox/node-pre-gyp-1.0.5" 103218 - sources."@node-red/editor-api-2.0.5" 103219 - sources."@node-red/editor-client-2.0.5" 103220 - (sources."@node-red/nodes-2.0.5" // { 103129 + sources."@node-red/editor-api-2.0.6" 103130 + sources."@node-red/editor-client-2.0.6" 103131 + (sources."@node-red/nodes-2.0.6" // { 103221 103132 dependencies = [ 103222 103133 sources."http-errors-1.7.3" 103223 103134 sources."iconv-lite-0.6.3" ··· 103230 103141 }) 103231 103142 ]; 103232 103143 }) 103233 - sources."@node-red/registry-2.0.5" 103234 - sources."@node-red/runtime-2.0.5" 103235 - sources."@node-red/util-2.0.5" 103144 + sources."@node-red/registry-2.0.6" 103145 + sources."@node-red/runtime-2.0.6" 103146 + sources."@node-red/util-2.0.6" 103236 103147 sources."@sindresorhus/is-4.0.1" 103237 103148 sources."@szmarczak/http-timer-4.0.6" 103238 103149 sources."@types/cacheable-request-6.0.2" 103239 103150 sources."@types/http-cache-semantics-4.0.1" 103240 - sources."@types/keyv-3.1.2" 103241 - sources."@types/node-16.7.2" 103151 + sources."@types/keyv-3.1.3" 103152 + sources."@types/node-16.7.13" 103242 103153 sources."@types/responselike-1.0.0" 103243 103154 sources."abbrev-1.1.1" 103244 103155 sources."accepts-1.3.7" ··· 103250 103161 sources."ms-2.1.2" 103251 103162 ]; 103252 103163 }) 103253 - sources."ajv-8.6.0" 103164 + sources."ajv-8.6.2" 103254 103165 sources."ansi-colors-4.1.1" 103255 103166 sources."ansi-regex-2.1.1" 103256 103167 sources."append-field-1.0.0" 103257 103168 sources."aproba-1.2.0" 103258 - (sources."are-we-there-yet-1.1.5" // { 103169 + (sources."are-we-there-yet-1.1.7" // { 103259 103170 dependencies = [ 103260 103171 sources."isarray-1.0.0" 103261 103172 sources."readable-stream-2.3.7" ··· 103266 103177 sources."argparse-1.0.10" 103267 103178 sources."array-flatten-1.1.1" 103268 103179 sources."async-0.1.22" 103269 - sources."async-mutex-0.3.1" 103180 + sources."async-mutex-0.3.2" 103270 103181 sources."asynckit-0.4.0" 103271 103182 sources."axios-0.21.1" 103272 103183 sources."balanced-match-1.0.2" ··· 103327 103238 ]; 103328 103239 }) 103329 103240 sources."cookie-signature-1.0.6" 103330 - sources."core-util-is-1.0.2" 103241 + sources."core-util-is-1.0.3" 103331 103242 sources."cors-2.8.5" 103332 103243 sources."cronosjs-1.7.1" 103333 103244 sources."css-select-4.1.3" ··· 103348 103259 sources."dicer-0.2.5" 103349 103260 sources."dom-serializer-1.3.2" 103350 103261 sources."domelementtype-2.2.0" 103351 - sources."domhandler-4.2.0" 103352 - sources."domutils-2.7.0" 103262 + sources."domhandler-4.2.2" 103263 + sources."domutils-2.8.0" 103353 103264 (sources."duplexify-4.1.2" // { 103354 103265 dependencies = [ 103355 103266 sources."readable-stream-3.6.0" ··· 103377 103288 }) 103378 103289 sources."fast-deep-equal-3.1.3" 103379 103290 sources."finalhandler-1.1.2" 103380 - sources."follow-redirects-1.14.2" 103291 + sources."follow-redirects-1.14.3" 103381 103292 sources."form-data-4.0.0" 103382 103293 sources."forwarded-0.2.0" 103383 103294 sources."fresh-0.5.2" ··· 103426 103337 sources."json-buffer-3.0.1" 103427 103338 sources."json-schema-traverse-1.0.0" 103428 103339 sources."json-stringify-safe-5.0.1" 103429 - sources."jsonata-1.8.4" 103340 + sources."jsonata-1.8.5" 103430 103341 (sources."jsonfile-6.1.0" // { 103431 103342 dependencies = [ 103432 103343 sources."universalify-2.0.0" ··· 103486 103397 ]; 103487 103398 }) 103488 103399 sources."ms-2.0.0" 103489 - sources."multer-1.4.2" 103400 + sources."multer-1.4.3" 103490 103401 sources."mustache-4.2.0" 103491 103402 sources."mute-stream-0.0.8" 103492 103403 sources."negotiator-0.6.2" 103493 103404 sources."node-addon-api-3.2.1" 103494 - sources."node-fetch-2.6.1" 103405 + sources."node-fetch-2.6.2" 103495 103406 sources."node-red-admin-2.2.0" 103496 103407 sources."nopt-5.0.0" 103497 103408 sources."normalize-url-6.1.0" ··· 103530 103441 sources."regenerator-runtime-0.13.9" 103531 103442 sources."reinterval-1.1.0" 103532 103443 sources."require-from-string-2.0.2" 103533 - sources."resolve-alpn-1.2.0" 103444 + sources."resolve-alpn-1.2.1" 103534 103445 sources."responselike-2.0.0" 103535 103446 sources."retry-0.6.1" 103536 103447 sources."rimraf-3.0.2" ··· 103566 103477 sources."string-width-1.0.2" 103567 103478 sources."string_decoder-0.10.31" 103568 103479 sources."strip-ansi-3.0.1" 103569 - (sources."tar-6.1.2" // { 103480 + (sources."tar-6.1.11" // { 103570 103481 dependencies = [ 103571 103482 sources."mkdirp-1.0.4" 103572 103483 sources."yallist-4.0.0" ··· 103577 103488 sources."tslib-2.3.1" 103578 103489 sources."type-is-1.6.18" 103579 103490 sources."typedarray-0.0.6" 103580 - sources."uglify-js-3.13.10" 103491 + sources."uglify-js-3.14.1" 103581 103492 sources."uid-safe-2.1.5" 103582 103493 sources."uid2-0.0.4" 103583 103494 sources."universalify-0.1.2" ··· 103618 103529 sources."ajv-6.12.6" 103619 103530 sources."ansi-regex-2.1.1" 103620 103531 sources."aproba-1.2.0" 103621 - sources."are-we-there-yet-1.1.5" 103532 + sources."are-we-there-yet-1.1.7" 103622 103533 sources."asn1-0.2.4" 103623 103534 sources."assert-plus-1.0.0" 103624 103535 sources."asynckit-0.4.0" ··· 103638 103549 sources."concat-stream-1.6.2" 103639 103550 sources."config-chain-1.1.13" 103640 103551 sources."console-control-strings-1.1.0" 103641 - sources."core-util-is-1.0.2" 103552 + sources."core-util-is-1.0.3" 103642 103553 sources."dashdash-1.14.1" 103643 103554 sources."delayed-stream-1.0.0" 103644 103555 sources."delegates-1.0.0" ··· 103783 103694 sources."uuid-3.4.0" 103784 103695 sources."validate-npm-package-license-3.0.4" 103785 103696 sources."validate-npm-package-name-3.0.0" 103786 - sources."verror-1.10.0" 103697 + (sources."verror-1.10.0" // { 103698 + dependencies = [ 103699 + sources."core-util-is-1.0.2" 103700 + ]; 103701 + }) 103787 103702 sources."walk-2.3.14" 103788 103703 sources."wide-align-1.1.3" 103789 103704 sources."wrappy-1.0.2" ··· 103996 103911 sources."@szmarczak/http-timer-4.0.6" 103997 103912 sources."@types/cacheable-request-6.0.2" 103998 103913 sources."@types/http-cache-semantics-4.0.1" 103999 - sources."@types/keyv-3.1.2" 103914 + sources."@types/keyv-3.1.3" 104000 103915 sources."@types/minimist-1.2.2" 104001 - sources."@types/node-16.7.2" 103916 + sources."@types/node-16.7.13" 104002 103917 sources."@types/normalize-package-data-2.4.1" 104003 103918 sources."@types/parse-json-4.0.0" 104004 103919 sources."@types/responselike-1.0.0" ··· 104502 104417 npm = nodeEnv.buildNodePackage { 104503 104418 name = "npm"; 104504 104419 packageName = "npm"; 104505 - version = "7.21.0"; 104420 + version = "7.22.0"; 104506 104421 src = fetchurl { 104507 - url = "https://registry.npmjs.org/npm/-/npm-7.21.0.tgz"; 104508 - sha512 = "OYSQykXItCDXYGb9U8o85Snhmbe0k/nwVK6CmUNmgtOcfPevVB5ZXwA44eWOCvM+WdWYQsJAJoA7eCHKImQt8g=="; 104422 + url = "https://registry.npmjs.org/npm/-/npm-7.22.0.tgz"; 104423 + sha512 = "HJnjTCrGGnacPMCSnrxuHGf2H4VdrY7hwTAK1RwByg0K96KIuTR4QNioFW+bnc/pW0uwpk9lLsDf4BeEQhTv2Q=="; 104509 104424 }; 104510 104425 buildInputs = globalBuildInputs; 104511 104426 meta = { ··· 104520 104435 npm-check-updates = nodeEnv.buildNodePackage { 104521 104436 name = "npm-check-updates"; 104522 104437 packageName = "npm-check-updates"; 104523 - version = "11.8.3"; 104438 + version = "11.8.5"; 104524 104439 src = fetchurl { 104525 - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.8.3.tgz"; 104526 - sha512 = "NslIB6Af7GagVrN+bvBkObLyawIZfOnDnl8n9MHE+dFt0aChRYtvR6T2BLJKzOPIepCLmmh0NRR/qha0ExAELQ=="; 104440 + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.8.5.tgz"; 104441 + sha512 = "IYSHjlWe8UEugDy7X0qjBeJwcni4DlcWdBK4QQEbwgkNlEDlXyd4yQJYWFumKaJzrp/n5/EcvaboXsBD1Er/pw=="; 104527 104442 }; 104528 104443 dependencies = [ 104529 104444 sources."@gar/promisify-1.1.2" ··· 104556 104471 sources."ansi-regex-2.1.1" 104557 104472 sources."ansi-styles-4.3.0" 104558 104473 sources."aproba-1.2.0" 104559 - sources."are-we-there-yet-1.1.5" 104474 + sources."are-we-there-yet-1.1.7" 104560 104475 sources."argparse-2.0.1" 104561 104476 sources."array-union-2.1.0" 104562 104477 sources."asn1-0.2.4" ··· 104604 104519 sources."concat-map-0.0.1" 104605 104520 sources."configstore-5.0.1" 104606 104521 sources."console-control-strings-1.1.0" 104607 - sources."core-util-is-1.0.2" 104522 + sources."core-util-is-1.0.3" 104608 104523 sources."crypto-random-string-2.0.0" 104609 104524 sources."dashdash-1.14.1" 104610 104525 sources."debug-4.3.2" ··· 104734 104649 sources."minimist-1.2.5" 104735 104650 sources."minipass-3.1.3" 104736 104651 sources."minipass-collect-1.0.2" 104737 - sources."minipass-fetch-1.3.4" 104652 + sources."minipass-fetch-1.4.1" 104738 104653 sources."minipass-flush-1.0.5" 104739 104654 sources."minipass-json-stream-1.0.1" 104740 104655 sources."minipass-pipeline-1.2.4" ··· 104842 104757 sources."util-deprecate-1.0.2" 104843 104758 sources."uuid-3.4.0" 104844 104759 sources."validate-npm-package-name-3.0.0" 104845 - sources."verror-1.10.0" 104760 + (sources."verror-1.10.0" // { 104761 + dependencies = [ 104762 + sources."core-util-is-1.0.2" 104763 + ]; 104764 + }) 104846 104765 sources."which-2.0.2" 104847 104766 sources."wide-align-1.1.3" 104848 104767 (sources."widest-line-3.1.0" // { ··· 104911 104830 sources."ajv-6.12.6" 104912 104831 sources."ansi-regex-3.0.0" 104913 104832 sources."aproba-2.0.0" 104914 - sources."are-we-there-yet-1.1.5" 104833 + sources."are-we-there-yet-2.0.0" 104915 104834 sources."argparse-0.1.15" 104916 104835 sources."asn1-0.2.4" 104917 104836 sources."assert-plus-1.0.0" ··· 104974 104893 sources."ini-1.1.0" 104975 104894 sources."is-fullwidth-code-point-2.0.0" 104976 104895 sources."is-typedarray-1.0.0" 104977 - sources."isarray-1.0.0" 104978 104896 sources."isstream-0.1.2" 104979 104897 sources."jsbn-0.1.1" 104980 104898 sources."json-schema-0.2.3" ··· 105002 104920 sources."semver-2.3.2" 105003 104921 ]; 105004 104922 }) 105005 - sources."npmlog-5.0.0" 104923 + sources."npmlog-5.0.1" 105006 104924 sources."oauth-sign-0.9.0" 105007 104925 sources."object-assign-4.1.1" 105008 104926 sources."once-1.4.0" 105009 104927 sources."osenv-0.0.3" 105010 104928 sources."path-is-absolute-1.0.1" 105011 104929 sources."performance-now-2.1.0" 105012 - sources."process-nextick-args-2.0.1" 105013 104930 sources."proto-list-1.2.4" 105014 104931 sources."psl-1.8.0" 105015 104932 sources."punycode-2.1.1" 105016 104933 sources."qs-6.5.2" 105017 - (sources."readable-stream-2.3.7" // { 105018 - dependencies = [ 105019 - sources."safe-buffer-5.1.2" 105020 - ]; 105021 - }) 104934 + sources."readable-stream-3.6.0" 105022 104935 sources."request-2.88.2" 105023 104936 sources."retry-0.6.0" 105024 104937 sources."rimraf-2.7.1" ··· 105030 104943 sources."slide-1.1.6" 105031 104944 sources."sshpk-1.16.1" 105032 104945 sources."string-width-2.1.1" 105033 - (sources."string_decoder-1.1.1" // { 105034 - dependencies = [ 105035 - sources."safe-buffer-5.1.2" 105036 - ]; 105037 - }) 104946 + sources."string_decoder-1.3.0" 105038 104947 sources."strip-ansi-4.0.0" 105039 104948 (sources."tar-0.1.17" // { 105040 104949 dependencies = [ ··· 105122 105031 dependencies = [ 105123 105032 sources."@babel/code-frame-7.14.5" 105124 105033 sources."@babel/compat-data-7.15.0" 105125 - (sources."@babel/core-7.15.0" // { 105034 + (sources."@babel/core-7.15.5" // { 105126 105035 dependencies = [ 105127 105036 sources."json5-2.2.0" 105128 105037 sources."semver-6.3.0" 105129 105038 sources."source-map-0.5.7" 105130 105039 ]; 105131 105040 }) 105132 - (sources."@babel/generator-7.15.0" // { 105041 + (sources."@babel/generator-7.15.4" // { 105133 105042 dependencies = [ 105134 105043 sources."source-map-0.5.7" 105135 105044 ]; 105136 105045 }) 105137 - sources."@babel/helper-annotate-as-pure-7.14.5" 105138 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 105139 - (sources."@babel/helper-compilation-targets-7.15.0" // { 105046 + sources."@babel/helper-annotate-as-pure-7.15.4" 105047 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 105048 + (sources."@babel/helper-compilation-targets-7.15.4" // { 105140 105049 dependencies = [ 105141 105050 sources."semver-6.3.0" 105142 105051 ]; 105143 105052 }) 105144 - sources."@babel/helper-create-class-features-plugin-7.15.0" 105053 + sources."@babel/helper-create-class-features-plugin-7.15.4" 105145 105054 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 105146 105055 (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 105147 105056 dependencies = [ 105148 105057 sources."semver-6.3.0" 105149 105058 ]; 105150 105059 }) 105151 - sources."@babel/helper-explode-assignable-expression-7.14.5" 105152 - sources."@babel/helper-function-name-7.14.5" 105153 - sources."@babel/helper-get-function-arity-7.14.5" 105154 - sources."@babel/helper-hoist-variables-7.14.5" 105155 - sources."@babel/helper-member-expression-to-functions-7.15.0" 105156 - sources."@babel/helper-module-imports-7.14.5" 105157 - sources."@babel/helper-module-transforms-7.15.0" 105158 - sources."@babel/helper-optimise-call-expression-7.14.5" 105060 + sources."@babel/helper-explode-assignable-expression-7.15.4" 105061 + sources."@babel/helper-function-name-7.15.4" 105062 + sources."@babel/helper-get-function-arity-7.15.4" 105063 + sources."@babel/helper-hoist-variables-7.15.4" 105064 + sources."@babel/helper-member-expression-to-functions-7.15.4" 105065 + sources."@babel/helper-module-imports-7.15.4" 105066 + sources."@babel/helper-module-transforms-7.15.4" 105067 + sources."@babel/helper-optimise-call-expression-7.15.4" 105159 105068 sources."@babel/helper-plugin-utils-7.14.5" 105160 - sources."@babel/helper-remap-async-to-generator-7.14.5" 105161 - sources."@babel/helper-replace-supers-7.15.0" 105162 - sources."@babel/helper-simple-access-7.14.8" 105163 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 105164 - sources."@babel/helper-split-export-declaration-7.14.5" 105069 + sources."@babel/helper-remap-async-to-generator-7.15.4" 105070 + sources."@babel/helper-replace-supers-7.15.4" 105071 + sources."@babel/helper-simple-access-7.15.4" 105072 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 105073 + sources."@babel/helper-split-export-declaration-7.15.4" 105165 105074 sources."@babel/helper-validator-identifier-7.14.9" 105166 105075 sources."@babel/helper-validator-option-7.14.5" 105167 - sources."@babel/helper-wrap-function-7.14.5" 105168 - sources."@babel/helpers-7.15.3" 105076 + sources."@babel/helper-wrap-function-7.15.4" 105077 + sources."@babel/helpers-7.15.4" 105169 105078 sources."@babel/highlight-7.14.5" 105170 - sources."@babel/parser-7.15.3" 105171 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 105172 - sources."@babel/plugin-proposal-async-generator-functions-7.14.9" 105079 + sources."@babel/parser-7.15.5" 105080 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 105081 + sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 105173 105082 sources."@babel/plugin-proposal-class-properties-7.14.5" 105174 - sources."@babel/plugin-proposal-class-static-block-7.14.5" 105083 + sources."@babel/plugin-proposal-class-static-block-7.15.4" 105175 105084 sources."@babel/plugin-proposal-dynamic-import-7.14.5" 105176 105085 sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 105177 105086 sources."@babel/plugin-proposal-json-strings-7.14.5" ··· 105182 105091 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 105183 105092 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 105184 105093 sources."@babel/plugin-proposal-private-methods-7.14.5" 105185 - sources."@babel/plugin-proposal-private-property-in-object-7.14.5" 105094 + sources."@babel/plugin-proposal-private-property-in-object-7.15.4" 105186 105095 sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 105187 105096 sources."@babel/plugin-syntax-async-generators-7.8.4" 105188 105097 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 105204 105113 sources."@babel/plugin-transform-async-to-generator-7.14.5" 105205 105114 sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 105206 105115 sources."@babel/plugin-transform-block-scoping-7.15.3" 105207 - sources."@babel/plugin-transform-classes-7.14.9" 105116 + sources."@babel/plugin-transform-classes-7.15.4" 105208 105117 sources."@babel/plugin-transform-computed-properties-7.14.5" 105209 105118 sources."@babel/plugin-transform-destructuring-7.14.7" 105210 105119 sources."@babel/plugin-transform-dotall-regex-7.14.5" 105211 105120 sources."@babel/plugin-transform-duplicate-keys-7.14.5" 105212 105121 sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 105213 105122 sources."@babel/plugin-transform-flow-strip-types-7.14.5" 105214 - sources."@babel/plugin-transform-for-of-7.14.5" 105123 + sources."@babel/plugin-transform-for-of-7.15.4" 105215 105124 sources."@babel/plugin-transform-function-name-7.14.5" 105216 105125 sources."@babel/plugin-transform-literals-7.14.5" 105217 105126 sources."@babel/plugin-transform-member-expression-literals-7.14.5" 105218 105127 sources."@babel/plugin-transform-modules-amd-7.14.5" 105219 - sources."@babel/plugin-transform-modules-commonjs-7.15.0" 105220 - sources."@babel/plugin-transform-modules-systemjs-7.14.5" 105128 + sources."@babel/plugin-transform-modules-commonjs-7.15.4" 105129 + sources."@babel/plugin-transform-modules-systemjs-7.15.4" 105221 105130 sources."@babel/plugin-transform-modules-umd-7.14.5" 105222 105131 sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 105223 105132 sources."@babel/plugin-transform-new-target-7.14.5" 105224 105133 sources."@babel/plugin-transform-object-super-7.14.5" 105225 - sources."@babel/plugin-transform-parameters-7.14.5" 105134 + sources."@babel/plugin-transform-parameters-7.15.4" 105226 105135 sources."@babel/plugin-transform-property-literals-7.14.5" 105227 105136 sources."@babel/plugin-transform-react-jsx-7.14.9" 105228 105137 sources."@babel/plugin-transform-regenerator-7.14.5" ··· 105234 105143 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 105235 105144 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 105236 105145 sources."@babel/plugin-transform-unicode-regex-7.14.5" 105237 - (sources."@babel/preset-env-7.15.0" // { 105146 + (sources."@babel/preset-env-7.15.4" // { 105238 105147 dependencies = [ 105239 105148 sources."semver-6.3.0" 105240 105149 ]; 105241 105150 }) 105242 105151 sources."@babel/preset-modules-0.1.4" 105243 - sources."@babel/runtime-7.15.3" 105244 - sources."@babel/template-7.14.5" 105245 - sources."@babel/traverse-7.15.0" 105246 - sources."@babel/types-7.15.0" 105152 + sources."@babel/runtime-7.15.4" 105153 + sources."@babel/template-7.15.4" 105154 + sources."@babel/traverse-7.15.4" 105155 + sources."@babel/types-7.15.4" 105247 105156 sources."@iarna/toml-2.2.5" 105248 105157 sources."@mrmlnc/readdir-enhanced-2.2.1" 105249 105158 sources."@nodelib/fs.stat-1.1.3" ··· 105348 105257 sources."pako-1.0.11" 105349 105258 ]; 105350 105259 }) 105351 - sources."browserslist-4.16.8" 105260 + sources."browserslist-4.17.0" 105352 105261 (sources."buffer-4.9.2" // { 105353 105262 dependencies = [ 105354 105263 sources."isarray-1.0.0" ··· 105365 105274 sources."caller-path-2.0.0" 105366 105275 sources."callsites-2.0.0" 105367 105276 sources."caniuse-api-3.0.0" 105368 - sources."caniuse-lite-1.0.30001252" 105277 + sources."caniuse-lite-1.0.30001255" 105369 105278 sources."caseless-0.12.0" 105370 105279 sources."chalk-2.4.2" 105371 105280 sources."chokidar-2.1.8" ··· 105380 105289 sources."color-convert-1.9.3" 105381 105290 sources."color-name-1.1.3" 105382 105291 sources."color-string-1.6.0" 105383 - sources."colorette-1.3.0" 105292 + sources."colorette-1.4.0" 105384 105293 sources."combined-stream-1.0.8" 105385 105294 sources."command-exists-1.2.9" 105386 105295 sources."commander-2.20.3" ··· 105392 105301 sources."convert-source-map-1.8.0" 105393 105302 sources."copy-descriptor-0.1.1" 105394 105303 sources."core-js-2.6.12" 105395 - (sources."core-js-compat-3.16.3" // { 105304 + (sources."core-js-compat-3.17.2" // { 105396 105305 dependencies = [ 105397 105306 sources."semver-7.0.0" 105398 105307 ]; 105399 105308 }) 105400 - sources."core-util-is-1.0.2" 105309 + sources."core-util-is-1.0.3" 105401 105310 sources."cosmiconfig-5.2.1" 105402 105311 (sources."create-ecdh-4.0.4" // { 105403 105312 dependencies = [ ··· 105451 105360 sources."deasync-0.1.23" 105452 105361 sources."debug-4.3.2" 105453 105362 sources."decode-uri-component-0.2.0" 105454 - sources."deep-is-0.1.3" 105363 + sources."deep-is-0.1.4" 105455 105364 (sources."defaults-1.0.3" // { 105456 105365 dependencies = [ 105457 105366 sources."clone-1.0.4" ··· 105491 105400 sources."domain-browser-1.2.0" 105492 105401 sources."domelementtype-1.3.1" 105493 105402 sources."domexception-1.0.1" 105494 - (sources."domhandler-4.2.0" // { 105403 + (sources."domhandler-4.2.2" // { 105495 105404 dependencies = [ 105496 105405 sources."domelementtype-2.2.0" 105497 105406 ]; ··· 105503 105412 sources."duplexer2-0.1.4" 105504 105413 sources."ecc-jsbn-0.1.2" 105505 105414 sources."ee-first-1.1.1" 105506 - sources."electron-to-chromium-1.3.818" 105415 + sources."electron-to-chromium-1.3.832" 105507 105416 (sources."elliptic-6.5.4" // { 105508 105417 dependencies = [ 105509 105418 sources."bn.js-4.12.0" ··· 105513 105422 sources."entities-2.2.0" 105514 105423 sources."envinfo-7.8.1" 105515 105424 sources."error-ex-1.3.2" 105516 - (sources."es-abstract-1.18.5" // { 105425 + (sources."es-abstract-1.18.6" // { 105517 105426 dependencies = [ 105518 105427 sources."object-inspect-1.11.0" 105519 105428 ]; ··· 105564 105473 sources."gensync-1.0.0-beta.2" 105565 105474 sources."get-intrinsic-1.1.1" 105566 105475 sources."get-port-3.2.0" 105476 + sources."get-symbol-description-1.0.0" 105567 105477 sources."get-value-2.0.6" 105568 105478 sources."getpass-0.1.7" 105569 105479 sources."glob-7.1.7" ··· 105619 105529 dependencies = [ 105620 105530 sources."dom-serializer-1.3.2" 105621 105531 sources."domelementtype-2.2.0" 105622 - sources."domutils-2.7.0" 105532 + sources."domutils-2.8.0" 105623 105533 ]; 105624 105534 }) 105625 105535 sources."http-errors-1.7.3" ··· 106102 106012 sources."uuid-3.4.0" 106103 106013 sources."v8-compile-cache-2.3.0" 106104 106014 sources."vendors-1.0.4" 106105 - sources."verror-1.10.0" 106015 + (sources."verror-1.10.0" // { 106016 + dependencies = [ 106017 + sources."core-util-is-1.0.2" 106018 + ]; 106019 + }) 106106 106020 sources."vlq-0.2.3" 106107 106021 sources."vm-browserify-1.1.2" 106108 106022 sources."w3c-hr-time-1.0.2" ··· 106382 106296 sources."tunnel-agent-0.6.0" 106383 106297 sources."tweetnacl-0.14.5" 106384 106298 sources."type-is-1.6.18" 106385 - sources."uglify-js-3.14.1" 106299 + sources."uglify-js-3.14.2" 106386 106300 sources."unix-dgram-2.0.4" 106387 106301 sources."unpipe-1.0.0" 106388 106302 sources."uri-js-4.4.1" ··· 106556 106470 sources."concat-stream-1.6.2" 106557 106471 sources."consume-http-header-1.0.0" 106558 106472 sources."consume-until-1.0.0" 106559 - sources."core-util-is-1.0.2" 106473 + sources."core-util-is-1.0.3" 106560 106474 sources."currently-unhandled-0.4.1" 106561 106475 sources."cyclist-0.1.1" 106562 106476 sources."debug-2.6.9" ··· 106882 106796 sources."content-type-1.0.4" 106883 106797 sources."cookie-0.4.0" 106884 106798 sources."cookie-signature-1.0.6" 106885 - sources."core-util-is-1.0.2" 106799 + sources."core-util-is-1.0.3" 106886 106800 sources."crc-3.8.0" 106887 106801 sources."crc32-stream-3.0.1" 106888 106802 sources."cyclist-0.1.1" ··· 107149 107063 sources."utp-0.0.7" 107150 107064 sources."uuid-3.4.0" 107151 107065 sources."vary-1.1.2" 107152 - sources."verror-1.10.0" 107066 + (sources."verror-1.10.0" // { 107067 + dependencies = [ 107068 + sources."core-util-is-1.0.2" 107069 + ]; 107070 + }) 107153 107071 sources."which-1.3.1" 107154 107072 sources."wrappy-1.0.2" 107155 107073 sources."ws-7.4.6" ··· 107187 107105 sources."ansi-regex-5.0.0" 107188 107106 sources."ansi-styles-4.3.0" 107189 107107 sources."aproba-1.2.0" 107190 - sources."are-we-there-yet-1.1.5" 107108 + sources."are-we-there-yet-1.1.7" 107191 107109 sources."array-union-2.1.0" 107192 107110 sources."at-least-node-1.0.0" 107193 107111 sources."base64-js-1.5.1" ··· 107205 107123 sources."color-convert-2.0.1" 107206 107124 sources."color-name-1.1.4" 107207 107125 sources."console-control-strings-1.1.0" 107208 - sources."core-util-is-1.0.2" 107126 + sources."core-util-is-1.0.3" 107209 107127 sources."debug-4.3.2" 107210 107128 sources."decompress-response-4.2.1" 107211 107129 sources."deep-extend-0.6.0" 107212 - sources."deep-is-0.1.3" 107130 + sources."deep-is-0.1.4" 107213 107131 sources."delegates-1.0.0" 107214 107132 sources."detect-libc-1.0.3" 107215 107133 sources."dir-glob-3.0.1" ··· 107273 107191 ]; 107274 107192 }) 107275 107193 sources."napi-build-utils-1.0.2" 107276 - (sources."node-abi-2.30.0" // { 107194 + (sources."node-abi-2.30.1" // { 107277 107195 dependencies = [ 107278 107196 sources."semver-5.7.1" 107279 107197 ]; 107280 107198 }) 107281 - sources."node-fetch-2.6.1" 107199 + sources."node-fetch-2.6.2" 107282 107200 sources."noop-logger-0.1.1" 107283 107201 sources."npmlog-4.1.2" 107284 107202 sources."number-is-nan-1.0.1" ··· 107415 107333 sources."semver-5.7.1" 107416 107334 ]; 107417 107335 }) 107418 - sources."axios-0.21.1" 107336 + sources."axios-0.21.4" 107419 107337 sources."balanced-match-1.0.2" 107420 107338 sources."binary-extensions-2.2.0" 107421 107339 sources."blessed-0.1.81" ··· 107433 107351 sources."commander-2.15.1" 107434 107352 sources."concat-map-0.0.1" 107435 107353 sources."continuation-local-storage-3.2.1" 107436 - sources."core-util-is-1.0.2" 107354 + sources."core-util-is-1.0.3" 107437 107355 sources."cron-1.8.2" 107438 107356 sources."culvert-0.1.2" 107439 107357 sources."data-uri-to-buffer-3.0.1" 107440 107358 sources."dayjs-1.8.36" 107441 107359 sources."debug-4.3.2" 107442 - sources."deep-is-0.1.3" 107360 + sources."deep-is-0.1.4" 107443 107361 sources."degenerator-2.2.0" 107444 107362 sources."depd-1.1.2" 107445 107363 sources."emitter-listener-1.1.2" ··· 107455 107373 sources."fclone-1.0.11" 107456 107374 sources."file-uri-to-path-2.0.0" 107457 107375 sources."fill-range-7.0.1" 107458 - sources."follow-redirects-1.14.2" 107376 + sources."follow-redirects-1.14.3" 107459 107377 sources."fs-extra-8.1.0" 107460 107378 sources."fs.realpath-1.0.0" 107461 107379 sources."fsevents-2.3.2" ··· 107556 107474 sources."statuses-1.5.0" 107557 107475 sources."string_decoder-0.10.31" 107558 107476 sources."supports-color-7.2.0" 107559 - sources."systeminformation-5.8.6" 107477 + sources."systeminformation-5.8.7" 107560 107478 sources."to-regex-range-5.0.1" 107561 107479 sources."toidentifier-1.0.0" 107562 107480 sources."tslib-2.3.1" ··· 107591 107509 pnpm = nodeEnv.buildNodePackage { 107592 107510 name = "pnpm"; 107593 107511 packageName = "pnpm"; 107594 - version = "6.14.3"; 107512 + version = "6.14.7"; 107595 107513 src = fetchurl { 107596 - url = "https://registry.npmjs.org/pnpm/-/pnpm-6.14.3.tgz"; 107597 - sha512 = "9fU65+uSa2kB5+/b2crLT3lLcauExf9v6vPkDa4javQVnrz3/HDa6TLEshgo5BXXks3wThq+eCrDlVvD7AUwOQ=="; 107514 + url = "https://registry.npmjs.org/pnpm/-/pnpm-6.14.7.tgz"; 107515 + sha512 = "/pjz4Eod3Heyxw/QCGLYpkZR8YNuzTTblgcVC+qvvYCtX0Wb5J9jVcbHoSRqC2jeo4ldtg8H9dssPlHlH50I7w=="; 107598 107516 }; 107599 107517 buildInputs = globalBuildInputs; 107600 107518 meta = { ··· 107643 107561 sha512 = "wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A=="; 107644 107562 }; 107645 107563 dependencies = [ 107646 - sources."colorette-1.3.0" 107564 + sources."colorette-1.4.0" 107647 107565 sources."nanoid-3.1.25" 107648 107566 sources."source-map-js-0.6.2" 107649 107567 ]; ··· 107681 107599 sources."cliui-7.0.4" 107682 107600 sources."color-convert-2.0.1" 107683 107601 sources."color-name-1.1.4" 107684 - sources."colorette-1.3.0" 107602 + sources."colorette-1.4.0" 107685 107603 sources."dependency-graph-0.9.0" 107686 107604 sources."dir-glob-3.0.1" 107687 107605 sources."emoji-regex-8.0.0" ··· 107901 107819 sources."console-browserify-1.2.0" 107902 107820 sources."constants-browserify-1.0.0" 107903 107821 sources."convert-source-map-1.1.3" 107904 - sources."core-util-is-1.0.2" 107822 + sources."core-util-is-1.0.3" 107905 107823 (sources."create-ecdh-4.0.4" // { 107906 107824 dependencies = [ 107907 107825 sources."bn.js-4.12.0" ··· 107930 107848 sources."es6-promise-3.3.1" 107931 107849 sources."events-2.1.0" 107932 107850 sources."evp_bytestokey-1.0.3" 107933 - sources."fast-safe-stringify-2.0.8" 107851 + sources."fast-safe-stringify-2.1.0" 107934 107852 sources."fs.realpath-1.0.0" 107935 107853 sources."function-bind-1.1.1" 107936 107854 sources."gaze-1.1.3" ··· 108097 108015 purescript-language-server = nodeEnv.buildNodePackage { 108098 108016 name = "purescript-language-server"; 108099 108017 packageName = "purescript-language-server"; 108100 - version = "0.15.4"; 108018 + version = "0.15.5"; 108101 108019 src = fetchurl { 108102 - url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.4.tgz"; 108103 - sha512 = "llUv605I8yvraO98rb5RmmqPdpWBno7IpIlgNlX3Nq3Q4lvB7G0OxGK89JuAoVZ8T/xkTzhjyuzw0sty0DoY3Q=="; 108020 + url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.5.tgz"; 108021 + sha512 = "Km6LOus92Rab315/OhnILwslCseXbl8s53m0T8te0SYeYgNfUnxVh4/m/r217PAApicemaT3ZMdnXrtAZJ5U6Q=="; 108104 108022 }; 108105 108023 dependencies = [ 108106 108024 sources."isexe-2.0.0" ··· 108171 108089 dependencies = [ 108172 108090 sources."@sindresorhus/is-0.14.0" 108173 108091 sources."@szmarczak/http-timer-1.1.2" 108092 + sources."@ungap/promise-all-settled-1.1.2" 108174 108093 sources."agent-base-6.0.2" 108094 + sources."ansi-colors-4.1.1" 108095 + sources."ansi-regex-3.0.0" 108096 + sources."ansi-styles-4.3.0" 108097 + sources."anymatch-3.1.2" 108175 108098 sources."appdata-path-1.0.0" 108099 + sources."argparse-2.0.1" 108176 108100 sources."at-least-node-1.0.0" 108177 - sources."axios-0.21.1" 108101 + sources."axios-0.21.4" 108102 + sources."balanced-match-1.0.2" 108103 + sources."binary-extensions-2.2.0" 108178 108104 sources."blueimp-md5-2.18.0" 108105 + sources."brace-expansion-1.1.11" 108106 + sources."braces-3.0.2" 108107 + sources."browser-stdout-1.3.1" 108179 108108 (sources."cacheable-request-6.1.0" // { 108180 108109 dependencies = [ 108181 108110 sources."get-stream-5.2.0" ··· 108183 108112 ]; 108184 108113 }) 108185 108114 sources."call-bind-1.0.2" 108115 + sources."camelcase-6.2.0" 108116 + (sources."chalk-4.1.2" // { 108117 + dependencies = [ 108118 + sources."supports-color-7.2.0" 108119 + ]; 108120 + }) 108121 + sources."chokidar-3.5.1" 108122 + (sources."cliui-7.0.4" // { 108123 + dependencies = [ 108124 + sources."ansi-regex-5.0.0" 108125 + sources."is-fullwidth-code-point-3.0.0" 108126 + sources."string-width-4.2.2" 108127 + sources."strip-ansi-6.0.0" 108128 + ]; 108129 + }) 108186 108130 sources."clone-response-1.0.2" 108131 + sources."color-convert-2.0.1" 108132 + sources."color-name-1.1.4" 108187 108133 sources."colors-1.4.0" 108188 108134 sources."commander-5.1.0" 108189 108135 sources."compare-versions-3.6.0" 108136 + sources."concat-map-0.0.1" 108190 108137 sources."debug-4.3.2" 108138 + sources."decamelize-4.0.0" 108191 108139 sources."decompress-response-3.3.0" 108192 108140 sources."deep-extend-0.6.0" 108193 108141 sources."defer-to-connect-1.1.3" 108142 + sources."diff-5.0.0" 108194 108143 sources."duplexer3-0.1.4" 108144 + sources."emoji-regex-8.0.0" 108195 108145 sources."end-of-stream-1.4.4" 108196 - sources."follow-redirects-1.14.2" 108146 + sources."escalade-3.1.1" 108147 + sources."escape-string-regexp-4.0.0" 108148 + sources."fill-range-7.0.1" 108149 + sources."find-up-5.0.0" 108150 + sources."flat-5.0.2" 108151 + sources."follow-redirects-1.14.3" 108197 108152 sources."fs-extra-9.1.0" 108153 + sources."fs.realpath-1.0.0" 108154 + sources."fsevents-2.3.2" 108198 108155 sources."function-bind-1.1.1" 108156 + sources."get-caller-file-2.0.5" 108199 108157 sources."get-intrinsic-1.1.1" 108200 108158 sources."get-stream-4.1.0" 108159 + sources."glob-7.1.6" 108160 + sources."glob-parent-5.1.2" 108201 108161 sources."got-9.6.0" 108202 108162 sources."graceful-fs-4.2.8" 108163 + sources."growl-1.10.5" 108203 108164 sources."has-1.0.3" 108165 + sources."has-flag-4.0.0" 108204 108166 sources."has-symbols-1.0.2" 108167 + sources."he-1.2.0" 108205 108168 sources."http-cache-semantics-4.1.0" 108206 108169 sources."https-proxy-agent-5.0.0" 108170 + sources."inflight-1.0.6" 108171 + sources."inherits-2.0.4" 108207 108172 sources."ini-1.3.8" 108208 108173 sources."ip-1.1.5" 108174 + sources."is-binary-path-2.1.0" 108209 108175 sources."is-docker-2.2.1" 108176 + sources."is-extglob-2.1.1" 108177 + sources."is-fullwidth-code-point-2.0.0" 108178 + sources."is-glob-4.0.1" 108179 + sources."is-number-7.0.0" 108180 + sources."is-plain-obj-2.1.0" 108210 108181 sources."is-wsl-2.2.0" 108211 - sources."js-base64-3.6.1" 108182 + sources."isexe-2.0.0" 108183 + sources."js-base64-3.6.2" 108184 + sources."js-yaml-4.0.0" 108212 108185 sources."json-buffer-3.0.0" 108213 108186 sources."jsonfile-6.1.0" 108214 108187 sources."keyv-3.1.0" 108215 108188 sources."kleur-3.0.3" 108216 108189 sources."latest-version-5.1.0" 108190 + sources."locate-path-6.0.0" 108217 108191 sources."lodash.flatmap-4.5.0" 108192 + sources."log-symbols-4.0.0" 108218 108193 sources."lowercase-keys-1.0.1" 108219 108194 sources."mimic-response-1.0.1" 108195 + sources."minimatch-3.0.4" 108220 108196 sources."minimist-1.2.5" 108197 + (sources."mocha-8.4.0" // { 108198 + dependencies = [ 108199 + (sources."debug-4.3.1" // { 108200 + dependencies = [ 108201 + sources."ms-2.1.2" 108202 + ]; 108203 + }) 108204 + sources."ms-2.1.3" 108205 + ]; 108206 + }) 108221 108207 sources."moment-2.29.1" 108222 108208 sources."ms-2.1.2" 108209 + sources."nanoid-3.1.20" 108210 + sources."normalize-path-3.0.0" 108223 108211 sources."normalize-url-4.5.1" 108224 108212 sources."object-inspect-1.11.0" 108225 108213 sources."once-1.4.0" 108226 108214 sources."open-7.4.2" 108227 108215 sources."p-cancelable-1.1.0" 108216 + sources."p-limit-3.1.0" 108217 + sources."p-locate-5.0.0" 108228 108218 sources."package-json-6.5.0" 108219 + sources."path-exists-4.0.0" 108220 + sources."path-is-absolute-1.0.1" 108221 + sources."picomatch-2.3.0" 108229 108222 sources."pixiv-api-client-0.25.0" 108230 108223 sources."prepend-http-2.0.0" 108231 108224 sources."prompts-2.4.1" 108232 108225 sources."pump-3.0.0" 108233 108226 sources."qs-6.10.1" 108234 - sources."rc-1.2.8" 108227 + sources."randombytes-2.1.0" 108228 + (sources."rc-1.2.8" // { 108229 + dependencies = [ 108230 + sources."strip-json-comments-2.0.1" 108231 + ]; 108232 + }) 108233 + sources."readdirp-3.5.0" 108235 108234 sources."readline-sync-1.4.10" 108236 108235 sources."register-protocol-win32-1.1.0" 108237 108236 sources."registry-auth-token-4.2.1" 108238 108237 sources."registry-url-5.1.0" 108238 + sources."require-directory-2.1.1" 108239 108239 sources."responselike-1.0.2" 108240 + sources."safe-buffer-5.2.1" 108240 108241 sources."semver-6.3.0" 108242 + sources."serialize-javascript-5.0.1" 108241 108243 sources."side-channel-1.0.4" 108242 108244 sources."sisteransi-1.0.5" 108243 108245 sources."smart-buffer-4.2.0" 108244 108246 sources."socks-2.6.1" 108245 108247 sources."socks-proxy-agent-5.0.1" 108246 - sources."strip-json-comments-2.0.1" 108248 + sources."string-width-2.1.1" 108249 + sources."strip-ansi-4.0.0" 108250 + sources."strip-json-comments-3.1.1" 108251 + sources."supports-color-8.1.1" 108247 108252 sources."to-readable-stream-1.0.0" 108253 + sources."to-regex-range-5.0.1" 108248 108254 sources."universalify-2.0.0" 108249 108255 sources."url-parse-lax-3.0.0" 108256 + sources."which-2.0.2" 108257 + sources."wide-align-1.1.3" 108250 108258 sources."winreg-1.2.4" 108259 + sources."workerpool-6.1.0" 108260 + (sources."wrap-ansi-7.0.0" // { 108261 + dependencies = [ 108262 + sources."ansi-regex-5.0.0" 108263 + sources."is-fullwidth-code-point-3.0.0" 108264 + sources."string-width-4.2.2" 108265 + sources."strip-ansi-6.0.0" 108266 + ]; 108267 + }) 108251 108268 sources."wrappy-1.0.2" 108269 + sources."y18n-5.0.8" 108270 + (sources."yargs-16.2.0" // { 108271 + dependencies = [ 108272 + sources."ansi-regex-5.0.0" 108273 + sources."is-fullwidth-code-point-3.0.0" 108274 + sources."string-width-4.2.2" 108275 + sources."strip-ansi-6.0.0" 108276 + ]; 108277 + }) 108278 + sources."yargs-parser-20.2.4" 108279 + sources."yargs-unparser-2.0.0" 108280 + sources."yocto-queue-0.1.0" 108252 108281 ]; 108253 108282 buildInputs = globalBuildInputs; 108254 108283 meta = { ··· 108263 108292 pyright = nodeEnv.buildNodePackage { 108264 108293 name = "pyright"; 108265 108294 packageName = "pyright"; 108266 - version = "1.1.163"; 108295 + version = "1.1.166"; 108267 108296 src = fetchurl { 108268 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.163.tgz"; 108269 - sha512 = "CU0WPzr+6ZKIqCqqVrOtxMFWdzdOV18zKmC7dVBzp3snuun8JafnnmUzNJpO8IJLN/bQNSLb3riLtXFM/8Xxbg=="; 108297 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.166.tgz"; 108298 + sha512 = "mO+iPT2dhHzlplAV3iKE6u4gUstGZxxLyMSRd1PKZqWhwhTCCGjn3/7VqbAwUt4fuhY8g0V+SAsu+MPT4H3FvQ=="; 108270 108299 }; 108271 108300 buildInputs = globalBuildInputs; 108272 108301 meta = { ··· 108311 108340 sources."concat-map-0.0.1" 108312 108341 sources."concat-stream-1.6.2" 108313 108342 sources."convert-source-map-1.8.0" 108314 - sources."core-util-is-1.0.2" 108343 + sources."core-util-is-1.0.3" 108315 108344 sources."cross-spawn-6.0.5" 108316 108345 sources."decamelize-1.2.0" 108317 108346 sources."deep-extend-0.6.0" 108318 - sources."deep-is-0.1.3" 108347 + sources."deep-is-0.1.4" 108319 108348 sources."duplexer2-0.1.4" 108320 108349 sources."encoding-0.1.13" 108321 108350 sources."end-of-stream-1.4.4" ··· 108379 108408 sources."minimist-1.2.5" 108380 108409 sources."moment-2.29.1" 108381 108410 sources."nice-try-1.0.5" 108382 - sources."node-fetch-2.6.1" 108411 + sources."node-fetch-2.6.2" 108383 108412 sources."npm-run-path-2.0.2" 108384 108413 sources."number-is-nan-1.0.1" 108385 108414 sources."object-inspect-1.4.1" ··· 108515 108544 sources."ansi-regex-2.1.1" 108516 108545 sources."ansi-styles-2.2.1" 108517 108546 sources."async-0.2.10" 108518 - sources."available-typed-arrays-1.0.4" 108547 + sources."available-typed-arrays-1.0.5" 108519 108548 sources."balanced-match-1.0.2" 108520 108549 sources."brace-expansion-1.1.11" 108521 108550 sources."call-bind-1.0.2" ··· 108525 108554 sources."cycle-1.0.3" 108526 108555 sources."deep-equal-2.0.5" 108527 108556 sources."define-properties-1.1.3" 108528 - sources."es-abstract-1.18.5" 108557 + sources."es-abstract-1.18.6" 108529 108558 sources."es-get-iterator-1.1.2" 108530 108559 sources."es-to-primitive-1.2.1" 108531 108560 sources."escape-string-regexp-1.0.5" ··· 108534 108563 sources."fs.realpath-1.0.0" 108535 108564 sources."function-bind-1.1.1" 108536 108565 sources."get-intrinsic-1.1.1" 108566 + sources."get-symbol-description-1.0.0" 108537 108567 sources."glob-7.1.7" 108538 108568 sources."has-1.0.3" 108539 108569 sources."has-ansi-2.0.0" ··· 108556 108586 sources."is-set-2.0.2" 108557 108587 sources."is-string-1.0.7" 108558 108588 sources."is-symbol-1.0.4" 108559 - sources."is-typed-array-1.1.7" 108589 + sources."is-typed-array-1.1.8" 108560 108590 sources."is-weakmap-2.0.1" 108561 108591 sources."is-weakset-2.0.1" 108562 108592 sources."isarray-2.0.5" ··· 108589 108619 sources."utile-0.2.1" 108590 108620 sources."which-boxed-primitive-1.0.2" 108591 108621 sources."which-collection-1.0.1" 108592 - sources."which-typed-array-1.1.6" 108622 + sources."which-typed-array-1.1.7" 108593 108623 (sources."winston-0.8.3" // { 108594 108624 dependencies = [ 108595 108625 sources."pkginfo-0.3.1" ··· 108616 108646 sha512 = "coA9MuNPfN+8TyFj7aOycw2e5W9t+sSgFOUyK30oDrh2MWWWHLjY0I4V1puyCconC2arggfDE2GYXvqOTCGv9Q=="; 108617 108647 }; 108618 108648 dependencies = [ 108619 - sources."@babel/cli-7.14.8" 108649 + sources."@babel/cli-7.15.4" 108620 108650 sources."@babel/code-frame-7.14.5" 108621 108651 sources."@babel/compat-data-7.15.0" 108622 - (sources."@babel/core-7.15.0" // { 108652 + (sources."@babel/core-7.15.5" // { 108623 108653 dependencies = [ 108624 108654 sources."semver-6.3.0" 108625 108655 ]; 108626 108656 }) 108627 - sources."@babel/generator-7.15.0" 108628 - sources."@babel/helper-annotate-as-pure-7.14.5" 108629 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" 108630 - (sources."@babel/helper-compilation-targets-7.15.0" // { 108657 + sources."@babel/generator-7.15.4" 108658 + sources."@babel/helper-annotate-as-pure-7.15.4" 108659 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 108660 + (sources."@babel/helper-compilation-targets-7.15.4" // { 108631 108661 dependencies = [ 108632 108662 sources."semver-6.3.0" 108633 108663 ]; 108634 108664 }) 108635 - sources."@babel/helper-create-class-features-plugin-7.15.0" 108665 + sources."@babel/helper-create-class-features-plugin-7.15.4" 108636 108666 sources."@babel/helper-create-regexp-features-plugin-7.14.5" 108637 108667 (sources."@babel/helper-define-polyfill-provider-0.2.3" // { 108638 108668 dependencies = [ 108639 108669 sources."semver-6.3.0" 108640 108670 ]; 108641 108671 }) 108642 - sources."@babel/helper-explode-assignable-expression-7.14.5" 108643 - sources."@babel/helper-function-name-7.14.5" 108644 - sources."@babel/helper-get-function-arity-7.14.5" 108645 - sources."@babel/helper-hoist-variables-7.14.5" 108646 - sources."@babel/helper-member-expression-to-functions-7.15.0" 108647 - sources."@babel/helper-module-imports-7.14.5" 108648 - sources."@babel/helper-module-transforms-7.15.0" 108649 - sources."@babel/helper-optimise-call-expression-7.14.5" 108672 + sources."@babel/helper-explode-assignable-expression-7.15.4" 108673 + sources."@babel/helper-function-name-7.15.4" 108674 + sources."@babel/helper-get-function-arity-7.15.4" 108675 + sources."@babel/helper-hoist-variables-7.15.4" 108676 + sources."@babel/helper-member-expression-to-functions-7.15.4" 108677 + sources."@babel/helper-module-imports-7.15.4" 108678 + sources."@babel/helper-module-transforms-7.15.4" 108679 + sources."@babel/helper-optimise-call-expression-7.15.4" 108650 108680 sources."@babel/helper-plugin-utils-7.14.5" 108651 - sources."@babel/helper-remap-async-to-generator-7.14.5" 108652 - sources."@babel/helper-replace-supers-7.15.0" 108653 - sources."@babel/helper-simple-access-7.14.8" 108654 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 108655 - sources."@babel/helper-split-export-declaration-7.14.5" 108681 + sources."@babel/helper-remap-async-to-generator-7.15.4" 108682 + sources."@babel/helper-replace-supers-7.15.4" 108683 + sources."@babel/helper-simple-access-7.15.4" 108684 + sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 108685 + sources."@babel/helper-split-export-declaration-7.15.4" 108656 108686 sources."@babel/helper-validator-identifier-7.14.9" 108657 108687 sources."@babel/helper-validator-option-7.14.5" 108658 - sources."@babel/helper-wrap-function-7.14.5" 108659 - sources."@babel/helpers-7.15.3" 108688 + sources."@babel/helper-wrap-function-7.15.4" 108689 + sources."@babel/helpers-7.15.4" 108660 108690 sources."@babel/highlight-7.14.5" 108661 - sources."@babel/parser-7.15.3" 108662 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 108663 - sources."@babel/plugin-proposal-async-generator-functions-7.14.9" 108691 + sources."@babel/parser-7.15.5" 108692 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 108693 + sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 108664 108694 sources."@babel/plugin-proposal-class-properties-7.14.5" 108665 - sources."@babel/plugin-proposal-class-static-block-7.14.5" 108695 + sources."@babel/plugin-proposal-class-static-block-7.15.4" 108666 108696 sources."@babel/plugin-proposal-dynamic-import-7.14.5" 108667 108697 sources."@babel/plugin-proposal-export-default-from-7.14.5" 108668 108698 sources."@babel/plugin-proposal-export-namespace-from-7.14.5" ··· 108674 108704 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 108675 108705 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 108676 108706 sources."@babel/plugin-proposal-private-methods-7.14.5" 108677 - sources."@babel/plugin-proposal-private-property-in-object-7.14.5" 108707 + sources."@babel/plugin-proposal-private-property-in-object-7.15.4" 108678 108708 sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 108679 108709 sources."@babel/plugin-syntax-async-generators-7.8.4" 108680 108710 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 108696 108726 sources."@babel/plugin-transform-async-to-generator-7.14.5" 108697 108727 sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 108698 108728 sources."@babel/plugin-transform-block-scoping-7.15.3" 108699 - sources."@babel/plugin-transform-classes-7.14.9" 108729 + sources."@babel/plugin-transform-classes-7.15.4" 108700 108730 sources."@babel/plugin-transform-computed-properties-7.14.5" 108701 108731 sources."@babel/plugin-transform-destructuring-7.14.7" 108702 108732 sources."@babel/plugin-transform-dotall-regex-7.14.5" 108703 108733 sources."@babel/plugin-transform-duplicate-keys-7.14.5" 108704 108734 sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 108705 - sources."@babel/plugin-transform-for-of-7.14.5" 108735 + sources."@babel/plugin-transform-for-of-7.15.4" 108706 108736 sources."@babel/plugin-transform-function-name-7.14.5" 108707 108737 sources."@babel/plugin-transform-literals-7.14.5" 108708 108738 sources."@babel/plugin-transform-member-expression-literals-7.14.5" 108709 108739 sources."@babel/plugin-transform-modules-amd-7.14.5" 108710 - sources."@babel/plugin-transform-modules-commonjs-7.15.0" 108711 - sources."@babel/plugin-transform-modules-systemjs-7.14.5" 108740 + sources."@babel/plugin-transform-modules-commonjs-7.15.4" 108741 + sources."@babel/plugin-transform-modules-systemjs-7.15.4" 108712 108742 sources."@babel/plugin-transform-modules-umd-7.14.5" 108713 108743 sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 108714 108744 sources."@babel/plugin-transform-new-target-7.14.5" 108715 108745 sources."@babel/plugin-transform-object-super-7.14.5" 108716 - sources."@babel/plugin-transform-parameters-7.14.5" 108746 + sources."@babel/plugin-transform-parameters-7.15.4" 108717 108747 sources."@babel/plugin-transform-property-literals-7.14.5" 108718 108748 sources."@babel/plugin-transform-react-display-name-7.15.1" 108719 108749 sources."@babel/plugin-transform-react-jsx-7.14.9" ··· 108733 108763 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 108734 108764 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 108735 108765 sources."@babel/plugin-transform-unicode-regex-7.14.5" 108736 - (sources."@babel/preset-env-7.15.0" // { 108766 + (sources."@babel/preset-env-7.15.4" // { 108737 108767 dependencies = [ 108738 108768 sources."semver-6.3.0" 108739 108769 ]; ··· 108742 108772 sources."@babel/preset-react-7.14.5" 108743 108773 sources."@babel/preset-stage-0-7.8.3" 108744 108774 sources."@babel/register-7.15.3" 108745 - sources."@babel/runtime-7.15.3" 108746 - sources."@babel/template-7.14.5" 108747 - sources."@babel/traverse-7.15.0" 108748 - sources."@babel/types-7.15.0" 108775 + sources."@babel/runtime-7.15.4" 108776 + sources."@babel/template-7.15.4" 108777 + sources."@babel/traverse-7.15.4" 108778 + sources."@babel/types-7.15.4" 108749 108779 sources."@reach/router-1.3.4" 108750 108780 sources."@sindresorhus/is-0.7.0" 108751 108781 sources."@types/glob-7.1.4" 108752 108782 sources."@types/json-schema-7.0.9" 108753 108783 sources."@types/minimatch-3.0.5" 108754 - sources."@types/node-16.7.2" 108784 + sources."@types/node-16.7.13" 108755 108785 sources."@types/parse-json-4.0.0" 108756 108786 sources."@types/q-1.5.5" 108757 108787 sources."@webassemblyjs/ast-1.9.0" ··· 108824 108854 sources."async-limiter-1.0.1" 108825 108855 sources."atob-2.1.2" 108826 108856 sources."autoprefixer-9.8.6" 108827 - sources."axios-0.21.1" 108857 + sources."axios-0.21.4" 108828 108858 sources."babel-core-7.0.0-bridge.0" 108829 108859 (sources."babel-loader-8.2.2" // { 108830 108860 dependencies = [ 108831 - sources."find-cache-dir-3.3.1" 108861 + sources."find-cache-dir-3.3.2" 108832 108862 sources."find-up-4.1.0" 108833 108863 sources."locate-path-5.0.0" 108834 108864 sources."make-dir-3.1.0" ··· 108905 108935 ]; 108906 108936 }) 108907 108937 sources."browserify-zlib-0.1.4" 108908 - sources."browserslist-4.16.8" 108938 + sources."browserslist-4.17.0" 108909 108939 sources."buffer-5.7.1" 108910 108940 sources."buffer-alloc-1.2.0" 108911 108941 sources."buffer-alloc-unsafe-1.1.0" ··· 108939 108969 sources."camel-case-3.0.0" 108940 108970 sources."camelcase-5.3.1" 108941 108971 sources."caniuse-api-3.0.0" 108942 - sources."caniuse-lite-1.0.30001252" 108972 + sources."caniuse-lite-1.0.30001255" 108943 108973 sources."case-sensitive-paths-webpack-plugin-2.4.0" 108944 108974 sources."caw-2.0.1" 108945 108975 (sources."chalk-2.4.2" // { ··· 108997 109027 sources."color-convert-1.9.3" 108998 109028 sources."color-name-1.1.3" 108999 109029 sources."color-string-1.6.0" 109000 - sources."colorette-1.3.0" 109030 + sources."colorette-1.4.0" 109001 109031 sources."commander-4.1.1" 109002 109032 sources."commondir-1.0.1" 109003 109033 sources."component-bind-1.0.0" ··· 109024 109054 sources."copy-concurrently-1.0.5" 109025 109055 sources."copy-descriptor-0.1.1" 109026 109056 sources."core-js-2.6.12" 109027 - (sources."core-js-compat-3.16.3" // { 109057 + (sources."core-js-compat-3.17.2" // { 109028 109058 dependencies = [ 109029 109059 sources."semver-7.0.0" 109030 109060 ]; 109031 109061 }) 109032 - sources."core-util-is-1.0.2" 109062 + sources."core-util-is-1.0.3" 109033 109063 sources."cors-2.8.5" 109034 109064 sources."cosmiconfig-6.0.0" 109035 109065 (sources."create-ecdh-4.0.4" // { ··· 109149 109179 }) 109150 109180 sources."domain-browser-1.2.0" 109151 109181 sources."domelementtype-1.3.1" 109152 - (sources."domhandler-4.2.0" // { 109182 + (sources."domhandler-4.2.2" // { 109153 109183 dependencies = [ 109154 109184 sources."domelementtype-2.2.0" 109155 109185 ]; ··· 109168 109198 sources."duplexify-3.7.1" 109169 109199 sources."ee-first-1.1.1" 109170 109200 sources."ejs-2.7.4" 109171 - sources."electron-to-chromium-1.3.818" 109201 + sources."electron-to-chromium-1.3.832" 109172 109202 (sources."elliptic-6.5.4" // { 109173 109203 dependencies = [ 109174 109204 sources."bn.js-4.12.0" ··· 109199 109229 sources."entities-2.2.0" 109200 109230 sources."errno-0.1.8" 109201 109231 sources."error-ex-1.3.2" 109202 - sources."es-abstract-1.18.5" 109232 + sources."es-abstract-1.18.6" 109203 109233 sources."es-to-primitive-1.2.1" 109204 109234 sources."escalade-3.1.1" 109205 109235 sources."escape-html-1.0.3" ··· 109302 109332 sources."find-cache-dir-2.1.0" 109303 109333 sources."find-up-3.0.0" 109304 109334 sources."flush-write-stream-1.1.1" 109305 - sources."follow-redirects-1.14.2" 109335 + sources."follow-redirects-1.14.3" 109306 109336 sources."for-in-1.0.2" 109307 109337 sources."forwarded-0.2.0" 109308 109338 sources."fragment-cache-0.2.1" ··· 109320 109350 sources."get-intrinsic-1.1.1" 109321 109351 sources."get-proxy-2.1.0" 109322 109352 sources."get-stream-3.0.0" 109353 + sources."get-symbol-description-1.0.0" 109323 109354 sources."get-value-2.0.6" 109324 109355 sources."git-clone-0.1.0" 109325 109356 sources."git-promise-1.0.0" ··· 109398 109429 dependencies = [ 109399 109430 sources."dom-serializer-1.3.2" 109400 109431 sources."domelementtype-2.2.0" 109401 - sources."domutils-2.7.0" 109432 + sources."domutils-2.8.0" 109402 109433 ]; 109403 109434 }) 109404 109435 sources."http-cache-semantics-3.8.1" ··· 109905 109936 sources."css-what-5.0.1" 109906 109937 sources."dom-serializer-1.3.2" 109907 109938 sources."domelementtype-2.2.0" 109908 - sources."domutils-2.7.0" 109939 + sources."domutils-2.8.0" 109909 109940 sources."nth-check-2.0.0" 109910 109941 sources."strip-ansi-3.0.1" 109911 109942 ]; ··· 110428 110459 sources."@mozilla/readability-0.4.1" 110429 110460 sources."@tootallnate/once-1.1.2" 110430 110461 sources."abab-2.0.5" 110431 - sources."acorn-8.4.1" 110462 + sources."acorn-8.5.0" 110432 110463 (sources."acorn-globals-6.0.0" // { 110433 110464 dependencies = [ 110434 110465 sources."acorn-7.4.1" ··· 110453 110484 sources."data-urls-2.0.0" 110454 110485 sources."debug-4.3.2" 110455 110486 sources."decimal.js-10.3.1" 110456 - sources."deep-is-0.1.3" 110487 + sources."deep-is-0.1.4" 110457 110488 sources."delayed-stream-1.0.0" 110458 110489 (sources."domexception-2.0.1" // { 110459 110490 dependencies = [ ··· 110507 110538 sources."whatwg-url-8.7.0" 110508 110539 sources."word-wrap-1.2.3" 110509 110540 sources."wrap-ansi-7.0.0" 110510 - sources."ws-7.5.3" 110541 + sources."ws-7.5.4" 110511 110542 sources."xml-name-validator-3.0.0" 110512 110543 sources."xmlchars-2.2.0" 110513 110544 sources."y18n-5.0.8" ··· 110534 110565 }; 110535 110566 dependencies = [ 110536 110567 sources."@babel/code-frame-7.14.5" 110537 - (sources."@babel/generator-7.15.0" // { 110568 + (sources."@babel/generator-7.15.4" // { 110538 110569 dependencies = [ 110539 110570 sources."source-map-0.5.7" 110540 110571 ]; 110541 110572 }) 110542 - sources."@babel/helper-annotate-as-pure-7.14.5" 110543 - sources."@babel/helper-function-name-7.14.5" 110544 - sources."@babel/helper-get-function-arity-7.14.5" 110545 - sources."@babel/helper-hoist-variables-7.14.5" 110546 - sources."@babel/helper-module-imports-7.14.5" 110547 - sources."@babel/helper-split-export-declaration-7.14.5" 110573 + sources."@babel/helper-annotate-as-pure-7.15.4" 110574 + sources."@babel/helper-function-name-7.15.4" 110575 + sources."@babel/helper-get-function-arity-7.15.4" 110576 + sources."@babel/helper-hoist-variables-7.15.4" 110577 + sources."@babel/helper-module-imports-7.15.4" 110578 + sources."@babel/helper-split-export-declaration-7.15.4" 110548 110579 sources."@babel/helper-validator-identifier-7.14.9" 110549 110580 sources."@babel/highlight-7.14.5" 110550 - sources."@babel/parser-7.15.3" 110551 - sources."@babel/runtime-7.15.3" 110552 - sources."@babel/template-7.14.5" 110553 - sources."@babel/traverse-7.15.0" 110554 - sources."@babel/types-7.15.0" 110581 + sources."@babel/parser-7.15.5" 110582 + sources."@babel/runtime-7.15.4" 110583 + sources."@babel/template-7.15.4" 110584 + sources."@babel/traverse-7.15.4" 110585 + sources."@babel/types-7.15.4" 110555 110586 sources."@emotion/is-prop-valid-0.8.8" 110556 110587 sources."@emotion/memoize-0.7.4" 110557 110588 sources."@emotion/stylis-0.8.5" 110558 110589 sources."@emotion/unitless-0.7.5" 110559 110590 sources."@exodus/schemasafe-1.0.0-rc.4" 110560 110591 sources."@redocly/ajv-8.6.2" 110561 - (sources."@redocly/openapi-core-1.0.0-beta.55" // { 110592 + (sources."@redocly/openapi-core-1.0.0-beta.58" // { 110562 110593 dependencies = [ 110563 - sources."@types/node-14.17.12" 110594 + sources."@types/node-14.17.15" 110564 110595 ]; 110565 110596 }) 110566 110597 sources."@redocly/react-dropdown-aria-2.0.12" ··· 110617 110648 sources."clsx-1.1.1" 110618 110649 sources."color-convert-1.9.3" 110619 110650 sources."color-name-1.1.3" 110620 - sources."colorette-1.3.0" 110651 + sources."colorette-1.4.0" 110621 110652 sources."concat-map-0.0.1" 110622 110653 sources."console-browserify-1.2.0" 110623 110654 sources."constants-browserify-1.0.0" 110624 - sources."core-util-is-1.0.2" 110655 + sources."core-util-is-1.0.3" 110625 110656 (sources."create-ecdh-4.0.4" // { 110626 110657 dependencies = [ 110627 110658 sources."bn.js-4.12.0" ··· 110657 110688 sources."events-3.3.0" 110658 110689 sources."evp_bytestokey-1.0.3" 110659 110690 sources."fast-deep-equal-3.1.3" 110660 - sources."fast-safe-stringify-2.0.8" 110691 + sources."fast-safe-stringify-2.1.1" 110661 110692 sources."fill-range-7.0.1" 110662 110693 sources."foreach-2.0.5" 110663 110694 sources."fsevents-2.3.2" ··· 110713 110744 sources."minimatch-3.0.4" 110714 110745 sources."minimist-1.2.5" 110715 110746 sources."mkdirp-1.0.4" 110716 - sources."mobx-6.3.2" 110747 + sources."mobx-6.3.3" 110717 110748 sources."mobx-react-7.2.0" 110718 - sources."mobx-react-lite-3.2.0" 110749 + sources."mobx-react-lite-3.2.1" 110719 110750 sources."ms-2.1.2" 110720 110751 sources."neo-async-2.6.2" 110721 - sources."node-fetch-2.6.1" 110752 + sources."node-fetch-2.6.2" 110722 110753 sources."node-fetch-h2-2.3.0" 110723 110754 sources."node-libs-browser-2.2.1" 110724 110755 sources."node-readfiles-0.2.0" ··· 110805 110836 sources."to-fast-properties-2.0.0" 110806 110837 sources."to-regex-range-5.0.1" 110807 110838 sources."tty-browserify-0.0.0" 110808 - sources."uglify-js-3.14.1" 110839 + sources."uglify-js-3.14.2" 110809 110840 (sources."uri-js-4.4.1" // { 110810 110841 dependencies = [ 110811 110842 sources."punycode-2.1.1" ··· 111062 111093 "rust-analyzer-build-deps-../../misc/vscode-extensions/rust-analyzer/build-deps" = nodeEnv.buildNodePackage { 111063 111094 name = "rust-analyzer"; 111064 111095 packageName = "rust-analyzer"; 111065 - version = "0.2.727"; 111096 + version = "0.2.735"; 111066 111097 src = ../../misc/vscode-extensions/rust-analyzer/build-deps; 111067 111098 dependencies = [ 111068 111099 sources."@babel/code-frame-7.12.11" ··· 111089 111120 sources."@types/json-schema-7.0.9" 111090 111121 sources."@types/minimatch-3.0.5" 111091 111122 sources."@types/mocha-8.2.3" 111092 - sources."@types/node-14.17.12" 111123 + sources."@types/node-14.17.15" 111093 111124 sources."@types/node-fetch-2.5.12" 111094 - sources."@types/vscode-1.59.0" 111095 - sources."@typescript-eslint/eslint-plugin-4.29.3" 111096 - sources."@typescript-eslint/experimental-utils-4.29.3" 111097 - sources."@typescript-eslint/parser-4.29.3" 111098 - sources."@typescript-eslint/scope-manager-4.29.3" 111099 - sources."@typescript-eslint/types-4.29.3" 111100 - sources."@typescript-eslint/typescript-estree-4.29.3" 111101 - sources."@typescript-eslint/visitor-keys-4.29.3" 111125 + sources."@types/vscode-1.60.0" 111126 + sources."@typescript-eslint/eslint-plugin-4.31.0" 111127 + sources."@typescript-eslint/experimental-utils-4.31.0" 111128 + sources."@typescript-eslint/parser-4.31.0" 111129 + sources."@typescript-eslint/scope-manager-4.31.0" 111130 + sources."@typescript-eslint/types-4.31.0" 111131 + sources."@typescript-eslint/typescript-estree-4.31.0" 111132 + sources."@typescript-eslint/visitor-keys-4.31.0" 111102 111133 sources."@ungap/promise-all-settled-1.1.2" 111103 111134 sources."acorn-7.4.1" 111104 111135 sources."acorn-jsx-5.3.2" ··· 111148 111179 sources."commander-7.2.0" 111149 111180 sources."commandpost-1.4.0" 111150 111181 sources."concat-map-0.0.1" 111151 - sources."core-util-is-1.0.2" 111182 + sources."core-util-is-1.0.3" 111152 111183 sources."cross-spawn-7.0.3" 111153 111184 sources."css-select-4.1.3" 111154 111185 sources."css-what-5.0.1" ··· 111200 111231 sources."d3-zoom-3.0.0" 111201 111232 sources."debug-4.3.2" 111202 111233 sources."decamelize-4.0.0" 111203 - sources."deep-is-0.1.3" 111234 + sources."deep-is-0.1.4" 111204 111235 sources."delaunator-5.0.0" 111205 111236 sources."delayed-stream-1.0.0" 111206 111237 sources."denodeify-1.2.1" ··· 111209 111240 sources."doctrine-3.0.0" 111210 111241 sources."dom-serializer-1.3.2" 111211 111242 sources."domelementtype-2.2.0" 111212 - sources."domhandler-4.2.0" 111213 - sources."domutils-2.7.0" 111243 + sources."domhandler-4.2.2" 111244 + sources."domutils-2.8.0" 111214 111245 sources."duplexer2-0.1.4" 111215 111246 (sources."editorconfig-0.15.3" // { 111216 111247 dependencies = [ ··· 111338 111369 sources."minimatch-3.0.4" 111339 111370 sources."minimist-1.2.5" 111340 111371 sources."mkdirp-0.5.5" 111341 - (sources."mocha-9.1.0" // { 111372 + (sources."mocha-9.1.1" // { 111342 111373 dependencies = [ 111343 111374 sources."argparse-2.0.1" 111344 111375 (sources."debug-4.3.1" // { ··· 111356 111387 sources."mute-stream-0.0.8" 111357 111388 sources."nanoid-3.1.23" 111358 111389 sources."natural-compare-1.4.0" 111359 - sources."node-fetch-2.6.1" 111390 + sources."node-fetch-2.6.2" 111360 111391 sources."normalize-path-3.0.0" 111361 111392 sources."nth-check-2.0.0" 111362 111393 sources."object-inspect-1.11.0" ··· 111451 111482 sources."tunnel-0.0.6" 111452 111483 sources."type-check-0.4.0" 111453 111484 sources."type-fest-0.20.2" 111454 - sources."typed-rest-client-1.8.5" 111455 - sources."typescript-4.3.5" 111485 + sources."typed-rest-client-1.8.6" 111486 + sources."typescript-4.4.2" 111456 111487 sources."typescript-formatter-7.2.2" 111457 111488 sources."uc.micro-1.0.6" 111458 111489 sources."underscore-1.13.1" ··· 111461 111492 sources."url-join-1.1.0" 111462 111493 sources."util-deprecate-1.0.2" 111463 111494 sources."v8-compile-cache-2.3.0" 111464 - (sources."vsce-1.96.1" // { 111495 + (sources."vsce-1.97.0" // { 111465 111496 dependencies = [ 111466 111497 sources."chalk-2.4.2" 111467 111498 sources."commander-6.2.1" ··· 111519 111550 }; 111520 111551 dependencies = [ 111521 111552 sources."aws-sdk-1.18.0" 111522 - sources."axios-0.21.1" 111553 + sources."axios-0.21.4" 111523 111554 sources."buffer-crc32-0.2.1" 111524 111555 sources."bytes-0.2.1" 111525 111556 sources."call-bind-1.0.2" ··· 111532 111563 }) 111533 111564 sources."cookie-0.1.0" 111534 111565 sources."cookie-signature-1.0.1" 111535 - sources."core-util-is-1.0.2" 111566 + sources."core-util-is-1.0.3" 111536 111567 sources."crc-0.2.0" 111537 111568 sources."crypto-0.0.3" 111538 111569 sources."debug-4.3.2" ··· 111554 111585 sources."commander-1.3.2" 111555 111586 ]; 111556 111587 }) 111557 - sources."follow-redirects-1.14.2" 111588 + sources."follow-redirects-1.14.3" 111558 111589 sources."formidable-1.0.11" 111559 111590 sources."fresh-0.2.0" 111560 111591 sources."function-bind-1.1.1" ··· 111608 111639 sass = nodeEnv.buildNodePackage { 111609 111640 name = "sass"; 111610 111641 packageName = "sass"; 111611 - version = "1.38.1"; 111642 + version = "1.39.0"; 111612 111643 src = fetchurl { 111613 - url = "https://registry.npmjs.org/sass/-/sass-1.38.1.tgz"; 111614 - sha512 = "Lj8nPaSYOuRhgqdyShV50fY5jKnvaRmikUNalMPmbH+tKMGgEKVkltI/lP30PEfO2T1t6R9yc2QIBLgOc3uaFw=="; 111644 + url = "https://registry.npmjs.org/sass/-/sass-1.39.0.tgz"; 111645 + sha512 = "F4o+RhJkNOIG0b6QudYU8c78ZADKZjKDk5cyrf8XTKWfrgbtyVVXImFstJrc+1pkQDCggyidIOytq6gS4gCCZg=="; 111615 111646 }; 111616 111647 dependencies = [ 111617 111648 sources."anymatch-3.1.2" ··· 111781 111812 serverless = nodeEnv.buildNodePackage { 111782 111813 name = "serverless"; 111783 111814 packageName = "serverless"; 111784 - version = "2.56.0"; 111815 + version = "2.57.0"; 111785 111816 src = fetchurl { 111786 - url = "https://registry.npmjs.org/serverless/-/serverless-2.56.0.tgz"; 111787 - sha512 = "/nmD1aLe+rXZpTmnxzHogCt5qGGBrE+wce7LcLV1yNne+aymyCcL8vcLj2Ib2ukTXweWpr8MxAgdXVtbwY4EGA=="; 111817 + url = "https://registry.npmjs.org/serverless/-/serverless-2.57.0.tgz"; 111818 + sha512 = "/gLzaqdisNlymMiQJMkFoACy7NXkOd7E67sbcOrENXuVb48QAS4PTT8VPkMNu6eQonlphGagbKhpqVmKzHJDmQ=="; 111788 111819 }; 111789 111820 dependencies = [ 111790 111821 sources."2-thenable-1.0.0" ··· 111817 111848 ]; 111818 111849 }) 111819 111850 sources."@serverless/component-metrics-1.0.8" 111820 - (sources."@serverless/components-3.16.0" // { 111851 + (sources."@serverless/components-3.17.0" // { 111821 111852 dependencies = [ 111822 111853 (sources."@serverless/utils-4.1.0" // { 111823 111854 dependencies = [ ··· 111852 111883 sources."jwt-decode-2.2.0" 111853 111884 ]; 111854 111885 }) 111855 - (sources."@serverless/platform-client-china-2.2.3" // { 111886 + (sources."@serverless/platform-client-china-2.2.6" // { 111856 111887 dependencies = [ 111857 111888 sources."dotenv-8.6.0" 111858 111889 sources."js-yaml-3.14.1" 111859 111890 ]; 111860 111891 }) 111861 111892 sources."@serverless/template-1.1.4" 111862 - (sources."@serverless/utils-5.7.0" // { 111893 + (sources."@serverless/utils-5.8.1" // { 111863 111894 dependencies = [ 111895 + sources."cli-progress-footer-2.0.0" 111864 111896 sources."get-stream-6.0.1" 111897 + sources."has-flag-4.0.0" 111898 + sources."supports-color-8.1.1" 111865 111899 sources."write-file-atomic-3.0.3" 111866 111900 ]; 111867 111901 }) ··· 111873 111907 sources."@types/cacheable-request-6.0.2" 111874 111908 sources."@types/caseless-0.12.2" 111875 111909 sources."@types/http-cache-semantics-4.0.1" 111876 - sources."@types/keyv-3.1.2" 111910 + sources."@types/keyv-3.1.3" 111877 111911 sources."@types/lodash-4.14.172" 111878 111912 sources."@types/long-4.0.1" 111879 - sources."@types/node-16.7.2" 111913 + sources."@types/node-16.7.13" 111880 111914 sources."@types/request-2.48.7" 111881 111915 sources."@types/request-promise-native-1.0.18" 111882 111916 sources."@types/responselike-1.0.0" ··· 111922 111956 sources."string_decoder-1.1.1" 111923 111957 ]; 111924 111958 }) 111925 - (sources."are-we-there-yet-1.1.5" // { 111959 + (sources."are-we-there-yet-1.1.7" // { 111926 111960 dependencies = [ 111927 111961 sources."readable-stream-2.3.7" 111928 111962 sources."safe-buffer-5.1.2" ··· 111937 111971 sources."async-2.6.3" 111938 111972 sources."asynckit-0.4.0" 111939 111973 sources."at-least-node-1.0.0" 111940 - (sources."aws-sdk-2.977.0" // { 111974 + (sources."aws-sdk-2.984.0" // { 111941 111975 dependencies = [ 111942 111976 sources."buffer-4.9.2" 111943 111977 sources."ieee754-1.1.13" ··· 111947 111981 }) 111948 111982 sources."aws-sign2-0.7.0" 111949 111983 sources."aws4-1.11.0" 111950 - sources."axios-0.21.1" 111984 + sources."axios-0.21.4" 111951 111985 sources."backo2-1.0.2" 111952 111986 sources."balanced-match-1.0.2" 111953 111987 sources."base64-arraybuffer-0.1.4" ··· 112034 112068 sources."process-utils-2.6.0" 112035 112069 ]; 112036 112070 }) 112071 + (sources."cli-sprintf-format-1.1.0" // { 112072 + dependencies = [ 112073 + sources."ansi-regex-2.1.1" 112074 + sources."cli-color-1.4.0" 112075 + ]; 112076 + }) 112037 112077 sources."cli-width-3.0.0" 112038 112078 sources."clone-response-1.0.2" 112039 112079 sources."code-point-at-1.1.0" ··· 112160 112200 sources."fast-deep-equal-3.1.3" 112161 112201 sources."fast-glob-3.2.7" 112162 112202 sources."fast-json-stable-stringify-2.1.0" 112163 - sources."fast-safe-stringify-2.0.8" 112203 + sources."fast-safe-stringify-2.1.1" 112164 112204 sources."fastest-levenshtein-1.0.12" 112165 112205 sources."fastq-1.12.0" 112166 112206 sources."fd-slicer-1.1.0" ··· 112170 112210 sources."file-uri-to-path-1.0.0" 112171 112211 sources."filename-reserved-regex-2.0.0" 112172 112212 sources."filenamify-4.3.0" 112173 - sources."filesize-7.0.0" 112213 + sources."filesize-8.0.0" 112174 112214 sources."fill-range-7.0.1" 112175 112215 sources."find-requires-1.0.0" 112176 112216 sources."flat-5.0.2" 112177 - sources."follow-redirects-1.14.2" 112217 + sources."follow-redirects-1.14.3" 112178 112218 sources."forever-agent-0.6.1" 112179 112219 sources."form-data-2.5.1" 112180 112220 sources."formidable-1.2.2" ··· 112223 112263 sources."graphlib-2.1.8" 112224 112264 sources."har-schema-2.0.0" 112225 112265 sources."har-validator-5.1.5" 112266 + sources."has-ansi-4.0.1" 112226 112267 (sources."has-binary2-1.0.3" // { 112227 112268 dependencies = [ 112228 112269 sources."isarray-2.0.1" ··· 112324 112365 sources."lodash.flatten-4.4.0" 112325 112366 sources."lodash.isplainobject-4.0.6" 112326 112367 sources."lodash.union-4.6.0" 112327 - (sources."log-6.0.0" // { 112368 + sources."log-6.1.0" 112369 + (sources."log-node-8.0.0" // { 112328 112370 dependencies = [ 112329 - sources."type-1.2.0" 112371 + sources."has-flag-4.0.0" 112372 + sources."supports-color-8.1.1" 112330 112373 ]; 112331 112374 }) 112332 112375 (sources."logform-2.2.0" // { ··· 112372 112415 sources."nested-error-stacks-2.1.0" 112373 112416 sources."next-tick-1.0.0" 112374 112417 sources."nice-try-1.0.5" 112375 - (sources."node-abi-2.30.0" // { 112418 + (sources."node-abi-2.30.1" // { 112376 112419 dependencies = [ 112377 112420 sources."semver-5.7.1" 112378 112421 ]; 112379 112422 }) 112380 112423 sources."node-dir-0.1.17" 112381 - sources."node-fetch-2.6.1" 112424 + sources."node-fetch-2.6.2" 112382 112425 sources."noop-logger-0.1.1" 112383 112426 sources."normalize-path-3.0.0" 112384 112427 sources."normalize-url-4.5.1" ··· 112460 112503 }) 112461 112504 sources."request-promise-core-1.1.4" 112462 112505 sources."request-promise-native-1.0.9" 112463 - sources."resolve-alpn-1.2.0" 112506 + sources."resolve-alpn-1.2.1" 112464 112507 sources."responselike-1.0.2" 112465 112508 sources."restore-cursor-3.1.0" 112466 112509 sources."retry-0.10.1" ··· 112482 112525 sources."signal-exit-3.0.3" 112483 112526 sources."simple-concat-1.0.1" 112484 112527 sources."simple-get-2.8.1" 112485 - (sources."simple-git-2.44.0" // { 112528 + (sources."simple-git-2.45.1" // { 112486 112529 dependencies = [ 112487 112530 sources."debug-4.3.2" 112488 112531 sources."ms-2.1.2" ··· 112643 112686 }) 112644 112687 sources."wrappy-1.0.2" 112645 112688 sources."write-file-atomic-2.4.3" 112646 - sources."ws-7.5.3" 112689 + sources."ws-7.5.4" 112647 112690 sources."xml2js-0.4.19" 112648 112691 sources."xmlbuilder-9.0.7" 112649 112692 sources."xmlhttprequest-ssl-1.6.3" ··· 112706 112749 sources."content-type-1.0.4" 112707 112750 sources."cookie-0.4.0" 112708 112751 sources."cookie-signature-1.0.6" 112709 - sources."core-util-is-1.0.2" 112752 + sources."core-util-is-1.0.3" 112710 112753 sources."dashdash-1.14.1" 112711 112754 sources."debug-2.6.9" 112712 112755 sources."delayed-stream-1.0.0" ··· 112879 112922 sources."utils-merge-1.0.1" 112880 112923 sources."uuid-3.4.0" 112881 112924 sources."vary-1.1.2" 112882 - sources."verror-1.10.0" 112925 + (sources."verror-1.10.0" // { 112926 + dependencies = [ 112927 + sources."core-util-is-1.0.2" 112928 + ]; 112929 + }) 112883 112930 (sources."ws-0.4.31" // { 112884 112931 dependencies = [ 112885 112932 sources."commander-0.6.1" ··· 112947 112994 sources."commander-2.9.0" 112948 112995 sources."component-emitter-1.3.0" 112949 112996 sources."copy-descriptor-0.1.1" 112950 - sources."core-util-is-1.0.2" 112997 + sources."core-util-is-1.0.3" 112951 112998 sources."debug-2.6.9" 112952 112999 sources."decode-uri-component-0.2.0" 112953 113000 sources."define-property-2.0.2" ··· 113292 113339 snyk = nodeEnv.buildNodePackage { 113293 113340 name = "snyk"; 113294 113341 packageName = "snyk"; 113295 - version = "1.692.0"; 113342 + version = "1.698.0"; 113296 113343 src = fetchurl { 113297 - url = "https://registry.npmjs.org/snyk/-/snyk-1.692.0.tgz"; 113298 - sha512 = "N/hfiyccrQRwiU1fFzG1uxKU0ODRTi7UtcZJhtRidE/DT3Vs35pWU/y4vVfXP/OegtihAwGjEirxNeL8o632mQ=="; 113344 + url = "https://registry.npmjs.org/snyk/-/snyk-1.698.0.tgz"; 113345 + sha512 = "ivOZ1VCRwGvtOG6c3etxLPdwRjjnXvg9aSXRP7oOSZDQvEWouKDh9HpvkTHm8mZgFACw6hU1cmBseHyMfpYnkw=="; 113299 113346 }; 113300 113347 buildInputs = globalBuildInputs; 113301 113348 meta = { ··· 113310 113357 "socket.io" = nodeEnv.buildNodePackage { 113311 113358 name = "socket.io"; 113312 113359 packageName = "socket.io"; 113313 - version = "4.1.3"; 113360 + version = "4.2.0"; 113314 113361 src = fetchurl { 113315 - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.1.3.tgz"; 113316 - sha512 = "tLkaY13RcO4nIRh1K2hT5iuotfTaIQw7cVIe0FUykN3SuQi0cm7ALxuyT5/CtDswOMWUzMGTibxYNx/gU7In+Q=="; 113362 + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.2.0.tgz"; 113363 + sha512 = "sjlGfMmnaWvTRVxGRGWyhd9ctpg4APxWAxu85O/SxekkxHhfxmePWZbaYCkeX5QQX0z1YEnKOlNt6w82E4Nzug=="; 113317 113364 }; 113318 113365 dependencies = [ 113319 113366 sources."@types/component-emitter-1.2.10" 113320 113367 sources."@types/cookie-0.4.1" 113321 113368 sources."@types/cors-2.8.12" 113322 - sources."@types/node-16.7.2" 113369 + sources."@types/node-16.7.13" 113323 113370 sources."accepts-1.3.7" 113324 113371 sources."base64-arraybuffer-0.1.4" 113325 113372 sources."base64id-2.0.0" ··· 113327 113374 sources."cookie-0.4.1" 113328 113375 sources."cors-2.8.5" 113329 113376 sources."debug-4.3.2" 113330 - sources."engine.io-5.1.1" 113331 - sources."engine.io-parser-4.0.2" 113377 + sources."engine.io-5.2.0" 113378 + sources."engine.io-parser-4.0.3" 113332 113379 sources."mime-db-1.49.0" 113333 113380 sources."mime-types-2.1.32" 113334 113381 sources."ms-2.1.2" 113335 113382 sources."negotiator-0.6.2" 113336 113383 sources."object-assign-4.1.1" 113337 - sources."socket.io-adapter-2.3.1" 113384 + sources."socket.io-adapter-2.3.2" 113338 113385 sources."socket.io-parser-4.0.4" 113339 113386 sources."vary-1.1.2" 113340 113387 sources."ws-7.4.6" ··· 113587 113634 sources."atomic-file-1.1.5" 113588 113635 sources."atomic-file-rw-0.2.2" 113589 113636 sources."attach-ware-1.1.1" 113590 - sources."available-typed-arrays-1.0.4" 113637 + sources."available-typed-arrays-1.0.5" 113591 113638 sources."bail-1.0.5" 113592 113639 sources."balanced-match-1.0.2" 113593 113640 (sources."base-0.11.2" // { ··· 113673 113720 sources."continuable-para-1.2.0" 113674 113721 sources."continuable-series-1.2.0" 113675 113722 sources."copy-descriptor-0.1.1" 113676 - sources."core-util-is-1.0.2" 113723 + sources."core-util-is-1.0.3" 113677 113724 sources."cpu-percentage-1.0.3" 113678 113725 sources."crc-3.6.0" 113679 113726 sources."cross-spawn-6.0.5" ··· 113708 113755 }) 113709 113756 sources."epidemic-broadcast-trees-7.0.0" 113710 113757 sources."errno-0.1.8" 113711 - sources."es-abstract-1.18.5" 113758 + sources."es-abstract-1.18.6" 113712 113759 (sources."es-get-iterator-1.1.2" // { 113713 113760 dependencies = [ 113714 113761 sources."isarray-2.0.5" ··· 113778 113825 sources."fsevents-1.2.13" 113779 113826 sources."function-bind-1.1.1" 113780 113827 sources."get-intrinsic-1.1.1" 113828 + sources."get-symbol-description-1.0.0" 113781 113829 sources."get-value-2.0.6" 113782 113830 sources."glob-6.0.4" 113783 113831 sources."glob-base-0.3.0" ··· 113871 113919 sources."is-set-2.0.2" 113872 113920 sources."is-string-1.0.7" 113873 113921 sources."is-symbol-1.0.4" 113874 - sources."is-typed-array-1.1.7" 113922 + sources."is-typed-array-1.1.8" 113875 113923 sources."is-typedarray-1.0.0" 113876 113924 sources."is-valid-domain-0.0.20" 113877 113925 sources."is-weakmap-2.0.1" ··· 114441 114489 sources."which-1.3.1" 114442 114490 sources."which-boxed-primitive-1.0.2" 114443 114491 sources."which-collection-1.0.1" 114444 - sources."which-typed-array-1.1.6" 114492 + sources."which-typed-array-1.1.7" 114445 114493 sources."word-wrap-1.2.3" 114446 114494 sources."wrap-fn-0.1.5" 114447 114495 sources."wrappy-1.0.2" 114448 - sources."ws-7.5.3" 114496 + sources."ws-7.5.4" 114449 114497 sources."xtend-4.0.2" 114450 114498 sources."zerr-1.0.4" 114451 114499 ]; ··· 114545 114593 sources."async-1.5.2" 114546 114594 sources."async-limiter-1.0.1" 114547 114595 sources."asynckit-0.4.0" 114548 - (sources."aws-sdk-2.977.0" // { 114596 + (sources."aws-sdk-2.984.0" // { 114549 114597 dependencies = [ 114550 114598 sources."uuid-3.3.2" 114551 114599 ]; 114552 114600 }) 114553 114601 sources."aws-sign2-0.6.0" 114554 114602 sources."aws4-1.11.0" 114555 - sources."axios-0.21.1" 114603 + sources."axios-0.21.4" 114556 114604 sources."babel-runtime-6.26.0" 114557 114605 sources."babel-types-6.26.0" 114558 114606 sources."babylon-6.18.0" ··· 114730 114778 sources."fd-slicer-1.1.0" 114731 114779 sources."finalhandler-1.1.2" 114732 114780 sources."find-up-3.0.0" 114733 - sources."follow-redirects-1.14.2" 114781 + sources."follow-redirects-1.14.3" 114734 114782 sources."forever-agent-0.6.1" 114735 114783 sources."form-data-2.1.4" 114736 114784 sources."formidable-1.2.2" ··· 115330 115378 dependencies = [ 115331 115379 sources."@babel/code-frame-7.14.5" 115332 115380 sources."@babel/compat-data-7.15.0" 115333 - sources."@babel/core-7.15.0" 115334 - sources."@babel/generator-7.15.0" 115335 - sources."@babel/helper-compilation-targets-7.15.0" 115336 - sources."@babel/helper-function-name-7.14.5" 115337 - sources."@babel/helper-get-function-arity-7.14.5" 115338 - sources."@babel/helper-hoist-variables-7.14.5" 115339 - sources."@babel/helper-member-expression-to-functions-7.15.0" 115340 - sources."@babel/helper-module-imports-7.14.5" 115341 - sources."@babel/helper-module-transforms-7.15.0" 115342 - sources."@babel/helper-optimise-call-expression-7.14.5" 115343 - sources."@babel/helper-replace-supers-7.15.0" 115344 - sources."@babel/helper-simple-access-7.14.8" 115345 - sources."@babel/helper-split-export-declaration-7.14.5" 115381 + sources."@babel/core-7.15.5" 115382 + sources."@babel/generator-7.15.4" 115383 + sources."@babel/helper-compilation-targets-7.15.4" 115384 + sources."@babel/helper-function-name-7.15.4" 115385 + sources."@babel/helper-get-function-arity-7.15.4" 115386 + sources."@babel/helper-hoist-variables-7.15.4" 115387 + sources."@babel/helper-member-expression-to-functions-7.15.4" 115388 + sources."@babel/helper-module-imports-7.15.4" 115389 + sources."@babel/helper-module-transforms-7.15.4" 115390 + sources."@babel/helper-optimise-call-expression-7.15.4" 115391 + sources."@babel/helper-replace-supers-7.15.4" 115392 + sources."@babel/helper-simple-access-7.15.4" 115393 + sources."@babel/helper-split-export-declaration-7.15.4" 115346 115394 sources."@babel/helper-validator-identifier-7.14.9" 115347 115395 sources."@babel/helper-validator-option-7.14.5" 115348 - sources."@babel/helpers-7.15.3" 115396 + sources."@babel/helpers-7.15.4" 115349 115397 (sources."@babel/highlight-7.14.5" // { 115350 115398 dependencies = [ 115351 115399 sources."chalk-2.4.2" 115352 115400 ]; 115353 115401 }) 115354 - sources."@babel/parser-7.15.3" 115355 - sources."@babel/template-7.14.5" 115356 - sources."@babel/traverse-7.15.0" 115357 - sources."@babel/types-7.15.0" 115402 + sources."@babel/parser-7.15.5" 115403 + sources."@babel/template-7.15.4" 115404 + sources."@babel/traverse-7.15.4" 115405 + sources."@babel/types-7.15.4" 115358 115406 sources."@nodelib/fs.scandir-2.1.5" 115359 115407 sources."@nodelib/fs.stat-2.0.5" 115360 115408 sources."@nodelib/fs.walk-1.2.8" ··· 115380 115428 ]; 115381 115429 }) 115382 115430 sources."braces-3.0.2" 115383 - sources."browserslist-4.16.8" 115431 + sources."browserslist-4.17.0" 115384 115432 sources."callsites-3.1.0" 115385 115433 sources."camelcase-5.3.1" 115386 115434 sources."camelcase-keys-6.2.2" 115387 - sources."caniuse-lite-1.0.30001252" 115435 + sources."caniuse-lite-1.0.30001255" 115388 115436 (sources."chalk-4.1.2" // { 115389 115437 dependencies = [ 115390 115438 sources."ansi-styles-4.3.0" ··· 115400 115448 sources."clone-regexp-2.2.0" 115401 115449 sources."color-convert-1.9.3" 115402 115450 sources."color-name-1.1.3" 115403 - sources."colorette-1.3.0" 115451 + sources."colorette-1.4.0" 115404 115452 sources."concat-map-0.0.1" 115405 115453 sources."convert-source-map-1.8.0" 115406 115454 sources."cosmiconfig-7.0.1" ··· 115422 115470 sources."domelementtype-1.3.1" 115423 115471 sources."domhandler-2.4.2" 115424 115472 sources."domutils-1.7.0" 115425 - sources."electron-to-chromium-1.3.818" 115473 + sources."electron-to-chromium-1.3.832" 115426 115474 sources."emoji-regex-8.0.0" 115427 115475 sources."entities-1.1.2" 115428 115476 sources."error-ex-1.3.2" ··· 115661 115709 sha512 = "EstDoqxjqWStWELh7Z0qytqUDl/ikdNEr21dveNc4fUDnhnqO2F2jHEufqoNnC3GfBji3GIUHvoXsp/I5lMbCg=="; 115662 115710 }; 115663 115711 dependencies = [ 115664 - sources."@types/node-16.7.2" 115712 + sources."@types/node-16.7.13" 115665 115713 sources."@types/pug-2.0.5" 115666 115714 sources."@types/sass-1.16.1" 115667 115715 sources."ansi-styles-4.3.0" ··· 115670 115718 sources."binary-extensions-2.2.0" 115671 115719 sources."brace-expansion-1.1.11" 115672 115720 sources."braces-3.0.2" 115721 + sources."buffer-crc32-0.2.13" 115673 115722 sources."callsites-3.1.0" 115674 115723 sources."chalk-4.1.2" 115675 115724 sources."chokidar-3.5.2" ··· 115677 115726 sources."color-name-1.1.4" 115678 115727 sources."concat-map-0.0.1" 115679 115728 sources."detect-indent-6.1.0" 115729 + sources."es6-promise-3.3.1" 115680 115730 sources."fill-range-7.0.1" 115681 115731 sources."fs.realpath-1.0.0" 115682 115732 sources."fsevents-2.3.2" 115683 115733 sources."glob-7.1.7" 115684 115734 sources."glob-parent-5.1.2" 115735 + sources."graceful-fs-4.2.8" 115685 115736 sources."has-flag-4.0.0" 115686 115737 sources."import-fresh-3.3.0" 115687 115738 sources."inflight-1.0.6" ··· 115690 115741 sources."is-extglob-2.1.1" 115691 115742 sources."is-glob-4.0.1" 115692 115743 sources."is-number-7.0.0" 115744 + sources."magic-string-0.25.7" 115693 115745 sources."min-indent-1.0.1" 115694 115746 sources."minimatch-3.0.4" 115695 115747 sources."minimist-1.2.5" 115748 + sources."mkdirp-0.5.5" 115696 115749 sources."mri-1.1.6" 115697 115750 sources."normalize-path-3.0.0" 115698 115751 sources."once-1.4.0" ··· 115701 115754 sources."picomatch-2.3.0" 115702 115755 sources."readdirp-3.6.0" 115703 115756 sources."resolve-from-4.0.0" 115757 + sources."rimraf-2.7.1" 115704 115758 sources."sade-1.7.4" 115759 + sources."sander-0.5.1" 115760 + sources."sorcery-0.10.0" 115705 115761 sources."source-map-0.7.3" 115762 + sources."sourcemap-codec-1.4.8" 115706 115763 sources."strip-indent-3.0.0" 115707 115764 sources."supports-color-7.2.0" 115708 - sources."svelte-preprocess-4.8.0" 115765 + sources."svelte-preprocess-4.9.2" 115709 115766 sources."to-regex-range-5.0.1" 115710 - sources."typescript-4.3.5" 115767 + sources."typescript-4.4.2" 115711 115768 sources."wrappy-1.0.2" 115712 115769 ]; 115713 115770 buildInputs = globalBuildInputs; ··· 115732 115789 sources."@emmetio/abbreviation-2.2.2" 115733 115790 sources."@emmetio/css-abbreviation-2.1.4" 115734 115791 sources."@emmetio/scanner-1.0.0" 115735 - sources."@types/node-16.7.2" 115792 + sources."@types/node-16.7.13" 115736 115793 sources."@types/pug-2.0.5" 115737 115794 sources."@types/sass-1.16.1" 115738 115795 sources."anymatch-3.1.2" ··· 115778 115835 sources."svelte2tsx-0.4.5" 115779 115836 sources."to-regex-range-5.0.1" 115780 115837 sources."tslib-2.3.1" 115781 - sources."typescript-4.3.5" 115838 + sources."typescript-4.4.2" 115782 115839 sources."vscode-css-languageservice-5.0.0" 115783 115840 sources."vscode-emmet-helper-2.1.2" 115784 115841 sources."vscode-html-languageservice-4.0.0" ··· 115808 115865 svgo = nodeEnv.buildNodePackage { 115809 115866 name = "svgo"; 115810 115867 packageName = "svgo"; 115811 - version = "2.4.0"; 115868 + version = "2.5.0"; 115812 115869 src = fetchurl { 115813 - url = "https://registry.npmjs.org/svgo/-/svgo-2.4.0.tgz"; 115814 - sha512 = "W25S1UUm9Lm9VnE0TvCzL7aso/NCzDEaXLaElCUO/KaVitw0+IBicSVfM1L1c0YHK5TOFh73yQ2naCpVHEQ/OQ=="; 115870 + url = "https://registry.npmjs.org/svgo/-/svgo-2.5.0.tgz"; 115871 + sha512 = "FSdBOOo271VyF/qZnOn1PgwCdt1v4Dx0Sey+U1jgqm1vqRYjPGdip0RGrFW6ItwtkBB8rHgHk26dlVr0uCs82Q=="; 115815 115872 }; 115816 115873 dependencies = [ 115817 115874 sources."@trysound/sax-0.1.1" 115818 115875 sources."boolbase-1.0.0" 115819 - sources."colorette-1.3.0" 115876 + sources."colorette-1.4.0" 115820 115877 sources."commander-7.2.0" 115821 115878 sources."css-select-4.1.3" 115822 115879 sources."css-tree-1.1.3" ··· 115824 115881 sources."csso-4.2.0" 115825 115882 sources."dom-serializer-1.3.2" 115826 115883 sources."domelementtype-2.2.0" 115827 - sources."domhandler-4.2.0" 115828 - sources."domutils-2.7.0" 115884 + sources."domhandler-4.2.2" 115885 + sources."domutils-2.8.0" 115829 115886 sources."entities-2.2.0" 115830 115887 sources."mdn-data-2.0.14" 115831 115888 sources."nth-check-2.0.0" ··· 115958 116015 sources."cookiejar-2.1.2" 115959 116016 sources."copy-descriptor-0.1.1" 115960 116017 sources."core-js-2.6.12" 115961 - sources."core-util-is-1.0.2" 116018 + sources."core-util-is-1.0.3" 115962 116019 sources."create-error-class-3.0.2" 115963 116020 (sources."cross-spawn-5.1.0" // { 115964 116021 dependencies = [ ··· 116426 116483 sources."truncate-utf8-bytes-1.0.2" 116427 116484 sources."type-is-1.6.18" 116428 116485 sources."typedarray-0.0.6" 116429 - sources."uglify-js-3.14.1" 116486 + sources."uglify-js-3.14.2" 116430 116487 sources."undefsafe-2.0.3" 116431 116488 (sources."union-value-1.0.1" // { 116432 116489 dependencies = [ ··· 116553 116610 sources."module-alias-2.2.2" 116554 116611 sources."moment-2.29.1" 116555 116612 sources."ms-2.1.2" 116556 - sources."node-fetch-2.6.1" 116613 + sources."node-fetch-2.6.2" 116557 116614 sources."oauth-sign-0.9.0" 116558 116615 sources."p-limit-2.3.0" 116559 116616 sources."p-locate-3.0.0" ··· 116617 116674 dependencies = [ 116618 116675 sources."ansi-regex-2.1.1" 116619 116676 sources."aproba-1.2.0" 116620 - sources."are-we-there-yet-1.1.5" 116677 + sources."are-we-there-yet-1.1.7" 116621 116678 sources."base64-js-1.5.1" 116622 116679 sources."bindings-1.5.0" 116623 116680 (sources."bl-4.1.0" // { ··· 116629 116686 sources."chownr-1.1.4" 116630 116687 sources."code-point-at-1.1.0" 116631 116688 sources."console-control-strings-1.1.0" 116632 - sources."core-util-is-1.0.2" 116689 + sources."core-util-is-1.0.3" 116633 116690 sources."decompress-response-4.2.1" 116634 116691 sources."deep-extend-0.6.0" 116635 116692 sources."delegates-1.0.0" ··· 116650 116707 sources."minimist-1.2.5" 116651 116708 sources."mkdirp-classic-0.5.3" 116652 116709 sources."napi-build-utils-1.0.2" 116653 - sources."node-abi-2.30.0" 116710 + sources."node-abi-2.30.1" 116654 116711 sources."node-addon-api-3.0.2" 116655 116712 sources."noop-logger-0.1.1" 116656 116713 sources."npmlog-4.1.2" ··· 116680 116737 ]; 116681 116738 }) 116682 116739 sources."tunnel-agent-0.6.0" 116683 - sources."usb-1.7.1" 116740 + sources."usb-1.7.2" 116684 116741 sources."util-deprecate-1.0.2" 116685 116742 sources."which-pm-runs-1.0.0" 116686 116743 sources."wide-align-1.1.3" ··· 116711 116768 sources."balanced-match-1.0.2" 116712 116769 sources."brace-expansion-1.1.11" 116713 116770 sources."concat-map-0.0.1" 116714 - sources."core-util-is-1.0.2" 116771 + sources."core-util-is-1.0.3" 116715 116772 sources."enhanced-resolve-2.3.0" 116716 116773 sources."errno-0.1.8" 116717 116774 sources."fs.realpath-1.0.0" ··· 116828 116885 sources."crypt-0.0.2" 116829 116886 sources."debug-4.3.2" 116830 116887 sources."deep-equal-1.1.1" 116831 - sources."deep-is-0.1.3" 116888 + sources."deep-is-0.1.4" 116832 116889 sources."define-properties-1.1.3" 116833 116890 sources."diff-4.0.2" 116834 116891 sources."emoji-regex-8.0.0" ··· 117092 117149 sources."@types/normalize-package-data-2.4.1" 117093 117150 sources."@types/parse5-5.0.3" 117094 117151 sources."@types/unist-2.0.6" 117095 - sources."acorn-8.4.1" 117152 + sources."acorn-8.5.0" 117096 117153 sources."acorn-jsx-5.3.2" 117097 117154 sources."alex-9.1.0" 117098 117155 (sources."ansi-align-3.0.0" // { ··· 117152 117209 ]; 117153 117210 }) 117154 117211 sources."configstore-5.0.1" 117155 - sources."core-util-is-1.0.2" 117212 + sources."core-util-is-1.0.3" 117156 117213 sources."crypto-random-string-2.0.0" 117157 117214 sources."cuss-1.21.0" 117158 117215 sources."debug-4.3.2" ··· 117562 117619 sources."boundary-1.0.1" 117563 117620 sources."buffer-from-1.1.2" 117564 117621 sources."concat-stream-1.6.2" 117565 - sources."core-util-is-1.0.2" 117622 + sources."core-util-is-1.0.3" 117566 117623 sources."inherits-2.0.4" 117567 117624 sources."isarray-1.0.0" 117568 117625 sources."object-assign-4.1.1" ··· 117699 117756 sources."define-properties-1.1.3" 117700 117757 sources."emoji-regex-6.5.1" 117701 117758 sources."end-with-1.0.2" 117702 - sources."es-abstract-1.18.5" 117759 + sources."es-abstract-1.18.6" 117703 117760 sources."es-to-primitive-1.2.1" 117704 117761 sources."function-bind-1.1.1" 117705 117762 sources."get-intrinsic-1.1.1" 117763 + sources."get-symbol-description-1.0.0" 117706 117764 sources."has-1.0.3" 117707 117765 sources."has-bigints-1.0.1" 117708 117766 sources."has-symbols-1.0.2" ··· 117808 117866 sources."array-includes-3.1.3" 117809 117867 sources."call-bind-1.0.2" 117810 117868 sources."define-properties-1.1.3" 117811 - sources."es-abstract-1.18.5" 117869 + sources."es-abstract-1.18.6" 117812 117870 sources."es-to-primitive-1.2.1" 117813 117871 sources."function-bind-1.1.1" 117814 117872 sources."get-intrinsic-1.1.1" 117873 + sources."get-symbol-description-1.0.0" 117815 117874 sources."has-1.0.3" 117816 117875 sources."has-bigints-1.0.1" 117817 117876 sources."has-symbols-1.0.2" ··· 117896 117955 sources."@tokenizer/token-0.3.0" 117897 117956 sources."@types/cacheable-request-6.0.2" 117898 117957 sources."@types/http-cache-semantics-4.0.1" 117899 - sources."@types/keyv-3.1.2" 117900 - sources."@types/node-16.7.2" 117958 + sources."@types/keyv-3.1.3" 117959 + sources."@types/node-16.7.13" 117901 117960 sources."@types/responselike-1.0.0" 117902 117961 sources."abbrev-1.1.1" 117903 117962 sources."abstract-logging-2.0.1" ··· 117913 117972 sources."ansi-regex-2.1.1" 117914 117973 sources."ansi-styles-4.3.0" 117915 117974 sources."aproba-1.2.0" 117916 - (sources."are-we-there-yet-1.1.5" // { 117975 + (sources."are-we-there-yet-1.1.7" // { 117917 117976 dependencies = [ 117918 117977 sources."isarray-1.0.0" 117919 117978 sources."readable-stream-2.3.7" ··· 117973 118032 sources."content-type-1.0.4" 117974 118033 sources."cookie-0.4.0" 117975 118034 sources."cookie-signature-1.0.6" 117976 - sources."core-js-3.16.3" 118035 + sources."core-js-3.17.2" 117977 118036 sources."core-util-is-1.0.2" 117978 118037 sources."css-select-1.2.0" 117979 118038 sources."css-what-2.1.3" ··· 118128 118187 sources."mkdirp-0.5.5" 118129 118188 sources."ms-2.0.0" 118130 118189 sources."mute-stream-0.0.8" 118131 - (sources."needle-2.9.0" // { 118190 + (sources."needle-2.9.1" // { 118132 118191 dependencies = [ 118133 118192 sources."debug-3.2.7" 118134 118193 sources."ms-2.1.3" ··· 118225 118284 sources."uuid-3.4.0" 118226 118285 ]; 118227 118286 }) 118228 - sources."resolve-alpn-1.2.0" 118287 + sources."resolve-alpn-1.2.1" 118229 118288 sources."responselike-2.0.0" 118230 118289 sources."rimraf-2.7.1" 118231 118290 sources."safe-buffer-5.2.1" ··· 118317 118376 sources."wide-align-1.1.3" 118318 118377 sources."with-open-file-0.1.7" 118319 118378 sources."wrappy-1.0.2" 118320 - sources."ws-7.5.3" 118379 + sources."ws-7.5.4" 118321 118380 sources."xmlhttprequest-ssl-1.5.5" 118322 118381 sources."yallist-3.1.1" 118323 118382 sources."yarn-1.22.4" ··· 118336 118395 three = nodeEnv.buildNodePackage { 118337 118396 name = "three"; 118338 118397 packageName = "three"; 118339 - version = "0.132.0"; 118398 + version = "0.132.2"; 118340 118399 src = fetchurl { 118341 - url = "https://registry.npmjs.org/three/-/three-0.132.0.tgz"; 118342 - sha512 = "kv4WeP3O5/8mcHyuGYnqBQYdEfzSz9kEkq4H/9J966epNlGSVJ8gYC3SwT9qIITdgC0OvLr3zPltCS4dUyg2eg=="; 118400 + url = "https://registry.npmjs.org/three/-/three-0.132.2.tgz"; 118401 + sha512 = "0wcR7LxxkXMn6Gi58gEs3QvY8WpTVXA31L2VOvpjm4ZPYFRHCZC13UqynheFoS5OXDYgtBneN0dhbaNBE8iLhQ=="; 118343 118402 }; 118344 118403 buildInputs = globalBuildInputs; 118345 118404 meta = { ··· 118517 118576 ]; 118518 118577 }) 118519 118578 sources."concat-map-0.0.1" 118520 - sources."core-util-is-1.0.2" 118579 + sources."core-util-is-1.0.3" 118521 118580 (sources."dashdash-1.14.1" // { 118522 118581 dependencies = [ 118523 118582 sources."assert-plus-1.0.0" ··· 118661 118720 (sources."verror-1.10.0" // { 118662 118721 dependencies = [ 118663 118722 sources."assert-plus-1.0.0" 118723 + sources."core-util-is-1.0.2" 118664 118724 sources."extsprintf-1.4.0" 118665 118725 ]; 118666 118726 }) ··· 118763 118823 typescript = nodeEnv.buildNodePackage { 118764 118824 name = "typescript"; 118765 118825 packageName = "typescript"; 118766 - version = "4.3.5"; 118826 + version = "4.4.2"; 118767 118827 src = fetchurl { 118768 - url = "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz"; 118769 - sha512 = "DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA=="; 118828 + url = "https://registry.npmjs.org/typescript/-/typescript-4.4.2.tgz"; 118829 + sha512 = "gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ=="; 118770 118830 }; 118771 118831 buildInputs = globalBuildInputs; 118772 118832 meta = { ··· 118781 118841 typescript-language-server = nodeEnv.buildNodePackage { 118782 118842 name = "typescript-language-server"; 118783 118843 packageName = "typescript-language-server"; 118784 - version = "0.6.1"; 118844 + version = "0.6.2"; 118785 118845 src = fetchurl { 118786 - url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.6.1.tgz"; 118787 - sha512 = "ZqqD4XK1EgITEoW1SaOnNe473K5EMr7vSYwFeqK4Fe37TjNyEwB+2vXuqW01kPujiw7tRpv3teDAl7WtP9AmIw=="; 118846 + url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.6.2.tgz"; 118847 + sha512 = "JiLQ5G7CWlswUFhBhudoX4jbfgyo/CIIED3CIrrlwcl/QSTt1gDZX+3sx1H/yTwzJRhnKgKS/AnbzbU9tgSVEA=="; 118788 118848 }; 118789 118849 dependencies = [ 118790 118850 sources."@nodelib/fs.scandir-2.1.5" ··· 118862 118922 uglify-js = nodeEnv.buildNodePackage { 118863 118923 name = "uglify-js"; 118864 118924 packageName = "uglify-js"; 118865 - version = "3.14.1"; 118925 + version = "3.14.2"; 118866 118926 src = fetchurl { 118867 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.1.tgz"; 118868 - sha512 = "JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g=="; 118927 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.2.tgz"; 118928 + sha512 = "rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A=="; 118869 118929 }; 118870 118930 buildInputs = globalBuildInputs; 118871 118931 meta = { ··· 118911 118971 sources."@types/component-emitter-1.2.10" 118912 118972 sources."@types/cookie-0.4.1" 118913 118973 sources."@types/cors-2.8.12" 118914 - sources."@types/node-14.17.12" 118974 + sources."@types/node-14.17.15" 118915 118975 sources."abbrev-1.1.1" 118916 118976 sources."accepts-1.3.7" 118917 118977 sources."ansi-regex-5.0.0" ··· 118953 119013 sources."cookie-0.4.0" 118954 119014 sources."cookie-parser-1.4.5" 118955 119015 sources."cookie-signature-1.0.6" 118956 - sources."core-util-is-1.0.2" 119016 + sources."core-util-is-1.0.3" 118957 119017 sources."cors-2.8.5" 118958 119018 sources."crossroads-0.12.2" 118959 119019 sources."debug-2.6.9" ··· 118964 119024 sources."depd-1.1.2" 118965 119025 sources."destroy-1.0.4" 118966 119026 sources."diff-5.0.0" 118967 - sources."diff2html-3.4.9" 119027 + sources."diff2html-3.4.11" 118968 119028 sources."dnd-page-scroll-0.0.4" 118969 119029 sources."duplexer3-0.1.4" 118970 119030 sources."ee-first-1.1.1" ··· 118979 119039 sources."ms-2.1.2" 118980 119040 ]; 118981 119041 }) 118982 - sources."engine.io-parser-4.0.2" 119042 + sources."engine.io-parser-4.0.3" 118983 119043 sources."escalade-3.1.1" 118984 119044 sources."escape-html-1.0.3" 118985 119045 sources."etag-1.8.1" ··· 118992 119052 sources."safe-buffer-5.2.1" 118993 119053 ]; 118994 119054 }) 118995 - sources."fast-safe-stringify-2.0.8" 119055 + sources."fast-safe-stringify-2.1.1" 118996 119056 sources."fecha-4.2.1" 118997 119057 sources."finalhandler-1.1.2" 118998 119058 sources."fn.name-1.1.0" ··· 119124 119184 sources."ms-2.1.2" 119125 119185 ]; 119126 119186 }) 119127 - sources."socket.io-adapter-2.3.1" 119187 + sources."socket.io-adapter-2.3.2" 119128 119188 (sources."socket.io-parser-4.0.4" // { 119129 119189 dependencies = [ 119130 119190 sources."debug-4.3.2" ··· 119192 119252 sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w=="; 119193 119253 }; 119194 119254 dependencies = [ 119195 - sources."@types/node-16.7.2" 119255 + sources."@types/node-16.7.13" 119196 119256 sources."@types/unist-2.0.6" 119197 119257 sources."@types/vfile-3.0.2" 119198 119258 sources."@types/vfile-message-2.0.0" ··· 119349 119409 sources."ansi-regex-2.1.1" 119350 119410 sources."ansi-styles-4.3.0" 119351 119411 sources."aproba-1.2.0" 119352 - sources."are-we-there-yet-1.1.5" 119412 + sources."are-we-there-yet-1.1.7" 119353 119413 sources."balanced-match-1.0.2" 119354 119414 sources."brace-expansion-1.1.11" 119355 119415 sources."canvas-2.8.0" ··· 119368 119428 sources."commander-2.20.3" 119369 119429 sources."concat-map-0.0.1" 119370 119430 sources."console-control-strings-1.1.0" 119371 - sources."core-util-is-1.0.2" 119431 + sources."core-util-is-1.0.3" 119372 119432 sources."d3-array-2.12.1" 119373 119433 sources."d3-color-2.0.0" 119374 119434 sources."d3-delaunay-5.3.0" ··· 119423 119483 sources."mkdirp-1.0.4" 119424 119484 sources."ms-2.1.2" 119425 119485 sources."nan-2.15.0" 119426 - sources."node-fetch-2.6.1" 119486 + sources."node-fetch-2.6.2" 119427 119487 sources."nopt-5.0.0" 119428 119488 sources."npmlog-4.1.2" 119429 119489 sources."number-is-nan-1.0.1" ··· 119515 119575 vega-lite = nodeEnv.buildNodePackage { 119516 119576 name = "vega-lite"; 119517 119577 packageName = "vega-lite"; 119518 - version = "5.1.0"; 119578 + version = "5.1.1"; 119519 119579 src = fetchurl { 119520 - url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.1.0.tgz"; 119521 - sha512 = "HEyf0iHnCNmWkWFIbEmMphcJwZpcBnfnU8v+Ojrndr7ihDueojHMOSikoyz/GNpdkai+QFxLboA6DDCTtFv9iQ=="; 119580 + url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.1.1.tgz"; 119581 + sha512 = "V085gNkbgbmcVC/Q3dJjmIioxcDicxMHvH0FIKOPxdplzt+qU9xGIhQy7scj0tSMYnmAPCayB5oLkkQXFb6w1w=="; 119522 119582 }; 119523 119583 dependencies = [ 119524 119584 sources."@types/clone-2.1.1" 119525 - sources."@types/fast-json-stable-stringify-2.1.0" 119526 119585 sources."ansi-regex-5.0.0" 119527 119586 sources."ansi-styles-4.3.0" 119528 119587 sources."array-flat-polyfill-1.0.1" ··· 119540 119599 sources."require-directory-2.1.1" 119541 119600 sources."string-width-4.2.2" 119542 119601 sources."strip-ansi-6.0.0" 119543 - sources."tslib-2.2.0" 119602 + sources."tslib-2.3.1" 119544 119603 sources."vega-event-selector-2.0.6" 119545 119604 sources."vega-expression-4.0.1" 119546 119605 sources."vega-util-1.16.1" 119547 119606 sources."wrap-ansi-7.0.0" 119548 119607 sources."y18n-5.0.8" 119549 - sources."yargs-16.2.0" 119608 + sources."yargs-17.1.1" 119550 119609 sources."yargs-parser-20.2.9" 119551 119610 ]; 119552 119611 buildInputs = globalBuildInputs; ··· 119570 119629 dependencies = [ 119571 119630 sources."@sindresorhus/is-0.14.0" 119572 119631 sources."@szmarczak/http-timer-1.1.2" 119573 - sources."@types/node-16.7.2" 119632 + sources."@types/node-16.7.13" 119574 119633 sources."@vercel/build-utils-2.12.2" 119575 119634 sources."@vercel/go-1.2.3" 119576 119635 sources."@vercel/node-1.12.1" ··· 119691 119750 vim-language-server = nodeEnv.buildNodePackage { 119692 119751 name = "vim-language-server"; 119693 119752 packageName = "vim-language-server"; 119694 - version = "2.2.4"; 119753 + version = "2.2.5"; 119695 119754 src = fetchurl { 119696 - url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.4.tgz"; 119697 - sha512 = "MHbdFNU9C7pwXMY7UvzjdslNBRwFazy+wDe7Kv30L1Hl6BiMpkOAQ4RgvevYQAjm/NpS6gvMz7N0FFKr2qjKsw=="; 119755 + url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.5.tgz"; 119756 + sha512 = "893GcGS5oFjBK2Dakdl4I0x8rtkgI+TOi44M9PmFU6YV+kwoLIRAxIcoF55rGiHFESCq98C+yjWn1OXznWgm7A=="; 119698 119757 }; 119699 119758 buildInputs = globalBuildInputs; 119700 119759 meta = { ··· 119753 119812 sources."concat-map-0.0.1" 119754 119813 sources."cross-spawn-7.0.3" 119755 119814 sources."debug-4.3.2" 119756 - sources."deep-is-0.1.3" 119815 + sources."deep-is-0.1.4" 119757 119816 sources."diff-4.0.2" 119758 119817 sources."doctrine-3.0.0" 119759 119818 sources."emoji-regex-8.0.0" 119760 119819 sources."enquirer-2.3.6" 119761 119820 sources."escape-string-regexp-4.0.0" 119762 119821 sources."eslint-7.32.0" 119763 - (sources."eslint-plugin-vue-7.16.0" // { 119822 + (sources."eslint-plugin-vue-7.17.0" // { 119764 119823 dependencies = [ 119765 119824 sources."semver-6.3.0" 119766 119825 ]; ··· 119877 119936 sources."tsutils-2.29.0" 119878 119937 sources."type-check-0.4.0" 119879 119938 sources."type-fest-0.20.2" 119880 - sources."typescript-4.3.5" 119939 + sources."typescript-4.4.2" 119881 119940 sources."uri-js-4.4.1" 119882 119941 sources."v8-compile-cache-2.3.0" 119883 - (sources."vue-eslint-parser-7.10.0" // { 119942 + (sources."vue-eslint-parser-7.11.0" // { 119884 119943 dependencies = [ 119885 119944 sources."eslint-visitor-keys-1.3.0" 119886 119945 sources."espree-6.2.1" ··· 120081 120140 sources."vscode-nls-4.1.2" 120082 120141 ]; 120083 120142 }) 120084 - sources."typescript-4.3.5" 120143 + sources."typescript-4.4.2" 120085 120144 sources."vscode-css-languageservice-5.1.4" 120086 120145 sources."vscode-html-languageservice-4.0.7" 120087 120146 sources."vscode-json-languageservice-4.1.7" ··· 120116 120175 sources."@types/json-schema-7.0.9" 120117 120176 sources."@types/mocha-7.0.2" 120118 120177 sources."@types/node-8.10.66" 120119 - sources."@types/vscode-1.59.0" 120178 + sources."@types/vscode-1.60.0" 120120 120179 sources."@types/yauzl-2.9.2" 120121 120180 sources."@ungap/promise-all-settled-1.1.2" 120122 120181 sources."@webassemblyjs/ast-1.11.1" ··· 120139 120198 sources."@webpack-cli/serve-1.5.2" 120140 120199 sources."@xtuc/ieee754-1.2.0" 120141 120200 sources."@xtuc/long-4.2.2" 120142 - sources."acorn-8.4.1" 120201 + sources."acorn-8.5.0" 120143 120202 sources."acorn-import-assertions-1.7.6" 120144 120203 sources."ajv-6.12.6" 120145 120204 sources."ajv-keywords-3.5.2" ··· 120156 120215 sources."brace-expansion-1.1.11" 120157 120216 sources."braces-3.0.2" 120158 120217 sources."browser-stdout-1.3.1" 120159 - sources."browserslist-4.16.8" 120218 + sources."browserslist-4.17.0" 120160 120219 sources."buffer-crc32-0.2.13" 120161 120220 sources."buffer-from-1.1.2" 120162 120221 sources."call-bind-1.0.2" 120163 120222 sources."camelcase-6.2.0" 120164 - sources."caniuse-lite-1.0.30001252" 120223 + sources."caniuse-lite-1.0.30001255" 120165 120224 (sources."chalk-4.1.2" // { 120166 120225 dependencies = [ 120167 120226 sources."supports-color-7.2.0" ··· 120182 120241 sources."clone-deep-4.0.1" 120183 120242 sources."color-convert-2.0.1" 120184 120243 sources."color-name-1.1.4" 120185 - sources."colorette-1.3.0" 120244 + sources."colorette-1.4.0" 120186 120245 sources."commander-6.2.1" 120187 120246 sources."concat-map-0.0.1" 120188 - sources."core-util-is-1.0.2" 120247 + sources."core-util-is-1.0.3" 120189 120248 sources."cross-spawn-7.0.3" 120190 120249 sources."css-select-4.1.3" 120191 120250 sources."css-what-5.0.1" ··· 120199 120258 sources."diff-5.0.0" 120200 120259 sources."dom-serializer-1.3.2" 120201 120260 sources."domelementtype-2.2.0" 120202 - sources."domhandler-4.2.0" 120203 - sources."domutils-2.7.0" 120204 - sources."electron-to-chromium-1.3.818" 120261 + sources."domhandler-4.2.2" 120262 + sources."domutils-2.8.0" 120263 + sources."electron-to-chromium-1.3.832" 120205 120264 sources."emoji-regex-8.0.0" 120206 120265 sources."emojis-list-3.0.0" 120207 120266 sources."enhanced-resolve-5.8.2" ··· 120260 120319 sources."isarray-0.0.1" 120261 120320 sources."isexe-2.0.0" 120262 120321 sources."isobject-3.0.1" 120263 - sources."jest-worker-27.0.6" 120322 + sources."jest-worker-27.1.0" 120264 120323 sources."js-yaml-4.0.0" 120265 120324 sources."json-parse-better-errors-1.0.2" 120266 120325 sources."json-schema-traverse-0.4.1" ··· 120372 120431 sources."source-map-0.7.3" 120373 120432 ]; 120374 120433 }) 120375 - (sources."terser-webpack-plugin-5.1.4" // { 120434 + (sources."terser-webpack-plugin-5.2.3" // { 120376 120435 dependencies = [ 120377 120436 sources."serialize-javascript-6.0.0" 120378 120437 ]; ··· 120388 120447 }) 120389 120448 sources."tslib-2.3.1" 120390 120449 sources."tunnel-0.0.6" 120391 - sources."typed-rest-client-1.8.5" 120392 - sources."typescript-4.3.5" 120450 + sources."typed-rest-client-1.8.6" 120451 + sources."typescript-4.4.2" 120393 120452 sources."uc.micro-1.0.6" 120394 120453 sources."underscore-1.13.1" 120395 120454 sources."uri-js-4.4.1" ··· 120410 120469 sources."vscode-debugadapter-testsupport-1.49.0" 120411 120470 sources."vscode-debugprotocol-1.49.0" 120412 120471 sources."watchpack-2.2.0" 120413 - sources."webpack-5.51.1" 120472 + sources."webpack-5.52.0" 120414 120473 (sources."webpack-cli-4.8.0" // { 120415 120474 dependencies = [ 120416 120475 sources."commander-7.2.0" ··· 120515 120574 sources."concat-map-0.0.1" 120516 120575 sources."config-chain-1.1.13" 120517 120576 sources."consolidate-0.14.5" 120518 - sources."core-util-is-1.0.2" 120577 + sources."core-util-is-1.0.3" 120519 120578 sources."create-error-class-3.0.2" 120520 120579 sources."dashdash-1.14.1" 120521 120580 sources."decompress-4.2.1" ··· 120708 120767 sources."tslib-1.14.1" 120709 120768 sources."tunnel-agent-0.6.0" 120710 120769 sources."tweetnacl-0.14.5" 120711 - sources."uglify-js-3.14.1" 120770 + sources."uglify-js-3.14.2" 120712 120771 sources."uid-0.0.2" 120713 120772 sources."unbzip2-stream-1.4.3" 120714 120773 sources."unyield-0.0.1" ··· 120720 120779 sources."util-deprecate-1.0.2" 120721 120780 sources."uuid-3.4.0" 120722 120781 sources."validate-npm-package-name-3.0.0" 120723 - sources."verror-1.10.0" 120782 + (sources."verror-1.10.0" // { 120783 + dependencies = [ 120784 + sources."core-util-is-1.0.2" 120785 + ]; 120786 + }) 120724 120787 sources."ware-1.3.0" 120725 120788 sources."win-fork-1.1.1" 120726 120789 sources."wordwrap-1.0.0" ··· 120767 120830 sources."@starptech/rehype-webparser-0.10.0" 120768 120831 sources."@starptech/webparser-0.10.0" 120769 120832 sources."@szmarczak/http-timer-1.1.2" 120770 - sources."@types/node-16.7.2" 120833 + sources."@types/node-16.7.13" 120771 120834 sources."@types/unist-2.0.6" 120772 120835 sources."@types/vfile-3.0.2" 120773 120836 sources."@types/vfile-message-2.0.0" ··· 120916 120979 sources."configstore-4.0.0" 120917 120980 sources."copy-descriptor-0.1.1" 120918 120981 sources."core-js-2.6.12" 120919 - sources."core-util-is-1.0.2" 120982 + sources."core-util-is-1.0.3" 120920 120983 sources."cross-spawn-5.1.0" 120921 120984 sources."crypto-random-string-1.0.0" 120922 120985 (sources."css-2.2.4" // { ··· 120936 120999 sources."decode-uri-component-0.2.0" 120937 121000 sources."decompress-response-3.3.0" 120938 121001 sources."deep-extend-0.6.0" 120939 - sources."deep-is-0.1.3" 121002 + sources."deep-is-0.1.4" 120940 121003 sources."defaults-1.0.3" 120941 121004 sources."defer-to-connect-1.1.3" 120942 121005 sources."define-property-2.0.2" ··· 120967 121030 sources."eslint-scope-5.1.1" 120968 121031 sources."espree-6.2.1" 120969 121032 sources."ms-2.1.2" 120970 - (sources."vue-eslint-parser-7.10.0" // { 121033 + (sources."vue-eslint-parser-7.11.0" // { 120971 121034 dependencies = [ 120972 121035 sources."semver-6.3.0" 120973 121036 ]; ··· 121690 121753 sha512 = "uhSNGU27KDT2e2v51l/NqMc59O7X0DG7CHonZOwsnvMHLvyudCLZgXCU8Rw4T8gpqg2asn50vfPHq7l3DGlN5w=="; 121691 121754 }; 121692 121755 dependencies = [ 121693 - sources."@babel/runtime-corejs3-7.15.3" 121756 + sources."@babel/runtime-corejs3-7.15.4" 121694 121757 sources."@mapbox/node-pre-gyp-1.0.5" 121695 121758 sources."@tootallnate/once-1.1.2" 121696 121759 sources."@types/raf-3.4.0" 121697 121760 sources."abab-2.0.5" 121698 121761 sources."abbrev-1.1.1" 121699 - sources."acorn-8.4.1" 121762 + sources."acorn-8.5.0" 121700 121763 (sources."acorn-globals-6.0.0" // { 121701 121764 dependencies = [ 121702 121765 sources."acorn-7.4.1" ··· 121707 121770 sources."ansi-regex-2.1.1" 121708 121771 sources."ansi-styles-4.3.0" 121709 121772 sources."aproba-1.2.0" 121710 - sources."are-we-there-yet-1.1.5" 121773 + sources."are-we-there-yet-1.1.7" 121711 121774 sources."asynckit-0.4.0" 121712 121775 sources."at-least-node-1.0.0" 121713 121776 sources."atob-2.1.2" 121714 121777 sources."balanced-match-1.0.2" 121715 - (sources."bit-field-1.5.2" // { 121778 + (sources."bit-field-1.5.3" // { 121716 121779 dependencies = [ 121717 121780 sources."ansi-regex-5.0.0" 121718 121781 sources."fs-extra-10.0.0" ··· 121742 121805 sources."combined-stream-1.0.8" 121743 121806 sources."concat-map-0.0.1" 121744 121807 sources."console-control-strings-1.1.0" 121745 - sources."core-js-pure-3.16.3" 121746 - sources."core-util-is-1.0.2" 121808 + sources."core-js-pure-3.17.2" 121809 + sources."core-util-is-1.0.3" 121747 121810 sources."cssom-0.4.4" 121748 121811 (sources."cssstyle-2.3.0" // { 121749 121812 dependencies = [ ··· 121754 121817 sources."debug-4.3.2" 121755 121818 sources."decimal.js-10.3.1" 121756 121819 sources."decompress-response-4.2.1" 121757 - sources."deep-is-0.1.3" 121820 + sources."deep-is-0.1.4" 121758 121821 sources."delayed-stream-1.0.0" 121759 121822 sources."delegates-1.0.0" 121760 121823 sources."detect-libc-1.0.3" ··· 121810 121873 sources."mkdirp-1.0.4" 121811 121874 sources."ms-2.1.2" 121812 121875 sources."nan-2.15.0" 121813 - sources."node-fetch-2.6.1" 121876 + sources."node-fetch-2.6.2" 121814 121877 sources."nopt-5.0.0" 121815 121878 sources."npmlog-4.1.2" 121816 121879 sources."number-is-nan-1.0.1" ··· 121878 121941 ]; 121879 121942 }) 121880 121943 sources."wrappy-1.0.2" 121881 - sources."ws-7.5.3" 121944 + sources."ws-7.5.4" 121882 121945 sources."xml-name-validator-3.0.0" 121883 121946 sources."xmlchars-2.2.0" 121884 121947 sources."y18n-5.0.8" ··· 121948 122011 sources."@sindresorhus/is-0.14.0" 121949 122012 sources."@szmarczak/http-timer-1.1.2" 121950 122013 sources."@types/minimatch-3.0.5" 121951 - sources."@types/node-16.7.2" 122014 + sources."@types/node-16.7.13" 121952 122015 sources."@types/yauzl-2.9.1" 121953 122016 sources."acorn-7.4.1" 121954 122017 sources."acorn-jsx-5.3.2" ··· 122025 122088 sources."clone-response-1.0.2" 122026 122089 sources."color-convert-2.0.1" 122027 122090 sources."color-name-1.1.4" 122028 - sources."colorette-1.3.0" 122091 + sources."colorette-1.4.0" 122029 122092 sources."columnify-1.5.4" 122030 122093 sources."combined-stream-1.0.8" 122031 122094 sources."commander-2.20.3" ··· 122046 122109 sources."decompress-response-3.3.0" 122047 122110 sources."deep-equal-1.1.1" 122048 122111 sources."deep-extend-0.6.0" 122049 - sources."deep-is-0.1.3" 122112 + sources."deep-is-0.1.4" 122050 122113 sources."deepcopy-2.1.0" 122051 122114 sources."deepmerge-4.2.2" 122052 122115 sources."defaults-1.0.3" ··· 122062 122125 sources."doctrine-3.0.0" 122063 122126 sources."dom-serializer-1.3.2" 122064 122127 sources."domelementtype-2.2.0" 122065 - sources."domhandler-4.2.0" 122066 - sources."domutils-2.7.0" 122128 + sources."domhandler-4.2.2" 122129 + sources."domutils-2.8.0" 122067 122130 sources."dot-prop-5.3.0" 122068 122131 sources."dtrace-provider-0.8.8" 122069 122132 sources."duplexer3-0.1.4" ··· 122103 122166 sources."eslint-visitor-keys-3.0.0" 122104 122167 (sources."espree-8.0.0" // { 122105 122168 dependencies = [ 122106 - sources."acorn-8.4.1" 122169 + sources."acorn-8.5.0" 122107 122170 ]; 122108 122171 }) 122109 122172 sources."esprima-4.0.1" ··· 122131 122194 }) 122132 122195 sources."fast-json-stable-stringify-2.1.0" 122133 122196 sources."fast-levenshtein-2.0.6" 122134 - sources."fast-redact-3.0.1" 122135 - sources."fast-safe-stringify-2.0.8" 122197 + sources."fast-redact-3.0.2" 122198 + sources."fast-safe-stringify-2.1.1" 122136 122199 sources."fd-slicer-1.1.0" 122137 122200 sources."file-entry-cache-6.0.1" 122138 122201 (sources."firefox-profile-4.2.0" // { ··· 122509 122572 webpack = nodeEnv.buildNodePackage { 122510 122573 name = "webpack"; 122511 122574 packageName = "webpack"; 122512 - version = "5.51.1"; 122575 + version = "5.52.0"; 122513 122576 src = fetchurl { 122514 - url = "https://registry.npmjs.org/webpack/-/webpack-5.51.1.tgz"; 122515 - sha512 = "xsn3lwqEKoFvqn4JQggPSRxE4dhsRcysWTqYABAZlmavcoTmwlOb9b1N36Inbt/eIispSkuHa80/FJkDTPos1A=="; 122577 + url = "https://registry.npmjs.org/webpack/-/webpack-5.52.0.tgz"; 122578 + sha512 = "yRZOat8jWGwBwHpco3uKQhVU7HYaNunZiJ4AkAVQkPCUGoZk/tiIXiwG+8HIy/F+qsiZvSOa+GLQOj3q5RKRYg=="; 122516 122579 }; 122517 122580 dependencies = [ 122518 122581 sources."@types/eslint-7.28.0" 122519 122582 sources."@types/eslint-scope-3.7.1" 122520 122583 sources."@types/estree-0.0.50" 122521 122584 sources."@types/json-schema-7.0.9" 122522 - sources."@types/node-16.7.2" 122585 + sources."@types/node-16.7.13" 122523 122586 sources."@webassemblyjs/ast-1.11.1" 122524 122587 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 122525 122588 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 122537 122600 sources."@webassemblyjs/wast-printer-1.11.1" 122538 122601 sources."@xtuc/ieee754-1.2.0" 122539 122602 sources."@xtuc/long-4.2.2" 122540 - sources."acorn-8.4.1" 122603 + sources."acorn-8.5.0" 122541 122604 sources."acorn-import-assertions-1.7.6" 122542 122605 sources."ajv-6.12.6" 122543 122606 sources."ajv-keywords-3.5.2" 122544 - sources."browserslist-4.16.8" 122607 + sources."browserslist-4.17.0" 122545 122608 sources."buffer-from-1.1.2" 122546 - sources."caniuse-lite-1.0.30001252" 122609 + sources."caniuse-lite-1.0.30001255" 122547 122610 sources."chrome-trace-event-1.0.3" 122548 - sources."colorette-1.3.0" 122611 + sources."colorette-1.4.0" 122549 122612 sources."commander-2.20.3" 122550 - sources."electron-to-chromium-1.3.818" 122613 + sources."electron-to-chromium-1.3.832" 122551 122614 sources."enhanced-resolve-5.8.2" 122552 122615 sources."es-module-lexer-0.7.1" 122553 122616 sources."escalade-3.1.1" ··· 122564 122627 sources."glob-to-regexp-0.4.1" 122565 122628 sources."graceful-fs-4.2.8" 122566 122629 sources."has-flag-4.0.0" 122567 - sources."jest-worker-27.0.6" 122630 + sources."jest-worker-27.1.0" 122568 122631 sources."json-parse-better-errors-1.0.2" 122569 122632 sources."json-schema-traverse-0.4.1" 122570 122633 sources."loader-runner-4.2.0" ··· 122588 122651 sources."source-map-0.7.3" 122589 122652 ]; 122590 122653 }) 122591 - sources."terser-webpack-plugin-5.1.4" 122654 + sources."terser-webpack-plugin-5.2.3" 122592 122655 sources."uri-js-4.4.1" 122593 122656 sources."watchpack-2.2.0" 122594 122657 sources."webpack-sources-3.2.0" ··· 122618 122681 sources."@webpack-cli/info-1.3.0" 122619 122682 sources."@webpack-cli/serve-1.5.2" 122620 122683 sources."clone-deep-4.0.1" 122621 - sources."colorette-1.3.0" 122684 + sources."colorette-1.4.0" 122622 122685 sources."commander-7.2.0" 122623 122686 sources."cross-spawn-7.0.3" 122624 122687 sources."envinfo-7.8.1" ··· 122676 122739 webpack-dev-server = nodeEnv.buildNodePackage { 122677 122740 name = "webpack-dev-server"; 122678 122741 packageName = "webpack-dev-server"; 122679 - version = "4.0.0"; 122742 + version = "4.1.1"; 122680 122743 src = fetchurl { 122681 - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.0.0.tgz"; 122682 - sha512 = "ya5cjoBSf3LqrshZn2HMaRZQx8YRNBE+tx+CQNFGaLLHrvs4Y1aik0sl5SFhLz2cW1O9/NtyaZhthc+8UiuvkQ=="; 122744 + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.1.1.tgz"; 122745 + sha512 = "Kl1mnCEw8Cy1Kw173gCxLIB242LfPKEOj9WoKhKz/MbryZTNrILzOJTk8kiczw/YUEPzn3gcltCQv6hDsLudRg=="; 122683 122746 }; 122684 122747 dependencies = [ 122685 122748 sources."@nodelib/fs.scandir-2.1.5" ··· 122687 122750 sources."@nodelib/fs.walk-1.2.8" 122688 122751 sources."@types/http-proxy-1.17.7" 122689 122752 sources."@types/json-schema-7.0.9" 122690 - sources."@types/node-16.7.2" 122753 + sources."@types/node-16.7.13" 122691 122754 sources."@types/retry-0.12.1" 122692 122755 sources."accepts-1.3.7" 122693 122756 sources."aggregate-error-3.1.0" 122694 122757 sources."ajv-6.12.6" 122695 122758 sources."ajv-keywords-3.5.2" 122696 - sources."ansi-html-0.0.7" 122759 + sources."ansi-html-community-0.0.8" 122697 122760 sources."ansi-regex-6.0.0" 122698 122761 sources."anymatch-3.1.2" 122699 122762 sources."array-flatten-2.1.2" ··· 122715 122778 sources."call-bind-1.0.2" 122716 122779 sources."chokidar-3.5.2" 122717 122780 sources."clean-stack-2.2.0" 122718 - sources."colorette-1.3.0" 122781 + sources."colorette-1.4.0" 122719 122782 sources."compressible-2.0.18" 122720 122783 (sources."compression-1.7.4" // { 122721 122784 dependencies = [ ··· 122732 122795 sources."content-type-1.0.4" 122733 122796 sources."cookie-0.4.0" 122734 122797 sources."cookie-signature-1.0.6" 122735 - sources."core-util-is-1.0.2" 122798 + sources."core-util-is-1.0.3" 122736 122799 sources."cross-spawn-7.0.3" 122737 122800 sources."debug-2.6.9" 122738 122801 sources."deep-equal-1.1.1" ··· 122766 122829 sources."faye-websocket-0.11.4" 122767 122830 sources."fill-range-7.0.1" 122768 122831 sources."finalhandler-1.1.2" 122769 - sources."follow-redirects-1.14.2" 122832 + sources."follow-redirects-1.14.3" 122770 122833 sources."forwarded-0.2.0" 122771 122834 sources."fresh-0.5.2" 122772 122835 sources."fs-monkey-1.0.3" ··· 122838 122901 sources."mimic-fn-3.1.0" 122839 122902 ]; 122840 122903 }) 122841 - sources."memfs-3.2.2" 122904 + sources."memfs-3.2.4" 122842 122905 sources."merge-descriptors-1.0.1" 122843 122906 sources."merge-stream-2.0.0" 122844 122907 sources."merge2-1.4.1" ··· 122974 123037 sources."websocket-extensions-0.1.4" 122975 123038 sources."which-2.0.2" 122976 123039 sources."wrappy-1.0.2" 122977 - sources."ws-8.2.0" 123040 + sources."ws-8.2.1" 122978 123041 ]; 122979 123042 buildInputs = globalBuildInputs; 122980 123043 meta = { ··· 123070 123133 sources."@protobufjs/pool-1.1.0" 123071 123134 sources."@protobufjs/utf8-1.1.0" 123072 123135 sources."@types/long-4.0.1" 123073 - sources."@types/node-16.7.2" 123136 + sources."@types/node-16.7.13" 123074 123137 sources."addr-to-ip-port-1.5.4" 123075 123138 sources."airplay-js-0.3.0" 123076 123139 sources."ansi-regex-5.0.0" ··· 123100 123163 sources."ms-2.1.2" 123101 123164 ]; 123102 123165 }) 123103 - (sources."bittorrent-tracker-9.18.0" // { 123166 + (sources."bittorrent-tracker-9.18.2" // { 123104 123167 dependencies = [ 123105 123168 sources."debug-4.3.2" 123106 123169 sources."decompress-response-6.0.0" ··· 123154 123217 sources."string_decoder-1.1.1" 123155 123218 ]; 123156 123219 }) 123157 - sources."core-util-is-1.0.2" 123220 + sources."core-util-is-1.0.3" 123158 123221 sources."cpus-1.0.3" 123159 123222 sources."create-torrent-5.0.1" 123160 123223 sources."debug-2.6.9" ··· 123318 123381 sources."ms-2.1.2" 123319 123382 ]; 123320 123383 }) 123321 - sources."smart-buffer-1.1.15" 123322 - sources."socks-1.1.10" 123384 + sources."smart-buffer-4.2.0" 123385 + sources."socks-2.6.1" 123323 123386 sources."speed-limiter-1.0.2" 123324 123387 sources."speedometer-1.1.0" 123325 123388 sources."split-1.0.1" ··· 123337 123400 sources."thunky-0.1.0" 123338 123401 sources."timeout-refresh-1.0.3" 123339 123402 sources."to-arraybuffer-1.0.1" 123340 - (sources."torrent-discovery-9.4.4" // { 123403 + (sources."torrent-discovery-9.4.6" // { 123341 123404 dependencies = [ 123342 123405 sources."debug-4.3.2" 123343 123406 sources."ms-2.1.2" ··· 123364 123427 sources."utp-native-2.5.3" 123365 123428 sources."videostream-3.2.2" 123366 123429 sources."vlc-command-1.2.0" 123367 - (sources."webtorrent-1.5.4" // { 123430 + (sources."webtorrent-1.5.5" // { 123368 123431 dependencies = [ 123369 123432 sources."debug-4.3.2" 123370 123433 sources."decompress-response-6.0.0" ··· 123376 123439 sources."winreg-1.2.4" 123377 123440 sources."wrap-ansi-7.0.0" 123378 123441 sources."wrappy-1.0.2" 123379 - sources."ws-7.5.3" 123442 + sources."ws-7.5.4" 123380 123443 sources."xml2js-0.4.23" 123381 123444 sources."xmlbuilder-11.0.1" 123382 123445 sources."xmldom-0.1.31" ··· 123571 123634 sha512 = "0V5CpR62BY1EOevIxXq5BL84YJeIunEzRsFlqb00tc7D77I51/0bvgdGRZhEwhNI2rFxKZ1i77eoisT56gfMTQ=="; 123572 123635 }; 123573 123636 dependencies = [ 123574 - sources."@babel/runtime-7.15.3" 123637 + sources."@babel/runtime-7.15.4" 123575 123638 sources."@gar/promisify-1.1.2" 123576 123639 sources."@nodelib/fs.scandir-2.1.5" 123577 123640 sources."@nodelib/fs.stat-2.0.5" 123578 123641 sources."@nodelib/fs.walk-1.2.8" 123579 - (sources."@npmcli/arborist-2.8.2" // { 123642 + (sources."@npmcli/arborist-2.8.3" // { 123580 123643 dependencies = [ 123581 123644 sources."mkdirp-1.0.4" 123582 123645 sources."semver-7.3.5" ··· 123616 123679 sources."@types/expect-1.20.4" 123617 123680 sources."@types/minimatch-3.0.5" 123618 123681 sources."@types/node-15.14.9" 123619 - sources."@types/vinyl-2.0.5" 123682 + sources."@types/vinyl-2.0.6" 123620 123683 sources."abbrev-1.1.1" 123621 123684 (sources."agent-base-6.0.2" // { 123622 123685 dependencies = [ ··· 123638 123701 sources."ansi-regex-3.0.0" 123639 123702 sources."ansi-styles-3.2.1" 123640 123703 sources."aproba-1.2.0" 123641 - sources."are-we-there-yet-1.1.5" 123704 + sources."are-we-there-yet-1.1.7" 123642 123705 (sources."argparse-1.0.10" // { 123643 123706 dependencies = [ 123644 123707 sources."sprintf-js-1.0.3" ··· 123731 123794 sources."config-chain-1.1.13" 123732 123795 sources."configstore-3.1.5" 123733 123796 sources."console-control-strings-1.1.0" 123734 - sources."core-js-3.16.3" 123735 - sources."core-util-is-1.0.2" 123797 + sources."core-js-3.17.2" 123798 + sources."core-util-is-1.0.3" 123736 123799 sources."create-error-class-3.0.2" 123737 123800 sources."cross-spawn-6.0.5" 123738 123801 sources."crypto-random-string-1.0.0" ··· 123993 124056 sources."minimist-1.2.5" 123994 124057 sources."minipass-3.1.3" 123995 124058 sources."minipass-collect-1.0.2" 123996 - sources."minipass-fetch-1.3.4" 124059 + sources."minipass-fetch-1.4.1" 123997 124060 sources."minipass-flush-1.0.5" 123998 124061 sources."minipass-json-stream-1.0.1" 123999 124062 sources."minipass-pipeline-1.2.4" ··· 124367 124430 sources."uuid-3.4.0" 124368 124431 sources."validate-npm-package-license-3.0.4" 124369 124432 sources."validate-npm-package-name-3.0.0" 124370 - sources."verror-1.10.0" 124433 + (sources."verror-1.10.0" // { 124434 + dependencies = [ 124435 + sources."core-util-is-1.0.2" 124436 + ]; 124437 + }) 124371 124438 (sources."vinyl-2.2.1" // { 124372 124439 dependencies = [ 124373 124440 sources."clone-2.1.2" ··· 124496 124563 zx = nodeEnv.buildNodePackage { 124497 124564 name = "zx"; 124498 124565 packageName = "zx"; 124499 - version = "3.1.0"; 124566 + version = "4.2.0"; 124500 124567 src = fetchurl { 124501 - url = "https://registry.npmjs.org/zx/-/zx-3.1.0.tgz"; 124502 - sha512 = "Dwm75vWiWPsZhZXRUmneeZQlMbRXJBDLMy+QGDyKDID2+Dkp6LCzlXTrW7VOmU66K1/w8dEcJ5r3zFCDW0kx1Q=="; 124568 + url = "https://registry.npmjs.org/zx/-/zx-4.2.0.tgz"; 124569 + sha512 = "/4f7FaJecA9I655KXKXIHO3CFNYjAz2uSmTz6v2eNlKdrQKyz4VyF3RjqFuP6nQG+Hd3+NjOvrVNBkv8Ne9d4Q=="; 124503 124570 }; 124504 124571 dependencies = [ 124505 124572 sources."@nodelib/fs.scandir-2.1.5" ··· 124507 124574 sources."@nodelib/fs.walk-1.2.8" 124508 124575 sources."@types/fs-extra-9.0.12" 124509 124576 sources."@types/minimist-1.2.2" 124510 - sources."@types/node-16.7.2" 124577 + sources."@types/node-16.7.13" 124511 124578 sources."@types/node-fetch-2.5.12" 124512 124579 sources."ansi-styles-4.3.0" 124513 124580 sources."array-union-3.0.1" ··· 124519 124586 sources."combined-stream-1.0.8" 124520 124587 sources."delayed-stream-1.0.0" 124521 124588 sources."dir-glob-3.0.1" 124589 + sources."duplexer-0.1.2" 124590 + sources."event-stream-3.3.4" 124522 124591 sources."fast-glob-3.2.7" 124523 124592 sources."fastq-1.12.0" 124524 124593 sources."fill-range-7.0.1" 124525 124594 sources."form-data-3.0.1" 124595 + sources."from-0.1.7" 124526 124596 sources."fs-extra-10.0.0" 124527 124597 sources."glob-parent-5.1.2" 124528 124598 sources."globby-12.0.2" ··· 124534 124604 sources."is-number-7.0.0" 124535 124605 sources."isexe-2.0.0" 124536 124606 sources."jsonfile-6.1.0" 124607 + sources."map-stream-0.1.0" 124537 124608 sources."merge2-1.4.1" 124538 124609 sources."micromatch-4.0.4" 124539 124610 sources."mime-db-1.49.0" 124540 124611 sources."mime-types-2.1.32" 124541 124612 sources."minimist-1.2.5" 124542 - sources."node-fetch-2.6.1" 124613 + sources."node-fetch-2.6.2" 124543 124614 sources."path-type-4.0.0" 124615 + sources."pause-stream-0.0.11" 124544 124616 sources."picomatch-2.3.0" 124617 + sources."ps-tree-1.2.0" 124545 124618 sources."queue-microtask-1.2.3" 124546 124619 sources."reusify-1.0.4" 124547 124620 sources."run-parallel-1.2.0" 124548 124621 sources."slash-4.0.0" 124622 + sources."split-0.3.3" 124623 + sources."stream-combiner-0.0.4" 124549 124624 sources."supports-color-7.2.0" 124625 + sources."through-2.3.8" 124550 124626 sources."to-regex-range-5.0.1" 124551 124627 sources."universalify-2.0.0" 124552 124628 sources."which-2.0.2"
+2 -2
pkgs/development/python-modules/denonavr/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "denonavr"; 18 - version = "0.10.8"; 18 + version = "0.10.9"; 19 19 disabled = pythonOlder "3.6"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "scarface-4711"; 23 23 repo = pname; 24 24 rev = version; 25 - sha256 = "02q76mbmg2rkm4shy2apwbw9pvicy9j5v4zgpjwzxif9yf7m8aqk"; 25 + sha256 = "sha256-Y0sFRKnKZAdP95EyE3h1g92AJeT0Xkshjjwfv/vnfW8="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/dnachisel/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "dnachisel"; 18 - version = "3.2.7"; 18 + version = "3.2.8"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "Edinburgh-Genome-Foundry"; 22 22 repo = "DnaChisel"; 23 23 rev = "v${version}"; 24 - sha256 = "1zhq7cai47649njjp3m8zaglsv9ci6ci855dymyip8qx5ppnkfj0"; 24 + sha256 = "17jldscmsq5lwp3pnjlxg56k3vfpr7rj4qbcbzkzhphifrfgm729"; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/karton-core/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "karton-core"; 11 - version = "4.2.0"; 11 + version = "4.3.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "CERT-Polska"; 15 15 repo = "karton"; 16 16 rev = "v${version}"; 17 - sha256 = "08j1bm9g58576sswcrpfczaki24nlqqaypp7qv1rxxwsyp5pq6h6"; 17 + sha256 = "sha256-pIYDY+pie4xqH11UHBal7/+MVmJDgNCFVpSD9we9ZPA="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ minio redis ];
+3 -22
pkgs/development/python-modules/mediafile/default.nix
··· 1 1 { buildPythonPackage 2 - , enum34 3 - , fetchpatch 4 2 , fetchPypi 5 - , isPy27 6 3 , lib 7 4 , mutagen 8 5 , six ··· 10 7 11 8 buildPythonPackage rec { 12 9 pname = "mediafile"; 13 - version = "0.6.0"; 10 + version = "0.8.0"; 14 11 15 12 src = fetchPypi { 16 13 inherit pname version; 17 - sha256 = "sha256-o/tSAHu8FTr6LZoMHvegr9uCZovNLHS9KkP2U9y4uko="; 14 + sha256 = "sha256-19K5DZMstRWu/6+N/McEdM1swedI5qr15kmnIAMA60Y="; 18 15 }; 19 16 20 - propagatedBuildInputs = [ mutagen six ] ++ lib.optional isPy27 enum34; 21 - 22 - # NB: Remove in the next release 23 - patches = [ 24 - (fetchpatch { 25 - url = "https://github.com/beetbox/mediafile/commit/0ff753d493a1a7f406cb3378545ffe2c85a9afa3.patch"; 26 - sha256 = "sha256-AQ7YedoYPmLqt4a/odgghIKOY61i9YfA0To0RVFqlk8="; 27 - }) 28 - (fetchpatch { 29 - url = "https://github.com/beetbox/mediafile/commit/f0fb4e5111d9dfaa3b38d196ec41fcd237d97953.patch"; 30 - sha256 = "sha256-5O6RiAqkQEz3Bvqjwwv/LOS33nSIBnT2H/vasGGVrpI="; 31 - }) 32 - (fetchpatch { 33 - url = "https://github.com/beetbox/mediafile/commit/d2fc3b59f77c515b02dfe7ad936f89264375d2b4.patch"; 34 - sha256 = "sha256-SMH0XhCaKLDNB4M8VmZWfGuuelfY5xladZyQYtXtP18="; 35 - }) 36 - ]; 17 + propagatedBuildInputs = [ mutagen six ]; 37 18 38 19 meta = with lib; { 39 20 description = "MediaFile is a simple interface to the metadata tags for many audio file formats.";
+2 -2
pkgs/development/python-modules/numpy-stl/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "numpy-stl"; 14 - version = "2.16.2"; 14 + version = "2.16.3"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "3e635b6fb6112a3c5e00e9e20eedab93b9b0c45ff1cc34eb7bdc0b3e922e2d77"; 18 + sha256 = "95890627001efb2cb8d17418730cdc1bdd64b8dbb9862b01a8e0359d79fe863e"; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pubnub/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pubnub"; 16 - version = "5.2.0"; 16 + version = "5.2.1"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = pname; 20 20 repo = "python"; 21 21 rev = "v${version}"; 22 - sha256 = "1jd3rr8dydfaxz5g8idpwacp4bnbmhg74dwz7qwmzn34336s4ji6"; 22 + sha256 = "151f9vhgjlr3maniry3vin8vxvz7h8kxnfby9zgsrlvjs4nfgdf9"; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/pyfma/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pyfma"; 13 - version = "0.1.4"; 13 + version = "0.1.6"; 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "nschloe"; 18 18 repo = pname; 19 - rev = "v${version}"; 20 - sha256 = "1wkcl41j2d1yflc5dl30ys1yxx68w9zn3vj8brwkm1ar9jnfmg4h"; 19 + rev = version; 20 + sha256 = "12i68jj9n1qj9phjnj6f0kmfhlsd3fqjlk9p6d4gs008azw5m8yn"; 21 21 }; 22 22 format = "pyproject"; 23 23
+2 -2
pkgs/development/python-modules/pymazda/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pymazda"; 11 - version = "0.2.0"; 11 + version = "0.2.1"; 12 12 disabled = pythonOlder "3.6"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "sha256-tEe70gvEglxqECiPjS3k29zZi70OSGMv6JxhrXqPhnY="; 16 + sha256 = "sha256-Dg7oVNEjKZB6zksm1We2JGBW+cGkOOQOP3bS4CNL4q8="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/python-nomad/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "python-nomad"; 5 - version = "1.3.0"; 5 + version = "1.4.1"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "67731d050472923581c43a39a8f01567468e8b3c8e83465b762c99eb0e5e23bc"; 9 + sha256 = "087a7d5d2af9fd8ce5da70d29e4b456c6b8b0ea3cd16613ed50f6eb8ad6cdba6"; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ requests ];
+1 -1
pkgs/development/tools/htmlq/default.nix
··· 21 21 description = "Like jq, but for HTML"; 22 22 homepage = "https://github.com/mgdm/htmlq"; 23 23 license = licenses.mit; 24 - maintainers = with maintainers; [ siraben ]; 24 + maintainers = with maintainers; [ siraben nerdypepper ]; 25 25 }; 26 26 }
+3 -3
pkgs/development/tools/rust/rust-analyzer/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "rust-analyzer-unwrapped"; 9 - version = "2021-08-30"; 10 - cargoSha256 = "sha256-ba/4mQSBJin3yoIZjzFTiEIRY2eWFQI2pY1dOCZ1ALw="; 9 + version = "2021-09-06"; 10 + cargoSha256 = "sha256-CTCDSoViyVMHxUKQz8fE+r3rkXf7yRgzZ90fZmMtcNM="; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "rust-analyzer"; 14 14 repo = "rust-analyzer"; 15 15 rev = version; 16 - sha256 = "sha256-mgwoJfvO3W4MYk6ikgck14e+hMjA2D+4lpnkAEeLEWA="; 16 + sha256 = "sha256-TacpTVvHAIs4kZ5vibj8luy/kryYwxY+OXFNPnqiXP0="; 17 17 }; 18 18 19 19 patches = [
+1 -1
pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
··· 1 1 { 2 2 "name": "rust-analyzer", 3 - "version": "0.2.727", 3 + "version": "0.2.735", 4 4 "dependencies": { 5 5 "https-proxy-agent": "^5.0.0", 6 6 "node-fetch": "^2.6.1",
+5 -4
pkgs/os-specific/linux/upower/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchurl 3 4 , pkg-config 4 5 , libxslt ··· 16 17 17 18 stdenv.mkDerivation { 18 19 pname = "upower"; 19 - version = "0.99.11"; 20 + version = "0.99.13"; 20 21 21 22 outputs = [ "out" "dev" ]; 22 23 23 24 src = fetchurl { 24 - url = "https://gitlab.freedesktop.org/upower/upower/uploads/93cfe7c8d66ed486001c4f3f55399b7a/upower-0.99.11.tar.xz"; 25 - sha256 = "1vxxvmz2cxb1qy6ibszaz5bskqdy9nd9fxspj9fv3gfmrjzzzdb4"; 25 + url = "https://gitlab.freedesktop.org/upower/upower/uploads/177df5b9f9b76f25a2ad9da41aa0c1fa/upower-0.99.13.tar.xz"; 26 + sha256 = "sha256-XK1w+RVAzH3BIcsX4K1kXl5mPIaC9gp75C7jjNeyPXo="; 26 27 }; 27 28 28 29 nativeBuildInputs = [
+2 -2
pkgs/servers/matrix-synapse/default.nix
··· 12 12 in 13 13 buildPythonApplication rec { 14 14 pname = "matrix-synapse"; 15 - version = "1.41.1"; 15 + version = "1.42.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "1vaym6mxnwg2xdqjcigi2sb0kkdi0ly5d5ghakfsysxcfn08d1z8"; 19 + sha256 = "sha256-wJFjjm9apRqjk5eN/kIEgecHgm/XLbtwXHEpM2pmvO8="; 20 20 }; 21 21 22 22 patches = [
+1
pkgs/tools/audio/beets/plugins/extrafiles.nix
··· 14 14 postPatch = '' 15 15 sed -i -e '/install_requires/,/\]/{/beets/d}' setup.py 16 16 sed -i -e '/namespace_packages/d' setup.py 17 + sed -i -e 's/mediafile~=0.6.0/mediafile>=0.6.0/' setup.py 17 18 ''; 18 19 19 20 nativeBuildInputs = [ beets ];
+33 -15
pkgs/tools/networking/ipv6calc/default.nix
··· 1 - { lib, stdenv, fetchurl, getopt, ip2location-c, openssl, perl 2 - , libmaxminddb ? null, geolite-legacy ? null }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , getopt 5 + , ip2location-c 6 + , openssl 7 + , perl 8 + , libmaxminddb ? null 9 + , geolite-legacy ? null 10 + }: 3 11 4 12 stdenv.mkDerivation rec { 5 13 pname = "ipv6calc"; 6 - version = "2.2.0"; 14 + version = "3.2.0"; 7 15 8 - src = fetchurl { 9 - urls = [ 10 - "https://www.deepspace6.net/ftp/pub/ds6/sources/ipv6calc/${pname}-${version}.tar.gz" 11 - "ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/${pname}-${version}.tar.gz" 12 - "ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/${pname}-${version}.tar.gz" 13 - ]; 14 - sha256 = "18acy0sy3n6jcjjwpxskysinw06czyayx1q4rqc7zc3ic4pkad8r"; 16 + src = fetchFromGitHub { 17 + owner = "pbiering"; 18 + repo = pname; 19 + rev = version; 20 + sha256 = "1iis7qw803k9z52j30hn9sv8c3b0xyr9v7kb4fvcyiry1iaxcgfk"; 15 21 }; 16 22 17 - buildInputs = [ libmaxminddb geolite-legacy getopt ip2location-c openssl perl ]; 23 + buildInputs = [ 24 + libmaxminddb 25 + geolite-legacy 26 + getopt 27 + ip2location-c 28 + openssl 29 + perl 30 + ]; 18 31 19 32 postPatch = '' 20 33 patchShebangs *.sh */*.sh ··· 30 43 "--disable-bundled-md5" 31 44 "--disable-dynamic-load" 32 45 "--enable-shared" 33 - ] ++ lib.optional (libmaxminddb != null) "--enable-mmdb" 34 - ++ lib.optional (geolite-legacy != null) "--with-geoip-db=${geolite-legacy}/share/GeoIP" 35 - ++ lib.optional (ip2location-c != null) "--enable-ip2location"; 46 + ] ++ lib.optional (libmaxminddb != null) [ 47 + "--enable-mmdb" 48 + ] ++ lib.optional (geolite-legacy != null) [ 49 + "--with-geoip-db=${geolite-legacy}/share/GeoIP" 50 + ] ++ lib.optional (ip2location-c != null) [ 51 + "--enable-ip2location" 52 + ]; 36 53 37 54 enableParallelBuilding = true; 38 55 ··· 47 64 Now only one utiltity is needed to do a lot. 48 65 ''; 49 66 homepage = "http://www.deepspace6.net/projects/ipv6calc.html"; 50 - license = licenses.gpl2; 67 + license = licenses.gpl2Only; 68 + maintainers = with maintainers; [ ]; 51 69 platforms = platforms.linux; 52 70 }; 53 71 }
+3 -5
pkgs/tools/system/foreman/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - foreman (0.78.0) 5 - thor (~> 0.19.1) 6 - thor (0.19.1) 4 + foreman (0.87.2) 7 5 8 6 PLATFORMS 9 - ruby 7 + x86_64-linux 10 8 11 9 DEPENDENCIES 12 10 foreman 13 11 14 12 BUNDLED WITH 15 - 2.1.4 13 + 2.2.20
+5 -11
pkgs/tools/system/foreman/gemset.nix
··· 1 1 { 2 - thor = { 3 - version = "0.19.1"; 4 - source = { 5 - type = "gem"; 6 - remotes = ["https://rubygems.org"]; 7 - sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; 8 - }; 9 - }; 10 2 foreman = { 11 - version = "0.78.0"; 3 + groups = ["default"]; 4 + platforms = []; 12 5 source = { 13 - type = "gem"; 14 6 remotes = ["https://rubygems.org"]; 15 - sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq"; 7 + sha256 = "0szgxvnzwkzrfbq5dkwa98mig78aqglfy6irdsvq1gq045pbq9r7"; 8 + type = "gem"; 16 9 }; 10 + version = "0.87.2"; 17 11 }; 18 12 }
+3 -3
pkgs/tools/system/gdu/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "gdu"; 10 - version = "5.6.2"; 10 + version = "5.7.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "dundee"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-9Qdl+5BvzYbBw90+9V5bKBrikxlxMt7UxMQ54XwgbTk="; 16 + sha256 = "sha256-zotCn8J6zQtHd/YDT87l6Vh4Xh51tOJENBCdxZ5rqWU="; 17 17 }; 18 18 19 - vendorSha256 = "sha256-TxtYsM1qtpvI5IbkM3vicCgJ0+EqelFJ8Vc6+Ff5wd8="; 19 + vendorSha256 = "sha256-TBWhF2YmlJPNFr3sKSFhuzoBD0Hp1tnYAMJDUwO/QFM="; 20 20 21 21 nativeBuildInputs = [ installShellFiles ]; 22 22
+2
pkgs/top-level/all-packages.nix
··· 23822 23822 23823 23823 evilpixie = libsForQt5.callPackage ../applications/graphics/evilpixie { }; 23824 23824 23825 + exaile = callPackage ../applications/audio/exaile { }; 23826 + 23825 23827 exercism = callPackage ../applications/misc/exercism { }; 23826 23828 23827 23829 expenses = callPackage ../applications/misc/expenses { };
+50
pkgs/top-level/perl-packages.nix
··· 1221 1221 }; 1222 1222 }; 1223 1223 1224 + BarcodeZBar = buildPerlPackage { 1225 + pname = "Barcode-ZBar"; 1226 + version = "0.04pre"; 1227 + # The meta::cpan version of this module has been unmaintained from 2009 1228 + # This uses an updated version from the ZBar repo that works with the current ZBar library 1229 + src = "${pkgs.zbar.src}/perl"; 1230 + postPatch = '' 1231 + substituteInPlace Makefile.PL --replace "-lzbar" "-L${pkgs.zbar.lib}/lib -lzbar" 1232 + rm t/Processor.t 1233 + ''; 1234 + buildInputs =[ ExtUtilsMakeMaker ]; 1235 + propagatedBuildInputs = [ pkgs.zbar PerlMagick ]; 1236 + perlPreHook = lib.optionalString stdenv.isDarwin "export LD=$CC"; 1237 + meta = { 1238 + homepage = "https://github.com/mchehab/zbar/tree/master/perl"; 1239 + description = "Perl interface to the ZBar Barcode Reader"; 1240 + license = with lib.licenses; [ gpl2Plus ]; 1241 + }; 1242 + }; 1243 + 1224 1244 BC = buildPerlPackage { 1225 1245 pname = "B-C"; 1226 1246 version = "1.57"; ··· 5007 5027 license = with lib.licenses; [ artistic1 gpl1Plus ]; 5008 5028 }; 5009 5029 buildInputs = [ TestFailWarnings ]; 5030 + }; 5031 + 5032 + DataSectionSimple = buildPerlPackage { 5033 + pname = "Data-Section-Simple"; 5034 + version = "0.07"; 5035 + src = fetchurl { 5036 + url = "mirror://cpan/authors/id/M/MI/MIYAGAWA/Data-Section-Simple-0.07.tar.gz"; 5037 + sha256 = "0b3035ffdb909aa1f7ded6b608fa9d894421c82c097d51e7171170d67579a9cb"; 5038 + }; 5039 + buildInputs = [ TestRequires ]; 5040 + meta = { 5041 + homepage = "https://github.com/miyagawa/Data-Section-Simple"; 5042 + description = "Read data from __DATA__"; 5043 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 5044 + }; 5010 5045 }; 5011 5046 5012 5047 DataSerializer = buildPerlModule { ··· 21739 21774 meta = { 21740 21775 description = "Basic utilities for writing tests"; 21741 21776 license = with lib.licenses; [ artistic1 gpl1Plus ]; 21777 + }; 21778 + }; 21779 + 21780 + TestSnapshot = buildPerlPackage { 21781 + pname = "Test-Snapshot"; 21782 + version = "0.06"; 21783 + src = fetchurl { 21784 + url = "mirror://cpan/authors/id/E/ET/ETJ/Test-Snapshot-0.06.tar.gz"; 21785 + sha256 = "f4dd7a9a55baa2247540ae34210cd05a04f9d1061befec97a1c90eda95bfae45"; 21786 + }; 21787 + buildInputs = [ CaptureTiny ]; 21788 + propagatedBuildInputs = [ TextDiff ]; 21789 + meta = { 21790 + description = "Test against data stored in automatically-named file"; 21791 + license = lib.licenses.artistic2; 21742 21792 }; 21743 21793 }; 21744 21794