From d278fd78af3cc0c9ccbff0ca9fbc37edb55fe97f Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Tue, 4 Jul 2023 13:09:27 -0700 Subject: [PATCH 01/17] lib.systems.extensions.sharedLibrary: do not `throw` Because downstream code expects to use `==` on platform attrsets, we are unfortunately not able to throw a useful error message when the `sharedLibrary` attribute is accessed. When users do a comparison like: stdenv.hostPlatform == pkgsStatic.stdenv.hostPlatform ... in a situation where `stdenv.hostPlatform.hasSharedLibraries`, they expect this to return `false`. Unfortunately Nix does a deep equality comparison here, and ends up forcing the `pkgsStatic.stdenv.hostPlatform.extensions.sharedLibrary` attribute, which throws the error. Rather than returning `null`, this commit instead simply omits the `extensions.sharedLibrary` attribute. This provides the user with a more-useful error message: instead of waiting until the `null` is used (and hoping that produces an error), the user will get an error about the `extensions.sharedLibrary` attribute being missing, at the position where it was referenced. Big thanks to @trofi for his PR to add `NIX_VALIDATE_EVAL_NONDETERMINISM` to Nix, which I am now using. It made tracking this down really easy! Fixes #244045 --- lib/systems/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/systems/default.nix b/lib/systems/default.nix index a3462d2d424..40a2c88f32b 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -85,17 +85,18 @@ rec { # is why we use the more obscure "bfd" and not "binutils" for this # choice. else "bfd"; - extensions = rec { - sharedLibrary = assert final.hasSharedLibraries; - /**/ if final.isDarwin then ".dylib" + extensions = lib.optionalAttrs final.hasSharedLibraries { + sharedLibrary = + if final.isDarwin then ".dylib" else if final.isWindows then ".dll" else ".so"; + } // { staticLibrary = /**/ if final.isWindows then ".lib" else ".a"; library = - /**/ if final.isStatic then staticLibrary - else sharedLibrary; + /**/ if final.isStatic then final.extensions.staticLibrary + else final.extensions.sharedLibrary; executable = /**/ if final.isWindows then ".exe" else ""; From 15f3926baa32c4eb7b73d6b25c9d4de40358d0f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 5 Jul 2023 09:31:59 +0200 Subject: [PATCH 02/17] gdc: switch to gdc11 for now That way it will at least evaluate and build. Fixes #241341 --- pkgs/top-level/all-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a8687892e8c..de248da5f09 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15721,9 +15721,10 @@ with pkgs; gcc-arm-embedded-12 = callPackage ../development/compilers/gcc-arm-embedded/12 { }; gcc-arm-embedded = gcc-arm-embedded-12; - # Has to match the default gcc so that there are no linking errors when - # using C/C++ libraries in D packages - gdc = wrapCC (gcc.cc.override { + # It would be better to match the default gcc so that there are no linking errors + # when using C/C++ libraries in D packages, but right now versions >= 12 are broken. + gdc = gdc11; + gdc11 = wrapCC (gcc11.cc.override { name = "gdc"; langCC = false; langC = false; From bb8999eaf4b6e5fa738448ca98c92da0005a0f9b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 15 Jul 2023 23:43:59 +0000 Subject: [PATCH 03/17] cloudlog: 2.4.3 -> 2.4.5 --- pkgs/applications/radio/cloudlog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/radio/cloudlog/default.nix b/pkgs/applications/radio/cloudlog/default.nix index 669a596ccbd..680278bf0e7 100644 --- a/pkgs/applications/radio/cloudlog/default.nix +++ b/pkgs/applications/radio/cloudlog/default.nix @@ -8,13 +8,13 @@ stdenvNoCC.mkDerivation rec { pname = "cloudlog"; - version = "2.4.3"; + version = "2.4.5"; src = fetchFromGitHub { owner = "magicbug"; repo = "Cloudlog"; rev = version; - sha256 = "sha256-2L+Yp8yxhmoVh34cW1s5Xy1f0X2xUo3UP32XcAV2LsM="; + sha256 = "sha256-L68jk49lGw9LNSqIPlDp2WHoQhn8UBW6VDZwsCtjTQI="; }; postPath = '' From f101816bbfb25fc93f7b47c32f65fba0fc2aae5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Reyrol?= Date: Mon, 17 Jul 2023 12:04:13 +0200 Subject: [PATCH 04/17] minify: 2.11.1 -> 2.12.7 --- pkgs/development/web/minify/default.nix | 39 ++++++++++++++++--- .../web/minify/update-go-version-mod.patch | 12 ++++++ 2 files changed, 45 insertions(+), 6 deletions(-) create mode 100644 pkgs/development/web/minify/update-go-version-mod.patch diff --git a/pkgs/development/web/minify/default.nix b/pkgs/development/web/minify/default.nix index 13589bb0f62..85c1083c6a6 100644 --- a/pkgs/development/web/minify/default.nix +++ b/pkgs/development/web/minify/default.nix @@ -1,24 +1,51 @@ -{ buildGoModule, fetchFromGitHub, lib }: +{ lib +, buildGoModule +, fetchFromGitHub +, installShellFiles +, nix-update-script +, testers +, minify +}: buildGoModule rec { pname = "minify"; - version = "2.11.1"; + version = "2.12.7"; src = fetchFromGitHub { owner = "tdewolff"; repo = pname; rev = "v${version}"; - sha256 = "sha256-qna2u+Y4eRGLNvRKDbL/VQud1pn8b1wWzbKQM1p0Yws="; + hash = "sha256-V3lFM58ciU9RrIp5s+ZMaCUAfRJxbTuQxusXhLCiGmI="; }; - vendorSha256 = "sha256-stj3fOaPM70kF6vTX/DEs4qFq/O0Vq0TFw0J/3L5NmA="; + patches = [ ./update-go-version-mod.patch ]; + + vendorHash = "sha256-v3ZPaeE1YW9BRXHxGsmN8tHv3ApOY+NivfePctOmYlM="; + + nativeBuildInputs = [ installShellFiles ]; ldflags = [ "-s" "-w" "-X main.Version=${version}" ]; + subPackages = [ "cmd/minify" ]; + + passthru = { + updateScript = nix-update-script { }; + tests.version = testers.testVersion { + inherit version; + package = minify; + command = "minify --version"; + }; + }; + + postInstall = '' + installShellCompletion --cmd minify --bash cmd/minify/bash_completion + ''; + meta = with lib; { - description = "Minifiers for web formats"; - license = licenses.mit; + description = "Go minifiers for web formats"; homepage = "https://go.tacodewolff.nl/minify"; downloadPage = "https://github.com/tdewolff/minify"; + changelog = "https://github.com/tdewolff/minify/releases/tag/v${version}"; + license = licenses.mit; }; } diff --git a/pkgs/development/web/minify/update-go-version-mod.patch b/pkgs/development/web/minify/update-go-version-mod.patch new file mode 100644 index 00000000000..5f8178cdf98 --- /dev/null +++ b/pkgs/development/web/minify/update-go-version-mod.patch @@ -0,0 +1,12 @@ +diff --git a/go.mod b/go.mod +index cebe363..f9ae9c8 100644 +--- a/go.mod ++++ b/go.mod +@@ -1,6 +1,6 @@ + module github.com/tdewolff/minify/v2 + +-go 1.13 ++go 1.18 + + require ( + github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 // indirect From c75eb7033642e836e4801966a17b068a577c8129 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 18 Jul 2023 04:20:00 +0000 Subject: [PATCH 05/17] rbw: 1.7.1 -> 1.8.1 Changelog: https://git.tozt.net/rbw/plain/CHANGELOG.md?id=1.8.1 --- pkgs/tools/security/rbw/default.nix | 13 ++++++++----- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/security/rbw/default.nix b/pkgs/tools/security/rbw/default.nix index 21952a3cdae..0bd208c2af0 100644 --- a/pkgs/tools/security/rbw/default.nix +++ b/pkgs/tools/security/rbw/default.nix @@ -5,7 +5,7 @@ , openssl , pkg-config , installShellFiles -, Security +, darwin # rbw-fzf , withFzf ? false @@ -24,20 +24,23 @@ rustPlatform.buildRustPackage rec { pname = "rbw"; - version = "1.7.1"; + version = "1.8.1"; src = fetchzip { url = "https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz"; - sha256 = "sha256-xE3T3iVXFaaTF90ehQiG6+dLXcsqrHeprSMUnlSsxkE="; + sha256 = "sha256-cRfCsuhVlTRSgndf4rZrfLG/+NgI4VshVwbQydJt2cE="; }; - cargoHash = "sha256-eaG56FGz4smlqDPi/CJ0KB7NMEgp684X19PVWxGQutw="; + cargoHash = "sha256-CFhBSRqWAJJJkeMNnLwp6/pLhIZHFvdlPn7pjfJFBWw="; nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config ]; - buildInputs = lib.optionals stdenv.isDarwin [ Security ]; + buildInputs = lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security + darwin.apple_sdk.frameworks.AppKit + ]; preConfigure = lib.optionalString stdenv.isLinux '' export OPENSSL_INCLUDE_DIR="${openssl.dev}/include" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9646ec6e031..4ac573b0310 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11926,9 +11926,7 @@ with pkgs; revolt-desktop = callPackage ../applications/networking/instant-messengers/revolt-desktop { }; - rbw = callPackage ../tools/security/rbw { - inherit (darwin.apple_sdk.frameworks) Security; - }; + rbw = callPackage ../tools/security/rbw { }; remarshal = with python3Packages; toPythonApplication remarshal; From 588a7b4d8d9fd1d0255b678211ea8f387bc0582b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 18 Jul 2023 09:54:45 -0700 Subject: [PATCH 06/17] imagemagick: 7.1.1-12 -> 7.1.1-13 Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-12...7.1.1-13 --- pkgs/applications/graphics/ImageMagick/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index 3f8bf842822..a91671a3349 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -47,13 +47,13 @@ in stdenv.mkDerivation (finalAttrs: { pname = "imagemagick"; - version = "7.1.1-12"; + version = "7.1.1-13"; src = fetchFromGitHub { owner = "ImageMagick"; repo = "ImageMagick"; rev = finalAttrs.version; - hash = "sha256-URwSufiTcLGWRFNOJidJyEcIPxWUSdN7yHaCiFh7GEI="; + hash = "sha256-HrUka7VLF9YH23TxDQeQpulQf3ssSfYOhi29v2onvCE="; }; outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big @@ -124,7 +124,7 @@ stdenv.mkDerivation (finalAttrs: { ''; passthru.tests = { - version = testers.testVersion { package = imagemagick; }; + version = testers.testVersion { package = finalAttrs.finalPackage; }; inherit (python3.pkgs) img2pdf; pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; From 0580710f2379119b7a935e6319951d25439fddd7 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 19 Jul 2023 07:15:09 +0200 Subject: [PATCH 07/17] =?UTF-8?q?ocamlPackages.iri:=200.6.0=20=E2=86=92=20?= =?UTF-8?q?0.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/iri/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/iri/default.nix b/pkgs/development/ocaml-modules/iri/default.nix index 0ea05cb7b9b..8d7b3f6893f 100644 --- a/pkgs/development/ocaml-modules/iri/default.nix +++ b/pkgs/development/ocaml-modules/iri/default.nix @@ -4,15 +4,16 @@ buildDunePackage rec { pname = "iri"; - version = "0.6.0"; - duneVersion = "3"; + version = "0.7.0"; + + minimalOCamlVersion = "4.12"; src = fetchFromGitLab { domain = "framagit.org"; owner = "zoggy"; repo = "ocaml-iri"; rev = version; - sha256 = "sha256:0zk8nnwcyljkc1a556byncv6cn1vqhk4267z1lm15flh1k7chyax"; + hash = "sha256-Mkg7kIIVpKbeWUras1RqtJsRx2Q3dBnm4QqSMJFweF8="; }; propagatedBuildInputs = [ sedlex uunf uutf ]; From a0393ca30c4a4595ef3afa2bd3cd3e9ce49d182a Mon Sep 17 00:00:00 2001 From: Jack Baldry Date: Wed, 19 Jul 2023 11:56:57 +0200 Subject: [PATCH 08/17] osquery: init at 5.5.1 --- maintainers/maintainer-list.nix | 6 + ...r-definition-of-AUDIT_FILTER_EXCLUDE.patch | 25 +++ .../system/osquery/Remove-git-reset.patch | 37 +++++ .../Remove-system-controls-table.patch | 157 ++++++++++++++++++ ...-instead-of-removed-xlocale.h-header.patch | 29 ++++ pkgs/tools/system/osquery/default.nix | 85 ++++++++++ pkgs/top-level/all-packages.nix | 2 + 7 files changed, 341 insertions(+) create mode 100644 pkgs/tools/system/osquery/Remove-circular-definition-of-AUDIT_FILTER_EXCLUDE.patch create mode 100644 pkgs/tools/system/osquery/Remove-git-reset.patch create mode 100644 pkgs/tools/system/osquery/Remove-system-controls-table.patch create mode 100644 pkgs/tools/system/osquery/Use-locale.h-instead-of-removed-xlocale.h-header.patch create mode 100644 pkgs/tools/system/osquery/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 83df0fb45ca..61c1f63e17a 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -18445,6 +18445,12 @@ github = "zmitchell"; githubId = 10246891; }; + znewman01 = { + email = "znewman01@gmail.com"; + github = "znewman01"; + githubId = 873857; + name = "Zack Newman"; + }; zoedsoupe = { github = "zoedsoupe"; githubId = 44469426; diff --git a/pkgs/tools/system/osquery/Remove-circular-definition-of-AUDIT_FILTER_EXCLUDE.patch b/pkgs/tools/system/osquery/Remove-circular-definition-of-AUDIT_FILTER_EXCLUDE.patch new file mode 100644 index 00000000000..d3aeca1c300 --- /dev/null +++ b/pkgs/tools/system/osquery/Remove-circular-definition-of-AUDIT_FILTER_EXCLUDE.patch @@ -0,0 +1,25 @@ +From: Jack Baldry +Date: Tue, 15 Nov 2022 15:40:31 -0400 +Subject: [PATCH] Remove circular definition of AUDIT_FILTER_EXCLUDE + +https://github.com/osquery/osquery/issues/6551 + +Signed-off-by: Jack Baldry +--- + libraries/cmake/source/libaudit/src/lib/libaudit.h | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/libraries/cmake/source/libaudit/src/lib/libaudit.h b/libraries/cmake/source/libaudit/src/libaudit.h +--- a/libraries/cmake/source/libaudit/src/lib/libaudit.h ++++ b/libraries/cmake/source/libaudit/src/lib/libaudit.h +@@ -260,7 +260,6 @@ extern "C" { + #define AUDIT_KEY_SEPARATOR 0x01 + + /* These are used in filter control */ +-#define AUDIT_FILTER_EXCLUDE AUDIT_FILTER_TYPE + #define AUDIT_FILTER_MASK 0x07 /* Mask to get actual filter */ + #define AUDIT_FILTER_UNSET 0x80 /* This value means filter is unset */ + +-- +2.38.1 + diff --git a/pkgs/tools/system/osquery/Remove-git-reset.patch b/pkgs/tools/system/osquery/Remove-git-reset.patch new file mode 100644 index 00000000000..af5b165a851 --- /dev/null +++ b/pkgs/tools/system/osquery/Remove-git-reset.patch @@ -0,0 +1,37 @@ +From: Jack Baldry +Date: Tue, 15 Nov 2022 13:48:07 -0400 +Subject: [PATCH] Remove git reset + +This is not required for nixpkgs builds because we are not working in +the source repository and therefore do not need to be careful about +updating submodule content. + +Signed-off-by: Jack Baldry +--- + libraries/cmake/source/modules/utils.cmake | 11 ----------- + 1 file changed, 11 deletions(-) + +diff --git a/libraries/cmake/source/modules/utils.cmake b/libraries/cmake/source/modules/utils.cmake +--- a/libraries/cmake/source/modules/utils.cmake ++++ b/libraries/cmake/source/modules/utils.cmake +@@ -102,17 +102,6 @@ function(patchSubmoduleSourceCode library_name patches_dir source_dir apply_to_d + file(COPY "${source_dir}" DESTINATION "${parent_dir}") + endif() + +- # We need to restore the source code to its original state, pre patch +- execute_process( +- COMMAND "${GIT_EXECUTABLE}" reset --hard HEAD +- RESULT_VARIABLE process_exit_code +- WORKING_DIRECTORY "${source_dir}" +- ) +- +- if(NOT ${process_exit_code} EQUAL 0) +- message(FATAL_ERROR "Failed to git reset the following submodule: \"${source_dir}\"") +- endif() +- + set(patchSubmoduleSourceCode_Patched TRUE PARENT_SCOPE) + endfunction() + +-- +2.38.1 + diff --git a/pkgs/tools/system/osquery/Remove-system-controls-table.patch b/pkgs/tools/system/osquery/Remove-system-controls-table.patch new file mode 100644 index 00000000000..e448f70a3d1 --- /dev/null +++ b/pkgs/tools/system/osquery/Remove-system-controls-table.patch @@ -0,0 +1,157 @@ +From: Jack Baldry +Date: Wed, 16 Nov 2022 22:00:06 -0400 +Subject: [PATCH] Remove system controls table + +Relies on which is not present in glibc since 2.32. + +Signed-off-by: Jack Baldry +--- + osquery/tables/system/CMakeLists.txt | 4 -- + specs/CMakeLists.txt | 1 - + specs/posix/system_controls.table | 21 ------- + tests/integration/tables/system_controls.cpp | 61 -------------------- + 4 files changed, 87 deletions(-) + delete mode 100644 specs/posix/system_controls.table + delete mode 100644 tests/integration/tables/system_controls.cpp + +diff --git a/osquery/tables/system/CMakeLists.txt b/osquery/tables/system/CMakeLists.txt +--- a/osquery/tables/system/CMakeLists.txt ++++ b/osquery/tables/system/CMakeLists.txt +@@ -43,7 +43,6 @@ function(generateOsqueryTablesSystemSystemtable) + posix/smbios_utils.cpp + posix/sudoers.cpp + posix/suid_bin.cpp +- posix/system_controls.cpp + posix/ulimit_info.cpp + ) + endif() +@@ -82,7 +81,6 @@ function(generateOsqueryTablesSystemSystemtable) + linux/shared_memory.cpp + linux/smbios_tables.cpp + linux/startup_items.cpp +- linux/sysctl_utils.cpp + linux/system_info.cpp + linux/usb_devices.cpp + linux/user_groups.cpp +@@ -156,7 +154,6 @@ function(generateOsqueryTablesSystemSystemtable) + darwin/smbios_tables.cpp + darwin/smc_keys.cpp + darwin/startup_items.cpp +- darwin/sysctl_utils.cpp + darwin/system_extensions.mm + darwin/system_info.cpp + darwin/time_machine.cpp +@@ -326,7 +323,6 @@ function(generateOsqueryTablesSystemSystemtable) + posix/shell_history.h + posix/ssh_keys.h + posix/sudoers.h +- posix/sysctl_utils.h + posix/last.h + posix/openssl_utils.h + posix/authorized_keys.h +diff --git a/specs/CMakeLists.txt b/specs/CMakeLists.txt +--- a/specs/CMakeLists.txt ++++ b/specs/CMakeLists.txt +@@ -246,7 +246,6 @@ function(generateNativeTables) + "posix/socket_events.table:linux,macos" + "posix/sudoers.table:linux,macos,freebsd" + "posix/suid_bin.table:linux,macos,freebsd" +- "posix/system_controls.table:linux,macos,freebsd" + "posix/ulimit_info.table:linux,macos,freebsd" + "posix/usb_devices.table:linux,macos" + "posix/user_events.table:linux,macos,freebsd" +diff --git a/specs/posix/system_controls.table b/specs/posix/system_controls.table +deleted file mode 100644 +--- a/specs/posix/system_controls.table ++++ /dev/null +@@ -1,21 +0,0 @@ +-table_name("system_controls") +-description("sysctl names, values, and settings information.") +-schema([ +- Column("name", TEXT, "Full sysctl MIB name", index=True), +- Column("oid", TEXT, "Control MIB", additional=True), +- Column("subsystem", TEXT, "Subsystem ID, control type", additional=True), +- Column("current_value", TEXT, "Value of setting"), +- Column("config_value", TEXT, "The MIB value set in /etc/sysctl.conf"), +- Column("type", TEXT, "Data type"), +-]) +-extended_schema(DARWIN, [ +- Column("field_name", TEXT, "Specific attribute of opaque type"), +-]) +- +-implementation("system_controls@genSystemControls") +-fuzz_paths([ +- "/run/sysctl.d/", +- "/usr/lib/sysctl.d/", +- "/lib/sysctl.d/", +- "/sys" +-]) +diff --git a/tests/integration/tables/system_controls.cpp b/tests/integration/tables/system_controls.cpp +deleted file mode 100644 +--- a/tests/integration/tables/system_controls.cpp ++++ /dev/null +@@ -1,61 +0,0 @@ +-/** +- * Copyright (c) 2014-present, The osquery authors +- * +- * This source code is licensed as defined by the LICENSE file found in the +- * root directory of this source tree. +- * +- * SPDX-License-Identifier: (Apache-2.0 OR GPL-2.0-only) +- */ +- +-// Sanity check integration test for system_controls +-// Spec file: specs/posix/system_controls.table +- +-#include +- +-namespace osquery { +-namespace table_tests { +-namespace { +- +-class SystemControlsTest : public testing::Test { +- protected: +- void SetUp() override { +- setUpEnvironment(); +- } +-}; +- +-TEST_F(SystemControlsTest, test_sanity) { +- auto const rows = execute_query("select * from system_controls"); +- auto const row_map = ValidationMap{ +- {"name", NonEmptyString}, +- {"oid", NormalType}, +- {"subsystem", +- SpecificValuesCheck{"", +- "abi", +- "debug", +- "dev", +- "fs", +- "fscache", +- "hw", +- "kern", +- "kernel", +- "machdep", +- "net", +- "sunrpc", +- "user", +- "vfs", +- "vm"}}, +- {"current_value", NormalType}, +- {"config_value", NormalType}, +- {"type", +- SpecificValuesCheck{ +- "", "node", "int", "string", "quad", "opaque", "struct"}}, +-#ifdef __APPLE__ +- {"field_name", NormalType}, +-#endif +- }; +- validate_rows(rows, row_map); +-} +- +-} // namespace +-} // namespace table_tests +-} // namespace osquery +-- +2.38.1 + diff --git a/pkgs/tools/system/osquery/Use-locale.h-instead-of-removed-xlocale.h-header.patch b/pkgs/tools/system/osquery/Use-locale.h-instead-of-removed-xlocale.h-header.patch new file mode 100644 index 00000000000..63dd5a387f3 --- /dev/null +++ b/pkgs/tools/system/osquery/Use-locale.h-instead-of-removed-xlocale.h-header.patch @@ -0,0 +1,29 @@ +From: Jack Baldry +Date: Tue, 15 Nov 2022 14:34:33 -0400 +Subject: [PATCH] Use locale.h instead of removed xlocale.h header + +https://sourceware.org/glibc/wiki/Release/2.26#Removal_of_.27xlocale.h.27 + +Signed-off-by: Jack Baldry +--- + libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/lib/locale.h | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/lib/locale.h b/libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/lib/locale.h +--- a/libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/lib/locale.h ++++ b/libraries/cmake/source/augeas/gnulib/generated/linux/x86_64/lib/locale.h +@@ -48,9 +48,9 @@ + /* NetBSD 5.0 mis-defines NULL. */ + #include + +-/* Mac OS X 10.5 defines the locale_t type in . */ ++/* Mac OS X 10.5 defines the locale_t type in . */ + #if 1 +-# include ++# include + #endif + + /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */ +-- +2.38.1 + diff --git a/pkgs/tools/system/osquery/default.nix b/pkgs/tools/system/osquery/default.nix new file mode 100644 index 00000000000..6c6d0b45e2a --- /dev/null +++ b/pkgs/tools/system/osquery/default.nix @@ -0,0 +1,85 @@ +{ lib +, cmake +, fetchFromGitHub +, git +, llvmPackages +, nixosTests +, overrideCC +, perl +, python3 +, stdenv +, openssl_1_1 +}: + +let + buildStdenv = overrideCC stdenv llvmPackages.clangUseLLVM; +in +buildStdenv.mkDerivation rec { + pname = "osquery"; + version = "5.5.1"; + + src = fetchFromGitHub { + owner = "osquery"; + repo = "osquery"; + rev = version; + fetchSubmodules = true; + sha256 = "sha256-Q6PQVnBjAjAlR725fyny+RhQFUNwxWGjLDuS5p9JKlU="; + }; + + patches = [ + ./Remove-git-reset.patch + ./Use-locale.h-instead-of-removed-xlocale.h-header.patch + ./Remove-circular-definition-of-AUDIT_FILTER_EXCLUDE.patch + # For current state of compilation against glibc in the clangWithLLVM toolchain, refer to the upstream issue in https://github.com/osquery/osquery/issues/7823. + ./Remove-system-controls-table.patch + ]; + + + buildInputs = [ + llvmPackages.libunwind + ]; + nativeBuildInputs = [ + cmake + git + perl + python3 + ]; + + postPatch = '' + substituteInPlace cmake/install_directives.cmake --replace "/control" "control" + # This is required to build libarchive with our glibc version + # which provides the ARC4RANDOM_BUF function + substituteInPlace libraries/cmake/source/libarchive/CMakeLists.txt --replace " target_compile_definitions(thirdparty_libarchive PRIVATE" " target_compile_definitions(thirdparty_libarchive PRIVATE HAVE_ARC4RANDOM_BUF" + # We need to override this hash because we use our own openssl 1.1 version + substituteInPlace libraries/cmake/formula/openssl/CMakeLists.txt --replace "d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51bf8c8fd10ca" "e2f8d84b523eecd06c7be7626830370300fbcc15386bf5142d72758f6963ebc6" + cat libraries/cmake/formula/openssl/CMakeLists.txt + ''; + + # For explanation of these deletions, refer to the ./Use-locale.h-instead-of-removed-xlocale.h-header.patch file. + preConfigure = '' + find libraries/cmake/source -name 'config.h' -exec sed -i '/#define HAVE_XLOCALE_H 1/d' {} \; + ''; + + cmakeFlags = [ + "-DOSQUERY_VERSION=${version}" + "-DOSQUERY_OPENSSL_ARCHIVE_PATH=${openssl_1_1.src}" + ]; + + postFixup = '' + patchelf --set-rpath "${llvmPackages.libunwind}/lib:$(patchelf --print-rpath $out/bin/osqueryd)" "$out/bin/osqueryd" + ''; + + passthru.tests.osquery = nixosTests.osquery; + + meta = with lib; { + description = "SQL powered operating system instrumentation, monitoring, and analytics."; + longDescription = '' + The system controls table is not included as it does not presently compile with glibc >= 2.32. + For more information, refer to https://github.com/osquery/osquery/issues/7823 + ''; + homepage = "https://osquery.io"; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ znewman01 lewo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e3e6f6a5660..5a941a8745b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1785,6 +1785,8 @@ with pkgs; openbugs = pkgsi686Linux.callPackage ../applications/science/machine-learning/openbugs { }; + osquery = callPackage ../tools/system/osquery { }; + paperview = callPackage ../tools/X11/paperview { }; pferd = callPackage ../tools/misc/pferd { }; From da65d1dd20ab7cc0f5019d8357770b7ade2ceb0c Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Wed, 19 Jul 2023 11:58:49 +0200 Subject: [PATCH 09/17] nixos/osquery: init --- .../manual/release-notes/rl-2311.section.md | 2 + nixos/modules/module-list.nix | 1 + nixos/modules/rename.nix | 1 - nixos/modules/services/monitoring/osquery.nix | 97 +++++++++++++++++++ 4 files changed, 100 insertions(+), 1 deletion(-) create mode 100644 nixos/modules/services/monitoring/osquery.nix diff --git a/nixos/doc/manual/release-notes/rl-2311.section.md b/nixos/doc/manual/release-notes/rl-2311.section.md index 5ccaa92914e..38fd9a3ff03 100644 --- a/nixos/doc/manual/release-notes/rl-2311.section.md +++ b/nixos/doc/manual/release-notes/rl-2311.section.md @@ -26,6 +26,8 @@ - [trust-dns](https://trust-dns.org/), a Rust based DNS server built to be safe and secure from the ground up. Available as [services.trust-dns](#opt-services.trust-dns.enable). +- [osquery](https://www.osquery.io/), a SQL powered operating system instrumentation, monitoring, and analytics. + ## Backward Incompatibilities {#sec-release-23.11-incompatibilities} - The `boot.loader.raspberryPi` options have been marked deprecated, with intent for removal for NixOS 24.11. They had a limited use-case, and do not work like people expect. They required either very old installs ([before mid-2019](https://github.com/NixOS/nixpkgs/pull/62462)) or customized builds out of scope of the standard and generic AArch64 support. That option set never supported the Raspberry Pi 4 family of devices. diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 5510944b215..cef987555f3 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -761,6 +761,7 @@ ./services/monitoring/nagios.nix ./services/monitoring/netdata.nix ./services/monitoring/opentelemetry-collector.nix + ./services/monitoring/osquery.nix ./services/monitoring/parsedmarc.nix ./services/monitoring/prometheus/alertmanager-irc-relay.nix ./services/monitoring/prometheus/alertmanager.nix diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 0e8b823c2bd..a32d433bbdd 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -72,7 +72,6 @@ in (mkRemovedOptionModule [ "services" "mesos" ] "The corresponding package was removed from nixpkgs.") (mkRemovedOptionModule [ "services" "moinmoin" ] "The corresponding package was removed from nixpkgs.") (mkRemovedOptionModule [ "services" "mwlib" ] "The corresponding package was removed from nixpkgs.") - (mkRemovedOptionModule [ "services" "osquery" ] "The osquery module has been removed") (mkRemovedOptionModule [ "services" "pantheon" "files" ] '' This module was removed, please add pkgs.pantheon.elementary-files to environment.systemPackages directly. '') diff --git a/nixos/modules/services/monitoring/osquery.nix b/nixos/modules/services/monitoring/osquery.nix new file mode 100644 index 00000000000..98524d0c700 --- /dev/null +++ b/nixos/modules/services/monitoring/osquery.nix @@ -0,0 +1,97 @@ +{ config, lib, pkgs, ... }: + +with lib; +let + cfg = config.services.osquery; + dirname = path: with lib.strings; with lib.lists; concatStringsSep "/" + (init (splitString "/" (normalizePath path))); + + # conf is the osquery configuration file used when the --config_plugin=filesystem. + # filesystem is the osquery default value for the config_plugin flag. + conf = pkgs.writeText "osquery.conf" (builtins.toJSON cfg.settings); + + # flagfile is the file containing osquery command line flags to be + # provided to the application using the special --flagfile option. + flagfile = pkgs.writeText "osquery.flags" + (concatStringsSep "\n" + (mapAttrsToList (name: value: "--${name}=${value}") + # Use the conf derivation if not otherwise specified. + ({ config_path = conf; } // cfg.flags))); + + osqueryi = pkgs.runCommand "osqueryi" { nativeBuildInputs = [ pkgs.makeWrapper ]; } '' + mkdir -p $out/bin + makeWrapper ${pkgs.osquery}/bin/osqueryi $out/bin/osqueryi \ + --add-flags "--flagfile ${flagfile}" + ''; +in +{ + options.services.osquery = { + enable = mkEnableOption (mdDoc "osqueryd daemon"); + + settings = mkOption { + default = { }; + description = mdDoc '' + Configuration to be written to the osqueryd JSON configuration file. + To understand the configuration format, refer to https://osquery.readthedocs.io/en/stable/deployment/configuration/#configuration-components. + ''; + example = { + options.utc = false; + }; + type = types.attrs; + }; + + flags = mkOption { + default = { }; + description = mdDoc '' + Attribute set of flag names and values to be written to the osqueryd flagfile. + For more information, refer to https://osquery.readthedocs.io/en/stable/installation/cli-flags. + ''; + example = { + config_refresh = "10"; + }; + type = with types; + submodule { + freeformType = attrsOf str; + options = { + database_path = mkOption { + default = "/var/lib/osquery/osquery.db"; + readOnly = true; + description = mdDoc "Path used for the database file."; + type = path; + }; + logger_path = mkOption { + default = "/var/log/osquery"; + readOnly = true; + description = mdDoc "Base directory used for logging."; + type = path; + }; + pidfile = mkOption { + default = "/run/osquery/osqueryd.pid"; + readOnly = true; + description = mdDoc "Path used for pid file."; + type = path; + }; + }; + }; + }; + }; + + config = mkIf cfg.enable { + environment.systemPackages = [ osqueryi ]; + systemd.services.osqueryd = { + after = [ "network.target" "syslog.service" ]; + description = "The osquery daemon"; + serviceConfig = { + ExecStart = "${pkgs.osquery}/bin/osqueryd --flagfile ${flagfile}"; + PIDFile = cfg.flags.pidfile; + LogsDirectory = cfg.flags.logger_path; + StateDirectory = dirname cfg.flags.database_path; + Restart = "always"; + }; + wantedBy = [ "multi-user.target" ]; + }; + systemd.tmpfiles.rules = [ + "d ${dirname (cfg.flags.pidfile)} 0755 root root -" + ]; + }; +} From 8dff9f64ecb309e362b59dc099c090ae4f633481 Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Wed, 19 Jul 2023 11:59:22 +0200 Subject: [PATCH 10/17] nixos/tests/osquery: init --- nixos/tests/all-tests.nix | 1 + nixos/tests/osquery.nix | 56 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 nixos/tests/osquery.nix diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 5f4aefad890..a64f7c5ccbc 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -577,6 +577,7 @@ in { openvscode-server = handleTest ./openvscode-server.nix {}; orangefs = handleTest ./orangefs.nix {}; os-prober = handleTestOn ["x86_64-linux"] ./os-prober.nix {}; + osquery = handleTestOn ["x86_64-linux"] ./osquery.nix {}; osrm-backend = handleTest ./osrm-backend.nix {}; overlayfs = handleTest ./overlayfs.nix {}; pacemaker = handleTest ./pacemaker.nix {}; diff --git a/nixos/tests/osquery.nix b/nixos/tests/osquery.nix new file mode 100644 index 00000000000..dc55fa82f8d --- /dev/null +++ b/nixos/tests/osquery.nix @@ -0,0 +1,56 @@ +import ./make-test-python.nix ({ lib, pkgs, ... }: + +with lib; + +let + config_refresh = "10"; + nullvalue = "NULL"; + utc = false; +in +{ + name = "osquery"; + meta = with maintainers; { + maintainers = [ znewman01 lewo ]; + }; + + nodes.machine = { config, pkgs, ... }: { + services.osquery = { + enable = true; + + settings.options = { inherit nullvalue utc; }; + flags = { + inherit config_refresh; + nullvalue = "IGNORED"; + }; + }; + }; + + testScript = { nodes, ... }: + let + cfg = nodes.machine.services.osquery; + in + '' + machine.start() + machine.wait_for_unit("osqueryd.service") + + # Stop the osqueryd service so that we can use osqueryi to check information stored in the database. + machine.wait_until_succeeds("systemctl stop osqueryd.service") + + # osqueryd was able to query information about the host. + machine.succeed("echo 'SELECT address FROM etc_hosts LIMIT 1;' | osqueryi | tee /dev/console | grep -q '127.0.0.1'") + + # osquery binaries respect configuration from the Nix config option. + machine.succeed("echo 'SELECT value FROM osquery_flags WHERE name = \"utc\";' | osqueryi | tee /dev/console | grep -q ${boolToString utc}") + + # osquery binaries respect configuration from the Nix flags option. + machine.succeed("echo 'SELECT value FROM osquery_flags WHERE name = \"config_refresh\";' | osqueryi | tee /dev/console | grep -q ${config_refresh}") + + # Demonstrate that osquery binaries prefer configuration plugin options over CLI flags. + # https://osquery.readthedocs.io/en/latest/deployment/configuration/#options. + machine.succeed("echo 'SELECT value FROM osquery_flags WHERE name = \"nullvalue\";' | osqueryi | tee /dev/console | grep -q ${nullvalue}") + + # Module creates directories for default database_path and pidfile flag values. + machine.succeed("test -d $(dirname ${cfg.flags.database_path})") + machine.succeed("test -d $(dirname ${cfg.flags.pidfile})") + ''; +}) From f6aee698798e55c0c7f77853c66e1614b6ad83f9 Mon Sep 17 00:00:00 2001 From: Etienne Bruines Date: Wed, 19 Jul 2023 17:20:03 +0200 Subject: [PATCH 11/17] nomad_1_6: init --- .../applications/networking/cluster/nomad/default.nix | 11 +++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 12 insertions(+) diff --git a/pkgs/applications/networking/cluster/nomad/default.nix b/pkgs/applications/networking/cluster/nomad/default.nix index 46cbafff2ad..c54ed70b530 100644 --- a/pkgs/applications/networking/cluster/nomad/default.nix +++ b/pkgs/applications/networking/cluster/nomad/default.nix @@ -85,4 +85,15 @@ rec { export PATH="$PATH:/build/go/bin" ''; }; + + nomad_1_6 = generic { + buildGoModule = buildGo120Module; + version = "1.6.0"; + sha256 = "sha256-979SlqBu2/kUdPB4BplhOcEq0J2sjKmFkEiLOzOAUPM="; + vendorSha256 = "sha256-Y3O7ADzZPlLWFbXSYBcI6b5MAhMD0UnkhQxO9VJMpOY="; + passthru.tests.nomad = nixosTests.nomad; + preCheck = '' + export PATH="$PATH:/build/go/bin" + ''; + }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6c1ccdd07ce..6a4f3384e12 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10784,6 +10784,7 @@ with pkgs; nomad_1_3 nomad_1_4 nomad_1_5 + nomad_1_6 ; nomad-autoscaler = callPackage ../applications/networking/cluster/nomad-autoscaler { }; From d7740c24cb32a6dbeb1c4dab531f098d961c6dbc Mon Sep 17 00:00:00 2001 From: Pogobanane Date: Wed, 19 Jul 2023 20:04:32 +0200 Subject: [PATCH 12/17] nixos/lib/make-disk-image: fix installBootLoader for disabled grub This commit is a fixup for a regression introduced by 0bdba6c99bc6db6fd8ea15de3fa10a3c0563ef9f. Before the regression, it was possible to build images without grub or a kernel (e.g. to boot other kernels with qemu -kernel. After the regression, such images fail to build. Since config.boog.loader.grub.enable is false in that scenario, grub.device is emptystring. While this happens not to be an issue of `ln`, `dirname` fails on emptystring. With this change, we guard both commands to only be run when grub is actually enabled. Images with and without grub succesfully build with this change. --- nixos/lib/make-disk-image.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/lib/make-disk-image.nix b/nixos/lib/make-disk-image.nix index fc121345d6b..e5d82f4de7c 100644 --- a/nixos/lib/make-disk-image.nix +++ b/nixos/lib/make-disk-image.nix @@ -572,7 +572,7 @@ let format' = format; in let ${lib.optionalString installBootLoader '' # In this throwaway resource, we only have /dev/vda, but the actual VM may refer to another disk for bootloader, e.g. /dev/vdb # Use this option to create a symlink from vda to any arbitrary device you want. - ${optionalString (config.boot.loader.grub.device != "/dev/vda") '' + ${optionalString (config.boot.loader.grub.enable && config.boot.loader.grub.device != "/dev/vda") '' mkdir -p $(dirname ${config.boot.loader.grub.device}) ln -s /dev/vda ${config.boot.loader.grub.device} ''} From 68ff0a0408e35398efe437142d9790b82bbd14fd Mon Sep 17 00:00:00 2001 From: Miguel Carneiro Date: Wed, 19 Jul 2023 21:43:28 +0100 Subject: [PATCH 13/17] maintainers: add mig4ng --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 63ed17ec8d7..e1981f5391b 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -10839,6 +10839,12 @@ fingerprint = "FEF0 AE2D 5449 3482 5F06 40AA 186A 1EDA C5C6 3F83"; }]; }; + mig4ng = { + email = "mig4ng@gmail.com"; + github = "mig4ng"; + githubId = 5817039; + name = "Miguel Carneiro"; + }; mightyiam = { email = "mightyiampresence@gmail.com"; github = "mightyiam"; From d345ddaf65bbada63057752ebf6f2efa58817db3 Mon Sep 17 00:00:00 2001 From: Etienne Bruines Date: Wed, 19 Jul 2023 16:47:11 +0200 Subject: [PATCH 14/17] nomad_1_5: 1.5.6 -> 1.5.7 https://github.com/hashicorp/nomad/releases/tag/v1.5.7 CVE notes from upstream: acl: Fixed a bug where a namespace ACL policy without label was applied to an unexpected namespace. CVE-2023-3072 [https://github.com/hashicorp/nomad/issues/17908] search: Fixed a bug where ACL did not filter plugin and variable names in search endpoint. CVE-2023-3300 [https://github.com/hashicorp/nomad/issues/17906] sentinel (Enterprise): Fixed a bug where ACL tokens could be exfiltrated via Sentinel logs CVE-2023-3299 [https://github.com/hashicorp/nomad/issues/17907] --- pkgs/applications/networking/cluster/nomad/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/nomad/default.nix b/pkgs/applications/networking/cluster/nomad/default.nix index 46cbafff2ad..6342a17ef02 100644 --- a/pkgs/applications/networking/cluster/nomad/default.nix +++ b/pkgs/applications/networking/cluster/nomad/default.nix @@ -77,9 +77,9 @@ rec { nomad_1_5 = generic { buildGoModule = buildGo120Module; - version = "1.5.6"; - sha256 = "sha256-eFzGaTJ9BcK5F10lkTKB3sNaGZsmZ0BbPZI6kT5ZUpo="; - vendorSha256 = "sha256-tOUQr44wUhhCccvj4dCI7fvLMrKaEX7xY7035Q3wU3M="; + version = "1.5.7"; + sha256 = "sha256-IafIC1YVbJFQjC04S2rqjDgB83uSFpMajgsKxfFc/H8="; + vendorSha256 = "sha256-y3WiQuoQn6SdwTgtPWuB6EBtsJC+YleQPzownZQNkno="; passthru.tests.nomad = nixosTests.nomad; preCheck = '' export PATH="$PATH:/build/go/bin" From 5a3eb10245e6fbbbfc21b20a3a71f7f6279ace31 Mon Sep 17 00:00:00 2001 From: Miguel Carneiro Date: Wed, 19 Jul 2023 22:03:18 +0100 Subject: [PATCH 15/17] kubevpn: init at 1.1.34 --- .../networking/cluster/kubevpn/default.nix | 26 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/applications/networking/cluster/kubevpn/default.nix diff --git a/pkgs/applications/networking/cluster/kubevpn/default.nix b/pkgs/applications/networking/cluster/kubevpn/default.nix new file mode 100644 index 00000000000..0460213ba55 --- /dev/null +++ b/pkgs/applications/networking/cluster/kubevpn/default.nix @@ -0,0 +1,26 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "kubevpn"; + version = "1.1.34"; + + src = fetchFromGitHub { + owner = "KubeNetworks"; + repo = "kubevpn"; + rev = "v${version}"; + sha256 = "sha256-P4lROZ6UxsCtMwGWIDBkXjd8v/wtD7u9LBoUUzP9Tz0="; + }; + + vendorHash = "sha256-LihRVqVMrN45T9NLOQw/EsrEMTSLYYhWzVm+lYXtFRQ="; + + # TODO investigate why some config tests are failing + doCheck = false; + + meta = with lib; { + changelog = "https://github.com/KubeNetworks/kubevpn/releases/tag/${src.rev}"; + description = "Create a VPN and connect to Kubernetes cluster network, access resources, and more"; + homepage = "https://github.com/KubeNetworks/kubevpn"; + license = licenses.mit; + maintainers = with maintainers; [ mig4ng ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1a27f9e0bfb..3534915d591 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32705,6 +32705,8 @@ with pkgs; kubelogin-oidc = callPackage ../applications/networking/cluster/kubelogin-oidc { }; + kubevpn = callPackage ../applications/networking/cluster/kubevpn { }; + k8sgpt = callPackage ../applications/networking/cluster/k8sgpt { }; k9s = callPackage ../applications/networking/cluster/k9s { }; From e17114622d583332ae96e226a398a500df83878b Mon Sep 17 00:00:00 2001 From: happysalada Date: Thu, 20 Jul 2023 20:26:01 +0900 Subject: [PATCH 16/17] nodePackages: update to latest --- .../node-packages/node-packages.json | 1 + .../node-packages/node-packages.nix | 7698 ++++------------- 2 files changed, 1594 insertions(+), 6105 deletions(-) diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index 61448bc9879..f9ce16faebc 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -123,6 +123,7 @@ , "diagnostic-languageserver" , "diff2html-cli" , "dockerfile-language-server-nodejs" +, "dotenv-cli" , "dotenv-vault" , "elasticdump" , "@electron-forge/cli" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index ea43f9bd539..937a482e015 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -211,15 +211,6 @@ let sha512 = "yjRgwHAfFaeuimgbQtjwSUyXzEHpMSdTRb2zg+TOp6skoGvHOG8xXFJ7DjBkSMeAQdFF0fkxhPS9YmlxqNc+7A=="; }; }; - "@apideck/better-ajv-errors-0.3.6" = { - name = "_at_apideck_slash_better-ajv-errors"; - packageName = "@apideck/better-ajv-errors"; - version = "0.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz"; - sha512 = "P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA=="; - }; - }; "@apidevtools/json-schema-ref-parser-9.0.6" = { name = "_at_apidevtools_slash_json-schema-ref-parser"; packageName = "@apidevtools/json-schema-ref-parser"; @@ -517,15 +508,6 @@ let sha512 = "oWWcEKyrx4sNFxfvOgkMai1jJtOuERmND8fAp8vRA6i38HBU80q8jjkoAitFGPHUz57EhI2ewYYNnf7vkGteOQ=="; }; }; - "@aws-sdk/chunked-blob-reader-3.310.0" = { - name = "_at_aws-sdk_slash_chunked-blob-reader"; - packageName = "@aws-sdk/chunked-blob-reader"; - version = "3.310.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-3.310.0.tgz"; - sha512 = "CrJS3exo4mWaLnWxfCH+w88Ou0IcAZSIkk4QbmxiHl/5Dq705OLoxf4385MVyExpqpeVJYOYQ2WaD8i/pQZ2fg=="; - }; - }; "@aws-sdk/chunked-blob-reader-native-3.295.0" = { name = "_at_aws-sdk_slash_chunked-blob-reader-native"; packageName = "@aws-sdk/chunked-blob-reader-native"; @@ -535,15 +517,6 @@ let sha512 = "9Sp4vXjoG99qI6sFe09MfgIzsKwiOR0atqxmAcJJLn6fUNXhJEoW04n3w/YcRlk7P4gC9cOMsEyvb8xu+fDEOQ=="; }; }; - "@aws-sdk/chunked-blob-reader-native-3.310.0" = { - name = "_at_aws-sdk_slash_chunked-blob-reader-native"; - packageName = "@aws-sdk/chunked-blob-reader-native"; - version = "3.310.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.310.0.tgz"; - sha512 = "RuhyUY9hCd6KWA2DMF/U6rilYLLRYrDY6e0lq3Of1yzSRFxi4bk9ZMCF0mxf/9ppsB5eudUjrOypYgm6Axt3zw=="; - }; - }; "@aws-sdk/client-cognito-identity-3.370.0" = { name = "_at_aws-sdk_slash_client-cognito-identity"; packageName = "@aws-sdk/client-cognito-identity"; @@ -562,13 +535,13 @@ let sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw=="; }; }; - "@aws-sdk/client-s3-3.370.0" = { + "@aws-sdk/client-s3-3.373.0" = { name = "_at_aws-sdk_slash_client-s3"; packageName = "@aws-sdk/client-s3"; - version = "3.370.0"; + version = "3.373.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.370.0.tgz"; - sha512 = "+b53hI+C+tIiE6OhIvaUXD5qC0zFrCWIu6EKT597W+4XzfFIZE0BGgolP8pC1lLDghPjCFSmAm9Efcb2a1sPvw=="; + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.373.0.tgz"; + sha512 = "cdgxK/C6CqmVXNYFTzaRDviV5MBiUx/Z6ghQhPJYxl0/FlOQ82x8yhCzhf1E6/LI6IHFKA7ypz0qf+I7nGp8+A=="; }; }; "@aws-sdk/client-sso-3.296.0" = { @@ -832,15 +805,6 @@ let sha512 = "kJJsO9kNDNQIYzIIAB/vHFRfVrc1KUYcPMtCLVprHQhPkSxxnOlHF5wBTJ98IRKi/eGYxD5QrCzrMKLI95BPKw=="; }; }; - "@aws-sdk/hash-blob-browser-3.370.0" = { - name = "_at_aws-sdk_slash_hash-blob-browser"; - packageName = "@aws-sdk/hash-blob-browser"; - version = "3.370.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.370.0.tgz"; - sha512 = "DyStaznfloyF9jN3KvG6puOAjt25alXoBNeHBF2FyLlEEbrOqUmso39JB5LVAw2/KB4UmCNsbAXFb6WktX/yHQ=="; - }; - }; "@aws-sdk/hash-node-3.296.0" = { name = "_at_aws-sdk_slash_hash-node"; packageName = "@aws-sdk/hash-node"; @@ -895,13 +859,13 @@ let sha512 = "urnbcCR+h9NWUnmOtet/s4ghvzsidFmspfhYaHAmSRdy9yDjdjBJMFjjsn85A1ODUktztm+cVncXjQ38WCMjMQ=="; }; }; - "@aws-sdk/lib-storage-3.370.0" = { + "@aws-sdk/lib-storage-3.373.0" = { name = "_at_aws-sdk_slash_lib-storage"; packageName = "@aws-sdk/lib-storage"; - version = "3.370.0"; + version = "3.373.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.370.0.tgz"; - sha512 = "vUdvd8jvusl81A0OdCz3y2E7Nhqwa57cxJviK6P262zqL2Ge5WlfR9djjv78sqdclvm7iXTxj7o1djMu1aScNg=="; + url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.373.0.tgz"; + sha512 = "76+LhtBwgWndfPukIzwb+ETSP4sOqcN1XLrG9qgl9l+L4OtMgAznU+sqv8irQ8mtzbgZr+PoH3TzCTHRBwrNqQ=="; }; }; "@aws-sdk/md5-js-3.296.0" = { @@ -913,15 +877,6 @@ let sha512 = "TvDafbHFcplnf0QqRlkjZ/Dz+dLWBmzBEclRk+h34r4XaIWxvmQ9EtQRo6+6sfAVRtAj2l+i1fm9EjwPMVkb9A=="; }; }; - "@aws-sdk/md5-js-3.370.0" = { - name = "_at_aws-sdk_slash_md5-js"; - packageName = "@aws-sdk/md5-js"; - version = "3.370.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.370.0.tgz"; - sha512 = "wch3+hiRdFGsu5E+w3WU9qmumQErKshtgetd6wMgFYm2MPSksFU58rM/aiwiWRA6knpcaShKaPKMmGnuX3HwhQ=="; - }; - }; "@aws-sdk/middleware-bucket-endpoint-3.296.0" = { name = "_at_aws-sdk_slash_middleware-bucket-endpoint"; packageName = "@aws-sdk/middleware-bucket-endpoint"; @@ -1237,13 +1192,13 @@ let sha512 = "nLNZKVQfK42euv7101cE5qfg17YCtGcfccx3B5XSAzvyTROR46kwYqbEvYSsWisbZoRhbQc905gB/5E0U5HDIw=="; }; }; - "@aws-sdk/s3-presigned-post-3.370.0" = { + "@aws-sdk/s3-presigned-post-3.373.0" = { name = "_at_aws-sdk_slash_s3-presigned-post"; packageName = "@aws-sdk/s3-presigned-post"; - version = "3.370.0"; + version = "3.373.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.370.0.tgz"; - sha512 = "JRJFw8Vwct1M4dFxzjhh7VYBuMCr5VsWFKeSOR7mtqxjqd09Kr16BVMPGxpbv+DQEJrR0AofDVb1+H2giooW3A=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.373.0.tgz"; + sha512 = "fkScIj6ubusQggPVVJSakEX7da74ajUHWLUB+JobKkkK6bkQYYV/VFDpYQsFTEwF0861vq9k/pKNsm1Q8o+HWA=="; }; }; "@aws-sdk/s3-request-presigner-3.296.0" = { @@ -1255,13 +1210,13 @@ let sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw=="; }; }; - "@aws-sdk/s3-request-presigner-3.370.0" = { + "@aws-sdk/s3-request-presigner-3.373.0" = { name = "_at_aws-sdk_slash_s3-request-presigner"; packageName = "@aws-sdk/s3-request-presigner"; - version = "3.370.0"; + version = "3.373.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.370.0.tgz"; - sha512 = "ilTf+Q3nEKBd6soJo8cAGDCoRV6ggLYxUHqLyVXreMsio9rog7H2ePbFtO9gtbwUGR46gqgDQyIf+7i7yAuP6A=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.373.0.tgz"; + sha512 = "5z0Hqzf01+L2Bxbg38A4ZRzyIhLGrwbmRkLRyqOm5hhPJQ6VDbGCtjpYQ95cTnYidJqmkRy8bhyBIcnaVfUaMw=="; }; }; "@aws-sdk/service-error-classification-3.296.0" = { @@ -1399,15 +1354,6 @@ let sha512 = "z1r40BsBiOTALnzASvLb4qutGwPpL+jH2UKTCV5WJLXZFMzRnpZaRfeZGE8lMJ/i0+jv9H9G1FmVzE8UgB4rhw=="; }; }; - "@aws-sdk/util-base64-3.310.0" = { - name = "_at_aws-sdk_slash_util-base64"; - packageName = "@aws-sdk/util-base64"; - version = "3.310.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-base64/-/util-base64-3.310.0.tgz"; - sha512 = "v3+HBKQvqgdzcbL+pFswlx5HQsd9L6ZTlyPVL2LS9nNXnCcR3XgGz9jRskikRUuUvUXtkSG1J88GAOnJ/apTPg=="; - }; - }; "@aws-sdk/util-body-length-browser-3.295.0" = { name = "_at_aws-sdk_slash_util-body-length-browser"; packageName = "@aws-sdk/util-body-length-browser"; @@ -1912,15 +1858,6 @@ let sha512 = "G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w=="; }; }; - "@babel/eslint-parser-7.22.9" = { - name = "_at_babel_slash_eslint-parser"; - packageName = "@babel/eslint-parser"; - version = "7.22.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.9.tgz"; - sha512 = "xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA=="; - }; - }; "@babel/generator-7.18.2" = { name = "_at_babel_slash_generator"; packageName = "@babel/generator"; @@ -2335,15 +2272,6 @@ let sha512 = "p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA=="; }; }; - "@babel/plugin-proposal-private-methods-7.18.6" = { - name = "_at_babel_slash_plugin-proposal-private-methods"; - packageName = "@babel/plugin-proposal-private-methods"; - version = "7.18.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz"; - sha512 = "nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA=="; - }; - }; "@babel/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2" = { name = "_at_babel_slash_plugin-proposal-private-property-in-object"; packageName = "@babel/plugin-proposal-private-property-in-object"; @@ -2371,15 +2299,6 @@ let sha512 = "tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="; }; }; - "@babel/plugin-syntax-bigint-7.8.3" = { - name = "_at_babel_slash_plugin-syntax-bigint"; - packageName = "@babel/plugin-syntax-bigint"; - version = "7.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"; - sha512 = "wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="; - }; - }; "@babel/plugin-syntax-class-properties-7.12.13" = { name = "_at_babel_slash_plugin-syntax-class-properties"; packageName = "@babel/plugin-syntax-class-properties"; @@ -2929,15 +2848,6 @@ let sha512 = "TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ=="; }; }; - "@babel/plugin-transform-react-constant-elements-7.22.5" = { - name = "_at_babel_slash_plugin-transform-react-constant-elements"; - packageName = "@babel/plugin-transform-react-constant-elements"; - version = "7.22.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.22.5.tgz"; - sha512 = "BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA=="; - }; - }; "@babel/plugin-transform-react-display-name-7.22.5" = { name = "_at_babel_slash_plugin-transform-react-display-name"; packageName = "@babel/plugin-transform-react-display-name"; @@ -3316,15 +3226,6 @@ let sha512 = "zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="; }; }; - "@bcoe/v8-coverage-0.2.3" = { - name = "_at_bcoe_slash_v8-coverage"; - packageName = "@bcoe/v8-coverage"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"; - sha512 = "0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="; - }; - }; "@bconnorwhite/module-2.0.2" = { name = "_at_bconnorwhite_slash_module"; packageName = "@bconnorwhite/module"; @@ -3361,15 +3262,6 @@ let sha512 = "Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg=="; }; }; - "@bufbuild/protobuf-1.3.0" = { - name = "_at_bufbuild_slash_protobuf"; - packageName = "@bufbuild/protobuf"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-1.3.0.tgz"; - sha512 = "G372ods0pLt46yxVRsnP/e2btVPuuzArcMPFpIDeIwiGPuuglEs9y75iG0HMvZgncsj5TvbYRWqbVyOe3PLCWQ=="; - }; - }; "@bugsnag/browser-7.20.2" = { name = "_at_bugsnag_slash_browser"; packageName = "@bugsnag/browser"; @@ -3505,49 +3397,49 @@ let sha512 = "MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A=="; }; }; - "@cloudflare/workerd-darwin-64-1.20230710.0" = { + "@cloudflare/workerd-darwin-64-1.20230717.0" = { name = "_at_cloudflare_slash_workerd-darwin-64"; packageName = "@cloudflare/workerd-darwin-64"; - version = "1.20230710.0"; + version = "1.20230717.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230710.0.tgz"; - sha512 = "TDEgTfzTkveW+U0qtg9/60PXbl2klnEso0oio501zAnY2SOC1x7M0qb8UkhvjHFUVpwdykUzTPWPIWFBcF1ibA=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230717.0.tgz"; + sha512 = "NVwwAYEIJmXGnQRnrCig2i4XAYFwPPFD+324fvQGWqUyfvBXKDYF3Jkw92ZginwdojYU1W+2l2qP7t6JE9Sw0g=="; }; }; - "@cloudflare/workerd-darwin-arm64-1.20230710.0" = { + "@cloudflare/workerd-darwin-arm64-1.20230717.0" = { name = "_at_cloudflare_slash_workerd-darwin-arm64"; packageName = "@cloudflare/workerd-darwin-arm64"; - version = "1.20230710.0"; + version = "1.20230717.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230710.0.tgz"; - sha512 = "dxBwnKcj7TiM1JGiODg0LASa25A9P0XLeMkmF8YCECZoq+3QLH/uY4Vbm1xeEy8iXUZrt/uYN72bBE83vY4HIQ=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230717.0.tgz"; + sha512 = "toK0AadC35j0AiaXPYUq7yrAwPJR+5GLLXOXguHq5DHPqzzgD5pB9e4zlIKD+b09FAAEB6lO/k/eJSMYF/lfzA=="; }; }; - "@cloudflare/workerd-linux-64-1.20230710.0" = { + "@cloudflare/workerd-linux-64-1.20230717.0" = { name = "_at_cloudflare_slash_workerd-linux-64"; packageName = "@cloudflare/workerd-linux-64"; - version = "1.20230710.0"; + version = "1.20230717.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230710.0.tgz"; - sha512 = "WrKZwL76i51jQLFpSxklpRSm2s8T9Xf6tVzQaiLTtpguKZSF/CTAyjjEOVfS7FXk+Te8lyAJAFQnj5QHoJ3pzA=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230717.0.tgz"; + sha512 = "nxpfVzMkNLNa4hOvZ+Y7JHY13UkRf7or5tcQCRtfJ5sEhtCVGdfsOosQGnzw9G+045JUk0EKEY+gqNPRnt5u2w=="; }; }; - "@cloudflare/workerd-linux-arm64-1.20230710.0" = { + "@cloudflare/workerd-linux-arm64-1.20230717.0" = { name = "_at_cloudflare_slash_workerd-linux-arm64"; packageName = "@cloudflare/workerd-linux-arm64"; - version = "1.20230710.0"; + version = "1.20230717.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230710.0.tgz"; - sha512 = "eWdbOoqFqQ4m1/Wwy2dRDaOVXjOmWGjwBliU8pvm2m9RjfRTdfik7z6E3vOkalxqJDHiJ0f8SUykKz2oM1lD0A=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230717.0.tgz"; + sha512 = "jWVSJmOP0bMJ23xNONqP5x6TEDS9h/4nr0d0gULMpkfh6W9qNZNLpF8urNanXOqTM9p6rX55aBvzXsHs8Jctqw=="; }; }; - "@cloudflare/workerd-windows-64-1.20230710.0" = { + "@cloudflare/workerd-windows-64-1.20230717.0" = { name = "_at_cloudflare_slash_workerd-windows-64"; packageName = "@cloudflare/workerd-windows-64"; - version = "1.20230710.0"; + version = "1.20230717.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230710.0.tgz"; - sha512 = "P5ihH98Pb72HrsVsvb/HCSezvAvEtPeVQVBKgIclNE9e0fkA4zX9QMzBBFvLy3yr0YLf4r7MO2tNnt7JFnheGA=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230717.0.tgz"; + sha512 = "y9Ys8j22LMHaMdy31OyaV7Qz1Xca8MhzpBlpX4Ay6saECXYP1DZHHwtcW8pBqBU2zyGfEkErBQhyH130SSHFJg=="; }; }; "@colors/colors-1.5.0" = { @@ -3559,22 +3451,22 @@ let sha512 = "ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ=="; }; }; - "@commitlint/config-validator-17.4.4" = { + "@commitlint/config-validator-17.6.7" = { name = "_at_commitlint_slash_config-validator"; packageName = "@commitlint/config-validator"; - version = "17.4.4"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.4.4.tgz"; - sha512 = "bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg=="; + url = "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.6.7.tgz"; + sha512 = "vJSncmnzwMvpr3lIcm0I8YVVDJTzyjy7NZAeXbTXy+MPUdAr9pKyyg7Tx/ebOQ9kqzE6O9WT6jg2164br5UdsQ=="; }; }; - "@commitlint/ensure-17.4.4" = { + "@commitlint/ensure-17.6.7" = { name = "_at_commitlint_slash_ensure"; packageName = "@commitlint/ensure"; - version = "17.4.4"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.4.4.tgz"; - sha512 = "AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g=="; + url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.6.7.tgz"; + sha512 = "mfDJOd1/O/eIb/h4qwXzUxkmskXDL9vNPnZ4AKYKiZALz4vHzwMxBSYtyL2mUIDeU9DRSpEUins8SeKtFkYHSw=="; }; }; "@commitlint/execute-rule-17.4.0" = { @@ -3595,31 +3487,31 @@ let sha512 = "+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ=="; }; }; - "@commitlint/is-ignored-17.6.6" = { + "@commitlint/is-ignored-17.6.7" = { name = "_at_commitlint_slash_is-ignored"; packageName = "@commitlint/is-ignored"; - version = "17.6.6"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.6.6.tgz"; - sha512 = "4Fw875faAKO+2nILC04yW/2Vy/wlV3BOYCSQ4CEFzriPEprc1Td2LILmqmft6PDEK5Sr14dT9tEzeaZj0V56Gg=="; + url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.6.7.tgz"; + sha512 = "vqyNRqtbq72P2JadaoWiuoLtXIs9SaAWDqdtef6G2zsoXqKFc7vqj1f+thzVgosXG3X/5K9jNp+iYijmvOfc/g=="; }; }; - "@commitlint/lint-17.6.6" = { + "@commitlint/lint-17.6.7" = { name = "_at_commitlint_slash_lint"; packageName = "@commitlint/lint"; - version = "17.6.6"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.6.tgz"; - sha512 = "5bN+dnHcRLkTvwCHYMS7Xpbr+9uNi0Kq5NR3v4+oPNx6pYXt8ACuw9luhM/yMgHYwW0ajIR20wkPAFkZLEMGmg=="; + url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.7.tgz"; + sha512 = "TW+AozfuOFMrHn+jdwtz0IWu8REKFp0eryOvoBp2r8IXNc4KihKB1spAiUB6SFyHD6hVVeolz12aHnJ3Mb+xVQ=="; }; }; - "@commitlint/load-17.5.0" = { + "@commitlint/load-17.6.7" = { name = "_at_commitlint_slash_load"; packageName = "@commitlint/load"; - version = "17.5.0"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/load/-/load-17.5.0.tgz"; - sha512 = "l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q=="; + url = "https://registry.npmjs.org/@commitlint/load/-/load-17.6.7.tgz"; + sha512 = "QZ2rJTbX55BQdYrCm/p6+hh/pFBgC9nTJxfsrK6xRPe2thiQzHN0AQDBqBwAirn6gIkHrjIbCbtAE6kiDYLjrw=="; }; }; "@commitlint/message-17.4.2" = { @@ -3631,13 +3523,13 @@ let sha512 = "3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q=="; }; }; - "@commitlint/parse-17.6.5" = { + "@commitlint/parse-17.6.7" = { name = "_at_commitlint_slash_parse"; packageName = "@commitlint/parse"; - version = "17.6.5"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/parse/-/parse-17.6.5.tgz"; - sha512 = "0zle3bcn1Hevw5Jqpz/FzEWNo2KIzUbc1XyGg6WrWEoa6GH3A1pbqNF6MvE6rjuy6OY23c8stWnb4ETRZyN+Yw=="; + url = "https://registry.npmjs.org/@commitlint/parse/-/parse-17.6.7.tgz"; + sha512 = "ibO03BgEns+JJpohpBZYD49mCdSNMg6fTv7vA5yqzEFWkBQk5NWhEBw2yG+Z1UClStIRkMkAYyI2HzoQG9tCQQ=="; }; }; "@commitlint/read-17.5.1" = { @@ -3649,22 +3541,22 @@ let sha512 = "7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg=="; }; }; - "@commitlint/resolve-extends-17.4.4" = { + "@commitlint/resolve-extends-17.6.7" = { name = "_at_commitlint_slash_resolve-extends"; packageName = "@commitlint/resolve-extends"; - version = "17.4.4"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.4.4.tgz"; - sha512 = "znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A=="; + url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.6.7.tgz"; + sha512 = "PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg=="; }; }; - "@commitlint/rules-17.6.5" = { + "@commitlint/rules-17.6.7" = { name = "_at_commitlint_slash_rules"; packageName = "@commitlint/rules"; - version = "17.6.5"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.5.tgz"; - sha512 = "uTB3zSmnPyW2qQQH+Dbq2rekjlWRtyrjDo4aLFe63uteandgkI+cc0NhhbBAzcXShzVk0qqp8SlkQMu0mgHg/A=="; + url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.7.tgz"; + sha512 = "x/SDwDTN3w3Gr5xkhrIORu96rlKCc8ZLYEMXRqi9+MB33st2mKcGvKa5uJuigHlbl3xm75bAAubATrodVrjguQ=="; }; }; "@commitlint/to-lines-17.4.0" = { @@ -3739,13 +3631,13 @@ let sha512 = "1KeTQFiHMssW1eRoF2NZIEg4gPVIfXLsL2+VSD/AV6YN7lBcuf6gRRgV5KWYarhxtEfjxhDdDTmu26l/iJEUtw=="; }; }; - "@cspell/dict-ada-4.0.1" = { + "@cspell/dict-ada-4.0.2" = { name = "_at_cspell_slash_dict-ada"; packageName = "@cspell/dict-ada"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.0.1.tgz"; - sha512 = "/E9o3nHrXOhYmQE43deKbxZcR3MIJAsa+66IzP9TXGHheKEx8b9dVMVVqydDDH8oom1H0U20NRPtu6KRVbT9xw=="; + url = "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.0.2.tgz"; + sha512 = "0kENOWQeHjUlfyId/aCM/mKXtkEgV0Zu2RhUXCBr4hHo9F9vph+Uu8Ww2b0i5a4ZixoIkudGA+eJvyxrG1jUpA=="; }; }; "@cspell/dict-aws-1.0.14" = { @@ -3811,13 +3703,13 @@ let sha512 = "sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw=="; }; }; - "@cspell/dict-cpp-5.0.3" = { + "@cspell/dict-cpp-5.0.4" = { name = "_at_cspell_slash_dict-cpp"; packageName = "@cspell/dict-cpp"; - version = "5.0.3"; + version = "5.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-5.0.3.tgz"; - sha512 = "7sx/RFsf0hB3q8chx8OHYl9Kd+g0pqA1laphwaAQ+/jPwoAreYT3kNQWbJ3bIt/rMoORetFSQxckSbaJXwwqpw=="; + url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-5.0.4.tgz"; + sha512 = "Vmz/CCb2d91ES5juaO8+CFWeTa2AFsbpR8bkCPJq+P8cRP16+37tY0zNXEBSK/1ur4MakaRf76jeQBijpZxw0Q=="; }; }; "@cspell/dict-cryptocurrencies-1.0.10" = { @@ -3874,22 +3766,22 @@ let sha512 = "2Lo8W2ezHmGgY8cWFr4RUwnjbndna5mokpCK/DuxGILQnuajR0J31ANQOXj/8iZM2phFB93ZzMNk/0c04TDfSQ=="; }; }; - "@cspell/dict-dart-2.0.2" = { + "@cspell/dict-dart-2.0.3" = { name = "_at_cspell_slash_dict-dart"; packageName = "@cspell/dict-dart"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.0.2.tgz"; - sha512 = "jigcODm7Z4IFZ4vParwwP3IT0fIgRq/9VoxkXfrxBMsLBGGM2QltHBj7pl+joX+c4cOHxfyZktGJK1B1wFtR4Q=="; + url = "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.0.3.tgz"; + sha512 = "cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw=="; }; }; - "@cspell/dict-data-science-1.0.7" = { + "@cspell/dict-data-science-1.0.8" = { name = "_at_cspell_slash_dict-data-science"; packageName = "@cspell/dict-data-science"; - version = "1.0.7"; + version = "1.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-1.0.7.tgz"; - sha512 = "Q9VUFaarUpqM6CAmR8peP4o9alk0XQ4rgVoE2R2XalpC2cqPI8Hmg6QwMU2UPioSUcWMJCqLc/KzJti0gBMuxA=="; + url = "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-1.0.8.tgz"; + sha512 = "uGx0rd3BftfZ5mvXtPxvLNkQ33y0ylNw4GpBAAfF3hgGtifKdvLSmphOGuNgDYUPpJ0+e025bsvtN0/ZZCzWTg=="; }; }; "@cspell/dict-django-1.0.26" = { @@ -3910,13 +3802,13 @@ let sha512 = "bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w=="; }; }; - "@cspell/dict-docker-1.1.6" = { + "@cspell/dict-docker-1.1.7" = { name = "_at_cspell_slash_dict-docker"; packageName = "@cspell/dict-docker"; - version = "1.1.6"; + version = "1.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.6.tgz"; - sha512 = "zCCiRTZ6EOQpBnSOm0/3rnKW1kCcAUDUA7SxJG3SuH6iZvKi3I8FEg8+O83WQUeXg0SyPNerD9F40JLnnJjJig=="; + url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.7.tgz"; + sha512 = "XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A=="; }; }; "@cspell/dict-dotnet-1.0.32" = { @@ -3982,13 +3874,13 @@ let sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; }; }; - "@cspell/dict-en_us-4.3.4" = { + "@cspell/dict-en_us-4.3.5" = { name = "_at_cspell_slash_dict-en_us"; packageName = "@cspell/dict-en_us"; - version = "4.3.4"; + version = "4.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.4.tgz"; - sha512 = "mR2yqWmFip1zTKja2SqyVMbzuqEThqkEJk9M32bMDziPJpEyOIPvLA0UPmj3cyRKJkRuVF0bhDCE33O+at38hw=="; + url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.5.tgz"; + sha512 = "el9L7zSaYy0fT1ZXi3xuygtiyMZMZPZJYaIzKu/0hGUWVWvUmf8JZ13tDHrCPTl0e3ct1GWEDgJerrvUlti6Cg=="; }; }; "@cspell/dict-filetypes-1.1.8" = { @@ -4288,13 +4180,13 @@ let sha512 = "IHfWLme3FXE7vnOmMncSBxOsMTdNWd1Vcyhag03WS8oANSgX8IZ+4lMI00mF0ptlgchf16/OU8WsV4pZfikEFw=="; }; }; - "@cspell/dict-public-licenses-2.0.2" = { + "@cspell/dict-public-licenses-2.0.3" = { name = "_at_cspell_slash_dict-public-licenses"; packageName = "@cspell/dict-public-licenses"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.2.tgz"; - sha512 = "baKkbs/WGEV2lCWZoL0KBPh3uiPcul5GSDwmXEBAsR5McEW52LF94/b7xWM0EmSAc/y8ODc5LnPYC7RDRLi6LQ=="; + url = "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.3.tgz"; + sha512 = "JSLEdpEYufQ1H+93UHi+axlqQm1fhgK6kpdLHp6uPHu//CsvETcqNVawjB+qOdI/g38JTMw5fBqSd0aGNxa6Dw=="; }; }; "@cspell/dict-python-1.0.38" = { @@ -4396,13 +4288,13 @@ let sha512 = "RI6sv4Bc4i42YH/ofVelv8lXpJRhCyS9IhI2BtejUoMXKhKA9gC01ATXOylx+oaQmj3t5ark4R50xKFRvC7ENA=="; }; }; - "@cspell/dict-sql-2.1.0" = { + "@cspell/dict-sql-2.1.1" = { name = "_at_cspell_slash_dict-sql"; packageName = "@cspell/dict-sql"; - version = "2.1.0"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.1.0.tgz"; - sha512 = "Bb+TNWUrTNNABO0bmfcYXiTlSt0RD6sB2MIY+rNlaMyIwug43jUjeYmkLz2tPkn3+2uvySeFEOMVYhMVfcuDKg=="; + url = "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.1.1.tgz"; + sha512 = "v1mswi9NF40+UDUMuI148YQPEQvWjac72P6ZsjlRdLjEiQEEMEsTQ+zlkIdnzC9QCNyJaqD5Liq9Mn78/8Zxtw=="; }; }; "@cspell/dict-svelte-1.0.2" = { @@ -4504,150 +4396,6 @@ let sha512 = "M8cFGGwl866o6++vIY7j1AKuq9v57cf+dGepScwCcbut9ypJNr4Cj+LLTWligYUZ0uyhEoJDKt5lvyBfh2L3ZQ=="; }; }; - "@csstools/normalize.css-12.0.0" = { - name = "_at_csstools_slash_normalize.css"; - packageName = "@csstools/normalize.css"; - version = "12.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz"; - sha512 = "M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg=="; - }; - }; - "@csstools/postcss-cascade-layers-1.1.1" = { - name = "_at_csstools_slash_postcss-cascade-layers"; - packageName = "@csstools/postcss-cascade-layers"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz"; - sha512 = "+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA=="; - }; - }; - "@csstools/postcss-color-function-1.1.1" = { - name = "_at_csstools_slash_postcss-color-function"; - packageName = "@csstools/postcss-color-function"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz"; - sha512 = "Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw=="; - }; - }; - "@csstools/postcss-font-format-keywords-1.0.1" = { - name = "_at_csstools_slash_postcss-font-format-keywords"; - packageName = "@csstools/postcss-font-format-keywords"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz"; - sha512 = "ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg=="; - }; - }; - "@csstools/postcss-hwb-function-1.0.2" = { - name = "_at_csstools_slash_postcss-hwb-function"; - packageName = "@csstools/postcss-hwb-function"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz"; - sha512 = "YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w=="; - }; - }; - "@csstools/postcss-ic-unit-1.0.1" = { - name = "_at_csstools_slash_postcss-ic-unit"; - packageName = "@csstools/postcss-ic-unit"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz"; - sha512 = "Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw=="; - }; - }; - "@csstools/postcss-is-pseudo-class-2.0.7" = { - name = "_at_csstools_slash_postcss-is-pseudo-class"; - packageName = "@csstools/postcss-is-pseudo-class"; - version = "2.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz"; - sha512 = "7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA=="; - }; - }; - "@csstools/postcss-nested-calc-1.0.0" = { - name = "_at_csstools_slash_postcss-nested-calc"; - packageName = "@csstools/postcss-nested-calc"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz"; - sha512 = "JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ=="; - }; - }; - "@csstools/postcss-normalize-display-values-1.0.1" = { - name = "_at_csstools_slash_postcss-normalize-display-values"; - packageName = "@csstools/postcss-normalize-display-values"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz"; - sha512 = "jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw=="; - }; - }; - "@csstools/postcss-oklab-function-1.1.1" = { - name = "_at_csstools_slash_postcss-oklab-function"; - packageName = "@csstools/postcss-oklab-function"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz"; - sha512 = "nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA=="; - }; - }; - "@csstools/postcss-progressive-custom-properties-1.3.0" = { - name = "_at_csstools_slash_postcss-progressive-custom-properties"; - packageName = "@csstools/postcss-progressive-custom-properties"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz"; - sha512 = "ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA=="; - }; - }; - "@csstools/postcss-stepped-value-functions-1.0.1" = { - name = "_at_csstools_slash_postcss-stepped-value-functions"; - packageName = "@csstools/postcss-stepped-value-functions"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz"; - sha512 = "dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ=="; - }; - }; - "@csstools/postcss-text-decoration-shorthand-1.0.0" = { - name = "_at_csstools_slash_postcss-text-decoration-shorthand"; - packageName = "@csstools/postcss-text-decoration-shorthand"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz"; - sha512 = "c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw=="; - }; - }; - "@csstools/postcss-trigonometric-functions-1.0.2" = { - name = "_at_csstools_slash_postcss-trigonometric-functions"; - packageName = "@csstools/postcss-trigonometric-functions"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz"; - sha512 = "woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og=="; - }; - }; - "@csstools/postcss-unset-value-1.0.2" = { - name = "_at_csstools_slash_postcss-unset-value"; - packageName = "@csstools/postcss-unset-value"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz"; - sha512 = "c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g=="; - }; - }; - "@csstools/selector-specificity-2.2.0" = { - name = "_at_csstools_slash_selector-specificity"; - packageName = "@csstools/selector-specificity"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz"; - sha512 = "+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw=="; - }; - }; "@csstools/selector-specificity-3.0.0" = { name = "_at_csstools_slash_selector-specificity"; packageName = "@csstools/selector-specificity"; @@ -5116,13 +4864,13 @@ let sha512 = "bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g=="; }; }; - "@esbuild/android-arm-0.18.13" = { + "@esbuild/android-arm-0.18.14" = { name = "_at_esbuild_slash_android-arm"; packageName = "@esbuild/android-arm"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.13.tgz"; - sha512 = "KwqFhxRFMKZINHzCqf8eKxE0XqWlAVPRxwy6rc7CbVFxzUWB2sA/s3hbMZeemPdhN3fKBkqOaFhTbS8xJXYIWQ=="; + url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.14.tgz"; + sha512 = "blODaaL+lngG5bdK/t4qZcQvq2BBqrABmYwqPPcS5VRxrCSGHb9R/rA3fqxh7R18I7WU4KKv+NYkt22FDfalcg=="; }; }; "@esbuild/android-arm64-0.16.3" = { @@ -5143,13 +4891,13 @@ let sha512 = "YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg=="; }; }; - "@esbuild/android-arm64-0.18.13" = { + "@esbuild/android-arm64-0.18.14" = { name = "_at_esbuild_slash_android-arm64"; packageName = "@esbuild/android-arm64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.13.tgz"; - sha512 = "j7NhycJUoUAG5kAzGf4fPWfd17N6SM3o1X6MlXVqfHvs2buFraCJzos9vbeWjLxOyBKHyPOnuCuipbhvbYtTAg=="; + url = "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.14.tgz"; + sha512 = "rZ2v+Luba5/3D6l8kofWgTnqE+qsC/L5MleKIKFyllHTKHrNBMqeRCnZI1BtRx8B24xMYxeU32iIddRQqMsOsg=="; }; }; "@esbuild/android-x64-0.16.3" = { @@ -5170,13 +4918,13 @@ let sha512 = "MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ=="; }; }; - "@esbuild/android-x64-0.18.13" = { + "@esbuild/android-x64-0.18.14" = { name = "_at_esbuild_slash_android-x64"; packageName = "@esbuild/android-x64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.13.tgz"; - sha512 = "M2eZkRxR6WnWfVELHmv6MUoHbOqnzoTVSIxgtsyhm/NsgmL+uTmag/VVzdXvmahak1I6sOb1K/2movco5ikDJg=="; + url = "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.14.tgz"; + sha512 = "qSwh8y38QKl+1Iqg+YhvCVYlSk3dVLk9N88VO71U4FUjtiSFylMWK3Ugr8GC6eTkkP4Tc83dVppt2n8vIdlSGg=="; }; }; "@esbuild/darwin-arm64-0.16.3" = { @@ -5197,13 +4945,13 @@ let sha512 = "bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA=="; }; }; - "@esbuild/darwin-arm64-0.18.13" = { + "@esbuild/darwin-arm64-0.18.14" = { name = "_at_esbuild_slash_darwin-arm64"; packageName = "@esbuild/darwin-arm64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.13.tgz"; - sha512 = "f5goG30YgR1GU+fxtaBRdSW3SBG9pZW834Mmhxa6terzcboz7P2R0k4lDxlkP7NYRIIdBbWp+VgwQbmMH4yV7w=="; + url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.14.tgz"; + sha512 = "9Hl2D2PBeDYZiNbnRKRWuxwHa9v5ssWBBjisXFkVcSP5cZqzZRFBUWEQuqBHO4+PKx4q4wgHoWtfQ1S7rUqJ2Q=="; }; }; "@esbuild/darwin-x64-0.16.3" = { @@ -5224,13 +4972,13 @@ let sha512 = "xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg=="; }; }; - "@esbuild/darwin-x64-0.18.13" = { + "@esbuild/darwin-x64-0.18.14" = { name = "_at_esbuild_slash_darwin-x64"; packageName = "@esbuild/darwin-x64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.13.tgz"; - sha512 = "RIrxoKH5Eo+yE5BtaAIMZaiKutPhZjw+j0OCh8WdvKEKJQteacq0myZvBDLU+hOzQOZWJeDnuQ2xgSScKf1Ovw=="; + url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.14.tgz"; + sha512 = "ZnI3Dg4ElQ6tlv82qLc/UNHtFsgZSKZ7KjsUNAo1BF1SoYDjkGKHJyCrYyWjFecmXpvvG/KJ9A/oe0H12odPLQ=="; }; }; "@esbuild/freebsd-arm64-0.16.3" = { @@ -5251,13 +4999,13 @@ let sha512 = "EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg=="; }; }; - "@esbuild/freebsd-arm64-0.18.13" = { + "@esbuild/freebsd-arm64-0.18.14" = { name = "_at_esbuild_slash_freebsd-arm64"; packageName = "@esbuild/freebsd-arm64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.13.tgz"; - sha512 = "AfRPhHWmj9jGyLgW/2FkYERKmYR+IjYxf2rtSLmhOrPGFh0KCETFzSjx/JX/HJnvIqHt/DRQD/KAaVsUKoI3Xg=="; + url = "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.14.tgz"; + sha512 = "h3OqR80Da4oQCIa37zl8tU5MwHQ7qgPV0oVScPfKJK21fSRZEhLE4IIVpmcOxfAVmqjU6NDxcxhYaM8aDIGRLw=="; }; }; "@esbuild/freebsd-x64-0.16.3" = { @@ -5278,13 +5026,13 @@ let sha512 = "Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q=="; }; }; - "@esbuild/freebsd-x64-0.18.13" = { + "@esbuild/freebsd-x64-0.18.14" = { name = "_at_esbuild_slash_freebsd-x64"; packageName = "@esbuild/freebsd-x64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.13.tgz"; - sha512 = "pGzWWZJBInhIgdEwzn8VHUBang8UvFKsvjDkeJ2oyY5gZtAM6BaxK0QLCuZY+qoj/nx/lIaItH425rm/hloETA=="; + url = "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.14.tgz"; + sha512 = "ha4BX+S6CZG4BoH9tOZTrFIYC1DH13UTCRHzFc3GWX74nz3h/N6MPF3tuR3XlsNjMFUazGgm35MPW5tHkn2lzQ=="; }; }; "@esbuild/linux-arm-0.16.3" = { @@ -5305,13 +5053,13 @@ let sha512 = "7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw=="; }; }; - "@esbuild/linux-arm-0.18.13" = { + "@esbuild/linux-arm-0.18.14" = { name = "_at_esbuild_slash_linux-arm"; packageName = "@esbuild/linux-arm"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.13.tgz"; - sha512 = "4iMxLRMCxGyk7lEvkkvrxw4aJeC93YIIrfbBlUJ062kilUUnAiMb81eEkVvCVoh3ON283ans7+OQkuy1uHW+Hw=="; + url = "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.14.tgz"; + sha512 = "5+7vehI1iqru5WRtJyU2XvTOvTGURw3OZxe3YTdE9muNNIdmKAVmSHpB3Vw2LazJk2ifEdIMt/wTWnVe5V98Kg=="; }; }; "@esbuild/linux-arm64-0.16.3" = { @@ -5332,13 +5080,13 @@ let sha512 = "bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w=="; }; }; - "@esbuild/linux-arm64-0.18.13" = { + "@esbuild/linux-arm64-0.18.14" = { name = "_at_esbuild_slash_linux-arm64"; packageName = "@esbuild/linux-arm64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.13.tgz"; - sha512 = "hCzZbVJEHV7QM77fHPv2qgBcWxgglGFGCxk6KfQx6PsVIdi1u09X7IvgE9QKqm38OpkzaAkPnnPqwRsltvLkIQ=="; + url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.14.tgz"; + sha512 = "IXORRe22In7U65NZCzjwAUc03nn8SDIzWCnfzJ6t/8AvGx5zBkcLfknI+0P+hhuftufJBmIXxdSTbzWc8X/V4w=="; }; }; "@esbuild/linux-ia32-0.16.3" = { @@ -5359,13 +5107,13 @@ let sha512 = "ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ=="; }; }; - "@esbuild/linux-ia32-0.18.13" = { + "@esbuild/linux-ia32-0.18.14" = { name = "_at_esbuild_slash_linux-ia32"; packageName = "@esbuild/linux-ia32"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.13.tgz"; - sha512 = "I3OKGbynl3AAIO6onXNrup/ttToE6Rv2XYfFgLK/wnr2J+1g+7k4asLrE+n7VMhaqX+BUnyWkCu27rl+62Adug=="; + url = "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.14.tgz"; + sha512 = "BfHlMa0nibwpjG+VXbOoqJDmFde4UK2gnW351SQ2Zd4t1N3zNdmUEqRkw/srC1Sa1DRBE88Dbwg4JgWCbNz/FQ=="; }; }; "@esbuild/linux-loong64-0.15.18" = { @@ -5395,13 +5143,13 @@ let sha512 = "y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ=="; }; }; - "@esbuild/linux-loong64-0.18.13" = { + "@esbuild/linux-loong64-0.18.14" = { name = "_at_esbuild_slash_linux-loong64"; packageName = "@esbuild/linux-loong64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.13.tgz"; - sha512 = "8pcKDApAsKc6WW51ZEVidSGwGbebYw2qKnO1VyD8xd6JN0RN6EUXfhXmDk9Vc4/U3Y4AoFTexQewQDJGsBXBpg=="; + url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.14.tgz"; + sha512 = "j2/Ex++DRUWIAaUDprXd3JevzGtZ4/d7VKz+AYDoHZ3HjJzCyYBub9CU1wwIXN+viOP0b4VR3RhGClsvyt/xSw=="; }; }; "@esbuild/linux-mips64el-0.16.3" = { @@ -5422,13 +5170,13 @@ let sha512 = "09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA=="; }; }; - "@esbuild/linux-mips64el-0.18.13" = { + "@esbuild/linux-mips64el-0.18.14" = { name = "_at_esbuild_slash_linux-mips64el"; packageName = "@esbuild/linux-mips64el"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.13.tgz"; - sha512 = "6GU+J1PLiVqWx8yoCK4Z0GnfKyCGIH5L2KQipxOtbNPBs+qNDcMJr9euxnyJ6FkRPyMwaSkjejzPSISD9hb+gg=="; + url = "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.14.tgz"; + sha512 = "qn2+nc+ZCrJmiicoAnJXJJkZWt8Nwswgu1crY7N+PBR8ChBHh89XRxj38UU6Dkthl2yCVO9jWuafZ24muzDC/A=="; }; }; "@esbuild/linux-ppc64-0.16.3" = { @@ -5449,13 +5197,13 @@ let sha512 = "AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg=="; }; }; - "@esbuild/linux-ppc64-0.18.13" = { + "@esbuild/linux-ppc64-0.18.14" = { name = "_at_esbuild_slash_linux-ppc64"; packageName = "@esbuild/linux-ppc64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.13.tgz"; - sha512 = "pfn/OGZ8tyR8YCV7MlLl5hAit2cmS+j/ZZg9DdH0uxdCoJpV7+5DbuXrR+es4ayRVKIcfS9TTMCs60vqQDmh+w=="; + url = "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.14.tgz"; + sha512 = "aGzXzd+djqeEC5IRkDKt3kWzvXoXC6K6GyYKxd+wsFJ2VQYnOWE954qV2tvy5/aaNrmgPTb52cSCHFE+Z7Z0yg=="; }; }; "@esbuild/linux-riscv64-0.16.3" = { @@ -5476,13 +5224,13 @@ let sha512 = "Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ=="; }; }; - "@esbuild/linux-riscv64-0.18.13" = { + "@esbuild/linux-riscv64-0.18.14" = { name = "_at_esbuild_slash_linux-riscv64"; packageName = "@esbuild/linux-riscv64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.13.tgz"; - sha512 = "aIbhU3LPg0lOSCfVeGHbmGYIqOtW6+yzO+Nfv57YblEK01oj0mFMtvDJlOaeAZ6z0FZ9D13oahi5aIl9JFphGg=="; + url = "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.14.tgz"; + sha512 = "8C6vWbfr0ygbAiMFLS6OPz0BHvApkT2gCboOGV76YrYw+sD/MQJzyITNsjZWDXJwPu9tjrFQOVG7zijRzBCnLw=="; }; }; "@esbuild/linux-s390x-0.16.3" = { @@ -5503,13 +5251,13 @@ let sha512 = "SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q=="; }; }; - "@esbuild/linux-s390x-0.18.13" = { + "@esbuild/linux-s390x-0.18.14" = { name = "_at_esbuild_slash_linux-s390x"; packageName = "@esbuild/linux-s390x"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.13.tgz"; - sha512 = "Pct1QwF2sp+5LVi4Iu5Y+6JsGaV2Z2vm4O9Dd7XZ5tKYxEHjFtb140fiMcl5HM1iuv6xXO8O1Vrb1iJxHlv8UA=="; + url = "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.14.tgz"; + sha512 = "G/Lf9iu8sRMM60OVGOh94ZW2nIStksEcITkXdkD09/T6QFD/o+g0+9WVyR/jajIb3A0LvBJ670tBnGe1GgXMgw=="; }; }; "@esbuild/linux-x64-0.16.3" = { @@ -5530,13 +5278,13 @@ let sha512 = "a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw=="; }; }; - "@esbuild/linux-x64-0.18.13" = { + "@esbuild/linux-x64-0.18.14" = { name = "_at_esbuild_slash_linux-x64"; packageName = "@esbuild/linux-x64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.13.tgz"; - sha512 = "zTrIP0KzYP7O0+3ZnmzvUKgGtUvf4+piY8PIO3V8/GfmVd3ZyHJGz7Ht0np3P1wz+I8qJ4rjwJKqqEAbIEPngA=="; + url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.14.tgz"; + sha512 = "TBgStYBQaa3EGhgqIDM+ECnkreb0wkcKqL7H6m+XPcGUoU4dO7dqewfbm0mWEQYH3kzFHrzjOFNpSAVzDZRSJw=="; }; }; "@esbuild/netbsd-x64-0.16.3" = { @@ -5557,13 +5305,13 @@ let sha512 = "EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A=="; }; }; - "@esbuild/netbsd-x64-0.18.13" = { + "@esbuild/netbsd-x64-0.18.14" = { name = "_at_esbuild_slash_netbsd-x64"; packageName = "@esbuild/netbsd-x64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.13.tgz"; - sha512 = "I6zs10TZeaHDYoGxENuksxE1sxqZpCp+agYeW039yqFwh3MgVvdmXL5NMveImOC6AtpLvE4xG5ujVic4NWFIDQ=="; + url = "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.14.tgz"; + sha512 = "stvCcjyCQR2lMTroqNhAbvROqRjxPEq0oQ380YdXxA81TaRJEucH/PzJ/qsEtsHgXlWFW6Ryr/X15vxQiyRXVg=="; }; }; "@esbuild/openbsd-x64-0.16.3" = { @@ -5584,13 +5332,13 @@ let sha512 = "xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw=="; }; }; - "@esbuild/openbsd-x64-0.18.13" = { + "@esbuild/openbsd-x64-0.18.14" = { name = "_at_esbuild_slash_openbsd-x64"; packageName = "@esbuild/openbsd-x64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.13.tgz"; - sha512 = "W5C5nczhrt1y1xPG5bV+0M12p2vetOGlvs43LH8SopQ3z2AseIROu09VgRqydx5qFN7y9qCbpgHLx0kb0TcW7g=="; + url = "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.14.tgz"; + sha512 = "apAOJF14CIsN5ht1PA57PboEMsNV70j3FUdxLmA2liZ20gEQnfTG5QU0FhENo5nwbTqCB2O3WDsXAihfODjHYw=="; }; }; "@esbuild/sunos-x64-0.16.3" = { @@ -5611,13 +5359,13 @@ let sha512 = "gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw=="; }; }; - "@esbuild/sunos-x64-0.18.13" = { + "@esbuild/sunos-x64-0.18.14" = { name = "_at_esbuild_slash_sunos-x64"; packageName = "@esbuild/sunos-x64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.13.tgz"; - sha512 = "X/xzuw4Hzpo/yq3YsfBbIsipNgmsm8mE/QeWbdGdTTeZ77fjxI2K0KP3AlhZ6gU3zKTw1bKoZTuKLnqcJ537qw=="; + url = "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.14.tgz"; + sha512 = "fYRaaS8mDgZcGybPn2MQbn1ZNZx+UXFSUoS5Hd2oEnlsyUcr/l3c6RnXf1bLDRKKdLRSabTmyCy7VLQ7VhGdOQ=="; }; }; "@esbuild/win32-arm64-0.16.3" = { @@ -5638,13 +5386,13 @@ let sha512 = "G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg=="; }; }; - "@esbuild/win32-arm64-0.18.13" = { + "@esbuild/win32-arm64-0.18.14" = { name = "_at_esbuild_slash_win32-arm64"; packageName = "@esbuild/win32-arm64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.13.tgz"; - sha512 = "4CGYdRQT/ILd+yLLE5i4VApMPfGE0RPc/wFQhlluDQCK09+b4JDbxzzjpgQqTPrdnP7r5KUtGVGZYclYiPuHrw=="; + url = "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.14.tgz"; + sha512 = "1c44RcxKEJPrVj62XdmYhxXaU/V7auELCmnD+Ri+UCt+AGxTvzxl9uauQhrFso8gj6ZV1DaORV0sT9XSHOAk8Q=="; }; }; "@esbuild/win32-ia32-0.16.3" = { @@ -5665,13 +5413,13 @@ let sha512 = "96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg=="; }; }; - "@esbuild/win32-ia32-0.18.13" = { + "@esbuild/win32-ia32-0.18.14" = { name = "_at_esbuild_slash_win32-ia32"; packageName = "@esbuild/win32-ia32"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.13.tgz"; - sha512 = "D+wKZaRhQI+MUGMH+DbEr4owC2D7XnF+uyGiZk38QbgzLcofFqIOwFs7ELmIeU45CQgfHNy9Q+LKW3cE8g37Kg=="; + url = "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.14.tgz"; + sha512 = "EXAFttrdAxZkFQmpvcAQ2bywlWUsONp/9c2lcfvPUhu8vXBBenCXpoq9YkUvVP639ld3YGiYx0YUQ6/VQz3Maw=="; }; }; "@esbuild/win32-x64-0.16.3" = { @@ -5692,13 +5440,13 @@ let sha512 = "n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA=="; }; }; - "@esbuild/win32-x64-0.18.13" = { + "@esbuild/win32-x64-0.18.14" = { name = "_at_esbuild_slash_win32-x64"; packageName = "@esbuild/win32-x64"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.13.tgz"; - sha512 = "iVl6lehAfJS+VmpF3exKpNQ8b0eucf5VWfzR8S7xFve64NBNz2jPUgx1X93/kfnkfgP737O+i1k54SVQS7uVZA=="; + url = "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.14.tgz"; + sha512 = "K0QjGbcskx+gY+qp3v4/940qg8JitpXbdxFhRDA1aYoNaPff88+aEwoq45aqJ+ogpxQxmU0ZTjgnrQD/w8iiUg=="; }; }; "@eslint-community/eslint-utils-4.4.0" = { @@ -5800,13 +5548,13 @@ let sha512 = "BuqNhUgDz7pZffEwVXRXhRNb6l46CCu17knfUW7juP6H5ugqFFrLOcNiVjt66h4HjsHA0V5NKR7udA7kziqhoQ=="; }; }; - "@esm2cjs/is-5.5.1" = { + "@esm2cjs/is-5.5.2" = { name = "_at_esm2cjs_slash_is"; packageName = "@esm2cjs/is"; - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@esm2cjs/is/-/is-5.5.1.tgz"; - sha512 = "XWdaUmljOD1ZG7ZSffeKBX2cGxkJyo8m0LQUNUcZxDI0HQFbFEvDJ40cN1e4/uarTyipHuf6s1xQ0Cztf2I/dA=="; + url = "https://registry.npmjs.org/@esm2cjs/is/-/is-5.5.2.tgz"; + sha512 = "8aCJIcAFH5UzZx7I65b1HY0asHlhepTsKZiLXBL9Q3CI6PD6Bo3PHLKrC86Nn29UlKtRcyTrHtMfnWlBjx83UQ=="; }; }; "@esm2cjs/lowercase-keys-3.0.0" = { @@ -6511,31 +6259,31 @@ let sha512 = "k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="; }; }; - "@gitbeaker/core-39.7.0" = { + "@gitbeaker/core-39.8.0" = { name = "_at_gitbeaker_slash_core"; packageName = "@gitbeaker/core"; - version = "39.7.0"; + version = "39.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/core/-/core-39.7.0.tgz"; - sha512 = "xZRpfUA1CHLZyvTj26PuyyLGnMDO88g9klWDSm5r4rSE+bwpjjyVFhpGlw8dUEYrh0hTM/nnF3UEE33UuoIYvQ=="; + url = "https://registry.npmjs.org/@gitbeaker/core/-/core-39.8.0.tgz"; + sha512 = "Ti5UfDAsE8gKLk78iG4hLAmPJ33E10x5/7dNb2HJ98G4MlrfPWyTW8XboCZATC+jA9c11DWTwtGW//NJOfOd9g=="; }; }; - "@gitbeaker/requester-utils-39.7.0" = { + "@gitbeaker/requester-utils-39.8.0" = { name = "_at_gitbeaker_slash_requester-utils"; packageName = "@gitbeaker/requester-utils"; - version = "39.7.0"; + version = "39.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-39.7.0.tgz"; - sha512 = "8Ej6ggR8n59C0+g0b5KXPHlEfedZ4cjblynrbqWq5S+FmSrXzrDoInoD70QGXEibXYJB2kYQVxAts1iszYKSKg=="; + url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-39.8.0.tgz"; + sha512 = "307Qu7i7YVHlrOBF1LTeGvAkE5AY57nSBRXcCpzox4DS3kGMHUFVaJbWEBUA1YOxz60umUd40Y2GvPwRj9GCXQ=="; }; }; - "@gitbeaker/rest-39.7.0" = { + "@gitbeaker/rest-39.8.0" = { name = "_at_gitbeaker_slash_rest"; packageName = "@gitbeaker/rest"; - version = "39.7.0"; + version = "39.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-39.7.0.tgz"; - sha512 = "+oBoaC4G9h2QEQOL4XrTaz0oLjbajb3KrtbYWidd6Girctx/tlUQ9+Y7eiH3bepoRhAoHW3wpiseCaT7UOvw+w=="; + url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-39.8.0.tgz"; + sha512 = "rRVQRuC9z2G0AHgPdgX7XuuhkJbJGZxEcIbVcGNluk1KP4yies+P4cupHShNEfd4GNVIfdsh01GQaR3JzjBAaw=="; }; }; "@glideapps/ts-necessities-2.1.3" = { @@ -6745,13 +6493,13 @@ let sha512 = "hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg=="; }; }; - "@graphql-tools/executor-http-1.0.1" = { + "@graphql-tools/executor-http-1.0.2" = { name = "_at_graphql-tools_slash_executor-http"; packageName = "@graphql-tools/executor-http"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.1.tgz"; - sha512 = "36D2oxVuv7NboFdPPS9MDOICvsg08P1K9xkqcQTB4UQogkUn58ZFfWM+4cZ9rwfNCIPTIzH4quoj7Xo09xbzmw=="; + url = "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.2.tgz"; + sha512 = "JKTB4E3kdQM2/1NEcyrVPyQ8057ZVthCV5dFJiKktqY9IdmF00M8gupFcW3jlbM/Udn78ickeUBsUzA3EouqpA=="; }; }; "@graphql-tools/executor-legacy-ws-0.0.11" = { @@ -7628,33 +7376,6 @@ let sha512 = "4z6p4jLGSthc8gQ7wu4nHfGYn/IgCKFr+7hjuf80VdXUs7sm029mZGGDpS8sb29PVZWUBvMMTBCVGFhH2nN4Vw=="; }; }; - "@jest/console-27.5.1" = { - name = "_at_jest_slash_console"; - packageName = "@jest/console"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz"; - sha512 = "kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg=="; - }; - }; - "@jest/console-28.1.3" = { - name = "_at_jest_slash_console"; - packageName = "@jest/console"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz"; - sha512 = "QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw=="; - }; - }; - "@jest/core-27.5.1" = { - name = "_at_jest_slash_core"; - packageName = "@jest/core"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz"; - sha512 = "AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ=="; - }; - }; "@jest/environment-27.5.1" = { name = "_at_jest_slash_environment"; packageName = "@jest/environment"; @@ -7673,33 +7394,6 @@ let sha512 = "/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ=="; }; }; - "@jest/globals-27.5.1" = { - name = "_at_jest_slash_globals"; - packageName = "@jest/globals"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz"; - sha512 = "ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q=="; - }; - }; - "@jest/reporters-27.5.1" = { - name = "_at_jest_slash_reporters"; - packageName = "@jest/reporters"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz"; - sha512 = "cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw=="; - }; - }; - "@jest/schemas-28.1.3" = { - name = "_at_jest_slash_schemas"; - packageName = "@jest/schemas"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz"; - sha512 = "/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg=="; - }; - }; "@jest/schemas-29.6.0" = { name = "_at_jest_slash_schemas"; packageName = "@jest/schemas"; @@ -7709,51 +7403,6 @@ let sha512 = "rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ=="; }; }; - "@jest/source-map-27.5.1" = { - name = "_at_jest_slash_source-map"; - packageName = "@jest/source-map"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz"; - sha512 = "y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg=="; - }; - }; - "@jest/test-result-27.5.1" = { - name = "_at_jest_slash_test-result"; - packageName = "@jest/test-result"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz"; - sha512 = "EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag=="; - }; - }; - "@jest/test-result-28.1.3" = { - name = "_at_jest_slash_test-result"; - packageName = "@jest/test-result"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz"; - sha512 = "kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg=="; - }; - }; - "@jest/test-sequencer-27.5.1" = { - name = "_at_jest_slash_test-sequencer"; - packageName = "@jest/test-sequencer"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz"; - sha512 = "LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ=="; - }; - }; - "@jest/transform-27.5.1" = { - name = "_at_jest_slash_transform"; - packageName = "@jest/transform"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz"; - sha512 = "ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw=="; - }; - }; "@jest/types-26.6.2" = { name = "_at_jest_slash_types"; packageName = "@jest/types"; @@ -7772,15 +7421,6 @@ let sha512 = "Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw=="; }; }; - "@jest/types-28.1.3" = { - name = "_at_jest_slash_types"; - packageName = "@jest/types"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz"; - sha512 = "RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ=="; - }; - }; "@jimp/bmp-0.14.0" = { name = "_at_jimp_slash_bmp"; packageName = "@jimp/bmp"; @@ -8681,13 +8321,13 @@ let sha512 = "4w+P0VkbjzEXC7kv8T1GJ/9AVaP9I6uasMZ/JcdwZBS3qwvKo5A5z9uGhP5c7TvItzcmPb44b5Mw2kT+WjUuAA=="; }; }; - "@ledgerhq/devices-8.0.4" = { + "@ledgerhq/devices-8.0.5" = { name = "_at_ledgerhq_slash_devices"; packageName = "@ledgerhq/devices"; - version = "8.0.4"; + version = "8.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-8.0.4.tgz"; - sha512 = "dxOiWZmtEv1tgw70+rW8gviCRZUeGDUnxY6HUPiRqTAc0Ts2AXxiJChgAsPvIywWTGW+S67Nxq1oTZdpRbdt+A=="; + url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-8.0.5.tgz"; + sha512 = "Cy4LOfcYhYGWLd2nRA/CY/AneJT+Q3RyNwzoRx28gqAN21vF3+IZtL0jqs1n78rZ2bTEHyBS1GMOX13s5Y+O4g=="; }; }; "@ledgerhq/errors-5.50.0" = { @@ -8699,13 +8339,13 @@ let sha512 = "gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow=="; }; }; - "@ledgerhq/errors-6.12.7" = { + "@ledgerhq/errors-6.13.0" = { name = "_at_ledgerhq_slash_errors"; packageName = "@ledgerhq/errors"; - version = "6.12.7"; + version = "6.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.12.7.tgz"; - sha512 = "1BpjzFErPK7qPFx0oItcX0mNLJMplVAm2Dpl5urZlubewnTyyw5sahIBjU+8LLCWJ2eGEh/0wyvh0jMtR0n2Mg=="; + url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.13.0.tgz"; + sha512 = "cMFNX2AN6Gdj4RVIizI/7vWb+JYRu5na0rQSjybf7xGW5MSVdFVRcOg90VvqnDRsNfgFBbJzhpf7o4D7S3yFgg=="; }; }; "@ledgerhq/hw-transport-5.51.1" = { @@ -8717,31 +8357,31 @@ let sha512 = "6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw=="; }; }; - "@ledgerhq/hw-transport-6.28.5" = { + "@ledgerhq/hw-transport-6.28.6" = { name = "_at_ledgerhq_slash_hw-transport"; packageName = "@ledgerhq/hw-transport"; - version = "6.28.5"; + version = "6.28.6"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.28.5.tgz"; - sha512 = "xmw5RhYbqExBBqTvOnOjN/RYNIGMBxFJ+zcYNfkfw/E+uEY3L7xq8Z7sC/n7URTT6xtEctElqduBJnBQE4OQtw=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.28.6.tgz"; + sha512 = "0VVB4jIG6ZTRtHusI5kO2jPcc1yFQ+iIcNKiTaaBHytsdGjTfhipje+W4vxo+nCdOKdrkOqB80GwykmKuNNXyA=="; }; }; - "@ledgerhq/hw-transport-node-hid-6.27.17" = { + "@ledgerhq/hw-transport-node-hid-6.27.18" = { name = "_at_ledgerhq_slash_hw-transport-node-hid"; packageName = "@ledgerhq/hw-transport-node-hid"; - version = "6.27.17"; + version = "6.27.18"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.17.tgz"; - sha512 = "yoK3NDuk6uqIrxEgClKUGi9rcYcybwpZMo1n91FGAK8s8veDS/AfQRjeQG8sFjOEaHMijFluMvaCikvQP1NbsQ=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.18.tgz"; + sha512 = "2Bjb90YAhU/o1GvElKeSocjZthFobYnd1kuGQ8QI6qUJHwqkY5jvdy3UBzwtLYORCHEPSroQxy3D6E7q/vwS5Q=="; }; }; - "@ledgerhq/hw-transport-node-hid-noevents-6.27.16" = { + "@ledgerhq/hw-transport-node-hid-noevents-6.27.17" = { name = "_at_ledgerhq_slash_hw-transport-node-hid-noevents"; packageName = "@ledgerhq/hw-transport-node-hid-noevents"; - version = "6.27.16"; + version = "6.27.17"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.16.tgz"; - sha512 = "7MK245Cfj4B4WijO+a0iux+glmyHr44ezSuec4h1PfQrtiOGf+Sk26oi8WHJX+pabc9c566Qxkgdo4FvHWCCaA=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.17.tgz"; + sha512 = "QCuySuUgD8wAvTBO9jSwxZvjbfaRfoGNgr7JcDuu25D8pTTIn7S1mCtvVX8TwgMT9hIHsjfkbw6L23FPClvldg=="; }; }; "@ledgerhq/hw-transport-u2f-5.36.0-deprecated" = { @@ -9158,42 +8798,6 @@ let sha512 = "2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ=="; }; }; - "@microsoft/fast-element-1.12.0" = { - name = "_at_microsoft_slash_fast-element"; - packageName = "@microsoft/fast-element"; - version = "1.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/fast-element/-/fast-element-1.12.0.tgz"; - sha512 = "gQutuDHPKNxUEcQ4pypZT4Wmrbapus+P9s3bR/SEOLsMbNqNoXigGImITygI5zhb+aA5rzflM6O8YWkmRbGkPA=="; - }; - }; - "@microsoft/fast-foundation-2.49.0" = { - name = "_at_microsoft_slash_fast-foundation"; - packageName = "@microsoft/fast-foundation"; - version = "2.49.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/fast-foundation/-/fast-foundation-2.49.0.tgz"; - sha512 = "Wk4e4QXFVtT5hPwhMfHyGY30kixM0td8aDs7bAD6NM2z2SCBNvpTTWp+FCjx0I0lpUMlMenb6wsw7pMWQreRkQ=="; - }; - }; - "@microsoft/fast-react-wrapper-0.1.48" = { - name = "_at_microsoft_slash_fast-react-wrapper"; - packageName = "@microsoft/fast-react-wrapper"; - version = "0.1.48"; - src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/fast-react-wrapper/-/fast-react-wrapper-0.1.48.tgz"; - sha512 = "9NvEjru9Kn5ZKjomAMX6v+eF0DR+eDkxKDwDfi+Wb73kTbrNzcnmlwd4diN15ygH97kldgj2+lpvI4CKLQQWLg=="; - }; - }; - "@microsoft/fast-web-utilities-5.4.1" = { - name = "_at_microsoft_slash_fast-web-utilities"; - packageName = "@microsoft/fast-web-utilities"; - version = "5.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/fast-web-utilities/-/fast-web-utilities-5.4.1.tgz"; - sha512 = "ReWYncndjV3c8D8iq9tp7NcFNc1vbVHvcBFPME2nNFKNbS1XCesYZGlIlf3ot5EmuOXPlrzUHOWzQ2vFpIkqDg=="; - }; - }; "@microsoft/fetch-event-source-2.0.1" = { name = "_at_microsoft_slash_fetch-event-source"; packageName = "@microsoft/fetch-event-source"; @@ -9509,15 +9113,6 @@ let sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; }; }; - "@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" = { - name = "_at_nicolo-ribaudo_slash_eslint-scope-5-internals"; - packageName = "@nicolo-ribaudo/eslint-scope-5-internals"; - version = "5.1.1-v1"; - src = fetchurl { - url = "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz"; - sha512 = "54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg=="; - }; - }; "@nicolo-ribaudo/semver-v6-6.3.3" = { name = "_at_nicolo-ribaudo_slash_semver-v6"; packageName = "@nicolo-ribaudo/semver-v6"; @@ -9842,13 +9437,13 @@ let sha512 = "42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA=="; }; }; - "@npmcli/package-json-4.0.0" = { + "@npmcli/package-json-4.0.1" = { name = "_at_npmcli_slash_package-json"; packageName = "@npmcli/package-json"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/package-json/-/package-json-4.0.0.tgz"; - sha512 = "ZeXtZBQ/xjSUmrZj9R1Y2gsQRfkdhP5H31SCieJbAd8bHbn4YRglOoajcEZTJTM9m9BuEE7KiDcMPEoD/OgJkw=="; + url = "https://registry.npmjs.org/@npmcli/package-json/-/package-json-4.0.1.tgz"; + sha512 = "lRCEGdHZomFsURroh522YvA/2cVb9oPIJrjHanCJZkiasz1BzcnLr3tBJhlV7S86MBJBuAQ33is2D60YitZL2Q=="; }; }; "@npmcli/promise-spawn-1.3.2" = { @@ -9896,130 +9491,130 @@ let sha512 = "NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA=="; }; }; - "@nrwl/devkit-16.5.2" = { + "@nrwl/devkit-16.5.3" = { name = "_at_nrwl_slash_devkit"; packageName = "@nrwl/devkit"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.5.2.tgz"; - sha512 = "4L8cHD6cDTVWqylzM9vNbh8MuujsBpEP0yiTKQOBfAkTWpp/PcyFsnCMtYEiaWIQ5xSrruVbL5pb9KEL4ayLAg=="; + url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.5.3.tgz"; + sha512 = "a/XtuamF0PbiW8glJwI91Tx234qNYCF0PULyk2tjqp/idefiJlbb1eIkPz3kTWvZUG6tvPLdmwzpdHOqqH13Aw=="; }; }; - "@nrwl/tao-16.5.2" = { + "@nrwl/tao-16.5.3" = { name = "_at_nrwl_slash_tao"; packageName = "@nrwl/tao"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/tao/-/tao-16.5.2.tgz"; - sha512 = "4vQt0Jj9xHc8SpNgM2TxkPZrkjf4ayNW7elgt5rlOT1yD3Q1Fn3/VHb3cWtm/RC2vSckB4qUEuFGpdEU8wEnCg=="; + url = "https://registry.npmjs.org/@nrwl/tao/-/tao-16.5.3.tgz"; + sha512 = "GHL8NU2P/kMahXo9lhExTgG1ow9sI3CbCe8E+UPgp4GOscIJypCpD5FuvwmkYJHgMzAx1nknlDYXN12xEe7QVg=="; }; }; - "@nx/devkit-16.5.2" = { + "@nx/devkit-16.5.3" = { name = "_at_nx_slash_devkit"; packageName = "@nx/devkit"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/devkit/-/devkit-16.5.2.tgz"; - sha512 = "QDOQeFzVhQCA65g+2RfoGKZBUnCb151+F7/PvwRESEM+jybXHoXwR9PSE3ClnnmO/d0LUKB2ohU3Z9WQrQDALQ=="; + url = "https://registry.npmjs.org/@nx/devkit/-/devkit-16.5.3.tgz"; + sha512 = "szsBpO4ZYEwilUZMEjpmvg8ritl8C7jEAkAq3k2CxEdwE24cDBPwjXWnbc4YffvYW9gatDt+n93in5XYXWT5CA=="; }; }; - "@nx/nx-darwin-arm64-16.5.2" = { + "@nx/nx-darwin-arm64-16.5.3" = { name = "_at_nx_slash_nx-darwin-arm64"; packageName = "@nx/nx-darwin-arm64"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.5.2.tgz"; - sha512 = "myiNbDJLhhVHRLo6z3TeiaUeYTWdvBR3RdHQq4szTgb82Bnn8ruzteRGGJwKZd551YlttRcieBysxzUzHkmVBg=="; + url = "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.5.3.tgz"; + sha512 = "HS3R/vRVFwOjZ0l1y3h1UMSd7Zfh4NQ2qDe1FSOfA38AXNftyWNCnZ1kkOikVjJKCpwKXls56XcPDu+2hbqSDA=="; }; }; - "@nx/nx-darwin-x64-16.5.2" = { + "@nx/nx-darwin-x64-16.5.3" = { name = "_at_nx_slash_nx-darwin-x64"; packageName = "@nx/nx-darwin-x64"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.5.2.tgz"; - sha512 = "m354qmKrv7a5eD9Qv8bGEmrLCBEyCS6/y0PyOR32Dmi7qwlgHsQ4FfVkOnlWefC5ednhFLJQT6yxwhg8cFGDxw=="; + url = "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.5.3.tgz"; + sha512 = "3QEZkliJy+rk5UrcBsMnExBIAXmjqd4dHBDGH1eo0w85/3Bih3Z9QxU/n+3tEewvUCCx4o4kg+bya/hVz23V6g=="; }; }; - "@nx/nx-freebsd-x64-16.5.2" = { + "@nx/nx-freebsd-x64-16.5.3" = { name = "_at_nx_slash_nx-freebsd-x64"; packageName = "@nx/nx-freebsd-x64"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.5.2.tgz"; - sha512 = "qrR9yxcC2BLnw9JulecILmyp6Jco9unHHzQcfhLZTpw5c1PNHmZzHwJ3i3iNEf1o2kXEIa+SlOCis9ndvNQQVA=="; + url = "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.5.3.tgz"; + sha512 = "FyJ2xUBPifO0y9LoVuS0CjwN+GGsYSy+O1y541eh8j4Y86/xcPx0j+fhHhh3MDnKA9ftjbq+vrqgs84NHmIAAw=="; }; }; - "@nx/nx-linux-arm-gnueabihf-16.5.2" = { + "@nx/nx-linux-arm-gnueabihf-16.5.3" = { name = "_at_nx_slash_nx-linux-arm-gnueabihf"; packageName = "@nx/nx-linux-arm-gnueabihf"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.5.2.tgz"; - sha512 = "+I1Oj54caDymMsQuRu/l4ULS4RVvwDUM1nXey5JhWulDOUF//09Ckz03Q9p0NCnvBvQd3SyE65++PMfZrrurbA=="; + url = "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.5.3.tgz"; + sha512 = "Zn343k/satXGWEJjh56+Y/Uxtsl1aCyUtq0OPxznwx/ZGG+Sw2wN/ZEnePEh0OB1/yZ2uWAFRHVSA2fYPrmdhQ=="; }; }; - "@nx/nx-linux-arm64-gnu-16.5.2" = { + "@nx/nx-linux-arm64-gnu-16.5.3" = { name = "_at_nx_slash_nx-linux-arm64-gnu"; packageName = "@nx/nx-linux-arm64-gnu"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.5.2.tgz"; - sha512 = "4Q4jpgtNBTb4lMegFKS9hkzS/WttH3MxkgM//8qs1zhgUz/AsuXTitBo71E3xCnQl/i38p0eIpiKXXwBJeHgDw=="; + url = "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.5.3.tgz"; + sha512 = "ACUhKWHe7C7IopyIwXAoHx/phaZudBOu+pZwzVDaRy2xn78tdzJQrOySsQ7YmBGoGSXEAd5+3pVVXnXcRNJ2aA=="; }; }; - "@nx/nx-linux-arm64-musl-16.5.2" = { + "@nx/nx-linux-arm64-musl-16.5.3" = { name = "_at_nx_slash_nx-linux-arm64-musl"; packageName = "@nx/nx-linux-arm64-musl"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.5.2.tgz"; - sha512 = "VLukS/pfenr/Qw/EUn3GPAREDVXuSmfKeYBQKkALXEK6cRVQhXFXMLGHgMemCYbpoUJyFtFEO94PKV7VU7wZPg=="; + url = "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.5.3.tgz"; + sha512 = "eNrVa1Oaf42kEiCoJu01NlmGs6hQMzDhHiQ/DBKxMePW1bh4O5FEQUtYp1K/AKPcHH5270VNz0eAl164+fMqpQ=="; }; }; - "@nx/nx-linux-x64-gnu-16.5.2" = { + "@nx/nx-linux-x64-gnu-16.5.3" = { name = "_at_nx_slash_nx-linux-x64-gnu"; packageName = "@nx/nx-linux-x64-gnu"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.5.2.tgz"; - sha512 = "TAGmY+MXbNl/aGg2KMvtg53rbmX0XHwnJRQtjhjqjAyvaOfFWI/WOqTU7xf/QCkXBUIK0D9xHWpALfA/fZFCBA=="; + url = "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.5.3.tgz"; + sha512 = "ZAW+Oar+WEwbmu8KFw80qDpT9y3qmWZdVD5wNRX5CMByuVJ3ly7MJbtD/rEDtvAUOgSMJikuGsK0jQ6acm+X/A=="; }; }; - "@nx/nx-linux-x64-musl-16.5.2" = { + "@nx/nx-linux-x64-musl-16.5.3" = { name = "_at_nx_slash_nx-linux-x64-musl"; packageName = "@nx/nx-linux-x64-musl"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.5.2.tgz"; - sha512 = "YyWmqcNbZgU76+LThAt+0arx9C2ewfI5UUI6kooZRniAd408EA2xl5fx2AWLLrISGH4nTb5p20HGmeWfGqjHPA=="; + url = "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.5.3.tgz"; + sha512 = "jM2igA26dd0YVj9w/Pv2x3ZUUziVP4H3rFzYDAd80sQqLYWqELr6Fljyvj/2C+o+mOfVcw85+yfessjlPz8K8Q=="; }; }; - "@nx/nx-win32-arm64-msvc-16.5.2" = { + "@nx/nx-win32-arm64-msvc-16.5.3" = { name = "_at_nx_slash_nx-win32-arm64-msvc"; packageName = "@nx/nx-win32-arm64-msvc"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.5.2.tgz"; - sha512 = "pl7LluCc/57kl9VZ1ES27ym16ps4zgfCIeJiF8Ne8C6ALgt7C3PEG6417sFqbQw5J7NhsZ1aTb3eJ9fa9hurhA=="; + url = "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.5.3.tgz"; + sha512 = "gEP6ekFXLfvRWezSvQoHxV+vhKavuA/Lhz/AifYAIgdJEmKUPqVdnUtdkYwU0Ygn/a11KqbFh8J4TikXIkVxYw=="; }; }; - "@nx/nx-win32-x64-msvc-16.5.2" = { + "@nx/nx-win32-x64-msvc-16.5.3" = { name = "_at_nx_slash_nx-win32-x64-msvc"; packageName = "@nx/nx-win32-x64-msvc"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.5.2.tgz"; - sha512 = "bKSMElhzP37MkzWQ/Y12pQlesZ6TxwOOqwoaK/vHe6ZtxPxvG2+U8tQ21Nw5L3KyrDCnU5MJHGFtQVHHHt5MwA=="; + url = "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.5.3.tgz"; + sha512 = "QTpDoqxQq7wSuErkCgQoFegaUZ3D9lgmpS20zexlHm43SwS/MXtqRm9i5XNoJPTx19rpJ7gqaOm6+eOkOYLETg=="; }; }; - "@oclif/color-1.0.8" = { + "@oclif/color-1.0.9" = { name = "_at_oclif_slash_color"; packageName = "@oclif/color"; - version = "1.0.8"; + version = "1.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/color/-/color-1.0.8.tgz"; - sha512 = "XD1MLzkVsPzlkTN6OV0DeN/5iK/bv/MpGRnAZ+lCc20LO0Tyjyph6DUdoRNTJ4iMqliJt32uE3FrFK+Qms2Kjg=="; + url = "https://registry.npmjs.org/@oclif/color/-/color-1.0.9.tgz"; + sha512 = "ntc/fZwuf4NRfYbXVoUNFyMB9IxVx/ls/WbSLKbkD9UpsmwY1I3J4DJKKRFRpenmTuxGQW8Lyzm7X3vhzHpDQA=="; }; }; "@oclif/command-1.8.0" = { @@ -10031,13 +9626,13 @@ let sha512 = "5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw=="; }; }; - "@oclif/command-1.8.32" = { + "@oclif/command-1.8.33" = { name = "_at_oclif_slash_command"; packageName = "@oclif/command"; - version = "1.8.32"; + version = "1.8.33"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.32.tgz"; - sha512 = "vPoSvNM08RCHRcwBK9AyXQW+Np4Ba1ny6tSHTT8G+mqrYDWoCNBx0BD4n58laB1X8rFJ8rMi+L5S8tPAnAZ93w=="; + url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.33.tgz"; + sha512 = "7ZPvThrZaICX1hoZ/S82DaGgjI3UGG2rveBfxCE9JlgvrDQQiHLA6a/N7Hf3jq6t51AkXbBMhaMOBzXtSd73QA=="; }; }; "@oclif/config-1.17.0" = { @@ -10058,13 +9653,13 @@ let sha512 = "hbZv4N3J9pE4yzQIqrklJFgXhqYiQTN3uV5uBC8VaIZ1qEPzZv6lN9rDmcYIuEOBPzQvvSIBuaH/IDzo3F71PQ=="; }; }; - "@oclif/config-1.18.13" = { + "@oclif/config-1.18.14" = { name = "_at_oclif_slash_config"; packageName = "@oclif/config"; - version = "1.18.13"; + version = "1.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/config/-/config-1.18.13.tgz"; - sha512 = "Ja0KJvRBYm6xwgJpdn9oZ1DofE7MZ2wB320dblHDOdVQcpKRHnX64R0BlEqXsU6jJO7w95iy1geeKFxIVmfuWA=="; + url = "https://registry.npmjs.org/@oclif/config/-/config-1.18.14.tgz"; + sha512 = "cLT/deFDm6A69LjAfV5ZZMMvMDlPt7sjMHYBrsOgQ5Upq5kDMgbaZM3hEbw74DmYIsuhq2E2wYrPD+Ax2qAfkA=="; }; }; "@oclif/config-1.18.2" = { @@ -10103,13 +9698,13 @@ let sha512 = "316DLfrHQDYmWDriI4Woxk9y1wVUrPN1sZdbQLHdOdlTA9v/twe7TdHpWOriEypfl6C85NWEJKc1870yuLtjrQ=="; }; }; - "@oclif/core-2.9.3" = { + "@oclif/core-2.9.4" = { name = "_at_oclif_slash_core"; packageName = "@oclif/core"; - version = "2.9.3"; + version = "2.9.4"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/core/-/core-2.9.3.tgz"; - sha512 = "0KLiVpXCJivAjLoj/LAXQf85MtGzyforyPkgNJQEP6QQugnuq2kHcG+DojWEQYz0sADXT2259EdPibslEThUMg=="; + url = "https://registry.npmjs.org/@oclif/core/-/core-2.9.4.tgz"; + sha512 = "eFRRpV+tJ6nMkhay2M9IppjSF3atRrgj6Qo83qUslaFSAW3NAl4mIhx1mKmTwQx5rgSrar03xICtSAWJ6gZtag=="; }; }; "@oclif/errors-1.3.4" = { @@ -10139,13 +9734,13 @@ let sha512 = "fYaU4aDceETd89KXP+3cLyg9EHZsLD3RxF2IU9yxahhBpspWjkWi3Dy3bTgcwZ3V47BgxQaGapzJWDM33XIVDQ=="; }; }; - "@oclif/help-1.0.11" = { + "@oclif/help-1.0.12" = { name = "_at_oclif_slash_help"; packageName = "@oclif/help"; - version = "1.0.11"; + version = "1.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.11.tgz"; - sha512 = "zc44XfjG8Ff0y9cF9LoLd6MBssV7vHuwFpdvvSsLD/pdjGid+EOgAwy/jYYDajThxWPatcVscKXlnDvyFQ8Y0A=="; + url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.12.tgz"; + sha512 = "nvjgcZm2HsIEXEDYqo0+lXMSNe6Bx9vxZnJ9HqxMdSX6CNxr9ovvm5EilNGc9IxbtNXYlct+DE1le6urGmrlrw=="; }; }; "@oclif/linewrap-1.0.0" = { @@ -10157,13 +9752,13 @@ let sha512 = "Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw=="; }; }; - "@oclif/parser-3.8.14" = { + "@oclif/parser-3.8.15" = { name = "_at_oclif_slash_parser"; packageName = "@oclif/parser"; - version = "3.8.14"; + version = "3.8.15"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/parser/-/parser-3.8.14.tgz"; - sha512 = "dGF3/Db+YZTxlR2f5cUbFcUXhrGxeVu9aT+Y/J7Wt6KMRiBJ6igIBChDHvRjjQVujR00OpdkS6fyLgBFI5meWQ=="; + url = "https://registry.npmjs.org/@oclif/parser/-/parser-3.8.15.tgz"; + sha512 = "M7ljUexkyJkR2efqG+PL31fAWyWDW1dczaMKoY+sOVqk78sm23iDMOJj/1vkfUrhO+W8dhseoPFnpSB6Hewfyw=="; }; }; "@oclif/plugin-autocomplete-0.1.5" = { @@ -10220,13 +9815,13 @@ let sha512 = "QuSiseNRJygaqAdABYFWn/H1CwIZCp9zp/PLid6yXvy6VcQV7OenEFF5XuYaCvSARe2Tg9r8Jqls5+fw1A9CbQ=="; }; }; - "@oclif/plugin-help-5.2.13" = { + "@oclif/plugin-help-5.2.14" = { name = "_at_oclif_slash_plugin-help"; packageName = "@oclif/plugin-help"; - version = "5.2.13"; + version = "5.2.14"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.2.13.tgz"; - sha512 = "8+uJ9fxZhb76T+NiHDyLQWmHVhu1ONj+e47w3bMLe3+absfuGsWYZm5+W8ApJxQKoLgB5pW810idO0f7iP/4tw=="; + url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.2.14.tgz"; + sha512 = "7hMLc6zqxeRfG4nvHHQPpbaBj60efM3ULFkCpHZkdLms/ezIkNo40F661QuraIjMP/NN+U6VSfBCGuPkRyxVkA=="; }; }; "@oclif/plugin-help-5.2.9" = { @@ -10238,13 +9833,13 @@ let sha512 = "0J3oowPURZJ4Dn1p1WpQ46E4+CoV20KTn1cvsNiDl6Hmbw+qoljKQnArJJzNFeZQxWo4R7/S42PrzKJTVYh68Q=="; }; }; - "@oclif/plugin-not-found-2.3.31" = { + "@oclif/plugin-not-found-2.3.32" = { name = "_at_oclif_slash_plugin-not-found"; packageName = "@oclif/plugin-not-found"; - version = "2.3.31"; + version = "2.3.32"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-2.3.31.tgz"; - sha512 = "KHBCDJbDrkFc5vuPxg4JZ3wBTrdPPHOQOWp4bLCV4cnVSUHBKnfCqnCg2aXmRb97nbzY3P13/i8Th3KQjArqmg=="; + url = "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-2.3.32.tgz"; + sha512 = "tVFHfR9XRUWrcxBugHjFr7HUmbLheDX05IaFr7fMF2hcvcqDs3DBjy42WKEoXSaBVTcST6KKhoSy2UVX8pk9Fg=="; }; }; "@oclif/plugin-plugins-2.4.7" = { @@ -10256,22 +9851,22 @@ let sha512 = "6fzUDLWrSK7n6+EBrEekEEYrYTCneRoOF9TzojkjuFn1+ailvUlr98G90bblxKOyy8fqMe7QjvqwTgIDQ9ZIzg=="; }; }; - "@oclif/plugin-update-3.1.26" = { + "@oclif/plugin-update-3.1.27" = { name = "_at_oclif_slash_plugin-update"; packageName = "@oclif/plugin-update"; - version = "3.1.26"; + version = "3.1.27"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-3.1.26.tgz"; - sha512 = "5fd/jJiV7wNHFydT/RZFJbrH+SGKWlU/rEzSMvDIU8VccUTDYf2wyOgmYdRHjvedTKPiFUm+PgWYlTYuqt94uQ=="; + url = "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-3.1.27.tgz"; + sha512 = "QJZGZ7WZIdE0g1PQ9E/jdfpStAaGI906f59dKWYyVx82vDyYc2hSMdiGiu1KFF6Q0ndR3Az37DSPVp1RPS+lpQ=="; }; }; - "@oclif/plugin-warn-if-update-available-2.0.43" = { + "@oclif/plugin-warn-if-update-available-2.0.44" = { name = "_at_oclif_slash_plugin-warn-if-update-available"; packageName = "@oclif/plugin-warn-if-update-available"; - version = "2.0.43"; + version = "2.0.44"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.0.43.tgz"; - sha512 = "8nMnBJxV158bKGStsSqcg9FY1PD+WaNc6Soz74py9aq956i+wJax5xL8+U9J5/UmNixHzhdEzlioyHcUH/7CXQ=="; + url = "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.0.44.tgz"; + sha512 = "52Ww0B4F1tMhwjw2fe73lhmfDI/F4ynf3ur7/xnpnVBEvj5JG4sqolbEJV/0lV85+4dJNsYJRxubbPYjxcbCcA=="; }; }; "@oclif/screen-1.0.4" = { @@ -10283,13 +9878,13 @@ let sha512 = "60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw=="; }; }; - "@oclif/screen-3.0.5" = { + "@oclif/screen-3.0.6" = { name = "_at_oclif_slash_screen"; packageName = "@oclif/screen"; - version = "3.0.5"; + version = "3.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.5.tgz"; - sha512 = "8DtTAZ0CsKdYjvGadITQTdpEhfhy6UQ3Q/bj4dVSqTGDS07BMZbPXUo9aqLhWKxbJLQiANJjgU10iYPUHfw8WQ=="; + url = "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.6.tgz"; + sha512 = "nEv7dFPxCrWrvK6dQ8zya0/Kb54EXVcwIKV9capjSa89ZDoOo+qH0YSo4/eQVECXgW3eUvgKLDIcIt62YBk0HA=="; }; }; "@octokit/auth-token-2.5.0" = { @@ -10544,6 +10139,15 @@ let sha512 = "D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA=="; }; }; + "@one-ini/wasm-0.1.1" = { + name = "_at_one-ini_slash_wasm"; + packageName = "@one-ini/wasm"; + version = "0.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@one-ini/wasm/-/wasm-0.1.1.tgz"; + sha512 = "XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw=="; + }; + }; "@opencensus/core-0.0.8" = { name = "_at_opencensus_slash_core"; packageName = "@opencensus/core"; @@ -11417,15 +11021,6 @@ let sha512 = "SXsM27SGH3yTWKc2fKR4SYNxsmnvuBQ9dd6QHtEWmiZ/VqaOYPAIlS8+vMcn27YLtAEBGvNRSh3TPNvtjZgfqA=="; }; }; - "@pmmmwh/react-refresh-webpack-plugin-0.5.10" = { - name = "_at_pmmmwh_slash_react-refresh-webpack-plugin"; - packageName = "@pmmmwh/react-refresh-webpack-plugin"; - version = "0.5.10"; - src = fetchurl { - url = "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz"; - sha512 = "j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA=="; - }; - }; "@pnpm/config.env-replace-1.1.0" = { name = "_at_pnpm_slash_config.env-replace"; packageName = "@pnpm/config.env-replace"; @@ -11597,24 +11192,6 @@ let sha512 = "J/p2PcgT39Za4wpukbN6iUkEUvL5aE7Bs9kXBeEkrjEgc0Uu7J7B2ypwx9J0qM3m3lk2273RT5/4oGv8pfFLcg=="; }; }; - "@primer/octicons-react-19.4.0" = { - name = "_at_primer_slash_octicons-react"; - packageName = "@primer/octicons-react"; - version = "19.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@primer/octicons-react/-/octicons-react-19.4.0.tgz"; - sha512 = "6zFbvbQYQdGd9cIgNscnofSe0LkV28PvcL4mWPoKFV1u7Mdn3MlOjgawzuA2oXB18LLkMadTJ4Ky77FybUlrBg=="; - }; - }; - "@primer/primitives-7.11.14" = { - name = "_at_primer_slash_primitives"; - packageName = "@primer/primitives"; - version = "7.11.14"; - src = fetchurl { - url = "https://registry.npmjs.org/@primer/primitives/-/primitives-7.11.14.tgz"; - sha512 = "z/yUTEkbGhvFqoJ8rpLz3pHJfLNRdoyNd/xNdAl/LKqA97Z60tsSVJMfxNMXi3aS9dCIC1dexK5/Gp4y9JrRkg=="; - }; - }; "@prisma/engines-5.0.0" = { name = "_at_prisma_slash_engines"; packageName = "@prisma/engines"; @@ -11876,13 +11453,13 @@ let sha512 = "9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw=="; }; }; - "@redocly/openapi-core-1.0.0-beta.131" = { + "@redocly/openapi-core-1.0.0-rc.2" = { name = "_at_redocly_slash_openapi-core"; packageName = "@redocly/openapi-core"; - version = "1.0.0-beta.131"; + version = "1.0.0-rc.2"; src = fetchurl { - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.131.tgz"; - sha512 = "Dri3Oad3NwcyKgtkYz6hyJO+bAD531ppPrPxNo9Xfqza9LkUtJ6Vi2E6OSRGTWb94iTyEkhrJPbJE56/PbaKhQ=="; + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-rc.2.tgz"; + sha512 = "YoYfvDphQktgXFC87vCwoREghCe+MyUbpiVPUv93w/ZrbTENpgYlJVLjN4KY3VcC6iSaaI/qsHr2r46M5t3oLQ=="; }; }; "@remix-run/dev-1.18.1" = { @@ -11894,22 +11471,22 @@ let sha512 = "V9RCT+3VDB0wLbwq8Dp0XO6Cc1LxY4tCyxJ5loyX0L8sPBCgQ3/vMre3VKr8jLhjnfUGSrbXADxFM8/bq4ZeDQ=="; }; }; - "@remix-run/express-1.18.1" = { + "@remix-run/express-1.19.0" = { name = "_at_remix-run_slash_express"; packageName = "@remix-run/express"; - version = "1.18.1"; + version = "1.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/express/-/express-1.18.1.tgz"; - sha512 = "jI751cvY2pi4ZD7/+5qAC1Xyt049EM3baNhm5VATsVaTNVOJbNxazOvKflv+bLbpw1lV9sF3MAAMnig5YqStMg=="; + url = "https://registry.npmjs.org/@remix-run/express/-/express-1.19.0.tgz"; + sha512 = "wPDKKJiwYosC8rOHrq0ONe3qKLnmy56osFoD04Y+WCPzua6LkpatLvymzlO+4j1Xwe7szMrDbUBsSHo7ZknCkg=="; }; }; - "@remix-run/node-1.18.1" = { + "@remix-run/node-1.19.0" = { name = "_at_remix-run_slash_node"; packageName = "@remix-run/node"; - version = "1.18.1"; + version = "1.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/node/-/node-1.18.1.tgz"; - sha512 = "Civ8hQGdQKxmYtDvzV+8sYOPiLfH2FtT35iSwEqDN49uraInljoWngSwzrRmKkilhI4eABSN9fv0trUDyOTBrQ=="; + url = "https://registry.npmjs.org/@remix-run/node/-/node-1.19.0.tgz"; + sha512 = "gL0IBjcblddC85tQ5r7VHtS/oOVoWOoso+ZCC/G0SzZO/wEiq3bpi9c6UA1/bI1a9Kvgr+wKclWl9XwpWCGwvQ=="; }; }; "@remix-run/router-1.7.1" = { @@ -11921,13 +11498,22 @@ let sha512 = "bgVQM4ZJ2u2CM8k1ey70o1ePFXsEzYVZoWghh6WjM8p59jQ7HxzbHW4SbnWFG7V9ig9chLawQxDTZ3xzOF8MkQ=="; }; }; - "@remix-run/serve-1.18.1" = { + "@remix-run/router-1.7.2" = { + name = "_at_remix-run_slash_router"; + packageName = "@remix-run/router"; + version = "1.7.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@remix-run/router/-/router-1.7.2.tgz"; + sha512 = "7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A=="; + }; + }; + "@remix-run/serve-1.19.0" = { name = "_at_remix-run_slash_serve"; packageName = "@remix-run/serve"; - version = "1.18.1"; + version = "1.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/serve/-/serve-1.18.1.tgz"; - sha512 = "u3SFXjUYmm3RV02QMGfCrjw7qMxg7y3wpnDf9RWfZtZG6oQEHpGkJeUXdSJjVGCmGQlWtGoVaFZ0fOQllu9G4g=="; + url = "https://registry.npmjs.org/@remix-run/serve/-/serve-1.19.0.tgz"; + sha512 = "OK3U4p/jSE5tOiyC+mSZGWU1fTMhUHiVNElr1mEhgLcMyLHaorenz9cY7ybInfVnpfBcWOmOeWWCJHLfcVjYJg=="; }; }; "@remix-run/server-runtime-1.18.1" = { @@ -11939,6 +11525,15 @@ let sha512 = "E0sQlgUQG2ytFmUH7zRH7n2MufnP6WWWq1KpRoiuwJZxfTFIzaiCCIiNqbP/uXGWDGcwEevpawNUzzszL1tT0w=="; }; }; + "@remix-run/server-runtime-1.19.0" = { + name = "_at_remix-run_slash_server-runtime"; + packageName = "@remix-run/server-runtime"; + version = "1.19.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.19.0.tgz"; + sha512 = "Qwo/7omjLxbBB7nnzzgWd/PAScMjLEjNCeBkOw9qdgAubPSGqGakqG4w036fwQ3rXB5OlHsTOZI4Hxoh4AJHSg=="; + }; + }; "@remix-run/web-blob-3.0.4" = { name = "_at_remix-run_slash_web-blob"; packageName = "@remix-run/web-blob"; @@ -12110,15 +11705,6 @@ let sha512 = "vY4kTLH2S3bP+puU5x7hlAxHv+ulFgcK6Zn3efKSr0M0KnZ9A3qeAjZteIpkowEFfUeMPNg2dvvoFRJA9zqxSw=="; }; }; - "@rollup/plugin-babel-5.3.1" = { - name = "_at_rollup_slash_plugin-babel"; - packageName = "@rollup/plugin-babel"; - version = "5.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz"; - sha512 = "WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q=="; - }; - }; "@rollup/plugin-commonjs-22.0.2" = { name = "_at_rollup_slash_plugin-commonjs"; packageName = "@rollup/plugin-commonjs"; @@ -12128,24 +11714,6 @@ let sha512 = "//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg=="; }; }; - "@rollup/plugin-node-resolve-11.2.1" = { - name = "_at_rollup_slash_plugin-node-resolve"; - packageName = "@rollup/plugin-node-resolve"; - version = "11.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz"; - sha512 = "yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg=="; - }; - }; - "@rollup/plugin-replace-2.4.2" = { - name = "_at_rollup_slash_plugin-replace"; - packageName = "@rollup/plugin-replace"; - version = "2.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz"; - sha512 = "IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg=="; - }; - }; "@rollup/pluginutils-3.1.0" = { name = "_at_rollup_slash_pluginutils"; packageName = "@rollup/pluginutils"; @@ -12164,15 +11732,6 @@ let sha512 = "iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="; }; }; - "@rushstack/eslint-patch-1.3.2" = { - name = "_at_rushstack_slash_eslint-patch"; - packageName = "@rushstack/eslint-patch"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz"; - sha512 = "V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw=="; - }; - }; "@rushstack/heft-config-file-0.12.4" = { name = "_at_rushstack_slash_heft-config-file"; packageName = "@rushstack/heft-config-file"; @@ -12326,13 +11885,13 @@ let sha512 = "/6JGNTkedAaGCxxWPHLHLzPAv+bJdPK1X4BvdQFfjpUUu8ccwWf5reGRxGf/vPRfly24dspufAwMWkgALW3gbw=="; }; }; - "@segment/ajv-human-errors-2.8.0" = { + "@segment/ajv-human-errors-2.11.0" = { name = "_at_segment_slash_ajv-human-errors"; packageName = "@segment/ajv-human-errors"; - version = "2.8.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@segment/ajv-human-errors/-/ajv-human-errors-2.8.0.tgz"; - sha512 = "GVBRRmX8cuHysaREs6ocrh1IgAf5ynANPbsiwS90xtjQMYTh1d5ieTW1mLYSviVyvYOPF8wVARtl14B17qfOWA=="; + url = "https://registry.npmjs.org/@segment/ajv-human-errors/-/ajv-human-errors-2.11.0.tgz"; + sha512 = "Aeb0L30mSdour4feuxcMlviNk+9UhmdzKHU652JWRSHg3aqxGz2SJ7DElZgO9AYPz25gahQhlRhtmrYA67vMJw=="; }; }; "@segment/loosely-validate-event-2.0.0" = { @@ -12353,13 +11912,13 @@ let sha512 = "P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ=="; }; }; - "@sentry-internal/tracing-7.58.1" = { + "@sentry-internal/tracing-7.59.3" = { name = "_at_sentry-internal_slash_tracing"; packageName = "@sentry-internal/tracing"; - version = "7.58.1"; + version = "7.59.3"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.58.1.tgz"; - sha512 = "kOWKqyjYdDgvO6CacXneE9UrFQHT3BXF1UpCAlnHchW/TqRFmg89sJAEUjEPGzN7y6IaX1G4j2dBPDE0OFQi3w=="; + url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.59.3.tgz"; + sha512 = "/RkBj/0zQKGsW/UYg6hufrLHHguncLfu4610FCPWpVp0K5Yu5ou8/Aw8D76G3ZxD2TiuSNGwX0o7TYN371ZqTQ=="; }; }; "@sentry/core-6.19.7" = { @@ -12371,13 +11930,13 @@ let sha512 = "tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw=="; }; }; - "@sentry/core-7.58.1" = { + "@sentry/core-7.59.3" = { name = "_at_sentry_slash_core"; packageName = "@sentry/core"; - version = "7.58.1"; + version = "7.59.3"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.58.1.tgz"; - sha512 = "hpeB5fZ5T6Jg1CBqz486jHgWuJ5R/HD0wyYX+S3LDDsHCJo6V3TxNuoxYDlTTerRRfZdTwr9GYJXskehpU26IA=="; + url = "https://registry.npmjs.org/@sentry/core/-/core-7.59.3.tgz"; + sha512 = "cGBOwT9gziIn50fnlBH1WGQlGcHi7wrbvOCyrex4MxKnn1LSBYWBhwU0ymj8DI/9MyPrGDNGkrgpV0WJWBSClg=="; }; }; "@sentry/hub-6.19.7" = { @@ -12389,13 +11948,13 @@ let sha512 = "y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA=="; }; }; - "@sentry/integrations-7.58.1" = { + "@sentry/integrations-7.59.3" = { name = "_at_sentry_slash_integrations"; packageName = "@sentry/integrations"; - version = "7.58.1"; + version = "7.59.3"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.58.1.tgz"; - sha512 = "fKZV/QDPM7rIZhaJpFwgxD4rzWLtRuag7cOWfvHCsezJnhXEF8u45sBak/VWmSr8SbcvJAIJSZbWYi0N91hNHQ=="; + url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.59.3.tgz"; + sha512 = "w4e0kbTKN2g9u0PDaXVXK1QDO805XnlyrjG1GlGRt+lsB2TgZYxez34p1H/5n7UXLQ5SZq0ZmcHjqdNd1issUg=="; }; }; "@sentry/minimal-6.19.7" = { @@ -12416,13 +11975,13 @@ let sha512 = "gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg=="; }; }; - "@sentry/node-7.58.1" = { + "@sentry/node-7.59.3" = { name = "_at_sentry_slash_node"; packageName = "@sentry/node"; - version = "7.58.1"; + version = "7.59.3"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.58.1.tgz"; - sha512 = "XsSu0xg5SYcltMbatnRBcIZw9pXwGJoGbYDLuPhhuqBz2mnQ0mQ9Try9dn/agDU7KZzT0IyA1qkPXk0NkMe3rw=="; + url = "https://registry.npmjs.org/@sentry/node/-/node-7.59.3.tgz"; + sha512 = "5dG90YzmKjuy5TK04qDuc9LBxnGfqsZw8Oh9giwOBfQVCaFp7R14AXyQ1F8k3iUF+4sGeTvoqi9I/GKAItVmlA=="; }; }; "@sentry/types-6.19.7" = { @@ -12434,13 +11993,13 @@ let sha512 = "jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg=="; }; }; - "@sentry/types-7.58.1" = { + "@sentry/types-7.59.3" = { name = "_at_sentry_slash_types"; packageName = "@sentry/types"; - version = "7.58.1"; + version = "7.59.3"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.58.1.tgz"; - sha512 = "OnKG+yrilPBeVNQK3biF0u/4IDjwH+boJU1XzJOnYdMRO8uzTWxvaRqpt0C8sVE9VAetRi2eutkzOgCXZISRrw=="; + url = "https://registry.npmjs.org/@sentry/types/-/types-7.59.3.tgz"; + sha512 = "HQ/Pd3YHyIa4HM0bGfOsfI4ZF+sLVs6II9VtlS4hsVporm4ETl3Obld5HywO3aVYvWOk5j/bpAW9JYsxXjRG5A=="; }; }; "@sentry/utils-6.19.7" = { @@ -12452,13 +12011,13 @@ let sha512 = "z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA=="; }; }; - "@sentry/utils-7.58.1" = { + "@sentry/utils-7.59.3" = { name = "_at_sentry_slash_utils"; packageName = "@sentry/utils"; - version = "7.58.1"; + version = "7.59.3"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.58.1.tgz"; - sha512 = "iC9xZJBHp4+MDrZjKwcmMUhI5sTmpUcttwmsJL9HA6ACW+L1XX2eGSDky5pSlhhVFR7q7jJnQ7YUlMQ/jcd8eQ=="; + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.59.3.tgz"; + sha512 = "Q57xauMKuzd6S+POA1fmulfjzTsb/z118TNAfZZNkHqVB48hHBqgzdhbEBmN4jPCSKV2Cx7VJUoDZxJfzQyLUQ=="; }; }; "@serialport/binding-mock-10.2.2" = { @@ -12668,31 +12227,31 @@ let sha512 = "RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="; }; }; - "@sigstore/protobuf-specs-0.1.0" = { + "@sigstore/bundle-1.0.0" = { + name = "_at_sigstore_slash_bundle"; + packageName = "@sigstore/bundle"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@sigstore/bundle/-/bundle-1.0.0.tgz"; + sha512 = "yLvrWDOh6uMOUlFCTJIZEnwOT9Xte7NPXUqVexEKGSF5XtBAuSg5du0kn3dRR0p47a4ah10Y0mNt8+uyeQXrBQ=="; + }; + }; + "@sigstore/protobuf-specs-0.2.0" = { name = "_at_sigstore_slash_protobuf-specs"; packageName = "@sigstore/protobuf-specs"; - version = "0.1.0"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz"; - sha512 = "a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ=="; + url = "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.0.tgz"; + sha512 = "8ZhZKAVfXjIspDWwm3D3Kvj0ddbJ0HqDZ/pOs5cx88HpT8mVsotFrg7H1UMnXOuDHz6Zykwxn4mxG3QLuN+RUg=="; }; }; - "@sigstore/tuf-1.0.2" = { + "@sigstore/tuf-1.0.3" = { name = "_at_sigstore_slash_tuf"; packageName = "@sigstore/tuf"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz"; - sha512 = "vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q=="; - }; - }; - "@sinclair/typebox-0.24.51" = { - name = "_at_sinclair_slash_typebox"; - packageName = "@sinclair/typebox"; - version = "0.24.51"; - src = fetchurl { - url = "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz"; - sha512 = "1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA=="; + url = "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.3.tgz"; + sha512 = "2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg=="; }; }; "@sinclair/typebox-0.25.24" = { @@ -12776,13 +12335,13 @@ let sha512 = "t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw=="; }; }; - "@sindresorhus/is-5.5.1" = { + "@sindresorhus/is-5.5.2" = { name = "_at_sindresorhus_slash_is"; packageName = "@sindresorhus/is"; - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@sindresorhus/is/-/is-5.5.1.tgz"; - sha512 = "wTsEUhqTXg1NDW+o9aWANj4LxELwWjqN0F3ltsWwpYoh0NSlMWo+u7FluRrSF2E2uaPYx7dJ3FnTf69git/0ug=="; + url = "https://registry.npmjs.org/@sindresorhus/is/-/is-5.5.2.tgz"; + sha512 = "8ZMK+V6YpeZFfW6hU9uAeWVuq8v3t7BaG276gIO+kVqnAcLrHCXdFUOf7kgouyfAarkZtuavIqY3RsXTsTWviw=="; }; }; "@sinonjs/commons-1.8.6" = { @@ -12821,6 +12380,24 @@ let sha512 = "tb2h0b+JvMee+eAxTmhnyqyNk51UXIK949HnE14lFeezKsVJTB30maan+CO2IMwnig2wVYQH84B5qk6ylmKCuA=="; }; }; + "@smithy/chunked-blob-reader-1.0.2" = { + name = "_at_smithy_slash_chunked-blob-reader"; + packageName = "@smithy/chunked-blob-reader"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-1.0.2.tgz"; + sha512 = "B2x76NIPqC883lvnISprpO2eDlI41SznmoDTehoPbVpVcI2A7Nwg3nYA+p8XTpFF06cIFgjmOs9M0il2HquFQQ=="; + }; + }; + "@smithy/chunked-blob-reader-native-1.0.2" = { + name = "_at_smithy_slash_chunked-blob-reader-native"; + packageName = "@smithy/chunked-blob-reader-native"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-1.0.2.tgz"; + sha512 = "ychahynhO3kMhw/nWX3AAVaMeGezsH6ugc6UZ/P9DABgYcPkDMOmtZOOe3yGI9OYuLB/ZG4y+Gd0eHv5ClEdNw=="; + }; + }; "@smithy/config-resolver-1.0.2" = { name = "_at_smithy_slash_config-resolver"; packageName = "@smithy/config-resolver"; @@ -12893,6 +12470,15 @@ let sha512 = "kynyofLf62LvR8yYphPPdyHb8fWG3LepFinM/vWUTG2Q1pVpmPCM530ppagp3+q2p+7Ox0UvSqldbKqV/d1BpA=="; }; }; + "@smithy/hash-blob-browser-1.0.2" = { + name = "_at_smithy_slash_hash-blob-browser"; + packageName = "@smithy/hash-blob-browser"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-1.0.2.tgz"; + sha512 = "6SFzZ18aZNplDTvmbUhaxB83TVPGhe0FEAQInYQIj2lQd5Qraw2/KEE8HIfW4UxqxcoTSb0aYS0PqdUhI+dttQ=="; + }; + }; "@smithy/hash-node-1.0.2" = { name = "_at_smithy_slash_hash-node"; packageName = "@smithy/hash-node"; @@ -12920,6 +12506,15 @@ let sha512 = "pkyBnsBRpe+c/6ASavqIMRBdRtZNJEVJOEzhpxZ9JoAXiZYbkfaSMRA/O1dUxGdJ653GHONunnZ4xMo/LJ7utQ=="; }; }; + "@smithy/md5-js-1.0.2" = { + name = "_at_smithy_slash_md5-js"; + packageName = "@smithy/md5-js"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-1.0.2.tgz"; + sha512 = "0yUgIvIUt63Rb5+ErZTraQguc4Vu3Fw7NKJL0ozLnj1hcYDrt45pfQjUMztKBE7ve32vCnuSOA4LCAe3fudHZA=="; + }; + }; "@smithy/middleware-content-length-1.0.2" = { name = "_at_smithy_slash_middleware-content-length"; packageName = "@smithy/middleware-content-length"; @@ -13379,13 +12974,13 @@ let sha512 = "gwNAZSdUdxxzH8X2yf1YoDQmo9DYnqPhqFCaKx5alQa/SQG6DOG1taNeODq3wapLn6GDh0d5D8b1DVe7N6bWEw=="; }; }; - "@stoplight/spectral-core-1.18.2" = { + "@stoplight/spectral-core-1.18.3" = { name = "_at_stoplight_slash_spectral-core"; packageName = "@stoplight/spectral-core"; - version = "1.18.2"; + version = "1.18.3"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-core/-/spectral-core-1.18.2.tgz"; - sha512 = "bjNXo0VzXTDdFB3oKvVCAHW5rJ1/eMQzN6k1N5RW8tdEXMcEnI56MByRzADniVa+SvrutApK2u+9XwUZtIIT3w=="; + url = "https://registry.npmjs.org/@stoplight/spectral-core/-/spectral-core-1.18.3.tgz"; + sha512 = "YY8x7X2SWJIhGTLPol+eFiQpWPz0D0mJdkK2i4A0QJG68KkNhypP6+JBC7/Kz3XWjqr0L/RqAd+N5cQLPOKZGQ=="; }; }; "@stoplight/spectral-formats-1.5.0" = { @@ -13478,13 +13073,13 @@ let sha512 = "dwqYcDrGmEyUv5TWrDam5TGOxU72ufyQ7hnOIIDdmW5ezOwZaBFoR5XQ9AsH49w7wgvOqB2Bmo799pJPWnpCbg=="; }; }; - "@stoplight/types-13.15.0" = { + "@stoplight/types-13.16.0" = { name = "_at_stoplight_slash_types"; packageName = "@stoplight/types"; - version = "13.15.0"; + version = "13.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/types/-/types-13.15.0.tgz"; - sha512 = "pBLjVRrWGVd+KzTbL3qrmufSKIEp0UfziDBdt/nrTHPKrlrtVwaHdrrQMcpM23yJDU1Wcg4cHvhIuGtKCT5OmA=="; + url = "https://registry.npmjs.org/@stoplight/types/-/types-13.16.0.tgz"; + sha512 = "2ijZLaXRu+qp95ucSo0kkZ/8phZCQFbcpk2Mb2j2XDL7ZTYxaOKkYmZM+rB0xRJ0ihjm7bPmucPjoyQCZYr8oA=="; }; }; "@stoplight/types-13.6.0" = { @@ -13541,132 +13136,6 @@ let sha512 = "X1Iui3FUNZP18EUvysTHxt+Avu2nlVzyf90YM8OYgP6SGzTzzX/0JgObfO1AQQDzuZtNNz29bVh8h5R97JrjxA=="; }; }; - "@styled-system/background-5.1.2" = { - name = "_at_styled-system_slash_background"; - packageName = "@styled-system/background"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/background/-/background-5.1.2.tgz"; - sha512 = "jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A=="; - }; - }; - "@styled-system/border-5.1.5" = { - name = "_at_styled-system_slash_border"; - packageName = "@styled-system/border"; - version = "5.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/border/-/border-5.1.5.tgz"; - sha512 = "JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A=="; - }; - }; - "@styled-system/color-5.1.2" = { - name = "_at_styled-system_slash_color"; - packageName = "@styled-system/color"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/color/-/color-5.1.2.tgz"; - sha512 = "1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA=="; - }; - }; - "@styled-system/core-5.1.2" = { - name = "_at_styled-system_slash_core"; - packageName = "@styled-system/core"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/core/-/core-5.1.2.tgz"; - sha512 = "XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw=="; - }; - }; - "@styled-system/css-5.1.5" = { - name = "_at_styled-system_slash_css"; - packageName = "@styled-system/css"; - version = "5.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/css/-/css-5.1.5.tgz"; - sha512 = "XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A=="; - }; - }; - "@styled-system/flexbox-5.1.2" = { - name = "_at_styled-system_slash_flexbox"; - packageName = "@styled-system/flexbox"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/flexbox/-/flexbox-5.1.2.tgz"; - sha512 = "6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ=="; - }; - }; - "@styled-system/grid-5.1.2" = { - name = "_at_styled-system_slash_grid"; - packageName = "@styled-system/grid"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/grid/-/grid-5.1.2.tgz"; - sha512 = "K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg=="; - }; - }; - "@styled-system/layout-5.1.2" = { - name = "_at_styled-system_slash_layout"; - packageName = "@styled-system/layout"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/layout/-/layout-5.1.2.tgz"; - sha512 = "wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw=="; - }; - }; - "@styled-system/position-5.1.2" = { - name = "_at_styled-system_slash_position"; - packageName = "@styled-system/position"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/position/-/position-5.1.2.tgz"; - sha512 = "60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A=="; - }; - }; - "@styled-system/shadow-5.1.2" = { - name = "_at_styled-system_slash_shadow"; - packageName = "@styled-system/shadow"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/shadow/-/shadow-5.1.2.tgz"; - sha512 = "wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg=="; - }; - }; - "@styled-system/space-5.1.2" = { - name = "_at_styled-system_slash_space"; - packageName = "@styled-system/space"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/space/-/space-5.1.2.tgz"; - sha512 = "+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA=="; - }; - }; - "@styled-system/theme-get-5.1.2" = { - name = "_at_styled-system_slash_theme-get"; - packageName = "@styled-system/theme-get"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/theme-get/-/theme-get-5.1.2.tgz"; - sha512 = "afAYdRqrKfNIbVgmn/2Qet1HabxmpRnzhFwttbGr6F/mJ4RDS/Cmn+KHwHvNXangQsWw/5TfjpWV+rgcqqIcJQ=="; - }; - }; - "@styled-system/typography-5.1.2" = { - name = "_at_styled-system_slash_typography"; - packageName = "@styled-system/typography"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/typography/-/typography-5.1.2.tgz"; - sha512 = "BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg=="; - }; - }; - "@styled-system/variant-5.1.5" = { - name = "_at_styled-system_slash_variant"; - packageName = "@styled-system/variant"; - version = "5.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@styled-system/variant/-/variant-5.1.5.tgz"; - sha512 = "Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw=="; - }; - }; "@stylelint/postcss-css-in-js-0.37.3" = { name = "_at_stylelint_slash_postcss-css-in-js"; packageName = "@stylelint/postcss-css-in-js"; @@ -13685,141 +13154,6 @@ let sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; }; }; - "@surma/rollup-plugin-off-main-thread-2.2.3" = { - name = "_at_surma_slash_rollup-plugin-off-main-thread"; - packageName = "@surma/rollup-plugin-off-main-thread"; - version = "2.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz"; - sha512 = "lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ=="; - }; - }; - "@svgr/babel-plugin-add-jsx-attribute-5.4.0" = { - name = "_at_svgr_slash_babel-plugin-add-jsx-attribute"; - packageName = "@svgr/babel-plugin-add-jsx-attribute"; - version = "5.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz"; - sha512 = "ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg=="; - }; - }; - "@svgr/babel-plugin-remove-jsx-attribute-5.4.0" = { - name = "_at_svgr_slash_babel-plugin-remove-jsx-attribute"; - packageName = "@svgr/babel-plugin-remove-jsx-attribute"; - version = "5.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz"; - sha512 = "yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg=="; - }; - }; - "@svgr/babel-plugin-remove-jsx-empty-expression-5.0.1" = { - name = "_at_svgr_slash_babel-plugin-remove-jsx-empty-expression"; - packageName = "@svgr/babel-plugin-remove-jsx-empty-expression"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz"; - sha512 = "LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA=="; - }; - }; - "@svgr/babel-plugin-replace-jsx-attribute-value-5.0.1" = { - name = "_at_svgr_slash_babel-plugin-replace-jsx-attribute-value"; - packageName = "@svgr/babel-plugin-replace-jsx-attribute-value"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz"; - sha512 = "PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ=="; - }; - }; - "@svgr/babel-plugin-svg-dynamic-title-5.4.0" = { - name = "_at_svgr_slash_babel-plugin-svg-dynamic-title"; - packageName = "@svgr/babel-plugin-svg-dynamic-title"; - version = "5.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz"; - sha512 = "zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg=="; - }; - }; - "@svgr/babel-plugin-svg-em-dimensions-5.4.0" = { - name = "_at_svgr_slash_babel-plugin-svg-em-dimensions"; - packageName = "@svgr/babel-plugin-svg-em-dimensions"; - version = "5.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz"; - sha512 = "cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw=="; - }; - }; - "@svgr/babel-plugin-transform-react-native-svg-5.4.0" = { - name = "_at_svgr_slash_babel-plugin-transform-react-native-svg"; - packageName = "@svgr/babel-plugin-transform-react-native-svg"; - version = "5.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz"; - sha512 = "3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q=="; - }; - }; - "@svgr/babel-plugin-transform-svg-component-5.5.0" = { - name = "_at_svgr_slash_babel-plugin-transform-svg-component"; - packageName = "@svgr/babel-plugin-transform-svg-component"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz"; - sha512 = "q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ=="; - }; - }; - "@svgr/babel-preset-5.5.0" = { - name = "_at_svgr_slash_babel-preset"; - packageName = "@svgr/babel-preset"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz"; - sha512 = "4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig=="; - }; - }; - "@svgr/core-5.5.0" = { - name = "_at_svgr_slash_core"; - packageName = "@svgr/core"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz"; - sha512 = "q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ=="; - }; - }; - "@svgr/hast-util-to-babel-ast-5.5.0" = { - name = "_at_svgr_slash_hast-util-to-babel-ast"; - packageName = "@svgr/hast-util-to-babel-ast"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz"; - sha512 = "cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ=="; - }; - }; - "@svgr/plugin-jsx-5.5.0" = { - name = "_at_svgr_slash_plugin-jsx"; - packageName = "@svgr/plugin-jsx"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz"; - sha512 = "V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA=="; - }; - }; - "@svgr/plugin-svgo-5.5.0" = { - name = "_at_svgr_slash_plugin-svgo"; - packageName = "@svgr/plugin-svgo"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz"; - sha512 = "r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ=="; - }; - }; - "@svgr/webpack-5.5.0" = { - name = "_at_svgr_slash_webpack"; - packageName = "@svgr/webpack"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz"; - sha512 = "DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g=="; - }; - }; "@swc-node/core-1.10.4" = { name = "_at_swc-node_slash_core"; packageName = "@swc-node/core"; @@ -13847,103 +13181,103 @@ let sha512 = "gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA=="; }; }; - "@swc/core-1.3.69" = { + "@swc/core-1.3.70" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.69.tgz"; - sha512 = "Khc/DE9D5+2tYTHgAIp5DZARbs8kldWg3b0Jp6l8FQLjelcLFmlQWSwKhVZrgv4oIbgZydIp8jInsvTalMHqnQ=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.3.70.tgz"; + sha512 = "LWVWlEDLlOD25PvA2NEz41UzdwXnlDyBiZbe69s3zM0DfCPwZXLUm79uSqH9ItsOjTrXSL5/1+XUL6C/BZwChA=="; }; }; - "@swc/core-darwin-arm64-1.3.69" = { + "@swc/core-darwin-arm64-1.3.70" = { name = "_at_swc_slash_core-darwin-arm64"; packageName = "@swc/core-darwin-arm64"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.69.tgz"; - sha512 = "IjZTf12zIPWkV3D7toaLDoJPSkLhQ4fDH8G6/yCJUI27cBFOI3L8LXqptYmISoN5yYdrcnNpdqdapD09JPuNJg=="; + url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.70.tgz"; + sha512 = "31+mcl0dgdRHvZRjhLOK9V6B+qJ7nxDZYINr9pBlqGWxknz37Vld5KK19Kpr79r0dXUZvaaelLjCnJk9dA2PcQ=="; }; }; - "@swc/core-darwin-x64-1.3.69" = { + "@swc/core-darwin-x64-1.3.70" = { name = "_at_swc_slash_core-darwin-x64"; packageName = "@swc/core-darwin-x64"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.69.tgz"; - sha512 = "/wBO0Rn5oS5dJI/L9kJRkPAdksVwl5H9nleW/NM3A40N98VV8T7h/i1nO051mxIjq0R6qXVGOWFbBoLrPYucJg=="; + url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.70.tgz"; + sha512 = "GMFJ65E18zQC80t0os+TZvI+8lbRuitncWVge/RXmXbVLPRcdykP4EJ87cqzcG5Ah0z18/E0T+ixD6jHRisrYQ=="; }; }; - "@swc/core-linux-arm-gnueabihf-1.3.69" = { + "@swc/core-linux-arm-gnueabihf-1.3.70" = { name = "_at_swc_slash_core-linux-arm-gnueabihf"; packageName = "@swc/core-linux-arm-gnueabihf"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.69.tgz"; - sha512 = "NShCjMv6Xn8ckMKBRqmprXvUF14+jXY0TcNKXwjYErzoIUFOnG72M36HxT4QEeAtKZ4Eg4CZFE4zlJ27fDp1gg=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.70.tgz"; + sha512 = "wjhCwS8LCiAq2VedF1b4Bryyw68xZnfMED4pLRazAl8BaUlDFANfRBORNunxlfHQj4V3x39IaiLgCZRHMdzXBg=="; }; }; - "@swc/core-linux-arm64-gnu-1.3.69" = { + "@swc/core-linux-arm64-gnu-1.3.70" = { name = "_at_swc_slash_core-linux-arm64-gnu"; packageName = "@swc/core-linux-arm64-gnu"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.69.tgz"; - sha512 = "VRPOJj4idopSHIj1bOVXX0SgaB18R8yZNunb7eXS5ZcjVxAcdvqyIz3RdQX1zaJFCGzcdPLzBRP32DZWWGE8Ng=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.70.tgz"; + sha512 = "9D/Rx67cAOnMiexvCqARxvhj7coRajTp5HlJHuf+rfwMqI2hLhpO9/pBMQxBUAWxODO/ksQ/OF+GJRjmtWw/2A=="; }; }; - "@swc/core-linux-arm64-musl-1.3.69" = { + "@swc/core-linux-arm64-musl-1.3.70" = { name = "_at_swc_slash_core-linux-arm64-musl"; packageName = "@swc/core-linux-arm64-musl"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.69.tgz"; - sha512 = "QxeSiZqo5x1X8vq8oUWLibq+IZJcxl9vy0sLUmzdjF2b/Z+qxKP3gutxnb2tzJaHqPVBbEZaILERIGy1qWdumQ=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.70.tgz"; + sha512 = "gkjxBio7XD+1GlQVVyPP/qeFkLu83VhRHXaUrkNYpr5UZG9zZurBERT9nkS6Y+ouYh+Q9xmw57aIyd2KvD2zqQ=="; }; }; - "@swc/core-linux-x64-gnu-1.3.69" = { + "@swc/core-linux-x64-gnu-1.3.70" = { name = "_at_swc_slash_core-linux-x64-gnu"; packageName = "@swc/core-linux-x64-gnu"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.69.tgz"; - sha512 = "b+DUlVxYox3BwD3PyTwhLvqtu6TYZtW+S6O0FnttH11o4skHN0XyJ/cUZSI0X2biSmfDsizRDUt1PWPFM+F7SA=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.70.tgz"; + sha512 = "/nCly+V4xfMVwfEUoLLAukxUSot/RcSzsf6GdsGTjFcrp5sZIntAjokYRytm3VT1c2TK321AfBorsi9R5w8Y7Q=="; }; }; - "@swc/core-linux-x64-musl-1.3.69" = { + "@swc/core-linux-x64-musl-1.3.70" = { name = "_at_swc_slash_core-linux-x64-musl"; packageName = "@swc/core-linux-x64-musl"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.69.tgz"; - sha512 = "QXjsI+f8n9XPZHUvmGgkABpzN4M9kdSbhqBOZmv3o0AsDGNCA4uVowQqgZoPFAqlJTpwHeDmrv5sQ13HN+LOGw=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.70.tgz"; + sha512 = "HoOsPJbt361KGKaivAK0qIiYARkhzlxeAfvF5NlnKxkIMOZpQ46Lwj3tR0VWohKbrhS+cYKFlVuDi5XnDkx0XA=="; }; }; - "@swc/core-win32-arm64-msvc-1.3.69" = { + "@swc/core-win32-arm64-msvc-1.3.70" = { name = "_at_swc_slash_core-win32-arm64-msvc"; packageName = "@swc/core-win32-arm64-msvc"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.69.tgz"; - sha512 = "wn7A8Ws1fyviuCUB2Vg6IotiZeuqiO1Mz3d+YDae2EYyNpj1kNHvjBip8GHkfGzZG+jVrvG6NHsDo0KO/pGb8A=="; + url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.70.tgz"; + sha512 = "hm4IBK/IaRil+aj1cWU6f0GyAdHpw/Jr5nyFYLM2c/tt7w2t5hgb8NjzM2iM84lOClrig1fG6edj2vCF1dFzNQ=="; }; }; - "@swc/core-win32-ia32-msvc-1.3.69" = { + "@swc/core-win32-ia32-msvc-1.3.70" = { name = "_at_swc_slash_core-win32-ia32-msvc"; packageName = "@swc/core-win32-ia32-msvc"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.69.tgz"; - sha512 = "LsFBXtXqxEcVaaOGEZ9X3qdMzobVoJqKv8DnksuDsWcBk+9WCeTz2u/iB+7yZ2HGuPXkCqTRqhFo6FX9aC00kQ=="; + url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.70.tgz"; + sha512 = "5cgKUKIT/9Fp5fCA+zIjYCQ4dSvjFYOeWGZR3QiTXGkC4bGa1Ji9SEPyeIAX0iruUnKjYaZB9RvHK2tNn7RLrQ=="; }; }; - "@swc/core-win32-x64-msvc-1.3.69" = { + "@swc/core-win32-x64-msvc-1.3.70" = { name = "_at_swc_slash_core-win32-x64-msvc"; packageName = "@swc/core-win32-x64-msvc"; - version = "1.3.69"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.69.tgz"; - sha512 = "ieBscU0gUgKjaseFI07tAaGqHvKyweNknPeSYEZOasVZUczhD6fK2GRnVREhv2RB2qdKC/VGFBsgRDMgzq1VLw=="; + url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.70.tgz"; + sha512 = "LE8lW46+TQBzVkn2mHBlk8DIElPIZ2dO5P8AbJiARNBAnlqQWu67l9gWM89UiZ2l33J2cI37pHzON3tKnT8f9g=="; }; }; "@swc/helpers-0.5.1" = { @@ -13955,13 +13289,13 @@ let sha512 = "sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg=="; }; }; - "@swc/wasm-1.3.66" = { + "@swc/wasm-1.3.70" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.3.66"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.66.tgz"; - sha512 = "YxTkQLpfYr2j2vAHG+guWOGzpBYoqciJcHJKq1ecqHki8mxeTV6Origkyh4DzlG/K1hoy1/FtL6kal71Ktg+lg=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.70.tgz"; + sha512 = "vDYyn3nkPd2co0dRK6myXvaXgQATiAf276svnW1rlRsw7i0cFLlO4k5bVUeLE0R0My08+elg+u8Ko6cHB4HAlg=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -14207,6 +13541,15 @@ let sha512 = "XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="; }; }; + "@tootallnate/quickjs-emscripten-0.23.0" = { + name = "_at_tootallnate_slash_quickjs-emscripten"; + packageName = "@tootallnate/quickjs-emscripten"; + version = "0.23.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz"; + sha512 = "C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA=="; + }; + }; "@trufflesuite/uws-js-unofficial-20.10.0-unofficial.2" = { name = "_at_trufflesuite_slash_uws-js-unofficial"; packageName = "@trufflesuite/uws-js-unofficial"; @@ -14360,42 +13703,6 @@ let sha512 = "pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A=="; }; }; - "@types/babel__core-7.20.1" = { - name = "_at_types_slash_babel__core"; - packageName = "@types/babel__core"; - version = "7.20.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz"; - sha512 = "aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw=="; - }; - }; - "@types/babel__generator-7.6.4" = { - name = "_at_types_slash_babel__generator"; - packageName = "@types/babel__generator"; - version = "7.6.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz"; - sha512 = "tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg=="; - }; - }; - "@types/babel__template-7.4.1" = { - name = "_at_types_slash_babel__template"; - packageName = "@types/babel__template"; - version = "7.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz"; - sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="; - }; - }; - "@types/babel__traverse-7.20.1" = { - name = "_at_types_slash_babel__traverse"; - packageName = "@types/babel__traverse"; - version = "7.20.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz"; - sha512 = "MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg=="; - }; - }; "@types/babylon-6.16.6" = { name = "_at_types_slash_babylon"; packageName = "@types/babylon"; @@ -14765,15 +14072,6 @@ let sha512 = "IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w=="; }; }; - "@types/graceful-fs-4.1.6" = { - name = "_at_types_slash_graceful-fs"; - packageName = "@types/graceful-fs"; - version = "4.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz"; - sha512 = "Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw=="; - }; - }; "@types/hast-2.3.5" = { name = "_at_types_slash_hast"; packageName = "@types/hast"; @@ -15242,15 +14540,6 @@ let sha512 = "vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw=="; }; }; - "@types/node-20.4.1" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "20.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-20.4.1.tgz"; - sha512 = "JIzsAvJeA/5iY6Y/OxZbv1lUcc8dNSE77lb2gnBH+/PJ3lFR1Ccvgwl5JWnHAkNHcRsT0TbpVOsiMKZ1F/yyJg=="; - }; - }; "@types/node-20.4.2" = { name = "_at_types_slash_node"; packageName = "@types/node"; @@ -15332,15 +14621,6 @@ let sha512 = "Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ=="; }; }; - "@types/prettier-2.7.3" = { - name = "_at_types_slash_prettier"; - packageName = "@types/prettier"; - version = "2.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz"; - sha512 = "+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA=="; - }; - }; "@types/prop-types-15.7.5" = { name = "_at_types_slash_prop-types"; packageName = "@types/prop-types"; @@ -15413,15 +14693,6 @@ let sha512 = "oEjE7TQt1fFTFSbf8kkNuc798ahTUzn3Le67/PWjE8MAfYAD/qB7O8hSTcromLFqHCt9bcdOg5GXMokzTjJ5SA=="; }; }; - "@types/react-dom-18.2.7" = { - name = "_at_types_slash_react-dom"; - packageName = "@types/react-dom"; - version = "18.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz"; - sha512 = "GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA=="; - }; - }; "@types/readdir-glob-1.1.1" = { name = "_at_types_slash_readdir-glob"; packageName = "@types/readdir-glob"; @@ -15440,15 +14711,6 @@ let sha512 = "whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ=="; }; }; - "@types/resolve-1.17.1" = { - name = "_at_types_slash_resolve"; - packageName = "@types/resolve"; - version = "1.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz"; - sha512 = "yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw=="; - }; - }; "@types/responselike-1.0.0" = { name = "_at_types_slash_responselike"; packageName = "@types/responselike"; @@ -15638,15 +14900,6 @@ let sha512 = "txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g=="; }; }; - "@types/trusted-types-2.0.3" = { - name = "_at_types_slash_trusted-types"; - packageName = "@types/trusted-types"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz"; - sha512 = "NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g=="; - }; - }; "@types/tunnel-0.0.3" = { name = "_at_types_slash_tunnel"; packageName = "@types/tunnel"; @@ -15737,15 +14990,6 @@ let sha512 = "xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog=="; }; }; - "@types/webpack-5.28.1" = { - name = "_at_types_slash_webpack"; - packageName = "@types/webpack"; - version = "5.28.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/webpack/-/webpack-5.28.1.tgz"; - sha512 = "qw1MqGZclCoBrpiSe/hokSgQM/su8Ocpl3L/YHE0L6moyaypg4+5F7Uzq7NgaPKPxUxUbQ4fLPLpDWdR27bCZw=="; - }; - }; "@types/websocket-1.0.2" = { name = "_at_types_slash_websocket"; packageName = "@types/websocket"; @@ -15827,15 +15071,6 @@ let sha512 = "AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ=="; }; }; - "@types/yargs-17.0.24" = { - name = "_at_types_slash_yargs"; - packageName = "@types/yargs"; - version = "17.0.24"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz"; - sha512 = "6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw=="; - }; - }; "@types/yargs-parser-21.0.0" = { name = "_at_types_slash_yargs-parser"; packageName = "@types/yargs-parser"; @@ -15872,15 +15107,6 @@ let sha512 = "TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag=="; }; }; - "@typescript-eslint/experimental-utils-5.62.0" = { - name = "_at_typescript-eslint_slash_experimental-utils"; - packageName = "@typescript-eslint/experimental-utils"; - version = "5.62.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz"; - sha512 = "RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw=="; - }; - }; "@typescript-eslint/parser-5.62.0" = { name = "_at_typescript-eslint_slash_parser"; packageName = "@typescript-eslint/parser"; @@ -16043,13 +15269,13 @@ let sha512 = "v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ=="; }; }; - "@vercel/gatsby-plugin-vercel-builder-1.3.13" = { + "@vercel/gatsby-plugin-vercel-builder-1.3.14" = { name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; packageName = "@vercel/gatsby-plugin-vercel-builder"; - version = "1.3.13"; + version = "1.3.14"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.13.tgz"; - sha512 = "Qi2zuH5RJZIg/OveGXjHwakwvFxqRKa8X3WZWdPZkUhcPPDaoBLZPr8cBgWaRYXIvZUmACUfbK71a7S1uwuALw=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.14.tgz"; + sha512 = "Q0HnEL8Mw246EOwiT089O12XrdtPR7XVMe8VqByekdv4ppkjc4LV5TbXaOP8ZczTinFxYxbWUwK4GnpJoZidag=="; }; }; "@vercel/go-2.5.1" = { @@ -16070,13 +15296,13 @@ let sha512 = "1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw=="; }; }; - "@vercel/next-3.8.8" = { + "@vercel/next-3.9.0" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "3.8.8"; + version = "3.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-3.8.8.tgz"; - sha512 = "h/TcVnrjnRrxkgTod80Wpy9Lo2k+DCpsNtRX+G0tJ8q8/WxMucQQ0dLv0t3J5vwmypowPzYzK5kKSfrewQVMxg=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-3.9.0.tgz"; + sha512 = "o5xGLLYU9crP3ReDJSTU8y4gwgAEbSQSp6CG9QQYHFkn3YBJrgubXpNj1+OSfCcGKH9AK0TAfayJPPbwKilwvA=="; }; }; "@vercel/nft-0.22.5" = { @@ -16088,13 +15314,13 @@ let sha512 = "mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw=="; }; }; - "@vercel/node-2.15.5" = { + "@vercel/node-2.15.6" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "2.15.5"; + version = "2.15.6"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-2.15.5.tgz"; - sha512 = "KYMeVyGBsZ1xw/74/95wZdE/ZW1cRa8nrMKasjy2r54IuOUcdE35bcpMhw7hip34esL+PtQI50rXtMTQOLa0kQ=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-2.15.6.tgz"; + sha512 = "LXV971i7bCL+W9lz+IFG6P876gnp2coA0/5mrG3nr+wbo+9iU0pPO6YZcQ8tmhcmepILl8HnTvYHNTECZUeN6w=="; }; }; "@vercel/python-3.1.60" = { @@ -16115,13 +15341,13 @@ let sha512 = "j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA=="; }; }; - "@vercel/remix-builder-1.8.17" = { + "@vercel/remix-builder-1.8.18" = { name = "_at_vercel_slash_remix-builder"; packageName = "@vercel/remix-builder"; - version = "1.8.17"; + version = "1.8.18"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.17.tgz"; - sha512 = "v5xDVzRiG4xVw93dcevUUE5davDluTq6Mt2MtG0vM138Dc7zGlccbjd+Jqa+j7sm/V/xRQzDLJlPaZsPvJaBVg=="; + url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.18.tgz"; + sha512 = "GYIFBe+z3/AuPHhXcpKtMLDj+1LrgcfE3HKka9RuUbfLOcJbfwdFODWHV7c7D5zgEu/KTIGEO6dOJp8GQmPzng=="; }; }; "@vercel/routing-utils-2.2.1" = { @@ -16142,13 +15368,13 @@ let sha512 = "J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ=="; }; }; - "@vercel/static-build-1.3.40" = { + "@vercel/static-build-1.3.41" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "1.3.40"; + version = "1.3.41"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.40.tgz"; - sha512 = "cjGNyqgV5Y3qfIMqW1iuT7L/xZkrbv+YA54VFjE7xEtvYJ0yAwfGtRYgIfkuTmZwmmVMcTfi/kxmGJ7dqjd7gA=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.41.tgz"; + sha512 = "1wHz338v/72RqmLu2S3XtUZkyTQfw1QR7kpODj+DIXVzz2HcpGqv70voex+B3FeC6wtD2yLCtTi2eLmFLEiB8A=="; }; }; "@vercel/static-config-2.0.17" = { @@ -16232,13 +15458,13 @@ let sha512 = "NwqBBruD1DvVmFVyPinOuuMGqpSroVTnl1R1vOnhbKquButOj+0b2k43Gn1fz/Uqe9hijLCxMEtMIIcW38ny8w=="; }; }; - "@volar/kit-1.7.4" = { + "@volar/kit-1.9.0" = { name = "_at_volar_slash_kit"; packageName = "@volar/kit"; - version = "1.7.4"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/kit/-/kit-1.7.4.tgz"; - sha512 = "LWN08tMYVm181rIztyqp+Qx6efv37w5/kLmAX4R+dr+nn0F/G8Em03TKP81YLOQTzK44EdUaG84Bq95suHcSWw=="; + url = "https://registry.npmjs.org/@volar/kit/-/kit-1.9.0.tgz"; + sha512 = "T3KNiDi1rRPN9aTljDK6BCMM53WNjTc+mIohUB1Wv+uJX11WbmqZ0TzfgfsMMvKcmbVxfIN+2/WVngQdjAbroQ=="; }; }; "@volar/language-core-1.4.1" = { @@ -16250,13 +15476,13 @@ let sha512 = "EIY+Swv+TjsWpxOxujjMf1ZXqOjg9MT2VMXZ+1dKva0wD8W0L6EtptFFcCJdBbcKmGMFkr57Qzz9VNMWhs3jXQ=="; }; }; - "@volar/language-core-1.7.4" = { + "@volar/language-core-1.9.0" = { name = "_at_volar_slash_language-core"; packageName = "@volar/language-core"; - version = "1.7.4"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/language-core/-/language-core-1.7.4.tgz"; - sha512 = "KjwXpE39TqSG/PEUeElNy9a4JI+FE/wQu/S9M2UFdCVT3ybn4ulcsEd8jEaPs/YH31mZU8y+DFfgeVrxmNLUXw=="; + url = "https://registry.npmjs.org/@volar/language-core/-/language-core-1.9.0.tgz"; + sha512 = "+PTRrGanAD2PxqMty0ZC46xhgW5BWzb67RLHhZyB3Im4+eMXsKlYjFUt7Z8ZCwTWQQOnj8NQ6gSgUEoOTwAHrQ=="; }; }; "@volar/language-server-1.4.1" = { @@ -16268,13 +15494,13 @@ let sha512 = "UxhiN205o8ZfTnMNhRPCtW+ncrBtqZMd+f08Xf99Je4WB+SYyv3VNnIZEQDXfaTXR6mLUgQ1mDwPsUOLKKGY8A=="; }; }; - "@volar/language-server-1.7.4" = { + "@volar/language-server-1.9.0" = { name = "_at_volar_slash_language-server"; packageName = "@volar/language-server"; - version = "1.7.4"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/language-server/-/language-server-1.7.4.tgz"; - sha512 = "I5hJhl3WjskJpqJZTOMiESMAeovlLNenjaRcOD67cWojJjtVR2dwc/3WHcLomzUs09KtQ+MYVNNoneIPVtvgOA=="; + url = "https://registry.npmjs.org/@volar/language-server/-/language-server-1.9.0.tgz"; + sha512 = "HEtdKVZAF2wPEepyOA30R3unKsXLFvqgD0pllUxLma32By2/vPOdTDaLnqu5bq2Jo2isI93k7AwlPGfJgZ8maA=="; }; }; "@volar/language-service-1.4.1" = { @@ -16286,13 +15512,13 @@ let sha512 = "F30uT+xk20ZYpxRwNW9xBEoErSqd9zNW7iuFwSIX9bYO/12RLjB2I+vgM/GdPZnzZ37imXa76ykwqTRXrafigQ=="; }; }; - "@volar/language-service-1.7.4" = { + "@volar/language-service-1.9.0" = { name = "_at_volar_slash_language-service"; packageName = "@volar/language-service"; - version = "1.7.4"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/language-service/-/language-service-1.7.4.tgz"; - sha512 = "VQTDa7mFIGydB32VsNlFA9SrGO2RlYml7Fw37zCL7tHplvy5681Nzkg+W7dMX98cpatkJPoKsam0of8WInVNyg=="; + url = "https://registry.npmjs.org/@volar/language-service/-/language-service-1.9.0.tgz"; + sha512 = "hDmbETBexAm1giwhY2PKaeEdeCbamA6YvSM5/8ftXHEXZ1PSR8MNfDo0VNDlCwb7sFD22S8uYeE4C5iXT5FKSQ=="; }; }; "@volar/source-map-1.4.1" = { @@ -16304,22 +15530,22 @@ let sha512 = "bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA=="; }; }; - "@volar/source-map-1.7.4" = { + "@volar/source-map-1.9.0" = { name = "_at_volar_slash_source-map"; packageName = "@volar/source-map"; - version = "1.7.4"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/source-map/-/source-map-1.7.4.tgz"; - sha512 = "K4LpOgfps1olieqwEVGVZTlDnjhcQZQ4KSLRVWe7AkUKrqAP0H0s+5YSE3HyC4uquoYzWinYon9SD+ARhWpkqg=="; + url = "https://registry.npmjs.org/@volar/source-map/-/source-map-1.9.0.tgz"; + sha512 = "TQWLY8ozUOHBHTMC2pHZsNbtM25Q9QCEwAL8JFR/gmR9Yv0d9qup/gQdd5sDI7RmoPYKD+gqjLrbM4Ib41QSJQ=="; }; }; - "@volar/typescript-1.7.4" = { + "@volar/typescript-1.9.0" = { name = "_at_volar_slash_typescript"; packageName = "@volar/typescript"; - version = "1.7.4"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/typescript/-/typescript-1.7.4.tgz"; - sha512 = "xHiQoKAwXdLt1NXYZZ3uD32PKJ8KpZ5raBU6uCgCbhUh+7uWsk+cyFqDAboAPPm3oBCyCEGnnbrsJvimPEWyrA=="; + url = "https://registry.npmjs.org/@volar/typescript/-/typescript-1.9.0.tgz"; + sha512 = "B8X4/H6V93uD7zu5VCw05eB0Ukcc39SFKsZoeylkAk2sJ50oaJLpajnQ8Ov4c+FnVQ6iPA6Xy1qdWoWJjh6xEg=="; }; }; "@volar/vue-language-core-1.6.5" = { @@ -16340,15 +15566,6 @@ let sha512 = "2uZPvDfo8Bspq9u+RaQhsdONFhu35HBS7/ZDXhhmhyMfcN327e1vnvAhHPDfOb8XNFg/Cj54rVKegANpKZJTOg=="; }; }; - "@vscode/codicons-0.0.33" = { - name = "_at_vscode_slash_codicons"; - packageName = "@vscode/codicons"; - version = "0.0.33"; - src = fetchurl { - url = "https://registry.npmjs.org/@vscode/codicons/-/codicons-0.0.33.tgz"; - sha512 = "VdgpnD75swH9hpXjd34VBgQ2w2quK63WljodlUcOoJDPKiV+rPjHrcUc2sjLCNKxhl6oKqmsZgwOWcDAY2GKKQ=="; - }; - }; "@vscode/emmet-helper-2.8.4" = { name = "_at_vscode_slash_emmet-helper"; packageName = "@vscode/emmet-helper"; @@ -16403,15 +15620,6 @@ let sha512 = "hgXCkDP0ibboF1K6seqQYyHAzCURgTwHS/6QU7slhwznDLwsRwg9bhfw1CZdyUEw8vvCmlrKWnd7BlQnI0BC4w=="; }; }; - "@vscode/webview-ui-toolkit-1.2.2" = { - name = "_at_vscode_slash_webview-ui-toolkit"; - packageName = "@vscode/webview-ui-toolkit"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@vscode/webview-ui-toolkit/-/webview-ui-toolkit-1.2.2.tgz"; - sha512 = "xIQoF4FC3Xh6d7KNKIoIezSiFWYFuf6gQMdDyKueKBFGeKwaHWEn+dY2g3makvvEsNMEDji/woEwvg9QSbuUsw=="; - }; - }; "@vue/cli-shared-utils-5.0.8" = { name = "_at_vue_slash_cli-shared-utils"; packageName = "@vue/cli-shared-utils"; @@ -17384,94 +16592,31 @@ let sha512 = "w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA=="; }; }; - "@whatwg-node/node-fetch-0.4.8" = { + "@whatwg-node/node-fetch-0.4.10" = { name = "_at_whatwg-node_slash_node-fetch"; packageName = "@whatwg-node/node-fetch"; - version = "0.4.8"; + version = "0.4.10"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.4.8.tgz"; - sha512 = "9r/UE3rSjpiUv+FM3SnL8ib3VT/fk02iIAQOU0SJN57b7zJXeyQ1BEf2Q7glQj4E/Bw5pSRbdOLHV8n4ZdcLLQ=="; + url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.4.10.tgz"; + sha512 = "Vj/xaVgyaA2f7PVpegFnoT2W2NAJdb3gB2y1jOlQ+ae94u8YlaOi11jNPQ7qD61fvTw4N19e+avz0KGyfYWxQw=="; }; }; - "@withgraphite/graphite-cli-routes-0.31.0" = { - name = "_at_withgraphite_slash_graphite-cli-routes"; - packageName = "@withgraphite/graphite-cli-routes"; - version = "0.31.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/graphite-cli-routes/-/graphite-cli-routes-0.31.0.tgz"; - sha512 = "UqD6aMcMSxzzt+Pd9HVFFO54ODELZJH8nDWCy38Z5wKIkKrKbn5wGMpKW+Z4iboT5bGtAHhxmNNBLbGLNba7lw=="; - }; - }; - "@withgraphite/gti-cli-shared-types-0.3.2" = { - name = "_at_withgraphite_slash_gti-cli-shared-types"; - packageName = "@withgraphite/gti-cli-shared-types"; - version = "0.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/gti-cli-shared-types/-/gti-cli-shared-types-0.3.2.tgz"; - sha512 = "8mdRYcD/GBmkuFye3OhL410Q9U9ni/FgRREKQ+HA+68aV8YttRXL/Y23isoOT/n2OmhIAcNdT2KFjcUNEDjQZg=="; - }; - }; - "@withgraphite/gti-client-0.1.9" = { - name = "_at_withgraphite_slash_gti-client"; - packageName = "@withgraphite/gti-client"; - version = "0.1.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/gti-client/-/gti-client-0.1.9.tgz"; - sha512 = "EcJYQvPMHeHIzE8oqAxfuniQBts7SkBSDH+p/EQRkVQ6/Duk1FeTaOGrP0wrcZaprZUZfvla7ra3oPg1ocYPXA=="; - }; - }; - "@withgraphite/gti-server-0.0.11" = { - name = "_at_withgraphite_slash_gti-server"; - packageName = "@withgraphite/gti-server"; - version = "0.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/gti-server/-/gti-server-0.0.11.tgz"; - sha512 = "ApcH1cBd5W7pW1BuKsJxw5FE/ruk9qT7e1qkS/zBW/xRgndytgATjKyTSr4SRyP/kznCrp9lwNeSIBnvI3vf4g=="; - }; - }; - "@withgraphite/gti-shared-0.1.6" = { - name = "_at_withgraphite_slash_gti-shared"; - packageName = "@withgraphite/gti-shared"; - version = "0.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/gti-shared/-/gti-shared-0.1.6.tgz"; - sha512 = "TSSp2aVc+v4uYYDkX3ePA2SVB2/d2K9G2cx00yUkbEjFOjuMgEb1fh3T35oGXjQzTzxmS3QuHApBz0//2w1+/A=="; - }; - }; - "@withgraphite/retype-0.3.15" = { - name = "_at_withgraphite_slash_retype"; - packageName = "@withgraphite/retype"; - version = "0.3.15"; - src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/retype/-/retype-0.3.15.tgz"; - sha512 = "J5eVSg+2BtksS+2rZi9ttJlushYpapCMxqyDGDUti/gfFpOgXaPxNMpDJ0TgJFEnFNea1Xrc3djhv7JxzhY+pQ=="; - }; - }; - "@withgraphite/retyped-routes-0.3.7" = { - name = "_at_withgraphite_slash_retyped-routes"; - packageName = "@withgraphite/retyped-routes"; - version = "0.3.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/retyped-routes/-/retyped-routes-0.3.7.tgz"; - sha512 = "veadl+nEIw6zgbtchoAcl3C8469SZm5xyRvlrZTVFJK1kzniAEdTaUNsnRHsvC2HME3a5WdYoIZk/k24wegKvA=="; - }; - }; - "@xmldom/xmldom-0.7.12" = { + "@xmldom/xmldom-0.7.13" = { name = "_at_xmldom_slash_xmldom"; packageName = "@xmldom/xmldom"; - version = "0.7.12"; + version = "0.7.13"; src = fetchurl { - url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.12.tgz"; - sha512 = "JpcbUyxzrUShspIZ9uzcIuxTdE+X15sY7dCKGfXrXbQ1CqpMBfqkrNSde2dGqhlC4+EdAF+csoTCiAvYAKVKlA=="; + url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.13.tgz"; + sha512 = "lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g=="; }; }; - "@xmldom/xmldom-0.8.9" = { + "@xmldom/xmldom-0.8.10" = { name = "_at_xmldom_slash_xmldom"; packageName = "@xmldom/xmldom"; - version = "0.8.9"; + version = "0.8.10"; src = fetchurl { - url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.9.tgz"; - sha512 = "4VSbbcMoxc4KLjb1gs96SRmi7w4h1SF+fCoiK0XaQX62buCc1G5d0DC5bJ9xJBNPDSVCmIrcl8BiYxzjrqaaJA=="; + url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz"; + sha512 = "2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw=="; }; }; "@xmpp/base64-0.13.1" = { @@ -17816,76 +16961,76 @@ let sha512 = "nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg=="; }; }; - "@zwave-js/cc-11.4.2" = { + "@zwave-js/cc-11.5.2" = { name = "_at_zwave-js_slash_cc"; packageName = "@zwave-js/cc"; - version = "11.4.2"; + version = "11.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-11.4.2.tgz"; - sha512 = "JUeYMCKNCkeKH1WJqLxuJSAhkZzdeGj7dYqoMt8TwaeEbMCC3sJhzORCI8UNak1Ok1sA8FWjY/0FQOrjCaaDQA=="; + url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-11.5.2.tgz"; + sha512 = "VACdzSip7aGxRjs9nc7g/Udnp61bJUIOlcRZP2xS9WqQvRD1+JrKPkHvJeS6QlQQ9tr2lV9+mnarZXGHgIJgmw=="; }; }; - "@zwave-js/config-11.4.2" = { + "@zwave-js/config-11.5.2" = { name = "_at_zwave-js_slash_config"; packageName = "@zwave-js/config"; - version = "11.4.2"; + version = "11.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/config/-/config-11.4.2.tgz"; - sha512 = "hSnq/WFetXEg8dKe3qXArTt25ggusGc0fAtx7IqPbjPof4TP9Jy0J0zNsNH90l9w5f8lqL87qC4aRzB8H4/oOA=="; + url = "https://registry.npmjs.org/@zwave-js/config/-/config-11.5.2.tgz"; + sha512 = "q80JY9lsuX46b9ZlQTK78Q29MxPKDGPjahKvdGYfL5WYe5t7shB3tdA99mlaWYZOeDP/5XSXEY/B5IXM4Nx9Xw=="; }; }; - "@zwave-js/core-11.4.0" = { + "@zwave-js/core-11.5.2" = { name = "_at_zwave-js_slash_core"; packageName = "@zwave-js/core"; - version = "11.4.0"; + version = "11.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/core/-/core-11.4.0.tgz"; - sha512 = "z9Zo4H4684T4fNCcXMTSNYF/Wt+sxgonkhxva6q/RjDuOFz22709Ea3A9ycxZryw1UXaq5YAFHs9hj8770kfZw=="; + url = "https://registry.npmjs.org/@zwave-js/core/-/core-11.5.2.tgz"; + sha512 = "xb2q/R+nIXlPMg5uNoOslnFgqpB50m/VZBizJ+ETeN3i/6w9TStFp7CuE3IxIHxPp7qpUUkA3XzNjG7Zn9Zo/g=="; }; }; - "@zwave-js/host-11.4.2" = { + "@zwave-js/host-11.5.2" = { name = "_at_zwave-js_slash_host"; packageName = "@zwave-js/host"; - version = "11.4.2"; + version = "11.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/host/-/host-11.4.2.tgz"; - sha512 = "MB0NOJF3yFexuoram2z1nyjmMitM7OK8JHDg7v/+xG7UON2p9qMFiJLKKZJXB4jEjmrefSPiUvIAljxc8X78EQ=="; + url = "https://registry.npmjs.org/@zwave-js/host/-/host-11.5.2.tgz"; + sha512 = "9UviJQJiPIpxRzwn9FN0VDi8Ez5tEV+FkT+x9QTzDTSNWMAiAVO/qVWXRS9rLXRlHiwkPe3X/7kMxYn7XymVfg=="; }; }; - "@zwave-js/nvmedit-11.4.0" = { + "@zwave-js/nvmedit-11.5.2" = { name = "_at_zwave-js_slash_nvmedit"; packageName = "@zwave-js/nvmedit"; - version = "11.4.0"; + version = "11.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-11.4.0.tgz"; - sha512 = "uHmu0SKq0RUSxHhWe9xE8lGwIOvqBtdiHzU2g7+inXmFE0IbGkEpxejqbmTN1RGwkzUJUpBW7H9ZaJQ4PqWo4w=="; + url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-11.5.2.tgz"; + sha512 = "l7j/ZrIJEcQ9N/BkD+SYIuVkBzN9p0SlWJ/seRew6d5Bugcv3gAK6E0RNS3cy8LEKvsVv4f6pvpj234u2QCCDw=="; }; }; - "@zwave-js/serial-11.4.2" = { + "@zwave-js/serial-11.5.2" = { name = "_at_zwave-js_slash_serial"; packageName = "@zwave-js/serial"; - version = "11.4.2"; + version = "11.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-11.4.2.tgz"; - sha512 = "BOxNeIyBxQhXsYx6CZnozvAQQoCseRJ4Z5jGog71Sgbf2XtC+iT55A6zJcFMVkoeN0D4Exrp3E2EQXynqzoG3Q=="; + url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-11.5.2.tgz"; + sha512 = "fQp4XkY0Bl8Ehu/dWH99R/+b0KXBcQ3SHylEoRdzL5730y3HeUszuVToZ16wC/RDVClfF/nNvjpj9nBHniA1GQ=="; }; }; - "@zwave-js/shared-11.3.0" = { + "@zwave-js/shared-11.5.2" = { name = "_at_zwave-js_slash_shared"; packageName = "@zwave-js/shared"; - version = "11.3.0"; + version = "11.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/shared/-/shared-11.3.0.tgz"; - sha512 = "LCM748qrw4Is6DAkS/76+hdwqbCJ56Fk4Ccmri7d9LB+vb88umuf3e8GchyL2ykv+UnwvQqWW9KUna9BNHqzfA=="; + url = "https://registry.npmjs.org/@zwave-js/shared/-/shared-11.5.2.tgz"; + sha512 = "e0TY1dTrtgpwDdzt7fqco3ptnbQ5WXSQ6R8LTyRGFyvCXcXXYNOKbRiGbFJPr7brKT8rfm7c5s5RPQQ/tLX26w=="; }; }; - "@zwave-js/testing-11.4.2" = { + "@zwave-js/testing-11.5.2" = { name = "_at_zwave-js_slash_testing"; packageName = "@zwave-js/testing"; - version = "11.4.2"; + version = "11.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-11.4.2.tgz"; - sha512 = "gDeJHUD7ERhB+JiAGpkCm3/l8JpLCjfp3Xt7CTK/X0Yes8K2/MSqyS5bhWQZUsl5u/NzsXF/AMOKa9GsE6aAVg=="; + url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-11.5.2.tgz"; + sha512 = "Ana550mTOPhin1NQfrpL+ZkI+7uUROc5gOeoI7UDiPGEk/dEOCFthkMrkNrhwJm5JR6du4KSlVM94iOK3IewNA=="; }; }; "@zxing/text-encoding-0.9.0" = { @@ -18383,15 +17528,6 @@ let sha512 = "4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA=="; }; }; - "adjust-sourcemap-loader-4.0.0" = { - name = "adjust-sourcemap-loader"; - packageName = "adjust-sourcemap-loader"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz"; - sha512 = "OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A=="; - }; - }; "adm-zip-0.5.10" = { name = "adm-zip"; packageName = "adm-zip"; @@ -18707,13 +17843,13 @@ let sha512 = "2Sy0hWhifVb8ycNFJgicL8fDPL2Ct1r62XOVxXnykn36z22MPZwnQlCmB2viQlY/lwfuO67GaQjUZ0rJgdVP7Q=="; }; }; - "all-package-names-2.0.692" = { + "all-package-names-2.0.695" = { name = "all-package-names"; packageName = "all-package-names"; - version = "2.0.692"; + version = "2.0.695"; src = fetchurl { - url = "https://registry.npmjs.org/all-package-names/-/all-package-names-2.0.692.tgz"; - sha512 = "o4sZJS0oILbEd5rxJ2bELIUfTMjKacjJXZrQ7Hb6TsJpY4tlRx5GDnh6W01+z2orVF6H7s3NPaiPhZlHYs+/CA=="; + url = "https://registry.npmjs.org/all-package-names/-/all-package-names-2.0.695.tgz"; + sha512 = "fe6I6EqcgQHPTmzy+t8mT2chcRqTb83gQNKBUs54/0MCnpYpw6VnCpR+DwYC8gM/I6gAbSPodsMZdwKKa4QGmw=="; }; }; "alphanum-sort-1.0.2" = { @@ -19499,13 +18635,13 @@ let sha512 = "QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg=="; }; }; - "are-we-there-yet-4.0.0" = { + "are-we-there-yet-4.0.1" = { name = "are-we-there-yet"; packageName = "are-we-there-yet"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-4.0.0.tgz"; - sha512 = "nSXlV+u3vtVjRgihdTzbfWYzxPWGo424zPgQbHD0ZqIla3jqYAewDcvee0Ua2hjS5IfTAmjGlx1Jf0PKwjZDEw=="; + url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-4.0.1.tgz"; + sha512 = "2zuA+jpOYBRgoBCfa+fB87Rk0oGJjDX6pxGzqH6f33NzUhG25Xur6R0u0Z9VVAq8Z5JvQpQI6j6rtonuivC8QA=="; }; }; "arg-2.0.0" = { @@ -20489,15 +19625,6 @@ let sha512 = "pd20BwL7Yt1zwDFy+8MX8F1+WCT8aQeKj0kQnTrH9WaeRETlRamVhD0JtRPmrV4GfOJ2F9CvdQkZeZhnh2TuHw=="; }; }; - "async-foreach-0.1.3" = { - name = "async-foreach"; - packageName = "async-foreach"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz"; - sha512 = "VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA=="; - }; - }; "async-hook-jl-1.7.6" = { name = "async-hook-jl"; packageName = "async-hook-jl"; @@ -20804,15 +19931,6 @@ let sha512 = "JLrV3ErBNKVkmhi0celM6PJkgYEtztFnXwsNBApjinpVHtIP3g/m2ZZSOvsAe7FoByfJzDhpOXBKFbH3k2UNjw=="; }; }; - "autoprefixer-10.4.14" = { - name = "autoprefixer"; - packageName = "autoprefixer"; - version = "10.4.14"; - src = fetchurl { - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz"; - sha512 = "FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ=="; - }; - }; "autoprefixer-9.8.8" = { name = "autoprefixer"; packageName = "autoprefixer"; @@ -20840,13 +19958,13 @@ let sha512 = "d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q=="; }; }; - "aws-crt-1.15.20" = { + "aws-crt-1.15.22" = { name = "aws-crt"; packageName = "aws-crt"; - version = "1.15.20"; + version = "1.15.22"; src = fetchurl { - url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.15.20.tgz"; - sha512 = "BH70ccRssb281Xky/KsKvi7N1P1RHQUzWw+LFPDZ+JJd1AlmWRADsvHWrshV95FkeDQMASBxXdh8Ag+BhoPErg=="; + url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.15.22.tgz"; + sha512 = "2YSUnGkkJVUiIxBQQIfEBOQDY2VfUOVUp7gPJDthQKyKE257NmF8vFdaczJGkgQrP9h1murqzWeCOOJFar5JAQ=="; }; }; "aws-sdk-1.18.0" = { @@ -20876,13 +19994,13 @@ let sha512 = "bSOfBCVPQ/0NWYpPl34MgqMbJf0eO6PsyVlmjbStlba+98hnE6X7z67tawBRot7S+qH3L49KW2u6dfJjvhDfdQ=="; }; }; - "aws-sdk-2.1415.0" = { + "aws-sdk-2.1418.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1415.0"; + version = "2.1418.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1415.0.tgz"; - sha512 = "tJneWCa1IZnw+pn3AwjE+3u8oGSlMMk6mCkA/7BOqe+n9shLLymwPfmxeCxtArBmBzg8m74vkoEYh5tm8Eo/gw=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1418.0.tgz"; + sha512 = "6WDMJQAWKwVt+44+61c/SAXKpUSwToqBMeaqizhEe3GN8TWfxMc9RfCnsYIIwS+L+5hedmKC5oc6Fg2ujs8KUQ=="; }; }; "aws-sign2-0.6.0" = { @@ -21065,15 +20183,6 @@ let sha512 = "poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg=="; }; }; - "babel-jest-27.5.1" = { - name = "babel-jest"; - packageName = "babel-jest"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz"; - sha512 = "cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg=="; - }; - }; "babel-loader-8.0.2" = { name = "babel-loader"; packageName = "babel-loader"; @@ -21092,24 +20201,6 @@ let sha512 = "H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q=="; }; }; - "babel-plugin-istanbul-6.1.1" = { - name = "babel-plugin-istanbul"; - packageName = "babel-plugin-istanbul"; - version = "6.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz"; - sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA=="; - }; - }; - "babel-plugin-jest-hoist-27.5.1" = { - name = "babel-plugin-jest-hoist"; - packageName = "babel-plugin-jest-hoist"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz"; - sha512 = "50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ=="; - }; - }; "babel-plugin-jsx-pragmatic-1.0.2" = { name = "babel-plugin-jsx-pragmatic"; packageName = "babel-plugin-jsx-pragmatic"; @@ -21128,15 +20219,6 @@ let sha512 = "SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg=="; }; }; - "babel-plugin-macros-3.1.0" = { - name = "babel-plugin-macros"; - packageName = "babel-plugin-macros"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz"; - sha512 = "Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg=="; - }; - }; "babel-plugin-module-resolver-4.1.0" = { name = "babel-plugin-module-resolver"; packageName = "babel-plugin-module-resolver"; @@ -21146,15 +20228,6 @@ let sha512 = "MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA=="; }; }; - "babel-plugin-named-asset-import-0.3.8" = { - name = "babel-plugin-named-asset-import"; - packageName = "babel-plugin-named-asset-import"; - version = "0.3.8"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz"; - sha512 = "WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q=="; - }; - }; "babel-plugin-polyfill-corejs2-0.4.4" = { name = "babel-plugin-polyfill-corejs2"; packageName = "babel-plugin-polyfill-corejs2"; @@ -21245,15 +20318,6 @@ let sha512 = "VTtHsmvwRBkX3yLK4e+pFwk88BC6iNFqS2J8CCx2ddQc7RjXoRhuXXIgYCng21DYNty9IicCwDdTDjdr+TM7eg=="; }; }; - "babel-preset-current-node-syntax-1.0.1" = { - name = "babel-preset-current-node-syntax"; - packageName = "babel-preset-current-node-syntax"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"; - sha512 = "M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="; - }; - }; "babel-preset-expo-9.3.2" = { name = "babel-preset-expo"; packageName = "babel-preset-expo"; @@ -21263,24 +20327,6 @@ let sha512 = "BjyvjwjJG0MaaDBLP/esbXRrAItM76po9L9zfnLxeqgFsHCIPmD+6ir45coDLGAXwR8m9It3G1yqYM9JPyemsQ=="; }; }; - "babel-preset-jest-27.5.1" = { - name = "babel-preset-jest"; - packageName = "babel-preset-jest"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz"; - sha512 = "Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag=="; - }; - }; - "babel-preset-react-app-10.0.1" = { - name = "babel-preset-react-app"; - packageName = "babel-preset-react-app"; - version = "10.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz"; - sha512 = "b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg=="; - }; - }; "babel-runtime-6.26.0" = { name = "babel-runtime"; packageName = "babel-runtime"; @@ -21821,13 +20867,13 @@ let sha512 = "pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g=="; }; }; - "better-sqlite3-8.4.0" = { + "better-sqlite3-8.5.0" = { name = "better-sqlite3"; packageName = "better-sqlite3"; - version = "8.4.0"; + version = "8.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.4.0.tgz"; - sha512 = "NmsNW1CQvqMszu/CFAJ3pLct6NEFlNfuGM6vw72KHkjOD1UDnL96XNN1BMQc1hiHo8vE2GbOWQYIpZ+YM5wrZw=="; + url = "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.5.0.tgz"; + sha512 = "vbPcv/Hx5WYdyNg/NbcfyaBZyv9s/NVbxb7yCeC5Bq1pVocNxeL2tZmSu3Rlm4IEOTjYdGyzWQgyx0OSdORBzw=="; }; }; "bevent-0.1.5" = { @@ -21866,15 +20912,6 @@ let sha512 = "BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw=="; }; }; - "bfj-7.0.2" = { - name = "bfj"; - packageName = "bfj"; - version = "7.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz"; - sha512 = "+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw=="; - }; - }; "bheep-0.1.5" = { name = "bheep"; packageName = "bheep"; @@ -23540,15 +22577,6 @@ let sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="; }; }; - "buffer-builder-0.2.0" = { - name = "buffer-builder"; - packageName = "buffer-builder"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz"; - sha512 = "7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg=="; - }; - }; "buffer-crc32-0.2.1" = { name = "buffer-crc32"; packageName = "buffer-crc32"; @@ -24494,13 +23522,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001516" = { + "caniuse-lite-1.0.30001517" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001516"; + version = "1.0.30001517"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001516.tgz"; - sha512 = "Wmec9pCBY8CWbmI4HsjBeQLqDTqV91nFVR83DnZpYyRnPI1wePDsTg0bGLPC5VU/3OIZV1fmxEea1b+tFKe86g=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz"; + sha512 = "Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="; }; }; "canvas-2.11.2" = { @@ -24683,22 +23711,22 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.7.112" = { + "cdk8s-2.7.115" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.7.112"; + version = "2.7.115"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.7.112.tgz"; - sha512 = "u5IvNzTSXPee3/j0oBbB/MuvBE3+MBuRCAjebCNiudLqb7fMg97ubd2uvQXo+QVvJGHS3xcNTw2egVsILA9Xfg=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.7.115.tgz"; + sha512 = "AFMF8fUxnH+nlvmQAlj5SHyD3NJuEKQF3k4Lf6O8LPPtI/giYr42mVlK2CGkpvbwoTuakT8g5BSXKT8n1Sm8Cg=="; }; }; - "cdk8s-plus-25-2.8.94" = { + "cdk8s-plus-25-2.8.98" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.8.94"; + version = "2.8.98"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.8.94.tgz"; - sha512 = "TN0St3AE3nzazxh1mN/7n5vzLovpubWhEPT7FgDxYDL5RY57oPtQ6KEkw/VD+oTYJBY7UPMRQojnH2Fm4/SEbg=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.8.98.tgz"; + sha512 = "xXWHsPVmm6Rb2hzL/1JKRZu1CVMeDKPtxtNKlOe+Om4Wak6tAcgQo8IAmr9HC5jjw0cRoeBa/XE8AyqDcSE9/Q=="; }; }; "cdktf-0.17.1" = { @@ -24899,15 +23927,6 @@ let sha512 = "kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="; }; }; - "char-regex-2.0.1" = { - name = "char-regex"; - packageName = "char-regex"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz"; - sha512 = "oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw=="; - }; - }; "character-entities-1.2.4" = { name = "character-entities"; packageName = "character-entities"; @@ -25106,15 +24125,6 @@ let sha512 = "BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA=="; }; }; - "check-types-11.2.2" = { - name = "check-types"; - packageName = "check-types"; - version = "11.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz"; - sha512 = "HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA=="; - }; - }; "check-types-8.0.3" = { name = "check-types"; packageName = "check-types"; @@ -25484,15 +24494,6 @@ let sha512 = "UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A=="; }; }; - "cjs-module-lexer-1.2.3" = { - name = "cjs-module-lexer"; - packageName = "cjs-module-lexer"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz"; - sha512 = "0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ=="; - }; - }; "cjson-0.3.3" = { name = "cjson"; packageName = "cjson"; @@ -26465,15 +25466,6 @@ let sha512 = "jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ=="; }; }; - "collect-v8-coverage-1.0.2" = { - name = "collect-v8-coverage"; - packageName = "collect-v8-coverage"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz"; - sha512 = "lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q=="; - }; - }; "collection-map-1.0.0" = { name = "collection-map"; packageName = "collection-map"; @@ -27050,15 +26042,6 @@ let sha512 = "L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w=="; }; }; - "common-path-prefix-3.0.0" = { - name = "common-path-prefix"; - packageName = "common-path-prefix"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz"; - sha512 = "QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w=="; - }; - }; "common-tags-1.8.2" = { name = "common-tags"; packageName = "common-tags"; @@ -27383,15 +26366,6 @@ let sha512 = "cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA=="; }; }; - "confusing-browser-globals-1.0.11" = { - name = "confusing-browser-globals"; - packageName = "confusing-browser-globals"; - version = "1.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz"; - sha512 = "JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA=="; - }; - }; "connect-1.9.2" = { name = "connect"; packageName = "connect"; @@ -27933,15 +26907,6 @@ let sha512 = "7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA=="; }; }; - "convert-source-map-0.3.5" = { - name = "convert-source-map"; - packageName = "convert-source-map"; - version = "0.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz"; - sha512 = "+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg=="; - }; - }; "convert-source-map-1.1.3" = { name = "convert-source-map"; packageName = "convert-source-map"; @@ -28275,15 +27240,6 @@ let sha512 = "wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA=="; }; }; - "core-js-pure-3.31.1" = { - name = "core-js-pure"; - packageName = "core-js-pure"; - version = "3.31.1"; - src = fetchurl { - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.31.1.tgz"; - sha512 = "w+C62kvWti0EPs4KPMCMVv9DriHSXfQOCQ94bGGBiEW5rrbtt/Rz8n5Krhfw9cpFyzXBjf3DB3QnPdEzGDY4Fw=="; - }; - }; "core-util-is-1.0.2" = { name = "core-util-is"; packageName = "core-util-is"; @@ -28959,15 +27915,6 @@ let sha512 = "DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ=="; }; }; - "css-blank-pseudo-3.0.3" = { - name = "css-blank-pseudo"; - packageName = "css-blank-pseudo"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz"; - sha512 = "VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ=="; - }; - }; "css-color-keywords-1.0.0" = { name = "css-color-keywords"; packageName = "css-color-keywords"; @@ -29022,15 +27969,6 @@ let sha512 = "d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg=="; }; }; - "css-has-pseudo-3.0.4" = { - name = "css-has-pseudo"; - packageName = "css-has-pseudo"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz"; - sha512 = "Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw=="; - }; - }; "css-loader-2.1.1" = { name = "css-loader"; packageName = "css-loader"; @@ -29076,15 +28014,6 @@ let sha512 = "UNIFik2RgSbiTwIW1IsFwXWn6vs+bYdq83LKTSOsx7NJR7WII9dxewkHLltfTLVppoUApHV0118a4RZRI9FLwA=="; }; }; - "css-prefers-color-scheme-6.0.3" = { - name = "css-prefers-color-scheme"; - packageName = "css-prefers-color-scheme"; - version = "6.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz"; - sha512 = "4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA=="; - }; - }; "css-select-1.0.0" = { name = "css-select"; packageName = "css-select"; @@ -29238,15 +28167,6 @@ let sha512 = "Ht70DcFBh+/ekjVrYS2PlDMdSQEl3OFNmjK6lcn49HptBgilXf/Zwg4uFh9Xn0pX3Q8YOkSjIFOfK2osvdqpBw=="; }; }; - "cssdb-7.6.0" = { - name = "cssdb"; - packageName = "cssdb"; - version = "7.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cssdb/-/cssdb-7.6.0.tgz"; - sha512 = "Nna7rph8V0jC6+JBY4Vk4ndErUmfJfV6NJCaZdurL0omggabiy+QB2HCQtu5c/ACLZ0I7REv7A4QyPIoYzZx0w=="; - }; - }; "cssesc-3.0.0" = { name = "cssesc"; packageName = "cssesc"; @@ -31353,13 +30273,13 @@ let sha512 = "Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw=="; }; }; - "degenerator-4.0.4" = { + "degenerator-5.0.1" = { name = "degenerator"; packageName = "degenerator"; - version = "4.0.4"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/degenerator/-/degenerator-4.0.4.tgz"; - sha512 = "MTZdZsuNxSBL92rsjx3VFWe57OpRlikyLbcx2B5Dmdv6oScqpMrvpY7zHLMymrUxo3U5+suPUMsNgW/+SZB1lg=="; + url = "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz"; + sha512 = "TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ=="; }; }; "del-2.2.2" = { @@ -31659,13 +30579,13 @@ let sha512 = "pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg=="; }; }; - "detect-libc-2.0.1" = { + "detect-libc-2.0.2" = { name = "detect-libc"; packageName = "detect-libc"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz"; - sha512 = "463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w=="; + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz"; + sha512 = "UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw=="; }; }; "detect-newline-2.1.0" = { @@ -31704,15 +30624,6 @@ let sha512 = "aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ=="; }; }; - "detect-port-alt-1.1.6" = { - name = "detect-port-alt"; - packageName = "detect-port-alt"; - version = "1.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz"; - sha512 = "5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q=="; - }; - }; "detective-4.7.1" = { name = "detective"; packageName = "detective"; @@ -31893,15 +30804,6 @@ let sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; }; }; - "diff-sequences-27.5.1" = { - name = "diff-sequences"; - packageName = "diff-sequences"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz"; - sha512 = "k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ=="; - }; - }; "diff-sequences-29.4.3" = { name = "diff-sequences"; packageName = "diff-sequences"; @@ -32964,6 +31866,15 @@ let sha512 = "M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g=="; }; }; + "editorconfig-1.0.3" = { + name = "editorconfig"; + packageName = "editorconfig"; + version = "1.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/editorconfig/-/editorconfig-1.0.3.tgz"; + sha512 = "SLHUig+v3PpjlCGenNDSMVj5caWTJ+aDXaqR1ucZCbXcotV3D7+ycT1jwbICxiPC6gju/rS+iRw8SC7kQukSig=="; + }; + }; "ee-first-1.1.0" = { name = "ee-first"; packageName = "ee-first"; @@ -33027,13 +31938,13 @@ let sha512 = "r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ=="; }; }; - "electron-to-chromium-1.4.461" = { + "electron-to-chromium-1.4.466" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.461"; + version = "1.4.466"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.461.tgz"; - sha512 = "1JkvV2sgEGTDXjdsaQCeSwYYuhLRphRpc+g6EHTFELJXEiznLt3/0pZ9JuAOQ5p2rI3YxKTbivtvajirIfhrEQ=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.466.tgz"; + sha512 = "TSkRvbXRXD8BwhcGlZXDsbI2lRoP8dvqR7LQnqQNk9KxXBc4tG8O+rTuXgTyIpEdiqSGKEBSqrxdqEntnjNncA=="; }; }; "electrum-client-git+https://github.com/janoside/electrum-client" = { @@ -33128,24 +32039,6 @@ let sha512 = "AGvFfs+d0JKCJQ4o01ASQLGPmSCxgfU9RFXvzPvZdjKK8oscynksuJhWrSTSw7j7Ep/sZct5b5ZhYCi8S/t0HQ=="; }; }; - "emittery-0.10.2" = { - name = "emittery"; - packageName = "emittery"; - version = "0.10.2"; - src = fetchurl { - url = "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz"; - sha512 = "aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw=="; - }; - }; - "emittery-0.8.1" = { - name = "emittery"; - packageName = "emittery"; - version = "0.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz"; - sha512 = "uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg=="; - }; - }; "emmet-2.4.5" = { name = "emmet"; packageName = "emmet"; @@ -34020,13 +32913,13 @@ let sha512 = "TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q=="; }; }; - "esbuild-0.18.13" = { + "esbuild-0.18.14" = { name = "esbuild"; packageName = "esbuild"; - version = "0.18.13"; + version = "0.18.14"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.18.13.tgz"; - sha512 = "vhg/WR/Oiu4oUIkVhmfcc23G6/zWuEQKFS+yiosSHe4aN6+DQRXIfeloYGibIfVhkr4wyfuVsGNLr+sQU1rWWw=="; + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.18.14.tgz"; + sha512 = "uNPj5oHPYmj+ZhSQeYQVFZ+hAlJZbAGOmmILWIqrGvPVlNLbyOvU5Bu6Woi8G8nskcx0vwY0iFoMPrzT86Ko+w=="; }; }; "esbuild-android-64-0.14.47" = { @@ -34605,15 +33498,6 @@ let sha512 = "wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA=="; }; }; - "eslint-config-react-app-7.0.1" = { - name = "eslint-config-react-app"; - packageName = "eslint-config-react-app"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz"; - sha512 = "K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA=="; - }; - }; "eslint-config-standard-17.1.0" = { name = "eslint-config-standard"; packageName = "eslint-config-standard"; @@ -34668,15 +33552,6 @@ let sha512 = "GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ=="; }; }; - "eslint-plugin-flowtype-8.0.3" = { - name = "eslint-plugin-flowtype"; - packageName = "eslint-plugin-flowtype"; - version = "8.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz"; - sha512 = "dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ=="; - }; - }; "eslint-plugin-import-2.27.5" = { name = "eslint-plugin-import"; packageName = "eslint-plugin-import"; @@ -34686,15 +33561,6 @@ let sha512 = "LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow=="; }; }; - "eslint-plugin-jest-25.7.0" = { - name = "eslint-plugin-jest"; - packageName = "eslint-plugin-jest"; - version = "25.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz"; - sha512 = "PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ=="; - }; - }; "eslint-plugin-jsx-a11y-6.7.1" = { name = "eslint-plugin-jsx-a11y"; packageName = "eslint-plugin-jsx-a11y"; @@ -34749,15 +33615,6 @@ let sha512 = "oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g=="; }; }; - "eslint-plugin-testing-library-5.11.0" = { - name = "eslint-plugin-testing-library"; - packageName = "eslint-plugin-testing-library"; - version = "5.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.0.tgz"; - sha512 = "ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q=="; - }; - }; "eslint-plugin-vue-6.2.2" = { name = "eslint-plugin-vue"; packageName = "eslint-plugin-vue"; @@ -34893,15 +33750,6 @@ let sha512 = "pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA=="; }; }; - "eslint-webpack-plugin-3.2.0" = { - name = "eslint-webpack-plugin"; - packageName = "eslint-webpack-plugin"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz"; - sha512 = "avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w=="; - }; - }; "esmangle-evaluator-1.0.1" = { name = "esmangle-evaluator"; packageName = "esmangle-evaluator"; @@ -35658,15 +34506,6 @@ let sha512 = "V2hqwTtYRj0bj43K4MCtm0caD97YWkqOUHFMRCBW5L1x9IjyqOEc7Xa4oQjjiFbeFOSQzzwPV+BzXsQjSz08fw=="; }; }; - "exenv-es6-1.1.1" = { - name = "exenv-es6"; - packageName = "exenv-es6"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/exenv-es6/-/exenv-es6-1.1.1.tgz"; - sha512 = "vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ=="; - }; - }; "exif-parser-0.1.12" = { name = "exif-parser"; packageName = "exif-parser"; @@ -35766,15 +34605,6 @@ let sha512 = "A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw=="; }; }; - "expect-27.5.1" = { - name = "expect"; - packageName = "expect"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz"; - sha512 = "E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw=="; - }; - }; "explain-error-1.0.4" = { name = "explain-error"; packageName = "explain-error"; @@ -36549,15 +35379,6 @@ let sha512 = "vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ=="; }; }; - "fast-json-stable-hash-1.0.3" = { - name = "fast-json-stable-hash"; - packageName = "fast-json-stable-hash"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-json-stable-hash/-/fast-json-stable-hash-1.0.3.tgz"; - sha512 = "iLK3Tq2J/KbiUn/5OHyhxikHqzwFXSM2e803Dp2JtBdQjsCVuZwWvL+WqWXPPRUEuDX4c0kqID1SU84RCfxs3A=="; - }; - }; "fast-json-stable-stringify-2.1.0" = { name = "fast-json-stable-stringify"; packageName = "fast-json-stable-stringify"; @@ -36909,15 +35730,6 @@ let sha512 = "e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA=="; }; }; - "fibers-5.0.3" = { - name = "fibers"; - packageName = "fibers"; - version = "5.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/fibers/-/fibers-5.0.3.tgz"; - sha512 = "/qYTSoZydQkM21qZpGLDLuCq8c+B8KhuCQ1kLPvnRNhxhVbvrpmH9l2+Lblf5neDuEsY4bfT7LeO553TXQDvJw=="; - }; - }; "fields-0.1.24" = { name = "fields"; packageName = "fields"; @@ -37053,15 +35865,6 @@ let sha512 = "4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw=="; }; }; - "file-loader-6.2.0" = { - name = "file-loader"; - packageName = "file-loader"; - version = "6.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz"; - sha512 = "qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw=="; - }; - }; "file-or-stdin-1.0.2" = { name = "file-or-stdin"; packageName = "file-or-stdin"; @@ -37269,15 +36072,6 @@ let sha512 = "mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ=="; }; }; - "filesize-8.0.7" = { - name = "filesize"; - packageName = "filesize"; - version = "8.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz"; - sha512 = "pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ=="; - }; - }; "fill-range-2.2.4" = { name = "fill-range"; packageName = "fill-range"; @@ -38016,15 +36810,6 @@ let sha512 = "7YGDo0UlbMy++6G3lzncWISDaT5CVp+yPVAkZ7FDFF0ec+0HKgBOWOhPGKpMF0hjcm3Ps/HbtrETrQLYREZ7YQ=="; }; }; - "fork-ts-checker-webpack-plugin-6.5.3" = { - name = "fork-ts-checker-webpack-plugin"; - packageName = "fork-ts-checker-webpack-plugin"; - version = "6.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz"; - sha512 = "SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ=="; - }; - }; "form-data-1.0.0-rc3" = { name = "form-data"; packageName = "form-data"; @@ -39042,15 +37827,6 @@ let sha512 = "2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw=="; }; }; - "get-own-enumerable-property-symbols-3.0.2" = { - name = "get-own-enumerable-property-symbols"; - packageName = "get-own-enumerable-property-symbols"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz"; - sha512 = "I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="; - }; - }; "get-package-info-1.0.0" = { name = "get-package-info"; packageName = "get-package-info"; @@ -40987,15 +39763,6 @@ let sha512 = "VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA=="; }; }; - "harmony-reflect-1.6.2" = { - name = "harmony-reflect"; - packageName = "harmony-reflect"; - version = "1.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz"; - sha512 = "HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g=="; - }; - }; "has-1.0.3" = { name = "has"; packageName = "has"; @@ -42886,15 +41653,6 @@ let sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA=="; }; }; - "idb-7.1.1" = { - name = "idb"; - packageName = "idb"; - version = "7.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz"; - sha512 = "gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ=="; - }; - }; "idb-keyval-6.2.1" = { name = "idb-keyval"; packageName = "idb-keyval"; @@ -42913,15 +41671,6 @@ let sha512 = "snvtAQRforYUI+C2+45L2LBJy/0/uQUffxv8/uwiS98fSUoXHVrFPClgzWZWxT0drwkLHJRm9inZcYzTR42GLA=="; }; }; - "identity-obj-proxy-3.0.0" = { - name = "identity-obj-proxy"; - packageName = "identity-obj-proxy"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz"; - sha512 = "00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA=="; - }; - }; "ieee754-1.1.13" = { name = "ieee754"; packageName = "ieee754"; @@ -43732,15 +42481,6 @@ let sha512 = "QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ=="; }; }; - "inquirer-9.2.7" = { - name = "inquirer"; - packageName = "inquirer"; - version = "9.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.7.tgz"; - sha512 = "Bf52lnfvNxGPJPltiNO2tLBp3zC339KNlGMqOkW+dsvNikBhcVDK5kqU2lVX2FTPzuXUFX5WJDlsw//w3ZwoTw=="; - }; - }; "inquirer-9.2.8" = { name = "inquirer"; packageName = "inquirer"; @@ -44866,15 +43606,6 @@ let sha512 = "lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ=="; }; }; - "is-generator-fn-2.1.0" = { - name = "is-generator-fn"; - packageName = "is-generator-fn"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz"; - sha512 = "cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ=="; - }; - }; "is-generator-function-1.0.10" = { name = "is-generator-function"; packageName = "is-generator-function"; @@ -45100,15 +43831,6 @@ let sha512 = "CPduJfuGg8h8vW74WOxHtHmtQutyQBzR+3MjQ6iDHIYdbOnm1YC7jv43SqCoU8OPGTJD4nibmiryA4kmogbGrA=="; }; }; - "is-module-1.0.0" = { - name = "is-module"; - packageName = "is-module"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz"; - sha512 = "51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g=="; - }; - }; "is-my-ip-valid-1.0.1" = { name = "is-my-ip-valid"; packageName = "is-my-ip-valid"; @@ -45793,13 +44515,13 @@ let sha512 = "xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w=="; }; }; - "is-typed-array-1.1.10" = { + "is-typed-array-1.1.12" = { name = "is-typed-array"; packageName = "is-typed-array"; - version = "1.1.10"; + version = "1.1.12"; src = fetchurl { - url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz"; - sha512 = "PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A=="; + url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz"; + sha512 = "Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg=="; }; }; "is-typedarray-1.0.0" = { @@ -46234,15 +44956,6 @@ let sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ=="; }; }; - "istanbul-lib-instrument-5.2.1" = { - name = "istanbul-lib-instrument"; - packageName = "istanbul-lib-instrument"; - version = "5.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz"; - sha512 = "pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg=="; - }; - }; "istanbul-lib-processinfo-2.0.3" = { name = "istanbul-lib-processinfo"; packageName = "istanbul-lib-processinfo"; @@ -46423,60 +45136,6 @@ let sha512 = "z35ZSEcXHxLW4yumw0dF6L464NT36vmx3wxJw8MDpraBcWuNVgUPZgPJKcu1HekNgwlMFNqol7i/IpSbjhqwqA=="; }; }; - "jest-27.5.1" = { - name = "jest"; - packageName = "jest"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz"; - sha512 = "Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ=="; - }; - }; - "jest-changed-files-27.5.1" = { - name = "jest-changed-files"; - packageName = "jest-changed-files"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz"; - sha512 = "buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw=="; - }; - }; - "jest-circus-27.5.1" = { - name = "jest-circus"; - packageName = "jest-circus"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz"; - sha512 = "D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw=="; - }; - }; - "jest-cli-27.5.1" = { - name = "jest-cli"; - packageName = "jest-cli"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz"; - sha512 = "Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw=="; - }; - }; - "jest-config-27.5.1" = { - name = "jest-config"; - packageName = "jest-config"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz"; - sha512 = "5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA=="; - }; - }; - "jest-diff-27.5.1" = { - name = "jest-diff"; - packageName = "jest-diff"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz"; - sha512 = "m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw=="; - }; - }; "jest-diff-29.6.1" = { name = "jest-diff"; packageName = "jest-diff"; @@ -46486,33 +45145,6 @@ let sha512 = "FsNCvinvl8oVxpNLttNQX7FAq7vR+gMDGj90tiP7siWw1UdakWUGqrylpsYrpvj908IYckm5Y0Q7azNAozU1Kg=="; }; }; - "jest-docblock-27.5.1" = { - name = "jest-docblock"; - packageName = "jest-docblock"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz"; - sha512 = "rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ=="; - }; - }; - "jest-each-27.5.1" = { - name = "jest-each"; - packageName = "jest-each"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz"; - sha512 = "1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ=="; - }; - }; - "jest-environment-jsdom-27.5.1" = { - name = "jest-environment-jsdom"; - packageName = "jest-environment-jsdom"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz"; - sha512 = "TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw=="; - }; - }; "jest-environment-node-27.5.1" = { name = "jest-environment-node"; packageName = "jest-environment-node"; @@ -46522,15 +45154,6 @@ let sha512 = "Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw=="; }; }; - "jest-get-type-27.5.1" = { - name = "jest-get-type"; - packageName = "jest-get-type"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz"; - sha512 = "2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw=="; - }; - }; "jest-get-type-29.4.3" = { name = "jest-get-type"; packageName = "jest-get-type"; @@ -46540,42 +45163,6 @@ let sha512 = "J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg=="; }; }; - "jest-haste-map-27.5.1" = { - name = "jest-haste-map"; - packageName = "jest-haste-map"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz"; - sha512 = "7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng=="; - }; - }; - "jest-jasmine2-27.5.1" = { - name = "jest-jasmine2"; - packageName = "jest-jasmine2"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz"; - sha512 = "jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ=="; - }; - }; - "jest-leak-detector-27.5.1" = { - name = "jest-leak-detector"; - packageName = "jest-leak-detector"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz"; - sha512 = "POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ=="; - }; - }; - "jest-matcher-utils-27.5.1" = { - name = "jest-matcher-utils"; - packageName = "jest-matcher-utils"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz"; - sha512 = "z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw=="; - }; - }; "jest-message-util-27.5.1" = { name = "jest-message-util"; packageName = "jest-message-util"; @@ -46585,15 +45172,6 @@ let sha512 = "rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g=="; }; }; - "jest-message-util-28.1.3" = { - name = "jest-message-util"; - packageName = "jest-message-util"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz"; - sha512 = "PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g=="; - }; - }; "jest-mock-27.5.1" = { name = "jest-mock"; packageName = "jest-mock"; @@ -46603,87 +45181,6 @@ let sha512 = "K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og=="; }; }; - "jest-pnp-resolver-1.2.3" = { - name = "jest-pnp-resolver"; - packageName = "jest-pnp-resolver"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz"; - sha512 = "+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w=="; - }; - }; - "jest-regex-util-27.5.1" = { - name = "jest-regex-util"; - packageName = "jest-regex-util"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz"; - sha512 = "4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg=="; - }; - }; - "jest-regex-util-28.0.2" = { - name = "jest-regex-util"; - packageName = "jest-regex-util"; - version = "28.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz"; - sha512 = "4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw=="; - }; - }; - "jest-resolve-27.5.1" = { - name = "jest-resolve"; - packageName = "jest-resolve"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz"; - sha512 = "FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw=="; - }; - }; - "jest-resolve-dependencies-27.5.1" = { - name = "jest-resolve-dependencies"; - packageName = "jest-resolve-dependencies"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz"; - sha512 = "QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg=="; - }; - }; - "jest-runner-27.5.1" = { - name = "jest-runner"; - packageName = "jest-runner"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz"; - sha512 = "g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ=="; - }; - }; - "jest-runtime-27.5.1" = { - name = "jest-runtime"; - packageName = "jest-runtime"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz"; - sha512 = "o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A=="; - }; - }; - "jest-serializer-27.5.1" = { - name = "jest-serializer"; - packageName = "jest-serializer"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz"; - sha512 = "jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w=="; - }; - }; - "jest-snapshot-27.5.1" = { - name = "jest-snapshot"; - packageName = "jest-snapshot"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz"; - sha512 = "yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA=="; - }; - }; "jest-util-27.5.1" = { name = "jest-util"; packageName = "jest-util"; @@ -46693,60 +45190,6 @@ let sha512 = "Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw=="; }; }; - "jest-util-28.1.3" = { - name = "jest-util"; - packageName = "jest-util"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz"; - sha512 = "XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ=="; - }; - }; - "jest-validate-27.5.1" = { - name = "jest-validate"; - packageName = "jest-validate"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz"; - sha512 = "thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ=="; - }; - }; - "jest-watch-typeahead-1.1.0" = { - name = "jest-watch-typeahead"; - packageName = "jest-watch-typeahead"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz"; - sha512 = "Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw=="; - }; - }; - "jest-watcher-27.5.1" = { - name = "jest-watcher"; - packageName = "jest-watcher"; - version = "27.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz"; - sha512 = "z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw=="; - }; - }; - "jest-watcher-28.1.3" = { - name = "jest-watcher"; - packageName = "jest-watcher"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz"; - sha512 = "t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g=="; - }; - }; - "jest-worker-26.6.2" = { - name = "jest-worker"; - packageName = "jest-worker"; - version = "26.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz"; - sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; - }; - }; "jest-worker-27.5.1" = { name = "jest-worker"; packageName = "jest-worker"; @@ -46756,15 +45199,6 @@ let sha512 = "7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg=="; }; }; - "jest-worker-28.1.3" = { - name = "jest-worker"; - packageName = "jest-worker"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz"; - sha512 = "CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g=="; - }; - }; "jimp-0.14.0" = { name = "jimp"; packageName = "jimp"; @@ -47008,13 +45442,13 @@ let sha512 = "3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA=="; }; }; - "js-beautify-1.14.8" = { + "js-beautify-1.14.9" = { name = "js-beautify"; packageName = "js-beautify"; - version = "1.14.8"; + version = "1.14.9"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.8.tgz"; - sha512 = "4S7HFeI9YfRvRgKnEweohs0tgJj28InHVIj4Nl8Htf96Y6pHg3+tJrmo4ucAM9f7l4SHbFI3IvFAZ2a1eQPbyg=="; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.9.tgz"; + sha512 = "coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg=="; }; }; "js-git-0.7.8" = { @@ -48655,24 +47089,6 @@ let sha512 = "/Io2dpt3uU/wWkn2pkRBj3vudzsi6hMssGkREZCxLIczAIvLWy5Jw9PW7ctTxvcfXKCisbgsMLsgE1BvSZB6Kw=="; }; }; - "koa-compress-5.1.1" = { - name = "koa-compress"; - packageName = "koa-compress"; - version = "5.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-compress/-/koa-compress-5.1.1.tgz"; - sha512 = "UgMIN7ZoEP2DuoSQmD6CYvFSLt0NReGlc2qSY4bO4Oq0L56OiD9pDG41Kj/zFmVY/A3Wvmn4BqKcfq5H30LGIg=="; - }; - }; - "koa-connect-2.1.0" = { - name = "koa-connect"; - packageName = "koa-connect"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-connect/-/koa-connect-2.1.0.tgz"; - sha512 = "O9pcFafHk0oQsBevlbTBlB9co+2RUQJ4zCzu3qJPmGlGoeEZkne+7gWDkecqDPSbCtED6LmhlQladxs6NjOnMQ=="; - }; - }; "koa-convert-2.0.0" = { name = "koa-convert"; packageName = "koa-convert"; @@ -48718,15 +47134,6 @@ let sha512 = "azqs/VDpgIjXp4mikeGB5E6menPjNQRrevz11XVJl2v6gTB9g8MY4Lgezl8hrEdi330wDPyPSSTZM9Hmp+Ym4w=="; }; }; - "koa-route-3.2.0" = { - name = "koa-route"; - packageName = "koa-route"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-route/-/koa-route-3.2.0.tgz"; - sha512 = "8FsuWw/L+CUWJfpgN6vrlYUDNTheEinG8Zkm97GyuLJNyWjCVUs9p10Ih3jTIWwmDVQcz6827l0RKadAS5ibqA=="; - }; - }; "koa-router-7.4.0" = { name = "koa-router"; packageName = "koa-router"; @@ -48745,15 +47152,6 @@ let sha512 = "3UetMBdaXSiw24qM2Mx5mKmxLKw5ZTPRjACjfhK6Haca55RKm9hr/uHDrkrxhSl5/S1CKI/RivZVIopiatZuTA=="; }; }; - "koa-send-5.0.1" = { - name = "koa-send"; - packageName = "koa-send"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-send/-/koa-send-5.0.1.tgz"; - sha512 = "tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ=="; - }; - }; "koa-static-4.0.3" = { name = "koa-static"; packageName = "koa-static"; @@ -48763,15 +47161,6 @@ let sha512 = "JGmxTuPWy4bH7bt6gD/OMWkhprawvRmzJSr8TWKmTL4N7+IMv3s0SedeQi5S4ilxM9Bo6ptkCyXj/7wf+VS5tg=="; }; }; - "koa-static-5.0.0" = { - name = "koa-static"; - packageName = "koa-static"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz"; - sha512 = "UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ=="; - }; - }; "kuler-2.0.0" = { name = "kuler"; packageName = "kuler"; @@ -49492,13 +47881,13 @@ let sha512 = "VJhAL13nuWLHr2hJSDbX5gweh2P1AiCBVG85ZPXR0Gf6/x1eTn1RWLRMxgk+5oiuAKa88GcAHXPYpQjWhKyOnQ=="; }; }; - "lightning-9.8.1" = { + "lightning-9.9.0" = { name = "lightning"; packageName = "lightning"; - version = "9.8.1"; + version = "9.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-9.8.1.tgz"; - sha512 = "wVCTvUrokANT0kkdTUu7RtRZLy1SCiU1LMeifOQDy7GNK7ZhTusJcTobXR7Xua9THm7fZm8lvfmUGwMxsLBlxA=="; + url = "https://registry.npmjs.org/lightning/-/lightning-9.9.0.tgz"; + sha512 = "SSBzdv7qvxgQWH0a2Q/9hCcfbMH67VPwWm3FtFrl/e/89QVydnb+9yMTDMpPFh8R2E+kN1NiBEy4jihC4Y3EtA=="; }; }; "lightningcss-1.21.5" = { @@ -49879,13 +48268,13 @@ let sha512 = "TWKfTVMhEb7Df7xB6z3/fiNTaBONwyoqYWgl7dZ9JbdOMLrhtX0y9OJAsFWAgIo0SYDjO2MM7sq1UDfLf3Zcqg=="; }; }; - "ln-service-56.8.1" = { + "ln-service-56.9.0" = { name = "ln-service"; packageName = "ln-service"; - version = "56.8.1"; + version = "56.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-56.8.1.tgz"; - sha512 = "rrUQ+syBDyPrWdPfOPh1tRCtKG+OWJ+9SZC0eC2STW3CdDc8erH/ynN9bEqems6VY1fEuNhhft29hNlWkSFluw=="; + url = "https://registry.npmjs.org/ln-service/-/ln-service-56.9.0.tgz"; + sha512 = "cximQT2aIhKOkckuaVO8U4J04HoLWejcFb3aIv2Pas65y7D9VqaIXyb1FCIH4o9Rf0Z9sNSdf5a6RR2G2Ov4uQ=="; }; }; "ln-sync-4.2.0" = { @@ -51652,15 +50041,6 @@ let sha512 = "u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA=="; }; }; - "loglevelnext-4.0.1" = { - name = "loglevelnext"; - packageName = "loglevelnext"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/loglevelnext/-/loglevelnext-4.0.1.tgz"; - sha512 = "/tlMUn5wqgzg9msy0PiWc+8fpVXEuYPq49c2RGyw2NAh0hSrgq6j/Z3YPnwWsILMoFJ+ZT6ePHnWUonkjDnq2Q=="; - }; - }; "lokijs-1.5.3" = { name = "lokijs"; packageName = "lokijs"; @@ -52364,15 +50744,6 @@ let sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw=="; }; }; - "makeerror-1.0.12" = { - name = "makeerror"; - packageName = "makeerror"; - version = "1.0.12"; - src = fetchurl { - url = "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz"; - sha512 = "JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="; - }; - }; "map-age-cleaner-0.1.3" = { name = "map-age-cleaner"; packageName = "map-age-cleaner"; @@ -54605,13 +52976,13 @@ let sha512 = "LfHUYIA047rrqIZEn0gwbqbzarU5bmZ8yZ9SizeoiPwVq5cemE3foJTJZ3pCktUq/IPkKNGghFHJk1O8149mOA=="; }; }; - "miniflare-3.20230710.0" = { + "miniflare-3.20230717.0" = { name = "miniflare"; packageName = "miniflare"; - version = "3.20230710.0"; + version = "3.20230717.0"; src = fetchurl { - url = "https://registry.npmjs.org/miniflare/-/miniflare-3.20230710.0.tgz"; - sha512 = "kVxJoJFeepK+rGJp9UN0D8d3sL6hjFbzd3qcLUUUKosp0ouoleOa6uPNK0b8fEBWWqFUD2W4V4ziN7UvXFB4pg=="; + url = "https://registry.npmjs.org/miniflare/-/miniflare-3.20230717.0.tgz"; + sha512 = "S1L3QKPEHAf7n+66b/JpWdsIusz/tlgHRnNcDztz0PfeDkWlfNPxDzrnMqv/cHm9MjzXqhz2XqFkWqZSfZJk5Q=="; }; }; "minilog-3.1.0" = { @@ -54749,6 +53120,15 @@ let sha512 = "W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA=="; }; }; + "minimatch-9.0.1" = { + name = "minimatch"; + packageName = "minimatch"; + version = "9.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz"; + sha512 = "0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w=="; + }; + }; "minimatch-9.0.3" = { name = "minimatch"; packageName = "minimatch"; @@ -55154,13 +53534,13 @@ let sha512 = "ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg=="; }; }; - "mobx-6.9.1" = { + "mobx-6.10.0" = { name = "mobx"; packageName = "mobx"; - version = "6.9.1"; + version = "6.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/mobx/-/mobx-6.9.1.tgz"; - sha512 = "7V41hvBmzCQg5n/xoZi2qkhREbnF3wHbzbIdR1sLJhVt6yWq2Zq0FlNahEt/RccOmEIjipvBqeQ4mlOEyMhaaA=="; + url = "https://registry.npmjs.org/mobx/-/mobx-6.10.0.tgz"; + sha512 = "WMbVpCMFtolbB8swQ5E2YRrU+Yu8iLozCVx3CdGjbBKlP7dFiCSuiG06uea3JCFN5DnvtAX7+G5Bp82e2xu0ww=="; }; }; "mobx-react-7.6.0" = { @@ -55181,15 +53561,6 @@ let sha512 = "NkJREyFTSUXR772Qaai51BnE1voWx56LOL80xG7qkZr6vo8vEaLF3sz1JNUVh+rxmUzxYaqOhfuxTfqUh0FXUg=="; }; }; - "mobx-utils-6.0.7" = { - name = "mobx-utils"; - packageName = "mobx-utils"; - version = "6.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/mobx-utils/-/mobx-utils-6.0.7.tgz"; - sha512 = "fPQZQRdtKIcW8CoG5Tq5HxcZBW/E0VKRrKGMmWC7H/+AJ773kH4F44o9/UfwemF+y3eJNsHKnIrg7tpwt5ml2Q=="; - }; - }; "mocha-2.5.3" = { name = "mocha"; packageName = "mocha"; @@ -57369,15 +55740,6 @@ let sha512 = "Jd4cvbJMryN21r5HgxQOpMEqv+ooke/korixNNK3mGqfGJmy0M77WDDzo/05969+OkMy3XW1UuZsSmW9KQm7Fw=="; }; }; - "node-sass-7.0.3" = { - name = "node-sass"; - packageName = "node-sass"; - version = "7.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/node-sass/-/node-sass-7.0.3.tgz"; - sha512 = "8MIlsY/4dXUkJDYht9pIWBhMil3uHmE8b/AdJPjmFn1nBx9X9BASzfzmsCy0uCCb8eqI3SYYzVPDswWqSx7gjw=="; - }; - }; "node-schedule-2.1.0" = { name = "node-schedule"; packageName = "node-schedule"; @@ -58341,13 +56703,13 @@ let sha512 = "ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ=="; }; }; - "nx-16.5.2" = { + "nx-16.5.3" = { name = "nx"; packageName = "nx"; - version = "16.5.2"; + version = "16.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/nx/-/nx-16.5.2.tgz"; - sha512 = "3XAkVBhXuoFgD7r0lASOh2589XSmBUjioevZb13lDjKDN/FHFWedwMZWtmmbzxBGO3EAWjl+3owBS1RIPm1UHw=="; + url = "https://registry.npmjs.org/nx/-/nx-16.5.3.tgz"; + sha512 = "VxhOijTT3evTsKEa2qsBqSroaFj/tSvRKOc1K7MPlhokB5wLEedehzbwICCjIkicPHLImiKExjPs0l290DJLwA=="; }; }; "nyc-15.1.0" = { @@ -60052,13 +58414,13 @@ let sha512 = "CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ=="; }; }; - "pac-proxy-agent-6.0.4" = { + "pac-proxy-agent-7.0.0" = { name = "pac-proxy-agent"; packageName = "pac-proxy-agent"; - version = "6.0.4"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-6.0.4.tgz"; - sha512 = "FbJYeusBOZNe6bmrC2/+r/HljwExryon16lNKEU82gWiwIPMCEktUPSEAcTkO9K3jd/YPGuX/azZel1ltmo6nQ=="; + url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.0.tgz"; + sha512 = "t4tRAMx0uphnZrio0S0Jw9zg3oDbz1zVhQ/Vy18FjLfP1XOLNUEjaVxYCYRI6NS+BsMBXKIzV6cTLOkO9AtywA=="; }; }; "pac-resolver-4.2.0" = { @@ -60079,13 +58441,13 @@ let sha512 = "cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q=="; }; }; - "pac-resolver-6.0.2" = { + "pac-resolver-7.0.0" = { name = "pac-resolver"; packageName = "pac-resolver"; - version = "6.0.2"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/pac-resolver/-/pac-resolver-6.0.2.tgz"; - sha512 = "EQpuJ2ifOjpZY5sg1Q1ZeAxvtLwR7Mj3RgY8cysPGbsRu3RBXyJFWxnMus9PScjxya/0LzvVDxNh/gl0eXBU4w=="; + url = "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz"; + sha512 = "Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg=="; }; }; "package-hash-4.0.0" = { @@ -62176,24 +60538,6 @@ let sha512 = "jrXHFF8iTloAenySjM/ob3gSj7pCu0Ji49hnjqzsgSRa50hkWCKD0HQ+gMNJkW38jBI68MpAAg7ZWwHwX8NMMw=="; }; }; - "postcss-attribute-case-insensitive-5.0.2" = { - name = "postcss-attribute-case-insensitive"; - packageName = "postcss-attribute-case-insensitive"; - version = "5.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz"; - sha512 = "XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ=="; - }; - }; - "postcss-browser-comments-4.0.0" = { - name = "postcss-browser-comments"; - packageName = "postcss-browser-comments"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz"; - sha512 = "X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg=="; - }; - }; "postcss-calc-7.0.5" = { name = "postcss-calc"; packageName = "postcss-calc"; @@ -62221,42 +60565,6 @@ let sha512 = "TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ=="; }; }; - "postcss-clamp-4.1.0" = { - name = "postcss-clamp"; - packageName = "postcss-clamp"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz"; - sha512 = "ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow=="; - }; - }; - "postcss-color-functional-notation-4.2.4" = { - name = "postcss-color-functional-notation"; - packageName = "postcss-color-functional-notation"; - version = "4.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz"; - sha512 = "2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg=="; - }; - }; - "postcss-color-hex-alpha-8.0.4" = { - name = "postcss-color-hex-alpha"; - packageName = "postcss-color-hex-alpha"; - version = "8.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz"; - sha512 = "nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ=="; - }; - }; - "postcss-color-rebeccapurple-7.1.1" = { - name = "postcss-color-rebeccapurple"; - packageName = "postcss-color-rebeccapurple"; - version = "7.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz"; - sha512 = "pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg=="; - }; - }; "postcss-colormin-4.0.3" = { name = "postcss-colormin"; packageName = "postcss-colormin"; @@ -62311,42 +60619,6 @@ let sha512 = "U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw=="; }; }; - "postcss-custom-media-8.0.2" = { - name = "postcss-custom-media"; - packageName = "postcss-custom-media"; - version = "8.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz"; - sha512 = "7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg=="; - }; - }; - "postcss-custom-properties-12.1.11" = { - name = "postcss-custom-properties"; - packageName = "postcss-custom-properties"; - version = "12.1.11"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz"; - sha512 = "0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ=="; - }; - }; - "postcss-custom-selectors-6.0.3" = { - name = "postcss-custom-selectors"; - packageName = "postcss-custom-selectors"; - version = "6.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz"; - sha512 = "fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg=="; - }; - }; - "postcss-dir-pseudo-class-6.0.5" = { - name = "postcss-dir-pseudo-class"; - packageName = "postcss-dir-pseudo-class"; - version = "6.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz"; - sha512 = "eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA=="; - }; - }; "postcss-discard-comments-4.0.2" = { name = "postcss-discard-comments"; packageName = "postcss-discard-comments"; @@ -62455,24 +60727,6 @@ let sha512 = "4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw=="; }; }; - "postcss-double-position-gradients-3.1.2" = { - name = "postcss-double-position-gradients"; - packageName = "postcss-double-position-gradients"; - version = "3.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz"; - sha512 = "GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ=="; - }; - }; - "postcss-env-function-4.0.6" = { - name = "postcss-env-function"; - packageName = "postcss-env-function"; - version = "4.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz"; - sha512 = "kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA=="; - }; - }; "postcss-flexbugs-fixes-4.2.1" = { name = "postcss-flexbugs-fixes"; packageName = "postcss-flexbugs-fixes"; @@ -62482,51 +60736,6 @@ let sha512 = "9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ=="; }; }; - "postcss-flexbugs-fixes-5.0.2" = { - name = "postcss-flexbugs-fixes"; - packageName = "postcss-flexbugs-fixes"; - version = "5.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz"; - sha512 = "18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ=="; - }; - }; - "postcss-focus-visible-6.0.4" = { - name = "postcss-focus-visible"; - packageName = "postcss-focus-visible"; - version = "6.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz"; - sha512 = "QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw=="; - }; - }; - "postcss-focus-within-5.0.4" = { - name = "postcss-focus-within"; - packageName = "postcss-focus-within"; - version = "5.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz"; - sha512 = "vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ=="; - }; - }; - "postcss-font-variant-5.0.0" = { - name = "postcss-font-variant"; - packageName = "postcss-font-variant"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz"; - sha512 = "1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA=="; - }; - }; - "postcss-gap-properties-3.0.5" = { - name = "postcss-gap-properties"; - packageName = "postcss-gap-properties"; - version = "3.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz"; - sha512 = "IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg=="; - }; - }; "postcss-html-0.36.0" = { name = "postcss-html"; packageName = "postcss-html"; @@ -62536,15 +60745,6 @@ let sha512 = "HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw=="; }; }; - "postcss-image-set-function-4.0.7" = { - name = "postcss-image-set-function"; - packageName = "postcss-image-set-function"; - version = "4.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz"; - sha512 = "9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw=="; - }; - }; "postcss-import-15.1.0" = { name = "postcss-import"; packageName = "postcss-import"; @@ -62554,15 +60754,6 @@ let sha512 = "hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew=="; }; }; - "postcss-initial-4.0.1" = { - name = "postcss-initial"; - packageName = "postcss-initial"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz"; - sha512 = "0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ=="; - }; - }; "postcss-js-4.0.1" = { name = "postcss-js"; packageName = "postcss-js"; @@ -62572,15 +60763,6 @@ let sha512 = "dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw=="; }; }; - "postcss-lab-function-4.2.1" = { - name = "postcss-lab-function"; - packageName = "postcss-lab-function"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz"; - sha512 = "xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w=="; - }; - }; "postcss-less-3.1.4" = { name = "postcss-less"; packageName = "postcss-less"; @@ -62617,33 +60799,6 @@ let sha512 = "cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA=="; }; }; - "postcss-loader-6.2.1" = { - name = "postcss-loader"; - packageName = "postcss-loader"; - version = "6.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz"; - sha512 = "WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q=="; - }; - }; - "postcss-logical-5.0.4" = { - name = "postcss-logical"; - packageName = "postcss-logical"; - version = "5.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz"; - sha512 = "RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g=="; - }; - }; - "postcss-media-minmax-5.0.0" = { - name = "postcss-media-minmax"; - packageName = "postcss-media-minmax"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz"; - sha512 = "yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ=="; - }; - }; "postcss-media-query-parser-0.2.3" = { name = "postcss-media-query-parser"; packageName = "postcss-media-query-parser"; @@ -62941,24 +61096,6 @@ let sha512 = "mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ=="; }; }; - "postcss-nesting-10.2.0" = { - name = "postcss-nesting"; - packageName = "postcss-nesting"; - version = "10.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz"; - sha512 = "EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA=="; - }; - }; - "postcss-normalize-10.0.1" = { - name = "postcss-normalize"; - packageName = "postcss-normalize"; - version = "10.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz"; - sha512 = "+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA=="; - }; - }; "postcss-normalize-charset-4.0.1" = { name = "postcss-normalize-charset"; packageName = "postcss-normalize-charset"; @@ -63202,15 +61339,6 @@ let sha512 = "7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw=="; }; }; - "postcss-opacity-percentage-1.1.3" = { - name = "postcss-opacity-percentage"; - packageName = "postcss-opacity-percentage"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz"; - sha512 = "An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A=="; - }; - }; "postcss-ordered-values-4.1.2" = { name = "postcss-ordered-values"; packageName = "postcss-ordered-values"; @@ -63238,51 +61366,6 @@ let sha512 = "K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg=="; }; }; - "postcss-overflow-shorthand-3.0.4" = { - name = "postcss-overflow-shorthand"; - packageName = "postcss-overflow-shorthand"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz"; - sha512 = "otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A=="; - }; - }; - "postcss-page-break-3.0.4" = { - name = "postcss-page-break"; - packageName = "postcss-page-break"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz"; - sha512 = "1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ=="; - }; - }; - "postcss-place-7.0.5" = { - name = "postcss-place"; - packageName = "postcss-place"; - version = "7.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz"; - sha512 = "wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g=="; - }; - }; - "postcss-preset-env-7.8.3" = { - name = "postcss-preset-env"; - packageName = "postcss-preset-env"; - version = "7.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz"; - sha512 = "T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag=="; - }; - }; - "postcss-pseudo-class-any-link-7.1.6" = { - name = "postcss-pseudo-class-any-link"; - packageName = "postcss-pseudo-class-any-link"; - version = "7.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz"; - sha512 = "9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w=="; - }; - }; "postcss-reduce-initial-4.0.3" = { name = "postcss-reduce-initial"; packageName = "postcss-reduce-initial"; @@ -63337,15 +61420,6 @@ let sha512 = "FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w=="; }; }; - "postcss-replace-overflow-wrap-4.0.0" = { - name = "postcss-replace-overflow-wrap"; - packageName = "postcss-replace-overflow-wrap"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz"; - sha512 = "KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw=="; - }; - }; "postcss-reporter-7.0.5" = { name = "postcss-reporter"; packageName = "postcss-reporter"; @@ -63400,15 +61474,6 @@ let sha512 = "jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA=="; }; }; - "postcss-selector-not-6.0.1" = { - name = "postcss-selector-not"; - packageName = "postcss-selector-not"; - version = "6.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz"; - sha512 = "1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ=="; - }; - }; "postcss-selector-parser-3.1.2" = { name = "postcss-selector-parser"; packageName = "postcss-selector-parser"; @@ -63967,15 +62032,6 @@ let sha512 = "7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg=="; }; }; - "prettier-2.8.6" = { - name = "prettier"; - packageName = "prettier"; - version = "2.8.6"; - src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-2.8.6.tgz"; - sha512 = "mtuzdiBbHwPEgl7NxWlqOkithPyp4VN93V7VeHVWBF+ad3I5avc0RVDT4oImXQy9H/AqxA2NSQH8pSxHW6FYbQ=="; - }; - }; "prettier-2.8.8" = { name = "prettier"; packageName = "prettier"; @@ -63985,6 +62041,15 @@ let sha512 = "tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q=="; }; }; + "prettier-3.0.0" = { + name = "prettier"; + packageName = "prettier"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/prettier/-/prettier-3.0.0.tgz"; + sha512 = "zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g=="; + }; + }; "prettier-bytes-1.0.4" = { name = "prettier-bytes"; packageName = "prettier-bytes"; @@ -64003,13 +62068,13 @@ let sha512 = "2UzApPuxi2yRoyMlXMazgR6UcH9DKJhNgCviIwY3ixZ9THWSSrUww5vkiZ3C48WvpFl1M1y/oU63deSy1puWEA=="; }; }; - "prettier-plugin-astro-0.10.0" = { + "prettier-plugin-astro-0.11.0" = { name = "prettier-plugin-astro"; packageName = "prettier-plugin-astro"; - version = "0.10.0"; + version = "0.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.10.0.tgz"; - sha512 = "dPzop0gKZyVGpTDQmfy+e7FKXC9JT3mlpfYA2diOVz+Ui+QR1U4G/s+OesKl2Hib2JJOtAYJs/l+ovgT0ljlFA=="; + url = "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.11.0.tgz"; + sha512 = "rl2hJ4Kty/aEfGjk3i4JS+bpng9MjgvwqLRNzeb9NqYhqKoWNwOR39cIJXFjU1vR3zYOPnwWNRMelKb0orunYA=="; }; }; "prettier-plugin-svelte-2.10.1" = { @@ -64084,15 +62149,6 @@ let sha512 = "Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ=="; }; }; - "pretty-format-28.1.3" = { - name = "pretty-format"; - packageName = "pretty-format"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz"; - sha512 = "8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q=="; - }; - }; "pretty-format-29.6.1" = { name = "pretty-format"; packageName = "pretty-format"; @@ -64795,13 +62851,13 @@ let sha512 = "gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g=="; }; }; - "proxy-agent-6.2.2" = { + "proxy-agent-6.3.0" = { name = "proxy-agent"; packageName = "proxy-agent"; - version = "6.2.2"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.2.2.tgz"; - sha512 = "wPQ+zf4bFG3wtqX9L8xNEK6vfOmaZABbpN2NslLLSlbfTKbUL7X1LqwpPVdbsbloAFvtWAmnVhJQ3vkagxKUTA=="; + url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.0.tgz"; + sha512 = "0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og=="; }; }; "proxy-from-env-1.1.0" = { @@ -65866,13 +63922,13 @@ let sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; }; }; - "pyright-1.1.317" = { + "pyright-1.1.318" = { name = "pyright"; packageName = "pyright"; - version = "1.1.317"; + version = "1.1.318"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.317.tgz"; - sha512 = "3tGq//Nmqfp8IDuFfQwF18dqDBq5SRo/OPBJLiW0p+VwDVSth1LS1fBrMy/u14Mqcdi7C+ARVnxXTBCpczZahg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.318.tgz"; + sha512 = "w2FLP8i6fKcwmBKtdNKbaWE3IQub3EZe4jICrf6m5i7VaA4iYi4kN++zFp/z1sz76N7EAxZ85UG/81/csNWRHw=="; }; }; "q-1.1.2" = { @@ -66739,24 +64795,6 @@ let sha512 = "/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ=="; }; }; - "react-app-polyfill-3.0.0" = { - name = "react-app-polyfill"; - packageName = "react-app-polyfill"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz"; - sha512 = "sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w=="; - }; - }; - "react-dev-utils-12.0.1" = { - name = "react-dev-utils"; - packageName = "react-dev-utils"; - version = "12.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz"; - sha512 = "84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ=="; - }; - }; "react-devtools-core-4.28.0" = { name = "react-devtools-core"; packageName = "react-devtools-core"; @@ -66784,15 +64822,6 @@ let sha512 = "s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA=="; }; }; - "react-dom-18.2.0" = { - name = "react-dom"; - packageName = "react-dom"; - version = "18.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz"; - sha512 = "6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g=="; - }; - }; "react-error-overlay-4.0.0" = { name = "react-error-overlay"; packageName = "react-error-overlay"; @@ -66802,15 +64831,6 @@ let sha512 = "FlsPxavEyMuR6TjVbSSywovXSEyOg6ZDj5+Z8nbsRl9EkOzAhEIcS+GLoQDC5fz/t9suhUXWmUrOBrgeUvrMxw=="; }; }; - "react-error-overlay-6.0.11" = { - name = "react-error-overlay"; - packageName = "react-error-overlay"; - version = "6.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz"; - sha512 = "/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg=="; - }; - }; "react-error-overlay-6.0.9" = { name = "react-error-overlay"; packageName = "react-error-overlay"; @@ -66910,15 +64930,6 @@ let sha512 = "wa0fGj7Zht1EYMRhKWwoo1H9GApxYLBuhoAuXN0TlltESAjDssB+Apf0T/DngVqaMyPypDmabL37vw/2aRM98Q=="; }; }; - "react-refresh-0.11.0" = { - name = "react-refresh"; - packageName = "react-refresh"; - version = "0.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz"; - sha512 = "F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A=="; - }; - }; "react-refresh-0.14.0" = { name = "react-refresh"; packageName = "react-refresh"; @@ -66946,15 +64957,6 @@ let sha512 = "Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ=="; }; }; - "react-scripts-5.0.1" = { - name = "react-scripts"; - packageName = "react-scripts"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz"; - sha512 = "8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ=="; - }; - }; "react-side-effect-2.1.2" = { name = "react-side-effect"; packageName = "react-side-effect"; @@ -67810,15 +65812,6 @@ let sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; }; }; - "regex-parser-2.2.11" = { - name = "regex-parser"; - packageName = "regex-parser"; - version = "2.2.11"; - src = fetchurl { - url = "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz"; - sha512 = "jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q=="; - }; - }; "regexp-to-ast-0.3.5" = { name = "regexp-to-ast"; packageName = "regexp-to-ast"; @@ -69340,24 +67333,6 @@ let sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg=="; }; }; - "resolve-url-loader-4.0.0" = { - name = "resolve-url-loader"; - packageName = "resolve-url-loader"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz"; - sha512 = "05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA=="; - }; - }; - "resolve.exports-1.1.1" = { - name = "resolve.exports"; - packageName = "resolve.exports"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz"; - sha512 = "/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ=="; - }; - }; "resolve.exports-2.0.2" = { name = "resolve.exports"; packageName = "resolve.exports"; @@ -69619,24 +67594,6 @@ let sha512 = "Bf9dO6G+st4L0Qj0qliH0djWf2w6NY5ijOyYQpMOZduS6kw+7xAZ3Li6ApISbSeIhpGVNgr+MpF5B0kuXwt2gg=="; }; }; - "rework-1.0.1" = { - name = "rework"; - packageName = "rework"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz"; - sha512 = "eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw=="; - }; - }; - "rework-visit-1.0.0" = { - name = "rework-visit"; - packageName = "rework-visit"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz"; - sha512 = "W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ=="; - }; - }; "rfc-3986-1.0.1" = { name = "rfc-3986"; packageName = "rfc-3986"; @@ -69871,15 +67828,6 @@ let sha512 = "4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA=="; }; }; - "rollup-plugin-terser-7.0.2" = { - name = "rollup-plugin-terser"; - packageName = "rollup-plugin-terser"; - version = "7.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz"; - sha512 = "w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ=="; - }; - }; "rollup-pluginutils-2.8.2" = { name = "rollup-pluginutils"; packageName = "rollup-pluginutils"; @@ -70348,15 +68296,6 @@ let sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg=="; }; }; - "sanitize.css-13.0.0" = { - name = "sanitize.css"; - packageName = "sanitize.css"; - version = "13.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz"; - sha512 = "ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA=="; - }; - }; "sasl-anonymous-0.1.0" = { name = "sasl-anonymous"; packageName = "sasl-anonymous"; @@ -70402,94 +68341,13 @@ let sha512 = "/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag=="; }; }; - "sass-1.63.6" = { + "sass-1.64.0" = { name = "sass"; packageName = "sass"; - version = "1.63.6"; + version = "1.64.0"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.63.6.tgz"; - sha512 = "MJuxGMHzaOW7ipp+1KdELtqKbfAWbH7OLIdoSMnVe3EXPMTmxTmlaZDCTsgIpPCs3w99lLo9/zDKkOrJuT5byw=="; - }; - }; - "sass-embedded-1.63.6" = { - name = "sass-embedded"; - packageName = "sass-embedded"; - version = "1.63.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.63.6.tgz"; - sha512 = "Vt6sHVNHzvpDJchIsHQyXXjGifwCnMNBGpDJLpb2jT1/ESTPyNBrikGjVmIQCHZBGT86cUxxKCUfHPCqrerDaA=="; - }; - }; - "sass-embedded-darwin-arm64-1.63.6" = { - name = "sass-embedded-darwin-arm64"; - packageName = "sass-embedded-darwin-arm64"; - version = "1.63.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.63.6.tgz"; - sha512 = "eUz2p3fXkLVXvnonm7WyWX0fV1lhfP2ZE/NXYDJhCKlAs1KfSxmZ8udFsfHp+LM+/zWJmrv///8fyt8whewwvA=="; - }; - }; - "sass-embedded-darwin-x64-1.63.6" = { - name = "sass-embedded-darwin-x64"; - packageName = "sass-embedded-darwin-x64"; - version = "1.63.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.63.6.tgz"; - sha512 = "1XavKT4nATq34JqkG5EZDtcD7How5u3Sm+wEhs7TCWhKBtPIOu6AaZwFWR95v3GFGlUG4wIdO0ymODMse7LJ4w=="; - }; - }; - "sass-embedded-linux-arm-1.63.6" = { - name = "sass-embedded-linux-arm"; - packageName = "sass-embedded-linux-arm"; - version = "1.63.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.63.6.tgz"; - sha512 = "GOlY0Tt1YZgAM68C12IYBaDEf5EopTr8AEOVm3Z/hxWQK6mJioE5Fas4WF6L3P4MGcTDX1Zh3SiA0UVuKQ0aJg=="; - }; - }; - "sass-embedded-linux-arm64-1.63.6" = { - name = "sass-embedded-linux-arm64"; - packageName = "sass-embedded-linux-arm64"; - version = "1.63.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.63.6.tgz"; - sha512 = "/Dm5jj/Ev0GHeMKP1OC9SuNa1NDl8ms3JO+Z+ex3jt3Lu5YwpRmAQi0qv+9nfwWHbbPP6kibg/xoWZ1v2vKCwg=="; - }; - }; - "sass-embedded-linux-ia32-1.63.6" = { - name = "sass-embedded-linux-ia32"; - packageName = "sass-embedded-linux-ia32"; - version = "1.63.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.63.6.tgz"; - sha512 = "vkTebjg00LOhckxhx9JOhLIV7YUc4MbO7wCSJrf8yWR1/BfB2UhuDyxXWz11/0KuBdEdTcvkzGaLHKEYjfDbLQ=="; - }; - }; - "sass-embedded-linux-x64-1.63.6" = { - name = "sass-embedded-linux-x64"; - packageName = "sass-embedded-linux-x64"; - version = "1.63.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.63.6.tgz"; - sha512 = "Q1LhLleJTUbDkrJzxpmSWAp3/HtW7Owq9WpFP0vClExBaRztLh5lnYJQ1BQVNyrjar2ItTATss2XLMuyKNvs8A=="; - }; - }; - "sass-embedded-win32-ia32-1.63.6" = { - name = "sass-embedded-win32-ia32"; - packageName = "sass-embedded-win32-ia32"; - version = "1.63.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.63.6.tgz"; - sha512 = "hzGO7KMzz0r9Y2ZA2CYrqBJNlRIBJfMG8LP9CUp6wnzjNhrggGAtf6g25jFN4Uhm9QwEjuOMEMR2K6kRPgB1EA=="; - }; - }; - "sass-embedded-win32-x64-1.63.6" = { - name = "sass-embedded-win32-x64"; - packageName = "sass-embedded-win32-x64"; - version = "1.63.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.63.6.tgz"; - sha512 = "p/EX94skwwPT21hl9xirdKw9jvrQDs28pdE2S0C68K60N16OmNNUKbp2tDuTclf+qkq9cmWhRAezRNip1zZ7cA=="; + url = "https://registry.npmjs.org/sass/-/sass-1.64.0.tgz"; + sha512 = "m7YtAGmQta9uANIUJwXesAJMSncqH+3INc8kdVXs6eV6GUC8Qu2IYKQSN8PRLgiQfpca697G94klm2leYMxSHw=="; }; }; "sass-formatter-0.7.6" = { @@ -70501,24 +68359,6 @@ let sha512 = "hXdxU6PCkiV3XAiSnX+XLqz2ohHoEnVUlrd8LEVMAI80uB1+OTScIkH9n6qQwImZpTye1r1WG1rbGUteHNhoHg=="; }; }; - "sass-graph-4.0.1" = { - name = "sass-graph"; - packageName = "sass-graph"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.1.tgz"; - sha512 = "5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA=="; - }; - }; - "sass-loader-12.6.0" = { - name = "sass-loader"; - packageName = "sass-loader"; - version = "12.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz"; - sha512 = "oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA=="; - }; - }; "sax-0.5.8" = { name = "sax"; packageName = "sax"; @@ -70636,15 +68476,6 @@ let sha512 = "i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g=="; }; }; - "schema-utils-2.7.0" = { - name = "schema-utils"; - packageName = "schema-utils"; - version = "2.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz"; - sha512 = "0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A=="; - }; - }; "schema-utils-2.7.1" = { name = "schema-utils"; packageName = "schema-utils"; @@ -70708,15 +68539,6 @@ let sha512 = "SH3TaoaJFzfAtqs3eG1j5IuHJkeEW5rKUPIjIN+ZorLAyJLHItQGnsgwHk76v25GtLtpT9IqfAcqK4vFWdiw+w=="; }; }; - "scss-tokenizer-0.4.3" = { - name = "scss-tokenizer"; - packageName = "scss-tokenizer"; - version = "0.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz"; - sha512 = "raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw=="; - }; - }; "secp256k1-4.0.3" = { name = "secp256k1"; packageName = "secp256k1"; @@ -71869,13 +69691,13 @@ let sha512 = "abgDPg1106vuZZOvw7cFwdCABddfJRz5akcCcchzTbhyhYnsG31y4AlZEgp315T7W3nQq5P4xeOm186ZiPVFzw=="; }; }; - "sigstore-1.7.0" = { + "sigstore-1.8.0" = { name = "sigstore"; packageName = "sigstore"; - version = "1.7.0"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/sigstore/-/sigstore-1.7.0.tgz"; - sha512 = "KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q=="; + url = "https://registry.npmjs.org/sigstore/-/sigstore-1.8.0.tgz"; + sha512 = "ogU8qtQ3VFBawRJ8wjsBEX/vIFeHuGs1fm4jZtjWQwjo8pfAt7T/rh+udlAN4+QUe0IzA8qRSc/YZ7dHP6kh+w=="; }; }; "simple-concat-1.0.1" = { @@ -72958,15 +70780,6 @@ let sha512 = "l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA=="; }; }; - "source-map-0.8.0-beta.0" = { - name = "source-map"; - packageName = "source-map"; - version = "0.8.0-beta.0"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz"; - sha512 = "2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="; - }; - }; "source-map-js-1.0.2" = { name = "source-map-js"; packageName = "source-map-js"; @@ -74281,15 +72094,6 @@ let sha512 = "xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ=="; }; }; - "stdout-stream-1.4.1" = { - name = "stdout-stream"; - packageName = "stdout-stream"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz"; - sha512 = "j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA=="; - }; - }; "stealthy-require-1.1.1" = { name = "stealthy-require"; packageName = "stealthy-require"; @@ -74821,15 +72625,6 @@ let sha512 = "+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ=="; }; }; - "string-length-5.0.1" = { - name = "string-length"; - packageName = "string-length"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz"; - sha512 = "9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow=="; - }; - }; "string-natural-compare-2.0.3" = { name = "string-natural-compare"; packageName = "string-natural-compare"; @@ -74839,15 +72634,6 @@ let sha512 = "4Kcl12rNjc+6EKhY8QyDVuQTAlMWwRiNbsxnVwBUKFr7dYPQuXVrtNU4sEkjF9LHY0AY6uVbB3ktbkIH4LC+BQ=="; }; }; - "string-natural-compare-3.0.1" = { - name = "string-natural-compare"; - packageName = "string-natural-compare"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz"; - sha512 = "n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw=="; - }; - }; "string-padding-1.0.2" = { name = "string-padding"; packageName = "string-padding"; @@ -75055,15 +72841,6 @@ let sha512 = "BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g=="; }; }; - "stringify-object-3.3.0" = { - name = "stringify-object"; - packageName = "stringify-object"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz"; - sha512 = "rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw=="; - }; - }; "stringify-package-1.0.1" = { name = "stringify-package"; packageName = "stringify-package"; @@ -75253,15 +73030,6 @@ let sha512 = "uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g=="; }; }; - "strip-comments-2.0.1" = { - name = "strip-comments"; - packageName = "strip-comments"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz"; - sha512 = "ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw=="; - }; - }; "strip-dirs-2.1.0" = { name = "strip-dirs"; packageName = "strip-dirs"; @@ -75541,15 +73309,6 @@ let sha512 = "drcLtuMC9wKhxZ5C7PyGxy9ADWfw7svB8zemWu+zpG8x4n/hih2xQU2U+SG6HF3TjV3tOjRrNIQOV8vUvffifA=="; }; }; - "styled-system-5.1.5" = { - name = "styled-system"; - packageName = "styled-system"; - version = "5.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/styled-system/-/styled-system-5.1.5.tgz"; - sha512 = "7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A=="; - }; - }; "stylehacks-4.0.3" = { name = "stylehacks"; packageName = "stylehacks"; @@ -75703,13 +73462,13 @@ let sha512 = "dxdemxFFB0ppCLg10FTtRqH/31FNRL1y1BQv8209MK5I4CwALb7iihQg+7p65lFcIl8MHatINWBLOqpgU4Kyyw=="; }; }; - "sucrase-3.33.0" = { + "sucrase-3.34.0" = { name = "sucrase"; packageName = "sucrase"; - version = "3.33.0"; + version = "3.34.0"; src = fetchurl { - url = "https://registry.npmjs.org/sucrase/-/sucrase-3.33.0.tgz"; - sha512 = "ARGC7vbufOHfpvyGcZZXFaXCMZ9A4fffOGC5ucOW7+WHDGlAe8LJdf3Jts1sWhDeiI1RSWrKy5Hodl+JWGdW2A=="; + url = "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz"; + sha512 = "70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw=="; }; }; "sudo-block-1.2.0" = { @@ -75838,15 +73597,6 @@ let sha512 = "e/tmW0bsnQ/33ivK6y3CapJT0Ovy4pk/ohNPGhIAGU2oasoNLRQ1cv6enua09NU9w6Y0H/fBu07cjzuiWvLXxw=="; }; }; - "superstruct-0.12.2" = { - name = "superstruct"; - packageName = "superstruct"; - version = "0.12.2"; - src = fetchurl { - url = "https://registry.npmjs.org/superstruct/-/superstruct-0.12.2.tgz"; - sha512 = "yu+WNa/nSbFa+VBeR2KibfCeIQSKh/aD7G5eFD4Rx4W36MWE3G6SzU3BixDOArLv56u2bz6YEePsHSsioojuXw=="; - }; - }; "supports-color-0.2.0" = { name = "supports-color"; packageName = "supports-color"; @@ -76000,13 +73750,13 @@ let sha512 = "vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA=="; }; }; - "svelte-4.0.5" = { + "svelte-4.1.0" = { name = "svelte"; packageName = "svelte"; - version = "4.0.5"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/svelte/-/svelte-4.0.5.tgz"; - sha512 = "PHKPWP1wiWHBtsE57nCb8xiWB3Ht7/3Kvi3jac0XIxUM2rep8alO7YoAtgWeGD7++tFy46krilOrPW0mG3Dx+A=="; + url = "https://registry.npmjs.org/svelte/-/svelte-4.1.0.tgz"; + sha512 = "qob6IX0ui4Z++Lhwzvqb6aig79WhwsF3z6y1YMicjvw0rv71hxD+RmMFG3BM8lB7prNLXeOLnP64Zrynqa3Gtw=="; }; }; "svelte-preprocess-5.0.4" = { @@ -76036,15 +73786,6 @@ let sha512 = "aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg=="; }; }; - "svg-parser-2.0.4" = { - name = "svg-parser"; - packageName = "svg-parser"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz"; - sha512 = "e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ=="; - }; - }; "svg-tags-1.0.0" = { name = "svg-tags"; packageName = "svg-tags"; @@ -76315,15 +74056,6 @@ let sha512 = "LDt2stNTp4bVPMgd70Jj9PWrSa4batl+bv+Ea5NLNGT7ufc4oQPtRfQ73wbddNV6RilaPqnEt6y1Wkm5FVTNEg=="; }; }; - "tabbable-5.3.3" = { - name = "tabbable"; - packageName = "tabbable"; - version = "5.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz"; - sha512 = "QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA=="; - }; - }; "table-3.8.3" = { name = "table"; packageName = "table"; @@ -76703,15 +74435,6 @@ let sha512 = "WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ=="; }; }; - "tempy-0.6.0" = { - name = "tempy"; - packageName = "tempy"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz"; - sha512 = "G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw=="; - }; - }; "tempy-0.7.1" = { name = "tempy"; packageName = "tempy"; @@ -77558,15 +75281,6 @@ let sha512 = "76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ=="; }; }; - "tmpl-1.0.5" = { - name = "tmpl"; - packageName = "tmpl"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz"; - sha512 = "3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="; - }; - }; "to-absolute-glob-2.0.2" = { name = "to-absolute-glob"; packageName = "to-absolute-glob"; @@ -78251,15 +75965,6 @@ let sha512 = "AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g=="; }; }; - "true-case-path-1.0.3" = { - name = "true-case-path"; - packageName = "true-case-path"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz"; - sha512 = "m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew=="; - }; - }; "true-case-path-2.2.1" = { name = "true-case-path"; packageName = "true-case-path"; @@ -78962,6 +76667,15 @@ let sha512 = "hR8JP2e8UiH7SME5JZjsobBlEiatFoxpzCP+R3ZeCo7kAaG1jXQE5X/buLzogM6GJu8le9Y4OcfNuIQX0rZskA=="; }; }; + "type-fest-4.0.0" = { + name = "type-fest"; + packageName = "type-fest"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/type-fest/-/type-fest-4.0.0.tgz"; + sha512 = "d/oYtUnPM9zar2fqqGLYPzgcY0qUlYK0evgNVti93xpzfjGkMgZHu9Lvgrkn0rqGXTgsFRxFamzjGoD9Uo+dgw=="; + }; + }; "type-is-1.6.18" = { name = "type-is"; packageName = "type-is"; @@ -79169,13 +76883,13 @@ let sha512 = "zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA=="; }; }; - "typescript-5.2.0-dev.20230717" = { + "typescript-5.2.0-dev.20230720" = { name = "typescript"; packageName = "typescript"; - version = "5.2.0-dev.20230717"; + version = "5.2.0-dev.20230720"; src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.2.0-dev.20230717.tgz"; - sha512 = "T6Jl+oxydjHSfqyak7AeMpeei76VXFdEYdYkFavnQK8cEcw9knjJ8W63cT8IZUBgEIStQcI4zNEuoFUnotysOg=="; + url = "https://registry.npmjs.org/typescript/-/typescript-5.2.0-dev.20230720.tgz"; + sha512 = "uZPSzgA2ZfMYqCafPbJ67YLwiVXeo93rT2iackGNerTEFs7wRBr2ENVRBIP33g5xCV0fFqN+e0l4oLvQjCZUKw=="; }; }; "typescript-auto-import-cache-0.2.1" = { @@ -81419,15 +79133,6 @@ let sha512 = "n9Mvkk3qlv5hpQ9WHDCNn7uGR8k8kNLpVj37fS8qTPK053ZFJ34Ei9CAbDqmsk/p4AGsV/2bfDdobctC1RaZFg=="; }; }; - "v8-to-istanbul-8.1.1" = { - name = "v8-to-istanbul"; - packageName = "v8-to-istanbul"; - version = "8.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz"; - sha512 = "FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w=="; - }; - }; "v8flags-3.2.0" = { name = "v8flags"; packageName = "v8flags"; @@ -81599,15 +79304,6 @@ let sha512 = "lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow=="; }; }; - "varint-6.0.0" = { - name = "varint"; - packageName = "varint"; - version = "6.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz"; - sha512 = "cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg=="; - }; - }; "varuint-bitcoin-1.1.2" = { name = "varuint-bitcoin"; packageName = "varuint-bitcoin"; @@ -82382,58 +80078,58 @@ let sha512 = "Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w=="; }; }; - "volar-service-css-0.0.7" = { + "volar-service-css-0.0.10" = { name = "volar-service-css"; packageName = "volar-service-css"; - version = "0.0.7"; + version = "0.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-css/-/volar-service-css-0.0.7.tgz"; - sha512 = "GKkPGlv/TymLm2HD4VwIxcA+VLmKd9ppxexr58RlHlCV4HYL7IBwASyEbIK1uS43UUhzDkzJHYzEuZkaiubE9w=="; + url = "https://registry.npmjs.org/volar-service-css/-/volar-service-css-0.0.10.tgz"; + sha512 = "58A6UvgFZAWGFWRY0tKAAiREXcSOyx5ErpeOS3UjuGZFyTi6YUxfm1F0F8BKA1voN24laen1yyuFQD5E4ONNIQ=="; }; }; - "volar-service-emmet-0.0.7" = { + "volar-service-emmet-0.0.10" = { name = "volar-service-emmet"; packageName = "volar-service-emmet"; - version = "0.0.7"; + version = "0.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-emmet/-/volar-service-emmet-0.0.7.tgz"; - sha512 = "6Pu642zl+6u7hzM2gv/sEmhdK4zDaJDVDZ1sbzgI6WaPae0m1zsPxgpP2b133aXFEVpT5fjpv8/TLM6AM3GG7g=="; + url = "https://registry.npmjs.org/volar-service-emmet/-/volar-service-emmet-0.0.10.tgz"; + sha512 = "O7JahMMvexee65ifph1rhIH/L97S2rMtKAut+x3/yi4PEMVM0XkuKiXkC2y3ZCO4DzFsMhZWtEVBE0Ym76nj2g=="; }; }; - "volar-service-html-0.0.7" = { + "volar-service-html-0.0.10" = { name = "volar-service-html"; packageName = "volar-service-html"; - version = "0.0.7"; + version = "0.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-html/-/volar-service-html-0.0.7.tgz"; - sha512 = "Ud1LTzD8SSKR5N6CQO94AEBPoVw+5x3SWZCK0s9kujWUG2tVdFBuApCxHdD+WstcOBolriJ1wY9PNhG4CHFpJA=="; + url = "https://registry.npmjs.org/volar-service-html/-/volar-service-html-0.0.10.tgz"; + sha512 = "lr6hDCkp+HOqpvMzCtiSg80v82FBaUIn69+dZCMAp9O8qPhEo6WhrRwe9FEzSpg//WFwoWYfyZ1uPaj+RzT6aw=="; }; }; - "volar-service-prettier-0.0.7" = { + "volar-service-prettier-0.0.10" = { name = "volar-service-prettier"; packageName = "volar-service-prettier"; - version = "0.0.7"; + version = "0.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-prettier/-/volar-service-prettier-0.0.7.tgz"; - sha512 = "m96M64q3nmpu6IwjLDg/GQEAUaXmbxt+JVpvjU2WRz0TFE4ZQhhb+jsWM202URk0vcsn+LgCarjLmiOaKcyNOQ=="; + url = "https://registry.npmjs.org/volar-service-prettier/-/volar-service-prettier-0.0.10.tgz"; + sha512 = "38j47HSe7kTioz7TNTsKVu10xXW6FcORDmm1kHeGCnA/Xp8XhcPHFJAAi5V5h1isnZesWIiVvNzTvuJxyVvgLg=="; }; }; - "volar-service-typescript-0.0.7" = { + "volar-service-typescript-0.0.10" = { name = "volar-service-typescript"; packageName = "volar-service-typescript"; - version = "0.0.7"; + version = "0.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-typescript/-/volar-service-typescript-0.0.7.tgz"; - sha512 = "3g5WBSjYF73kT/JePwOt2s3YMP4g9i+6Qg6f7gPKO0yOQ94hjRR5CLBTLhQcwj4SRv/7XYJsE+EtBO28L3A4dg=="; + url = "https://registry.npmjs.org/volar-service-typescript/-/volar-service-typescript-0.0.10.tgz"; + sha512 = "MVo9je5te2pjZIzbR+S5Fr1rZE2b64E+dpNpH5IHO+LtzSeT2Ri+Bzr4cGTbQSPxNx2O89BOxn97Wa5FS7vYyg=="; }; }; - "volar-service-typescript-twoslash-queries-0.0.7" = { + "volar-service-typescript-twoslash-queries-0.0.10" = { name = "volar-service-typescript-twoslash-queries"; packageName = "volar-service-typescript-twoslash-queries"; - version = "0.0.7"; + version = "0.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/volar-service-typescript-twoslash-queries/-/volar-service-typescript-twoslash-queries-0.0.7.tgz"; - sha512 = "fNbHWQylkkoIfnfiXswXpa0e4Oa2mgj76sv1PwFMtPjW1Z0ZGT91BkU5OJh1NQaJOVfqcHo0Mh/X8DQJtXCtBg=="; + url = "https://registry.npmjs.org/volar-service-typescript-twoslash-queries/-/volar-service-typescript-twoslash-queries-0.0.10.tgz"; + sha512 = "AMgl/aaCHIOIKswYP6GKx7m3+jVMCwF8Lt2KVaGKUstkT6LCMvqS/tVaRTzd8rAUq4lrFf4bg5uBD8RYtjklhA=="; }; }; "vsce-2.15.0" = { @@ -83147,15 +80843,6 @@ let sha512 = "9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA=="; }; }; - "walker-1.0.8" = { - name = "walker"; - packageName = "walker"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz"; - sha512 = "ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="; - }; - }; "ware-1.3.0" = { name = "ware"; packageName = "ware"; @@ -83462,6 +81149,15 @@ let sha512 = "FROX3TxQnC/ox4N+3xQoWZzvGXSuscxR32rbzjpXgEzWudJFEJBpdlkkob2ylrv5yzzufD1zph1OoFsLtm6stQ=="; }; }; + "webpack-5.88.2" = { + name = "webpack"; + packageName = "webpack"; + version = "5.88.2"; + src = fetchurl { + url = "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz"; + sha512 = "JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ=="; + }; + }; "webpack-bundle-analyzer-3.9.0" = { name = "webpack-bundle-analyzer"; packageName = "webpack-bundle-analyzer"; @@ -83561,15 +81257,6 @@ let sha512 = "mrG3bJGX4jgWbrpY0ghIpPgCmNhZziFMBJBmZfpIe6K/P1rWPkdkbGihbCUIufgQ8ruX4txE5/CKSeFNzDcYOw=="; }; }; - "webpack-hot-middleware-2.25.4" = { - name = "webpack-hot-middleware"; - packageName = "webpack-hot-middleware"; - version = "2.25.4"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.4.tgz"; - sha512 = "IRmTspuHM06aZh98OhBJtqLpeWFM8FXJS5UYpKYxCJzyFoyWj1w6VGFfomZU7OPA55dMLrQK0pRT1eQ3PACr4w=="; - }; - }; "webpack-log-2.0.0" = { name = "webpack-log"; packageName = "webpack-log"; @@ -83615,24 +81302,6 @@ let sha512 = "ajerHZ+BJKeCLviLUUmnyd5B4RavLF76uv3cs6KNuO8W+HuQaEs0y0L7o40NQxdPy5w0pcv8Ew7yPUAQG0UdCg=="; }; }; - "webpack-plugin-ramdisk-0.2.0" = { - name = "webpack-plugin-ramdisk"; - packageName = "webpack-plugin-ramdisk"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-plugin-ramdisk/-/webpack-plugin-ramdisk-0.2.0.tgz"; - sha512 = "I5OTfDuaQdiZQUm19Ok/8oCBmYCGqFu8e2sY6ytGT9xehZQJXB6cqdf+rHUr98gzwhcC2O96Wuhs6BQTmOy2hg=="; - }; - }; - "webpack-plugin-serve-1.6.0" = { - name = "webpack-plugin-serve"; - packageName = "webpack-plugin-serve"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-plugin-serve/-/webpack-plugin-serve-1.6.0.tgz"; - sha512 = "0163GYEpDdRmd0D82XCeYalpSrRg9+oqEtoVUeCnn1o1lnGjqFoKdgSZBhXNOg2at52l4ESwLskPhPp3cHLAqA=="; - }; - }; "webpack-sources-1.2.0" = { name = "webpack-sources"; packageName = "webpack-sources"; @@ -83741,13 +81410,13 @@ let sha512 = "p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg=="; }; }; - "whatwg-fetch-3.6.2" = { + "whatwg-fetch-3.6.16" = { name = "whatwg-fetch"; packageName = "whatwg-fetch"; - version = "3.6.2"; + version = "3.6.16"; src = fetchurl { - url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz"; - sha512 = "bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA=="; + url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.16.tgz"; + sha512 = "83avoGbZ0qtjtNrU3UTT3/Xd3uZ7DyfSYLuc1fL5iYs+93P+UkIVF6/6xpRVWeQcvbc7kSnVybSAVbd6QFW5Fg=="; }; }; "whatwg-mimetype-2.3.0" = { @@ -83939,13 +81608,13 @@ let sha512 = "n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA=="; }; }; - "which-typed-array-1.1.10" = { + "which-typed-array-1.1.11" = { name = "which-typed-array"; packageName = "which-typed-array"; - version = "1.1.10"; + version = "1.1.11"; src = fetchurl { - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.10.tgz"; - sha512 = "uxoA5vLUfRPdjCuJ1h5LlYdmTLbYfums398v3WLkM+i/Wltl2/XyZpQWKbN++ck5L64SR/grOHqtXCUKmlZPNA=="; + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz"; + sha512 = "qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew=="; }; }; "wide-align-1.1.5" = { @@ -84308,6 +81977,15 @@ let sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; }; }; + "word-wrap-1.2.4" = { + name = "word-wrap"; + packageName = "word-wrap"; + version = "1.2.4"; + src = fetchurl { + url = "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.4.tgz"; + sha512 = "2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA=="; + }; + }; "wordwrap-0.0.2" = { name = "wordwrap"; packageName = "wordwrap"; @@ -84353,159 +82031,6 @@ let sha512 = "JNjcULU2e4KJwUNv6CHgI46UvDGitb6dGryHajXTDiLgg1/RiGoPSDw4kZfYnwGtEXf2ZMeIewDQgFGzkCB2Sg=="; }; }; - "workbox-background-sync-6.6.1" = { - name = "workbox-background-sync"; - packageName = "workbox-background-sync"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.1.tgz"; - sha512 = "trJd3ovpWCvzu4sW0E8rV3FUyIcC0W8G+AZ+VcqzzA890AsWZlUGOTSxIMmIHVusUw/FDq1HFWfy/kC/WTRqSg=="; - }; - }; - "workbox-broadcast-update-6.6.1" = { - name = "workbox-broadcast-update"; - packageName = "workbox-broadcast-update"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.1.tgz"; - sha512 = "fBhffRdaANdeQ1V8s692R9l/gzvjjRtydBOvR6WCSB0BNE2BacA29Z4r9/RHd9KaXCPl6JTdI9q0bR25YKP8TQ=="; - }; - }; - "workbox-build-6.6.1" = { - name = "workbox-build"; - packageName = "workbox-build"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.1.tgz"; - sha512 = "INPgDx6aRycAugUixbKgiEQBWD0MPZqU5r0jyr24CehvNuLPSXp/wGOpdRJmts656lNiXwqV7dC2nzyrzWEDnw=="; - }; - }; - "workbox-cacheable-response-6.6.1" = { - name = "workbox-cacheable-response"; - packageName = "workbox-cacheable-response"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.1.tgz"; - sha512 = "85LY4veT2CnTCDxaVG7ft3NKaFbH6i4urZXgLiU4AiwvKqS2ChL6/eILiGRYXfZ6gAwDnh5RkuDbr/GMS4KSag=="; - }; - }; - "workbox-core-6.6.1" = { - name = "workbox-core"; - packageName = "workbox-core"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.1.tgz"; - sha512 = "ZrGBXjjaJLqzVothoE12qTbVnOAjFrHDXpZe7coCb6q65qI/59rDLwuFMO4PcZ7jcbxY+0+NhUVztzR/CbjEFw=="; - }; - }; - "workbox-expiration-6.6.1" = { - name = "workbox-expiration"; - packageName = "workbox-expiration"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.1.tgz"; - sha512 = "qFiNeeINndiOxaCrd2DeL1Xh1RFug3JonzjxUHc5WkvkD2u5abY3gZL1xSUNt3vZKsFFGGORItSjVTVnWAZO4A=="; - }; - }; - "workbox-google-analytics-6.6.1" = { - name = "workbox-google-analytics"; - packageName = "workbox-google-analytics"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.1.tgz"; - sha512 = "1TjSvbFSLmkpqLcBsF7FuGqqeDsf+uAXO/pjiINQKg3b1GN0nBngnxLcXDYo1n/XxK4N7RaRrpRlkwjY/3ocuA=="; - }; - }; - "workbox-navigation-preload-6.6.1" = { - name = "workbox-navigation-preload"; - packageName = "workbox-navigation-preload"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.1.tgz"; - sha512 = "DQCZowCecO+wRoIxJI2V6bXWK6/53ff+hEXLGlQL4Rp9ZaPDLrgV/32nxwWIP7QpWDkVEtllTAK5h6cnhxNxDA=="; - }; - }; - "workbox-precaching-6.6.1" = { - name = "workbox-precaching"; - packageName = "workbox-precaching"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.1.tgz"; - sha512 = "K4znSJ7IKxCnCYEdhNkMr7X1kNh8cz+mFgx9v5jFdz1MfI84pq8C2zG+oAoeE5kFrUf7YkT5x4uLWBNg0DVZ5A=="; - }; - }; - "workbox-range-requests-6.6.1" = { - name = "workbox-range-requests"; - packageName = "workbox-range-requests"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.1.tgz"; - sha512 = "4BDzk28govqzg2ZpX0IFkthdRmCKgAKreontYRC5YsAPB2jDtPNxqx3WtTXgHw1NZalXpcH/E4LqUa9+2xbv1g=="; - }; - }; - "workbox-recipes-6.6.1" = { - name = "workbox-recipes"; - packageName = "workbox-recipes"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.1.tgz"; - sha512 = "/oy8vCSzromXokDA+X+VgpeZJvtuf8SkQ8KL0xmRivMgJZrjwM3c2tpKTJn6PZA6TsbxGs3Sc7KwMoZVamcV2g=="; - }; - }; - "workbox-routing-6.6.1" = { - name = "workbox-routing"; - packageName = "workbox-routing"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.1.tgz"; - sha512 = "j4ohlQvfpVdoR8vDYxTY9rA9VvxTHogkIDwGdJ+rb2VRZQ5vt1CWwUUZBeD/WGFAni12jD1HlMXvJ8JS7aBWTg=="; - }; - }; - "workbox-strategies-6.6.1" = { - name = "workbox-strategies"; - packageName = "workbox-strategies"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.1.tgz"; - sha512 = "WQLXkRnsk4L81fVPkkgon1rZNxnpdO5LsO+ws7tYBC6QQQFJVI6v98klrJEjFtZwzw/mB/HT5yVp7CcX0O+mrw=="; - }; - }; - "workbox-streams-6.6.1" = { - name = "workbox-streams"; - packageName = "workbox-streams"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.1.tgz"; - sha512 = "maKG65FUq9e4BLotSKWSTzeF0sgctQdYyTMq529piEN24Dlu9b6WhrAfRpHdCncRS89Zi2QVpW5V33NX8PgH3Q=="; - }; - }; - "workbox-sw-6.6.1" = { - name = "workbox-sw"; - packageName = "workbox-sw"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.1.tgz"; - sha512 = "R7whwjvU2abHH/lR6kQTTXLHDFU2izht9kJOvBRYK65FbwutT4VvnUAJIgHvfWZ/fokrOPhfoWYoPCMpSgUKHQ=="; - }; - }; - "workbox-webpack-plugin-6.6.1" = { - name = "workbox-webpack-plugin"; - packageName = "workbox-webpack-plugin"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.1.tgz"; - sha512 = "zpZ+ExFj9NmiI66cFEApyjk7hGsfJ1YMOaLXGXBoZf0v7Iu6hL0ZBe+83mnDq3YYWAfA3fnyFejritjOHkFcrA=="; - }; - }; - "workbox-window-6.6.1" = { - name = "workbox-window"; - packageName = "workbox-window"; - version = "6.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.1.tgz"; - sha512 = "wil4nwOY58nTdCvif/KEZjQ2NP8uk3gGeRNy2jPBbzypU4BT4D9L8xiwbmDBpZlSgJd2xsT9FvSNU0gsxV51JQ=="; - }; - }; "worker-farm-1.5.2" = { name = "worker-farm"; packageName = "worker-farm"; @@ -84524,13 +82049,13 @@ let sha512 = "rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw=="; }; }; - "workerd-1.20230710.0" = { + "workerd-1.20230717.0" = { name = "workerd"; packageName = "workerd"; - version = "1.20230710.0"; + version = "1.20230717.0"; src = fetchurl { - url = "https://registry.npmjs.org/workerd/-/workerd-1.20230710.0.tgz"; - sha512 = "4iC+8w3UNixJ+b6GA2VOG2B6rnfSbSnm7Fnvsvq9iJuolG34fnD9xrfaXu6oN7H3Wyby3z8OIm0fy3szTvuRcg=="; + url = "https://registry.npmjs.org/workerd/-/workerd-1.20230717.0.tgz"; + sha512 = "MTKF2u3pfqfpGlyaYe9BfZm8IoUwhQNe2vMWECYtv6Z8cGPJujVxcRe27ZT4l/G5lRijnnVeP3Ns3mMS9fjMsw=="; }; }; "workerpool-6.2.1" = { @@ -86226,13 +83751,13 @@ let sha512 = "y5g0MPxDq+YG/T+cHGPYH4PcBpyCqwK6wxeJ76MR563y0gk/14HKfebq8xHiItY7lkc9GDFygCnkvNDTvAhYAg=="; }; }; - "zwave-js-11.4.2" = { + "zwave-js-11.5.2" = { name = "zwave-js"; packageName = "zwave-js"; - version = "11.4.2"; + version = "11.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/zwave-js/-/zwave-js-11.4.2.tgz"; - sha512 = "0vr2HkCmLZZuGDtU2qt5Y5kG4omB9IaEuYK7rTLXlbJNnbJl4hD/iE1Hwk5ysc6VU9ZEIihJbUiEzMFdoZHHHg=="; + url = "https://registry.npmjs.org/zwave-js/-/zwave-js-11.5.2.tgz"; + sha512 = "b465lJGlytbB8nv1CDMVeA6ECMNGRm31/R9Lzf7onAlNptiGjqU6WeykYngB49x3TqY4DB4b5+70rspsyiGxPQ=="; }; }; "zwitch-1.0.5" = { @@ -86296,8 +83821,9 @@ in sources."@npmcli/run-script-6.0.2" sources."@pkgjs/parseargs-0.11.0" sources."@schematics/angular-16.1.4" - sources."@sigstore/protobuf-specs-0.1.0" - sources."@sigstore/tuf-1.0.2" + sources."@sigstore/bundle-1.0.0" + sources."@sigstore/protobuf-specs-0.2.0" + sources."@sigstore/tuf-1.0.3" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" (sources."@tufjs/models-1.0.4" // { @@ -86538,7 +84064,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."sigstore-1.7.0" + sources."sigstore-1.8.0" sources."smart-buffer-4.2.0" sources."socks-2.7.1" sources."socks-proxy-agent-7.0.0" @@ -86601,10 +84127,10 @@ in "@antfu/ni" = nodeEnv.buildNodePackage { name = "_at_antfu_slash_ni"; packageName = "@antfu/ni"; - version = "0.21.4"; + version = "0.21.5"; src = fetchurl { - url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.21.4.tgz"; - sha512 = "O0Uv9LbLDSoEg26fnMDdDRiPwFJnQSoD4WnrflDwKCJm8Cx/0mV4cGxwBLXan5mGIrpK4Dd7vizf4rQm0QCEAA=="; + url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.21.5.tgz"; + sha512 = "rFmuqZMFa1OTRbxdu3vmfytsy1CtsIUFH0bO85rZ1xdu2uLoioSaEi6iOULDVTQUrnes50jMs+UW355Ndj7Oxg=="; }; buildInputs = globalBuildInputs; meta = { @@ -86619,10 +84145,10 @@ in "@astrojs/language-server" = nodeEnv.buildNodePackage { name = "_at_astrojs_slash_language-server"; packageName = "@astrojs/language-server"; - version = "2.0.17"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-2.0.17.tgz"; - sha512 = "FHW77ypcviluoirLZVFCWp3N+xWmlc+3GlfmQsuk+abozEziIPLXkkWGNboy567kW0yeS9UyiHN6wSEo8+J+dw=="; + url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-2.1.0.tgz"; + sha512 = "a0X252geIy8wlUJq3AN1gb3RouicFV9J6Vze/NkhYfhRdrFZycQqh9Lghb81EJB0ZjKY54dvW7DSvZzsXMjOdQ=="; }; dependencies = [ sources."@astrojs/compiler-1.5.7" @@ -86633,12 +84159,12 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@volar/kit-1.7.4" - sources."@volar/language-core-1.7.4" - sources."@volar/language-server-1.7.4" - sources."@volar/language-service-1.7.4" - sources."@volar/source-map-1.7.4" - sources."@volar/typescript-1.7.4" + sources."@volar/kit-1.9.0" + sources."@volar/language-core-1.9.0" + sources."@volar/language-server-1.9.0" + sources."@volar/language-service-1.9.0" + sources."@volar/source-map-1.9.0" + sources."@volar/typescript-1.9.0" (sources."@vscode/emmet-helper-2.9.2" // { dependencies = [ sources."vscode-uri-2.1.2" @@ -86660,8 +84186,8 @@ in sources."micromatch-4.0.5" sources."muggle-string-0.3.1" sources."picomatch-2.3.1" - sources."prettier-2.8.8" - sources."prettier-plugin-astro-0.10.0" + sources."prettier-3.0.0" + sources."prettier-plugin-astro-0.11.0" sources."queue-microtask-1.2.3" sources."request-light-0.7.0" sources."reusify-1.0.4" @@ -86674,12 +84200,12 @@ in sources."typesafe-path-0.2.2" sources."typescript-5.1.6" sources."typescript-auto-import-cache-0.3.0" - sources."volar-service-css-0.0.7" - sources."volar-service-emmet-0.0.7" - sources."volar-service-html-0.0.7" - sources."volar-service-prettier-0.0.7" - sources."volar-service-typescript-0.0.7" - sources."volar-service-typescript-twoslash-queries-0.0.7" + sources."volar-service-css-0.0.10" + sources."volar-service-emmet-0.0.10" + sources."volar-service-html-0.0.10" + sources."volar-service-prettier-0.0.10" + sources."volar-service-typescript-0.0.10" + sources."volar-service-typescript-twoslash-queries-0.0.10" (sources."vscode-css-languageservice-6.2.6" // { dependencies = [ sources."@vscode/l10n-0.0.14" @@ -86757,7 +84283,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."browserslist-4.21.9" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -86765,7 +84291,7 @@ in sources."concat-map-0.0.1" sources."convert-source-map-1.9.0" sources."debug-4.3.4" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" sources."fs-readdir-recursive-1.1.0" @@ -86907,7 +84433,7 @@ in sources."bytes-3.1.2" sources."cache-content-type-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."canvas-2.11.2" (sources."chalk-4.1.2" // { dependencies = [ @@ -86962,11 +84488,11 @@ in sources."delegates-1.0.0" sources."depd-2.0.0" sources."destroy-1.2.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."dicer-0.2.5" sources."domexception-4.0.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -87229,10 +84755,10 @@ in "@commitlint/cli" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_cli"; packageName = "@commitlint/cli"; - version = "17.6.6"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.6.tgz"; - sha512 = "sTKpr2i/Fjs9OmhU+beBxjPavpnLSqZaO6CzwKVq2Tc4UYVTMFgpKOslDhUBVlfAUBfjVO8ParxC/MXkIOevEA=="; + url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.7.tgz"; + sha512 = "nzZmfO5KIOupYppn1MsnYX/80I+KDlxiwkks3CJT0XT+t34UgqGi3eSyEuzgcIjPlORk5/GMaAEiys78iLfGMg=="; }; dependencies = [ sources."@babel/code-frame-7.22.5" @@ -87247,18 +84773,18 @@ in sources."supports-color-5.5.0" ]; }) - sources."@commitlint/config-validator-17.4.4" - sources."@commitlint/ensure-17.4.4" + sources."@commitlint/config-validator-17.6.7" + sources."@commitlint/ensure-17.6.7" sources."@commitlint/execute-rule-17.4.0" sources."@commitlint/format-17.4.4" - sources."@commitlint/is-ignored-17.6.6" - sources."@commitlint/lint-17.6.6" - sources."@commitlint/load-17.5.0" + sources."@commitlint/is-ignored-17.6.7" + sources."@commitlint/lint-17.6.7" + sources."@commitlint/load-17.6.7" sources."@commitlint/message-17.4.2" - sources."@commitlint/parse-17.6.5" + sources."@commitlint/parse-17.6.7" sources."@commitlint/read-17.5.1" - sources."@commitlint/resolve-extends-17.4.4" - sources."@commitlint/rules-17.6.5" + sources."@commitlint/resolve-extends-17.6.7" + sources."@commitlint/rules-17.6.7" sources."@commitlint/to-lines-17.4.0" (sources."@commitlint/top-level-17.4.0" // { dependencies = [ @@ -87273,19 +84799,19 @@ in sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -87481,10 +85007,10 @@ in "@commitlint/config-conventional" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_config-conventional"; packageName = "@commitlint/config-conventional"; - version = "17.6.6"; + version = "17.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.6.6.tgz"; - sha512 = "phqPz3BDhfj49FUYuuZIuDiw+7T6gNAEy7Yew1IBHqSohVUCWOK2FXMSAExzS2/9X+ET93g0Uz83KjiHDOOFag=="; + url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.6.7.tgz"; + sha512 = "4oTpEUC0HRM54QRHBPMOJW1pETp7usxXn9RuNYNWHcmu8wi1mpws95hvS20u2n6HtIkTn0jfn7vHioCm4AGUTw=="; }; dependencies = [ sources."array-ify-1.0.0" @@ -87649,29 +85175,29 @@ in sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@polka/url-1.0.0-next.21" - sources."@sentry-internal/tracing-7.58.1" - sources."@sentry/core-7.58.1" - (sources."@sentry/node-7.58.1" // { + sources."@sentry-internal/tracing-7.59.3" + sources."@sentry/core-7.59.3" + (sources."@sentry/node-7.59.3" // { dependencies = [ sources."cookie-0.4.2" ]; }) - sources."@sentry/types-7.58.1" - sources."@sentry/utils-7.58.1" + sources."@sentry/types-7.59.3" + sources."@sentry/utils-7.59.3" sources."@sindresorhus/is-4.6.0" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@szmarczak/http-timer-4.0.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" @@ -87836,7 +85362,7 @@ in sources."call-bind-1.0.2" sources."call-me-maybe-1.0.2" sources."camel-case-4.1.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."case-1.6.3" sources."chai-4.3.7" (sources."chalk-2.4.2" // { @@ -87945,7 +85471,7 @@ in sources."depd-2.0.0" sources."des.js-1.1.0" sources."destroy-1.2.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."detect-node-2.1.0" sources."didyoumean-1.2.2" sources."diff-4.0.2" @@ -87966,7 +85492,7 @@ in sources."dot-prop-6.0.1" sources."duplexer-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -88191,7 +85717,7 @@ in sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-unicode-supported-0.1.0" sources."is-weakref-1.0.2" sources."is-wsl-2.2.0" @@ -88687,7 +86213,7 @@ in sources."whatwg-url-7.1.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wildcard-2.0.1" sources."winattr-3.0.0" sources."wrap-ansi-7.0.0" @@ -88764,7 +86290,7 @@ in sources."@types/normalize-package-data-2.4.1" sources."@types/responselike-1.0.0" sources."aggregate-error-4.0.1" - sources."all-package-names-2.0.692" + sources."all-package-names-2.0.695" sources."ansi-align-3.0.1" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" @@ -89186,7 +86712,7 @@ in sources."os-tmpdir-1.0.2" (sources."ow-1.1.1" // { dependencies = [ - sources."@sindresorhus/is-5.5.1" + sources."@sindresorhus/is-5.5.2" sources."callsites-4.0.0" ]; }) @@ -89205,7 +86731,7 @@ in sources."p-try-2.2.0" (sources."package-json-8.1.1" // { dependencies = [ - sources."@sindresorhus/is-5.5.1" + sources."@sindresorhus/is-5.5.2" sources."@szmarczak/http-timer-5.0.1" sources."cacheable-lookup-7.0.0" sources."cacheable-request-10.2.12" @@ -90325,7 +87851,7 @@ in sources."which-module-2.0.1" sources."which-pm-runs-1.1.0" sources."wide-align-1.1.5" - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wordwrap-1.0.0" sources."wrap-ansi-2.1.0" sources."wrappy-1.0.2" @@ -91187,7 +88713,7 @@ in sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."sass-1.63.6" + sources."sass-1.64.0" sources."sax-1.2.4" sources."scss-parser-1.0.6" sources."semver-7.3.8" @@ -91447,7 +88973,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/color-1.0.8" + sources."@oclif/color-1.0.9" sources."@oclif/core-2.8.5" sources."@oclif/plugin-commands-2.2.15" sources."@oclif/plugin-help-5.2.9" @@ -91476,20 +89002,20 @@ in ]; }) sources."@shopify/plugin-did-you-mean-3.47.5" - sources."@sindresorhus/is-5.5.1" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@sindresorhus/is-5.5.2" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@szmarczak/http-timer-5.0.1" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" @@ -92109,19 +89635,19 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -92202,7 +89728,7 @@ in sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" - sources."sucrase-3.33.0" + sources."sucrase-3.34.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."tailwindcss-3.3.3" sources."thenify-3.3.1" @@ -92251,19 +89777,19 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -92345,7 +89871,7 @@ in sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" - sources."sucrase-3.33.0" + sources."sucrase-3.34.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."tailwindcss-3.3.3" sources."thenify-3.3.1" @@ -92412,19 +89938,19 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -92505,7 +90031,7 @@ in sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" - sources."sucrase-3.33.0" + sources."sucrase-3.34.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."tailwindcss-3.3.3" sources."thenify-3.3.1" @@ -92554,19 +90080,19 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -92654,7 +90180,7 @@ in sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" - sources."sucrase-3.33.0" + sources."sucrase-3.34.0" sources."supports-preserve-symlinks-flag-1.0.0" (sources."tailwindcss-3.3.3" // { dependencies = [ @@ -92737,9 +90263,7 @@ in sources."tslib-1.14.1" ]; }) - sources."@aws-sdk/chunked-blob-reader-3.310.0" - sources."@aws-sdk/chunked-blob-reader-native-3.310.0" - sources."@aws-sdk/client-s3-3.370.0" + sources."@aws-sdk/client-s3-3.373.0" sources."@aws-sdk/client-sso-3.370.0" sources."@aws-sdk/client-sso-oidc-3.370.0" sources."@aws-sdk/client-sts-3.370.0" @@ -92749,15 +90273,13 @@ in sources."@aws-sdk/credential-provider-process-3.370.0" sources."@aws-sdk/credential-provider-sso-3.370.0" sources."@aws-sdk/credential-provider-web-identity-3.370.0" - sources."@aws-sdk/hash-blob-browser-3.370.0" sources."@aws-sdk/hash-stream-node-3.370.0" sources."@aws-sdk/is-array-buffer-3.310.0" - (sources."@aws-sdk/lib-storage-3.370.0" // { + (sources."@aws-sdk/lib-storage-3.373.0" // { dependencies = [ sources."buffer-5.6.0" ]; }) - sources."@aws-sdk/md5-js-3.370.0" sources."@aws-sdk/middleware-bucket-endpoint-3.370.0" sources."@aws-sdk/middleware-expect-continue-3.370.0" sources."@aws-sdk/middleware-flexible-checksums-3.370.0" @@ -92770,14 +90292,13 @@ in sources."@aws-sdk/middleware-signing-3.370.0" sources."@aws-sdk/middleware-ssec-3.370.0" sources."@aws-sdk/middleware-user-agent-3.370.0" - sources."@aws-sdk/s3-presigned-post-3.370.0" - sources."@aws-sdk/s3-request-presigner-3.370.0" + sources."@aws-sdk/s3-presigned-post-3.373.0" + sources."@aws-sdk/s3-request-presigner-3.373.0" sources."@aws-sdk/signature-v4-crt-3.370.0" sources."@aws-sdk/signature-v4-multi-region-3.370.0" sources."@aws-sdk/token-providers-3.370.0" sources."@aws-sdk/types-3.370.0" sources."@aws-sdk/util-arn-parser-3.310.0" - sources."@aws-sdk/util-base64-3.310.0" sources."@aws-sdk/util-buffer-from-3.310.0" sources."@aws-sdk/util-endpoints-3.370.0" sources."@aws-sdk/util-format-url-3.370.0" @@ -92800,6 +90321,8 @@ in sources."@redis/time-series-1.0.3" sources."@sindresorhus/is-4.6.0" sources."@smithy/abort-controller-1.0.2" + sources."@smithy/chunked-blob-reader-1.0.2" + sources."@smithy/chunked-blob-reader-native-1.0.2" sources."@smithy/config-resolver-1.0.2" sources."@smithy/credential-provider-imds-1.0.2" sources."@smithy/eventstream-codec-1.0.2" @@ -92808,9 +90331,11 @@ in sources."@smithy/eventstream-serde-node-1.0.2" sources."@smithy/eventstream-serde-universal-1.0.2" sources."@smithy/fetch-http-handler-1.0.2" + sources."@smithy/hash-blob-browser-1.0.2" sources."@smithy/hash-node-1.0.2" sources."@smithy/invalid-dependency-1.0.2" sources."@smithy/is-array-buffer-1.0.2" + sources."@smithy/md5-js-1.0.2" sources."@smithy/middleware-content-length-1.0.2" sources."@smithy/middleware-endpoint-1.0.3" sources."@smithy/middleware-retry-1.0.4" @@ -92858,7 +90383,7 @@ in sources."asn1.js-5.4.1" sources."asynckit-0.4.0" sources."atob-2.1.2" - sources."aws-crt-1.15.20" + sources."aws-crt-1.15.22" sources."axios-0.24.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" @@ -93758,7 +91283,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -93868,7 +91393,7 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.9" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -94790,7 +92315,7 @@ in ]; }) sources."@pnpm/npm-conf-2.2.2" - sources."@sindresorhus/is-5.5.1" + sources."@sindresorhus/is-5.5.2" sources."@szmarczak/http-timer-5.0.1" sources."@types/acorn-4.0.6" sources."@types/concat-stream-2.0.0" @@ -95340,7 +92865,7 @@ in sources."@jridgewell/sourcemap-codec-1.4.14" ]; }) - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."JSV-4.0.2" sources."ansi-styles-3.2.1" sources."array-unique-0.3.2" @@ -95348,7 +92873,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."browserslist-4.21.9" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -95358,7 +92883,7 @@ in sources."convert-source-map-1.9.0" sources."debug-4.3.4" sources."ejs-3.1.6" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -95746,8 +93271,8 @@ in }; dependencies = [ sources."browserslist-4.21.9" - sources."caniuse-lite-1.0.30001516" - sources."electron-to-chromium-1.4.461" + sources."caniuse-lite-1.0.30001517" + sources."electron-to-chromium-1.4.466" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."nanoid-3.3.6" @@ -95827,7 +93352,7 @@ in sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1415.0" // { + (sources."aws-sdk-2.1418.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -95935,7 +93460,7 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" sources."is-interactive-1.0.0" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-unicode-supported-0.1.0" sources."isarray-1.0.0" sources."jmespath-0.16.0" @@ -96028,8 +93553,8 @@ in sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."which-typed-array-1.1.10" - sources."word-wrap-1.2.3" + sources."which-typed-array-1.1.11" + sources."word-wrap-1.2.4" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" sources."ws-8.5.0" @@ -96491,10 +94016,10 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "15.8.14"; + version = "15.8.15"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-15.8.14.tgz"; - sha512 = "+6sQuaH9yhKAORo1q+kviLM+ULouI7NT/kynmlv6VSMoWLMtotC/19iDw9BgGzH8zaNTXTHlwtCLIFOucUdQCQ=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-15.8.15.tgz"; + sha512 = "qrmkze/jcPAU9uj7cuxPpPC0DY7pjbZwHTiQuegUyDhfCnpjY1Y06DHh7MxHROsa7Ah/m8bOkbFmG4/a1+f93A=="; }; dependencies = [ sources."@alexbosworth/blockchain-1.5.0" @@ -96724,7 +94249,7 @@ in sources."import-lazy-4.0.0" sources."inherits-2.0.4" sources."ini-4.1.1" - (sources."inquirer-9.2.7" // { + (sources."inquirer-9.2.8" // { dependencies = [ sources."ansi-escapes-4.3.2" sources."ansi-styles-4.3.0" @@ -96853,10 +94378,12 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."ln-service-56.8.1" // { + (sources."ln-service-56.9.0" // { dependencies = [ - sources."@types/node-20.4.1" - sources."lightning-9.8.1" + sources."@grpc/grpc-js-1.8.18" + sources."@grpc/proto-loader-0.7.8" + sources."lightning-9.9.0" + sources."type-fest-4.0.0" ]; }) (sources."ln-sync-5.2.3" // { @@ -97563,7 +95090,7 @@ in sources."is-callable-1.2.7" sources."is-core-module-2.12.1" sources."is-generator-function-1.0.10" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."isarray-1.0.0" sources."jsonparse-1.3.1" sources."labeled-stream-splicer-2.0.2" @@ -97648,7 +95175,7 @@ in sources."util-0.12.5" sources."util-deprecate-1.0.2" sources."vm-browserify-1.1.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wrappy-1.0.2" sources."xtend-4.0.2" ]; @@ -97909,10 +95436,8 @@ in sources."tslib-1.14.1" ]; }) - sources."@aws-sdk/chunked-blob-reader-3.310.0" - sources."@aws-sdk/chunked-blob-reader-native-3.310.0" sources."@aws-sdk/client-cognito-identity-3.370.0" - sources."@aws-sdk/client-s3-3.370.0" + sources."@aws-sdk/client-s3-3.373.0" sources."@aws-sdk/client-sso-3.370.0" sources."@aws-sdk/client-sso-oidc-3.370.0" sources."@aws-sdk/client-sts-3.370.0" @@ -97924,10 +95449,8 @@ in sources."@aws-sdk/credential-provider-sso-3.370.0" sources."@aws-sdk/credential-provider-web-identity-3.370.0" sources."@aws-sdk/credential-providers-3.370.0" - sources."@aws-sdk/hash-blob-browser-3.370.0" sources."@aws-sdk/hash-stream-node-3.370.0" sources."@aws-sdk/is-array-buffer-3.310.0" - sources."@aws-sdk/md5-js-3.370.0" sources."@aws-sdk/middleware-bucket-endpoint-3.370.0" sources."@aws-sdk/middleware-expect-continue-3.370.0" sources."@aws-sdk/middleware-flexible-checksums-3.370.0" @@ -97945,7 +95468,6 @@ in sources."@aws-sdk/token-providers-3.370.0" sources."@aws-sdk/types-3.370.0" sources."@aws-sdk/util-arn-parser-3.310.0" - sources."@aws-sdk/util-base64-3.310.0" sources."@aws-sdk/util-buffer-from-3.310.0" sources."@aws-sdk/util-endpoints-3.370.0" sources."@aws-sdk/util-locate-window-3.310.0" @@ -98004,6 +95526,8 @@ in sources."@redis/time-series-1.0.4" sources."@scure/base-1.1.1" sources."@smithy/abort-controller-1.0.2" + sources."@smithy/chunked-blob-reader-1.0.2" + sources."@smithy/chunked-blob-reader-native-1.0.2" sources."@smithy/config-resolver-1.0.2" sources."@smithy/credential-provider-imds-1.0.2" sources."@smithy/eventstream-codec-1.0.2" @@ -98012,9 +95536,11 @@ in sources."@smithy/eventstream-serde-node-1.0.2" sources."@smithy/eventstream-serde-universal-1.0.2" sources."@smithy/fetch-http-handler-1.0.2" + sources."@smithy/hash-blob-browser-1.0.2" sources."@smithy/hash-node-1.0.2" sources."@smithy/invalid-dependency-1.0.2" sources."@smithy/is-array-buffer-1.0.2" + sources."@smithy/md5-js-1.0.2" sources."@smithy/middleware-content-length-1.0.2" sources."@smithy/middleware-endpoint-1.0.3" sources."@smithy/middleware-retry-1.0.4" @@ -98073,7 +95599,7 @@ in sources."assert-never-1.2.1" sources."async-3.2.4" sources."asynckit-0.4.0" - (sources."aws-crt-1.15.20" // { + (sources."aws-crt-1.15.22" // { dependencies = [ sources."axios-0.24.0" ]; @@ -98212,7 +95738,7 @@ in sources."delegates-1.0.0" sources."depd-2.0.0" sources."destroy-1.2.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."dijkstrajs-1.0.3" sources."doctypes-1.1.0" sources."dotenv-13.0.1" @@ -98708,7 +96234,7 @@ in sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" sources."@types/node-20.4.2" - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.2.16" sources."ajv-6.12.6" @@ -99177,13 +96703,13 @@ in ]; }) sources."@pnpm/npm-conf-2.2.2" - sources."@sindresorhus/is-5.5.1" + sources."@sindresorhus/is-5.5.2" sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/minimist-1.2.2" sources."@types/node-20.4.2" sources."@types/normalize-package-data-2.4.1" - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."aggregate-error-3.1.0" (sources."ansi-align-3.0.1" // { dependencies = [ @@ -99748,10 +97274,10 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.2.113"; + version = "2.2.116"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.113.tgz"; - sha512 = "RpNeFcGuXNGf2oADKy7Gonjh/l7qKeqdIjcSy2E+k2x0iWL0z+3LqXssUpTVsHpK7kCH/AjHNKpMhsgzIMIbhA=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.116.tgz"; + sha512 = "cX0j3VwLMrn/HnLXWfAPq+fCbKkOy15440cUt5icB7aj2qf8DwaUCE4Q0VLan4RC7cUYIAdrp1n3Sm2tFhAZYA=="; }; dependencies = [ sources."@colors/colors-1.5.0" @@ -99775,7 +97301,7 @@ in sources."@octokit/types-6.41.0" sources."@types/node-16.18.38" sources."@types/triple-beam-1.3.2" - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."aggregate-error-3.1.0" sources."ajv-8.12.0" sources."ansi-escapes-4.3.2" @@ -99807,8 +97333,8 @@ in sources."buffer-5.7.1" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.7.112" - sources."cdk8s-plus-25-2.8.94" + sources."cdk8s-2.7.115" + sources."cdk8s-plus-25-2.8.98" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."clean-stack-2.2.0" @@ -99856,7 +97382,7 @@ in sources."dotenv-16.3.1" (sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.2.0-dev.20230717" + sources."typescript-5.2.0-dev.20230720" ]; }) sources."emoji-regex-8.0.0" @@ -100245,7 +97771,7 @@ in sources."@types/wrap-ansi-3.0.0" sources."@types/yauzl-2.10.0" sources."@types/yoga-layout-1.9.2" - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."address-1.2.2" sources."agent-base-6.0.2" sources."ajv-8.12.0" @@ -100334,12 +97860,12 @@ in sources."deepmerge-4.3.1" sources."define-properties-1.2.0" sources."detect-indent-5.0.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."detect-newline-2.1.0" sources."detect-port-1.5.1" (sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.2.0-dev.20230717" + sources."typescript-5.2.0-dev.20230720" ]; }) sources."eastasianwidth-0.2.0" @@ -100455,7 +97981,7 @@ in sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-valid-domain-0.1.6" sources."is-weakmap-2.0.1" sources."is-weakset-2.0.2" @@ -100677,7 +98203,7 @@ in sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" sources."which-module-2.0.1" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."widest-line-3.1.0" sources."workerpool-6.4.0" sources."wrap-ansi-6.2.0" @@ -100916,7 +98442,7 @@ in sources."tr46-1.0.1" sources."universal-url-2.0.0" sources."webidl-conversions-4.0.2" - sources."whatwg-fetch-3.6.2" + sources."whatwg-fetch-3.6.16" sources."whatwg-url-7.1.0" (sources."winston-2.4.7" // { dependencies = [ @@ -101530,7 +99056,7 @@ in sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakref-1.0.2" sources."is-wsl-2.2.0" sources."isarray-2.0.5" @@ -101640,7 +99166,7 @@ in sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wrappy-1.0.2" sources."yallist-4.0.0" ]; @@ -101701,7 +99227,8 @@ in sha512 = "ETYx8Hq41MP7Zd2lGnLtro8nuqnjWLFeOygcWabI5YDDOjXf5P59ZB1UBZFte/FRh5/8jiFDxYW18lwnDmC6Xw=="; }; dependencies = [ - sources."pyright-1.1.317" + sources."fsevents-2.3.2" + sources."pyright-1.1.318" ]; buildInputs = globalBuildInputs; meta = { @@ -102111,7 +99638,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -102148,7 +99675,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -102933,7 +100460,7 @@ in sha512 = "uPhR9IKtN1z6gt9mpRH5OAdYjJQgQq7CCQpm5VmCpLe2QdGDzi4xfB3ybXGaBRX+UN4whtz3pZvgZssJvBwcqQ=="; }; dependencies = [ - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."@xstate/fsm-1.6.5" sources."ansi-styles-3.2.1" sources."balanced-match-1.0.2" @@ -103521,7 +101048,7 @@ in sources."@npmcli/metavuln-calculator-5.0.1" sources."@npmcli/name-from-folder-2.0.0" sources."@npmcli/node-gyp-3.0.0" - (sources."@npmcli/package-json-4.0.0" // { + (sources."@npmcli/package-json-4.0.1" // { dependencies = [ sources."brace-expansion-2.0.1" sources."glob-10.3.3" @@ -103540,8 +101067,9 @@ in ]; }) sources."@pkgjs/parseargs-0.11.0" - sources."@sigstore/protobuf-specs-0.1.0" - sources."@sigstore/tuf-1.0.2" + sources."@sigstore/bundle-1.0.0" + sources."@sigstore/protobuf-specs-0.2.0" + sources."@sigstore/tuf-1.0.3" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" (sources."@tufjs/models-1.0.4" // { @@ -103550,7 +101078,7 @@ in sources."minimatch-9.0.3" ]; }) - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -103965,7 +101493,7 @@ in sources."npm-run-path-4.0.1" (sources."npmlog-7.0.1" // { dependencies = [ - sources."are-we-there-yet-4.0.0" + sources."are-we-there-yet-4.0.1" sources."emoji-regex-8.0.0" sources."gauge-5.0.1" sources."readable-stream-4.4.2" @@ -104094,7 +101622,7 @@ in sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" - sources."sigstore-1.7.0" + sources."sigstore-1.8.0" sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.7.1" @@ -104659,23 +102187,23 @@ in sources."@cspell/cspell-pipe-6.31.1" sources."@cspell/cspell-service-bus-6.31.1" sources."@cspell/cspell-types-6.31.1" - sources."@cspell/dict-ada-4.0.1" + sources."@cspell/dict-ada-4.0.2" sources."@cspell/dict-aws-3.0.0" sources."@cspell/dict-bash-4.1.1" sources."@cspell/dict-companies-3.0.17" - sources."@cspell/dict-cpp-5.0.3" + sources."@cspell/dict-cpp-5.0.4" sources."@cspell/dict-cryptocurrencies-3.0.1" sources."@cspell/dict-csharp-4.0.2" sources."@cspell/dict-css-4.0.6" - sources."@cspell/dict-dart-2.0.2" - sources."@cspell/dict-data-science-1.0.7" + sources."@cspell/dict-dart-2.0.3" + sources."@cspell/dict-data-science-1.0.8" sources."@cspell/dict-django-4.1.0" - sources."@cspell/dict-docker-1.1.6" + sources."@cspell/dict-docker-1.1.7" sources."@cspell/dict-dotnet-5.0.0" sources."@cspell/dict-elixir-4.0.3" sources."@cspell/dict-en-common-misspellings-1.0.2" sources."@cspell/dict-en-gb-1.1.33" - sources."@cspell/dict-en_us-4.3.4" + sources."@cspell/dict-en_us-4.3.5" sources."@cspell/dict-filetypes-3.0.1" sources."@cspell/dict-fonts-3.0.2" sources."@cspell/dict-fullstack-3.1.5" @@ -104694,14 +102222,14 @@ in sources."@cspell/dict-npm-5.0.7" sources."@cspell/dict-php-4.0.1" sources."@cspell/dict-powershell-5.0.2" - sources."@cspell/dict-public-licenses-2.0.2" + sources."@cspell/dict-public-licenses-2.0.3" sources."@cspell/dict-python-4.1.2" sources."@cspell/dict-r-2.0.1" sources."@cspell/dict-ruby-5.0.0" sources."@cspell/dict-rust-4.0.1" sources."@cspell/dict-scala-5.0.0" sources."@cspell/dict-software-terms-3.2.0" - sources."@cspell/dict-sql-2.1.0" + sources."@cspell/dict-sql-2.1.1" sources."@cspell/dict-svelte-1.0.2" sources."@cspell/dict-swift-2.0.1" sources."@cspell/dict-typescript-3.1.1" @@ -105717,6 +103245,34 @@ in bypassCache = true; reconstructLock = true; }; + dotenv-cli = nodeEnv.buildNodePackage { + name = "dotenv-cli"; + packageName = "dotenv-cli"; + version = "7.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/dotenv-cli/-/dotenv-cli-7.2.1.tgz"; + sha512 = "ODHbGTskqRtXAzZapDPvgNuDVQApu4oKX8lZW7Y0+9hKA6le1ZJlyRS687oU9FXjOVEDU/VFV6zI125HzhM1UQ=="; + }; + dependencies = [ + sources."cross-spawn-7.0.3" + sources."dotenv-16.3.1" + sources."dotenv-expand-10.0.0" + sources."isexe-2.0.0" + sources."minimist-1.2.8" + sources."path-key-3.1.1" + sources."shebang-command-2.0.0" + sources."shebang-regex-3.0.0" + sources."which-2.0.2" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "A global executable to run applications with the ENV variables loaded by dotenv"; + license = "MIT"; + }; + production = true; + bypassCache = true; + reconstructLock = true; + }; dotenv-vault = nodeEnv.buildNodePackage { name = "dotenv-vault"; packageName = "dotenv-vault"; @@ -105733,22 +103289,22 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/color-1.0.8" + sources."@oclif/color-1.0.9" sources."@oclif/core-1.26.2" sources."@oclif/linewrap-1.0.0" - (sources."@oclif/plugin-help-5.2.13" // { + (sources."@oclif/plugin-help-5.2.14" // { dependencies = [ - sources."@oclif/core-2.9.3" + sources."@oclif/core-2.9.4" ]; }) - (sources."@oclif/plugin-not-found-2.3.31" // { + (sources."@oclif/plugin-not-found-2.3.32" // { dependencies = [ - sources."@oclif/core-2.9.3" + sources."@oclif/core-2.9.4" ]; }) - (sources."@oclif/plugin-update-3.1.26" // { + (sources."@oclif/plugin-update-3.1.27" // { dependencies = [ - sources."@oclif/core-2.9.3" + sources."@oclif/core-2.9.4" sources."cross-spawn-7.0.3" sources."path-key-3.1.1" sources."shebang-command-2.0.0" @@ -105756,25 +103312,25 @@ in sources."which-2.0.2" ]; }) - (sources."@oclif/plugin-warn-if-update-available-2.0.43" // { + (sources."@oclif/plugin-warn-if-update-available-2.0.44" // { dependencies = [ - sources."@oclif/core-2.9.3" + sources."@oclif/core-2.9.4" ]; }) - sources."@oclif/screen-3.0.5" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@oclif/screen-3.0.6" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -106053,7 +103609,7 @@ in sources."is-arguments-1.1.1" sources."is-callable-1.2.7" sources."is-generator-function-1.0.10" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-typedarray-1.0.0" sources."isarray-1.0.0" sources."isstream-0.1.2" @@ -106134,7 +103690,7 @@ in sources."util-deprecate-1.0.2" sources."uuid-8.0.0" sources."verror-1.10.0" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."xml2js-0.5.0" sources."xmlbuilder-11.0.1" ]; @@ -106209,7 +103765,7 @@ in sources."@types/node-20.4.2" sources."@types/responselike-1.0.0" sources."@types/yauzl-2.10.0" - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."abbrev-1.1.1" sources."agent-base-6.0.2" sources."agentkeepalive-4.3.0" @@ -106304,7 +103860,7 @@ in sources."define-properties-1.2.0" sources."delegates-1.0.0" sources."depd-2.0.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."detect-node-2.1.0" sources."dir-compare-3.3.0" sources."eastasianwidth-0.2.0" @@ -106733,10 +104289,10 @@ in eas-cli = nodeEnv.buildNodePackage { name = "eas-cli"; packageName = "eas-cli"; - version = "3.15.1"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/eas-cli/-/eas-cli-3.15.1.tgz"; - sha512 = "MKeAJVeS3jU9KH/2QLfcrhr2XMa8aqurdKuaNIMvH/soVLtxhQbKpwyoXNlyncUdQfgRpclB7NkoqkH7A2ahiw=="; + url = "https://registry.npmjs.org/eas-cli/-/eas-cli-3.16.0.tgz"; + sha512 = "6uKUJnQvr47BNo+x+X44r/dvSi1/oHzMpnfq1ESXlpuoPpezfZRm9xbiiFb5B//6m3yLNGPraYd9QXjihhcUAQ=="; }; dependencies = [ sources."@babel/code-frame-7.10.4" @@ -106791,7 +104347,7 @@ in sources."@expo/pkcs12-0.0.8" (sources."@expo/plist-0.0.20" // { dependencies = [ - sources."@xmldom/xmldom-0.7.12" + sources."@xmldom/xmldom-0.7.13" sources."xmlbuilder-14.0.0" ]; }) @@ -106854,9 +104410,9 @@ in sources."universalify-2.0.0" ]; }) - sources."@oclif/screen-3.0.5" + sources."@oclif/screen-3.0.6" sources."@react-native/normalize-color-2.1.0" - sources."@segment/ajv-human-errors-2.8.0" + sources."@segment/ajv-human-errors-2.11.0" sources."@segment/loosely-validate-event-2.0.0" sources."@sideway/address-4.1.4" sources."@sideway/formula-3.0.1" @@ -106865,7 +104421,7 @@ in sources."@types/node-20.4.2" sources."@urql/core-3.1.1" sources."@urql/exchange-retry-1.0.0" - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."agent-base-6.0.2" sources."ajv-8.11.0" sources."ajv-formats-2.1.1" @@ -106968,7 +104524,6 @@ in sources."find-up-5.0.0" sources."find-yarn-workspace-root-2.0.0" sources."form-data-4.0.0" - sources."freeport-async-2.0.0" (sources."fs-extra-10.1.0" // { dependencies = [ sources."universalify-2.0.0" @@ -107164,7 +104719,7 @@ in sources."string-width-4.2.3" sources."strip-ansi-6.0.1" sources."structured-headers-0.4.1" - sources."sucrase-3.33.0" + sources."sucrase-3.34.0" sources."sudo-prompt-9.1.1" sources."supports-color-5.5.0" (sources."supports-hyperlinks-2.3.0" // { @@ -107404,7 +104959,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -107434,7 +104989,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -108218,7 +105773,7 @@ in sources."@webassemblyjs/wasm-opt-1.11.6" sources."@webassemblyjs/wasm-parser-1.11.6" sources."@webassemblyjs/wast-printer-1.11.6" - sources."@xmldom/xmldom-0.7.12" + sources."@xmldom/xmldom-0.7.13" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."abab-2.0.6" @@ -108315,7 +105870,7 @@ in sources."camel-case-4.1.2" sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -108457,7 +106012,7 @@ in sources."dot-case-3.0.4" sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -108951,7 +106506,7 @@ in }) (sources."plist-3.1.0" // { dependencies = [ - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."xmlbuilder-15.1.1" ]; }) @@ -109181,7 +106736,7 @@ in sources."structured-headers-0.4.1" sources."style-loader-3.3.3" sources."stylehacks-5.1.1" - (sources."sucrase-3.33.0" // { + (sources."sucrase-3.34.0" // { dependencies = [ sources."commander-4.1.1" ]; @@ -109281,7 +106836,7 @@ in sources."wbuf-1.7.3" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" - (sources."webpack-5.88.1" // { + (sources."webpack-5.88.2" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" @@ -109457,7 +107012,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -109483,7 +107038,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.981744" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -109703,17 +107258,17 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/command-1.8.32" - sources."@oclif/config-1.18.13" + sources."@oclif/command-1.8.33" + sources."@oclif/config-1.18.14" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.11" // { + (sources."@oclif/help-1.0.12" // { dependencies = [ sources."@oclif/config-1.18.12" sources."wrap-ansi-6.2.0" ]; }) sources."@oclif/linewrap-1.0.0" - sources."@oclif/parser-3.8.14" + sources."@oclif/parser-3.8.15" (sources."@oclif/plugin-autocomplete-0.1.5" // { dependencies = [ sources."ansi-styles-3.2.1" @@ -110057,7 +107612,7 @@ in sources."whatwg-url-5.0.0" sources."which-1.3.1" sources."widest-line-3.1.0" - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wrap-ansi-7.0.0" sources."yallist-4.0.0" ]; @@ -110074,10 +107629,10 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "12.4.4"; + version = "12.4.5"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-12.4.4.tgz"; - sha512 = "Zvk+NX2X2FqsGj91QgWoj17OjJ0E+W95azyIomeoS1SF1MKGHNh1W/HMCHVGngYeIABgmZc0AJr3+33M5owl1w=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-12.4.5.tgz"; + sha512 = "qDDJ1QgbsqQYLNGcOO34ltnqEEbyayKGMDo4Q7ScpGsISf45tYKaVlnLJSwPrIG+tMoljJ8B3s5sqeR32udfQQ=="; }; dependencies = [ (sources."@apidevtools/json-schema-ref-parser-9.1.2" // { @@ -110132,7 +107687,8 @@ in sources."@protobufjs/path-1.1.2" sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" - sources."@tootallnate/once-1.1.2" + sources."@tootallnate/once-2.0.0" + sources."@tootallnate/quickjs-emscripten-0.23.0" sources."@types/duplexify-3.6.1" sources."@types/glob-8.1.0" sources."@types/json-schema-7.0.12" @@ -110149,7 +107705,6 @@ in sources."accepts-1.3.8" sources."acorn-8.10.0" sources."acorn-jsx-5.3.2" - sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" sources."agentkeepalive-4.3.0" sources."aggregate-error-3.1.0" @@ -110196,6 +107751,7 @@ in ]; }) sources."basic-auth-connect-1.0.0" + sources."basic-ftp-5.0.3" sources."bcrypt-pbkdf-1.0.2" sources."bignumber.js-9.1.1" sources."binary-extensions-2.2.0" @@ -110314,13 +107870,17 @@ in sources."crypto-random-string-2.0.0" sources."csv-parse-5.4.0" sources."dashdash-1.14.1" - sources."data-uri-to-buffer-3.0.1" + sources."data-uri-to-buffer-5.0.1" sources."debug-4.3.4" sources."deep-extend-0.6.0" sources."deep-freeze-0.0.1" sources."deep-is-0.1.4" sources."defaults-1.0.4" - sources."degenerator-3.0.4" + (sources."degenerator-5.0.1" // { + dependencies = [ + sources."escodegen-2.1.0" + ]; + }) sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-2.0.0" @@ -110398,7 +107958,6 @@ in sources."escape-string-regexp-1.0.5" ]; }) - sources."file-uri-to-path-2.0.0" sources."filesize-6.4.0" sources."fill-range-7.0.1" (sources."finalhandler-1.2.0" // { @@ -110422,20 +107981,13 @@ in sources."fs-minipass-3.0.2" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" - (sources."ftp-0.3.10" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.1.14" - sources."string_decoder-0.10.31" - ]; - }) sources."function-bind-1.1.1" sources."gauge-4.0.4" sources."gaxios-5.1.3" sources."gcp-metadata-5.3.0" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.2.1" - (sources."get-uri-3.0.2" // { + (sources."get-uri-6.0.1" // { dependencies = [ sources."fs-extra-8.1.0" sources."jsonfile-4.0.0" @@ -110475,7 +108027,11 @@ in sources."heap-js-2.3.0" sources."http-cache-semantics-4.1.1" sources."http-errors-2.0.0" - sources."http-proxy-agent-4.0.1" + (sources."http-proxy-agent-7.0.0" // { + dependencies = [ + sources."agent-base-7.1.0" + ]; + }) sources."http-signature-1.2.0" sources."https-proxy-agent-5.0.1" sources."humanize-ms-1.2.1" @@ -110579,7 +108135,6 @@ in }) (sources."make-fetch-happen-11.1.1" // { dependencies = [ - sources."@tootallnate/once-2.0.0" sources."http-proxy-agent-5.0.0" sources."lru-cache-7.18.3" sources."socks-proxy-agent-7.0.0" @@ -110679,8 +108234,13 @@ in sources."p-defer-3.0.0" sources."p-limit-3.1.0" sources."p-map-4.0.0" - sources."pac-proxy-agent-5.0.0" - sources."pac-resolver-5.0.1" + (sources."pac-proxy-agent-7.0.0" // { + dependencies = [ + sources."agent-base-7.1.0" + sources."https-proxy-agent-7.0.1" + ]; + }) + sources."pac-resolver-7.0.0" sources."parseurl-1.3.3" sources."path-is-absolute-1.0.1" sources."path-key-2.0.1" @@ -110722,10 +108282,11 @@ in ]; }) sources."proxy-addr-2.0.7" - (sources."proxy-agent-5.0.0" // { + (sources."proxy-agent-6.3.0" // { dependencies = [ - sources."lru-cache-5.1.1" - sources."yallist-3.1.1" + sources."agent-base-7.1.0" + sources."https-proxy-agent-7.0.1" + sources."lru-cache-7.18.3" ]; }) sources."proxy-from-env-1.1.0" @@ -110810,7 +108371,11 @@ in sources."ip-2.0.0" ]; }) - sources."socks-proxy-agent-5.0.1" + (sources."socks-proxy-agent-8.0.1" // { + dependencies = [ + sources."agent-base-7.1.0" + ]; + }) sources."source-map-0.6.1" sources."sprintf-js-1.0.3" sources."sshpk-1.17.0" @@ -110890,17 +108455,16 @@ in sources."core-util-is-1.0.2" ]; }) - sources."vm2-3.9.19" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" - sources."whatwg-fetch-3.6.2" + sources."whatwg-fetch-3.6.16" sources."whatwg-url-5.0.0" sources."which-1.3.1" sources."wide-align-1.1.5" sources."widest-line-3.1.0" sources."winston-3.10.0" sources."winston-transport-4.5.0" - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wrap-ansi-7.0.0" sources."wrap-ansi-cjs-7.0.0" sources."wrappy-1.0.2" @@ -110908,7 +108472,6 @@ in sources."ws-7.5.9" sources."xdg-basedir-4.0.0" sources."xmlcreate-2.0.4" - sources."xregexp-2.0.0" sources."y18n-5.0.8" sources."yallist-4.0.0" sources."yaml-2.3.1" @@ -111654,7 +109217,7 @@ in sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakmap-2.0.1" sources."is-weakset-2.0.2" sources."is-windows-1.0.2" @@ -111865,7 +109428,7 @@ in }) sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" (sources."winston-3.10.0" // { dependencies = [ sources."async-3.2.4" @@ -112081,7 +109644,7 @@ in ]; }) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -112142,7 +109705,7 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -112592,8 +110155,9 @@ in sources."@octokit/rest-18.12.0" sources."@octokit/types-6.41.0" sources."@pkgjs/parseargs-0.11.0" - sources."@sigstore/protobuf-specs-0.1.0" - sources."@sigstore/tuf-1.0.2" + sources."@sigstore/bundle-1.0.0" + sources."@sigstore/protobuf-specs-0.2.0" + sources."@sigstore/tuf-1.0.3" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" (sources."@tufjs/models-1.0.4" // { @@ -113002,7 +110566,7 @@ in sources."shebang-regex-3.0.0" sources."shelljs-0.8.5" sources."signal-exit-3.0.7" - sources."sigstore-1.7.0" + sources."sigstore-1.8.0" sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.7.1" @@ -113490,15 +111054,15 @@ in "@gitbeaker/cli" = nodeEnv.buildNodePackage { name = "_at_gitbeaker_slash_cli"; packageName = "@gitbeaker/cli"; - version = "39.7.0"; + version = "39.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-39.7.0.tgz"; - sha512 = "pwn4MQE/njAq661iI4s1fa4gO4YLcoZU88QU0lSkc6ZmW3W7UlOF2ZY55vzNqNbn+IHUAiMiKAymQw/UdPUYYA=="; + url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-39.8.0.tgz"; + sha512 = "NKPA8wL0nd/3IX28nS+x9GVjn6a85pN2akpiv5VCEeRVTBsbu7yHatuWZisqt2lFGEuRhpaUrIAt2peDLHmX/w=="; }; dependencies = [ - sources."@gitbeaker/core-39.7.0" - sources."@gitbeaker/requester-utils-39.7.0" - sources."@gitbeaker/rest-39.7.0" + sources."@gitbeaker/core-39.8.0" + sources."@gitbeaker/requester-utils-39.8.0" + sources."@gitbeaker/rest-39.8.0" sources."ansi-styles-4.3.0" sources."call-bind-1.0.2" sources."chalk-4.1.2" @@ -113556,7 +111120,7 @@ in ]; }) sources."@pnpm/npm-conf-2.2.2" - sources."@sindresorhus/is-5.5.1" + sources."@sindresorhus/is-5.5.2" sources."@szmarczak/http-timer-5.0.1" sources."@tootallnate/once-1.1.2" sources."@types/http-cache-semantics-4.0.1" @@ -113918,7 +111482,7 @@ in sources."strip-ansi-7.1.0" ]; }) - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wrap-ansi-6.2.0" sources."write-file-atomic-3.0.3" sources."xdg-basedir-5.1.0" @@ -114145,7 +111709,7 @@ in sources."unbzip2-stream-1.4.3" sources."util-deprecate-1.0.2" sources."webidl-conversions-3.0.1" - sources."whatwg-fetch-3.6.2" + sources."whatwg-fetch-3.6.16" sources."whatwg-url-5.0.0" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" @@ -114559,7 +112123,7 @@ in sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-typedarray-1.0.0" sources."is-unicode-supported-0.1.0" sources."is-weakmap-2.0.1" @@ -114785,7 +112349,7 @@ in sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" (sources."wrap-ansi-7.0.0" // { dependencies = [ sources."ansi-regex-5.0.1" @@ -114857,7 +112421,7 @@ in sources."@graphql-tools/delegate-10.0.0" sources."@graphql-tools/executor-1.1.0" sources."@graphql-tools/executor-graphql-ws-1.1.0" - sources."@graphql-tools/executor-http-1.0.1" + sources."@graphql-tools/executor-http-1.0.2" sources."@graphql-tools/executor-legacy-ws-1.0.1" sources."@graphql-tools/graphql-file-loader-8.0.0" sources."@graphql-tools/graphql-tag-pluck-8.0.1" @@ -114897,7 +112461,7 @@ in sources."@vue/shared-3.3.4" sources."@whatwg-node/events-0.1.1" sources."@whatwg-node/fetch-0.9.9" - sources."@whatwg-node/node-fetch-0.4.8" + sources."@whatwg-node/node-fetch-0.4.10" sources."acorn-8.10.0" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" @@ -114912,7 +112476,7 @@ in sources."bufferutil-4.0.7" sources."busboy-1.6.0" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chalk-2.4.2" sources."cliui-7.0.4" (sources."code-red-1.0.3" // { @@ -114935,7 +112499,7 @@ in sources."dir-glob-3.0.1" sources."dotenv-8.2.0" sources."dset-3.1.2" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."error-ex-1.3.2" @@ -115040,7 +112604,7 @@ in sources."string-width-4.2.3" sources."strip-ansi-6.0.1" sources."supports-color-5.5.0" - (sources."svelte-4.0.5" // { + (sources."svelte-4.1.0" // { dependencies = [ sources."estree-walker-3.0.3" ]; @@ -115151,7 +112715,7 @@ in sources."@oclif/config-1.17.0" sources."@oclif/errors-1.3.4" sources."@oclif/linewrap-1.0.0" - (sources."@oclif/parser-3.8.14" // { + (sources."@oclif/parser-3.8.15" // { dependencies = [ sources."@oclif/errors-1.3.6" ]; @@ -115465,7 +113029,7 @@ in sources."web-streams-polyfill-3.2.1" sources."webcrypto-core-1.7.7" sources."webidl-conversions-3.0.1" - sources."whatwg-fetch-3.6.2" + sources."whatwg-fetch-3.6.16" sources."whatwg-url-5.0.0" sources."which-1.3.1" sources."widest-line-3.1.0" @@ -116816,10 +114380,10 @@ in hsd = nodeEnv.buildNodePackage { name = "hsd"; packageName = "hsd"; - version = "5.0.1"; + version = "5.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/hsd/-/hsd-5.0.1.tgz"; - sha512 = "G+4iLhKHEEOHYbk/VEvkVO4oNn1rVlH8N3LdsbH+sYZQo8qJTVP5Zwtz1pMa4vWLzA3mjrFSGG3nBFYoIJHpMQ=="; + url = "https://registry.npmjs.org/hsd/-/hsd-5.1.0.tgz"; + sha512 = "t0MWWDMFpjx9UUe1S/kkrnFVxK7FOaQDxZGoMXrsv/UCy+cbTW1OnLqkOIyk8ep5897FsVoCkCgmxvE2JfsXPA=="; }; dependencies = [ sources."bcfg-0.1.8" @@ -117015,7 +114579,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1415.0" + sources."aws-sdk-2.1418.0" sources."aws-sign2-0.7.0" sources."aws4-1.12.0" sources."base64-js-1.5.1" @@ -117088,7 +114652,7 @@ in sources."is-callable-1.2.7" sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-typedarray-1.0.0" sources."isarray-1.0.0" sources."isstream-0.1.2" @@ -117198,13 +114762,13 @@ in sources."util-deprecate-1.0.2" sources."uuid-8.0.0" sources."verror-1.10.1" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" (sources."winston-2.4.7" // { dependencies = [ sources."colors-1.0.3" ]; }) - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wrap-ansi-7.0.0" sources."xml2js-0.5.0" sources."xmlbuilder-11.0.1" @@ -117768,7 +115332,7 @@ in sources."deepmerge-4.3.1" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" (sources."diagnostic-channel-1.1.0" // { dependencies = [ sources."semver-5.7.2" @@ -118282,7 +115846,7 @@ in sources."uuid-3.4.0" sources."which-2.0.2" sources."windows-release-3.3.3" - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" (sources."wrap-ansi-6.2.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -118666,7 +116230,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-crt-1.15.20" + sources."aws-crt-1.15.22" (sources."aws-sdk-2.1340.0" // { dependencies = [ sources."buffer-4.9.2" @@ -118867,7 +116431,7 @@ in sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."diff-match-patch-1.0.5" (sources."dom-serializer-2.0.0" // { dependencies = [ @@ -119045,7 +116609,7 @@ in sources."is-number-7.0.0" sources."is-potential-custom-element-name-1.0.1" sources."is-stream-2.0.1" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-typedarray-1.0.0" sources."is-url-1.2.4" sources."is-wsl-2.2.0" @@ -119529,7 +117093,7 @@ in sources."whatwg-mimetype-3.0.0" sources."whatwg-url-12.0.1" sources."which-1.3.1" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wide-align-1.1.5" sources."window-size-0.1.4" sources."word-wrap-1.2.3" @@ -119564,33 +117128,36 @@ in js-beautify = nodeEnv.buildNodePackage { name = "js-beautify"; packageName = "js-beautify"; - version = "1.14.8"; + version = "1.14.9"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.8.tgz"; - sha512 = "4S7HFeI9YfRvRgKnEweohs0tgJj28InHVIj4Nl8Htf96Y6pHg3+tJrmo4ucAM9f7l4SHbFI3IvFAZ2a1eQPbyg=="; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.9.tgz"; + sha512 = "coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg=="; }; dependencies = [ + sources."@one-ini/wasm-0.1.1" sources."abbrev-1.1.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" - sources."commander-2.20.3" + sources."commander-11.0.0" sources."config-chain-1.1.13" - sources."editorconfig-0.15.3" + sources."editorconfig-1.0.3" sources."fs.realpath-1.0.0" - sources."glob-8.1.0" + (sources."glob-8.1.0" // { + dependencies = [ + sources."minimatch-5.1.6" + ]; + }) sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" - sources."lru-cache-4.1.5" - sources."minimatch-5.1.6" + sources."lru-cache-6.0.0" + sources."minimatch-9.0.1" sources."nopt-6.0.0" sources."once-1.4.0" sources."proto-list-1.2.4" - sources."pseudomap-1.0.2" - sources."semver-5.7.2" - sources."sigmund-1.0.1" + sources."semver-7.5.4" sources."wrappy-1.0.2" - sources."yallist-2.1.2" + sources."yallist-4.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -120064,7 +117631,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakref-1.0.2" sources."isarray-0.0.1" sources."isexe-2.0.0" @@ -120218,7 +117785,7 @@ in sources."version-guard-1.1.1" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" sources."xdg-basedir-4.0.0" @@ -120859,17 +118426,17 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/command-1.8.32" - sources."@oclif/config-1.18.13" + sources."@oclif/command-1.8.33" + sources."@oclif/config-1.18.14" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.11" // { + (sources."@oclif/help-1.0.12" // { dependencies = [ sources."@oclif/config-1.18.12" sources."wrap-ansi-6.2.0" ]; }) sources."@oclif/linewrap-1.0.0" - sources."@oclif/parser-3.8.14" + sources."@oclif/parser-3.8.15" (sources."@oclif/plugin-help-3.3.1" // { dependencies = [ sources."@oclif/config-1.18.2" @@ -121427,7 +118994,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."canvas-2.11.2" sources."chalk-2.4.2" sources."chardet-1.6.0" @@ -121476,7 +119043,7 @@ in sources."delegates-1.0.0" sources."depd-2.0.0" sources."destroy-1.2.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."dir-glob-3.0.1" sources."doipjs-0.15.7" (sources."domexception-2.0.1" // { @@ -121486,7 +119053,7 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -121618,7 +119185,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakref-1.0.2" sources."is-wsl-2.2.0" sources."isarray-2.0.5" @@ -121892,7 +119459,7 @@ in sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wide-align-1.1.5" (sources."wrap-ansi-7.0.0" // { dependencies = [ @@ -122211,7 +119778,7 @@ in sources."pkginfo-0.3.1" ]; }) - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wordwrap-1.0.0" sources."wrap-ansi-2.1.0" sources."wrappy-1.0.2" @@ -122445,7 +120012,7 @@ in sources."pkginfo-0.3.1" ]; }) - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wordwrap-1.0.0" (sources."wrap-ansi-7.0.0" // { dependencies = [ @@ -122519,24 +120086,24 @@ in sources."@npmcli/node-gyp-3.0.0" sources."@npmcli/promise-spawn-6.0.2" sources."@npmcli/run-script-6.0.2" - sources."@nrwl/devkit-16.5.2" - sources."@nrwl/tao-16.5.2" - (sources."@nx/devkit-16.5.2" // { + sources."@nrwl/devkit-16.5.3" + sources."@nrwl/tao-16.5.3" + (sources."@nx/devkit-16.5.3" // { dependencies = [ sources."lru-cache-6.0.0" sources."semver-7.5.3" ]; }) - sources."@nx/nx-darwin-arm64-16.5.2" - sources."@nx/nx-darwin-x64-16.5.2" - sources."@nx/nx-freebsd-x64-16.5.2" - sources."@nx/nx-linux-arm-gnueabihf-16.5.2" - sources."@nx/nx-linux-arm64-gnu-16.5.2" - sources."@nx/nx-linux-arm64-musl-16.5.2" - sources."@nx/nx-linux-x64-gnu-16.5.2" - sources."@nx/nx-linux-x64-musl-16.5.2" - sources."@nx/nx-win32-arm64-msvc-16.5.2" - sources."@nx/nx-win32-x64-msvc-16.5.2" + sources."@nx/nx-darwin-arm64-16.5.3" + sources."@nx/nx-darwin-x64-16.5.3" + sources."@nx/nx-freebsd-x64-16.5.3" + sources."@nx/nx-linux-arm-gnueabihf-16.5.3" + sources."@nx/nx-linux-arm64-gnu-16.5.3" + sources."@nx/nx-linux-arm64-musl-16.5.3" + sources."@nx/nx-linux-x64-gnu-16.5.3" + sources."@nx/nx-linux-x64-musl-16.5.3" + sources."@nx/nx-win32-arm64-msvc-16.5.3" + sources."@nx/nx-win32-x64-msvc-16.5.3" sources."@octokit/auth-token-3.0.4" sources."@octokit/core-4.2.4" sources."@octokit/endpoint-7.0.6" @@ -122557,23 +120124,24 @@ in sources."@octokit/types-9.3.2" sources."@parcel/watcher-2.0.4" sources."@pkgjs/parseargs-0.11.0" - sources."@sigstore/protobuf-specs-0.1.0" - sources."@sigstore/tuf-1.0.2" + sources."@sigstore/bundle-1.0.0" + sources."@sigstore/protobuf-specs-0.2.0" + sources."@sigstore/tuf-1.0.3" sources."@sinclair/typebox-0.27.8" sources."@swc-node/core-1.10.4" sources."@swc-node/register-1.6.6" sources."@swc-node/sourcemap-support-0.3.0" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" @@ -123051,7 +120619,7 @@ in }) sources."npm-run-path-4.0.1" sources."npmlog-6.0.2" - (sources."nx-16.5.2" // { + (sources."nx-16.5.3" // { dependencies = [ sources."ansi-styles-4.3.0" sources."cli-spinners-2.6.1" @@ -123207,7 +120775,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."sigstore-1.7.0" + sources."sigstore-1.8.0" sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.7.1" @@ -124878,7 +122446,7 @@ in }) sources."cache-base-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."case-sensitive-paths-webpack-plugin-2.1.2" sources."chalk-2.4.2" sources."chart.js-2.9.4" @@ -124965,7 +122533,7 @@ in sources."domain-browser-1.2.0" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -125184,7 +122752,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakref-1.0.2" sources."is-windows-1.0.2" sources."isarray-1.0.0" @@ -125690,7 +123258,7 @@ in sources."webpackbar-2.6.3" sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."worker-farm-1.5.2" (sources."wrap-ansi-3.0.1" // { dependencies = [ @@ -126004,7 +123572,7 @@ in ]; }) sources."vinyl-0.5.3" - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wrappy-1.0.2" sources."write-0.2.1" sources."xml2js-0.4.23" @@ -126366,11 +123934,11 @@ in sources."@jest/environment-27.5.1" sources."@jest/fake-timers-27.5.1" sources."@jest/types-27.5.1" - sources."@ledgerhq/devices-8.0.4" - sources."@ledgerhq/errors-6.12.7" - sources."@ledgerhq/hw-transport-6.28.5" - sources."@ledgerhq/hw-transport-node-hid-6.27.17" - sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.16" + sources."@ledgerhq/devices-8.0.5" + sources."@ledgerhq/errors-6.13.0" + sources."@ledgerhq/hw-transport-6.28.6" + sources."@ledgerhq/hw-transport-node-hid-6.27.18" + sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.17" (sources."@ledgerhq/hw-transport-u2f-5.36.0-deprecated" // { dependencies = [ sources."@ledgerhq/devices-5.51.1" @@ -126473,7 +124041,7 @@ in sources."define-lazy-prop-2.0.0" sources."delayed-stream-1.0.0" sources."depd-2.0.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."dot-prop-5.3.0" sources."duplexer3-0.1.5" sources."emoji-regex-8.0.0" @@ -127512,7 +125080,7 @@ in sources."denque-2.1.0" sources."depd-2.0.0" sources."destroy-1.2.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."dom-serializer-1.4.1" sources."domelementtype-2.3.0" sources."domhandler-4.3.1" @@ -128099,7 +125667,7 @@ in sources."@types/normalize-package-data-2.4.1" sources."@types/responselike-1.0.0" sources."aggregate-error-4.0.1" - sources."all-package-names-2.0.692" + sources."all-package-names-2.0.695" sources."ansi-align-3.0.1" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" @@ -128478,7 +126046,7 @@ in sources."os-tmpdir-1.0.2" (sources."ow-1.1.1" // { dependencies = [ - sources."@sindresorhus/is-5.5.1" + sources."@sindresorhus/is-5.5.2" sources."callsites-4.0.0" ]; }) @@ -128497,7 +126065,7 @@ in sources."p-try-2.2.0" (sources."package-json-8.1.1" // { dependencies = [ - sources."@sindresorhus/is-5.5.1" + sources."@sindresorhus/is-5.5.2" sources."@szmarczak/http-timer-5.0.1" sources."cacheable-lookup-7.0.0" sources."cacheable-request-10.2.12" @@ -128694,10 +126262,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "9.8.0"; + version = "9.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-9.8.0.tgz"; - sha512 = "AXeiBAdfM5K2jvBwA7EGLKeYyt0VnhmJRnlq4k2+M0Ao9v7yKJBqF8xFPzQL8kAybzwlfpTPCZwM4uTIszb3xA=="; + url = "https://registry.npmjs.org/npm/-/npm-9.8.1.tgz"; + sha512 = "AfDvThQzsIXhYgk9zhbk5R+lh811lKkLAeQMMhSypf1BM7zUafeIIBzMzespeuVEJ0+LvY36oRQYf7IKLzU3rw=="; }; buildInputs = globalBuildInputs; meta = { @@ -128744,9 +126312,10 @@ in ]; }) sources."@pnpm/npm-conf-2.2.2" - sources."@sigstore/protobuf-specs-0.1.0" - sources."@sigstore/tuf-1.0.2" - sources."@sindresorhus/is-5.5.1" + sources."@sigstore/bundle-1.0.0" + sources."@sigstore/protobuf-specs-0.2.0" + sources."@sigstore/tuf-1.0.3" + sources."@sindresorhus/is-5.5.2" sources."@szmarczak/http-timer-5.0.1" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" @@ -129047,7 +126616,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."sigstore-1.7.0" + sources."sigstore-1.8.0" sources."sisteransi-1.0.5" sources."slash-3.0.0" sources."smart-buffer-4.2.0" @@ -129277,7 +126846,7 @@ in sources."fast-glob-3.2.12" ]; }) - (sources."@stoplight/spectral-core-1.18.2" // { + (sources."@stoplight/spectral-core-1.18.3" // { dependencies = [ sources."@stoplight/types-13.6.0" ]; @@ -129299,7 +126868,7 @@ in sources."@stoplight/types-12.5.0" ]; }) - sources."@stoplight/types-13.15.0" + sources."@stoplight/types-13.16.0" sources."@stoplight/yaml-4.2.3" sources."@stoplight/yaml-ast-parser-0.0.48" sources."@tootallnate/once-1.1.2" @@ -129496,7 +127065,7 @@ in sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakref-1.0.2" sources."isarray-0.0.1" sources."isexe-2.0.0" @@ -129671,8 +127240,8 @@ in sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" - sources."word-wrap-1.2.3" + sources."which-typed-array-1.1.11" + sources."word-wrap-1.2.4" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" sources."xregexp-2.0.0" @@ -129967,7 +127536,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -130100,7 +127669,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -130280,7 +127849,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-typedarray-1.0.0" sources."is-url-1.2.4" sources."is-weakref-1.0.2" @@ -130739,8 +128308,8 @@ in sources."whatwg-url-7.1.0" sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" - sources."word-wrap-1.2.3" + sources."which-typed-array-1.1.11" + sources."word-wrap-1.2.4" sources."wrappy-1.0.2" sources."ws-5.2.3" sources."xml-name-validator-3.0.0" @@ -130878,17 +128447,17 @@ in sources."@parcel/watcher-win32-arm64-2.2.0" sources."@parcel/watcher-win32-x64-2.2.0" sources."@parcel/workers-2.9.3" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" sources."@trysound/sax-0.2.0" sources."abab-2.0.6" @@ -130921,7 +128490,7 @@ in sources."buffer-from-1.1.2" sources."callsites-3.1.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -130971,7 +128540,7 @@ in sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."entities-4.5.0" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -131213,7 +128782,7 @@ in sources."whatwg-encoding-1.0.5" sources."whatwg-mimetype-2.3.0" sources."whatwg-url-7.1.0" - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wrappy-1.0.2" sources."ws-6.2.2" sources."xml-name-validator-3.0.0" @@ -132362,7 +129931,7 @@ in sources."debug-4.3.4" sources."decompress-response-6.0.0" sources."deep-extend-0.6.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."dir-glob-3.0.1" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" @@ -132715,7 +130284,7 @@ in ]; }) sources."vm2-3.9.19" - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" sources."wrappy-1.0.2" sources."ws-7.4.6" sources."xregexp-2.0.0" @@ -132735,10 +130304,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "8.6.8"; + version = "8.6.9"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-8.6.8.tgz"; - sha512 = "OtrCRUE7VqRyKly9E3gfExZHOAHtFDpmulyVFKrnl3v/n2xJckdueVumWJqUA5FHxcRP/T42r8P8CDr9duPP9w=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-8.6.9.tgz"; + sha512 = "LPEaCGvlV4dVGeJeHqi/pCR/SETooqmScv2wcr0gTqGUebpkt1w9TIEX0awLMhLO29p7pcXfz5ZO59B70Tnc0w=="; }; buildInputs = globalBuildInputs; meta = { @@ -132817,19 +130386,19 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -132937,7 +130506,7 @@ in sources."chownr-1.1.4" sources."decompress-response-6.0.0" sources."deep-extend-0.6.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."end-of-stream-1.4.4" sources."expand-template-2.0.3" sources."fs-constants-1.0.0" @@ -133129,7 +130698,7 @@ in sources."browserslist-4.21.9" sources."caching-transform-4.0.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chalk-2.4.2" sources."clean-stack-2.2.0" sources."cliui-6.0.0" @@ -133142,7 +130711,7 @@ in sources."debug-4.3.4" sources."decamelize-1.2.0" sources."default-require-extensions-3.0.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."es6-error-4.1.1" sources."escalade-3.1.1" @@ -133726,8 +131295,7 @@ in dependencies = [ sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."acorn-8.10.0" - sources."acorn-walk-8.2.0" + sources."@tootallnate/quickjs-emscripten-0.23.0" sources."agent-base-7.1.0" sources."appdata-path-1.0.0" sources."ast-types-0.13.4" @@ -133749,17 +131317,15 @@ in sources."debug-4.3.4" sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" - sources."deep-is-0.1.4" sources."defer-to-connect-1.1.3" sources."define-lazy-prop-2.0.0" - sources."degenerator-4.0.4" + sources."degenerator-5.0.1" sources."duplexer3-0.1.5" sources."end-of-stream-1.4.4" - sources."escodegen-1.14.3" + sources."escodegen-2.1.0" sources."esprima-4.0.1" - sources."estraverse-4.3.0" + sources."estraverse-5.3.0" sources."esutils-2.0.3" - sources."fast-levenshtein-2.0.6" sources."follow-redirects-1.15.2" sources."fs-extra-11.1.1" sources."function-bind-1.1.1" @@ -133790,7 +131356,6 @@ in sources."keyv-3.1.0" sources."kleur-3.0.3" sources."latest-version-5.1.0" - sources."levn-0.3.0" sources."lodash.flatmap-4.5.0" sources."lowercase-keys-1.0.1" sources."lru-cache-7.18.3" @@ -133804,20 +131369,18 @@ in sources."object-inspect-1.12.3" sources."once-1.4.0" sources."open-8.4.2" - sources."optionator-0.8.3" sources."p-cancelable-1.1.0" - sources."pac-proxy-agent-6.0.4" - sources."pac-resolver-6.0.2" + sources."pac-proxy-agent-7.0.0" + sources."pac-resolver-7.0.0" sources."package-json-6.5.0" (sources."pixiv-api-client-0.25.0" // { dependencies = [ sources."axios-0.21.4" ]; }) - sources."prelude-ls-1.1.2" sources."prepend-http-2.0.0" sources."prompts-2.4.2" - sources."proxy-agent-6.2.2" + sources."proxy-agent-6.3.0" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" sources."qs-6.11.2" @@ -133841,12 +131404,9 @@ in sources."strip-json-comments-2.0.1" sources."to-readable-stream-1.0.0" sources."tslib-2.6.0" - sources."type-check-0.3.2" sources."universalify-2.0.0" sources."url-parse-lax-3.0.0" - sources."vm2-3.9.19" sources."winreg-1.2.4" - sources."word-wrap-1.2.3" sources."wrappy-1.0.2" ]; buildInputs = globalBuildInputs; @@ -133862,11 +131422,14 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.317"; + version = "1.1.318"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.317.tgz"; - sha512 = "3tGq//Nmqfp8IDuFfQwF18dqDBq5SRo/OPBJLiW0p+VwDVSth1LS1fBrMy/u14Mqcdi7C+ARVnxXTBCpczZahg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.318.tgz"; + sha512 = "w2FLP8i6fKcwmBKtdNKbaWE3IQub3EZe4jICrf6m5i7VaA4iYi4kN++zFp/z1sz76N7EAxZ85UG/81/csNWRHw=="; }; + dependencies = [ + sources."fsevents-2.3.2" + ]; buildInputs = globalBuildInputs; meta = { description = "Type checker for the Python language"; @@ -133901,19 +131464,19 @@ in sources."typescript-4.9.4" ]; }) - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -134106,7 +131669,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakmap-2.0.1" sources."is-weakset-2.0.2" sources."isarray-2.0.5" @@ -134137,7 +131700,7 @@ in sources."utile-0.2.1" sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" (sources."winston-0.8.3" // { dependencies = [ sources."pkginfo-0.3.1" @@ -134511,7 +132074,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -134732,7 +132295,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -135070,7 +132633,7 @@ in sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakref-1.0.2" sources."is-windows-1.0.2" sources."is-wsl-1.1.0" @@ -135945,7 +133508,7 @@ in sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" sources."which-module-2.0.1" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."widest-line-2.0.1" sources."worker-farm-1.7.0" (sources."wrap-ansi-5.1.0" // { @@ -136089,7 +133652,7 @@ in sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.18" sources."@redocly/ajv-8.11.0" - sources."@redocly/openapi-core-1.0.0-beta.131" + sources."@redocly/openapi-core-1.0.0-rc.2" sources."@types/eslint-8.44.0" sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" @@ -136164,7 +133727,7 @@ in sources."call-me-maybe-1.0.2" sources."camelcase-6.3.0" sources."camelize-1.0.1" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chalk-4.1.2" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" @@ -136202,7 +133765,7 @@ in }) sources."domain-browser-1.2.0" sources."dompurify-2.4.7" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -136304,7 +133867,7 @@ in sources."minimatch-5.1.6" sources."minimist-1.2.8" sources."mkdirp-1.0.4" - sources."mobx-6.9.1" + sources."mobx-6.10.0" sources."mobx-react-7.6.0" sources."mobx-react-lite-3.4.3" sources."ms-2.1.2" @@ -136432,7 +133995,7 @@ in sources."vm-browserify-1.1.2" sources."watchpack-2.4.0" sources."webidl-conversions-3.0.1" - sources."webpack-5.88.1" + sources."webpack-5.88.2" sources."webpack-sources-3.2.3" sources."whatwg-url-5.0.0" sources."widest-line-3.1.0" @@ -137134,7 +134697,7 @@ in sources."deep-extend-0.6.0" sources."deep-is-0.1.4" sources."delaunator-5.0.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."dir-glob-3.0.1" sources."doctrine-3.0.0" sources."dom-serializer-2.0.0" @@ -137513,10 +135076,10 @@ in sass = nodeEnv.buildNodePackage { name = "sass"; packageName = "sass"; - version = "1.63.6"; + version = "1.64.0"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.63.6.tgz"; - sha512 = "MJuxGMHzaOW7ipp+1KdELtqKbfAWbH7OLIdoSMnVe3EXPMTmxTmlaZDCTsgIpPCs3w99lLo9/zDKkOrJuT5byw=="; + url = "https://registry.npmjs.org/sass/-/sass-1.64.0.tgz"; + sha512 = "m7YtAGmQta9uANIUJwXesAJMSncqH+3INc8kdVXs6eV6GUC8Qu2IYKQSN8PRLgiQfpca697G94klm2leYMxSHw=="; }; dependencies = [ sources."anymatch-3.1.3" @@ -137767,7 +135330,7 @@ in sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1415.0" // { + (sources."aws-sdk-2.1418.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -138001,7 +135564,7 @@ in sources."is-plain-obj-1.1.0" sources."is-promise-2.2.2" sources."is-stream-1.1.0" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-unicode-supported-0.1.0" sources."is-wsl-2.2.0" sources."isarray-1.0.0" @@ -138213,7 +135776,7 @@ in sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-1.3.1" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" sources."write-file-atomic-4.0.2" @@ -138877,17 +136440,17 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.1190.0"; + version = "1.1192.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.1190.0.tgz"; - sha512 = "igyEHQGquLmxEjyjn8CnYAG/JkPcCou7T6RLgdbPj/XY4xUhecd2t5HJK3XagR8ii/nohy/PTyKk/MHro2hxVg=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.1192.0.tgz"; + sha512 = "26Pj6ece4hEE4STEnYAFcbVdplVIb8kzzFuCs5mrhNeZs+eBb0KJNLL4d38nhtFd7iyYIhdrofXxs9TItCAsMg=="; }; dependencies = [ - sources."@sentry-internal/tracing-7.58.1" - sources."@sentry/core-7.58.1" - sources."@sentry/node-7.58.1" - sources."@sentry/types-7.58.1" - sources."@sentry/utils-7.58.1" + sources."@sentry-internal/tracing-7.59.3" + sources."@sentry/core-7.59.3" + sources."@sentry/node-7.59.3" + sources."@sentry/types-7.59.3" + sources."@sentry/utils-7.59.3" sources."agent-base-6.0.2" sources."boolean-3.2.0" sources."cookie-0.4.2" @@ -139525,7 +137088,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-typedarray-1.0.0" sources."is-valid-domain-0.0.20" sources."is-weakmap-2.0.1" @@ -140151,8 +137714,8 @@ in sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" - sources."which-typed-array-1.1.10" - sources."word-wrap-1.2.3" + sources."which-typed-array-1.1.11" + sources."word-wrap-1.2.4" sources."wrap-fn-0.1.5" sources."wrappy-1.0.2" sources."ws-7.5.9" @@ -140257,7 +137820,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1415.0" // { + (sources."aws-sdk-2.1418.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -140541,7 +138104,7 @@ in sources."is-property-1.0.2" sources."is-regex-1.1.4" sources."is-stream-1.1.0" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-typedarray-1.0.0" sources."is-utf8-0.2.1" sources."isarray-1.0.0" @@ -140980,7 +138543,7 @@ in sources."void-elements-2.0.1" sources."which-1.3.1" sources."which-module-2.0.1" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."window-size-0.1.0" (sources."winston-2.4.7" // { dependencies = [ @@ -141064,10 +138627,10 @@ in stylelint = nodeEnv.buildNodePackage { name = "stylelint"; packageName = "stylelint"; - version = "15.10.1"; + version = "15.10.2"; src = fetchurl { - url = "https://registry.npmjs.org/stylelint/-/stylelint-15.10.1.tgz"; - sha512 = "CYkzYrCFfA/gnOR+u9kJ1PpzwG10WLVnoxHDuBA/JiwGqdM9+yx9+ou6SE/y9YHtfv1mcLo06fdadHTOx4gBZQ=="; + url = "https://registry.npmjs.org/stylelint/-/stylelint-15.10.2.tgz"; + sha512 = "UxqSb3hB74g4DTO45QhUHkJMjKKU//lNUAOWyvPBVPZbCknJ5HjOWWZo+UDuhHa9FLeVdHBZXxu43eXkjyIPWg=="; }; dependencies = [ sources."@babel/code-frame-7.22.5" @@ -141444,19 +139007,19 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -141483,7 +139046,7 @@ in sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -141504,7 +139067,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."errno-0.1.8" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -141617,7 +139180,7 @@ in sources."sade-1.8.1" sources."safer-buffer-2.1.2" sources."sander-0.5.1" - sources."sass-1.63.6" + sources."sass-1.64.0" sources."sax-1.2.4" sources."semver-6.3.1" sources."sorcery-0.11.0" @@ -141636,7 +139199,7 @@ in sources."sugarss-4.0.1" sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" - (sources."svelte-4.0.5" // { + (sources."svelte-4.1.0" // { dependencies = [ sources."@jridgewell/sourcemap-codec-1.4.15" sources."magic-string-0.30.1" @@ -141671,10 +139234,10 @@ in svelte-language-server = nodeEnv.buildNodePackage { name = "svelte-language-server"; packageName = "svelte-language-server"; - version = "0.15.15"; + version = "0.15.16"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.15.15.tgz"; - sha512 = "ObVAjy85NzgBPGIRq3AaMpyAZm0L3A0Cl95zRX590T/y3cWTUhrWUAWFaGwHAjyOmApDeTpL60VndPQjrvTupw=="; + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.15.16.tgz"; + sha512 = "Nmol92XdL8yCSEN6qNo4Chom1fISX0VcCxmuM9EUf0FuwZsPMEgogn7zHF9R6eKzQSRnwjV5WQ0ZZvcfMYF/ZA=="; }; dependencies = [ sources."@ampproject/remapping-2.2.1" @@ -141715,19 +139278,19 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -141756,7 +139319,7 @@ in sources."browserslist-4.21.9" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -141775,7 +139338,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emmet-2.4.5" sources."errno-0.1.8" sources."es6-promise-3.3.1" @@ -141863,7 +139426,7 @@ in sources."pify-4.0.1" sources."postcss-8.4.26" sources."postcss-load-config-4.0.1" - sources."prettier-2.8.6" + sources."prettier-2.8.8" sources."prettier-plugin-svelte-2.10.1" sources."promise-7.3.1" sources."prr-1.0.1" @@ -141887,7 +139450,7 @@ in sources."run-parallel-1.2.0" sources."safer-buffer-2.1.2" sources."sander-0.5.1" - sources."sass-1.63.6" + sources."sass-1.64.0" sources."sax-1.2.4" sources."semver-6.3.1" sources."sorcery-0.11.0" @@ -142671,19 +140234,19 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -142764,7 +140327,7 @@ in sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" - sources."sucrase-3.33.0" + sources."sucrase-3.34.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."thenify-3.3.1" sources."thenify-all-1.6.0" @@ -144129,7 +141692,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakref-1.0.2" sources."isarray-2.0.5" sources."object-inspect-1.12.3" @@ -144148,7 +141711,7 @@ in sources."typed-array-length-1.0.4" sources."unbox-primitive-1.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" ]; buildInputs = globalBuildInputs; meta = { @@ -144309,7 +141872,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakref-1.0.2" sources."isarray-2.0.5" sources."isexe-2.0.0" @@ -144394,7 +141957,7 @@ in sources."weasel-words-0.1.1" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wrappy-1.0.2" sources."write-good-1.0.8" sources."yocto-queue-0.1.0" @@ -144514,7 +142077,7 @@ in sources."delegates-1.0.0" sources."depd-1.1.2" sources."destroy-1.0.4" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."dom-serializer-1.4.1" sources."domelementtype-2.3.0" sources."domhandler-4.3.1" @@ -144612,7 +142175,7 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" sources."is-lambda-1.0.1" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-utf8-0.2.1" sources."isexe-2.0.0" sources."isomorphic-textencoder-1.0.1" @@ -144813,7 +142376,7 @@ in sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-2.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wide-align-1.1.5" sources."with-open-file-0.1.7" sources."wrappy-1.0.2" @@ -146890,7 +144453,7 @@ in sources."@types/keyv-3.1.4" sources."@types/node-20.4.2" sources."@types/responselike-1.0.0" - sources."@xmldom/xmldom-0.8.9" + sources."@xmldom/xmldom-0.8.10" sources."ajv-6.12.6" sources."asn1-0.2.6" sources."assert-plus-1.0.0" @@ -147091,19 +144654,19 @@ in sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -147219,7 +144782,7 @@ in sources."@pnpm/network.ca-file-1.0.2" sources."@pnpm/npm-conf-2.2.2" sources."@primer/octicons-17.10.2" - sources."@sindresorhus/is-5.5.1" + sources."@sindresorhus/is-5.5.2" sources."@socket.io/component-emitter-3.1.0" sources."@szmarczak/http-timer-5.0.1" sources."@types/cookie-0.4.1" @@ -147442,7 +145005,7 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" sources."is-stream-2.0.1" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-utf8-0.2.1" sources."is-wsl-2.2.0" sources."isarray-1.0.0" @@ -147662,7 +145225,7 @@ in sources."utils-merge-1.0.1" sources."vary-1.1.2" sources."vm-browserify-1.1.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" (sources."winston-3.8.2" // { dependencies = [ sources."readable-stream-3.6.2" @@ -147911,7 +145474,7 @@ in sources."decompress-response-4.2.1" sources."delaunator-5.0.0" sources."delegates-1.0.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."escalade-3.1.1" @@ -148034,10 +145597,10 @@ in vega-lite = nodeEnv.buildNodePackage { name = "vega-lite"; packageName = "vega-lite"; - version = "5.13.0"; + version = "5.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.13.0.tgz"; - sha512 = "lygGw1KfegtkELn4PbDWwV8AskmUdvDbJ/ZG+IvWiBYUhTGGLIKPy1lnNQzpJG0z6zgD1s1bafAVyO2u2k0AFQ=="; + url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.14.0.tgz"; + sha512 = "BlGSp+nZNmBO0ukRAA86so/6KfUEIN0Mqmo2xo2Tv6UTxLlfh3oGvsKh6g6283meJickwntR+K4qUOIVnGUoyg=="; }; dependencies = [ sources."@types/clone-2.1.1" @@ -148147,10 +145710,10 @@ in vercel = nodeEnv.buildNodePackage { name = "vercel"; packageName = "vercel"; - version = "31.0.3"; + version = "31.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/vercel/-/vercel-31.0.3.tgz"; - sha512 = "wyvOgmq/Srk/Ex/ItaaF3BUxWzcJS4gYhbqYSKNPM2eMj7yfaicZH+PIAOevKbLZQM/4E9RnoL+dWJw3xNRhLA=="; + url = "https://registry.npmjs.org/vercel/-/vercel-31.0.4.tgz"; + sha512 = "KO2r6he/KtCWg7mgdiGVJefe6Y369yfne794/K3mzFjJZo8A1lEt6vB5yy2a79G4SX8VY7JfT2DvfsAlhIb7vQ=="; }; dependencies = [ sources."@adobe/css-tools-4.2.0" @@ -148365,14 +145928,16 @@ in sources."semver-7.5.4" ]; }) - sources."@remix-run/express-1.18.1" - (sources."@remix-run/node-1.18.1" // { + sources."@remix-run/express-1.19.0" + (sources."@remix-run/node-1.19.0" // { dependencies = [ + sources."@remix-run/router-1.7.2" + sources."@remix-run/server-runtime-1.19.0" sources."cookie-signature-1.2.1" ]; }) sources."@remix-run/router-1.7.1" - sources."@remix-run/serve-1.18.1" + sources."@remix-run/serve-1.19.0" sources."@remix-run/server-runtime-1.18.1" sources."@remix-run/web-blob-3.0.4" sources."@remix-run/web-fetch-4.3.5" @@ -148382,19 +145947,19 @@ in sources."@rollup/pluginutils-4.2.1" sources."@sinclair/typebox-0.25.24" sources."@sindresorhus/is-4.6.0" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" + sources."@swc/core-1.3.70" + sources."@swc/core-darwin-arm64-1.3.70" + sources."@swc/core-darwin-x64-1.3.70" + sources."@swc/core-linux-arm-gnueabihf-1.3.70" + sources."@swc/core-linux-arm64-gnu-1.3.70" + sources."@swc/core-linux-arm64-musl-1.3.70" + sources."@swc/core-linux-x64-gnu-1.3.70" + sources."@swc/core-linux-x64-musl-1.3.70" + sources."@swc/core-win32-arm64-msvc-1.3.70" + sources."@swc/core-win32-ia32-msvc-1.3.70" + sources."@swc/core-win32-x64-msvc-1.3.70" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.66" + sources."@swc/wasm-1.3.70" sources."@szmarczak/http-timer-4.0.6" sources."@tootallnate/once-1.1.2" sources."@ts-morph/common-0.11.1" @@ -148436,19 +146001,19 @@ in sources."@babel/runtime-7.12.1" ]; }) - (sources."@vercel/gatsby-plugin-vercel-builder-1.3.13" // { + (sources."@vercel/gatsby-plugin-vercel-builder-1.3.14" // { dependencies = [ sources."fs-extra-11.1.0" ]; }) sources."@vercel/go-2.5.1" sources."@vercel/hydrogen-0.0.64" - sources."@vercel/next-3.8.8" + sources."@vercel/next-3.9.0" sources."@vercel/nft-0.22.5" - sources."@vercel/node-2.15.5" + sources."@vercel/node-2.15.6" sources."@vercel/python-3.1.60" sources."@vercel/redwood-1.1.15" - (sources."@vercel/remix-builder-1.8.17" // { + (sources."@vercel/remix-builder-1.8.18" // { dependencies = [ sources."semver-7.3.8" ]; @@ -148461,7 +146026,7 @@ in ]; }) sources."@vercel/ruby-1.3.76" - sources."@vercel/static-build-1.3.40" + sources."@vercel/static-build-1.3.41" sources."@vercel/static-config-2.0.17" sources."@web3-storage/multipart-parser-1.0.0" sources."@zxing/text-encoding-0.9.0" @@ -148535,7 +146100,7 @@ in ]; }) sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -148611,7 +146176,7 @@ in sources."dequal-2.0.3" sources."destroy-1.2.0" sources."detect-indent-6.1.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."detect-newline-3.1.0" sources."diff-4.0.2" sources."dir-glob-3.0.1" @@ -148630,7 +146195,7 @@ in ]; }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -148832,7 +146397,7 @@ in sources."is-plain-obj-4.1.0" sources."is-reference-3.0.1" sources."is-stream-2.0.1" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-unicode-supported-0.1.0" sources."is-what-3.14.1" sources."isarray-1.0.0" @@ -149126,7 +146691,7 @@ in sources."sade-1.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."sass-1.63.6" + sources."sass-1.64.0" sources."sax-1.2.4" sources."semver-6.1.1" (sources."send-0.18.0" // { @@ -149259,29 +146824,29 @@ in sources."vfile-message-3.1.4" (sources."vite-4.4.4" // { dependencies = [ - sources."@esbuild/android-arm-0.18.13" - sources."@esbuild/android-arm64-0.18.13" - sources."@esbuild/android-x64-0.18.13" - sources."@esbuild/darwin-arm64-0.18.13" - sources."@esbuild/darwin-x64-0.18.13" - sources."@esbuild/freebsd-arm64-0.18.13" - sources."@esbuild/freebsd-x64-0.18.13" - sources."@esbuild/linux-arm-0.18.13" - sources."@esbuild/linux-arm64-0.18.13" - sources."@esbuild/linux-ia32-0.18.13" - sources."@esbuild/linux-loong64-0.18.13" - sources."@esbuild/linux-mips64el-0.18.13" - sources."@esbuild/linux-ppc64-0.18.13" - sources."@esbuild/linux-riscv64-0.18.13" - sources."@esbuild/linux-s390x-0.18.13" - sources."@esbuild/linux-x64-0.18.13" - sources."@esbuild/netbsd-x64-0.18.13" - sources."@esbuild/openbsd-x64-0.18.13" - sources."@esbuild/sunos-x64-0.18.13" - sources."@esbuild/win32-arm64-0.18.13" - sources."@esbuild/win32-ia32-0.18.13" - sources."@esbuild/win32-x64-0.18.13" - sources."esbuild-0.18.13" + sources."@esbuild/android-arm-0.18.14" + sources."@esbuild/android-arm64-0.18.14" + sources."@esbuild/android-x64-0.18.14" + sources."@esbuild/darwin-arm64-0.18.14" + sources."@esbuild/darwin-x64-0.18.14" + sources."@esbuild/freebsd-arm64-0.18.14" + sources."@esbuild/freebsd-x64-0.18.14" + sources."@esbuild/linux-arm-0.18.14" + sources."@esbuild/linux-arm64-0.18.14" + sources."@esbuild/linux-ia32-0.18.14" + sources."@esbuild/linux-loong64-0.18.14" + sources."@esbuild/linux-mips64el-0.18.14" + sources."@esbuild/linux-ppc64-0.18.14" + sources."@esbuild/linux-riscv64-0.18.14" + sources."@esbuild/linux-s390x-0.18.14" + sources."@esbuild/linux-x64-0.18.14" + sources."@esbuild/netbsd-x64-0.18.14" + sources."@esbuild/openbsd-x64-0.18.14" + sources."@esbuild/sunos-x64-0.18.14" + sources."@esbuild/win32-arm64-0.18.14" + sources."@esbuild/win32-ia32-0.18.14" + sources."@esbuild/win32-x64-0.18.14" + sources."esbuild-0.18.14" ]; }) (sources."vite-node-0.28.5" // { @@ -149297,9 +146862,9 @@ in sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-2.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wide-align-1.1.5" - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" (sources."wrap-ansi-7.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -150000,6 +147565,7 @@ in sources."@emmetio/extract-abbreviation-0.1.6" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" + sources."@one-ini/wasm-0.1.1" sources."@sindresorhus/is-0.14.0" sources."@starptech/expression-parser-0.10.0" sources."@starptech/hast-util-from-webparser-0.10.0" @@ -150164,7 +147730,7 @@ in ]; }) sources."comma-separated-tokens-1.0.8" - sources."commander-2.20.3" + sources."commander-11.0.0" sources."common-tags-1.8.2" sources."component-emitter-1.3.0" sources."concat-map-0.0.1" @@ -150203,7 +147769,15 @@ in sources."doctrine-3.0.0" sources."dot-prop-4.2.1" sources."duplexer3-0.1.5" - sources."editorconfig-0.15.3" + (sources."editorconfig-1.0.3" // { + dependencies = [ + sources."brace-expansion-2.0.1" + sources."lru-cache-6.0.0" + sources."minimatch-9.0.1" + sources."semver-7.5.4" + sources."yallist-4.0.0" + ]; + }) sources."element-helper-json-2.0.6" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" @@ -150411,7 +147985,7 @@ in sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-3.0.1" - (sources."js-beautify-1.14.8" // { + (sources."js-beautify-1.14.9" // { dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.1.0" @@ -150665,7 +148239,6 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."shellsubstitute-1.2.0" - sources."sigmund-1.0.1" sources."signal-exit-3.0.7" sources."slash-1.0.0" sources."slice-ansi-2.1.0" @@ -150823,7 +148396,11 @@ in sources."trim-newlines-2.0.0" sources."trough-1.0.5" sources."tslib-1.14.1" - sources."tslint-5.20.1" + (sources."tslint-5.20.1" // { + dependencies = [ + sources."commander-2.20.3" + ]; + }) sources."tsutils-2.29.0" sources."type-check-0.3.2" sources."type-fest-0.3.1" @@ -150945,7 +148522,7 @@ in sources."which-module-2.0.1" sources."widest-line-2.0.1" sources."window-size-0.2.0" - sources."word-wrap-1.2.3" + sources."word-wrap-1.2.4" (sources."wrap-ansi-2.1.0" // { dependencies = [ sources."ansi-regex-2.1.1" @@ -151184,7 +148761,7 @@ in ]; }) sources."@pnpm/npm-conf-2.2.2" - sources."@sindresorhus/is-5.5.1" + sources."@sindresorhus/is-5.5.2" sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/minimatch-3.0.5" @@ -151833,10 +149410,10 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "5.88.1"; + version = "5.88.2"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.88.1.tgz"; - sha512 = "FROX3TxQnC/ox4N+3xQoWZzvGXSuscxR32rbzjpXgEzWudJFEJBpdlkkob2ylrv5yzzufD1zph1OoFsLtm6stQ=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz"; + sha512 = "JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" @@ -151873,10 +149450,10 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.9" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."enhanced-resolve-5.15.0" sources."es-module-lexer-1.3.0" sources."escalade-3.1.1" @@ -151917,7 +149494,7 @@ in sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.88.1" + sources."webpack-5.88.2" sources."webpack-sources-3.2.3" ]; buildInputs = globalBuildInputs; @@ -151977,13 +149554,13 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.9" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chrome-trace-event-1.0.3" sources."clone-deep-4.0.1" sources."colorette-2.0.20" sources."commander-10.0.1" sources."cross-spawn-7.0.3" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."enhanced-resolve-5.15.0" sources."envinfo-7.10.0" sources."es-module-lexer-1.3.0" @@ -152056,7 +149633,7 @@ in sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.88.1" + sources."webpack-5.88.2" sources."webpack-cli-5.1.4" sources."webpack-merge-5.9.0" sources."webpack-sources-3.2.3" @@ -152153,7 +149730,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.0.0" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" sources."colorette-2.0.20" @@ -152181,7 +149758,7 @@ in sources."dns-equal-1.0.0" sources."dns-packet-5.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."encodeurl-1.0.2" sources."enhanced-resolve-5.15.0" sources."es-module-lexer-1.3.0" @@ -152384,7 +149961,7 @@ in sources."vary-1.1.2" sources."watchpack-2.4.0" sources."wbuf-1.7.3" - (sources."webpack-5.88.1" // { + (sources."webpack-5.88.2" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -152458,11 +150035,11 @@ in sources."braces-3.0.2" sources."browserslist-4.21.9" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001516" + sources."caniuse-lite-1.0.30001517" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" - sources."electron-to-chromium-1.4.461" + sources."electron-to-chromium-1.4.466" sources."enhanced-resolve-5.15.0" sources."es-module-lexer-1.3.0" sources."escalade-3.1.1" @@ -152534,7 +150111,7 @@ in sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - (sources."webpack-5.88.1" // { + (sources."webpack-5.88.2" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -152961,2124 +150538,35 @@ in "@withgraphite/graphite-cli" = nodeEnv.buildNodePackage { name = "_at_withgraphite_slash_graphite-cli"; packageName = "@withgraphite/graphite-cli"; - version = "0.20.35"; + version = "0.20.36"; src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-0.20.35.tgz"; - sha512 = "DWHfpmwkTPHZtScCUrXFFV8V+Cmi+WhCFpNww8PghzMVxq5X0dgD0Lwp2GsAHHvrDEFJNfO8a4DCHB1mt+9mug=="; + url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-0.20.36.tgz"; + sha512 = "67In1MjJVRrPErgQm3WszakCUn+oX3JXwD81dn/VHDTodUdhUTR3ZOkpQ1o2NnzF9s1+/3nWH5z/t3KiEdZeNw=="; }; dependencies = [ - sources."@aashutoshrathi/word-wrap-1.2.6" - sources."@alloc/quick-lru-5.2.0" - sources."@ampproject/remapping-2.2.1" - (sources."@apideck/better-ajv-errors-0.3.6" // { - dependencies = [ - sources."ajv-8.12.0" - sources."json-schema-traverse-1.0.0" - ]; - }) - sources."@babel/code-frame-7.22.5" - sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) - (sources."@babel/eslint-parser-7.22.9" // { - dependencies = [ - sources."eslint-visitor-keys-2.1.0" - sources."semver-6.3.1" - ]; - }) - sources."@babel/generator-7.22.9" - sources."@babel/helper-annotate-as-pure-7.22.5" - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) - (sources."@babel/helper-create-class-features-plugin-7.22.9" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) - (sources."@babel/helper-create-regexp-features-plugin-7.22.9" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) - sources."@babel/helper-define-polyfill-provider-0.4.1" - sources."@babel/helper-environment-visitor-7.22.5" - sources."@babel/helper-function-name-7.22.5" - sources."@babel/helper-hoist-variables-7.22.5" - sources."@babel/helper-member-expression-to-functions-7.22.5" - sources."@babel/helper-module-imports-7.22.5" - sources."@babel/helper-module-transforms-7.22.9" - sources."@babel/helper-optimise-call-expression-7.22.5" - sources."@babel/helper-plugin-utils-7.22.5" - sources."@babel/helper-remap-async-to-generator-7.22.9" - sources."@babel/helper-replace-supers-7.22.9" - sources."@babel/helper-simple-access-7.22.5" - sources."@babel/helper-skip-transparent-expression-wrappers-7.22.5" - sources."@babel/helper-split-export-declaration-7.22.6" - sources."@babel/helper-string-parser-7.22.5" - sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helper-wrap-function-7.22.9" - sources."@babel/helpers-7.22.6" - (sources."@babel/highlight-7.22.5" // { - dependencies = [ - sources."chalk-2.4.2" - ]; - }) - sources."@babel/parser-7.22.7" - sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5" - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5" - sources."@babel/plugin-proposal-class-properties-7.18.6" - sources."@babel/plugin-proposal-decorators-7.22.7" - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" - sources."@babel/plugin-proposal-numeric-separator-7.18.6" - sources."@babel/plugin-proposal-optional-chaining-7.21.0" - sources."@babel/plugin-proposal-private-methods-7.18.6" - sources."@babel/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2" - sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" - sources."@babel/plugin-syntax-async-generators-7.8.4" - sources."@babel/plugin-syntax-bigint-7.8.3" - sources."@babel/plugin-syntax-class-properties-7.12.13" - sources."@babel/plugin-syntax-class-static-block-7.14.5" - sources."@babel/plugin-syntax-decorators-7.22.5" - sources."@babel/plugin-syntax-dynamic-import-7.8.3" - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" - sources."@babel/plugin-syntax-flow-7.22.5" - sources."@babel/plugin-syntax-import-assertions-7.22.5" - sources."@babel/plugin-syntax-import-attributes-7.22.5" - sources."@babel/plugin-syntax-import-meta-7.10.4" - sources."@babel/plugin-syntax-json-strings-7.8.3" - sources."@babel/plugin-syntax-jsx-7.22.5" - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" - sources."@babel/plugin-syntax-numeric-separator-7.10.4" - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" - sources."@babel/plugin-syntax-optional-chaining-7.8.3" - sources."@babel/plugin-syntax-private-property-in-object-7.14.5" - sources."@babel/plugin-syntax-top-level-await-7.14.5" - sources."@babel/plugin-syntax-typescript-7.22.5" - sources."@babel/plugin-syntax-unicode-sets-regex-7.18.6" - sources."@babel/plugin-transform-arrow-functions-7.22.5" - sources."@babel/plugin-transform-async-generator-functions-7.22.7" - sources."@babel/plugin-transform-async-to-generator-7.22.5" - sources."@babel/plugin-transform-block-scoped-functions-7.22.5" - sources."@babel/plugin-transform-block-scoping-7.22.5" - sources."@babel/plugin-transform-class-properties-7.22.5" - sources."@babel/plugin-transform-class-static-block-7.22.5" - sources."@babel/plugin-transform-classes-7.22.6" - sources."@babel/plugin-transform-computed-properties-7.22.5" - sources."@babel/plugin-transform-destructuring-7.22.5" - sources."@babel/plugin-transform-dotall-regex-7.22.5" - sources."@babel/plugin-transform-duplicate-keys-7.22.5" - sources."@babel/plugin-transform-dynamic-import-7.22.5" - sources."@babel/plugin-transform-exponentiation-operator-7.22.5" - sources."@babel/plugin-transform-export-namespace-from-7.22.5" - sources."@babel/plugin-transform-flow-strip-types-7.22.5" - sources."@babel/plugin-transform-for-of-7.22.5" - sources."@babel/plugin-transform-function-name-7.22.5" - sources."@babel/plugin-transform-json-strings-7.22.5" - sources."@babel/plugin-transform-literals-7.22.5" - sources."@babel/plugin-transform-logical-assignment-operators-7.22.5" - sources."@babel/plugin-transform-member-expression-literals-7.22.5" - sources."@babel/plugin-transform-modules-amd-7.22.5" - sources."@babel/plugin-transform-modules-commonjs-7.22.5" - sources."@babel/plugin-transform-modules-systemjs-7.22.5" - sources."@babel/plugin-transform-modules-umd-7.22.5" - sources."@babel/plugin-transform-named-capturing-groups-regex-7.22.5" - sources."@babel/plugin-transform-new-target-7.22.5" - sources."@babel/plugin-transform-nullish-coalescing-operator-7.22.5" - sources."@babel/plugin-transform-numeric-separator-7.22.5" - sources."@babel/plugin-transform-object-rest-spread-7.22.5" - sources."@babel/plugin-transform-object-super-7.22.5" - sources."@babel/plugin-transform-optional-catch-binding-7.22.5" - sources."@babel/plugin-transform-optional-chaining-7.22.6" - sources."@babel/plugin-transform-parameters-7.22.5" - sources."@babel/plugin-transform-private-methods-7.22.5" - sources."@babel/plugin-transform-private-property-in-object-7.22.5" - sources."@babel/plugin-transform-property-literals-7.22.5" - sources."@babel/plugin-transform-react-constant-elements-7.22.5" - sources."@babel/plugin-transform-react-display-name-7.22.5" - sources."@babel/plugin-transform-react-jsx-7.22.5" - sources."@babel/plugin-transform-react-jsx-development-7.22.5" - sources."@babel/plugin-transform-react-pure-annotations-7.22.5" - sources."@babel/plugin-transform-regenerator-7.22.5" - sources."@babel/plugin-transform-reserved-words-7.22.5" - (sources."@babel/plugin-transform-runtime-7.22.9" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) - sources."@babel/plugin-transform-shorthand-properties-7.22.5" - sources."@babel/plugin-transform-spread-7.22.5" - sources."@babel/plugin-transform-sticky-regex-7.22.5" - sources."@babel/plugin-transform-template-literals-7.22.5" - sources."@babel/plugin-transform-typeof-symbol-7.22.5" - sources."@babel/plugin-transform-typescript-7.22.9" - sources."@babel/plugin-transform-unicode-escapes-7.22.5" - sources."@babel/plugin-transform-unicode-property-regex-7.22.5" - sources."@babel/plugin-transform-unicode-regex-7.22.5" - sources."@babel/plugin-transform-unicode-sets-regex-7.22.5" - (sources."@babel/preset-env-7.22.9" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) - sources."@babel/preset-modules-0.1.5" - sources."@babel/preset-react-7.22.5" - sources."@babel/preset-typescript-7.22.5" - sources."@babel/regjsgen-0.8.0" - sources."@babel/runtime-7.22.6" - sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" - sources."@bcoe/v8-coverage-0.2.3" - sources."@bufbuild/protobuf-1.3.0" - (sources."@cspotcode/source-map-support-0.8.1" // { - dependencies = [ - sources."@jridgewell/trace-mapping-0.3.9" - ]; - }) - sources."@csstools/normalize.css-12.0.0" - sources."@csstools/postcss-cascade-layers-1.1.1" - sources."@csstools/postcss-color-function-1.1.1" - sources."@csstools/postcss-font-format-keywords-1.0.1" - sources."@csstools/postcss-hwb-function-1.0.2" - sources."@csstools/postcss-ic-unit-1.0.1" - sources."@csstools/postcss-is-pseudo-class-2.0.7" - sources."@csstools/postcss-nested-calc-1.0.0" - sources."@csstools/postcss-normalize-display-values-1.0.1" - sources."@csstools/postcss-oklab-function-1.1.1" - sources."@csstools/postcss-progressive-custom-properties-1.3.0" - sources."@csstools/postcss-stepped-value-functions-1.0.1" - sources."@csstools/postcss-text-decoration-shorthand-1.0.0" - sources."@csstools/postcss-trigonometric-functions-1.0.2" - sources."@csstools/postcss-unset-value-1.0.2" - sources."@csstools/selector-specificity-2.2.0" - sources."@emotion/is-prop-valid-1.2.1" - sources."@emotion/memoize-0.8.1" - sources."@emotion/stylis-0.8.5" - sources."@emotion/unitless-0.7.5" - sources."@eslint-community/eslint-utils-4.4.0" - sources."@eslint-community/regexpp-4.5.1" - (sources."@eslint/eslintrc-2.1.0" // { - dependencies = [ - sources."argparse-2.0.1" - sources."globals-13.20.0" - sources."js-yaml-4.1.0" - sources."type-fest-0.20.2" - ]; - }) - sources."@eslint/js-8.44.0" - sources."@gar/promisify-1.1.3" - sources."@humanwhocodes/config-array-0.11.10" - sources."@humanwhocodes/module-importer-1.0.1" - sources."@humanwhocodes/object-schema-1.2.1" - (sources."@istanbuljs/load-nyc-config-1.1.0" // { - dependencies = [ - sources."camelcase-5.3.1" - sources."find-up-4.1.0" - sources."locate-path-5.0.0" - sources."p-limit-2.3.0" - sources."p-locate-4.1.0" - sources."resolve-from-5.0.0" - ]; - }) - sources."@istanbuljs/schema-0.1.3" - sources."@jest/console-27.5.1" - sources."@jest/core-27.5.1" - sources."@jest/environment-27.5.1" - sources."@jest/fake-timers-27.5.1" - sources."@jest/globals-27.5.1" - (sources."@jest/reporters-27.5.1" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) - sources."@jest/schemas-28.1.3" - (sources."@jest/source-map-27.5.1" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) - sources."@jest/test-result-27.5.1" - sources."@jest/test-sequencer-27.5.1" - (sources."@jest/transform-27.5.1" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) - sources."@jest/types-27.5.1" - sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/source-map-0.3.5" - sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) - sources."@leichtgewicht/ip-codec-2.0.4" - sources."@mapbox/node-pre-gyp-1.0.11" - sources."@microsoft/fast-element-1.12.0" - sources."@microsoft/fast-foundation-2.49.0" - sources."@microsoft/fast-react-wrapper-0.1.48" - sources."@microsoft/fast-web-utilities-5.4.1" - (sources."@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" // { - dependencies = [ - sources."eslint-scope-5.1.1" - sources."estraverse-4.3.0" - ]; - }) - sources."@nicolo-ribaudo/semver-v6-6.3.3" - sources."@nodelib/fs.scandir-2.1.5" - sources."@nodelib/fs.stat-2.0.5" - sources."@nodelib/fs.walk-1.2.8" - sources."@npmcli/fs-1.1.1" - (sources."@npmcli/move-file-1.1.2" // { - dependencies = [ - sources."mkdirp-1.0.4" - ]; - }) - sources."@pmmmwh/react-refresh-webpack-plugin-0.5.10" - sources."@primer/octicons-react-19.4.0" - sources."@primer/primitives-7.11.14" - sources."@rollup/plugin-babel-5.3.1" - sources."@rollup/plugin-node-resolve-11.2.1" - sources."@rollup/plugin-replace-2.4.2" - (sources."@rollup/pluginutils-3.1.0" // { - dependencies = [ - sources."@types/estree-0.0.39" - ]; - }) - sources."@rushstack/eslint-patch-1.3.2" - sources."@sinclair/typebox-0.24.51" - sources."@sinonjs/commons-1.8.6" - sources."@sinonjs/fake-timers-8.1.0" - sources."@styled-system/background-5.1.2" - sources."@styled-system/border-5.1.5" - sources."@styled-system/color-5.1.2" - sources."@styled-system/core-5.1.2" - sources."@styled-system/css-5.1.5" - sources."@styled-system/flexbox-5.1.2" - sources."@styled-system/grid-5.1.2" - sources."@styled-system/layout-5.1.2" - sources."@styled-system/position-5.1.2" - sources."@styled-system/shadow-5.1.2" - sources."@styled-system/space-5.1.2" - sources."@styled-system/theme-get-5.1.2" - sources."@styled-system/typography-5.1.2" - sources."@styled-system/variant-5.1.5" - sources."@surma/rollup-plugin-off-main-thread-2.2.3" - sources."@svgr/babel-plugin-add-jsx-attribute-5.4.0" - sources."@svgr/babel-plugin-remove-jsx-attribute-5.4.0" - sources."@svgr/babel-plugin-remove-jsx-empty-expression-5.0.1" - sources."@svgr/babel-plugin-replace-jsx-attribute-value-5.0.1" - sources."@svgr/babel-plugin-svg-dynamic-title-5.4.0" - sources."@svgr/babel-plugin-svg-em-dimensions-5.4.0" - sources."@svgr/babel-plugin-transform-react-native-svg-5.4.0" - sources."@svgr/babel-plugin-transform-svg-component-5.5.0" - sources."@svgr/babel-preset-5.5.0" - sources."@svgr/core-5.5.0" - sources."@svgr/hast-util-to-babel-ast-5.5.0" - sources."@svgr/plugin-jsx-5.5.0" - sources."@svgr/plugin-svgo-5.5.0" - sources."@svgr/webpack-5.5.0" - sources."@swc/core-1.3.69" - sources."@swc/core-darwin-arm64-1.3.69" - sources."@swc/core-darwin-x64-1.3.69" - sources."@swc/core-linux-arm-gnueabihf-1.3.69" - sources."@swc/core-linux-arm64-gnu-1.3.69" - sources."@swc/core-linux-arm64-musl-1.3.69" - sources."@swc/core-linux-x64-gnu-1.3.69" - sources."@swc/core-linux-x64-musl-1.3.69" - sources."@swc/core-win32-arm64-msvc-1.3.69" - sources."@swc/core-win32-ia32-msvc-1.3.69" - sources."@swc/core-win32-x64-msvc-1.3.69" - (sources."@swc/helpers-0.5.1" // { - dependencies = [ - sources."tslib-2.6.0" - ]; - }) - sources."@swc/wasm-1.3.66" - sources."@tootallnate/once-1.1.2" - sources."@trysound/sax-0.2.0" - sources."@tsconfig/node10-1.0.9" - sources."@tsconfig/node12-1.0.11" - sources."@tsconfig/node14-1.0.3" - sources."@tsconfig/node16-1.0.4" - sources."@types/babel__core-7.20.1" - sources."@types/babel__generator-7.6.4" - sources."@types/babel__template-7.4.1" - sources."@types/babel__traverse-7.20.1" - sources."@types/body-parser-1.19.2" - sources."@types/bonjour-3.5.10" - sources."@types/connect-3.4.35" - sources."@types/connect-history-api-fallback-1.5.0" - sources."@types/eslint-8.44.0" - sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.1" - sources."@types/express-4.17.17" - sources."@types/express-serve-static-core-4.17.35" - sources."@types/graceful-fs-4.1.6" - sources."@types/html-minifier-terser-6.1.0" - sources."@types/http-errors-2.0.1" - sources."@types/http-proxy-1.17.11" - sources."@types/istanbul-lib-coverage-2.0.4" - sources."@types/istanbul-lib-report-3.0.0" - sources."@types/istanbul-reports-3.0.1" - sources."@types/json-schema-7.0.12" - sources."@types/json5-0.0.29" - sources."@types/mime-1.3.2" - sources."@types/minimist-1.2.2" - sources."@types/node-16.18.38" - sources."@types/normalize-package-data-2.4.1" - sources."@types/parse-json-4.0.0" - sources."@types/prettier-2.7.3" - sources."@types/prop-types-15.7.5" - sources."@types/q-1.5.5" - sources."@types/qs-6.9.7" - sources."@types/range-parser-1.2.4" - sources."@types/react-18.2.15" - sources."@types/react-dom-18.2.7" - sources."@types/resolve-1.17.1" - sources."@types/retry-0.12.0" - sources."@types/scheduler-0.16.3" - sources."@types/semver-7.5.0" - sources."@types/send-0.17.1" - sources."@types/serve-index-1.9.1" - sources."@types/serve-static-1.15.2" - sources."@types/sockjs-0.3.33" - sources."@types/stack-utils-2.0.1" - sources."@types/trusted-types-2.0.3" - sources."@types/webpack-5.28.1" - sources."@types/ws-8.5.5" - sources."@types/yargs-16.0.5" - sources."@types/yargs-parser-21.0.0" - sources."@typescript-eslint/eslint-plugin-5.62.0" - sources."@typescript-eslint/experimental-utils-5.62.0" - sources."@typescript-eslint/parser-5.62.0" - sources."@typescript-eslint/scope-manager-5.62.0" - sources."@typescript-eslint/type-utils-5.62.0" - sources."@typescript-eslint/types-5.62.0" - sources."@typescript-eslint/typescript-estree-5.62.0" - (sources."@typescript-eslint/utils-5.62.0" // { - dependencies = [ - sources."eslint-scope-5.1.1" - sources."estraverse-4.3.0" - ]; - }) - sources."@typescript-eslint/visitor-keys-5.62.0" - sources."@vscode/codicons-0.0.33" - sources."@vscode/webview-ui-toolkit-1.2.2" - sources."@webassemblyjs/ast-1.11.6" - sources."@webassemblyjs/floating-point-hex-parser-1.11.6" - sources."@webassemblyjs/helper-api-error-1.11.6" - sources."@webassemblyjs/helper-buffer-1.11.6" - sources."@webassemblyjs/helper-numbers-1.11.6" - sources."@webassemblyjs/helper-wasm-bytecode-1.11.6" - sources."@webassemblyjs/helper-wasm-section-1.11.6" - sources."@webassemblyjs/ieee754-1.11.6" - sources."@webassemblyjs/leb128-1.11.6" - sources."@webassemblyjs/utf8-1.11.6" - sources."@webassemblyjs/wasm-edit-1.11.6" - sources."@webassemblyjs/wasm-gen-1.11.6" - sources."@webassemblyjs/wasm-opt-1.11.6" - sources."@webassemblyjs/wasm-parser-1.11.6" - sources."@webassemblyjs/wast-printer-1.11.6" - sources."@withgraphite/graphite-cli-routes-0.31.0" - sources."@withgraphite/gti-cli-shared-types-0.3.2" - sources."@withgraphite/gti-client-0.1.9" - sources."@withgraphite/gti-server-0.0.11" - sources."@withgraphite/gti-shared-0.1.6" - sources."@withgraphite/retype-0.3.15" - (sources."@withgraphite/retyped-routes-0.3.7" // { - dependencies = [ - sources."path-to-regexp-6.2.1" - ]; - }) - sources."@xtuc/ieee754-1.2.0" - sources."@xtuc/long-4.2.2" - sources."abab-2.0.6" - sources."abbrev-1.1.1" - sources."accepts-1.3.8" - sources."acorn-8.10.0" - (sources."acorn-globals-6.0.0" // { - dependencies = [ - sources."acorn-7.4.1" - ]; - }) - sources."acorn-import-assertions-1.9.0" - sources."acorn-jsx-5.3.2" - sources."acorn-walk-7.2.0" - sources."address-1.2.2" - sources."adjust-sourcemap-loader-4.0.0" - sources."agent-base-6.0.2" - sources."agentkeepalive-4.3.0" - sources."aggregate-error-3.1.0" - sources."ajv-6.12.6" - (sources."ajv-formats-2.1.1" // { - dependencies = [ - sources."ajv-8.12.0" - sources."json-schema-traverse-1.0.0" - ]; - }) - sources."ajv-keywords-3.5.2" - (sources."ansi-escapes-4.3.2" // { - dependencies = [ - sources."type-fest-0.21.3" - ]; - }) - sources."ansi-html-community-0.0.8" sources."ansi-regex-5.0.1" - sources."ansi-styles-3.2.1" - sources."any-promise-1.3.0" - sources."anymatch-3.1.3" - sources."aproba-2.0.0" - sources."are-we-there-yet-2.0.0" - sources."arg-4.1.3" - sources."argparse-1.0.10" - sources."aria-query-5.3.0" - sources."array-buffer-byte-length-1.0.0" - sources."array-flatten-2.1.2" - sources."array-includes-3.1.6" - sources."array-union-2.1.0" - sources."array.prototype.flat-1.3.1" - sources."array.prototype.flatmap-1.3.1" - sources."array.prototype.reduce-1.0.5" - sources."array.prototype.tosorted-1.1.1" - sources."arraybuffer.prototype.slice-1.0.1" - sources."arrify-1.0.1" - sources."asap-2.0.6" - sources."asn1-0.2.6" - sources."assert-plus-1.0.0" - sources."ast-types-flow-0.0.7" - sources."async-3.2.4" - sources."async-foreach-0.1.3" - sources."asynckit-0.4.0" - sources."at-least-node-1.0.0" - sources."atob-2.1.2" - sources."autoprefixer-10.4.14" - sources."available-typed-arrays-1.0.5" - sources."aws-sign2-0.7.0" - sources."aws4-1.12.0" - sources."axe-core-4.7.2" - sources."axobject-query-3.2.1" - sources."babel-jest-27.5.1" - (sources."babel-loader-8.3.0" // { - dependencies = [ - sources."schema-utils-2.7.1" - ]; - }) - sources."babel-plugin-istanbul-6.1.1" - sources."babel-plugin-jest-hoist-27.5.1" - sources."babel-plugin-macros-3.1.0" - sources."babel-plugin-named-asset-import-0.3.8" - sources."babel-plugin-polyfill-corejs2-0.4.4" - sources."babel-plugin-polyfill-corejs3-0.8.2" - sources."babel-plugin-polyfill-regenerator-0.5.1" - sources."babel-plugin-styled-components-2.1.4" - sources."babel-plugin-transform-react-remove-prop-types-0.4.24" - sources."babel-preset-current-node-syntax-1.0.1" - sources."babel-preset-jest-27.5.1" - sources."babel-preset-react-app-10.0.1" - sources."balanced-match-1.0.2" - sources."batch-0.6.1" - sources."bcrypt-pbkdf-1.0.2" - sources."bfj-7.0.2" - sources."big.js-5.2.2" - sources."binary-extensions-2.2.0" - sources."bluebird-3.7.2" - (sources."body-parser-1.20.1" // { - dependencies = [ - sources."debug-2.6.9" - sources."http-errors-2.0.0" - sources."ms-2.0.0" - sources."qs-6.11.0" - sources."statuses-2.0.1" - ]; - }) - sources."bonjour-service-1.1.1" - sources."boolbase-1.0.0" - sources."brace-expansion-1.1.11" - sources."braces-3.0.2" - sources."browser-process-hrtime-1.0.0" - sources."browserslist-4.21.9" - sources."bser-2.1.1" - sources."buffer-builder-0.2.0" - sources."buffer-from-1.1.2" + sources."ansi-styles-4.3.0" sources."bufferutil-4.0.7" - sources."builtin-modules-3.3.0" - sources."bytes-3.1.2" - (sources."cacache-15.3.0" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."minipass-3.3.6" - sources."mkdirp-1.0.4" - sources."yallist-4.0.0" - ]; - }) - sources."cache-content-type-1.0.1" - sources."call-bind-1.0.2" - sources."callsites-3.1.0" - (sources."camel-case-4.1.2" // { - dependencies = [ - sources."tslib-2.6.0" - ]; - }) - sources."camelcase-6.3.0" - sources."camelcase-css-2.0.1" - (sources."camelcase-keys-6.2.2" // { - dependencies = [ - sources."camelcase-5.3.1" - ]; - }) - sources."camelize-1.0.1" - sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001516" - sources."canvas-2.11.2" - sources."case-sensitive-paths-webpack-plugin-2.4.0" - sources."caseless-0.12.0" - (sources."chalk-4.1.2" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - sources."char-regex-1.0.2" - sources."check-types-11.2.2" - sources."chokidar-3.5.3" - sources."chownr-2.0.0" - sources."chrome-trace-event-1.0.3" - sources."ci-info-3.8.0" - sources."cjs-module-lexer-1.2.3" - (sources."clean-css-5.3.2" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) - sources."clean-stack-2.2.0" - sources."cliui-7.0.4" - sources."co-4.6.0" - (sources."coa-2.0.2" // { - dependencies = [ - sources."chalk-2.4.2" - ]; - }) - sources."collect-v8-coverage-1.0.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."color-support-1.1.3" - sources."colord-2.9.3" - sources."colorette-2.0.20" - sources."combined-stream-1.0.8" - sources."commander-7.2.0" - sources."common-path-prefix-3.0.0" - sources."common-tags-1.8.2" - sources."commondir-1.0.1" - sources."compressible-2.0.18" - (sources."compression-1.7.4" // { - dependencies = [ - sources."bytes-3.0.0" - sources."debug-2.6.9" - sources."ms-2.0.0" - sources."safe-buffer-5.1.2" - ]; - }) - sources."concat-map-0.0.1" - sources."confusing-browser-globals-1.0.11" - sources."connect-history-api-fallback-1.6.0" - sources."console-control-strings-1.1.0" - sources."content-disposition-0.5.4" - sources."content-type-1.0.5" - sources."convert-source-map-1.9.0" - sources."cookie-0.5.0" - sources."cookie-signature-1.0.6" - sources."cookies-0.8.0" - sources."core-js-3.31.1" - sources."core-js-compat-3.31.1" - sources."core-js-pure-3.31.1" - sources."core-util-is-1.0.2" - sources."cosmiconfig-7.1.0" - sources."create-require-1.1.1" - sources."cross-spawn-7.0.3" - sources."crypto-random-string-2.0.0" - (sources."css-2.2.4" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) - sources."css-blank-pseudo-3.0.3" - sources."css-color-keywords-1.0.0" - sources."css-declaration-sorter-6.4.1" - sources."css-has-pseudo-3.0.4" - sources."css-loader-6.8.1" - (sources."css-minimizer-webpack-plugin-3.4.1" // { - dependencies = [ - sources."ajv-8.12.0" - sources."ajv-keywords-5.1.0" - sources."json-schema-traverse-1.0.0" - sources."schema-utils-4.2.0" - sources."source-map-0.6.1" - ]; - }) - sources."css-prefers-color-scheme-6.0.3" - sources."css-select-2.1.0" - sources."css-select-base-adapter-0.1.1" - sources."css-to-react-native-3.2.0" - (sources."css-tree-1.0.0-alpha.37" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) - sources."css-what-3.4.2" - sources."cssdb-7.6.0" - sources."cssesc-3.0.0" - sources."cssnano-5.1.15" - sources."cssnano-preset-default-5.2.14" - sources."cssnano-utils-3.1.0" - (sources."csso-4.2.0" // { - dependencies = [ - sources."css-tree-1.1.3" - sources."mdn-data-2.0.14" - sources."source-map-0.6.1" - ]; - }) - sources."cssom-0.4.4" - (sources."cssstyle-2.3.0" // { - dependencies = [ - sources."cssom-0.3.8" - ]; - }) - sources."csstype-3.1.2" - sources."damerau-levenshtein-1.0.8" - sources."dashdash-1.14.1" - sources."data-urls-2.0.0" - sources."de-indent-1.0.2" - sources."debug-4.3.4" - sources."decamelize-1.2.0" - (sources."decamelize-keys-1.1.1" // { - dependencies = [ - sources."map-obj-1.0.1" - ]; - }) - sources."decimal.js-10.4.3" - sources."decode-uri-component-0.2.2" - sources."decompress-response-4.2.1" - sources."dedent-0.7.0" - sources."deep-equal-1.0.1" - sources."deep-is-0.1.4" - sources."deepmerge-4.3.1" - sources."default-gateway-6.0.3" - sources."define-lazy-prop-2.0.0" - sources."define-properties-1.2.0" - sources."delayed-stream-1.0.0" - sources."delegates-1.0.0" - sources."depd-2.0.0" - sources."dequal-2.0.3" - sources."destroy-1.2.0" - sources."detect-libc-2.0.1" - sources."detect-newline-3.1.0" - sources."detect-node-2.1.0" - (sources."detect-port-alt-1.1.6" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - ]; - }) - sources."didyoumean-1.2.2" - sources."diff-4.0.2" - sources."diff-sequences-29.4.3" - sources."dir-glob-3.0.1" - sources."dlv-1.1.3" - sources."dns-equal-1.0.0" - sources."dns-packet-5.6.0" - sources."doctrine-3.0.0" - sources."dom-converter-0.2.0" - (sources."dom-serializer-0.2.2" // { - dependencies = [ - sources."domelementtype-2.3.0" - ]; - }) - sources."domelementtype-1.3.1" - (sources."domexception-2.0.1" // { - dependencies = [ - sources."webidl-conversions-5.0.0" - ]; - }) - (sources."domhandler-4.3.1" // { - dependencies = [ - sources."domelementtype-2.3.0" - ]; - }) - sources."domutils-1.7.0" - (sources."dot-case-3.0.4" // { - dependencies = [ - sources."tslib-2.6.0" - ]; - }) - sources."dotenv-10.0.0" - sources."dotenv-expand-5.1.0" - sources."duplexer-0.1.2" - sources."ecc-jsbn-0.1.2" - sources."ee-first-1.1.1" - sources."ejs-3.1.9" - sources."electron-to-chromium-1.4.461" - sources."emittery-0.8.1" - sources."emoji-regex-9.2.2" - sources."emojis-list-3.0.0" - sources."encodeurl-1.0.2" - (sources."encoding-0.1.13" // { - dependencies = [ - sources."iconv-lite-0.6.3" - ]; - }) - sources."end-of-stream-1.4.4" - sources."enhanced-resolve-5.15.0" - sources."entities-2.2.0" - sources."env-paths-2.2.1" - sources."err-code-2.0.3" - sources."error-ex-1.3.2" - sources."error-stack-parser-2.1.4" - sources."es-abstract-1.22.1" - sources."es-array-method-boxes-properly-1.0.0" - sources."es-module-lexer-1.3.0" - sources."es-set-tostringtag-2.0.1" - sources."es-shim-unscopables-1.0.0" - sources."es-to-primitive-1.2.1" + sources."chalk-4.1.2" + sources."cliui-8.0.1" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."emoji-regex-8.0.0" sources."escalade-3.1.1" - sources."escape-html-1.0.3" - sources."escape-string-regexp-1.0.5" - (sources."escodegen-2.1.0" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) - (sources."eslint-8.45.0" // { - dependencies = [ - sources."argparse-2.0.1" - sources."escape-string-regexp-4.0.0" - sources."glob-parent-6.0.2" - sources."globals-13.20.0" - sources."js-yaml-4.1.0" - sources."type-fest-0.20.2" - ]; - }) - sources."eslint-config-react-app-7.0.1" - (sources."eslint-import-resolver-node-0.3.7" // { - dependencies = [ - sources."debug-3.2.7" - ]; - }) - (sources."eslint-module-utils-2.8.0" // { - dependencies = [ - sources."debug-3.2.7" - ]; - }) - sources."eslint-plugin-flowtype-8.0.3" - (sources."eslint-plugin-import-2.27.5" // { - dependencies = [ - sources."debug-3.2.7" - sources."doctrine-2.1.0" - sources."semver-6.3.1" - ]; - }) - sources."eslint-plugin-jest-25.7.0" - (sources."eslint-plugin-jsx-a11y-6.7.1" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) - (sources."eslint-plugin-react-7.32.2" // { - dependencies = [ - sources."doctrine-2.1.0" - sources."resolve-2.0.0-next.4" - sources."semver-6.3.1" - ]; - }) - sources."eslint-plugin-react-hooks-4.6.0" - sources."eslint-plugin-testing-library-5.11.0" - sources."eslint-scope-7.2.1" - sources."eslint-visitor-keys-3.4.1" - (sources."eslint-webpack-plugin-3.2.0" // { - dependencies = [ - sources."ajv-8.12.0" - sources."ajv-keywords-5.1.0" - sources."has-flag-4.0.0" - sources."jest-worker-28.1.3" - sources."json-schema-traverse-1.0.0" - sources."schema-utils-4.2.0" - sources."supports-color-8.1.1" - ]; - }) - sources."espree-9.6.1" - sources."esprima-4.0.1" - sources."esquery-1.5.0" - sources."esrecurse-4.3.0" - sources."estraverse-5.3.0" - sources."estree-walker-1.0.1" - sources."esutils-2.0.3" - sources."etag-1.8.1" - sources."eventemitter3-4.0.7" - sources."events-3.3.0" - sources."eventsource-2.0.2" - (sources."execa-5.1.1" // { - dependencies = [ - sources."get-stream-6.0.1" - sources."human-signals-2.1.0" - ]; - }) - sources."exenv-es6-1.1.1" - sources."exit-0.1.2" - sources."expect-27.5.1" - (sources."express-4.18.2" // { - dependencies = [ - sources."array-flatten-1.1.1" - sources."debug-2.6.9" - sources."http-errors-2.0.0" - sources."ms-2.0.0" - sources."path-to-regexp-0.1.7" - sources."qs-6.11.0" - sources."statuses-2.0.1" - ]; - }) - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.3.0" - sources."fast-json-stable-hash-1.0.3" - sources."fast-json-stable-stringify-2.1.0" - sources."fast-levenshtein-2.0.6" - sources."fastq-1.15.0" - sources."faye-websocket-0.11.4" - sources."fb-watchman-2.0.2" - (sources."fibers-5.0.3" // { - dependencies = [ - sources."detect-libc-1.0.3" - ]; - }) - sources."file-entry-cache-6.0.1" - sources."file-loader-6.2.0" - (sources."filelist-1.0.4" // { - dependencies = [ - sources."brace-expansion-2.0.1" - sources."minimatch-5.1.6" - ]; - }) - sources."filesize-8.0.7" - sources."fill-range-7.0.1" - (sources."finalhandler-1.2.0" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - sources."statuses-2.0.1" - ]; - }) - sources."find-cache-dir-3.3.2" - sources."find-up-5.0.0" - sources."flat-cache-3.0.4" - sources."flatted-3.2.7" - sources."follow-redirects-1.15.2" - sources."for-each-0.3.3" - sources."forever-agent-0.6.1" - (sources."fork-ts-checker-webpack-plugin-6.5.3" // { - dependencies = [ - sources."cosmiconfig-6.0.0" - sources."fs-extra-9.1.0" - sources."schema-utils-2.7.0" - sources."tapable-1.1.3" - sources."universalify-2.0.0" - ]; - }) - sources."form-data-3.0.1" - sources."forwarded-0.2.0" - sources."fraction.js-4.2.0" - sources."fresh-0.5.2" - (sources."fs-extra-10.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - (sources."fs-minipass-2.1.0" // { - dependencies = [ - sources."minipass-3.3.6" - sources."yallist-4.0.0" - ]; - }) - sources."fs-monkey-1.0.4" - sources."fs.realpath-1.0.0" - sources."fsevents-2.3.2" - sources."function-bind-1.1.1" - sources."function.prototype.name-1.1.5" - sources."functions-have-names-1.2.3" - sources."gauge-3.0.2" - sources."gaze-1.1.3" - sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.1" - sources."get-own-enumerable-property-symbols-3.0.2" - sources."get-package-type-0.1.0" - sources."get-stdin-4.0.1" - sources."get-stream-5.2.0" - sources."get-symbol-description-1.0.0" - sources."getpass-0.1.7" - sources."glob-7.2.3" - sources."glob-parent-5.1.2" - sources."glob-to-regexp-0.4.1" - sources."global-modules-2.0.0" - (sources."global-prefix-3.0.0" // { - dependencies = [ - sources."which-1.3.1" - ]; - }) - sources."globals-11.12.0" - sources."globalthis-1.0.3" - sources."globby-11.1.0" - (sources."globule-1.3.4" // { - dependencies = [ - sources."glob-7.1.7" - sources."minimatch-3.0.8" - ]; - }) - sources."gopd-1.0.1" - sources."graceful-fs-4.2.11" - sources."graphemer-1.4.0" - sources."growly-1.3.0" - sources."gzip-size-6.0.0" - sources."handle-thing-2.0.1" - sources."har-schema-2.0.0" - sources."har-validator-5.1.5" - sources."hard-rejection-2.1.0" - sources."harmony-reflect-1.6.2" - sources."has-1.0.3" - sources."has-bigints-1.0.2" - sources."has-flag-3.0.0" - sources."has-property-descriptors-1.0.0" - sources."has-proto-1.0.1" - sources."has-symbols-1.0.3" - sources."has-tostringtag-1.0.0" - sources."has-unicode-2.0.1" - sources."he-1.2.0" - sources."hoist-non-react-statics-3.3.2" - sources."hoopy-0.1.4" - (sources."hosted-git-info-4.1.0" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."yallist-4.0.0" - ]; - }) - (sources."hpack.js-2.1.6" // { - dependencies = [ - sources."isarray-1.0.0" - sources."readable-stream-2.3.8" - sources."safe-buffer-5.1.2" - sources."string_decoder-1.1.1" - ]; - }) - sources."html-encoding-sniffer-2.0.1" - sources."html-entities-2.4.0" - sources."html-escaper-2.0.2" - (sources."html-minifier-terser-6.1.0" // { - dependencies = [ - sources."commander-8.3.0" - ]; - }) - sources."html-webpack-plugin-5.5.3" - (sources."htmlparser2-6.1.0" // { - dependencies = [ - sources."dom-serializer-1.4.1" - sources."domelementtype-2.3.0" - sources."domutils-2.8.0" - ]; - }) - sources."http-assert-1.5.0" - sources."http-cache-semantics-4.1.1" - sources."http-deceiver-1.2.7" - (sources."http-errors-1.8.1" // { - dependencies = [ - sources."depd-1.1.2" - ]; - }) - sources."http-parser-js-0.5.8" - sources."http-proxy-1.18.1" - sources."http-proxy-agent-4.0.1" - sources."http-proxy-middleware-1.3.1" - sources."http-signature-1.2.0" - sources."https-proxy-agent-5.0.1" - sources."human-signals-1.1.1" - sources."humanize-ms-1.2.1" - sources."iconv-lite-0.4.24" - sources."icss-utils-5.1.0" - sources."idb-7.1.1" - sources."identity-obj-proxy-3.0.0" - sources."ignore-5.2.4" - sources."immer-9.0.21" - sources."immutable-4.3.1" - sources."import-fresh-3.3.0" - sources."import-local-3.1.0" - sources."imurmurhash-0.1.4" - sources."indent-string-4.0.0" - sources."infer-owner-1.0.4" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."ini-1.3.8" - sources."internal-slot-1.0.5" - sources."ip-2.0.0" - sources."ipaddr.js-2.1.0" - sources."is-array-buffer-3.0.2" - sources."is-arrayish-0.2.1" - sources."is-bigint-1.0.4" - sources."is-binary-path-2.1.0" - sources."is-boolean-object-1.1.2" - sources."is-callable-1.2.7" - sources."is-core-module-2.12.1" - sources."is-date-object-1.0.5" - sources."is-docker-2.2.1" - sources."is-extglob-2.1.1" + sources."has-flag-4.0.0" sources."is-fullwidth-code-point-3.0.0" - sources."is-generator-fn-2.1.0" - sources."is-generator-function-1.0.10" - sources."is-glob-4.0.3" - sources."is-lambda-1.0.1" - sources."is-module-1.0.0" - sources."is-negative-zero-2.0.2" - sources."is-number-7.0.0" - sources."is-number-object-1.0.7" - sources."is-obj-1.0.1" - sources."is-path-cwd-2.2.0" - sources."is-path-inside-3.0.3" - sources."is-plain-obj-3.0.0" - sources."is-potential-custom-element-name-1.0.1" - sources."is-promise-4.0.0" - sources."is-regex-1.1.4" - sources."is-regexp-1.0.0" - sources."is-root-2.1.0" - sources."is-shared-array-buffer-1.0.2" - sources."is-stream-2.0.1" - sources."is-string-1.0.7" - sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" - sources."is-typedarray-1.0.0" - sources."is-weakref-1.0.2" - sources."is-wsl-2.2.0" - sources."isarray-0.0.1" - sources."isexe-2.0.0" - sources."isomorphic-fetch-3.0.0" - sources."isstream-0.1.2" - sources."istanbul-lib-coverage-3.2.0" - (sources."istanbul-lib-instrument-5.2.1" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) - (sources."istanbul-lib-report-3.0.0" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - (sources."istanbul-lib-source-maps-4.0.1" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) - sources."istanbul-reports-3.1.5" - sources."jake-10.8.7" - sources."jest-27.5.1" - sources."jest-changed-files-27.5.1" - sources."jest-circus-27.5.1" - (sources."jest-cli-27.5.1" // { - dependencies = [ - sources."yargs-16.2.0" - ]; - }) - sources."jest-config-27.5.1" - (sources."jest-diff-27.5.1" // { - dependencies = [ - sources."diff-sequences-27.5.1" - ]; - }) - sources."jest-docblock-27.5.1" - sources."jest-each-27.5.1" - sources."jest-environment-jsdom-27.5.1" - sources."jest-environment-node-27.5.1" - sources."jest-get-type-27.5.1" - sources."jest-haste-map-27.5.1" - sources."jest-jasmine2-27.5.1" - sources."jest-leak-detector-27.5.1" - sources."jest-matcher-utils-27.5.1" - sources."jest-message-util-27.5.1" - sources."jest-mock-27.5.1" - sources."jest-pnp-resolver-1.2.3" - sources."jest-regex-util-27.5.1" - sources."jest-resolve-27.5.1" - sources."jest-resolve-dependencies-27.5.1" - sources."jest-runner-27.5.1" - (sources."jest-runtime-27.5.1" // { - dependencies = [ - sources."strip-bom-4.0.0" - ]; - }) - sources."jest-serializer-27.5.1" - sources."jest-snapshot-27.5.1" - sources."jest-util-27.5.1" - sources."jest-validate-27.5.1" - (sources."jest-watch-typeahead-1.1.0" // { - dependencies = [ - (sources."@jest/console-28.1.3" // { - dependencies = [ - sources."slash-3.0.0" - ]; - }) - sources."@jest/test-result-28.1.3" - sources."@jest/types-28.1.3" - sources."@types/yargs-17.0.24" - sources."ansi-regex-6.0.1" - sources."ansi-styles-5.2.0" - sources."char-regex-2.0.1" - sources."emittery-0.10.2" - (sources."jest-message-util-28.1.3" // { - dependencies = [ - sources."slash-3.0.0" - ]; - }) - sources."jest-regex-util-28.0.2" - sources."jest-util-28.1.3" - (sources."jest-watcher-28.1.3" // { - dependencies = [ - sources."string-length-4.0.2" - sources."strip-ansi-6.0.1" - ]; - }) - sources."pretty-format-28.1.3" - sources."react-is-18.2.0" - sources."slash-4.0.0" - sources."string-length-5.0.1" - sources."strip-ansi-7.1.0" - ]; - }) - sources."jest-watcher-27.5.1" - (sources."jest-worker-27.5.1" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."supports-color-8.1.1" - ]; - }) - sources."jiti-1.19.1" - sources."js-base64-2.6.4" - sources."js-tokens-4.0.0" - sources."js-yaml-3.14.1" - sources."jsbn-0.1.1" - (sources."jsdom-16.7.0" // { - dependencies = [ - sources."ws-7.5.9" - ]; - }) - sources."jsesc-2.5.2" - sources."json-parse-even-better-errors-2.3.1" - sources."json-schema-0.4.0" - sources."json-schema-traverse-0.4.1" - sources."json-stable-stringify-without-jsonify-1.0.1" - sources."json-stringify-safe-5.0.1" - sources."json5-2.2.3" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - sources."jsonpointer-5.0.1" - sources."jsprim-1.4.2" - sources."jsx-ast-utils-3.3.4" - sources."keygrip-1.1.0" - sources."kind-of-6.0.3" - sources."kleur-3.0.3" - sources."klona-2.0.6" - sources."koa-2.14.2" - sources."koa-compose-4.2.0" - sources."koa-compress-5.1.1" - sources."koa-connect-2.1.0" - sources."koa-convert-2.0.0" - sources."koa-is-json-1.0.0" - sources."koa-route-3.2.0" - sources."koa-send-5.0.1" - (sources."koa-static-5.0.0" // { - dependencies = [ - sources."debug-3.2.7" - ]; - }) - sources."language-subtag-registry-0.3.22" - sources."language-tags-1.0.5" - sources."launch-editor-2.6.0" - sources."leven-3.1.0" - sources."levn-0.4.1" - sources."lilconfig-2.1.0" - sources."lines-and-columns-1.2.4" - sources."loader-runner-4.3.0" - sources."loader-utils-2.0.4" - sources."locate-path-6.0.0" - sources."lodash-4.17.21" - sources."lodash.debounce-4.0.8" - sources."lodash.memoize-4.1.2" - sources."lodash.merge-4.6.2" - sources."lodash.sortby-4.7.0" - sources."lodash.uniq-4.5.0" - sources."loglevelnext-4.0.1" - sources."loose-envify-1.4.0" - (sources."lower-case-2.0.2" // { - dependencies = [ - sources."tslib-2.6.0" - ]; - }) - sources."lru-cache-5.1.1" - sources."magic-string-0.25.9" - (sources."make-dir-3.1.0" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) - sources."make-error-1.3.6" - (sources."make-fetch-happen-9.1.0" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."minipass-3.3.6" - sources."yallist-4.0.0" - ]; - }) - sources."makeerror-1.0.12" - sources."map-obj-4.3.0" - sources."mdn-data-2.0.4" - sources."media-typer-0.3.0" - sources."memfs-3.6.0" - (sources."meow-9.0.0" // { - dependencies = [ - sources."type-fest-0.18.1" - ]; - }) - sources."merge-descriptors-1.0.1" - sources."merge-stream-2.0.0" - sources."merge2-1.4.1" - sources."methods-1.1.2" - sources."micromatch-4.0.5" - sources."mime-1.6.0" - sources."mime-db-1.52.0" - sources."mime-types-2.1.35" - sources."mimic-fn-2.1.0" - sources."mimic-response-2.1.0" - sources."min-indent-1.0.1" - (sources."mini-css-extract-plugin-2.7.6" // { - dependencies = [ - sources."ajv-8.12.0" - sources."ajv-keywords-5.1.0" - sources."json-schema-traverse-1.0.0" - sources."schema-utils-4.2.0" - ]; - }) - sources."minimalistic-assert-1.0.1" - sources."minimatch-3.1.2" - sources."minimist-1.2.8" - (sources."minimist-options-4.1.0" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - sources."minipass-5.0.0" - (sources."minipass-collect-1.0.2" // { - dependencies = [ - sources."minipass-3.3.6" - sources."yallist-4.0.0" - ]; - }) - (sources."minipass-fetch-1.4.1" // { - dependencies = [ - sources."minipass-3.3.6" - sources."yallist-4.0.0" - ]; - }) - (sources."minipass-flush-1.0.5" // { - dependencies = [ - sources."minipass-3.3.6" - sources."yallist-4.0.0" - ]; - }) - (sources."minipass-pipeline-1.2.4" // { - dependencies = [ - sources."minipass-3.3.6" - sources."yallist-4.0.0" - ]; - }) - (sources."minipass-sized-1.0.3" // { - dependencies = [ - sources."minipass-3.3.6" - sources."yallist-4.0.0" - ]; - }) - (sources."minizlib-2.1.2" // { - dependencies = [ - sources."minipass-3.3.6" - sources."yallist-4.0.0" - ]; - }) - sources."mkdirp-0.5.6" - sources."mobx-6.9.1" - sources."mobx-react-lite-3.4.3" - sources."mobx-utils-6.0.7" - sources."ms-2.1.2" - sources."multicast-dns-7.2.5" - sources."mz-2.7.0" - sources."nan-2.17.0" - sources."nanoid-3.3.6" - sources."natural-compare-1.4.0" - sources."natural-compare-lite-1.4.0" - sources."negotiator-0.6.3" - sources."neo-async-2.6.2" - (sources."no-case-3.0.4" // { - dependencies = [ - sources."tslib-2.6.0" - ]; - }) - sources."node-abort-controller-3.1.1" - (sources."node-fetch-2.6.12" // { - dependencies = [ - sources."tr46-0.0.3" - sources."webidl-conversions-3.0.1" - sources."whatwg-url-5.0.0" - ]; - }) - sources."node-forge-1.3.1" - (sources."node-gyp-8.4.1" // { - dependencies = [ - sources."are-we-there-yet-3.0.1" - sources."gauge-4.0.4" - sources."npmlog-6.0.2" - ]; - }) sources."node-gyp-build-4.6.0" - sources."node-int64-0.4.0" - sources."node-notifier-10.0.1" - sources."node-releases-2.0.13" - sources."node-sass-7.0.3" - sources."nopt-5.0.0" - sources."normalize-package-data-3.0.3" - sources."normalize-path-3.0.0" - sources."normalize-range-0.1.2" - sources."normalize-url-6.1.0" - sources."npm-run-path-4.0.1" - sources."npmlog-5.0.1" - sources."nth-check-1.0.2" - sources."nwsapi-2.2.7" - sources."oauth-sign-0.9.0" - sources."object-assign-4.1.1" - sources."object-hash-3.0.0" - sources."object-inspect-1.12.3" - sources."object-keys-1.1.1" - sources."object.assign-4.1.4" - sources."object.entries-1.1.6" - sources."object.fromentries-2.0.6" - sources."object.getownpropertydescriptors-2.1.6" - sources."object.hasown-1.1.2" - sources."object.values-1.1.6" - sources."obuf-1.1.2" - sources."on-finished-2.4.1" - sources."on-headers-1.0.2" - sources."once-1.4.0" - sources."onetime-5.1.2" - sources."only-0.0.2" - sources."open-8.4.2" - sources."optionator-0.9.3" - sources."p-defer-3.0.0" - sources."p-limit-3.1.0" - sources."p-locate-5.0.0" - sources."p-map-4.0.0" - (sources."p-retry-4.6.2" // { - dependencies = [ - sources."retry-0.13.1" - ]; - }) - sources."p-try-2.2.0" - (sources."param-case-3.0.4" // { - dependencies = [ - sources."tslib-2.6.0" - ]; - }) - sources."parent-module-1.0.1" - sources."parse-json-5.2.0" - sources."parse5-6.0.1" - sources."parseurl-1.3.3" - (sources."pascal-case-3.1.2" // { - dependencies = [ - sources."tslib-2.6.0" - ]; - }) - sources."path-exists-4.0.0" - sources."path-is-absolute-1.0.1" - sources."path-key-3.1.1" - sources."path-parse-1.0.7" - sources."path-to-regexp-1.8.0" - sources."path-type-4.0.0" - sources."performance-now-2.1.0" - sources."picocolors-1.0.0" - sources."picomatch-2.3.1" - sources."pify-2.3.0" - sources."pirates-4.0.6" - (sources."pkg-dir-4.2.0" // { - dependencies = [ - sources."find-up-4.1.0" - sources."locate-path-5.0.0" - sources."p-limit-2.3.0" - sources."p-locate-4.1.0" - ]; - }) - (sources."pkg-up-3.1.0" // { - dependencies = [ - sources."find-up-3.0.0" - sources."locate-path-3.0.0" - sources."p-limit-2.3.0" - sources."p-locate-3.0.0" - sources."path-exists-3.0.0" - ]; - }) - sources."postcss-8.4.26" - sources."postcss-attribute-case-insensitive-5.0.2" - sources."postcss-browser-comments-4.0.0" - sources."postcss-calc-8.2.4" - sources."postcss-clamp-4.1.0" - sources."postcss-color-functional-notation-4.2.4" - sources."postcss-color-hex-alpha-8.0.4" - sources."postcss-color-rebeccapurple-7.1.1" - sources."postcss-colormin-5.3.1" - sources."postcss-convert-values-5.1.3" - sources."postcss-custom-media-8.0.2" - sources."postcss-custom-properties-12.1.11" - sources."postcss-custom-selectors-6.0.3" - sources."postcss-dir-pseudo-class-6.0.5" - sources."postcss-discard-comments-5.1.2" - sources."postcss-discard-duplicates-5.1.0" - sources."postcss-discard-empty-5.1.1" - sources."postcss-discard-overridden-5.1.0" - sources."postcss-double-position-gradients-3.1.2" - sources."postcss-env-function-4.0.6" - sources."postcss-flexbugs-fixes-5.0.2" - sources."postcss-focus-visible-6.0.4" - sources."postcss-focus-within-5.0.4" - sources."postcss-font-variant-5.0.0" - sources."postcss-gap-properties-3.0.5" - sources."postcss-image-set-function-4.0.7" - sources."postcss-import-15.1.0" - sources."postcss-initial-4.0.1" - sources."postcss-js-4.0.1" - sources."postcss-lab-function-4.2.1" - (sources."postcss-load-config-4.0.1" // { - dependencies = [ - sources."yaml-2.3.1" - ]; - }) - sources."postcss-loader-6.2.1" - sources."postcss-logical-5.0.4" - sources."postcss-media-minmax-5.0.0" - sources."postcss-merge-longhand-5.1.7" - sources."postcss-merge-rules-5.1.4" - sources."postcss-minify-font-values-5.1.0" - sources."postcss-minify-gradients-5.1.1" - sources."postcss-minify-params-5.1.4" - sources."postcss-minify-selectors-5.2.1" - sources."postcss-modules-extract-imports-3.0.0" - sources."postcss-modules-local-by-default-4.0.3" - sources."postcss-modules-scope-3.0.0" - sources."postcss-modules-values-4.0.0" - sources."postcss-nested-6.0.1" - sources."postcss-nesting-10.2.0" - sources."postcss-normalize-10.0.1" - sources."postcss-normalize-charset-5.1.0" - sources."postcss-normalize-display-values-5.1.0" - sources."postcss-normalize-positions-5.1.1" - sources."postcss-normalize-repeat-style-5.1.1" - sources."postcss-normalize-string-5.1.0" - sources."postcss-normalize-timing-functions-5.1.0" - sources."postcss-normalize-unicode-5.1.1" - sources."postcss-normalize-url-5.1.0" - sources."postcss-normalize-whitespace-5.1.1" - sources."postcss-opacity-percentage-1.1.3" - sources."postcss-ordered-values-5.1.3" - sources."postcss-overflow-shorthand-3.0.4" - sources."postcss-page-break-3.0.4" - sources."postcss-place-7.0.5" - sources."postcss-preset-env-7.8.3" - sources."postcss-pseudo-class-any-link-7.1.6" - sources."postcss-reduce-initial-5.1.2" - sources."postcss-reduce-transforms-5.1.0" - sources."postcss-replace-overflow-wrap-4.0.0" - sources."postcss-selector-not-6.0.1" - sources."postcss-selector-parser-6.0.13" - (sources."postcss-svgo-5.1.0" // { - dependencies = [ - sources."css-select-4.3.0" - sources."css-tree-1.1.3" - sources."css-what-6.1.0" - sources."dom-serializer-1.4.1" - sources."domelementtype-2.3.0" - sources."domutils-2.8.0" - sources."mdn-data-2.0.14" - sources."nth-check-2.1.1" - sources."source-map-0.6.1" - sources."svgo-2.8.0" - ]; - }) - sources."postcss-unique-selectors-5.1.1" - sources."postcss-value-parser-4.2.0" - sources."prelude-ls-1.2.1" - sources."pretty-bytes-5.6.0" - sources."pretty-error-4.0.0" - (sources."pretty-format-27.5.1" // { - dependencies = [ - sources."ansi-styles-5.2.0" - sources."react-is-17.0.2" - ]; - }) - sources."process-nextick-args-2.0.1" - sources."promise-8.3.0" - sources."promise-inflight-1.0.1" - sources."promise-retry-2.0.1" - sources."prompts-2.4.2" - sources."prop-types-15.8.1" - (sources."proxy-addr-2.0.7" // { - dependencies = [ - sources."ipaddr.js-1.9.1" - ]; - }) - sources."psl-1.9.0" - sources."pump-3.0.0" - sources."punycode-2.3.0" - sources."q-1.5.1" - sources."qs-6.5.3" - sources."querystringify-2.2.0" - sources."queue-microtask-1.2.3" - sources."quick-lru-4.0.1" - sources."raf-3.4.1" - sources."randombytes-2.1.0" - sources."range-parser-1.2.1" - (sources."raw-body-2.5.1" // { - dependencies = [ - sources."http-errors-2.0.0" - sources."statuses-2.0.1" - ]; - }) - sources."react-18.2.0" - sources."react-app-polyfill-3.0.0" - (sources."react-dev-utils-12.0.1" // { - dependencies = [ - sources."escape-string-regexp-4.0.0" - sources."loader-utils-3.2.1" - ]; - }) - sources."react-dom-18.2.0" - sources."react-error-overlay-6.0.11" - sources."react-is-16.13.1" - sources."react-refresh-0.11.0" - sources."react-scripts-5.0.1" - sources."read-cache-1.0.0" - (sources."read-pkg-5.2.0" // { - dependencies = [ - sources."hosted-git-info-2.8.9" - sources."normalize-package-data-2.5.0" - sources."semver-5.7.2" - sources."type-fest-0.6.0" - ]; - }) - (sources."read-pkg-up-7.0.1" // { - dependencies = [ - sources."find-up-4.1.0" - sources."locate-path-5.0.0" - sources."p-limit-2.3.0" - sources."p-locate-4.1.0" - sources."type-fest-0.8.1" - ]; - }) - sources."readable-stream-3.6.2" - sources."readdirp-3.6.0" - sources."recursive-readdir-2.2.3" - sources."redent-3.0.0" - sources."regenerate-1.4.2" - sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.11" - sources."regenerator-transform-0.15.1" - sources."regex-parser-2.2.11" - sources."regexp.prototype.flags-1.5.0" - sources."regexpu-core-5.3.2" - (sources."regjsparser-0.9.1" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - sources."relateurl-0.2.7" - (sources."renderkid-3.0.0" // { - dependencies = [ - sources."css-select-4.3.0" - sources."css-what-6.1.0" - sources."dom-serializer-1.4.1" - sources."domelementtype-2.3.0" - sources."domutils-2.8.0" - sources."nth-check-2.1.1" - ]; - }) - (sources."request-2.88.2" // { - dependencies = [ - sources."form-data-2.3.3" - sources."tough-cookie-2.5.0" - sources."uuid-3.4.0" - ]; - }) sources."require-directory-2.1.1" - sources."require-from-string-2.0.2" - sources."requires-port-1.0.0" - sources."resolve-1.22.3" - (sources."resolve-cwd-3.0.0" // { - dependencies = [ - sources."resolve-from-5.0.0" - ]; - }) - sources."resolve-from-4.0.0" - (sources."resolve-path-1.4.0" // { - dependencies = [ - sources."depd-1.1.2" - sources."http-errors-1.6.3" - sources."inherits-2.0.3" - sources."setprototypeof-1.1.0" - ]; - }) - sources."resolve-url-0.2.1" - (sources."resolve-url-loader-4.0.0" // { - dependencies = [ - sources."picocolors-0.2.1" - sources."postcss-7.0.39" - sources."source-map-0.6.1" - ]; - }) - sources."resolve.exports-1.1.1" - sources."retry-0.12.0" - sources."reusify-1.0.4" - (sources."rework-1.0.1" // { - dependencies = [ - sources."convert-source-map-0.3.5" - ]; - }) - sources."rework-visit-1.0.0" - sources."rimraf-3.0.2" - sources."rollup-2.79.1" - (sources."rollup-plugin-terser-7.0.2" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."jest-worker-26.6.2" - sources."serialize-javascript-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - sources."run-parallel-1.2.0" - (sources."rxjs-7.8.1" // { - dependencies = [ - sources."tslib-2.6.0" - ]; - }) - (sources."safe-array-concat-1.0.0" // { - dependencies = [ - sources."isarray-2.0.5" - ]; - }) - sources."safe-buffer-5.2.1" - sources."safe-regex-test-1.0.0" - sources."safer-buffer-2.1.2" - sources."sanitize.css-13.0.0" - sources."sass-1.63.6" - (sources."sass-embedded-1.63.6" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."supports-color-8.1.1" - ]; - }) - sources."sass-embedded-darwin-arm64-1.63.6" - sources."sass-embedded-darwin-x64-1.63.6" - sources."sass-embedded-linux-arm-1.63.6" - sources."sass-embedded-linux-arm64-1.63.6" - sources."sass-embedded-linux-ia32-1.63.6" - sources."sass-embedded-linux-x64-1.63.6" - sources."sass-embedded-win32-ia32-1.63.6" - sources."sass-embedded-win32-x64-1.63.6" - sources."sass-graph-4.0.1" - sources."sass-loader-12.6.0" - sources."sax-1.2.4" - sources."saxes-5.0.1" - sources."scheduler-0.23.0" - sources."schema-utils-3.3.0" - sources."scss-tokenizer-0.4.3" - sources."select-hose-2.0.0" - sources."selfsigned-2.1.1" - (sources."semver-7.5.4" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."yallist-4.0.0" - ]; - }) - (sources."send-0.18.0" // { - dependencies = [ - (sources."debug-2.6.9" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."http-errors-2.0.0" - sources."ms-2.1.3" - sources."statuses-2.0.1" - ]; - }) - sources."serialize-javascript-6.0.1" - (sources."serve-index-1.9.1" // { - dependencies = [ - sources."debug-2.6.9" - sources."depd-1.1.2" - sources."http-errors-1.6.3" - sources."inherits-2.0.3" - sources."ms-2.0.0" - sources."setprototypeof-1.1.0" - ]; - }) - sources."serve-static-1.15.0" - sources."set-blocking-2.0.0" - sources."setprototypeof-1.2.0" - sources."shallowequal-1.1.0" - sources."shebang-command-2.0.0" - sources."shebang-regex-3.0.0" - sources."shell-quote-1.8.1" - sources."shellwords-0.1.1" - sources."side-channel-1.0.4" - sources."signal-exit-3.0.7" - sources."simple-concat-1.0.1" - sources."simple-get-3.1.1" - sources."sisteransi-1.0.5" - sources."slash-3.0.0" - sources."smart-buffer-4.2.0" - sources."sockjs-0.3.24" - (sources."sockjs-client-1.6.1" // { - dependencies = [ - sources."debug-3.2.7" - ]; - }) - sources."socks-2.7.1" - sources."socks-proxy-agent-6.2.1" - sources."source-list-map-2.0.1" - sources."source-map-0.7.4" - sources."source-map-js-1.0.2" - (sources."source-map-loader-3.0.2" // { - dependencies = [ - sources."iconv-lite-0.6.3" - ]; - }) - sources."source-map-resolve-0.5.3" - (sources."source-map-support-0.5.21" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) - sources."source-map-url-0.4.1" - sources."sourcemap-codec-1.4.8" - sources."spdx-correct-3.2.0" - sources."spdx-exceptions-2.3.0" - sources."spdx-expression-parse-3.0.1" - sources."spdx-license-ids-3.0.13" - sources."spdy-4.0.2" - sources."spdy-transport-3.0.0" - sources."sprintf-js-1.0.3" - sources."sshpk-1.17.0" - (sources."ssri-8.0.1" // { - dependencies = [ - sources."minipass-3.3.6" - sources."yallist-4.0.0" - ]; - }) - sources."stable-0.1.8" - (sources."stack-utils-2.0.6" // { - dependencies = [ - sources."escape-string-regexp-2.0.0" - ]; - }) - sources."stackframe-1.3.4" - sources."statuses-1.5.0" - (sources."stdout-stream-1.4.1" // { - dependencies = [ - sources."isarray-1.0.0" - sources."readable-stream-2.3.8" - sources."safe-buffer-5.1.2" - sources."string_decoder-1.1.1" - ]; - }) - sources."string-length-4.0.2" - sources."string-natural-compare-3.0.1" - (sources."string-width-4.2.3" // { - dependencies = [ - sources."emoji-regex-8.0.0" - ]; - }) - sources."string.prototype.matchall-4.0.8" - sources."string.prototype.trim-1.2.7" - sources."string.prototype.trimend-1.0.6" - sources."string.prototype.trimstart-1.0.6" - sources."string_decoder-1.3.0" - sources."stringify-object-3.3.0" + sources."string-width-4.2.3" sources."strip-ansi-6.0.1" - sources."strip-bom-3.0.0" - sources."strip-comments-2.0.1" - sources."strip-final-newline-2.0.0" - sources."strip-indent-3.0.0" - sources."strip-json-comments-3.1.1" - sources."style-loader-3.3.3" - sources."styled-components-5.3.11" - sources."styled-system-5.1.5" - sources."stylehacks-5.1.1" - (sources."sucrase-3.33.0" // { - dependencies = [ - sources."commander-4.1.1" - sources."glob-7.1.6" - ]; - }) - sources."superstruct-0.12.2" - sources."supports-color-5.5.0" - (sources."supports-hyperlinks-2.3.0" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - sources."supports-preserve-symlinks-flag-1.0.0" - sources."svg-parser-2.0.4" - (sources."svgo-1.3.2" // { - dependencies = [ - sources."chalk-2.4.2" - ]; - }) - sources."symbol-tree-3.2.4" - sources."tabbable-5.3.3" - (sources."tailwindcss-3.3.3" // { - dependencies = [ - sources."arg-5.0.2" - sources."glob-parent-6.0.2" - ]; - }) - sources."tapable-2.2.1" - (sources."tar-6.1.15" // { - dependencies = [ - sources."mkdirp-1.0.4" - sources."yallist-4.0.0" - ]; - }) - sources."temp-dir-2.0.0" - (sources."tempy-0.6.0" // { - dependencies = [ - sources."type-fest-0.16.0" - ]; - }) - sources."terminal-link-2.1.1" - (sources."terser-5.19.1" // { - dependencies = [ - sources."commander-2.20.3" - ]; - }) - sources."terser-webpack-plugin-5.3.9" - sources."test-exclude-6.0.0" - sources."text-table-0.2.0" - sources."thenify-3.3.1" - sources."thenify-all-1.6.0" - sources."throat-6.0.2" - sources."thunky-1.1.0" - sources."tmp-0.2.1" - sources."tmpl-1.0.5" - sources."to-fast-properties-2.0.0" - sources."to-regex-range-5.0.1" - sources."toidentifier-1.0.1" - sources."tough-cookie-4.1.3" - sources."tr46-2.1.0" - sources."trim-newlines-3.0.1" - sources."true-case-path-1.0.3" - sources."tryer-1.0.1" - sources."ts-interface-checker-0.1.13" - (sources."ts-node-10.9.1" // { - dependencies = [ - sources."acorn-walk-8.2.0" - ]; - }) - (sources."tsconfig-paths-3.14.2" // { - dependencies = [ - sources."json5-1.0.2" - ]; - }) - sources."tslib-1.14.1" - sources."tsscmp-1.0.6" - sources."tsutils-3.21.0" - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."type-check-0.4.0" - sources."type-detect-4.0.8" - sources."type-fest-3.13.1" - sources."type-is-1.6.18" - sources."typed-array-buffer-1.0.0" - sources."typed-array-byte-length-1.0.0" - sources."typed-array-byte-offset-1.0.0" - sources."typed-array-length-1.0.4" - sources."typedarray-to-buffer-3.1.5" - sources."typescript-4.9.5" - sources."unbox-primitive-1.0.2" - sources."unicode-canonical-property-names-ecmascript-2.0.0" - sources."unicode-match-property-ecmascript-2.0.0" - sources."unicode-match-property-value-ecmascript-2.1.0" - sources."unicode-property-aliases-ecmascript-2.1.0" - sources."unique-filename-1.1.1" - sources."unique-slug-2.0.2" - sources."unique-string-2.0.0" - sources."universalify-0.2.0" - sources."unpipe-1.0.0" - sources."unquote-1.1.1" - sources."upath-1.2.0" - sources."update-browserslist-db-1.0.11" - sources."uri-js-4.4.1" - sources."urix-0.1.0" - sources."url-parse-1.5.10" - sources."utf-8-validate-5.0.10" - sources."util-deprecate-1.0.2" - sources."util.promisify-1.0.1" - sources."utila-0.4.0" - sources."utils-merge-1.0.1" - sources."uuid-8.3.2" - sources."v8-compile-cache-lib-3.0.1" - sources."v8-to-istanbul-8.1.1" - sources."validate-npm-package-license-3.0.4" - sources."varint-6.0.0" - sources."vary-1.1.2" - sources."verror-1.10.0" - sources."vue-template-compiler-2.7.14" - sources."w3c-hr-time-1.0.2" - sources."w3c-xmlserializer-2.0.0" - sources."walker-1.0.8" - sources."watchpack-2.4.0" - sources."wbuf-1.7.3" - sources."webidl-conversions-6.1.0" - (sources."webpack-5.88.1" // { - dependencies = [ - sources."eslint-scope-5.1.1" - sources."estraverse-4.3.0" - ]; - }) - (sources."webpack-dev-middleware-5.3.3" // { - dependencies = [ - sources."ajv-8.12.0" - sources."ajv-keywords-5.1.0" - sources."json-schema-traverse-1.0.0" - sources."schema-utils-4.2.0" - ]; - }) - (sources."webpack-dev-server-4.15.1" // { - dependencies = [ - sources."ajv-8.12.0" - sources."ajv-keywords-5.1.0" - sources."connect-history-api-fallback-2.0.0" - sources."http-proxy-middleware-2.0.6" - sources."json-schema-traverse-1.0.0" - sources."schema-utils-4.2.0" - ]; - }) - sources."webpack-hot-middleware-2.25.4" - (sources."webpack-manifest-plugin-4.1.1" // { - dependencies = [ - sources."source-map-0.6.1" - sources."webpack-sources-2.3.1" - ]; - }) - (sources."webpack-plugin-ramdisk-0.2.0" // { - dependencies = [ - sources."execa-4.1.0" - ]; - }) - (sources."webpack-plugin-serve-1.6.0" // { - dependencies = [ - sources."open-7.4.2" - sources."ws-7.5.9" - ]; - }) - sources."webpack-sources-3.2.3" - sources."websocket-driver-0.7.4" - sources."websocket-extensions-0.1.4" - sources."whatwg-encoding-1.0.5" - sources."whatwg-fetch-3.6.2" - sources."whatwg-mimetype-2.3.0" - sources."whatwg-url-8.7.0" - sources."which-2.0.2" - sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" - sources."wide-align-1.1.5" - sources."workbox-background-sync-6.6.1" - sources."workbox-broadcast-update-6.6.1" - (sources."workbox-build-6.6.1" // { - dependencies = [ - sources."ajv-8.12.0" - sources."fs-extra-9.1.0" - sources."json-schema-traverse-1.0.0" - sources."source-map-0.8.0-beta.0" - sources."tr46-1.0.1" - sources."universalify-2.0.0" - sources."webidl-conversions-4.0.2" - sources."whatwg-url-7.1.0" - ]; - }) - sources."workbox-cacheable-response-6.6.1" - sources."workbox-core-6.6.1" - sources."workbox-expiration-6.6.1" - sources."workbox-google-analytics-6.6.1" - sources."workbox-navigation-preload-6.6.1" - sources."workbox-precaching-6.6.1" - sources."workbox-range-requests-6.6.1" - sources."workbox-recipes-6.6.1" - sources."workbox-routing-6.6.1" - sources."workbox-strategies-6.6.1" - sources."workbox-streams-6.6.1" - sources."workbox-sw-6.6.1" - (sources."workbox-webpack-plugin-6.6.1" // { - dependencies = [ - sources."source-map-0.6.1" - sources."webpack-sources-1.4.3" - ]; - }) - sources."workbox-window-6.6.1" - (sources."wrap-ansi-7.0.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - ]; - }) - sources."wrappy-1.0.2" - sources."write-file-atomic-3.0.3" + sources."supports-color-7.2.0" + sources."utf-8-validate-6.0.3" + sources."wrap-ansi-7.0.0" sources."ws-8.13.0" - sources."xml-name-validator-3.0.0" - sources."xmlchars-2.2.0" sources."y18n-5.0.8" - sources."yallist-3.1.1" - sources."yaml-1.10.2" - (sources."yargs-17.7.2" // { - dependencies = [ - sources."cliui-8.0.1" - sources."yargs-parser-21.1.1" - ]; - }) - sources."yargs-parser-20.2.9" - sources."ylru-1.3.2" - sources."yn-3.1.1" - sources."yocto-queue-0.1.0" + sources."yargs-17.7.2" + sources."yargs-parser-21.1.1" ]; buildInputs = globalBuildInputs; meta = { @@ -155092,18 +150580,18 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "3.2.0"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-3.2.0.tgz"; - sha512 = "Fne5c91uolV4+E0B60F/meWbD/sr/oSPBfr6x1gapu6I7Ipu5uUt29K/fuGRgXRQcVVKnd5k3fS++ruuLODoxA=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-3.3.0.tgz"; + sha512 = "m9+mmf3BOT5Q6pPxiXOa/MkmCrJO/CGxuePrDW0las4oNmPdT+seYxQZkM8QJVKANm0MBuU1dJqSPPF3arh73w=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.2.0" - sources."@cloudflare/workerd-darwin-64-1.20230710.0" - sources."@cloudflare/workerd-darwin-arm64-1.20230710.0" - sources."@cloudflare/workerd-linux-64-1.20230710.0" - sources."@cloudflare/workerd-linux-arm64-1.20230710.0" - sources."@cloudflare/workerd-windows-64-1.20230710.0" + sources."@cloudflare/workerd-darwin-64-1.20230717.0" + sources."@cloudflare/workerd-darwin-arm64-1.20230717.0" + sources."@cloudflare/workerd-linux-64-1.20230717.0" + sources."@cloudflare/workerd-linux-arm64-1.20230717.0" + sources."@cloudflare/workerd-windows-64-1.20230717.0" sources."@esbuild-plugins/node-globals-polyfill-0.1.1" sources."@esbuild-plugins/node-modules-polyfill-0.1.4" sources."@esbuild/android-arm-0.16.3" @@ -155133,7 +150621,7 @@ in sources."anymatch-3.1.3" sources."as-table-1.0.55" sources."base64-js-1.5.1" - sources."better-sqlite3-8.4.0" + sources."better-sqlite3-8.5.0" sources."binary-extensions-2.2.0" sources."bindings-1.5.0" sources."bl-4.1.0" @@ -155151,7 +150639,7 @@ in sources."debug-4.3.4" sources."decompress-response-6.0.0" sources."deep-extend-0.6.0" - sources."detect-libc-2.0.1" + sources."detect-libc-2.0.2" sources."end-of-stream-1.4.4" sources."esbuild-0.16.3" sources."escape-string-regexp-4.0.0" @@ -155183,7 +150671,7 @@ in sources."magic-string-0.25.9" sources."mime-3.0.0" sources."mimic-response-3.1.0" - sources."miniflare-3.20230710.0" + sources."miniflare-3.20230717.0" sources."minimist-1.2.8" sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" @@ -155232,7 +150720,7 @@ in sources."undici-5.22.1" sources."utf-8-validate-6.0.3" sources."util-deprecate-1.0.2" - sources."workerd-1.20230710.0" + sources."workerd-1.20230717.0" sources."wrappy-1.0.2" sources."ws-8.13.0" sources."xxhash-wasm-1.0.2" @@ -155414,7 +150902,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" + sources."is-typed-array-1.1.12" sources."is-weakref-1.0.2" sources."isarray-2.0.5" sources."isexe-2.0.0" @@ -155494,7 +150982,7 @@ in sources."weasel-words-0.1.1" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.10" + sources."which-typed-array-1.1.11" sources."wrappy-1.0.2" sources."yocto-queue-0.1.0" ]; @@ -155529,10 +151017,10 @@ in yaml-language-server = nodeEnv.buildNodePackage { name = "yaml-language-server"; packageName = "yaml-language-server"; - version = "1.13.0"; + version = "1.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.13.0.tgz"; - sha512 = "CzekVjFOUkiXI6tg3BPuSkxE60keDT4/+LjPLXwnt4gCRzaaWMCjT92NxOHv1derbBLHWoecay48tse/De181Q=="; + url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.14.0.tgz"; + sha512 = "HnNiHM5AOTXuM8ZpubzqgTy+7V5kFiMXVedOT2yjhvnxCw6pbMXcD/ymHaaT5v2ue0H8GGH4NFkvCEzcIcTJDg=="; }; dependencies = [ sources."ajv-8.12.0" @@ -156700,7 +152188,7 @@ in sources."@esm2cjs/form-data-encoder-2.1.4" sources."@esm2cjs/got-12.5.3" sources."@esm2cjs/http-timer-5.0.1" - sources."@esm2cjs/is-5.5.1" + sources."@esm2cjs/is-5.5.2" sources."@esm2cjs/lowercase-keys-3.0.0" sources."@esm2cjs/mimic-response-4.0.0" sources."@esm2cjs/normalize-url-8.0.0" @@ -156710,12 +152198,12 @@ in sources."@esm2cjs/responselike-3.0.0" sources."@homebridge/ciao-1.1.7" sources."@leichtgewicht/ip-codec-2.0.4" - sources."@sentry-internal/tracing-7.58.1" - sources."@sentry/core-7.58.1" - sources."@sentry/integrations-7.58.1" - sources."@sentry/node-7.58.1" - sources."@sentry/types-7.58.1" - sources."@sentry/utils-7.58.1" + sources."@sentry-internal/tracing-7.59.3" + sources."@sentry/core-7.59.3" + sources."@sentry/integrations-7.59.3" + sources."@sentry/node-7.59.3" + sources."@sentry/types-7.59.3" + sources."@sentry/utils-7.59.3" sources."@serialport/binding-mock-10.2.2" sources."@serialport/bindings-cpp-10.8.0" sources."@serialport/bindings-interface-1.2.2" @@ -156732,14 +152220,14 @@ in sources."@serialport/stream-10.5.0" sources."@types/http-cache-semantics-4.0.1" sources."@types/triple-beam-1.3.2" - sources."@zwave-js/cc-11.4.2" - sources."@zwave-js/config-11.4.2" - sources."@zwave-js/core-11.4.0" - sources."@zwave-js/host-11.4.2" - sources."@zwave-js/nvmedit-11.4.0" - sources."@zwave-js/serial-11.4.2" - sources."@zwave-js/shared-11.3.0" - sources."@zwave-js/testing-11.4.2" + sources."@zwave-js/cc-11.5.2" + sources."@zwave-js/config-11.5.2" + sources."@zwave-js/core-11.5.2" + sources."@zwave-js/host-11.5.2" + sources."@zwave-js/nvmedit-11.5.2" + sources."@zwave-js/serial-11.5.2" + sources."@zwave-js/shared-11.5.2" + sources."@zwave-js/testing-11.5.2" sources."agent-base-6.0.2" sources."alcalzone-shared-4.0.8" sources."ansi-colors-4.1.3" @@ -156867,7 +152355,7 @@ in sources."yallist-4.0.0" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" - sources."zwave-js-11.4.2" + sources."zwave-js-11.5.2" ]; buildInputs = globalBuildInputs; meta = { From c118bb4f9ad9497c951a9aa3fbe142df837fc329 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Mon, 17 Jul 2023 23:45:54 +0200 Subject: [PATCH 17/17] elixir: make mix interpreter path absolute MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the implicit dependency on `elixir` being somewhere in `PATH`. Before: ``` $ nix build '.#elixir_1_15' $ ./result/bin/mix --version env: ‘elixir’: No such file or directory ``` After: ``` $ nix build '.#elixir_1_15' $ ./result/bin/mix --version Erlang/OTP 25 [erts-13.2.2.2] [source] [64-bit] [smp:10:10] [ds:10:10:10] [async-threads:1] [jit] Mix 1.15.2 (compiled with Erlang/OTP 25) ``` This was caused by the shebang interpreter directive being set to `${coreutils}/bin/env elixir`, whereas now the `elixir` part is replaced with the full path to the interpreter. We can't get rid of the `${coreutils}/bin/env` part, because without it all scripts are interpreted as shell scripts. --- pkgs/development/interpreters/elixir/generic-builder.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/elixir/generic-builder.nix b/pkgs/development/interpreters/elixir/generic-builder.nix index af698215610..9007ab12d75 100644 --- a/pkgs/development/interpreters/elixir/generic-builder.nix +++ b/pkgs/development/interpreters/elixir/generic-builder.nix @@ -50,14 +50,14 @@ stdenv.mkDerivation ({ # to PATH so the scripts can run without problems. for f in $out/bin/*; do - b=$(basename $f) + b=$(basename $f) if [ "$b" = mix ]; then continue; fi wrapProgram $f \ --prefix PATH ":" "${lib.makeBinPath [ erlang coreutils curl bash ]}" done substituteInPlace $out/bin/mix \ - --replace "/usr/bin/env elixir" "${coreutils}/bin/env elixir" + --replace "/usr/bin/env elixir" "${coreutils}/bin/env $out/bin/elixir" ''; pos = builtins.unsafeGetAttrPos "sha256" args;