Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
d42c83a6 fb6dba86

+2382 -3790
+5
maintainers/maintainer-list.nix
··· 9486 9486 githubId = 894884; 9487 9487 name = "Jakub Kozłowski"; 9488 9488 }; 9489 + kupac = { 9490 + github = "Kupac"; 9491 + githubId = 8224569; 9492 + name = "László Kupcsik"; 9493 + }; 9489 9494 kurnevsky = { 9490 9495 email = "kurnevsky@gmail.com"; 9491 9496 github = "kurnevsky";
+2 -2
pkgs/applications/audio/ardour/default.nix
··· 58 58 }: 59 59 stdenv.mkDerivation rec { 60 60 pname = "ardour"; 61 - version = "7.4"; 61 + version = "7.5"; 62 62 63 63 # We can't use `fetchFromGitea` here, as attempting to fetch release archives from git.ardour.org 64 64 # result in an empty archive. See https://tracker.ardour.org/view.php?id=7328 for more info. 65 65 src = fetchgit { 66 66 url = "git://git.ardour.org/ardour/ardour.git"; 67 67 rev = version; 68 - hash = "sha256-CUGhJi3ji0F6v41Y08sQvo7oKITOJ96ojdJL+FyCxmw="; 68 + hash = "sha256-cmYt6fGYuuVs6YhAXaO9AG6TrYLDVUaE1/iC67rt76I="; 69 69 }; 70 70 71 71 bundledContent = fetchzip {
+9 -2
pkgs/applications/audio/librespot/default.nix
··· 1 1 { lib 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 + , makeWrapper 4 5 , pkg-config 5 6 , stdenv 6 7 , openssl 7 - , withALSA ? true 8 + , withALSA ? stdenv.isLinux 8 9 , alsa-lib 10 + , alsa-plugins 9 11 , withPortAudio ? false 10 12 , portaudio 11 13 , withPulseAudio ? false ··· 26 28 27 29 cargoSha256 = "sha256-tbDlWP0sUIa0W9HhdYNOvo9cGeqFemclhA7quh7f/Rw="; 28 30 29 - nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.isDarwin [ 31 + nativeBuildInputs = [ pkg-config makeWrapper ] ++ lib.optionals stdenv.isDarwin [ 30 32 rustPlatform.bindgenHook 31 33 ]; 32 34 ··· 40 42 ++ lib.optional withALSA "alsa-backend" 41 43 ++ lib.optional withPortAudio "portaudio-backend" 42 44 ++ lib.optional withPulseAudio "pulseaudio-backend"; 45 + 46 + postFixup = lib.optionalString withALSA '' 47 + wrapProgram "$out/bin/librespot" \ 48 + --set ALSA_PLUGIN_DIR '${alsa-plugins}/lib/alsa-lib' 49 + ''; 43 50 44 51 meta = with lib; { 45 52 description = "Open Source Spotify client library and playback daemon";
+2 -2
pkgs/applications/editors/cudatext/default.nix
··· 38 38 in 39 39 stdenv.mkDerivation rec { 40 40 pname = "cudatext"; 41 - version = "1.198.0"; 41 + version = "1.199.0"; 42 42 43 43 src = fetchFromGitHub { 44 44 owner = "Alexey-T"; 45 45 repo = "CudaText"; 46 46 rev = version; 47 - hash = "sha256-zm5acOTcjQdgKf6cSPP3mE070TVXbV6ixVa/+7g/SFE="; 47 + hash = "sha256-07IXz2xhnAJFq4YbxjY6EjWiS5MCgylDphYUDk7ILfM="; 48 48 }; 49 49 50 50 postPatch = ''
+8 -8
pkgs/applications/editors/cudatext/deps.json
··· 11 11 }, 12 12 "ATFlatControls": { 13 13 "owner": "Alexey-T", 14 - "rev": "2023.09.03", 15 - "hash": "sha256-8mopVCqhmDW5MkrOzjt9+iBVgOf7/SbZy0Y40CzuNG0=" 14 + "rev": "2023.09.07", 15 + "hash": "sha256-/ebjEOnmMH9pj8EZfyGP98fzBvSJepLTJGqK6xWoQWc=" 16 16 }, 17 17 "ATSynEdit": { 18 18 "owner": "Alexey-T", 19 - "rev": "2023.09.03", 20 - "hash": "sha256-Sk7G4dP5703yq26MC/c1EBhphBVWIbanvHJMcFJDqfk=" 19 + "rev": "2023.09.18", 20 + "hash": "sha256-JwZ9abeodtPqzZZ8NlAEZQLgb81DB2NPBcbBphwhpb0=" 21 21 }, 22 22 "ATSynEdit_Cmp": { 23 23 "owner": "Alexey-T", ··· 26 26 }, 27 27 "EControl": { 28 28 "owner": "Alexey-T", 29 - "rev": "2023.05.31", 30 - "hash": "sha256-sejyNiPmTboP6HlXao+RaMaEf67tAv4mXDHVkkMErPE=" 29 + "rev": "2023.08.18", 30 + "hash": "sha256-X/KFQfLAnbcquLSsOk0ve0X5SzoEgEG0q0JY4TuQXpY=" 31 31 }, 32 32 "ATSynEdit_Ex": { 33 33 "owner": "Alexey-T", ··· 51 51 }, 52 52 "bgrabitmap": { 53 53 "owner": "bgrabitmap", 54 - "rev": "v11.5.5", 55 - "hash": "sha256-M4ql+9zk5AJfmmHb9EG0PsJZGWcMm9/Y0lrPQqnKqcU=" 54 + "rev": "v11.5.6", 55 + "hash": "sha256-7TuHCCaH8/RxiVQmDILPW4T6op/XW6djwA5iSh/Yb5w=" 56 56 } 57 57 }
+8
pkgs/applications/editors/vim/plugins/overrides.nix
··· 862 862 dontBuild = true; 863 863 }; 864 864 865 + nvim-navbuddy = super.nvim-navbuddy.overrideAttrs { 866 + dependencies = with self; [ nui-nvim nvim-lspconfig nvim-navic ]; 867 + }; 868 + 865 869 vim-mediawiki-editor = super.vim-mediawiki-editor.overrideAttrs { 866 870 passthru.python3Dependencies = [ python3.pkgs.mwclient ]; 871 + }; 872 + 873 + nvim-navic = super.nvim-navic.overrideAttrs { 874 + dependencies = with self; [ nvim-lspconfig ]; 867 875 }; 868 876 869 877 nvim-spectre = super.nvim-spectre.overrideAttrs {
+2 -2
pkgs/applications/graphics/yed/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "yEd"; 5 - version = "3.23.1"; 5 + version = "3.23.2"; 6 6 7 7 src = fetchzip { 8 8 url = "https://www.yworks.com/resources/yed/demo/${pname}-${version}.zip"; 9 - sha256 = "sha256-MboljULek5vCcHpRFL9kdT4AROTD774AOBYeOTzcdig="; 9 + sha256 = "sha256-u83OmIzq9VygKbfa886mj6BIa/9ET1btry2nR/wxeyI="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper unzip wrapGAppsHook ];
+9 -9
pkgs/applications/misc/1password-gui/default.nix
··· 9 9 let 10 10 11 11 pname = "1password"; 12 - version = if channel == "stable" then "8.10.9" else "8.10.12-10.BETA"; 12 + version = if channel == "stable" then "8.10.16" else "8.10.16-43.BETA"; 13 13 14 14 sources = { 15 15 stable = { 16 16 x86_64-linux = { 17 17 url = "https://downloads.1password.com/linux/tar/stable/x86_64/1password-${version}.x64.tar.gz"; 18 - hash = "sha256-Ef0ee41WVN46IOYbdyF1w8Ud2s7ncR71/5TFnQwOnVU="; 18 + hash = "sha256-p9JTJUwPqJAAykhfVwlEkPlqgZ0h9VLQR3K2BYABn5I="; 19 19 }; 20 20 aarch64-linux = { 21 21 url = "https://downloads.1password.com/linux/tar/stable/aarch64/1password-${version}.arm64.tar.gz"; 22 - hash = "sha256-IuRPCphagpx0jynJmhL9ETSzS0JaWCpDaodt0TDm7xs="; 22 + hash = "sha256-RyG1QzmErwJi31pytlOjWE6QfhWjvZQuaTEtIEpg02k="; 23 23 }; 24 24 x86_64-darwin = { 25 25 url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip"; 26 - hash = "sha256-KwMYxe6WpLFXaJ3jyEOc18IYO/pwZ7RiPF/7RN2c5xg="; 26 + hash = "sha256-a2U6jmHMZY4PgigLCzTAOOtt5xOSV6sqJy7Tr2y2VvQ="; 27 27 }; 28 28 aarch64-darwin = { 29 29 url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip"; 30 - hash = "sha256-MDc2Okc8nZbAPPn0ihoraDe9kNI5xx654DdTe7AlD3E="; 30 + hash = "sha256-0LKAiY+eLYeWG/66d7n92aqI2nHZMijS0YM/d9TqYFo="; 31 31 }; 32 32 }; 33 33 beta = { 34 34 x86_64-linux = { 35 35 url = "https://downloads.1password.com/linux/tar/beta/x86_64/1password-${version}.x64.tar.gz"; 36 - hash = "sha256-SnfFd+ksJc69r7GGFUYCLH0NAwwiSxEDyaIRTrj/VWo="; 36 + hash = "sha256-7udgyaj84rnh5yn2RuvZzjDC6QsVdHh7vkJrStlW93I="; 37 37 }; 38 38 aarch64-linux = { 39 39 url = "https://downloads.1password.com/linux/tar/beta/aarch64/1password-${version}.arm64.tar.gz"; 40 - hash = "sha256-5PDlMe/EZNBkfIrf6se4B5TKVYycSSoqiv0iMEPiIrA="; 40 + hash = "sha256-2c5pL5C3BgimI8D4+Be/FkKKDBflo5Oc24nzaI4Oa4Y="; 41 41 }; 42 42 x86_64-darwin = { 43 43 url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip"; 44 - hash = "sha256-nn8lnn52MkKcFRluH9k8IoAu4vZ1C9Uk/+k6TQ6CKFs="; 44 + hash = "sha256-f7Wme98qrmdzfipBoEEEa9PSOMiTqAica8gwKfZJLCE="; 45 45 }; 46 46 aarch64-darwin = { 47 47 url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip"; 48 - hash = "sha256-ACeFyaDzo1I4w/9CrkQ5iO/JBHYRbxxzMDhTX4oI548="; 48 + hash = "sha256-6hK+qEG5gUo8XBOnxYIC+x5L9ah8m6c6YS/WpIGjENo="; 49 49 }; 50 50 }; 51 51 };
+2 -2
pkgs/applications/misc/anytype/default.nix
··· 2 2 3 3 let 4 4 pname = "anytype"; 5 - version = "0.34.3"; 5 + version = "0.35.2"; 6 6 name = "Anytype-${version}"; 7 7 nameExecutable = pname; 8 8 src = fetchurl { 9 9 url = "https://anytype-release.fra1.cdn.digitaloceanspaces.com/Anytype-${version}.AppImage"; 10 10 name = "Anytype-${version}.AppImage"; 11 - sha256 = "sha256-YJMpCEQ6eJYISGeYgvS6TcQwU2eD6fjgHrHRKA6CQJU="; 11 + sha256 = "RLkAC9rNGHdbX/EfDTfpbBBKaY+BqdFuCMm99mkjOjw="; 12 12 }; 13 13 appimageContents = appimageTools.extractType2 { inherit name src; }; 14 14 in
-40
pkgs/applications/misc/go-thumbnailer/default.nix
··· 1 - { lib 2 - , buildGoModule 3 - , fetchFromGitHub 4 - , pkg-config 5 - , vips 6 - }: 7 - 8 - buildGoModule rec { 9 - pname = "go-thumbnailer"; 10 - version = "0.1.0"; 11 - 12 - src = fetchFromGitHub { 13 - owner = "donovanglover"; 14 - repo = pname; 15 - rev = version; 16 - sha256 = "sha256-sgd5kNnDXcSesGT+OignZ+APjNSxSP0Z60dr8cWO6sU="; 17 - }; 18 - 19 - buildInputs = [ 20 - vips 21 - ]; 22 - 23 - nativeBuildInputs = [ 24 - pkg-config 25 - ]; 26 - 27 - vendorHash = "sha256-4zgsoExdhEqvycGerNVxZ6LnjeRRO+f6DhJdINR5ZyI="; 28 - 29 - postInstall = '' 30 - mkdir -p $out/share/thumbnailers 31 - substituteAll ${./go.thumbnailer} $out/share/thumbnailers/go.thumbnailer 32 - ''; 33 - 34 - meta = with lib; { 35 - description = "A cover thumbnailer written in Go for performance and reliability"; 36 - homepage = "https://github.com/donovanglover/go-thumbnailer"; 37 - license = licenses.mit; 38 - maintainers = with maintainers; [ donovanglover ]; 39 - }; 40 - }
-3
pkgs/applications/misc/go-thumbnailer/go.thumbnailer
··· 1 - [Thumbnailer Entry] 2 - Exec=@out@/bin/go-thumbnailer %s %i %o 3 - MimeType=inode/directory
+4 -3
pkgs/applications/misc/valentina/default.nix
··· 2 2 , qmake, qttools 3 3 , qtsvg, qtxmlpatterns 4 4 , wrapQtAppsHook 5 + , autoPatchelfHook 5 6 }: 6 7 7 8 stdenv.mkDerivation rec { 8 9 pname = "valentina"; 9 - version = "0.7.51"; 10 + version = "0.7.52"; 10 11 11 12 src = fetchFromGitLab { 12 13 owner = "smart-pattern"; 13 14 repo = "valentina"; 14 15 rev = "v${version}"; 15 - hash = "sha256-N9fC2tCP4TVNncatHaz5W5Mp3jOmAcEWYCl30+0myaE="; 16 + hash = "sha256-DmNRBxqyBvDTdA7Sz9X04Dhejtxx7tOVpST+SkUNguM="; 16 17 }; 17 18 18 19 postPatch = '' ··· 20 21 --replace '$$[QT_INSTALL_BINS]/$$LRELEASE' '${lib.getDev qttools}/bin/lrelease' 21 22 ''; 22 23 23 - nativeBuildInputs = [ qmake qttools wrapQtAppsHook installShellFiles ]; 24 + nativeBuildInputs = [ qmake qttools wrapQtAppsHook installShellFiles autoPatchelfHook ]; 24 25 25 26 buildInputs = [ qtsvg qtxmlpatterns ]; 26 27
+3 -3
pkgs/applications/networking/avalanchego/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "avalanchego"; 11 - version = "1.10.9"; 11 + version = "1.10.10"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ava-labs"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-ofIpTDlD8ztC5vR975GhH/yYb4LqVs17kdfbU2UN6gg="; 17 + hash = "sha256-ExBVKcKBoPKbPvF/CQ85FihXZINdShPeyUhCfoeHUWM="; 18 18 }; 19 19 20 - vendorHash = "sha256-EjdlIfY5he1P1JMJNwPNHFSwhlczGZb2ygvxviggesM="; 20 + vendorHash = "sha256-7puWqJaccSJRh9w3V3hiWAvr2TRVutHSkHrfbrIaDPE="; 21 21 # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529 22 22 proxyVendor = true; 23 23
+2 -2
pkgs/applications/networking/cluster/arkade/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "arkade"; 10 - version = "0.10.0"; 10 + version = "0.10.7"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "alexellis"; 14 14 repo = "arkade"; 15 15 rev = version; 16 - hash = "sha256-XjJt2bLGBl6T3nrTdwr8lNKW0cBZH+gYFAy6lkNtwgw="; 16 + hash = "sha256-6KgQR8QIgbrI2XhORhDjcC2PK+XbmDWNBjjjE3qOAhQ="; 17 17 }; 18 18 19 19 CGO_ENABLED = 0;
+6 -6
pkgs/applications/networking/cluster/k3s/1_27/versions.nix
··· 1 1 { 2 - k3sVersion = "1.27.5+k3s1"; 3 - k3sCommit = "8d074ecb5a8765a09eeef6f8be7987055210bc40"; 4 - k3sRepoSha256 = "0bv0r1l97zip9798d8r3ldymmdhlrfw3j9i0nvads1sd1d4az6m6"; 5 - k3sVendorSha256 = "sha256-dFLBa/Sn3GrOPWsTFkP0H2HASE8XB99Orxx5K7nnNio="; 2 + k3sVersion = "1.27.6+k3s1"; 3 + k3sCommit = "bd04941a294793ec92e8703d5e5da14107902e88"; 4 + k3sRepoSha256 = "04chr8gp0yprihigy1yzhvi2baby053fav384gq0sjq6bkp3fzd8"; 5 + k3sVendorSha256 = "sha256-LH9OsBK0Pq/NGEHprbIgYKQsslYdR3i4LYVvo5P0K+8="; 6 6 chartVersions = import ./chart-versions.nix; 7 7 k3sRootVersion = "0.12.2"; 8 8 k3sRootSha256 = "1gjynvr350qni5mskgm7pcc7alss4gms4jmkiv453vs8mmma9c9k"; 9 9 k3sCNIVersion = "1.3.0-k3s1"; 10 10 k3sCNISha256 = "0zma9g4wvdnhs9igs03xlx15bk2nq56j73zns9xgqmfiixd9c9av"; 11 - containerdVersion = "1.7.3-k3s1"; 12 - containerdSha256 = "03352jn1igsqi23sll06mdsvdbkfhrscqa2ackwczx1a3innxv9r"; 11 + containerdVersion = "1.7.6-k3s1.27"; 12 + containerdSha256 = "1kzjqw56pcdpsqdkw2k5a3pnpf8n93dh4jc2yybgqz3nyj4fw0a8"; 13 13 criCtlVersion = "1.26.0-rc.0-k3s1"; 14 14 }
+2 -2
pkgs/applications/office/qownnotes/default.nix
··· 19 19 let 20 20 pname = "qownnotes"; 21 21 appname = "QOwnNotes"; 22 - version = "23.8.1"; 22 + version = "23.9.4"; 23 23 in 24 24 stdenv.mkDerivation { 25 25 inherit pname appname version; 26 26 27 27 src = fetchurl { 28 28 url = "https://github.com/pbek/QOwnNotes/releases/download/v${version}/qownnotes-${version}.tar.xz"; 29 - hash = "sha256-ZS9OzC+pdtYY4xLQ3G31/Sw/xx4qgDjp+nAcPJdl0tk="; 29 + hash = "sha256-e5x3YeWCaTNoQR924r2EseqDOfFluj58MGS78DzfJUM="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+66
pkgs/applications/science/biology/trimmomatic/default.nix
··· 1 + { lib 2 + , stdenv 3 + , ant 4 + , fetchFromGitHub 5 + , jdk11_headless 6 + , jre 7 + , makeWrapper 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "trimmomatic"; 12 + version = "0.39"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "usadellab"; 16 + repo = "Trimmomatic"; 17 + rev = "v${version}"; 18 + hash = "sha256-u+ubmacwPy/vsEi0YQCv0fTnVDesQvqeQDEwCbS8M6I="; 19 + }; 20 + 21 + # Set source and target version to 11 22 + postPatch = '' 23 + substituteInPlace ./build.xml \ 24 + --replace 'source="1.5" target="1.5"' 'release="11"' 25 + ''; 26 + 27 + nativeBuildInputs = [ jdk11_headless ant makeWrapper ]; 28 + 29 + buildPhase = '' 30 + runHook preBuild 31 + 32 + ant 33 + 34 + runHook postBuild 35 + ''; 36 + 37 + installPhase = '' 38 + runHook preInstall 39 + 40 + mkdir -p $out/bin $out/share 41 + cp dist/jar/trimmomatic-${version}.jar $out/share/ 42 + cp -r adapters $out/share/ 43 + makeWrapper ${jre}/bin/java $out/bin/trimmomatic \ 44 + --add-flags "-cp $out/share/trimmomatic-${version}.jar org.usadellab.trimmomatic.Trimmomatic" 45 + 46 + runHook postInstall 47 + ''; 48 + 49 + meta = { 50 + description = "A flexible read trimming tool for Illumina NGS data"; 51 + longDescription = '' 52 + Trimmomatic performs a variety of useful trimming tasks for illumina 53 + paired-end and single ended data: adapter trimming, quality trimming, 54 + cropping to a specified length, length filtering, quality score 55 + conversion. 56 + ''; 57 + homepage = "http://www.usadellab.org/cms/?page=trimmomatic"; 58 + downloadPage = "https://github.com/usadellab/Trimmomatic/releases"; 59 + license = lib.licenses.gpl3Only; 60 + sourceProvenance = [ 61 + lib.sourceTypes.fromSource 62 + lib.sourceTypes.binaryBytecode # source bundles dependencies as jars 63 + ]; 64 + maintainers = [ lib.maintainers.kupac ]; 65 + }; 66 + }
+2 -2
pkgs/applications/version-management/git-codereview/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "git-codereview"; 5 - version = "1.5.0"; 5 + version = "1.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "golang"; 9 9 repo = "review"; 10 10 rev = "v${version}"; 11 - hash = "sha256-Dy7gHT6WmZ1TjA5s+VmOUkaRvrA9v7mWQSLPscgBHgY="; 11 + hash = "sha256-oHW73Y31z+0jOJdSJJa550mJYV8IP2fN+oNwT+3sySM="; 12 12 }; 13 13 14 14 vendorHash = null;
+9 -1
pkgs/applications/version-management/pijul/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchCrate 3 3 , rustPlatform 4 + , installShellFiles 4 5 , pkg-config 5 6 , libsodium 6 7 , openssl ··· 22 23 cargoHash = "sha256-mRi0NUETTdYE/oM+Jo7gW/zNby8dPAKl6XhzP0Qzsf0="; 23 24 24 25 doCheck = false; 25 - nativeBuildInputs = [ pkg-config ]; 26 + nativeBuildInputs = [ installShellFiles pkg-config ]; 26 27 buildInputs = [ openssl libsodium xxHash ] 27 28 ++ (lib.optionals gitImportSupport [ libgit2 ]) 28 29 ++ (lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ ··· 30 31 ])); 31 32 32 33 buildFeatures = lib.optional gitImportSupport "git"; 34 + 35 + postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 36 + installShellCompletion --cmd pijul \ 37 + --bash <($out/bin/pijul completion bash) \ 38 + --fish <($out/bin/pijul completion fish) \ 39 + --zsh <($out/bin/pijul completion zsh) 40 + ''; 33 41 34 42 meta = with lib; { 35 43 description = "A distributed version control system";
+2 -2
pkgs/applications/video/bilibili/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "bilibili"; 10 - version = "1.11.4-2"; 10 + version = "1.12.0-1"; 11 11 src = fetchurl { 12 12 url = "https://github.com/msojocs/bilibili-linux/releases/download/v${version}/io.github.msojocs.bilibili_${version}_amd64.deb"; 13 - hash = "sha256-nUixkNZPIqeMUdjJxaNrHODFbShDqHFHVoKRZKAVjyc="; 13 + hash = "sha256-WSnHyO71VIZDXYTcTCXcXZUkw5ScbIscs9daQokj3kA="; 14 14 }; 15 15 16 16 unpackPhase = ''
+38 -16
pkgs/applications/virtualization/vpcs/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , testers 5 + , vpcs 6 + }: 2 7 3 - stdenv.mkDerivation rec { 8 + stdenv.mkDerivation (finalAttrs: { 4 9 pname = "vpcs"; 5 - version = "0.8.2"; 10 + version = "0.8.3"; 6 11 7 12 src = fetchFromGitHub { 8 13 owner = "GNS3"; 9 - repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "sha256-joEXRMtNZMQumkYDX1gdpGAV+XdNKiAMj3dh1GZxeqc="; 14 + repo = "vpcs"; 15 + rev = "v${finalAttrs.version}"; 16 + hash = "sha256-OKi4sC4fmKtkJkkpHZ6OfeIDaBafVrJXGXh1R6gLPFY="; 12 17 }; 13 18 14 - buildPhase = ''( 15 - cd src 16 - ./mk.sh ${stdenv.buildPlatform.linuxArch} 17 - )''; 19 + sourceRoot = "${finalAttrs.src.name}/src"; 20 + 21 + buildPhase = '' 22 + runHook preBuild 23 + 24 + MKOPT="CC=${stdenv.cc.targetPrefix}cc" ./mk.sh ${stdenv.buildPlatform.linuxArch} 25 + 26 + runHook postBuild 27 + ''; 18 28 19 29 installPhase = '' 20 - install -D -m555 src/vpcs $out/bin/vpcs; 21 - install -D -m444 man/vpcs.1 $out/share/man/man1/vpcs.1; 30 + runHook preInstall 31 + 32 + install -D -m555 vpcs $out/bin/vpcs 33 + install -D -m444 ../man/vpcs.1 $out/share/man/man1/vpcs.1 34 + 35 + runHook postInstall 22 36 ''; 23 37 24 38 enableParallelBuilding = true; 25 39 40 + passthru = { 41 + tests.version = testers.testVersion { 42 + package = vpcs; 43 + command = "vpcs -v"; 44 + }; 45 + }; 46 + 26 47 meta = with lib; { 27 48 description = "A simple virtual PC simulator"; 28 49 longDescription = '' ··· 30 51 ping/traceroute them, or ping/traceroute the other hosts/routers from the 31 52 VPCS when you study the Cisco routers in the dynamips. 32 53 ''; 33 - inherit (src.meta) homepage; 54 + inherit (finalAttrs.src.meta) homepage; 34 55 license = licenses.bsd2; 35 - platforms = platforms.linux; 36 - maintainers = with maintainers; [ ]; 56 + platforms = platforms.linux ++ platforms.darwin; 57 + mainProgram = "vpcs"; 58 + maintainers = with maintainers; [ anthonyroussel ]; 37 59 }; 38 - } 60 + })
+22
pkgs/by-name/cl/clzip/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + }: 5 + 6 + stdenv.mkDerivation (finalAttrs: { 7 + pname = "clzip"; 8 + version = "1.13"; 9 + 10 + src = fetchurl { 11 + url = "mirror://savannah/lzip/clzip/clzip-${finalAttrs.version}.tar.gz"; 12 + hash = "sha256-esn79QNr9Q+wtqIOhNIpPLDSTUBE6vM8vpdgu55/6no="; 13 + }; 14 + 15 + meta = with lib; { 16 + homepage = "https://www.nongnu.org/lzip/clzip.html"; 17 + description = "C language version of lzip"; 18 + license = licenses.gpl2Plus; 19 + maintainers = with maintainers; [ rs0vere ]; 20 + platforms = platforms.all; 21 + }; 22 + })
+30
pkgs/by-name/cn/cntb/package.nix
··· 1 + { buildGoModule 2 + , lib 3 + , fetchFromGitHub 4 + }: buildGoModule rec { 5 + pname = "cntb"; 6 + version = "1.4.6"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "contabo"; 10 + repo = "cntb"; 11 + rev = "v${version}"; 12 + hash = "sha256-bvWNcEUSSHEk8fwwPdowATGEHIAj+TN8Z+A156sPVtA="; 13 + # docs contains two files with the same name but different cases, 14 + # this leads to a different hash on case insensitive filesystems (e.g. darwin) 15 + postFetch = '' 16 + rm -rf $out/openapi/docs 17 + ''; 18 + }; 19 + 20 + subPackages = [ "." ]; 21 + 22 + vendorHash = "sha256-++y2C3jYuGZ0ovRFoxeqnx7S9EwoOZBJ5zxeLGWjkqc="; 23 + 24 + meta = with lib; { 25 + description = "CLI tool for managing your products from Contabo like VPS and VDS"; 26 + homepage = "https://github.com/contabo/cntb"; 27 + license = licenses.gpl3Only; 28 + maintainers = with maintainers; [ aciceri ]; 29 + }; 30 + }
+43
pkgs/by-name/th/thud/package.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , installShellFiles 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "thud"; 9 + version = "0.3.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "donovanglover"; 13 + repo = "thud"; 14 + rev = version; 15 + hash = "sha256-3MxmVKs0huXPnL9mqDniaIarkAvJmwSOMii2ntXtOos="; 16 + }; 17 + 18 + cargoHash = "sha256-Hk3HlcA253FAA9hw5p9W+Mvec84zLo7bEmM2/BbmjiM="; 19 + 20 + nativeBuildInputs = [ 21 + installShellFiles 22 + ]; 23 + 24 + postInstall = '' 25 + install -Dm644 assets/thud.thumbnailer $out/share/thumbnailers/thud.thumbnailer 26 + substituteInPlace $out/share/thumbnailers/thud.thumbnailer --replace "thud" "$out/bin/thud" 27 + 28 + installManPage man/thud.1 29 + 30 + installShellCompletion --cmd thud \ 31 + --bash <(cat completions/thud.bash) \ 32 + --fish <(cat completions/thud.fish) \ 33 + --zsh <(cat completions/_thud) 34 + ''; 35 + 36 + meta = with lib; { 37 + description = "Generate directory thumbnails for GTK-based file browsers from images inside them"; 38 + homepage = "https://github.com/donovanglover/thud"; 39 + license = licenses.mit; 40 + maintainers = with maintainers; [ donovanglover ]; 41 + mainProgram = "thud"; 42 + }; 43 + }
+68
pkgs/by-name/yt/ytui-music/package.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , openssl 6 + , sqlite 7 + , stdenv 8 + , darwin 9 + , mpv 10 + , youtube-dl 11 + , makeBinaryWrapper 12 + }: 13 + 14 + rustPlatform.buildRustPackage rec { 15 + pname = "ytui-music"; 16 + version = "2.0.0-rc1"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "sudipghimire533"; 20 + repo = "ytui-music"; 21 + rev = "v${version}"; 22 + hash = "sha256-f/23PVk4bpUCvcQ25iNI/UVXqiPBzPKWq6OohVF41p8="; 23 + }; 24 + 25 + cargoHash = "sha256-766Wev2/R/9LLlWWxOPl6y4CBRUU4hUrTDlVVuoJ8C8="; 26 + 27 + checkFlags = [ 28 + "--skip=tests::display_config_path" 29 + "--skip=tests::inspect_server_list" 30 + ]; 31 + 32 + nativeBuildInputs = [ 33 + pkg-config 34 + makeBinaryWrapper 35 + ]; 36 + 37 + buildInputs = [ 38 + openssl 39 + sqlite 40 + mpv 41 + ] ++ lib.optionals stdenv.isDarwin [ 42 + darwin.apple_sdk.frameworks.CoreFoundation 43 + darwin.apple_sdk.frameworks.Security 44 + ]; 45 + 46 + postInstall = '' 47 + wrapProgram $out/bin/ytui_music \ 48 + --prefix PATH : ${lib.makeBinPath [ youtube-dl ]} 49 + ''; 50 + 51 + doInstallCheck = true; 52 + 53 + installCheckPhase = '' 54 + runHook preInstallCheck 55 + 56 + $out/bin/ytui_music help 57 + 58 + runHook postInstallCheck 59 + ''; 60 + 61 + meta = with lib; { 62 + description = "Youtube client in terminal for music"; 63 + homepage = "https://github.com/sudipghimire533/ytui-music"; 64 + license = licenses.gpl2Only; 65 + maintainers = with maintainers; [ kashw2 ]; 66 + mainProgram = "ytui_music"; 67 + }; 68 + }
+3 -3
pkgs/development/interpreters/cyber/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "cyber"; 9 - version = "unstable-2023-09-07"; 9 + version = "unstable-2023-09-19"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "fubark"; 13 13 repo = "cyber"; 14 - rev = "98022d0b8d266ee4f9d8c524a42abad3ad4134c9"; 15 - hash = "sha256-FEvNSHG/sMB1jBjbBaunGxb6/fSvKhKschFvghsW2Ls="; 14 + rev = "f95cd189cf090d26542a87b1d2ced461e75fa1a7"; 15 + hash = "sha256-ctEd8doXMKq3L9/T+jOcWqlBQN0pVhsu9DjBXsg/u/4="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/abseil-cpp/202308.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "abseil-cpp"; 12 - version = "20230802.0"; 12 + version = "20230802.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "abseil"; 16 16 repo = "abseil-cpp"; 17 17 rev = "refs/tags/${finalAttrs.version}"; 18 - hash = "sha256-yILAsAERUDMbRWh8t4o6W74YiswvGIHSyBAIuLVbzxY="; 18 + hash = "sha256-uNGrTNg5G5xFGtc+BSWE389x0tQ/KxJQLHfebNWas/k="; 19 19 }; 20 20 21 21 cmakeFlags = [
+6 -3
pkgs/development/libraries/libjpeg-turbo/default.nix
··· 24 24 , opencv 25 25 , python3 26 26 , vips 27 + , testers 27 28 }: 28 29 29 30 assert !(enableJpeg7 && enableJpeg8); # pick only one or none, not both 30 31 31 - stdenv.mkDerivation rec { 32 + stdenv.mkDerivation (finalAttrs: { 32 33 33 34 pname = "libjpeg-turbo"; 34 35 version = "2.1.5.1"; ··· 36 37 src = fetchFromGitHub { 37 38 owner = "libjpeg-turbo"; 38 39 repo = "libjpeg-turbo"; 39 - rev = version; 40 + rev = finalAttrs.version; 40 41 sha256 = "sha256-96SBBZp+/4WkXLvHKSPItNi5WuzdVccI/ZcbJOFjYYk="; 41 42 }; 42 43 ··· 91 92 opencv 92 93 vips; 93 94 inherit (python3.pkgs) pillow imread pyturbojpeg; 95 + pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 94 96 }; 95 97 96 98 meta = with lib; { 97 99 homepage = "https://libjpeg-turbo.org/"; 98 100 description = "A faster (using SIMD) libjpeg implementation"; 99 101 license = licenses.ijg; # and some parts under other BSD-style licenses 102 + pkgConfigModules = [ "libjpeg" "libturbojpeg" ]; 100 103 maintainers = with maintainers; [ vcunat colemickens kamadorueda ]; 101 104 platforms = platforms.all; 102 105 }; 103 - } 106 + })
+10 -4
pkgs/development/libraries/libjpeg/default.nix
··· 1 - { lib, stdenv, fetchurl, static ? false }: 1 + { lib, stdenv, fetchurl 2 + , testers 3 + , static ? false 4 + }: 2 5 3 - stdenv.mkDerivation rec { 6 + stdenv.mkDerivation (finalAttrs: { 4 7 pname = "libjpeg"; 5 8 version = "9e"; 6 9 7 10 src = fetchurl { 8 - url = "http://www.ijg.org/files/jpegsrc.v${version}.tar.gz"; 11 + url = "http://www.ijg.org/files/jpegsrc.v${finalAttrs.version}.tar.gz"; 9 12 sha256 = "sha256-QHfWpqda6wGIT3CJGdJZNMkzBeSffj8225EpMg5vTz0="; 10 13 }; 11 14 12 15 configureFlags = lib.optional static "--enable-static --disable-shared"; 13 16 14 17 outputs = [ "bin" "dev" "out" "man" ]; 18 + 19 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 15 20 16 21 meta = with lib; { 17 22 homepage = "https://www.ijg.org/"; 18 23 description = "A library that implements the JPEG image file format"; 19 24 maintainers = with maintainers; [ ]; 20 25 license = licenses.free; 26 + pkgConfigModules = [ "libjpeg" ]; 21 27 platforms = platforms.unix; 22 28 }; 23 - } 29 + })
+1
pkgs/development/libraries/libsecret/default.nix
··· 75 75 ]; 76 76 77 77 doCheck = stdenv.isLinux && withIntrospection; 78 + separateDebugInfo = true; 78 79 79 80 postPatch = '' 80 81 patchShebangs ./tool/test-*.sh
+5 -5
pkgs/development/lua-modules/generated-packages.nix
··· 563 563 haskell-tools-nvim = callPackage({ plenary-nvim, fetchzip, lua, luaOlder, buildLuarocksPackage }: 564 564 buildLuarocksPackage { 565 565 pname = "haskell-tools.nvim"; 566 - version = "1.9.1-1"; 566 + version = "2.3.0-1"; 567 567 knownRockspec = (fetchurl { 568 - url = "mirror://luarocks/haskell-tools.nvim-1.9.1-1.rockspec"; 569 - sha256 = "1m7fasn5iz9hv9l1ycsjiaah14i1s5nssvqq9sypbwcpc9slj93b"; 568 + url = "mirror://luarocks/haskell-tools.nvim-2.3.0-1.rockspec"; 569 + sha256 = "0jcmb0hzyhq14b2xcwdhwr9a9wbmfaw27vzfzkv52is24mwfr0p0"; 570 570 }).outPath; 571 571 src = fetchzip { 572 - url = "https://github.com/mrcjkb/haskell-tools.nvim/archive/1.9.1.zip"; 573 - sha256 = "0m425ipfvbb1f1m2wmz8qg57b901vspvvpckxr380crbwl3dflpr"; 572 + url = "https://github.com/mrcjkb/haskell-tools.nvim/archive/2.3.0.zip"; 573 + sha256 = "0lg8g2j9fbikgmhimvz9d0yb63csn85racc09qyszba2kviipr24"; 574 574 }; 575 575 576 576 disabled = (luaOlder "5.1");
+1
pkgs/development/node-packages/aliases.nix
··· 41 41 "@antora/cli" = pkgs.antora; # Added 2023-05-06 42 42 "@bitwarden/cli" = pkgs.bitwarden-cli; # added 2023-07-25 43 43 "@emacs-eask/cli" = pkgs.eask; # added 2023-08-17 44 + "@forge/cli" = throw "@forge/cli was removed because it was broken"; # added 2023-09-20 44 45 "@githubnext/github-copilot-cli" = pkgs.github-copilot-cli; # Added 2023-05-02 45 46 "@google/clasp" = pkgs.google-clasp; # Added 2023-05-07 46 47 "@maizzle/cli" = pkgs.maizzle; # added 2023-08-17
-1
pkgs/development/node-packages/main-programs.nix
··· 13 13 "@astrojs/language-server" = "astro-ls"; 14 14 "@babel/cli" = "babel"; 15 15 "@commitlint/cli" = "commitlint"; 16 - "@forge/cli" = "forge"; 17 16 "@gitbeaker/cli" = "gitbeaker"; 18 17 "@mermaid-js/mermaid-cli" = "mmdc"; 19 18 "@nerdwallet/shepherd" = "shepherd";
-1
pkgs/development/node-packages/node-packages.json
··· 5 5 , "@babel/cli" 6 6 , "@commitlint/cli" 7 7 , "@commitlint/config-conventional" 8 - , "@forge/cli" 9 8 , "@mermaid-js/mermaid-cli" 10 9 , "@microsoft/rush" 11 10 , "@nerdwallet/shepherd"
+1715 -3414
pkgs/development/node-packages/node-packages.nix
··· 94 94 sha512 = "lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg=="; 95 95 }; 96 96 }; 97 - "@angular-devkit/architect-0.1602.2" = { 97 + "@angular-devkit/architect-0.1602.3" = { 98 98 name = "_at_angular-devkit_slash_architect"; 99 99 packageName = "@angular-devkit/architect"; 100 - version = "0.1602.2"; 100 + version = "0.1602.3"; 101 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1602.2.tgz"; 103 - sha512 = "JFIeKKW7V2+/C8+pTReM6gfQkVU9l1IR1OCb9vvHWTRvuTr7E5h2L1rUInnmLiRWkEvkYfG29B+UPpYlkVl9oQ=="; 102 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1602.3.tgz"; 103 + sha512 = "7f4U5LzAYRcQcOvRJwunSwLd5/nwbNxY/E4jTgwFxCNvCBSMysNJBi3g9v0t8zm2XYOv4ok5eYqIwriXVypRBg=="; 104 104 }; 105 105 }; 106 - "@angular-devkit/core-16.2.2" = { 106 + "@angular-devkit/core-16.2.3" = { 107 107 name = "_at_angular-devkit_slash_core"; 108 108 packageName = "@angular-devkit/core"; 109 - version = "16.2.2"; 109 + version = "16.2.3"; 110 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-16.2.2.tgz"; 112 - sha512 = "6H4FsvP3rLJaGiWpIhCFPS7ZeNoM4sSrnFtRhhecu6s7MidzE4aqzuGdzJpzLammw1KL+DuTlN0gpLtM1Bvcwg=="; 111 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-16.2.3.tgz"; 112 + sha512 = "oZLdg2XTx7likYAXRj1CU0XmrsCfe5f2grj3iwuI3OB1LXwwpdbHBztruj03y3yHES+TnO+dIbkvRnvMXs7uAA=="; 113 113 }; 114 114 }; 115 - "@angular-devkit/schematics-16.2.2" = { 115 + "@angular-devkit/schematics-16.2.3" = { 116 116 name = "_at_angular-devkit_slash_schematics"; 117 117 packageName = "@angular-devkit/schematics"; 118 - version = "16.2.2"; 118 + version = "16.2.3"; 119 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.2.2.tgz"; 121 - sha512 = "KeXIlibVrQEwIKbR9GViLKc3m1SXi/xuSXgIvSv+22FNu5i91ScsAhYLe65sDUL6m6MM1XQQMS46XN1Z9bRqQw=="; 120 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.2.3.tgz"; 121 + sha512 = "+lBiHxi/C9HCfiCbtW25DldwvJDXXXv5oWw+Tg4s18BO/lYZLveGUEaZWu9ZJ5VIJ8GliUi2LohxhDxBkh4Oxg=="; 122 122 }; 123 123 }; 124 124 "@apidevtools/json-schema-ref-parser-9.0.6" = { ··· 128 128 src = fetchurl { 129 129 url = "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.6.tgz"; 130 130 sha512 = "M3YgsLjI0lZxvrpeGVk9Ap032W6TPQkH6pRAZz81Ac3WUNF79VQooAFnp8umjvVzUmD93NkogxEwbSce7qMsUg=="; 131 - }; 132 - }; 133 - "@apidevtools/json-schema-ref-parser-9.0.9" = { 134 - name = "_at_apidevtools_slash_json-schema-ref-parser"; 135 - packageName = "@apidevtools/json-schema-ref-parser"; 136 - version = "9.0.9"; 137 - src = fetchurl { 138 - url = "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz"; 139 - sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w=="; 140 131 }; 141 132 }; 142 133 "@apidevtools/openapi-schemas-2.1.0" = { ··· 418 409 sha512 = "9Sp4vXjoG99qI6sFe09MfgIzsKwiOR0atqxmAcJJLn6fUNXhJEoW04n3w/YcRlk7P4gC9cOMsEyvb8xu+fDEOQ=="; 419 410 }; 420 411 }; 412 + "@aws-sdk/client-cloudformation-3.414.0" = { 413 + name = "_at_aws-sdk_slash_client-cloudformation"; 414 + packageName = "@aws-sdk/client-cloudformation"; 415 + version = "3.414.0"; 416 + src = fetchurl { 417 + url = "https://registry.npmjs.org/@aws-sdk/client-cloudformation/-/client-cloudformation-3.414.0.tgz"; 418 + sha512 = "ONyE0pjC2irMGqI80WcX7I9OgIYjyLQQnR7Z0s1kZ2K/fX/zR9cbeDoSKtdGUS1Svty+k29deMPiIM4u/ayzog=="; 419 + }; 420 + }; 421 421 "@aws-sdk/client-s3-3.296.0" = { 422 422 name = "_at_aws-sdk_slash_client-s3"; 423 423 packageName = "@aws-sdk/client-s3"; ··· 427 427 sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw=="; 428 428 }; 429 429 }; 430 - "@aws-sdk/client-s3-3.414.0" = { 430 + "@aws-sdk/client-s3-3.417.0" = { 431 431 name = "_at_aws-sdk_slash_client-s3"; 432 432 packageName = "@aws-sdk/client-s3"; 433 - version = "3.414.0"; 433 + version = "3.417.0"; 434 434 src = fetchurl { 435 - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.414.0.tgz"; 436 - sha512 = "uEag2GPuuxWmnzOxUhAy0EYo3LW3u/UyCw1IxU3zkaTRQnD6TZ07kjv3Q6Zytqt82yKzJPZInzNNRdtGJdyxbw=="; 435 + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.417.0.tgz"; 436 + sha512 = "xf8QAzncgiHuvB6942WqzFHVjf2Lg6vmx/PsbvnuZ318cryOHK0ijS6yC7FTSmaTxJkCJe0Q3oh3pRYhpP6hyA=="; 437 437 }; 438 438 }; 439 439 "@aws-sdk/client-sso-3.296.0" = { ··· 706 706 sha512 = "SCIt10cr5dud7hvwveU4wkLjvkGssJ3GrcbHCds2NwI+JHmpcaaNYLAqi305JAuT29T36U5ssTFDSmrrEOcfag=="; 707 707 }; 708 708 }; 709 - "@aws-sdk/lib-storage-3.414.0" = { 709 + "@aws-sdk/lib-storage-3.417.0" = { 710 710 name = "_at_aws-sdk_slash_lib-storage"; 711 711 packageName = "@aws-sdk/lib-storage"; 712 - version = "3.414.0"; 712 + version = "3.417.0"; 713 713 src = fetchurl { 714 - url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.414.0.tgz"; 715 - sha512 = "R2ZdLVWa+EhMYrta61c0fNgnRpsIWr4zj1rCnC0ZlTwP5J3jiAaRHPMVgd9Jgo1u91y8nHVYaLdIJ6EQDN0scg=="; 714 + url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.417.0.tgz"; 715 + sha512 = "L981uo/QCXTQW34zfvwN4iB0Xh6tFFq/lVaZfoTa2WvXT22+NxccbblyAdYckN3q+KasfcAQCP618t8Fk2BMwg=="; 716 716 }; 717 717 }; 718 718 "@aws-sdk/md5-js-3.296.0" = { ··· 1048 1048 sha512 = "h90e6yyOhvoc+1F5vFk3C5mxwB8RSDEMKTO/fxexyur94seczZ1yxyYkTMZv30oc9RUiToABlHNrh/wxL7TZPQ=="; 1049 1049 }; 1050 1050 }; 1051 - "@aws-sdk/s3-presigned-post-3.414.0" = { 1051 + "@aws-sdk/s3-presigned-post-3.417.0" = { 1052 1052 name = "_at_aws-sdk_slash_s3-presigned-post"; 1053 1053 packageName = "@aws-sdk/s3-presigned-post"; 1054 - version = "3.414.0"; 1054 + version = "3.417.0"; 1055 1055 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.414.0.tgz"; 1057 - sha512 = "JyF27PwQ0PHsB1Mu2/rc+AOCmrSZxJnoaYf0hC/Y0pHdQz2+ANHeYpS8R7LqcJ3yy6rgG18IX1g8LaRlQJVqhQ=="; 1056 + url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.417.0.tgz"; 1057 + sha512 = "YSJkHK9c1WdRuuYVxgPBD+VAgGG5R9P8BU1LlD+UbezeNtRgs5D8YYoN2WxfVwSgdXh14T4Jmrm+UuorZIrasg=="; 1058 1058 }; 1059 1059 }; 1060 1060 "@aws-sdk/s3-request-presigner-3.296.0" = { ··· 1066 1066 sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw=="; 1067 1067 }; 1068 1068 }; 1069 - "@aws-sdk/s3-request-presigner-3.414.0" = { 1069 + "@aws-sdk/s3-request-presigner-3.417.0" = { 1070 1070 name = "_at_aws-sdk_slash_s3-request-presigner"; 1071 1071 packageName = "@aws-sdk/s3-request-presigner"; 1072 - version = "3.414.0"; 1072 + version = "3.417.0"; 1073 1073 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.414.0.tgz"; 1075 - sha512 = "+nw4reziYOF6BR7ay6iw3cWsXdN48+QnzTnLtb0Sm03vleVcGNroHXr5k826PgjT+lpgsR8TsuhAScB90foflA=="; 1074 + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.417.0.tgz"; 1075 + sha512 = "MQY3IWKQ0ynGYyXdIwaXd7q01jMinqwgTeruajUFAVfLAFh2u5K7rrE69vRW6pI+ij38haXdLuSvuRypHLAXqg=="; 1076 1076 }; 1077 1077 }; 1078 1078 "@aws-sdk/service-error-classification-3.296.0" = { ··· 1102 1102 sha512 = "NQyJ/FClty4VmF1WoV4rOkbN0Unn0zevzy8iJrYhqxE3Sc7lySM4Btnsd4Iqelm2dR6l+jNRApGgD8NvoGjGig=="; 1103 1103 }; 1104 1104 }; 1105 - "@aws-sdk/signature-v4-crt-3.413.0" = { 1105 + "@aws-sdk/signature-v4-crt-3.415.0" = { 1106 1106 name = "_at_aws-sdk_slash_signature-v4-crt"; 1107 1107 packageName = "@aws-sdk/signature-v4-crt"; 1108 - version = "3.413.0"; 1108 + version = "3.415.0"; 1109 1109 src = fetchurl { 1110 - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.413.0.tgz"; 1111 - sha512 = "yeIcRy7G0JUZI2a7WJGbO2GHYNb1xsSAjddUOvqnNXwOjYGDLVUY9rEnU436mRKT3HbCYbtZ0Rgb7GRcRVzf8w=="; 1110 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.415.0.tgz"; 1111 + sha512 = "6l3ZXh3G5AmqvZOqL4a37XyGGaDrLVeXn3Yf8PENLLpU/8KpaNypPoeYgMcKVYNmgBxccgSw46QR91z11JdHbw=="; 1112 1112 }; 1113 1113 }; 1114 1114 "@aws-sdk/signature-v4-multi-region-3.296.0" = { ··· 1669 1669 sha512 = "XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w=="; 1670 1670 }; 1671 1671 }; 1672 - "@babel/compat-data-7.22.9" = { 1672 + "@babel/compat-data-7.22.20" = { 1673 1673 name = "_at_babel_slash_compat-data"; 1674 1674 packageName = "@babel/compat-data"; 1675 - version = "7.22.9"; 1675 + version = "7.22.20"; 1676 1676 src = fetchurl { 1677 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz"; 1678 - sha512 = "5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="; 1677 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz"; 1678 + sha512 = "BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw=="; 1679 1679 }; 1680 1680 }; 1681 - "@babel/core-7.22.19" = { 1681 + "@babel/core-7.22.20" = { 1682 1682 name = "_at_babel_slash_core"; 1683 1683 packageName = "@babel/core"; 1684 - version = "7.22.19"; 1684 + version = "7.22.20"; 1685 1685 src = fetchurl { 1686 - url = "https://registry.npmjs.org/@babel/core/-/core-7.22.19.tgz"; 1687 - sha512 = "Q8Yj5X4LHVYTbLCKVz0//2D2aDmHF4xzCdEttYvKOnWvErGsa6geHXD6w46x64n5tP69VfeH+IfSrdyH3MLhwA=="; 1686 + url = "https://registry.npmjs.org/@babel/core/-/core-7.22.20.tgz"; 1687 + sha512 = "Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA=="; 1688 1688 }; 1689 1689 }; 1690 1690 "@babel/generator-7.18.2" = { ··· 1759 1759 sha512 = "k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw=="; 1760 1760 }; 1761 1761 }; 1762 - "@babel/helper-environment-visitor-7.22.5" = { 1762 + "@babel/helper-environment-visitor-7.22.20" = { 1763 1763 name = "_at_babel_slash_helper-environment-visitor"; 1764 1764 packageName = "@babel/helper-environment-visitor"; 1765 - version = "7.22.5"; 1765 + version = "7.22.20"; 1766 1766 src = fetchurl { 1767 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz"; 1768 - sha512 = "XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="; 1767 + url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz"; 1768 + sha512 = "zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="; 1769 1769 }; 1770 1770 }; 1771 1771 "@babel/helper-function-name-7.22.5" = { ··· 1804 1804 sha512 = "0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w=="; 1805 1805 }; 1806 1806 }; 1807 - "@babel/helper-module-transforms-7.22.19" = { 1807 + "@babel/helper-module-transforms-7.22.20" = { 1808 1808 name = "_at_babel_slash_helper-module-transforms"; 1809 1809 packageName = "@babel/helper-module-transforms"; 1810 - version = "7.22.19"; 1810 + version = "7.22.20"; 1811 1811 src = fetchurl { 1812 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.19.tgz"; 1813 - sha512 = "m6h1cJvn+OJ+R3jOHp30faq5xKJ7VbjwDj5RGgHuRlU9hrMeKsGC+JpihkR5w1g7IfseCPPtZ0r7/hB4UKaYlA=="; 1812 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.20.tgz"; 1813 + sha512 = "dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A=="; 1814 1814 }; 1815 1815 }; 1816 1816 "@babel/helper-optimise-call-expression-7.22.5" = { ··· 1831 1831 sha512 = "uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="; 1832 1832 }; 1833 1833 }; 1834 - "@babel/helper-remap-async-to-generator-7.22.17" = { 1834 + "@babel/helper-remap-async-to-generator-7.22.20" = { 1835 1835 name = "_at_babel_slash_helper-remap-async-to-generator"; 1836 1836 packageName = "@babel/helper-remap-async-to-generator"; 1837 - version = "7.22.17"; 1837 + version = "7.22.20"; 1838 1838 src = fetchurl { 1839 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.17.tgz"; 1840 - sha512 = "bxH77R5gjH3Nkde6/LuncQoLaP16THYPscurp1S8z7S9ZgezCyV3G8Hc+TZiCmY8pz4fp8CvKSgtJMW0FkLAxA=="; 1839 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz"; 1840 + sha512 = "pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw=="; 1841 1841 }; 1842 1842 }; 1843 - "@babel/helper-replace-supers-7.22.9" = { 1843 + "@babel/helper-replace-supers-7.22.20" = { 1844 1844 name = "_at_babel_slash_helper-replace-supers"; 1845 1845 packageName = "@babel/helper-replace-supers"; 1846 - version = "7.22.9"; 1846 + version = "7.22.20"; 1847 1847 src = fetchurl { 1848 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz"; 1849 - sha512 = "LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="; 1848 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz"; 1849 + sha512 = "qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw=="; 1850 1850 }; 1851 1851 }; 1852 1852 "@babel/helper-simple-access-7.22.5" = { ··· 1885 1885 sha512 = "mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="; 1886 1886 }; 1887 1887 }; 1888 - "@babel/helper-validator-identifier-7.22.19" = { 1888 + "@babel/helper-validator-identifier-7.22.20" = { 1889 1889 name = "_at_babel_slash_helper-validator-identifier"; 1890 1890 packageName = "@babel/helper-validator-identifier"; 1891 - version = "7.22.19"; 1891 + version = "7.22.20"; 1892 1892 src = fetchurl { 1893 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.19.tgz"; 1894 - sha512 = "Tinq7ybnEPFFXhlYOYFiSjespWQk0dq2dRNAiMdRTOYQzEGqnnNyrTxPYHP5r6wGjlF1rFgABdDV0g8EwD6Qbg=="; 1893 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz"; 1894 + sha512 = "Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="; 1895 1895 }; 1896 1896 }; 1897 1897 "@babel/helper-validator-option-7.22.15" = { ··· 1903 1903 sha512 = "bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA=="; 1904 1904 }; 1905 1905 }; 1906 - "@babel/helper-wrap-function-7.22.17" = { 1906 + "@babel/helper-wrap-function-7.22.20" = { 1907 1907 name = "_at_babel_slash_helper-wrap-function"; 1908 1908 packageName = "@babel/helper-wrap-function"; 1909 - version = "7.22.17"; 1909 + version = "7.22.20"; 1910 1910 src = fetchurl { 1911 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.17.tgz"; 1912 - sha512 = "nAhoheCMlrqU41tAojw9GpVEKDlTS8r3lzFmF0lP52LwblCPbuFSO7nGIZoIcoU5NIm1ABrna0cJExE4Ay6l2Q=="; 1911 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz"; 1912 + sha512 = "pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw=="; 1913 1913 }; 1914 1914 }; 1915 1915 "@babel/helpers-7.22.15" = { ··· 1921 1921 sha512 = "7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw=="; 1922 1922 }; 1923 1923 }; 1924 - "@babel/highlight-7.22.13" = { 1924 + "@babel/highlight-7.22.20" = { 1925 1925 name = "_at_babel_slash_highlight"; 1926 1926 packageName = "@babel/highlight"; 1927 - version = "7.22.13"; 1927 + version = "7.22.20"; 1928 1928 src = fetchurl { 1929 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz"; 1930 - sha512 = "C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ=="; 1929 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz"; 1930 + sha512 = "dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg=="; 1931 1931 }; 1932 1932 }; 1933 1933 "@babel/node-7.22.19" = { ··· 2776 2776 sha512 = "X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g=="; 2777 2777 }; 2778 2778 }; 2779 - "@babel/preset-env-7.22.15" = { 2779 + "@babel/preset-env-7.22.20" = { 2780 2780 name = "_at_babel_slash_preset-env"; 2781 2781 packageName = "@babel/preset-env"; 2782 - version = "7.22.15"; 2782 + version = "7.22.20"; 2783 2783 src = fetchurl { 2784 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.15.tgz"; 2785 - sha512 = "tZFHr54GBkHk6hQuVA8w4Fmq+MSPsfvMG0vPnOYyTnJpyfMqybL8/MbNCPRT9zc2KBO2pe4tq15g6Uno4Jpoag=="; 2784 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.20.tgz"; 2785 + sha512 = "11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg=="; 2786 2786 }; 2787 2787 }; 2788 2788 "@babel/preset-flow-7.22.15" = { ··· 2866 2866 sha512 = "QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w=="; 2867 2867 }; 2868 2868 }; 2869 - "@babel/traverse-7.22.19" = { 2869 + "@babel/traverse-7.22.20" = { 2870 2870 name = "_at_babel_slash_traverse"; 2871 2871 packageName = "@babel/traverse"; 2872 - version = "7.22.19"; 2872 + version = "7.22.20"; 2873 2873 src = fetchurl { 2874 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.19.tgz"; 2875 - sha512 = "ZCcpVPK64krfdScRbpxF6xA5fz7IOsfMwx1tcACvCzt6JY+0aHkBk7eIU8FRDSZRU5Zei6Z4JfgAxN1bqXGECg=="; 2874 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.20.tgz"; 2875 + sha512 = "eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw=="; 2876 2876 }; 2877 2877 }; 2878 2878 "@babel/traverse-7.22.5" = { ··· 3901 3901 sha512 = "RoBIP5MRdByyPaXcznZMfOY1JdCMYPPLua5E9gkq0TJO7bX5mC9hyAKfYBSWVQunZydd82HZixjb5MPkDFU1uw=="; 3902 3902 }; 3903 3903 }; 3904 - "@cspell/dict-php-4.0.2" = { 3904 + "@cspell/dict-php-4.0.3" = { 3905 3905 name = "_at_cspell_slash_dict-php"; 3906 3906 packageName = "@cspell/dict-php"; 3907 - version = "4.0.2"; 3907 + version = "4.0.3"; 3908 3908 src = fetchurl { 3909 - url = "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.2.tgz"; 3910 - sha512 = "7yglcmMoFHDPQXHW+9QAl8YjAToMm1qOi+4x/yGY1FSIEjZbCpjeDgyKMGg/NgpooQQceEN38AR59Pn23EDriA=="; 3909 + url = "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.3.tgz"; 3910 + sha512 = "PxtSmWJCDEB4M8R9ER9ijxBum/tvUqYT26QeuV58q2IFs5IrPZ6hocQKvnFGXItjCWH4oYXyAEAAzINlBC4Opg=="; 3911 3911 }; 3912 3912 }; 3913 3913 "@cspell/dict-powershell-1.0.19" = { ··· 4027 4027 sha512 = "pfF3Ys2gRffu5ElqkH7FQMDMi/iZMyOzpGMb3FSH0PJ2AnRQ5rRNWght1h2L36YxvXl0mWVaFrrfwiOyRIc8ZQ=="; 4028 4028 }; 4029 4029 }; 4030 - "@cspell/dict-software-terms-3.2.3" = { 4030 + "@cspell/dict-software-terms-3.2.4" = { 4031 4031 name = "_at_cspell_slash_dict-software-terms"; 4032 4032 packageName = "@cspell/dict-software-terms"; 4033 - version = "3.2.3"; 4033 + version = "3.2.4"; 4034 4034 src = fetchurl { 4035 - url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.2.3.tgz"; 4036 - sha512 = "L1Fjkt+Q5MnjEOGPXQxdT4+8ieDBcaHSjh1gHzxdqFXTOnnfvsLUa5ykuv/fG06b/G/yget1066ftKosMaPcXA=="; 4035 + url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.2.4.tgz"; 4036 + sha512 = "ECb02otzD2LDm+h+EM5S2SNSozRoSU/oyuT3IfYv9RVBsuM3v2XjSyZD5rfiyhZkpAhJM9tXV8pdF6pfvrJktg=="; 4037 4037 }; 4038 4038 }; 4039 4039 "@cspell/dict-sql-2.1.1" = { ··· 4342 4342 sha512 = "MPAZQ4v6piCED7NT1LTVQf61o6Eg/laNoKbhbrFBSH1i20OUwbtV2MLj6Op292ynI9+1qdHKmFgctr6qPTCAQw=="; 4343 4343 }; 4344 4344 }; 4345 - "@electron/asar-3.2.4" = { 4345 + "@electron/asar-3.2.5" = { 4346 4346 name = "_at_electron_slash_asar"; 4347 4347 packageName = "@electron/asar"; 4348 - version = "3.2.4"; 4348 + version = "3.2.5"; 4349 4349 src = fetchurl { 4350 - url = "https://registry.npmjs.org/@electron/asar/-/asar-3.2.4.tgz"; 4351 - sha512 = "lykfY3TJRRWFeTxccEKdf1I6BLl2Plw81H0bbp4Fc5iEc67foDCa5pjJQULVgo0wF+Dli75f3xVcdb/67FFZ/g=="; 4350 + url = "https://registry.npmjs.org/@electron/asar/-/asar-3.2.5.tgz"; 4351 + sha512 = "Ypahc2ElTj9YOrFvUHuoXv5Z/V1nPA5enlhmQapc578m/HZBHKTbqhoL5JZQjje2+/6Ti5AHh7Gj1/haeJa63Q=="; 4352 4352 }; 4353 4353 }; 4354 4354 "@electron/get-2.0.3" = { ··· 4936 4936 sha512 = "4e7hzPj50mQIlsrzOH6XZ36O094mPfPTIDIH4yv49bWNMc7GFLTofB/lcT+QyxiLaJuC0Wlk9yOLB8DIqmtwug=="; 4937 4937 }; 4938 4938 }; 4939 - "@expo/config-8.3.0" = { 4939 + "@expo/config-8.3.1" = { 4940 4940 name = "_at_expo_slash_config"; 4941 4941 packageName = "@expo/config"; 4942 - version = "8.3.0"; 4942 + version = "8.3.1"; 4943 4943 src = fetchurl { 4944 - url = "https://registry.npmjs.org/@expo/config/-/config-8.3.0.tgz"; 4945 - sha512 = "BjgYDrle/UCS+FtXc9yUzQ0HOLHt5c4HvbINyGicxq6GyQZ2uu9eCRmXw5k4Qdl0DlmPKj6h7XbvDg5CEJTHtA=="; 4944 + url = "https://registry.npmjs.org/@expo/config/-/config-8.3.1.tgz"; 4945 + sha512 = "5fNGAw5h/MDOc8Ulv9nonafPtOT042B7dF6vrVxSP3CY5qiVu0tCsmbL412wEcrAZ8MY7UMv9e6IzpGTgleYgg=="; 4946 4946 }; 4947 4947 }; 4948 4948 "@expo/config-plugins-4.1.5" = { ··· 4972 4972 sha512 = "TItGwmKH1GDjA5GlMkXo1A8pqeqppSK40aSVRVQaGZraUj+nuvtpWxNgEWZxWFumiatP2ocWwyWVjfmH+rJY6g=="; 4973 4973 }; 4974 4974 }; 4975 - "@expo/config-plugins-7.4.0" = { 4975 + "@expo/config-plugins-7.5.0" = { 4976 4976 name = "_at_expo_slash_config-plugins"; 4977 4977 packageName = "@expo/config-plugins"; 4978 - version = "7.4.0"; 4978 + version = "7.5.0"; 4979 4979 src = fetchurl { 4980 - url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-7.4.0.tgz"; 4981 - sha512 = "/BwYRl6QQ9ZKYpVaIqHE5sSPqNZI9CUtfLfYHhpnShQUA1KHRMi6y9zjb3IXJisk0/fcrtRm2yP3A7F0l304sQ=="; 4980 + url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-7.5.0.tgz"; 4981 + sha512 = "qOKjmgbddLh1vj9ytUT6AduhEans2cHgS42nopVgh5Wz8X+QUvPcCr1Yc8MvLM3OlbswBMCJceeosZa463i0uA=="; 4982 4982 }; 4983 4983 }; 4984 4984 "@expo/config-types-45.0.0" = { ··· 5008 5008 sha512 = "8eyREVi+K2acnMBe/rTIu1dOfyR2+AMnTLHlut+YpMV9OZPdeKV0Bs9BxAewGqBA2slslbQ9N39IS2CuTKpXkA=="; 5009 5009 }; 5010 5010 }; 5011 - "@expo/config-types-50.0.0-alpha.1" = { 5011 + "@expo/config-types-50.0.0-alpha.2" = { 5012 5012 name = "_at_expo_slash_config-types"; 5013 5013 packageName = "@expo/config-types"; 5014 - version = "50.0.0-alpha.1"; 5014 + version = "50.0.0-alpha.2"; 5015 5015 src = fetchurl { 5016 - url = "https://registry.npmjs.org/@expo/config-types/-/config-types-50.0.0-alpha.1.tgz"; 5017 - sha512 = "bfQzw3bzdR3x6Nup/FN/2TAWwpJKTgx0j/uZxyoOBiBVNof2P0q193tsgDd3GYxbQJnoVMNhSI6Mjxu5hzuXRw=="; 5016 + url = "https://registry.npmjs.org/@expo/config-types/-/config-types-50.0.0-alpha.2.tgz"; 5017 + sha512 = "eAUMUg4wnw0bYovs+isibq4l9ssMacS/r0NolDxDdIX/N+ZjIEZ5DEl5GO8dnD0dKbN/DPWwUln7SG/nSYHfmw=="; 5018 5018 }; 5019 5019 }; 5020 5020 "@expo/dev-server-0.2.0" = { ··· 5060 5060 src = fetchurl { 5061 5061 url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-5.2.0.tgz"; 5062 5062 sha512 = "Uk+4KdoMO1qMs1wSzp62Z/0Ddk4eRDKiRsGyZWu8oLU+RRSdYhxJ9J05c0l3EgZSbR4IR4RRWI9I+h8OymlnWw=="; 5063 + }; 5064 + }; 5065 + "@expo/fingerprint-0.2.0" = { 5066 + name = "_at_expo_slash_fingerprint"; 5067 + packageName = "@expo/fingerprint"; 5068 + version = "0.2.0"; 5069 + src = fetchurl { 5070 + url = "https://registry.npmjs.org/@expo/fingerprint/-/fingerprint-0.2.0.tgz"; 5071 + sha512 = "k6MhJTrX4CYEwsyGemiLT8rnBwjRBYe0eKYAM3kqw0WbSHzkOJm739sgdswGLmA53iiX6FbB1TsiLnqt+h2U2w=="; 5063 5072 }; 5064 5073 }; 5065 5074 "@expo/image-utils-0.3.21" = { ··· 5386 5395 sha512 = "tzTXX1TFEjWCseEsNdIlXXkD+48uJoN+zpqIojUX4pSoMscsbhO/UuVEB5SzJucexqDWOo2ma0ECwdD7hZdrzg=="; 5387 5396 }; 5388 5397 }; 5389 - "@forge/api-2.19.0" = { 5390 - name = "_at_forge_slash_api"; 5391 - packageName = "@forge/api"; 5392 - version = "2.19.0"; 5393 - src = fetchurl { 5394 - url = "https://registry.npmjs.org/@forge/api/-/api-2.19.0.tgz"; 5395 - sha512 = "kWyI1J6PdftRPnjPFKIM8g6wZAsJDzWtSFdfDfk07gv3pMOpwkajs+Qh0DOVvSP9FPexV+0lTIW7Rl6mrKImxw=="; 5396 - }; 5397 - }; 5398 - "@forge/auth-0.0.5" = { 5399 - name = "_at_forge_slash_auth"; 5400 - packageName = "@forge/auth"; 5401 - version = "0.0.5"; 5402 - src = fetchurl { 5403 - url = "https://registry.npmjs.org/@forge/auth/-/auth-0.0.5.tgz"; 5404 - sha512 = "JIJMRRnNWQjvLlnf2Goc+/CEzx+XTpzTarOR7wzRMOEoE715T5gdvb4hWeyQVyRJkRJUQQAXxDPT0WH7rINOcg=="; 5405 - }; 5406 - }; 5407 - "@forge/babel-plugin-transform-ui-1.1.7" = { 5408 - name = "_at_forge_slash_babel-plugin-transform-ui"; 5409 - packageName = "@forge/babel-plugin-transform-ui"; 5410 - version = "1.1.7"; 5411 - src = fetchurl { 5412 - url = "https://registry.npmjs.org/@forge/babel-plugin-transform-ui/-/babel-plugin-transform-ui-1.1.7.tgz"; 5413 - sha512 = "heofqwqu/zdWdvxlV3y11cuyDob17LmwaV2lVyfgbpnC/vJE11x6mFpLPmqIzHGi8ogja1c5Kn3pcg3HCRaCFQ=="; 5414 - }; 5415 - }; 5416 - "@forge/bundler-4.12.0" = { 5417 - name = "_at_forge_slash_bundler"; 5418 - packageName = "@forge/bundler"; 5419 - version = "4.12.0"; 5420 - src = fetchurl { 5421 - url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.12.0.tgz"; 5422 - sha512 = "zh29buHsdtmDDUz8J91IQY5mOGDAMPRw7fz4Asxsx3bNN5X3cV0b/OGVgypJnsg7HrCerT7NAoqTs2rUMX6xuw=="; 5423 - }; 5424 - }; 5425 - "@forge/cli-shared-3.18.0" = { 5426 - name = "_at_forge_slash_cli-shared"; 5427 - packageName = "@forge/cli-shared"; 5428 - version = "3.18.0"; 5429 - src = fetchurl { 5430 - url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.18.0.tgz"; 5431 - sha512 = "1EoxW0JGX8Gk0bqv3xeTogS5V6WpV7ObMNY0WSmXI+HYi/4tkHr6Tey3N4pN/yaKF9LpwEqTi7fiKUi1SBGQGw=="; 5432 - }; 5433 - }; 5434 - "@forge/csp-2.2.1" = { 5435 - name = "_at_forge_slash_csp"; 5436 - packageName = "@forge/csp"; 5437 - version = "2.2.1"; 5438 - src = fetchurl { 5439 - url = "https://registry.npmjs.org/@forge/csp/-/csp-2.2.1.tgz"; 5440 - sha512 = "LWE6VHPkIy6oiPYdjuKfnNCxZKqXE06jT0W6+5nO6lsfqhFMn3pmB43ZNI3PS3/TJ8Zx+ZSxUOv713V5Ga2p6A=="; 5441 - }; 5442 - }; 5443 - "@forge/egress-1.2.4" = { 5444 - name = "_at_forge_slash_egress"; 5445 - packageName = "@forge/egress"; 5446 - version = "1.2.4"; 5447 - src = fetchurl { 5448 - url = "https://registry.npmjs.org/@forge/egress/-/egress-1.2.4.tgz"; 5449 - sha512 = "FIaeMj8mvMuocppoPpxEiPm4WwxCKF7V4c7+a04MoQ+nnoVa4c6Bcj8S6dRcGS4hT8i5YE7UKpo42bENaqS6SQ=="; 5450 - }; 5451 - }; 5452 - "@forge/lint-3.6.6" = { 5453 - name = "_at_forge_slash_lint"; 5454 - packageName = "@forge/lint"; 5455 - version = "3.6.6"; 5456 - src = fetchurl { 5457 - url = "https://registry.npmjs.org/@forge/lint/-/lint-3.6.6.tgz"; 5458 - sha512 = "LAJHs4aabzyzUGBIElJUkahO7jdvN9kpgczkMQeCqjs9peD8v9FvljTPtTajtAc5iV7+LB/V4M/7WY+dzFczwA=="; 5459 - }; 5460 - }; 5461 - "@forge/manifest-4.20.0" = { 5462 - name = "_at_forge_slash_manifest"; 5463 - packageName = "@forge/manifest"; 5464 - version = "4.20.0"; 5465 - src = fetchurl { 5466 - url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.20.0.tgz"; 5467 - sha512 = "2WQjfKz+TW/f5CtXZuXLNCylXPizLIBGcYFNBQghzaOCW905rkrXK8jGmUuH26fCivtgse89HGw7uilpLIBPxA=="; 5468 - }; 5469 - }; 5470 - "@forge/node-runtime-0.1.2" = { 5471 - name = "_at_forge_slash_node-runtime"; 5472 - packageName = "@forge/node-runtime"; 5473 - version = "0.1.2"; 5474 - src = fetchurl { 5475 - url = "https://registry.npmjs.org/@forge/node-runtime/-/node-runtime-0.1.2.tgz"; 5476 - sha512 = "kUr8tOfNvRtUDDgzxwqv8pT1OFENBz0GquC9JmW5NCnwHecBnasjl9b1HC4H/Fw14JpbBr/HL9QBPshGRfoPiA=="; 5477 - }; 5478 - }; 5479 - "@forge/runtime-5.0.1" = { 5480 - name = "_at_forge_slash_runtime"; 5481 - packageName = "@forge/runtime"; 5482 - version = "5.0.1"; 5483 - src = fetchurl { 5484 - url = "https://registry.npmjs.org/@forge/runtime/-/runtime-5.0.1.tgz"; 5485 - sha512 = "on2s7si1Ma7m3+oRuqfUACgUFBIuxtmnmyGfB0TCzqkrIOi97BW1WMj3uyRJk8vdLNwkGt9biP/QWWsEefAs1A=="; 5486 - }; 5487 - }; 5488 - "@forge/storage-1.5.8" = { 5489 - name = "_at_forge_slash_storage"; 5490 - packageName = "@forge/storage"; 5491 - version = "1.5.8"; 5492 - src = fetchurl { 5493 - url = "https://registry.npmjs.org/@forge/storage/-/storage-1.5.8.tgz"; 5494 - sha512 = "yrfhAkO+GEV/Sij8tAZkieRB/Hs+gi3adMzPXoDbOyC5IWAdmFp3nIP6g+mzVmf+vWbhBvxclUYfVEzSoHOd0Q=="; 5495 - }; 5496 - }; 5497 - "@forge/tunnel-3.7.0" = { 5498 - name = "_at_forge_slash_tunnel"; 5499 - packageName = "@forge/tunnel"; 5500 - version = "3.7.0"; 5501 - src = fetchurl { 5502 - url = "https://registry.npmjs.org/@forge/tunnel/-/tunnel-3.7.0.tgz"; 5503 - sha512 = "StC3djiuhQln/1Vc1mDcUoll7jyZBGiX8JE1Afam6afwg8lvg4jOQYXpVWFWNYHdVxK/j8gV8LnOpZP/ACYFJg=="; 5504 - }; 5505 - }; 5506 - "@forge/util-1.3.1" = { 5507 - name = "_at_forge_slash_util"; 5508 - packageName = "@forge/util"; 5509 - version = "1.3.1"; 5510 - src = fetchurl { 5511 - url = "https://registry.npmjs.org/@forge/util/-/util-1.3.1.tgz"; 5512 - sha512 = "AgyTKr0wWOZlCTZtShwOIoW8JApA78H7n+PhXbXC0NQwJE2fKust2uOOsty0fNDqw2ooabxbY1zZLq7pSQt9Uw=="; 5513 - }; 5514 - }; 5515 5398 "@gar/promisify-1.1.3" = { 5516 5399 name = "_at_gar_slash_promisify"; 5517 5400 packageName = "@gar/promisify"; ··· 6763 6646 sha512 = "fjgiKjg9VXwQ4ZKKsrXICEKRiC3yo6+FprR0mc55uz0s5e9xupoSGLobUTTBdE7ncNB3ibqml8dfaAn/+ESajQ=="; 6764 6647 }; 6765 6648 }; 6766 - "@lezer/common-0.15.12" = { 6649 + "@lezer/common-1.1.0" = { 6767 6650 name = "_at_lezer_slash_common"; 6768 6651 packageName = "@lezer/common"; 6769 - version = "0.15.12"; 6652 + version = "1.1.0"; 6770 6653 src = fetchurl { 6771 - url = "https://registry.npmjs.org/@lezer/common/-/common-0.15.12.tgz"; 6772 - sha512 = "edfwCxNLnzq5pBA/yaIhwJ3U3Kz8VAUOTRg0hhxaizaI1N+qxV7EXDv/kLCkLeq2RzSFvxexlaj5Mzfn2kY0Ig=="; 6654 + url = "https://registry.npmjs.org/@lezer/common/-/common-1.1.0.tgz"; 6655 + sha512 = "XPIN3cYDXsoJI/oDWoR2tD++juVrhgIago9xyKhZ7IhGlzdDM9QgC8D8saKNCz5pindGcznFr2HBSsEQSWnSjw=="; 6773 6656 }; 6774 6657 }; 6775 - "@lezer/lr-0.15.8" = { 6658 + "@lezer/lr-1.3.11" = { 6776 6659 name = "_at_lezer_slash_lr"; 6777 6660 packageName = "@lezer/lr"; 6778 - version = "0.15.8"; 6661 + version = "1.3.11"; 6779 6662 src = fetchurl { 6780 - url = "https://registry.npmjs.org/@lezer/lr/-/lr-0.15.8.tgz"; 6781 - sha512 = "bM6oE6VQZ6hIFxDNKk8bKPa14hqFrV07J/vHGOeiAbJReIaQXmkVb6xQu4MR+JBTLa5arGRyAAjJe1qaQt3Uvg=="; 6663 + url = "https://registry.npmjs.org/@lezer/lr/-/lr-1.3.11.tgz"; 6664 + sha512 = "W7IZXXyi6BfVredTDk3jHe1V6zUcdjRcUlvTsrWGOvIOU2eg3sfEDtTDFHo1TRxZhtQGX1EyHHUXoXvJNSxcnA=="; 6782 6665 }; 6783 6666 }; 6784 6667 "@ljharb/through-2.3.9" = { ··· 6943 6826 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 6944 6827 }; 6945 6828 }; 6946 - "@microsoft/rush-lib-5.106.0" = { 6829 + "@microsoft/rush-lib-5.107.1" = { 6947 6830 name = "_at_microsoft_slash_rush-lib"; 6948 6831 packageName = "@microsoft/rush-lib"; 6949 - version = "5.106.0"; 6832 + version = "5.107.1"; 6950 6833 src = fetchurl { 6951 - url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.106.0.tgz"; 6952 - sha512 = "x6lq1LDeoCpwu6tSfjjZNDdtENb+CdJgWT8NeBZNLK5JWjacWxvDD2qIYOw0v+8VwTiZMl7XYDf8MxkXVpCf+g=="; 6834 + url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.107.1.tgz"; 6835 + sha512 = "In6OihPkWgqh51D/0qFHH44rX9nQFXp0gnT5VM2EWkfscDjVfUVj+Q3Kaa/fAUPtFLxZVRiQH57AIBg2q1em9Q=="; 6953 6836 }; 6954 6837 }; 6955 - "@mischnic/json-sourcemap-0.1.0" = { 6838 + "@mischnic/json-sourcemap-0.1.1" = { 6956 6839 name = "_at_mischnic_slash_json-sourcemap"; 6957 6840 packageName = "@mischnic/json-sourcemap"; 6958 - version = "0.1.0"; 6841 + version = "0.1.1"; 6959 6842 src = fetchurl { 6960 - url = "https://registry.npmjs.org/@mischnic/json-sourcemap/-/json-sourcemap-0.1.0.tgz"; 6961 - sha512 = "dQb3QnfNqmQNYA4nFSN/uLaByIic58gOXq4Y4XqLOWmOrw73KmJPt/HLyG0wvn1bnR6mBKs/Uwvkh+Hns1T0XA=="; 6843 + url = "https://registry.npmjs.org/@mischnic/json-sourcemap/-/json-sourcemap-0.1.1.tgz"; 6844 + sha512 = "iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w=="; 6962 6845 }; 6963 6846 }; 6964 6847 "@msgpack/msgpack-2.8.0" = { ··· 7150 7033 sha512 = "3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q=="; 7151 7034 }; 7152 7035 }; 7153 - "@npmcli/config-6.2.1" = { 7036 + "@npmcli/config-6.3.0" = { 7154 7037 name = "_at_npmcli_slash_config"; 7155 7038 packageName = "@npmcli/config"; 7156 - version = "6.2.1"; 7039 + version = "6.3.0"; 7157 7040 src = fetchurl { 7158 - url = "https://registry.npmjs.org/@npmcli/config/-/config-6.2.1.tgz"; 7159 - sha512 = "Cj/OrSbrLvnwWuzquFCDTwFN8QmR+SWH6qLNCBttUreDkKM5D5p36SeSMbcEUiCGdwjUrVy2yd8C0REwwwDPEw=="; 7041 + url = "https://registry.npmjs.org/@npmcli/config/-/config-6.3.0.tgz"; 7042 + sha512 = "gV64pm5cQ7F2oeoSJ5HTfaKxjFsvC4dAbCsQbtbOkEOymM6iZI62yNGCOLjcq/rfYX9+wVn34ThxK7GZpUwWFg=="; 7160 7043 }; 7161 7044 }; 7162 7045 "@npmcli/fs-1.1.1" = { ··· 8912 8795 src = fetchurl { 8913 8796 url = "https://registry.npmjs.org/@pnpm/write-project-manifest/-/write-project-manifest-1.1.7.tgz"; 8914 8797 sha512 = "OLkDZSqkA1mkoPNPvLFXyI6fb0enCuFji6Zfditi/CLAo9kmIhQFmEUDu4krSB8i908EljG8YwL5Xjxzm5wsWA=="; 8915 - }; 8916 - }; 8917 - "@polka/url-1.0.0-next.23" = { 8918 - name = "_at_polka_slash_url"; 8919 - packageName = "@polka/url"; 8920 - version = "1.0.0-next.23"; 8921 - src = fetchurl { 8922 - url = "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.23.tgz"; 8923 - sha512 = "C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg=="; 8924 8798 }; 8925 8799 }; 8926 8800 "@prisma/engines-5.3.1" = { ··· 9265 9139 sha512 = "iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="; 9266 9140 }; 9267 9141 }; 9268 - "@rushstack/heft-config-file-0.13.3" = { 9142 + "@rushstack/heft-config-file-0.14.0" = { 9269 9143 name = "_at_rushstack_slash_heft-config-file"; 9270 9144 packageName = "@rushstack/heft-config-file"; 9271 - version = "0.13.3"; 9145 + version = "0.14.0"; 9272 9146 src = fetchurl { 9273 - url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.13.3.tgz"; 9274 - sha512 = "r9tmesrmnjw6hdXfBGQ0Dc58eLu7kJcgY2JWJmO9s6kpx1b/fhvHpXj1x+pSLp5f+R5ZB3ELezYfrQK0SOCEvg=="; 9147 + url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.14.0.tgz"; 9148 + sha512 = "KpOY7vFUQZ4RhnPOed6Lhnm1vpLqjv8wv06ZC3yUtHB749iHLuxUKWjMco7qCDW3Uy7D1E2meuDpr8xvAj9zfQ=="; 9275 9149 }; 9276 9150 }; 9277 - "@rushstack/node-core-library-3.59.7" = { 9151 + "@rushstack/node-core-library-3.60.0" = { 9278 9152 name = "_at_rushstack_slash_node-core-library"; 9279 9153 packageName = "@rushstack/node-core-library"; 9280 - version = "3.59.7"; 9154 + version = "3.60.0"; 9281 9155 src = fetchurl { 9282 - url = "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.7.tgz"; 9283 - sha512 = "ln1Drq0h+Hwa1JVA65x5mlSgUrBa1uHL+V89FqVWQgXd1vVIMhrtqtWGQrhTnFHxru5ppX+FY39VWELF/FjQCw=="; 9156 + url = "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.60.0.tgz"; 9157 + sha512 = "PcyrqhILvzU+65wMFybQ2VeGNnU5JzhDq2OvUi3j6jPUxyllM7b2hrRUwCuVaYboewYzIbpzXFzgxe2K7ii1nw=="; 9284 9158 }; 9285 9159 }; 9286 - "@rushstack/package-deps-hash-4.0.44" = { 9160 + "@rushstack/package-deps-hash-4.1.1" = { 9287 9161 name = "_at_rushstack_slash_package-deps-hash"; 9288 9162 packageName = "@rushstack/package-deps-hash"; 9289 - version = "4.0.44"; 9163 + version = "4.1.1"; 9290 9164 src = fetchurl { 9291 - url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.0.44.tgz"; 9292 - sha512 = "3TicOuPpDOyl1wWvkaFwYvMgvC2tiqBIZkNbYuSntYCu4i5dh1wUC07Rfnm/K7s3/gNJgZCvOLIxetvUqfv0hg=="; 9165 + url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.1.1.tgz"; 9166 + sha512 = "dLttFy9tbkbmKdzsPzNcHH3Uzj/BnR/VmoP6UBZii0w6/NmThw7cT/YiuUVKXnVBr1+UBywMttOrrPDI4Z3brg=="; 9293 9167 }; 9294 9168 }; 9295 - "@rushstack/package-extractor-0.5.3" = { 9169 + "@rushstack/package-extractor-0.6.2" = { 9296 9170 name = "_at_rushstack_slash_package-extractor"; 9297 9171 packageName = "@rushstack/package-extractor"; 9298 - version = "0.5.3"; 9172 + version = "0.6.2"; 9299 9173 src = fetchurl { 9300 - url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.5.3.tgz"; 9301 - sha512 = "YqEtaspIyd4CpxGDgxpI7p5CvkrYBrg2A8U/RWYvKcTMA+y3fnndHFR3KQNsbbEGa0iGeb2A0w7dScMe7Yo9kw=="; 9174 + url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.6.2.tgz"; 9175 + sha512 = "GOC/0z5vp73OFotlealCKj9nMbhiCqdzJWC57bHgVkEEdtb+rD+fDjHshSNL1lJGnT5WTQcxJJ8k9aPBY3c9eQ=="; 9302 9176 }; 9303 9177 }; 9304 - "@rushstack/rig-package-0.4.1" = { 9178 + "@rushstack/rig-package-0.5.0" = { 9305 9179 name = "_at_rushstack_slash_rig-package"; 9306 9180 packageName = "@rushstack/rig-package"; 9307 - version = "0.4.1"; 9181 + version = "0.5.0"; 9308 9182 src = fetchurl { 9309 - url = "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.4.1.tgz"; 9310 - sha512 = "AGRwpqlXNSp9LhUSz4HKI9xCluqQDt/obsQFdv/NYIekF3pTTPzc+HbQsIsjVjYnJ3DcmxOREVMhvrMEjpiq6g=="; 9183 + url = "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.5.0.tgz"; 9184 + sha512 = "bGnOW4DWHOePDiABKy6qyqYJl9i7fKn4bRucExRVt5QzyPxuVHMl8CMmCabtoNSpXzgG3qymWOrMoa/W2PpJrw=="; 9311 9185 }; 9312 9186 }; 9313 - "@rushstack/rush-amazon-s3-build-cache-plugin-5.106.0" = { 9187 + "@rushstack/rush-amazon-s3-build-cache-plugin-5.107.1" = { 9314 9188 name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin"; 9315 9189 packageName = "@rushstack/rush-amazon-s3-build-cache-plugin"; 9316 - version = "5.106.0"; 9190 + version = "5.107.1"; 9317 9191 src = fetchurl { 9318 - url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.106.0.tgz"; 9319 - sha512 = "WvYsnPfCgNb4g4vzyX+AzxZe40BThLhaFx8VO7zz758auxq3VcKmSO5vjOlc1VI9rB+Ualf5qyNrtsXyVEcAZQ=="; 9192 + url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.107.1.tgz"; 9193 + sha512 = "g88Aeu0rg9a6Gx1+9AqYlr09vg1pN149WgcjhsL4AruAUMbqixUIhm0nAtXJeEzkjJ4c6OZksuqRiYkaxBIjdA=="; 9320 9194 }; 9321 9195 }; 9322 - "@rushstack/rush-azure-storage-build-cache-plugin-5.106.0" = { 9196 + "@rushstack/rush-azure-storage-build-cache-plugin-5.107.1" = { 9323 9197 name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin"; 9324 9198 packageName = "@rushstack/rush-azure-storage-build-cache-plugin"; 9325 - version = "5.106.0"; 9199 + version = "5.107.1"; 9326 9200 src = fetchurl { 9327 - url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.106.0.tgz"; 9328 - sha512 = "KpENq4eUBGm7gcZbH8PbxMC1vnrvMjEPu4HnaFxMbogpSGEWsasSGBFYX2KIQ0/U+eDEMekWdz1eslA8TtsWZg=="; 9201 + url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.107.1.tgz"; 9202 + sha512 = "sdgmYyNASVYVzFfZFxpGOf+6X2MaJ9p3P9MqqiZlXHaWgz0FB7f0PksdXbAYjcxf1jGg/5d8NL0QmQKuvlCuWg=="; 9329 9203 }; 9330 9204 }; 9331 - "@rushstack/rush-http-build-cache-plugin-5.106.0" = { 9205 + "@rushstack/rush-http-build-cache-plugin-5.107.1" = { 9332 9206 name = "_at_rushstack_slash_rush-http-build-cache-plugin"; 9333 9207 packageName = "@rushstack/rush-http-build-cache-plugin"; 9334 - version = "5.106.0"; 9208 + version = "5.107.1"; 9335 9209 src = fetchurl { 9336 - url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.106.0.tgz"; 9337 - sha512 = "TCWNju8V/j7zjanpgNzGc8NXeFiCh+2JXUzz8GvVt/3X1HWvXEB/ETXzpb5sgzkM3EO7+2htd9PqHgjAKIAtkg=="; 9210 + url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.107.1.tgz"; 9211 + sha512 = "4SuLSAQRS05qMWK/JGWy6Td3mYz0LouHbNjge9dtEYmevYrb4AhepBIjIlFUxuGgvW5aD2wUpX48CoOM5cIOhw=="; 9338 9212 }; 9339 9213 }; 9340 - "@rushstack/rush-sdk-5.106.0" = { 9214 + "@rushstack/rush-sdk-5.107.1" = { 9341 9215 name = "_at_rushstack_slash_rush-sdk"; 9342 9216 packageName = "@rushstack/rush-sdk"; 9343 - version = "5.106.0"; 9217 + version = "5.107.1"; 9344 9218 src = fetchurl { 9345 - url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.106.0.tgz"; 9346 - sha512 = "q1fIEyZ6IPY6Y+q94ddZCjA6JsYLDKeZ8WhJ4+Ae+MfscPPN/h7k/ts3ZfSFYbUIUBUPQGhZjWHMRg2nUOr+Ow=="; 9219 + url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.107.1.tgz"; 9220 + sha512 = "TCfpr9D4KLEuIwaE8/lRfG7Hzb1/JtGGnWozfBXuVOaPgDHC1Z11FTXhjto4jTqTMzzzw24VblrpH4X7gt5s2A=="; 9347 9221 }; 9348 9222 }; 9349 - "@rushstack/stream-collator-4.0.263" = { 9223 + "@rushstack/stream-collator-4.1.2" = { 9350 9224 name = "_at_rushstack_slash_stream-collator"; 9351 9225 packageName = "@rushstack/stream-collator"; 9352 - version = "4.0.263"; 9226 + version = "4.1.2"; 9353 9227 src = fetchurl { 9354 - url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.0.263.tgz"; 9355 - sha512 = "rfESRMUBDCaqihnJW/B8D7UmJ/wRnmpZaZY/T1GRTVb0uSasL0LR6O9Zg6hTjqFTXDUN5lIVFRvZZ8dpW3TFbg=="; 9228 + url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.2.tgz"; 9229 + sha512 = "D8SrdwQ275SznSL/foymH/q+dzVCKsRLeLK7c3nalR39y76SWDJe0TqMUpt/12tcgc3077U2kh9l2s9v9s+tzw=="; 9356 9230 }; 9357 9231 }; 9358 - "@rushstack/terminal-0.5.38" = { 9232 + "@rushstack/terminal-0.7.1" = { 9359 9233 name = "_at_rushstack_slash_terminal"; 9360 9234 packageName = "@rushstack/terminal"; 9361 - version = "0.5.38"; 9235 + version = "0.7.1"; 9362 9236 src = fetchurl { 9363 - url = "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.5.38.tgz"; 9364 - sha512 = "cHnVU0k91PQPhFDa2HYqsF4jBgg597ySRKmIqvjf/XXoCsY+AjAP1H8XbzV6mNDRiJODTaCmb0IqHYYjpIoLZw=="; 9237 + url = "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.7.1.tgz"; 9238 + sha512 = "4T/kB8oHhQAPIMxcc8SKNL09JZ6be2k9A3LMn4RWmMAcseU/Te2fDWh9t7c+GBohKx2hoI8fb4VFv2JOS/hLKg=="; 9365 9239 }; 9366 9240 }; 9367 - "@rushstack/ts-command-line-4.15.2" = { 9241 + "@rushstack/ts-command-line-4.16.0" = { 9368 9242 name = "_at_rushstack_slash_ts-command-line"; 9369 9243 packageName = "@rushstack/ts-command-line"; 9370 - version = "4.15.2"; 9244 + version = "4.16.0"; 9371 9245 src = fetchurl { 9372 - url = "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.15.2.tgz"; 9373 - sha512 = "5+C2uoJY8b+odcZD6coEe2XNC4ZjGB4vCMESbqW/8DHRWC/qIHfANdmN9F1wz/lAgxz72i7xRoVtPY2j7e4gpQ=="; 9246 + url = "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.16.0.tgz"; 9247 + sha512 = "WJKhdR9ThK9Iy7t78O3at7I3X4Ssp5RRZay/IQa8NywqkFy/DQbT3iLouodMMdUwLZD9n8n++xLubVd3dkmpkg=="; 9374 9248 }; 9375 9249 }; 9376 9250 "@samverschueren/stream-to-observable-0.3.1" = { ··· 9382 9256 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 9383 9257 }; 9384 9258 }; 9385 - "@schematics/angular-16.2.2" = { 9259 + "@schematics/angular-16.2.3" = { 9386 9260 name = "_at_schematics_slash_angular"; 9387 9261 packageName = "@schematics/angular"; 9388 - version = "16.2.2"; 9262 + version = "16.2.3"; 9389 9263 src = fetchurl { 9390 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-16.2.2.tgz"; 9391 - sha512 = "OqPhpodkQx9pzSz7H2AGeEbf3ut6WOkJFP2YlX2JIGholfG/0FQMJmfTEyRoFXCBeVIDGt3sOmlfK7An0PS8uA=="; 9264 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-16.2.3.tgz"; 9265 + sha512 = "QZOh6iH3BQo4azmqGIoydW95KuxTGezTXl+cfekr4ru5IJ7FqCwrg4wQKWD8/3FkxakXjAFdqsWhlxn1kGtyqw=="; 9392 9266 }; 9393 9267 }; 9394 9268 "@scure/base-1.1.3" = { ··· 9454 9328 sha512 = "P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ=="; 9455 9329 }; 9456 9330 }; 9457 - "@sentry-internal/tracing-7.69.0" = { 9458 - name = "_at_sentry-internal_slash_tracing"; 9459 - packageName = "@sentry-internal/tracing"; 9460 - version = "7.69.0"; 9461 - src = fetchurl { 9462 - url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.69.0.tgz"; 9463 - sha512 = "4BgeWZUj9MO6IgfO93C9ocP3+AdngqujF/+zB2rFdUe+y9S6koDyUC7jr9Knds/0Ta72N/0D6PwhgSCpHK8s0Q=="; 9464 - }; 9465 - }; 9466 9331 "@sentry/core-6.19.7" = { 9467 9332 name = "_at_sentry_slash_core"; 9468 9333 packageName = "@sentry/core"; ··· 9472 9337 sha512 = "tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw=="; 9473 9338 }; 9474 9339 }; 9475 - "@sentry/core-7.69.0" = { 9476 - name = "_at_sentry_slash_core"; 9477 - packageName = "@sentry/core"; 9478 - version = "7.69.0"; 9479 - src = fetchurl { 9480 - url = "https://registry.npmjs.org/@sentry/core/-/core-7.69.0.tgz"; 9481 - sha512 = "V6jvK2lS8bhqZDMFUtvwe2XvNstFQf5A+2LMKCNBOV/NN6eSAAd6THwEpginabjet9dHsNRmMk7WNKvrUfQhZw=="; 9482 - }; 9483 - }; 9484 9340 "@sentry/hub-6.19.7" = { 9485 9341 name = "_at_sentry_slash_hub"; 9486 9342 packageName = "@sentry/hub"; ··· 9508 9364 sha512 = "gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg=="; 9509 9365 }; 9510 9366 }; 9511 - "@sentry/node-7.69.0" = { 9512 - name = "_at_sentry_slash_node"; 9513 - packageName = "@sentry/node"; 9514 - version = "7.69.0"; 9515 - src = fetchurl { 9516 - url = "https://registry.npmjs.org/@sentry/node/-/node-7.69.0.tgz"; 9517 - sha512 = "T0NgPcmDQvEuz5hy6aEhXghTHHTWsiP3IWoeEAakDBHAXmtpT6lYFQZgb5AiEOt9F5KO/G/1yH3YYdpDAnKhPw=="; 9518 - }; 9519 - }; 9520 9367 "@sentry/types-6.19.7" = { 9521 9368 name = "_at_sentry_slash_types"; 9522 9369 packageName = "@sentry/types"; ··· 9526 9373 sha512 = "jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg=="; 9527 9374 }; 9528 9375 }; 9529 - "@sentry/types-7.69.0" = { 9530 - name = "_at_sentry_slash_types"; 9531 - packageName = "@sentry/types"; 9532 - version = "7.69.0"; 9533 - src = fetchurl { 9534 - url = "https://registry.npmjs.org/@sentry/types/-/types-7.69.0.tgz"; 9535 - sha512 = "zPyCox0mzitzU6SIa1KIbNoJAInYDdUpdiA+PoUmMn2hFMH1llGU/cS7f4w/mAsssTlbtlBi72RMnWUCy578bw=="; 9536 - }; 9537 - }; 9538 9376 "@sentry/utils-6.19.7" = { 9539 9377 name = "_at_sentry_slash_utils"; 9540 9378 packageName = "@sentry/utils"; ··· 9542 9380 src = fetchurl { 9543 9381 url = "https://registry.npmjs.org/@sentry/utils/-/utils-6.19.7.tgz"; 9544 9382 sha512 = "z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA=="; 9545 - }; 9546 - }; 9547 - "@sentry/utils-7.69.0" = { 9548 - name = "_at_sentry_slash_utils"; 9549 - packageName = "@sentry/utils"; 9550 - version = "7.69.0"; 9551 - src = fetchurl { 9552 - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.69.0.tgz"; 9553 - sha512 = "4eBixe5Y+0EGVU95R4NxH3jkkjtkE4/CmSZD4In8SCkWGSauogePtq6hyiLsZuP1QHdpPb9Kt0+zYiBb2LouBA=="; 9554 9383 }; 9555 9384 }; 9556 9385 "@serialport/binding-mock-10.2.2" = { ··· 9679 9508 sha512 = "gbcUdvq9Kyv2HsnywS7QjnEB28g+6OGB5Z8TLP7X+UPpoMIWoUsoQIq5Kt0ZTgMoWn3JGM2lqwTsSHF+1qhniA=="; 9680 9509 }; 9681 9510 }; 9682 - "@serverless/dashboard-plugin-6.4.0" = { 9511 + "@serverless/dashboard-plugin-7.0.3" = { 9683 9512 name = "_at_serverless_slash_dashboard-plugin"; 9684 9513 packageName = "@serverless/dashboard-plugin"; 9685 - version = "6.4.0"; 9514 + version = "7.0.3"; 9686 9515 src = fetchurl { 9687 - url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-6.4.0.tgz"; 9688 - sha512 = "2yJQym94sXZhEFbcOVRMJgJ4a2H9Qly94UeUesPwf8bfWCxtiB4l5rxLnCB2aLTuUf/djcuD5/VrNPY1pRU7DA=="; 9516 + url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-7.0.3.tgz"; 9517 + sha512 = "rnVMyD4+IOFbsK4dxt541YaS0Lpia6DHXV01AFA5YnAwzVBlX4gSxx9aIQPkpx0PvB1A1S3rPgx/gfACWmdbgQ=="; 9689 9518 }; 9690 9519 }; 9691 9520 "@serverless/event-mocks-1.1.1" = { ··· 9706 9535 sha512 = "urL7SNefRqC2EOFDcpvm8fyn/06B5yXWneKpyGw7ylGt0Qr9JHZCB9TiUeTkIpPUNz0jTvKUaJ2+M/JNEiaVIA=="; 9707 9536 }; 9708 9537 }; 9709 - "@serverless/utils-6.13.1" = { 9538 + "@serverless/utils-6.15.0" = { 9710 9539 name = "_at_serverless_slash_utils"; 9711 9540 packageName = "@serverless/utils"; 9712 - version = "6.13.1"; 9541 + version = "6.15.0"; 9713 9542 src = fetchurl { 9714 - url = "https://registry.npmjs.org/@serverless/utils/-/utils-6.13.1.tgz"; 9715 - sha512 = "yokWzlsIaAd3TWzNgIDz6l8HZmtYZs9caaLuheZ0IiZ/bDWSCLBWn84HKkdWZOmFnYxejyPNJEOwE59mtSR3Ow=="; 9543 + url = "https://registry.npmjs.org/@serverless/utils/-/utils-6.15.0.tgz"; 9544 + sha512 = "7eDbqKv/OBd11jjdZjUwFGN8sHWkeUqLeHXHQxQ1azja2IM7WIH+z/aLgzR6LhB3/MINNwtjesDpjGqTMj2JKQ=="; 9716 9545 }; 9717 9546 }; 9718 9547 "@shopify/cli-kit-3.49.3" = { ··· 9886 9715 sha512 = "TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g=="; 9887 9716 }; 9888 9717 }; 9889 - "@smithy/abort-controller-2.0.8" = { 9718 + "@smithy/abort-controller-2.0.9" = { 9890 9719 name = "_at_smithy_slash_abort-controller"; 9891 9720 packageName = "@smithy/abort-controller"; 9892 - version = "2.0.8"; 9721 + version = "2.0.9"; 9893 9722 src = fetchurl { 9894 - url = "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.0.8.tgz"; 9895 - sha512 = "2SOdVj5y0zE37Y9scSXoizoxgi6mgnDabi7a/SOfhl0p+50I0rIkuJTfyAuTPDtQ7e5dD6tSZPCLB3c/YM6Zig=="; 9723 + url = "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.0.9.tgz"; 9724 + sha512 = "8liHOEbx99xcy4VndeQNQhyA0LS+e7UqsuRnDTSIA26IKBv/7vA9w09KOd4fgNULrvX0r3WpA6cwsQTRJpSWkg=="; 9896 9725 }; 9897 9726 }; 9898 9727 "@smithy/chunked-blob-reader-2.0.0" = { ··· 9913 9742 sha512 = "HM8V2Rp1y8+1343tkZUKZllFhEQPNmpNdgFAncbTsxkZ18/gqjk23XXv3qGyXWp412f3o43ZZ1UZHVcHrpRnCQ=="; 9914 9743 }; 9915 9744 }; 9916 - "@smithy/config-resolver-2.0.9" = { 9745 + "@smithy/config-resolver-2.0.10" = { 9917 9746 name = "_at_smithy_slash_config-resolver"; 9918 9747 packageName = "@smithy/config-resolver"; 9919 - version = "2.0.9"; 9748 + version = "2.0.10"; 9920 9749 src = fetchurl { 9921 - url = "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.0.9.tgz"; 9922 - sha512 = "QBkGPLUqyPmis9Erz8v4q5lo/ErnF7+GD5WZHa6JZiXopUPfaaM+B21n8gzS5xCkIXZmnwzNQhObP9xQPu8oqQ=="; 9750 + url = "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.0.10.tgz"; 9751 + sha512 = "MwToDsCltHjumkCuRn883qoNeJUawc2b8sX9caSn5vLz6J5crU1IklklNxWCaMO2z2nDL91Po4b/aI1eHv5PfA=="; 9923 9752 }; 9924 9753 }; 9925 - "@smithy/credential-provider-imds-2.0.11" = { 9754 + "@smithy/credential-provider-imds-2.0.12" = { 9926 9755 name = "_at_smithy_slash_credential-provider-imds"; 9927 9756 packageName = "@smithy/credential-provider-imds"; 9928 - version = "2.0.11"; 9757 + version = "2.0.12"; 9929 9758 src = fetchurl { 9930 - url = "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.0.11.tgz"; 9931 - sha512 = "uJJs8dnM5iXkn8a2GaKvlKMhcOJ+oJPYqY9gY3CM/EieCVObIDjxUtR/g8lU/k/A+OauA78GzScAfulmFjPOYA=="; 9759 + url = "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.0.12.tgz"; 9760 + sha512 = "S3lUNe+2fEFwKcmiQniXGPXt69vaHvQCw8kYQOBL4OvJsgwfpkIYDZdroHbTshYi0M6WaKL26Mw+hvgma6dZqA=="; 9932 9761 }; 9933 9762 }; 9934 - "@smithy/eventstream-codec-2.0.8" = { 9763 + "@smithy/eventstream-codec-2.0.9" = { 9935 9764 name = "_at_smithy_slash_eventstream-codec"; 9936 9765 packageName = "@smithy/eventstream-codec"; 9937 - version = "2.0.8"; 9766 + version = "2.0.9"; 9938 9767 src = fetchurl { 9939 - url = "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.0.8.tgz"; 9940 - sha512 = "onO4to8ujCKn4m5XagReT9Nc6FlNG5vveuvjp1H7AtaG7njdet1LOl6/jmUOkskF2C/w+9jNw3r9Ak+ghOvN0A=="; 9768 + url = "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.0.9.tgz"; 9769 + sha512 = "sy0pcbKnawt1iu+qCoSFbs/h9PAaUgvlJEO3lqkE1HFFj4p5RgL98vH+9CyDoj6YY82cG5XsorFmcLqQJHTOYw=="; 9941 9770 }; 9942 9771 }; 9943 - "@smithy/eventstream-serde-browser-2.0.8" = { 9772 + "@smithy/eventstream-serde-browser-2.0.9" = { 9944 9773 name = "_at_smithy_slash_eventstream-serde-browser"; 9945 9774 packageName = "@smithy/eventstream-serde-browser"; 9946 - version = "2.0.8"; 9775 + version = "2.0.9"; 9947 9776 src = fetchurl { 9948 - url = "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.0.8.tgz"; 9949 - sha512 = "/RGlkKUnC0sd+xKBKH/2APSBRmVMZTeLOKZMhrZmrO+ONoU+DwyMr/RLJ6WnmBKN+2ebjffM4pcIJTKLNNDD8g=="; 9777 + url = "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.0.9.tgz"; 9778 + sha512 = "g70enHZau2hGj1Uxedrn8AAjH9E7RnpHdwkuPKapagah53ztbwI7xaNeA5SLD4MjSjdrjathyQBCQKIzwXrR1g=="; 9950 9779 }; 9951 9780 }; 9952 - "@smithy/eventstream-serde-config-resolver-2.0.8" = { 9781 + "@smithy/eventstream-serde-config-resolver-2.0.9" = { 9953 9782 name = "_at_smithy_slash_eventstream-serde-config-resolver"; 9954 9783 packageName = "@smithy/eventstream-serde-config-resolver"; 9955 - version = "2.0.8"; 9784 + version = "2.0.9"; 9956 9785 src = fetchurl { 9957 - url = "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.0.8.tgz"; 9958 - sha512 = "EyAEj258eMUv9zcMvBbqrInh2eHRYuiwQAjXDMxZFCyP+JePzQB6O++3wFwjQeRKMFFgZipNgnEXfReII4+NAw=="; 9786 + url = "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.0.9.tgz"; 9787 + sha512 = "+15GzIMtdSuRPyuCeGZ7gzgD94Ejv6eM1vKcqvipdzS+i36KTZ2A9aZsJk+gDw//OCD1EMx9SqpV6bUvMS4PWg=="; 9959 9788 }; 9960 9789 }; 9961 - "@smithy/eventstream-serde-node-2.0.8" = { 9790 + "@smithy/eventstream-serde-node-2.0.9" = { 9962 9791 name = "_at_smithy_slash_eventstream-serde-node"; 9963 9792 packageName = "@smithy/eventstream-serde-node"; 9964 - version = "2.0.8"; 9793 + version = "2.0.9"; 9965 9794 src = fetchurl { 9966 - url = "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.0.8.tgz"; 9967 - sha512 = "FMBatSUSKwh6aguKVJokXfJaV8nqsuCkCZHb9MP9zah0ZF+ohbTLeeed7DQGeTVBueVIVWEzIsShPxtxBv7MMQ=="; 9795 + url = "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.0.9.tgz"; 9796 + sha512 = "UEJcvN2WXXEjkewtFkj1S2HSZLbyCgzUnfoFPrTuKy4+xRfakO5dNx6ws2h1pvb8Vc7mTuBL+Webl1R5mnVsXA=="; 9968 9797 }; 9969 9798 }; 9970 - "@smithy/eventstream-serde-universal-2.0.8" = { 9799 + "@smithy/eventstream-serde-universal-2.0.9" = { 9971 9800 name = "_at_smithy_slash_eventstream-serde-universal"; 9972 9801 packageName = "@smithy/eventstream-serde-universal"; 9973 - version = "2.0.8"; 9802 + version = "2.0.9"; 9974 9803 src = fetchurl { 9975 - url = "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.0.8.tgz"; 9976 - sha512 = "6InMXH8BUKoEDa6CAuxR4Gn8Gf2vBfVtjA9A6zDKZClYHT+ANUJS+2EtOBc5wECJJGk4KLn5ajQyrt9MBv5lcw=="; 9804 + url = "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.0.9.tgz"; 9805 + sha512 = "dAHQEYlK/1tjjieBE7jjXwpLQFgKdkvC4HSQf+/Jj4t34XbUmXWHbw92/EuLp9+vjNB/JQPvkwpMtN31jxIDeg=="; 9977 9806 }; 9978 9807 }; 9979 - "@smithy/fetch-http-handler-2.1.4" = { 9808 + "@smithy/fetch-http-handler-2.1.5" = { 9980 9809 name = "_at_smithy_slash_fetch-http-handler"; 9981 9810 packageName = "@smithy/fetch-http-handler"; 9982 - version = "2.1.4"; 9811 + version = "2.1.5"; 9983 9812 src = fetchurl { 9984 - url = "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.1.4.tgz"; 9985 - sha512 = "SL24M9W5ERByoXaVicRx+bj9GJVujDnPn+QO7GY7adhY0mPGa6DSF58pVKsgIh4r5Tx/k3SWCPlH4BxxSxA/fQ=="; 9813 + url = "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.1.5.tgz"; 9814 + sha512 = "BIeCHGfr5JCGN+EMTwZK74ELvjPXOIrI7OLM5OhZJJ6AmZyRv2S9ANJk18AtLwht0TsSm+8WoXIEp8LuxNgUyA=="; 9986 9815 }; 9987 9816 }; 9988 - "@smithy/hash-blob-browser-2.0.8" = { 9817 + "@smithy/hash-blob-browser-2.0.9" = { 9989 9818 name = "_at_smithy_slash_hash-blob-browser"; 9990 9819 packageName = "@smithy/hash-blob-browser"; 9991 - version = "2.0.8"; 9820 + version = "2.0.9"; 9992 9821 src = fetchurl { 9993 - url = "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.0.8.tgz"; 9994 - sha512 = "IgvRlBMfg/qLg321a59T1yTdEEbaizLrEVsU3DHj65DAO4lFRMF5f+l7vuV+je6m1G9wSD5GQXLturX8qlGb4g=="; 9822 + url = "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.0.9.tgz"; 9823 + sha512 = "JNWOV1ci9vIg4U82klNr07bZXsA6OCumqHugpvZdvvn6cNGwTa4rvpS5FpPcqKeh3Rdg1rr4h8g+X6zyOamnZw=="; 9995 9824 }; 9996 9825 }; 9997 - "@smithy/hash-node-2.0.8" = { 9826 + "@smithy/hash-node-2.0.9" = { 9998 9827 name = "_at_smithy_slash_hash-node"; 9999 9828 packageName = "@smithy/hash-node"; 10000 - version = "2.0.8"; 9829 + version = "2.0.9"; 10001 9830 src = fetchurl { 10002 - url = "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.0.8.tgz"; 10003 - sha512 = "yZL/nmxZzjZV5/QX5JWSgXlt0HxuMTwFO89CS++jOMMPiCMZngf6VYmtNdccs8IIIAMmfQeTzwu07XgUE/Zd3Q=="; 9831 + url = "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.0.9.tgz"; 9832 + sha512 = "XP3yWd5wyCtiVmsY5Nuq/FUwyCEQ6YG7DsvRh7ThldNukGpCzyFdP8eivZJVjn4Fx7oYrrOnVoYZ0WEgpW1AvQ=="; 10004 9833 }; 10005 9834 }; 10006 - "@smithy/hash-stream-node-2.0.8" = { 9835 + "@smithy/hash-stream-node-2.0.9" = { 10007 9836 name = "_at_smithy_slash_hash-stream-node"; 10008 9837 packageName = "@smithy/hash-stream-node"; 10009 - version = "2.0.8"; 9838 + version = "2.0.9"; 10010 9839 src = fetchurl { 10011 - url = "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.0.8.tgz"; 10012 - sha512 = "82zC6I9ZJycbEZH8TVyXyBx9c2ZIPQDgBvM0x5AFPUl/i1AxwKKX+lwYRnzgkF//cYhIIoJaCfJ9mjSMPRGvCQ=="; 9840 + url = "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.0.9.tgz"; 9841 + sha512 = "3nrkMpiOrhsJvJS6K4OkP0qvA3U5r8PpseXULeGd1ZD1EbfcZ30Lvl72FGaaHskwWZyTPR4czr1d/RwLRCVHNA=="; 10013 9842 }; 10014 9843 }; 10015 - "@smithy/invalid-dependency-2.0.8" = { 9844 + "@smithy/invalid-dependency-2.0.9" = { 10016 9845 name = "_at_smithy_slash_invalid-dependency"; 10017 9846 packageName = "@smithy/invalid-dependency"; 10018 - version = "2.0.8"; 9847 + version = "2.0.9"; 10019 9848 src = fetchurl { 10020 - url = "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.0.8.tgz"; 10021 - sha512 = "88VOS7W3KzUz/bNRc+Sl/F/CDIasFspEE4G39YZRHIh9YmsXF7GUyVaAKURfMNulTie62ayk6BHC9O0nOBAVgQ=="; 9849 + url = "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.0.9.tgz"; 9850 + sha512 = "RuJqhYf8nViK96IIO9JbTtjDUuFItVfuuJhWw2yk7fv67yltQ7fZD6IQ2OsHHluoVmstnQJuCg5raXJR696Ubw=="; 10022 9851 }; 10023 9852 }; 10024 9853 "@smithy/is-array-buffer-2.0.0" = { ··· 10030 9859 sha512 = "z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug=="; 10031 9860 }; 10032 9861 }; 10033 - "@smithy/md5-js-2.0.8" = { 9862 + "@smithy/md5-js-2.0.9" = { 10034 9863 name = "_at_smithy_slash_md5-js"; 10035 9864 packageName = "@smithy/md5-js"; 10036 - version = "2.0.8"; 9865 + version = "2.0.9"; 10037 9866 src = fetchurl { 10038 - url = "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.0.8.tgz"; 10039 - sha512 = "1VVECXEiuJvjXv+mudiaUFKYwgDLOWz5MTTy8RzbrPiU3GiOb3/o5/urdkYpqmgoMfxdvxxOw/Adjv2dV2q2Yg=="; 9867 + url = "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.0.9.tgz"; 9868 + sha512 = "ALHGoTZDgBXBbjCpQzVy6hpa6Rdr6e2jyEw51d6CQOUpHkUnFH7G96UWhVwUnkP0xozPCvmWy+3+j2QUX+oK9w=="; 10040 9869 }; 10041 9870 }; 10042 - "@smithy/middleware-content-length-2.0.10" = { 9871 + "@smithy/middleware-content-length-2.0.11" = { 10043 9872 name = "_at_smithy_slash_middleware-content-length"; 10044 9873 packageName = "@smithy/middleware-content-length"; 10045 - version = "2.0.10"; 9874 + version = "2.0.11"; 10046 9875 src = fetchurl { 10047 - url = "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.0.10.tgz"; 10048 - sha512 = "EGSbysyA4jH0p3xI6G0jdXoj9Iz9GUnAta6aEaHtXm3wVWtenRf80y2TeVvNkVSr5jwKOdSCjKIRI2l1A/oZLA=="; 9876 + url = "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.0.11.tgz"; 9877 + sha512 = "Malj4voNTL4+a5ZL3a6+Ij7JTUMTa2R7c3ZIBzMxN5OUUgAspU7uFi1Q97f4B0afVh2joQBAWH5IQJUG25nl8g=="; 10049 9878 }; 10050 9879 }; 10051 - "@smithy/middleware-endpoint-2.0.8" = { 9880 + "@smithy/middleware-endpoint-2.0.9" = { 10052 9881 name = "_at_smithy_slash_middleware-endpoint"; 10053 9882 packageName = "@smithy/middleware-endpoint"; 10054 - version = "2.0.8"; 9883 + version = "2.0.9"; 10055 9884 src = fetchurl { 10056 - url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.0.8.tgz"; 10057 - sha512 = "yOpogfG2d2V0cbJdAJ6GLAWkNOc9pVsL5hZUfXcxJu408N3CUCsXzIAFF6+70ZKSE+lCfG3GFErcSXv/UfUbjw=="; 9885 + url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.0.9.tgz"; 9886 + sha512 = "72/o8R6AAO4+nyTI6h4z6PYGTSA4dr1M7tZz29U8DEUHuh1YkhC77js0P6RyF9G0wDLuYqxb+Yh0crI5WG2pJg=="; 10058 9887 }; 10059 9888 }; 10060 - "@smithy/middleware-retry-2.0.11" = { 9889 + "@smithy/middleware-retry-2.0.12" = { 10061 9890 name = "_at_smithy_slash_middleware-retry"; 10062 9891 packageName = "@smithy/middleware-retry"; 10063 - version = "2.0.11"; 9892 + version = "2.0.12"; 10064 9893 src = fetchurl { 10065 - url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.0.11.tgz"; 10066 - sha512 = "pknfokumZ+wvBERSuKAI2vVr+aK3ZgPiWRg6+0ZG4kKJogBRpPmDGWw+Jht0izS9ZaEbIobNzueIb4wD33JJVg=="; 9894 + url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.0.12.tgz"; 9895 + sha512 = "YQ/ufXX4/d9/+Jf1QQ4J+CVeupC7BW52qldBTvRV33PDX9vxndlAwkFwzBcmnUFC3Hjf1//HW6I77EItcjNSCA=="; 10067 9896 }; 10068 9897 }; 10069 - "@smithy/middleware-serde-2.0.8" = { 9898 + "@smithy/middleware-serde-2.0.9" = { 10070 9899 name = "_at_smithy_slash_middleware-serde"; 10071 9900 packageName = "@smithy/middleware-serde"; 10072 - version = "2.0.8"; 9901 + version = "2.0.9"; 10073 9902 src = fetchurl { 10074 - url = "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.0.8.tgz"; 10075 - sha512 = "Is0sm+LiNlgsc0QpstDzifugzL9ehno1wXp109GgBgpnKTK3j+KphiparBDI4hWTtH9/7OUsxuspNqai2yyhcg=="; 9903 + url = "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.0.9.tgz"; 9904 + sha512 = "GVbauxrr6WmtCaesakktg3t5LR/yDbajpC7KkWc8rtCpddMI4ShAVO5Q6DqwX8MDFi4CLaY8H7eTGcxhl3jbLg=="; 10076 9905 }; 10077 9906 }; 10078 - "@smithy/middleware-stack-2.0.1" = { 9907 + "@smithy/middleware-stack-2.0.2" = { 10079 9908 name = "_at_smithy_slash_middleware-stack"; 10080 9909 packageName = "@smithy/middleware-stack"; 10081 - version = "2.0.1"; 9910 + version = "2.0.2"; 10082 9911 src = fetchurl { 10083 - url = "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-2.0.1.tgz"; 10084 - sha512 = "UexsfY6/oQZRjTQL56s9AKtMcR60tBNibSgNYX1I2WXaUaXg97W9JCkFyth85TzBWKDBTyhLfenrukS/kyu54A=="; 9912 + url = "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-2.0.2.tgz"; 9913 + sha512 = "6BNfPVp/8gcmkKdJhNJK3HEkUNNTrY3hM9vuWXIUSoLk9FZo1L2QuGLGB6S124D9ySInn8PzEdOtguCF5Ao4KA=="; 10085 9914 }; 10086 9915 }; 10087 - "@smithy/node-config-provider-2.0.11" = { 9916 + "@smithy/node-config-provider-2.0.12" = { 10088 9917 name = "_at_smithy_slash_node-config-provider"; 10089 9918 packageName = "@smithy/node-config-provider"; 10090 - version = "2.0.11"; 9919 + version = "2.0.12"; 10091 9920 src = fetchurl { 10092 - url = "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.0.11.tgz"; 10093 - sha512 = "CaR1dciSSGKttjhcefpytYjsfI/Yd5mqL8am4wfmyFCDxSiPsvnEWHl8UjM/RbcAjX0klt+CeIKPSHEc0wGvJA=="; 9921 + url = "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.0.12.tgz"; 9922 + sha512 = "df9y9ywv+JmS40Y60ZqJ4jfZiTCmyHQffwzIqjBjLJLJl0imf9F6DWBd+jiEWHvlohR+sFhyY+KL/qzKgnAq1A=="; 10094 9923 }; 10095 9924 }; 10096 - "@smithy/node-http-handler-2.1.4" = { 9925 + "@smithy/node-http-handler-2.1.5" = { 10097 9926 name = "_at_smithy_slash_node-http-handler"; 10098 9927 packageName = "@smithy/node-http-handler"; 10099 - version = "2.1.4"; 9928 + version = "2.1.5"; 10100 9929 src = fetchurl { 10101 - url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.1.4.tgz"; 10102 - sha512 = "8Rw/AusvWDyC6SK8esAcVBeTlQHf94NMFv805suFUJCQ2gwlh0oLDNh+6s2MDOrxcjvLxjjzv1mytM0Mt+0cPQ=="; 9930 + url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.1.5.tgz"; 9931 + sha512 = "52uF+BrZaFiBh+NT/bADiVDCQO91T+OwDRsuaAeWZC1mlCXFjAPPQdxeQohtuYOe9m7mPP/xIMNiqbe8jvndHA=="; 10103 9932 }; 10104 9933 }; 10105 - "@smithy/property-provider-2.0.9" = { 9934 + "@smithy/property-provider-2.0.10" = { 10106 9935 name = "_at_smithy_slash_property-provider"; 10107 9936 packageName = "@smithy/property-provider"; 10108 - version = "2.0.9"; 9937 + version = "2.0.10"; 10109 9938 src = fetchurl { 10110 - url = "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.0.9.tgz"; 10111 - sha512 = "25pPZ8f8DeRwYI5wbPRZaoMoR+3vrw8DwbA0TjP+GsdiB2KxScndr4HQehiJ5+WJ0giOTWhLz0bd+7Djv1qpUQ=="; 9939 + url = "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.0.10.tgz"; 9940 + sha512 = "YMBVfh0ZMmJtbsUn+WfSwR32iRljZPdRN0Tn2GAcdJ+ejX8WrBXD7Z0jIkQDrQZr8fEuuv5x8WxMIj+qVbsPQw=="; 10112 9941 }; 10113 9942 }; 10114 - "@smithy/protocol-http-3.0.4" = { 9943 + "@smithy/protocol-http-3.0.5" = { 10115 9944 name = "_at_smithy_slash_protocol-http"; 10116 9945 packageName = "@smithy/protocol-http"; 10117 - version = "3.0.4"; 9946 + version = "3.0.5"; 10118 9947 src = fetchurl { 10119 - url = "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-3.0.4.tgz"; 10120 - sha512 = "CGfSWk6TRlbwa8YgrSXdn80Yu7pov3EV/h7TSfiCHhq6/LO3WymmqnzgH1f0qV2bdTDipIkTNp5dGCGN3Af/5g=="; 9948 + url = "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-3.0.5.tgz"; 9949 + sha512 = "3t3fxj+ip4EPHRC2fQ0JimMxR/qCQ1LSQJjZZVZFgROnFLYWPDgUZqpoi7chr+EzatxJVXF/Rtoi5yLHOWCoZQ=="; 10121 9950 }; 10122 9951 }; 10123 - "@smithy/querystring-builder-2.0.8" = { 9952 + "@smithy/querystring-builder-2.0.9" = { 10124 9953 name = "_at_smithy_slash_querystring-builder"; 10125 9954 packageName = "@smithy/querystring-builder"; 10126 - version = "2.0.8"; 9955 + version = "2.0.9"; 10127 9956 src = fetchurl { 10128 - url = "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.0.8.tgz"; 10129 - sha512 = "+vzIMwjC8Saz97/ptPn+IJRCRRZ+pP95ZIWDRqEqZV/a6hiKbaFoMSa2iCKsnKzR696U2JZXrDqMu3e/FD1+2g=="; 9957 + url = "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.0.9.tgz"; 9958 + sha512 = "Yt6CPF4j3j1cuwod/DRflbuXxBFjJm7gAjy6W1RE21Rz5/kfGFqiZBXWmmXwGtnnhiLThYwoHK4S6/TQtnx0Fg=="; 10130 9959 }; 10131 9960 }; 10132 - "@smithy/querystring-parser-2.0.8" = { 9961 + "@smithy/querystring-parser-2.0.9" = { 10133 9962 name = "_at_smithy_slash_querystring-parser"; 10134 9963 packageName = "@smithy/querystring-parser"; 10135 - version = "2.0.8"; 9964 + version = "2.0.9"; 10136 9965 src = fetchurl { 10137 - url = "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.0.8.tgz"; 10138 - sha512 = "ArbanNuR7O/MmTd90ZqhDqGOPPDYmxx3huHxD+R3cuCnazcK/1tGQA+SnnR5307T7ZRb5WTpB6qBggERuibVSA=="; 9966 + url = "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.0.9.tgz"; 9967 + sha512 = "U6z4N743s4vrcxPW8p8+reLV0PjMCYEyb1/wtMVvv3VnbJ74gshdI8SR1sBnEh95cF8TxonmX5IxY25tS9qGfg=="; 10139 9968 }; 10140 9969 }; 10141 - "@smithy/service-error-classification-2.0.1" = { 9970 + "@smithy/service-error-classification-2.0.2" = { 10142 9971 name = "_at_smithy_slash_service-error-classification"; 10143 9972 packageName = "@smithy/service-error-classification"; 10144 - version = "2.0.1"; 9973 + version = "2.0.2"; 10145 9974 src = fetchurl { 10146 - url = "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-2.0.1.tgz"; 10147 - sha512 = "QHa9+t+v4s0cMuDCcbjIJN67mNZ42/+fc3jKe8P6ZMPXZl5ksKk6a8vhZ/m494GZng5eFTc3OePv+NF9cG83yg=="; 9975 + url = "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-2.0.2.tgz"; 9976 + sha512 = "GTUd2j63gKy7A+ggvSdn2hc4sejG7LWfE+ZMF17vzWoNyqERWbRP7HTPS0d0Lwg1p6OQCAzvNigSrEIWVFt6iA=="; 10148 9977 }; 10149 9978 }; 10150 - "@smithy/shared-ini-file-loader-2.0.10" = { 9979 + "@smithy/shared-ini-file-loader-2.0.11" = { 10151 9980 name = "_at_smithy_slash_shared-ini-file-loader"; 10152 9981 packageName = "@smithy/shared-ini-file-loader"; 10153 - version = "2.0.10"; 9982 + version = "2.0.11"; 10154 9983 src = fetchurl { 10155 - url = "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.0.10.tgz"; 10156 - sha512 = "jWASteSezRKohJ7GdA7pHDvmr7Q7tw3b5mu3xLHIkZy/ICftJ+O7aqNaF8wklhI7UNFoQ7flFRM3Rd0KA+1BbQ=="; 9984 + url = "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.0.11.tgz"; 9985 + sha512 = "Sf0u5C5px6eykXi6jImDTp+edvG3REtPjXnFWU/J+b7S2wkXwUqFXqBL5DdM4zC1F+M8u57ZT7NRqDwMOw7/Tw=="; 10157 9986 }; 10158 9987 }; 10159 - "@smithy/signature-v4-2.0.8" = { 9988 + "@smithy/signature-v4-2.0.9" = { 10160 9989 name = "_at_smithy_slash_signature-v4"; 10161 9990 packageName = "@smithy/signature-v4"; 10162 - version = "2.0.8"; 9991 + version = "2.0.9"; 10163 9992 src = fetchurl { 10164 - url = "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.0.8.tgz"; 10165 - sha512 = "qrtiYMzaLlQ5HSJOaFwnyTQ3JLjmPY+3+pr9IBDpCVM6YtVj22cBLVB9bPOiZMIpkdI7ZRdxLBFlIjh5CO1Bhw=="; 9993 + url = "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.0.9.tgz"; 9994 + sha512 = "RkHP0joSI1j2EI+mU55sOi33/aMMkKdL9ZY+SWrPxsiCe1oyzzuy79Tpn8X7uT+t0ilNmQlwPpkP/jUy940pEA=="; 10166 9995 }; 10167 9996 }; 10168 - "@smithy/smithy-client-2.1.5" = { 9997 + "@smithy/smithy-client-2.1.6" = { 10169 9998 name = "_at_smithy_slash_smithy-client"; 10170 9999 packageName = "@smithy/smithy-client"; 10171 - version = "2.1.5"; 10000 + version = "2.1.6"; 10172 10001 src = fetchurl { 10173 - url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.1.5.tgz"; 10174 - sha512 = "7S865uKzsxApM8W8Q6zkij7tcUFgaG8PuADMFdMt1yL/ku3d0+s6Zwrg3N7iXCPM08Gu/mf0BIfTXIu/9i450Q=="; 10002 + url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.1.6.tgz"; 10003 + sha512 = "+F26b8U7C6ydJgj5Y+OZ94NL54HQUPF1LrFiZjMAIX3OlgZjDhiT3m6VOZo6+hge3sEFOrupwdjB5V24JOCpQw=="; 10175 10004 }; 10176 10005 }; 10177 - "@smithy/types-2.3.2" = { 10006 + "@smithy/types-2.3.3" = { 10178 10007 name = "_at_smithy_slash_types"; 10179 10008 packageName = "@smithy/types"; 10180 - version = "2.3.2"; 10009 + version = "2.3.3"; 10181 10010 src = fetchurl { 10182 - url = "https://registry.npmjs.org/@smithy/types/-/types-2.3.2.tgz"; 10183 - sha512 = "iH0cdKi7HQlzfAM3w2shFk/qZYKAqJWswtpmQpPtlruF+uFZeGEpMJjgDRyhWiddfVM4e2oP4nMaOBsMy6lXgg=="; 10011 + url = "https://registry.npmjs.org/@smithy/types/-/types-2.3.3.tgz"; 10012 + sha512 = "zTdIPR9PvFVNRdIKMQu4M5oyTaycIbUqLheQqaOi9rTWPkgjGO2wDBxMA1rBHQB81aqAEv+DbSS4jfKyQMnXRA=="; 10184 10013 }; 10185 10014 }; 10186 - "@smithy/url-parser-2.0.8" = { 10015 + "@smithy/url-parser-2.0.9" = { 10187 10016 name = "_at_smithy_slash_url-parser"; 10188 10017 packageName = "@smithy/url-parser"; 10189 - version = "2.0.8"; 10018 + version = "2.0.9"; 10190 10019 src = fetchurl { 10191 - url = "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.0.8.tgz"; 10192 - sha512 = "wQw7j004ScCrBRJ+oNPXlLE9mtofxyadSZ9D8ov/rHkyurS7z1HTNuyaGRj6OvKsEk0SVQsuY0C9+EfM75XTkw=="; 10020 + url = "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.0.9.tgz"; 10021 + sha512 = "NBnJ0NiY8z6E82Xd5VYUFQfKwK/wA/+QkKmpYUYP+cpH3aCzE6g2gvixd9vQKYjsIdRfNPCf+SFAozt8ljozOw=="; 10193 10022 }; 10194 10023 }; 10195 10024 "@smithy/util-base64-2.0.0" = { ··· 10237 10066 sha512 = "xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg=="; 10238 10067 }; 10239 10068 }; 10240 - "@smithy/util-defaults-mode-browser-2.0.9" = { 10069 + "@smithy/util-defaults-mode-browser-2.0.10" = { 10241 10070 name = "_at_smithy_slash_util-defaults-mode-browser"; 10242 10071 packageName = "@smithy/util-defaults-mode-browser"; 10243 - version = "2.0.9"; 10072 + version = "2.0.10"; 10244 10073 src = fetchurl { 10245 - url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.9.tgz"; 10246 - sha512 = "JONLJVQWT8165XoSV36ERn3SVlZLJJ4D6IeGsCSePv65Uxa93pzSLE0UMSR9Jwm4zix7rst9AS8W5QIypZWP8Q=="; 10074 + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.10.tgz"; 10075 + sha512 = "M5eaPn961jU2glZkqvmrVd6H4Tz4j1CJ2Kt8kjqMfcWZ4IQFgwPYbRkgND0W93dZXDmFU2GtuJGatwSmWIqxrA=="; 10247 10076 }; 10248 10077 }; 10249 - "@smithy/util-defaults-mode-node-2.0.11" = { 10078 + "@smithy/util-defaults-mode-node-2.0.12" = { 10250 10079 name = "_at_smithy_slash_util-defaults-mode-node"; 10251 10080 packageName = "@smithy/util-defaults-mode-node"; 10252 - version = "2.0.11"; 10081 + version = "2.0.12"; 10253 10082 src = fetchurl { 10254 - url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.11.tgz"; 10255 - sha512 = "tmqjNsfj+bgZN6jXBe6efZnukzILA7BUytHkzqikuRLNtR+0VVchQHvawD0w6vManh76rO81ydhioe7i4oBzuA=="; 10083 + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.12.tgz"; 10084 + sha512 = "fwAVus2YBTU5u4KFmmEZDdgx3HpUUg8f6SEUetJFsNL+6AzoGBIhCZX0yMrVCLJEZe6tUfMbL5TZHXMw2q6MaA=="; 10256 10085 }; 10257 10086 }; 10258 10087 "@smithy/util-hex-encoding-2.0.0" = { ··· 10264 10093 sha512 = "c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA=="; 10265 10094 }; 10266 10095 }; 10267 - "@smithy/util-middleware-2.0.1" = { 10096 + "@smithy/util-middleware-2.0.2" = { 10268 10097 name = "_at_smithy_slash_util-middleware"; 10269 10098 packageName = "@smithy/util-middleware"; 10270 - version = "2.0.1"; 10099 + version = "2.0.2"; 10271 10100 src = fetchurl { 10272 - url = "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-2.0.1.tgz"; 10273 - sha512 = "LnsBMi0Mg3gfz/TpNGLv2Jjcz2ra1OX5HR/4IaCepIYmtPQzqMWDdhX/XTW1LS8OZ0xbQuyQPcHkQ+2XkhWOVQ=="; 10101 + url = "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-2.0.2.tgz"; 10102 + sha512 = "UGPZM+Ja/vke5pc/S8G0LNiHpVirtjppsXO+GK9m9wbzRGzPJTfnZA/gERUUN/AfxEy/8SL7U1kd7u4t2X8K1w=="; 10274 10103 }; 10275 10104 }; 10276 - "@smithy/util-retry-2.0.1" = { 10105 + "@smithy/util-retry-2.0.2" = { 10277 10106 name = "_at_smithy_slash_util-retry"; 10278 10107 packageName = "@smithy/util-retry"; 10279 - version = "2.0.1"; 10108 + version = "2.0.2"; 10280 10109 src = fetchurl { 10281 - url = "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-2.0.1.tgz"; 10282 - sha512 = "naj4X0IafJ9yJnVJ58QgSMkCNLjyQOnyrnKh/T0f+0UOUxJiT8vuFn/hS7B/pNqbo2STY7PyJ4J4f+5YqxwNtA=="; 10110 + url = "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-2.0.2.tgz"; 10111 + sha512 = "ovWiayUB38moZcLhSFFfUgB2IMb7R1JfojU20qSahjxAgfOZvDWme3eOYUMtAVnouZ9kYJiFgHLy27qRH4NeeA=="; 10283 10112 }; 10284 10113 }; 10285 - "@smithy/util-stream-2.0.11" = { 10114 + "@smithy/util-stream-2.0.12" = { 10286 10115 name = "_at_smithy_slash_util-stream"; 10287 10116 packageName = "@smithy/util-stream"; 10288 - version = "2.0.11"; 10117 + version = "2.0.12"; 10289 10118 src = fetchurl { 10290 - url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.0.11.tgz"; 10291 - sha512 = "2MeWfqSpZKdmEJ+tH8CJQSgzLWhH5cmdE24X7JB0hiamXrOmswWGGuPvyj/9sQCTclo57pNxLR2p7KrP8Ahiyg=="; 10119 + url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.0.12.tgz"; 10120 + sha512 = "FOCpRLaj6gvSyUC5mJAACT+sPMPmp9sD1o+hVbUH/QxwZfulypA3ZIFdAg/59/IY0d/1Q4CTztsiHEB5LgjN4g=="; 10292 10121 }; 10293 10122 }; 10294 10123 "@smithy/util-uri-escape-2.0.0" = { ··· 10309 10138 sha512 = "rctU1VkziY84n5OXe3bPNpKR001ZCME2JCaBBFgtiM2hfKbHFudc/BkMuPab8hRbLd0j3vbnBTTZ1igBf0wgiQ=="; 10310 10139 }; 10311 10140 }; 10312 - "@smithy/util-waiter-2.0.8" = { 10141 + "@smithy/util-waiter-2.0.9" = { 10313 10142 name = "_at_smithy_slash_util-waiter"; 10314 10143 packageName = "@smithy/util-waiter"; 10315 - version = "2.0.8"; 10144 + version = "2.0.9"; 10316 10145 src = fetchurl { 10317 - url = "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.0.8.tgz"; 10318 - sha512 = "t9yaoofNhdEhNlyDeV5al/JJEFJ62HIQBGktgCUE63MvKn6imnbkh1qISsYMyMYVLwhWCpZ3Xa3R1LA+SnWcng=="; 10146 + url = "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.0.9.tgz"; 10147 + sha512 = "Hy9Cs0FtIacC1aVFk98bm/7CYqim9fnHAPRnV/SB2mj02ExYs/9Dn5SrNQmtTBTLCn65KqYnNVBNS8GuGpZOOw=="; 10319 10148 }; 10320 10149 }; 10321 10150 "@socket.io/component-emitter-3.1.0" = { ··· 10579 10408 sha512 = "gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA=="; 10580 10409 }; 10581 10410 }; 10582 - "@swc/core-1.3.85" = { 10411 + "@swc/core-1.3.86" = { 10583 10412 name = "_at_swc_slash_core"; 10584 10413 packageName = "@swc/core"; 10585 - version = "1.3.85"; 10414 + version = "1.3.86"; 10586 10415 src = fetchurl { 10587 - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.85.tgz"; 10588 - sha512 = "qnoxp+2O0GtvRdYnXgR1v8J7iymGGYpx6f6yCK9KxipOZOjrlKILFANYlghQxZyPUfXwK++TFxfSlX4r9wK+kg=="; 10416 + url = "https://registry.npmjs.org/@swc/core/-/core-1.3.86.tgz"; 10417 + sha512 = "bEXUtm37bcmJ3q+geG7Zy4rJNUzpxalXQUrrqX1ZoGj3HRtzdeVZ0L/um3fG2j16qe61t8TX/OIZ2G6j6dkG/w=="; 10589 10418 }; 10590 10419 }; 10591 - "@swc/core-darwin-arm64-1.3.85" = { 10420 + "@swc/core-darwin-arm64-1.3.86" = { 10592 10421 name = "_at_swc_slash_core-darwin-arm64"; 10593 10422 packageName = "@swc/core-darwin-arm64"; 10594 - version = "1.3.85"; 10423 + version = "1.3.86"; 10595 10424 src = fetchurl { 10596 - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.85.tgz"; 10597 - sha512 = "jTikp+i4nO4Ofe6qGm4I3sFeebD1OvueBCHITux5tQKD6umN1c2z4CRGv6K49NIz/qEpUcdr6Qny6K+3yibVFQ=="; 10425 + url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.86.tgz"; 10426 + sha512 = "hMvSDms0sJJHNtRa3Vhmr9StWN1vmikbf5VE0IZUYGnF1/JZTkXU1h6CdNUY4Hr6i7uCZjH6BEhxFHX1JtKV4w=="; 10598 10427 }; 10599 10428 }; 10600 - "@swc/core-darwin-x64-1.3.85" = { 10429 + "@swc/core-darwin-x64-1.3.86" = { 10601 10430 name = "_at_swc_slash_core-darwin-x64"; 10602 10431 packageName = "@swc/core-darwin-x64"; 10603 - version = "1.3.85"; 10432 + version = "1.3.86"; 10604 10433 src = fetchurl { 10605 - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.85.tgz"; 10606 - sha512 = "3uHYkjVU+2F+YbVYtq5rH0uCJIztFTALaS3mQEfQUZKXZ5/8jD5titTCRqFKtSlQg0CzaFZgsYsuqwYBmgN0mA=="; 10434 + url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.86.tgz"; 10435 + sha512 = "Jro6HVH4uSOBM7tTDaQNKLNc8BJV7n+SO+Ft2HAZINyeKJS/8MfEYneG7Vmqg18gv00c6dz9AOCcyz+BR7BFkQ=="; 10607 10436 }; 10608 10437 }; 10609 - "@swc/core-linux-arm-gnueabihf-1.3.85" = { 10438 + "@swc/core-linux-arm-gnueabihf-1.3.86" = { 10610 10439 name = "_at_swc_slash_core-linux-arm-gnueabihf"; 10611 10440 packageName = "@swc/core-linux-arm-gnueabihf"; 10612 - version = "1.3.85"; 10441 + version = "1.3.86"; 10613 10442 src = fetchurl { 10614 - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.85.tgz"; 10615 - sha512 = "ouHzAHsFaEOkRuoTAOI/8n2m8BQAAnb4vr/xbMhhDOmix0lp5eNsW5Iac/EcJ2uG6B3n7P2K8oycj9SWkj+pfw=="; 10443 + url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.86.tgz"; 10444 + sha512 = "wYB9m0pzXJVSzedXSl4JwS3gKtvcPinpe9MbkddezpqL7OjyDP6pHHW9qIucsfgCrtMtbPC2nqulXLPtAAyIjw=="; 10616 10445 }; 10617 10446 }; 10618 - "@swc/core-linux-arm64-gnu-1.3.85" = { 10447 + "@swc/core-linux-arm64-gnu-1.3.86" = { 10619 10448 name = "_at_swc_slash_core-linux-arm64-gnu"; 10620 10449 packageName = "@swc/core-linux-arm64-gnu"; 10621 - version = "1.3.85"; 10450 + version = "1.3.86"; 10622 10451 src = fetchurl { 10623 - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.85.tgz"; 10624 - sha512 = "/Z1CZOWiO+NqJEh1J20PIxQFHMH43upQJ1l7FJ5Z7+MyuYF8WkeJ7OSovau729pBR+38vvvccEJrMZIztfv7hQ=="; 10452 + url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.86.tgz"; 10453 + sha512 = "fR44IyK5cdCaO8cC++IEH0Jn03tWnunJnjzA99LxlE5TRInSIOvFm+g5OSUQZDAvEXmQ38sd31LO2HOoDS1Edw=="; 10625 10454 }; 10626 10455 }; 10627 - "@swc/core-linux-arm64-musl-1.3.85" = { 10456 + "@swc/core-linux-arm64-musl-1.3.86" = { 10628 10457 name = "_at_swc_slash_core-linux-arm64-musl"; 10629 10458 packageName = "@swc/core-linux-arm64-musl"; 10630 - version = "1.3.85"; 10459 + version = "1.3.86"; 10631 10460 src = fetchurl { 10632 - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.85.tgz"; 10633 - sha512 = "gfh7CfKavi076dbMBTzfdawSGcYfZ4+1Q+8aRkSesqepKHcIWIJti8Cf3zB4a6CHNhJe+VN0Gb7DEfumydAm1w=="; 10461 + url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.86.tgz"; 10462 + sha512 = "EUPfdbK4dUk/nkX3Vmv/47XH+DqHOa9JI0CTthvJ8/ZXei1MKDUsUc+tI1zMQX2uCuSkSWsEIEpCmA0tMwFhtw=="; 10634 10463 }; 10635 10464 }; 10636 - "@swc/core-linux-x64-gnu-1.3.85" = { 10465 + "@swc/core-linux-x64-gnu-1.3.86" = { 10637 10466 name = "_at_swc_slash_core-linux-x64-gnu"; 10638 10467 packageName = "@swc/core-linux-x64-gnu"; 10639 - version = "1.3.85"; 10468 + version = "1.3.86"; 10640 10469 src = fetchurl { 10641 - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.85.tgz"; 10642 - sha512 = "lWVqjHKzofb9q1qrBM4dLqO7CIisp08/xMS5Hz9DWex1gTc5F2b6yJO6Ceqwa256GMweJcdP6A5EvEFQAiZ5dg=="; 10470 + url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.86.tgz"; 10471 + sha512 = "snVZZWv8XgNVaKrTxtO3rUN+BbbB6I8Fqwe8zM/DWGJ096J13r89doQ48x5ZyO+bW4D48eZIWP5pdfSW7oBE3w=="; 10643 10472 }; 10644 10473 }; 10645 - "@swc/core-linux-x64-musl-1.3.85" = { 10474 + "@swc/core-linux-x64-musl-1.3.86" = { 10646 10475 name = "_at_swc_slash_core-linux-x64-musl"; 10647 10476 packageName = "@swc/core-linux-x64-musl"; 10648 - version = "1.3.85"; 10477 + version = "1.3.86"; 10649 10478 src = fetchurl { 10650 - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.85.tgz"; 10651 - sha512 = "EPJmlfqC05TUetnlErxNRyIp7Nc3B2w9abET6oQ/EgldeAeQnZ3M6svMViET/c2QSomgrU3rdP+Qcozkt62/4A=="; 10479 + url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.86.tgz"; 10480 + sha512 = "PnnksUJymEJkdnbV2orOSOSB441UqsxYbJge9zbr5UTRXUfWO3eFRV0iTBegjTlOQGbW6yN+YRSDkenTbmCI6g=="; 10652 10481 }; 10653 10482 }; 10654 - "@swc/core-win32-arm64-msvc-1.3.85" = { 10483 + "@swc/core-win32-arm64-msvc-1.3.86" = { 10655 10484 name = "_at_swc_slash_core-win32-arm64-msvc"; 10656 10485 packageName = "@swc/core-win32-arm64-msvc"; 10657 - version = "1.3.85"; 10486 + version = "1.3.86"; 10658 10487 src = fetchurl { 10659 - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.85.tgz"; 10660 - sha512 = "ibckJDZw8kNosciMexwk0z75ZyUhwtiFMV9rSBpup0opa7NNCUCoERCJ1e9LRyMdhsVUoLpZg/KZiHCdTw96hQ=="; 10488 + url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.86.tgz"; 10489 + sha512 = "XlGEGyHwLndm08VvgeAPGj40L+Hx575MQC+2fsyB1uSNUN+uf7fvke+wc7k50a92CaQe/8foLyIR5faayozEJA=="; 10661 10490 }; 10662 10491 }; 10663 - "@swc/core-win32-ia32-msvc-1.3.85" = { 10492 + "@swc/core-win32-ia32-msvc-1.3.86" = { 10664 10493 name = "_at_swc_slash_core-win32-ia32-msvc"; 10665 10494 packageName = "@swc/core-win32-ia32-msvc"; 10666 - version = "1.3.85"; 10495 + version = "1.3.86"; 10667 10496 src = fetchurl { 10668 - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.85.tgz"; 10669 - sha512 = "hY4MpHGUVQHL1T2kgRXOigDho4DTIpVPYzJ4uyy8VQRbS7GzN5XtvdGP/fA4zp8+2BQjcig+6J7Y92SY15ouNQ=="; 10497 + url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.86.tgz"; 10498 + sha512 = "U1BhZa1x9yn+wZGTQmt1cYR79a0FzW/wL6Jas1Pn0bykKLxdRU4mCeZt2P+T3buLm8jr8LpPWiCrbvr658PzwA=="; 10670 10499 }; 10671 10500 }; 10672 - "@swc/core-win32-x64-msvc-1.3.85" = { 10501 + "@swc/core-win32-x64-msvc-1.3.86" = { 10673 10502 name = "_at_swc_slash_core-win32-x64-msvc"; 10674 10503 packageName = "@swc/core-win32-x64-msvc"; 10675 - version = "1.3.85"; 10504 + version = "1.3.86"; 10676 10505 src = fetchurl { 10677 - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.85.tgz"; 10678 - sha512 = "ktxWOMFJ0iqKn6WUHtXqi4CS7xkyHmrRtjllGRuGqxmLmDX/HSOfuQ55Tm1KXKk5oHLacJkUbOSF2kBrpZ8dpg=="; 10506 + url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.86.tgz"; 10507 + sha512 = "wRoQUajqpE3wITHhZVj/6BPu/QwHriFHLHuJA+9y6PeGtUtTmntL42aBKXIFhfL767dYFtohyNg1uZ9eqbGyGQ=="; 10679 10508 }; 10680 10509 }; 10681 10510 "@swc/helpers-0.5.2" = { ··· 10687 10516 sha512 = "E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw=="; 10688 10517 }; 10689 10518 }; 10690 - "@swc/types-0.1.4" = { 10519 + "@swc/types-0.1.5" = { 10691 10520 name = "_at_swc_slash_types"; 10692 10521 packageName = "@swc/types"; 10693 - version = "0.1.4"; 10522 + version = "0.1.5"; 10694 10523 src = fetchurl { 10695 - url = "https://registry.npmjs.org/@swc/types/-/types-0.1.4.tgz"; 10696 - sha512 = "z/G02d+59gyyUb7KYhKi9jOhicek6QD2oMaotUyG+lUkybpXoV49dY9bj7Ah5Q+y7knK2jU67UTX9FyfGzaxQg=="; 10524 + url = "https://registry.npmjs.org/@swc/types/-/types-0.1.5.tgz"; 10525 + sha512 = "myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw=="; 10697 10526 }; 10698 10527 }; 10699 - "@swc/wasm-1.3.85" = { 10528 + "@swc/wasm-1.3.86" = { 10700 10529 name = "_at_swc_slash_wasm"; 10701 10530 packageName = "@swc/wasm"; 10702 - version = "1.3.85"; 10531 + version = "1.3.86"; 10703 10532 src = fetchurl { 10704 - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.85.tgz"; 10705 - sha512 = "lO2QTgKsq/CQSs0fbojiFFmbMo5Nv1cnDdbyLUpl7q+XXkFA/uBh5zF8Bgv5kqJo2Yoo+ydCbTq7GQLrmcjyMQ=="; 10533 + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.86.tgz"; 10534 + sha512 = "89PIZE4W9xVrPBlhuwjMYp/91HfNtjJynzHg51Ycvdm6qC9syB/BflOg9euKykDhpuzhVERxNl6mDzXSudV2pQ=="; 10706 10535 }; 10707 10536 }; 10708 10537 "@szmarczak/http-timer-1.1.2" = { ··· 11407 11236 sha512 = "ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="; 11408 11237 }; 11409 11238 }; 11410 - "@types/hast-2.3.5" = { 11239 + "@types/hast-2.3.6" = { 11411 11240 name = "_at_types_slash_hast"; 11412 11241 packageName = "@types/hast"; 11413 - version = "2.3.5"; 11242 + version = "2.3.6"; 11414 11243 src = fetchurl { 11415 - url = "https://registry.npmjs.org/@types/hast/-/hast-2.3.5.tgz"; 11416 - sha512 = "SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg=="; 11244 + url = "https://registry.npmjs.org/@types/hast/-/hast-2.3.6.tgz"; 11245 + sha512 = "47rJE80oqPmFdVDCD7IheXBrVdwuBgsYwoczFvKmwfo2Mzsnt+V9OONsYauFmICb6lQPpCuXYJWejBNs4pDJRg=="; 11417 11246 }; 11418 11247 }; 11419 11248 "@types/html-minifier-terser-6.1.0" = { ··· 11425 11254 sha512 = "oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg=="; 11426 11255 }; 11427 11256 }; 11428 - "@types/http-cache-semantics-4.0.1" = { 11257 + "@types/http-cache-semantics-4.0.2" = { 11429 11258 name = "_at_types_slash_http-cache-semantics"; 11430 11259 packageName = "@types/http-cache-semantics"; 11431 - version = "4.0.1"; 11260 + version = "4.0.2"; 11432 11261 src = fetchurl { 11433 - url = "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz"; 11434 - sha512 = "SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="; 11262 + url = "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.2.tgz"; 11263 + sha512 = "FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw=="; 11435 11264 }; 11436 11265 }; 11437 - "@types/http-errors-2.0.1" = { 11266 + "@types/http-errors-2.0.2" = { 11438 11267 name = "_at_types_slash_http-errors"; 11439 11268 packageName = "@types/http-errors"; 11440 - version = "2.0.1"; 11269 + version = "2.0.2"; 11441 11270 src = fetchurl { 11442 - url = "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz"; 11443 - sha512 = "/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ=="; 11271 + url = "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.2.tgz"; 11272 + sha512 = "lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg=="; 11444 11273 }; 11445 11274 }; 11446 - "@types/http-proxy-1.17.11" = { 11275 + "@types/http-proxy-1.17.12" = { 11447 11276 name = "_at_types_slash_http-proxy"; 11448 11277 packageName = "@types/http-proxy"; 11449 - version = "1.17.11"; 11278 + version = "1.17.12"; 11450 11279 src = fetchurl { 11451 - url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz"; 11452 - sha512 = "HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA=="; 11280 + url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.12.tgz"; 11281 + sha512 = "kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw=="; 11453 11282 }; 11454 11283 }; 11455 11284 "@types/inquirer-6.5.0" = { ··· 11542 11371 sha512 = "k4ih8ayQ65e26vhCxeMTKtZ808DzC0RFQ4unBvPEy9bcFhS4aPm3oXgWWZNmZ4u+H2WzHQDCNrRC5iNX+afiZw=="; 11543 11372 }; 11544 11373 }; 11545 - "@types/json-schema-7.0.12" = { 11546 - name = "_at_types_slash_json-schema"; 11547 - packageName = "@types/json-schema"; 11548 - version = "7.0.12"; 11549 - src = fetchurl { 11550 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz"; 11551 - sha512 = "Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA=="; 11552 - }; 11553 - }; 11554 11374 "@types/json-schema-7.0.13" = { 11555 11375 name = "_at_types_slash_json-schema"; 11556 11376 packageName = "@types/json-schema"; ··· 11740 11560 sha512 = "qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg=="; 11741 11561 }; 11742 11562 }; 11743 - "@types/node-14.18.60" = { 11563 + "@types/node-14.18.62" = { 11744 11564 name = "_at_types_slash_node"; 11745 11565 packageName = "@types/node"; 11746 - version = "14.18.60"; 11566 + version = "14.18.62"; 11747 11567 src = fetchurl { 11748 - url = "https://registry.npmjs.org/@types/node/-/node-14.18.60.tgz"; 11749 - sha512 = "F2dfYDznasZ6XfuWvTmQcrElTHfxCdC+F23WCcuAJaIrMIhhBUSARJQdy0lUY+MPDNLqGvTo8/IuiF+QX64IHQ=="; 11568 + url = "https://registry.npmjs.org/@types/node/-/node-14.18.62.tgz"; 11569 + sha512 = "53Fhb08qfKwSNCIUtysIqw0ye+v1d5QCdL2kl8liKQFlOZTAo+nEYr/FztzMaHBFwB5H0ugF0PF0gmtojaNNiQ=="; 11750 11570 }; 11751 11571 }; 11752 11572 "@types/node-15.14.9" = { ··· 11776 11596 sha512 = "XAMpaw1s1+6zM+jn2tmw8MyaRDIJfXxqmIQIS0HfoGYPuf7dUWeiUKopwq13KFX9lEp1+THGtlaaYx39Nxr58g=="; 11777 11597 }; 11778 11598 }; 11779 - "@types/node-16.18.51" = { 11599 + "@types/node-16.18.53" = { 11780 11600 name = "_at_types_slash_node"; 11781 11601 packageName = "@types/node"; 11782 - version = "16.18.51"; 11602 + version = "16.18.53"; 11783 11603 src = fetchurl { 11784 - url = "https://registry.npmjs.org/@types/node/-/node-16.18.51.tgz"; 11785 - sha512 = "LKA7ZhY30I8PiUOzBzhtnIULQTACpiEpPXLiYMWyS+tPAORf+rmXUadHZXB/KFrFyMjeHeKc1GFvLd+3f7LE3w=="; 11604 + url = "https://registry.npmjs.org/@types/node/-/node-16.18.53.tgz"; 11605 + sha512 = "vVmHeo4tpF8zsknALU90Hh24VueYdu45ZlXzYWFbom61YR4avJqTFDC3QlWzjuTdAv6/3xHaxiO9NrtVZXrkmw=="; 11786 11606 }; 11787 11607 }; 11788 11608 "@types/node-16.9.1" = { ··· 11794 11614 sha512 = "QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g=="; 11795 11615 }; 11796 11616 }; 11797 - "@types/node-18.17.16" = { 11617 + "@types/node-18.17.18" = { 11798 11618 name = "_at_types_slash_node"; 11799 11619 packageName = "@types/node"; 11800 - version = "18.17.16"; 11620 + version = "18.17.18"; 11801 11621 src = fetchurl { 11802 - url = "https://registry.npmjs.org/@types/node/-/node-18.17.16.tgz"; 11803 - sha512 = "e0zgs7qe1XH/X3KEPnldfkD07LH9O1B9T31U8qoO7lqGSjj3/IrBuvqMeJ1aYejXRK3KOphIUDw6pLIplEW17A=="; 11622 + url = "https://registry.npmjs.org/@types/node/-/node-18.17.18.tgz"; 11623 + sha512 = "/4QOuy3ZpV7Ya1GTRz5CYSz3DgkKpyUptXuQ5PPce7uuyJAOR7r9FhkmxJfvcNUXyklbC63a+YvB3jxy7s9ngw=="; 11804 11624 }; 11805 11625 }; 11806 11626 "@types/node-20.4.7" = { ··· 11812 11632 sha512 = "bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g=="; 11813 11633 }; 11814 11634 }; 11815 - "@types/node-20.6.1" = { 11635 + "@types/node-20.6.3" = { 11816 11636 name = "_at_types_slash_node"; 11817 11637 packageName = "@types/node"; 11818 - version = "20.6.1"; 11638 + version = "20.6.3"; 11819 11639 src = fetchurl { 11820 - url = "https://registry.npmjs.org/@types/node/-/node-20.6.1.tgz"; 11821 - sha512 = "4LcJvuXQlv4lTHnxwyHQZ3uR9Zw2j7m1C9DfuwoTFQQP4Pmu04O6IfLYgMmHoOCt0nosItLLZAH+sOrRE0Bo8g=="; 11640 + url = "https://registry.npmjs.org/@types/node/-/node-20.6.3.tgz"; 11641 + sha512 = "HksnYH4Ljr4VQgEy2lTStbCKv/P590tmPe5HqOnv9Gprffgv5WXAY+Y5Gqniu0GGqeTCUdBnzC3QSrzPkBkAMA=="; 11822 11642 }; 11823 11643 }; 11824 11644 "@types/node-6.14.13" = { ··· 11875 11695 sha512 = "kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw=="; 11876 11696 }; 11877 11697 }; 11878 - "@types/prop-types-15.7.5" = { 11698 + "@types/prop-types-15.7.6" = { 11879 11699 name = "_at_types_slash_prop-types"; 11880 11700 packageName = "@types/prop-types"; 11881 - version = "15.7.5"; 11701 + version = "15.7.6"; 11882 11702 src = fetchurl { 11883 - url = "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"; 11884 - sha512 = "JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="; 11703 + url = "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.6.tgz"; 11704 + sha512 = "RK/kBbYOQQHLYj9Z95eh7S6t7gq4Ojt/NT8HTk8bWVhA5DaF+5SMnxHKkP4gPNN3wAZkKP+VjAf0ebtYzf+fxg=="; 11885 11705 }; 11886 11706 }; 11887 11707 "@types/pug-2.0.6" = { ··· 11911 11731 sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; 11912 11732 }; 11913 11733 }; 11914 - "@types/react-18.2.21" = { 11734 + "@types/react-18.2.22" = { 11915 11735 name = "_at_types_slash_react"; 11916 11736 packageName = "@types/react"; 11917 - version = "18.2.21"; 11737 + version = "18.2.22"; 11918 11738 src = fetchurl { 11919 - url = "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz"; 11920 - sha512 = "neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA=="; 11739 + url = "https://registry.npmjs.org/@types/react/-/react-18.2.22.tgz"; 11740 + sha512 = "60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA=="; 11921 11741 }; 11922 11742 }; 11923 11743 "@types/readdir-glob-1.1.1" = { ··· 12361 12181 sha512 = "4PYk4LeIWPTjGtgnxvB0Hdw7aqCau843/96K2xX3z9pa0Hn//pUnZBMz2jrs5MRseCm1Li1LdQAK3u8/vaUnVQ=="; 12362 12182 }; 12363 12183 }; 12364 - "@vercel/next-4.0.5" = { 12184 + "@vercel/next-4.0.6" = { 12365 12185 name = "_at_vercel_slash_next"; 12366 12186 packageName = "@vercel/next"; 12367 - version = "4.0.5"; 12187 + version = "4.0.6"; 12368 12188 src = fetchurl { 12369 - url = "https://registry.npmjs.org/@vercel/next/-/next-4.0.5.tgz"; 12370 - sha512 = "wdRiMqfr//KPEzEJYlQ0Ri4SFbPdnoEJdpktdmaxAK7bREvkJeeCjFAkqBDGb1OiqjyKolxF1xwMewRvLj80MQ=="; 12189 + url = "https://registry.npmjs.org/@vercel/next/-/next-4.0.6.tgz"; 12190 + sha512 = "SUsR+bbx4flgVYVmyOCx85PNZyd2my8LQY5uUiA1FDN3QryXL+OkQ7guS6So5gCHUEhYPHE6jPifYRgQWh73AA=="; 12371 12191 }; 12372 12192 }; 12373 12193 "@vercel/nft-0.22.5" = { ··· 12406 12226 sha512 = "TyCloruHLi5kBrFPTPDVcQoDDYHG3VfA9ZngNBpqHXQqhR4VsymTh8wV0995faKMPiHcQFbJy7WArhxC/T0Png=="; 12407 12227 }; 12408 12228 }; 12409 - "@vercel/remix-builder-2.0.5" = { 12229 + "@vercel/remix-builder-2.0.6" = { 12410 12230 name = "_at_vercel_slash_remix-builder"; 12411 12231 packageName = "@vercel/remix-builder"; 12412 - version = "2.0.5"; 12232 + version = "2.0.6"; 12413 12233 src = fetchurl { 12414 - url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-2.0.5.tgz"; 12415 - sha512 = "EzqyE/B4dNhKYmukOGBDrRl5Z/J7UkX8Q9DXOr0EBR1fs09l+T/qxLshk7rLU2ubl1oDHiIuxOYQWHVb2vtdFw=="; 12234 + url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-2.0.6.tgz"; 12235 + sha512 = "STWEL91loQwCdphst1SVnnrBPbXRaiYinOeviSYX4dZ+8d8T/AyiYpRtrdSs9TgwIg8vFbtgGguzwzUKjXLAAw=="; 12416 12236 }; 12417 12237 }; 12418 12238 "@vercel/routing-utils-3.0.0" = { ··· 13207 13027 sha512 = "YYRBpDCBLeYJBO+sVapLRkEE/+wrjv1O03IEybkqyls3sCZqhu3ZXjJwMSMCgFEyYP2MrdZvqL/dz2RBnULTbA=="; 13208 13028 }; 13209 13029 }; 13210 - "@webpack-cli/configtest-1.2.0" = { 13211 - name = "_at_webpack-cli_slash_configtest"; 13212 - packageName = "@webpack-cli/configtest"; 13213 - version = "1.2.0"; 13214 - src = fetchurl { 13215 - url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz"; 13216 - sha512 = "4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg=="; 13217 - }; 13218 - }; 13219 13030 "@webpack-cli/configtest-2.1.1" = { 13220 13031 name = "_at_webpack-cli_slash_configtest"; 13221 13032 packageName = "@webpack-cli/configtest"; ··· 13225 13036 sha512 = "wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw=="; 13226 13037 }; 13227 13038 }; 13228 - "@webpack-cli/info-1.5.0" = { 13229 - name = "_at_webpack-cli_slash_info"; 13230 - packageName = "@webpack-cli/info"; 13231 - version = "1.5.0"; 13232 - src = fetchurl { 13233 - url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz"; 13234 - sha512 = "e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ=="; 13235 - }; 13236 - }; 13237 13039 "@webpack-cli/info-2.0.2" = { 13238 13040 name = "_at_webpack-cli_slash_info"; 13239 13041 packageName = "@webpack-cli/info"; ··· 13241 13043 src = fetchurl { 13242 13044 url = "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz"; 13243 13045 sha512 = "zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A=="; 13244 - }; 13245 - }; 13246 - "@webpack-cli/serve-1.7.0" = { 13247 - name = "_at_webpack-cli_slash_serve"; 13248 - packageName = "@webpack-cli/serve"; 13249 - version = "1.7.0"; 13250 - src = fetchurl { 13251 - url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz"; 13252 - sha512 = "oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q=="; 13253 13046 }; 13254 13047 }; 13255 13048 "@webpack-cli/serve-2.0.5" = { ··· 14269 14062 sha512 = "GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg=="; 14270 14063 }; 14271 14064 }; 14272 - "all-package-names-2.0.737" = { 14065 + "all-package-names-2.0.741" = { 14273 14066 name = "all-package-names"; 14274 14067 packageName = "all-package-names"; 14275 - version = "2.0.737"; 14068 + version = "2.0.741"; 14276 14069 src = fetchurl { 14277 - url = "https://registry.npmjs.org/all-package-names/-/all-package-names-2.0.737.tgz"; 14278 - sha512 = "c6kaqYGKLroNZ+zPKXGn4fPD4Vh7ZBrmPABMpVrL4g4KEqlo8ojiBcchoDMoE3yTWMw1i51jm69by/PM+kKYmw=="; 14070 + url = "https://registry.npmjs.org/all-package-names/-/all-package-names-2.0.741.tgz"; 14071 + sha512 = "s+DTun9zOUY6aRPxux0SIrn3PNu0HClihChRSfqTeJON8dDvJFp6nqcXuUxkw1jdb5iWEwjFFz4HeX7Cq6zKOw=="; 14279 14072 }; 14280 14073 }; 14281 14074 "amdefine-1.0.1" = { ··· 14854 14647 sha512 = "+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw=="; 14855 14648 }; 14856 14649 }; 14857 - "archiver-6.0.1" = { 14858 - name = "archiver"; 14859 - packageName = "archiver"; 14860 - version = "6.0.1"; 14861 - src = fetchurl { 14862 - url = "https://registry.npmjs.org/archiver/-/archiver-6.0.1.tgz"; 14863 - sha512 = "CXGy4poOLBKptiZH//VlWdFuUC1RESbdZjGjILwBuZ73P7WkAUN0htfSfBq/7k6FRFlpu7bg4JOkj1vU9G6jcQ=="; 14864 - }; 14865 - }; 14866 14650 "archiver-utils-2.1.0" = { 14867 14651 name = "archiver-utils"; 14868 14652 packageName = "archiver-utils"; ··· 14881 14665 sha512 = "KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw=="; 14882 14666 }; 14883 14667 }; 14884 - "archiver-utils-4.0.1" = { 14885 - name = "archiver-utils"; 14886 - packageName = "archiver-utils"; 14887 - version = "4.0.1"; 14888 - src = fetchurl { 14889 - url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-4.0.1.tgz"; 14890 - sha512 = "Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg=="; 14891 - }; 14892 - }; 14893 14668 "archy-1.0.0" = { 14894 14669 name = "archy"; 14895 14670 packageName = "archy"; ··· 15448 15223 sha512 = "zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A=="; 15449 15224 }; 15450 15225 }; 15451 - "assert-2.1.0" = { 15452 - name = "assert"; 15453 - packageName = "assert"; 15454 - version = "2.1.0"; 15455 - src = fetchurl { 15456 - url = "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz"; 15457 - sha512 = "eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw=="; 15458 - }; 15459 - }; 15460 15226 "assert-never-1.2.1" = { 15461 15227 name = "assert-never"; 15462 15228 packageName = "assert-never"; ··· 15752 15518 src = fetchurl { 15753 15519 url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.4.0.tgz"; 15754 15520 sha512 = "eJFZ1YhRR8UN8eBLoNzcDPcy/jqjsg6I1AP+KvWQX80BqOSW1oJPJXDylPUEeMr2ZQvHgnQ//Lp6f3RQ1zI7HA=="; 15755 - }; 15756 - }; 15757 - "async-request-handler-0.9.0" = { 15758 - name = "async-request-handler"; 15759 - packageName = "async-request-handler"; 15760 - version = "0.9.0"; 15761 - src = fetchurl { 15762 - url = "https://registry.npmjs.org/async-request-handler/-/async-request-handler-0.9.0.tgz"; 15763 - sha512 = "lsi3nHzXXRdC49L/2jpWaNU2NfQwFNYm5PepjSD9duASlsA+O+xPrqaIMCQIIAMjGLMImkgPGLy/DEBwHTkceA=="; 15764 15521 }; 15765 15522 }; 15766 15523 "async-retry-1.3.3" = { ··· 15817 15574 sha512 = "+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="; 15818 15575 }; 15819 15576 }; 15820 - "atlassian-openapi-1.0.17" = { 15821 - name = "atlassian-openapi"; 15822 - packageName = "atlassian-openapi"; 15823 - version = "1.0.17"; 15824 - src = fetchurl { 15825 - url = "https://registry.npmjs.org/atlassian-openapi/-/atlassian-openapi-1.0.17.tgz"; 15826 - sha512 = "8aW0Xgl9mVdL9dCABSZAvCayMPyh6uVu86UzOat8Kc1qDMUtXn2OxcwDsJfm/qCtBSeZ+GE/PkFxx3ZRIp3hFg=="; 15827 - }; 15828 - }; 15829 15577 "atob-2.1.2" = { 15830 15578 name = "atob"; 15831 15579 packageName = "atob"; ··· 15934 15682 sha512 = "bSOfBCVPQ/0NWYpPl34MgqMbJf0eO6PsyVlmjbStlba+98hnE6X7z67tawBRot7S+qH3L49KW2u6dfJjvhDfdQ=="; 15935 15683 }; 15936 15684 }; 15937 - "aws-sdk-2.1459.0" = { 15685 + "aws-sdk-2.1462.0" = { 15938 15686 name = "aws-sdk"; 15939 15687 packageName = "aws-sdk"; 15940 - version = "2.1459.0"; 15688 + version = "2.1462.0"; 15941 15689 src = fetchurl { 15942 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1459.0.tgz"; 15943 - sha512 = "My45PgQYhRTh6fOeZ94ELUoXzza/6gTy0J22aK4iy0DEA+uE5gjr1VthnIwbLYNMeEqn8xwJZuNJqvi/WaUUcQ=="; 15690 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1462.0.tgz"; 15691 + sha512 = "gEcp/YWUp0zrM/LujI3cTLbOTK6XLwGSHWQII57jjRvjsIMacLomnIcd7fGKSfREAIHr5saexISRsnXhfI+Vgw=="; 15944 15692 }; 15945 15693 }; 15946 15694 "aws-sign2-0.7.0" = { ··· 16537 16285 sha512 = "pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g=="; 16538 16286 }; 16539 16287 }; 16540 - "better-sqlite3-8.6.0" = { 16541 - name = "better-sqlite3"; 16542 - packageName = "better-sqlite3"; 16543 - version = "8.6.0"; 16544 - src = fetchurl { 16545 - url = "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.6.0.tgz"; 16546 - sha512 = "jwAudeiTMTSyby+/SfbHDebShbmC2MCH8mU2+DXi0WJfv13ypEJm47cd3kljmy/H130CazEvkf2Li//ewcMJ1g=="; 16547 - }; 16548 - }; 16549 16288 "bfile-0.2.3" = { 16550 16289 name = "bfile"; 16551 16290 packageName = "bfile"; ··· 18247 17986 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 18248 17987 }; 18249 17988 }; 18250 - "caniuse-lite-1.0.30001534" = { 17989 + "caniuse-lite-1.0.30001538" = { 18251 17990 name = "caniuse-lite"; 18252 17991 packageName = "caniuse-lite"; 18253 - version = "1.0.30001534"; 17992 + version = "1.0.30001538"; 18254 17993 src = fetchurl { 18255 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001534.tgz"; 18256 - sha512 = "vlPVrhsCS7XaSh2VvWluIQEzVhefrUQcEsQWSS5A5V+dM07uv1qHeQzAOTGIMy9i3e9bH15+muvI/UHojVgS/Q=="; 17994 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz"; 17995 + sha512 = "HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw=="; 18257 17996 }; 18258 17997 }; 18259 17998 "canvas-2.11.2" = { ··· 18382 18121 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 18383 18122 }; 18384 18123 }; 18385 - "cdk8s-2.64.11" = { 18124 + "cdk8s-2.64.16" = { 18386 18125 name = "cdk8s"; 18387 18126 packageName = "cdk8s"; 18388 - version = "2.64.11"; 18127 + version = "2.64.16"; 18389 18128 src = fetchurl { 18390 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.64.11.tgz"; 18391 - sha512 = "n5uVoeuVe/mpCnC3fQX+94NOE35X8I7YwoIlgmfCJ5QCh8XZGkQ7N4Fr+4r4ZJVLEjI54P74T5AYJNd1Zj5U8Q=="; 18129 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.64.16.tgz"; 18130 + sha512 = "5kz3rha4JpOwOmnrbFqM/IH+8ou10XM5gkn6xtRQ1Cvfp5m6u1DEgP/ZwFeF1INVqUMiU/CsTvKCMQi3u84AMA=="; 18392 18131 }; 18393 18132 }; 18394 - "cdk8s-plus-25-2.22.11" = { 18133 + "cdk8s-plus-25-2.22.14" = { 18395 18134 name = "cdk8s-plus-25"; 18396 18135 packageName = "cdk8s-plus-25"; 18397 - version = "2.22.11"; 18136 + version = "2.22.14"; 18398 18137 src = fetchurl { 18399 - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.22.11.tgz"; 18400 - sha512 = "CQGZ2CkjRfhHMjvm5bxX7/1p6SILJdP7OnJQk2VWgfZZ+0jP2kB8jM0M8Gflj0rWgQRneqjropeIgrjQaBeOBQ=="; 18138 + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.22.14.tgz"; 18139 + sha512 = "DURIxBVZqw3VfT9xh9vrTbM9M5X9nzkllwuw1haJZlCglXhLZ2JRu22L6R0bdspJFAom6+HoAdFzjApLKS9HfA=="; 18401 18140 }; 18402 18141 }; 18403 18142 "cdktf-0.18.0" = { ··· 18884 18623 src = fetchurl { 18885 18624 url = "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.7.tgz"; 18886 18625 sha512 = "6+mJuFXwTMU6I3vYLs6IL8A1DyQTPjCfIL971X0aMPVGRbGnNfl6i6Cl0NMbxi2bRYLGESt9T2ZIMRM5PAEcIQ=="; 18887 - }; 18888 - }; 18889 - "chromium-pickle-js-0.2.0" = { 18890 - name = "chromium-pickle-js"; 18891 - packageName = "chromium-pickle-js"; 18892 - version = "0.2.0"; 18893 - src = fetchurl { 18894 - url = "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz"; 18895 - sha512 = "1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw=="; 18896 18626 }; 18897 18627 }; 18898 18628 "chunk-store-stream-4.3.0" = { ··· 20308 20038 sha512 = "D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg=="; 20309 20039 }; 20310 20040 }; 20311 - "compress-commons-5.0.1" = { 20312 - name = "compress-commons"; 20313 - packageName = "compress-commons"; 20314 - version = "5.0.1"; 20315 - src = fetchurl { 20316 - url = "https://registry.npmjs.org/compress-commons/-/compress-commons-5.0.1.tgz"; 20317 - sha512 = "MPh//1cERdLtqwO3pOFLeXtpuai0Y2WCd5AhtKxznqM7WtaMYaOEMSgn45d9D10sIHSfIKE603HlOp8OPGrvag=="; 20318 - }; 20319 - }; 20320 20041 "compressible-2.0.18" = { 20321 20042 name = "compressible"; 20322 20043 packageName = "compressible"; ··· 20360 20081 src = fetchurl { 20361 20082 url = "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz"; 20362 20083 sha512 = "MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A=="; 20363 - }; 20364 - }; 20365 - "conf-10.2.0" = { 20366 - name = "conf"; 20367 - packageName = "conf"; 20368 - version = "10.2.0"; 20369 - src = fetchurl { 20370 - url = "https://registry.npmjs.org/conf/-/conf-10.2.0.tgz"; 20371 - sha512 = "8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg=="; 20372 20084 }; 20373 20085 }; 20374 20086 "conf-11.0.2" = { ··· 20639 20351 src = fetchurl { 20640 20352 url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz"; 20641 20353 sha512 = "FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="; 20642 - }; 20643 - }; 20644 - "content-security-policy-parser-0.4.1" = { 20645 - name = "content-security-policy-parser"; 20646 - packageName = "content-security-policy-parser"; 20647 - version = "0.4.1"; 20648 - src = fetchurl { 20649 - url = "https://registry.npmjs.org/content-security-policy-parser/-/content-security-policy-parser-0.4.1.tgz"; 20650 - sha512 = "NNJS8XPnx3OKr/CUOSwDSJw+lWTrZMYnclLKj0Y9CYOfJNJTWLFGPg3u2hYgbXMXKVRkZR2fbyReNQ1mUff/Qg=="; 20651 20354 }; 20652 20355 }; 20653 20356 "content-type-1.0.5" = { ··· 21243 20946 src = fetchurl { 21244 20947 url = "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.3.tgz"; 21245 20948 sha512 = "NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw=="; 21246 - }; 21247 - }; 21248 - "crc32-stream-5.0.0" = { 21249 - name = "crc32-stream"; 21250 - packageName = "crc32-stream"; 21251 - version = "5.0.0"; 21252 - src = fetchurl { 21253 - url = "https://registry.npmjs.org/crc32-stream/-/crc32-stream-5.0.0.tgz"; 21254 - sha512 = "B0EPa1UK+qnpBZpG+7FgPCu0J2ETLpXq09o9BkLkEAhdB6Z61Qo4pJ3JYu0c+Qi+/SAL7QThqnzS06pmSSyZaw=="; 21255 20949 }; 21256 20950 }; 21257 20951 "create-ecdh-4.0.4" = { ··· 22901 22595 sha512 = "2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA=="; 22902 22596 }; 22903 22597 }; 22904 - "dayjs-1.11.9" = { 22598 + "dayjs-1.11.10" = { 22905 22599 name = "dayjs"; 22906 22600 packageName = "dayjs"; 22907 - version = "1.11.9"; 22601 + version = "1.11.10"; 22908 22602 src = fetchurl { 22909 - url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz"; 22910 - sha512 = "QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA=="; 22603 + url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz"; 22604 + sha512 = "vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ=="; 22911 22605 }; 22912 22606 }; 22913 22607 "dayjs-1.8.36" = { ··· 23909 23603 sha512 = "EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q=="; 23910 23604 }; 23911 23605 }; 23912 - "diff2html-3.4.42" = { 23606 + "diff2html-3.4.43" = { 23913 23607 name = "diff2html"; 23914 23608 packageName = "diff2html"; 23915 - version = "3.4.42"; 23609 + version = "3.4.43"; 23916 23610 src = fetchurl { 23917 - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.42.tgz"; 23918 - sha512 = "ja12y3PsOutadumdb/f3SUV+9+kgLBjUe6qY74amONUE0JD5aMBjkzrrxKg/6fxfJIQ8U03S3Niau0uBAz6iHQ=="; 23611 + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.43.tgz"; 23612 + sha512 = "cBiJKvyhY3bv+q9VHA7YyNdPk1PA+P9lArpp0MJlcpn1x4eiXYtK3ILNpcHXfgPTCdjjCilGvX9qBelGWtyMCg=="; 23919 23613 }; 23920 23614 }; 23921 23615 "diffie-hellman-5.0.3" = { ··· 24438 24132 src = fetchurl { 24439 24133 url = "https://registry.npmjs.org/dotenv/-/dotenv-7.0.0.tgz"; 24440 24134 sha512 = "M3NhsLbV1i6HuGzBUH8vXrtxOk+tWmzWKDMbAVSUp3Zsjm7ywFeuwrUXhmhQyRK1q5B5GGy7hcXPbj3bnfZg2g=="; 24441 - }; 24442 - }; 24443 - "dotenv-8.2.0" = { 24444 - name = "dotenv"; 24445 - packageName = "dotenv"; 24446 - version = "8.2.0"; 24447 - src = fetchurl { 24448 - url = "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz"; 24449 - sha512 = "8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw=="; 24450 24135 }; 24451 24136 }; 24452 24137 "dotenv-8.6.0" = { ··· 24764 24449 sha512 = "XofXdikjYI7MVBcnXeoOvRR+yFFFHOLs3J7PF5KYQweigtgLshcH4W660PsvHr4lYZ03JBpLyEcUB8DzHZ+BNw=="; 24765 24450 }; 24766 24451 }; 24767 - "electron-to-chromium-1.4.523" = { 24452 + "electron-to-chromium-1.4.525" = { 24768 24453 name = "electron-to-chromium"; 24769 24454 packageName = "electron-to-chromium"; 24770 - version = "1.4.523"; 24455 + version = "1.4.525"; 24771 24456 src = fetchurl { 24772 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.523.tgz"; 24773 - sha512 = "9AreocSUWnzNtvLcbpng6N+GkXnCcBR80IQkxRC9Dfdyg4gaWNUPBujAHUpKkiUkoSoR9UlhA4zD/IgBklmhzg=="; 24457 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.525.tgz"; 24458 + sha512 = "GIZ620hDK4YmIqAWkscG4W6RwY6gOx1y5J6f4JUQwctiJrqH2oxZYU4mXHi35oV32tr630UcepBzSBGJ/WYcZA=="; 24774 24459 }; 24775 24460 }; 24776 24461 "elegant-spinner-1.0.1" = { ··· 24909 24594 sha512 = "AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ=="; 24910 24595 }; 24911 24596 }; 24912 - "encode-registry-3.0.0" = { 24597 + "encode-registry-3.0.1" = { 24913 24598 name = "encode-registry"; 24914 24599 packageName = "encode-registry"; 24915 - version = "3.0.0"; 24600 + version = "3.0.1"; 24916 24601 src = fetchurl { 24917 - url = "https://registry.npmjs.org/encode-registry/-/encode-registry-3.0.0.tgz"; 24918 - sha512 = "2fRYji8K6FwYuQ6EPBKR/J9mcqb7kIoNqt1vGvJr3NrvKfncRiNm00Oxo6gi/YJF8R5Sp2bNFSFdGKTG0rje1Q=="; 24602 + url = "https://registry.npmjs.org/encode-registry/-/encode-registry-3.0.1.tgz"; 24603 + sha512 = "6qOwkl1g0fv0DN3Y3ggr2EaZXN71aoAqPp3p/pVaWSBSIo+YjLOWN61Fva43oVyQNPf7kgm8lkudzlzojwE2jw=="; 24919 24604 }; 24920 24605 }; 24921 24606 "encodeurl-1.0.2" = { ··· 26925 26610 sha512 = "QOPh/iXykNDCAzUual1imSrn2aDakzCGUp2QmxVREr0llajXygroUWlT9sQXh1zKzbNp+a+i/xK375ZeBFiNJA=="; 26926 26611 }; 26927 26612 }; 26928 - "expo-modules-autolinking-1.5.2" = { 26613 + "expo-modules-autolinking-1.6.0" = { 26929 26614 name = "expo-modules-autolinking"; 26930 26615 packageName = "expo-modules-autolinking"; 26931 - version = "1.5.2"; 26616 + version = "1.6.0"; 26932 26617 src = fetchurl { 26933 - url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.5.2.tgz"; 26934 - sha512 = "ckAowvTQo7fvVTgUBCoCKNsM95/cuVp11PxMS1v2do/vvxvAersSFj8MzLjB2Xt87MrX5AQ9RCXSt2VYZIkuGw=="; 26618 + url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.6.0.tgz"; 26619 + sha512 = "1SRzajlW7vLvydhUJnCDYdJXeu80IpNciMvH1YHZRvMnb21+UGhRkBTuqBfWEGcyaPVZxDVN/OWfU26TGa8hJA=="; 26935 26620 }; 26936 26621 }; 26937 26622 "expo-modules-core-1.2.7" = { ··· 27031 26716 src = fetchurl { 27032 26717 url = "https://registry.npmjs.org/express-history-api-fallback/-/express-history-api-fallback-2.2.1.tgz"; 27033 26718 sha512 = "swxwm3aP8vrOOvlzOdZvHlSZtJGwHKaY94J6AkrAgCTmcbko3IRwbkhLv2wKV1WeZhjxX58aLMpP3atDBnKuZg=="; 27034 - }; 27035 - }; 27036 - "express-intercept-1.1.0" = { 27037 - name = "express-intercept"; 27038 - packageName = "express-intercept"; 27039 - version = "1.1.0"; 27040 - src = fetchurl { 27041 - url = "https://registry.npmjs.org/express-intercept/-/express-intercept-1.1.0.tgz"; 27042 - sha512 = "x1jgCJ8oNmZBhcsytRVnQd0iEuM1vYk3QBhxozjN5bwtsUyTbRhx7WvC+61/pcL8SaApwFDVxMZuMf8qdSOiHQ=="; 27043 26719 }; 27044 26720 }; 27045 26721 "express-interceptor-1.2.0" = { ··· 27348 27024 sha512 = "WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg=="; 27349 27025 }; 27350 27026 }; 27351 - "fast-deep-equal-2.0.1" = { 27352 - name = "fast-deep-equal"; 27353 - packageName = "fast-deep-equal"; 27354 - version = "2.0.1"; 27355 - src = fetchurl { 27356 - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz"; 27357 - sha512 = "bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w=="; 27358 - }; 27359 - }; 27360 27027 "fast-deep-equal-3.1.3" = { 27361 27028 name = "fast-deep-equal"; 27362 27029 packageName = "fast-deep-equal"; ··· 28365 28032 sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 28366 28033 }; 28367 28034 }; 28368 - "flatted-3.2.7" = { 28035 + "flatted-3.2.9" = { 28369 28036 name = "flatted"; 28370 28037 packageName = "flatted"; 28371 - version = "3.2.7"; 28038 + version = "3.2.9"; 28372 28039 src = fetchurl { 28373 - url = "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz"; 28374 - sha512 = "5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ=="; 28040 + url = "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz"; 28041 + sha512 = "36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ=="; 28375 28042 }; 28376 28043 }; 28377 28044 "flatten-0.0.1" = { ··· 28444 28111 src = fetchurl { 28445 28112 url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"; 28446 28113 sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 28114 + }; 28115 + }; 28116 + "follow-redirects-1.15.3" = { 28117 + name = "follow-redirects"; 28118 + packageName = "follow-redirects"; 28119 + version = "1.15.3"; 28120 + src = fetchurl { 28121 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz"; 28122 + sha512 = "1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q=="; 28447 28123 }; 28448 28124 }; 28449 28125 "follow-redirects-1.5.10" = { ··· 29040 28716 sha512 = "xNDktvwzSsXT8Xqnpz59VbuFwGHhtn1w+dS7QQ+wAu5cbH0p3WMGKU9Duf7cPna+nubhR+5ZG1MTl6/V6xgRgw=="; 29041 28717 }; 29042 28718 }; 29043 - "fswin-3.23.311" = { 29044 - name = "fswin"; 29045 - packageName = "fswin"; 29046 - version = "3.23.311"; 29047 - src = fetchurl { 29048 - url = "https://registry.npmjs.org/fswin/-/fswin-3.23.311.tgz"; 29049 - sha512 = "MKiaXljyEA7D9AXP1X0bCsgn1b1PEIo0P9pHKsxz6BLXZFIpfY1jYs8biRaVWlDEFkK10E3jD99mwpUZhVVCkQ=="; 29050 - }; 29051 - }; 29052 28719 "ftp-0.3.10" = { 29053 28720 name = "ftp"; 29054 28721 packageName = "ftp"; ··· 29137 28804 src = fetchurl { 29138 28805 url = "https://registry.npmjs.org/galactus/-/galactus-1.0.0.tgz"; 29139 28806 sha512 = "R1fam6D4CyKQGNlvJne4dkNF+PvUUl7TAJInvTGa9fti9qAv95quQz29GXapA4d8Ec266mJJxFVh82M4GIIGDQ=="; 29140 - }; 29141 - }; 29142 - "gar-1.0.4" = { 29143 - name = "gar"; 29144 - packageName = "gar"; 29145 - version = "1.0.4"; 29146 - src = fetchurl { 29147 - url = "https://registry.npmjs.org/gar/-/gar-1.0.4.tgz"; 29148 - sha512 = "w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w=="; 29149 28807 }; 29150 28808 }; 29151 28809 "gatsby-core-utils-4.12.0" = { ··· 29326 28984 src = fetchurl { 29327 28985 url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"; 29328 28986 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 29329 - }; 29330 - }; 29331 - "get-folder-size-2.0.1" = { 29332 - name = "get-folder-size"; 29333 - packageName = "get-folder-size"; 29334 - version = "2.0.1"; 29335 - src = fetchurl { 29336 - url = "https://registry.npmjs.org/get-folder-size/-/get-folder-size-2.0.1.tgz"; 29337 - sha512 = "+CEb+GDCM7tkOS2wdMKTn9vU7DgnKUTuDlehkNJKNSovdCOVxs14OfKCk4cvSaR3za4gj+OBdl9opPN9xrJ0zA=="; 29338 28987 }; 29339 28988 }; 29340 28989 "get-installed-path-2.1.1" = { ··· 30121 29770 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 30122 29771 }; 30123 29772 }; 30124 - "globals-13.21.0" = { 29773 + "globals-13.22.0" = { 30125 29774 name = "globals"; 30126 29775 packageName = "globals"; 30127 - version = "13.21.0"; 29776 + version = "13.22.0"; 30128 29777 src = fetchurl { 30129 - url = "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz"; 30130 - sha512 = "ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg=="; 29778 + url = "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz"; 29779 + sha512 = "H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw=="; 30131 29780 }; 30132 29781 }; 30133 29782 "globals-9.18.0" = { ··· 30544 30193 sha512 = "KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw=="; 30545 30194 }; 30546 30195 }; 30547 - "graphql-16.8.0" = { 30196 + "graphql-16.8.1" = { 30548 30197 name = "graphql"; 30549 30198 packageName = "graphql"; 30550 - version = "16.8.0"; 30199 + version = "16.8.1"; 30551 30200 src = fetchurl { 30552 - url = "https://registry.npmjs.org/graphql/-/graphql-16.8.0.tgz"; 30553 - sha512 = "0oKGaR+y3qcS5mCu1vb7KG+a89vjn06C7Ihq/dDl3jA+A8B3TKomvi3CiEcVLJQGalbu8F52LxkOym7U5sSfbg=="; 30201 + url = "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz"; 30202 + sha512 = "59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw=="; 30554 30203 }; 30555 30204 }; 30556 30205 "graphql-config-3.0.3" = { ··· 30571 30220 sha512 = "7TPxOrlbiG0JplSZYCyxn2XQtqVhXomEjXUmWJVSS5ET1nPhOJSsIb/WTwqWhcYX6G0RlHXSj9PLtGTKmxLNGg=="; 30572 30221 }; 30573 30222 }; 30574 - "graphql-language-service-5.1.7" = { 30223 + "graphql-language-service-5.2.0" = { 30575 30224 name = "graphql-language-service"; 30576 30225 packageName = "graphql-language-service"; 30577 - version = "5.1.7"; 30226 + version = "5.2.0"; 30578 30227 src = fetchurl { 30579 - url = "https://registry.npmjs.org/graphql-language-service/-/graphql-language-service-5.1.7.tgz"; 30580 - sha512 = "xkawYMJeoNYGhT+SpSH3c2qf6HpGHQ/duDmrseVHBpVCrXAiGnliXGSCC4jyMGgZQ05GytsZ12p0nUo7s6lSSw=="; 30228 + url = "https://registry.npmjs.org/graphql-language-service/-/graphql-language-service-5.2.0.tgz"; 30229 + sha512 = "o/ZgTS0pBxWm3hSF4+6GwiV1//DxzoLWEbS38+jqpzzy1d/QXBidwQuVYTOksclbtOJZ3KR/tZ8fi/tI6VpVMg=="; 30581 30230 }; 30582 30231 }; 30583 - "graphql-language-service-server-2.11.3" = { 30232 + "graphql-language-service-server-2.11.4" = { 30584 30233 name = "graphql-language-service-server"; 30585 30234 packageName = "graphql-language-service-server"; 30586 - version = "2.11.3"; 30587 - src = fetchurl { 30588 - url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.11.3.tgz"; 30589 - sha512 = "pkH29NNjbus/lmlzGW5SOlL6iVvtj46ImG+UgXdv8uOLfv6wQHOX6aOFeCx7NpGVlCZYDxyPp220NQIyO5RucA=="; 30590 - }; 30591 - }; 30592 - "graphql-request-3.7.0" = { 30593 - name = "graphql-request"; 30594 - packageName = "graphql-request"; 30595 - version = "3.7.0"; 30235 + version = "2.11.4"; 30596 30236 src = fetchurl { 30597 - url = "https://registry.npmjs.org/graphql-request/-/graphql-request-3.7.0.tgz"; 30598 - sha512 = "dw5PxHCgBneN2DDNqpWu8QkbbJ07oOziy8z+bK/TAXufsOLaETuVO4GkXrbs0WjhdKhBMN3BkpN/RIvUHkmNUQ=="; 30237 + url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.11.4.tgz"; 30238 + sha512 = "6MeMjIUPc7196jNKDeyczjW5ZSTdT4JoXDm+oImmG7FJl15HuiveXMVmfmwZ+FOu1OtZX2NFDwLFui5Ft+dTag=="; 30599 30239 }; 30600 30240 }; 30601 30241 "graphql-request-5.2.0" = { ··· 30713 30353 src = fetchurl { 30714 30354 url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz"; 30715 30355 sha512 = "hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw=="; 30716 - }; 30717 - }; 30718 - "gzip-size-6.0.0" = { 30719 - name = "gzip-size"; 30720 - packageName = "gzip-size"; 30721 - version = "6.0.0"; 30722 - src = fetchurl { 30723 - url = "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz"; 30724 - sha512 = "ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q=="; 30725 30356 }; 30726 30357 }; 30727 30358 "handle-thing-2.0.1" = { ··· 31372 31003 sha512 = "QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g=="; 31373 31004 }; 31374 31005 }; 31375 - "hidefile-3.0.0" = { 31376 - name = "hidefile"; 31377 - packageName = "hidefile"; 31378 - version = "3.0.0"; 31379 - src = fetchurl { 31380 - url = "https://registry.npmjs.org/hidefile/-/hidefile-3.0.0.tgz"; 31381 - sha512 = "AvJ9joE59PQPGOB78smS63K60KKpTK5GBIagupfK9Hw6zpA0JKba2D9uAnDycaI8/bN30ltHWGZVXIkQ4BU6oA=="; 31382 - }; 31383 - }; 31384 31006 "highlight-es-1.0.3" = { 31385 31007 name = "highlight-es"; 31386 31008 packageName = "highlight-es"; ··· 31505 31127 src = fetchurl { 31506 31128 url = "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz"; 31507 31129 sha512 = "zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ=="; 31508 - }; 31509 - }; 31510 - "hpagent-0.1.2" = { 31511 - name = "hpagent"; 31512 - packageName = "hpagent"; 31513 - version = "0.1.2"; 31514 - src = fetchurl { 31515 - url = "https://registry.npmjs.org/hpagent/-/hpagent-0.1.2.tgz"; 31516 - sha512 = "ePqFXHtSQWAFXYmj+JtOTHr84iNrII4/QRlAAPPE+zqnKy4xJo7Ie1Y4kC7AdB+LxLxSTTzBMASsEcy0q8YyvQ=="; 31517 31130 }; 31518 31131 }; 31519 31132 "hpagent-1.2.0" = { ··· 31874 31487 src = fetchurl { 31875 31488 url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz"; 31876 31489 sha512 = "+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ=="; 31877 - }; 31878 - }; 31879 - "http-proxy-middleware-1.3.1" = { 31880 - name = "http-proxy-middleware"; 31881 - packageName = "http-proxy-middleware"; 31882 - version = "1.3.1"; 31883 - src = fetchurl { 31884 - url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz"; 31885 - sha512 = "13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg=="; 31886 31490 }; 31887 31491 }; 31888 31492 "http-proxy-middleware-2.0.6" = { ··· 32965 32569 sha512 = "agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="; 32966 32570 }; 32967 32571 }; 32968 - "interpret-2.2.0" = { 32969 - name = "interpret"; 32970 - packageName = "interpret"; 32971 - version = "2.2.0"; 32972 - src = fetchurl { 32973 - url = "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz"; 32974 - sha512 = "Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw=="; 32975 - }; 32976 - }; 32977 32572 "interpret-3.1.1" = { 32978 32573 name = "interpret"; 32979 32574 packageName = "interpret"; ··· 33046 32641 sha512 = "xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ=="; 33047 32642 }; 33048 32643 }; 33049 - "io-ts-2.2.20" = { 33050 - name = "io-ts"; 33051 - packageName = "io-ts"; 33052 - version = "2.2.20"; 33053 - src = fetchurl { 33054 - url = "https://registry.npmjs.org/io-ts/-/io-ts-2.2.20.tgz"; 33055 - sha512 = "Rq2BsYmtwS5vVttie4rqrOCIfHCS9TgpRLFpKQCM1wZBBRY9nWVGmEvm2FnDbSE2un1UE39DvFpTR5UL47YDcA=="; 33056 - }; 33057 - }; 33058 - "io-ts-reporters-1.2.2" = { 33059 - name = "io-ts-reporters"; 33060 - packageName = "io-ts-reporters"; 33061 - version = "1.2.2"; 33062 - src = fetchurl { 33063 - url = "https://registry.npmjs.org/io-ts-reporters/-/io-ts-reporters-1.2.2.tgz"; 33064 - sha512 = "igASwWWkDY757OutNcM6zTtdJf/eTZYkoe2ymsX2qpm5bKZLo74FJYjsCtMQOEdY7dRHLLEulCyFQwdN69GBCg=="; 33065 - }; 33066 - }; 33067 32644 "iota-array-1.0.0" = { 33068 32645 name = "iota-array"; 33069 32646 packageName = "iota-array"; ··· 35107 34684 sha512 = "b2Zna/wGIyTzi0Gemg27JYUaRyTyBETw5GnqyVQMr71uojOYMrgkD2+Px3bG2ZFi7/zTUXJSDoGoBOhMixq7tg=="; 35108 34685 }; 35109 34686 }; 35110 - "joi-17.10.1" = { 34687 + "joi-17.10.2" = { 35111 34688 name = "joi"; 35112 34689 packageName = "joi"; 35113 - version = "17.10.1"; 34690 + version = "17.10.2"; 35114 34691 src = fetchurl { 35115 - url = "https://registry.npmjs.org/joi/-/joi-17.10.1.tgz"; 35116 - sha512 = "vIiDxQKmRidUVp8KngT8MZSOcmRVm2zV7jbMjNYWuHcJWI0bUck3nRTGQjhpPlQenIQIBC5Vp9AhcnHbWQqafw=="; 34692 + url = "https://registry.npmjs.org/joi/-/joi-17.10.2.tgz"; 34693 + sha512 = "hcVhjBxRNW/is3nNLdGLIjkgXetkeGc2wyhydhz8KumG23Aerk4HPjU5zaPAMRqXQFc0xNqXTC7+zQjxr0GlKA=="; 35117 34694 }; 35118 34695 }; 35119 34696 "joi-17.7.0" = { ··· 35431 35008 sha512 = "iY3zLosUEKbeua6IAGJXjFxibiiI0xHFjyYPyewOc56MBRHC7nczWSVGRP+Jgwyo7HWXs4TvJKLG6w8zSuAZrg=="; 35432 35009 }; 35433 35010 }; 35434 - "jsii-5.2.5" = { 35011 + "jsii-5.2.8" = { 35435 35012 name = "jsii"; 35436 35013 packageName = "jsii"; 35437 - version = "5.2.5"; 35014 + version = "5.2.8"; 35438 35015 src = fetchurl { 35439 - url = "https://registry.npmjs.org/jsii/-/jsii-5.2.5.tgz"; 35440 - sha512 = "kVNFvxRJ5gakm8Aiv9x5Yo/w7zAw6seW+zwK7XPzULTYNSQBoWnikIGaRZIHoQtImtbheyQ8AmzRrD9pNocF/g=="; 35016 + url = "https://registry.npmjs.org/jsii/-/jsii-5.2.8.tgz"; 35017 + sha512 = "25inqiaSd8CnMsiStis8xslT1m8H62Q1eCWb0O76f06hfzBSp+T7wDbtipQZm9NuK4BiUF3rb2Nt6uGJgOVd7Q=="; 35441 35018 }; 35442 35019 }; 35443 35020 "jsii-pacmak-1.88.0" = { ··· 35638 35215 sha512 = "CpDFlBwz/6la78hZxyB9FECVKGYjIIl3Ms3KLqFj99W7IIb7D00/RDgc++IGB4BBALl0QRhh5m4q5WNSopvLtQ=="; 35639 35216 }; 35640 35217 }; 35641 - "json-schema-ref-parser-9.0.9" = { 35642 - name = "json-schema-ref-parser"; 35643 - packageName = "json-schema-ref-parser"; 35644 - version = "9.0.9"; 35645 - src = fetchurl { 35646 - url = "https://registry.npmjs.org/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz"; 35647 - sha512 = "qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q=="; 35648 - }; 35649 - }; 35650 35218 "json-schema-to-ts-1.6.4" = { 35651 35219 name = "json-schema-to-ts"; 35652 35220 packageName = "json-schema-to-ts"; ··· 35654 35222 src = fetchurl { 35655 35223 url = "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz"; 35656 35224 sha512 = "pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA=="; 35657 - }; 35658 - }; 35659 - "json-schema-to-typescript-9.1.1" = { 35660 - name = "json-schema-to-typescript"; 35661 - packageName = "json-schema-to-typescript"; 35662 - version = "9.1.1"; 35663 - src = fetchurl { 35664 - url = "https://registry.npmjs.org/json-schema-to-typescript/-/json-schema-to-typescript-9.1.1.tgz"; 35665 - sha512 = "VrdxmwQROjPBRlHxXwGUa2xzhOMPiNZIVsxZrZjMYtbI7suRFMiEktqaD/gqhfSya7Djy+x8dnJT+H0/0sZO0Q=="; 35666 35225 }; 35667 35226 }; 35668 35227 "json-schema-traverse-0.4.1" = { ··· 36529 36088 sha512 = "weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA=="; 36530 36089 }; 36531 36090 }; 36532 - "latest-version-6.0.0" = { 36533 - name = "latest-version"; 36534 - packageName = "latest-version"; 36535 - version = "6.0.0"; 36536 - src = fetchurl { 36537 - url = "https://registry.npmjs.org/latest-version/-/latest-version-6.0.0.tgz"; 36538 - sha512 = "zfTuGx4PwpoSJ1mABs58AkM6qMzu49LZ7LT5JHprKvpGpQ+cYtfSibi3tLLrH4z7UylYU42rfBdwN8YgqbTljA=="; 36539 - }; 36540 - }; 36541 36091 "latest-version-7.0.0" = { 36542 36092 name = "latest-version"; 36543 36093 packageName = "latest-version"; ··· 36554 36104 src = fetchurl { 36555 36105 url = "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz"; 36556 36106 sha512 = "JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ=="; 36557 - }; 36558 - }; 36559 - "launchdarkly-eventsource-1.4.3" = { 36560 - name = "launchdarkly-eventsource"; 36561 - packageName = "launchdarkly-eventsource"; 36562 - version = "1.4.3"; 36563 - src = fetchurl { 36564 - url = "https://registry.npmjs.org/launchdarkly-eventsource/-/launchdarkly-eventsource-1.4.3.tgz"; 36565 - sha512 = "taeidSNMbF4AuUXjoFStT5CSTknicaKqu+0vrw7gYEMrpQgG74BEzlS0BGYmxW20JdGm2gpm7jtZ542ZG/h8tA=="; 36566 - }; 36567 - }; 36568 - "launchdarkly-js-sdk-common-4.3.3" = { 36569 - name = "launchdarkly-js-sdk-common"; 36570 - packageName = "launchdarkly-js-sdk-common"; 36571 - version = "4.3.3"; 36572 - src = fetchurl { 36573 - url = "https://registry.npmjs.org/launchdarkly-js-sdk-common/-/launchdarkly-js-sdk-common-4.3.3.tgz"; 36574 - sha512 = "COLKk6JxrP+xFrp7gQMGta19uLik/Gy2iq151lydxRfPbmWcY0BCfW/Y8uTTSjI1r4fLGdWsupIiY0ojhGXu8w=="; 36575 - }; 36576 - }; 36577 - "launchdarkly-node-client-sdk-2.2.2" = { 36578 - name = "launchdarkly-node-client-sdk"; 36579 - packageName = "launchdarkly-node-client-sdk"; 36580 - version = "2.2.2"; 36581 - src = fetchurl { 36582 - url = "https://registry.npmjs.org/launchdarkly-node-client-sdk/-/launchdarkly-node-client-sdk-2.2.2.tgz"; 36583 - sha512 = "rWXqAS6yXZ7jJdPkbJTij+HR+MbdlItczUxy2JPbSK+ofv4tOhR39ktJSKfqa3go7xwPabKSgaDRf+exP77d3w=="; 36584 36107 }; 36585 36108 }; 36586 36109 "lazy-1.0.11" = { ··· 36844 36367 sha512 = "yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw=="; 36845 36368 }; 36846 36369 }; 36847 - "lightningcss-1.21.8" = { 36370 + "lightningcss-1.22.0" = { 36848 36371 name = "lightningcss"; 36849 36372 packageName = "lightningcss"; 36850 - version = "1.21.8"; 36373 + version = "1.22.0"; 36851 36374 src = fetchurl { 36852 - url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.21.8.tgz"; 36853 - sha512 = "jEqaL7m/ZckZJjlMAfycr1Kpz7f93k6n7KGF5SJjuPSm6DWI6h3ayLZmgRHgy1OfrwoCed6h4C/gHYPOd1OFMA=="; 36375 + url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.22.0.tgz"; 36376 + sha512 = "+z0qvwRVzs4XGRXelnWRNwqsXUx8k3bSkbP8vD42kYKSk3z9OM2P3e/gagT7ei/gwh8DTS80LZOFZV6lm8Z8Fg=="; 36854 36377 }; 36855 36378 }; 36856 - "lightningcss-darwin-arm64-1.21.8" = { 36379 + "lightningcss-darwin-arm64-1.22.0" = { 36857 36380 name = "lightningcss-darwin-arm64"; 36858 36381 packageName = "lightningcss-darwin-arm64"; 36859 - version = "1.21.8"; 36382 + version = "1.22.0"; 36860 36383 src = fetchurl { 36861 - url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.21.8.tgz"; 36862 - sha512 = "BOMoGfcgkk2f4ltzsJqmkjiqRtlZUK+UdwhR+P6VgIsnpQBV3G01mlL6GzYxYqxq+6/3/n/D+4oy2NeknmADZw=="; 36384 + url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.22.0.tgz"; 36385 + sha512 = "aH2be3nNny+It5YEVm8tBSSdRlBVWQV8m2oJ7dESiYRzyY/E/bQUe2xlw5caaMuhlM9aoTMtOH25yzMhir0qPg=="; 36863 36386 }; 36864 36387 }; 36865 - "lightningcss-darwin-x64-1.21.8" = { 36388 + "lightningcss-darwin-x64-1.22.0" = { 36866 36389 name = "lightningcss-darwin-x64"; 36867 36390 packageName = "lightningcss-darwin-x64"; 36868 - version = "1.21.8"; 36391 + version = "1.22.0"; 36869 36392 src = fetchurl { 36870 - url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.21.8.tgz"; 36871 - sha512 = "YhF64mcVDPKKufL4aNFBnVH7uvzE0bW3YUsPXdP4yUcT/8IXChypOZ/PE1pmt2RlbmsyVuuIIeZU4zTyZe5Amw=="; 36393 + url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.22.0.tgz"; 36394 + sha512 = "9KHRFA0Y6mNxRHeoQMp0YaI0R0O2kOgUlYPRjuasU4d+pI8NRhVn9bt0yX9VPs5ibWX1RbDViSPtGJvYYrfVAQ=="; 36872 36395 }; 36873 36396 }; 36874 - "lightningcss-freebsd-x64-1.21.8" = { 36397 + "lightningcss-freebsd-x64-1.22.0" = { 36875 36398 name = "lightningcss-freebsd-x64"; 36876 36399 packageName = "lightningcss-freebsd-x64"; 36877 - version = "1.21.8"; 36400 + version = "1.22.0"; 36878 36401 src = fetchurl { 36879 - url = "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.21.8.tgz"; 36880 - sha512 = "CV6A/vTG2Ryd3YpChEgfWWv4TXCAETo9TcHSNx0IP0dnKcnDEiAko4PIKhCqZL11IGdN1ZLBCVPw+vw5ZYwzfA=="; 36402 + url = "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.22.0.tgz"; 36403 + sha512 = "xaYL3xperGwD85rQioDb52ozF3NAJb+9wrge3jD9lxGffplu0Mn35rXMptB8Uc2N9Mw1i3Bvl7+z1evlqVl7ww=="; 36881 36404 }; 36882 36405 }; 36883 - "lightningcss-linux-arm-gnueabihf-1.21.8" = { 36406 + "lightningcss-linux-arm-gnueabihf-1.22.0" = { 36884 36407 name = "lightningcss-linux-arm-gnueabihf"; 36885 36408 packageName = "lightningcss-linux-arm-gnueabihf"; 36886 - version = "1.21.8"; 36409 + version = "1.22.0"; 36887 36410 src = fetchurl { 36888 - url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.21.8.tgz"; 36889 - sha512 = "9PMbqh8n/Xq0F4/j2NR/hHM2HRDiFXFSF0iOvV67pNWKJkHIO6mR8jBw/88Aro5Ye/ILsX5OuWsxIVJDFv0NXA=="; 36411 + url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.22.0.tgz"; 36412 + sha512 = "epQGvXIjOuxrZpMpMnRjK54ZqzhiHhCPLtHvw2fb6NeK2kK9YtF0wqmeTBiQ1AkbWfnnXGTstYaFNiadNK+StQ=="; 36890 36413 }; 36891 36414 }; 36892 - "lightningcss-linux-arm64-gnu-1.21.8" = { 36415 + "lightningcss-linux-arm64-gnu-1.22.0" = { 36893 36416 name = "lightningcss-linux-arm64-gnu"; 36894 36417 packageName = "lightningcss-linux-arm64-gnu"; 36895 - version = "1.21.8"; 36418 + version = "1.22.0"; 36896 36419 src = fetchurl { 36897 - url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.21.8.tgz"; 36898 - sha512 = "JTM/TuMMllkzaXV7/eDjG4IJKLlCl+RfYZwtsVmC82gc0QX0O37csGAcY2OGleiuA4DnEo/Qea5WoFfZUNC6zg=="; 36420 + url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.22.0.tgz"; 36421 + sha512 = "AArGtKSY4DGTA8xP8SDyNyKtpsUl1Rzq6FW4JomeyUQ4nBrR71uPChksTpj3gmWuGhZeRKLeCUI1DBid/zhChg=="; 36899 36422 }; 36900 36423 }; 36901 - "lightningcss-linux-arm64-musl-1.21.8" = { 36424 + "lightningcss-linux-arm64-musl-1.22.0" = { 36902 36425 name = "lightningcss-linux-arm64-musl"; 36903 36426 packageName = "lightningcss-linux-arm64-musl"; 36904 - version = "1.21.8"; 36427 + version = "1.22.0"; 36905 36428 src = fetchurl { 36906 - url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.21.8.tgz"; 36907 - sha512 = "01gWShXrgoIb8urzShpn1RWtZuaSyKSzF2hfO+flzlTPoACqcO3rgcu/3af4Cw54e8vKzL5hPRo4kROmgaOMLg=="; 36429 + url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.22.0.tgz"; 36430 + sha512 = "RRraNgP8hnBPhInTTUdlFm+z16C/ghbxBG51Sw00hd7HUyKmEUKRozyc5od+/N6pOrX/bIh5vIbtMXIxsos0lg=="; 36908 36431 }; 36909 36432 }; 36910 - "lightningcss-linux-x64-gnu-1.21.8" = { 36433 + "lightningcss-linux-x64-gnu-1.22.0" = { 36911 36434 name = "lightningcss-linux-x64-gnu"; 36912 36435 packageName = "lightningcss-linux-x64-gnu"; 36913 - version = "1.21.8"; 36436 + version = "1.22.0"; 36914 36437 src = fetchurl { 36915 - url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.21.8.tgz"; 36916 - sha512 = "yVB5vYJjJb/Aku0V9QaGYIntvK/1TJOlNB9GmkNpXX5bSSP2pYW4lWW97jxFMHO908M0zjEt1qyOLMyqojHL+Q=="; 36438 + url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.22.0.tgz"; 36439 + sha512 = "grdrhYGRi2KrR+bsXJVI0myRADqyA7ekprGxiuK5QRNkv7kj3Yq1fERDNyzZvjisHwKUi29sYMClscbtl+/Zpw=="; 36917 36440 }; 36918 36441 }; 36919 - "lightningcss-linux-x64-musl-1.21.8" = { 36442 + "lightningcss-linux-x64-musl-1.22.0" = { 36920 36443 name = "lightningcss-linux-x64-musl"; 36921 36444 packageName = "lightningcss-linux-x64-musl"; 36922 - version = "1.21.8"; 36445 + version = "1.22.0"; 36923 36446 src = fetchurl { 36924 - url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.21.8.tgz"; 36925 - sha512 = "TYi+KNtBVK0+FZvxTX/d5XJb+tw3Jq+2Rr9hW359wp1afsi1Vkg+uVGgbn+m2dipa5XwpCseQq81ylMlXuyfPw=="; 36447 + url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.22.0.tgz"; 36448 + sha512 = "t5f90X+iQUtIyR56oXIHMBUyQFX/zwmPt72E6Dane3P8KNGlkijTg2I75XVQS860gNoEFzV7Mm5ArRRA7u5CAQ=="; 36926 36449 }; 36927 36450 }; 36928 - "lightningcss-win32-x64-msvc-1.21.8" = { 36451 + "lightningcss-win32-x64-msvc-1.22.0" = { 36929 36452 name = "lightningcss-win32-x64-msvc"; 36930 36453 packageName = "lightningcss-win32-x64-msvc"; 36931 - version = "1.21.8"; 36454 + version = "1.22.0"; 36932 36455 src = fetchurl { 36933 - url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.21.8.tgz"; 36934 - sha512 = "mww+kqbPx0/C44l2LEloECtRUuOFDjq9ftp+EHTPiCp2t+avy0sh8MaFwGsrKkj2XfZhaRhi4CPVKBoqF1Qlwg=="; 36456 + url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.22.0.tgz"; 36457 + sha512 = "64HTDtOOZE9PUCZJiZZQpyqXBbdby1lnztBccnqh+NtbKxjnGzP92R2ngcgeuqMPecMNqNWxgoWgTGpC+yN5Sw=="; 36935 36458 }; 36936 36459 }; 36937 36460 "lilconfig-2.1.0" = { ··· 37717 37240 sha512 = "n1PZMXgaaDWZDSvuNZ/8XOcYO2hOKDqZel5adtR30VKQAtoWs/5AOeFA0vPV8moiPzlqe7F4cP2tzpFewQyelQ=="; 37718 37241 }; 37719 37242 }; 37720 - "lodash.escape-4.0.1" = { 37721 - name = "lodash.escape"; 37722 - packageName = "lodash.escape"; 37723 - version = "4.0.1"; 37724 - src = fetchurl { 37725 - url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz"; 37726 - sha512 = "nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw=="; 37727 - }; 37728 - }; 37729 37243 "lodash.escaperegexp-4.1.2" = { 37730 37244 name = "lodash.escaperegexp"; 37731 37245 packageName = "lodash.escaperegexp"; ··· 37823 37337 src = fetchurl { 37824 37338 url = "https://registry.npmjs.org/lodash.intersection/-/lodash.intersection-4.4.0.tgz"; 37825 37339 sha512 = "N+L0cCfnqMv6mxXtSPeKt+IavbOBBSiAEkKyLasZ8BVcP9YXQgxLO12oPR8OyURwKV8l5vJKiE1M8aS70heuMg=="; 37826 - }; 37827 - }; 37828 - "lodash.invokemap-4.6.0" = { 37829 - name = "lodash.invokemap"; 37830 - packageName = "lodash.invokemap"; 37831 - version = "4.6.0"; 37832 - src = fetchurl { 37833 - url = "https://registry.npmjs.org/lodash.invokemap/-/lodash.invokemap-4.6.0.tgz"; 37834 - sha512 = "CfkycNtMqgUlfjfdh2BhKO/ZXrP8ePOX5lEU/g0R3ItJcnuxWDwokMGKx1hWcfOikmyOVx6X9IwWnDGlgKl61w=="; 37835 37340 }; 37836 37341 }; 37837 37342 "lodash.isarguments-3.1.0" = { ··· 38077 37582 sha512 = "hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q=="; 38078 37583 }; 38079 37584 }; 38080 - "lodash.pullall-4.2.0" = { 38081 - name = "lodash.pullall"; 38082 - packageName = "lodash.pullall"; 38083 - version = "4.2.0"; 38084 - src = fetchurl { 38085 - url = "https://registry.npmjs.org/lodash.pullall/-/lodash.pullall-4.2.0.tgz"; 38086 - sha512 = "VhqxBKH0ZxPpLhiu68YD1KnHmbhQJQctcipvmFnqIBDYzcIHzf3Zpu0tpeOKtR4x76p9yohc506eGdOjTmyIBg=="; 38087 - }; 38088 - }; 38089 37585 "lodash.reduce-4.6.0" = { 38090 37586 name = "lodash.reduce"; 38091 37587 packageName = "lodash.reduce"; ··· 38354 37850 src = fetchurl { 38355 37851 url = "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz"; 38356 37852 sha512 = "VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg=="; 38357 - }; 38358 - }; 38359 - "log-symbols-3.0.0" = { 38360 - name = "log-symbols"; 38361 - packageName = "log-symbols"; 38362 - version = "3.0.0"; 38363 - src = fetchurl { 38364 - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz"; 38365 - sha512 = "dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ=="; 38366 37853 }; 38367 37854 }; 38368 37855 "log-symbols-4.1.0" = { ··· 40787 40274 sha512 = "r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg=="; 40788 40275 }; 40789 40276 }; 40790 - "miniflare-3.20230904.0" = { 40277 + "miniflare-3.20230918.0" = { 40791 40278 name = "miniflare"; 40792 40279 packageName = "miniflare"; 40793 - version = "3.20230904.0"; 40280 + version = "3.20230918.0"; 40794 40281 src = fetchurl { 40795 - url = "https://registry.npmjs.org/miniflare/-/miniflare-3.20230904.0.tgz"; 40796 - sha512 = "+OWQqEk8hV7vZaPCoj5dk1lZr4YUy56OiyNZ45/3ITYf+ZxgQOBPWhQhpw1jCahkRKGPa9Aykz01sc+GhPZYDA=="; 40282 + url = "https://registry.npmjs.org/miniflare/-/miniflare-3.20230918.0.tgz"; 40283 + sha512 = "Dd29HB7ZlT1CXB2tPH8nW6fBOOXi/m7qFZHjKm2jGS+1OaGfrv0PkT5UspWW5jQi8rWI87xtordAUiIJkwWqRw=="; 40797 40284 }; 40798 40285 }; 40799 40286 "minilog-3.1.0" = { ··· 42021 41508 sha512 = "P6qw6kenNXP+J9XlKJNi/MNHUQ+Lx5K8FEcSfX7/w8KJdZan5+BB5MKzuNgL2RTjHG1Svg8SehfseVEp8zAqwA=="; 42022 41509 }; 42023 41510 }; 42024 - "ngrok-5.0.0-beta.2" = { 42025 - name = "ngrok"; 42026 - packageName = "ngrok"; 42027 - version = "5.0.0-beta.2"; 42028 - src = fetchurl { 42029 - url = "https://registry.npmjs.org/ngrok/-/ngrok-5.0.0-beta.2.tgz"; 42030 - sha512 = "UzsyGiJ4yTTQLCQD11k1DQaMwq2/SsztBg2b34zAqcyjS25qjDpogMKPaCKHwe/APRTHeel3iDXcVctk5CNaCQ=="; 42031 - }; 42032 - }; 42033 41511 "nice-try-1.0.5" = { 42034 41512 name = "nice-try"; 42035 41513 packageName = "nice-try"; ··· 42156 41634 sha512 = "3yZ1vfGKOcv0dyyhUeqA0Qa6RsQ4SfUnL6o2IWR4sVg8kdnJo48XTWbMLdtnfiZTbCUdsMttNwyJcihEdGCZBw=="; 42157 41635 }; 42158 41636 }; 42159 - "nock-13.3.3" = { 42160 - name = "nock"; 42161 - packageName = "nock"; 42162 - version = "13.3.3"; 42163 - src = fetchurl { 42164 - url = "https://registry.npmjs.org/nock/-/nock-13.3.3.tgz"; 42165 - sha512 = "z+KUlILy9SK/RjpeXDiDUEAq4T94ADPHE3qaRkf66mpEhzc/ytOMm3Bwdrbq6k1tMWkbdujiKim3G2tfQARuJw=="; 42166 - }; 42167 - }; 42168 41637 "node-abi-3.47.0" = { 42169 41638 name = "node-abi"; 42170 41639 packageName = "node-abi"; ··· 42262 41731 src = fetchurl { 42263 41732 url = "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz"; 42264 41733 sha512 = "Jx5lPaaLdIaOsj2mVLWMWulXF6GQVdyLvNSxmiYCvZ8Ma2hfKX0POoR2kgKOqz+oFsRreq0yYZjQ2wjE9VNzCA=="; 42265 - }; 42266 - }; 42267 - "node-cache-5.1.2" = { 42268 - name = "node-cache"; 42269 - packageName = "node-cache"; 42270 - version = "5.1.2"; 42271 - src = fetchurl { 42272 - url = "https://registry.npmjs.org/node-cache/-/node-cache-5.1.2.tgz"; 42273 - sha512 = "t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg=="; 42274 41734 }; 42275 41735 }; 42276 41736 "node-color-readline-1.0.1" = { ··· 42532 41992 src = fetchurl { 42533 41993 url = "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"; 42534 41994 sha512 = "O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="; 42535 - }; 42536 - }; 42537 - "node-localstorage-1.3.1" = { 42538 - name = "node-localstorage"; 42539 - packageName = "node-localstorage"; 42540 - version = "1.3.1"; 42541 - src = fetchurl { 42542 - url = "https://registry.npmjs.org/node-localstorage/-/node-localstorage-1.3.1.tgz"; 42543 - sha512 = "NMWCSWWc6JbHT5PyWlNT2i8r7PgGYXVntmKawY83k/M0UJScZ5jirb61TLnqKwd815DfBQu+lR3sRw08SPzIaQ=="; 42544 41995 }; 42545 41996 }; 42546 41997 "node-machine-id-1.1.12" = { ··· 43749 43200 sha512 = "PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="; 43750 43201 }; 43751 43202 }; 43752 - "omelette-0.4.17" = { 43753 - name = "omelette"; 43754 - packageName = "omelette"; 43755 - version = "0.4.17"; 43756 - src = fetchurl { 43757 - url = "https://registry.npmjs.org/omelette/-/omelette-0.4.17.tgz"; 43758 - sha512 = "UlU69G6Bhu0XFjw3tjFZ0qyiMUjAOR+rdzblA1nLQ8xiqFtxOVlkhM39BlgTpLFx9fxkm6rnxNNRsS5GxE/yww=="; 43759 - }; 43760 - }; 43761 43203 "omggif-1.0.10" = { 43762 43204 name = "omggif"; 43763 43205 packageName = "omggif"; ··· 43983 43425 sha512 = "ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A=="; 43984 43426 }; 43985 43427 }; 43986 - "openpgp-5.10.1" = { 43428 + "openpgp-5.10.2" = { 43987 43429 name = "openpgp"; 43988 43430 packageName = "openpgp"; 43989 - version = "5.10.1"; 43431 + version = "5.10.2"; 43990 43432 src = fetchurl { 43991 - url = "https://registry.npmjs.org/openpgp/-/openpgp-5.10.1.tgz"; 43992 - sha512 = "SR5Ft+ej51d0+p53ld5Ney0Yiz0y8Mh1YYLJrvpRMbTaNhvS1QcDX0Oq1rW9sjBnQXtgrpWw2Zve3rm7K5C/pw=="; 43433 + url = "https://registry.npmjs.org/openpgp/-/openpgp-5.10.2.tgz"; 43434 + sha512 = "nRqMp4o31rBagWB02tgfKCsocXWq4uYobZf9GDVlD5rQXBq/wRIZHiDhGX1dlDAI2inkZcPd2dSZOqmtGnsK1A=="; 43993 43435 }; 43994 43436 }; 43995 43437 "opentracing-0.14.7" = { ··· 44118 43560 sha512 = "eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg=="; 44119 43561 }; 44120 43562 }; 44121 - "ora-4.1.1" = { 44122 - name = "ora"; 44123 - packageName = "ora"; 44124 - version = "4.1.1"; 44125 - src = fetchurl { 44126 - url = "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz"; 44127 - sha512 = "sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A=="; 44128 - }; 44129 - }; 44130 43563 "ora-5.1.0" = { 44131 43564 name = "ora"; 44132 43565 packageName = "ora"; ··· 44188 43621 src = fetchurl { 44189 43622 url = "https://registry.npmjs.org/org-regex/-/org-regex-1.0.0.tgz"; 44190 43623 sha512 = "7bqkxkEJwzJQUAlyYniqEZ3Ilzjh0yoa62c7gL6Ijxj5bEpPL+8IE1Z0PFj0ywjjXQcdrwR51g9MIcLezR0hKQ=="; 44191 - }; 44192 - }; 44193 - "original-1.0.2" = { 44194 - name = "original"; 44195 - packageName = "original"; 44196 - version = "1.0.2"; 44197 - src = fetchurl { 44198 - url = "https://registry.npmjs.org/original/-/original-1.0.2.tgz"; 44199 - sha512 = "hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg=="; 44200 43624 }; 44201 43625 }; 44202 43626 "os-browserify-0.3.0" = { ··· 45540 44964 sha512 = "ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q=="; 45541 44965 }; 45542 44966 }; 45543 - "path-equal-1.2.5" = { 45544 - name = "path-equal"; 45545 - packageName = "path-equal"; 45546 - version = "1.2.5"; 45547 - src = fetchurl { 45548 - url = "https://registry.npmjs.org/path-equal/-/path-equal-1.2.5.tgz"; 45549 - sha512 = "i73IctDr3F2W+bsOWDyyVm/lqsXO47aY9nsFZUjTT/aljSbkxHxxCoyZ9UUrM8jK0JVod+An+rl48RCsvWM+9g=="; 45550 - }; 45551 - }; 45552 44967 "path-exists-2.1.0" = { 45553 44968 name = "path-exists"; 45554 44969 packageName = "path-exists"; ··· 46377 45792 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 46378 45793 }; 46379 45794 }; 46380 - "postcss-8.4.29" = { 45795 + "postcss-8.4.30" = { 46381 45796 name = "postcss"; 46382 45797 packageName = "postcss"; 46383 - version = "8.4.29"; 45798 + version = "8.4.30"; 46384 45799 src = fetchurl { 46385 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz"; 46386 - sha512 = "cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw=="; 45800 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz"; 45801 + sha512 = "7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g=="; 46387 45802 }; 46388 45803 }; 46389 45804 "postcss-calc-8.2.4" = { ··· 47644 47059 src = fetchurl { 47645 47060 url = "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz"; 47646 47061 sha512 = "oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="; 47647 - }; 47648 - }; 47649 - "propagate-2.0.1" = { 47650 - name = "propagate"; 47651 - packageName = "propagate"; 47652 - version = "2.0.1"; 47653 - src = fetchurl { 47654 - url = "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz"; 47655 - sha512 = "vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag=="; 47656 47062 }; 47657 47063 }; 47658 47064 "proper-lockfile-4.1.2" = { ··· 48087 47493 sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; 48088 47494 }; 48089 47495 }; 48090 - "pyright-1.1.327" = { 47496 + "pyright-1.1.328" = { 48091 47497 name = "pyright"; 48092 47498 packageName = "pyright"; 48093 - version = "1.1.327"; 47499 + version = "1.1.328"; 48094 47500 src = fetchurl { 48095 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.327.tgz"; 48096 - sha512 = "2OgKe3//ortVz7thxoiaVSjACVtUn+hOIanrlLZCEkagdKMheLcftu6GmoLjgibV/E2SvZZ//izidxTB5vN8dQ=="; 47501 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.328.tgz"; 47502 + sha512 = "LiFIELh/6wVZuvgH+OGZ81ln0EpB8si2gt1M229qKnG4lbh93A0gyXLwu62XtTie8FDUcznmdCEiMal8jxJ7+w=="; 48097 47503 }; 48098 47504 }; 48099 47505 "q-1.5.1" = { ··· 48256 47662 src = fetchurl { 48257 47663 url = "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz"; 48258 47664 sha512 = "wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg=="; 48259 - }; 48260 - }; 48261 - "querystring-browser-1.0.4" = { 48262 - name = "querystring-browser"; 48263 - packageName = "querystring-browser"; 48264 - version = "1.0.4"; 48265 - src = fetchurl { 48266 - url = "https://registry.npmjs.org/querystring-browser/-/querystring-browser-1.0.4.tgz"; 48267 - sha512 = "oqPm3iZO4r4lEFM2YAJyMwCqAMIL0r3jO36ZohmHLUs9NpAfEGee7G5+PllGec/TkAnfI85FMmkPaW8UbZI0Uw=="; 48268 47665 }; 48269 47666 }; 48270 47667 "querystring-es3-0.2.1" = { ··· 49221 48618 sha512 = "kyy3HWCez2WrotaL3O4fTn0rsIdfRKOdQQcEJ9KpvmKmbffKVvwsloX063EgRUlpJIXHiDQFhJcTbZequ2uTZw=="; 49222 48619 }; 49223 48620 }; 49224 - "recursive-readdir-2.2.3" = { 49225 - name = "recursive-readdir"; 49226 - packageName = "recursive-readdir"; 49227 - version = "2.2.3"; 49228 - src = fetchurl { 49229 - url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz"; 49230 - sha512 = "8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA=="; 49231 - }; 49232 - }; 49233 48621 "redent-1.0.0" = { 49234 48622 name = "redent"; 49235 48623 packageName = "redent"; ··· 50553 49941 sha512 = "Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g=="; 50554 49942 }; 50555 49943 }; 50556 - "resolve-1.22.5" = { 49944 + "resolve-1.22.6" = { 50557 49945 name = "resolve"; 50558 49946 packageName = "resolve"; 50559 - version = "1.22.5"; 49947 + version = "1.22.6"; 50560 49948 src = fetchurl { 50561 - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.5.tgz"; 50562 - sha512 = "qWhv7PF1V95QPvRoUGHxOtnAlEvlXBylMZcjUR9pAumMmveFtcHJRXGIr+TkjfNJVQypqv2qcDiiars2y1PsSg=="; 49949 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz"; 49950 + sha512 = "njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw=="; 50563 49951 }; 50564 49952 }; 50565 49953 "resolve-1.7.1" = { ··· 52533 51921 sha512 = "awzaaIPtYFdexLr6TBpcZSGPB6D1RInNO/qNetgaJloPDF/D0GkVtLvGEp8InfmLV7CyLyQ5fIRP+tVN/JmWQA=="; 52534 51922 }; 52535 51923 }; 52536 - "sirv-2.0.3" = { 52537 - name = "sirv"; 52538 - packageName = "sirv"; 52539 - version = "2.0.3"; 52540 - src = fetchurl { 52541 - url = "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz"; 52542 - sha512 = "O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA=="; 52543 - }; 52544 - }; 52545 51924 "sisteransi-1.0.5" = { 52546 51925 name = "sisteransi"; 52547 51926 packageName = "sisteransi"; ··· 53316 52695 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 53317 52696 }; 53318 52697 }; 53319 - "spdx-license-ids-3.0.13" = { 52698 + "spdx-license-ids-3.0.15" = { 53320 52699 name = "spdx-license-ids"; 53321 52700 packageName = "spdx-license-ids"; 53322 - version = "3.0.13"; 52701 + version = "3.0.15"; 53323 52702 src = fetchurl { 53324 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz"; 53325 - sha512 = "XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w=="; 52703 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz"; 52704 + sha512 = "lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ=="; 53326 52705 }; 53327 52706 }; 53328 52707 "spdx-license-list-6.7.0" = { ··· 53791 53170 src = fetchurl { 53792 53171 url = "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz"; 53793 53172 sha512 = "RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="; 53794 - }; 53795 - }; 53796 - "stdin-0.0.1" = { 53797 - name = "stdin"; 53798 - packageName = "stdin"; 53799 - version = "0.0.1"; 53800 - src = fetchurl { 53801 - url = "https://registry.npmjs.org/stdin/-/stdin-0.0.1.tgz"; 53802 - sha512 = "2bacd1TXzqOEsqRa+eEWkRdOSznwptrs4gqFcpMq5tOtmJUGPZd10W5Lam6wQ4YQ/+qjQt4e9u35yXCF6mrlfQ=="; 53803 53173 }; 53804 53174 }; 53805 53175 "stdin-discarder-0.1.0" = { ··· 54900 54270 sha512 = "vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA=="; 54901 54271 }; 54902 54272 }; 54903 - "svelte-4.2.0" = { 54273 + "svelte-4.2.1" = { 54904 54274 name = "svelte"; 54905 54275 packageName = "svelte"; 54906 - version = "4.2.0"; 54276 + version = "4.2.1"; 54907 54277 src = fetchurl { 54908 - url = "https://registry.npmjs.org/svelte/-/svelte-4.2.0.tgz"; 54909 - sha512 = "kVsdPjDbLrv74SmLSUzAsBGquMs4MPgWGkGLpH+PjOYnFOziAvENVzgJmyOCV2gntxE32aNm8/sqNKD6LbIpeQ=="; 54278 + url = "https://registry.npmjs.org/svelte/-/svelte-4.2.1.tgz"; 54279 + sha512 = "LpLqY2Jr7cRxkrTc796/AaaoMLF/1ax7cto8Ot76wrvKQhrPmZ0JgajiWPmg9mTSDqO16SSLiD17r9MsvAPTmw=="; 54910 54280 }; 54911 54281 }; 54912 54282 "svelte-preprocess-5.0.4" = { ··· 54918 54288 sha512 = "ABia2QegosxOGsVlsSBJvoWeXy1wUKSfF7SWJdTjLAbx/Y3SrVevvvbFNQqrSJw89+lNSsM58SipmZJ5SRi5iw=="; 54919 54289 }; 54920 54290 }; 54921 - "svelte2tsx-0.6.21" = { 54291 + "svelte2tsx-0.6.22" = { 54922 54292 name = "svelte2tsx"; 54923 54293 packageName = "svelte2tsx"; 54924 - version = "0.6.21"; 54294 + version = "0.6.22"; 54925 54295 src = fetchurl { 54926 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.6.21.tgz"; 54927 - sha512 = "v+vvbiy6WDmEQdIkJpvHYxJYG/obALfH0P6CTreYO350q/9+QmFTNCOJvx0O1o59Zpzx1Bqe+qlDxP/KtJSZEA=="; 54296 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.6.22.tgz"; 54297 + sha512 = "eFCfz0juaWeanbwGeQV21kPMwH3LKhfrUYRy1PqRmlieuHvJs8VeK7CaoHJdpBZWCXba2cltHVdywJmwOGhbww=="; 54928 54298 }; 54929 54299 }; 54930 54300 "sver-compat-1.5.0" = { ··· 55053 54423 sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; 55054 54424 }; 55055 54425 }; 55056 - "systeminformation-5.21.5" = { 54426 + "systeminformation-5.21.8" = { 55057 54427 name = "systeminformation"; 55058 54428 packageName = "systeminformation"; 55059 - version = "5.21.5"; 54429 + version = "5.21.8"; 55060 54430 src = fetchurl { 55061 - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.21.5.tgz"; 55062 - sha512 = "W1bvYcSM6hVIEqFmjAWTtfX+Qq1Mc3sEZq4AxjtkNya01WbcleahsCzM2/eAey+no+XxPk6a0/7RnCLX6/BmOQ=="; 54431 + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.21.8.tgz"; 54432 + sha512 = "Xf1KDMUTQHLOT9Z7MjpSpsbaICOHcm4OZ9c9qqpkCoXuxq5MoyDrgu5GIQYpoiralXNPrqxDz3ND8MdllpXeQA=="; 55063 54433 }; 55064 54434 }; 55065 54435 "sywac-1.3.0" = { ··· 55450 54820 sha512 = "flFL3m4wuixmf6IfhFJd1YPiLiMuxEc8uHRM1buzIeZPm22Au2pDqBJQgdo7n1WfPU1ONFGv7YDwpFBmHGF6lg=="; 55451 54821 }; 55452 54822 }; 55453 - "terser-5.19.4" = { 54823 + "terser-5.20.0" = { 55454 54824 name = "terser"; 55455 54825 packageName = "terser"; 55456 - version = "5.19.4"; 54826 + version = "5.20.0"; 55457 54827 src = fetchurl { 55458 - url = "https://registry.npmjs.org/terser/-/terser-5.19.4.tgz"; 55459 - sha512 = "6p1DjHeuluwxDXcuT9VR8p64klWJKo1ILiy19s6C9+0Bh2+NWTX6nD9EPppiER4ICkHDVB1RkVpin/YW2nQn/g=="; 54828 + url = "https://registry.npmjs.org/terser/-/terser-5.20.0.tgz"; 54829 + sha512 = "e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ=="; 55460 54830 }; 55461 54831 }; 55462 54832 "terser-webpack-plugin-5.3.9" = { ··· 55486 54856 sha512 = "/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA=="; 55487 54857 }; 55488 54858 }; 55489 - "text-encoder-lite-2.0.0" = { 55490 - name = "text-encoder-lite"; 55491 - packageName = "text-encoder-lite"; 55492 - version = "2.0.0"; 55493 - src = fetchurl { 55494 - url = "https://registry.npmjs.org/text-encoder-lite/-/text-encoder-lite-2.0.0.tgz"; 55495 - sha512 = "bo08ND8LlBwPeU23EluRUcO3p2Rsb/eN5EIfOVqfRmblNDEVKK5IzM9Qfidvo+odT0hhV8mpXQcP/M5MMzABXw=="; 55496 - }; 55497 - }; 55498 54859 "text-extensions-1.9.0" = { 55499 54860 name = "text-extensions"; 55500 54861 packageName = "text-extensions"; ··· 55835 55196 src = fetchurl { 55836 55197 url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz"; 55837 55198 sha512 = "PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q=="; 55838 - }; 55839 - }; 55840 - "timers-browserify-2.0.12" = { 55841 - name = "timers-browserify"; 55842 - packageName = "timers-browserify"; 55843 - version = "2.0.12"; 55844 - src = fetchurl { 55845 - url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz"; 55846 - sha512 = "9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ=="; 55847 55199 }; 55848 55200 }; 55849 55201 "timers-ext-0.1.7" = { ··· 55873 55225 sha512 = "qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A=="; 55874 55226 }; 55875 55227 }; 55876 - "tiny-each-async-2.0.3" = { 55877 - name = "tiny-each-async"; 55878 - packageName = "tiny-each-async"; 55879 - version = "2.0.3"; 55880 - src = fetchurl { 55881 - url = "https://registry.npmjs.org/tiny-each-async/-/tiny-each-async-2.0.3.tgz"; 55882 - sha512 = "5ROII7nElnAirvFn8g7H7MtpfV1daMcyfTGQwsn/x2VtyV+VPiO5CjReCJtWLvoKTDEDmZocf3cNPraiMnBXLA=="; 55883 - }; 55884 - }; 55885 55228 "tiny-glob-0.2.9" = { 55886 55229 name = "tiny-glob"; 55887 55230 packageName = "tiny-glob"; ··· 56215 55558 sha512 = "F+3tYmXnpO2gyhZQ7o8yakELJH3FtKISI/FU0iWvchOWFUXiFnjbEBoumSzfcK1P71Qxzx2az4lVK4Dkq4KSew=="; 56216 55559 }; 56217 55560 }; 56218 - "totalist-3.0.1" = { 56219 - name = "totalist"; 56220 - packageName = "totalist"; 56221 - version = "3.0.1"; 56222 - src = fetchurl { 56223 - url = "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz"; 56224 - sha512 = "sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ=="; 56225 - }; 56226 - }; 56227 55561 "touch-3.1.0" = { 56228 55562 name = "touch"; 56229 55563 packageName = "touch"; ··· 56494 55828 sha512 = "Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="; 56495 55829 }; 56496 55830 }; 56497 - "ts-is-present-1.2.2" = { 56498 - name = "ts-is-present"; 56499 - packageName = "ts-is-present"; 56500 - version = "1.2.2"; 56501 - src = fetchurl { 56502 - url = "https://registry.npmjs.org/ts-is-present/-/ts-is-present-1.2.2.tgz"; 56503 - sha512 = "cA5MPLWGWYXvnlJb4TamUUx858HVHBsxxdy8l7jxODOLDyGYnQOllob2A2jyDghGa5iJHs2gzFNHvwGJ0ZfR8g=="; 56504 - }; 56505 - }; 56506 - "ts-loader-9.4.4" = { 56507 - name = "ts-loader"; 56508 - packageName = "ts-loader"; 56509 - version = "9.4.4"; 56510 - src = fetchurl { 56511 - url = "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz"; 56512 - sha512 = "MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w=="; 56513 - }; 56514 - }; 56515 55831 "ts-morph-12.0.0" = { 56516 55832 name = "ts-morph"; 56517 55833 packageName = "ts-morph"; ··· 57160 56476 sha512 = "mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w=="; 57161 56477 }; 57162 56478 }; 57163 - "typescript-5.3.0-dev.20230915" = { 56479 + "typescript-5.3.0-dev.20230920" = { 57164 56480 name = "typescript"; 57165 56481 packageName = "typescript"; 57166 - version = "5.3.0-dev.20230915"; 56482 + version = "5.3.0-dev.20230920"; 57167 56483 src = fetchurl { 57168 - url = "https://registry.npmjs.org/typescript/-/typescript-5.3.0-dev.20230915.tgz"; 57169 - sha512 = "GQr8dkpN44ywddczAzV80zSPckUfqUbxmCi2SXJ0SvOMOk7TXMUrcptoHQm7HqFggTUS41AUEr+a8RmyPApw4Q=="; 56484 + url = "https://registry.npmjs.org/typescript/-/typescript-5.3.0-dev.20230920.tgz"; 56485 + sha512 = "XaiYm7T6bGo+5mbRsmFqujMbNz0BLRCTKXiG7Nuodxz/aB5XJhJ01s/9GOJ/BS2XcxBqMoTbrGf61OdqzYhpxg=="; 57170 56486 }; 57171 56487 }; 57172 56488 "typescript-auto-import-cache-0.2.1" = { ··· 57187 56503 sha512 = "Rq6/q4O9iyqUdjvOoyas7x/Qf9nWUMeqpP3YeTaLA+uECgfy5wOhfOS+SW/+fZ/uI/ZcKaf+2/ZhFzXh8xfofQ=="; 57188 56504 }; 57189 56505 }; 57190 - "typescript-json-schema-0.60.0" = { 57191 - name = "typescript-json-schema"; 57192 - packageName = "typescript-json-schema"; 57193 - version = "0.60.0"; 57194 - src = fetchurl { 57195 - url = "https://registry.npmjs.org/typescript-json-schema/-/typescript-json-schema-0.60.0.tgz"; 57196 - sha512 = "pgSsm0K4jN2BMVPRVe8aCsct0hGAdmFIU3P8LtuUuwqzZnJh9oEabz82RuVhIWcKAA/yVyHYBKXWkkDid8/R9Q=="; 57197 - }; 57198 - }; 57199 56506 "typescript-tslint-plugin-0.5.4" = { 57200 56507 name = "typescript-tslint-plugin"; 57201 56508 packageName = "typescript-tslint-plugin"; ··· 57493 56800 sha512 = "1D7w+fvRsqlQ9GscLBwcAJinqcZGHUKjbOmXdlE/v8BvEGXjeWAax+341q44EuTcHXXnfyKNbKRq4Lg7OzhMmg=="; 57494 56801 }; 57495 56802 }; 57496 - "undici-5.24.0" = { 56803 + "undici-5.25.1" = { 57497 56804 name = "undici"; 57498 56805 packageName = "undici"; 57499 - version = "5.24.0"; 56806 + version = "5.25.1"; 57500 56807 src = fetchurl { 57501 - url = "https://registry.npmjs.org/undici/-/undici-5.24.0.tgz"; 57502 - sha512 = "OKlckxBjFl0oXxcj9FU6oB8fDAaiRUq+D8jrFWGmOfI/gIyjk/IeS75LMzgYKUaeHzLUcYvf9bbJGSrUwTfwwQ=="; 56808 + url = "https://registry.npmjs.org/undici/-/undici-5.25.1.tgz"; 56809 + sha512 = "nTw6b2G2OqP6btYPyghCgV4hSwjJlL/78FMJatVLCa3otj6PCOQSt6dVtYt82OtNqFz8XsnJ+vsXLADPXjPhqw=="; 57503 56810 }; 57504 56811 }; 57505 56812 "unherit-1.1.3" = { ··· 58258 57565 sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 58259 57566 }; 58260 57567 }; 58261 - "update-browserslist-db-1.0.11" = { 57568 + "update-browserslist-db-1.0.12" = { 58262 57569 name = "update-browserslist-db"; 58263 57570 packageName = "update-browserslist-db"; 58264 - version = "1.0.11"; 57571 + version = "1.0.12"; 58265 57572 src = fetchurl { 58266 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz"; 58267 - sha512 = "dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA=="; 57573 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.12.tgz"; 57574 + sha512 = "tE1smlR58jxbFMtrMpFNRmsrOXlpNXss965T1CrpwuZUzUAg/TBQc94SpyhDLSzrqrJS9xTRBthnZAGcE1oaxg=="; 58268 57575 }; 58269 57576 }; 58270 57577 "update-check-1.5.3" = { ··· 59770 59077 sha512 = "6TDy/abTQk+zDGYazgbIPc+4JoXdwC8NHU9Pbn4UJP1fehUyZmM4RHp5IthX7A6L5KS30PRui+j+tbbMMMafdw=="; 59771 59078 }; 59772 59079 }; 59080 + "vscode-jsonrpc-8.2.0" = { 59081 + name = "vscode-jsonrpc"; 59082 + packageName = "vscode-jsonrpc"; 59083 + version = "8.2.0"; 59084 + src = fetchurl { 59085 + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz"; 59086 + sha512 = "C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA=="; 59087 + }; 59088 + }; 59773 59089 "vscode-languageclient-8.1.0" = { 59774 59090 name = "vscode-languageclient"; 59775 59091 packageName = "vscode-languageclient"; ··· 59905 59221 sha512 = "924/h0AqsMtA5yK22GgMtCYiMdCOtWTSGgUOkgEDX+wk2b0x4sAfLiO4NxBxqbiVtz7K7/1/RgVrVI0NClZwqA=="; 59906 59222 }; 59907 59223 }; 59224 + "vscode-languageserver-protocol-3.17.4" = { 59225 + name = "vscode-languageserver-protocol"; 59226 + packageName = "vscode-languageserver-protocol"; 59227 + version = "3.17.4"; 59228 + src = fetchurl { 59229 + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.4.tgz"; 59230 + sha512 = "IpaHLPft+UBWf4dOIH15YEgydTbXGz52EMU2h16SfFpYu/yOQt3pY14049mtpJu+4CBHn+hq7S67e7O0AwpRqQ=="; 59231 + }; 59232 + }; 59908 59233 "vscode-languageserver-protocol-3.5.1" = { 59909 59234 name = "vscode-languageserver-protocol"; 59910 59235 packageName = "vscode-languageserver-protocol"; ··· 60011 59336 src = fetchurl { 60012 59337 url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz"; 60013 59338 sha512 = "SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA=="; 59339 + }; 59340 + }; 59341 + "vscode-languageserver-types-3.17.4" = { 59342 + name = "vscode-languageserver-types"; 59343 + packageName = "vscode-languageserver-types"; 59344 + version = "3.17.4"; 59345 + src = fetchurl { 59346 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.4.tgz"; 59347 + sha512 = "9YXi5pA3XF2V+NUQg6g+lulNS0ncRCKASYdK3Cs7kiH9sVFXWq27prjkC/B8M/xJLRPPRSPCHVMuBTgRNFh2sQ=="; 60014 59348 }; 60015 59349 }; 60016 59350 "vscode-languageserver-types-3.5.0" = { ··· 60427 59761 sha512 = "JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ=="; 60428 59762 }; 60429 59763 }; 60430 - "webpack-bundle-analyzer-4.9.1" = { 60431 - name = "webpack-bundle-analyzer"; 60432 - packageName = "webpack-bundle-analyzer"; 60433 - version = "4.9.1"; 60434 - src = fetchurl { 60435 - url = "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.9.1.tgz"; 60436 - sha512 = "jnd6EoYrf9yMxCyYDPj8eutJvtjQNp8PHmni/e/ulydHBWhT5J3menXt3HEkScsu9YqMAcG4CfFjs3rj5pVU1w=="; 60437 - }; 60438 - }; 60439 - "webpack-cli-4.10.0" = { 60440 - name = "webpack-cli"; 60441 - packageName = "webpack-cli"; 60442 - version = "4.10.0"; 60443 - src = fetchurl { 60444 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz"; 60445 - sha512 = "NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w=="; 60446 - }; 60447 - }; 60448 59764 "webpack-cli-5.1.4" = { 60449 59765 name = "webpack-cli"; 60450 59766 packageName = "webpack-cli"; ··· 60794 60110 src = fetchurl { 60795 60111 url = "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz"; 60796 60112 sha512 = "CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ=="; 60797 - }; 60798 - }; 60799 - "winattr-3.0.0" = { 60800 - name = "winattr"; 60801 - packageName = "winattr"; 60802 - version = "3.0.0"; 60803 - src = fetchurl { 60804 - url = "https://registry.npmjs.org/winattr/-/winattr-3.0.0.tgz"; 60805 - sha512 = "dt33rYsTYcGbB+I1ubB6ZLODibRSCW//TgY/SuajLllR9kHnHnbUMqnXIe0osYsXUdRLGs770zb3t9z/ScGUpw=="; 60806 60113 }; 60807 60114 }; 60808 60115 "window-size-0.1.0" = { ··· 61318 60625 sha512 = "4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A=="; 61319 60626 }; 61320 60627 }; 60628 + "ws-8.14.2" = { 60629 + name = "ws"; 60630 + packageName = "ws"; 60631 + version = "8.14.2"; 60632 + src = fetchurl { 60633 + url = "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz"; 60634 + sha512 = "wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g=="; 60635 + }; 60636 + }; 61321 60637 "ws-8.5.0" = { 61322 60638 name = "ws"; 61323 60639 packageName = "ws"; ··· 62228 61544 sha512 = "9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ=="; 62229 61545 }; 62230 61546 }; 62231 - "zip-stream-5.0.1" = { 62232 - name = "zip-stream"; 62233 - packageName = "zip-stream"; 62234 - version = "5.0.1"; 62235 - src = fetchurl { 62236 - url = "https://registry.npmjs.org/zip-stream/-/zip-stream-5.0.1.tgz"; 62237 - sha512 = "UfZ0oa0C8LI58wJ+moL46BDIMgCQbnsb+2PoiJYtonhBsMh2bq1eRBVkvjfVsqbEHd9/EgKPUuL9saSSsec8OA=="; 62238 - }; 62239 - }; 62240 61547 "zod-1.11.17" = { 62241 61548 name = "zod"; 62242 61549 packageName = "zod"; ··· 62306 61613 "@angular/cli" = nodeEnv.buildNodePackage { 62307 61614 name = "_at_angular_slash_cli"; 62308 61615 packageName = "@angular/cli"; 62309 - version = "16.2.2"; 61616 + version = "16.2.3"; 62310 61617 src = fetchurl { 62311 - url = "https://registry.npmjs.org/@angular/cli/-/cli-16.2.2.tgz"; 62312 - sha512 = "PmhR/NMVVCiATXxHLkVCV781Q5aa5DaYye9+plZGX3rdKTilEunRNIfT13w7IuRfa0K/pKZj6PJU1S6yb7sqZg=="; 61618 + url = "https://registry.npmjs.org/@angular/cli/-/cli-16.2.3.tgz"; 61619 + sha512 = "XYewIme6CPxgyK9A4aBDUOwv88h8RHwCeLxuBQcOYY2kVhWIiQjFwdkODQPG0WZkRZxtwXk6wErIO80Nz1K8BA=="; 62313 61620 }; 62314 61621 dependencies = [ 62315 - sources."@angular-devkit/architect-0.1602.2" 62316 - sources."@angular-devkit/core-16.2.2" 62317 - sources."@angular-devkit/schematics-16.2.2" 61622 + sources."@angular-devkit/architect-0.1602.3" 61623 + sources."@angular-devkit/core-16.2.3" 61624 + sources."@angular-devkit/schematics-16.2.3" 62318 61625 (sources."@isaacs/cliui-8.0.2" // { 62319 61626 dependencies = [ 62320 61627 sources."ansi-regex-6.0.1" ··· 62332 61639 sources."@npmcli/node-gyp-3.0.0" 62333 61640 sources."@npmcli/promise-spawn-6.0.2" 62334 61641 sources."@npmcli/run-script-6.0.2" 62335 - sources."@schematics/angular-16.2.2" 61642 + sources."@schematics/angular-16.2.3" 62336 61643 sources."@sigstore/bundle-1.1.0" 62337 61644 sources."@sigstore/protobuf-specs-0.2.1" 62338 61645 sources."@sigstore/sign-1.0.0" ··· 62592 61899 sources."spdx-correct-3.2.0" 62593 61900 sources."spdx-exceptions-2.3.0" 62594 61901 sources."spdx-expression-parse-3.0.1" 62595 - sources."spdx-license-ids-3.0.13" 61902 + sources."spdx-license-ids-3.0.15" 62596 61903 (sources."ssri-10.0.5" // { 62597 61904 dependencies = [ 62598 61905 sources."minipass-7.0.3" ··· 62741 62048 ]; 62742 62049 }) 62743 62050 sources."vscode-jsonrpc-8.1.0" 62744 - sources."vscode-languageserver-8.1.0" 62745 - sources."vscode-languageserver-protocol-3.17.3" 62051 + (sources."vscode-languageserver-8.1.0" // { 62052 + dependencies = [ 62053 + sources."vscode-languageserver-protocol-3.17.3" 62054 + ]; 62055 + }) 62056 + (sources."vscode-languageserver-protocol-3.17.4" // { 62057 + dependencies = [ 62058 + sources."vscode-jsonrpc-8.2.0" 62059 + sources."vscode-languageserver-types-3.17.4" 62060 + ]; 62061 + }) 62746 62062 sources."vscode-languageserver-textdocument-1.0.10" 62747 62063 sources."vscode-languageserver-types-3.17.3" 62748 62064 sources."vscode-nls-5.2.0" ··· 62770 62086 dependencies = [ 62771 62087 sources."@ampproject/remapping-2.2.1" 62772 62088 sources."@babel/code-frame-7.22.13" 62773 - sources."@babel/compat-data-7.22.9" 62774 - (sources."@babel/core-7.22.19" // { 62089 + sources."@babel/compat-data-7.22.20" 62090 + (sources."@babel/core-7.22.20" // { 62775 62091 dependencies = [ 62776 62092 sources."semver-6.3.1" 62777 62093 ]; ··· 62782 62098 sources."semver-6.3.1" 62783 62099 ]; 62784 62100 }) 62785 - sources."@babel/helper-environment-visitor-7.22.5" 62101 + sources."@babel/helper-environment-visitor-7.22.20" 62786 62102 sources."@babel/helper-function-name-7.22.5" 62787 62103 sources."@babel/helper-hoist-variables-7.22.5" 62788 62104 sources."@babel/helper-module-imports-7.22.15" 62789 - sources."@babel/helper-module-transforms-7.22.19" 62105 + sources."@babel/helper-module-transforms-7.22.20" 62790 62106 sources."@babel/helper-simple-access-7.22.5" 62791 62107 sources."@babel/helper-split-export-declaration-7.22.6" 62792 62108 sources."@babel/helper-string-parser-7.22.5" 62793 - sources."@babel/helper-validator-identifier-7.22.19" 62109 + sources."@babel/helper-validator-identifier-7.22.20" 62794 62110 sources."@babel/helper-validator-option-7.22.15" 62795 62111 sources."@babel/helpers-7.22.15" 62796 - sources."@babel/highlight-7.22.13" 62112 + sources."@babel/highlight-7.22.20" 62797 62113 sources."@babel/parser-7.22.16" 62798 62114 sources."@babel/template-7.22.15" 62799 - sources."@babel/traverse-7.22.19" 62115 + sources."@babel/traverse-7.22.20" 62800 62116 sources."@babel/types-7.22.19" 62801 62117 sources."@jridgewell/gen-mapping-0.3.3" 62802 62118 sources."@jridgewell/resolve-uri-3.1.1" ··· 62807 62123 sources."balanced-match-1.0.2" 62808 62124 sources."brace-expansion-1.1.11" 62809 62125 sources."browserslist-4.21.10" 62810 - sources."caniuse-lite-1.0.30001534" 62126 + sources."caniuse-lite-1.0.30001538" 62811 62127 sources."chalk-2.4.2" 62812 62128 sources."color-convert-1.9.3" 62813 62129 sources."color-name-1.1.3" ··· 62815 62131 sources."concat-map-0.0.1" 62816 62132 sources."convert-source-map-1.9.0" 62817 62133 sources."debug-4.3.4" 62818 - sources."electron-to-chromium-1.4.523" 62134 + sources."electron-to-chromium-1.4.525" 62819 62135 sources."escalade-3.1.1" 62820 62136 sources."escape-string-regexp-1.0.5" 62821 62137 sources."fs-readdir-recursive-1.1.0" ··· 62842 62158 sources."slash-2.0.0" 62843 62159 sources."supports-color-5.5.0" 62844 62160 sources."to-fast-properties-2.0.0" 62845 - sources."update-browserslist-db-1.0.11" 62161 + sources."update-browserslist-db-1.0.12" 62846 62162 sources."wrappy-1.0.2" 62847 62163 sources."yallist-3.1.1" 62848 62164 ]; ··· 62875 62191 sources."supports-color-5.5.0" 62876 62192 ]; 62877 62193 }) 62878 - sources."@babel/helper-validator-identifier-7.22.19" 62879 - (sources."@babel/highlight-7.22.13" // { 62194 + sources."@babel/helper-validator-identifier-7.22.20" 62195 + (sources."@babel/highlight-7.22.20" // { 62880 62196 dependencies = [ 62881 62197 sources."ansi-styles-3.2.1" 62882 62198 sources."chalk-2.4.2" ··· 62912 62228 sources."@jridgewell/resolve-uri-3.1.1" 62913 62229 sources."@jridgewell/sourcemap-codec-1.4.15" 62914 62230 sources."@jridgewell/trace-mapping-0.3.9" 62915 - sources."@swc/core-1.3.85" 62916 - sources."@swc/core-darwin-arm64-1.3.85" 62917 - sources."@swc/core-darwin-x64-1.3.85" 62918 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 62919 - sources."@swc/core-linux-arm64-gnu-1.3.85" 62920 - sources."@swc/core-linux-arm64-musl-1.3.85" 62921 - sources."@swc/core-linux-x64-gnu-1.3.85" 62922 - sources."@swc/core-linux-x64-musl-1.3.85" 62923 - sources."@swc/core-win32-arm64-msvc-1.3.85" 62924 - sources."@swc/core-win32-ia32-msvc-1.3.85" 62925 - sources."@swc/core-win32-x64-msvc-1.3.85" 62231 + sources."@swc/core-1.3.86" 62232 + sources."@swc/core-darwin-arm64-1.3.86" 62233 + sources."@swc/core-darwin-x64-1.3.86" 62234 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 62235 + sources."@swc/core-linux-arm64-gnu-1.3.86" 62236 + sources."@swc/core-linux-arm64-musl-1.3.86" 62237 + sources."@swc/core-linux-x64-gnu-1.3.86" 62238 + sources."@swc/core-linux-x64-musl-1.3.86" 62239 + sources."@swc/core-win32-arm64-msvc-1.3.86" 62240 + sources."@swc/core-win32-ia32-msvc-1.3.86" 62241 + sources."@swc/core-win32-x64-msvc-1.3.86" 62926 62242 sources."@swc/helpers-0.5.2" 62927 - sources."@swc/types-0.1.4" 62928 - sources."@swc/wasm-1.3.85" 62243 + sources."@swc/types-0.1.5" 62244 + sources."@swc/wasm-1.3.86" 62929 62245 sources."@tsconfig/node10-1.0.9" 62930 62246 sources."@tsconfig/node12-1.0.11" 62931 62247 sources."@tsconfig/node14-1.0.3" ··· 63061 62377 sources."redent-3.0.0" 63062 62378 sources."require-directory-2.1.1" 63063 62379 sources."require-from-string-2.0.2" 63064 - sources."resolve-1.22.5" 62380 + sources."resolve-1.22.6" 63065 62381 sources."resolve-from-5.0.0" 63066 62382 sources."resolve-global-1.0.0" 63067 62383 sources."safe-buffer-5.2.1" ··· 63072 62388 sources."spdx-correct-3.2.0" 63073 62389 sources."spdx-exceptions-2.3.0" 63074 62390 sources."spdx-expression-parse-3.0.1" 63075 - sources."spdx-license-ids-3.0.13" 62391 + sources."spdx-license-ids-3.0.15" 63076 62392 sources."split2-3.2.2" 63077 62393 sources."string-width-4.2.3" 63078 62394 sources."string_decoder-1.3.0" ··· 63142 62458 bypassCache = true; 63143 62459 reconstructLock = true; 63144 62460 }; 63145 - "@forge/cli" = nodeEnv.buildNodePackage { 63146 - name = "_at_forge_slash_cli"; 63147 - packageName = "@forge/cli"; 63148 - version = "6.17.0"; 63149 - src = fetchurl { 63150 - url = "https://registry.npmjs.org/@forge/cli/-/cli-6.17.0.tgz"; 63151 - sha512 = "bMI+dVl2IEzVm8x2urZhfHemE6fqoo+UxRYzMT0Ga7MDOCxGSS6uMDUGfOKpYVwF10j7Pe4BrtoHxBEp7BhG7Q=="; 63152 - }; 63153 - dependencies = [ 63154 - sources."@ampproject/remapping-2.2.1" 63155 - (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { 63156 - dependencies = [ 63157 - sources."argparse-2.0.1" 63158 - sources."js-yaml-4.1.0" 63159 - ]; 63160 - }) 63161 - sources."@babel/code-frame-7.22.13" 63162 - sources."@babel/compat-data-7.22.9" 63163 - (sources."@babel/core-7.22.19" // { 63164 - dependencies = [ 63165 - sources."semver-6.3.1" 63166 - ]; 63167 - }) 63168 - sources."@babel/generator-7.22.15" 63169 - sources."@babel/helper-annotate-as-pure-7.22.5" 63170 - (sources."@babel/helper-compilation-targets-7.22.15" // { 63171 - dependencies = [ 63172 - sources."semver-6.3.1" 63173 - ]; 63174 - }) 63175 - (sources."@babel/helper-create-class-features-plugin-7.22.15" // { 63176 - dependencies = [ 63177 - sources."semver-6.3.1" 63178 - ]; 63179 - }) 63180 - sources."@babel/helper-environment-visitor-7.22.5" 63181 - sources."@babel/helper-function-name-7.22.5" 63182 - sources."@babel/helper-hoist-variables-7.22.5" 63183 - sources."@babel/helper-member-expression-to-functions-7.22.15" 63184 - sources."@babel/helper-module-imports-7.22.15" 63185 - sources."@babel/helper-module-transforms-7.22.19" 63186 - sources."@babel/helper-optimise-call-expression-7.22.5" 63187 - sources."@babel/helper-plugin-utils-7.22.5" 63188 - sources."@babel/helper-replace-supers-7.22.9" 63189 - sources."@babel/helper-simple-access-7.22.5" 63190 - sources."@babel/helper-skip-transparent-expression-wrappers-7.22.5" 63191 - sources."@babel/helper-split-export-declaration-7.22.6" 63192 - sources."@babel/helper-string-parser-7.22.5" 63193 - sources."@babel/helper-validator-identifier-7.22.19" 63194 - sources."@babel/helper-validator-option-7.22.15" 63195 - sources."@babel/helpers-7.22.15" 63196 - sources."@babel/highlight-7.22.13" 63197 - sources."@babel/parser-7.22.16" 63198 - sources."@babel/plugin-syntax-class-static-block-7.14.5" 63199 - sources."@babel/plugin-syntax-jsx-7.22.5" 63200 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 63201 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 63202 - sources."@babel/plugin-syntax-typescript-7.22.5" 63203 - sources."@babel/plugin-transform-class-properties-7.22.5" 63204 - sources."@babel/plugin-transform-class-static-block-7.22.11" 63205 - sources."@babel/plugin-transform-modules-commonjs-7.22.15" 63206 - sources."@babel/plugin-transform-numeric-separator-7.22.11" 63207 - sources."@babel/plugin-transform-optional-chaining-7.22.15" 63208 - sources."@babel/plugin-transform-react-jsx-7.22.15" 63209 - sources."@babel/plugin-transform-typescript-7.22.15" 63210 - sources."@babel/preset-typescript-7.22.15" 63211 - sources."@babel/template-7.22.15" 63212 - sources."@babel/traverse-7.22.19" 63213 - sources."@babel/types-7.22.19" 63214 - sources."@colors/colors-1.5.0" 63215 - (sources."@cspotcode/source-map-support-0.8.1" // { 63216 - dependencies = [ 63217 - sources."@jridgewell/trace-mapping-0.3.9" 63218 - ]; 63219 - }) 63220 - sources."@discoveryjs/json-ext-0.5.7" 63221 - sources."@forge/api-2.19.0" 63222 - sources."@forge/auth-0.0.5" 63223 - sources."@forge/babel-plugin-transform-ui-1.1.7" 63224 - sources."@forge/bundler-4.12.0" 63225 - sources."@forge/cli-shared-3.18.0" 63226 - sources."@forge/csp-2.2.1" 63227 - (sources."@forge/egress-1.2.4" // { 63228 - dependencies = [ 63229 - sources."brace-expansion-2.0.1" 63230 - sources."minimatch-5.1.6" 63231 - ]; 63232 - }) 63233 - sources."@forge/lint-3.6.6" 63234 - sources."@forge/manifest-4.20.0" 63235 - sources."@forge/node-runtime-0.1.2" 63236 - sources."@forge/runtime-5.0.1" 63237 - sources."@forge/storage-1.5.8" 63238 - sources."@forge/tunnel-3.7.0" 63239 - sources."@forge/util-1.3.1" 63240 - sources."@jridgewell/gen-mapping-0.3.3" 63241 - sources."@jridgewell/resolve-uri-3.1.1" 63242 - sources."@jridgewell/set-array-1.1.2" 63243 - sources."@jridgewell/source-map-0.3.5" 63244 - sources."@jridgewell/sourcemap-codec-1.4.15" 63245 - sources."@jridgewell/trace-mapping-0.3.19" 63246 - sources."@jsdevtools/ono-7.1.3" 63247 - sources."@leichtgewicht/ip-codec-2.0.4" 63248 - sources."@nodelib/fs.scandir-2.1.5" 63249 - sources."@nodelib/fs.stat-2.0.5" 63250 - sources."@nodelib/fs.walk-1.2.8" 63251 - sources."@polka/url-1.0.0-next.23" 63252 - sources."@sentry-internal/tracing-7.69.0" 63253 - sources."@sentry/core-7.69.0" 63254 - (sources."@sentry/node-7.69.0" // { 63255 - dependencies = [ 63256 - sources."cookie-0.4.2" 63257 - ]; 63258 - }) 63259 - sources."@sentry/types-7.69.0" 63260 - sources."@sentry/utils-7.69.0" 63261 - sources."@sindresorhus/is-4.6.0" 63262 - sources."@swc/core-1.3.85" 63263 - sources."@swc/core-darwin-arm64-1.3.85" 63264 - sources."@swc/core-darwin-x64-1.3.85" 63265 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 63266 - sources."@swc/core-linux-arm64-gnu-1.3.85" 63267 - sources."@swc/core-linux-arm64-musl-1.3.85" 63268 - sources."@swc/core-linux-x64-gnu-1.3.85" 63269 - sources."@swc/core-linux-x64-musl-1.3.85" 63270 - sources."@swc/core-win32-arm64-msvc-1.3.85" 63271 - sources."@swc/core-win32-ia32-msvc-1.3.85" 63272 - sources."@swc/core-win32-x64-msvc-1.3.85" 63273 - sources."@swc/helpers-0.5.2" 63274 - sources."@swc/types-0.1.4" 63275 - sources."@swc/wasm-1.3.85" 63276 - sources."@szmarczak/http-timer-4.0.6" 63277 - sources."@tsconfig/node10-1.0.9" 63278 - sources."@tsconfig/node12-1.0.11" 63279 - sources."@tsconfig/node14-1.0.3" 63280 - sources."@tsconfig/node16-1.0.4" 63281 - sources."@types/body-parser-1.19.3" 63282 - sources."@types/bonjour-3.5.11" 63283 - sources."@types/cacheable-request-6.0.3" 63284 - sources."@types/connect-3.4.36" 63285 - sources."@types/connect-history-api-fallback-1.5.1" 63286 - sources."@types/eslint-8.44.2" 63287 - sources."@types/eslint-scope-3.7.4" 63288 - sources."@types/estree-1.0.1" 63289 - sources."@types/express-4.17.17" 63290 - sources."@types/express-serve-static-core-4.17.36" 63291 - sources."@types/html-minifier-terser-6.1.0" 63292 - sources."@types/http-cache-semantics-4.0.1" 63293 - sources."@types/http-errors-2.0.1" 63294 - sources."@types/http-proxy-1.17.11" 63295 - sources."@types/json-schema-7.0.12" 63296 - sources."@types/keyv-3.1.4" 63297 - sources."@types/mime-1.3.2" 63298 - sources."@types/node-20.6.1" 63299 - (sources."@types/node-fetch-2.6.5" // { 63300 - dependencies = [ 63301 - sources."form-data-4.0.0" 63302 - ]; 63303 - }) 63304 - sources."@types/qs-6.9.8" 63305 - sources."@types/range-parser-1.2.4" 63306 - sources."@types/responselike-1.0.0" 63307 - sources."@types/retry-0.12.0" 63308 - sources."@types/send-0.17.1" 63309 - sources."@types/serve-index-1.9.1" 63310 - sources."@types/serve-static-1.15.2" 63311 - sources."@types/sockjs-0.3.33" 63312 - sources."@types/ws-8.5.5" 63313 - sources."@types/yauzl-2.10.0" 63314 - sources."@typescript-eslint/types-5.62.0" 63315 - sources."@typescript-eslint/typescript-estree-5.62.0" 63316 - sources."@typescript-eslint/visitor-keys-5.62.0" 63317 - sources."@webassemblyjs/ast-1.11.6" 63318 - sources."@webassemblyjs/floating-point-hex-parser-1.11.6" 63319 - sources."@webassemblyjs/helper-api-error-1.11.6" 63320 - sources."@webassemblyjs/helper-buffer-1.11.6" 63321 - sources."@webassemblyjs/helper-numbers-1.11.6" 63322 - sources."@webassemblyjs/helper-wasm-bytecode-1.11.6" 63323 - sources."@webassemblyjs/helper-wasm-section-1.11.6" 63324 - sources."@webassemblyjs/ieee754-1.11.6" 63325 - sources."@webassemblyjs/leb128-1.11.6" 63326 - sources."@webassemblyjs/utf8-1.11.6" 63327 - sources."@webassemblyjs/wasm-edit-1.11.6" 63328 - sources."@webassemblyjs/wasm-gen-1.11.6" 63329 - sources."@webassemblyjs/wasm-opt-1.11.6" 63330 - sources."@webassemblyjs/wasm-parser-1.11.6" 63331 - sources."@webassemblyjs/wast-printer-1.11.6" 63332 - sources."@webpack-cli/configtest-1.2.0" 63333 - sources."@webpack-cli/info-1.5.0" 63334 - sources."@webpack-cli/serve-1.7.0" 63335 - sources."@xtuc/ieee754-1.2.0" 63336 - sources."@xtuc/long-4.2.2" 63337 - sources."accepts-1.3.8" 63338 - sources."acorn-8.10.0" 63339 - sources."acorn-import-assertions-1.9.0" 63340 - sources."acorn-walk-8.2.0" 63341 - sources."adm-zip-0.5.10" 63342 - sources."agent-base-6.0.2" 63343 - (sources."ajv-8.12.0" // { 63344 - dependencies = [ 63345 - sources."json-schema-traverse-1.0.0" 63346 - ]; 63347 - }) 63348 - sources."ajv-formats-2.1.1" 63349 - (sources."ajv-keywords-3.5.2" // { 63350 - dependencies = [ 63351 - sources."ajv-6.12.6" 63352 - ]; 63353 - }) 63354 - sources."ansi-escapes-4.3.2" 63355 - sources."ansi-html-community-0.0.8" 63356 - sources."ansi-regex-5.0.1" 63357 - sources."ansi-styles-4.3.0" 63358 - sources."any-promise-1.3.0" 63359 - sources."anymatch-3.1.3" 63360 - (sources."archiver-6.0.1" // { 63361 - dependencies = [ 63362 - sources."tar-stream-3.1.6" 63363 - ]; 63364 - }) 63365 - (sources."archiver-utils-4.0.1" // { 63366 - dependencies = [ 63367 - sources."brace-expansion-2.0.1" 63368 - sources."glob-8.1.0" 63369 - sources."minimatch-5.1.6" 63370 - ]; 63371 - }) 63372 - sources."arg-4.1.3" 63373 - sources."argparse-1.0.10" 63374 - sources."array-buffer-byte-length-1.0.0" 63375 - sources."array-flatten-1.1.1" 63376 - sources."array-union-2.1.0" 63377 - sources."array.prototype.flatmap-1.3.2" 63378 - sources."arraybuffer.prototype.slice-1.0.2" 63379 - (sources."asn1.js-5.4.1" // { 63380 - dependencies = [ 63381 - sources."bn.js-4.12.0" 63382 - ]; 63383 - }) 63384 - sources."assert-2.1.0" 63385 - sources."async-3.2.4" 63386 - sources."async-request-handler-0.9.0" 63387 - sources."asynckit-0.4.0" 63388 - sources."atlassian-openapi-1.0.17" 63389 - sources."atomically-1.7.0" 63390 - sources."available-typed-arrays-1.0.5" 63391 - sources."b4a-1.6.4" 63392 - sources."babel-loader-8.3.0" 63393 - sources."balanced-match-1.0.2" 63394 - sources."base64-js-1.5.1" 63395 - sources."batch-0.6.1" 63396 - sources."big.js-5.2.2" 63397 - sources."binary-extensions-2.2.0" 63398 - (sources."bl-4.1.0" // { 63399 - dependencies = [ 63400 - sources."buffer-5.7.1" 63401 - ]; 63402 - }) 63403 - sources."bn.js-5.2.1" 63404 - (sources."body-parser-1.20.1" // { 63405 - dependencies = [ 63406 - sources."debug-2.6.9" 63407 - sources."ms-2.0.0" 63408 - sources."qs-6.11.0" 63409 - ]; 63410 - }) 63411 - (sources."bonjour-service-1.1.1" // { 63412 - dependencies = [ 63413 - sources."array-flatten-2.1.2" 63414 - ]; 63415 - }) 63416 - sources."boolbase-1.0.0" 63417 - sources."brace-expansion-1.1.11" 63418 - sources."braces-3.0.2" 63419 - sources."brorand-1.1.0" 63420 - sources."browserify-aes-1.2.0" 63421 - sources."browserify-cipher-1.0.1" 63422 - sources."browserify-des-1.0.2" 63423 - sources."browserify-rsa-4.1.0" 63424 - sources."browserify-sign-4.2.1" 63425 - sources."browserify-zlib-0.2.0" 63426 - sources."browserslist-4.21.10" 63427 - sources."buffer-6.0.3" 63428 - sources."buffer-crc32-0.2.13" 63429 - sources."buffer-from-1.1.2" 63430 - sources."buffer-xor-1.0.3" 63431 - sources."bufferutil-4.0.7" 63432 - sources."bytes-3.1.2" 63433 - sources."cacheable-lookup-5.0.4" 63434 - sources."cacheable-request-7.0.4" 63435 - sources."call-bind-1.0.2" 63436 - sources."call-me-maybe-1.0.2" 63437 - sources."camel-case-4.1.2" 63438 - sources."caniuse-lite-1.0.30001534" 63439 - sources."case-1.6.3" 63440 - (sources."chalk-2.4.2" // { 63441 - dependencies = [ 63442 - sources."ansi-styles-3.2.1" 63443 - sources."color-convert-1.9.3" 63444 - sources."color-name-1.1.3" 63445 - sources."escape-string-regexp-1.0.5" 63446 - sources."has-flag-3.0.0" 63447 - sources."supports-color-5.5.0" 63448 - ]; 63449 - }) 63450 - sources."chardet-0.7.0" 63451 - (sources."cheerio-0.22.0" // { 63452 - dependencies = [ 63453 - sources."css-select-1.2.0" 63454 - sources."css-what-2.1.3" 63455 - sources."dom-serializer-0.1.1" 63456 - sources."domelementtype-1.3.1" 63457 - sources."domhandler-2.4.2" 63458 - sources."domutils-1.5.1" 63459 - sources."entities-1.1.2" 63460 - sources."htmlparser2-3.10.1" 63461 - sources."nth-check-1.0.2" 63462 - ]; 63463 - }) 63464 - sources."chokidar-3.5.3" 63465 - sources."chownr-1.1.4" 63466 - sources."chrome-trace-event-1.0.3" 63467 - sources."cipher-base-1.0.4" 63468 - sources."clean-css-5.3.2" 63469 - sources."cli-color-2.0.3" 63470 - sources."cli-cursor-3.1.0" 63471 - sources."cli-spinners-2.9.1" 63472 - sources."cli-table3-0.6.3" 63473 - sources."cli-width-3.0.0" 63474 - (sources."cliui-8.0.1" // { 63475 - dependencies = [ 63476 - sources."wrap-ansi-7.0.0" 63477 - ]; 63478 - }) 63479 - sources."clone-1.0.4" 63480 - (sources."clone-deep-4.0.1" // { 63481 - dependencies = [ 63482 - sources."is-plain-object-2.0.4" 63483 - ]; 63484 - }) 63485 - (sources."clone-response-1.0.3" // { 63486 - dependencies = [ 63487 - sources."mimic-response-1.0.1" 63488 - ]; 63489 - }) 63490 - sources."color-convert-2.0.1" 63491 - sources."color-name-1.1.4" 63492 - sources."colorette-2.0.20" 63493 - sources."combined-stream-1.0.8" 63494 - sources."command-exists-1.2.9" 63495 - sources."commander-11.0.0" 63496 - sources."commondir-1.0.1" 63497 - sources."compress-commons-5.0.1" 63498 - sources."compressible-2.0.18" 63499 - (sources."compression-1.7.4" // { 63500 - dependencies = [ 63501 - sources."bytes-3.0.0" 63502 - sources."debug-2.6.9" 63503 - sources."ms-2.0.0" 63504 - sources."safe-buffer-5.1.2" 63505 - ]; 63506 - }) 63507 - sources."concat-map-0.0.1" 63508 - sources."conf-10.2.0" 63509 - sources."connect-history-api-fallback-2.0.0" 63510 - sources."console-browserify-1.2.0" 63511 - sources."content-disposition-0.5.4" 63512 - sources."content-security-policy-parser-0.4.1" 63513 - sources."content-type-1.0.5" 63514 - sources."convert-source-map-1.9.0" 63515 - sources."cookie-0.5.0" 63516 - sources."cookie-signature-1.0.6" 63517 - sources."core-util-is-1.0.3" 63518 - sources."crc-32-1.2.2" 63519 - sources."crc32-stream-5.0.0" 63520 - (sources."create-ecdh-4.0.4" // { 63521 - dependencies = [ 63522 - sources."bn.js-4.12.0" 63523 - ]; 63524 - }) 63525 - sources."create-hash-1.2.0" 63526 - sources."create-hmac-1.1.7" 63527 - sources."create-require-1.1.1" 63528 - sources."cross-fetch-3.1.8" 63529 - sources."cross-spawn-7.0.3" 63530 - sources."crypto-browserify-3.12.0" 63531 - sources."css-select-4.3.0" 63532 - sources."css-what-6.1.0" 63533 - sources."d-1.0.1" 63534 - sources."dayjs-1.11.9" 63535 - sources."debounce-fn-4.0.0" 63536 - sources."debug-4.3.4" 63537 - sources."decompress-response-6.0.0" 63538 - sources."deep-extend-0.6.0" 63539 - sources."default-gateway-6.0.3" 63540 - sources."defaults-1.0.4" 63541 - sources."defer-to-connect-2.0.1" 63542 - sources."define-data-property-1.1.0" 63543 - sources."define-lazy-prop-2.0.0" 63544 - sources."define-properties-1.2.1" 63545 - sources."delayed-stream-1.0.0" 63546 - sources."depd-2.0.0" 63547 - sources."des.js-1.1.0" 63548 - sources."destroy-1.2.0" 63549 - sources."detect-libc-2.0.2" 63550 - sources."detect-node-2.1.0" 63551 - sources."didyoumean-1.2.2" 63552 - sources."diff-4.0.2" 63553 - (sources."diffie-hellman-5.0.3" // { 63554 - dependencies = [ 63555 - sources."bn.js-4.12.0" 63556 - ]; 63557 - }) 63558 - sources."dir-glob-3.0.1" 63559 - sources."dns-equal-1.0.0" 63560 - sources."dns-packet-5.6.1" 63561 - sources."dom-converter-0.2.0" 63562 - sources."dom-serializer-1.4.1" 63563 - sources."domelementtype-2.3.0" 63564 - sources."domhandler-4.3.1" 63565 - sources."domutils-2.8.0" 63566 - sources."dot-case-3.0.4" 63567 - sources."dot-prop-6.0.1" 63568 - sources."duplexer-0.1.2" 63569 - sources."ee-first-1.1.1" 63570 - sources."electron-to-chromium-1.4.523" 63571 - (sources."elliptic-6.5.4" // { 63572 - dependencies = [ 63573 - sources."bn.js-4.12.0" 63574 - ]; 63575 - }) 63576 - sources."emoji-regex-8.0.0" 63577 - sources."emojis-list-3.0.0" 63578 - sources."encodeurl-1.0.2" 63579 - (sources."encoding-0.1.13" // { 63580 - dependencies = [ 63581 - sources."iconv-lite-0.6.3" 63582 - ]; 63583 - }) 63584 - sources."end-of-stream-1.4.4" 63585 - sources."enhanced-resolve-5.15.0" 63586 - sources."entities-2.2.0" 63587 - sources."env-paths-2.2.1" 63588 - sources."envinfo-7.10.0" 63589 - sources."es-abstract-1.22.2" 63590 - sources."es-module-lexer-1.3.1" 63591 - sources."es-set-tostringtag-2.0.1" 63592 - sources."es-shim-unscopables-1.0.0" 63593 - sources."es-to-primitive-1.2.1" 63594 - sources."es5-ext-0.10.62" 63595 - sources."es6-iterator-2.0.3" 63596 - sources."es6-symbol-3.1.3" 63597 - sources."es6-weak-map-2.0.3" 63598 - sources."escalade-3.1.1" 63599 - sources."escape-html-1.0.3" 63600 - sources."escape-string-regexp-4.0.0" 63601 - sources."eslint-scope-5.1.1" 63602 - sources."eslint-visitor-keys-3.4.3" 63603 - sources."esprima-4.0.1" 63604 - (sources."esrecurse-4.3.0" // { 63605 - dependencies = [ 63606 - sources."estraverse-5.3.0" 63607 - ]; 63608 - }) 63609 - sources."estraverse-4.3.0" 63610 - sources."etag-1.8.1" 63611 - sources."event-emitter-0.3.5" 63612 - sources."eventemitter3-4.0.7" 63613 - sources."events-3.3.0" 63614 - sources."evp_bytestokey-1.0.3" 63615 - (sources."execa-5.1.1" // { 63616 - dependencies = [ 63617 - sources."get-stream-6.0.1" 63618 - ]; 63619 - }) 63620 - sources."expand-template-2.0.3" 63621 - (sources."express-4.18.2" // { 63622 - dependencies = [ 63623 - sources."debug-2.6.9" 63624 - sources."ms-2.0.0" 63625 - sources."qs-6.11.0" 63626 - ]; 63627 - }) 63628 - sources."express-intercept-1.1.0" 63629 - (sources."ext-1.7.0" // { 63630 - dependencies = [ 63631 - sources."type-2.7.2" 63632 - ]; 63633 - }) 63634 - (sources."external-editor-3.1.0" // { 63635 - dependencies = [ 63636 - sources."tmp-0.0.33" 63637 - ]; 63638 - }) 63639 - sources."extract-files-9.0.0" 63640 - sources."extract-zip-2.0.1" 63641 - sources."fast-deep-equal-3.1.3" 63642 - sources."fast-fifo-1.3.2" 63643 - sources."fast-glob-3.3.1" 63644 - sources."fast-json-stable-stringify-2.1.0" 63645 - sources."fastest-levenshtein-1.0.16" 63646 - sources."fastq-1.15.0" 63647 - sources."faye-websocket-0.11.4" 63648 - sources."fd-slicer-1.1.0" 63649 - (sources."figures-3.2.0" // { 63650 - dependencies = [ 63651 - sources."escape-string-regexp-1.0.5" 63652 - ]; 63653 - }) 63654 - sources."fill-range-7.0.1" 63655 - (sources."finalhandler-1.2.0" // { 63656 - dependencies = [ 63657 - sources."debug-2.6.9" 63658 - sources."ms-2.0.0" 63659 - ]; 63660 - }) 63661 - sources."find-cache-dir-3.3.2" 63662 - sources."find-up-4.1.0" 63663 - sources."follow-redirects-1.15.2" 63664 - sources."for-each-0.3.3" 63665 - sources."form-data-3.0.1" 63666 - sources."forwarded-0.2.0" 63667 - sources."fp-ts-2.16.1" 63668 - sources."fresh-0.5.2" 63669 - sources."fs-constants-1.0.0" 63670 - sources."fs-extra-8.1.0" 63671 - sources."fs-monkey-1.0.4" 63672 - sources."fs.realpath-1.0.0" 63673 - sources."fsevents-2.3.3" 63674 - sources."fswin-3.23.311" 63675 - sources."function-bind-1.1.1" 63676 - sources."function.prototype.name-1.1.6" 63677 - sources."functions-have-names-1.2.3" 63678 - sources."gar-1.0.4" 63679 - sources."gensync-1.0.0-beta.2" 63680 - sources."get-caller-file-2.0.5" 63681 - sources."get-folder-size-2.0.1" 63682 - sources."get-intrinsic-1.2.1" 63683 - sources."get-stream-5.2.0" 63684 - sources."get-symbol-description-1.0.0" 63685 - sources."github-from-package-0.0.0" 63686 - sources."glob-7.2.3" 63687 - sources."glob-parent-5.1.2" 63688 - sources."glob-to-regexp-0.4.1" 63689 - sources."globals-11.12.0" 63690 - sources."globalthis-1.0.3" 63691 - sources."globby-11.1.0" 63692 - sources."gopd-1.0.1" 63693 - sources."got-11.8.6" 63694 - sources."graceful-fs-4.2.11" 63695 - sources."graphql-15.8.0" 63696 - sources."graphql-request-3.7.0" 63697 - sources."gzip-size-6.0.0" 63698 - sources."handle-thing-2.0.1" 63699 - sources."has-1.0.3" 63700 - sources."has-bigints-1.0.2" 63701 - sources."has-flag-4.0.0" 63702 - sources."has-property-descriptors-1.0.0" 63703 - sources."has-proto-1.0.1" 63704 - sources."has-symbols-1.0.3" 63705 - sources."has-tostringtag-1.0.0" 63706 - sources."hash-base-3.1.0" 63707 - sources."hash.js-1.1.7" 63708 - sources."he-1.2.0" 63709 - sources."hidefile-3.0.0" 63710 - sources."hmac-drbg-1.0.1" 63711 - (sources."hpack.js-2.1.6" // { 63712 - dependencies = [ 63713 - sources."isarray-1.0.0" 63714 - sources."readable-stream-2.3.8" 63715 - sources."safe-buffer-5.1.2" 63716 - sources."string_decoder-1.1.1" 63717 - ]; 63718 - }) 63719 - sources."hpagent-0.1.2" 63720 - sources."html-entities-2.4.0" 63721 - (sources."html-minifier-terser-6.1.0" // { 63722 - dependencies = [ 63723 - sources."commander-8.3.0" 63724 - ]; 63725 - }) 63726 - sources."html-webpack-plugin-5.5.3" 63727 - sources."htmlparser2-6.1.0" 63728 - sources."http-cache-semantics-4.1.1" 63729 - sources."http-deceiver-1.2.7" 63730 - sources."http-errors-2.0.0" 63731 - sources."http-parser-js-0.5.8" 63732 - sources."http-proxy-1.18.1" 63733 - sources."http-proxy-middleware-1.3.1" 63734 - sources."http2-wrapper-1.0.3" 63735 - sources."https-proxy-agent-5.0.1" 63736 - sources."human-signals-2.1.0" 63737 - sources."iconv-lite-0.4.24" 63738 - sources."ieee754-1.2.1" 63739 - sources."ignore-5.2.4" 63740 - sources."ignore-walk-3.0.4" 63741 - sources."import-local-3.1.0" 63742 - sources."imurmurhash-0.1.4" 63743 - sources."inflight-1.0.6" 63744 - sources."inherits-2.0.4" 63745 - sources."ini-1.3.8" 63746 - (sources."inquirer-8.2.6" // { 63747 - dependencies = [ 63748 - sources."chalk-4.1.2" 63749 - sources."ora-5.4.1" 63750 - ]; 63751 - }) 63752 - sources."internal-slot-1.0.5" 63753 - sources."interpret-2.2.0" 63754 - sources."io-ts-2.2.20" 63755 - sources."io-ts-reporters-1.2.2" 63756 - sources."ipaddr.js-1.9.1" 63757 - sources."is-arguments-1.1.1" 63758 - sources."is-array-buffer-3.0.2" 63759 - sources."is-bigint-1.0.4" 63760 - sources."is-binary-path-2.1.0" 63761 - sources."is-boolean-object-1.1.2" 63762 - sources."is-callable-1.2.7" 63763 - sources."is-core-module-2.13.0" 63764 - sources."is-date-object-1.0.5" 63765 - sources."is-docker-2.2.1" 63766 - sources."is-extglob-2.1.1" 63767 - sources."is-fullwidth-code-point-3.0.0" 63768 - sources."is-generator-function-1.0.10" 63769 - sources."is-glob-4.0.3" 63770 - sources."is-interactive-1.0.0" 63771 - sources."is-nan-1.3.2" 63772 - sources."is-negative-zero-2.0.2" 63773 - sources."is-number-7.0.0" 63774 - sources."is-number-object-1.0.7" 63775 - sources."is-obj-2.0.0" 63776 - sources."is-plain-obj-3.0.0" 63777 - sources."is-plain-object-5.0.0" 63778 - sources."is-promise-2.2.2" 63779 - sources."is-regex-1.1.4" 63780 - sources."is-shared-array-buffer-1.0.2" 63781 - sources."is-stream-2.0.1" 63782 - sources."is-string-1.0.7" 63783 - sources."is-symbol-1.0.4" 63784 - sources."is-typed-array-1.1.12" 63785 - sources."is-unicode-supported-0.1.0" 63786 - sources."is-weakref-1.0.2" 63787 - sources."is-wsl-2.2.0" 63788 - sources."isarray-2.0.5" 63789 - sources."isexe-2.0.0" 63790 - sources."isobject-3.0.1" 63791 - (sources."jest-worker-27.5.1" // { 63792 - dependencies = [ 63793 - sources."supports-color-8.1.1" 63794 - ]; 63795 - }) 63796 - sources."js-tokens-4.0.0" 63797 - sources."js-yaml-3.14.1" 63798 - sources."jsesc-2.5.2" 63799 - sources."json-buffer-3.0.1" 63800 - sources."json-parse-even-better-errors-2.3.1" 63801 - sources."json-schema-ref-parser-9.0.9" 63802 - sources."json-schema-to-typescript-9.1.1" 63803 - sources."json-schema-traverse-0.4.1" 63804 - sources."json-schema-typed-7.0.3" 63805 - sources."json-stringify-safe-5.0.1" 63806 - sources."json5-2.2.3" 63807 - sources."jsonfile-4.0.0" 63808 - sources."jsonpointer-5.0.1" 63809 - sources."keytar-7.9.0" 63810 - sources."keyv-4.5.3" 63811 - sources."kind-of-6.0.3" 63812 - sources."latest-version-6.0.0" 63813 - sources."launch-editor-2.6.0" 63814 - sources."launchdarkly-eventsource-1.4.3" 63815 - (sources."launchdarkly-js-sdk-common-4.3.3" // { 63816 - dependencies = [ 63817 - sources."fast-deep-equal-2.0.1" 63818 - sources."uuid-8.3.2" 63819 - ]; 63820 - }) 63821 - sources."launchdarkly-node-client-sdk-2.2.2" 63822 - (sources."lazystream-1.0.1" // { 63823 - dependencies = [ 63824 - sources."isarray-1.0.0" 63825 - sources."readable-stream-2.3.8" 63826 - sources."safe-buffer-5.1.2" 63827 - sources."string_decoder-1.1.1" 63828 - ]; 63829 - }) 63830 - sources."loader-runner-4.3.0" 63831 - sources."loader-utils-2.0.4" 63832 - sources."locate-path-5.0.0" 63833 - sources."lodash-4.17.21" 63834 - sources."lodash.assignin-4.2.0" 63835 - sources."lodash.bind-4.2.1" 63836 - sources."lodash.clonedeep-4.5.0" 63837 - sources."lodash.debounce-4.0.8" 63838 - sources."lodash.defaults-4.2.0" 63839 - sources."lodash.escape-4.0.1" 63840 - sources."lodash.filter-4.6.0" 63841 - sources."lodash.flatten-4.4.0" 63842 - sources."lodash.foreach-4.5.0" 63843 - sources."lodash.invokemap-4.6.0" 63844 - sources."lodash.map-4.6.0" 63845 - sources."lodash.merge-4.6.2" 63846 - sources."lodash.pick-4.4.0" 63847 - sources."lodash.pullall-4.2.0" 63848 - sources."lodash.reduce-4.6.0" 63849 - sources."lodash.reject-4.6.0" 63850 - sources."lodash.some-4.6.0" 63851 - sources."lodash.sortby-4.7.0" 63852 - sources."lodash.uniqby-4.7.0" 63853 - (sources."log-symbols-4.1.0" // { 63854 - dependencies = [ 63855 - sources."chalk-4.1.2" 63856 - ]; 63857 - }) 63858 - sources."lower-case-2.0.2" 63859 - sources."lowercase-keys-2.0.0" 63860 - sources."lru-cache-5.1.1" 63861 - sources."lru-queue-0.1.0" 63862 - sources."lru_map-0.3.3" 63863 - (sources."make-dir-3.1.0" // { 63864 - dependencies = [ 63865 - sources."semver-6.3.1" 63866 - ]; 63867 - }) 63868 - sources."make-error-1.3.6" 63869 - sources."md5.js-1.3.5" 63870 - sources."media-typer-0.3.0" 63871 - sources."memfs-3.6.0" 63872 - sources."memoizee-0.4.15" 63873 - sources."merge-descriptors-1.0.1" 63874 - sources."merge-stream-2.0.0" 63875 - sources."merge2-1.4.1" 63876 - sources."methods-1.1.2" 63877 - sources."micromatch-4.0.5" 63878 - (sources."miller-rabin-4.0.1" // { 63879 - dependencies = [ 63880 - sources."bn.js-4.12.0" 63881 - ]; 63882 - }) 63883 - sources."mime-1.6.0" 63884 - sources."mime-db-1.52.0" 63885 - sources."mime-types-2.1.35" 63886 - sources."mimic-fn-3.1.0" 63887 - sources."mimic-response-3.1.0" 63888 - sources."minimalistic-assert-1.0.1" 63889 - sources."minimalistic-crypto-utils-1.0.1" 63890 - sources."minimatch-3.1.2" 63891 - sources."minimist-1.2.8" 63892 - sources."mkdirp-1.0.4" 63893 - sources."mkdirp-classic-0.5.3" 63894 - sources."mrmime-1.0.1" 63895 - sources."ms-2.1.2" 63896 - sources."multicast-dns-7.2.5" 63897 - sources."mute-stream-0.0.8" 63898 - sources."mz-2.7.0" 63899 - sources."napi-build-utils-1.0.2" 63900 - sources."negotiator-0.6.3" 63901 - sources."neo-async-2.6.2" 63902 - sources."next-tick-1.1.0" 63903 - (sources."ngrok-5.0.0-beta.2" // { 63904 - dependencies = [ 63905 - sources."uuid-8.3.2" 63906 - sources."yaml-2.3.2" 63907 - ]; 63908 - }) 63909 - sources."no-case-3.0.4" 63910 - sources."nock-13.3.3" 63911 - sources."node-abi-3.47.0" 63912 - sources."node-addon-api-4.3.0" 63913 - (sources."node-cache-5.1.2" // { 63914 - dependencies = [ 63915 - sources."clone-2.1.2" 63916 - ]; 63917 - }) 63918 - (sources."node-fetch-2.7.0" // { 63919 - dependencies = [ 63920 - sources."tr46-0.0.3" 63921 - sources."webidl-conversions-3.0.1" 63922 - sources."whatwg-url-5.0.0" 63923 - ]; 63924 - }) 63925 - sources."node-forge-1.3.1" 63926 - sources."node-gyp-build-4.6.1" 63927 - sources."node-localstorage-1.3.1" 63928 - sources."node-machine-id-1.1.12" 63929 - sources."node-releases-2.0.13" 63930 - sources."normalize-path-3.0.0" 63931 - sources."normalize-url-6.1.0" 63932 - sources."npm-run-path-4.0.1" 63933 - sources."nth-check-2.1.1" 63934 - sources."object-assign-4.1.1" 63935 - sources."object-inspect-1.12.3" 63936 - sources."object-is-1.1.5" 63937 - sources."object-keys-1.1.1" 63938 - sources."object.assign-4.1.4" 63939 - sources."obuf-1.1.2" 63940 - sources."omelette-0.4.17" 63941 - sources."on-finished-2.4.1" 63942 - sources."on-headers-1.0.2" 63943 - sources."once-1.4.0" 63944 - (sources."onetime-5.1.2" // { 63945 - dependencies = [ 63946 - sources."mimic-fn-2.1.0" 63947 - ]; 63948 - }) 63949 - sources."open-8.4.2" 63950 - sources."opener-1.5.2" 63951 - (sources."ora-4.1.1" // { 63952 - dependencies = [ 63953 - sources."ansi-styles-3.2.1" 63954 - sources."chalk-3.0.0" 63955 - sources."color-convert-1.9.3" 63956 - sources."color-name-1.1.3" 63957 - sources."escape-string-regexp-1.0.5" 63958 - sources."has-flag-3.0.0" 63959 - (sources."log-symbols-3.0.0" // { 63960 - dependencies = [ 63961 - sources."chalk-2.4.2" 63962 - ]; 63963 - }) 63964 - sources."supports-color-5.5.0" 63965 - ]; 63966 - }) 63967 - sources."original-1.0.2" 63968 - sources."os-browserify-0.3.0" 63969 - sources."os-tmpdir-1.0.2" 63970 - sources."p-cancelable-2.1.1" 63971 - sources."p-limit-2.3.0" 63972 - sources."p-locate-4.1.0" 63973 - sources."p-retry-4.6.2" 63974 - sources."p-try-2.2.0" 63975 - sources."package-json-7.0.0" 63976 - sources."pako-1.0.11" 63977 - sources."param-case-3.0.4" 63978 - sources."parse-asn1-5.1.6" 63979 - sources."parseurl-1.3.3" 63980 - sources."pascal-case-3.1.2" 63981 - sources."path-browserify-1.0.1" 63982 - sources."path-equal-1.2.5" 63983 - sources."path-exists-4.0.0" 63984 - sources."path-is-absolute-1.0.1" 63985 - sources."path-key-3.1.1" 63986 - sources."path-parse-1.0.7" 63987 - sources."path-to-regexp-0.1.7" 63988 - sources."path-type-4.0.0" 63989 - sources."pbkdf2-3.1.2" 63990 - sources."pend-1.2.0" 63991 - sources."picocolors-1.0.0" 63992 - sources."picomatch-2.3.1" 63993 - sources."pkg-dir-4.2.0" 63994 - (sources."pkg-up-3.1.0" // { 63995 - dependencies = [ 63996 - sources."find-up-3.0.0" 63997 - sources."locate-path-3.0.0" 63998 - sources."p-locate-3.0.0" 63999 - sources."path-exists-3.0.0" 64000 - ]; 64001 - }) 64002 - (sources."portfinder-1.0.32" // { 64003 - dependencies = [ 64004 - sources."async-2.6.4" 64005 - sources."debug-3.2.7" 64006 - sources."mkdirp-0.5.6" 64007 - ]; 64008 - }) 64009 - sources."prebuild-install-7.1.1" 64010 - sources."prettier-2.8.8" 64011 - sources."pretty-error-4.0.0" 64012 - sources."process-0.11.10" 64013 - sources."process-nextick-args-2.0.1" 64014 - sources."propagate-2.0.1" 64015 - sources."proxy-addr-2.0.7" 64016 - (sources."public-encrypt-4.0.3" // { 64017 - dependencies = [ 64018 - sources."bn.js-4.12.0" 64019 - ]; 64020 - }) 64021 - sources."pump-3.0.0" 64022 - sources."punycode-1.4.1" 64023 - sources."qs-6.11.2" 64024 - sources."querystring-browser-1.0.4" 64025 - sources."querystringify-2.2.0" 64026 - sources."queue-microtask-1.2.3" 64027 - sources."queue-tick-1.0.1" 64028 - sources."quick-lru-5.1.1" 64029 - sources."randombytes-2.1.0" 64030 - sources."randomfill-1.0.4" 64031 - sources."range-parser-1.2.1" 64032 - sources."raw-body-2.5.1" 64033 - sources."rc-1.2.8" 64034 - sources."readable-stream-3.6.2" 64035 - (sources."readdir-glob-1.1.3" // { 64036 - dependencies = [ 64037 - sources."brace-expansion-2.0.1" 64038 - sources."minimatch-5.1.6" 64039 - ]; 64040 - }) 64041 - sources."readdirp-3.6.0" 64042 - sources."rechoir-0.7.1" 64043 - sources."recursive-readdir-2.2.3" 64044 - sources."regexp.prototype.flags-1.5.1" 64045 - sources."registry-auth-token-4.2.2" 64046 - sources."registry-url-5.1.0" 64047 - sources."relateurl-0.2.7" 64048 - sources."renderkid-3.0.0" 64049 - sources."require-directory-2.1.1" 64050 - sources."require-from-string-2.0.2" 64051 - sources."requires-port-1.0.0" 64052 - sources."resolve-1.22.5" 64053 - sources."resolve-alpn-1.2.1" 64054 - sources."resolve-cwd-3.0.0" 64055 - sources."resolve-from-5.0.0" 64056 - sources."responselike-2.0.1" 64057 - sources."restore-cursor-3.1.0" 64058 - sources."retry-0.13.1" 64059 - sources."reusify-1.0.4" 64060 - sources."rimraf-3.0.2" 64061 - sources."ripemd160-2.0.2" 64062 - sources."run-async-2.4.1" 64063 - sources."run-parallel-1.2.0" 64064 - sources."rxjs-7.8.1" 64065 - sources."safe-array-concat-1.0.1" 64066 - sources."safe-buffer-5.2.1" 64067 - sources."safe-regex-test-1.0.0" 64068 - sources."safe-stable-stringify-2.4.3" 64069 - sources."safer-buffer-2.1.2" 64070 - sources."sanitize-filename-1.6.3" 64071 - (sources."schema-utils-2.7.1" // { 64072 - dependencies = [ 64073 - sources."ajv-6.12.6" 64074 - ]; 64075 - }) 64076 - sources."select-hose-2.0.0" 64077 - sources."selfsigned-2.1.1" 64078 - (sources."semver-7.5.4" // { 64079 - dependencies = [ 64080 - sources."lru-cache-6.0.0" 64081 - sources."yallist-4.0.0" 64082 - ]; 64083 - }) 64084 - (sources."send-0.18.0" // { 64085 - dependencies = [ 64086 - (sources."debug-2.6.9" // { 64087 - dependencies = [ 64088 - sources."ms-2.0.0" 64089 - ]; 64090 - }) 64091 - sources."ms-2.1.3" 64092 - ]; 64093 - }) 64094 - sources."serialize-javascript-6.0.1" 64095 - (sources."serve-index-1.9.1" // { 64096 - dependencies = [ 64097 - sources."debug-2.6.9" 64098 - sources."depd-1.1.2" 64099 - sources."http-errors-1.6.3" 64100 - sources."inherits-2.0.3" 64101 - sources."ms-2.0.0" 64102 - sources."setprototypeof-1.1.0" 64103 - sources."statuses-1.5.0" 64104 - ]; 64105 - }) 64106 - sources."serve-static-1.15.0" 64107 - sources."set-function-name-2.0.1" 64108 - sources."setimmediate-1.0.5" 64109 - sources."setprototypeof-1.2.0" 64110 - sources."sha.js-2.4.11" 64111 - sources."shallow-clone-3.0.1" 64112 - sources."shebang-command-2.0.0" 64113 - sources."shebang-regex-3.0.0" 64114 - sources."shell-quote-1.8.1" 64115 - sources."side-channel-1.0.4" 64116 - sources."signal-exit-3.0.7" 64117 - sources."simple-concat-1.0.1" 64118 - sources."simple-get-4.0.1" 64119 - sources."sirv-2.0.3" 64120 - sources."slash-3.0.0" 64121 - sources."slide-1.1.6" 64122 - (sources."sockjs-0.3.24" // { 64123 - dependencies = [ 64124 - sources."uuid-8.3.2" 64125 - ]; 64126 - }) 64127 - sources."source-map-0.6.1" 64128 - sources."source-map-support-0.5.21" 64129 - sources."spdy-4.0.2" 64130 - sources."spdy-transport-3.0.0" 64131 - sources."sprintf-js-1.0.3" 64132 - sources."statuses-2.0.1" 64133 - sources."stdin-0.0.1" 64134 - sources."streamx-2.15.1" 64135 - sources."string-width-4.2.3" 64136 - sources."string.prototype.trim-1.2.8" 64137 - sources."string.prototype.trimend-1.0.7" 64138 - sources."string.prototype.trimstart-1.0.7" 64139 - sources."string_decoder-1.3.0" 64140 - sources."strip-ansi-6.0.1" 64141 - sources."strip-final-newline-2.0.0" 64142 - sources."strip-json-comments-2.0.1" 64143 - sources."supports-color-7.2.0" 64144 - sources."supports-hyperlinks-2.3.0" 64145 - sources."supports-preserve-symlinks-flag-1.0.0" 64146 - sources."tapable-2.2.1" 64147 - sources."tar-fs-2.1.1" 64148 - sources."tar-stream-2.2.0" 64149 - sources."terminal-link-2.1.1" 64150 - (sources."terser-5.19.4" // { 64151 - dependencies = [ 64152 - sources."commander-2.20.3" 64153 - ]; 64154 - }) 64155 - (sources."terser-webpack-plugin-5.3.9" // { 64156 - dependencies = [ 64157 - sources."ajv-6.12.6" 64158 - sources."schema-utils-3.3.0" 64159 - ]; 64160 - }) 64161 - sources."text-encoder-lite-2.0.0" 64162 - sources."thenify-3.3.1" 64163 - sources."thenify-all-1.6.0" 64164 - sources."through-2.3.8" 64165 - sources."thunky-1.1.0" 64166 - sources."timers-browserify-2.0.12" 64167 - sources."timers-ext-0.1.7" 64168 - sources."tiny-each-async-2.0.3" 64169 - sources."tmp-0.2.1" 64170 - sources."to-fast-properties-2.0.0" 64171 - sources."to-regex-range-5.0.1" 64172 - sources."toidentifier-1.0.1" 64173 - sources."totalist-3.0.1" 64174 - (sources."tr46-1.0.1" // { 64175 - dependencies = [ 64176 - sources."punycode-2.3.0" 64177 - ]; 64178 - }) 64179 - sources."truncate-utf8-bytes-1.0.2" 64180 - sources."ts-is-present-1.2.2" 64181 - (sources."ts-loader-9.4.4" // { 64182 - dependencies = [ 64183 - sources."chalk-4.1.2" 64184 - ]; 64185 - }) 64186 - sources."ts-node-10.9.1" 64187 - sources."tslib-2.6.2" 64188 - (sources."tsutils-3.21.0" // { 64189 - dependencies = [ 64190 - sources."tslib-1.14.1" 64191 - ]; 64192 - }) 64193 - sources."tunnel-agent-0.6.0" 64194 - sources."type-1.2.0" 64195 - sources."type-fest-0.21.3" 64196 - sources."type-is-1.6.18" 64197 - sources."typed-array-buffer-1.0.0" 64198 - sources."typed-array-byte-length-1.0.0" 64199 - sources."typed-array-byte-offset-1.0.0" 64200 - sources."typed-array-length-1.0.4" 64201 - sources."typescript-4.9.5" 64202 - (sources."typescript-json-schema-0.60.0" // { 64203 - dependencies = [ 64204 - sources."@types/node-16.18.51" 64205 - sources."typescript-5.1.6" 64206 - ]; 64207 - }) 64208 - sources."unbox-primitive-1.0.2" 64209 - sources."universalify-0.1.2" 64210 - sources."unpipe-1.0.0" 64211 - sources."update-browserslist-db-1.0.11" 64212 - (sources."uri-js-4.4.1" // { 64213 - dependencies = [ 64214 - sources."punycode-2.3.0" 64215 - ]; 64216 - }) 64217 - sources."urijs-1.19.11" 64218 - sources."url-0.11.3" 64219 - sources."url-parse-1.5.10" 64220 - sources."utf-8-validate-5.0.10" 64221 - sources."utf8-byte-length-1.0.4" 64222 - sources."util-0.12.5" 64223 - sources."util-deprecate-1.0.2" 64224 - sources."utila-0.4.0" 64225 - sources."utils-merge-1.0.1" 64226 - sources."uuid-3.4.0" 64227 - sources."v8-compile-cache-lib-3.0.1" 64228 - sources."vary-1.1.2" 64229 - sources."watchpack-2.4.0" 64230 - sources."wbuf-1.7.3" 64231 - sources."wcwidth-1.0.1" 64232 - sources."webidl-conversions-4.0.2" 64233 - (sources."webpack-5.88.2" // { 64234 - dependencies = [ 64235 - sources."ajv-6.12.6" 64236 - sources."schema-utils-3.3.0" 64237 - ]; 64238 - }) 64239 - (sources."webpack-bundle-analyzer-4.9.1" // { 64240 - dependencies = [ 64241 - sources."commander-7.2.0" 64242 - ]; 64243 - }) 64244 - (sources."webpack-cli-4.10.0" // { 64245 - dependencies = [ 64246 - sources."commander-7.2.0" 64247 - ]; 64248 - }) 64249 - (sources."webpack-dev-middleware-5.3.3" // { 64250 - dependencies = [ 64251 - sources."ajv-keywords-5.1.0" 64252 - sources."schema-utils-4.2.0" 64253 - ]; 64254 - }) 64255 - (sources."webpack-dev-server-4.15.1" // { 64256 - dependencies = [ 64257 - sources."ajv-keywords-5.1.0" 64258 - sources."http-proxy-middleware-2.0.6" 64259 - sources."ipaddr.js-2.1.0" 64260 - sources."schema-utils-4.2.0" 64261 - sources."ws-8.14.1" 64262 - ]; 64263 - }) 64264 - sources."webpack-merge-5.9.0" 64265 - sources."webpack-sources-3.2.3" 64266 - sources."websocket-driver-0.7.4" 64267 - sources."websocket-extensions-0.1.4" 64268 - sources."whatwg-url-7.1.0" 64269 - sources."which-2.0.2" 64270 - sources."which-boxed-primitive-1.0.2" 64271 - sources."which-typed-array-1.1.11" 64272 - sources."wildcard-2.0.1" 64273 - sources."winattr-3.0.0" 64274 - sources."wrap-ansi-6.2.0" 64275 - sources."wrappy-1.0.2" 64276 - sources."write-file-atomic-1.3.4" 64277 - sources."ws-7.5.9" 64278 - sources."y18n-5.0.8" 64279 - sources."yallist-3.1.1" 64280 - sources."yaml-1.10.2" 64281 - sources."yargs-17.7.2" 64282 - sources."yargs-parser-21.1.1" 64283 - sources."yauzl-2.10.0" 64284 - sources."yn-3.1.1" 64285 - sources."zip-stream-5.0.1" 64286 - ]; 64287 - buildInputs = globalBuildInputs; 64288 - meta = { 64289 - description = "A command line interface for managing Atlassian-hosted apps"; 64290 - homepage = "https://developer.atlassian.com/platform/forge"; 64291 - license = "UNLICENSED"; 64292 - }; 64293 - production = true; 64294 - bypassCache = true; 64295 - reconstructLock = true; 64296 - }; 64297 62461 "@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage { 64298 62462 name = "_at_mermaid-js_slash_mermaid-cli"; 64299 62463 packageName = "@mermaid-js/mermaid-cli"; ··· 64308 62472 sources."chalk-2.4.2" 64309 62473 ]; 64310 62474 }) 64311 - sources."@babel/helper-validator-identifier-7.22.19" 64312 - (sources."@babel/highlight-7.22.13" // { 62475 + sources."@babel/helper-validator-identifier-7.22.20" 62476 + (sources."@babel/highlight-7.22.20" // { 64313 62477 dependencies = [ 64314 62478 sources."chalk-2.4.2" 64315 62479 ]; 64316 62480 }) 64317 62481 sources."@puppeteer/browsers-0.5.0" 64318 - sources."@types/node-20.6.1" 62482 + sources."@types/node-20.6.3" 64319 62483 sources."@types/yauzl-2.10.0" 64320 62484 sources."agent-base-6.0.2" 64321 62485 sources."ansi-regex-5.0.1" ··· 64422 62586 "@microsoft/rush" = nodeEnv.buildNodePackage { 64423 62587 name = "_at_microsoft_slash_rush"; 64424 62588 packageName = "@microsoft/rush"; 64425 - version = "5.106.0"; 62589 + version = "5.107.1"; 64426 62590 src = fetchurl { 64427 - url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.106.0.tgz"; 64428 - sha512 = "M9LUaSDKS2Kcsyw9iyZX2dh7b4MV6/mlDx3QSHGzKGHwOUaClwIlNw7VvG09FADq7Tncfa9s98vHqNeV3MQdxQ=="; 62591 + url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.107.1.tgz"; 62592 + sha512 = "6GPDvGJkbCM9MKikOzaPhGm3wSdTwdBDi5aPaD0RAxwXSGjQkP2YkQT9CPGSgsopJIwwgaLBtl5tRdcU59TA9A=="; 64429 62593 }; 64430 62594 dependencies = [ 64431 62595 (sources."@azure/abort-controller-1.1.0" // { ··· 64505 62669 }) 64506 62670 sources."@babel/code-frame-7.22.13" 64507 62671 sources."@babel/generator-7.22.15" 64508 - sources."@babel/helper-environment-visitor-7.22.5" 62672 + sources."@babel/helper-environment-visitor-7.22.20" 64509 62673 sources."@babel/helper-function-name-7.22.5" 64510 62674 sources."@babel/helper-hoist-variables-7.22.5" 64511 62675 sources."@babel/helper-split-export-declaration-7.22.6" 64512 62676 sources."@babel/helper-string-parser-7.22.5" 64513 - sources."@babel/helper-validator-identifier-7.22.19" 64514 - sources."@babel/highlight-7.22.13" 62677 + sources."@babel/helper-validator-identifier-7.22.20" 62678 + sources."@babel/highlight-7.22.20" 64515 62679 sources."@babel/parser-7.22.5" 64516 62680 (sources."@babel/template-7.22.15" // { 64517 62681 dependencies = [ ··· 64526 62690 sources."@jridgewell/set-array-1.1.2" 64527 62691 sources."@jridgewell/sourcemap-codec-1.4.15" 64528 62692 sources."@jridgewell/trace-mapping-0.3.19" 64529 - sources."@microsoft/rush-lib-5.106.0" 62693 + sources."@microsoft/rush-lib-5.107.1" 64530 62694 sources."@nodelib/fs.scandir-2.1.5" 64531 62695 sources."@nodelib/fs.stat-2.0.5" 64532 62696 sources."@nodelib/fs.walk-1.2.8" ··· 64562 62726 sources."@pnpm/types-6.4.0" 64563 62727 ]; 64564 62728 }) 64565 - sources."@rushstack/heft-config-file-0.13.3" 64566 - (sources."@rushstack/node-core-library-3.59.7" // { 62729 + sources."@rushstack/heft-config-file-0.14.0" 62730 + (sources."@rushstack/node-core-library-3.60.0" // { 64567 62731 dependencies = [ 64568 62732 sources."import-lazy-4.0.0" 64569 62733 ]; 64570 62734 }) 64571 - sources."@rushstack/package-deps-hash-4.0.44" 64572 - (sources."@rushstack/package-extractor-0.5.3" // { 62735 + sources."@rushstack/package-deps-hash-4.1.1" 62736 + (sources."@rushstack/package-extractor-0.6.2" // { 64573 62737 dependencies = [ 64574 62738 sources."minimatch-3.0.8" 64575 62739 ]; 64576 62740 }) 64577 - (sources."@rushstack/rig-package-0.4.1" // { 62741 + (sources."@rushstack/rig-package-0.5.0" // { 64578 62742 dependencies = [ 64579 62743 sources."strip-json-comments-3.1.1" 64580 62744 ]; 64581 62745 }) 64582 - sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.106.0" 64583 - sources."@rushstack/rush-azure-storage-build-cache-plugin-5.106.0" 64584 - sources."@rushstack/rush-http-build-cache-plugin-5.106.0" 64585 - sources."@rushstack/rush-sdk-5.106.0" 64586 - sources."@rushstack/stream-collator-4.0.263" 64587 - sources."@rushstack/terminal-0.5.38" 64588 - (sources."@rushstack/ts-command-line-4.15.2" // { 62746 + sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.107.1" 62747 + sources."@rushstack/rush-azure-storage-build-cache-plugin-5.107.1" 62748 + sources."@rushstack/rush-http-build-cache-plugin-5.107.1" 62749 + sources."@rushstack/rush-sdk-5.107.1" 62750 + sources."@rushstack/stream-collator-4.1.2" 62751 + sources."@rushstack/terminal-0.7.1" 62752 + (sources."@rushstack/ts-command-line-4.16.0" // { 64589 62753 dependencies = [ 64590 62754 sources."argparse-1.0.10" 64591 62755 ]; ··· 64597 62761 sources."@types/lodash-4.14.198" 64598 62762 sources."@types/minimatch-3.0.5" 64599 62763 sources."@types/minimist-1.2.2" 64600 - sources."@types/node-20.6.1" 62764 + sources."@types/node-20.6.3" 64601 62765 sources."@types/node-fetch-2.6.2" 64602 62766 sources."@types/normalize-package-data-2.4.1" 64603 62767 sources."@types/parse-json-4.0.0" ··· 64730 62894 sources."duplexer3-0.1.5" 64731 62895 sources."ecdsa-sig-formatter-1.0.11" 64732 62896 sources."emoji-regex-8.0.0" 64733 - sources."encode-registry-3.0.0" 62897 + sources."encode-registry-3.0.1" 64734 62898 (sources."encoding-0.1.13" // { 64735 62899 dependencies = [ 64736 62900 sources."iconv-lite-0.6.3" ··· 64748 62912 sources."expand-tilde-2.0.2" 64749 62913 sources."external-editor-3.1.0" 64750 62914 sources."fast-deep-equal-3.1.3" 64751 - sources."fast-glob-3.2.12" 62915 + sources."fast-glob-3.3.1" 64752 62916 sources."fastq-1.15.0" 64753 62917 sources."figures-3.0.0" 64754 62918 sources."fill-range-7.0.1" ··· 65047 63211 ]; 65048 63212 }) 65049 63213 sources."please-upgrade-node-3.2.0" 65050 - sources."postcss-8.4.29" 63214 + sources."postcss-8.4.30" 65051 63215 (sources."preferred-pm-3.1.2" // { 65052 63216 dependencies = [ 65053 63217 sources."find-up-5.0.0" ··· 65108 63272 sources."require-from-string-2.0.2" 65109 63273 sources."require-package-name-2.0.1" 65110 63274 sources."requires-port-1.0.0" 65111 - sources."resolve-1.22.5" 63275 + sources."resolve-1.22.6" 65112 63276 (sources."resolve-dir-1.0.1" // { 65113 63277 dependencies = [ 65114 63278 sources."global-modules-1.0.0" ··· 65142 63306 sources."spdx-correct-3.2.0" 65143 63307 sources."spdx-exceptions-2.3.0" 65144 63308 sources."spdx-expression-parse-3.0.1" 65145 - sources."spdx-license-ids-3.0.13" 63309 + sources."spdx-license-ids-3.0.15" 65146 63310 sources."sprintf-js-1.0.3" 65147 63311 sources."ssri-8.0.1" 65148 63312 sources."stackframe-1.3.4" ··· 65206 63370 sources."which-1.3.1" 65207 63371 sources."which-pm-2.0.0" 65208 63372 sources."widest-line-3.1.0" 65209 - sources."wordwrap-1.0.0" 65210 63373 (sources."wrap-ansi-7.0.0" // { 65211 63374 dependencies = [ 65212 63375 sources."ansi-styles-4.3.0" ··· 65307 63470 sources."is-plain-object-5.0.0" 65308 63471 sources."is-unicode-supported-0.1.0" 65309 63472 sources."isexe-2.0.0" 65310 - sources."joi-17.10.1" 63473 + sources."joi-17.10.2" 65311 63474 sources."js-yaml-3.14.1" 65312 63475 sources."jsonfile-6.1.0" 65313 63476 sources."lodash-4.17.21" ··· 65411 63574 }) 65412 63575 sources."@shopify/plugin-did-you-mean-3.49.3" 65413 63576 sources."@sindresorhus/is-5.6.0" 65414 - sources."@swc/core-1.3.85" 65415 - sources."@swc/core-darwin-arm64-1.3.85" 65416 - sources."@swc/core-darwin-x64-1.3.85" 65417 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 65418 - sources."@swc/core-linux-arm64-gnu-1.3.85" 65419 - sources."@swc/core-linux-arm64-musl-1.3.85" 65420 - sources."@swc/core-linux-x64-gnu-1.3.85" 65421 - sources."@swc/core-linux-x64-musl-1.3.85" 65422 - sources."@swc/core-win32-arm64-msvc-1.3.85" 65423 - sources."@swc/core-win32-ia32-msvc-1.3.85" 65424 - sources."@swc/core-win32-x64-msvc-1.3.85" 63577 + sources."@swc/core-1.3.86" 63578 + sources."@swc/core-darwin-arm64-1.3.86" 63579 + sources."@swc/core-darwin-x64-1.3.86" 63580 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 63581 + sources."@swc/core-linux-arm64-gnu-1.3.86" 63582 + sources."@swc/core-linux-arm64-musl-1.3.86" 63583 + sources."@swc/core-linux-x64-gnu-1.3.86" 63584 + sources."@swc/core-linux-x64-musl-1.3.86" 63585 + sources."@swc/core-win32-arm64-msvc-1.3.86" 63586 + sources."@swc/core-win32-ia32-msvc-1.3.86" 63587 + sources."@swc/core-win32-x64-msvc-1.3.86" 65425 63588 sources."@swc/helpers-0.5.2" 65426 - sources."@swc/types-0.1.4" 65427 - sources."@swc/wasm-1.3.85" 63589 + sources."@swc/types-0.1.5" 63590 + sources."@swc/wasm-1.3.86" 65428 63591 sources."@szmarczak/http-timer-5.0.1" 65429 63592 sources."@tsconfig/node10-1.0.9" 65430 63593 sources."@tsconfig/node12-1.0.11" ··· 65432 63595 sources."@tsconfig/node16-1.0.4" 65433 63596 sources."@types/archiver-5.3.2" 65434 63597 sources."@types/cli-progress-3.11.2" 65435 - sources."@types/http-cache-semantics-4.0.1" 65436 - sources."@types/node-20.6.1" 65437 - sources."@types/prop-types-15.7.5" 65438 - sources."@types/react-18.2.21" 63598 + sources."@types/http-cache-semantics-4.0.2" 63599 + sources."@types/node-20.6.3" 63600 + sources."@types/prop-types-15.7.6" 63601 + sources."@types/react-18.2.22" 65439 63602 sources."@types/readdir-glob-1.1.1" 65440 63603 sources."@types/scheduler-0.16.3" 65441 63604 sources."@types/tinycolor2-1.4.4" ··· 65832 63995 sources."registry-auth-token-5.0.2" 65833 63996 sources."registry-url-6.0.1" 65834 63997 sources."require-from-string-2.0.2" 65835 - sources."resolve-1.22.5" 63998 + sources."resolve-1.22.6" 65836 63999 sources."resolve-alpn-1.2.1" 65837 64000 sources."responselike-3.0.0" 65838 64001 (sources."restore-cursor-4.0.0" // { ··· 65933 64096 sources."wordwrap-1.0.0" 65934 64097 sources."wrap-ansi-7.0.0" 65935 64098 sources."wrappy-1.0.2" 65936 - sources."ws-8.14.1" 64099 + sources."ws-8.14.2" 65937 64100 sources."yallist-4.0.0" 65938 64101 sources."yarn-1.22.19" 65939 64102 sources."yn-3.1.1" ··· 65976 64139 sources."@nodelib/fs.scandir-2.1.5" 65977 64140 sources."@nodelib/fs.stat-2.0.5" 65978 64141 sources."@nodelib/fs.walk-1.2.8" 65979 - sources."@swc/core-1.3.85" 65980 - sources."@swc/core-darwin-arm64-1.3.85" 65981 - sources."@swc/core-darwin-x64-1.3.85" 65982 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 65983 - sources."@swc/core-linux-arm64-gnu-1.3.85" 65984 - sources."@swc/core-linux-arm64-musl-1.3.85" 65985 - sources."@swc/core-linux-x64-gnu-1.3.85" 65986 - sources."@swc/core-linux-x64-musl-1.3.85" 65987 - sources."@swc/core-win32-arm64-msvc-1.3.85" 65988 - sources."@swc/core-win32-ia32-msvc-1.3.85" 65989 - sources."@swc/core-win32-x64-msvc-1.3.85" 64142 + sources."@swc/core-1.3.86" 64143 + sources."@swc/core-darwin-arm64-1.3.86" 64144 + sources."@swc/core-darwin-x64-1.3.86" 64145 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 64146 + sources."@swc/core-linux-arm64-gnu-1.3.86" 64147 + sources."@swc/core-linux-arm64-musl-1.3.86" 64148 + sources."@swc/core-linux-x64-gnu-1.3.86" 64149 + sources."@swc/core-linux-x64-musl-1.3.86" 64150 + sources."@swc/core-win32-arm64-msvc-1.3.86" 64151 + sources."@swc/core-win32-ia32-msvc-1.3.86" 64152 + sources."@swc/core-win32-x64-msvc-1.3.86" 65990 64153 sources."@swc/helpers-0.5.2" 65991 - sources."@swc/types-0.1.4" 65992 - sources."@swc/wasm-1.3.85" 64154 + sources."@swc/types-0.1.5" 64155 + sources."@swc/wasm-1.3.86" 65993 64156 sources."@tsconfig/node10-1.0.9" 65994 64157 sources."@tsconfig/node12-1.0.11" 65995 64158 sources."@tsconfig/node14-1.0.3" 65996 64159 sources."@tsconfig/node16-1.0.4" 65997 - sources."@types/node-20.6.1" 64160 + sources."@types/node-20.6.3" 65998 64161 sources."acorn-8.10.0" 65999 64162 sources."acorn-walk-8.2.0" 66000 64163 sources."any-promise-1.3.0" ··· 66056 64219 sources."picomatch-2.3.1" 66057 64220 sources."pify-2.3.0" 66058 64221 sources."pirates-4.0.6" 66059 - sources."postcss-8.4.29" 64222 + sources."postcss-8.4.30" 66060 64223 sources."postcss-import-15.1.0" 66061 64224 sources."postcss-js-4.0.1" 66062 64225 sources."postcss-load-config-4.0.1" ··· 66066 64229 sources."queue-microtask-1.2.3" 66067 64230 sources."read-cache-1.0.0" 66068 64231 sources."readdirp-3.6.0" 66069 - sources."resolve-1.22.5" 64232 + sources."resolve-1.22.6" 66070 64233 sources."reusify-1.0.4" 66071 64234 sources."run-parallel-1.2.0" 66072 64235 sources."source-map-js-1.0.2" ··· 66119 64282 sources."@nodelib/fs.scandir-2.1.5" 66120 64283 sources."@nodelib/fs.stat-2.0.5" 66121 64284 sources."@nodelib/fs.walk-1.2.8" 66122 - sources."@swc/core-1.3.85" 66123 - sources."@swc/core-darwin-arm64-1.3.85" 66124 - sources."@swc/core-darwin-x64-1.3.85" 66125 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 66126 - sources."@swc/core-linux-arm64-gnu-1.3.85" 66127 - sources."@swc/core-linux-arm64-musl-1.3.85" 66128 - sources."@swc/core-linux-x64-gnu-1.3.85" 66129 - sources."@swc/core-linux-x64-musl-1.3.85" 66130 - sources."@swc/core-win32-arm64-msvc-1.3.85" 66131 - sources."@swc/core-win32-ia32-msvc-1.3.85" 66132 - sources."@swc/core-win32-x64-msvc-1.3.85" 64285 + sources."@swc/core-1.3.86" 64286 + sources."@swc/core-darwin-arm64-1.3.86" 64287 + sources."@swc/core-darwin-x64-1.3.86" 64288 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 64289 + sources."@swc/core-linux-arm64-gnu-1.3.86" 64290 + sources."@swc/core-linux-arm64-musl-1.3.86" 64291 + sources."@swc/core-linux-x64-gnu-1.3.86" 64292 + sources."@swc/core-linux-x64-musl-1.3.86" 64293 + sources."@swc/core-win32-arm64-msvc-1.3.86" 64294 + sources."@swc/core-win32-ia32-msvc-1.3.86" 64295 + sources."@swc/core-win32-x64-msvc-1.3.86" 66133 64296 sources."@swc/helpers-0.5.2" 66134 - sources."@swc/types-0.1.4" 66135 - sources."@swc/wasm-1.3.85" 64297 + sources."@swc/types-0.1.5" 64298 + sources."@swc/wasm-1.3.86" 66136 64299 sources."@tsconfig/node10-1.0.9" 66137 64300 sources."@tsconfig/node12-1.0.11" 66138 64301 sources."@tsconfig/node14-1.0.3" 66139 64302 sources."@tsconfig/node16-1.0.4" 66140 - sources."@types/node-20.6.1" 64303 + sources."@types/node-20.6.3" 66141 64304 sources."acorn-8.10.0" 66142 64305 sources."acorn-walk-8.2.0" 66143 64306 sources."any-promise-1.3.0" ··· 66200 64363 sources."picomatch-2.3.1" 66201 64364 sources."pify-2.3.0" 66202 64365 sources."pirates-4.0.6" 66203 - sources."postcss-8.4.29" 64366 + sources."postcss-8.4.30" 66204 64367 sources."postcss-import-15.1.0" 66205 64368 sources."postcss-js-4.0.1" 66206 64369 sources."postcss-load-config-4.0.1" ··· 66210 64373 sources."queue-microtask-1.2.3" 66211 64374 sources."read-cache-1.0.0" 66212 64375 sources."readdirp-3.6.0" 66213 - sources."resolve-1.22.5" 64376 + sources."resolve-1.22.6" 66214 64377 sources."reusify-1.0.4" 66215 64378 sources."run-parallel-1.2.0" 66216 64379 sources."source-map-js-1.0.2" ··· 66281 64444 sources."@nodelib/fs.scandir-2.1.5" 66282 64445 sources."@nodelib/fs.stat-2.0.5" 66283 64446 sources."@nodelib/fs.walk-1.2.8" 66284 - sources."@swc/core-1.3.85" 66285 - sources."@swc/core-darwin-arm64-1.3.85" 66286 - sources."@swc/core-darwin-x64-1.3.85" 66287 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 66288 - sources."@swc/core-linux-arm64-gnu-1.3.85" 66289 - sources."@swc/core-linux-arm64-musl-1.3.85" 66290 - sources."@swc/core-linux-x64-gnu-1.3.85" 66291 - sources."@swc/core-linux-x64-musl-1.3.85" 66292 - sources."@swc/core-win32-arm64-msvc-1.3.85" 66293 - sources."@swc/core-win32-ia32-msvc-1.3.85" 66294 - sources."@swc/core-win32-x64-msvc-1.3.85" 64447 + sources."@swc/core-1.3.86" 64448 + sources."@swc/core-darwin-arm64-1.3.86" 64449 + sources."@swc/core-darwin-x64-1.3.86" 64450 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 64451 + sources."@swc/core-linux-arm64-gnu-1.3.86" 64452 + sources."@swc/core-linux-arm64-musl-1.3.86" 64453 + sources."@swc/core-linux-x64-gnu-1.3.86" 64454 + sources."@swc/core-linux-x64-musl-1.3.86" 64455 + sources."@swc/core-win32-arm64-msvc-1.3.86" 64456 + sources."@swc/core-win32-ia32-msvc-1.3.86" 64457 + sources."@swc/core-win32-x64-msvc-1.3.86" 66295 64458 sources."@swc/helpers-0.5.2" 66296 - sources."@swc/types-0.1.4" 66297 - sources."@swc/wasm-1.3.85" 64459 + sources."@swc/types-0.1.5" 64460 + sources."@swc/wasm-1.3.86" 66298 64461 sources."@tsconfig/node10-1.0.9" 66299 64462 sources."@tsconfig/node12-1.0.11" 66300 64463 sources."@tsconfig/node14-1.0.3" 66301 64464 sources."@tsconfig/node16-1.0.4" 66302 - sources."@types/node-20.6.1" 64465 + sources."@types/node-20.6.3" 66303 64466 sources."acorn-8.10.0" 66304 64467 sources."acorn-walk-8.2.0" 66305 64468 sources."any-promise-1.3.0" ··· 66361 64524 sources."picomatch-2.3.1" 66362 64525 sources."pify-2.3.0" 66363 64526 sources."pirates-4.0.6" 66364 - sources."postcss-8.4.29" 64527 + sources."postcss-8.4.30" 66365 64528 sources."postcss-import-15.1.0" 66366 64529 sources."postcss-js-4.0.1" 66367 64530 sources."postcss-load-config-4.0.1" ··· 66371 64534 sources."queue-microtask-1.2.3" 66372 64535 sources."read-cache-1.0.0" 66373 64536 sources."readdirp-3.6.0" 66374 - sources."resolve-1.22.5" 64537 + sources."resolve-1.22.6" 66375 64538 sources."reusify-1.0.4" 66376 64539 sources."run-parallel-1.2.0" 66377 64540 sources."source-map-js-1.0.2" ··· 66424 64587 sources."@nodelib/fs.scandir-2.1.5" 66425 64588 sources."@nodelib/fs.stat-2.0.5" 66426 64589 sources."@nodelib/fs.walk-1.2.8" 66427 - sources."@swc/core-1.3.85" 66428 - sources."@swc/core-darwin-arm64-1.3.85" 66429 - sources."@swc/core-darwin-x64-1.3.85" 66430 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 66431 - sources."@swc/core-linux-arm64-gnu-1.3.85" 66432 - sources."@swc/core-linux-arm64-musl-1.3.85" 66433 - sources."@swc/core-linux-x64-gnu-1.3.85" 66434 - sources."@swc/core-linux-x64-musl-1.3.85" 66435 - sources."@swc/core-win32-arm64-msvc-1.3.85" 66436 - sources."@swc/core-win32-ia32-msvc-1.3.85" 66437 - sources."@swc/core-win32-x64-msvc-1.3.85" 64590 + sources."@swc/core-1.3.86" 64591 + sources."@swc/core-darwin-arm64-1.3.86" 64592 + sources."@swc/core-darwin-x64-1.3.86" 64593 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 64594 + sources."@swc/core-linux-arm64-gnu-1.3.86" 64595 + sources."@swc/core-linux-arm64-musl-1.3.86" 64596 + sources."@swc/core-linux-x64-gnu-1.3.86" 64597 + sources."@swc/core-linux-x64-musl-1.3.86" 64598 + sources."@swc/core-win32-arm64-msvc-1.3.86" 64599 + sources."@swc/core-win32-ia32-msvc-1.3.86" 64600 + sources."@swc/core-win32-x64-msvc-1.3.86" 66438 64601 sources."@swc/helpers-0.5.2" 66439 - sources."@swc/types-0.1.4" 66440 - sources."@swc/wasm-1.3.85" 64602 + sources."@swc/types-0.1.5" 64603 + sources."@swc/wasm-1.3.86" 66441 64604 sources."@tsconfig/node10-1.0.9" 66442 64605 sources."@tsconfig/node12-1.0.11" 66443 64606 sources."@tsconfig/node14-1.0.3" 66444 64607 sources."@tsconfig/node16-1.0.4" 66445 - sources."@types/node-20.6.1" 64608 + sources."@types/node-20.6.3" 66446 64609 sources."acorn-8.10.0" 66447 64610 sources."acorn-walk-8.2.0" 66448 64611 sources."any-promise-1.3.0" ··· 66507 64670 sources."picomatch-2.3.1" 66508 64671 sources."pify-2.3.0" 66509 64672 sources."pirates-4.0.6" 66510 - sources."postcss-8.4.29" 64673 + sources."postcss-8.4.30" 66511 64674 sources."postcss-import-15.1.0" 66512 64675 sources."postcss-js-4.0.1" 66513 64676 sources."postcss-load-config-4.0.1" ··· 66521 64684 sources."queue-microtask-1.2.3" 66522 64685 sources."read-cache-1.0.0" 66523 64686 sources."readdirp-3.6.0" 66524 - sources."resolve-1.22.5" 64687 + sources."resolve-1.22.6" 66525 64688 sources."reusify-1.0.4" 66526 64689 sources."run-parallel-1.2.0" 66527 64690 sources."source-map-js-1.0.2" ··· 66562 64725 "@uppy/companion" = nodeEnv.buildNodePackage { 66563 64726 name = "_at_uppy_slash_companion"; 66564 64727 packageName = "@uppy/companion"; 66565 - version = "4.8.2"; 64728 + version = "4.9.0"; 66566 64729 src = fetchurl { 66567 - url = "https://registry.npmjs.org/@uppy/companion/-/companion-4.8.2.tgz"; 66568 - sha512 = "vhzKPcmlyM2ETwR+Ge/11G4tkeZpeNbEGSHEeZQN3yP3yh9tFtbtOaNP3O3/xnVljcfwBpb0xOtTbyP+bLMNRg=="; 64730 + url = "https://registry.npmjs.org/@uppy/companion/-/companion-4.9.0.tgz"; 64731 + sha512 = "0LgyTsh5SX+Xm8YyYLpL1go6KU2nrsT6yzArg0jyoI4BfNG/YuUbytYeBukBAuYp2bQ+5LJWVh58IychViZaog=="; 66569 64732 }; 66570 64733 dependencies = [ 66571 64734 (sources."@aws-crypto/crc32-3.0.0" // { ··· 66608 64771 sources."tslib-1.14.1" 66609 64772 ]; 66610 64773 }) 66611 - sources."@aws-sdk/client-s3-3.414.0" 64774 + sources."@aws-sdk/client-s3-3.417.0" 66612 64775 sources."@aws-sdk/client-sso-3.414.0" 66613 64776 sources."@aws-sdk/client-sts-3.414.0" 66614 64777 sources."@aws-sdk/credential-provider-env-3.413.0" ··· 66617 64780 sources."@aws-sdk/credential-provider-process-3.413.0" 66618 64781 sources."@aws-sdk/credential-provider-sso-3.414.0" 66619 64782 sources."@aws-sdk/credential-provider-web-identity-3.413.0" 66620 - (sources."@aws-sdk/lib-storage-3.414.0" // { 64783 + (sources."@aws-sdk/lib-storage-3.417.0" // { 66621 64784 dependencies = [ 66622 64785 sources."buffer-5.6.0" 66623 64786 ]; ··· 66635 64798 sources."@aws-sdk/middleware-ssec-3.413.0" 66636 64799 sources."@aws-sdk/middleware-user-agent-3.413.0" 66637 64800 sources."@aws-sdk/region-config-resolver-3.413.0" 66638 - sources."@aws-sdk/s3-presigned-post-3.414.0" 66639 - sources."@aws-sdk/s3-request-presigner-3.414.0" 64801 + sources."@aws-sdk/s3-presigned-post-3.417.0" 64802 + sources."@aws-sdk/s3-request-presigner-3.417.0" 66640 64803 sources."@aws-sdk/signature-v4-multi-region-3.413.0" 66641 64804 sources."@aws-sdk/token-providers-3.413.0" 66642 64805 sources."@aws-sdk/types-3.413.0" ··· 66656 64819 sources."@redis/search-1.0.6" 66657 64820 sources."@redis/time-series-1.0.3" 66658 64821 sources."@sindresorhus/is-4.6.0" 66659 - sources."@smithy/abort-controller-2.0.8" 64822 + sources."@smithy/abort-controller-2.0.9" 66660 64823 sources."@smithy/chunked-blob-reader-2.0.0" 66661 64824 sources."@smithy/chunked-blob-reader-native-2.0.0" 66662 - sources."@smithy/config-resolver-2.0.9" 66663 - sources."@smithy/credential-provider-imds-2.0.11" 66664 - sources."@smithy/eventstream-codec-2.0.8" 66665 - sources."@smithy/eventstream-serde-browser-2.0.8" 66666 - sources."@smithy/eventstream-serde-config-resolver-2.0.8" 66667 - sources."@smithy/eventstream-serde-node-2.0.8" 66668 - sources."@smithy/eventstream-serde-universal-2.0.8" 66669 - sources."@smithy/fetch-http-handler-2.1.4" 66670 - sources."@smithy/hash-blob-browser-2.0.8" 66671 - sources."@smithy/hash-node-2.0.8" 66672 - sources."@smithy/hash-stream-node-2.0.8" 66673 - sources."@smithy/invalid-dependency-2.0.8" 64825 + sources."@smithy/config-resolver-2.0.10" 64826 + sources."@smithy/credential-provider-imds-2.0.12" 64827 + sources."@smithy/eventstream-codec-2.0.9" 64828 + sources."@smithy/eventstream-serde-browser-2.0.9" 64829 + sources."@smithy/eventstream-serde-config-resolver-2.0.9" 64830 + sources."@smithy/eventstream-serde-node-2.0.9" 64831 + sources."@smithy/eventstream-serde-universal-2.0.9" 64832 + sources."@smithy/fetch-http-handler-2.1.5" 64833 + sources."@smithy/hash-blob-browser-2.0.9" 64834 + sources."@smithy/hash-node-2.0.9" 64835 + sources."@smithy/hash-stream-node-2.0.9" 64836 + sources."@smithy/invalid-dependency-2.0.9" 66674 64837 sources."@smithy/is-array-buffer-2.0.0" 66675 - sources."@smithy/md5-js-2.0.8" 66676 - sources."@smithy/middleware-content-length-2.0.10" 66677 - sources."@smithy/middleware-endpoint-2.0.8" 66678 - sources."@smithy/middleware-retry-2.0.11" 66679 - sources."@smithy/middleware-serde-2.0.8" 66680 - sources."@smithy/middleware-stack-2.0.1" 66681 - sources."@smithy/node-config-provider-2.0.11" 66682 - sources."@smithy/node-http-handler-2.1.4" 66683 - sources."@smithy/property-provider-2.0.9" 66684 - sources."@smithy/protocol-http-3.0.4" 66685 - sources."@smithy/querystring-builder-2.0.8" 66686 - sources."@smithy/querystring-parser-2.0.8" 66687 - sources."@smithy/service-error-classification-2.0.1" 66688 - sources."@smithy/shared-ini-file-loader-2.0.10" 66689 - sources."@smithy/signature-v4-2.0.8" 66690 - sources."@smithy/smithy-client-2.1.5" 66691 - sources."@smithy/types-2.3.2" 66692 - sources."@smithy/url-parser-2.0.8" 64838 + sources."@smithy/md5-js-2.0.9" 64839 + sources."@smithy/middleware-content-length-2.0.11" 64840 + sources."@smithy/middleware-endpoint-2.0.9" 64841 + sources."@smithy/middleware-retry-2.0.12" 64842 + sources."@smithy/middleware-serde-2.0.9" 64843 + sources."@smithy/middleware-stack-2.0.2" 64844 + sources."@smithy/node-config-provider-2.0.12" 64845 + sources."@smithy/node-http-handler-2.1.5" 64846 + sources."@smithy/property-provider-2.0.10" 64847 + sources."@smithy/protocol-http-3.0.5" 64848 + sources."@smithy/querystring-builder-2.0.9" 64849 + sources."@smithy/querystring-parser-2.0.9" 64850 + sources."@smithy/service-error-classification-2.0.2" 64851 + sources."@smithy/shared-ini-file-loader-2.0.11" 64852 + sources."@smithy/signature-v4-2.0.9" 64853 + sources."@smithy/smithy-client-2.1.6" 64854 + sources."@smithy/types-2.3.3" 64855 + sources."@smithy/url-parser-2.0.9" 66693 64856 sources."@smithy/util-base64-2.0.0" 66694 64857 sources."@smithy/util-body-length-browser-2.0.0" 66695 64858 sources."@smithy/util-body-length-node-2.1.0" 66696 64859 sources."@smithy/util-buffer-from-2.0.0" 66697 64860 sources."@smithy/util-config-provider-2.0.0" 66698 - sources."@smithy/util-defaults-mode-browser-2.0.9" 66699 - sources."@smithy/util-defaults-mode-node-2.0.11" 64861 + sources."@smithy/util-defaults-mode-browser-2.0.10" 64862 + sources."@smithy/util-defaults-mode-node-2.0.12" 66700 64863 sources."@smithy/util-hex-encoding-2.0.0" 66701 - sources."@smithy/util-middleware-2.0.1" 66702 - sources."@smithy/util-retry-2.0.1" 66703 - sources."@smithy/util-stream-2.0.11" 64864 + sources."@smithy/util-middleware-2.0.2" 64865 + sources."@smithy/util-retry-2.0.2" 64866 + sources."@smithy/util-stream-2.0.12" 66704 64867 sources."@smithy/util-uri-escape-2.0.0" 66705 64868 sources."@smithy/util-utf8-2.0.0" 66706 - sources."@smithy/util-waiter-2.0.8" 64869 + sources."@smithy/util-waiter-2.0.9" 66707 64870 sources."@szmarczak/http-timer-4.0.6" 66708 64871 sources."@types/cacheable-request-6.0.3" 66709 - sources."@types/http-cache-semantics-4.0.1" 64872 + sources."@types/http-cache-semantics-4.0.2" 66710 64873 sources."@types/keyv-3.1.4" 66711 - sources."@types/node-20.6.1" 64874 + sources."@types/node-20.6.3" 66712 64875 sources."@types/responselike-1.0.0" 66713 64876 sources."@types/ws-8.5.5" 66714 64877 sources."accepts-1.3.8" ··· 66837 65000 sources."ms-2.0.0" 66838 65001 ]; 66839 65002 }) 66840 - sources."follow-redirects-1.15.2" 65003 + sources."follow-redirects-1.15.3" 66841 65004 sources."form-data-3.0.1" 66842 65005 sources."forwarded-0.2.0" 66843 65006 sources."fresh-0.5.2" ··· 67128 65291 sources."nanoid-3.3.6" 67129 65292 sources."object-assign-4.1.1" 67130 65293 sources."picocolors-1.0.0" 67131 - sources."postcss-8.4.29" 65294 + sources."postcss-8.4.30" 67132 65295 sources."pug-error-2.0.0" 67133 65296 sources."pug-lexer-5.0.1" 67134 65297 sources."pug-parser-6.0.0" ··· 67155 65318 ]; 67156 65319 }) 67157 65320 sources."vscode-jsonrpc-8.1.0" 67158 - sources."vscode-languageserver-8.1.0" 67159 - sources."vscode-languageserver-protocol-3.17.3" 65321 + (sources."vscode-languageserver-8.1.0" // { 65322 + dependencies = [ 65323 + sources."vscode-languageserver-protocol-3.17.3" 65324 + sources."vscode-languageserver-types-3.17.3" 65325 + ]; 65326 + }) 65327 + (sources."vscode-languageserver-protocol-3.17.4" // { 65328 + dependencies = [ 65329 + sources."vscode-jsonrpc-8.2.0" 65330 + ]; 65331 + }) 67160 65332 sources."vscode-languageserver-textdocument-1.0.10" 67161 - sources."vscode-languageserver-types-3.17.3" 65333 + sources."vscode-languageserver-types-3.17.4" 67162 65334 sources."vscode-nls-5.2.0" 67163 65335 sources."vscode-uri-3.0.7" 67164 65336 sources."vue-component-meta-1.6.5" ··· 67213 65385 sources."supports-color-5.5.0" 67214 65386 ]; 67215 65387 }) 67216 - sources."@babel/compat-data-7.22.9" 67217 - (sources."@babel/core-7.22.19" // { 65388 + sources."@babel/compat-data-7.22.20" 65389 + (sources."@babel/core-7.22.20" // { 67218 65390 dependencies = [ 67219 65391 sources."semver-6.3.1" 67220 65392 ]; ··· 67240 65412 ]; 67241 65413 }) 67242 65414 sources."@babel/helper-define-polyfill-provider-0.4.2" 67243 - sources."@babel/helper-environment-visitor-7.22.5" 65415 + sources."@babel/helper-environment-visitor-7.22.20" 67244 65416 sources."@babel/helper-function-name-7.22.5" 67245 65417 sources."@babel/helper-hoist-variables-7.22.5" 67246 65418 sources."@babel/helper-member-expression-to-functions-7.22.15" 67247 65419 sources."@babel/helper-module-imports-7.22.15" 67248 - sources."@babel/helper-module-transforms-7.22.19" 65420 + sources."@babel/helper-module-transforms-7.22.20" 67249 65421 sources."@babel/helper-optimise-call-expression-7.22.5" 67250 65422 sources."@babel/helper-plugin-utils-7.22.5" 67251 - sources."@babel/helper-remap-async-to-generator-7.22.17" 67252 - sources."@babel/helper-replace-supers-7.22.9" 65423 + sources."@babel/helper-remap-async-to-generator-7.22.20" 65424 + sources."@babel/helper-replace-supers-7.22.20" 67253 65425 sources."@babel/helper-simple-access-7.22.5" 67254 65426 sources."@babel/helper-skip-transparent-expression-wrappers-7.22.5" 67255 65427 sources."@babel/helper-split-export-declaration-7.22.6" 67256 65428 sources."@babel/helper-string-parser-7.22.5" 67257 - sources."@babel/helper-validator-identifier-7.22.19" 65429 + sources."@babel/helper-validator-identifier-7.22.20" 67258 65430 sources."@babel/helper-validator-option-7.22.15" 67259 - sources."@babel/helper-wrap-function-7.22.17" 65431 + sources."@babel/helper-wrap-function-7.22.20" 67260 65432 sources."@babel/helpers-7.22.15" 67261 - (sources."@babel/highlight-7.22.13" // { 65433 + (sources."@babel/highlight-7.22.20" // { 67262 65434 dependencies = [ 67263 65435 sources."ansi-styles-3.2.1" 67264 65436 sources."chalk-2.4.2" ··· 67346 65518 sources."@babel/plugin-transform-unicode-property-regex-7.22.5" 67347 65519 sources."@babel/plugin-transform-unicode-regex-7.22.5" 67348 65520 sources."@babel/plugin-transform-unicode-sets-regex-7.22.5" 67349 - (sources."@babel/preset-env-7.22.15" // { 65521 + (sources."@babel/preset-env-7.22.20" // { 67350 65522 dependencies = [ 67351 65523 sources."semver-6.3.1" 67352 65524 ]; ··· 67364 65536 sources."@babel/regjsgen-0.8.0" 67365 65537 sources."@babel/runtime-7.22.15" 67366 65538 sources."@babel/template-7.22.15" 67367 - sources."@babel/traverse-7.22.19" 65539 + sources."@babel/traverse-7.22.20" 67368 65540 sources."@babel/types-7.22.19" 67369 65541 sources."@graphql-tools/merge-8.3.1" 67370 65542 (sources."@graphql-tools/mock-8.7.20" // { ··· 67411 65583 sources."@types/ejs-3.1.2" 67412 65584 sources."@types/express-4.17.14" 67413 65585 sources."@types/express-serve-static-core-4.17.31" 67414 - sources."@types/http-errors-2.0.1" 65586 + sources."@types/http-errors-2.0.2" 67415 65587 sources."@types/inquirer-8.2.6" 67416 65588 (sources."@types/jscodeshift-0.7.2" // { 67417 65589 dependencies = [ ··· 67421 65593 }) 67422 65594 sources."@types/long-4.0.2" 67423 65595 sources."@types/mime-3.0.1" 67424 - sources."@types/node-20.6.1" 65596 + sources."@types/node-20.6.3" 67425 65597 sources."@types/normalize-package-data-2.4.1" 67426 65598 sources."@types/qs-6.9.8" 67427 65599 sources."@types/range-parser-1.2.4" ··· 67530 65702 }) 67531 65703 sources."call-bind-1.0.2" 67532 65704 sources."camelcase-6.3.0" 67533 - sources."caniuse-lite-1.0.30001534" 65705 + sources."caniuse-lite-1.0.30001538" 67534 65706 sources."caw-2.0.1" 67535 65707 sources."chalk-4.1.2" 67536 65708 sources."chardet-0.7.0" ··· 67640 65812 sources."easy-stack-1.0.1" 67641 65813 sources."ee-first-1.1.1" 67642 65814 sources."ejs-3.1.9" 67643 - sources."electron-to-chromium-1.4.523" 65815 + sources."electron-to-chromium-1.4.525" 67644 65816 sources."emoji-regex-8.0.0" 67645 65817 sources."encodeurl-1.0.2" 67646 65818 sources."encoding-0.1.13" ··· 67868 66040 ]; 67869 66041 }) 67870 66042 sources."javascript-stringify-2.1.0" 67871 - sources."joi-17.10.1" 66043 + sources."joi-17.10.2" 67872 66044 sources."js-message-1.0.7" 67873 66045 sources."js-tokens-4.0.0" 67874 66046 sources."js-yaml-4.1.0" ··· 68037 66209 ]; 68038 66210 }) 68039 66211 sources."posix-character-classes-0.1.1" 68040 - (sources."postcss-8.4.29" // { 66212 + (sources."postcss-8.4.30" // { 68041 66213 dependencies = [ 68042 66214 sources."nanoid-3.3.6" 68043 66215 ]; ··· 68081 66253 sources."repeat-element-1.1.4" 68082 66254 sources."repeat-string-1.6.1" 68083 66255 sources."require-directory-2.1.1" 68084 - sources."resolve-1.22.5" 66256 + sources."resolve-1.22.6" 68085 66257 sources."resolve-url-0.2.1" 68086 66258 sources."responselike-1.0.2" 68087 66259 sources."restore-cursor-3.1.0" ··· 68170 66342 sources."spdx-correct-3.2.0" 68171 66343 sources."spdx-exceptions-2.3.0" 68172 66344 sources."spdx-expression-parse-3.0.1" 68173 - sources."spdx-license-ids-3.0.13" 66345 + sources."spdx-license-ids-3.0.15" 68174 66346 sources."split-string-3.1.0" 68175 66347 sources."sprintf-js-1.0.3" 68176 66348 (sources."static-extend-0.1.2" // { ··· 68270 66442 sources."has-values-0.1.4" 68271 66443 ]; 68272 66444 }) 68273 - sources."update-browserslist-db-1.0.11" 66445 + sources."update-browserslist-db-1.0.12" 68274 66446 sources."urix-0.1.0" 68275 66447 sources."url-parse-lax-3.0.0" 68276 66448 sources."url-to-options-1.0.1" ··· 68460 66632 sources."@babel/code-frame-7.22.13" 68461 66633 sources."@babel/generator-7.22.15" 68462 66634 sources."@babel/helper-string-parser-7.22.5" 68463 - sources."@babel/helper-validator-identifier-7.22.19" 68464 - sources."@babel/highlight-7.22.13" 66635 + sources."@babel/helper-validator-identifier-7.22.20" 66636 + sources."@babel/highlight-7.22.20" 68465 66637 sources."@babel/parser-7.22.16" 68466 66638 sources."@babel/template-7.22.15" 68467 66639 sources."@babel/types-7.22.19" ··· 68543 66715 }; 68544 66716 dependencies = [ 68545 66717 sources."@babel/code-frame-7.22.13" 68546 - sources."@babel/helper-validator-identifier-7.22.19" 68547 - sources."@babel/highlight-7.22.13" 66718 + sources."@babel/helper-validator-identifier-7.22.20" 66719 + sources."@babel/highlight-7.22.20" 68548 66720 sources."@isaacs/cliui-8.0.2" 68549 - sources."@npmcli/config-6.2.1" 66721 + sources."@npmcli/config-6.3.0" 68550 66722 (sources."@npmcli/map-workspaces-3.0.4" // { 68551 66723 dependencies = [ 68552 66724 sources."glob-10.3.4" ··· 68568 66740 sources."@types/debug-4.1.8" 68569 66741 sources."@types/estree-1.0.1" 68570 66742 sources."@types/estree-jsx-1.0.0" 68571 - sources."@types/hast-2.3.5" 68572 - sources."@types/http-cache-semantics-4.0.1" 66743 + sources."@types/hast-2.3.6" 66744 + sources."@types/http-cache-semantics-4.0.2" 68573 66745 sources."@types/is-empty-1.2.1" 68574 66746 sources."@types/mdast-3.0.12" 68575 66747 sources."@types/minimist-1.2.2" 68576 66748 sources."@types/ms-0.7.31" 68577 66749 sources."@types/nlcst-1.0.1" 68578 - sources."@types/node-18.17.16" 66750 + sources."@types/node-18.17.18" 68579 66751 sources."@types/normalize-package-data-2.4.1" 68580 66752 sources."@types/supports-color-8.1.1" 68581 66753 sources."@types/unist-2.0.8" ··· 68933 67105 sources."spdx-correct-3.2.0" 68934 67106 sources."spdx-exceptions-2.3.0" 68935 67107 sources."spdx-expression-parse-3.0.1" 68936 - sources."spdx-license-ids-3.0.13" 67108 + sources."spdx-license-ids-3.0.15" 68937 67109 sources."split-0.2.10" 68938 67110 (sources."split-transform-stream-0.1.1" // { 68939 67111 dependencies = [ ··· 69131 67303 }; 69132 67304 dependencies = [ 69133 67305 sources."browserslist-4.21.10" 69134 - sources."caniuse-lite-1.0.30001534" 69135 - sources."electron-to-chromium-1.4.523" 67306 + sources."caniuse-lite-1.0.30001538" 67307 + sources."electron-to-chromium-1.4.525" 69136 67308 sources."escalade-3.1.1" 69137 67309 sources."fraction.js-4.3.6" 69138 67310 sources."nanoid-3.3.6" 69139 67311 sources."node-releases-2.0.13" 69140 67312 sources."normalize-range-0.1.2" 69141 67313 sources."picocolors-1.0.0" 69142 - sources."postcss-8.4.29" 67314 + sources."postcss-8.4.30" 69143 67315 sources."postcss-value-parser-4.2.0" 69144 67316 sources."source-map-js-1.0.2" 69145 - sources."update-browserslist-db-1.0.11" 67317 + sources."update-browserslist-db-1.0.12" 69146 67318 ]; 69147 67319 buildInputs = globalBuildInputs; 69148 67320 meta = { ··· 69202 67374 }; 69203 67375 dependencies = [ 69204 67376 sources."@tootallnate/once-1.1.2" 69205 - sources."@types/node-20.6.1" 67377 + sources."@types/node-20.6.3" 69206 67378 sources."@types/yauzl-2.10.0" 69207 67379 sources."acorn-8.10.0" 69208 67380 sources."acorn-walk-8.2.0" ··· 69212 67384 sources."ansi-styles-4.3.0" 69213 67385 sources."ast-types-0.13.4" 69214 67386 sources."available-typed-arrays-1.0.5" 69215 - (sources."aws-sdk-2.1459.0" // { 67387 + (sources."aws-sdk-2.1462.0" // { 69216 67388 dependencies = [ 69217 67389 sources."uuid-8.0.0" 69218 67390 ]; ··· 69474 67646 sources."supports-color-5.5.0" 69475 67647 ]; 69476 67648 }) 69477 - sources."@babel/helper-validator-identifier-7.22.19" 69478 - (sources."@babel/highlight-7.22.13" // { 67649 + sources."@babel/helper-validator-identifier-7.22.20" 67650 + (sources."@babel/highlight-7.22.20" // { 69479 67651 dependencies = [ 69480 67652 sources."ansi-styles-3.2.1" 69481 67653 sources."chalk-2.4.2" ··· 69766 67938 sources."remark-parse-9.0.0" 69767 67939 sources."remark-stringify-9.0.1" 69768 67940 sources."repeat-string-1.6.1" 69769 - sources."resolve-1.22.5" 67941 + sources."resolve-1.22.6" 69770 67942 sources."responselike-1.0.2" 69771 67943 sources."restore-cursor-3.1.0" 69772 67944 sources."reusify-1.0.4" ··· 69783 67955 sources."spdx-correct-3.2.0" 69784 67956 sources."spdx-exceptions-2.3.0" 69785 67957 sources."spdx-expression-parse-3.0.1" 69786 - sources."spdx-license-ids-3.0.13" 67958 + sources."spdx-license-ids-3.0.15" 69787 67959 (sources."string-width-4.2.3" // { 69788 67960 dependencies = [ 69789 67961 sources."emoji-regex-8.0.0" ··· 70052 68224 sources."read-pkg-up-1.0.1" 70053 68225 sources."redent-1.0.0" 70054 68226 sources."repeating-2.0.1" 70055 - sources."resolve-1.22.5" 68227 + sources."resolve-1.22.6" 70056 68228 (sources."rimraf-2.7.1" // { 70057 68229 dependencies = [ 70058 68230 sources."glob-7.2.3" ··· 70065 68237 sources."spdx-correct-3.2.0" 70066 68238 sources."spdx-exceptions-2.3.0" 70067 68239 sources."spdx-expression-parse-3.0.1" 70068 - sources."spdx-license-ids-3.0.13" 68240 + sources."spdx-license-ids-3.0.15" 70069 68241 sources."sprintf-js-1.0.3" 70070 68242 sources."strip-bom-2.0.0" 70071 68243 sources."strip-indent-1.0.1" ··· 70255 68427 sources."string_decoder-1.1.1" 70256 68428 ]; 70257 68429 }) 70258 - sources."resolve-1.22.5" 68430 + sources."resolve-1.22.6" 70259 68431 sources."ripemd160-2.0.2" 70260 68432 sources."safe-buffer-5.2.1" 70261 68433 sources."safer-buffer-2.1.2" ··· 70318 68490 sources."@socket.io/component-emitter-3.1.0" 70319 68491 sources."@types/cookie-0.4.1" 70320 68492 sources."@types/cors-2.8.14" 70321 - sources."@types/node-20.6.1" 68493 + sources."@types/node-20.6.3" 70322 68494 sources."accepts-1.3.8" 70323 68495 sources."ansi-regex-5.0.1" 70324 68496 sources."ansi-styles-4.3.0" ··· 70376 68548 sources."ms-2.0.0" 70377 68549 ]; 70378 68550 }) 70379 - sources."follow-redirects-1.15.2" 68551 + sources."follow-redirects-1.15.3" 70380 68552 sources."fresh-0.5.2" 70381 68553 sources."fs-extra-3.0.1" 70382 68554 sources."fsevents-2.3.3" ··· 70507 68679 cdk8s-cli = nodeEnv.buildNodePackage { 70508 68680 name = "cdk8s-cli"; 70509 68681 packageName = "cdk8s-cli"; 70510 - version = "2.88.0"; 68682 + version = "2.95.0"; 70511 68683 src = fetchurl { 70512 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.88.0.tgz"; 70513 - sha512 = "+IGyk/tNAegskDFSLSGJNRStuMdjIP7N3AGRCb5YVV6oy1nvpOMdQ44htul6z7csnIkD7o0jHN+6orLhPgS81g=="; 68684 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.95.0.tgz"; 68685 + sha512 = "V9QnS2YL2GkOKxEQ0SEojF4Ve4nDcsjE1GJVTnpV1AyKpMtbMZ1IPTverdbCBj63EwZNHgJkNyvLmFwagtX+PQ=="; 70514 68686 }; 70515 68687 dependencies = [ 70516 68688 sources."@colors/colors-1.5.0" ··· 70532 68704 sources."@octokit/request-error-2.1.0" 70533 68705 sources."@octokit/rest-18.12.0" 70534 68706 sources."@octokit/types-6.41.0" 70535 - sources."@types/node-16.18.51" 68707 + sources."@types/node-16.18.53" 70536 68708 sources."@types/triple-beam-1.3.3" 70537 68709 sources."@xmldom/xmldom-0.8.10" 70538 68710 sources."aggregate-error-3.1.0" ··· 70566 68738 sources."buffer-5.7.1" 70567 68739 sources."camelcase-6.3.0" 70568 68740 sources."case-1.6.3" 70569 - sources."cdk8s-2.64.11" 70570 - sources."cdk8s-plus-25-2.22.11" 68741 + sources."cdk8s-2.64.16" 68742 + sources."cdk8s-plus-25-2.22.14" 70571 68743 sources."chalk-4.1.2" 70572 68744 sources."chardet-0.7.0" 70573 68745 sources."clean-stack-2.2.0" ··· 70615 68787 sources."dotenv-16.3.1" 70616 68788 (sources."downlevel-dts-0.11.0" // { 70617 68789 dependencies = [ 70618 - sources."typescript-5.3.0-dev.20230915" 68790 + sources."typescript-5.3.0-dev.20230920" 70619 68791 ]; 70620 68792 }) 70621 68793 sources."emoji-regex-8.0.0" ··· 70640 68812 }) 70641 68813 sources."fill-range-7.0.1" 70642 68814 sources."find-up-4.1.0" 70643 - sources."flatted-3.2.7" 68815 + sources."flatted-3.2.9" 70644 68816 sources."fn.name-1.1.0" 70645 - sources."follow-redirects-1.15.2" 68817 + sources."follow-redirects-1.15.3" 70646 68818 sources."form-data-4.0.0" 70647 68819 (sources."fs-extra-8.1.0" // { 70648 68820 dependencies = [ ··· 70657 68829 sources."glob-parent-5.1.2" 70658 68830 sources."globby-11.1.0" 70659 68831 sources."graceful-fs-4.2.11" 70660 - sources."graphql-16.8.0" 68832 + sources."graphql-16.8.1" 70661 68833 sources."graphql-tag-2.12.6" 70662 68834 sources."has-1.0.3" 70663 68835 sources."has-flag-4.0.0" ··· 70774 68946 sources."require-directory-2.1.1" 70775 68947 sources."require-from-string-2.0.2" 70776 68948 sources."require-main-filename-2.0.0" 70777 - sources."resolve-1.22.5" 68949 + sources."resolve-1.22.6" 70778 68950 sources."restore-cursor-3.1.0" 70779 68951 sources."reusify-1.0.4" 70780 68952 sources."rfdc-1.3.0" ··· 70888 69060 }) 70889 69061 sources."@babel/generator-7.22.15" 70890 69062 sources."@babel/helper-string-parser-7.22.5" 70891 - sources."@babel/helper-validator-identifier-7.22.19" 70892 - (sources."@babel/highlight-7.22.13" // { 69063 + sources."@babel/helper-validator-identifier-7.22.20" 69064 + (sources."@babel/highlight-7.22.20" // { 70893 69065 dependencies = [ 70894 69066 sources."ansi-styles-3.2.1" 70895 69067 sources."chalk-2.4.2" ··· 71012 69184 sources."@sentry/types-6.19.7" 71013 69185 sources."@sentry/utils-6.19.7" 71014 69186 sources."@types/mute-stream-0.0.1" 71015 - sources."@types/node-20.6.1" 71016 - sources."@types/prop-types-15.7.5" 71017 - sources."@types/react-18.2.21" 69187 + sources."@types/node-20.6.3" 69188 + sources."@types/prop-types-15.7.6" 69189 + sources."@types/react-18.2.22" 71018 69190 sources."@types/scheduler-0.16.3" 71019 69191 sources."@types/wrap-ansi-3.0.0" 71020 69192 sources."@types/yauzl-2.10.0" ··· 71118 69290 sources."detect-port-1.5.1" 71119 69291 (sources."downlevel-dts-0.11.0" // { 71120 69292 dependencies = [ 71121 - sources."typescript-5.3.0-dev.20230915" 69293 + sources."typescript-5.3.0-dev.20230920" 71122 69294 ]; 71123 69295 }) 71124 69296 sources."eastasianwidth-0.2.0" ··· 71157 69329 }) 71158 69330 sources."fill-range-7.0.1" 71159 69331 sources."find-up-4.1.0" 71160 - sources."flatted-3.2.7" 71161 - sources."follow-redirects-1.15.2" 69332 + sources."flatted-3.2.9" 69333 + sources."follow-redirects-1.15.3" 71162 69334 sources."for-each-0.3.3" 71163 69335 (sources."foreground-child-3.1.1" // { 71164 69336 dependencies = [ ··· 71244 69416 sources."jackspeak-2.3.3" 71245 69417 sources."js-tokens-4.0.0" 71246 69418 sources."jsesc-2.5.2" 71247 - (sources."jsii-5.2.5" // { 69419 + (sources."jsii-5.2.8" // { 71248 69420 dependencies = [ 71249 69421 sources."typescript-5.2.2" 71250 69422 ]; ··· 71405 69577 sources."require-from-string-2.0.2" 71406 69578 sources."require-main-filename-2.0.0" 71407 69579 sources."reserved-words-0.1.2" 71408 - sources."resolve-1.22.5" 69580 + sources."resolve-1.22.6" 71409 69581 sources."restore-cursor-3.1.0" 71410 69582 sources."reusify-1.0.4" 71411 69583 sources."rfdc-1.3.0" ··· 71515 69687 }; 71516 69688 dependencies = [ 71517 69689 sources."@babel/code-frame-7.22.13" 71518 - sources."@babel/helper-validator-identifier-7.22.19" 71519 - sources."@babel/highlight-7.22.13" 69690 + sources."@babel/helper-validator-identifier-7.22.20" 69691 + sources."@babel/highlight-7.22.20" 71520 69692 sources."@types/minimist-1.2.2" 71521 69693 sources."@types/normalize-package-data-2.4.1" 71522 69694 sources."ansi-styles-3.2.1" ··· 71587 69759 sources."spdx-correct-3.2.0" 71588 69760 sources."spdx-exceptions-2.3.0" 71589 69761 sources."spdx-expression-parse-3.0.1" 71590 - sources."spdx-license-ids-3.0.13" 69762 + sources."spdx-license-ids-3.0.15" 71591 69763 sources."strip-final-newline-2.0.0" 71592 69764 sources."strip-indent-4.0.0" 71593 69765 sources."supports-color-5.5.0" ··· 71726 69898 sources."@emmetio/extract-abbreviation-0.1.6" 71727 69899 sources."jsonc-parser-1.0.3" 71728 69900 sources."vscode-emmet-helper-1.2.17" 71729 - sources."vscode-languageserver-types-3.17.3" 69901 + sources."vscode-languageserver-types-3.17.4" 71730 69902 ]; 71731 69903 buildInputs = globalBuildInputs; 71732 69904 meta = { ··· 71956 70128 coc-java = nodeEnv.buildNodePackage { 71957 70129 name = "coc-java"; 71958 70130 packageName = "coc-java"; 71959 - version = "1.14.1"; 70131 + version = "1.15.1"; 71960 70132 src = fetchurl { 71961 - url = "https://registry.npmjs.org/coc-java/-/coc-java-1.14.1.tgz"; 71962 - sha512 = "1QpsmzpcToU+kt9xp8XfncPdOH8I7W8vV+dDNDiDG/F6e0rkqFFI8vJseGW4gd5hms5fMK0bJs8zFSoP1GcPUw=="; 70133 + url = "https://registry.npmjs.org/coc-java/-/coc-java-1.15.1.tgz"; 70134 + sha512 = "q59X2qqCrfBAeppsWuPgKmn/NmWfPExMMf87DibF0iIvhVlMsKaXer//DPFf8y5CKu1prdzEDQfB0AHsfI4iGA=="; 71963 70135 }; 71964 70136 dependencies = [ 71965 70137 sources."anymatch-3.1.3" ··· 72134 70306 sources."execa-1.0.0" 72135 70307 sources."fast-diff-1.3.0" 72136 70308 sources."fb-watchman-2.0.2" 72137 - sources."flatted-3.2.7" 72138 - sources."follow-redirects-1.15.2" 70309 + sources."flatted-3.2.9" 70310 + sources."follow-redirects-1.15.3" 72139 70311 sources."for-each-0.3.3" 72140 70312 sources."fp-ts-2.16.1" 72141 70313 sources."fs-extra-8.1.0" ··· 72294 70466 ]; 72295 70467 }) 72296 70468 sources."vscode-languageserver-textdocument-1.0.10" 72297 - sources."vscode-languageserver-types-3.17.3" 70469 + sources."vscode-languageserver-types-3.17.4" 72298 70470 sources."vscode-uri-2.1.2" 72299 70471 sources."webidl-conversions-3.0.1" 72300 70472 sources."whatwg-url-5.0.0" ··· 72362 70534 }; 72363 70535 dependencies = [ 72364 70536 sources."fsevents-2.3.3" 72365 - sources."pyright-1.1.327" 70537 + sources."pyright-1.1.328" 72366 70538 ]; 72367 70539 buildInputs = globalBuildInputs; 72368 70540 meta = { ··· 72401 70573 sha512 = "SOsCwIuQeE4eiX/Scgs2nL1WnR0JwFZ2/Edh3dx5ijmZSlEPxdc0PnMUN0hT9y96jK5/ZHAByC3qEperpWqPUA=="; 72402 70574 }; 72403 70575 dependencies = [ 72404 - sources."vscode-jsonrpc-8.1.0" 72405 - sources."vscode-languageserver-protocol-3.17.3" 70576 + sources."vscode-jsonrpc-8.2.0" 70577 + sources."vscode-languageserver-protocol-3.17.4" 72406 70578 sources."vscode-languageserver-textdocument-1.0.10" 72407 - sources."vscode-languageserver-types-3.17.3" 70579 + sources."vscode-languageserver-types-3.17.4" 72408 70580 ]; 72409 70581 buildInputs = globalBuildInputs; 72410 70582 meta = { ··· 72710 70882 sources."chalk-2.4.2" 72711 70883 ]; 72712 70884 }) 72713 - sources."@babel/compat-data-7.22.9" 72714 - sources."@babel/core-7.22.19" 70885 + sources."@babel/compat-data-7.22.20" 70886 + sources."@babel/core-7.22.20" 72715 70887 sources."@babel/generator-7.22.15" 72716 70888 sources."@babel/helper-compilation-targets-7.22.15" 72717 - sources."@babel/helper-environment-visitor-7.22.5" 70889 + sources."@babel/helper-environment-visitor-7.22.20" 72718 70890 sources."@babel/helper-function-name-7.22.5" 72719 70891 sources."@babel/helper-hoist-variables-7.22.5" 72720 70892 sources."@babel/helper-module-imports-7.22.15" 72721 - sources."@babel/helper-module-transforms-7.22.19" 70893 + sources."@babel/helper-module-transforms-7.22.20" 72722 70894 sources."@babel/helper-simple-access-7.22.5" 72723 70895 sources."@babel/helper-split-export-declaration-7.22.6" 72724 70896 sources."@babel/helper-string-parser-7.22.5" 72725 - sources."@babel/helper-validator-identifier-7.22.19" 70897 + sources."@babel/helper-validator-identifier-7.22.20" 72726 70898 sources."@babel/helper-validator-option-7.22.15" 72727 70899 sources."@babel/helpers-7.22.15" 72728 - (sources."@babel/highlight-7.22.13" // { 70900 + (sources."@babel/highlight-7.22.20" // { 72729 70901 dependencies = [ 72730 70902 sources."chalk-2.4.2" 72731 70903 ]; 72732 70904 }) 72733 70905 sources."@babel/parser-7.22.16" 72734 70906 sources."@babel/template-7.22.15" 72735 - sources."@babel/traverse-7.22.19" 70907 + sources."@babel/traverse-7.22.20" 72736 70908 sources."@babel/types-7.22.19" 72737 70909 sources."@jridgewell/gen-mapping-0.3.3" 72738 70910 sources."@jridgewell/resolve-uri-3.1.1" ··· 72772 70944 sources."callsites-3.1.0" 72773 70945 sources."camelcase-5.3.1" 72774 70946 sources."camelcase-keys-6.2.2" 72775 - sources."caniuse-lite-1.0.30001534" 70947 + sources."caniuse-lite-1.0.30001538" 72776 70948 (sources."chalk-4.1.2" // { 72777 70949 dependencies = [ 72778 70950 sources."ansi-styles-4.3.0" ··· 72809 70981 sources."domelementtype-1.3.1" 72810 70982 sources."domhandler-2.4.2" 72811 70983 sources."domutils-1.7.0" 72812 - sources."electron-to-chromium-1.4.523" 70984 + sources."electron-to-chromium-1.4.525" 72813 70985 sources."emoji-regex-8.0.0" 72814 70986 sources."entities-1.1.2" 72815 70987 sources."error-ex-1.3.2" ··· 72826 70998 sources."fill-range-7.0.1" 72827 70999 sources."find-up-4.1.0" 72828 71000 sources."flat-cache-3.1.0" 72829 - sources."flatted-3.2.7" 71001 + sources."flatted-3.2.9" 72830 71002 sources."fs.realpath-1.0.0" 72831 71003 sources."function-bind-1.1.1" 72832 71004 sources."gensync-1.0.0-beta.2" ··· 72975 71147 sources."remark-stringify-9.0.1" 72976 71148 sources."repeat-string-1.6.1" 72977 71149 sources."require-from-string-2.0.2" 72978 - sources."resolve-1.22.5" 71150 + sources."resolve-1.22.6" 72979 71151 sources."resolve-from-5.0.0" 72980 71152 sources."reusify-1.0.4" 72981 71153 sources."rimraf-3.0.2" ··· 72995 71167 sources."spdx-correct-3.2.0" 72996 71168 sources."spdx-exceptions-2.3.0" 72997 71169 sources."spdx-expression-parse-3.0.1" 72998 - sources."spdx-license-ids-3.0.13" 71170 + sources."spdx-license-ids-3.0.15" 72999 71171 sources."specificity-0.4.1" 73000 71172 sources."string-width-4.2.3" 73001 71173 sources."string_decoder-1.3.0" ··· 73018 71190 sources."unist-util-find-all-after-3.0.2" 73019 71191 sources."unist-util-is-4.1.0" 73020 71192 sources."unist-util-stringify-position-2.0.3" 73021 - sources."update-browserslist-db-1.0.11" 71193 + sources."update-browserslist-db-1.0.12" 73022 71194 sources."uri-js-4.4.1" 73023 71195 sources."util-deprecate-1.0.2" 73024 71196 sources."v8-compile-cache-2.4.0" ··· 73033 71205 ]; 73034 71206 }) 73035 71207 sources."vscode-languageserver-textdocument-1.0.10" 73036 - sources."vscode-languageserver-types-3.17.3" 71208 + sources."vscode-languageserver-types-3.17.4" 73037 71209 sources."vscode-uri-2.1.2" 73038 71210 sources."which-1.3.1" 73039 71211 sources."wrappy-1.0.2" ··· 73165 71337 }; 73166 71338 dependencies = [ 73167 71339 sources."@babel/code-frame-7.22.13" 73168 - sources."@babel/helper-validator-identifier-7.22.19" 73169 - sources."@babel/highlight-7.22.13" 71340 + sources."@babel/helper-validator-identifier-7.22.20" 71341 + sources."@babel/highlight-7.22.20" 73170 71342 sources."ansi-styles-3.2.1" 73171 71343 sources."argparse-1.0.10" 73172 71344 sources."balanced-match-1.0.2" ··· 73196 71368 sources."once-1.4.0" 73197 71369 sources."path-is-absolute-1.0.1" 73198 71370 sources."path-parse-1.0.7" 73199 - sources."resolve-1.22.5" 71371 + sources."resolve-1.22.6" 73200 71372 sources."semver-5.7.2" 73201 71373 sources."sprintf-js-1.0.3" 73202 71374 sources."supports-color-5.5.0" ··· 73253 71425 coc-tsserver = nodeEnv.buildNodePackage { 73254 71426 name = "coc-tsserver"; 73255 71427 packageName = "coc-tsserver"; 73256 - version = "2.1.3"; 71428 + version = "2.1.4"; 73257 71429 src = fetchurl { 73258 - url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-2.1.3.tgz"; 73259 - sha512 = "rzom53icaFoCF7p6Ps0dHqflS8yv+hOtQw43qOS4NL3b+rnulkfNracHFzuH1n1tyQWCzLgs73cAL1pBGrkUHQ=="; 71430 + url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-2.1.4.tgz"; 71431 + sha512 = "PItTyCjeAPF0V7wZO+viGCO2PxrDLujRcb4wN4TKUFLni8fw3p5czviA6JFl5s8WLdkfjH6XkrciTwcVWH2srQ=="; 73260 71432 }; 73261 71433 dependencies = [ 73262 - sources."typescript-4.9.5" 71434 + sources."typescript-5.2.2" 73263 71435 ]; 73264 71436 buildInputs = globalBuildInputs; 73265 71437 meta = { ··· 73300 71472 dependencies = [ 73301 71473 sources."@aashutoshrathi/word-wrap-1.2.6" 73302 71474 sources."@babel/code-frame-7.12.11" 73303 - sources."@babel/helper-validator-identifier-7.22.19" 73304 - (sources."@babel/highlight-7.22.13" // { 71475 + sources."@babel/helper-validator-identifier-7.22.20" 71476 + (sources."@babel/highlight-7.22.20" // { 73305 71477 dependencies = [ 73306 71478 sources."chalk-2.4.2" 73307 71479 sources."escape-string-regexp-1.0.5" ··· 73381 71553 sources."fast-levenshtein-2.0.6" 73382 71554 sources."file-entry-cache-6.0.1" 73383 71555 sources."flat-cache-3.1.0" 73384 - sources."flatted-3.2.7" 71556 + sources."flatted-3.2.9" 73385 71557 sources."fs.realpath-1.0.0" 73386 71558 sources."function-bind-1.1.1" 73387 71559 sources."functional-red-black-tree-1.0.1" 73388 71560 sources."get-intrinsic-1.2.1" 73389 71561 sources."glob-7.2.3" 73390 71562 sources."glob-parent-5.1.2" 73391 - sources."globals-13.21.0" 71563 + sources."globals-13.22.0" 73392 71564 sources."has-1.0.3" 73393 71565 sources."has-flag-3.0.0" 73394 71566 sources."has-proto-1.0.1" ··· 73437 71609 sources."punycode-2.3.0" 73438 71610 sources."regexpp-3.2.0" 73439 71611 sources."require-from-string-2.0.2" 73440 - sources."resolve-1.22.5" 71612 + sources."resolve-1.22.6" 73441 71613 sources."resolve-from-4.0.0" 73442 71614 sources."rimraf-3.0.2" 73443 71615 sources."semver-7.5.4" ··· 73784 71956 sources."colors-1.4.0" 73785 71957 sources."commander-2.20.3" 73786 71958 sources."escape-string-regexp-1.0.5" 73787 - sources."follow-redirects-1.15.2" 71959 + sources."follow-redirects-1.15.3" 73788 71960 sources."has-flag-3.0.0" 73789 71961 sources."is-fullwidth-code-point-2.0.0" 73790 71962 sources."log-symbols-2.2.0" ··· 73870 72042 }; 73871 72043 dependencies = [ 73872 72044 sources."@babel/code-frame-7.22.13" 73873 - sources."@babel/helper-validator-identifier-7.22.19" 73874 - sources."@babel/highlight-7.22.13" 72045 + sources."@babel/helper-validator-identifier-7.22.20" 72046 + sources."@babel/highlight-7.22.20" 73875 72047 sources."@hutson/parse-repository-url-5.0.0" 73876 72048 sources."@types/normalize-package-data-2.4.1" 73877 72049 sources."JSONStream-1.3.5" ··· 73943 72115 sources."spdx-correct-3.2.0" 73944 72116 sources."spdx-exceptions-2.3.0" 73945 72117 sources."spdx-expression-parse-3.0.1" 73946 - sources."spdx-license-ids-3.0.13" 72118 + sources."spdx-license-ids-3.0.15" 73947 72119 sources."split2-4.2.0" 73948 72120 sources."supports-color-5.5.0" 73949 72121 sources."temp-dir-3.0.0" ··· 74048 72220 sources."@cycle/run-3.4.0" 74049 72221 sources."@cycle/time-0.10.1" 74050 72222 sources."@types/cookiejar-2.1.2" 74051 - sources."@types/node-20.6.1" 72223 + sources."@types/node-20.6.3" 74052 72224 sources."@types/superagent-3.8.2" 74053 72225 sources."ansi-escapes-3.2.0" 74054 72226 sources."ansi-regex-2.1.1" ··· 74327 72499 sources."chalk-2.4.2" 74328 72500 ]; 74329 72501 }) 74330 - sources."@babel/helper-validator-identifier-7.22.19" 74331 - (sources."@babel/highlight-7.22.13" // { 72502 + sources."@babel/helper-validator-identifier-7.22.20" 72503 + (sources."@babel/highlight-7.22.20" // { 74332 72504 dependencies = [ 74333 72505 sources."chalk-2.4.2" 74334 72506 ]; ··· 74373 72545 sources."@cspell/dict-lua-4.0.1" 74374 72546 sources."@cspell/dict-node-4.0.3" 74375 72547 sources."@cspell/dict-npm-5.0.8" 74376 - sources."@cspell/dict-php-4.0.2" 72548 + sources."@cspell/dict-php-4.0.3" 74377 72549 sources."@cspell/dict-powershell-5.0.2" 74378 72550 sources."@cspell/dict-public-licenses-2.0.3" 74379 72551 sources."@cspell/dict-python-4.1.8" ··· 74381 72553 sources."@cspell/dict-ruby-5.0.0" 74382 72554 sources."@cspell/dict-rust-4.0.1" 74383 72555 sources."@cspell/dict-scala-5.0.0" 74384 - sources."@cspell/dict-software-terms-3.2.3" 72556 + sources."@cspell/dict-software-terms-3.2.4" 74385 72557 sources."@cspell/dict-sql-2.1.1" 74386 72558 sources."@cspell/dict-svelte-1.0.2" 74387 72559 sources."@cspell/dict-swift-2.0.1" ··· 74445 72617 sources."fill-range-7.0.1" 74446 72618 sources."find-up-5.0.0" 74447 72619 sources."flat-cache-3.1.0" 74448 - sources."flatted-3.2.7" 72620 + sources."flatted-3.2.9" 74449 72621 sources."fs.realpath-1.0.0" 74450 72622 sources."gensequence-6.0.0" 74451 72623 sources."get-stdin-9.0.0" ··· 74641 72813 sources."tslib-1.14.1" 74642 72814 sources."type-fest-0.16.0" 74643 72815 sources."unique-string-2.0.0" 74644 - sources."vscode-jsonrpc-8.1.0" 72816 + sources."vscode-jsonrpc-8.2.0" 74645 72817 sources."vscode-languageserver-6.1.1" 74646 - sources."vscode-languageserver-protocol-3.17.3" 72818 + sources."vscode-languageserver-protocol-3.17.4" 74647 72819 sources."vscode-languageserver-textdocument-1.0.10" 74648 - sources."vscode-languageserver-types-3.17.3" 72820 + sources."vscode-languageserver-types-3.17.4" 74649 72821 sources."vscode-uri-2.1.2" 74650 72822 sources."wrappy-1.0.2" 74651 72823 ]; ··· 74696 72868 sources."default-browser-id-3.0.0" 74697 72869 sources."define-lazy-prop-3.0.0" 74698 72870 sources."diff-5.1.0" 74699 - sources."diff2html-3.4.42" 72871 + sources."diff2html-3.4.43" 74700 72872 sources."emoji-regex-8.0.0" 74701 72873 sources."escalade-3.1.1" 74702 72874 sources."execa-5.1.1" ··· 74820 72992 ]; 74821 72993 }) 74822 72994 sources."@oclif/screen-3.0.6" 74823 - sources."@swc/core-1.3.85" 74824 - sources."@swc/core-darwin-arm64-1.3.85" 74825 - sources."@swc/core-darwin-x64-1.3.85" 74826 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 74827 - sources."@swc/core-linux-arm64-gnu-1.3.85" 74828 - sources."@swc/core-linux-arm64-musl-1.3.85" 74829 - sources."@swc/core-linux-x64-gnu-1.3.85" 74830 - sources."@swc/core-linux-x64-musl-1.3.85" 74831 - sources."@swc/core-win32-arm64-msvc-1.3.85" 74832 - sources."@swc/core-win32-ia32-msvc-1.3.85" 74833 - sources."@swc/core-win32-x64-msvc-1.3.85" 72995 + sources."@swc/core-1.3.86" 72996 + sources."@swc/core-darwin-arm64-1.3.86" 72997 + sources."@swc/core-darwin-x64-1.3.86" 72998 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 72999 + sources."@swc/core-linux-arm64-gnu-1.3.86" 73000 + sources."@swc/core-linux-arm64-musl-1.3.86" 73001 + sources."@swc/core-linux-x64-gnu-1.3.86" 73002 + sources."@swc/core-linux-x64-musl-1.3.86" 73003 + sources."@swc/core-win32-arm64-msvc-1.3.86" 73004 + sources."@swc/core-win32-ia32-msvc-1.3.86" 73005 + sources."@swc/core-win32-x64-msvc-1.3.86" 74834 73006 sources."@swc/helpers-0.5.2" 74835 - sources."@swc/types-0.1.4" 74836 - sources."@swc/wasm-1.3.85" 73007 + sources."@swc/types-0.1.5" 73008 + sources."@swc/wasm-1.3.86" 74837 73009 sources."@tsconfig/node10-1.0.9" 74838 73010 sources."@tsconfig/node12-1.0.11" 74839 73011 sources."@tsconfig/node14-1.0.3" 74840 73012 sources."@tsconfig/node16-1.0.4" 74841 73013 sources."@types/cli-progress-3.11.2" 74842 - sources."@types/node-20.6.1" 73014 + sources."@types/node-20.6.3" 74843 73015 sources."acorn-8.10.0" 74844 73016 sources."acorn-walk-8.2.0" 74845 73017 sources."ansi-escapes-4.3.2" ··· 74911 73083 }) 74912 73084 sources."filesize-6.4.0" 74913 73085 sources."fill-range-7.0.1" 74914 - sources."follow-redirects-1.15.2" 73086 + sources."follow-redirects-1.15.3" 74915 73087 sources."form-data-4.0.0" 74916 73088 sources."fs-constants-1.0.0" 74917 73089 sources."fs-extra-9.1.0" ··· 75052 73224 sources."@fast-csv/format-4.3.5" 75053 73225 sources."@fast-csv/parse-4.3.6" 75054 73226 sources."@search-dump/jsonstream-1.5.0" 75055 - sources."@types/node-14.18.60" 73227 + sources."@types/node-14.18.62" 75056 73228 sources."ajv-6.12.6" 75057 73229 sources."asn1-0.2.6" 75058 73230 sources."assert-plus-1.0.0" ··· 75225 73397 sources."@electron-forge/template-vite-typescript-6.4.2" 75226 73398 sources."@electron-forge/template-webpack-6.4.2" 75227 73399 sources."@electron-forge/template-webpack-typescript-6.4.2" 75228 - (sources."@electron/asar-3.2.4" // { 73400 + (sources."@electron/asar-3.2.5" // { 75229 73401 dependencies = [ 75230 73402 sources."commander-5.1.0" 75231 73403 ]; ··· 75261 73433 sources."@szmarczak/http-timer-4.0.6" 75262 73434 sources."@tootallnate/once-2.0.0" 75263 73435 sources."@types/cacheable-request-6.0.3" 75264 - sources."@types/http-cache-semantics-4.0.1" 73436 + sources."@types/http-cache-semantics-4.0.2" 75265 73437 sources."@types/keyv-3.1.4" 75266 - sources."@types/node-20.6.1" 73438 + sources."@types/node-20.6.3" 75267 73439 sources."@types/responselike-1.0.0" 75268 73440 sources."@types/yauzl-2.10.0" 75269 73441 sources."@xmldom/xmldom-0.8.10" ··· 75311 73483 ]; 75312 73484 }) 75313 73485 sources."chownr-2.0.0" 75314 - sources."chromium-pickle-js-0.2.0" 75315 73486 sources."clean-stack-2.2.0" 75316 73487 sources."cli-cursor-3.1.0" 75317 73488 sources."cli-spinners-2.9.1" ··· 75649 73820 sources."readable-stream-3.6.2" 75650 73821 sources."rechoir-0.8.0" 75651 73822 sources."require-directory-2.1.1" 75652 - sources."resolve-1.22.5" 73823 + sources."resolve-1.22.6" 75653 73824 sources."resolve-alpn-1.2.1" 75654 73825 sources."resolve-dir-1.0.1" 75655 73826 sources."resolve-package-1.0.1" ··· 75692 73863 sources."spdx-correct-3.2.0" 75693 73864 sources."spdx-exceptions-2.3.0" 75694 73865 sources."spdx-expression-parse-3.0.1" 75695 - sources."spdx-license-ids-3.0.13" 73866 + sources."spdx-license-ids-3.0.15" 75696 73867 sources."sprintf-js-1.1.3" 75697 73868 (sources."ssri-10.0.5" // { 75698 73869 dependencies = [ ··· 75807 73978 dependencies = [ 75808 73979 sources."@0no-co/graphql.web-1.0.4" 75809 73980 sources."@babel/code-frame-7.10.4" 75810 - sources."@babel/helper-validator-identifier-7.22.19" 75811 - (sources."@babel/highlight-7.22.13" // { 73981 + sources."@babel/helper-validator-identifier-7.22.20" 73982 + (sources."@babel/highlight-7.22.20" // { 75812 73983 dependencies = [ 75813 73984 sources."chalk-2.4.2" 75814 73985 ]; ··· 75833 74004 sources."@expo/config-types-49.0.0" 75834 74005 (sources."@expo/eas-build-job-1.0.39" // { 75835 74006 dependencies = [ 75836 - sources."joi-17.10.1" 74007 + sources."joi-17.10.2" 75837 74008 sources."semver-7.5.4" 75838 74009 ]; 75839 74010 }) 75840 74011 (sources."@expo/eas-json-5.2.0" // { 75841 74012 dependencies = [ 75842 74013 sources."@babel/code-frame-7.18.6" 74014 + ]; 74015 + }) 74016 + (sources."@expo/fingerprint-0.2.0" // { 74017 + dependencies = [ 74018 + sources."minimatch-3.1.2" 75843 74019 ]; 75844 74020 }) 75845 74021 (sources."@expo/image-utils-0.3.22" // { ··· 75897 74073 sources."@expo/spawn-async-1.7.2" 75898 74074 sources."cross-spawn-7.0.3" 75899 74075 sources."fs-extra-11.1.1" 75900 - sources."joi-17.10.1" 74076 + sources."joi-17.10.2" 75901 74077 sources."path-key-3.1.1" 75902 74078 sources."shebang-command-2.0.0" 75903 74079 sources."shebang-regex-3.0.0" ··· 75942 74118 sources."@sideway/formula-3.0.1" 75943 74119 sources."@sideway/pinpoint-2.0.0" 75944 74120 sources."@types/bunyan-1.8.9" 75945 - sources."@types/node-20.6.1" 74121 + sources."@types/node-20.6.3" 75946 74122 sources."@urql/core-4.0.11" 75947 74123 sources."@urql/exchange-retry-1.2.0" 75948 74124 sources."@xmldom/xmldom-0.8.10" ··· 76031 74207 sources."escape-string-regexp-1.0.5" 76032 74208 sources."esprima-4.0.1" 76033 74209 sources."exec-async-2.2.0" 76034 - (sources."expo-modules-autolinking-1.5.2" // { 74210 + (sources."expo-modules-autolinking-1.6.0" // { 76035 74211 dependencies = [ 76036 - sources."@expo/config-8.3.0" 76037 - sources."@expo/config-plugins-7.4.0" 76038 - sources."@expo/config-types-50.0.0-alpha.1" 74212 + sources."@expo/config-8.3.1" 74213 + sources."@expo/config-plugins-7.5.0" 74214 + sources."@expo/config-types-50.0.0-alpha.2" 76039 74215 sources."commander-7.2.0" 76040 74216 sources."fs-extra-9.1.0" 76041 74217 sources."semver-7.5.3" ··· 76355 74531 dependencies = [ 76356 74532 sources."@ampproject/remapping-2.2.1" 76357 74533 sources."@babel/code-frame-7.22.13" 76358 - sources."@babel/compat-data-7.22.9" 76359 - (sources."@babel/core-7.22.19" // { 74534 + sources."@babel/compat-data-7.22.20" 74535 + (sources."@babel/core-7.22.20" // { 76360 74536 dependencies = [ 76361 74537 sources."semver-6.3.1" 76362 74538 ]; ··· 76370 74546 sources."yallist-3.1.1" 76371 74547 ]; 76372 74548 }) 76373 - sources."@babel/helper-environment-visitor-7.22.5" 74549 + sources."@babel/helper-environment-visitor-7.22.20" 76374 74550 sources."@babel/helper-function-name-7.22.5" 76375 74551 sources."@babel/helper-hoist-variables-7.22.5" 76376 74552 sources."@babel/helper-module-imports-7.22.15" 76377 - sources."@babel/helper-module-transforms-7.22.19" 74553 + sources."@babel/helper-module-transforms-7.22.20" 76378 74554 sources."@babel/helper-plugin-utils-7.22.5" 76379 74555 sources."@babel/helper-simple-access-7.22.5" 76380 74556 sources."@babel/helper-split-export-declaration-7.22.6" 76381 74557 sources."@babel/helper-string-parser-7.22.5" 76382 - sources."@babel/helper-validator-identifier-7.22.19" 74558 + sources."@babel/helper-validator-identifier-7.22.20" 76383 74559 sources."@babel/helper-validator-option-7.22.15" 76384 74560 sources."@babel/helpers-7.22.15" 76385 - sources."@babel/highlight-7.22.13" 74561 + sources."@babel/highlight-7.22.20" 76386 74562 sources."@babel/parser-7.22.16" 76387 74563 sources."@babel/plugin-proposal-object-rest-spread-7.20.7" 76388 74564 sources."@babel/plugin-syntax-jsx-7.22.5" ··· 76391 74567 sources."@babel/plugin-transform-parameters-7.22.15" 76392 74568 sources."@babel/plugin-transform-react-jsx-7.22.15" 76393 74569 sources."@babel/template-7.22.15" 76394 - sources."@babel/traverse-7.22.19" 74570 + sources."@babel/traverse-7.22.20" 76395 74571 sources."@babel/types-7.22.19" 76396 74572 sources."@jridgewell/gen-mapping-0.3.3" 76397 74573 sources."@jridgewell/resolve-uri-3.1.1" ··· 76400 74576 sources."@jridgewell/trace-mapping-0.3.19" 76401 74577 sources."@types/minimist-1.2.2" 76402 74578 sources."@types/normalize-package-data-2.4.1" 76403 - sources."@types/prop-types-15.7.5" 76404 - sources."@types/react-18.2.21" 74579 + sources."@types/prop-types-15.7.6" 74580 + sources."@types/react-18.2.22" 76405 74581 sources."@types/scheduler-0.16.3" 76406 74582 sources."@types/yoga-layout-1.9.2" 76407 74583 sources."ajv-6.12.6" ··· 76426 74602 sources."callsites-3.1.0" 76427 74603 sources."camelcase-5.3.1" 76428 74604 sources."camelcase-keys-6.2.2" 76429 - sources."caniuse-lite-1.0.30001534" 74605 + sources."caniuse-lite-1.0.30001538" 76430 74606 sources."chalk-2.4.2" 76431 74607 sources."ci-info-2.0.0" 76432 74608 sources."cli-boxes-2.2.1" ··· 76456 74632 ]; 76457 74633 }) 76458 74634 sources."dot-prop-5.3.0" 76459 - sources."electron-to-chromium-1.4.523" 74635 + sources."electron-to-chromium-1.4.525" 76460 74636 sources."emoji-regex-8.0.0" 76461 74637 sources."emojilib-2.4.0" 76462 74638 sources."end-of-stream-1.4.4" ··· 76604 74780 ]; 76605 74781 }) 76606 74782 sources."redent-3.0.0" 76607 - sources."resolve-1.22.5" 74783 + sources."resolve-1.22.6" 76608 74784 sources."resolve-from-3.0.0" 76609 74785 sources."restore-cursor-3.1.0" 76610 74786 sources."rimraf-3.0.2" ··· 76625 74801 sources."spdx-correct-3.2.0" 76626 74802 sources."spdx-exceptions-2.3.0" 76627 74803 sources."spdx-expression-parse-3.0.1" 76628 - sources."spdx-license-ids-3.0.13" 74804 + sources."spdx-license-ids-3.0.15" 76629 74805 (sources."stack-utils-2.0.6" // { 76630 74806 dependencies = [ 76631 74807 sources."escape-string-regexp-2.0.0" ··· 76641 74817 sources."trim-newlines-3.0.1" 76642 74818 sources."type-fest-0.12.0" 76643 74819 sources."unicode-emoji-modifier-base-1.0.0" 76644 - sources."update-browserslist-db-1.0.11" 74820 + sources."update-browserslist-db-1.0.12" 76645 74821 sources."uri-js-4.4.1" 76646 74822 sources."utf-8-validate-5.0.10" 76647 74823 sources."validate-npm-package-license-3.0.4" ··· 76758 74934 sources."file-entry-cache-6.0.1" 76759 74935 sources."find-up-5.0.0" 76760 74936 sources."flat-cache-3.1.0" 76761 - sources."flatted-3.2.7" 74937 + sources."flatted-3.2.9" 76762 74938 sources."fs.realpath-1.0.0" 76763 74939 sources."glob-7.2.3" 76764 74940 sources."glob-parent-6.0.2" 76765 - sources."globals-13.21.0" 74941 + sources."globals-13.22.0" 76766 74942 sources."graphemer-1.4.0" 76767 74943 sources."has-flag-4.0.0" 76768 74944 sources."ignore-5.2.4" ··· 76851 75027 dependencies = [ 76852 75028 sources."@ampproject/remapping-2.2.1" 76853 75029 sources."@babel/code-frame-7.10.4" 76854 - sources."@babel/compat-data-7.22.9" 76855 - (sources."@babel/core-7.22.19" // { 75030 + sources."@babel/compat-data-7.22.20" 75031 + (sources."@babel/core-7.22.20" // { 76856 75032 dependencies = [ 76857 75033 sources."@babel/code-frame-7.22.13" 76858 75034 sources."chalk-2.4.2" ··· 76881 75057 ]; 76882 75058 }) 76883 75059 sources."@babel/helper-define-polyfill-provider-0.4.2" 76884 - sources."@babel/helper-environment-visitor-7.22.5" 75060 + sources."@babel/helper-environment-visitor-7.22.20" 76885 75061 sources."@babel/helper-function-name-7.22.5" 76886 75062 sources."@babel/helper-hoist-variables-7.22.5" 76887 75063 sources."@babel/helper-member-expression-to-functions-7.22.15" 76888 75064 sources."@babel/helper-module-imports-7.22.15" 76889 - sources."@babel/helper-module-transforms-7.22.19" 75065 + sources."@babel/helper-module-transforms-7.22.20" 76890 75066 sources."@babel/helper-optimise-call-expression-7.22.5" 76891 75067 sources."@babel/helper-plugin-utils-7.22.5" 76892 - sources."@babel/helper-remap-async-to-generator-7.22.17" 76893 - sources."@babel/helper-replace-supers-7.22.9" 75068 + sources."@babel/helper-remap-async-to-generator-7.22.20" 75069 + sources."@babel/helper-replace-supers-7.22.20" 76894 75070 sources."@babel/helper-simple-access-7.22.5" 76895 75071 sources."@babel/helper-skip-transparent-expression-wrappers-7.22.5" 76896 75072 sources."@babel/helper-split-export-declaration-7.22.6" 76897 75073 sources."@babel/helper-string-parser-7.22.5" 76898 - sources."@babel/helper-validator-identifier-7.22.19" 75074 + sources."@babel/helper-validator-identifier-7.22.20" 76899 75075 sources."@babel/helper-validator-option-7.22.15" 76900 - sources."@babel/helper-wrap-function-7.22.17" 75076 + sources."@babel/helper-wrap-function-7.22.20" 76901 75077 sources."@babel/helpers-7.22.15" 76902 - (sources."@babel/highlight-7.22.13" // { 75078 + (sources."@babel/highlight-7.22.20" // { 76903 75079 dependencies = [ 76904 75080 sources."chalk-2.4.2" 76905 75081 ]; ··· 76998 75174 sources."@babel/plugin-transform-unicode-property-regex-7.22.5" 76999 75175 sources."@babel/plugin-transform-unicode-regex-7.22.5" 77000 75176 sources."@babel/plugin-transform-unicode-sets-regex-7.22.5" 77001 - (sources."@babel/preset-env-7.22.15" // { 75177 + (sources."@babel/preset-env-7.22.20" // { 77002 75178 dependencies = [ 77003 75179 sources."semver-6.3.1" 77004 75180 ]; ··· 77012 75188 sources."chalk-2.4.2" 77013 75189 ]; 77014 75190 }) 77015 - (sources."@babel/traverse-7.22.19" // { 75191 + (sources."@babel/traverse-7.22.20" // { 77016 75192 dependencies = [ 77017 75193 sources."@babel/code-frame-7.22.13" 77018 75194 sources."chalk-2.4.2" ··· 77201 75377 sources."@types/express-serve-static-core-4.17.36" 77202 75378 sources."@types/glob-7.2.0" 77203 75379 sources."@types/html-minifier-terser-6.1.0" 77204 - sources."@types/http-cache-semantics-4.0.1" 77205 - sources."@types/http-errors-2.0.1" 77206 - sources."@types/http-proxy-1.17.11" 75380 + sources."@types/http-cache-semantics-4.0.2" 75381 + sources."@types/http-errors-2.0.2" 75382 + sources."@types/http-proxy-1.17.12" 77207 75383 sources."@types/istanbul-lib-coverage-2.0.4" 77208 75384 sources."@types/istanbul-lib-report-3.0.0" 77209 75385 sources."@types/istanbul-reports-3.0.1" ··· 77211 75387 sources."@types/keyv-3.1.4" 77212 75388 sources."@types/mime-1.3.2" 77213 75389 sources."@types/minimatch-5.1.2" 77214 - sources."@types/node-20.6.1" 75390 + sources."@types/node-20.6.3" 77215 75391 sources."@types/qs-6.9.8" 77216 75392 sources."@types/range-parser-1.2.4" 77217 75393 sources."@types/responselike-1.0.0" ··· 77341 75517 sources."camel-case-4.1.2" 77342 75518 sources."camelcase-6.3.0" 77343 75519 sources."caniuse-api-3.0.0" 77344 - sources."caniuse-lite-1.0.30001534" 75520 + sources."caniuse-lite-1.0.30001538" 77345 75521 (sources."chalk-4.1.2" // { 77346 75522 dependencies = [ 77347 75523 sources."ansi-styles-4.3.0" ··· 77483 75659 sources."dot-case-3.0.4" 77484 75660 sources."duplexer3-0.1.5" 77485 75661 sources."ee-first-1.1.1" 77486 - sources."electron-to-chromium-1.4.523" 75662 + sources."electron-to-chromium-1.4.525" 77487 75663 sources."emoji-regex-8.0.0" 77488 75664 sources."emojis-list-3.0.0" 77489 75665 sources."encodeurl-1.0.2" ··· 77631 75807 sources."find-cache-dir-3.3.2" 77632 75808 sources."find-up-5.0.0" 77633 75809 sources."find-yarn-workspace-root-2.0.0" 77634 - sources."follow-redirects-1.15.2" 75810 + sources."follow-redirects-1.15.3" 77635 75811 sources."fontfaceobserver-2.3.0" 77636 75812 sources."form-data-2.5.1" 77637 75813 sources."forwarded-0.2.0" ··· 77760 75936 ]; 77761 75937 }) 77762 75938 sources."jimp-compact-0.16.1" 77763 - sources."joi-17.10.1" 75939 + sources."joi-17.10.2" 77764 75940 sources."join-component-1.1.0" 77765 75941 sources."js-tokens-4.0.0" 77766 75942 (sources."js-yaml-3.14.1" // { ··· 77987 76163 ]; 77988 76164 }) 77989 76165 sources."pngjs-3.4.0" 77990 - sources."postcss-8.4.29" 76166 + sources."postcss-8.4.30" 77991 76167 sources."postcss-calc-8.2.4" 77992 76168 sources."postcss-colormin-5.3.1" 77993 76169 sources."postcss-convert-values-5.1.3" ··· 78082 76258 }) 78083 76259 sources."requires-port-1.0.0" 78084 76260 sources."reselect-4.1.8" 78085 - sources."resolve-1.22.5" 76261 + sources."resolve-1.22.6" 78086 76262 sources."resolve-alpn-1.2.1" 78087 76263 sources."resolve-from-5.0.0" 78088 76264 sources."responselike-2.0.1" ··· 78247 76423 ]; 78248 76424 }) 78249 76425 sources."terminal-link-2.1.1" 78250 - (sources."terser-5.19.4" // { 76426 + (sources."terser-5.20.0" // { 78251 76427 dependencies = [ 78252 76428 sources."commander-2.20.3" 78253 76429 sources."source-map-support-0.5.21" ··· 78290 76466 sources."universalify-2.0.0" 78291 76467 sources."unpipe-1.0.0" 78292 76468 sources."untildify-3.0.3" 78293 - sources."update-browserslist-db-1.0.11" 76469 + sources."update-browserslist-db-1.0.12" 78294 76470 sources."update-check-1.5.3" 78295 76471 sources."uri-js-4.4.1" 78296 76472 sources."url-join-4.0.0" ··· 78375 76551 }) 78376 76552 sources."wrappy-1.0.2" 78377 76553 sources."write-file-atomic-2.4.3" 78378 - sources."ws-8.14.1" 76554 + sources."ws-8.14.2" 78379 76555 (sources."xcode-3.0.1" // { 78380 76556 dependencies = [ 78381 76557 sources."uuid-7.0.3" ··· 78419 76595 dependencies = [ 78420 76596 sources."@ampproject/remapping-2.2.1" 78421 76597 sources."@babel/code-frame-7.22.13" 78422 - sources."@babel/compat-data-7.22.9" 78423 - sources."@babel/core-7.22.19" 76598 + sources."@babel/compat-data-7.22.20" 76599 + sources."@babel/core-7.22.20" 78424 76600 sources."@babel/generator-7.22.15" 78425 76601 sources."@babel/helper-annotate-as-pure-7.22.5" 78426 76602 sources."@babel/helper-compilation-targets-7.22.15" 78427 - sources."@babel/helper-environment-visitor-7.22.5" 76603 + sources."@babel/helper-environment-visitor-7.22.20" 78428 76604 sources."@babel/helper-function-name-7.22.5" 78429 76605 sources."@babel/helper-hoist-variables-7.22.5" 78430 76606 sources."@babel/helper-module-imports-7.22.15" 78431 - sources."@babel/helper-module-transforms-7.22.19" 76607 + sources."@babel/helper-module-transforms-7.22.20" 78432 76608 sources."@babel/helper-plugin-utils-7.22.5" 78433 76609 sources."@babel/helper-simple-access-7.22.5" 78434 76610 sources."@babel/helper-split-export-declaration-7.22.6" 78435 76611 sources."@babel/helper-string-parser-7.22.5" 78436 - sources."@babel/helper-validator-identifier-7.22.19" 76612 + sources."@babel/helper-validator-identifier-7.22.20" 78437 76613 sources."@babel/helper-validator-option-7.22.15" 78438 76614 sources."@babel/helpers-7.22.15" 78439 - sources."@babel/highlight-7.22.13" 76615 + sources."@babel/highlight-7.22.20" 78440 76616 sources."@babel/parser-7.22.16" 78441 76617 sources."@babel/plugin-proposal-object-rest-spread-7.20.7" 78442 76618 sources."@babel/plugin-syntax-jsx-7.22.5" ··· 78445 76621 sources."@babel/plugin-transform-parameters-7.22.15" 78446 76622 sources."@babel/plugin-transform-react-jsx-7.22.15" 78447 76623 sources."@babel/template-7.22.15" 78448 - sources."@babel/traverse-7.22.19" 76624 + sources."@babel/traverse-7.22.20" 78449 76625 sources."@babel/types-7.22.19" 78450 76626 sources."@jridgewell/gen-mapping-0.3.3" 78451 76627 sources."@jridgewell/resolve-uri-3.1.1" ··· 78453 76629 sources."@jridgewell/sourcemap-codec-1.4.15" 78454 76630 sources."@jridgewell/trace-mapping-0.3.19" 78455 76631 sources."@types/minimist-1.2.2" 78456 - sources."@types/node-20.6.1" 76632 + sources."@types/node-20.6.3" 78457 76633 sources."@types/normalize-package-data-2.4.1" 78458 - sources."@types/prop-types-15.7.5" 78459 - sources."@types/react-18.2.21" 76634 + sources."@types/prop-types-15.7.6" 76635 + sources."@types/react-18.2.22" 78460 76636 sources."@types/scheduler-0.16.3" 78461 76637 sources."@types/yauzl-2.10.0" 78462 76638 sources."@types/yoga-layout-1.9.2" ··· 78484 76660 sources."callsites-3.1.0" 78485 76661 sources."camelcase-5.3.1" 78486 76662 sources."camelcase-keys-6.2.2" 78487 - sources."caniuse-lite-1.0.30001534" 76663 + sources."caniuse-lite-1.0.30001538" 78488 76664 sources."chalk-2.4.2" 78489 76665 sources."chownr-1.1.4" 78490 76666 sources."ci-info-2.0.0" ··· 78510 76686 }) 78511 76687 sources."delay-5.0.0" 78512 76688 sources."devtools-protocol-0.0.981744" 78513 - sources."electron-to-chromium-1.4.523" 76689 + sources."electron-to-chromium-1.4.525" 78514 76690 sources."emoji-regex-8.0.0" 78515 76691 sources."encoding-0.1.13" 78516 76692 sources."end-of-stream-1.4.4" ··· 78634 76810 }) 78635 76811 sources."readable-stream-3.6.2" 78636 76812 sources."redent-3.0.0" 78637 - sources."resolve-1.22.5" 76813 + sources."resolve-1.22.6" 78638 76814 sources."resolve-from-3.0.0" 78639 76815 sources."restore-cursor-3.1.0" 78640 76816 sources."rimraf-3.0.2" ··· 78654 76830 sources."spdx-correct-3.2.0" 78655 76831 sources."spdx-exceptions-2.3.0" 78656 76832 sources."spdx-expression-parse-3.0.1" 78657 - sources."spdx-license-ids-3.0.13" 76833 + sources."spdx-license-ids-3.0.15" 78658 76834 (sources."stack-utils-2.0.6" // { 78659 76835 dependencies = [ 78660 76836 sources."escape-string-regexp-2.0.0" ··· 78674 76850 sources."trim-newlines-3.0.1" 78675 76851 sources."type-fest-0.12.0" 78676 76852 sources."unbzip2-stream-1.4.3" 78677 - sources."update-browserslist-db-1.0.11" 76853 + sources."update-browserslist-db-1.0.12" 78678 76854 sources."utf-8-validate-5.0.10" 78679 76855 sources."util-deprecate-1.0.2" 78680 76856 sources."validate-npm-package-license-3.0.4" ··· 78750 76926 sources."@oclif/plugin-plugins-2.4.7" 78751 76927 sources."@oclif/screen-1.0.4" 78752 76928 sources."@sindresorhus/is-0.7.0" 78753 - sources."@swc/core-1.3.85" 78754 - sources."@swc/core-darwin-arm64-1.3.85" 78755 - sources."@swc/core-darwin-x64-1.3.85" 78756 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 78757 - sources."@swc/core-linux-arm64-gnu-1.3.85" 78758 - sources."@swc/core-linux-arm64-musl-1.3.85" 78759 - sources."@swc/core-linux-x64-gnu-1.3.85" 78760 - sources."@swc/core-linux-x64-musl-1.3.85" 78761 - sources."@swc/core-win32-arm64-msvc-1.3.85" 78762 - sources."@swc/core-win32-ia32-msvc-1.3.85" 78763 - sources."@swc/core-win32-x64-msvc-1.3.85" 76929 + sources."@swc/core-1.3.86" 76930 + sources."@swc/core-darwin-arm64-1.3.86" 76931 + sources."@swc/core-darwin-x64-1.3.86" 76932 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 76933 + sources."@swc/core-linux-arm64-gnu-1.3.86" 76934 + sources."@swc/core-linux-arm64-musl-1.3.86" 76935 + sources."@swc/core-linux-x64-gnu-1.3.86" 76936 + sources."@swc/core-linux-x64-musl-1.3.86" 76937 + sources."@swc/core-win32-arm64-msvc-1.3.86" 76938 + sources."@swc/core-win32-ia32-msvc-1.3.86" 76939 + sources."@swc/core-win32-x64-msvc-1.3.86" 78764 76940 sources."@swc/helpers-0.5.2" 78765 - sources."@swc/types-0.1.4" 78766 - sources."@swc/wasm-1.3.85" 76941 + sources."@swc/types-0.1.5" 76942 + sources."@swc/wasm-1.3.86" 78767 76943 sources."@tsconfig/node10-1.0.9" 78768 76944 sources."@tsconfig/node12-1.0.11" 78769 76945 sources."@tsconfig/node14-1.0.3" 78770 76946 sources."@tsconfig/node16-1.0.4" 78771 76947 sources."@types/cli-progress-3.11.2" 78772 - sources."@types/node-20.6.1" 76948 + sources."@types/node-20.6.3" 78773 76949 sources."acorn-8.10.0" 78774 76950 sources."acorn-walk-8.2.0" 78775 76951 sources."ajv-6.12.6" ··· 79244 77420 sources."supports-color-5.5.0" 79245 77421 ]; 79246 77422 }) 79247 - sources."@babel/helper-validator-identifier-7.22.19" 79248 - (sources."@babel/highlight-7.22.13" // { 77423 + sources."@babel/helper-validator-identifier-7.22.20" 77424 + (sources."@babel/highlight-7.22.20" // { 79249 77425 dependencies = [ 79250 77426 sources."ansi-styles-3.2.1" 79251 77427 sources."chalk-2.4.2" ··· 79416 77592 sources."spdx-correct-3.2.0" 79417 77593 sources."spdx-exceptions-2.3.0" 79418 77594 sources."spdx-expression-parse-3.0.1" 79419 - sources."spdx-license-ids-3.0.13" 77595 + sources."spdx-license-ids-3.0.15" 79420 77596 sources."string-width-5.1.2" 79421 77597 sources."string_decoder-1.3.0" 79422 77598 sources."strip-ansi-7.1.0" ··· 79474 77650 sources."@scure/bip39-1.2.1" 79475 77651 sources."@types/atob-2.1.2" 79476 77652 sources."@types/inquirer-6.5.0" 79477 - sources."@types/node-20.6.1" 77653 + sources."@types/node-20.6.3" 79478 77654 sources."@types/through-0.0.31" 79479 77655 sources."ajv-6.12.6" 79480 77656 sources."ansi-escapes-4.3.2" ··· 80105 78281 fx = nodeEnv.buildNodePackage { 80106 78282 name = "fx"; 80107 78283 packageName = "fx"; 80108 - version = "28.0.1"; 78284 + version = "30.0.3"; 80109 78285 src = fetchurl { 80110 - url = "https://registry.npmjs.org/fx/-/fx-28.0.1.tgz"; 80111 - sha512 = "U/ELI6liBxdquKMe7oA6sOYgutVjSmaQTpZ3MDhJs/9l4lK6ewATv1SQCR8LRDz+n2sKTjcNEnj1djtuZ9OgoA=="; 78286 + url = "https://registry.npmjs.org/fx/-/fx-30.0.3.tgz"; 78287 + sha512 = "Myrh7IMmroZukhtlwCLKan0SvyK/aIPnewXgw4ftXtciACoDr40Jp9DR0CesEsjSX86gqxmWTk05V3Qv0hR67A=="; 80112 78288 }; 80113 78289 buildInputs = globalBuildInputs; 80114 78290 meta = { ··· 80137 78313 }) 80138 78314 sources."@types/bn.js-5.1.2" 80139 78315 sources."@types/lru-cache-5.1.1" 80140 - sources."@types/node-20.6.1" 78316 + sources."@types/node-20.6.3" 80141 78317 sources."@types/seedrandom-3.0.1" 80142 78318 sources."abstract-level-1.0.3" 80143 78319 (sources."abstract-leveldown-7.2.0" // { ··· 80189 78365 sources."chalk-2.4.2" 80190 78366 ]; 80191 78367 }) 80192 - sources."@babel/compat-data-7.22.9" 80193 - (sources."@babel/core-7.22.19" // { 78368 + sources."@babel/compat-data-7.22.20" 78369 + (sources."@babel/core-7.22.20" // { 80194 78370 dependencies = [ 80195 78371 sources."semver-6.3.1" 80196 78372 ]; ··· 80207 78383 sources."semver-6.3.1" 80208 78384 ]; 80209 78385 }) 80210 - sources."@babel/helper-environment-visitor-7.22.5" 78386 + sources."@babel/helper-environment-visitor-7.22.20" 80211 78387 sources."@babel/helper-function-name-7.22.5" 80212 78388 sources."@babel/helper-hoist-variables-7.22.5" 80213 78389 sources."@babel/helper-member-expression-to-functions-7.22.15" 80214 78390 sources."@babel/helper-module-imports-7.22.15" 80215 - sources."@babel/helper-module-transforms-7.22.19" 78391 + sources."@babel/helper-module-transforms-7.22.20" 80216 78392 sources."@babel/helper-optimise-call-expression-7.22.5" 80217 78393 sources."@babel/helper-plugin-utils-7.22.5" 80218 - sources."@babel/helper-replace-supers-7.22.9" 78394 + sources."@babel/helper-replace-supers-7.22.20" 80219 78395 sources."@babel/helper-simple-access-7.22.5" 80220 78396 sources."@babel/helper-skip-transparent-expression-wrappers-7.22.5" 80221 78397 sources."@babel/helper-split-export-declaration-7.22.6" 80222 78398 sources."@babel/helper-string-parser-7.22.5" 80223 - sources."@babel/helper-validator-identifier-7.22.19" 78399 + sources."@babel/helper-validator-identifier-7.22.20" 80224 78400 sources."@babel/helper-validator-option-7.22.15" 80225 78401 sources."@babel/helpers-7.22.15" 80226 - (sources."@babel/highlight-7.22.13" // { 78402 + (sources."@babel/highlight-7.22.20" // { 80227 78403 dependencies = [ 80228 78404 sources."chalk-2.4.2" 80229 78405 ]; ··· 80236 78412 sources."@babel/preset-typescript-7.22.15" 80237 78413 sources."@babel/runtime-7.22.15" 80238 78414 sources."@babel/template-7.22.15" 80239 - sources."@babel/traverse-7.22.19" 78415 + sources."@babel/traverse-7.22.20" 80240 78416 sources."@babel/types-7.22.19" 80241 78417 sources."@hapi/hoek-9.3.0" 80242 78418 sources."@hapi/topo-5.1.0" ··· 80261 78437 sources."@turist/time-0.0.2" 80262 78438 sources."@types/cacheable-request-6.0.3" 80263 78439 sources."@types/common-tags-1.8.2" 80264 - sources."@types/http-cache-semantics-4.0.1" 78440 + sources."@types/http-cache-semantics-4.0.2" 80265 78441 sources."@types/keyv-3.1.4" 80266 - sources."@types/node-20.6.1" 78442 + sources."@types/node-20.6.3" 80267 78443 sources."@types/node-fetch-2.6.5" 80268 78444 sources."@types/responselike-1.0.0" 80269 78445 sources."@types/yoga-layout-1.9.2" ··· 80290 78466 ]; 80291 78467 }) 80292 78468 sources."camelcase-6.3.0" 80293 - sources."caniuse-lite-1.0.30001534" 78469 + sources."caniuse-lite-1.0.30001538" 80294 78470 (sources."chalk-4.1.2" // { 80295 78471 dependencies = [ 80296 78472 sources."ansi-styles-4.3.0" ··· 80351 78527 sources."domhandler-4.3.1" 80352 78528 sources."domutils-2.8.0" 80353 78529 sources."dot-prop-5.3.0" 80354 - sources."electron-to-chromium-1.4.523" 78530 + sources."electron-to-chromium-1.4.525" 80355 78531 sources."emoji-regex-8.0.0" 80356 78532 sources."encoding-0.1.13" 80357 78533 sources."end-of-stream-1.4.4" ··· 80427 78603 sources."is-valid-path-0.1.1" 80428 78604 sources."is-wsl-2.2.0" 80429 78605 sources."isexe-2.0.0" 80430 - sources."joi-17.10.1" 78606 + sources."joi-17.10.2" 80431 78607 sources."js-tokens-4.0.0" 80432 78608 sources."jsesc-2.5.2" 80433 78609 sources."json-buffer-3.0.1" ··· 80546 78722 sources."typedarray-to-buffer-3.1.5" 80547 78723 sources."unique-string-2.0.0" 80548 78724 sources."universalify-2.0.0" 80549 - sources."update-browserslist-db-1.0.11" 78725 + sources."update-browserslist-db-1.0.12" 80550 78726 sources."util-deprecate-1.0.2" 80551 78727 sources."utila-0.4.0" 80552 78728 sources."weak-lru-cache-1.2.2" ··· 80611 78787 sources."supports-color-5.5.0" 80612 78788 ]; 80613 78789 }) 80614 - sources."@babel/helper-validator-identifier-7.22.19" 80615 - (sources."@babel/highlight-7.22.13" // { 78790 + sources."@babel/helper-validator-identifier-7.22.20" 78791 + (sources."@babel/highlight-7.22.20" // { 80616 78792 dependencies = [ 80617 78793 sources."ansi-styles-3.2.1" 80618 78794 sources."chalk-2.4.2" ··· 81202 79378 sources."remove-trailing-separator-1.1.0" 81203 79379 sources."replace-ext-1.0.1" 81204 79380 sources."request-light-0.7.0" 81205 - sources."resolve-1.22.5" 79381 + sources."resolve-1.22.6" 81206 79382 sources."restore-cursor-3.1.0" 81207 79383 sources."retry-0.12.0" 81208 79384 sources."reusify-1.0.4" ··· 81233 79409 sources."spdx-correct-3.2.0" 81234 79410 sources."spdx-exceptions-2.3.0" 81235 79411 sources."spdx-expression-parse-3.0.1" 81236 - sources."spdx-license-ids-3.0.13" 79412 + sources."spdx-license-ids-3.0.15" 81237 79413 sources."sprintf-js-1.0.3" 81238 79414 (sources."ssri-10.0.5" // { 81239 79415 dependencies = [ ··· 81576 79752 sources."@sindresorhus/is-5.6.0" 81577 79753 sources."@szmarczak/http-timer-5.0.1" 81578 79754 sources."@tootallnate/quickjs-emscripten-0.23.0" 81579 - sources."@types/http-cache-semantics-4.0.1" 79755 + sources."@types/http-cache-semantics-4.0.2" 81580 79756 sources."agent-base-7.1.0" 81581 79757 sources."ajv-8.12.0" 81582 79758 sources."ajv-formats-2.1.1" ··· 82088 80264 graphql = nodeEnv.buildNodePackage { 82089 80265 name = "graphql"; 82090 80266 packageName = "graphql"; 82091 - version = "16.8.0"; 80267 + version = "16.8.1"; 82092 80268 src = fetchurl { 82093 - url = "https://registry.npmjs.org/graphql/-/graphql-16.8.0.tgz"; 82094 - sha512 = "0oKGaR+y3qcS5mCu1vb7KG+a89vjn06C7Ihq/dDl3jA+A8B3TKomvi3CiEcVLJQGalbu8F52LxkOym7U5sSfbg=="; 80269 + url = "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz"; 80270 + sha512 = "59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw=="; 82095 80271 }; 82096 80272 buildInputs = globalBuildInputs; 82097 80273 meta = { ··· 82123 80299 sources."supports-color-5.5.0" 82124 80300 ]; 82125 80301 }) 82126 - sources."@babel/helper-validator-identifier-7.22.19" 82127 - (sources."@babel/highlight-7.22.13" // { 80302 + sources."@babel/helper-validator-identifier-7.22.20" 80303 + (sources."@babel/highlight-7.22.20" // { 82128 80304 dependencies = [ 82129 80305 sources."ansi-styles-3.2.1" 82130 80306 sources."chalk-2.4.2" ··· 82231 80407 sources."@nodelib/fs.walk-1.2.8" 82232 80408 sources."@sindresorhus/is-0.14.0" 82233 80409 sources."@szmarczak/http-timer-1.1.2" 82234 - sources."@types/node-20.6.1" 80410 + sources."@types/node-20.6.3" 82235 80411 sources."@types/parse-json-4.0.0" 82236 80412 sources."@types/websocket-1.0.2" 82237 80413 sources."abort-controller-3.0.0" ··· 82707 80883 graphql-language-service-cli = nodeEnv.buildNodePackage { 82708 80884 name = "graphql-language-service-cli"; 82709 80885 packageName = "graphql-language-service-cli"; 82710 - version = "3.3.25"; 80886 + version = "3.3.26"; 82711 80887 src = fetchurl { 82712 - url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.3.25.tgz"; 82713 - sha512 = "Zqqs0m+qrUySidmuSCcB/p/qkbPe7PQAv0p8Ar20xo/Oz0YWfloXVVvlgSsJ/g386+p7NlC+FMImrOyG0HGM5w=="; 80888 + url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.3.26.tgz"; 80889 + sha512 = "eZnjrtFDXaTfWuuGCKk3RNp8oeh9uZxJCuWEt/MT/BHzqzYZduMsml22dhVdM+eW94qu1VQFbseDb/OjyHno1A=="; 82714 80890 }; 82715 80891 dependencies = [ 82716 80892 sources."@ampproject/remapping-2.2.1" 82717 80893 sources."@ardatan/sync-fetch-0.0.1" 82718 80894 sources."@babel/code-frame-7.22.13" 82719 - sources."@babel/compat-data-7.22.9" 82720 - sources."@babel/core-7.22.19" 80895 + sources."@babel/compat-data-7.22.20" 80896 + sources."@babel/core-7.22.20" 82721 80897 sources."@babel/generator-7.22.15" 82722 80898 sources."@babel/helper-compilation-targets-7.22.15" 82723 - sources."@babel/helper-environment-visitor-7.22.5" 80899 + sources."@babel/helper-environment-visitor-7.22.20" 82724 80900 sources."@babel/helper-function-name-7.22.5" 82725 80901 sources."@babel/helper-hoist-variables-7.22.5" 82726 80902 sources."@babel/helper-module-imports-7.22.15" 82727 - sources."@babel/helper-module-transforms-7.22.19" 80903 + sources."@babel/helper-module-transforms-7.22.20" 82728 80904 sources."@babel/helper-plugin-utils-7.22.5" 82729 80905 sources."@babel/helper-simple-access-7.22.5" 82730 80906 sources."@babel/helper-split-export-declaration-7.22.6" 82731 80907 sources."@babel/helper-string-parser-7.22.5" 82732 - sources."@babel/helper-validator-identifier-7.22.19" 80908 + sources."@babel/helper-validator-identifier-7.22.20" 82733 80909 sources."@babel/helper-validator-option-7.22.15" 82734 80910 sources."@babel/helpers-7.22.15" 82735 - sources."@babel/highlight-7.22.13" 80911 + sources."@babel/highlight-7.22.20" 82736 80912 sources."@babel/parser-7.22.16" 82737 80913 sources."@babel/plugin-syntax-import-assertions-7.22.5" 82738 80914 sources."@babel/polyfill-7.12.1" 82739 80915 sources."@babel/template-7.22.15" 82740 - sources."@babel/traverse-7.22.19" 80916 + sources."@babel/traverse-7.22.20" 82741 80917 sources."@babel/types-7.22.19" 82742 80918 sources."@graphql-tools/batch-execute-9.0.2" 82743 80919 sources."@graphql-tools/code-file-loader-8.0.1" ··· 82745 80921 sources."@graphql-tools/executor-1.2.0" 82746 80922 sources."@graphql-tools/executor-graphql-ws-1.1.0" 82747 80923 sources."@graphql-tools/executor-http-1.0.2" 82748 - sources."@graphql-tools/executor-legacy-ws-1.0.3" 80924 + (sources."@graphql-tools/executor-legacy-ws-1.0.3" // { 80925 + dependencies = [ 80926 + sources."ws-8.14.1" 80927 + ]; 80928 + }) 82749 80929 sources."@graphql-tools/graphql-file-loader-8.0.0" 82750 80930 sources."@graphql-tools/graphql-tag-pluck-8.0.1" 82751 80931 sources."@graphql-tools/import-7.0.0" ··· 82768 80948 sources."@nodelib/fs.walk-1.2.8" 82769 80949 sources."@repeaterjs/repeater-3.0.4" 82770 80950 sources."@types/estree-1.0.1" 82771 - sources."@types/node-20.6.1" 80951 + sources."@types/node-20.6.3" 82772 80952 sources."@types/ws-8.5.5" 82773 80953 sources."@types/yargs-16.0.5" 82774 80954 sources."@types/yargs-parser-21.0.0" ··· 82795 80975 sources."bufferutil-4.0.7" 82796 80976 sources."busboy-1.6.0" 82797 80977 sources."callsites-3.1.0" 82798 - sources."caniuse-lite-1.0.30001534" 80978 + sources."caniuse-lite-1.0.30001538" 82799 80979 sources."chalk-2.4.2" 82800 80980 sources."cliui-7.0.4" 82801 80981 (sources."code-red-1.0.4" // { ··· 82816 80996 sources."dedent-js-1.0.1" 82817 80997 sources."dequal-2.0.3" 82818 80998 sources."dir-glob-3.0.1" 82819 - sources."dotenv-8.2.0" 80999 + sources."dotenv-10.0.0" 82820 81000 sources."dset-3.1.2" 82821 - sources."electron-to-chromium-1.4.523" 81001 + sources."electron-to-chromium-1.4.525" 82822 81002 sources."emoji-regex-8.0.0" 82823 81003 sources."encoding-0.1.13" 82824 81004 sources."error-ex-1.3.2" ··· 82839 81019 sources."glob-parent-5.1.2" 82840 81020 sources."globals-11.12.0" 82841 81021 sources."globby-11.1.0" 82842 - sources."graphql-16.8.0" 81022 + sources."graphql-16.8.1" 82843 81023 (sources."graphql-config-5.0.2" // { 82844 81024 dependencies = [ 82845 81025 sources."minimatch-4.2.3" 82846 81026 ]; 82847 81027 }) 82848 - sources."graphql-language-service-5.1.7" 82849 - sources."graphql-language-service-server-2.11.3" 81028 + sources."graphql-language-service-5.2.0" 81029 + sources."graphql-language-service-server-2.11.4" 82850 81030 sources."graphql-ws-5.14.0" 82851 81031 sources."has-flag-3.0.0" 82852 81032 sources."iconv-lite-0.6.3" ··· 82905 81085 }) 82906 81086 sources."picocolors-1.0.0" 82907 81087 sources."picomatch-2.3.1" 82908 - sources."postcss-8.4.29" 81088 + sources."postcss-8.4.30" 82909 81089 sources."punycode-1.4.1" 82910 81090 sources."queue-microtask-1.2.3" 82911 81091 sources."regenerator-runtime-0.13.11" ··· 82923 81103 sources."string-width-4.2.3" 82924 81104 sources."strip-ansi-6.0.1" 82925 81105 sources."supports-color-5.5.0" 82926 - (sources."svelte-4.2.0" // { 81106 + (sources."svelte-4.2.1" // { 82927 81107 dependencies = [ 82928 81108 sources."estree-walker-3.0.3" 82929 81109 ]; 82930 81110 }) 82931 - sources."svelte2tsx-0.6.21" 81111 + sources."svelte2tsx-0.6.22" 82932 81112 sources."to-fast-properties-2.0.0" 82933 81113 sources."to-regex-range-5.0.1" 82934 81114 sources."tr46-0.0.3" 82935 81115 sources."tslib-2.6.2" 82936 81116 sources."typescript-5.2.2" 82937 81117 sources."unixify-1.0.0" 82938 - sources."update-browserslist-db-1.0.11" 81118 + sources."update-browserslist-db-1.0.12" 82939 81119 sources."urlpattern-polyfill-9.0.0" 82940 81120 sources."utf-8-validate-6.0.3" 82941 81121 sources."value-or-promise-1.0.12" 82942 - sources."vscode-jsonrpc-8.1.0" 81122 + sources."vscode-jsonrpc-8.2.0" 82943 81123 sources."vscode-languageserver-8.1.0" 82944 - sources."vscode-languageserver-protocol-3.17.3" 82945 - sources."vscode-languageserver-types-3.17.3" 81124 + (sources."vscode-languageserver-protocol-3.17.3" // { 81125 + dependencies = [ 81126 + sources."vscode-jsonrpc-8.1.0" 81127 + sources."vscode-languageserver-types-3.17.3" 81128 + ]; 81129 + }) 81130 + sources."vscode-languageserver-types-3.17.4" 82946 81131 sources."vscode-uri-3.0.7" 82947 81132 sources."webidl-conversions-3.0.1" 82948 81133 sources."whatwg-url-5.0.0" ··· 82954 81139 ]; 82955 81140 }) 82956 81141 sources."wrappy-1.0.2" 82957 - sources."ws-8.14.1" 81142 + sources."ws-8.14.2" 82958 81143 sources."y18n-5.0.8" 82959 81144 sources."yallist-3.1.1" 82960 81145 sources."yargs-16.2.0" ··· 83031 81216 sources."path-root-regex-0.1.2" 83032 81217 sources."picomatch-2.3.1" 83033 81218 sources."rechoir-0.7.1" 83034 - sources."resolve-1.22.5" 81219 + sources."resolve-1.22.6" 83035 81220 sources."resolve-dir-1.0.1" 83036 81221 sources."supports-preserve-symlinks-flag-1.0.0" 83037 81222 sources."to-regex-range-5.0.1" ··· 83491 81676 sources."replace-homedir-1.0.0" 83492 81677 sources."require-directory-2.1.1" 83493 81678 sources."require-main-filename-1.0.1" 83494 - sources."resolve-1.22.5" 81679 + sources."resolve-1.22.6" 83495 81680 sources."resolve-dir-1.0.1" 83496 81681 sources."resolve-options-1.1.0" 83497 81682 sources."resolve-url-0.2.1" ··· 83541 81726 sources."spdx-correct-3.2.0" 83542 81727 sources."spdx-exceptions-2.3.0" 83543 81728 sources."spdx-expression-parse-3.0.1" 83544 - sources."spdx-license-ids-3.0.13" 81729 + sources."spdx-license-ids-3.0.15" 83545 81730 sources."split-string-3.1.0" 83546 81731 sources."stack-trace-0.0.10" 83547 81732 (sources."static-extend-0.1.2" // { ··· 83901 82086 sources."replace-homedir-1.0.0" 83902 82087 sources."require-directory-2.1.1" 83903 82088 sources."require-main-filename-1.0.1" 83904 - sources."resolve-1.22.5" 82089 + sources."resolve-1.22.6" 83905 82090 sources."resolve-dir-1.0.1" 83906 82091 sources."resolve-url-0.2.1" 83907 82092 sources."ret-0.1.15" ··· 83943 82128 sources."spdx-correct-3.2.0" 83944 82129 sources."spdx-exceptions-2.3.0" 83945 82130 sources."spdx-expression-parse-3.0.1" 83946 - sources."spdx-license-ids-3.0.13" 82131 + sources."spdx-license-ids-3.0.15" 83947 82132 sources."split-string-3.1.0" 83948 82133 sources."stack-trace-0.0.10" 83949 82134 (sources."static-extend-0.1.2" // { ··· 84042 82227 sources."corser-2.0.1" 84043 82228 sources."debug-3.2.7" 84044 82229 sources."eventemitter3-4.0.7" 84045 - sources."follow-redirects-1.15.2" 82230 + sources."follow-redirects-1.15.3" 84046 82231 sources."function-bind-1.1.1" 84047 82232 sources."get-intrinsic-1.2.1" 84048 82233 sources."has-1.0.3" ··· 84520 82705 sources."@protobufjs/pool-1.1.0" 84521 82706 sources."@protobufjs/utf8-1.1.0" 84522 82707 sources."@selderee/plugin-htmlparser2-0.11.0" 84523 - sources."@types/node-20.6.1" 82708 + sources."@types/node-20.6.3" 84524 82709 sources."@types/node-fetch-2.6.5" 84525 82710 sources."@types/tunnel-0.0.3" 84526 82711 sources."@vscode/l10n-0.0.16" ··· 84746 82931 sources."verror-1.10.0" 84747 82932 (sources."vscode-css-languageservice-6.2.7" // { 84748 82933 dependencies = [ 84749 - sources."vscode-languageserver-types-3.17.3" 82934 + sources."vscode-languageserver-types-3.17.4" 84750 82935 ]; 84751 82936 }) 84752 82937 (sources."vscode-html-languageservice-5.1.0" // { 84753 82938 dependencies = [ 84754 - sources."vscode-languageserver-types-3.17.3" 82939 + sources."vscode-languageserver-types-3.17.4" 84755 82940 ]; 84756 82941 }) 84757 - sources."vscode-jsonrpc-8.1.0" 82942 + sources."vscode-jsonrpc-8.2.0" 84758 82943 (sources."vscode-languageserver-8.0.2" // { 84759 82944 dependencies = [ 84760 82945 sources."vscode-jsonrpc-8.0.2" 84761 82946 sources."vscode-languageserver-protocol-3.17.2" 84762 82947 ]; 84763 82948 }) 84764 - (sources."vscode-languageserver-protocol-3.17.3" // { 82949 + (sources."vscode-languageserver-protocol-3.17.4" // { 84765 82950 dependencies = [ 84766 - sources."vscode-languageserver-types-3.17.3" 82951 + sources."vscode-languageserver-types-3.17.4" 84767 82952 ]; 84768 82953 }) 84769 82954 sources."vscode-languageserver-textdocument-1.0.10" ··· 84903 83088 sources."@aws-sdk/service-error-classification-3.296.0" 84904 83089 sources."@aws-sdk/shared-ini-file-loader-3.296.0" 84905 83090 sources."@aws-sdk/signature-v4-3.296.0" 84906 - (sources."@aws-sdk/signature-v4-crt-3.413.0" // { 83091 + (sources."@aws-sdk/signature-v4-crt-3.415.0" // { 84907 83092 dependencies = [ 84908 83093 sources."@aws-sdk/signature-v4-multi-region-3.413.0" 84909 83094 sources."@aws-sdk/types-3.413.0" ··· 84969 83154 sources."@mapbox/node-pre-gyp-1.0.11" 84970 83155 sources."@npmcli/fs-1.1.1" 84971 83156 sources."@npmcli/move-file-1.1.2" 84972 - sources."@smithy/eventstream-codec-2.0.8" 83157 + sources."@smithy/eventstream-codec-2.0.9" 84973 83158 sources."@smithy/is-array-buffer-2.0.0" 84974 - sources."@smithy/protocol-http-3.0.4" 84975 - sources."@smithy/querystring-parser-2.0.8" 84976 - sources."@smithy/signature-v4-2.0.8" 84977 - sources."@smithy/types-2.3.2" 83159 + sources."@smithy/protocol-http-3.0.5" 83160 + sources."@smithy/querystring-parser-2.0.9" 83161 + sources."@smithy/signature-v4-2.0.9" 83162 + sources."@smithy/types-2.3.3" 84978 83163 sources."@smithy/util-buffer-from-2.0.0" 84979 83164 sources."@smithy/util-hex-encoding-2.0.0" 84980 - sources."@smithy/util-middleware-2.0.1" 83165 + sources."@smithy/util-middleware-2.0.2" 84981 83166 sources."@smithy/util-uri-escape-2.0.0" 84982 83167 sources."@smithy/util-utf8-2.0.0" 84983 83168 sources."@tootallnate/once-2.0.0" 84984 83169 sources."@types/nanoid-3.0.0" 84985 - sources."@types/node-20.6.1" 83170 + sources."@types/node-20.6.3" 84986 83171 sources."@types/ws-8.5.5" 84987 83172 sources."abab-2.0.6" 84988 83173 sources."abbrev-1.1.1" ··· 85824 84009 ]; 85825 84010 }) 85826 84011 sources."wrappy-1.0.2" 85827 - sources."ws-8.14.1" 84012 + sources."ws-8.14.2" 85828 84013 sources."xml-name-validator-4.0.0" 85829 84014 sources."xml2js-0.4.23" 85830 84015 sources."xmlbuilder-11.0.1" ··· 86300 84485 sources."finalhandler-1.2.0" 86301 84486 sources."find-up-5.0.0" 86302 84487 sources."flat-cache-3.1.0" 86303 - sources."flatted-3.2.7" 84488 + sources."flatted-3.2.9" 86304 84489 sources."for-each-0.3.3" 86305 84490 sources."forwarded-0.2.0" 86306 84491 sources."fresh-0.5.2" ··· 86314 84499 sources."get-symbol-description-1.0.0" 86315 84500 sources."glob-7.2.3" 86316 84501 sources."glob-parent-6.0.2" 86317 - sources."globals-13.21.0" 84502 + sources."globals-13.22.0" 86318 84503 sources."globalthis-1.0.3" 86319 84504 sources."gopd-1.0.1" 86320 84505 sources."graceful-fs-4.2.11" ··· 86461 84646 sources."regexp.prototype.flags-1.5.1" 86462 84647 sources."regexpp-3.2.0" 86463 84648 sources."require-directory-2.1.1" 86464 - sources."resolve-1.22.5" 84649 + sources."resolve-1.22.6" 86465 84650 sources."resolve-from-4.0.0" 86466 84651 sources."reusify-1.0.4" 86467 84652 sources."rimraf-3.0.2" ··· 87004 85189 }) 87005 85190 sources."require-directory-2.1.1" 87006 85191 sources."require-main-filename-1.0.1" 87007 - sources."resolve-1.22.5" 85192 + sources."resolve-1.22.6" 87008 85193 sources."resolve-url-0.2.1" 87009 85194 sources."ret-0.1.15" 87010 85195 sources."safe-buffer-5.1.2" ··· 87059 85244 sources."spdx-correct-3.2.0" 87060 85245 sources."spdx-exceptions-2.3.0" 87061 85246 sources."spdx-expression-parse-3.0.1" 87062 - sources."spdx-license-ids-3.0.13" 85247 + sources."spdx-license-ids-3.0.15" 87063 85248 sources."split-string-3.1.0" 87064 85249 sources."sshpk-1.17.0" 87065 85250 (sources."static-extend-0.1.2" // { ··· 87263 85448 }) 87264 85449 sources."fill-range-7.0.1" 87265 85450 sources."find-up-3.0.0" 87266 - sources."follow-redirects-1.15.2" 85451 + sources."follow-redirects-1.15.3" 87267 85452 sources."fs-extra-8.1.0" 87268 85453 sources."function-bind-1.1.1" 87269 85454 sources."get-intrinsic-1.2.1" ··· 87408 85593 sources."@ampproject/remapping-2.2.1" 87409 85594 sources."@babel/cli-7.22.15" 87410 85595 sources."@babel/code-frame-7.22.13" 87411 - sources."@babel/compat-data-7.22.9" 87412 - (sources."@babel/core-7.22.19" // { 85596 + sources."@babel/compat-data-7.22.20" 85597 + (sources."@babel/core-7.22.20" // { 87413 85598 dependencies = [ 87414 85599 sources."semver-6.3.1" 87415 85600 ]; ··· 87421 85606 sources."semver-6.3.1" 87422 85607 ]; 87423 85608 }) 87424 - sources."@babel/helper-environment-visitor-7.22.5" 85609 + sources."@babel/helper-environment-visitor-7.22.20" 87425 85610 sources."@babel/helper-function-name-7.22.5" 87426 85611 sources."@babel/helper-hoist-variables-7.22.5" 87427 85612 sources."@babel/helper-module-imports-7.22.15" 87428 - sources."@babel/helper-module-transforms-7.22.19" 85613 + sources."@babel/helper-module-transforms-7.22.20" 87429 85614 sources."@babel/helper-plugin-utils-7.22.5" 87430 85615 sources."@babel/helper-simple-access-7.22.5" 87431 85616 sources."@babel/helper-split-export-declaration-7.22.6" 87432 85617 sources."@babel/helper-string-parser-7.22.5" 87433 - sources."@babel/helper-validator-identifier-7.22.19" 85618 + sources."@babel/helper-validator-identifier-7.22.20" 87434 85619 sources."@babel/helper-validator-option-7.22.15" 87435 85620 sources."@babel/helpers-7.22.15" 87436 - sources."@babel/highlight-7.22.13" 85621 + sources."@babel/highlight-7.22.20" 87437 85622 sources."@babel/node-7.22.19" 87438 85623 sources."@babel/parser-7.22.16" 87439 85624 sources."@babel/plugin-syntax-jsx-7.22.5" 87440 85625 sources."@babel/plugin-transform-react-jsx-7.22.15" 87441 85626 sources."@babel/register-7.22.15" 87442 85627 sources."@babel/template-7.22.15" 87443 - sources."@babel/traverse-7.22.19" 85628 + sources."@babel/traverse-7.22.20" 87444 85629 sources."@babel/types-7.22.19" 87445 85630 sources."@jridgewell/gen-mapping-0.3.3" 87446 85631 sources."@jridgewell/resolve-uri-3.1.1" ··· 87547 85732 sources."bufferutil-4.0.7" 87548 85733 sources."bytes-3.1.2" 87549 85734 sources."call-bind-1.0.2" 87550 - sources."caniuse-lite-1.0.30001534" 85735 + sources."caniuse-lite-1.0.30001538" 87551 85736 sources."canvas-2.11.2" 87552 85737 sources."chalk-2.4.2" 87553 85738 sources."chardet-1.6.0" ··· 87607 85792 }) 87608 85793 sources."dotenv-8.6.0" 87609 85794 sources."ee-first-1.1.1" 87610 - sources."electron-to-chromium-1.4.523" 85795 + sources."electron-to-chromium-1.4.525" 87611 85796 sources."emoji-regex-8.0.0" 87612 85797 sources."encodeurl-1.0.2" 87613 85798 sources."encoding-0.1.13" ··· 87646 85831 }) 87647 85832 sources."find-cache-dir-2.1.0" 87648 85833 sources."find-up-3.0.0" 87649 - sources."follow-redirects-1.15.2" 85834 + sources."follow-redirects-1.15.3" 87650 85835 sources."for-each-0.3.3" 87651 85836 sources."form-data-3.0.1" 87652 85837 sources."forwarded-0.2.0" ··· 87825 86010 sources."object.getownpropertydescriptors-2.1.7" 87826 86011 sources."on-finished-2.4.1" 87827 86012 sources."once-1.4.0" 87828 - sources."openpgp-5.10.1" 86013 + sources."openpgp-5.10.2" 87829 86014 sources."p-is-promise-3.0.0" 87830 86015 sources."p-limit-2.3.0" 87831 86016 sources."p-locate-3.0.0" ··· 87901 86086 sources."regexp.prototype.flags-1.5.1" 87902 86087 sources."require-directory-2.1.1" 87903 86088 sources."requires-port-1.0.0" 87904 - (sources."resolve-1.22.5" // { 86089 + (sources."resolve-1.22.6" // { 87905 86090 dependencies = [ 87906 86091 sources."is-core-module-2.13.0" 87907 86092 ]; ··· 87991 86176 sources."unbox-primitive-1.0.2" 87992 86177 sources."universalify-0.2.0" 87993 86178 sources."unpipe-1.0.0" 87994 - sources."update-browserslist-db-1.0.11" 86179 + sources."update-browserslist-db-1.0.12" 87995 86180 sources."url-parse-1.5.10" 87996 86181 sources."utf-8-validate-6.0.3" 87997 86182 sources."util-deprecate-1.0.2" ··· 88024 86209 ]; 88025 86210 }) 88026 86211 sources."wrappy-1.0.2" 88027 - sources."ws-8.14.1" 86212 + sources."ws-8.14.2" 88028 86213 sources."xml-name-validator-3.0.0" 88029 86214 sources."xmlchars-2.2.0" 88030 86215 sources."y18n-5.0.8" ··· 88125 86310 sources."supports-color-5.5.0" 88126 86311 ]; 88127 86312 }) 88128 - sources."@babel/helper-validator-identifier-7.22.19" 88129 - (sources."@babel/highlight-7.22.13" // { 86313 + sources."@babel/helper-validator-identifier-7.22.20" 86314 + (sources."@babel/highlight-7.22.20" // { 88130 86315 dependencies = [ 88131 86316 sources."ansi-styles-3.2.1" 88132 86317 sources."chalk-2.4.2" ··· 88199 86384 sources."@swc-node/core-1.10.5" 88200 86385 sources."@swc-node/register-1.6.7" 88201 86386 sources."@swc-node/sourcemap-support-0.3.0" 88202 - sources."@swc/core-1.3.85" 88203 - sources."@swc/core-darwin-arm64-1.3.85" 88204 - sources."@swc/core-darwin-x64-1.3.85" 88205 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 88206 - sources."@swc/core-linux-arm64-gnu-1.3.85" 88207 - sources."@swc/core-linux-arm64-musl-1.3.85" 88208 - sources."@swc/core-linux-x64-gnu-1.3.85" 88209 - sources."@swc/core-linux-x64-musl-1.3.85" 88210 - sources."@swc/core-win32-arm64-msvc-1.3.85" 88211 - sources."@swc/core-win32-ia32-msvc-1.3.85" 88212 - sources."@swc/core-win32-x64-msvc-1.3.85" 86387 + sources."@swc/core-1.3.86" 86388 + sources."@swc/core-darwin-arm64-1.3.86" 86389 + sources."@swc/core-darwin-x64-1.3.86" 86390 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 86391 + sources."@swc/core-linux-arm64-gnu-1.3.86" 86392 + sources."@swc/core-linux-arm64-musl-1.3.86" 86393 + sources."@swc/core-linux-x64-gnu-1.3.86" 86394 + sources."@swc/core-linux-x64-musl-1.3.86" 86395 + sources."@swc/core-win32-arm64-msvc-1.3.86" 86396 + sources."@swc/core-win32-ia32-msvc-1.3.86" 86397 + sources."@swc/core-win32-x64-msvc-1.3.86" 88213 86398 sources."@swc/helpers-0.5.2" 88214 - sources."@swc/types-0.1.4" 86399 + sources."@swc/types-0.1.5" 88215 86400 sources."@tootallnate/once-2.0.0" 88216 86401 sources."@tufjs/canonical-json-1.0.0" 88217 86402 (sources."@tufjs/models-1.0.4" // { ··· 88404 86589 sources."fill-range-7.0.1" 88405 86590 sources."find-up-4.1.0" 88406 86591 sources."flat-5.0.2" 88407 - sources."follow-redirects-1.15.2" 86592 + sources."follow-redirects-1.15.3" 88408 86593 (sources."foreground-child-3.1.1" // { 88409 86594 dependencies = [ 88410 86595 sources."signal-exit-4.1.0" ··· 88837 87022 sources."readable-stream-3.6.2" 88838 87023 sources."redent-3.0.0" 88839 87024 sources."require-directory-2.1.1" 88840 - sources."resolve-1.22.5" 87025 + sources."resolve-1.22.6" 88841 87026 sources."resolve-cwd-3.0.0" 88842 87027 sources."resolve-from-5.0.0" 88843 87028 sources."restore-cursor-3.1.0" ··· 88877 87062 sources."spdx-correct-3.2.0" 88878 87063 sources."spdx-exceptions-2.3.0" 88879 87064 sources."spdx-expression-parse-3.0.1" 88880 - sources."spdx-license-ids-3.0.13" 87065 + sources."spdx-license-ids-3.0.15" 88881 87066 sources."split-1.0.1" 88882 87067 sources."split2-3.2.2" 88883 87068 sources."sprintf-js-1.0.3" ··· 89948 88133 sources."debug-4.3.2" 89949 88134 sources."emoji-regex-8.0.0" 89950 88135 sources."escalade-3.1.1" 89951 - sources."follow-redirects-1.15.2" 88136 + sources."follow-redirects-1.15.3" 89952 88137 sources."get-caller-file-2.0.5" 89953 88138 sources."is-fullwidth-code-point-3.0.0" 89954 88139 sources."ms-2.1.2" ··· 90001 88186 sources."@types/commander-2.12.2" 90002 88187 sources."@types/diff-3.5.5" 90003 88188 sources."@types/get-stdin-5.0.1" 90004 - sources."@types/node-20.6.1" 88189 + sources."@types/node-20.6.3" 90005 88190 sources."commander-2.20.3" 90006 88191 sources."diff-3.5.0" 90007 88192 sources."get-stdin-5.0.1" ··· 90350 88535 sources."replace-ext-0.0.1" 90351 88536 sources."request-2.88.0" 90352 88537 sources."require-uncached-1.0.3" 90353 - sources."resolve-1.22.5" 88538 + sources."resolve-1.22.6" 90354 88539 sources."resolve-from-1.0.1" 90355 88540 sources."restore-cursor-1.0.1" 90356 88541 sources."rimraf-2.6.3" ··· 91074 89259 sources."@node-red/util-3.1.0" 91075 89260 sources."@sindresorhus/is-5.6.0" 91076 89261 sources."@szmarczak/http-timer-5.0.1" 91077 - sources."@types/http-cache-semantics-4.0.1" 89262 + sources."@types/http-cache-semantics-4.0.2" 91078 89263 sources."abbrev-1.1.1" 91079 89264 sources."accepts-1.3.8" 91080 89265 sources."acorn-8.8.2" ··· 91196 89381 sources."express-session-1.17.3" 91197 89382 sources."fast-deep-equal-3.1.3" 91198 89383 sources."finalhandler-1.2.0" 91199 - sources."follow-redirects-1.15.2" 89384 + sources."follow-redirects-1.15.3" 91200 89385 sources."form-data-4.0.0" 91201 89386 sources."form-data-encoder-2.1.4" 91202 89387 sources."forwarded-0.2.0" ··· 91597 89782 ]; 91598 89783 }) 91599 89784 sources."request-2.88.2" 91600 - sources."resolve-1.22.5" 89785 + sources."resolve-1.22.6" 91601 89786 sources."retry-0.10.1" 91602 89787 sources."rimraf-2.2.8" 91603 89788 sources."safe-buffer-5.2.1" ··· 91610 89795 sources."spdx-correct-3.2.0" 91611 89796 sources."spdx-exceptions-2.3.0" 91612 89797 sources."spdx-expression-parse-3.0.1" 91613 - sources."spdx-license-ids-3.0.13" 89798 + sources."spdx-license-ids-3.0.15" 91614 89799 sources."sshpk-1.17.0" 91615 89800 sources."ssri-5.3.0" 91616 89801 sources."string-width-1.0.2" ··· 91730 89915 sources."escape-string-regexp-1.0.5" 91731 89916 ]; 91732 89917 }) 91733 - sources."@babel/helper-validator-identifier-7.22.19" 91734 - (sources."@babel/highlight-7.22.13" // { 89918 + sources."@babel/helper-validator-identifier-7.22.20" 89919 + (sources."@babel/highlight-7.22.20" // { 91735 89920 dependencies = [ 91736 89921 sources."chalk-2.4.2" 91737 89922 sources."escape-string-regexp-1.0.5" ··· 91761 89946 sources."@sindresorhus/is-4.6.0" 91762 89947 sources."@szmarczak/http-timer-4.0.6" 91763 89948 sources."@types/cacheable-request-6.0.3" 91764 - sources."@types/http-cache-semantics-4.0.1" 89949 + sources."@types/http-cache-semantics-4.0.2" 91765 89950 sources."@types/keyv-3.1.4" 91766 - sources."@types/node-20.6.1" 89951 + sources."@types/node-20.6.3" 91767 89952 sources."@types/normalize-package-data-2.4.1" 91768 89953 sources."@types/responselike-1.0.0" 91769 89954 sources."aggregate-error-4.0.1" 91770 - sources."all-package-names-2.0.737" 89955 + sources."all-package-names-2.0.741" 91771 89956 sources."ansi-align-3.0.1" 91772 89957 sources."ansi-escapes-4.3.2" 91773 89958 sources."ansi-regex-5.0.1" ··· 92260 90445 sources."spdx-correct-3.2.0" 92261 90446 sources."spdx-exceptions-2.3.0" 92262 90447 sources."spdx-expression-parse-3.0.1" 92263 - sources."spdx-license-ids-3.0.13" 90448 + sources."spdx-license-ids-3.0.15" 92264 90449 sources."string-width-4.2.3" 92265 90450 sources."string_decoder-1.3.0" 92266 90451 sources."strip-ansi-6.0.1" ··· 92480 90665 sources."@types/es-aggregate-error-1.0.2" 92481 90666 sources."@types/estree-0.0.39" 92482 90667 sources."@types/json-schema-7.0.13" 92483 - sources."@types/node-20.6.1" 90668 + sources."@types/node-20.6.3" 92484 90669 sources."@types/sarif-2.1.4" 92485 90670 sources."@types/urijs-1.19.20" 92486 90671 sources."abort-controller-3.0.0" ··· 92725 90910 sources."require-directory-2.1.1" 92726 90911 sources."require-from-string-2.0.2" 92727 90912 sources."reserved-0.1.2" 92728 - sources."resolve-1.22.5" 90913 + sources."resolve-1.22.6" 92729 90914 sources."reusify-1.0.4" 92730 90915 sources."rollup-2.79.1" 92731 90916 sources."run-parallel-1.2.0" ··· 92817 91002 sources."chalk-2.4.2" 92818 91003 ]; 92819 91004 }) 92820 - sources."@babel/helper-validator-identifier-7.22.19" 92821 - (sources."@babel/highlight-7.22.13" // { 91005 + sources."@babel/helper-validator-identifier-7.22.20" 91006 + (sources."@babel/highlight-7.22.20" // { 92822 91007 dependencies = [ 92823 91008 sources."chalk-2.4.2" 92824 91009 ]; ··· 92829 91014 sources."@jridgewell/source-map-0.3.5" 92830 91015 sources."@jridgewell/sourcemap-codec-1.4.15" 92831 91016 sources."@jridgewell/trace-mapping-0.3.19" 92832 - sources."@lezer/common-0.15.12" 92833 - sources."@lezer/lr-0.15.8" 91017 + sources."@lezer/common-1.1.0" 91018 + sources."@lezer/lr-1.3.11" 92834 91019 sources."@lmdb/lmdb-darwin-arm64-2.7.11" 92835 91020 sources."@lmdb/lmdb-darwin-x64-2.7.11" 92836 91021 sources."@lmdb/lmdb-linux-arm-2.7.11" 92837 91022 sources."@lmdb/lmdb-linux-arm64-2.7.11" 92838 91023 sources."@lmdb/lmdb-linux-x64-2.7.11" 92839 91024 sources."@lmdb/lmdb-win32-x64-2.7.11" 92840 - sources."@mischnic/json-sourcemap-0.1.0" 91025 + sources."@mischnic/json-sourcemap-0.1.1" 92841 91026 sources."@msgpackr-extract/msgpackr-extract-darwin-arm64-3.0.2" 92842 91027 sources."@msgpackr-extract/msgpackr-extract-darwin-x64-3.0.2" 92843 91028 sources."@msgpackr-extract/msgpackr-extract-linux-arm-3.0.2" ··· 92925 91110 sources."@parcel/watcher-win32-ia32-2.3.0" 92926 91111 sources."@parcel/watcher-win32-x64-2.3.0" 92927 91112 sources."@parcel/workers-2.9.3" 92928 - sources."@swc/core-1.3.85" 92929 - sources."@swc/core-darwin-arm64-1.3.85" 92930 - sources."@swc/core-darwin-x64-1.3.85" 92931 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 92932 - sources."@swc/core-linux-arm64-gnu-1.3.85" 92933 - sources."@swc/core-linux-arm64-musl-1.3.85" 92934 - sources."@swc/core-linux-x64-gnu-1.3.85" 92935 - sources."@swc/core-linux-x64-musl-1.3.85" 92936 - sources."@swc/core-win32-arm64-msvc-1.3.85" 92937 - sources."@swc/core-win32-ia32-msvc-1.3.85" 92938 - sources."@swc/core-win32-x64-msvc-1.3.85" 91113 + sources."@swc/core-1.3.86" 91114 + sources."@swc/core-darwin-arm64-1.3.86" 91115 + sources."@swc/core-darwin-x64-1.3.86" 91116 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 91117 + sources."@swc/core-linux-arm64-gnu-1.3.86" 91118 + sources."@swc/core-linux-arm64-musl-1.3.86" 91119 + sources."@swc/core-linux-x64-gnu-1.3.86" 91120 + sources."@swc/core-linux-x64-musl-1.3.86" 91121 + sources."@swc/core-win32-arm64-msvc-1.3.86" 91122 + sources."@swc/core-win32-ia32-msvc-1.3.86" 91123 + sources."@swc/core-win32-x64-msvc-1.3.86" 92939 91124 sources."@swc/helpers-0.5.2" 92940 - sources."@swc/types-0.1.4" 91125 + sources."@swc/types-0.1.5" 92941 91126 sources."@trysound/sax-0.2.0" 92942 91127 sources."abab-2.0.6" 92943 91128 sources."abortcontroller-polyfill-1.7.5" ··· 92969 91154 sources."buffer-from-1.1.2" 92970 91155 sources."callsites-3.1.0" 92971 91156 sources."caniuse-api-3.0.0" 92972 - sources."caniuse-lite-1.0.30001534" 91157 + sources."caniuse-lite-1.0.30001538" 92973 91158 sources."caseless-0.12.0" 92974 91159 (sources."chalk-4.1.2" // { 92975 91160 dependencies = [ ··· 93019 91204 sources."dotenv-7.0.0" 93020 91205 sources."dotenv-expand-5.1.0" 93021 91206 sources."ecc-jsbn-0.1.2" 93022 - sources."electron-to-chromium-1.4.523" 91207 + sources."electron-to-chromium-1.4.525" 93023 91208 sources."entities-4.5.0" 93024 91209 sources."error-ex-1.3.2" 93025 91210 sources."escalade-3.1.1" ··· 93040 91225 sources."get-port-4.2.0" 93041 91226 sources."getpass-0.1.7" 93042 91227 sources."glob-8.1.0" 93043 - sources."globals-13.21.0" 91228 + sources."globals-13.22.0" 93044 91229 sources."har-schema-2.0.0" 93045 91230 sources."har-validator-5.1.5" 93046 91231 sources."has-flag-3.0.0" ··· 93093 91278 sources."json5-2.2.3" 93094 91279 sources."jsprim-1.4.2" 93095 91280 sources."levn-0.3.0" 93096 - sources."lightningcss-1.21.8" 93097 - sources."lightningcss-darwin-arm64-1.21.8" 93098 - sources."lightningcss-darwin-x64-1.21.8" 93099 - sources."lightningcss-freebsd-x64-1.21.8" 93100 - sources."lightningcss-linux-arm-gnueabihf-1.21.8" 93101 - sources."lightningcss-linux-arm64-gnu-1.21.8" 93102 - sources."lightningcss-linux-arm64-musl-1.21.8" 93103 - sources."lightningcss-linux-x64-gnu-1.21.8" 93104 - sources."lightningcss-linux-x64-musl-1.21.8" 93105 - sources."lightningcss-win32-x64-msvc-1.21.8" 91281 + sources."lightningcss-1.22.0" 91282 + sources."lightningcss-darwin-arm64-1.22.0" 91283 + sources."lightningcss-darwin-x64-1.22.0" 91284 + sources."lightningcss-freebsd-x64-1.22.0" 91285 + sources."lightningcss-linux-arm-gnueabihf-1.22.0" 91286 + sources."lightningcss-linux-arm64-gnu-1.22.0" 91287 + sources."lightningcss-linux-arm64-musl-1.22.0" 91288 + sources."lightningcss-linux-x64-gnu-1.22.0" 91289 + sources."lightningcss-linux-x64-musl-1.22.0" 91290 + sources."lightningcss-win32-x64-msvc-1.22.0" 93106 91291 sources."lilconfig-2.1.0" 93107 91292 sources."lines-and-columns-1.2.4" 93108 91293 sources."lmdb-2.7.11" ··· 93142 91327 sources."picocolors-1.0.0" 93143 91328 sources."picomatch-2.3.1" 93144 91329 sources."pn-1.1.0" 93145 - sources."postcss-8.4.29" 91330 + sources."postcss-8.4.30" 93146 91331 sources."postcss-calc-9.0.1" 93147 91332 sources."postcss-colormin-6.0.0" 93148 91333 sources."postcss-convert-values-6.0.0" ··· 93223 91408 }) 93224 91409 sources."symbol-tree-3.2.4" 93225 91410 sources."term-size-2.2.1" 93226 - (sources."terser-5.19.4" // { 91411 + (sources."terser-5.20.0" // { 93227 91412 dependencies = [ 93228 91413 sources."commander-2.20.3" 93229 91414 ]; ··· 93250 91435 ]; 93251 91436 }) 93252 91437 sources."uniq-1.0.1" 93253 - sources."update-browserslist-db-1.0.11" 91438 + sources."update-browserslist-db-1.0.12" 93254 91439 sources."uri-js-4.4.1" 93255 91440 sources."util-deprecate-1.0.2" 93256 91441 sources."utility-types-3.10.0" ··· 93886 92071 sources."redent-1.0.0" 93887 92072 sources."regexp.prototype.flags-1.5.1" 93888 92073 sources."repeating-2.0.1" 93889 - sources."resolve-1.22.5" 92074 + sources."resolve-1.22.6" 93890 92075 sources."restore-cursor-2.0.0" 93891 92076 sources."reverse-http-1.3.0" 93892 92077 sources."rimraf-2.7.1" ··· 93915 92100 sources."spdx-correct-3.2.0" 93916 92101 sources."spdx-exceptions-2.3.0" 93917 92102 sources."spdx-expression-parse-3.0.1" 93918 - sources."spdx-license-ids-3.0.13" 92103 + sources."spdx-license-ids-3.0.15" 93919 92104 sources."speedometer-0.1.4" 93920 92105 sources."stream-buffers-2.2.0" 93921 92106 sources."string-width-1.0.2" ··· 94382 92567 dependencies = [ 94383 92568 sources."@babel/generator-7.18.2" 94384 92569 sources."@babel/helper-string-parser-7.22.5" 94385 - sources."@babel/helper-validator-identifier-7.22.19" 92570 + sources."@babel/helper-validator-identifier-7.22.20" 94386 92571 sources."@babel/parser-7.18.4" 94387 92572 sources."@babel/types-7.19.0" 94388 92573 sources."@jridgewell/gen-mapping-0.3.3" ··· 94485 92670 sources."rc-1.2.8" 94486 92671 sources."readable-stream-2.3.8" 94487 92672 sources."require-directory-2.1.1" 94488 - (sources."resolve-1.22.5" // { 92673 + (sources."resolve-1.22.6" // { 94489 92674 dependencies = [ 94490 92675 sources."is-core-module-2.13.0" 94491 92676 ]; ··· 94619 92804 sources."croner-4.1.97" 94620 92805 sources."culvert-0.1.2" 94621 92806 sources."data-uri-to-buffer-5.0.1" 94622 - sources."dayjs-1.11.9" 92807 + sources."dayjs-1.11.10" 94623 92808 sources."debug-4.3.4" 94624 92809 sources."degenerator-5.0.1" 94625 92810 sources."emitter-listener-1.1.2" ··· 94633 92818 sources."fast-json-patch-3.1.1" 94634 92819 sources."fclone-1.0.11" 94635 92820 sources."fill-range-7.0.1" 94636 - sources."follow-redirects-1.15.2" 92821 + sources."follow-redirects-1.15.3" 94637 92822 sources."fs-extra-8.1.0" 94638 92823 sources."fs.realpath-1.0.0" 94639 92824 sources."fsevents-2.3.3" ··· 94706 92891 sources."read-1.0.7" 94707 92892 sources."readdirp-3.6.0" 94708 92893 sources."require-in-the-middle-5.2.0" 94709 - sources."resolve-1.22.5" 92894 + sources."resolve-1.22.6" 94710 92895 sources."run-series-1.1.9" 94711 92896 sources."safe-buffer-5.2.1" 94712 92897 sources."safer-buffer-2.1.2" ··· 94730 92915 sources."sprintf-js-1.1.2" 94731 92916 sources."supports-color-7.2.0" 94732 92917 sources."supports-preserve-symlinks-flag-1.0.0" 94733 - sources."systeminformation-5.21.5" 92918 + sources."systeminformation-5.21.8" 94734 92919 sources."to-regex-range-5.0.1" 94735 92920 sources."tslib-2.6.2" 94736 92921 sources."tv4-1.3.0" ··· 94761 92946 pnpm = nodeEnv.buildNodePackage { 94762 92947 name = "pnpm"; 94763 92948 packageName = "pnpm"; 94764 - version = "8.7.5"; 92949 + version = "8.7.6"; 94765 92950 src = fetchurl { 94766 - url = "https://registry.npmjs.org/pnpm/-/pnpm-8.7.5.tgz"; 94767 - sha512 = "WI8WZb89Uiq5x2jdz4PcQMG9ovTnXcDCEpoEckPYIT2zD8/+dEhVozPlT7bu3WkBgE0uTARtgyIKAFt+IpW2cQ=="; 92951 + url = "https://registry.npmjs.org/pnpm/-/pnpm-8.7.6.tgz"; 92952 + sha512 = "ZJ/LpDy+IGYpCPYo2INfnw2MopUOTHQ3HcnhbiSqVLtV5rTmsrbFHe4i35ITLpcgvIWptWbzUTZ8efDYXWpFew=="; 94768 92953 }; 94769 92954 buildInputs = globalBuildInputs; 94770 92955 meta = { ··· 94807 92992 postcss = nodeEnv.buildNodePackage { 94808 92993 name = "postcss"; 94809 92994 packageName = "postcss"; 94810 - version = "8.4.29"; 92995 + version = "8.4.30"; 94811 92996 src = fetchurl { 94812 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz"; 94813 - sha512 = "cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw=="; 92997 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz"; 92998 + sha512 = "7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g=="; 94814 92999 }; 94815 93000 dependencies = [ 94816 93001 sources."nanoid-3.3.6" ··· 94843 93028 sources."@nodelib/fs.scandir-2.1.5" 94844 93029 sources."@nodelib/fs.stat-2.0.5" 94845 93030 sources."@nodelib/fs.walk-1.2.8" 94846 - sources."@swc/core-1.3.85" 94847 - sources."@swc/core-darwin-arm64-1.3.85" 94848 - sources."@swc/core-darwin-x64-1.3.85" 94849 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 94850 - sources."@swc/core-linux-arm64-gnu-1.3.85" 94851 - sources."@swc/core-linux-arm64-musl-1.3.85" 94852 - sources."@swc/core-linux-x64-gnu-1.3.85" 94853 - sources."@swc/core-linux-x64-musl-1.3.85" 94854 - sources."@swc/core-win32-arm64-msvc-1.3.85" 94855 - sources."@swc/core-win32-ia32-msvc-1.3.85" 94856 - sources."@swc/core-win32-x64-msvc-1.3.85" 93031 + sources."@swc/core-1.3.86" 93032 + sources."@swc/core-darwin-arm64-1.3.86" 93033 + sources."@swc/core-darwin-x64-1.3.86" 93034 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 93035 + sources."@swc/core-linux-arm64-gnu-1.3.86" 93036 + sources."@swc/core-linux-arm64-musl-1.3.86" 93037 + sources."@swc/core-linux-x64-gnu-1.3.86" 93038 + sources."@swc/core-linux-x64-musl-1.3.86" 93039 + sources."@swc/core-win32-arm64-msvc-1.3.86" 93040 + sources."@swc/core-win32-ia32-msvc-1.3.86" 93041 + sources."@swc/core-win32-x64-msvc-1.3.86" 94857 93042 sources."@swc/helpers-0.5.2" 94858 - sources."@swc/types-0.1.4" 94859 - sources."@swc/wasm-1.3.85" 93043 + sources."@swc/types-0.1.5" 93044 + sources."@swc/wasm-1.3.86" 94860 93045 sources."@tsconfig/node10-1.0.9" 94861 93046 sources."@tsconfig/node12-1.0.11" 94862 93047 sources."@tsconfig/node14-1.0.3" 94863 93048 sources."@tsconfig/node16-1.0.4" 94864 - sources."@types/node-20.6.1" 93049 + sources."@types/node-20.6.3" 94865 93050 sources."acorn-8.10.0" 94866 93051 sources."acorn-walk-8.2.0" 94867 93052 sources."ansi-regex-5.0.1" ··· 94911 93096 sources."picocolors-1.0.0" 94912 93097 sources."picomatch-2.3.1" 94913 93098 sources."pify-2.3.0" 94914 - sources."postcss-8.4.29" 93099 + sources."postcss-8.4.30" 94915 93100 sources."postcss-load-config-4.0.1" 94916 93101 sources."postcss-reporter-7.0.5" 94917 93102 sources."pretty-hrtime-1.0.3" ··· 95085 93270 dependencies = [ 95086 93271 sources."@ampproject/remapping-2.2.1" 95087 93272 sources."@babel/code-frame-7.22.13" 95088 - sources."@babel/compat-data-7.22.9" 95089 - sources."@babel/core-7.22.19" 93273 + sources."@babel/compat-data-7.22.20" 93274 + sources."@babel/core-7.22.20" 95090 93275 sources."@babel/generator-7.22.15" 95091 93276 sources."@babel/helper-compilation-targets-7.22.15" 95092 - sources."@babel/helper-environment-visitor-7.22.5" 93277 + sources."@babel/helper-environment-visitor-7.22.20" 95093 93278 sources."@babel/helper-function-name-7.22.5" 95094 93279 sources."@babel/helper-hoist-variables-7.22.5" 95095 93280 sources."@babel/helper-module-imports-7.22.15" 95096 - sources."@babel/helper-module-transforms-7.22.19" 93281 + sources."@babel/helper-module-transforms-7.22.20" 95097 93282 sources."@babel/helper-simple-access-7.22.5" 95098 93283 sources."@babel/helper-split-export-declaration-7.22.6" 95099 93284 sources."@babel/helper-string-parser-7.22.5" 95100 - sources."@babel/helper-validator-identifier-7.22.19" 93285 + sources."@babel/helper-validator-identifier-7.22.20" 95101 93286 sources."@babel/helper-validator-option-7.22.15" 95102 93287 sources."@babel/helpers-7.22.15" 95103 - sources."@babel/highlight-7.22.13" 93288 + sources."@babel/highlight-7.22.20" 95104 93289 sources."@babel/parser-7.22.16" 95105 93290 sources."@babel/template-7.22.15" 95106 - sources."@babel/traverse-7.22.19" 93291 + sources."@babel/traverse-7.22.20" 95107 93292 sources."@babel/types-7.22.19" 95108 93293 sources."@istanbuljs/load-nyc-config-1.1.0" 95109 93294 sources."@istanbuljs/schema-0.1.3" ··· 95125 93310 sources."browserslist-4.21.10" 95126 93311 sources."caching-transform-4.0.0" 95127 93312 sources."camelcase-5.3.1" 95128 - sources."caniuse-lite-1.0.30001534" 93313 + sources."caniuse-lite-1.0.30001538" 95129 93314 sources."chalk-2.4.2" 95130 93315 sources."clean-stack-2.2.0" 95131 93316 sources."cliui-6.0.0" ··· 95138 93323 sources."debug-4.3.4" 95139 93324 sources."decamelize-1.2.0" 95140 93325 sources."default-require-extensions-3.0.1" 95141 - sources."electron-to-chromium-1.4.523" 93326 + sources."electron-to-chromium-1.4.525" 95142 93327 sources."emoji-regex-8.0.0" 95143 93328 sources."es6-error-4.1.1" 95144 93329 sources."escalade-3.1.1" ··· 95231 93416 sources."to-fast-properties-2.0.0" 95232 93417 sources."type-fest-0.8.1" 95233 93418 sources."typedarray-to-buffer-3.1.5" 95234 - sources."update-browserslist-db-1.0.11" 93419 + sources."update-browserslist-db-1.0.12" 95235 93420 sources."uuid-8.3.2" 95236 93421 sources."vscode-jsonrpc-8.1.0" 95237 93422 sources."vscode-languageserver-8.1.0" ··· 95567 93752 sources."string_decoder-1.1.1" 95568 93753 ]; 95569 93754 }) 95570 - sources."resolve-1.22.5" 93755 + sources."resolve-1.22.6" 95571 93756 sources."rimraf-2.7.1" 95572 93757 sources."ripemd160-2.0.2" 95573 93758 sources."safe-buffer-5.2.1" ··· 95642 93827 sources."isexe-2.0.0" 95643 93828 sources."shell-quote-1.8.1" 95644 93829 sources."uuid-9.0.1" 95645 - sources."vscode-jsonrpc-8.1.0" 93830 + sources."vscode-jsonrpc-8.2.0" 95646 93831 sources."vscode-languageserver-8.1.0" 95647 - sources."vscode-languageserver-protocol-3.17.3" 93832 + (sources."vscode-languageserver-protocol-3.17.3" // { 93833 + dependencies = [ 93834 + sources."vscode-jsonrpc-8.1.0" 93835 + ]; 93836 + }) 95648 93837 sources."vscode-languageserver-textdocument-1.0.10" 95649 93838 sources."vscode-languageserver-types-3.17.3" 95650 93839 sources."vscode-uri-2.1.2" ··· 95756 93945 sources."esprima-4.0.1" 95757 93946 sources."estraverse-5.3.0" 95758 93947 sources."esutils-2.0.3" 95759 - sources."follow-redirects-1.15.2" 93948 + sources."follow-redirects-1.15.3" 95760 93949 sources."fs-extra-11.1.1" 95761 93950 sources."function-bind-1.1.1" 95762 93951 sources."get-intrinsic-1.2.1" ··· 95852 94041 pyright = nodeEnv.buildNodePackage { 95853 94042 name = "pyright"; 95854 94043 packageName = "pyright"; 95855 - version = "1.1.327"; 94044 + version = "1.1.328"; 95856 94045 src = fetchurl { 95857 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.327.tgz"; 95858 - sha512 = "2OgKe3//ortVz7thxoiaVSjACVtUn+hOIanrlLZCEkagdKMheLcftu6GmoLjgibV/E2SvZZ//izidxTB5vN8dQ=="; 94046 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.328.tgz"; 94047 + sha512 = "LiFIELh/6wVZuvgH+OGZ81ln0EpB8si2gt1M229qKnG4lbh93A0gyXLwu62XtTie8FDUcznmdCEiMal8jxJ7+w=="; 95859 94048 }; 95860 94049 dependencies = [ 95861 94050 sources."fsevents-2.3.3" ··· 96041 94230 sha512 = "QxvCtwgDBTeBC9V+niO9WPrnNKVEIa0osvdKhw2JkhOjFY0PK/vcFL5jrj7di6GurLIzdweXJgTWnQz2VljdQQ=="; 96042 94231 }; 96043 94232 dependencies = [ 96044 - sources."@types/prop-types-15.7.5" 96045 - sources."@types/react-18.2.21" 94233 + sources."@types/prop-types-15.7.6" 94234 + sources."@types/react-18.2.22" 96046 94235 sources."@types/scheduler-0.16.3" 96047 94236 sources."@types/yoga-layout-1.9.2" 96048 94237 sources."ansi-escapes-4.3.2" ··· 96137 94326 sources."read-pkg-3.0.0" 96138 94327 sources."read-pkg-up-3.0.0" 96139 94328 sources."redent-2.0.0" 96140 - sources."resolve-1.22.5" 94329 + sources."resolve-1.22.6" 96141 94330 sources."restore-cursor-3.1.0" 96142 94331 sources."scheduler-0.18.0" 96143 94332 sources."semver-5.7.2" ··· 96146 94335 sources."spdx-correct-3.2.0" 96147 94336 sources."spdx-exceptions-2.3.0" 96148 94337 sources."spdx-expression-parse-3.0.1" 96149 - sources."spdx-license-ids-3.0.13" 94338 + sources."spdx-license-ids-3.0.15" 96150 94339 (sources."string-length-3.1.0" // { 96151 94340 dependencies = [ 96152 94341 sources."ansi-regex-4.1.1" ··· 96448 94637 sources."fill-range-7.0.1" 96449 94638 sources."find-up-5.0.0" 96450 94639 sources."flat-cache-3.1.0" 96451 - sources."flatted-3.2.7" 96452 - sources."follow-redirects-1.15.2" 94640 + sources."flatted-3.2.9" 94641 + sources."follow-redirects-1.15.3" 96453 94642 sources."fs-constants-1.0.0" 96454 94643 sources."fs.realpath-1.0.0" 96455 94644 sources."function-bind-1.1.1" ··· 96463 94652 ]; 96464 94653 }) 96465 94654 sources."glob-parent-5.1.2" 96466 - sources."globals-13.21.0" 94655 + sources."globals-13.22.0" 96467 94656 sources."globby-11.1.0" 96468 94657 sources."graphemer-1.4.0" 96469 94658 sources."has-1.0.3" ··· 96845 95034 serverless = nodeEnv.buildNodePackage { 96846 95035 name = "serverless"; 96847 95036 packageName = "serverless"; 96848 - version = "3.34.0"; 95037 + version = "3.35.2"; 96849 95038 src = fetchurl { 96850 - url = "https://registry.npmjs.org/serverless/-/serverless-3.34.0.tgz"; 96851 - sha512 = "xtWAg78NGgboolP/GArdorx+UHyESJgriGSE6Qpgg9trTYsKMyd8YKaMIM3sidy89e45XZopRSpvnPYoQCJOBA=="; 95039 + url = "https://registry.npmjs.org/serverless/-/serverless-3.35.2.tgz"; 95040 + sha512 = "1RZ4eHl2OaGG2Rzw0l0ZD3byCk2JMCL9/+btzGQGQruuQWu9HwRZGJI7l4A2ghW3Mu6DVwLYLfceNpmEWBZoag=="; 96852 95041 }; 96853 95042 dependencies = [ 96854 95043 sources."2-thenable-1.0.0" 95044 + (sources."@aws-crypto/crc32-3.0.0" // { 95045 + dependencies = [ 95046 + sources."tslib-1.14.1" 95047 + ]; 95048 + }) 95049 + (sources."@aws-crypto/ie11-detection-3.0.0" // { 95050 + dependencies = [ 95051 + sources."tslib-1.14.1" 95052 + ]; 95053 + }) 95054 + (sources."@aws-crypto/sha256-browser-3.0.0" // { 95055 + dependencies = [ 95056 + sources."tslib-1.14.1" 95057 + ]; 95058 + }) 95059 + (sources."@aws-crypto/sha256-js-3.0.0" // { 95060 + dependencies = [ 95061 + sources."tslib-1.14.1" 95062 + ]; 95063 + }) 95064 + (sources."@aws-crypto/supports-web-crypto-3.0.0" // { 95065 + dependencies = [ 95066 + sources."tslib-1.14.1" 95067 + ]; 95068 + }) 95069 + (sources."@aws-crypto/util-3.0.0" // { 95070 + dependencies = [ 95071 + sources."tslib-1.14.1" 95072 + ]; 95073 + }) 95074 + (sources."@aws-sdk/client-cloudformation-3.414.0" // { 95075 + dependencies = [ 95076 + sources."uuid-8.3.2" 95077 + ]; 95078 + }) 95079 + sources."@aws-sdk/client-sso-3.414.0" 95080 + sources."@aws-sdk/client-sts-3.414.0" 95081 + sources."@aws-sdk/credential-provider-env-3.413.0" 95082 + sources."@aws-sdk/credential-provider-ini-3.414.0" 95083 + sources."@aws-sdk/credential-provider-node-3.414.0" 95084 + sources."@aws-sdk/credential-provider-process-3.413.0" 95085 + sources."@aws-sdk/credential-provider-sso-3.414.0" 95086 + sources."@aws-sdk/credential-provider-web-identity-3.413.0" 95087 + sources."@aws-sdk/middleware-host-header-3.413.0" 95088 + sources."@aws-sdk/middleware-logger-3.413.0" 95089 + sources."@aws-sdk/middleware-recursion-detection-3.413.0" 95090 + sources."@aws-sdk/middleware-sdk-sts-3.413.0" 95091 + sources."@aws-sdk/middleware-signing-3.413.0" 95092 + sources."@aws-sdk/middleware-user-agent-3.413.0" 95093 + sources."@aws-sdk/region-config-resolver-3.413.0" 95094 + sources."@aws-sdk/token-providers-3.413.0" 95095 + sources."@aws-sdk/types-3.413.0" 95096 + sources."@aws-sdk/util-endpoints-3.413.0" 95097 + sources."@aws-sdk/util-locate-window-3.310.0" 95098 + sources."@aws-sdk/util-user-agent-browser-3.413.0" 95099 + sources."@aws-sdk/util-user-agent-node-3.413.0" 95100 + sources."@aws-sdk/util-utf8-browser-3.259.0" 95101 + sources."@httptoolkit/websocket-stream-6.0.1" 96855 95102 sources."@kwsites/file-exists-1.1.1" 96856 95103 sources."@kwsites/promise-deferred-1.1.1" 96857 95104 sources."@nodelib/fs.scandir-2.1.5" 96858 95105 sources."@nodelib/fs.stat-2.0.5" 96859 95106 sources."@nodelib/fs.walk-1.2.8" 96860 - (sources."@serverless/dashboard-plugin-6.4.0" // { 95107 + (sources."@serverless/dashboard-plugin-7.0.3" // { 96861 95108 dependencies = [ 96862 95109 sources."child-process-ext-3.0.2" 96863 95110 sources."fs-extra-9.1.0" ··· 96868 95115 sources."@serverless/event-mocks-1.1.1" 96869 95116 (sources."@serverless/platform-client-4.4.0" // { 96870 95117 dependencies = [ 95118 + sources."axios-0.21.4" 96871 95119 sources."js-yaml-3.14.1" 96872 95120 ]; 96873 95121 }) 96874 - (sources."@serverless/utils-6.13.1" // { 95122 + (sources."@serverless/utils-6.15.0" // { 96875 95123 dependencies = [ 96876 95124 sources."jwt-decode-3.1.2" 96877 95125 sources."ms-2.1.3" ··· 96879 95127 ]; 96880 95128 }) 96881 95129 sources."@sindresorhus/is-4.6.0" 95130 + sources."@smithy/abort-controller-2.0.9" 95131 + sources."@smithy/config-resolver-2.0.10" 95132 + sources."@smithy/credential-provider-imds-2.0.12" 95133 + sources."@smithy/eventstream-codec-2.0.9" 95134 + sources."@smithy/fetch-http-handler-2.1.5" 95135 + sources."@smithy/hash-node-2.0.9" 95136 + sources."@smithy/invalid-dependency-2.0.9" 95137 + sources."@smithy/is-array-buffer-2.0.0" 95138 + sources."@smithy/middleware-content-length-2.0.11" 95139 + sources."@smithy/middleware-endpoint-2.0.9" 95140 + (sources."@smithy/middleware-retry-2.0.12" // { 95141 + dependencies = [ 95142 + sources."uuid-8.3.2" 95143 + ]; 95144 + }) 95145 + sources."@smithy/middleware-serde-2.0.9" 95146 + sources."@smithy/middleware-stack-2.0.2" 95147 + sources."@smithy/node-config-provider-2.0.12" 95148 + sources."@smithy/node-http-handler-2.1.5" 95149 + sources."@smithy/property-provider-2.0.10" 95150 + sources."@smithy/protocol-http-3.0.5" 95151 + sources."@smithy/querystring-builder-2.0.9" 95152 + sources."@smithy/querystring-parser-2.0.9" 95153 + sources."@smithy/service-error-classification-2.0.2" 95154 + sources."@smithy/shared-ini-file-loader-2.0.11" 95155 + sources."@smithy/signature-v4-2.0.9" 95156 + sources."@smithy/smithy-client-2.1.6" 95157 + sources."@smithy/types-2.3.3" 95158 + sources."@smithy/url-parser-2.0.9" 95159 + sources."@smithy/util-base64-2.0.0" 95160 + sources."@smithy/util-body-length-browser-2.0.0" 95161 + sources."@smithy/util-body-length-node-2.1.0" 95162 + sources."@smithy/util-buffer-from-2.0.0" 95163 + sources."@smithy/util-config-provider-2.0.0" 95164 + sources."@smithy/util-defaults-mode-browser-2.0.10" 95165 + sources."@smithy/util-defaults-mode-node-2.0.12" 95166 + sources."@smithy/util-hex-encoding-2.0.0" 95167 + sources."@smithy/util-middleware-2.0.2" 95168 + sources."@smithy/util-retry-2.0.2" 95169 + sources."@smithy/util-stream-2.0.12" 95170 + sources."@smithy/util-uri-escape-2.0.0" 95171 + sources."@smithy/util-utf8-2.0.0" 95172 + sources."@smithy/util-waiter-2.0.9" 96882 95173 sources."@szmarczak/http-timer-4.0.6" 96883 95174 sources."@tokenizer/token-0.3.0" 96884 95175 sources."@types/cacheable-request-6.0.3" 96885 - sources."@types/http-cache-semantics-4.0.1" 95176 + sources."@types/http-cache-semantics-4.0.2" 96886 95177 sources."@types/keyv-3.1.4" 96887 95178 sources."@types/lodash-4.14.198" 96888 - sources."@types/node-20.6.1" 95179 + sources."@types/node-20.6.3" 96889 95180 sources."@types/responselike-1.0.0" 95181 + sources."@types/ws-8.5.5" 96890 95182 sources."abort-controller-3.0.0" 96891 95183 sources."adm-zip-0.5.10" 96892 95184 sources."agent-base-6.0.2" ··· 96901 95193 sources."file-type-4.4.0" 96902 95194 ]; 96903 95195 }) 96904 - sources."archiver-5.3.2" 96905 - (sources."archiver-utils-2.1.0" // { 95196 + (sources."archiver-5.3.2" // { 96906 95197 dependencies = [ 96907 - sources."readable-stream-2.3.8" 96908 - sources."safe-buffer-5.1.2" 96909 - sources."string_decoder-1.1.1" 95198 + sources."readable-stream-3.6.2" 96910 95199 ]; 96911 95200 }) 95201 + sources."archiver-utils-2.1.0" 96912 95202 sources."argparse-1.0.10" 96913 95203 sources."array-union-2.1.0" 96914 95204 sources."asap-2.0.6" ··· 96916 95206 sources."asynckit-0.4.0" 96917 95207 sources."at-least-node-1.0.0" 96918 95208 sources."available-typed-arrays-1.0.5" 96919 - (sources."aws-sdk-2.1459.0" // { 95209 + sources."aws-crt-1.18.0" 95210 + (sources."aws-sdk-2.1462.0" // { 96920 95211 dependencies = [ 96921 95212 sources."buffer-4.9.2" 96922 95213 sources."ieee754-1.1.13" ··· 96924 95215 sources."uuid-8.0.0" 96925 95216 ]; 96926 95217 }) 96927 - sources."axios-0.21.4" 95218 + sources."axios-0.24.0" 96928 95219 sources."balanced-match-1.0.2" 96929 95220 sources."base64-js-1.5.1" 96930 95221 sources."binary-extensions-2.2.0" 96931 - sources."bl-4.1.0" 95222 + (sources."bl-4.1.0" // { 95223 + dependencies = [ 95224 + sources."buffer-5.7.1" 95225 + sources."readable-stream-3.6.2" 95226 + ]; 95227 + }) 96932 95228 sources."bluebird-3.7.2" 95229 + sources."bowser-2.11.0" 96933 95230 sources."brace-expansion-1.1.11" 96934 95231 sources."braces-3.0.2" 96935 - sources."buffer-5.7.1" 95232 + sources."buffer-6.0.3" 96936 95233 sources."buffer-alloc-1.2.0" 96937 95234 sources."buffer-alloc-unsafe-1.1.0" 96938 95235 sources."buffer-crc32-0.2.13" 96939 95236 sources."buffer-fill-1.0.0" 95237 + sources."buffer-from-1.1.2" 96940 95238 sources."bufferutil-4.0.7" 96941 95239 sources."builtin-modules-3.3.0" 96942 95240 sources."builtins-1.0.3" ··· 96984 95282 sources."color-name-1.1.4" 96985 95283 sources."combined-stream-1.0.8" 96986 95284 sources."commander-2.20.3" 95285 + sources."commist-1.1.0" 96987 95286 sources."component-emitter-1.3.0" 96988 - sources."compress-commons-4.1.2" 95287 + (sources."compress-commons-4.1.2" // { 95288 + dependencies = [ 95289 + sources."readable-stream-3.6.2" 95290 + ]; 95291 + }) 96989 95292 sources."concat-map-0.0.1" 95293 + (sources."concat-stream-2.0.0" // { 95294 + dependencies = [ 95295 + sources."readable-stream-3.6.2" 95296 + ]; 95297 + }) 96990 95298 sources."content-disposition-0.5.4" 96991 95299 sources."cookiejar-2.1.4" 96992 95300 sources."core-util-is-1.0.3" 96993 95301 sources."crc-32-1.2.2" 96994 - sources."crc32-stream-4.0.3" 95302 + (sources."crc32-stream-4.0.3" // { 95303 + dependencies = [ 95304 + sources."readable-stream-3.6.2" 95305 + ]; 95306 + }) 96995 95307 sources."cross-spawn-7.0.3" 95308 + sources."crypto-js-4.1.1" 96996 95309 (sources."d-1.0.1" // { 96997 95310 dependencies = [ 96998 95311 sources."type-1.2.0" 96999 95312 ]; 97000 95313 }) 97001 - sources."dayjs-1.11.9" 95314 + sources."dayjs-1.11.10" 97002 95315 sources."debug-4.3.4" 97003 95316 (sources."decompress-4.2.1" // { 97004 95317 dependencies = [ ··· 97018 95331 dependencies = [ 97019 95332 sources."bl-1.2.3" 97020 95333 sources."file-type-5.2.0" 97021 - sources."readable-stream-2.3.8" 97022 - sources."safe-buffer-5.1.2" 97023 - sources."string_decoder-1.1.1" 97024 95334 sources."tar-stream-1.6.2" 97025 95335 ]; 97026 95336 }) ··· 97049 95359 sources."dir-glob-3.0.1" 97050 95360 sources."dotenv-16.3.1" 97051 95361 sources."dotenv-expand-10.0.0" 95362 + sources."duplexify-3.7.1" 97052 95363 sources."duration-0.2.2" 97053 95364 sources."emoji-regex-8.0.0" 97054 95365 (sources."encoding-0.1.13" // { ··· 97076 95387 sources."fast-deep-equal-3.1.3" 97077 95388 sources."fast-glob-3.3.1" 97078 95389 sources."fast-safe-stringify-2.1.1" 95390 + sources."fast-xml-parser-4.2.5" 97079 95391 sources."fastest-levenshtein-1.0.16" 97080 95392 sources."fastq-1.15.0" 97081 95393 sources."fd-slicer-1.1.0" ··· 97087 95399 sources."fill-range-7.0.1" 97088 95400 sources."find-requires-1.0.0" 97089 95401 sources."flat-5.0.2" 97090 - sources."follow-redirects-1.15.2" 95402 + sources."follow-redirects-1.15.3" 97091 95403 sources."for-each-0.3.3" 97092 95404 sources."form-data-4.0.0" 97093 95405 sources."formidable-2.1.2" ··· 97117 95429 sources."has-proto-1.0.1" 97118 95430 sources."has-symbols-1.0.3" 97119 95431 sources."has-tostringtag-1.0.0" 95432 + (sources."help-me-3.0.0" // { 95433 + dependencies = [ 95434 + sources."readable-stream-3.6.2" 95435 + ]; 95436 + }) 97120 95437 sources."hexoid-1.0.0" 97121 95438 sources."http-cache-semantics-4.1.1" 97122 95439 sources."http2-wrapper-1.0.3" ··· 97150 95467 sources."isexe-2.0.0" 97151 95468 sources."isomorphic-ws-4.0.1" 97152 95469 sources."jmespath-0.16.0" 95470 + sources."js-sdsl-4.3.0" 97153 95471 (sources."js-yaml-4.1.0" // { 97154 95472 dependencies = [ 97155 95473 sources."argparse-2.0.1" ··· 97174 95492 }) 97175 95493 sources."json-schema-traverse-1.0.0" 97176 95494 sources."jsonfile-6.1.0" 97177 - (sources."jszip-3.10.1" // { 97178 - dependencies = [ 97179 - sources."readable-stream-2.3.8" 97180 - sources."safe-buffer-5.1.2" 97181 - sources."string_decoder-1.1.1" 97182 - ]; 97183 - }) 95495 + sources."jszip-3.10.1" 97184 95496 sources."jwt-decode-2.2.0" 97185 95497 sources."keyv-4.5.3" 97186 - (sources."lazystream-1.0.1" // { 97187 - dependencies = [ 97188 - sources."readable-stream-2.3.8" 97189 - sources."safe-buffer-5.1.2" 97190 - sources."string_decoder-1.1.1" 97191 - ]; 97192 - }) 95498 + sources."lazystream-1.0.1" 95499 + sources."leven-2.1.0" 97193 95500 sources."lie-3.3.0" 97194 95501 sources."lodash-4.17.21" 97195 95502 sources."lodash.defaults-4.2.0" ··· 97215 95522 sources."mimic-fn-2.1.0" 97216 95523 sources."mimic-response-1.0.1" 97217 95524 sources."minimatch-3.1.2" 95525 + sources."minimist-1.2.8" 97218 95526 sources."minipass-5.0.0" 97219 95527 (sources."minizlib-2.1.2" // { 97220 95528 dependencies = [ ··· 97222 95530 ]; 97223 95531 }) 97224 95532 sources."mkdirp-1.0.4" 95533 + (sources."mqtt-4.3.7" // { 95534 + dependencies = [ 95535 + sources."duplexify-4.1.2" 95536 + sources."readable-stream-3.6.2" 95537 + ]; 95538 + }) 95539 + sources."mqtt-packet-6.10.0" 97225 95540 sources."ms-2.1.2" 97226 95541 sources."mute-stream-0.0.8" 97227 95542 sources."native-promise-only-0.8.1" ··· 97234 95549 sources."normalize-path-3.0.0" 97235 95550 sources."normalize-url-6.1.0" 97236 95551 sources."npm-registry-utilities-1.0.0" 95552 + sources."number-allocator-1.0.14" 97237 95553 sources."object-assign-4.1.1" 97238 95554 sources."object-hash-3.0.0" 97239 95555 sources."object-inspect-1.12.3" ··· 97258 95574 sources."pify-2.3.0" 97259 95575 sources."pinkie-2.0.4" 97260 95576 sources."pinkie-promise-2.0.1" 95577 + sources."process-0.11.10" 97261 95578 sources."process-nextick-args-2.0.1" 97262 95579 sources."process-utils-4.0.0" 97263 95580 sources."promise-queue-2.2.5" ··· 97267 95584 sources."querystring-0.2.1" 97268 95585 sources."queue-microtask-1.2.3" 97269 95586 sources."quick-lru-5.1.1" 97270 - sources."readable-stream-3.6.2" 97271 - sources."readable-web-to-node-stream-3.0.2" 95587 + (sources."readable-stream-2.3.8" // { 95588 + dependencies = [ 95589 + sources."safe-buffer-5.1.2" 95590 + ]; 95591 + }) 95592 + (sources."readable-web-to-node-stream-3.0.2" // { 95593 + dependencies = [ 95594 + sources."readable-stream-3.6.2" 95595 + ]; 95596 + }) 97272 95597 (sources."readdir-glob-1.1.3" // { 97273 95598 dependencies = [ 97274 95599 sources."brace-expansion-2.0.1" ··· 97276 95601 ]; 97277 95602 }) 97278 95603 sources."readdirp-3.6.0" 95604 + sources."reinterval-1.1.0" 97279 95605 sources."require-from-string-2.0.2" 97280 95606 sources."resolve-alpn-1.2.1" 97281 95607 sources."responselike-2.0.1" 97282 95608 sources."restore-cursor-3.1.0" 97283 95609 sources."reusify-1.0.4" 95610 + sources."rfdc-1.3.0" 97284 95611 sources."run-async-2.4.1" 97285 95612 sources."run-parallel-1.2.0" 97286 95613 sources."run-parallel-limit-1.1.0" ··· 97299 95626 sources."slash-3.0.0" 97300 95627 sources."sort-keys-1.1.2" 97301 95628 sources."sort-keys-length-1.0.1" 97302 - sources."split2-3.2.2" 95629 + (sources."split2-3.2.2" // { 95630 + dependencies = [ 95631 + sources."readable-stream-3.6.2" 95632 + ]; 95633 + }) 97303 95634 sources."sprintf-js-1.0.3" 97304 95635 sources."sprintf-kit-2.0.1" 97305 95636 sources."stream-buffers-3.0.2" 97306 95637 sources."stream-promise-3.2.0" 95638 + sources."stream-shift-1.0.1" 97307 95639 sources."string-width-4.2.3" 97308 - sources."string_decoder-1.3.0" 95640 + (sources."string_decoder-1.1.1" // { 95641 + dependencies = [ 95642 + sources."safe-buffer-5.1.2" 95643 + ]; 95644 + }) 97309 95645 sources."strip-ansi-6.0.1" 97310 95646 sources."strip-dirs-2.1.0" 97311 95647 sources."strip-outer-1.0.1" 95648 + sources."strnum-1.0.5" 97312 95649 sources."strtok3-6.3.0" 97313 - sources."superagent-7.1.6" 95650 + (sources."superagent-7.1.6" // { 95651 + dependencies = [ 95652 + sources."readable-stream-3.6.2" 95653 + ]; 95654 + }) 97314 95655 (sources."supports-color-8.1.1" // { 97315 95656 dependencies = [ 97316 95657 sources."has-flag-4.0.0" 97317 95658 ]; 97318 95659 }) 97319 95660 sources."tar-6.2.0" 97320 - sources."tar-stream-2.2.0" 95661 + (sources."tar-stream-2.2.0" // { 95662 + dependencies = [ 95663 + sources."readable-stream-3.6.2" 95664 + ]; 95665 + }) 97321 95666 sources."throat-5.0.0" 97322 95667 sources."through-2.3.8" 97323 95668 sources."timers-ext-0.1.7" ··· 97331 95676 sources."tslib-2.6.2" 97332 95677 sources."type-2.7.2" 97333 95678 sources."type-fest-0.21.3" 97334 - sources."unbzip2-stream-1.4.3" 95679 + sources."typedarray-0.0.6" 95680 + (sources."unbzip2-stream-1.4.3" // { 95681 + dependencies = [ 95682 + sources."buffer-5.7.1" 95683 + ]; 95684 + }) 97335 95685 sources."uni-global-1.0.0" 97336 95686 sources."universalify-2.0.0" 97337 95687 sources."untildify-4.0.0" ··· 97366 95716 (sources."zip-stream-4.1.1" // { 97367 95717 dependencies = [ 97368 95718 sources."archiver-utils-3.0.4" 95719 + sources."readable-stream-3.6.2" 97369 95720 ]; 97370 95721 }) 97371 95722 ]; ··· 98024 96375 sources."@socket.io/component-emitter-3.1.0" 98025 96376 sources."@types/cookie-0.4.1" 98026 96377 sources."@types/cors-2.8.14" 98027 - sources."@types/node-20.6.1" 96378 + sources."@types/node-20.6.3" 98028 96379 sources."accepts-1.3.8" 98029 96380 sources."base64id-2.0.0" 98030 96381 sources."bufferutil-4.0.7" ··· 98074 96425 sources."supports-color-5.5.0" 98075 96426 ]; 98076 96427 }) 98077 - sources."@babel/helper-validator-identifier-7.22.19" 98078 - (sources."@babel/highlight-7.22.13" // { 96428 + sources."@babel/helper-validator-identifier-7.22.20" 96429 + (sources."@babel/highlight-7.22.20" // { 98079 96430 dependencies = [ 98080 96431 sources."ansi-styles-3.2.1" 98081 96432 sources."chalk-2.4.2" ··· 98184 96535 sources."spdx-correct-3.2.0" 98185 96536 sources."spdx-exceptions-2.3.0" 98186 96537 sources."spdx-expression-parse-3.0.1" 98187 - sources."spdx-license-ids-3.0.13" 96538 + sources."spdx-license-ids-3.0.15" 98188 96539 (sources."speedtest-net-1.6.2" // { 98189 96540 dependencies = [ 98190 96541 sources."ansi-styles-3.2.1" ··· 98277 96628 svelte-check = nodeEnv.buildNodePackage { 98278 96629 name = "svelte-check"; 98279 96630 packageName = "svelte-check"; 98280 - version = "3.5.1"; 96631 + version = "3.5.2"; 98281 96632 src = fetchurl { 98282 - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.5.1.tgz"; 98283 - sha512 = "+Zb4iHxAhdUtcUg/WJPRjlS1RJalIsWAe9Mz6G1zyznSs7dDkT7VUBdXc3q7Iwg49O/VrZgyJRvOJkjuBfKjFA=="; 96633 + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.5.2.tgz"; 96634 + sha512 = "5a/YWbiH4c+AqAUP+0VneiV5bP8YOk9JL3jwvN+k2PEPLgpu85bjQc5eE67+eIZBBwUEJzmO3I92OqKcqbp3fw=="; 98284 96635 }; 98285 96636 dependencies = [ 98286 96637 sources."@ampproject/remapping-2.2.1" 98287 96638 sources."@babel/code-frame-7.22.13" 98288 - sources."@babel/compat-data-7.22.9" 98289 - sources."@babel/core-7.22.19" 96639 + sources."@babel/compat-data-7.22.20" 96640 + sources."@babel/core-7.22.20" 98290 96641 sources."@babel/generator-7.22.15" 98291 96642 sources."@babel/helper-compilation-targets-7.22.15" 98292 - sources."@babel/helper-environment-visitor-7.22.5" 96643 + sources."@babel/helper-environment-visitor-7.22.20" 98293 96644 sources."@babel/helper-function-name-7.22.5" 98294 96645 sources."@babel/helper-hoist-variables-7.22.5" 98295 96646 sources."@babel/helper-module-imports-7.22.15" 98296 - sources."@babel/helper-module-transforms-7.22.19" 96647 + sources."@babel/helper-module-transforms-7.22.20" 98297 96648 sources."@babel/helper-simple-access-7.22.5" 98298 96649 sources."@babel/helper-split-export-declaration-7.22.6" 98299 96650 sources."@babel/helper-string-parser-7.22.5" 98300 - sources."@babel/helper-validator-identifier-7.22.19" 96651 + sources."@babel/helper-validator-identifier-7.22.20" 98301 96652 sources."@babel/helper-validator-option-7.22.15" 98302 96653 sources."@babel/helpers-7.22.15" 98303 - sources."@babel/highlight-7.22.13" 96654 + sources."@babel/highlight-7.22.20" 98304 96655 sources."@babel/parser-7.22.16" 98305 96656 sources."@babel/template-7.22.15" 98306 - sources."@babel/traverse-7.22.19" 96657 + sources."@babel/traverse-7.22.20" 98307 96658 sources."@babel/types-7.22.19" 98308 96659 (sources."@cspotcode/source-map-support-0.8.1" // { 98309 96660 dependencies = [ ··· 98318 96669 sources."@nodelib/fs.scandir-2.1.5" 98319 96670 sources."@nodelib/fs.stat-2.0.5" 98320 96671 sources."@nodelib/fs.walk-1.2.8" 98321 - sources."@swc/core-1.3.85" 98322 - sources."@swc/core-darwin-arm64-1.3.85" 98323 - sources."@swc/core-darwin-x64-1.3.85" 98324 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 98325 - sources."@swc/core-linux-arm64-gnu-1.3.85" 98326 - sources."@swc/core-linux-arm64-musl-1.3.85" 98327 - sources."@swc/core-linux-x64-gnu-1.3.85" 98328 - sources."@swc/core-linux-x64-musl-1.3.85" 98329 - sources."@swc/core-win32-arm64-msvc-1.3.85" 98330 - sources."@swc/core-win32-ia32-msvc-1.3.85" 98331 - sources."@swc/core-win32-x64-msvc-1.3.85" 96672 + sources."@swc/core-1.3.86" 96673 + sources."@swc/core-darwin-arm64-1.3.86" 96674 + sources."@swc/core-darwin-x64-1.3.86" 96675 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 96676 + sources."@swc/core-linux-arm64-gnu-1.3.86" 96677 + sources."@swc/core-linux-arm64-musl-1.3.86" 96678 + sources."@swc/core-linux-x64-gnu-1.3.86" 96679 + sources."@swc/core-linux-x64-musl-1.3.86" 96680 + sources."@swc/core-win32-arm64-msvc-1.3.86" 96681 + sources."@swc/core-win32-ia32-msvc-1.3.86" 96682 + sources."@swc/core-win32-x64-msvc-1.3.86" 98332 96683 sources."@swc/helpers-0.5.2" 98333 - sources."@swc/types-0.1.4" 98334 - sources."@swc/wasm-1.3.85" 96684 + sources."@swc/types-0.1.5" 96685 + sources."@swc/wasm-1.3.86" 98335 96686 sources."@tsconfig/node10-1.0.9" 98336 96687 sources."@tsconfig/node12-1.0.11" 98337 96688 sources."@tsconfig/node14-1.0.3" 98338 96689 sources."@tsconfig/node16-1.0.4" 98339 96690 sources."@types/estree-1.0.1" 98340 - sources."@types/node-20.6.1" 96691 + sources."@types/node-20.6.3" 98341 96692 sources."@types/pug-2.0.6" 98342 96693 sources."acorn-8.10.0" 98343 96694 sources."acorn-walk-8.2.0" ··· 98358 96709 sources."buffer-crc32-0.2.13" 98359 96710 sources."call-bind-1.0.2" 98360 96711 sources."callsites-3.1.0" 98361 - sources."caniuse-lite-1.0.30001534" 96712 + sources."caniuse-lite-1.0.30001538" 98362 96713 sources."chalk-2.4.2" 98363 96714 sources."character-parser-2.2.0" 98364 96715 sources."chokidar-3.5.3" ··· 98379 96730 sources."detect-indent-6.1.0" 98380 96731 sources."diff-4.0.2" 98381 96732 sources."doctypes-1.1.0" 98382 - sources."electron-to-chromium-1.4.523" 96733 + sources."electron-to-chromium-1.4.525" 98383 96734 sources."errno-0.1.8" 98384 96735 sources."es6-promise-3.3.1" 98385 96736 sources."escalade-3.1.1" ··· 98466 96817 sources."picocolors-1.0.0" 98467 96818 sources."picomatch-2.3.1" 98468 96819 sources."pify-4.0.1" 98469 - sources."postcss-8.4.29" 96820 + sources."postcss-8.4.30" 98470 96821 sources."postcss-load-config-4.0.1" 98471 96822 sources."promise-7.3.1" 98472 96823 sources."prr-1.0.1" ··· 98484 96835 sources."pug-walk-2.0.0" 98485 96836 sources."queue-microtask-1.2.3" 98486 96837 sources."readdirp-3.6.0" 98487 - sources."resolve-1.22.5" 96838 + sources."resolve-1.22.6" 98488 96839 sources."resolve-from-4.0.0" 98489 96840 sources."reusify-1.0.4" 98490 96841 sources."rimraf-2.7.1" ··· 98511 96862 sources."sugarss-4.0.1" 98512 96863 sources."supports-color-5.5.0" 98513 96864 sources."supports-preserve-symlinks-flag-1.0.0" 98514 - (sources."svelte-4.2.0" // { 96865 + (sources."svelte-4.2.1" // { 98515 96866 dependencies = [ 98516 96867 sources."magic-string-0.30.3" 98517 96868 ]; ··· 98523 96874 sources."ts-node-10.9.1" 98524 96875 sources."tslib-2.6.2" 98525 96876 sources."typescript-5.2.2" 98526 - sources."update-browserslist-db-1.0.11" 96877 + sources."update-browserslist-db-1.0.12" 98527 96878 sources."v8-compile-cache-lib-3.0.1" 98528 96879 sources."void-elements-3.1.0" 98529 96880 sources."with-7.0.2" ··· 98545 96896 svelte-language-server = nodeEnv.buildNodePackage { 98546 96897 name = "svelte-language-server"; 98547 96898 packageName = "svelte-language-server"; 98548 - version = "0.15.18"; 96899 + version = "0.15.19"; 98549 96900 src = fetchurl { 98550 - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.15.18.tgz"; 98551 - sha512 = "dNMcHjUgNrl3IvAJqIo36a1hTPINWgGx4uAKjfCim32z4B+gx8B3bYqiv7FeHaE+w2Xpn1tiADix/RK77KYb0g=="; 96901 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.15.19.tgz"; 96902 + sha512 = "Ge31qUlrLcnYJErDUWqjYDhwUyXxDLN8+2efApqNcV7UZQtBLOZ8Hm+NYYl/MJxjwsKT3eKEe13HJBwB5kciJA=="; 98552 96903 }; 98553 96904 dependencies = [ 98554 96905 sources."@ampproject/remapping-2.2.1" 98555 96906 sources."@babel/code-frame-7.22.13" 98556 - sources."@babel/compat-data-7.22.9" 98557 - sources."@babel/core-7.22.19" 96907 + sources."@babel/compat-data-7.22.20" 96908 + sources."@babel/core-7.22.20" 98558 96909 sources."@babel/generator-7.22.15" 98559 96910 sources."@babel/helper-compilation-targets-7.22.15" 98560 - sources."@babel/helper-environment-visitor-7.22.5" 96911 + sources."@babel/helper-environment-visitor-7.22.20" 98561 96912 sources."@babel/helper-function-name-7.22.5" 98562 96913 sources."@babel/helper-hoist-variables-7.22.5" 98563 96914 sources."@babel/helper-module-imports-7.22.15" 98564 - sources."@babel/helper-module-transforms-7.22.19" 96915 + sources."@babel/helper-module-transforms-7.22.20" 98565 96916 sources."@babel/helper-simple-access-7.22.5" 98566 96917 sources."@babel/helper-split-export-declaration-7.22.6" 98567 96918 sources."@babel/helper-string-parser-7.22.5" 98568 - sources."@babel/helper-validator-identifier-7.22.19" 96919 + sources."@babel/helper-validator-identifier-7.22.20" 98569 96920 sources."@babel/helper-validator-option-7.22.15" 98570 96921 sources."@babel/helpers-7.22.15" 98571 - sources."@babel/highlight-7.22.13" 96922 + sources."@babel/highlight-7.22.20" 98572 96923 sources."@babel/parser-7.22.16" 98573 96924 sources."@babel/template-7.22.15" 98574 - sources."@babel/traverse-7.22.19" 96925 + sources."@babel/traverse-7.22.20" 98575 96926 sources."@babel/types-7.22.19" 98576 96927 (sources."@cspotcode/source-map-support-0.8.1" // { 98577 96928 dependencies = [ ··· 98589 96940 sources."@nodelib/fs.scandir-2.1.5" 98590 96941 sources."@nodelib/fs.stat-2.0.5" 98591 96942 sources."@nodelib/fs.walk-1.2.8" 98592 - sources."@swc/core-1.3.85" 98593 - sources."@swc/core-darwin-arm64-1.3.85" 98594 - sources."@swc/core-darwin-x64-1.3.85" 98595 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 98596 - sources."@swc/core-linux-arm64-gnu-1.3.85" 98597 - sources."@swc/core-linux-arm64-musl-1.3.85" 98598 - sources."@swc/core-linux-x64-gnu-1.3.85" 98599 - sources."@swc/core-linux-x64-musl-1.3.85" 98600 - sources."@swc/core-win32-arm64-msvc-1.3.85" 98601 - sources."@swc/core-win32-ia32-msvc-1.3.85" 98602 - sources."@swc/core-win32-x64-msvc-1.3.85" 96943 + sources."@swc/core-1.3.86" 96944 + sources."@swc/core-darwin-arm64-1.3.86" 96945 + sources."@swc/core-darwin-x64-1.3.86" 96946 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 96947 + sources."@swc/core-linux-arm64-gnu-1.3.86" 96948 + sources."@swc/core-linux-arm64-musl-1.3.86" 96949 + sources."@swc/core-linux-x64-gnu-1.3.86" 96950 + sources."@swc/core-linux-x64-musl-1.3.86" 96951 + sources."@swc/core-win32-arm64-msvc-1.3.86" 96952 + sources."@swc/core-win32-ia32-msvc-1.3.86" 96953 + sources."@swc/core-win32-x64-msvc-1.3.86" 98603 96954 sources."@swc/helpers-0.5.2" 98604 - sources."@swc/types-0.1.4" 98605 - sources."@swc/wasm-1.3.85" 96955 + sources."@swc/types-0.1.5" 96956 + sources."@swc/wasm-1.3.86" 98606 96957 sources."@tsconfig/node10-1.0.9" 98607 96958 sources."@tsconfig/node12-1.0.11" 98608 96959 sources."@tsconfig/node14-1.0.3" 98609 96960 sources."@tsconfig/node16-1.0.4" 98610 - sources."@types/node-20.6.1" 96961 + sources."@types/node-20.6.3" 98611 96962 sources."@types/pug-2.0.6" 98612 96963 (sources."@vscode/emmet-helper-2.8.4" // { 98613 96964 dependencies = [ ··· 98631 96982 sources."browserslist-4.21.10" 98632 96983 sources."buffer-crc32-0.2.13" 98633 96984 sources."call-bind-1.0.2" 98634 - sources."caniuse-lite-1.0.30001534" 96985 + sources."caniuse-lite-1.0.30001538" 98635 96986 sources."chalk-2.4.2" 98636 96987 sources."character-parser-2.2.0" 98637 96988 sources."chokidar-3.5.3" ··· 98650 97001 sources."detect-indent-6.1.0" 98651 97002 sources."diff-4.0.2" 98652 97003 sources."doctypes-1.1.0" 98653 - sources."electron-to-chromium-1.4.523" 97004 + sources."electron-to-chromium-1.4.525" 98654 97005 sources."emmet-2.4.6" 98655 97006 sources."errno-0.1.8" 98656 97007 sources."es6-promise-3.3.1" ··· 98736 97087 sources."picocolors-1.0.0" 98737 97088 sources."picomatch-2.3.1" 98738 97089 sources."pify-4.0.1" 98739 - sources."postcss-8.4.29" 97090 + sources."postcss-8.4.30" 98740 97091 sources."postcss-load-config-4.0.1" 98741 97092 sources."prettier-2.8.8" 98742 97093 sources."prettier-plugin-svelte-2.10.1" ··· 98756 97107 sources."pug-walk-2.0.0" 98757 97108 sources."queue-microtask-1.2.3" 98758 97109 sources."readdirp-3.6.0" 98759 - sources."resolve-1.22.5" 97110 + sources."resolve-1.22.6" 98760 97111 sources."reusify-1.0.4" 98761 97112 sources."rimraf-2.7.1" 98762 97113 sources."run-parallel-1.2.0" ··· 98783 97134 sources."supports-preserve-symlinks-flag-1.0.0" 98784 97135 sources."svelte-3.59.2" 98785 97136 sources."svelte-preprocess-5.0.4" 98786 - sources."svelte2tsx-0.6.21" 97137 + sources."svelte2tsx-0.6.22" 98787 97138 sources."to-fast-properties-2.0.0" 98788 97139 sources."to-regex-range-5.0.1" 98789 97140 sources."token-stream-1.0.0" 98790 97141 sources."ts-node-10.9.1" 98791 97142 sources."tslib-2.6.2" 98792 97143 sources."typescript-5.2.2" 98793 - sources."update-browserslist-db-1.0.11" 97144 + sources."update-browserslist-db-1.0.12" 98794 97145 sources."v8-compile-cache-lib-3.0.1" 98795 97146 sources."void-elements-3.1.0" 98796 97147 (sources."vscode-css-languageservice-6.2.7" // { 98797 97148 dependencies = [ 98798 - sources."vscode-languageserver-types-3.17.3" 97149 + sources."vscode-languageserver-types-3.17.4" 98799 97150 ]; 98800 97151 }) 98801 97152 (sources."vscode-html-languageservice-5.0.7" // { 98802 97153 dependencies = [ 98803 - sources."vscode-languageserver-types-3.17.3" 97154 + sources."vscode-languageserver-types-3.17.4" 98804 97155 ]; 98805 97156 }) 98806 97157 sources."vscode-jsonrpc-8.0.2" ··· 98886 97237 sources."@nodelib/fs.scandir-2.1.5" 98887 97238 sources."@nodelib/fs.stat-2.0.5" 98888 97239 sources."@nodelib/fs.walk-1.2.8" 98889 - sources."@swc/core-1.3.85" 98890 - sources."@swc/core-darwin-arm64-1.3.85" 98891 - sources."@swc/core-darwin-x64-1.3.85" 98892 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 98893 - sources."@swc/core-linux-arm64-gnu-1.3.85" 98894 - sources."@swc/core-linux-arm64-musl-1.3.85" 98895 - sources."@swc/core-linux-x64-gnu-1.3.85" 98896 - sources."@swc/core-linux-x64-musl-1.3.85" 98897 - sources."@swc/core-win32-arm64-msvc-1.3.85" 98898 - sources."@swc/core-win32-ia32-msvc-1.3.85" 98899 - sources."@swc/core-win32-x64-msvc-1.3.85" 97240 + sources."@swc/core-1.3.86" 97241 + sources."@swc/core-darwin-arm64-1.3.86" 97242 + sources."@swc/core-darwin-x64-1.3.86" 97243 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 97244 + sources."@swc/core-linux-arm64-gnu-1.3.86" 97245 + sources."@swc/core-linux-arm64-musl-1.3.86" 97246 + sources."@swc/core-linux-x64-gnu-1.3.86" 97247 + sources."@swc/core-linux-x64-musl-1.3.86" 97248 + sources."@swc/core-win32-arm64-msvc-1.3.86" 97249 + sources."@swc/core-win32-ia32-msvc-1.3.86" 97250 + sources."@swc/core-win32-x64-msvc-1.3.86" 98900 97251 sources."@swc/helpers-0.5.2" 98901 - sources."@swc/types-0.1.4" 98902 - sources."@swc/wasm-1.3.85" 97252 + sources."@swc/types-0.1.5" 97253 + sources."@swc/wasm-1.3.86" 98903 97254 sources."@tsconfig/node10-1.0.9" 98904 97255 sources."@tsconfig/node12-1.0.11" 98905 97256 sources."@tsconfig/node14-1.0.3" 98906 97257 sources."@tsconfig/node16-1.0.4" 98907 - sources."@types/node-20.6.1" 97258 + sources."@types/node-20.6.3" 98908 97259 sources."acorn-8.10.0" 98909 97260 sources."acorn-walk-8.2.0" 98910 97261 sources."any-promise-1.3.0" ··· 98966 97317 sources."picomatch-2.3.1" 98967 97318 sources."pify-2.3.0" 98968 97319 sources."pirates-4.0.6" 98969 - sources."postcss-8.4.29" 97320 + sources."postcss-8.4.30" 98970 97321 sources."postcss-import-15.1.0" 98971 97322 sources."postcss-js-4.0.1" 98972 97323 sources."postcss-load-config-4.0.1" ··· 98976 97327 sources."queue-microtask-1.2.3" 98977 97328 sources."read-cache-1.0.0" 98978 97329 sources."readdirp-3.6.0" 98979 - sources."resolve-1.22.5" 97330 + sources."resolve-1.22.6" 98980 97331 sources."reusify-1.0.4" 98981 97332 sources."run-parallel-1.2.0" 98982 97333 sources."source-map-js-1.0.2" ··· 99251 97602 sources."remark-parse-9.0.0" 99252 97603 sources."repeat-string-1.6.1" 99253 97604 sources."require-from-string-2.0.2" 99254 - sources."resolve-1.22.5" 97605 + sources."resolve-1.22.6" 99255 97606 sources."rimraf-2.6.3" 99256 97607 sources."semver-5.7.2" 99257 97608 sources."slice-ansi-4.0.0" 99258 97609 sources."spdx-correct-3.2.0" 99259 97610 sources."spdx-exceptions-2.3.0" 99260 97611 sources."spdx-expression-parse-3.0.1" 99261 - sources."spdx-license-ids-3.0.13" 97612 + sources."spdx-license-ids-3.0.15" 99262 97613 sources."sprintf-js-1.0.3" 99263 97614 sources."string-width-4.2.3" 99264 97615 sources."strip-ansi-6.0.1" ··· 99362 97713 }; 99363 97714 dependencies = [ 99364 97715 sources."@babel/code-frame-7.22.13" 99365 - sources."@babel/helper-validator-identifier-7.22.19" 99366 - sources."@babel/highlight-7.22.13" 97716 + sources."@babel/helper-validator-identifier-7.22.20" 97717 + sources."@babel/highlight-7.22.20" 99367 97718 sources."@sindresorhus/is-0.14.0" 99368 97719 sources."@szmarczak/http-timer-1.1.2" 99369 97720 sources."@textlint/ast-node-types-13.3.3" 99370 - sources."@types/hast-2.3.5" 97721 + sources."@types/hast-2.3.6" 99371 97722 sources."@types/minimist-1.2.2" 99372 97723 sources."@types/normalize-package-data-2.4.1" 99373 97724 sources."@types/parse5-5.0.3" ··· 99619 97970 sources."remark-retext-4.0.0" 99620 97971 sources."remark-stringify-8.1.1" 99621 97972 sources."repeat-string-1.6.1" 99622 - sources."resolve-1.22.5" 97973 + sources."resolve-1.22.6" 99623 97974 sources."resolve-from-5.0.0" 99624 97975 sources."responselike-1.0.2" 99625 97976 sources."retext-english-3.0.4" ··· 99645 97996 sources."spdx-correct-3.2.0" 99646 97997 sources."spdx-exceptions-2.3.0" 99647 97998 sources."spdx-expression-parse-3.0.1" 99648 - sources."spdx-license-ids-3.0.13" 97999 + sources."spdx-license-ids-3.0.15" 99649 98000 sources."split-0.2.10" 99650 98001 (sources."split-transform-stream-0.1.1" // { 99651 98002 dependencies = [ ··· 100152 98503 sources."@types/cacheable-request-6.0.3" 100153 98504 sources."@types/cookie-0.4.1" 100154 98505 sources."@types/cors-2.8.14" 100155 - sources."@types/http-cache-semantics-4.0.1" 98506 + sources."@types/http-cache-semantics-4.0.2" 100156 98507 sources."@types/keyv-3.1.4" 100157 - sources."@types/node-20.6.1" 98508 + sources."@types/node-20.6.3" 100158 98509 sources."@types/responselike-1.0.0" 100159 98510 sources."abbrev-1.1.1" 100160 98511 sources."abstract-logging-2.0.1" ··· 101234 99585 sources."@szmarczak/http-timer-4.0.6" 101235 99586 sources."@tokenizer/token-0.3.0" 101236 99587 sources."@types/cacheable-request-6.0.3" 101237 - sources."@types/http-cache-semantics-4.0.1" 99588 + sources."@types/http-cache-semantics-4.0.2" 101238 99589 sources."@types/keyv-3.1.4" 101239 - sources."@types/node-20.6.1" 99590 + sources."@types/node-20.6.3" 101240 99591 sources."@types/responselike-1.0.0" 101241 99592 sources."abbrev-1.1.1" 101242 99593 sources."abstract-logging-2.0.1" ··· 101702 100053 sources."@szmarczak/http-timer-4.0.6" 101703 100054 sources."@tokenizer/token-0.3.0" 101704 100055 sources."@types/cacheable-request-6.0.3" 101705 - sources."@types/http-cache-semantics-4.0.1" 100056 + sources."@types/http-cache-semantics-4.0.2" 101706 100057 sources."@types/keyv-3.1.4" 101707 - sources."@types/node-20.6.1" 100058 + sources."@types/node-20.6.3" 101708 100059 sources."@types/responselike-1.0.0" 101709 100060 sources."abbrev-1.1.1" 101710 100061 sources."abstract-logging-2.0.1" ··· 102634 100985 sources."@jridgewell/resolve-uri-3.1.1" 102635 100986 sources."@jridgewell/sourcemap-codec-1.4.15" 102636 100987 sources."@jridgewell/trace-mapping-0.3.9" 102637 - sources."@swc/core-1.3.85" 102638 - sources."@swc/core-darwin-arm64-1.3.85" 102639 - sources."@swc/core-darwin-x64-1.3.85" 102640 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 102641 - sources."@swc/core-linux-arm64-gnu-1.3.85" 102642 - sources."@swc/core-linux-arm64-musl-1.3.85" 102643 - sources."@swc/core-linux-x64-gnu-1.3.85" 102644 - sources."@swc/core-linux-x64-musl-1.3.85" 102645 - sources."@swc/core-win32-arm64-msvc-1.3.85" 102646 - sources."@swc/core-win32-ia32-msvc-1.3.85" 102647 - sources."@swc/core-win32-x64-msvc-1.3.85" 100988 + sources."@swc/core-1.3.86" 100989 + sources."@swc/core-darwin-arm64-1.3.86" 100990 + sources."@swc/core-darwin-x64-1.3.86" 100991 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 100992 + sources."@swc/core-linux-arm64-gnu-1.3.86" 100993 + sources."@swc/core-linux-arm64-musl-1.3.86" 100994 + sources."@swc/core-linux-x64-gnu-1.3.86" 100995 + sources."@swc/core-linux-x64-musl-1.3.86" 100996 + sources."@swc/core-win32-arm64-msvc-1.3.86" 100997 + sources."@swc/core-win32-ia32-msvc-1.3.86" 100998 + sources."@swc/core-win32-x64-msvc-1.3.86" 102648 100999 sources."@swc/helpers-0.5.2" 102649 - sources."@swc/types-0.1.4" 102650 - sources."@swc/wasm-1.3.85" 101000 + sources."@swc/types-0.1.5" 101001 + sources."@swc/wasm-1.3.86" 102651 101002 sources."@tsconfig/node10-1.0.9" 102652 101003 sources."@tsconfig/node12-1.0.11" 102653 101004 sources."@tsconfig/node14-1.0.3" 102654 101005 sources."@tsconfig/node16-1.0.4" 102655 - sources."@types/node-20.6.1" 101006 + sources."@types/node-20.6.3" 102656 101007 sources."acorn-8.10.0" 102657 101008 sources."acorn-walk-8.2.0" 102658 101009 sources."arg-4.1.3" ··· 102758 101109 }; 102759 101110 dependencies = [ 102760 101111 sources."@babel/code-frame-7.22.13" 102761 - sources."@babel/helper-validator-identifier-7.22.19" 102762 - sources."@babel/highlight-7.22.13" 101112 + sources."@babel/helper-validator-identifier-7.22.20" 101113 + sources."@babel/highlight-7.22.20" 102763 101114 sources."@isaacs/cliui-8.0.2" 102764 - sources."@npmcli/config-6.2.1" 101115 + sources."@npmcli/config-6.3.0" 102765 101116 sources."@npmcli/map-workspaces-3.0.4" 102766 101117 sources."@npmcli/name-from-folder-2.0.0" 102767 101118 sources."@types/concat-stream-2.0.0" 102768 101119 sources."@types/debug-4.1.8" 102769 101120 sources."@types/is-empty-1.2.1" 102770 101121 sources."@types/ms-0.7.31" 102771 - sources."@types/node-18.17.16" 101122 + sources."@types/node-18.17.18" 102772 101123 sources."@types/supports-color-8.1.1" 102773 101124 sources."@types/unist-2.0.8" 102774 101125 sources."abbrev-2.0.0" ··· 103197 101548 vercel = nodeEnv.buildNodePackage { 103198 101549 name = "vercel"; 103199 101550 packageName = "vercel"; 103200 - version = "32.2.4"; 101551 + version = "32.2.5"; 103201 101552 src = fetchurl { 103202 - url = "https://registry.npmjs.org/vercel/-/vercel-32.2.4.tgz"; 103203 - sha512 = "Vdp/kglvpxcmY+yaQ+4/qZm8O8Hu9sn/JTpdfXNaxAcHP4Pt3GmHTZJmY0K6bQ2MoXjE0/Tp0h9BfHLUoNjRIw=="; 101553 + url = "https://registry.npmjs.org/vercel/-/vercel-32.2.5.tgz"; 101554 + sha512 = "u41ysVXM9nOCQVjXXezx662wLlYzJ+6IVG4wofrYuYWylEMEIdGXVxezc9TJZsnEgwZGwnPiWJu3twxTOhkV9A=="; 103204 101555 }; 103205 101556 dependencies = [ 103206 101557 sources."@babel/runtime-7.12.1" ··· 103223 101574 sources."@nodelib/fs.walk-1.2.8" 103224 101575 sources."@rollup/pluginutils-4.2.1" 103225 101576 sources."@sinclair/typebox-0.25.24" 103226 - sources."@swc/core-1.3.85" 103227 - sources."@swc/core-darwin-arm64-1.3.85" 103228 - sources."@swc/core-darwin-x64-1.3.85" 103229 - sources."@swc/core-linux-arm-gnueabihf-1.3.85" 103230 - sources."@swc/core-linux-arm64-gnu-1.3.85" 103231 - sources."@swc/core-linux-arm64-musl-1.3.85" 103232 - sources."@swc/core-linux-x64-gnu-1.3.85" 103233 - sources."@swc/core-linux-x64-musl-1.3.85" 103234 - sources."@swc/core-win32-arm64-msvc-1.3.85" 103235 - sources."@swc/core-win32-ia32-msvc-1.3.85" 103236 - sources."@swc/core-win32-x64-msvc-1.3.85" 101577 + sources."@swc/core-1.3.86" 101578 + sources."@swc/core-darwin-arm64-1.3.86" 101579 + sources."@swc/core-darwin-x64-1.3.86" 101580 + sources."@swc/core-linux-arm-gnueabihf-1.3.86" 101581 + sources."@swc/core-linux-arm64-gnu-1.3.86" 101582 + sources."@swc/core-linux-arm64-musl-1.3.86" 101583 + sources."@swc/core-linux-x64-gnu-1.3.86" 101584 + sources."@swc/core-linux-x64-musl-1.3.86" 101585 + sources."@swc/core-win32-arm64-msvc-1.3.86" 101586 + sources."@swc/core-win32-ia32-msvc-1.3.86" 101587 + sources."@swc/core-win32-x64-msvc-1.3.86" 103237 101588 sources."@swc/helpers-0.5.2" 103238 - sources."@swc/types-0.1.4" 103239 - sources."@swc/wasm-1.3.85" 101589 + sources."@swc/types-0.1.5" 101590 + sources."@swc/wasm-1.3.86" 103240 101591 sources."@ts-morph/common-0.11.1" 103241 101592 sources."@tsconfig/node10-1.0.9" 103242 101593 sources."@tsconfig/node12-1.0.11" ··· 103250 101601 sources."@vercel/gatsby-plugin-vercel-builder-2.0.5" 103251 101602 sources."@vercel/go-3.0.1" 103252 101603 sources."@vercel/hydrogen-1.0.1" 103253 - sources."@vercel/next-4.0.5" 101604 + sources."@vercel/next-4.0.6" 103254 101605 sources."@vercel/nft-0.22.5" 103255 101606 sources."@vercel/node-3.0.5" 103256 101607 sources."@vercel/python-4.0.1" 103257 101608 sources."@vercel/redwood-2.0.2" 103258 - sources."@vercel/remix-builder-2.0.5" 101609 + sources."@vercel/remix-builder-2.0.6" 103259 101610 (sources."@vercel/routing-utils-3.0.0" // { 103260 101611 dependencies = [ 103261 101612 sources."ajv-6.12.6" ··· 103476 101827 sources."supports-color-5.5.0" 103477 101828 ]; 103478 101829 }) 103479 - sources."@babel/helper-validator-identifier-7.22.19" 103480 - (sources."@babel/highlight-7.22.13" // { 101830 + sources."@babel/helper-validator-identifier-7.22.20" 101831 + (sources."@babel/highlight-7.22.20" // { 103481 101832 dependencies = [ 103482 101833 sources."ansi-styles-3.2.1" 103483 101834 sources."chalk-2.4.2" ··· 103540 101891 sources."file-entry-cache-6.0.1" 103541 101892 sources."find-up-5.0.0" 103542 101893 sources."flat-cache-3.1.0" 103543 - sources."flatted-3.2.7" 101894 + sources."flatted-3.2.9" 103544 101895 sources."fs.realpath-1.0.0" 103545 101896 sources."function-bind-1.1.1" 103546 101897 sources."get-intrinsic-1.2.1" 103547 101898 sources."glob-7.2.3" 103548 101899 sources."glob-parent-6.0.2" 103549 - sources."globals-13.21.0" 101900 + sources."globals-13.22.0" 103550 101901 sources."graphemer-1.4.0" 103551 101902 sources."has-1.0.3" 103552 101903 sources."has-flag-4.0.0" ··· 103603 101954 sources."pug-lexer-5.0.1" 103604 101955 sources."punycode-2.3.0" 103605 101956 sources."queue-microtask-1.2.3" 103606 - sources."resolve-1.22.5" 101957 + sources."resolve-1.22.6" 103607 101958 sources."resolve-from-4.0.0" 103608 101959 sources."reusify-1.0.4" 103609 101960 sources."rimraf-3.0.2" ··· 103665 102016 }; 103666 102017 dependencies = [ 103667 102018 sources."vscode-css-languageservice-3.0.13" 103668 - sources."vscode-jsonrpc-8.1.0" 102019 + sources."vscode-jsonrpc-8.2.0" 103669 102020 sources."vscode-languageserver-4.4.2" 103670 - sources."vscode-languageserver-protocol-3.17.3" 102021 + sources."vscode-languageserver-protocol-3.17.4" 103671 102022 sources."vscode-languageserver-protocol-foldingprovider-2.0.1" 103672 - sources."vscode-languageserver-types-3.17.3" 102023 + sources."vscode-languageserver-types-3.17.4" 103673 102024 sources."vscode-nls-4.1.2" 103674 102025 sources."vscode-uri-1.0.8" 103675 102026 ]; ··· 103703 102054 sources."vscode-nls-4.1.2" 103704 102055 ]; 103705 102056 }) 103706 - sources."vscode-jsonrpc-8.1.0" 102057 + sources."vscode-jsonrpc-8.2.0" 103707 102058 sources."vscode-languageserver-4.4.2" 103708 - sources."vscode-languageserver-protocol-3.17.3" 102059 + sources."vscode-languageserver-protocol-3.17.4" 103709 102060 sources."vscode-languageserver-protocol-foldingprovider-2.0.1" 103710 - sources."vscode-languageserver-types-3.17.3" 102061 + sources."vscode-languageserver-types-3.17.4" 103711 102062 sources."vscode-nls-3.2.5" 103712 102063 sources."vscode-uri-1.0.8" 103713 102064 ]; ··· 103752 102103 ]; 103753 102104 }) 103754 102105 sources."vscode-languageserver-textdocument-1.0.10" 103755 - sources."vscode-languageserver-types-3.17.3" 102106 + sources."vscode-languageserver-types-3.17.4" 103756 102107 sources."vscode-nls-4.1.2" 103757 102108 sources."vscode-uri-3.0.7" 103758 102109 ]; ··· 103989 102340 sources."@types/eslint-scope-3.7.4" 103990 102341 sources."@types/estree-1.0.1" 103991 102342 sources."@types/json-schema-7.0.13" 103992 - sources."@types/node-20.6.1" 102343 + sources."@types/node-20.6.3" 103993 102344 sources."@webassemblyjs/ast-1.11.6" 103994 102345 sources."@webassemblyjs/floating-point-hex-parser-1.11.6" 103995 102346 sources."@webassemblyjs/helper-api-error-1.11.6" ··· 104013 102364 sources."ajv-keywords-3.5.2" 104014 102365 sources."browserslist-4.21.10" 104015 102366 sources."buffer-from-1.1.2" 104016 - sources."caniuse-lite-1.0.30001534" 102367 + sources."caniuse-lite-1.0.30001538" 104017 102368 sources."chrome-trace-event-1.0.3" 104018 102369 sources."commander-2.20.3" 104019 - sources."electron-to-chromium-1.4.523" 102370 + sources."electron-to-chromium-1.4.525" 104020 102371 sources."enhanced-resolve-5.15.0" 104021 102372 sources."es-module-lexer-1.3.1" 104022 102373 sources."escalade-3.1.1" ··· 104052 102403 sources."source-map-support-0.5.21" 104053 102404 sources."supports-color-8.1.1" 104054 102405 sources."tapable-2.2.1" 104055 - sources."terser-5.19.4" 102406 + sources."terser-5.20.0" 104056 102407 sources."terser-webpack-plugin-5.3.9" 104057 - sources."update-browserslist-db-1.0.11" 102408 + sources."update-browserslist-db-1.0.12" 104058 102409 sources."uri-js-4.4.1" 104059 102410 sources."watchpack-2.4.0" 104060 102411 sources."webpack-5.88.2" ··· 104090 102441 sources."@types/eslint-scope-3.7.4" 104091 102442 sources."@types/estree-1.0.1" 104092 102443 sources."@types/json-schema-7.0.13" 104093 - sources."@types/node-20.6.1" 102444 + sources."@types/node-20.6.3" 104094 102445 sources."@webassemblyjs/ast-1.11.6" 104095 102446 sources."@webassemblyjs/floating-point-hex-parser-1.11.6" 104096 102447 sources."@webassemblyjs/helper-api-error-1.11.6" ··· 104117 102468 sources."ajv-keywords-3.5.2" 104118 102469 sources."browserslist-4.21.10" 104119 102470 sources."buffer-from-1.1.2" 104120 - sources."caniuse-lite-1.0.30001534" 102471 + sources."caniuse-lite-1.0.30001538" 104121 102472 sources."chrome-trace-event-1.0.3" 104122 102473 sources."clone-deep-4.0.1" 104123 102474 sources."colorette-2.0.20" 104124 102475 sources."commander-10.0.1" 104125 102476 sources."cross-spawn-7.0.3" 104126 - sources."electron-to-chromium-1.4.523" 102477 + sources."electron-to-chromium-1.4.525" 104127 102478 sources."enhanced-resolve-5.15.0" 104128 102479 sources."envinfo-7.10.0" 104129 102480 sources."es-module-lexer-1.3.1" ··· 104173 102524 sources."punycode-2.3.0" 104174 102525 sources."randombytes-2.1.0" 104175 102526 sources."rechoir-0.8.0" 104176 - sources."resolve-1.22.5" 102527 + sources."resolve-1.22.6" 104177 102528 sources."resolve-cwd-3.0.0" 104178 102529 sources."resolve-from-5.0.0" 104179 102530 sources."safe-buffer-5.2.1" ··· 104187 102538 sources."supports-color-8.1.1" 104188 102539 sources."supports-preserve-symlinks-flag-1.0.0" 104189 102540 sources."tapable-2.2.1" 104190 - (sources."terser-5.19.4" // { 102541 + (sources."terser-5.20.0" // { 104191 102542 dependencies = [ 104192 102543 sources."commander-2.20.3" 104193 102544 ]; 104194 102545 }) 104195 102546 sources."terser-webpack-plugin-5.3.9" 104196 - sources."update-browserslist-db-1.0.11" 102547 + sources."update-browserslist-db-1.0.12" 104197 102548 sources."uri-js-4.4.1" 104198 102549 sources."watchpack-2.4.0" 104199 102550 sources."webpack-5.88.2" ··· 104238 102589 sources."@types/estree-1.0.1" 104239 102590 sources."@types/express-4.17.17" 104240 102591 sources."@types/express-serve-static-core-4.17.36" 104241 - sources."@types/http-errors-2.0.1" 104242 - sources."@types/http-proxy-1.17.11" 102592 + sources."@types/http-errors-2.0.2" 102593 + sources."@types/http-proxy-1.17.12" 104243 102594 sources."@types/json-schema-7.0.13" 104244 102595 sources."@types/mime-1.3.2" 104245 - sources."@types/node-20.6.1" 102596 + sources."@types/node-20.6.3" 104246 102597 sources."@types/qs-6.9.8" 104247 102598 sources."@types/range-parser-1.2.4" 104248 102599 sources."@types/retry-0.12.0" ··· 104293 102644 sources."bufferutil-4.0.7" 104294 102645 sources."bytes-3.0.0" 104295 102646 sources."call-bind-1.0.2" 104296 - sources."caniuse-lite-1.0.30001534" 102647 + sources."caniuse-lite-1.0.30001538" 104297 102648 sources."chokidar-3.5.3" 104298 102649 sources."chrome-trace-event-1.0.3" 104299 102650 sources."colorette-2.0.20" ··· 104321 102672 sources."dns-equal-1.0.0" 104322 102673 sources."dns-packet-5.6.1" 104323 102674 sources."ee-first-1.1.1" 104324 - sources."electron-to-chromium-1.4.523" 102675 + sources."electron-to-chromium-1.4.525" 104325 102676 sources."encodeurl-1.0.2" 104326 102677 sources."enhanced-resolve-5.15.0" 104327 102678 sources."es-module-lexer-1.3.1" ··· 104349 102700 sources."faye-websocket-0.11.4" 104350 102701 sources."fill-range-7.0.1" 104351 102702 sources."finalhandler-1.2.0" 104352 - sources."follow-redirects-1.15.2" 102703 + sources."follow-redirects-1.15.3" 104353 102704 sources."forwarded-0.2.0" 104354 102705 sources."fresh-0.5.2" 104355 102706 sources."fs-monkey-1.0.4" ··· 104501 102852 sources."strip-final-newline-2.0.0" 104502 102853 sources."supports-color-8.1.1" 104503 102854 sources."tapable-2.2.1" 104504 - sources."terser-5.19.4" 102855 + sources."terser-5.20.0" 104505 102856 (sources."terser-webpack-plugin-5.3.9" // { 104506 102857 dependencies = [ 104507 102858 sources."ajv-6.12.6" ··· 104515 102866 sources."toidentifier-1.0.1" 104516 102867 sources."type-is-1.6.18" 104517 102868 sources."unpipe-1.0.0" 104518 - sources."update-browserslist-db-1.0.11" 102869 + sources."update-browserslist-db-1.0.12" 104519 102870 sources."uri-js-4.4.1" 104520 102871 sources."utf-8-validate-6.0.3" 104521 102872 sources."util-deprecate-1.0.2" ··· 104538 102889 sources."websocket-extensions-0.1.4" 104539 102890 sources."which-2.0.2" 104540 102891 sources."wrappy-1.0.2" 104541 - sources."ws-8.14.1" 102892 + sources."ws-8.14.2" 104542 102893 ]; 104543 102894 buildInputs = globalBuildInputs; 104544 102895 meta = { ··· 104572 102923 sources."@types/eslint-scope-3.7.4" 104573 102924 sources."@types/estree-1.0.1" 104574 102925 sources."@types/json-schema-7.0.13" 104575 - sources."@types/node-20.6.1" 102926 + sources."@types/node-20.6.3" 104576 102927 sources."@webassemblyjs/ast-1.11.6" 104577 102928 sources."@webassemblyjs/floating-point-hex-parser-1.11.6" 104578 102929 sources."@webassemblyjs/helper-api-error-1.11.6" ··· 104598 102949 sources."braces-3.0.2" 104599 102950 sources."browserslist-4.21.10" 104600 102951 sources."buffer-from-1.1.2" 104601 - sources."caniuse-lite-1.0.30001534" 102952 + sources."caniuse-lite-1.0.30001538" 104602 102953 sources."chrome-trace-event-1.0.3" 104603 102954 sources."commander-2.20.3" 104604 102955 sources."dir-glob-3.0.1" 104605 - sources."electron-to-chromium-1.4.523" 102956 + sources."electron-to-chromium-1.4.525" 104606 102957 sources."enhanced-resolve-5.15.0" 104607 102958 sources."es-module-lexer-1.3.1" 104608 102959 sources."escalade-3.1.1" ··· 104661 103012 sources."source-map-support-0.5.21" 104662 103013 sources."supports-color-8.1.1" 104663 103014 sources."tapable-2.2.1" 104664 - sources."terser-5.19.4" 103015 + sources."terser-5.20.0" 104665 103016 (sources."terser-webpack-plugin-5.3.9" // { 104666 103017 dependencies = [ 104667 103018 sources."ajv-6.12.6" ··· 104671 103022 ]; 104672 103023 }) 104673 103024 sources."to-regex-range-5.0.1" 104674 - sources."update-browserslist-db-1.0.11" 103025 + sources."update-browserslist-db-1.0.12" 104675 103026 sources."uri-js-4.4.1" 104676 103027 sources."watchpack-2.4.0" 104677 103028 (sources."webpack-5.88.2" // { ··· 104715 103066 sources."@protobufjs/pool-1.1.0" 104716 103067 sources."@protobufjs/utf8-1.1.0" 104717 103068 sources."@types/long-4.0.2" 104718 - sources."@types/node-20.6.1" 103069 + sources."@types/node-20.6.3" 104719 103070 sources."@webtorrent/http-node-1.3.0" 104720 103071 sources."addr-to-ip-port-1.5.4" 104721 103072 sources."airplay-js-0.3.0" ··· 105105 103456 "@withgraphite/graphite-cli" = nodeEnv.buildNodePackage { 105106 103457 name = "_at_withgraphite_slash_graphite-cli"; 105107 103458 packageName = "@withgraphite/graphite-cli"; 105108 - version = "1.0.2"; 103459 + version = "1.0.5"; 105109 103460 src = fetchurl { 105110 - url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-1.0.2.tgz"; 105111 - sha512 = "QLkH4O/yIYBUNZIifVfWTOaRV/NcCTDZvOznaJLnNbEBmW5Su6JfYgHJUlyqekZNiDWYJDvtU3IXsJvluYUVDw=="; 103461 + url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-1.0.5.tgz"; 103462 + sha512 = "A+EcK+c64mr0mHIXQ76nMKZn9D1YukdxIhh0HKIdWCEFYB6ymsGNaDMttuQIlp/K1ub6hEjW9Ol7tk1LSt/r2w=="; 105112 103463 }; 105113 103464 dependencies = [ 105114 103465 sources."ansi-regex-5.0.1" ··· 105130 103481 sources."supports-color-7.2.0" 105131 103482 sources."utf-8-validate-6.0.3" 105132 103483 sources."wrap-ansi-7.0.0" 105133 - sources."ws-8.14.1" 103484 + sources."ws-8.14.2" 105134 103485 sources."y18n-5.0.8" 105135 103486 sources."yargs-17.7.2" 105136 103487 sources."yargs-parser-21.1.1" ··· 105147 103498 wrangler = nodeEnv.buildNodePackage { 105148 103499 name = "wrangler"; 105149 103500 packageName = "wrangler"; 105150 - version = "3.8.0"; 103501 + version = "3.9.0"; 105151 103502 src = fetchurl { 105152 - url = "https://registry.npmjs.org/wrangler/-/wrangler-3.8.0.tgz"; 105153 - sha512 = "sTdD+6fMEpM9ROxv+gcyxgTKpnf7tB5ftRV5+wupsdljWkow5C00UCWU/IWSOUfuitAGAj1PWATjKfrRp9Bk9w=="; 103503 + url = "https://registry.npmjs.org/wrangler/-/wrangler-3.9.0.tgz"; 103504 + sha512 = "Ho1A76KxbqfcRgCsuN6xGar3BVPyn4oVWM9zx0HvEVhT9wQ7n/LvB6GlPdXKABqEBYhVe/oTH72S5TgWl0DgaA=="; 105154 103505 }; 105155 103506 dependencies = [ 105156 103507 sources."@cloudflare/kv-asset-handler-0.2.0" ··· 105187 103538 sources."acorn-walk-8.2.0" 105188 103539 sources."anymatch-3.1.3" 105189 103540 sources."as-table-1.0.55" 105190 - sources."base64-js-1.5.1" 105191 - sources."better-sqlite3-8.6.0" 105192 103541 sources."binary-extensions-2.2.0" 105193 - sources."bindings-1.5.0" 105194 - sources."bl-4.1.0" 105195 103542 sources."blake3-wasm-2.1.5" 105196 103543 sources."braces-3.0.2" 105197 - sources."buffer-5.7.1" 105198 103544 sources."buffer-from-1.1.2" 105199 103545 sources."bufferutil-4.0.7" 105200 103546 sources."busboy-1.6.0" 105201 103547 sources."capnp-ts-0.7.0" 105202 103548 sources."chokidar-3.5.3" 105203 - sources."chownr-1.1.4" 105204 103549 sources."cookie-0.5.0" 105205 103550 sources."data-uri-to-buffer-2.0.2" 105206 103551 sources."debug-4.3.4" 105207 - sources."decompress-response-6.0.0" 105208 - sources."deep-extend-0.6.0" 105209 - sources."detect-libc-2.0.2" 105210 - sources."end-of-stream-1.4.4" 105211 103552 sources."esbuild-0.17.19" 105212 103553 sources."escape-string-regexp-4.0.0" 105213 103554 sources."estree-walker-0.6.1" 105214 103555 sources."exit-hook-2.2.1" 105215 - sources."expand-template-2.0.3" 105216 - sources."file-uri-to-path-1.0.0" 105217 103556 sources."fill-range-7.0.1" 105218 - sources."fs-constants-1.0.0" 105219 103557 sources."fsevents-2.3.3" 105220 - (sources."get-source-2.0.12" // { 105221 - dependencies = [ 105222 - sources."source-map-0.6.1" 105223 - ]; 105224 - }) 105225 - sources."github-from-package-0.0.0" 103558 + sources."get-source-2.0.12" 105226 103559 sources."glob-parent-5.1.2" 105227 103560 sources."glob-to-regexp-0.4.1" 105228 - sources."http-cache-semantics-4.1.1" 105229 - sources."ieee754-1.2.1" 105230 - sources."inherits-2.0.4" 105231 - sources."ini-1.3.8" 105232 103561 sources."is-binary-path-2.1.0" 105233 103562 sources."is-extglob-2.1.1" 105234 103563 sources."is-glob-4.0.3" 105235 103564 sources."is-number-7.0.0" 105236 - sources."kleur-4.1.5" 105237 - sources."lru-cache-6.0.0" 105238 103565 sources."magic-string-0.25.9" 105239 103566 sources."mime-3.0.0" 105240 - sources."mimic-response-3.1.0" 105241 - sources."miniflare-3.20230904.0" 105242 - sources."minimist-1.2.8" 105243 - sources."mkdirp-classic-0.5.3" 103567 + sources."miniflare-3.20230918.0" 105244 103568 sources."ms-2.1.2" 105245 103569 sources."mustache-4.2.0" 105246 103570 sources."nanoid-3.3.6" 105247 - sources."napi-build-utils-1.0.2" 105248 - sources."node-abi-3.47.0" 105249 103571 sources."node-forge-1.3.1" 105250 103572 sources."node-gyp-build-4.6.1" 105251 103573 sources."normalize-path-3.0.0" 105252 - sources."once-1.4.0" 105253 103574 sources."path-to-regexp-6.2.1" 105254 103575 sources."picomatch-2.3.1" 105255 - sources."prebuild-install-7.1.1" 105256 103576 sources."printable-characters-1.0.42" 105257 - sources."pump-3.0.0" 105258 - sources."rc-1.2.8" 105259 - sources."readable-stream-3.6.2" 105260 103577 sources."readdirp-3.6.0" 105261 103578 sources."rollup-plugin-inject-3.0.2" 105262 103579 sources."rollup-plugin-node-polyfills-0.2.1" 105263 103580 sources."rollup-pluginutils-2.8.2" 105264 - sources."safe-buffer-5.2.1" 105265 103581 sources."selfsigned-2.1.1" 105266 - sources."semver-7.5.4" 105267 - sources."simple-concat-1.0.1" 105268 - sources."simple-get-4.0.1" 105269 - sources."source-map-0.7.4" 105270 - (sources."source-map-support-0.5.21" // { 105271 - dependencies = [ 105272 - sources."source-map-0.6.1" 105273 - ]; 105274 - }) 103582 + sources."source-map-0.6.1" 103583 + sources."source-map-support-0.5.21" 105275 103584 sources."sourcemap-codec-1.4.8" 105276 103585 sources."stacktracey-2.1.8" 105277 103586 sources."stoppable-1.1.0" 105278 103587 sources."streamsearch-1.1.0" 105279 - sources."string_decoder-1.3.0" 105280 - sources."strip-json-comments-2.0.1" 105281 - sources."tar-fs-2.1.1" 105282 - sources."tar-stream-2.2.0" 105283 103588 sources."to-regex-range-5.0.1" 105284 103589 sources."tslib-2.6.2" 105285 - sources."tunnel-agent-0.6.0" 105286 - sources."undici-5.24.0" 103590 + sources."undici-5.25.1" 105287 103591 sources."utf-8-validate-6.0.3" 105288 - sources."util-deprecate-1.0.2" 105289 103592 sources."workerd-1.20230904.0" 105290 - sources."wrappy-1.0.2" 105291 - sources."ws-8.14.1" 103593 + sources."ws-8.14.2" 105292 103594 sources."xxhash-wasm-1.0.2" 105293 - sources."yallist-4.0.0" 105294 103595 sources."youch-3.3.1" 105295 103596 sources."zod-3.22.2" 105296 103597 ]; ··· 105465 103766 sources."@serialport/parser-slip-encoder-10.5.0" 105466 103767 sources."@serialport/parser-spacepacket-10.5.0" 105467 103768 sources."@serialport/stream-10.5.0" 105468 - sources."@types/http-cache-semantics-4.0.1" 103769 + sources."@types/http-cache-semantics-4.0.2" 105469 103770 sources."@types/triple-beam-1.3.3" 105470 103771 sources."@zwave-js/cc-11.14.0" 105471 103772 sources."@zwave-js/config-11.14.0" ··· 105497 103798 sources."colorspace-1.1.4" 105498 103799 sources."combined-stream-1.0.8" 105499 103800 sources."cross-spawn-7.0.3" 105500 - sources."dayjs-1.11.9" 103801 + sources."dayjs-1.11.10" 105501 103802 sources."debug-4.3.4" 105502 103803 sources."decompress-response-6.0.0" 105503 103804 sources."defer-to-connect-2.0.1" ··· 105512 103813 sources."fecha-4.2.3" 105513 103814 sources."file-stream-rotator-0.6.1" 105514 103815 sources."fn.name-1.1.0" 105515 - sources."follow-redirects-1.15.2" 103816 + sources."follow-redirects-1.15.3" 105516 103817 sources."form-data-4.0.0" 105517 103818 sources."fs-extra-10.1.0" 105518 103819 sources."get-caller-file-2.0.5" ··· 105589 103890 sources."winston-daily-rotate-file-4.7.1" 105590 103891 sources."winston-transport-4.5.0" 105591 103892 sources."wrap-ansi-7.0.0" 105592 - sources."ws-8.14.1" 103893 + sources."ws-8.14.2" 105593 103894 sources."xstate-4.38.0" 105594 103895 sources."y18n-5.0.8" 105595 103896 sources."yallist-4.0.0"
-15
pkgs/development/node-packages/overrides.nix
··· 29 29 buildInputs = [ final.node-gyp-build ]; 30 30 }; 31 31 32 - "@forge/cli" = prev."@forge/cli".override (old: { 33 - nativeBuildInputs = [ pkgs.pkg-config ]; 34 - buildInputs = with pkgs; [ 35 - libsecret 36 - final.node-gyp-build 37 - final.node-pre-gyp 38 - ] ++ lib.optionals stdenv.isDarwin [ 39 - darwin.apple_sdk.frameworks.AppKit 40 - darwin.apple_sdk.frameworks.Security 41 - ]; 42 - meta = old.meta // { 43 - license = lib.licenses.unfree; # unlicensed 44 - }; 45 - }); 46 - 47 32 autoprefixer = prev.autoprefixer.override { 48 33 nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ]; 49 34 postInstall = ''
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "ailment"; 11 - version = "9.2.68"; 11 + version = "9.2.69"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-dQ4N1ixqcX+pHm6BIykISiHyao5kxJP+pFFqFV8+Ah0="; 20 + hash = "sha256-qoewPYu4BO5VZq3MXg0j+L58dTusaoqrsrHo6stepJQ="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "angr"; 35 - version = "9.2.68"; 35 + version = "9.2.69"; 36 36 format = "pyproject"; 37 37 38 38 disabled = pythonOlder "3.8"; ··· 41 41 owner = pname; 42 42 repo = pname; 43 43 rev = "refs/tags/v${version}"; 44 - hash = "sha256-+RDsYDROIbcuXl5q45T6lFzDpObWduOK9paDBALbImg="; 44 + hash = "sha256-6I8ybszEIWVtIVNPxkxP7W5jHH66XaaGZ5yF59CXBAc="; 45 45 }; 46 46 47 47 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "archinfo"; 11 - version = "9.2.68"; 11 + version = "9.2.69"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-rbhzqp8PaotOt5d4E8hqWTwDRsG+hm7sVjBDkkblaIU="; 20 + hash = "sha256-VvTUIFJ5XCo+iGKofv6aMhBS3To1uyWgwEsGXz2bOwE="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "claripy"; 16 - version = "9.2.68"; 16 + version = "9.2.69"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "angr"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-ZMXlCfeSt2Dcvuc0CdB27rfSIEIgvMS81s7nAbmw5QM="; 25 + hash = "sha256-l1l4E0NES06ewf499vE9fmYuqAFaylRamDrJSkGEGMQ="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/cle/default.nix
··· 16 16 17 17 let 18 18 # The binaries are following the argr projects release cycle 19 - version = "9.2.68"; 19 + version = "9.2.69"; 20 20 21 21 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 22 22 binaries = fetchFromGitHub { 23 23 owner = "angr"; 24 24 repo = "binaries"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-03DyvPht4E4uysKqgyfu8hxu1qh+YzWsTI09E4ftiSs="; 26 + hash = "sha256-AURNfPdmvMwVxYwLa60T7pJxKbGbTy3xeH/jm1Qdad0="; 27 27 }; 28 28 29 29 in ··· 38 38 owner = "angr"; 39 39 repo = pname; 40 40 rev = "refs/tags/v${version}"; 41 - hash = "sha256-qJrVAofIhoYS9dA/ipLh6Xuyt2b+trDRE/yq8tV9arI="; 41 + hash = "sha256-6NDNGcKiBKKzkzXx/gnSyO/dCHD4VrcClGCMndwxF9Q="; 42 42 }; 43 43 44 44 nativeBuildInputs = [
+2 -12
pkgs/development/python-modules/hyperpyyaml/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , pyyaml 6 5 , ruamel-yaml 7 6 , pytestCheckHook ··· 9 8 10 9 buildPythonPackage rec { 11 10 pname = "hyperpyyaml"; 12 - version = "1.2.1"; 11 + version = "1.2.2"; 13 12 format = "setuptools"; 14 13 15 14 src = fetchFromGitHub { 16 15 owner = "speechbrain"; 17 16 repo = "hyperpyyaml"; 18 17 rev = "refs/tags/v${version}"; 19 - hash = "sha256-tC4kLJAY9MVgjWwU2Qu0rPCVDw7CjKVIciRZgYhnR9I="; 18 + hash = "sha256-eA4/wXmqlqomfRbJNi7dkBRoxneCbCbURSPvASF2sgA="; 20 19 }; 21 - 22 - patches = [ 23 - # This patch is needed to comply with the newer versions of ruamel.yaml. 24 - # PR to upstream this change: https://github.com/speechbrain/HyperPyYAML/pull/23 25 - (fetchpatch { 26 - url = "https://github.com/speechbrain/HyperPyYAML/commit/95c6133686c42764770a77429eab55f6dfe5581c.patch"; 27 - hash = "sha256-WrHDo17f5pYNXSSqI8t1tlAloYms9oLFup7D2qCKwWw="; 28 - }) 29 - ]; 30 20 31 21 propagatedBuildInputs = [ 32 22 pyyaml
+3 -3
pkgs/development/python-modules/jaxtyping/default.nix
··· 16 16 let 17 17 self = buildPythonPackage rec { 18 18 pname = "jaxtyping"; 19 - version = "0.2.21"; 20 - format = "pyproject"; 19 + version = "0.2.22"; 20 + pyproject = true; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "google"; 24 24 repo = "jaxtyping"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-BacfFcrzXeS6LemU7P6oCZJGB/Zzq09kEPuz2rTIyfI="; 26 + hash = "sha256-OYx7Eq5jxSGERHsk611+n+Nq2B915gpJLPZYdO7Lt+k="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/merge3/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "merge3"; 10 - version = "0.0.13"; 10 + version = "0.0.14"; 11 11 12 12 format = "pyproject"; 13 13 ··· 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "8abda1d2d49776323d23d09bfdd80d943a57d43d28d6152ffd2c87956a9b6b54"; 18 + sha256 = "sha256-MEBumThvSmUoD7nEPmgYkPoqHYOcrCdZ0VbHzBYDAVk="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pydata-sphinx-theme/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pydata-sphinx-theme"; 15 - version = "0.14.0"; 15 + version = "0.14.1"; 16 16 17 17 format = "wheel"; 18 18 ··· 23 23 dist = "py3"; 24 24 python = "py3"; 25 25 pname = "pydata_sphinx_theme"; 26 - hash = "sha256-vffSdZFOdnVijKK/brOiHQ76DmuZo6VCGDJZQHZ1TDM="; 26 + hash = "sha256-xDYCe8dq4CPfTnBRfjuvkM3aWojuRrgYte8Mw4hKugQ="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+41
pkgs/development/python-modules/pytest-reverse/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , setuptools 5 + , pytest 6 + , pytestCheckHook 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "pytest-reverse"; 12 + version = "1.7.0"; 13 + format = "pyproject"; 14 + 15 + disable = pythonOlder "3.7"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "adamchainz"; 19 + repo = "pytest-reverse"; 20 + rev = version; 21 + hash = "sha256-r0aSbUgArHQkpaXUvMT6oyOxEliQRtSGuDt4IILzhH4="; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + setuptools 26 + ]; 27 + 28 + buildInputs = [ pytest ]; 29 + 30 + nativeCheckInputs = [ pytestCheckHook ]; 31 + 32 + pythonImportsCheck = [ "pytest_reverse" ]; 33 + 34 + meta = with lib; { 35 + description = "Pytest plugin to reverse test order"; 36 + homepage = "https://github.com/adamchainz/pytest-reverse"; 37 + changelog = "https://github.com/adamchainz/pytest-reverse/blob/${version}/CHANGELOG.rst"; 38 + license = licenses.mit; 39 + maintainers = with maintainers; [ mbalatsko ]; 40 + }; 41 + }
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pyvex"; 16 - version = "9.2.68"; 16 + version = "9.2.69"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-Wsme663FssNGG/XhjkFi3tFeyli1yiofBQQiXi9P6nI="; 23 + hash = "sha256-qyqWJ3B4R7aKHDsTJ29luwTfVysMx56hY82rBgRS2Sw="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+4 -4
pkgs/development/tools/api-linter/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "api-linter"; 8 - version = "1.56.1"; 8 + version = "1.57.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "googleapis"; 12 12 repo = "api-linter"; 13 13 rev = "v${version}"; 14 - hash = "sha256-X8S8hfdfoqWRhJIuhNEZFXIAW1k5nFvE5v/7homO1Ow="; 14 + hash = "sha256-wDHn+1JYP7u96NZNryuneMeojcTd0JXKCikuCFBLcZI="; 15 15 }; 16 16 17 - vendorHash = "sha256-6MvXVHg4EH5S37JnY0jnAFjDplQINWPFyd54c1W/oAE="; 17 + vendorHash = "sha256-qoUDBBoiddAGAIQa6Q87ne2+Cass8rA2rUpxH3QB9nM="; 18 18 19 19 subPackages = [ "cmd/api-linter" ]; 20 20 ··· 23 23 "-w" 24 24 ]; 25 25 26 - # reference: https://github.com/googleapis/api-linter/blob/v1.56.1/.github/workflows/release.yaml#L76 26 + # reference: https://github.com/googleapis/api-linter/blob/v1.57.1/.github/workflows/release.yaml#L76 27 27 preBuild = '' 28 28 cat > cmd/api-linter/version.go <<EOF 29 29 package main
+3 -3
pkgs/development/tools/bacon/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "bacon"; 10 - version = "2.12.1"; 10 + version = "2.13.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "Canop"; 14 14 repo = pname; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-oD60D98mPQV454uld+g6FVKAxpyjwrfMAVfQcVPp9Fg="; 16 + hash = "sha256-KFBb5poogtFnYePu9E5XBE0sKKev2Fuxaqj5ypscuqA="; 17 17 }; 18 18 19 - cargoHash = "sha256-lX1IXVGVCe/7jbkjIu+ammWi0BgE+r1tpsZaqz4WLPY="; 19 + cargoHash = "sha256-OA8068ISy2WoC34Q0ANrWX27ESErntCfZ5IrO8Lvm10="; 20 20 21 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 22 CoreServices
+2 -2
pkgs/development/tools/buildah/default.nix
··· 17 17 18 18 buildGoModule rec { 19 19 pname = "buildah"; 20 - version = "1.31.3"; 20 + version = "1.32.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "containers"; 24 24 repo = "buildah"; 25 25 rev = "v${version}"; 26 - hash = "sha256-Uqs4MlKwFz4EGd6HTGXqcLTSfYPJTpgKKyXmA3B3RjU="; 26 + hash = "sha256-Sjmh7zVaZ8ATgDr1VN0U03rHlPBvv3lVDxKmAahjJ2M="; 27 27 }; 28 28 29 29 outputs = [ "out" "man" ];
+2 -2
pkgs/development/tools/castxml/default.nix
··· 17 17 in 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "castxml"; 20 - version = "0.6.1"; 20 + version = "0.6.2"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "CastXML"; 24 24 repo = "CastXML"; 25 25 rev = "v${finalAttrs.version}"; 26 - hash = "sha256-dyB2h6Yix2lZbVFVCz8nWNNubFSEVBlRpjVrBRec4Xo="; 26 + hash = "sha256-x27koa0q+rDqPmfHMf7v7KTx3bfDgqS/FkPAX5auqaw="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+3 -3
pkgs/development/tools/paging-calculator/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "paging-calculator"; 8 - version = "0.2.0"; 8 + version = "0.3.0"; 9 9 10 10 src = fetchCrate { 11 11 inherit pname version; 12 - hash = "sha256-GxugaNLkLy71X/E9EAn/2p2ReSHvs5TvXAxg8csu9uc="; 12 + hash = "sha256-uoijIA9xmifxHlMRo5Rh/Qy1wxiiCNLJnDysI01uPvk="; 13 13 }; 14 14 15 - cargoHash = "sha256-a1yryyKCcNQVurqnb+AZiBQ0rilNsuXmSsFoaaBe+r8="; 15 + cargoHash = "sha256-RbBlZCRVXZLXvz+/olkh2MqJiWq63AwLvo+/5UGRuyM="; 16 16 17 17 meta = { 18 18 description = "CLI utility that helps calculating page table indices from a virtual address";
+165 -142
pkgs/development/tools/rust/cargo-component/Cargo.lock
··· 31 31 32 32 [[package]] 33 33 name = "aho-corasick" 34 - version = "1.0.5" 34 + version = "1.1.0" 35 35 source = "registry+https://github.com/rust-lang/crates.io-index" 36 - checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" 36 + checksum = "0f2135563fb5c609d2b2b87c1e8ce7bc41b0b45430fa9661f457981503dd5bf0" 37 37 dependencies = [ 38 38 "memchr", 39 39 ] ··· 69 69 70 70 [[package]] 71 71 name = "anstyle" 72 - version = "1.0.2" 72 + version = "1.0.3" 73 73 source = "registry+https://github.com/rust-lang/crates.io-index" 74 - checksum = "15c4c2c83f81532e5845a733998b6971faca23490340a418e9b72a3ec9de12ea" 74 + checksum = "b84bf0a05bbb2a83e5eb6fa36bb6e87baa08193c35ff52bbf6b38d8af2890e46" 75 75 76 76 [[package]] 77 77 name = "anstyle-parse" ··· 218 218 219 219 [[package]] 220 220 name = "async-recursion" 221 - version = "1.0.4" 221 + version = "1.0.5" 222 222 source = "registry+https://github.com/rust-lang/crates.io-index" 223 - checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" 223 + checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 224 224 dependencies = [ 225 225 "proc-macro2", 226 226 "quote", 227 - "syn 2.0.29", 227 + "syn 2.0.37", 228 228 ] 229 229 230 230 [[package]] ··· 241 241 dependencies = [ 242 242 "proc-macro2", 243 243 "quote", 244 - "syn 2.0.29", 244 + "syn 2.0.37", 245 245 ] 246 246 247 247 [[package]] ··· 316 316 "heck", 317 317 "proc-macro2", 318 318 "quote", 319 - "syn 2.0.29", 319 + "syn 2.0.37", 320 320 ] 321 321 322 322 [[package]] ··· 348 348 349 349 [[package]] 350 350 name = "base64" 351 - version = "0.21.3" 351 + version = "0.21.4" 352 352 source = "registry+https://github.com/rust-lang/crates.io-index" 353 - checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53" 353 + checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" 354 354 355 355 [[package]] 356 356 name = "base64ct" ··· 429 429 430 430 [[package]] 431 431 name = "bumpalo" 432 - version = "3.13.0" 432 + version = "3.14.0" 433 433 source = "registry+https://github.com/rust-lang/crates.io-index" 434 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 434 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 435 435 436 436 [[package]] 437 437 name = "byteorder" ··· 441 441 442 442 [[package]] 443 443 name = "bytes" 444 - version = "1.4.0" 444 + version = "1.5.0" 445 445 source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 446 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 447 447 448 448 [[package]] 449 449 name = "camino" ··· 480 480 "serde_json", 481 481 "tokio", 482 482 "tokio-util", 483 - "toml_edit", 483 + "toml_edit 0.20.0", 484 484 "url", 485 485 "warg-client", 486 486 "warg-crypto", 487 487 "warg-protocol", 488 488 "warg-server", 489 489 "wasm-metadata", 490 - "wasmparser 0.112.0", 490 + "wasmparser 0.113.1", 491 491 "wat", 492 492 "wit-bindgen-rust-lib", 493 493 "wit-component", ··· 517 517 "semver", 518 518 "serde", 519 519 "tokio", 520 - "toml_edit", 520 + "toml_edit 0.20.0", 521 521 "unicode-width", 522 522 "url", 523 523 "warg-client", ··· 535 535 "heck", 536 536 "proc-macro2", 537 537 "quote", 538 - "syn 2.0.29", 538 + "syn 2.0.37", 539 539 "wit-bindgen-core", 540 540 "wit-bindgen-rust", 541 541 "wit-bindgen-rust-lib", ··· 553 553 554 554 [[package]] 555 555 name = "cargo_metadata" 556 - version = "0.17.0" 556 + version = "0.18.0" 557 557 source = "registry+https://github.com/rust-lang/crates.io-index" 558 - checksum = "e7daec1a2a2129eeba1644b220b4647ec537b0b5d4bfd6876fcc5a540056b592" 558 + checksum = "fb9ac64500cc83ce4b9f8dafa78186aa008c8dea77a09b94cd307fd0cd5022a8" 559 559 dependencies = [ 560 560 "camino", 561 561 "cargo-platform", ··· 582 582 583 583 [[package]] 584 584 name = "chrono" 585 - version = "0.4.27" 585 + version = "0.4.31" 586 586 source = "registry+https://github.com/rust-lang/crates.io-index" 587 - checksum = "f56b4c72906975ca04becb8a30e102dfecddd0c06181e3e95ddc444be28881f8" 587 + checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 588 588 dependencies = [ 589 589 "android-tzdata", 590 590 "iana-time-zone", ··· 604 604 605 605 [[package]] 606 606 name = "clap" 607 - version = "4.4.1" 607 + version = "4.4.4" 608 608 source = "registry+https://github.com/rust-lang/crates.io-index" 609 - checksum = "7c8d502cbaec4595d2e7d5f61e318f05417bd2b66fdc3809498f0d3fdf0bea27" 609 + checksum = "b1d7b8d5ec32af0fadc644bf1fd509a688c2103b185644bb1e29d164e0703136" 610 610 dependencies = [ 611 611 "clap_builder", 612 612 "clap_derive", 613 - "once_cell", 614 613 ] 615 614 616 615 [[package]] 617 616 name = "clap_builder" 618 - version = "4.4.1" 617 + version = "4.4.4" 619 618 source = "registry+https://github.com/rust-lang/crates.io-index" 620 - checksum = "5891c7bc0edb3e1c2204fc5e94009affabeb1821c9e5fdc3959536c5c0bb984d" 619 + checksum = "5179bb514e4d7c2051749d8fcefa2ed6d06a9f4e6d69faf3805f5d80b8cf8d56" 621 620 dependencies = [ 622 621 "anstream", 623 622 "anstyle", ··· 627 626 628 627 [[package]] 629 628 name = "clap_derive" 630 - version = "4.4.0" 629 + version = "4.4.2" 631 630 source = "registry+https://github.com/rust-lang/crates.io-index" 632 - checksum = "c9fd1a5729c4548118d7d70ff234a44868d00489a4b6597b0b020918a0e91a1a" 631 + checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" 633 632 dependencies = [ 634 633 "heck", 635 634 "proc-macro2", 636 635 "quote", 637 - "syn 2.0.29", 636 + "syn 2.0.37", 638 637 ] 639 638 640 639 [[package]] ··· 700 699 701 700 [[package]] 702 701 name = "crypto-bigint" 703 - version = "0.5.2" 702 + version = "0.5.3" 704 703 source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15" 704 + checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124" 706 705 dependencies = [ 707 706 "generic-array", 708 707 "rand_core", ··· 741 740 "proc-macro2", 742 741 "quote", 743 742 "strsim", 744 - "syn 2.0.29", 743 + "syn 2.0.37", 745 744 ] 746 745 747 746 [[package]] ··· 752 751 dependencies = [ 753 752 "darling_core", 754 753 "quote", 755 - "syn 2.0.29", 754 + "syn 2.0.37", 756 755 ] 757 756 758 757 [[package]] ··· 882 881 883 882 [[package]] 884 883 name = "enumflags2" 885 - version = "0.7.7" 884 + version = "0.7.8" 886 885 source = "registry+https://github.com/rust-lang/crates.io-index" 887 - checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2" 886 + checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 888 887 dependencies = [ 889 888 "enumflags2_derive", 890 889 "serde", ··· 892 891 893 892 [[package]] 894 893 name = "enumflags2_derive" 895 - version = "0.7.7" 894 + version = "0.7.8" 896 895 source = "registry+https://github.com/rust-lang/crates.io-index" 897 - checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" 896 + checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 898 897 dependencies = [ 899 898 "proc-macro2", 900 899 "quote", 901 - "syn 2.0.29", 900 + "syn 2.0.37", 902 901 ] 903 902 904 903 [[package]] ··· 1088 1087 dependencies = [ 1089 1088 "proc-macro2", 1090 1089 "quote", 1091 - "syn 2.0.29", 1090 + "syn 2.0.37", 1092 1091 ] 1093 1092 1094 1093 [[package]] ··· 1193 1192 1194 1193 [[package]] 1195 1194 name = "headers" 1196 - version = "0.3.8" 1195 + version = "0.3.9" 1197 1196 source = "registry+https://github.com/rust-lang/crates.io-index" 1198 - checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 1197 + checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" 1199 1198 dependencies = [ 1200 - "base64 0.13.1", 1201 - "bitflags 1.3.2", 1199 + "base64 0.21.4", 1202 1200 "bytes", 1203 1201 "headers-core", 1204 1202 "http", ··· 1253 1251 checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1254 1252 dependencies = [ 1255 1253 "digest", 1254 + ] 1255 + 1256 + [[package]] 1257 + name = "home" 1258 + version = "0.5.5" 1259 + source = "registry+https://github.com/rust-lang/crates.io-index" 1260 + checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 1261 + dependencies = [ 1262 + "windows-sys", 1256 1263 ] 1257 1264 1258 1265 [[package]] ··· 1438 1445 checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1439 1446 dependencies = [ 1440 1447 "hermit-abi", 1441 - "rustix 0.38.10", 1448 + "rustix 0.38.13", 1442 1449 "windows-sys", 1443 1450 ] 1444 1451 ··· 1503 1510 1504 1511 [[package]] 1505 1512 name = "libc" 1506 - version = "0.2.147" 1513 + version = "0.2.148" 1507 1514 source = "registry+https://github.com/rust-lang/crates.io-index" 1508 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1515 + checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" 1509 1516 1510 1517 [[package]] 1511 1518 name = "linux-keyutils" ··· 1525 1532 1526 1533 [[package]] 1527 1534 name = "linux-raw-sys" 1528 - version = "0.4.5" 1535 + version = "0.4.7" 1529 1536 source = "registry+https://github.com/rust-lang/crates.io-index" 1530 - checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 1537 + checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" 1531 1538 1532 1539 [[package]] 1533 1540 name = "lock_api" ··· 1565 1572 "proc-macro2", 1566 1573 "quote", 1567 1574 "regex-syntax 0.6.29", 1568 - "syn 2.0.29", 1575 + "syn 2.0.37", 1569 1576 ] 1570 1577 1571 1578 [[package]] ··· 1585 1592 1586 1593 [[package]] 1587 1594 name = "memchr" 1588 - version = "2.6.2" 1595 + version = "2.6.3" 1589 1596 source = "registry+https://github.com/rust-lang/crates.io-index" 1590 - checksum = "5486aed0026218e61b8a01d5fbd5a0a134649abb71a0e53b7bc088529dced86e" 1597 + checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" 1591 1598 1592 1599 [[package]] 1593 1600 name = "memoffset" ··· 1618 1625 dependencies = [ 1619 1626 "proc-macro2", 1620 1627 "quote", 1621 - "syn 2.0.29", 1628 + "syn 2.0.37", 1622 1629 ] 1623 1630 1624 1631 [[package]] ··· 1806 1813 1807 1814 [[package]] 1808 1815 name = "object" 1809 - version = "0.32.0" 1816 + version = "0.32.1" 1810 1817 source = "registry+https://github.com/rust-lang/crates.io-index" 1811 - checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe" 1818 + checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 1812 1819 dependencies = [ 1813 1820 "memchr", 1814 1821 ] ··· 1848 1855 dependencies = [ 1849 1856 "proc-macro2", 1850 1857 "quote", 1851 - "syn 2.0.29", 1858 + "syn 2.0.37", 1852 1859 ] 1853 1860 1854 1861 [[package]] ··· 1859 1866 1860 1867 [[package]] 1861 1868 name = "openssl-sys" 1862 - version = "0.9.92" 1869 + version = "0.9.93" 1863 1870 source = "registry+https://github.com/rust-lang/crates.io-index" 1864 - checksum = "db7e971c2c2bba161b2d2fdf37080177eff520b3bc044787c7f1f5f9e78d869b" 1871 + checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 1865 1872 dependencies = [ 1866 1873 "cc", 1867 1874 "libc", ··· 2029 2036 dependencies = [ 2030 2037 "proc-macro2", 2031 2038 "quote", 2032 - "syn 2.0.29", 2039 + "syn 2.0.37", 2033 2040 ] 2034 2041 2035 2042 [[package]] ··· 2084 2091 2085 2092 [[package]] 2086 2093 name = "predicates" 2087 - version = "3.0.3" 2094 + version = "3.0.4" 2088 2095 source = "registry+https://github.com/rust-lang/crates.io-index" 2089 - checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9" 2096 + checksum = "6dfc28575c2e3f19cb3c73b93af36460ae898d426eba6fc15b9bd2a5220758a0" 2090 2097 dependencies = [ 2091 2098 "anstyle", 2092 2099 "difflib", 2093 2100 "float-cmp", 2094 - "itertools 0.10.5", 2101 + "itertools 0.11.0", 2095 2102 "normalize-line-endings", 2096 2103 "predicates-core", 2097 2104 "regex", ··· 2149 2156 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2150 2157 dependencies = [ 2151 2158 "once_cell", 2152 - "toml_edit", 2159 + "toml_edit 0.19.15", 2153 2160 ] 2154 2161 2155 2162 [[package]] 2156 2163 name = "proc-macro2" 2157 - version = "1.0.66" 2164 + version = "1.0.67" 2158 2165 source = "registry+https://github.com/rust-lang/crates.io-index" 2159 - checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 2166 + checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" 2160 2167 dependencies = [ 2161 2168 "unicode-ident", 2162 2169 ] ··· 2336 2343 2337 2344 [[package]] 2338 2345 name = "regex" 2339 - version = "1.9.4" 2346 + version = "1.9.5" 2340 2347 source = "registry+https://github.com/rust-lang/crates.io-index" 2341 - checksum = "12de2eff854e5fa4b1295edd650e227e9d8fb0c9e90b12e7f36d6a6811791a29" 2348 + checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" 2342 2349 dependencies = [ 2343 2350 "aho-corasick", 2344 2351 "memchr", ··· 2348 2355 2349 2356 [[package]] 2350 2357 name = "regex-automata" 2351 - version = "0.3.7" 2358 + version = "0.3.8" 2352 2359 source = "registry+https://github.com/rust-lang/crates.io-index" 2353 - checksum = "49530408a136e16e5b486e883fbb6ba058e8e4e8ae6621a77b048b314336e629" 2360 + checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" 2354 2361 dependencies = [ 2355 2362 "aho-corasick", 2356 2363 "memchr", ··· 2375 2382 source = "registry+https://github.com/rust-lang/crates.io-index" 2376 2383 checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" 2377 2384 dependencies = [ 2378 - "base64 0.21.3", 2385 + "base64 0.21.4", 2379 2386 "bytes", 2380 2387 "encoding_rs", 2381 2388 "futures-core", ··· 2461 2468 2462 2469 [[package]] 2463 2470 name = "rustix" 2464 - version = "0.38.10" 2471 + version = "0.38.13" 2465 2472 source = "registry+https://github.com/rust-lang/crates.io-index" 2466 - checksum = "ed6248e1caa625eb708e266e06159f135e8c26f2bb7ceb72dc4b2766d0340964" 2473 + checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662" 2467 2474 dependencies = [ 2468 2475 "bitflags 2.4.0", 2469 2476 "errno", 2470 2477 "libc", 2471 - "linux-raw-sys 0.4.5", 2478 + "linux-raw-sys 0.4.7", 2472 2479 "windows-sys", 2473 2480 ] 2474 2481 ··· 2599 2606 dependencies = [ 2600 2607 "proc-macro2", 2601 2608 "quote", 2602 - "syn 2.0.29", 2609 + "syn 2.0.37", 2603 2610 ] 2604 2611 2605 2612 [[package]] 2606 2613 name = "serde_json" 2607 - version = "1.0.105" 2614 + version = "1.0.107" 2608 2615 source = "registry+https://github.com/rust-lang/crates.io-index" 2609 - checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 2616 + checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 2610 2617 dependencies = [ 2611 2618 "itoa", 2612 2619 "ryu", ··· 2631 2638 dependencies = [ 2632 2639 "proc-macro2", 2633 2640 "quote", 2634 - "syn 2.0.29", 2641 + "syn 2.0.37", 2635 2642 ] 2636 2643 2637 2644 [[package]] ··· 2661 2668 source = "registry+https://github.com/rust-lang/crates.io-index" 2662 2669 checksum = "1ca3b16a3d82c4088f343b7480a93550b3eabe1a358569c2dfe38bbcead07237" 2663 2670 dependencies = [ 2664 - "base64 0.21.3", 2671 + "base64 0.21.4", 2665 2672 "chrono", 2666 2673 "hex", 2667 2674 "indexmap 1.9.3", ··· 2681 2688 "darling", 2682 2689 "proc-macro2", 2683 2690 "quote", 2684 - "syn 2.0.29", 2691 + "syn 2.0.37", 2685 2692 ] 2686 2693 2687 2694 [[package]] ··· 2771 2778 2772 2779 [[package]] 2773 2780 name = "socket2" 2774 - version = "0.5.3" 2781 + version = "0.5.4" 2775 2782 source = "registry+https://github.com/rust-lang/crates.io-index" 2776 - checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 2783 + checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" 2777 2784 dependencies = [ 2778 2785 "libc", 2779 2786 "windows-sys", ··· 2829 2836 2830 2837 [[package]] 2831 2838 name = "syn" 2832 - version = "2.0.29" 2839 + version = "2.0.37" 2833 2840 source = "registry+https://github.com/rust-lang/crates.io-index" 2834 - checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 2841 + checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8" 2835 2842 dependencies = [ 2836 2843 "proc-macro2", 2837 2844 "quote", ··· 2853 2860 "cfg-if", 2854 2861 "fastrand 2.0.0", 2855 2862 "redox_syscall 0.3.5", 2856 - "rustix 0.38.10", 2863 + "rustix 0.38.13", 2857 2864 "windows-sys", 2858 2865 ] 2859 2866 ··· 2874 2881 2875 2882 [[package]] 2876 2883 name = "thiserror" 2877 - version = "1.0.47" 2884 + version = "1.0.48" 2878 2885 source = "registry+https://github.com/rust-lang/crates.io-index" 2879 - checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 2886 + checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" 2880 2887 dependencies = [ 2881 2888 "thiserror-impl", 2882 2889 ] 2883 2890 2884 2891 [[package]] 2885 2892 name = "thiserror-impl" 2886 - version = "1.0.47" 2893 + version = "1.0.48" 2887 2894 source = "registry+https://github.com/rust-lang/crates.io-index" 2888 - checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 2895 + checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" 2889 2896 dependencies = [ 2890 2897 "proc-macro2", 2891 2898 "quote", 2892 - "syn 2.0.29", 2899 + "syn 2.0.37", 2893 2900 ] 2894 2901 2895 2902 [[package]] ··· 2959 2966 "parking_lot", 2960 2967 "pin-project-lite", 2961 2968 "signal-hook-registry", 2962 - "socket2 0.5.3", 2969 + "socket2 0.5.4", 2963 2970 "tokio-macros", 2964 2971 "windows-sys", 2965 2972 ] ··· 2972 2979 dependencies = [ 2973 2980 "proc-macro2", 2974 2981 "quote", 2975 - "syn 2.0.29", 2982 + "syn 2.0.37", 2976 2983 ] 2977 2984 2978 2985 [[package]] ··· 3001 3008 3002 3009 [[package]] 3003 3010 name = "toml" 3004 - version = "0.7.6" 3011 + version = "0.7.8" 3005 3012 source = "registry+https://github.com/rust-lang/crates.io-index" 3006 - checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 3013 + checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 3007 3014 dependencies = [ 3008 3015 "serde", 3009 3016 "serde_spanned", 3010 3017 "toml_datetime", 3011 - "toml_edit", 3018 + "toml_edit 0.19.15", 3012 3019 ] 3013 3020 3014 3021 [[package]] ··· 3022 3029 3023 3030 [[package]] 3024 3031 name = "toml_edit" 3025 - version = "0.19.14" 3032 + version = "0.19.15" 3026 3033 source = "registry+https://github.com/rust-lang/crates.io-index" 3027 - checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 3034 + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 3035 + dependencies = [ 3036 + "indexmap 2.0.0", 3037 + "serde", 3038 + "serde_spanned", 3039 + "toml_datetime", 3040 + "winnow", 3041 + ] 3042 + 3043 + [[package]] 3044 + name = "toml_edit" 3045 + version = "0.20.0" 3046 + source = "registry+https://github.com/rust-lang/crates.io-index" 3047 + checksum = "8ff63e60a958cefbb518ae1fd6566af80d9d4be430a33f3723dfc47d1d411d95" 3028 3048 dependencies = [ 3029 3049 "indexmap 2.0.0", 3030 3050 "serde", ··· 3051 3071 3052 3072 [[package]] 3053 3073 name = "tower-http" 3054 - version = "0.4.3" 3074 + version = "0.4.4" 3055 3075 source = "registry+https://github.com/rust-lang/crates.io-index" 3056 - checksum = "55ae70283aba8d2a8b411c695c437fe25b8b5e44e23e780662002fc72fb47a82" 3076 + checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" 3057 3077 dependencies = [ 3058 3078 "bitflags 2.4.0", 3059 3079 "bytes", ··· 3107 3127 dependencies = [ 3108 3128 "proc-macro2", 3109 3129 "quote", 3110 - "syn 2.0.29", 3130 + "syn 2.0.37", 3111 3131 ] 3112 3132 3113 3133 [[package]] ··· 3153 3173 3154 3174 [[package]] 3155 3175 name = "typenum" 3156 - version = "1.16.0" 3176 + version = "1.17.0" 3157 3177 source = "registry+https://github.com/rust-lang/crates.io-index" 3158 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 3178 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3159 3179 3160 3180 [[package]] 3161 3181 name = "uds_windows" ··· 3184 3204 3185 3205 [[package]] 3186 3206 name = "unicode-ident" 3187 - version = "1.0.11" 3207 + version = "1.0.12" 3188 3208 source = "registry+https://github.com/rust-lang/crates.io-index" 3189 - checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 3209 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3190 3210 3191 3211 [[package]] 3192 3212 name = "unicode-normalization" ··· 3268 3288 3269 3289 [[package]] 3270 3290 name = "walkdir" 3271 - version = "2.3.3" 3291 + version = "2.4.0" 3272 3292 source = "registry+https://github.com/rust-lang/crates.io-index" 3273 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 3293 + checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 3274 3294 dependencies = [ 3275 3295 "same-file", 3276 3296 "winapi-util", ··· 3337 3357 source = "git+https://github.com/bytecodealliance/registry#028c5520e1bceb74db7c2a79b42e1e0624813294" 3338 3358 dependencies = [ 3339 3359 "anyhow", 3340 - "base64 0.21.3", 3360 + "base64 0.21.4", 3341 3361 "digest", 3342 3362 "hex", 3343 3363 "leb128", ··· 3375 3395 source = "git+https://github.com/bytecodealliance/registry#028c5520e1bceb74db7c2a79b42e1e0624813294" 3376 3396 dependencies = [ 3377 3397 "anyhow", 3378 - "base64 0.21.3", 3398 + "base64 0.21.4", 3379 3399 "hex", 3380 3400 "indexmap 2.0.0", 3381 3401 "pbjson-types", ··· 3460 3480 "once_cell", 3461 3481 "proc-macro2", 3462 3482 "quote", 3463 - "syn 2.0.29", 3483 + "syn 2.0.37", 3464 3484 "wasm-bindgen-shared", 3465 3485 ] 3466 3486 ··· 3494 3514 dependencies = [ 3495 3515 "proc-macro2", 3496 3516 "quote", 3497 - "syn 2.0.29", 3517 + "syn 2.0.37", 3498 3518 "wasm-bindgen-backend", 3499 3519 "wasm-bindgen-shared", 3500 3520 ] ··· 3507 3527 3508 3528 [[package]] 3509 3529 name = "wasm-encoder" 3510 - version = "0.32.0" 3530 + version = "0.33.1" 3511 3531 source = "registry+https://github.com/rust-lang/crates.io-index" 3512 - checksum = "1ba64e81215916eaeb48fee292f29401d69235d62d8b8fd92a7b2844ec5ae5f7" 3532 + checksum = "b39de0723a53d3c8f54bed106cfbc0d06b3e4d945c5c5022115a61e3b29183ae" 3513 3533 dependencies = [ 3514 3534 "leb128", 3515 3535 ] 3516 3536 3517 3537 [[package]] 3518 3538 name = "wasm-metadata" 3519 - version = "0.10.3" 3539 + version = "0.10.5" 3520 3540 source = "registry+https://github.com/rust-lang/crates.io-index" 3521 - checksum = "08dc59d1fa569150851542143ca79438ca56845ccb31696c70225c638e063471" 3541 + checksum = "9fab01638cbecc57afec7b53ce0e28620b44d7ae1dea53120c96dd08486c07ce" 3522 3542 dependencies = [ 3523 3543 "anyhow", 3524 3544 "indexmap 2.0.0", ··· 3526 3546 "serde_json", 3527 3547 "spdx", 3528 3548 "wasm-encoder", 3529 - "wasmparser 0.112.0", 3549 + "wasmparser 0.113.1", 3530 3550 ] 3531 3551 3532 3552 [[package]] ··· 3554 3574 3555 3575 [[package]] 3556 3576 name = "wasmparser" 3557 - version = "0.112.0" 3577 + version = "0.113.1" 3558 3578 source = "registry+https://github.com/rust-lang/crates.io-index" 3559 - checksum = "e986b010f47fcce49cf8ea5d5f9e5d2737832f12b53ae8ae785bbe895d0877bf" 3579 + checksum = "a128cea7b8516703ab41b10a0b1aa9ba18d0454cd3792341489947ddeee268db" 3560 3580 dependencies = [ 3561 3581 "indexmap 2.0.0", 3562 3582 "semver", ··· 3564 3584 3565 3585 [[package]] 3566 3586 name = "wast" 3567 - version = "64.0.0" 3587 + version = "65.0.1" 3568 3588 source = "registry+https://github.com/rust-lang/crates.io-index" 3569 - checksum = "a259b226fd6910225aa7baeba82f9d9933b6d00f2ce1b49b80fa4214328237cc" 3589 + checksum = "5fd8c1cbadf94a0b0d1071c581d3cfea1b7ed5192c79808dd15406e508dd0afb" 3570 3590 dependencies = [ 3571 3591 "leb128", 3572 3592 "memchr", ··· 3576 3596 3577 3597 [[package]] 3578 3598 name = "wat" 3579 - version = "1.0.71" 3599 + version = "1.0.73" 3580 3600 source = "registry+https://github.com/rust-lang/crates.io-index" 3581 - checksum = "53253d920ab413fca1c7dc2161d601c79b4fdf631d0ba51dd4343bf9b556c3f6" 3601 + checksum = "3209e35eeaf483714f4c6be93f4a03e69aad5f304e3fa66afa7cb90fe1c8051f" 3582 3602 dependencies = [ 3583 3603 "wast", 3584 3604 ] ··· 3595 3615 3596 3616 [[package]] 3597 3617 name = "which" 3598 - version = "4.4.0" 3618 + version = "4.4.2" 3599 3619 source = "registry+https://github.com/rust-lang/crates.io-index" 3600 - checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 3620 + checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 3601 3621 dependencies = [ 3602 3622 "either", 3603 - "libc", 3623 + "home", 3604 3624 "once_cell", 3625 + "rustix 0.38.13", 3605 3626 ] 3606 3627 3607 3628 [[package]] ··· 3750 3771 "serde", 3751 3772 "tokio", 3752 3773 "tokio-util", 3753 - "toml_edit", 3774 + "toml_edit 0.20.0", 3754 3775 "url", 3755 3776 "warg-client", 3756 3777 "warg-crypto", 3757 3778 "warg-protocol", 3758 3779 "warg-server", 3759 3780 "wasm-metadata", 3760 - "wasmparser 0.112.0", 3781 + "wasmparser 0.113.1", 3761 3782 "wit-component", 3762 3783 "wit-parser", 3763 3784 ] 3764 3785 3765 3786 [[package]] 3766 3787 name = "wit-bindgen" 3767 - version = "0.11.0" 3788 + version = "0.12.0" 3768 3789 source = "registry+https://github.com/rust-lang/crates.io-index" 3769 - checksum = "f8a3e8e965dc50e6eb4410d9a11720719fadc6a1713803ea5f3be390b81c8279" 3790 + checksum = "b4f7c5d6f59ae013fc4c013c76eab667844a46e86b51987acb71b1e32953211a" 3770 3791 dependencies = [ 3771 3792 "bitflags 2.4.0", 3772 3793 "wit-bindgen-rust-macro", ··· 3774 3795 3775 3796 [[package]] 3776 3797 name = "wit-bindgen-core" 3777 - version = "0.11.0" 3798 + version = "0.12.0" 3778 3799 source = "registry+https://github.com/rust-lang/crates.io-index" 3779 - checksum = "77255512565dfbd0b61de466e854918041d1da53c7bc049d6188c6e02643dc1e" 3800 + checksum = "7f0371c47784e7559efb422f74473e395b49f7101725584e2673657e0b4fc104" 3780 3801 dependencies = [ 3781 3802 "anyhow", 3782 3803 "wit-component", ··· 3785 3806 3786 3807 [[package]] 3787 3808 name = "wit-bindgen-rust" 3788 - version = "0.11.0" 3809 + version = "0.12.0" 3789 3810 source = "registry+https://github.com/rust-lang/crates.io-index" 3790 - checksum = "399c60e6ea8598d1380e792f13d557007834f0fb799fea6503408cbc5debb4ae" 3811 + checksum = "eeab5a09a85b1641690922ce05d79d868a2f2e78e9415a5302f58b9846fab8f1" 3791 3812 dependencies = [ 3792 3813 "anyhow", 3793 3814 "heck", ··· 3799 3820 3800 3821 [[package]] 3801 3822 name = "wit-bindgen-rust-lib" 3802 - version = "0.11.0" 3823 + version = "0.12.0" 3803 3824 source = "registry+https://github.com/rust-lang/crates.io-index" 3804 - checksum = "cd9fb7a43c7dc28b0b727d6ae01bf369981229b7539e768fba2b7a4df13feeeb" 3825 + checksum = "a13c89c9c1a93e164318745841026f63f889376f38664f86a7f678930280e728" 3805 3826 dependencies = [ 3806 3827 "heck", 3807 3828 "wit-bindgen-core", ··· 3809 3830 3810 3831 [[package]] 3811 3832 name = "wit-bindgen-rust-macro" 3812 - version = "0.11.0" 3833 + version = "0.12.0" 3813 3834 source = "registry+https://github.com/rust-lang/crates.io-index" 3814 - checksum = "44cea5ed784da06da0e55836a6c160e7502dbe28771c2368a595e8606243bf22" 3835 + checksum = "a70c97e09751a9a95a592bd8ef84e953e5cdce6ebbfdb35ceefa5cc511da3b71" 3815 3836 dependencies = [ 3816 3837 "anyhow", 3817 3838 "proc-macro2", 3818 - "syn 2.0.29", 3839 + "syn 2.0.37", 3819 3840 "wit-bindgen-core", 3820 3841 "wit-bindgen-rust", 3821 3842 "wit-bindgen-rust-lib", ··· 3824 3845 3825 3846 [[package]] 3826 3847 name = "wit-component" 3827 - version = "0.14.0" 3848 + version = "0.14.2" 3828 3849 source = "registry+https://github.com/rust-lang/crates.io-index" 3829 - checksum = "66d9f2d16dd55d1a372dcfd4b7a466ea876682a5a3cb97e71ec9eef04affa876" 3850 + checksum = "af872ef43ecb73cc49c7bd2dd19ef9117168e183c78cf70000dca0e14b6a5473" 3830 3851 dependencies = [ 3831 3852 "anyhow", 3832 3853 "bitflags 2.4.0", ··· 3836 3857 "serde_json", 3837 3858 "wasm-encoder", 3838 3859 "wasm-metadata", 3839 - "wasmparser 0.112.0", 3860 + "wasmparser 0.113.1", 3840 3861 "wit-parser", 3841 3862 ] 3842 3863 3843 3864 [[package]] 3844 3865 name = "wit-parser" 3845 - version = "0.11.0" 3866 + version = "0.11.1" 3846 3867 source = "registry+https://github.com/rust-lang/crates.io-index" 3847 - checksum = "61e8b849bea13cc2315426b16efe6eb6813466d78f5fde69b0bb150c9c40e0dc" 3868 + checksum = "1dcd022610436a1873e60bfdd9b407763f2404adf7d1cb57912c7ae4059e57a5" 3848 3869 dependencies = [ 3849 3870 "anyhow", 3850 3871 "id-arena", ··· 3852 3873 "log", 3853 3874 "pulldown-cmark", 3854 3875 "semver", 3876 + "serde", 3877 + "serde_json", 3855 3878 "unicode-xid", 3856 3879 "url", 3857 3880 ]
+3 -3
pkgs/development/tools/rust/cargo-component/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage { 11 11 pname = "cargo-component"; 12 - version = "unstable-2023-09-06"; 12 + version = "unstable-2023-09-20"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "bytecodealliance"; 16 16 repo = "cargo-component"; 17 - rev = "aa6e3c1168273b5cf6221fa0206f07f2ffb8567d"; 18 - hash = "sha256-80076K+KfvFxyUxneEGAs8U7b+DoJLgUioIOTv+PWtI="; 17 + rev = "9bfbdeabee2e91894059c1f061f0c18931428823"; 18 + hash = "sha256-ZLhW2aIpibU4YX5f40BqQ0tKENY4row+FIl3d/hi3dY="; 19 19 }; 20 20 21 21 cargoLock = {
+2 -2
pkgs/development/tools/twilio-cli/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation (finalAttrs: { 4 4 pname = "twilio-cli"; 5 - version = "5.14.0"; 5 + version = "5.15.0"; 6 6 7 7 src = fetchzip { 8 8 url = "https://twilio-cli-prod.s3.amazonaws.com/twilio-v${finalAttrs.version}/twilio-v${finalAttrs.version}.tar.gz"; 9 - sha256 = "sha256-b+CL3Rxkzbk7wSUNXk+x0dQvjZWmOuVh/qWdrIhvJFo="; 9 + sha256 = "sha256-KV5afgfQmQOJAPLNUjELB0+JZ8Qlz9wqOphZm/IBJcc="; 10 10 }; 11 11 12 12 buildInputs = [ nodejs ];
+2 -2
pkgs/servers/monitoring/grafana-agent/default.nix
··· 14 14 15 15 buildGoModule rec { 16 16 pname = "grafana-agent"; 17 - version = "0.36.1"; 17 + version = "0.36.2"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "grafana"; 21 21 repo = "agent"; 22 22 rev = "v${version}"; 23 - hash = "sha256-94z4Veitj3SRZCtHCX+P4oVOj795OzpXn3dmhIP6HpQ="; 23 + hash = "sha256-c8eay3lwAVqodw6MPU02tSQ+8D0+qywCI+U6bfJVk5A="; 24 24 }; 25 25 26 26 vendorHash = "sha256-kz/yogvKqUGP+TQjrzophA4qQ+Qf32cV/CuyNuM9fzM=";
+3 -3
pkgs/tools/graphics/netpbm/default.nix
··· 20 20 # Determine version and revision from: 21 21 # https://sourceforge.net/p/netpbm/code/HEAD/log/?path=/advanced 22 22 pname = "netpbm"; 23 - version = "11.3.4"; 23 + version = "11.3.5"; 24 24 25 25 outputs = [ "bin" "out" "dev" ]; 26 26 27 27 src = fetchsvn { 28 28 url = "https://svn.code.sf.net/p/netpbm/code/advanced"; 29 - rev = "4606"; 30 - sha256 = "raWpqPlORgL5vBkmHbvj7UCrGjpPLulWjeTuaPnuB98="; 29 + rev = "4636"; 30 + sha256 = "x9q7xhBhpWJfS3fbSEZE7ctnv+gL8U2IMy3GLiTEqag="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+3 -3
pkgs/tools/misc/cf-terraforming/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cf-terraforming"; 5 - version = "0.13.0"; 5 + version = "0.14.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudflare"; 9 9 repo = "cf-terraforming"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-s2xsFJ+8ivkdG2F52iRdTbJDEw8ALmFDR7Ct6d84p+s="; 11 + sha256 = "sha256-9aGN3TP4bMz4V0MRrNFxMm16k9RfvU5iDVwe+Ws4Ask="; 12 12 }; 13 13 14 - vendorHash = "sha256-pe5ieCstUe3ZHlJs83lzwNS2qAIhIGJG9E5P4Ri3E/s="; 14 + vendorHash = "sha256-fswT6t2LP6gRmCHrSHVJGdNc6gic3rMSrE+STe5oiyQ="; 15 15 ldflags = [ "-X github.com/cloudflare/cf-terraforming/internal/app/cf-terraforming/cmd.versionString=${version}" ]; 16 16 17 17 # The test suite insists on downloading a binary release of Terraform from
+3 -3
pkgs/tools/networking/gp-saml-gui/default.nix
··· 12 12 }: 13 13 buildPythonPackage rec { 14 14 pname = "gp-saml-gui"; 15 - version = "0.1"; 15 + version = "0.1+20230507-${lib.strings.substring 0 7 src.rev}"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "dlenski"; 19 19 repo = "gp-saml-gui"; 20 - rev = "085d3276e17e1094e22e5d49545e273147598eb4"; 21 - sha256 = "sha256-5vIfgDaHE3T+euLliEyXe+Xikf5VyW3b9C2GapWx278="; 20 + rev = "258f47cdc4a8ed57a1eef16667f6cad0d1cb49b1"; 21 + sha256 = "sha256-g10S8C32mnOymCmGNdM8gmGpYn5/ObMJK3g6amKtQmI="; 22 22 }; 23 23 24 24 buildInputs = lib.optional stdenv.isLinux glib-networking;
+2 -6
pkgs/tools/package-management/dnf5/default.nix
··· 8 8 , pkg-config 9 9 , cppunit 10 10 , fmt 11 - , glib 12 11 , json_c 13 12 , libmodulemd 14 - , libpeas 15 13 , librepo 16 14 , libsmartcols 17 15 , libsolv ··· 26 24 27 25 stdenv.mkDerivation (finalAttrs: { 28 26 pname = "dnf5"; 29 - version = "5.1.3"; 27 + version = "5.1.4"; 30 28 31 29 src = fetchFromGitHub { 32 30 owner = "rpm-software-management"; 33 31 repo = "dnf5"; 34 32 rev = finalAttrs.version; 35 - hash = "sha256-Z1Pbi3dGqAQeVaagpOUsjYsT46DAlcFHsDhQzyeCCfY="; 33 + hash = "sha256-zQK7RRn2C/6Avu5oPqSW7KVv6JT3s2hrcgBRkP6055U="; 36 34 }; 37 35 38 36 nativeBuildInputs = [ cmake createrepo_c gettext help2man pkg-config ]; 39 37 buildInputs = [ 40 38 cppunit 41 39 fmt 42 - glib 43 40 json_c 44 41 libmodulemd 45 - libpeas 46 42 librepo 47 43 libsmartcols 48 44 libsolv
+3 -3
pkgs/tools/security/b3sum/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "b3sum"; 5 - version = "1.4.1"; 5 + version = "1.5.0"; 6 6 7 7 src = fetchCrate { 8 8 inherit version pname; 9 - sha256 = "sha256-cVl0thk+ENZEhTRvFvtAnHIWM8LzKDKEVSVyI22fh2I="; 9 + sha256 = "sha256-yjMuXL0eW+6mm26LgIjD22WyTjb+KMjKRI68mpGGAZA="; 10 10 }; 11 11 12 - cargoHash = "sha256-v175TKlCZ9Vdd1L2IHv2YX406ZkxRXJmZFKBIMab2gg="; 12 + cargoHash = "sha256-Ka+5RKRSVQYoLFXE1bEc6fGFQcbrFTVgi6yAoGIDdUI="; 13 13 14 14 meta = { 15 15 description = "BLAKE3 cryptographic hash function";
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 1 # frozen_string_literal: true 2 2 source "https://rubygems.org" 3 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.3.34" 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.3.35"
+3 -3
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 1 GIT 2 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: 1396546689a7d63bf8ab3a831647784843b5065f 4 - ref: refs/tags/6.3.34 3 + revision: 26857f6f23bbec8d6f1a0b7deaf921a8021a66cd 4 + ref: refs/tags/6.3.35 5 5 specs: 6 - metasploit-framework (6.3.34) 6 + metasploit-framework (6.3.35) 7 7 actionpack (~> 7.0) 8 8 activerecord (~> 7.0) 9 9 activesupport (~> 7.0)
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 15 15 }; 16 16 in stdenv.mkDerivation rec { 17 17 pname = "metasploit-framework"; 18 - version = "6.3.34"; 18 + version = "6.3.35"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "rapid7"; 22 22 repo = "metasploit-framework"; 23 23 rev = version; 24 - sha256 = "sha256-DXG9OFY0KzH2MhI3lF/0vaFcvqugazpybFpxDehIyYg="; 24 + sha256 = "sha256-gnDIIvk4ASilSnFdMRxZ2em+zRnbBu4iUsTnTKn9YTA="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/tools/security/metasploit/gemset.nix
··· 654 654 platforms = []; 655 655 source = { 656 656 fetchSubmodules = false; 657 - rev = "1396546689a7d63bf8ab3a831647784843b5065f"; 658 - sha256 = "126993l0swasdir3lsx0mfz5r8dxyigr8dqj6bv32arlaqwbsw8d"; 657 + rev = "26857f6f23bbec8d6f1a0b7deaf921a8021a66cd"; 658 + sha256 = "0c31znllrry4a8ifw1nv376vxsfrb4f32pbi9ajjh09qz4ichw42"; 659 659 type = "git"; 660 660 url = "https://github.com/rapid7/metasploit-framework"; 661 661 }; 662 - version = "6.3.34"; 662 + version = "6.3.35"; 663 663 }; 664 664 metasploit-model = { 665 665 groups = ["default"];
+3 -3
pkgs/tools/security/osv-scanner/default.nix
··· 6 6 }: 7 7 buildGoModule rec { 8 8 pname = "osv-scanner"; 9 - version = "1.3.6"; 9 + version = "1.4.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "google"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-mvR4LqUPtmLBH9RSfVge4anwun1wHJMCuGyHGQvA56s="; 15 + hash = "sha256-UJrqSzJ024IiQwuPOoxNGgTNNfhb00KjtIHQb5qpDPQ="; 16 16 }; 17 17 18 - vendorHash = "sha256-oxAvpiNrdst7Y8EbSTrTEebX6+G/8K5UFwdKG+wiDQE="; 18 + vendorHash = "sha256-oT4pjsEfjlPZyVo7Ic0rpTEK/sSUz1ShWk7fOJq+EQ8="; 19 19 20 20 subPackages = [ 21 21 "cmd/osv-scanner"
+3 -3
pkgs/tools/system/automatic-timezoned/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "automatic-timezoned"; 8 - version = "1.0.125"; 8 + version = "1.0.127"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "maxbrunet"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-gXuAgiz4pqc1UXTqU47G8Dve+RdCM/61jIROzy6bzII="; 14 + sha256 = "sha256-djPL2fMxsaDp4a5asNB5ik89hS+noFGPuqxhT0iESuA="; 15 15 }; 16 16 17 - cargoHash = "sha256-8zW5CHgAZHMcIIhtyjf4WA/lB+eUWiH/Nu4vkwrAx3Q="; 17 + cargoHash = "sha256-AYGDwqItidVv6XYflm1/jwe0tUlgpFXWXJd+6MDjNF8="; 18 18 19 19 meta = with lib; { 20 20 description = "Automatically update system timezone based on location";
+4 -4
pkgs/tools/typesetting/htmldoc/default.nix
··· 1 - { lib, stdenv, testers, fetchFromGitHub, zlib, libpng, libjpeg, SystemConfiguration, Foundation, pkg-config, htmldoc }: 1 + { lib, stdenv, testers, fetchFromGitHub, zlib, cups, libpng, libjpeg, SystemConfiguration, Foundation, pkg-config, htmldoc }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "htmldoc"; 5 - version = "1.9.16"; 5 + version = "1.9.17"; 6 6 src = fetchFromGitHub { 7 7 owner = "michaelrsweet"; 8 8 repo = "htmldoc"; 9 9 rev = "v${version}"; 10 - sha256 = "117cj5sfzl18gan53ld8lxb0wycizcp9jcakcs3nsvnss99rw3a6"; 10 + sha256 = "1qq45l1vxxa970cm0wjvgj0w88hd4vsisa85pf5i54yvfzf11sqw"; 11 11 }; 12 12 13 13 nativeBuildInputs = [ pkg-config ]; 14 - buildInputs = [ zlib libpng libjpeg ] 14 + buildInputs = [ zlib cups libpng libjpeg ] 15 15 ++ lib.optionals stdenv.isDarwin [ Foundation SystemConfiguration ]; 16 16 17 17 # do not generate universal binary on Darwin
+1
pkgs/tools/wayland/wlopm/default.nix
··· 20 20 meta = with lib; { 21 21 description = "Simple client implementing zwlr-output-power-management-v1"; 22 22 homepage = "https://git.sr.ht/~leon_plickat/wlopm"; 23 + mainProgram = "wlopm"; 23 24 license = licenses.gpl3Only; 24 25 maintainers = with maintainers; [ arjan-s ]; 25 26 platforms = platforms.linux;
+1
pkgs/top-level/aliases.nix
··· 682 682 go-mk = throw "go-mk has been dropped due to the lack of maintenance from upstream since 2015"; # Added 2022-06-02 683 683 go-pup = throw "'go-pup' has been renamed to/replaced by 'pup'"; # Converted to throw 2022-02-22 684 684 go-repo-root = throw "go-repo-root has been dropped due to the lack of maintenance from upstream since 2014"; # Added 2022-06-02 685 + go-thumbnailer = thud; # Added 2023-09-21 685 686 gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10 686 687 gpgstats = throw "gpgstats has been removed: upstream is gone"; # Added 2022-02-06 687 688 gpshell = throw "gpshell has been removed, because it was unmaintained in nixpkgs"; # added 2021-12-17
+8 -2
pkgs/top-level/all-packages.nix
··· 5501 5501 5502 5502 go-neb = callPackage ../applications/networking/instant-messengers/go-neb { }; 5503 5503 5504 - go-thumbnailer = callPackage ../applications/misc/go-thumbnailer { }; 5505 - 5506 5504 google-cursor = callPackage ../data/icons/google-cursor { }; 5507 5505 5508 5506 geckodriver = callPackage ../development/tools/geckodriver { ··· 39342 39340 trf = callPackage ../applications/science/biology/trf { }; 39343 39341 39344 39342 trimal = callPackage ../applications/science/biology/trimal { }; 39343 + 39344 + trimmomatic = callPackage ../applications/science/biology/trimmomatic { 39345 + # Reduce closure size 39346 + jre = pkgs.jre_minimal.override { 39347 + modules = [ "java.base" "java.logging" ]; 39348 + jdk = pkgs.jdk11_headless; 39349 + }; 39350 + }; 39345 39351 39346 39352 truvari = callPackage ../applications/science/biology/truvari { }; 39347 39353
+1 -1
pkgs/top-level/pkg-config/pkg-config-data.json
··· 670 670 }, 671 671 "netsnmp": { 672 672 "attrPath": [ 673 - "net_snmp" 673 + "net-snmp" 674 674 ] 675 675 }, 676 676 "nix-cmd": {
+2
pkgs/top-level/python-packages.nix
··· 10345 10345 10346 10346 pytest-randomly = callPackage ../development/python-modules/pytest-randomly { }; 10347 10347 10348 + pytest-reverse = callPackage ../development/python-modules/pytest-reverse { }; 10349 + 10348 10350 pytest-random-order = callPackage ../development/python-modules/pytest-random-order { }; 10349 10351 10350 10352 pytest-recording = callPackage ../development/python-modules/pytest-recording { };