Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
8d3dc41d 9cc5599d

+1418 -816
+2
nixos/doc/manual/release-notes/rl-2305.section.md
··· 40 40 41 41 - [goeland](https://github.com/slurdge/goeland), an alternative to rss2email written in golang with many filters. Available as [services.goeland](#opt-services.goeland.enable). 42 42 43 + - [tts](https://github.com/coqui-ai/TTS), a battle-tested deep learning toolkit for Text-to-Speech. Mutiple servers may be configured below [services.tts.servers](#opt-services.tts.servers). 44 + 43 45 - [atuin](https://github.com/ellie/atuin), a sync server for shell history. Available as [services.atuin](#opt-services.atuin.enable). 44 46 45 47 - [networkd-dispatcher](https://gitlab.com/craftyguy/networkd-dispatcher), a dispatcher service for systemd-networkd connection status changes. Available as [services.networkd-dispatcher](#opt-services.networkd-dispatcher.enable).
+1
nixos/modules/module-list.nix
··· 314 314 ./services/audio/snapserver.nix 315 315 ./services/audio/spotifyd.nix 316 316 ./services/audio/squeezelite.nix 317 + ./services/audio/tts.nix 317 318 ./services/audio/ympd.nix 318 319 ./services/backup/automysqlbackup.nix 319 320 ./services/backup/bacula.nix
-1
nixos/modules/programs/flashrom.nix
··· 22 22 config = mkIf cfg.enable { 23 23 services.udev.packages = [ cfg.package ]; 24 24 environment.systemPackages = [ cfg.package ]; 25 - users.groups.flashrom = { }; 26 25 }; 27 26 }
+151
nixos/modules/services/audio/tts.nix
··· 1 + { config 2 + , lib 3 + , pkgs 4 + , ... 5 + }: 6 + 7 + let 8 + cfg = config.services.tts; 9 + in 10 + 11 + { 12 + options.services.tts = let 13 + inherit (lib) literalExpression mkOption mdDoc mkEnableOption types; 14 + in { 15 + servers = mkOption { 16 + type = types.attrsOf (types.submodule ( 17 + { ... }: { 18 + options = { 19 + enable = mkEnableOption (mdDoc "Coqui TTS server"); 20 + 21 + port = mkOption { 22 + type = types.port; 23 + example = 5000; 24 + description = mdDoc '' 25 + Port to bind the TTS server to. 26 + ''; 27 + }; 28 + 29 + model = mkOption { 30 + type = types.nullOr types.str; 31 + default = "tts_models/en/ljspeech/tacotron2-DDC"; 32 + example = null; 33 + description = mdDoc '' 34 + Name of the model to download and use for speech synthesis. 35 + 36 + Check `tts-server --list_models` for possible values. 37 + 38 + Set to `null` to use a custom model. 39 + ''; 40 + }; 41 + 42 + useCuda = mkOption { 43 + type = types.bool; 44 + default = false; 45 + example = true; 46 + description = mdDoc '' 47 + Whether to offload computation onto a CUDA compatible GPU. 48 + ''; 49 + }; 50 + 51 + extraArgs = mkOption { 52 + type = types.listOf types.str; 53 + default = []; 54 + description = mdDoc '' 55 + Extra arguments to pass to the server commandline. 56 + ''; 57 + }; 58 + }; 59 + } 60 + )); 61 + default = {}; 62 + example = literalExpression '' 63 + { 64 + english = { 65 + port = 5300; 66 + model = "tts_models/en/ljspeech/tacotron2-DDC"; 67 + }; 68 + german = { 69 + port = 5301; 70 + model = "tts_models/de/thorsten/tacotron2-DDC"; 71 + }; 72 + dutch = { 73 + port = 5302; 74 + model = "tts_models/nl/mai/tacotron2-DDC"; 75 + }; 76 + } 77 + ''; 78 + description = mdDoc '' 79 + TTS server instances. 80 + ''; 81 + }; 82 + }; 83 + 84 + config = let 85 + inherit (lib) mkIf mapAttrs' nameValuePair optionalString concatMapStringsSep escapeShellArgs; 86 + in mkIf (cfg.servers != {}) { 87 + systemd.services = mapAttrs' (server: options: 88 + nameValuePair "tts-${server}" { 89 + description = "Coqui TTS server instance ${server}"; 90 + after = [ 91 + "network-online.target" 92 + ]; 93 + wantedBy = [ 94 + "multi-user.target" 95 + ]; 96 + path = with pkgs; [ 97 + espeak-ng 98 + ]; 99 + environment.HOME = "/var/lib/tts"; 100 + serviceConfig = { 101 + DynamicUser = true; 102 + User = "tts"; 103 + StateDirectory = "tts"; 104 + ExecStart = "${pkgs.tts}/bin/tts-server --port ${toString options.port}" 105 + + optionalString (options.model != null) " --model_name ${options.model}" 106 + + optionalString (options.useCuda) " --use_cuda" 107 + + (concatMapStringsSep " " escapeShellArgs options.extraArgs); 108 + CapabilityBoundingSet = ""; 109 + DeviceAllow = if options.useCuda then [ 110 + # https://docs.nvidia.com/dgx/pdf/dgx-os-5-user-guide.pdf 111 + "/dev/nvidia1" 112 + "/dev/nvidia2" 113 + "/dev/nvidia3" 114 + "/dev/nvidia4" 115 + "/dev/nvidia-caps/nvidia-cap1" 116 + "/dev/nvidia-caps/nvidia-cap2" 117 + "/dev/nvidiactl" 118 + "/dev/nvidia-modeset" 119 + "/dev/nvidia-uvm" 120 + "/dev/nvidia-uvm-tools" 121 + ] else ""; 122 + DevicePolicy = "closed"; 123 + LockPersonality = true; 124 + # jit via numba->llvmpipe 125 + MemoryDenyWriteExecute = false; 126 + PrivateDevices = true; 127 + PrivateUsers = true; 128 + ProtectHome = true; 129 + ProtectHostname = true; 130 + ProtectKernelLogs = true; 131 + ProtectKernelModules = true; 132 + ProtectKernelTunables = true; 133 + ProtectControlGroups = true; 134 + ProtectProc = "invisible"; 135 + ProcSubset = "pid"; 136 + RestrictAddressFamilies = [ 137 + "AF_INET" 138 + "AF_INET6" 139 + ]; 140 + RestrictNamespaces = true; 141 + RestrictRealtime = true; 142 + SystemCallArchitectures = "native"; 143 + SystemCallFilter = [ 144 + "@system-service" 145 + "~@privileged" 146 + ]; 147 + UMask = "0077"; 148 + }; 149 + }) cfg.servers; 150 + }; 151 + }
+8 -1
nixos/modules/services/monitoring/mimir.nix
··· 25 25 Specify a configuration file that Mimir should use. 26 26 ''; 27 27 }; 28 + 29 + package = mkOption { 30 + default = pkgs.mimir; 31 + defaultText = lib.literalExpression "pkgs.mimir"; 32 + type = types.package; 33 + description = lib.mdDoc ''Mimir package to use.''; 34 + }; 28 35 }; 29 36 30 37 config = mkIf cfg.enable { ··· 53 60 else cfg.configFile; 54 61 in 55 62 { 56 - ExecStart = "${pkgs.mimir}/bin/mimir --config.file=${conf}"; 63 + ExecStart = "${cfg.package}/bin/mimir --config.file=${conf}"; 57 64 DynamicUser = true; 58 65 Restart = "always"; 59 66 ProtectSystem = "full";
+6 -2
nixos/tests/keepassxc.nix
··· 4 4 name = "keepassxc"; 5 5 meta = with pkgs.lib.maintainers; { 6 6 maintainers = [ turion ]; 7 + timeout = 1800; 7 8 }; 8 9 9 10 nodes.machine = { ... }: ··· 55 56 machine.sleep(5) 56 57 # Regression #163482: keepassxc did not crash 57 58 machine.succeed("ps -e | grep keepassxc") 58 - machine.wait_for_text("foo.kdbx") 59 + machine.wait_for_text("Open database") 59 60 machine.send_key("ret") 60 - machine.sleep(1) 61 + 62 + # Wait for the enter password screen to appear. 63 + machine.wait_for_text("/home/alice/foo.kdbx") 64 + 61 65 # Click on "Browse" button to select keyfile 62 66 machine.send_key("tab") 63 67 machine.send_chars("/home/alice/foo.keyfile")
+3 -2
pkgs/applications/misc/keepassx/community.nix
··· 3 3 , fetchFromGitHub 4 4 , cmake 5 5 , qttools 6 - , darwin 7 6 8 7 , asciidoctor 9 8 , botan2 ··· 24 23 , wrapGAppsHook 25 24 , wrapQtAppsHook 26 25 , zlib 26 + 27 + , LocalAuthentication 27 28 28 29 , withKeePassBrowser ? true 29 30 , withKeePassFDOSecrets ? true ··· 110 111 readline 111 112 zlib 112 113 ] 113 - ++ lib.optional (stdenv.isDarwin && withKeePassTouchID) darwin.apple_sdk.frameworks.LocalAuthentication 114 + ++ lib.optional (stdenv.isDarwin && withKeePassTouchID) LocalAuthentication 114 115 ++ lib.optional stdenv.isDarwin qtmacextras 115 116 ++ lib.optional stdenv.isLinux libusb1 116 117 ++ lib.optional withKeePassX11 qtx11extras;
+44
pkgs/applications/networking/instant-messengers/nchat/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, cmake, gperf 2 + , file, ncurses, openssl, readline, sqlite, zlib 3 + , AppKit, Cocoa, Foundation 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "nchat"; 8 + version = "3.17"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "d99kris"; 12 + repo = "nchat"; 13 + rev = "v${version}"; 14 + hash = "sha256-BtWKt8paI0gCGSzLYN8x3Yp5MUpwCb2vBGcGQG2aumY="; 15 + }; 16 + 17 + postPatch = '' 18 + substituteInPlace lib/tgchat/ext/td/CMakeLists.txt \ 19 + --replace "get_git_head_revision" "#get_git_head_revision" 20 + ''; 21 + 22 + nativeBuildInputs = [ cmake gperf ]; 23 + 24 + buildInputs = [ 25 + file # for libmagic 26 + ncurses 27 + openssl 28 + readline 29 + sqlite 30 + zlib 31 + ] ++ lib.optional stdenv.isDarwin [ AppKit Cocoa Foundation ]; 32 + 33 + cmakeFlags = [ 34 + "-DHAS_WHATSAPP=OFF" # go module build required 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "Terminal-based chat client with support for Telegram and WhatsApp"; 39 + homepage = "https://github.com/d99kris/nchat"; 40 + license = licenses.mit; 41 + maintainers = with maintainers; [ sikmir ]; 42 + platforms = platforms.unix; 43 + }; 44 + }
+2 -2
pkgs/development/libraries/amdvlk/default.nix
··· 25 25 26 26 in stdenv.mkDerivation rec { 27 27 pname = "amdvlk"; 28 - version = "2022.Q4.4"; 28 + version = "2023.Q1.2"; 29 29 30 30 src = fetchRepoProject { 31 31 name = "${pname}-src"; 32 32 manifest = "https://github.com/GPUOpen-Drivers/AMDVLK.git"; 33 33 rev = "refs/tags/v-${version}"; 34 - sha256 = "sha256-MKU7bfjrvH4M2kON2tr5463nYjN1xoGAknsC9YmklEc="; 34 + sha256 = "sha256-QNjBLOnSfCTA+5qLqejAqJv9eIWAEVNc/VrhidGjmTc="; 35 35 }; 36 36 37 37 buildInputs = [
+10 -3
pkgs/development/libraries/libubox/default.nix
··· 1 - { stdenv, lib, fetchgit, cmake, pkg-config, json_c, with_lua ? false, lua5_1 }: 1 + { stdenv, lib, fetchgit, cmake, pkg-config, json_c, with_lua ? false, lua5_1, with_ustream_ssl ? false, ustream-ssl }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "libubox"; 5 - version = "unstable-2023-01-03"; 5 + version = "unstable-2023-01-03${lib.optionalString with_ustream_ssl "-${ustream-ssl.ssl_implementation.pname}"}"; 6 6 7 7 src = fetchgit { 8 8 url = "https://git.openwrt.org/project/libubox.git"; ··· 13 13 cmakeFlags = [ "-DBUILD_EXAMPLES=OFF" (if with_lua then "-DLUAPATH=${placeholder "out"}/lib/lua" else "-DBUILD_LUA=OFF") ]; 14 14 15 15 nativeBuildInputs = [ cmake pkg-config ]; 16 - buildInputs = [ json_c ] ++ lib.optional with_lua lua5_1; 16 + buildInputs = [ json_c ] ++ lib.optional with_lua lua5_1 ++ lib.optional with_ustream_ssl ustream-ssl; 17 + 18 + postInstall = lib.optionalString with_ustream_ssl '' 19 + for fin in $(find ${ustream-ssl} -type f); do 20 + fout="''${fin/"${ustream-ssl}"/"''${out}"}" 21 + ln -s "$fin" "$fout" 22 + done 23 + ''; 17 24 18 25 meta = with lib; { 19 26 description = "C utility functions for OpenWrt";
+8 -3
pkgs/development/libraries/thrift/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "thrift"; 19 - version = "0.17.0"; 19 + version = "0.18.0"; 20 20 21 21 src = fetchurl { 22 22 url = "https://archive.apache.org/dist/thrift/${version}/${pname}-${version}.tar.gz"; 23 - hash = "sha256-snLBeIuxZdmVIaJZmzG5f6aeWTHQmQFdka4QegsMxY8="; 23 + hash = "sha256-fBk4nLeRCiDli45GkDyMGjY1MAj5/MGwP3SKzPm18+E="; 24 24 }; 25 25 26 26 # Workaround to make the Python wrapper not drop this package: ··· 74 74 url = "https://github.com/apache/thrift/commit/2ab850824f75d448f2ba14a468fb77d2594998df.diff"; 75 75 hash = "sha256-ejMKFG/cJgoPlAFzVDPI4vIIL7URqaG06/IWdQ2NkhY="; 76 76 }) 77 + (fetchpatch { 78 + name = "thrift-fix-tests-OpenSSL3.patch"; # https://github.com/apache/thrift/pull/2760 79 + url = "https://github.com/apache/thrift/commit/eae3ac418f36c73833746bcd53e69ed8a12f0e1a.diff"; 80 + hash = "sha256-0jlN4fo94cfGFUKcLFQgVMI/x7uxn5OiLiFk6txVPzs="; 81 + }) 77 82 ]; 78 83 79 84 cmakeFlags = [ ··· 90 95 91 96 disabledTests = [ 92 97 "PythonTestSSLSocket" 98 + "PythonThriftTNonblockingServer" 93 99 ] ++ lib.optionals stdenv.isDarwin [ 94 100 # Tests that hang up in the Darwin sandbox 95 101 "SecurityTest" ··· 106 112 "StressTest" 107 113 "StressTestConcurrent" 108 114 "StressTestNonBlocking" 109 - "PythonThriftTNonblockingServer" 110 115 ]; 111 116 112 117 doCheck = !static;
+30
pkgs/development/libraries/uclient/default.nix
··· 1 + { stdenv, lib, fetchgit, cmake, pkg-config, libubox }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "uclient"; 5 + version = "unstable-2022-02-24"; 6 + 7 + src = fetchgit { 8 + url = "https://git.openwrt.org/project/uclient.git"; 9 + rev = "644d3c7e13c6a64bf5cb628137ee5bd4dada4b74"; 10 + sha256 = "0vy4whs64699whp92d1zl7a8kh16yrfywqq0yp2y809l9z19sw22"; 11 + }; 12 + 13 + nativeBuildInputs = [ cmake pkg-config ]; 14 + buidInputs = [ libubox ]; 15 + 16 + preConfigure = '' 17 + sed -e 's|ubox_include_dir libubox/ustream-ssl.h|ubox_include_dir libubox/ustream-ssl.h HINTS ${libubox}/include|g' \ 18 + -e 's|ubox_library NAMES ubox|ubox_library NAMES ubox HINTS ${libubox}/lib|g' \ 19 + -i CMakeLists.txt 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "Tiny OpenWrt fork of libnl"; 24 + homepage = "https://git.openwrt.org/?p=project/uclient.git;a=summary"; 25 + license = licenses.isc; 26 + maintainers = with maintainers; [ mkg20001 ]; 27 + mainProgram = "uclient-fetch"; 28 + platforms = platforms.all; 29 + }; 30 + }
+37
pkgs/development/libraries/ustream-ssl/default.nix
··· 1 + { stdenv, lib, fetchgit, cmake, pkg-config, libubox-nossl, ssl_implementation }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "ustream-ssl"; 5 + version = "unstable-2022-12-08-${ssl_implementation.pname}"; 6 + 7 + src = fetchgit { 8 + url = "https://git.openwrt.org/project/ustream-ssl.git"; 9 + rev = "9217ab46536353c7c792951b57163063f5ec7a3b"; 10 + sha256 = "1ldyyb3is213iljyccx98f56rb69rfpgdcb1kjxw9a176hvpipdd"; 11 + }; 12 + 13 + preConfigure = '' 14 + sed -r \ 15 + -e "s|ubox_include_dir libubox/ustream.h|ubox_include_dir libubox/ustream.h HINTS ${libubox-nossl}/include|g" \ 16 + -e "s|ubox_library NAMES ubox|ubox_library NAMES ubox HINTS ${libubox-nossl}/lib|g" \ 17 + -e "s|^ FIND_LIBRARY\((.+)\)| FIND_LIBRARY\(\1 HINTS ${if ssl_implementation ? lib then ssl_implementation.lib else ssl_implementation.out}\)|g" \ 18 + -i CMakeLists.txt 19 + ''; 20 + 21 + cmakeFlags = [ "-D${lib.toUpper ssl_implementation.pname}=ON" ]; 22 + 23 + nativeBuildInputs = [ cmake pkg-config ]; 24 + buildInputs = [ ssl_implementation ]; 25 + 26 + passthru = { 27 + inherit ssl_implementation; 28 + }; 29 + 30 + meta = with lib; { 31 + description = "ustream SSL wrapper"; 32 + homepage = "https://git.openwrt.org/?p=project/ustream-ssl.git;a=summary"; 33 + license = licenses.isc; 34 + maintainers = with maintainers; [ fpletz ]; 35 + platforms = platforms.all; 36 + }; 37 + }
+3 -3
pkgs/development/ocaml-modules/sha/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "sha"; 5 - version = "1.15.2"; 5 + version = "1.15.4"; 6 6 duneVersion = "3"; 7 7 8 8 src = fetchurl { 9 - url = "https://github.com/djs55/ocaml-${pname}/releases/download/${version}/${pname}-${version}.tbz"; 10 - hash = "sha256-P71Xs5p8QAaOtBrh7MuhQJOL6144BqTLvXlZOyGD/7c="; 9 + url = "https://github.com/djs55/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz"; 10 + hash = "sha256-beWxITmxmZzp30zHiloxiGwqVHydRIvyhT+LU7zx8bE="; 11 11 }; 12 12 13 13 propagatedBuildInputs = [
+21 -7
pkgs/development/python-modules/azure-mgmt-containerregistry/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy27 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 2 5 , azure-common 3 6 , azure-mgmt-core 4 7 , msrest 5 - , msrestazure 8 + , typing-extensions 6 9 }: 7 10 8 11 buildPythonPackage rec { 9 - version = "10.0.0"; 10 12 pname = "azure-mgmt-containerregistry"; 11 - disabled = isPy27; 13 + version = "10.1.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 12 17 13 18 src = fetchPypi { 14 19 inherit pname version; 15 - sha256 = "sha256-HjejK28Em5AeoQ20o4fucnXTlAwADF/SEpVfHn9anZk="; 20 + hash = "sha256-VrX9YfYNvlA8+eNqHCp35BAeQZzQKakZs7ZZKwT8oYc="; 16 21 extension = "zip"; 17 22 }; 18 23 19 - propagatedBuildInputs = [ azure-common azure-mgmt-core msrest msrestazure ]; 24 + propagatedBuildInputs = [ 25 + azure-common 26 + azure-mgmt-core 27 + msrest 28 + ] ++ lib.optionals (pythonOlder "3.8") [ 29 + typing-extensions 30 + ]; 20 31 21 32 # no tests included 22 33 doCheck = false; 23 34 24 - pythonImportsCheck = [ "azure.common" "azure.mgmt.containerregistry" ]; 35 + pythonImportsCheck = [ 36 + "azure.common" 37 + "azure.mgmt.containerregistry" 38 + ]; 25 39 26 40 meta = with lib; { 27 41 description = "Microsoft Azure Container Registry Client Library for Python";
+2 -2
pkgs/development/python-modules/google-cloud-language/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-language"; 14 - version = "2.8.1"; 14 + version = "2.9.0"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-o4o9x7r7HpwzByUijDegzos35FILro0Esr2ugN2nyws="; 21 + hash = "sha256-7rKNcG11cgvvwNEYiN9l8h8UR8u6DFfcI+S1QDi+t/c="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/insteon-frontend-home-assistant/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "insteon-frontend-home-assistant"; 10 - version = "0.3.1"; 10 + version = "0.3.2"; 11 11 format = "pyproject"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-gS2jDjgAcY4ve80yOPZcZR1v4c9EISYEoJkIezUQilU="; 17 + hash = "sha256-7jRf6fp+5u6qqR5xP1R+kp6LURsBVqfct6yuCkbxBMw="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+10 -5
pkgs/development/python-modules/lektor/default.nix
··· 10 10 , importlib-metadata 11 11 , inifile 12 12 , jinja2 13 + , markupsafe 13 14 , marshmallow 14 15 , marshmallow-dataclass 15 16 , mistune ··· 19 20 , pytest-mock 20 21 , pytest-pylint 21 22 , pytestCheckHook 23 + , python 22 24 , pythonOlder 23 25 , python-slugify 26 + , pytz 24 27 , requests 25 28 , setuptools 26 29 , typing-inspect ··· 30 33 31 34 buildPythonPackage rec { 32 35 pname = "lektor"; 33 - version = "3.4.0b2"; 36 + version = "3.4.0b4"; 34 37 format = "pyproject"; 35 38 36 39 disabled = pythonOlder "3.7"; ··· 39 42 owner = "lektor"; 40 43 repo = pname; 41 44 rev = "refs/tags/v${version}"; 42 - hash = "sha256-5w3tT0celHgjmLlsM3sdBdYlXx57z3kMePVGSQkOP7M="; 45 + hash = "sha256-O0bTmJqRymrQuHW19Y7/Kp+2XlbmDzcjl/jDACDlCSk="; 43 46 }; 44 47 45 48 propagatedBuildInputs = [ ··· 51 54 flask 52 55 inifile 53 56 jinja2 57 + markupsafe 54 58 marshmallow 55 59 marshmallow-dataclass 56 60 mistune 57 61 pip 58 62 pyopenssl 59 63 python-slugify 64 + pytz 60 65 requests 61 66 setuptools 62 67 typing-inspect ··· 72 77 pytestCheckHook 73 78 ]; 74 79 75 - postPatch = '' 76 - substituteInPlace setup.cfg \ 77 - --replace "typing.inspect < 0.8.0" "typing.inspect" 80 + postInstall = '' 81 + cp -r lektor/translations "$out/${python.sitePackages}/lektor/" 78 82 ''; 79 83 80 84 pythonImportsCheck = [ ··· 89 93 meta = with lib; { 90 94 description = "A static content management system"; 91 95 homepage = "https://www.getlektor.com/"; 96 + changelog = "https://github.com/lektor/lektor/blob/v${version}/CHANGES.md"; 92 97 license = licenses.bsd0; 93 98 maintainers = with maintainers; [ costrouc ]; 94 99 };
+2 -2
pkgs/development/tools/esbuild/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "esbuild"; 5 - version = "0.17.8"; 5 + version = "0.17.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "evanw"; 9 9 repo = "esbuild"; 10 10 rev = "v${version}"; 11 - hash = "sha256-UJIbx0UkpHYMgDr+1dbNoMLrY5hWs0E2Ehu3txG/80E="; 11 + hash = "sha256-qe7YCOIwp+MSa5VkwImdOea1aMcpWdor/13PIgGEkkw="; 12 12 }; 13 13 14 14 vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
+2 -2
pkgs/development/tools/squawk/correct-Cargo.lock.patch
··· 6 6 7 7 [[package]] 8 8 name = "squawk" 9 - -version = "0.19.0" 10 - +version = "0.20.0" 9 + -version = "0.20.0" 10 + +version = "0.21.0" 11 11 dependencies = [ 12 12 "atty", 13 13 "base64 0.12.3",
+5 -3
pkgs/development/tools/squawk/default.nix
··· 23 23 in 24 24 rustPlatform.buildRustPackage rec { 25 25 pname = "squawk"; 26 - version = "0.20.0"; 26 + version = "0.21.0"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "sbdchd"; 30 30 repo = pname; 31 31 rev = "v${version}"; 32 - hash = "sha256-v9F+HfscX4dIExIP1YvxOldZPPtmxh8lO3SREu6M+C0="; 32 + hash = "sha256-ObaYGGTAGGLOAji86Q5R9fqbCGg6GP0A3iheNLgzezY="; 33 33 }; 34 34 35 - cargoHash = "sha256-kSaQxqom8LSCOQBoIZ1iv+q2+Ih8l61L97xXv5c4a0k="; 35 + cargoHash = "sha256-VOGgwBKcJK7x+PwvzvuVu9Zd1G8t9UoC/Me3G6bdtrk="; 36 36 37 37 cargoPatches = [ 38 38 ./correct-Cargo.lock.patch ··· 54 54 CoreFoundation 55 55 Security 56 56 ]); 57 + 58 + OPENSSL_NO_VENDOR = 1; 57 59 58 60 LIBPG_QUERY_PATH = libpg_query13; 59 61
+2 -2
pkgs/development/web/grails/default.nix
··· 11 11 in 12 12 stdenv.mkDerivation rec { 13 13 pname = "grails"; 14 - version = "5.3.0"; 14 + version = "5.3.2"; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/grails/grails-core/releases/download/v${version}/grails-${version}.zip"; 18 - sha256 = "sha256-0Ow3G0QbKXQSpjLf371CYNxC3XoO5sv1SQD4MlHeOQ4="; 18 + sha256 = "sha256-UdRtrQiHbBc8VoVUulDCZmAfZ1YTVdgNfeF91HomSqc="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ unzip ];
+28
pkgs/os-specific/linux/libnl-tiny/default.nix
··· 1 + { stdenv, lib, fetchgit, cmake, pkg-config }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "libnl-tiny"; 5 + version = "unstable-2022-12-13"; 6 + 7 + src = fetchgit { 8 + url = "https://git.openwrt.org/project/libnl-tiny.git"; 9 + rev = "f5d9b7e4f534a69cbd35c3f150fa6d57b9d631e4"; 10 + sha256 = "0c5ycsdas8rr5c33gd0mnmm515dq631fmdjn5mp2j1m0j1bk7hc0"; 11 + }; 12 + 13 + nativeBuildInputs = [ cmake pkg-config ]; 14 + 15 + preConfigure = '' 16 + sed -e 's|''${prefix}/@CMAKE_INSTALL_LIBDIR@|@CMAKE_INSTALL_FULL_LIBDIR@|g' \ 17 + -e 's|''${prefix}/@CMAKE_INSTALL_INCLUDEDIR@|@CMAKE_INSTALL_FULL_INCLUDEDIR@|g' \ 18 + -i libnl-tiny.pc.in 19 + ''; 20 + 21 + meta = with lib; { 22 + description = "Tiny OpenWrt fork of libnl"; 23 + homepage = "https://git.openwrt.org/?p=project/libnl-tiny.git;a=summary"; 24 + license = licenses.isc; 25 + maintainers = with maintainers; [ mkg20001 ]; 26 + platforms = platforms.all; 27 + }; 28 + }
+2 -2
pkgs/servers/amqp/rabbitmq-server/default.nix
··· 38 38 39 39 stdenv.mkDerivation rec { 40 40 pname = "rabbitmq-server"; 41 - version = "3.11.8"; 41 + version = "3.11.9"; 42 42 43 43 # when updating, consider bumping elixir version in all-packages.nix 44 44 src = fetchurl { 45 45 url = "https://github.com/rabbitmq/rabbitmq-server/releases/download/v${version}/${pname}-${version}.tar.xz"; 46 - hash = "sha256-sD9E60xXNJQSg98XbMq6xn+nk3uQn1XnrxApAuSaF44="; 46 + hash = "sha256-b/SfUyn+x33SnFo/n/zTLxG4PWz34F2qQs4B4p2/Ty4="; 47 47 }; 48 48 49 49 nativeBuildInputs = [ unzip xmlto docbook_xml_dtd_45 docbook_xsl zip rsync python3 ];
+3 -3
pkgs/servers/http/go-camo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "go-camo"; 5 - version = "2.4.2"; 5 + version = "2.4.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cactus"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-TW32pzYcSMdtcO3MGxgANCLMLvq7S/Tq3KSimv90PU0="; 11 + sha256 = "sha256-GRctsE+uAvyA0pcz+ym4sz3K80pUHoDipVsjFcdrT2A="; 12 12 }; 13 13 14 - vendorHash = "sha256-AcSClJwDsM+tUbDE7sQ8LLkxCPTtLEGXsQePqQ6CwMA="; 14 + vendorHash = "sha256-C66QxlMBupbHYktyzHapUrl0yk+pvWZN0BLhpjIGVzI="; 15 15 16 16 ldflags = [ "-s" "-w" "-X=main.ServerVersion=${version}" ]; 17 17
-10
pkgs/tools/audio/tts/default.nix
··· 5 5 , espeak-ng 6 6 }: 7 7 8 - # USAGE: 9 - # $ tts-server --list_models 10 - # # pick your favorite vocoder/tts model 11 - # $ tts-server --model_name tts_models/en/ljspeech/glow-tts --vocoder_name vocoder_models/universal/libri-tts/fullband-melgan 12 - # 13 - # If you upgrade from an old version you may have to delete old models from ~/.local/share/tts 14 - # 15 - # For now, for deployment check the systemd unit in the pull request: 16 - # https://github.com/NixOS/nixpkgs/pull/103851#issue-521121136 17 - 18 8 let 19 9 python = python3.override { 20 10 packageOverrides = self: super: {
+4 -4
pkgs/tools/games/minecraft/packwiz/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "packwiz"; 9 - version = "unstable-2022-10-29"; 9 + version = "unstable-2023-02-13"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "packwiz"; 13 13 repo = "packwiz"; 14 - rev = "f00dc9844ffdd6ee5c0526a79b0084429e9cb130"; 15 - sha256 = "sha256-YpihFWdcKfHJLEs+jHzHH7G+m/E8i5y2yp7IubObNhY="; 14 + rev = "4b336e46e277d4b252c11f43080576dc23b001d2"; 15 + sha256 = "sha256-f6560XrnriKNq89aOxfJjN4mDdtYzMSOUlRWwItLuHk="; 16 16 }; 17 17 18 - vendorSha256 = "sha256-09S8RFdCvtE50EICLIKCTnTjG/0XsGf+yq9SNObKmRA="; 18 + vendorSha256 = "sha256-yL5pWbVqf6mEpgYsItLnv8nwSmoMP+SE0rX/s7u2vCg="; 19 19 20 20 nativeBuildInputs = [ 21 21 installShellFiles
+1 -1
pkgs/tools/misc/flashrom/default.nix
··· 26 26 27 27 postPatch = '' 28 28 substituteInPlace util/flashrom_udev.rules \ 29 - --replace "plugdev" "flashrom" 29 + --replace 'GROUP="plugdev"' 'TAG+="uaccess", TAG+="udev-acl"' 30 30 ''; 31 31 32 32 makeFlags = [ "PREFIX=$(out)" "libinstall" ]
+3 -3
pkgs/tools/misc/ntfy-sh/default.nix
··· 10 10 in 11 11 buildGoModule rec { 12 12 pname = "ntfy-sh"; 13 - version = "1.31.0"; 13 + version = "2.0.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "binwiederhier"; 17 17 repo = "ntfy"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-SQOiVHhdwOmzWVPtr1hw9oz8G/xjz5HghYcNN/u3ITo="; 19 + sha256 = "sha256-r5MAffvQVya6VWzdO3NPVBAekeZQllxtpS5A06EQnI4="; 20 20 }; 21 21 22 - vendorSha256 = "sha256-Ffmz7c/FMtXjmanZYp8vquxUu+eSTqtR5nesNdN/F0c="; 22 + vendorSha256 = "sha256-QUUZX9UnLnhyYrbws9pGfN/gqbwt7CeJNYlsPsLRb6g="; 23 23 24 24 doCheck = false; 25 25
+2 -1
pkgs/tools/misc/ntfy-sh/generate-dependencies.sh
··· 6 6 --nodejs-14 \ 7 7 --node-env ../../../development/node-packages/node-env.nix \ 8 8 --development \ 9 - --lock ./package-lock-temp.json \ 10 9 --output node-packages.nix \ 11 10 --composition node-composition.nix 11 + # removed temporarily because of https://github.com/svanderburg/node2nix/issues/312 12 + # --lock ./package-lock-temp.json \
+970 -745
pkgs/tools/misc/ntfy-sh/node-packages.nix
··· 31 31 sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; 32 32 }; 33 33 }; 34 - "@babel/compat-data-7.20.10" = { 34 + "@babel/compat-data-7.20.14" = { 35 35 name = "_at_babel_slash_compat-data"; 36 36 packageName = "@babel/compat-data"; 37 - version = "7.20.10"; 37 + version = "7.20.14"; 38 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.10.tgz"; 40 - sha512 = "sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg=="; 39 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz"; 40 + sha512 = "0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw=="; 41 41 }; 42 42 }; 43 - "@babel/core-7.20.7" = { 43 + "@babel/core-7.20.12" = { 44 44 name = "_at_babel_slash_core"; 45 45 packageName = "@babel/core"; 46 - version = "7.20.7"; 46 + version = "7.20.12"; 47 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/core/-/core-7.20.7.tgz"; 49 - sha512 = "t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw=="; 48 + url = "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz"; 49 + sha512 = "XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg=="; 50 50 }; 51 51 }; 52 52 "@babel/eslint-parser-7.19.1" = { ··· 58 58 sha512 = "AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ=="; 59 59 }; 60 60 }; 61 - "@babel/generator-7.20.7" = { 61 + "@babel/generator-7.20.14" = { 62 62 name = "_at_babel_slash_generator"; 63 63 packageName = "@babel/generator"; 64 - version = "7.20.7"; 64 + version = "7.20.14"; 65 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.20.7.tgz"; 67 - sha512 = "7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw=="; 66 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz"; 67 + sha512 = "AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg=="; 68 68 }; 69 69 }; 70 70 "@babel/helper-annotate-as-pure-7.18.6" = { ··· 94 94 sha512 = "4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ=="; 95 95 }; 96 96 }; 97 - "@babel/helper-create-class-features-plugin-7.20.7" = { 97 + "@babel/helper-create-class-features-plugin-7.20.12" = { 98 98 name = "_at_babel_slash_helper-create-class-features-plugin"; 99 99 packageName = "@babel/helper-create-class-features-plugin"; 100 - version = "7.20.7"; 100 + version = "7.20.12"; 101 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.7.tgz"; 103 - sha512 = "LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w=="; 102 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz"; 103 + sha512 = "9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ=="; 104 104 }; 105 105 }; 106 106 "@babel/helper-create-regexp-features-plugin-7.20.5" = { ··· 175 175 sha512 = "0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="; 176 176 }; 177 177 }; 178 - "@babel/helper-module-transforms-7.20.7" = { 178 + "@babel/helper-module-transforms-7.20.11" = { 179 179 name = "_at_babel_slash_helper-module-transforms"; 180 180 packageName = "@babel/helper-module-transforms"; 181 - version = "7.20.7"; 181 + version = "7.20.11"; 182 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz"; 184 - sha512 = "FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA=="; 183 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz"; 184 + sha512 = "uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg=="; 185 185 }; 186 186 }; 187 187 "@babel/helper-optimise-call-expression-7.18.6" = { ··· 283 283 sha512 = "bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q=="; 284 284 }; 285 285 }; 286 - "@babel/helpers-7.20.7" = { 286 + "@babel/helpers-7.20.13" = { 287 287 name = "_at_babel_slash_helpers"; 288 288 packageName = "@babel/helpers"; 289 - version = "7.20.7"; 289 + version = "7.20.13"; 290 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.7.tgz"; 292 - sha512 = "PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA=="; 291 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz"; 292 + sha512 = "nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg=="; 293 293 }; 294 294 }; 295 295 "@babel/highlight-7.18.6" = { ··· 301 301 sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 302 302 }; 303 303 }; 304 - "@babel/parser-7.20.7" = { 304 + "@babel/parser-7.20.15" = { 305 305 name = "_at_babel_slash_parser"; 306 306 packageName = "@babel/parser"; 307 - version = "7.20.7"; 307 + version = "7.20.15"; 308 308 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.20.7.tgz"; 310 - sha512 = "T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg=="; 309 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz"; 310 + sha512 = "DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg=="; 311 311 }; 312 312 }; 313 313 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" = { ··· 355 355 sha512 = "AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ=="; 356 356 }; 357 357 }; 358 - "@babel/plugin-proposal-decorators-7.20.7" = { 358 + "@babel/plugin-proposal-decorators-7.20.13" = { 359 359 name = "_at_babel_slash_plugin-proposal-decorators"; 360 360 packageName = "@babel/plugin-proposal-decorators"; 361 - version = "7.20.7"; 361 + version = "7.20.13"; 362 362 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.7.tgz"; 364 - sha512 = "JB45hbUweYpwAGjkiM7uCyXMENH2lG+9r3G2E+ttc2PRXAoEkpfd/KW5jDg4j8RS6tLtTG1jZi9LbHZVSfs1/A=="; 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.13.tgz"; 364 + sha512 = "7T6BKHa9Cpd7lCueHBBzP0nkXNina+h5giOZw+a8ZpMfPFY19VjJAjIxyFHuWkhCWgL6QMqRiY/wB1fLXzm6Mw=="; 365 365 }; 366 366 }; 367 367 "@babel/plugin-proposal-dynamic-import-7.18.6" = { ··· 688 688 sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="; 689 689 }; 690 690 }; 691 - "@babel/plugin-transform-block-scoping-7.20.9" = { 691 + "@babel/plugin-transform-block-scoping-7.20.15" = { 692 692 name = "_at_babel_slash_plugin-transform-block-scoping"; 693 693 packageName = "@babel/plugin-transform-block-scoping"; 694 - version = "7.20.9"; 694 + version = "7.20.15"; 695 695 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.9.tgz"; 697 - sha512 = "hwZN0kr16UkIF/kR9F9x8gd1kTkQl1vyAF2lkUmlTuCtTKOGLE5blQctuxEeKXwz0dkArQ9RYL8+HLb/75KGMA=="; 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz"; 697 + sha512 = "Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA=="; 698 698 }; 699 699 }; 700 700 "@babel/plugin-transform-classes-7.20.7" = { ··· 796 796 sha512 = "qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA=="; 797 797 }; 798 798 }; 799 - "@babel/plugin-transform-modules-amd-7.20.7" = { 799 + "@babel/plugin-transform-modules-amd-7.20.11" = { 800 800 name = "_at_babel_slash_plugin-transform-modules-amd"; 801 801 packageName = "@babel/plugin-transform-modules-amd"; 802 - version = "7.20.7"; 802 + version = "7.20.11"; 803 803 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.7.tgz"; 805 - sha512 = "+1IVLD+dHOzRZWNFFSoyPZz4ffsVmOP+OhhjeahLKpU97v/52LcCb9RabRl5eHM1/HAuH5Dl0q9Pyzrq1v2otQ=="; 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz"; 805 + sha512 = "NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g=="; 806 806 }; 807 807 }; 808 - "@babel/plugin-transform-modules-commonjs-7.20.7" = { 808 + "@babel/plugin-transform-modules-commonjs-7.20.11" = { 809 809 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 810 810 packageName = "@babel/plugin-transform-modules-commonjs"; 811 - version = "7.20.7"; 811 + version = "7.20.11"; 812 812 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.7.tgz"; 814 - sha512 = "76jqqFiFdCD+RJwEdtBHUG2/rEKQAmpejPbAKyQECEE3/y4U5CMPc9IXvipS990vgQhzq+ZRw6WJ+q4xJ/P24w=="; 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz"; 814 + sha512 = "S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw=="; 815 815 }; 816 816 }; 817 - "@babel/plugin-transform-modules-systemjs-7.19.6" = { 817 + "@babel/plugin-transform-modules-systemjs-7.20.11" = { 818 818 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 819 819 packageName = "@babel/plugin-transform-modules-systemjs"; 820 - version = "7.19.6"; 820 + version = "7.20.11"; 821 821 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz"; 823 - sha512 = "fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ=="; 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz"; 823 + sha512 = "vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw=="; 824 824 }; 825 825 }; 826 826 "@babel/plugin-transform-modules-umd-7.18.6" = { ··· 895 895 sha512 = "TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA=="; 896 896 }; 897 897 }; 898 - "@babel/plugin-transform-react-jsx-7.20.7" = { 898 + "@babel/plugin-transform-react-jsx-7.20.13" = { 899 899 name = "_at_babel_slash_plugin-transform-react-jsx"; 900 900 packageName = "@babel/plugin-transform-react-jsx"; 901 - version = "7.20.7"; 901 + version = "7.20.13"; 902 902 src = fetchurl { 903 - url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.7.tgz"; 904 - sha512 = "Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ=="; 903 + url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz"; 904 + sha512 = "MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw=="; 905 905 }; 906 906 }; 907 907 "@babel/plugin-transform-react-jsx-development-7.18.6" = { ··· 994 994 sha512 = "SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw=="; 995 995 }; 996 996 }; 997 - "@babel/plugin-transform-typescript-7.20.7" = { 997 + "@babel/plugin-transform-typescript-7.20.13" = { 998 998 name = "_at_babel_slash_plugin-transform-typescript"; 999 999 packageName = "@babel/plugin-transform-typescript"; 1000 - version = "7.20.7"; 1000 + version = "7.20.13"; 1001 1001 src = fetchurl { 1002 - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.7.tgz"; 1003 - sha512 = "m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw=="; 1002 + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.13.tgz"; 1003 + sha512 = "O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA=="; 1004 1004 }; 1005 1005 }; 1006 1006 "@babel/plugin-transform-unicode-escapes-7.18.10" = { ··· 1057 1057 sha512 = "s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ=="; 1058 1058 }; 1059 1059 }; 1060 - "@babel/runtime-7.20.7" = { 1061 - name = "_at_babel_slash_runtime"; 1062 - packageName = "@babel/runtime"; 1063 - version = "7.20.7"; 1060 + "@babel/regjsgen-0.8.0" = { 1061 + name = "_at_babel_slash_regjsgen"; 1062 + packageName = "@babel/regjsgen"; 1063 + version = "0.8.0"; 1064 1064 src = fetchurl { 1065 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.7.tgz"; 1066 - sha512 = "UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ=="; 1065 + url = "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz"; 1066 + sha512 = "x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA=="; 1067 1067 }; 1068 1068 }; 1069 - "@babel/runtime-corejs3-7.20.7" = { 1070 - name = "_at_babel_slash_runtime-corejs3"; 1071 - packageName = "@babel/runtime-corejs3"; 1072 - version = "7.20.7"; 1069 + "@babel/runtime-7.20.13" = { 1070 + name = "_at_babel_slash_runtime"; 1071 + packageName = "@babel/runtime"; 1072 + version = "7.20.13"; 1073 1073 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.7.tgz"; 1075 - sha512 = "jr9lCZ4RbRQmCR28Q8U8Fu49zvFqLxTY9AMOUz+iyMohMoAgpEcVxY+wJNay99oXOpOcCTODkk70NDN2aaJEeg=="; 1074 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz"; 1075 + sha512 = "gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA=="; 1076 1076 }; 1077 1077 }; 1078 1078 "@babel/template-7.20.7" = { ··· 1084 1084 sha512 = "8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw=="; 1085 1085 }; 1086 1086 }; 1087 - "@babel/traverse-7.20.10" = { 1087 + "@babel/traverse-7.20.13" = { 1088 1088 name = "_at_babel_slash_traverse"; 1089 1089 packageName = "@babel/traverse"; 1090 - version = "7.20.10"; 1090 + version = "7.20.13"; 1091 1091 src = fetchurl { 1092 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.10.tgz"; 1093 - sha512 = "oSf1juCgymrSez8NI4A2sr4+uB/mFd9MXplYGPEBnfAuWmmyeVcHa6xLPiaRBcXkcb/28bgxmQLTVwFKE1yfsg=="; 1092 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz"; 1093 + sha512 = "kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ=="; 1094 1094 }; 1095 1095 }; 1096 1096 "@babel/types-7.20.7" = { ··· 1246 1246 sha512 = "c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g=="; 1247 1247 }; 1248 1248 }; 1249 - "@csstools/selector-specificity-2.0.2" = { 1249 + "@csstools/selector-specificity-2.1.1" = { 1250 1250 name = "_at_csstools_slash_selector-specificity"; 1251 1251 packageName = "@csstools/selector-specificity"; 1252 - version = "2.0.2"; 1252 + version = "2.1.1"; 1253 1253 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.0.2.tgz"; 1255 - sha512 = "IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg=="; 1254 + url = "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz"; 1255 + sha512 = "jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw=="; 1256 1256 }; 1257 1257 }; 1258 - "@emotion/babel-plugin-11.10.5" = { 1258 + "@emotion/babel-plugin-11.10.6" = { 1259 1259 name = "_at_emotion_slash_babel-plugin"; 1260 1260 packageName = "@emotion/babel-plugin"; 1261 - version = "11.10.5"; 1261 + version = "11.10.6"; 1262 1262 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.5.tgz"; 1264 - sha512 = "xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA=="; 1263 + url = "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.6.tgz"; 1264 + sha512 = "p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ=="; 1265 1265 }; 1266 1266 }; 1267 1267 "@emotion/cache-11.10.5" = { ··· 1300 1300 sha512 = "G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA=="; 1301 1301 }; 1302 1302 }; 1303 - "@emotion/react-11.10.5" = { 1303 + "@emotion/react-11.10.6" = { 1304 1304 name = "_at_emotion_slash_react"; 1305 1305 packageName = "@emotion/react"; 1306 - version = "11.10.5"; 1306 + version = "11.10.6"; 1307 1307 src = fetchurl { 1308 - url = "https://registry.npmjs.org/@emotion/react/-/react-11.10.5.tgz"; 1309 - sha512 = "TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A=="; 1308 + url = "https://registry.npmjs.org/@emotion/react/-/react-11.10.6.tgz"; 1309 + sha512 = "6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw=="; 1310 1310 }; 1311 1311 }; 1312 1312 "@emotion/serialize-1.1.1" = { ··· 1327 1327 sha512 = "zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA=="; 1328 1328 }; 1329 1329 }; 1330 - "@emotion/styled-11.10.5" = { 1330 + "@emotion/styled-11.10.6" = { 1331 1331 name = "_at_emotion_slash_styled"; 1332 1332 packageName = "@emotion/styled"; 1333 - version = "11.10.5"; 1333 + version = "11.10.6"; 1334 1334 src = fetchurl { 1335 - url = "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.5.tgz"; 1336 - sha512 = "8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw=="; 1335 + url = "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.6.tgz"; 1336 + sha512 = "OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og=="; 1337 1337 }; 1338 1338 }; 1339 1339 "@emotion/unitless-0.8.0" = { ··· 1372 1372 sha512 = "AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg=="; 1373 1373 }; 1374 1374 }; 1375 - "@eslint/eslintrc-1.4.0" = { 1375 + "@eslint/eslintrc-1.4.1" = { 1376 1376 name = "_at_eslint_slash_eslintrc"; 1377 1377 packageName = "@eslint/eslintrc"; 1378 - version = "1.4.0"; 1378 + version = "1.4.1"; 1379 1379 src = fetchurl { 1380 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.0.tgz"; 1381 - sha512 = "7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A=="; 1380 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz"; 1381 + sha512 = "XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA=="; 1382 1382 }; 1383 1383 }; 1384 1384 "@humanwhocodes/config-array-0.11.8" = { ··· 1633 1633 sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="; 1634 1634 }; 1635 1635 }; 1636 - "@mui/base-5.0.0-alpha.111" = { 1636 + "@mui/base-5.0.0-alpha.118" = { 1637 1637 name = "_at_mui_slash_base"; 1638 1638 packageName = "@mui/base"; 1639 - version = "5.0.0-alpha.111"; 1639 + version = "5.0.0-alpha.118"; 1640 1640 src = fetchurl { 1641 - url = "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.111.tgz"; 1642 - sha512 = "2wfIPpl97S4dPzD0QOM3UIzQ/EuXCYQvHmXxTpfKxev/cfkzOe7Ik/McoYUBbtM1bSOqH3W276R/L2LF9cyXqQ=="; 1641 + url = "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.118.tgz"; 1642 + sha512 = "GAEpqhnuHjRaAZLdxFNuOf2GDTp9sUawM46oHZV4VnYPFjXJDkIYFWfIQLONb0nga92OiqS5DD/scGzVKCL0Mw=="; 1643 1643 }; 1644 1644 }; 1645 - "@mui/core-downloads-tracker-5.11.1" = { 1645 + "@mui/core-downloads-tracker-5.11.9" = { 1646 1646 name = "_at_mui_slash_core-downloads-tracker"; 1647 1647 packageName = "@mui/core-downloads-tracker"; 1648 - version = "5.11.1"; 1648 + version = "5.11.9"; 1649 1649 src = fetchurl { 1650 - url = "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.11.1.tgz"; 1651 - sha512 = "QVqVNlZ2K+LqUDE5kFgYd0r4KekR/dv2cNYbAutQWbfOA8VPVUVrDz0ELrEcoe8TjM/CwnsmGvaDh/YSNl/ALA=="; 1650 + url = "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.11.9.tgz"; 1651 + sha512 = "YGEtucQ/Nl91VZkzYaLad47Cdui51n/hW+OQm4210g4N3/nZzBxmGeKfubEalf+ShKH4aYDS86XTO6q/TpZnjQ=="; 1652 1652 }; 1653 1653 }; 1654 - "@mui/icons-material-5.11.0" = { 1654 + "@mui/icons-material-5.11.9" = { 1655 1655 name = "_at_mui_slash_icons-material"; 1656 1656 packageName = "@mui/icons-material"; 1657 - version = "5.11.0"; 1657 + version = "5.11.9"; 1658 1658 src = fetchurl { 1659 - url = "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.0.tgz"; 1660 - sha512 = "I2LaOKqO8a0xcLGtIozC9xoXjZAto5G5gh0FYUMAlbsIHNHIjn4Xrw9rvjY20vZonyiGrZNMAlAXYkY6JvhF6A=="; 1659 + url = "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.9.tgz"; 1660 + sha512 = "SPANMk6K757Q1x48nCwPGdSNb8B71d+2hPMJ0V12VWerpSsbjZtvAPi5FAn13l2O5mwWkvI0Kne+0tCgnNxMNw=="; 1661 1661 }; 1662 1662 }; 1663 - "@mui/material-5.11.1" = { 1663 + "@mui/material-5.11.9" = { 1664 1664 name = "_at_mui_slash_material"; 1665 1665 packageName = "@mui/material"; 1666 - version = "5.11.1"; 1666 + version = "5.11.9"; 1667 1667 src = fetchurl { 1668 - url = "https://registry.npmjs.org/@mui/material/-/material-5.11.1.tgz"; 1669 - sha512 = "yaZiXvcrl2vgUK+VO24780BWRgwdAMmAyuMVZnRTts1Yu0tWd6PjIYq2ZtaOlpj6/LbaSS+Q2kSfxYnDQ20CEQ=="; 1668 + url = "https://registry.npmjs.org/@mui/material/-/material-5.11.9.tgz"; 1669 + sha512 = "Wb3WzjzYyi/WKSl/XlF7aC8kk2NE21IoHMF7hNQMkPb0GslbWwR4OUjlBpxtG+RSZn44wMZkEDNB9Hw0TDsd8g=="; 1670 1670 }; 1671 1671 }; 1672 - "@mui/private-theming-5.11.1" = { 1672 + "@mui/private-theming-5.11.9" = { 1673 1673 name = "_at_mui_slash_private-theming"; 1674 1674 packageName = "@mui/private-theming"; 1675 - version = "5.11.1"; 1675 + version = "5.11.9"; 1676 1676 src = fetchurl { 1677 - url = "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.11.1.tgz"; 1678 - sha512 = "nnHg7kA5RwFRhy0wiDYe59sLCVGORpPypL1JcEdhv0+N0Zbmc2E/y4z2zqMRZ62MAEscpro7cQbvv244ThA84A=="; 1677 + url = "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.11.9.tgz"; 1678 + sha512 = "XMyVIFGomVCmCm92EvYlgq3zrC9K+J6r7IKl/rBJT2/xVYoRY6uM7jeB+Wxh7kXxnW9Dbqsr2yL3cx6wSD1sAg=="; 1679 1679 }; 1680 1680 }; 1681 - "@mui/styled-engine-5.11.0" = { 1681 + "@mui/styled-engine-5.11.9" = { 1682 1682 name = "_at_mui_slash_styled-engine"; 1683 1683 packageName = "@mui/styled-engine"; 1684 - version = "5.11.0"; 1684 + version = "5.11.9"; 1685 1685 src = fetchurl { 1686 - url = "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.11.0.tgz"; 1687 - sha512 = "AF06K60Zc58qf0f7X+Y/QjaHaZq16znliLnGc9iVrV/+s8Ln/FCoeNuFvhlCbZZQ5WQcJvcy59zp0nXrklGGPQ=="; 1686 + url = "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.11.9.tgz"; 1687 + sha512 = "bkh2CjHKOMy98HyOc8wQXEZvhOmDa/bhxMUekFX5IG0/w4f5HJ8R6+K6nakUUYNEgjOWPYzNPrvGB8EcGbhahQ=="; 1688 1688 }; 1689 1689 }; 1690 - "@mui/system-5.11.1" = { 1690 + "@mui/system-5.11.9" = { 1691 1691 name = "_at_mui_slash_system"; 1692 1692 packageName = "@mui/system"; 1693 - version = "5.11.1"; 1693 + version = "5.11.9"; 1694 1694 src = fetchurl { 1695 - url = "https://registry.npmjs.org/@mui/system/-/system-5.11.1.tgz"; 1696 - sha512 = "BEA2S0hay8n8CcZftkeAVsi0nsb5ZjdnZRCahv5lX7QJYwDjO4ucJ6lnvxHe2v/9Te1LLjTO7ojxu/qM6CE5Cg=="; 1695 + url = "https://registry.npmjs.org/@mui/system/-/system-5.11.9.tgz"; 1696 + sha512 = "h6uarf+l3FO6l75Nf7yO+qDGrIoa1DM9nAMCUFZQsNCDKOInRzcptnm8M1w/Z3gVetfeeGoIGAYuYKbft6KZZA=="; 1697 1697 }; 1698 1698 }; 1699 1699 "@mui/types-7.2.3" = { ··· 1705 1705 sha512 = "tZ+CQggbe9Ol7e/Fs5RcKwg/woU+o8DCtOnccX6KmbBc7YrfqMYEYuaIcXHuhpT880QwNkZZ3wQwvtlDFA2yOw=="; 1706 1706 }; 1707 1707 }; 1708 - "@mui/utils-5.11.1" = { 1708 + "@mui/utils-5.11.9" = { 1709 1709 name = "_at_mui_slash_utils"; 1710 1710 packageName = "@mui/utils"; 1711 - version = "5.11.1"; 1711 + version = "5.11.9"; 1712 1712 src = fetchurl { 1713 - url = "https://registry.npmjs.org/@mui/utils/-/utils-5.11.1.tgz"; 1714 - sha512 = "lMAPgIJoil8V9ZxsMbEflMsvZmWcHbRVMc4JDY9jPO9V4welpF43h/O267b1RqlcRnC5MEbVQV605GYkTZY29Q=="; 1713 + url = "https://registry.npmjs.org/@mui/utils/-/utils-5.11.9.tgz"; 1714 + sha512 = "eOJaqzcEs4qEwolcvFAmXGpln+uvouvOS9FUX6Wkrte+4I8rZbjODOBDVNlK+V6/ziTfD4iNKC0G+KfOTApbqg=="; 1715 1715 }; 1716 1716 }; 1717 1717 "@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" = { ··· 1768 1768 sha512 = "50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw=="; 1769 1769 }; 1770 1770 }; 1771 - "@remix-run/router-1.2.0" = { 1771 + "@remix-run/router-1.3.2" = { 1772 1772 name = "_at_remix-run_slash_router"; 1773 1773 packageName = "@remix-run/router"; 1774 - version = "1.2.0"; 1774 + version = "1.3.2"; 1775 1775 src = fetchurl { 1776 - url = "https://registry.npmjs.org/@remix-run/router/-/router-1.2.0.tgz"; 1777 - sha512 = "GO82KYYTWPRCgdNtnheaZG3LcViUlxRFlHM7ykh7N+ufoXi6PVIHoP+9RUG/vuzl2hr9i/h6EA1Eq+2HpqJ0gQ=="; 1776 + url = "https://registry.npmjs.org/@remix-run/router/-/router-1.3.2.tgz"; 1777 + sha512 = "t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA=="; 1778 1778 }; 1779 1779 }; 1780 1780 "@rollup/plugin-babel-5.3.1" = { ··· 2002 2002 sha512 = "L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="; 2003 2003 }; 2004 2004 }; 2005 - "@types/babel__core-7.1.20" = { 2005 + "@types/babel__core-7.20.0" = { 2006 2006 name = "_at_types_slash_babel__core"; 2007 2007 packageName = "@types/babel__core"; 2008 - version = "7.1.20"; 2008 + version = "7.20.0"; 2009 2009 src = fetchurl { 2010 - url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.20.tgz"; 2011 - sha512 = "PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ=="; 2010 + url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz"; 2011 + sha512 = "+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ=="; 2012 2012 }; 2013 2013 }; 2014 2014 "@types/babel__generator-7.6.4" = { ··· 2074 2074 sha512 = "h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw=="; 2075 2075 }; 2076 2076 }; 2077 - "@types/eslint-8.4.10" = { 2077 + "@types/eslint-8.21.1" = { 2078 2078 name = "_at_types_slash_eslint"; 2079 2079 packageName = "@types/eslint"; 2080 - version = "8.4.10"; 2080 + version = "8.21.1"; 2081 2081 src = fetchurl { 2082 - url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz"; 2083 - sha512 = "Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw=="; 2082 + url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.1.tgz"; 2083 + sha512 = "rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ=="; 2084 2084 }; 2085 2085 }; 2086 2086 "@types/eslint-scope-3.7.4" = { ··· 2119 2119 sha512 = "WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ=="; 2120 2120 }; 2121 2121 }; 2122 - "@types/express-4.17.15" = { 2122 + "@types/express-4.17.17" = { 2123 2123 name = "_at_types_slash_express"; 2124 2124 packageName = "@types/express"; 2125 - version = "4.17.15"; 2125 + version = "4.17.17"; 2126 2126 src = fetchurl { 2127 - url = "https://registry.npmjs.org/@types/express/-/express-4.17.15.tgz"; 2128 - sha512 = "Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ=="; 2127 + url = "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz"; 2128 + sha512 = "Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q=="; 2129 2129 }; 2130 2130 }; 2131 - "@types/express-serve-static-core-4.17.31" = { 2131 + "@types/express-serve-static-core-4.17.33" = { 2132 2132 name = "_at_types_slash_express-serve-static-core"; 2133 2133 packageName = "@types/express-serve-static-core"; 2134 - version = "4.17.31"; 2134 + version = "4.17.33"; 2135 2135 src = fetchurl { 2136 - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz"; 2137 - sha512 = "DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q=="; 2136 + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz"; 2137 + sha512 = "TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA=="; 2138 2138 }; 2139 2139 }; 2140 - "@types/graceful-fs-4.1.5" = { 2140 + "@types/graceful-fs-4.1.6" = { 2141 2141 name = "_at_types_slash_graceful-fs"; 2142 2142 packageName = "@types/graceful-fs"; 2143 - version = "4.1.5"; 2143 + version = "4.1.6"; 2144 2144 src = fetchurl { 2145 - url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz"; 2146 - sha512 = "anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="; 2145 + url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz"; 2146 + sha512 = "Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw=="; 2147 2147 }; 2148 2148 }; 2149 2149 "@types/html-minifier-terser-6.1.0" = { ··· 2218 2218 sha512 = "Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="; 2219 2219 }; 2220 2220 }; 2221 - "@types/node-18.11.17" = { 2221 + "@types/node-18.14.0" = { 2222 2222 name = "_at_types_slash_node"; 2223 2223 packageName = "@types/node"; 2224 - version = "18.11.17"; 2224 + version = "18.14.0"; 2225 2225 src = fetchurl { 2226 - url = "https://registry.npmjs.org/@types/node/-/node-18.11.17.tgz"; 2227 - sha512 = "HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng=="; 2226 + url = "https://registry.npmjs.org/@types/node/-/node-18.14.0.tgz"; 2227 + sha512 = "5EWrvLmglK+imbCJY0+INViFWUHg1AHel1sq4ZVSfdcNqGy9Edv3UB9IIzzg+xPaUcAgZYcfVs2fBcwDeZzU0A=="; 2228 2228 }; 2229 2229 }; 2230 2230 "@types/parse-json-4.0.0" = { ··· 2281 2281 sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; 2282 2282 }; 2283 2283 }; 2284 - "@types/react-18.0.26" = { 2284 + "@types/react-18.0.28" = { 2285 2285 name = "_at_types_slash_react"; 2286 2286 packageName = "@types/react"; 2287 - version = "18.0.26"; 2287 + version = "18.0.28"; 2288 2288 src = fetchurl { 2289 - url = "https://registry.npmjs.org/@types/react/-/react-18.0.26.tgz"; 2290 - sha512 = "hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug=="; 2289 + url = "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz"; 2290 + sha512 = "RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew=="; 2291 2291 }; 2292 2292 }; 2293 2293 "@types/react-is-17.0.3" = { ··· 2380 2380 sha512 = "Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="; 2381 2381 }; 2382 2382 }; 2383 - "@types/trusted-types-2.0.2" = { 2383 + "@types/trusted-types-2.0.3" = { 2384 2384 name = "_at_types_slash_trusted-types"; 2385 2385 packageName = "@types/trusted-types"; 2386 - version = "2.0.2"; 2386 + version = "2.0.3"; 2387 2387 src = fetchurl { 2388 - url = "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz"; 2389 - sha512 = "F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg=="; 2388 + url = "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz"; 2389 + sha512 = "NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g=="; 2390 2390 }; 2391 2391 }; 2392 - "@types/ws-8.5.3" = { 2392 + "@types/ws-8.5.4" = { 2393 2393 name = "_at_types_slash_ws"; 2394 2394 packageName = "@types/ws"; 2395 - version = "8.5.3"; 2395 + version = "8.5.4"; 2396 2396 src = fetchurl { 2397 - url = "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz"; 2398 - sha512 = "6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w=="; 2397 + url = "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz"; 2398 + sha512 = "zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg=="; 2399 2399 }; 2400 2400 }; 2401 - "@types/yargs-16.0.4" = { 2401 + "@types/yargs-16.0.5" = { 2402 2402 name = "_at_types_slash_yargs"; 2403 2403 packageName = "@types/yargs"; 2404 - version = "16.0.4"; 2404 + version = "16.0.5"; 2405 2405 src = fetchurl { 2406 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz"; 2407 - sha512 = "T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw=="; 2406 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz"; 2407 + sha512 = "AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ=="; 2408 2408 }; 2409 2409 }; 2410 - "@types/yargs-17.0.17" = { 2410 + "@types/yargs-17.0.22" = { 2411 2411 name = "_at_types_slash_yargs"; 2412 2412 packageName = "@types/yargs"; 2413 - version = "17.0.17"; 2413 + version = "17.0.22"; 2414 2414 src = fetchurl { 2415 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.17.tgz"; 2416 - sha512 = "72bWxFKTK6uwWJAVT+3rF6Jo6RTojiJ27FQo8Rf60AL+VZbzoVPnMFhKsUnbjR8A3BTCYQ7Mv3hnl8T0A+CX9g=="; 2415 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.22.tgz"; 2416 + sha512 = "pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g=="; 2417 2417 }; 2418 2418 }; 2419 2419 "@types/yargs-parser-21.0.0" = { ··· 2425 2425 sha512 = "iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="; 2426 2426 }; 2427 2427 }; 2428 - "@typescript-eslint/eslint-plugin-5.47.0" = { 2428 + "@typescript-eslint/eslint-plugin-5.52.0" = { 2429 2429 name = "_at_typescript-eslint_slash_eslint-plugin"; 2430 2430 packageName = "@typescript-eslint/eslint-plugin"; 2431 - version = "5.47.0"; 2431 + version = "5.52.0"; 2432 2432 src = fetchurl { 2433 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.47.0.tgz"; 2434 - sha512 = "AHZtlXAMGkDmyLuLZsRpH3p4G/1iARIwc/T0vIem2YB+xW6pZaXYXzCBnZSF/5fdM97R9QqZWZ+h3iW10XgevQ=="; 2433 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.52.0.tgz"; 2434 + sha512 = "lHazYdvYVsBokwCdKOppvYJKaJ4S41CgKBcPvyd0xjZNbvQdhn/pnJlGtQksQ/NhInzdaeaSarlBjDXHuclEbg=="; 2435 2435 }; 2436 2436 }; 2437 - "@typescript-eslint/experimental-utils-5.47.0" = { 2437 + "@typescript-eslint/experimental-utils-5.52.0" = { 2438 2438 name = "_at_typescript-eslint_slash_experimental-utils"; 2439 2439 packageName = "@typescript-eslint/experimental-utils"; 2440 - version = "5.47.0"; 2440 + version = "5.52.0"; 2441 2441 src = fetchurl { 2442 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.47.0.tgz"; 2443 - sha512 = "DAP8xOaTAJLxouU0QrATiw8o/OHxxbUBXtkf9v+bCCU6tbJUn24xwB1dHFw3b5wYq4XvC1z5lYEN0g/Rx1sjzA=="; 2442 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.52.0.tgz"; 2443 + sha512 = "kd8CRr04mNE3hw4et6+0T0NI5vli2H6dJCGzjX1r12s/FXUehLVadmvo2Nl3DN80YqAh1cVC6zYZAkpmGiVJ5g=="; 2444 2444 }; 2445 2445 }; 2446 - "@typescript-eslint/parser-5.47.0" = { 2446 + "@typescript-eslint/parser-5.52.0" = { 2447 2447 name = "_at_typescript-eslint_slash_parser"; 2448 2448 packageName = "@typescript-eslint/parser"; 2449 - version = "5.47.0"; 2449 + version = "5.52.0"; 2450 2450 src = fetchurl { 2451 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.47.0.tgz"; 2452 - sha512 = "udPU4ckK+R1JWCGdQC4Qa27NtBg7w020ffHqGyAK8pAgOVuNw7YaKXGChk+udh+iiGIJf6/E/0xhVXyPAbsczw=="; 2451 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.52.0.tgz"; 2452 + sha512 = "e2KiLQOZRo4Y0D/b+3y08i3jsekoSkOYStROYmPUnGMEoA0h+k2qOH5H6tcjIc68WDvGwH+PaOrP1XRzLJ6QlA=="; 2453 2453 }; 2454 2454 }; 2455 - "@typescript-eslint/scope-manager-5.47.0" = { 2455 + "@typescript-eslint/scope-manager-5.52.0" = { 2456 2456 name = "_at_typescript-eslint_slash_scope-manager"; 2457 2457 packageName = "@typescript-eslint/scope-manager"; 2458 - version = "5.47.0"; 2458 + version = "5.52.0"; 2459 2459 src = fetchurl { 2460 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.47.0.tgz"; 2461 - sha512 = "dvJab4bFf7JVvjPuh3sfBUWsiD73aiftKBpWSfi3sUkysDQ4W8x+ZcFpNp7Kgv0weldhpmMOZBjx1wKN8uWvAw=="; 2460 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.52.0.tgz"; 2461 + sha512 = "AR7sxxfBKiNV0FWBSARxM8DmNxrwgnYMPwmpkC1Pl1n+eT8/I2NAUPuwDy/FmDcC6F8pBfmOcaxcxRHspgOBMw=="; 2462 2462 }; 2463 2463 }; 2464 - "@typescript-eslint/type-utils-5.47.0" = { 2464 + "@typescript-eslint/type-utils-5.52.0" = { 2465 2465 name = "_at_typescript-eslint_slash_type-utils"; 2466 2466 packageName = "@typescript-eslint/type-utils"; 2467 - version = "5.47.0"; 2467 + version = "5.52.0"; 2468 2468 src = fetchurl { 2469 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.47.0.tgz"; 2470 - sha512 = "1J+DFFrYoDUXQE1b7QjrNGARZE6uVhBqIvdaXTe5IN+NmEyD68qXR1qX1g2u4voA+nCaelQyG8w30SAOihhEYg=="; 2469 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.52.0.tgz"; 2470 + sha512 = "tEKuUHfDOv852QGlpPtB3lHOoig5pyFQN/cUiZtpw99D93nEBjexRLre5sQZlkMoHry/lZr8qDAt2oAHLKA6Jw=="; 2471 2471 }; 2472 2472 }; 2473 - "@typescript-eslint/types-5.47.0" = { 2473 + "@typescript-eslint/types-5.52.0" = { 2474 2474 name = "_at_typescript-eslint_slash_types"; 2475 2475 packageName = "@typescript-eslint/types"; 2476 - version = "5.47.0"; 2476 + version = "5.52.0"; 2477 2477 src = fetchurl { 2478 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.47.0.tgz"; 2479 - sha512 = "eslFG0Qy8wpGzDdYKu58CEr3WLkjwC5Usa6XbuV89ce/yN5RITLe1O8e+WFEuxnfftHiJImkkOBADj58ahRxSg=="; 2478 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.52.0.tgz"; 2479 + sha512 = "oV7XU4CHYfBhk78fS7tkum+/Dpgsfi91IIDy7fjCyq2k6KB63M6gMC0YIvy+iABzmXThCRI6xpCEyVObBdWSDQ=="; 2480 2480 }; 2481 2481 }; 2482 - "@typescript-eslint/typescript-estree-5.47.0" = { 2482 + "@typescript-eslint/typescript-estree-5.52.0" = { 2483 2483 name = "_at_typescript-eslint_slash_typescript-estree"; 2484 2484 packageName = "@typescript-eslint/typescript-estree"; 2485 - version = "5.47.0"; 2485 + version = "5.52.0"; 2486 2486 src = fetchurl { 2487 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.47.0.tgz"; 2488 - sha512 = "LxfKCG4bsRGq60Sqqu+34QT5qT2TEAHvSCCJ321uBWywgE2dS0LKcu5u+3sMGo+Vy9UmLOhdTw5JHzePV/1y4Q=="; 2487 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.52.0.tgz"; 2488 + sha512 = "WeWnjanyEwt6+fVrSR0MYgEpUAuROxuAH516WPjUblIrClzYJj0kBbjdnbQXLpgAN8qbEuGywiQsXUVDiAoEuQ=="; 2489 2489 }; 2490 2490 }; 2491 - "@typescript-eslint/utils-5.47.0" = { 2491 + "@typescript-eslint/utils-5.52.0" = { 2492 2492 name = "_at_typescript-eslint_slash_utils"; 2493 2493 packageName = "@typescript-eslint/utils"; 2494 - version = "5.47.0"; 2494 + version = "5.52.0"; 2495 2495 src = fetchurl { 2496 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.47.0.tgz"; 2497 - sha512 = "U9xcc0N7xINrCdGVPwABjbAKqx4GK67xuMV87toI+HUqgXj26m6RBp9UshEXcTrgCkdGYFzgKLt8kxu49RilDw=="; 2496 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.52.0.tgz"; 2497 + sha512 = "As3lChhrbwWQLNk2HC8Ree96hldKIqk98EYvypd3It8Q1f8d5zWyIoaZEp2va5667M4ZyE7X8UUR+azXrFl+NA=="; 2498 2498 }; 2499 2499 }; 2500 - "@typescript-eslint/visitor-keys-5.47.0" = { 2500 + "@typescript-eslint/visitor-keys-5.52.0" = { 2501 2501 name = "_at_typescript-eslint_slash_visitor-keys"; 2502 2502 packageName = "@typescript-eslint/visitor-keys"; 2503 - version = "5.47.0"; 2503 + version = "5.52.0"; 2504 2504 src = fetchurl { 2505 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.47.0.tgz"; 2506 - sha512 = "ByPi5iMa6QqDXe/GmT/hR6MZtVPi0SqMQPDx15FczCBXJo/7M8T88xReOALAfpBLm+zxpPfmhuEvPb577JRAEg=="; 2505 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.52.0.tgz"; 2506 + sha512 = "qMwpw6SU5VHCPr99y274xhbm+PRViK/NATY6qzt+Et7+mThGuFSl/ompj2/hrBlRP/kq+BFdgagnOSgw9TB0eA=="; 2507 2507 }; 2508 2508 }; 2509 2509 "@webassemblyjs/ast-1.11.1" = { ··· 2686 2686 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 2687 2687 }; 2688 2688 }; 2689 - "acorn-8.8.1" = { 2689 + "acorn-8.8.2" = { 2690 2690 name = "acorn"; 2691 2691 packageName = "acorn"; 2692 - version = "8.8.1"; 2692 + version = "8.8.2"; 2693 2693 src = fetchurl { 2694 - url = "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz"; 2695 - sha512 = "7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA=="; 2694 + url = "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz"; 2695 + sha512 = "xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw=="; 2696 2696 }; 2697 2697 }; 2698 2698 "acorn-globals-6.0.0" = { ··· 2776 2776 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 2777 2777 }; 2778 2778 }; 2779 - "ajv-8.11.2" = { 2779 + "ajv-8.12.0" = { 2780 2780 name = "ajv"; 2781 2781 packageName = "ajv"; 2782 - version = "8.11.2"; 2782 + version = "8.12.0"; 2783 2783 src = fetchurl { 2784 - url = "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz"; 2785 - sha512 = "E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg=="; 2784 + url = "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz"; 2785 + sha512 = "sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA=="; 2786 2786 }; 2787 2787 }; 2788 2788 "ajv-formats-2.1.1" = { ··· 2911 2911 sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; 2912 2912 }; 2913 2913 }; 2914 - "aria-query-4.2.2" = { 2914 + "aria-query-5.1.3" = { 2915 2915 name = "aria-query"; 2916 2916 packageName = "aria-query"; 2917 - version = "4.2.2"; 2917 + version = "5.1.3"; 2918 2918 src = fetchurl { 2919 - url = "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz"; 2920 - sha512 = "o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA=="; 2919 + url = "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz"; 2920 + sha512 = "R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ=="; 2921 2921 }; 2922 2922 }; 2923 2923 "array-flatten-1.1.1" = { ··· 3046 3046 sha512 = "49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg=="; 3047 3047 }; 3048 3048 }; 3049 - "axe-core-4.6.1" = { 3049 + "available-typed-arrays-1.0.5" = { 3050 + name = "available-typed-arrays"; 3051 + packageName = "available-typed-arrays"; 3052 + version = "1.0.5"; 3053 + src = fetchurl { 3054 + url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"; 3055 + sha512 = "DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="; 3056 + }; 3057 + }; 3058 + "axe-core-4.6.3" = { 3050 3059 name = "axe-core"; 3051 3060 packageName = "axe-core"; 3052 - version = "4.6.1"; 3061 + version = "4.6.3"; 3053 3062 src = fetchurl { 3054 - url = "https://registry.npmjs.org/axe-core/-/axe-core-4.6.1.tgz"; 3055 - sha512 = "lCZN5XRuOnpG4bpMq8v0khrWtUOn+i8lZSb6wHZH56ZfbIEv6XwJV84AAueh9/zi7qPVJ/E4yz6fmsiyOmXR4w=="; 3063 + url = "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz"; 3064 + sha512 = "/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg=="; 3056 3065 }; 3057 3066 }; 3058 - "axobject-query-2.2.0" = { 3067 + "axobject-query-3.1.1" = { 3059 3068 name = "axobject-query"; 3060 3069 packageName = "axobject-query"; 3061 - version = "2.2.0"; 3070 + version = "3.1.1"; 3062 3071 src = fetchurl { 3063 - url = "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz"; 3064 - sha512 = "Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA=="; 3072 + url = "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz"; 3073 + sha512 = "goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg=="; 3065 3074 }; 3066 3075 }; 3067 3076 "babel-jest-27.5.1" = { ··· 3244 3253 sha512 = "jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw=="; 3245 3254 }; 3246 3255 }; 3247 - "bonjour-service-1.0.14" = { 3256 + "bonjour-service-1.1.0" = { 3248 3257 name = "bonjour-service"; 3249 3258 packageName = "bonjour-service"; 3250 - version = "1.0.14"; 3259 + version = "1.1.0"; 3251 3260 src = fetchurl { 3252 - url = "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.14.tgz"; 3253 - sha512 = "HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ=="; 3261 + url = "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.0.tgz"; 3262 + sha512 = "LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q=="; 3254 3263 }; 3255 3264 }; 3256 3265 "boolbase-1.0.0" = { ··· 3298 3307 sha512 = "9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="; 3299 3308 }; 3300 3309 }; 3301 - "browserslist-4.21.4" = { 3310 + "browserslist-4.21.5" = { 3302 3311 name = "browserslist"; 3303 3312 packageName = "browserslist"; 3304 - version = "4.21.4"; 3313 + version = "4.21.5"; 3305 3314 src = fetchurl { 3306 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz"; 3307 - sha512 = "CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw=="; 3315 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz"; 3316 + sha512 = "tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w=="; 3308 3317 }; 3309 3318 }; 3310 3319 "bser-2.1.1" = { ··· 3415 3424 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 3416 3425 }; 3417 3426 }; 3418 - "caniuse-lite-1.0.30001441" = { 3427 + "caniuse-lite-1.0.30001456" = { 3419 3428 name = "caniuse-lite"; 3420 3429 packageName = "caniuse-lite"; 3421 - version = "1.0.30001441"; 3430 + version = "1.0.30001456"; 3422 3431 src = fetchurl { 3423 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz"; 3424 - sha512 = "OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg=="; 3432 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001456.tgz"; 3433 + sha512 = "XFHJY5dUgmpMV25UqaD4kVq2LsiaU5rS8fb0f17pCoXQiQslzmFgnfOxfvo1bTpTqf7dwG/N/05CnLCnOEKmzA=="; 3425 3434 }; 3426 3435 }; 3427 3436 "case-sensitive-paths-webpack-plugin-2.4.0" = { ··· 3496 3505 sha512 = "p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg=="; 3497 3506 }; 3498 3507 }; 3499 - "ci-info-3.7.0" = { 3508 + "ci-info-3.8.0" = { 3500 3509 name = "ci-info"; 3501 3510 packageName = "ci-info"; 3502 - version = "3.7.0"; 3511 + version = "3.8.0"; 3503 3512 src = fetchurl { 3504 - url = "https://registry.npmjs.org/ci-info/-/ci-info-3.7.0.tgz"; 3505 - sha512 = "2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog=="; 3513 + url = "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz"; 3514 + sha512 = "eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw=="; 3506 3515 }; 3507 3516 }; 3508 3517 "cjs-module-lexer-1.2.2" = { ··· 3514 3523 sha512 = "cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA=="; 3515 3524 }; 3516 3525 }; 3517 - "clean-css-5.3.1" = { 3526 + "clean-css-5.3.2" = { 3518 3527 name = "clean-css"; 3519 3528 packageName = "clean-css"; 3520 - version = "5.3.1"; 3529 + version = "5.3.2"; 3521 3530 src = fetchurl { 3522 - url = "https://registry.npmjs.org/clean-css/-/clean-css-5.3.1.tgz"; 3523 - sha512 = "lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg=="; 3531 + url = "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz"; 3532 + sha512 = "JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww=="; 3524 3533 }; 3525 3534 }; 3526 3535 "cliui-7.0.4" = { ··· 3739 3748 sha512 = "FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="; 3740 3749 }; 3741 3750 }; 3742 - "content-type-1.0.4" = { 3751 + "content-type-1.0.5" = { 3743 3752 name = "content-type"; 3744 3753 packageName = "content-type"; 3745 - version = "1.0.4"; 3754 + version = "1.0.5"; 3746 3755 src = fetchurl { 3747 - url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; 3748 - sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; 3756 + url = "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz"; 3757 + sha512 = "nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="; 3749 3758 }; 3750 3759 }; 3751 3760 "convert-source-map-1.9.0" = { ··· 3775 3784 sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="; 3776 3785 }; 3777 3786 }; 3778 - "core-js-3.26.1" = { 3787 + "core-js-3.28.0" = { 3779 3788 name = "core-js"; 3780 3789 packageName = "core-js"; 3781 - version = "3.26.1"; 3790 + version = "3.28.0"; 3782 3791 src = fetchurl { 3783 - url = "https://registry.npmjs.org/core-js/-/core-js-3.26.1.tgz"; 3784 - sha512 = "21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA=="; 3792 + url = "https://registry.npmjs.org/core-js/-/core-js-3.28.0.tgz"; 3793 + sha512 = "GiZn9D4Z/rSYvTeg1ljAIsEqFm0LaN9gVtwDCrKL80zHtS31p9BAjmTxVqTQDMpwlMolJZOFntUG2uwyj7DAqw=="; 3785 3794 }; 3786 3795 }; 3787 - "core-js-compat-3.26.1" = { 3796 + "core-js-compat-3.28.0" = { 3788 3797 name = "core-js-compat"; 3789 3798 packageName = "core-js-compat"; 3790 - version = "3.26.1"; 3799 + version = "3.28.0"; 3791 3800 src = fetchurl { 3792 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz"; 3793 - sha512 = "622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A=="; 3801 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.28.0.tgz"; 3802 + sha512 = "myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg=="; 3794 3803 }; 3795 3804 }; 3796 - "core-js-pure-3.26.1" = { 3805 + "core-js-pure-3.28.0" = { 3797 3806 name = "core-js-pure"; 3798 3807 packageName = "core-js-pure"; 3799 - version = "3.26.1"; 3808 + version = "3.28.0"; 3800 3809 src = fetchurl { 3801 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz"; 3802 - sha512 = "VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ=="; 3810 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.28.0.tgz"; 3811 + sha512 = "DSOVleA9/v3LNj/vFxAPfUHttKTzrB2RXhAPvR5TPXn4vrra3Z2ssytvRyt8eruJwAfwAiFADEbrjcRdcvPLQQ=="; 3803 3812 }; 3804 3813 }; 3805 3814 "core-util-is-1.0.3" = { ··· 3973 3982 sha512 = "HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="; 3974 3983 }; 3975 3984 }; 3976 - "cssdb-7.2.0" = { 3985 + "cssdb-7.4.1" = { 3977 3986 name = "cssdb"; 3978 3987 packageName = "cssdb"; 3979 - version = "7.2.0"; 3988 + version = "7.4.1"; 3980 3989 src = fetchurl { 3981 - url = "https://registry.npmjs.org/cssdb/-/cssdb-7.2.0.tgz"; 3982 - sha512 = "JYlIsE7eKHSi0UNuCyo96YuIDFqvhGgHw4Ck6lsN+DP0Tp8M64UTDT2trGbkMDqnCoEjks7CkS0XcjU0rkvBdg=="; 3990 + url = "https://registry.npmjs.org/cssdb/-/cssdb-7.4.1.tgz"; 3991 + sha512 = "0Q8NOMpXJ3iTDDbUv9grcmQAfdDx4qz+fN/+Md2FGbevT+6+bJNQ2LjB2YIUlLbpBTM32idU1Sb+tb/uGt6/XQ=="; 3983 3992 }; 3984 3993 }; 3985 3994 "cssesc-3.0.0" = { ··· 3991 4000 sha512 = "/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="; 3992 4001 }; 3993 4002 }; 3994 - "cssnano-5.1.14" = { 4003 + "cssnano-5.1.15" = { 3995 4004 name = "cssnano"; 3996 4005 packageName = "cssnano"; 3997 - version = "5.1.14"; 4006 + version = "5.1.15"; 3998 4007 src = fetchurl { 3999 - url = "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz"; 4000 - sha512 = "Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw=="; 4008 + url = "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz"; 4009 + sha512 = "j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw=="; 4001 4010 }; 4002 4011 }; 4003 - "cssnano-preset-default-5.2.13" = { 4012 + "cssnano-preset-default-5.2.14" = { 4004 4013 name = "cssnano-preset-default"; 4005 4014 packageName = "cssnano-preset-default"; 4006 - version = "5.2.13"; 4015 + version = "5.2.14"; 4007 4016 src = fetchurl { 4008 - url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz"; 4009 - sha512 = "PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ=="; 4017 + url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz"; 4018 + sha512 = "t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A=="; 4010 4019 }; 4011 4020 }; 4012 4021 "cssnano-utils-3.1.0" = { ··· 4126 4135 sha512 = "Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA=="; 4127 4136 }; 4128 4137 }; 4138 + "deep-equal-2.2.0" = { 4139 + name = "deep-equal"; 4140 + packageName = "deep-equal"; 4141 + version = "2.2.0"; 4142 + src = fetchurl { 4143 + url = "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz"; 4144 + sha512 = "RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw=="; 4145 + }; 4146 + }; 4129 4147 "deep-is-0.1.4" = { 4130 4148 name = "deep-is"; 4131 4149 packageName = "deep-is"; ··· 4135 4153 sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 4136 4154 }; 4137 4155 }; 4138 - "deepmerge-4.2.2" = { 4156 + "deepmerge-4.3.0" = { 4139 4157 name = "deepmerge"; 4140 4158 packageName = "deepmerge"; 4141 - version = "4.2.2"; 4159 + version = "4.3.0"; 4142 4160 src = fetchurl { 4143 - url = "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"; 4144 - sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="; 4161 + url = "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz"; 4162 + sha512 = "z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og=="; 4145 4163 }; 4146 4164 }; 4147 4165 "default-gateway-6.0.3" = { ··· 4162 4180 sha512 = "Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="; 4163 4181 }; 4164 4182 }; 4165 - "define-properties-1.1.4" = { 4183 + "define-properties-1.2.0" = { 4166 4184 name = "define-properties"; 4167 4185 packageName = "define-properties"; 4168 - version = "1.1.4"; 4186 + version = "1.2.0"; 4169 4187 src = fetchurl { 4170 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"; 4171 - sha512 = "uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="; 4188 + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz"; 4189 + sha512 = "xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA=="; 4172 4190 }; 4173 4191 }; 4174 4192 "defined-1.0.1" = { ··· 4252 4270 sha512 = "v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw=="; 4253 4271 }; 4254 4272 }; 4255 - "dexie-3.2.2" = { 4273 + "dexie-3.2.3" = { 4256 4274 name = "dexie"; 4257 4275 packageName = "dexie"; 4258 - version = "3.2.2"; 4276 + version = "3.2.3"; 4259 4277 src = fetchurl { 4260 - url = "https://registry.npmjs.org/dexie/-/dexie-3.2.2.tgz"; 4261 - sha512 = "q5dC3HPmir2DERlX+toCBbHQXW5MsyrFqPFcovkH9N2S/UW/H3H5AWAB6iEOExeraAu+j+zRDG+zg/D7YhH0qg=="; 4278 + url = "https://registry.npmjs.org/dexie/-/dexie-3.2.3.tgz"; 4279 + sha512 = "iHayBd4UYryDCVUNa3PMsJMEnd8yjyh5p7a+RFeC8i8n476BC9wMhVvqiImq5zJZJf5Tuer+s4SSj+AA3x+ZbQ=="; 4262 4280 }; 4263 4281 }; 4264 4282 "dexie-react-hooks-1.1.1" = { ··· 4486 4504 sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ=="; 4487 4505 }; 4488 4506 }; 4489 - "electron-to-chromium-1.4.284" = { 4507 + "electron-to-chromium-1.4.302" = { 4490 4508 name = "electron-to-chromium"; 4491 4509 packageName = "electron-to-chromium"; 4492 - version = "1.4.284"; 4510 + version = "1.4.302"; 4493 4511 src = fetchurl { 4494 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz"; 4495 - sha512 = "M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA=="; 4512 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.302.tgz"; 4513 + sha512 = "Uk7C+7aPBryUR1Fwvk9VmipBcN9fVsqBO57jV2ZjTm+IZ6BMNqu7EDVEg2HxCNufk6QcWlFsBkhQyQroB2VWKw=="; 4496 4514 }; 4497 4515 }; 4498 4516 "emittery-0.10.2" = { ··· 4585 4603 sha512 = "Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ=="; 4586 4604 }; 4587 4605 }; 4588 - "es-abstract-1.20.5" = { 4606 + "es-abstract-1.21.1" = { 4589 4607 name = "es-abstract"; 4590 4608 packageName = "es-abstract"; 4591 - version = "1.20.5"; 4609 + version = "1.21.1"; 4592 4610 src = fetchurl { 4593 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.5.tgz"; 4594 - sha512 = "7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ=="; 4611 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz"; 4612 + sha512 = "QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg=="; 4595 4613 }; 4596 4614 }; 4597 4615 "es-array-method-boxes-properly-1.0.0" = { ··· 4603 4621 sha512 = "wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA=="; 4604 4622 }; 4605 4623 }; 4624 + "es-get-iterator-1.1.3" = { 4625 + name = "es-get-iterator"; 4626 + packageName = "es-get-iterator"; 4627 + version = "1.1.3"; 4628 + src = fetchurl { 4629 + url = "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz"; 4630 + sha512 = "sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw=="; 4631 + }; 4632 + }; 4606 4633 "es-module-lexer-0.9.3" = { 4607 4634 name = "es-module-lexer"; 4608 4635 packageName = "es-module-lexer"; ··· 4610 4637 src = fetchurl { 4611 4638 url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz"; 4612 4639 sha512 = "1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ=="; 4640 + }; 4641 + }; 4642 + "es-set-tostringtag-2.0.1" = { 4643 + name = "es-set-tostringtag"; 4644 + packageName = "es-set-tostringtag"; 4645 + version = "2.0.1"; 4646 + src = fetchurl { 4647 + url = "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz"; 4648 + sha512 = "g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg=="; 4613 4649 }; 4614 4650 }; 4615 4651 "es-shim-unscopables-1.0.0" = { ··· 4684 4720 sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="; 4685 4721 }; 4686 4722 }; 4687 - "eslint-8.30.0" = { 4723 + "eslint-8.34.0" = { 4688 4724 name = "eslint"; 4689 4725 packageName = "eslint"; 4690 - version = "8.30.0"; 4726 + version = "8.34.0"; 4691 4727 src = fetchurl { 4692 - url = "https://registry.npmjs.org/eslint/-/eslint-8.30.0.tgz"; 4693 - sha512 = "MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ=="; 4728 + url = "https://registry.npmjs.org/eslint/-/eslint-8.34.0.tgz"; 4729 + sha512 = "1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg=="; 4694 4730 }; 4695 4731 }; 4696 4732 "eslint-config-react-app-7.0.1" = { ··· 4702 4738 sha512 = "K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA=="; 4703 4739 }; 4704 4740 }; 4705 - "eslint-import-resolver-node-0.3.6" = { 4741 + "eslint-import-resolver-node-0.3.7" = { 4706 4742 name = "eslint-import-resolver-node"; 4707 4743 packageName = "eslint-import-resolver-node"; 4708 - version = "0.3.6"; 4744 + version = "0.3.7"; 4709 4745 src = fetchurl { 4710 - url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz"; 4711 - sha512 = "0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw=="; 4746 + url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz"; 4747 + sha512 = "gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA=="; 4712 4748 }; 4713 4749 }; 4714 4750 "eslint-module-utils-2.7.4" = { ··· 4729 4765 sha512 = "dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ=="; 4730 4766 }; 4731 4767 }; 4732 - "eslint-plugin-import-2.26.0" = { 4768 + "eslint-plugin-import-2.27.5" = { 4733 4769 name = "eslint-plugin-import"; 4734 4770 packageName = "eslint-plugin-import"; 4735 - version = "2.26.0"; 4771 + version = "2.27.5"; 4736 4772 src = fetchurl { 4737 - url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz"; 4738 - sha512 = "hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA=="; 4773 + url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz"; 4774 + sha512 = "LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow=="; 4739 4775 }; 4740 4776 }; 4741 4777 "eslint-plugin-jest-25.7.0" = { ··· 4747 4783 sha512 = "PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ=="; 4748 4784 }; 4749 4785 }; 4750 - "eslint-plugin-jsx-a11y-6.6.1" = { 4786 + "eslint-plugin-jsx-a11y-6.7.1" = { 4751 4787 name = "eslint-plugin-jsx-a11y"; 4752 4788 packageName = "eslint-plugin-jsx-a11y"; 4753 - version = "6.6.1"; 4789 + version = "6.7.1"; 4754 4790 src = fetchurl { 4755 - url = "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz"; 4756 - sha512 = "sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q=="; 4791 + url = "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz"; 4792 + sha512 = "63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA=="; 4757 4793 }; 4758 4794 }; 4759 - "eslint-plugin-react-7.31.11" = { 4795 + "eslint-plugin-react-7.32.2" = { 4760 4796 name = "eslint-plugin-react"; 4761 4797 packageName = "eslint-plugin-react"; 4762 - version = "7.31.11"; 4798 + version = "7.32.2"; 4763 4799 src = fetchurl { 4764 - url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz"; 4765 - sha512 = "TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw=="; 4800 + url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz"; 4801 + sha512 = "t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg=="; 4766 4802 }; 4767 4803 }; 4768 4804 "eslint-plugin-react-hooks-4.6.0" = { ··· 4774 4810 sha512 = "oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g=="; 4775 4811 }; 4776 4812 }; 4777 - "eslint-plugin-testing-library-5.9.1" = { 4813 + "eslint-plugin-testing-library-5.10.2" = { 4778 4814 name = "eslint-plugin-testing-library"; 4779 4815 packageName = "eslint-plugin-testing-library"; 4780 - version = "5.9.1"; 4816 + version = "5.10.2"; 4781 4817 src = fetchurl { 4782 - url = "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.9.1.tgz"; 4783 - sha512 = "6BQp3tmb79jLLasPHJmy8DnxREe+2Pgf7L+7o09TSWPfdqqtQfRZmZNetr5mOs3yqZk/MRNxpN3RUpJe0wB4LQ=="; 4818 + url = "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.2.tgz"; 4819 + sha512 = "f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw=="; 4784 4820 }; 4785 4821 }; 4786 4822 "eslint-scope-5.1.1" = { ··· 4855 4891 sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 4856 4892 }; 4857 4893 }; 4858 - "esquery-1.4.0" = { 4894 + "esquery-1.4.2" = { 4859 4895 name = "esquery"; 4860 4896 packageName = "esquery"; 4861 - version = "1.4.0"; 4897 + version = "1.4.2"; 4862 4898 src = fetchurl { 4863 - url = "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"; 4864 - sha512 = "cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="; 4899 + url = "https://registry.npmjs.org/esquery/-/esquery-1.4.2.tgz"; 4900 + sha512 = "JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng=="; 4865 4901 }; 4866 4902 }; 4867 4903 "esrecurse-4.3.0" = { ··· 5008 5044 sha512 = "DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="; 5009 5045 }; 5010 5046 }; 5011 - "fastq-1.14.0" = { 5047 + "fastq-1.15.0" = { 5012 5048 name = "fastq"; 5013 5049 packageName = "fastq"; 5014 - version = "1.14.0"; 5050 + version = "1.15.0"; 5015 5051 src = fetchurl { 5016 - url = "https://registry.npmjs.org/fastq/-/fastq-1.14.0.tgz"; 5017 - sha512 = "eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg=="; 5052 + url = "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz"; 5053 + sha512 = "wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw=="; 5018 5054 }; 5019 5055 }; 5020 5056 "faye-websocket-0.11.4" = { ··· 5161 5197 sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 5162 5198 }; 5163 5199 }; 5200 + "for-each-0.3.3" = { 5201 + name = "for-each"; 5202 + packageName = "for-each"; 5203 + version = "0.3.3"; 5204 + src = fetchurl { 5205 + url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"; 5206 + sha512 = "jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw=="; 5207 + }; 5208 + }; 5164 5209 "fork-ts-checker-webpack-plugin-6.5.2" = { 5165 5210 name = "fork-ts-checker-webpack-plugin"; 5166 5211 packageName = "fork-ts-checker-webpack-plugin"; ··· 5296 5341 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 5297 5342 }; 5298 5343 }; 5299 - "get-intrinsic-1.1.3" = { 5344 + "get-intrinsic-1.2.0" = { 5300 5345 name = "get-intrinsic"; 5301 5346 packageName = "get-intrinsic"; 5302 - version = "1.1.3"; 5347 + version = "1.2.0"; 5303 5348 src = fetchurl { 5304 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"; 5305 - sha512 = "QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A=="; 5349 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz"; 5350 + sha512 = "L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q=="; 5306 5351 }; 5307 5352 }; 5308 5353 "get-own-enumerable-property-symbols-3.0.2" = { ··· 5404 5449 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 5405 5450 }; 5406 5451 }; 5407 - "globals-13.19.0" = { 5452 + "globals-13.20.0" = { 5408 5453 name = "globals"; 5409 5454 packageName = "globals"; 5410 - version = "13.19.0"; 5455 + version = "13.20.0"; 5411 5456 src = fetchurl { 5412 - url = "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz"; 5413 - sha512 = "dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ=="; 5457 + url = "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz"; 5458 + sha512 = "Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ=="; 5459 + }; 5460 + }; 5461 + "globalthis-1.0.3" = { 5462 + name = "globalthis"; 5463 + packageName = "globalthis"; 5464 + version = "1.0.3"; 5465 + src = fetchurl { 5466 + url = "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz"; 5467 + sha512 = "sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA=="; 5414 5468 }; 5415 5469 }; 5416 5470 "globby-11.1.0" = { ··· 5519 5573 src = fetchurl { 5520 5574 url = "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"; 5521 5575 sha512 = "62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="; 5576 + }; 5577 + }; 5578 + "has-proto-1.0.1" = { 5579 + name = "has-proto"; 5580 + packageName = "has-proto"; 5581 + version = "1.0.1"; 5582 + src = fetchurl { 5583 + url = "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz"; 5584 + sha512 = "7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg=="; 5522 5585 }; 5523 5586 }; 5524 5587 "has-symbols-1.0.3" = { ··· 5719 5782 sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="; 5720 5783 }; 5721 5784 }; 5785 + "humanize-duration-3.28.0" = { 5786 + name = "humanize-duration"; 5787 + packageName = "humanize-duration"; 5788 + version = "3.28.0"; 5789 + src = fetchurl { 5790 + url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.28.0.tgz"; 5791 + sha512 = "jMAxraOOmHuPbffLVDKkEKi/NeG8dMqP8lGRd6Tbf7JgAeG33jjgPWDbXXU7ypCI0o+oNKJFgbSB9FKVdWNI2A=="; 5792 + }; 5793 + }; 5722 5794 "i18next-21.10.0" = { 5723 5795 name = "i18next"; 5724 5796 packageName = "i18next"; ··· 5800 5872 sha512 = "MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ=="; 5801 5873 }; 5802 5874 }; 5803 - "immer-9.0.16" = { 5875 + "immer-9.0.19" = { 5804 5876 name = "immer"; 5805 5877 packageName = "immer"; 5806 - version = "9.0.16"; 5878 + version = "9.0.19"; 5807 5879 src = fetchurl { 5808 - url = "https://registry.npmjs.org/immer/-/immer-9.0.16.tgz"; 5809 - sha512 = "qenGE7CstVm1NrHQbMh8YaSzTZTFNP3zPqr3YU0S0UY441j4bJTg4A2Hh5KAhwgaiU6ZZ1Ar6y/2f4TblnMReQ=="; 5880 + url = "https://registry.npmjs.org/immer/-/immer-9.0.19.tgz"; 5881 + sha512 = "eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ=="; 5810 5882 }; 5811 5883 }; 5812 5884 "import-fresh-3.3.0" = { ··· 5872 5944 sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 5873 5945 }; 5874 5946 }; 5875 - "internal-slot-1.0.4" = { 5947 + "internal-slot-1.0.5" = { 5876 5948 name = "internal-slot"; 5877 5949 packageName = "internal-slot"; 5878 - version = "1.0.4"; 5950 + version = "1.0.5"; 5879 5951 src = fetchurl { 5880 - url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz"; 5881 - sha512 = "tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ=="; 5952 + url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz"; 5953 + sha512 = "Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ=="; 5882 5954 }; 5883 5955 }; 5884 5956 "ipaddr.js-1.9.1" = { ··· 5897 5969 src = fetchurl { 5898 5970 url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz"; 5899 5971 sha512 = "1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng=="; 5972 + }; 5973 + }; 5974 + "is-arguments-1.1.1" = { 5975 + name = "is-arguments"; 5976 + packageName = "is-arguments"; 5977 + version = "1.1.1"; 5978 + src = fetchurl { 5979 + url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz"; 5980 + sha512 = "8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA=="; 5981 + }; 5982 + }; 5983 + "is-array-buffer-3.0.1" = { 5984 + name = "is-array-buffer"; 5985 + packageName = "is-array-buffer"; 5986 + version = "3.0.1"; 5987 + src = fetchurl { 5988 + url = "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz"; 5989 + sha512 = "ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ=="; 5900 5990 }; 5901 5991 }; 5902 5992 "is-arrayish-0.2.1" = { ··· 6007 6097 sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; 6008 6098 }; 6009 6099 }; 6100 + "is-map-2.0.2" = { 6101 + name = "is-map"; 6102 + packageName = "is-map"; 6103 + version = "2.0.2"; 6104 + src = fetchurl { 6105 + url = "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz"; 6106 + sha512 = "cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg=="; 6107 + }; 6108 + }; 6010 6109 "is-module-1.0.0" = { 6011 6110 name = "is-module"; 6012 6111 packageName = "is-module"; ··· 6106 6205 sha512 = "AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg=="; 6107 6206 }; 6108 6207 }; 6208 + "is-set-2.0.2" = { 6209 + name = "is-set"; 6210 + packageName = "is-set"; 6211 + version = "2.0.2"; 6212 + src = fetchurl { 6213 + url = "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz"; 6214 + sha512 = "+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g=="; 6215 + }; 6216 + }; 6109 6217 "is-shared-array-buffer-1.0.2" = { 6110 6218 name = "is-shared-array-buffer"; 6111 6219 packageName = "is-shared-array-buffer"; ··· 6140 6248 src = fetchurl { 6141 6249 url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"; 6142 6250 sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 6251 + }; 6252 + }; 6253 + "is-typed-array-1.1.10" = { 6254 + name = "is-typed-array"; 6255 + packageName = "is-typed-array"; 6256 + version = "1.1.10"; 6257 + src = fetchurl { 6258 + url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz"; 6259 + sha512 = "PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A=="; 6143 6260 }; 6144 6261 }; 6145 6262 "is-typedarray-1.0.0" = { ··· 6151 6268 sha512 = "cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="; 6152 6269 }; 6153 6270 }; 6271 + "is-weakmap-2.0.1" = { 6272 + name = "is-weakmap"; 6273 + packageName = "is-weakmap"; 6274 + version = "2.0.1"; 6275 + src = fetchurl { 6276 + url = "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz"; 6277 + sha512 = "NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA=="; 6278 + }; 6279 + }; 6154 6280 "is-weakref-1.0.2" = { 6155 6281 name = "is-weakref"; 6156 6282 packageName = "is-weakref"; ··· 6160 6286 sha512 = "qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="; 6161 6287 }; 6162 6288 }; 6289 + "is-weakset-2.0.2" = { 6290 + name = "is-weakset"; 6291 + packageName = "is-weakset"; 6292 + version = "2.0.2"; 6293 + src = fetchurl { 6294 + url = "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz"; 6295 + sha512 = "t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg=="; 6296 + }; 6297 + }; 6163 6298 "is-wsl-2.2.0" = { 6164 6299 name = "is-wsl"; 6165 6300 packageName = "is-wsl"; ··· 6176 6311 src = fetchurl { 6177 6312 url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; 6178 6313 sha512 = "VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="; 6314 + }; 6315 + }; 6316 + "isarray-2.0.5" = { 6317 + name = "isarray"; 6318 + packageName = "isarray"; 6319 + version = "2.0.5"; 6320 + src = fetchurl { 6321 + url = "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz"; 6322 + sha512 = "xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="; 6179 6323 }; 6180 6324 }; 6181 6325 "isexe-2.0.0" = { ··· 6565 6709 sha512 = "CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g=="; 6566 6710 }; 6567 6711 }; 6568 - "js-base64-3.7.3" = { 6712 + "js-base64-3.7.5" = { 6569 6713 name = "js-base64"; 6570 6714 packageName = "js-base64"; 6571 - version = "3.7.3"; 6715 + version = "3.7.5"; 6572 6716 src = fetchurl { 6573 - url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.3.tgz"; 6574 - sha512 = "PAr6Xg2jvd7MCR6Ld9Jg3BmTcjYsHEBx1VlwEwULb/qowPf5VD9kEMagj23Gm7JRnSvE/Da/57nChZjnvL8v6A=="; 6717 + url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.5.tgz"; 6718 + sha512 = "3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA=="; 6575 6719 }; 6576 6720 }; 6577 - "js-sdsl-4.2.0" = { 6721 + "js-sdsl-4.3.0" = { 6578 6722 name = "js-sdsl"; 6579 6723 packageName = "js-sdsl"; 6580 - version = "4.2.0"; 6724 + version = "4.3.0"; 6581 6725 src = fetchurl { 6582 - url = "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz"; 6583 - sha512 = "dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ=="; 6726 + url = "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz"; 6727 + sha512 = "mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ=="; 6584 6728 }; 6585 6729 }; 6586 6730 "js-tokens-4.0.0" = { ··· 6682 6826 sha512 = "Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="; 6683 6827 }; 6684 6828 }; 6685 - "json5-1.0.1" = { 6829 + "json5-1.0.2" = { 6686 6830 name = "json5"; 6687 6831 packageName = "json5"; 6688 - version = "1.0.1"; 6832 + version = "1.0.2"; 6689 6833 src = fetchurl { 6690 - url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; 6691 - sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; 6834 + url = "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz"; 6835 + sha512 = "g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA=="; 6692 6836 }; 6693 6837 }; 6694 - "json5-2.2.2" = { 6838 + "json5-2.2.3" = { 6695 6839 name = "json5"; 6696 6840 packageName = "json5"; 6697 - version = "2.2.2"; 6841 + version = "2.2.3"; 6698 6842 src = fetchurl { 6699 - url = "https://registry.npmjs.org/json5/-/json5-2.2.2.tgz"; 6700 - sha512 = "46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ=="; 6843 + url = "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"; 6844 + sha512 = "XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="; 6701 6845 }; 6702 6846 }; 6703 6847 "jsonfile-6.1.0" = { ··· 6745 6889 sha512 = "eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="; 6746 6890 }; 6747 6891 }; 6748 - "klona-2.0.5" = { 6892 + "klona-2.0.6" = { 6749 6893 name = "klona"; 6750 6894 packageName = "klona"; 6751 - version = "2.0.5"; 6895 + version = "2.0.6"; 6752 6896 src = fetchurl { 6753 - url = "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz"; 6754 - sha512 = "pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ=="; 6897 + url = "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz"; 6898 + sha512 = "dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA=="; 6755 6899 }; 6756 6900 }; 6757 6901 "language-subtag-registry-0.3.22" = { ··· 6763 6907 sha512 = "tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w=="; 6764 6908 }; 6765 6909 }; 6766 - "language-tags-1.0.7" = { 6910 + "language-tags-1.0.5" = { 6767 6911 name = "language-tags"; 6768 6912 packageName = "language-tags"; 6769 - version = "1.0.7"; 6913 + version = "1.0.5"; 6770 6914 src = fetchurl { 6771 - url = "https://registry.npmjs.org/language-tags/-/language-tags-1.0.7.tgz"; 6772 - sha512 = "bSytju1/657hFjgUzPAPqszxH62ouE8nQFoFaVlIQfne4wO/wXC9A4+m8jYve7YBBvi59eq0SUpcshvG8h5Usw=="; 6915 + url = "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz"; 6916 + sha512 = "qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ=="; 6773 6917 }; 6774 6918 }; 6775 6919 "leven-3.1.0" = { ··· 7015 7159 sha512 = "dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="; 7016 7160 }; 7017 7161 }; 7018 - "memfs-3.4.12" = { 7162 + "memfs-3.4.13" = { 7019 7163 name = "memfs"; 7020 7164 packageName = "memfs"; 7021 - version = "3.4.12"; 7165 + version = "3.4.13"; 7022 7166 src = fetchurl { 7023 - url = "https://registry.npmjs.org/memfs/-/memfs-3.4.12.tgz"; 7024 - sha512 = "BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw=="; 7167 + url = "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz"; 7168 + sha512 = "omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg=="; 7025 7169 }; 7026 7170 }; 7027 7171 "merge-descriptors-1.0.1" = { ··· 7132 7276 sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 7133 7277 }; 7134 7278 }; 7135 - "minimatch-5.1.2" = { 7279 + "minimatch-5.1.6" = { 7136 7280 name = "minimatch"; 7137 7281 packageName = "minimatch"; 7138 - version = "5.1.2"; 7282 + version = "5.1.6"; 7139 7283 src = fetchurl { 7140 - url = "https://registry.npmjs.org/minimatch/-/minimatch-5.1.2.tgz"; 7141 - sha512 = "bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg=="; 7284 + url = "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz"; 7285 + sha512 = "lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="; 7142 7286 }; 7143 7287 }; 7144 - "minimist-1.2.7" = { 7288 + "minimist-1.2.8" = { 7145 7289 name = "minimist"; 7146 7290 packageName = "minimist"; 7147 - version = "1.2.7"; 7291 + version = "1.2.8"; 7148 7292 src = fetchurl { 7149 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"; 7150 - sha512 = "bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="; 7293 + url = "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"; 7294 + sha512 = "2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="; 7151 7295 }; 7152 7296 }; 7153 7297 "mkdirp-0.5.6" = { ··· 7276 7420 sha512 = "O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="; 7277 7421 }; 7278 7422 }; 7279 - "node-releases-2.0.8" = { 7423 + "node-releases-2.0.10" = { 7280 7424 name = "node-releases"; 7281 7425 packageName = "node-releases"; 7282 - version = "2.0.8"; 7426 + version = "2.0.10"; 7283 7427 src = fetchurl { 7284 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz"; 7285 - sha512 = "dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A=="; 7428 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz"; 7429 + sha512 = "5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w=="; 7286 7430 }; 7287 7431 }; 7288 7432 "normalize-path-3.0.0" = { ··· 7366 7510 sha512 = "RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw=="; 7367 7511 }; 7368 7512 }; 7369 - "object-inspect-1.12.2" = { 7513 + "object-inspect-1.12.3" = { 7370 7514 name = "object-inspect"; 7371 7515 packageName = "object-inspect"; 7372 - version = "1.12.2"; 7516 + version = "1.12.3"; 7517 + src = fetchurl { 7518 + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz"; 7519 + sha512 = "geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g=="; 7520 + }; 7521 + }; 7522 + "object-is-1.1.5" = { 7523 + name = "object-is"; 7524 + packageName = "object-is"; 7525 + version = "1.1.5"; 7373 7526 src = fetchurl { 7374 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"; 7375 - sha512 = "z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="; 7527 + url = "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz"; 7528 + sha512 = "3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw=="; 7376 7529 }; 7377 7530 }; 7378 7531 "object-keys-1.1.1" = { ··· 7483 7636 sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 7484 7637 }; 7485 7638 }; 7486 - "open-8.4.0" = { 7639 + "open-8.4.1" = { 7487 7640 name = "open"; 7488 7641 packageName = "open"; 7489 - version = "8.4.0"; 7642 + version = "8.4.1"; 7490 7643 src = fetchurl { 7491 - url = "https://registry.npmjs.org/open/-/open-8.4.0.tgz"; 7492 - sha512 = "XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q=="; 7644 + url = "https://registry.npmjs.org/open/-/open-8.4.1.tgz"; 7645 + sha512 = "/4b7qZNhv6Uhd7jjnREh1NjnPxlTq+XNWPG88Ydkj5AILcA5m3ajvcg57pB24EQjKv0dK62XnDqk9c/hkIG5Kg=="; 7493 7646 }; 7494 7647 }; 7495 7648 "optionator-0.8.3" = { ··· 7771 7924 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 7772 7925 }; 7773 7926 }; 7774 - "postcss-8.4.20" = { 7927 + "postcss-8.4.21" = { 7775 7928 name = "postcss"; 7776 7929 packageName = "postcss"; 7777 - version = "8.4.20"; 7930 + version = "8.4.21"; 7778 7931 src = fetchurl { 7779 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz"; 7780 - sha512 = "6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g=="; 7932 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz"; 7933 + sha512 = "tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg=="; 7781 7934 }; 7782 7935 }; 7783 7936 "postcss-attribute-case-insensitive-5.0.2" = { ··· 7843 7996 sha512 = "pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg=="; 7844 7997 }; 7845 7998 }; 7846 - "postcss-colormin-5.3.0" = { 7999 + "postcss-colormin-5.3.1" = { 7847 8000 name = "postcss-colormin"; 7848 8001 packageName = "postcss-colormin"; 7849 - version = "5.3.0"; 8002 + version = "5.3.1"; 7850 8003 src = fetchurl { 7851 - url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz"; 7852 - sha512 = "WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg=="; 8004 + url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz"; 8005 + sha512 = "UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ=="; 7853 8006 }; 7854 8007 }; 7855 8008 "postcss-convert-values-5.1.3" = { ··· 8023 8176 sha512 = "0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ=="; 8024 8177 }; 8025 8178 }; 8026 - "postcss-js-4.0.0" = { 8179 + "postcss-js-4.0.1" = { 8027 8180 name = "postcss-js"; 8028 8181 packageName = "postcss-js"; 8029 - version = "4.0.0"; 8182 + version = "4.0.1"; 8030 8183 src = fetchurl { 8031 - url = "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz"; 8032 - sha512 = "77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ=="; 8184 + url = "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz"; 8185 + sha512 = "dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw=="; 8033 8186 }; 8034 8187 }; 8035 8188 "postcss-lab-function-4.2.1" = { ··· 8086 8239 sha512 = "YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ=="; 8087 8240 }; 8088 8241 }; 8089 - "postcss-merge-rules-5.1.3" = { 8242 + "postcss-merge-rules-5.1.4" = { 8090 8243 name = "postcss-merge-rules"; 8091 8244 packageName = "postcss-merge-rules"; 8092 - version = "5.1.3"; 8245 + version = "5.1.4"; 8093 8246 src = fetchurl { 8094 - url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz"; 8095 - sha512 = "LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA=="; 8247 + url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz"; 8248 + sha512 = "0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g=="; 8096 8249 }; 8097 8250 }; 8098 8251 "postcss-minify-font-values-5.1.0" = { ··· 8338 8491 sha512 = "9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w=="; 8339 8492 }; 8340 8493 }; 8341 - "postcss-reduce-initial-5.1.1" = { 8494 + "postcss-reduce-initial-5.1.2" = { 8342 8495 name = "postcss-reduce-initial"; 8343 8496 packageName = "postcss-reduce-initial"; 8344 - version = "5.1.1"; 8497 + version = "5.1.2"; 8345 8498 src = fetchurl { 8346 - url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz"; 8347 - sha512 = "//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w=="; 8499 + url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz"; 8500 + sha512 = "dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg=="; 8348 8501 }; 8349 8502 }; 8350 8503 "postcss-reduce-transforms-5.1.0" = { ··· 8518 8671 sha512 = "E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="; 8519 8672 }; 8520 8673 }; 8521 - "punycode-2.1.1" = { 8674 + "punycode-2.3.0" = { 8522 8675 name = "punycode"; 8523 8676 packageName = "punycode"; 8524 - version = "2.1.1"; 8677 + version = "2.3.0"; 8525 8678 src = fetchurl { 8526 - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; 8527 - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 8679 + url = "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz"; 8680 + sha512 = "rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA=="; 8528 8681 }; 8529 8682 }; 8530 8683 "q-1.5.1" = { ··· 8707 8860 sha512 = "F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A=="; 8708 8861 }; 8709 8862 }; 8710 - "react-router-6.6.0" = { 8863 + "react-router-6.8.1" = { 8711 8864 name = "react-router"; 8712 8865 packageName = "react-router"; 8713 - version = "6.6.0"; 8866 + version = "6.8.1"; 8714 8867 src = fetchurl { 8715 - url = "https://registry.npmjs.org/react-router/-/react-router-6.6.0.tgz"; 8716 - sha512 = "+VPfCIaFbkW7BAiB/2oeprxKAt1KLbl+zXZ10CXOYezKWgBmTKyh8XjI53eLqY5kd7uY+V4rh3UW44FclwUU+Q=="; 8868 + url = "https://registry.npmjs.org/react-router/-/react-router-6.8.1.tgz"; 8869 + sha512 = "Jgi8BzAJQ8MkPt8ipXnR73rnD7EmZ0HFFb7jdQU24TynGW1Ooqin2KVDN9voSC+7xhqbbCd2cjGUepb6RObnyg=="; 8717 8870 }; 8718 8871 }; 8719 - "react-router-dom-6.6.0" = { 8872 + "react-router-dom-6.8.1" = { 8720 8873 name = "react-router-dom"; 8721 8874 packageName = "react-router-dom"; 8722 - version = "6.6.0"; 8875 + version = "6.8.1"; 8723 8876 src = fetchurl { 8724 - url = "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.6.0.tgz"; 8725 - sha512 = "qC4jnvpfCPKVle1mKLD75IvZLcbVJyFMlSn16WY9ZiOed3dgSmqhslCf/u3tmSccWOujkdsT/OwGq12bELmvjg=="; 8877 + url = "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.8.1.tgz"; 8878 + sha512 = "67EXNfkQgf34P7+PSb6VlBuaacGhkKn3kpE51+P6zYSG2kiRoumXEL6e27zTa9+PGF2MNXbgIUHTVlleLbIcHQ=="; 8726 8879 }; 8727 8880 }; 8728 8881 "react-scripts-5.0.1" = { ··· 8851 9004 sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; 8852 9005 }; 8853 9006 }; 8854 - "regexpu-core-5.2.2" = { 9007 + "regexpu-core-5.3.1" = { 8855 9008 name = "regexpu-core"; 8856 9009 packageName = "regexpu-core"; 8857 - version = "5.2.2"; 9010 + version = "5.3.1"; 8858 9011 src = fetchurl { 8859 - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz"; 8860 - sha512 = "T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw=="; 8861 - }; 8862 - }; 8863 - "regjsgen-0.7.1" = { 8864 - name = "regjsgen"; 8865 - packageName = "regjsgen"; 8866 - version = "0.7.1"; 8867 - src = fetchurl { 8868 - url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz"; 8869 - sha512 = "RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA=="; 9012 + url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.1.tgz"; 9013 + sha512 = "nCOzW2V/X15XpLsK2rlgdwrysrBq+AauCn+omItIz4R1pIcmeot5zvjdmOBRLzEH/CkC6IxMJVmxDe3QcMuNVQ=="; 8870 9014 }; 8871 9015 }; 8872 9016 "regjsparser-0.9.1" = { ··· 8977 9121 sha512 = "05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA=="; 8978 9122 }; 8979 9123 }; 8980 - "resolve.exports-1.1.0" = { 9124 + "resolve.exports-1.1.1" = { 8981 9125 name = "resolve.exports"; 8982 9126 packageName = "resolve.exports"; 8983 - version = "1.1.0"; 9127 + version = "1.1.1"; 8984 9128 src = fetchurl { 8985 - url = "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz"; 8986 - sha512 = "J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ=="; 9129 + url = "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz"; 9130 + sha512 = "/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ=="; 8987 9131 }; 8988 9132 }; 8989 9133 "retry-0.13.1" = { ··· 9211 9355 sha512 = "GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw=="; 9212 9356 }; 9213 9357 }; 9214 - "serialize-javascript-6.0.0" = { 9358 + "serialize-javascript-6.0.1" = { 9215 9359 name = "serialize-javascript"; 9216 9360 packageName = "serialize-javascript"; 9217 - version = "6.0.0"; 9361 + version = "6.0.1"; 9218 9362 src = fetchurl { 9219 - url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz"; 9220 - sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; 9363 + url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz"; 9364 + sha512 = "owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w=="; 9221 9365 }; 9222 9366 }; 9223 9367 "serve-index-1.9.1" = { ··· 9274 9418 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 9275 9419 }; 9276 9420 }; 9277 - "shell-quote-1.7.4" = { 9421 + "shell-quote-1.8.0" = { 9278 9422 name = "shell-quote"; 9279 9423 packageName = "shell-quote"; 9280 - version = "1.7.4"; 9424 + version = "1.8.0"; 9281 9425 src = fetchurl { 9282 - url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.4.tgz"; 9283 - sha512 = "8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw=="; 9426 + url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.0.tgz"; 9427 + sha512 = "QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ=="; 9284 9428 }; 9285 9429 }; 9286 9430 "side-channel-1.0.4" = { ··· 9526 9670 sha512 = "RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="; 9527 9671 }; 9528 9672 }; 9673 + "stop-iteration-iterator-1.0.0" = { 9674 + name = "stop-iteration-iterator"; 9675 + packageName = "stop-iteration-iterator"; 9676 + version = "1.0.0"; 9677 + src = fetchurl { 9678 + url = "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz"; 9679 + sha512 = "iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ=="; 9680 + }; 9681 + }; 9529 9682 "string-length-4.0.2" = { 9530 9683 name = "string-length"; 9531 9684 packageName = "string-length"; ··· 9596 9749 src = fetchurl { 9597 9750 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; 9598 9751 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 9599 - }; 9600 - }; 9601 - "string_decoder-1.3.0" = { 9602 - name = "string_decoder"; 9603 - packageName = "string_decoder"; 9604 - version = "1.3.0"; 9605 - src = fetchurl { 9606 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; 9607 - sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; 9608 9752 }; 9609 9753 }; 9610 9754 "stringify-object-3.3.0" = { ··· 9787 9931 sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="; 9788 9932 }; 9789 9933 }; 9790 - "tailwindcss-3.2.4" = { 9934 + "tailwindcss-3.2.7" = { 9791 9935 name = "tailwindcss"; 9792 9936 packageName = "tailwindcss"; 9793 - version = "3.2.4"; 9937 + version = "3.2.7"; 9794 9938 src = fetchurl { 9795 - url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz"; 9796 - sha512 = "AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ=="; 9939 + url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.7.tgz"; 9940 + sha512 = "B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ=="; 9797 9941 }; 9798 9942 }; 9799 9943 "tapable-1.1.3" = { ··· 9841 9985 sha512 = "un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ=="; 9842 9986 }; 9843 9987 }; 9844 - "terser-5.16.1" = { 9988 + "terser-5.16.4" = { 9845 9989 name = "terser"; 9846 9990 packageName = "terser"; 9847 - version = "5.16.1"; 9991 + version = "5.16.4"; 9848 9992 src = fetchurl { 9849 - url = "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz"; 9850 - sha512 = "xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw=="; 9993 + url = "https://registry.npmjs.org/terser/-/terser-5.16.4.tgz"; 9994 + sha512 = "5yEGuZ3DZradbogeYQ1NaGz7rXVBDWujWlx1PT8efXO6Txn+eWbfKqB2bTDVmFXmePFkoLU6XI8UektMIEA0ug=="; 9851 9995 }; 9852 9996 }; 9853 9997 "terser-webpack-plugin-5.3.6" = { ··· 9877 10021 sha512 = "N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="; 9878 10022 }; 9879 10023 }; 9880 - "throat-6.0.1" = { 10024 + "throat-6.0.2" = { 9881 10025 name = "throat"; 9882 10026 packageName = "throat"; 9883 - version = "6.0.1"; 10027 + version = "6.0.2"; 9884 10028 src = fetchurl { 9885 - url = "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz"; 9886 - sha512 = "8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w=="; 10029 + url = "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz"; 10030 + sha512 = "WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ=="; 9887 10031 }; 9888 10032 }; 9889 10033 "throttle-debounce-2.3.0" = { ··· 10003 10147 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 10004 10148 }; 10005 10149 }; 10006 - "tslib-2.4.1" = { 10150 + "tslib-2.5.0" = { 10007 10151 name = "tslib"; 10008 10152 packageName = "tslib"; 10009 - version = "2.4.1"; 10153 + version = "2.5.0"; 10010 10154 src = fetchurl { 10011 - url = "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz"; 10012 - sha512 = "tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA=="; 10155 + url = "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz"; 10156 + sha512 = "336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="; 10013 10157 }; 10014 10158 }; 10015 10159 "tsutils-3.21.0" = { ··· 10084 10228 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 10085 10229 }; 10086 10230 }; 10231 + "typed-array-length-1.0.4" = { 10232 + name = "typed-array-length"; 10233 + packageName = "typed-array-length"; 10234 + version = "1.0.4"; 10235 + src = fetchurl { 10236 + url = "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz"; 10237 + sha512 = "KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng=="; 10238 + }; 10239 + }; 10087 10240 "typedarray-to-buffer-3.1.5" = { 10088 10241 name = "typedarray-to-buffer"; 10089 10242 packageName = "typedarray-to-buffer"; ··· 10091 10244 src = fetchurl { 10092 10245 url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"; 10093 10246 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 10094 - }; 10095 - }; 10096 - "typescript-4.9.4" = { 10097 - name = "typescript"; 10098 - packageName = "typescript"; 10099 - version = "4.9.4"; 10100 - src = fetchurl { 10101 - url = "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz"; 10102 - sha512 = "Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg=="; 10103 10247 }; 10104 10248 }; 10105 10249 "unbox-primitive-1.0.2" = { ··· 10543 10687 sha512 = "bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="; 10544 10688 }; 10545 10689 }; 10690 + "which-collection-1.0.1" = { 10691 + name = "which-collection"; 10692 + packageName = "which-collection"; 10693 + version = "1.0.1"; 10694 + src = fetchurl { 10695 + url = "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz"; 10696 + sha512 = "W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A=="; 10697 + }; 10698 + }; 10699 + "which-typed-array-1.1.9" = { 10700 + name = "which-typed-array"; 10701 + packageName = "which-typed-array"; 10702 + version = "1.1.9"; 10703 + src = fetchurl { 10704 + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz"; 10705 + sha512 = "w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA=="; 10706 + }; 10707 + }; 10546 10708 "word-wrap-1.2.3" = { 10547 10709 name = "word-wrap"; 10548 10710 packageName = "word-wrap"; ··· 10741 10903 sha512 = "F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q=="; 10742 10904 }; 10743 10905 }; 10744 - "ws-8.11.0" = { 10906 + "ws-8.12.1" = { 10745 10907 name = "ws"; 10746 10908 packageName = "ws"; 10747 - version = "8.11.0"; 10909 + version = "8.12.1"; 10748 10910 src = fetchurl { 10749 - url = "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz"; 10750 - sha512 = "HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg=="; 10911 + url = "https://registry.npmjs.org/ws/-/ws-8.12.1.tgz"; 10912 + sha512 = "1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew=="; 10751 10913 }; 10752 10914 }; 10753 10915 "xml-name-validator-3.0.0" = { ··· 10848 11010 src = ./.; 10849 11011 dependencies = [ 10850 11012 sources."@ampproject/remapping-2.2.0" 11013 + sources."@apideck/better-ajv-errors-0.3.6" 10851 11014 sources."@babel/code-frame-7.18.6" 10852 - sources."@babel/compat-data-7.20.10" 10853 - sources."@babel/core-7.20.7" 11015 + sources."@babel/compat-data-7.20.14" 11016 + (sources."@babel/core-7.20.12" // { 11017 + dependencies = [ 11018 + sources."semver-6.3.0" 11019 + ]; 11020 + }) 10854 11021 (sources."@babel/eslint-parser-7.19.1" // { 10855 11022 dependencies = [ 10856 11023 sources."eslint-visitor-keys-2.1.0" 11024 + sources."semver-6.3.0" 10857 11025 ]; 10858 11026 }) 10859 - (sources."@babel/generator-7.20.7" // { 11027 + (sources."@babel/generator-7.20.14" // { 10860 11028 dependencies = [ 10861 11029 sources."@jridgewell/gen-mapping-0.3.2" 10862 11030 ]; 10863 11031 }) 10864 11032 sources."@babel/helper-annotate-as-pure-7.18.6" 10865 11033 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" 10866 - sources."@babel/helper-compilation-targets-7.20.7" 10867 - sources."@babel/helper-create-class-features-plugin-7.20.7" 11034 + (sources."@babel/helper-compilation-targets-7.20.7" // { 11035 + dependencies = [ 11036 + sources."semver-6.3.0" 11037 + ]; 11038 + }) 11039 + sources."@babel/helper-create-class-features-plugin-7.20.12" 10868 11040 sources."@babel/helper-create-regexp-features-plugin-7.20.5" 10869 - sources."@babel/helper-define-polyfill-provider-0.3.3" 11041 + (sources."@babel/helper-define-polyfill-provider-0.3.3" // { 11042 + dependencies = [ 11043 + sources."semver-6.3.0" 11044 + ]; 11045 + }) 10870 11046 sources."@babel/helper-environment-visitor-7.18.9" 10871 11047 sources."@babel/helper-explode-assignable-expression-7.18.6" 10872 11048 sources."@babel/helper-function-name-7.19.0" 10873 11049 sources."@babel/helper-hoist-variables-7.18.6" 10874 11050 sources."@babel/helper-member-expression-to-functions-7.20.7" 10875 11051 sources."@babel/helper-module-imports-7.18.6" 10876 - sources."@babel/helper-module-transforms-7.20.7" 11052 + sources."@babel/helper-module-transforms-7.20.11" 10877 11053 sources."@babel/helper-optimise-call-expression-7.18.6" 10878 11054 sources."@babel/helper-plugin-utils-7.20.2" 10879 11055 sources."@babel/helper-remap-async-to-generator-7.18.9" ··· 10885 11061 sources."@babel/helper-validator-identifier-7.19.1" 10886 11062 sources."@babel/helper-validator-option-7.18.6" 10887 11063 sources."@babel/helper-wrap-function-7.20.5" 10888 - sources."@babel/helpers-7.20.7" 11064 + sources."@babel/helpers-7.20.13" 10889 11065 sources."@babel/highlight-7.18.6" 10890 - sources."@babel/parser-7.20.7" 11066 + sources."@babel/parser-7.20.15" 10891 11067 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" 10892 11068 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7" 10893 11069 sources."@babel/plugin-proposal-async-generator-functions-7.20.7" 10894 11070 sources."@babel/plugin-proposal-class-properties-7.18.6" 10895 11071 sources."@babel/plugin-proposal-class-static-block-7.20.7" 10896 - sources."@babel/plugin-proposal-decorators-7.20.7" 11072 + sources."@babel/plugin-proposal-decorators-7.20.13" 10897 11073 sources."@babel/plugin-proposal-dynamic-import-7.18.6" 10898 11074 sources."@babel/plugin-proposal-export-namespace-from-7.18.9" 10899 11075 sources."@babel/plugin-proposal-json-strings-7.18.6" ··· 10930 11106 sources."@babel/plugin-transform-arrow-functions-7.20.7" 10931 11107 sources."@babel/plugin-transform-async-to-generator-7.20.7" 10932 11108 sources."@babel/plugin-transform-block-scoped-functions-7.18.6" 10933 - sources."@babel/plugin-transform-block-scoping-7.20.9" 11109 + sources."@babel/plugin-transform-block-scoping-7.20.15" 10934 11110 sources."@babel/plugin-transform-classes-7.20.7" 10935 11111 sources."@babel/plugin-transform-computed-properties-7.20.7" 10936 11112 sources."@babel/plugin-transform-destructuring-7.20.7" ··· 10942 11118 sources."@babel/plugin-transform-function-name-7.18.9" 10943 11119 sources."@babel/plugin-transform-literals-7.18.9" 10944 11120 sources."@babel/plugin-transform-member-expression-literals-7.18.6" 10945 - sources."@babel/plugin-transform-modules-amd-7.20.7" 10946 - sources."@babel/plugin-transform-modules-commonjs-7.20.7" 10947 - sources."@babel/plugin-transform-modules-systemjs-7.19.6" 11121 + sources."@babel/plugin-transform-modules-amd-7.20.11" 11122 + sources."@babel/plugin-transform-modules-commonjs-7.20.11" 11123 + sources."@babel/plugin-transform-modules-systemjs-7.20.11" 10948 11124 sources."@babel/plugin-transform-modules-umd-7.18.6" 10949 11125 sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" 10950 11126 sources."@babel/plugin-transform-new-target-7.18.6" ··· 10953 11129 sources."@babel/plugin-transform-property-literals-7.18.6" 10954 11130 sources."@babel/plugin-transform-react-constant-elements-7.20.2" 10955 11131 sources."@babel/plugin-transform-react-display-name-7.18.6" 10956 - sources."@babel/plugin-transform-react-jsx-7.20.7" 11132 + sources."@babel/plugin-transform-react-jsx-7.20.13" 10957 11133 sources."@babel/plugin-transform-react-jsx-development-7.18.6" 10958 11134 sources."@babel/plugin-transform-react-pure-annotations-7.18.6" 10959 11135 sources."@babel/plugin-transform-regenerator-7.20.5" 10960 11136 sources."@babel/plugin-transform-reserved-words-7.18.6" 10961 - sources."@babel/plugin-transform-runtime-7.19.6" 11137 + (sources."@babel/plugin-transform-runtime-7.19.6" // { 11138 + dependencies = [ 11139 + sources."semver-6.3.0" 11140 + ]; 11141 + }) 10962 11142 sources."@babel/plugin-transform-shorthand-properties-7.18.6" 10963 11143 sources."@babel/plugin-transform-spread-7.20.7" 10964 11144 sources."@babel/plugin-transform-sticky-regex-7.18.6" 10965 11145 sources."@babel/plugin-transform-template-literals-7.18.9" 10966 11146 sources."@babel/plugin-transform-typeof-symbol-7.18.9" 10967 - sources."@babel/plugin-transform-typescript-7.20.7" 11147 + sources."@babel/plugin-transform-typescript-7.20.13" 10968 11148 sources."@babel/plugin-transform-unicode-escapes-7.18.10" 10969 11149 sources."@babel/plugin-transform-unicode-regex-7.18.6" 10970 - sources."@babel/preset-env-7.20.2" 11150 + (sources."@babel/preset-env-7.20.2" // { 11151 + dependencies = [ 11152 + sources."semver-6.3.0" 11153 + ]; 11154 + }) 10971 11155 sources."@babel/preset-modules-0.1.5" 10972 11156 sources."@babel/preset-react-7.18.6" 10973 11157 sources."@babel/preset-typescript-7.18.6" 10974 - sources."@babel/runtime-7.20.7" 10975 - sources."@babel/runtime-corejs3-7.20.7" 11158 + sources."@babel/regjsgen-0.8.0" 11159 + sources."@babel/runtime-7.20.13" 10976 11160 sources."@babel/template-7.20.7" 10977 - sources."@babel/traverse-7.20.10" 11161 + sources."@babel/traverse-7.20.13" 10978 11162 sources."@babel/types-7.20.7" 10979 11163 sources."@bcoe/v8-coverage-0.2.3" 10980 11164 sources."@csstools/normalize.css-12.0.0" ··· 10992 11176 sources."@csstools/postcss-text-decoration-shorthand-1.0.0" 10993 11177 sources."@csstools/postcss-trigonometric-functions-1.0.2" 10994 11178 sources."@csstools/postcss-unset-value-1.0.2" 10995 - sources."@csstools/selector-specificity-2.0.2" 10996 - sources."@emotion/babel-plugin-11.10.5" 11179 + sources."@csstools/selector-specificity-2.1.1" 11180 + sources."@emotion/babel-plugin-11.10.6" 10997 11181 sources."@emotion/cache-11.10.5" 10998 11182 sources."@emotion/hash-0.9.0" 10999 11183 sources."@emotion/is-prop-valid-1.2.0" 11000 11184 sources."@emotion/memoize-0.8.0" 11001 - sources."@emotion/react-11.10.5" 11185 + sources."@emotion/react-11.10.6" 11002 11186 sources."@emotion/serialize-1.1.1" 11003 11187 sources."@emotion/sheet-1.2.1" 11004 - sources."@emotion/styled-11.10.5" 11188 + sources."@emotion/styled-11.10.6" 11005 11189 sources."@emotion/unitless-0.8.0" 11006 11190 sources."@emotion/use-insertion-effect-with-fallbacks-1.0.0" 11007 11191 sources."@emotion/utils-1.2.0" 11008 11192 sources."@emotion/weak-memoize-0.3.0" 11009 - (sources."@eslint/eslintrc-1.4.0" // { 11193 + (sources."@eslint/eslintrc-1.4.1" // { 11010 11194 dependencies = [ 11011 11195 sources."argparse-2.0.1" 11012 - sources."globals-13.19.0" 11196 + sources."globals-13.20.0" 11013 11197 sources."js-yaml-4.1.0" 11014 - sources."type-fest-0.20.2" 11015 11198 ]; 11016 11199 }) 11017 11200 sources."@humanwhocodes/config-array-0.11.8" ··· 11102 11285 sources."@jridgewell/sourcemap-codec-1.4.14" 11103 11286 sources."@jridgewell/trace-mapping-0.3.17" 11104 11287 sources."@leichtgewicht/ip-codec-2.0.4" 11105 - sources."@mui/base-5.0.0-alpha.111" 11106 - sources."@mui/core-downloads-tracker-5.11.1" 11107 - sources."@mui/icons-material-5.11.0" 11108 - sources."@mui/material-5.11.1" 11109 - sources."@mui/private-theming-5.11.1" 11110 - sources."@mui/styled-engine-5.11.0" 11111 - sources."@mui/system-5.11.1" 11288 + (sources."@mui/base-5.0.0-alpha.118" // { 11289 + dependencies = [ 11290 + sources."react-is-18.2.0" 11291 + ]; 11292 + }) 11293 + sources."@mui/core-downloads-tracker-5.11.9" 11294 + sources."@mui/icons-material-5.11.9" 11295 + (sources."@mui/material-5.11.9" // { 11296 + dependencies = [ 11297 + sources."react-is-18.2.0" 11298 + ]; 11299 + }) 11300 + sources."@mui/private-theming-5.11.9" 11301 + sources."@mui/styled-engine-5.11.9" 11302 + sources."@mui/system-5.11.9" 11112 11303 sources."@mui/types-7.2.3" 11113 - sources."@mui/utils-5.11.1" 11304 + (sources."@mui/utils-5.11.9" // { 11305 + dependencies = [ 11306 + sources."react-is-18.2.0" 11307 + ]; 11308 + }) 11114 11309 (sources."@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" // { 11115 11310 dependencies = [ 11116 11311 sources."eslint-scope-5.1.1" ··· 11126 11321 ]; 11127 11322 }) 11128 11323 sources."@popperjs/core-2.11.6" 11129 - sources."@remix-run/router-1.2.0" 11324 + sources."@remix-run/router-1.3.2" 11130 11325 sources."@rollup/plugin-babel-5.3.1" 11131 11326 sources."@rollup/plugin-node-resolve-11.2.1" 11132 11327 sources."@rollup/plugin-replace-2.4.2" ··· 11156 11351 sources."@svgr/webpack-5.5.0" 11157 11352 sources."@tootallnate/once-1.1.2" 11158 11353 sources."@trysound/sax-0.2.0" 11159 - sources."@types/babel__core-7.1.20" 11354 + sources."@types/babel__core-7.20.0" 11160 11355 sources."@types/babel__generator-7.6.4" 11161 11356 sources."@types/babel__template-7.4.1" 11162 11357 sources."@types/babel__traverse-7.18.3" ··· 11164 11359 sources."@types/bonjour-3.5.10" 11165 11360 sources."@types/connect-3.4.35" 11166 11361 sources."@types/connect-history-api-fallback-1.3.5" 11167 - sources."@types/eslint-8.4.10" 11362 + sources."@types/eslint-8.21.1" 11168 11363 sources."@types/eslint-scope-3.7.4" 11169 11364 sources."@types/estree-1.0.0" 11170 - sources."@types/express-4.17.15" 11171 - sources."@types/express-serve-static-core-4.17.31" 11172 - sources."@types/graceful-fs-4.1.5" 11365 + sources."@types/express-4.17.17" 11366 + sources."@types/express-serve-static-core-4.17.33" 11367 + sources."@types/graceful-fs-4.1.6" 11173 11368 sources."@types/html-minifier-terser-6.1.0" 11174 11369 sources."@types/http-proxy-1.17.9" 11175 11370 sources."@types/istanbul-lib-coverage-2.0.4" ··· 11178 11373 sources."@types/json-schema-7.0.11" 11179 11374 sources."@types/json5-0.0.29" 11180 11375 sources."@types/mime-3.0.1" 11181 - sources."@types/node-18.11.17" 11376 + sources."@types/node-18.14.0" 11182 11377 sources."@types/parse-json-4.0.0" 11183 11378 sources."@types/prettier-2.7.2" 11184 11379 sources."@types/prop-types-15.7.5" 11185 11380 sources."@types/q-1.5.5" 11186 11381 sources."@types/qs-6.9.7" 11187 11382 sources."@types/range-parser-1.2.4" 11188 - sources."@types/react-18.0.26" 11383 + sources."@types/react-18.0.28" 11189 11384 sources."@types/react-is-17.0.3" 11190 11385 sources."@types/react-transition-group-4.4.5" 11191 11386 sources."@types/resolve-1.17.1" ··· 11196 11391 sources."@types/serve-static-1.15.0" 11197 11392 sources."@types/sockjs-0.3.33" 11198 11393 sources."@types/stack-utils-2.0.1" 11199 - sources."@types/trusted-types-2.0.2" 11200 - sources."@types/ws-8.5.3" 11201 - sources."@types/yargs-16.0.4" 11394 + sources."@types/trusted-types-2.0.3" 11395 + sources."@types/ws-8.5.4" 11396 + sources."@types/yargs-16.0.5" 11202 11397 sources."@types/yargs-parser-21.0.0" 11203 - (sources."@typescript-eslint/eslint-plugin-5.47.0" // { 11204 - dependencies = [ 11205 - sources."lru-cache-6.0.0" 11206 - sources."semver-7.3.8" 11207 - sources."yallist-4.0.0" 11208 - ]; 11209 - }) 11210 - sources."@typescript-eslint/experimental-utils-5.47.0" 11211 - sources."@typescript-eslint/parser-5.47.0" 11212 - sources."@typescript-eslint/scope-manager-5.47.0" 11213 - sources."@typescript-eslint/type-utils-5.47.0" 11214 - sources."@typescript-eslint/types-5.47.0" 11215 - (sources."@typescript-eslint/typescript-estree-5.47.0" // { 11216 - dependencies = [ 11217 - sources."lru-cache-6.0.0" 11218 - sources."semver-7.3.8" 11219 - sources."yallist-4.0.0" 11220 - ]; 11221 - }) 11222 - (sources."@typescript-eslint/utils-5.47.0" // { 11398 + sources."@typescript-eslint/eslint-plugin-5.52.0" 11399 + sources."@typescript-eslint/experimental-utils-5.52.0" 11400 + sources."@typescript-eslint/parser-5.52.0" 11401 + sources."@typescript-eslint/scope-manager-5.52.0" 11402 + sources."@typescript-eslint/type-utils-5.52.0" 11403 + sources."@typescript-eslint/types-5.52.0" 11404 + sources."@typescript-eslint/typescript-estree-5.52.0" 11405 + (sources."@typescript-eslint/utils-5.52.0" // { 11223 11406 dependencies = [ 11224 11407 sources."eslint-scope-5.1.1" 11225 11408 sources."estraverse-4.3.0" 11226 - sources."lru-cache-6.0.0" 11227 - sources."semver-7.3.8" 11228 - sources."yallist-4.0.0" 11229 11409 ]; 11230 11410 }) 11231 - sources."@typescript-eslint/visitor-keys-5.47.0" 11411 + sources."@typescript-eslint/visitor-keys-5.52.0" 11232 11412 sources."@webassemblyjs/ast-1.11.1" 11233 11413 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 11234 11414 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 11248 11428 sources."@xtuc/long-4.2.2" 11249 11429 sources."abab-2.0.6" 11250 11430 sources."accepts-1.3.8" 11251 - sources."acorn-8.8.1" 11431 + sources."acorn-8.8.2" 11252 11432 (sources."acorn-globals-6.0.0" // { 11253 11433 dependencies = [ 11254 11434 sources."acorn-7.4.1" ··· 11268 11448 sources."ajv-6.12.6" 11269 11449 (sources."ajv-formats-2.1.1" // { 11270 11450 dependencies = [ 11271 - sources."ajv-8.11.2" 11451 + sources."ajv-8.12.0" 11272 11452 sources."json-schema-traverse-1.0.0" 11273 11453 ]; 11274 11454 }) 11275 11455 sources."ajv-keywords-3.5.2" 11276 - sources."ansi-escapes-4.3.2" 11456 + (sources."ansi-escapes-4.3.2" // { 11457 + dependencies = [ 11458 + sources."type-fest-0.21.3" 11459 + ]; 11460 + }) 11277 11461 sources."ansi-html-community-0.0.8" 11278 11462 sources."ansi-regex-5.0.1" 11279 11463 sources."ansi-styles-3.2.1" 11280 11464 sources."anymatch-3.1.3" 11281 11465 sources."arg-5.0.2" 11282 11466 sources."argparse-1.0.10" 11283 - sources."aria-query-4.2.2" 11467 + sources."aria-query-5.1.3" 11284 11468 sources."array-flatten-2.1.2" 11285 11469 sources."array-includes-3.1.6" 11286 11470 sources."array-union-2.1.0" ··· 11294 11478 sources."asynckit-0.4.0" 11295 11479 sources."at-least-node-1.0.0" 11296 11480 sources."autoprefixer-10.4.13" 11297 - sources."axe-core-4.6.1" 11298 - sources."axobject-query-2.2.0" 11481 + sources."available-typed-arrays-1.0.5" 11482 + sources."axe-core-4.6.3" 11483 + sources."axobject-query-3.1.1" 11299 11484 (sources."babel-jest-27.5.1" // { 11300 11485 dependencies = [ 11301 11486 sources."ansi-styles-4.3.0" ··· 11315 11500 sources."babel-plugin-jest-hoist-27.5.1" 11316 11501 sources."babel-plugin-macros-3.1.0" 11317 11502 sources."babel-plugin-named-asset-import-0.3.8" 11318 - sources."babel-plugin-polyfill-corejs2-0.3.3" 11503 + (sources."babel-plugin-polyfill-corejs2-0.3.3" // { 11504 + dependencies = [ 11505 + sources."semver-6.3.0" 11506 + ]; 11507 + }) 11319 11508 sources."babel-plugin-polyfill-corejs3-0.6.0" 11320 11509 sources."babel-plugin-polyfill-regenerator-0.4.1" 11321 11510 sources."babel-plugin-transform-react-remove-prop-types-0.4.24" ··· 11332 11521 dependencies = [ 11333 11522 sources."bytes-3.1.2" 11334 11523 sources."debug-2.6.9" 11335 - sources."iconv-lite-0.4.24" 11336 11524 sources."ms-2.0.0" 11337 11525 ]; 11338 11526 }) 11339 - sources."bonjour-service-1.0.14" 11527 + sources."bonjour-service-1.1.0" 11340 11528 sources."boolbase-1.0.0" 11341 11529 sources."brace-expansion-1.1.11" 11342 11530 sources."braces-3.0.2" 11343 11531 sources."browser-process-hrtime-1.0.0" 11344 - sources."browserslist-4.21.4" 11532 + sources."browserslist-4.21.5" 11345 11533 sources."bser-2.1.1" 11346 11534 sources."buffer-from-1.1.2" 11347 11535 sources."builtin-modules-3.3.0" 11348 11536 sources."bytes-3.0.0" 11349 11537 sources."call-bind-1.0.2" 11350 11538 sources."callsites-3.1.0" 11351 - sources."camel-case-4.1.2" 11539 + (sources."camel-case-4.1.2" // { 11540 + dependencies = [ 11541 + sources."tslib-2.5.0" 11542 + ]; 11543 + }) 11352 11544 sources."camelcase-6.3.0" 11353 11545 sources."camelcase-css-2.0.1" 11354 11546 sources."caniuse-api-3.0.0" 11355 - sources."caniuse-lite-1.0.30001441" 11547 + sources."caniuse-lite-1.0.30001456" 11356 11548 sources."case-sensitive-paths-webpack-plugin-2.4.0" 11357 11549 (sources."chalk-2.4.2" // { 11358 11550 dependencies = [ ··· 11367 11559 ]; 11368 11560 }) 11369 11561 sources."chrome-trace-event-1.0.3" 11370 - sources."ci-info-3.7.0" 11562 + sources."ci-info-3.8.0" 11371 11563 sources."cjs-module-lexer-1.2.2" 11372 - (sources."clean-css-5.3.1" // { 11564 + (sources."clean-css-5.3.2" // { 11373 11565 dependencies = [ 11374 11566 sources."source-map-0.6.1" 11375 11567 ]; ··· 11384 11576 sources."colord-2.9.3" 11385 11577 sources."colorette-2.0.19" 11386 11578 sources."combined-stream-1.0.8" 11387 - sources."commander-8.3.0" 11579 + sources."commander-7.2.0" 11388 11580 sources."common-path-prefix-3.0.0" 11389 11581 sources."common-tags-1.8.2" 11390 11582 sources."commondir-1.0.1" ··· 11400 11592 sources."confusing-browser-globals-1.0.11" 11401 11593 sources."connect-history-api-fallback-2.0.0" 11402 11594 sources."content-disposition-0.5.4" 11403 - sources."content-type-1.0.4" 11595 + sources."content-type-1.0.5" 11404 11596 sources."convert-source-map-1.9.0" 11405 11597 sources."cookie-0.5.0" 11406 11598 sources."cookie-signature-1.0.6" 11407 - sources."core-js-3.26.1" 11408 - sources."core-js-compat-3.26.1" 11409 - sources."core-js-pure-3.26.1" 11599 + sources."core-js-3.28.0" 11600 + sources."core-js-compat-3.28.0" 11601 + sources."core-js-pure-3.28.0" 11410 11602 sources."core-util-is-1.0.3" 11411 11603 sources."cosmiconfig-7.1.0" 11412 11604 sources."cross-fetch-3.1.5" ··· 11415 11607 sources."css-blank-pseudo-3.0.3" 11416 11608 sources."css-declaration-sorter-6.3.1" 11417 11609 sources."css-has-pseudo-3.0.4" 11418 - (sources."css-loader-6.7.3" // { 11419 - dependencies = [ 11420 - sources."lru-cache-6.0.0" 11421 - sources."semver-7.3.8" 11422 - sources."yallist-4.0.0" 11423 - ]; 11424 - }) 11610 + sources."css-loader-6.7.3" 11425 11611 (sources."css-minimizer-webpack-plugin-3.4.1" // { 11426 11612 dependencies = [ 11427 - sources."ajv-8.11.2" 11613 + sources."ajv-8.12.0" 11428 11614 sources."ajv-keywords-5.1.0" 11429 11615 sources."json-schema-traverse-1.0.0" 11430 11616 sources."schema-utils-4.0.0" ··· 11432 11618 ]; 11433 11619 }) 11434 11620 sources."css-prefers-color-scheme-6.0.3" 11435 - sources."css-select-4.3.0" 11621 + sources."css-select-2.1.0" 11436 11622 sources."css-select-base-adapter-0.1.1" 11437 11623 (sources."css-tree-1.0.0-alpha.37" // { 11438 11624 dependencies = [ 11439 11625 sources."source-map-0.6.1" 11440 11626 ]; 11441 11627 }) 11442 - sources."css-what-6.1.0" 11443 - sources."cssdb-7.2.0" 11628 + sources."css-what-3.4.2" 11629 + sources."cssdb-7.4.1" 11444 11630 sources."cssesc-3.0.0" 11445 - sources."cssnano-5.1.14" 11446 - sources."cssnano-preset-default-5.2.13" 11631 + sources."cssnano-5.1.15" 11632 + sources."cssnano-preset-default-5.2.14" 11447 11633 sources."cssnano-utils-3.1.0" 11448 11634 (sources."csso-4.2.0" // { 11449 11635 dependencies = [ ··· 11463 11649 (sources."data-urls-2.0.0" // { 11464 11650 dependencies = [ 11465 11651 sources."tr46-2.1.0" 11652 + sources."webidl-conversions-6.1.0" 11466 11653 sources."whatwg-url-8.7.0" 11467 11654 ]; 11468 11655 }) 11469 11656 sources."debug-4.3.4" 11470 11657 sources."decimal.js-10.4.3" 11471 11658 sources."dedent-0.7.0" 11659 + sources."deep-equal-2.2.0" 11472 11660 sources."deep-is-0.1.4" 11473 - sources."deepmerge-4.2.2" 11661 + sources."deepmerge-4.3.0" 11474 11662 sources."default-gateway-6.0.3" 11475 11663 sources."define-lazy-prop-2.0.0" 11476 - sources."define-properties-1.1.4" 11664 + sources."define-properties-1.2.0" 11477 11665 sources."defined-1.0.1" 11478 11666 sources."delayed-stream-1.0.0" 11479 11667 sources."depd-2.0.0" ··· 11487 11675 ]; 11488 11676 }) 11489 11677 sources."detective-5.2.1" 11490 - sources."dexie-3.2.2" 11678 + sources."dexie-3.2.3" 11491 11679 sources."dexie-react-hooks-1.1.1" 11492 11680 sources."didyoumean-1.2.2" 11493 11681 sources."diff-sequences-27.5.1" ··· 11498 11686 sources."doctrine-3.0.0" 11499 11687 sources."dom-converter-0.2.0" 11500 11688 sources."dom-helpers-5.2.1" 11501 - sources."dom-serializer-1.4.1" 11502 - sources."domelementtype-2.3.0" 11689 + (sources."dom-serializer-0.2.2" // { 11690 + dependencies = [ 11691 + sources."domelementtype-2.3.0" 11692 + ]; 11693 + }) 11694 + sources."domelementtype-1.3.1" 11503 11695 (sources."domexception-2.0.1" // { 11504 11696 dependencies = [ 11505 11697 sources."webidl-conversions-5.0.0" 11506 11698 ]; 11507 11699 }) 11508 - sources."domhandler-4.3.1" 11509 - sources."domutils-2.8.0" 11510 - sources."dot-case-3.0.4" 11700 + (sources."domhandler-4.3.1" // { 11701 + dependencies = [ 11702 + sources."domelementtype-2.3.0" 11703 + ]; 11704 + }) 11705 + sources."domutils-1.7.0" 11706 + (sources."dot-case-3.0.4" // { 11707 + dependencies = [ 11708 + sources."tslib-2.5.0" 11709 + ]; 11710 + }) 11511 11711 sources."dotenv-10.0.0" 11512 11712 sources."dotenv-expand-5.1.0" 11513 11713 sources."duplexer-0.1.2" 11514 11714 sources."ee-first-1.1.1" 11515 11715 sources."ejs-3.1.8" 11516 - sources."electron-to-chromium-1.4.284" 11716 + sources."electron-to-chromium-1.4.302" 11517 11717 sources."emittery-0.8.1" 11518 11718 sources."emoji-regex-9.2.2" 11519 11719 sources."emojis-list-3.0.0" ··· 11522 11722 sources."entities-2.2.0" 11523 11723 sources."error-ex-1.3.2" 11524 11724 sources."error-stack-parser-2.1.4" 11525 - sources."es-abstract-1.20.5" 11725 + sources."es-abstract-1.21.1" 11526 11726 sources."es-array-method-boxes-properly-1.0.0" 11727 + sources."es-get-iterator-1.1.3" 11527 11728 sources."es-module-lexer-0.9.3" 11729 + sources."es-set-tostringtag-2.0.1" 11528 11730 sources."es-shim-unscopables-1.0.0" 11529 11731 sources."es-to-primitive-1.2.1" 11530 11732 sources."escalade-3.1.1" ··· 11539 11741 sources."type-check-0.3.2" 11540 11742 ]; 11541 11743 }) 11542 - (sources."eslint-8.30.0" // { 11744 + (sources."eslint-8.34.0" // { 11543 11745 dependencies = [ 11544 11746 sources."ansi-styles-4.3.0" 11545 11747 sources."argparse-2.0.1" 11546 11748 sources."chalk-4.1.2" 11547 11749 sources."color-convert-2.0.1" 11548 11750 sources."color-name-1.1.4" 11549 - sources."globals-13.19.0" 11751 + sources."globals-13.20.0" 11550 11752 sources."has-flag-4.0.0" 11551 11753 sources."js-yaml-4.1.0" 11552 11754 sources."supports-color-7.2.0" 11553 - sources."type-fest-0.20.2" 11554 11755 ]; 11555 11756 }) 11556 11757 sources."eslint-config-react-app-7.0.1" 11557 - (sources."eslint-import-resolver-node-0.3.6" // { 11758 + (sources."eslint-import-resolver-node-0.3.7" // { 11558 11759 dependencies = [ 11559 11760 sources."debug-3.2.7" 11560 11761 ]; ··· 11565 11766 ]; 11566 11767 }) 11567 11768 sources."eslint-plugin-flowtype-8.0.3" 11568 - (sources."eslint-plugin-import-2.26.0" // { 11769 + (sources."eslint-plugin-import-2.27.5" // { 11569 11770 dependencies = [ 11570 - sources."debug-2.6.9" 11771 + sources."debug-3.2.7" 11571 11772 sources."doctrine-2.1.0" 11572 - sources."ms-2.0.0" 11773 + sources."semver-6.3.0" 11573 11774 ]; 11574 11775 }) 11575 11776 sources."eslint-plugin-jest-25.7.0" 11576 - sources."eslint-plugin-jsx-a11y-6.6.1" 11577 - (sources."eslint-plugin-react-7.31.11" // { 11777 + (sources."eslint-plugin-jsx-a11y-6.7.1" // { 11778 + dependencies = [ 11779 + sources."semver-6.3.0" 11780 + ]; 11781 + }) 11782 + (sources."eslint-plugin-react-7.32.2" // { 11578 11783 dependencies = [ 11579 11784 sources."doctrine-2.1.0" 11580 11785 sources."resolve-2.0.0-next.4" 11786 + sources."semver-6.3.0" 11581 11787 ]; 11582 11788 }) 11583 11789 sources."eslint-plugin-react-hooks-4.6.0" 11584 - sources."eslint-plugin-testing-library-5.9.1" 11790 + sources."eslint-plugin-testing-library-5.10.2" 11585 11791 sources."eslint-scope-7.1.1" 11586 11792 (sources."eslint-utils-3.0.0" // { 11587 11793 dependencies = [ ··· 11591 11797 sources."eslint-visitor-keys-3.3.0" 11592 11798 (sources."eslint-webpack-plugin-3.2.0" // { 11593 11799 dependencies = [ 11594 - sources."ajv-8.11.2" 11800 + sources."ajv-8.12.0" 11595 11801 sources."ajv-keywords-5.1.0" 11596 11802 sources."has-flag-4.0.0" 11597 11803 sources."jest-worker-28.1.3" ··· 11602 11808 }) 11603 11809 sources."espree-9.4.1" 11604 11810 sources."esprima-4.0.1" 11605 - sources."esquery-1.4.0" 11811 + sources."esquery-1.4.2" 11606 11812 sources."esrecurse-4.3.0" 11607 11813 sources."estraverse-5.3.0" 11608 11814 sources."estree-walker-1.0.1" ··· 11628 11834 }) 11629 11835 sources."fast-json-stable-stringify-2.1.0" 11630 11836 sources."fast-levenshtein-2.0.6" 11631 - sources."fastq-1.14.0" 11837 + sources."fastq-1.15.0" 11632 11838 sources."faye-websocket-0.11.4" 11633 11839 sources."fb-watchman-2.0.2" 11634 11840 sources."file-entry-cache-6.0.1" ··· 11636 11842 (sources."filelist-1.0.4" // { 11637 11843 dependencies = [ 11638 11844 sources."brace-expansion-2.0.1" 11639 - sources."minimatch-5.1.2" 11845 + sources."minimatch-5.1.6" 11640 11846 ]; 11641 11847 }) 11642 11848 sources."filesize-8.0.7" ··· 11653 11859 sources."flat-cache-3.0.4" 11654 11860 sources."flatted-3.2.7" 11655 11861 sources."follow-redirects-1.15.2" 11862 + sources."for-each-0.3.3" 11656 11863 (sources."fork-ts-checker-webpack-plugin-6.5.2" // { 11657 11864 dependencies = [ 11658 11865 sources."ansi-styles-4.3.0" ··· 11662 11869 sources."cosmiconfig-6.0.0" 11663 11870 sources."fs-extra-9.1.0" 11664 11871 sources."has-flag-4.0.0" 11665 - sources."lru-cache-6.0.0" 11666 11872 sources."schema-utils-2.7.0" 11667 - sources."semver-7.3.8" 11668 11873 sources."supports-color-7.2.0" 11669 11874 sources."tapable-1.1.3" 11670 - sources."yallist-4.0.0" 11671 11875 ]; 11672 11876 }) 11673 11877 sources."form-data-3.0.1" ··· 11683 11887 sources."functions-have-names-1.2.3" 11684 11888 sources."gensync-1.0.0-beta.2" 11685 11889 sources."get-caller-file-2.0.5" 11686 - sources."get-intrinsic-1.1.3" 11890 + sources."get-intrinsic-1.2.0" 11687 11891 sources."get-own-enumerable-property-symbols-3.0.2" 11688 11892 sources."get-package-type-0.1.0" 11689 11893 sources."get-stream-6.0.1" ··· 11698 11902 ]; 11699 11903 }) 11700 11904 sources."globals-11.12.0" 11905 + sources."globalthis-1.0.3" 11701 11906 sources."globby-11.1.0" 11702 11907 sources."gopd-1.0.1" 11703 11908 sources."graceful-fs-4.2.10" ··· 11709 11914 sources."has-bigints-1.0.2" 11710 11915 sources."has-flag-3.0.0" 11711 11916 sources."has-property-descriptors-1.0.0" 11917 + sources."has-proto-1.0.1" 11712 11918 sources."has-symbols-1.0.3" 11713 11919 sources."has-tostringtag-1.0.0" 11714 11920 sources."he-1.2.0" 11715 - (sources."hoist-non-react-statics-3.3.2" // { 11716 - dependencies = [ 11717 - sources."react-is-16.13.1" 11718 - ]; 11719 - }) 11921 + sources."hoist-non-react-statics-3.3.2" 11720 11922 sources."hoopy-0.1.4" 11721 11923 (sources."hpack.js-2.1.6" // { 11722 11924 dependencies = [ 11925 + sources."isarray-1.0.0" 11723 11926 sources."readable-stream-2.3.7" 11724 11927 sources."safe-buffer-5.1.2" 11725 - sources."string_decoder-1.1.1" 11726 11928 ]; 11727 11929 }) 11728 11930 sources."html-encoding-sniffer-2.0.1" 11729 11931 sources."html-entities-2.3.3" 11730 11932 sources."html-escaper-2.0.2" 11731 - sources."html-minifier-terser-6.1.0" 11933 + (sources."html-minifier-terser-6.1.0" // { 11934 + dependencies = [ 11935 + sources."commander-8.3.0" 11936 + ]; 11937 + }) 11732 11938 sources."html-parse-stringify-3.0.1" 11733 11939 sources."html-webpack-plugin-5.5.0" 11734 - sources."htmlparser2-6.1.0" 11940 + (sources."htmlparser2-6.1.0" // { 11941 + dependencies = [ 11942 + sources."dom-serializer-1.4.1" 11943 + sources."domelementtype-2.3.0" 11944 + sources."domutils-2.8.0" 11945 + ]; 11946 + }) 11735 11947 sources."http-deceiver-1.2.7" 11736 11948 sources."http-errors-2.0.0" 11737 11949 sources."http-parser-js-0.5.8" ··· 11740 11952 sources."http-proxy-middleware-2.0.6" 11741 11953 sources."https-proxy-agent-5.0.1" 11742 11954 sources."human-signals-2.1.0" 11955 + sources."humanize-duration-3.28.0" 11743 11956 sources."i18next-21.10.0" 11744 11957 sources."i18next-browser-languagedetector-6.1.8" 11745 11958 sources."i18next-http-backend-1.4.5" 11746 - sources."iconv-lite-0.6.3" 11959 + sources."iconv-lite-0.4.24" 11747 11960 sources."icss-utils-5.1.0" 11748 11961 sources."idb-7.1.1" 11749 11962 sources."identity-obj-proxy-3.0.0" 11750 11963 sources."ignore-5.2.4" 11751 - sources."immer-9.0.16" 11964 + sources."immer-9.0.19" 11752 11965 sources."import-fresh-3.3.0" 11753 11966 sources."import-local-3.1.0" 11754 11967 sources."imurmurhash-0.1.4" 11755 11968 sources."inflight-1.0.6" 11756 11969 sources."inherits-2.0.4" 11757 11970 sources."ini-1.3.8" 11758 - sources."internal-slot-1.0.4" 11971 + sources."internal-slot-1.0.5" 11759 11972 sources."ipaddr.js-2.0.1" 11973 + sources."is-arguments-1.1.1" 11974 + sources."is-array-buffer-3.0.1" 11760 11975 sources."is-arrayish-0.2.1" 11761 11976 sources."is-bigint-1.0.4" 11762 11977 sources."is-binary-path-2.1.0" ··· 11769 11984 sources."is-fullwidth-code-point-3.0.0" 11770 11985 sources."is-generator-fn-2.1.0" 11771 11986 sources."is-glob-4.0.3" 11987 + sources."is-map-2.0.2" 11772 11988 sources."is-module-1.0.0" 11773 11989 sources."is-negative-zero-2.0.2" 11774 11990 sources."is-number-7.0.0" ··· 11780 11996 sources."is-regex-1.1.4" 11781 11997 sources."is-regexp-1.0.0" 11782 11998 sources."is-root-2.1.0" 11999 + sources."is-set-2.0.2" 11783 12000 sources."is-shared-array-buffer-1.0.2" 11784 12001 sources."is-stream-2.0.1" 11785 12002 sources."is-string-1.0.7" 11786 12003 sources."is-symbol-1.0.4" 12004 + sources."is-typed-array-1.1.10" 11787 12005 sources."is-typedarray-1.0.0" 12006 + sources."is-weakmap-2.0.1" 11788 12007 sources."is-weakref-1.0.2" 12008 + sources."is-weakset-2.0.2" 11789 12009 sources."is-wsl-2.2.0" 11790 - sources."isarray-1.0.0" 12010 + sources."isarray-2.0.5" 11791 12011 sources."isexe-2.0.0" 11792 12012 sources."istanbul-lib-coverage-3.2.0" 11793 - sources."istanbul-lib-instrument-5.2.1" 12013 + (sources."istanbul-lib-instrument-5.2.1" // { 12014 + dependencies = [ 12015 + sources."semver-6.3.0" 12016 + ]; 12017 + }) 11794 12018 (sources."istanbul-lib-report-3.0.0" // { 11795 12019 dependencies = [ 11796 12020 sources."has-flag-4.0.0" ··· 11932 12156 sources."color-convert-2.0.1" 11933 12157 sources."color-name-1.1.4" 11934 12158 sources."has-flag-4.0.0" 12159 + sources."strip-bom-4.0.0" 11935 12160 sources."supports-color-7.2.0" 11936 12161 ]; 11937 12162 }) ··· 11943 12168 sources."color-convert-2.0.1" 11944 12169 sources."color-name-1.1.4" 11945 12170 sources."has-flag-4.0.0" 11946 - sources."lru-cache-6.0.0" 11947 - sources."semver-7.3.8" 11948 12171 sources."supports-color-7.2.0" 11949 - sources."yallist-4.0.0" 11950 12172 ]; 11951 12173 }) 11952 12174 (sources."jest-util-27.5.1" // { ··· 11978 12200 }) 11979 12201 sources."@jest/test-result-28.1.3" 11980 12202 sources."@jest/types-28.1.3" 11981 - sources."@types/yargs-17.0.17" 12203 + sources."@types/yargs-17.0.22" 12204 + sources."ansi-regex-6.0.1" 11982 12205 sources."ansi-styles-4.3.0" 11983 12206 sources."chalk-4.1.2" 12207 + sources."char-regex-2.0.1" 11984 12208 sources."color-convert-2.0.1" 11985 12209 sources."color-name-1.1.4" 11986 12210 sources."emittery-0.10.2" ··· 12003 12227 sources."ansi-styles-5.2.0" 12004 12228 ]; 12005 12229 }) 12230 + sources."react-is-18.2.0" 12006 12231 sources."slash-4.0.0" 12007 - (sources."string-length-5.0.1" // { 12008 - dependencies = [ 12009 - sources."char-regex-2.0.1" 12010 - ]; 12011 - }) 12012 - (sources."strip-ansi-7.0.1" // { 12013 - dependencies = [ 12014 - sources."ansi-regex-6.0.1" 12015 - ]; 12016 - }) 12232 + sources."string-length-5.0.1" 12233 + sources."strip-ansi-7.0.1" 12017 12234 sources."supports-color-7.2.0" 12018 12235 ]; 12019 12236 }) ··· 12033 12250 sources."supports-color-8.1.1" 12034 12251 ]; 12035 12252 }) 12036 - sources."js-base64-3.7.3" 12037 - sources."js-sdsl-4.2.0" 12253 + sources."js-base64-3.7.5" 12254 + sources."js-sdsl-4.3.0" 12038 12255 sources."js-tokens-4.0.0" 12039 12256 sources."js-yaml-3.14.1" 12040 12257 (sources."jsdom-16.7.0" // { 12041 12258 dependencies = [ 12042 12259 sources."tr46-2.1.0" 12260 + sources."webidl-conversions-6.1.0" 12043 12261 sources."whatwg-url-8.7.0" 12044 12262 ]; 12045 12263 }) ··· 12048 12266 sources."json-schema-0.4.0" 12049 12267 sources."json-schema-traverse-0.4.1" 12050 12268 sources."json-stable-stringify-without-jsonify-1.0.1" 12051 - sources."json5-2.2.2" 12269 + sources."json5-2.2.3" 12052 12270 sources."jsonfile-6.1.0" 12053 12271 sources."jsonpointer-5.0.1" 12054 12272 sources."jsx-ast-utils-3.3.3" 12055 12273 sources."kind-of-6.0.3" 12056 12274 sources."kleur-3.0.3" 12057 - sources."klona-2.0.5" 12275 + sources."klona-2.0.6" 12058 12276 sources."language-subtag-registry-0.3.22" 12059 - sources."language-tags-1.0.7" 12277 + sources."language-tags-1.0.5" 12060 12278 sources."leven-3.1.0" 12061 12279 sources."levn-0.4.1" 12062 12280 sources."lilconfig-2.0.6" ··· 12071 12289 sources."lodash.sortby-4.7.0" 12072 12290 sources."lodash.uniq-4.5.0" 12073 12291 sources."loose-envify-1.4.0" 12074 - sources."lower-case-2.0.2" 12292 + (sources."lower-case-2.0.2" // { 12293 + dependencies = [ 12294 + sources."tslib-2.5.0" 12295 + ]; 12296 + }) 12075 12297 sources."lru-cache-5.1.1" 12076 12298 sources."magic-string-0.25.9" 12077 - sources."make-dir-3.1.0" 12299 + (sources."make-dir-3.1.0" // { 12300 + dependencies = [ 12301 + sources."semver-6.3.0" 12302 + ]; 12303 + }) 12078 12304 sources."makeerror-1.0.12" 12079 12305 sources."mdn-data-2.0.4" 12080 12306 sources."media-typer-0.3.0" 12081 - sources."memfs-3.4.12" 12307 + sources."memfs-3.4.13" 12082 12308 sources."merge-descriptors-1.0.1" 12083 12309 sources."merge-stream-2.0.0" 12084 12310 sources."merge2-1.4.1" ··· 12090 12316 sources."mimic-fn-2.1.0" 12091 12317 (sources."mini-css-extract-plugin-2.7.2" // { 12092 12318 dependencies = [ 12093 - sources."ajv-8.11.2" 12319 + sources."ajv-8.12.0" 12094 12320 sources."ajv-keywords-5.1.0" 12095 12321 sources."json-schema-traverse-1.0.0" 12096 12322 sources."schema-utils-4.0.0" ··· 12098 12324 }) 12099 12325 sources."minimalistic-assert-1.0.1" 12100 12326 sources."minimatch-3.1.2" 12101 - sources."minimist-1.2.7" 12327 + sources."minimist-1.2.8" 12102 12328 sources."mkdirp-0.5.6" 12103 12329 sources."ms-2.1.2" 12104 12330 sources."multicast-dns-7.2.5" ··· 12107 12333 sources."natural-compare-lite-1.4.0" 12108 12334 sources."negotiator-0.6.3" 12109 12335 sources."neo-async-2.6.2" 12110 - sources."no-case-3.0.4" 12336 + (sources."no-case-3.0.4" // { 12337 + dependencies = [ 12338 + sources."tslib-2.5.0" 12339 + ]; 12340 + }) 12111 12341 sources."node-fetch-2.6.7" 12112 12342 sources."node-forge-1.3.1" 12113 12343 sources."node-int64-0.4.0" 12114 - sources."node-releases-2.0.8" 12344 + sources."node-releases-2.0.10" 12115 12345 sources."normalize-path-3.0.0" 12116 12346 sources."normalize-range-0.1.2" 12117 12347 sources."normalize-url-6.1.0" 12118 12348 sources."npm-run-path-4.0.1" 12119 - sources."nth-check-2.1.1" 12349 + sources."nth-check-1.0.2" 12120 12350 sources."nwsapi-2.2.2" 12121 12351 sources."object-assign-4.1.1" 12122 12352 sources."object-hash-3.0.0" 12123 - sources."object-inspect-1.12.2" 12353 + sources."object-inspect-1.12.3" 12354 + sources."object-is-1.1.5" 12124 12355 sources."object-keys-1.1.1" 12125 12356 sources."object.assign-4.1.4" 12126 12357 sources."object.entries-1.1.6" ··· 12133 12364 sources."on-headers-1.0.2" 12134 12365 sources."once-1.4.0" 12135 12366 sources."onetime-5.1.2" 12136 - sources."open-8.4.0" 12367 + sources."open-8.4.1" 12137 12368 sources."optionator-0.9.1" 12138 12369 sources."p-limit-3.1.0" 12139 12370 sources."p-locate-5.0.0" 12140 12371 sources."p-retry-4.6.2" 12141 12372 sources."p-try-2.2.0" 12142 - sources."param-case-3.0.4" 12373 + (sources."param-case-3.0.4" // { 12374 + dependencies = [ 12375 + sources."tslib-2.5.0" 12376 + ]; 12377 + }) 12143 12378 sources."parent-module-1.0.1" 12144 12379 sources."parse-json-5.2.0" 12145 12380 sources."parse5-6.0.1" 12146 12381 sources."parseurl-1.3.3" 12147 - sources."pascal-case-3.1.2" 12382 + (sources."pascal-case-3.1.2" // { 12383 + dependencies = [ 12384 + sources."tslib-2.5.0" 12385 + ]; 12386 + }) 12148 12387 sources."path-exists-4.0.0" 12149 12388 sources."path-is-absolute-1.0.1" 12150 12389 sources."path-key-3.1.1" ··· 12173 12412 sources."path-exists-3.0.0" 12174 12413 ]; 12175 12414 }) 12176 - sources."postcss-8.4.20" 12415 + sources."postcss-8.4.21" 12177 12416 sources."postcss-attribute-case-insensitive-5.0.2" 12178 12417 sources."postcss-browser-comments-4.0.0" 12179 12418 sources."postcss-calc-8.2.4" ··· 12181 12420 sources."postcss-color-functional-notation-4.2.4" 12182 12421 sources."postcss-color-hex-alpha-8.0.4" 12183 12422 sources."postcss-color-rebeccapurple-7.1.1" 12184 - sources."postcss-colormin-5.3.0" 12423 + sources."postcss-colormin-5.3.1" 12185 12424 sources."postcss-convert-values-5.1.3" 12186 12425 sources."postcss-custom-media-8.0.2" 12187 12426 sources."postcss-custom-properties-12.1.11" ··· 12201 12440 sources."postcss-image-set-function-4.0.7" 12202 12441 sources."postcss-import-14.1.0" 12203 12442 sources."postcss-initial-4.0.1" 12204 - sources."postcss-js-4.0.0" 12443 + sources."postcss-js-4.0.1" 12205 12444 sources."postcss-lab-function-4.2.1" 12206 12445 sources."postcss-load-config-3.1.4" 12207 - (sources."postcss-loader-6.2.1" // { 12208 - dependencies = [ 12209 - sources."lru-cache-6.0.0" 12210 - sources."semver-7.3.8" 12211 - sources."yallist-4.0.0" 12212 - ]; 12213 - }) 12446 + sources."postcss-loader-6.2.1" 12214 12447 sources."postcss-logical-5.0.4" 12215 12448 sources."postcss-media-minmax-5.0.0" 12216 12449 sources."postcss-merge-longhand-5.1.7" 12217 - sources."postcss-merge-rules-5.1.3" 12450 + sources."postcss-merge-rules-5.1.4" 12218 12451 sources."postcss-minify-font-values-5.1.0" 12219 12452 sources."postcss-minify-gradients-5.1.1" 12220 12453 sources."postcss-minify-params-5.1.4" ··· 12242 12475 sources."postcss-place-7.0.5" 12243 12476 sources."postcss-preset-env-7.8.3" 12244 12477 sources."postcss-pseudo-class-any-link-7.1.6" 12245 - sources."postcss-reduce-initial-5.1.1" 12478 + sources."postcss-reduce-initial-5.1.2" 12246 12479 sources."postcss-reduce-transforms-5.1.0" 12247 12480 sources."postcss-replace-overflow-wrap-4.0.0" 12248 12481 sources."postcss-selector-not-6.0.1" 12249 12482 sources."postcss-selector-parser-6.0.11" 12250 12483 (sources."postcss-svgo-5.1.0" // { 12251 12484 dependencies = [ 12252 - sources."commander-7.2.0" 12485 + sources."css-select-4.3.0" 12253 12486 sources."css-tree-1.1.3" 12487 + sources."css-what-6.1.0" 12488 + sources."dom-serializer-1.4.1" 12489 + sources."domelementtype-2.3.0" 12490 + sources."domutils-2.8.0" 12254 12491 sources."mdn-data-2.0.14" 12492 + sources."nth-check-2.1.1" 12255 12493 sources."source-map-0.6.1" 12256 12494 sources."svgo-2.8.0" 12257 12495 ]; ··· 12270 12508 sources."process-nextick-args-2.0.1" 12271 12509 sources."promise-8.3.0" 12272 12510 sources."prompts-2.4.2" 12273 - (sources."prop-types-15.8.1" // { 12274 - dependencies = [ 12275 - sources."react-is-16.13.1" 12276 - ]; 12277 - }) 12511 + sources."prop-types-15.8.1" 12278 12512 (sources."proxy-addr-2.0.7" // { 12279 12513 dependencies = [ 12280 12514 sources."ipaddr.js-1.9.1" 12281 12515 ]; 12282 12516 }) 12283 12517 sources."psl-1.9.0" 12284 - sources."punycode-2.1.1" 12518 + sources."punycode-2.3.0" 12285 12519 sources."q-1.5.1" 12286 12520 sources."qs-6.11.0" 12287 12521 sources."querystringify-2.2.0" ··· 12293 12527 (sources."raw-body-2.5.1" // { 12294 12528 dependencies = [ 12295 12529 sources."bytes-3.1.2" 12296 - sources."iconv-lite-0.4.24" 12297 12530 ]; 12298 12531 }) 12299 12532 sources."react-18.2.0" ··· 12313 12546 sources."react-error-overlay-6.0.11" 12314 12547 sources."react-i18next-11.18.6" 12315 12548 sources."react-infinite-scroll-component-6.1.0" 12316 - sources."react-is-18.2.0" 12549 + sources."react-is-16.13.1" 12317 12550 sources."react-refresh-0.11.0" 12318 - sources."react-router-6.6.0" 12319 - sources."react-router-dom-6.6.0" 12320 - (sources."react-scripts-5.0.1" // { 12321 - dependencies = [ 12322 - sources."lru-cache-6.0.0" 12323 - sources."semver-7.3.8" 12324 - sources."yallist-4.0.0" 12325 - ]; 12326 - }) 12551 + sources."react-router-6.8.1" 12552 + sources."react-router-dom-6.8.1" 12553 + sources."react-scripts-5.0.1" 12327 12554 sources."react-transition-group-4.4.5" 12328 12555 sources."read-cache-1.0.0" 12329 12556 sources."readable-stream-3.6.0" ··· 12336 12563 sources."regex-parser-2.2.11" 12337 12564 sources."regexp.prototype.flags-1.4.3" 12338 12565 sources."regexpp-3.2.0" 12339 - sources."regexpu-core-5.2.2" 12340 - sources."regjsgen-0.7.1" 12566 + sources."regexpu-core-5.3.1" 12341 12567 (sources."regjsparser-0.9.1" // { 12342 12568 dependencies = [ 12343 12569 sources."jsesc-0.5.0" 12344 12570 ]; 12345 12571 }) 12346 12572 sources."relateurl-0.2.7" 12347 - sources."renderkid-3.0.0" 12573 + (sources."renderkid-3.0.0" // { 12574 + dependencies = [ 12575 + sources."css-select-4.3.0" 12576 + sources."css-what-6.1.0" 12577 + sources."dom-serializer-1.4.1" 12578 + sources."domelementtype-2.3.0" 12579 + sources."domutils-2.8.0" 12580 + sources."nth-check-2.1.1" 12581 + ]; 12582 + }) 12348 12583 sources."require-directory-2.1.1" 12349 12584 sources."require-from-string-2.0.2" 12350 12585 sources."requires-port-1.0.0" ··· 12362 12597 sources."source-map-0.6.1" 12363 12598 ]; 12364 12599 }) 12365 - sources."resolve.exports-1.1.0" 12600 + sources."resolve.exports-1.1.1" 12366 12601 sources."retry-0.13.1" 12367 12602 sources."reusify-1.0.4" 12368 12603 sources."rimraf-3.0.2" ··· 12387 12622 sources."schema-utils-3.1.1" 12388 12623 sources."select-hose-2.0.0" 12389 12624 sources."selfsigned-2.1.1" 12390 - sources."semver-6.3.0" 12625 + (sources."semver-7.3.8" // { 12626 + dependencies = [ 12627 + sources."lru-cache-6.0.0" 12628 + sources."yallist-4.0.0" 12629 + ]; 12630 + }) 12391 12631 (sources."send-0.18.0" // { 12392 12632 dependencies = [ 12393 12633 (sources."debug-2.6.9" // { ··· 12398 12638 sources."ms-2.1.3" 12399 12639 ]; 12400 12640 }) 12401 - sources."serialize-javascript-6.0.0" 12641 + sources."serialize-javascript-6.0.1" 12402 12642 (sources."serve-index-1.9.1" // { 12403 12643 dependencies = [ 12404 12644 sources."debug-2.6.9" ··· 12414 12654 sources."setprototypeof-1.2.0" 12415 12655 sources."shebang-command-2.0.0" 12416 12656 sources."shebang-regex-3.0.0" 12417 - sources."shell-quote-1.7.4" 12657 + sources."shell-quote-1.8.0" 12418 12658 sources."side-channel-1.0.4" 12419 12659 sources."signal-exit-3.0.7" 12420 12660 sources."sisteransi-1.0.5" ··· 12423 12663 sources."source-list-map-2.0.1" 12424 12664 sources."source-map-0.5.7" 12425 12665 sources."source-map-js-1.0.2" 12426 - sources."source-map-loader-3.0.2" 12666 + (sources."source-map-loader-3.0.2" // { 12667 + dependencies = [ 12668 + sources."iconv-lite-0.6.3" 12669 + ]; 12670 + }) 12427 12671 (sources."source-map-support-0.5.21" // { 12428 12672 dependencies = [ 12429 12673 sources."source-map-0.6.1" ··· 12448 12692 }) 12449 12693 sources."stacktrace-js-2.0.2" 12450 12694 sources."statuses-2.0.1" 12695 + sources."stop-iteration-iterator-1.0.0" 12451 12696 sources."string-length-4.0.2" 12452 12697 sources."string-natural-compare-3.0.1" 12453 12698 (sources."string-width-4.2.3" // { ··· 12458 12703 sources."string.prototype.matchall-4.0.8" 12459 12704 sources."string.prototype.trimend-1.0.6" 12460 12705 sources."string.prototype.trimstart-1.0.6" 12461 - sources."string_decoder-1.3.0" 12706 + (sources."string_decoder-1.1.1" // { 12707 + dependencies = [ 12708 + sources."safe-buffer-5.1.2" 12709 + ]; 12710 + }) 12462 12711 sources."stringify-object-3.3.0" 12463 12712 sources."strip-ansi-6.0.1" 12464 - sources."strip-bom-4.0.0" 12713 + sources."strip-bom-3.0.0" 12465 12714 sources."strip-comments-2.0.1" 12466 12715 sources."strip-final-newline-2.0.0" 12467 12716 sources."strip-json-comments-3.1.1" ··· 12477 12726 }) 12478 12727 sources."supports-preserve-symlinks-flag-1.0.0" 12479 12728 sources."svg-parser-2.0.4" 12480 - (sources."svgo-1.3.2" // { 12481 - dependencies = [ 12482 - sources."css-select-2.1.0" 12483 - sources."css-what-3.4.2" 12484 - sources."dom-serializer-0.2.2" 12485 - (sources."domutils-1.7.0" // { 12486 - dependencies = [ 12487 - sources."domelementtype-1.3.1" 12488 - ]; 12489 - }) 12490 - sources."nth-check-1.0.2" 12491 - ]; 12492 - }) 12729 + sources."svgo-1.3.2" 12493 12730 sources."symbol-tree-3.2.4" 12494 - (sources."tailwindcss-3.2.4" // { 12731 + (sources."tailwindcss-3.2.7" // { 12495 12732 dependencies = [ 12496 12733 sources."color-name-1.1.4" 12497 12734 ]; ··· 12504 12741 ]; 12505 12742 }) 12506 12743 sources."terminal-link-2.1.1" 12507 - (sources."terser-5.16.1" // { 12744 + (sources."terser-5.16.4" // { 12508 12745 dependencies = [ 12509 12746 sources."commander-2.20.3" 12510 12747 ]; ··· 12512 12749 sources."terser-webpack-plugin-5.3.6" 12513 12750 sources."test-exclude-6.0.0" 12514 12751 sources."text-table-0.2.0" 12515 - sources."throat-6.0.1" 12752 + sources."throat-6.0.2" 12516 12753 sources."throttle-debounce-2.3.0" 12517 12754 sources."thunky-1.1.0" 12518 12755 sources."tmpl-1.0.5" ··· 12528 12765 sources."tryer-1.0.1" 12529 12766 (sources."tsconfig-paths-3.14.1" // { 12530 12767 dependencies = [ 12531 - sources."json5-1.0.1" 12532 - sources."strip-bom-3.0.0" 12768 + sources."json5-1.0.2" 12533 12769 ]; 12534 12770 }) 12535 - sources."tslib-2.4.1" 12536 - (sources."tsutils-3.21.0" // { 12537 - dependencies = [ 12538 - sources."tslib-1.14.1" 12539 - ]; 12540 - }) 12771 + sources."tslib-1.14.1" 12772 + sources."tsutils-3.21.0" 12541 12773 sources."type-check-0.4.0" 12542 12774 sources."type-detect-4.0.8" 12543 - sources."type-fest-0.21.3" 12775 + sources."type-fest-0.20.2" 12544 12776 sources."type-is-1.6.18" 12777 + sources."typed-array-length-1.0.4" 12545 12778 sources."typedarray-to-buffer-3.1.5" 12546 - sources."typescript-4.9.4" 12547 12779 sources."unbox-primitive-1.0.2" 12548 12780 sources."unicode-canonical-property-names-ecmascript-2.0.0" 12549 12781 sources."unicode-match-property-ecmascript-2.0.0" ··· 12574 12806 sources."walker-1.0.8" 12575 12807 sources."watchpack-2.4.0" 12576 12808 sources."wbuf-1.7.3" 12577 - sources."webidl-conversions-6.1.0" 12809 + sources."webidl-conversions-3.0.1" 12578 12810 (sources."webpack-5.75.0" // { 12579 12811 dependencies = [ 12580 12812 sources."@types/estree-0.0.51" ··· 12584 12816 }) 12585 12817 (sources."webpack-dev-middleware-5.3.3" // { 12586 12818 dependencies = [ 12587 - sources."ajv-8.11.2" 12819 + sources."ajv-8.12.0" 12588 12820 sources."ajv-keywords-5.1.0" 12589 12821 sources."json-schema-traverse-1.0.0" 12590 12822 sources."schema-utils-4.0.0" ··· 12592 12824 }) 12593 12825 (sources."webpack-dev-server-4.11.1" // { 12594 12826 dependencies = [ 12595 - sources."ajv-8.11.2" 12827 + sources."ajv-8.12.0" 12596 12828 sources."ajv-keywords-5.1.0" 12597 12829 sources."json-schema-traverse-1.0.0" 12598 12830 sources."schema-utils-4.0.0" 12599 - sources."ws-8.11.0" 12831 + sources."ws-8.12.1" 12600 12832 ]; 12601 12833 }) 12602 12834 (sources."webpack-manifest-plugin-4.1.1" // { ··· 12608 12840 sources."webpack-sources-3.2.3" 12609 12841 sources."websocket-driver-0.7.4" 12610 12842 sources."websocket-extensions-0.1.4" 12611 - (sources."whatwg-encoding-1.0.5" // { 12612 - dependencies = [ 12613 - sources."iconv-lite-0.4.24" 12614 - ]; 12615 - }) 12843 + sources."whatwg-encoding-1.0.5" 12616 12844 sources."whatwg-fetch-3.6.2" 12617 12845 sources."whatwg-mimetype-2.3.0" 12618 - (sources."whatwg-url-5.0.0" // { 12619 - dependencies = [ 12620 - sources."webidl-conversions-3.0.1" 12621 - ]; 12622 - }) 12846 + sources."whatwg-url-5.0.0" 12623 12847 sources."which-2.0.2" 12624 12848 sources."which-boxed-primitive-1.0.2" 12849 + sources."which-collection-1.0.1" 12850 + sources."which-typed-array-1.1.9" 12625 12851 sources."word-wrap-1.2.3" 12626 12852 sources."workbox-background-sync-6.5.4" 12627 12853 sources."workbox-broadcast-update-6.5.4" 12628 12854 (sources."workbox-build-6.5.4" // { 12629 12855 dependencies = [ 12630 - sources."@apideck/better-ajv-errors-0.3.6" 12631 - sources."ajv-8.11.2" 12856 + sources."ajv-8.12.0" 12632 12857 sources."fs-extra-9.1.0" 12633 12858 sources."json-schema-traverse-1.0.0" 12634 12859 sources."source-map-0.8.0-beta.0" ··· 12681 12906 }; 12682 12907 production = false; 12683 12908 bypassCache = true; 12684 - reconstructLock = false; 12909 + reconstructLock = true; 12685 12910 }; 12686 12911 in 12687 12912 {
+1
pkgs/tools/misc/ntfy-sh/package.json
··· 15 15 "@mui/material": "latest", 16 16 "dexie": "^3.2.1", 17 17 "dexie-react-hooks": "^1.1.1", 18 + "humanize-duration": "^3.27.3", 18 19 "i18next": "^21.6.14", 19 20 "i18next-browser-languagedetector": "^6.1.4", 20 21 "i18next-http-backend": "^1.4.0",
+25
pkgs/tools/security/mfoc-hardnested/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libnfc, xz }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "mfoc-hardnested"; 5 + version = "unstable-2021-08-14"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "nfc-tools"; 9 + repo = pname; 10 + rev = "2c25bf05a0b13827b9d06382c5d384b2e5c88238"; 11 + hash = "sha256-fhfevQCw0E5TorHx61Vltpmv7DAjgH73i27O7aBKxz4="; 12 + }; 13 + 14 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 + buildInputs = [ libnfc xz ]; 16 + 17 + meta = with lib; { 18 + description = "A fork of mfoc integrating hardnested code from the proxmark"; 19 + license = licenses.gpl2; 20 + homepage = "https://github.com/nfc-tools/mfoc-hardnested"; 21 + maintainers = with maintainers; [ azuwis ]; 22 + platforms = platforms.unix; 23 + broken = (stdenv.isDarwin && stdenv.isAarch64); # Undefined symbols "_memalign" referenced 24 + }; 25 + }
+28 -5
pkgs/top-level/all-packages.nix
··· 9778 9778 9779 9779 mfoc = callPackage ../tools/security/mfoc { }; 9780 9780 9781 + mfoc-hardnested = callPackage ../tools/security/mfoc-hardnested { }; 9782 + 9781 9783 microbin = callPackage ../servers/microbin { }; 9782 9784 9783 9785 microdnf = callPackage ../tools/package-management/microdnf { }; ··· 19387 19389 19388 19390 uci = callPackage ../development/libraries/uci { }; 19389 19391 19392 + uclient = callPackage ../development/libraries/uclient { }; 19393 + 19394 + ustream-ssl = callPackage ../development/libraries/ustream-ssl { ssl_implementation = openssl; }; 19395 + 19396 + ustream-ssl-wolfssl = callPackage ../development/libraries/ustream-ssl { ssl_implementation = wolfssl; }; 19397 + 19398 + ustream-ssl-mbedtls = callPackage ../development/libraries/ustream-ssl { ssl_implementation = mbedtls_2; }; 19399 + 19390 19400 uri = callPackage ../development/libraries/uri { stdenv = gcc10StdenvCompat; }; 19391 19401 19392 19402 cppcms = callPackage ../development/libraries/cppcms { }; ··· 21831 21841 21832 21842 libu2f-server = callPackage ../development/libraries/libu2f-server { }; 21833 21843 21834 - libubox = callPackage ../development/libraries/libubox { }; 21844 + libubox-nossl = callPackage ../development/libraries/libubox { }; 21845 + 21846 + libubox = callPackage ../development/libraries/libubox { with_ustream_ssl = true; }; 21847 + 21848 + libubox-wolfssl = callPackage ../development/libraries/libubox { with_ustream_ssl = true; ustream-ssl = ustream-ssl-wolfssl; }; 21849 + 21850 + libubox-mbedtls = callPackage ../development/libraries/libubox { with_ustream_ssl = true; ustream-ssl = ustream-ssl-mbedtls; }; 21835 21851 21836 21852 libudev-zero = callPackage ../development/libraries/libudev-zero { }; 21837 21853 ··· 23538 23554 23539 23555 theft = callPackage ../development/libraries/theft { }; 23540 23556 23541 - thrift = callPackage ../development/libraries/thrift { 23542 - openssl = openssl_1_1; 23543 - }; 23557 + thrift = callPackage ../development/libraries/thrift { }; 23544 23558 23545 23559 thrift-0_10 = callPackage ../development/libraries/thrift/0.10.nix { }; 23546 23560 ··· 26010 26024 libkrunfw = callPackage ../development/libraries/libkrunfw { }; 26011 26025 26012 26026 libnl = callPackage ../os-specific/linux/libnl { }; 26027 + 26028 + libnl-tiny = callPackage ../os-specific/linux/libnl-tiny { }; 26013 26029 26014 26030 libtraceevent = callPackage ../os-specific/linux/libtraceevent {}; 26015 26031 ··· 29285 29301 29286 29302 keepassx = callPackage ../applications/misc/keepassx { }; 29287 29303 keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { }; 29288 - keepassxc = libsForQt5.callPackage ../applications/misc/keepassx/community.nix { }; 29304 + keepassxc = libsForQt5.callPackage ../applications/misc/keepassx/community.nix { 29305 + inherit (darwin.apple_sdk_11_0.frameworks) LocalAuthentication; 29306 + stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; 29307 + }; 29289 29308 29290 29309 keepass-diff = callPackage ../applications/misc/keepass-diff { }; 29291 29310 ··· 31974 31993 nedit = callPackage ../applications/editors/nedit { }; 31975 31994 31976 31995 ngt = callPackage ../development/libraries/ngt { }; 31996 + 31997 + nchat = callPackage ../applications/networking/instant-messengers/nchat { 31998 + inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Foundation; 31999 + }; 31977 32000 31978 32001 nheko = libsForQt5.callPackage ../applications/networking/instant-messengers/nheko { 31979 32002 # https://github.com/NixOS/nixpkgs/issues/201254