diff --git a/doc/builders/packages/firefox.section.md b/doc/builders/packages/firefox.section.md
index 6f7d39c8b5e3..0dd786a599d0 100644
--- a/doc/builders/packages/firefox.section.md
+++ b/doc/builders/packages/firefox.section.md
@@ -26,10 +26,14 @@ The `wrapFirefox` function allows to pass policies, preferences and extensions t
Pocket = false;
Snippets = false;
};
- UserMessaging = {
- ExtensionRecommendations = false;
- SkipOnboarding = true;
- };
+ UserMessaging = {
+ ExtensionRecommendations = false;
+ SkipOnboarding = true;
+ };
+ SecurityDevices = {
+ # Use a proxy module rather than `nixpkgs.config.firefox.smartcardSupport = true`
+ "PKCS#11 Proxy Module" = "${pkgs.p11-kit}/lib/p11-kit-proxy.so";
+ };
};
extraPrefs = ''
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index 9cb9d2ba7bfd..3211ae616a1c 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -663,6 +663,70 @@ However, this is done in it's own phase, and not dependent on whether `doCheck =
This can also be useful in verifying that the package doesn't assume commonly
present packages (e.g. `setuptools`)
+#### Using pythonRelaxDepsHook {#using-pythonrelaxdepshook}
+
+It is common for upstream to specify a range of versions for its package
+dependencies. This makes sense, since it ensures that the package will be built
+with a subset of packages that is well tested. However, this commonly causes
+issues when packaging in Nixpkgs, because the dependencies that this package
+may need are too new or old for the package to build correctly. We also cannot
+package multiple versions of the same package since this may cause conflicts
+in `PYTHONPATH`.
+
+One way to side step this issue is to relax the dependencies. This can be done
+by either removing the package version range or by removing the package
+declaration entirely. This can be done using the `pythonRelaxDepsHook` hook. For
+example, given the following `requirements.txt` file:
+
+```
+pkg1<1.0
+pkg2
+pkg3>=1.0,<=2.0
+```
+
+we can do:
+
+```
+ nativeBuildInputs = [ pythonRelaxDepsHook ];
+ pythonRelaxDeps = [ "pkg1" "pkg3" ];
+ pythonRemoveDeps = [ "pkg2" ];
+```
+
+which would result in the following `requirements.txt` file:
+
+```
+pkg1
+pkg3
+```
+
+Another option is to pass `true`, that will relax/remove all dependencies, for
+example:
+
+```
+ nativeBuildInputs = [ pythonRelaxDepsHook ];
+ pythonRelaxDeps = true;
+```
+
+which would result in the following `requirements.txt` file:
+
+```
+pkg1
+pkg2
+pkg3
+```
+
+In general you should always use `pythonRelaxDeps`, because `pythonRemoveDeps`
+will convert build errors in runtime errors. However `pythonRemoveDeps` may
+still be useful in exceptional cases, and also to remove dependencies wrongly
+declared by upstream (for example, declaring `black` as a runtime dependency
+instead of a dev dependency).
+
+Keep in mind that while the examples above are done with `requirements.txt`,
+`pythonRelaxDepsHook` works by modifying the resulting wheel file, so it should
+work in any of the formats supported by `buildPythonPackage` currently,
+with the exception of `other` (see `format` in
+[`buildPythonPackage` parameters](#buildpythonpackage-parameters) for more details).
+
### Develop local package {#develop-local-package}
As a Python developer you're likely aware of [development mode](http://setuptools.readthedocs.io/en/latest/setuptools.html#development-mode)
@@ -1197,6 +1261,8 @@ are used in `buildPythonPackage`.
to run commands only after venv is first created.
- `wheelUnpackHook` to move a wheel to the correct folder so it can be installed
with the `pipInstallHook`.
+- `pythonRelaxDepsHook` will relax Python dependencies restrictions for the package.
+ See [example usage](#using-pythonrelaxdepshook).
### Development mode {#development-mode}
diff --git a/nixos/modules/hardware/new-lg4ff.nix b/nixos/modules/hardware/new-lg4ff.nix
index 46581e478640..d1cdf0540fc6 100644
--- a/nixos/modules/hardware/new-lg4ff.nix
+++ b/nixos/modules/hardware/new-lg4ff.nix
@@ -17,7 +17,7 @@ in {
};
};
- config = {
+ config = lib.mkIf cfg.enable {
boot = {
extraModulePackages = [ pkgs.new-lg4ff ];
kernelModules = [ "hid-logitech-new" ];
diff --git a/nixos/modules/services/system/localtime.nix b/nixos/modules/services/system/localtime.nix
index 8f23454af9df..6383e454e76b 100644
--- a/nixos/modules/services/system/localtime.nix
+++ b/nixos/modules/services/system/localtime.nix
@@ -3,30 +3,26 @@
with lib;
let
- cfg = config.services.localtime;
+ cfg = config.services.localtimed;
in {
options = {
- services.localtime = {
+ services.localtimed = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
- Enable localtime, simple daemon for keeping the system
- timezone up-to-date based on the current location. It uses geoclue2 to
- determine the current location and systemd-timedated to actually set
- the timezone.
+ Enable localtimed, a simple daemon for keeping the
+ system timezone up-to-date based on the current location. It uses
+ geoclue2 to determine the current location.
'';
};
};
};
config = mkIf cfg.enable {
- services.geoclue2 = {
- enable = true;
- appConfig.localtime = {
- isAllowed = true;
- isSystem = true;
- };
+ services.geoclue2.appConfig.localtimed = {
+ isAllowed = true;
+ isSystem = true;
};
# Install the polkit rules.
@@ -34,16 +30,6 @@ in {
# Install the systemd unit.
systemd.packages = [ pkgs.localtime ];
- users.users.localtimed = {
- description = "localtime daemon";
- isSystemUser = true;
- group = "localtimed";
- };
- users.groups.localtimed = {};
-
- systemd.services.localtime = {
- wantedBy = [ "multi-user.target" ];
- serviceConfig.Restart = "on-failure";
- };
+ systemd.services.localtime.wantedBy = [ "multi-user.target" ];
};
}
diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix
index bfddab75fee4..5207c48b19ac 100644
--- a/pkgs/applications/editors/vim/plugins/generated.nix
+++ b/pkgs/applications/editors/vim/plugins/generated.nix
@@ -904,6 +904,18 @@ final: prev:
meta.homepage = "https://github.com/akinsho/bufferline.nvim/";
};
+ bullets-vim = buildVimPluginFrom2Nix {
+ pname = "bullets.vim";
+ version = "2022-06-01";
+ src = fetchFromGitHub {
+ owner = "dkarter";
+ repo = "bullets.vim";
+ rev = "f3b4ae71f60b5723077a77cfe9e8776a3ca553ac";
+ sha256 = "1dfgxdmvzjqjc1viqx2nmzzrjr2n7c6931d3iypv96p2zywld99s";
+ };
+ meta.homepage = "https://github.com/dkarter/bullets.vim/";
+ };
+
calendar-vim = buildVimPluginFrom2Nix {
pname = "calendar.vim";
version = "2022-03-21";
diff --git a/pkgs/applications/editors/vim/plugins/markdown-preview-nvim/package.json b/pkgs/applications/editors/vim/plugins/markdown-preview-nvim/package.json
index a3900a91dffd..39d649be5de7 100644
--- a/pkgs/applications/editors/vim/plugins/markdown-preview-nvim/package.json
+++ b/pkgs/applications/editors/vim/plugins/markdown-preview-nvim/package.json
@@ -8,6 +8,7 @@
"license": "MIT",
"private": true,
"dependencies": {
+ "@chemzqm/neovim": "5.7.9",
"log4js": "3.0.6",
"neovim": "4.2.1",
"socket.io": "2.1.1",
diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names
index ec35088f4d79..5a88140eba3a 100644
--- a/pkgs/applications/editors/vim/plugins/vim-plugin-names
+++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names
@@ -74,6 +74,7 @@ https://github.com/fruit-in/brainfuck-vim/,,
https://github.com/famiu/bufdelete.nvim/,,
https://github.com/jlanzarotta/bufexplorer/,,
https://github.com/akinsho/bufferline.nvim/,,
+https://github.com/dkarter/bullets.vim/,,
https://github.com/mattn/calendar-vim/,,mattn-calendar-vim
https://github.com/itchyny/calendar.vim/,,
https://github.com/bkad/camelcasemotion/,,
diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix
index 80d336fb394f..ad934c705440 100644
--- a/pkgs/applications/editors/vscode/extensions/default.nix
+++ b/pkgs/applications/editors/vscode/extensions/default.nix
@@ -277,6 +277,23 @@ let
};
};
+ attilabuti.brainfuck-syntax = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "brainfuck-syntax";
+ publisher = "attilabuti";
+ version = "0.0.1";
+ sha256 = "sha256-ZcZlHoa2aoCeruMWbUUgfFHsPqyWmd2xFY6AKxJysYE=";
+ };
+ meta = with lib; {
+ changelog = "https://marketplace.visualstudio.com/items/attilabuti.brainfuck-syntax/changelog";
+ description = "VSCode extension providing syntax highlighting support for Brainfuck";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=attilabuti.brainfuck-syntax";
+ homepage = "https://github.com/attilabuti/brainfuck-syntax";
+ license = licenses.mit;
+ maintainers = with maintainers; [ superherointj ];
+ };
+ };
+
ms-python.vscode-pylance = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-pylance";
@@ -321,6 +338,22 @@ let
};
};
+ badochov.ocaml-formatter = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "ocaml-formatter";
+ publisher = "badochov";
+ version = "1.14.0";
+ sha256 = "sha256-Iekh3vwu8iz53rPRsuu1Fx9iA/A97iMd8cPETWavnyA=";
+ };
+ meta = with lib; {
+ description = "VSCode Extension Formatter for OCaml language";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=badochov.ocaml-formatter";
+ homepage = "https://github.com/badochov/ocamlformatter-vscode";
+ license = licenses.mit;
+ maintainers = with maintainers; [ superherointj ];
+ };
+ };
+
bbenoist.nix = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "Nix";
@@ -457,8 +490,8 @@ let
mktplcRef = {
name = "path-intellisense";
publisher = "christian-kohler";
- version = "2.6.1";
- sha256 = "sha256-ol98g3pliBlyEQ+n7cR4O04J/0QB9U8+fvf+FC0j0Fc=";
+ version = "2.8.0";
+ sha256 = "sha256-VPzy9o0DeYRkNwTGphC51vzBTNgQwqKg+t7MpGPLahM=";
};
meta = with lib; {
description = "Visual Studio Code plugin that autocompletes filenames";
@@ -683,8 +716,8 @@ let
mktplcRef = {
name = "githistory";
publisher = "donjayamanne";
- version = "0.6.14";
- sha256 = "11x116hzqnhgbryp2kqpki1z5mlnwxb0ly9r1513m5vgbisrsn0i";
+ version = "0.6.19";
+ sha256 = "15s2mva9hg2pw499g890v3jycncdps2dmmrmrkj3rns8fkhjn8b3";
};
};
@@ -886,8 +919,8 @@ let
mktplcRef = {
name = "file-icons";
publisher = "file-icons";
- version = "1.0.28";
- sha256 = "1lyx0l42xhi2f3rdnjddc3mw7m913kjnchawi98i6vqsx3dv7091";
+ version = "1.0.29";
+ sha256 = "05x45f9yaivsz8a1ahlv5m8gy2kkz71850dhdvwmgii0vljc8jc6";
};
};
@@ -976,6 +1009,38 @@ let
};
};
+ gencer.html-slim-scss-css-class-completion = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "html-slim-scss-css-class-completion";
+ publisher = "gencer";
+ version = "1.7.8";
+ sha256 = "18qws35qvnl0ahk5sxh4mzkw0ib788y1l97ijmpjszs0cd4bfsa6";
+ };
+ meta = with lib; {
+ description = "VSCode extension for SCSS";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=gencer.html-slim-scss-css-class-completion";
+ homepage = "https://github.com/gencer/SCSS-Everywhere";
+ license = licenses.mit;
+ maintainers = with maintainers; [ superherointj ];
+ };
+ };
+
+ gitlab.gitlab-workflow = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "gitlab-workflow";
+ publisher = "gitlab";
+ version = "3.44.2";
+ sha256 = "sha256-S2PI+r4LrHA7tW2EMfcAkP5jUnd0mCEV72oTXMa9Xkc=";
+ };
+ meta = with lib; {
+ description = "GitLab extension for Visual Studio Code";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=gitlab.gitlab-workflow";
+ homepage = "https://gitlab.com/gitlab-org/gitlab-vscode-extension#readme";
+ license = licenses.mit;
+ maintainers = with maintainers; [ superherointj ];
+ };
+ };
+
humao.rest-client = buildVscodeMarketplaceExtension {
mktplcRef = {
publisher = "humao";
@@ -1056,8 +1121,8 @@ let
mktplcRef = {
name = "Go";
publisher = "golang";
- version = "0.25.1";
- sha256 = "sha256-ZDUWN9lzDnR77W7xcMFQaaFl/6Lf/x1jgaBkwZPqGGw=";
+ version = "0.33.1";
+ sha256 = "0dsjxs04dchw1dbzf45ryhxsb5xhalqwy40xw6cngxkp69lhf91g";
};
meta = {
license = lib.licenses.mit;
@@ -1184,6 +1249,22 @@ let
};
};
+ irongeek.vscode-env = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "vscode-env";
+ publisher = "irongeek";
+ version = "0.1.0";
+ sha256 = "sha256-URq90lOFtPCNfSIl2NUwihwRQyqgDysGmBc3NG7o7vk=";
+ };
+ meta = with lib; {
+ description = "Adds formatting and syntax highlighting support for env files (.env) to Visual Studio Code";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=IronGeek.vscode-env";
+ homepage = "https://github.com/IronGeek/vscode-env.git";
+ license = licenses.mit;
+ maintainers = with maintainers; [ superherointj ];
+ };
+ };
+
jakebecker.elixir-ls = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "elixir-ls";
@@ -1237,8 +1318,8 @@ let
mktplcRef = {
name = "nix-ide";
publisher = "jnoortheen";
- version = "0.1.19";
- sha256 = "1ms96ij6z4bysdhqgdaxx2znvczyhzx57iifbqws50m1c3m7pkx7";
+ version = "0.1.20";
+ sha256 = "16mmivdssjky11gmih7zp99d41m09r0ii43n17d4i6xwivagi9a3";
};
meta = with lib; {
changelog = "https://marketplace.visualstudio.com/items/jnoortheen.nix-ide/changelog";
@@ -1650,6 +1731,22 @@ let
};
};
+ phoenixframework.phoenix = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "phoenix";
+ publisher = "phoenixframework";
+ version = "0.1.1";
+ sha256 = "sha256-AfCwU4FF8a8C9D6+lyUDbAOLlD5SpZZw8CZVGpzRoV0=";
+ };
+ meta = with lib; {
+ description = "Syntax highlighting support for HEEx / Phoenix templates";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=phoenixframework.phoenix";
+ homepage = "https://github.com/phoenixframework/vscode-phoenix";
+ license = licenses.mit;
+ maintainers = with maintainers; [ superherointj ];
+ };
+ };
+
redhat.java = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "java";
@@ -1668,8 +1765,8 @@ let
mktplcRef = {
name = "vscode-yaml";
publisher = "redhat";
- version = "1.5.1";
- sha256 = "sha256-JXhmgBFZdKNjgX6K7U+M/T7HEmIOBQOzQEJ5957TUuM=";
+ version = "1.7.0";
+ sha256 = "1bbjpaypp0mq5akww5f0pkpq01j0xhhvkfr44f4lb2rdhr5nmnvc";
};
meta = {
license = lib.licenses.mit;
@@ -1744,6 +1841,23 @@ let
};
};
+ prisma.prisma = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "prisma";
+ publisher = "Prisma";
+ version = "3.14.0";
+ sha256 = "09dlm2awd2h0xmx1vcx95kdvz3xf4f5pd7zcdg3mb0g2az4nfld7";
+ };
+ meta = with lib; {
+ changelog = "https://marketplace.visualstudio.com/items/Prisma.prisma/changelog";
+ description = "VSCode extension for syntax highlighting, formatting, auto-completion, jump-to-definition and linting for .prisma files";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=Prisma.prisma";
+ homepage = "https://github.com/prisma/language-tools";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ superherointj ];
+ };
+ };
+
richie5um2.snake-trail = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "snake-trail";
@@ -1930,6 +2044,22 @@ let
};
};
+ stefanjarina.vscode-eex-snippets = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "vscode-eex-snippets";
+ publisher = "stefanjarina";
+ version = "0.0.8";
+ sha256 = "0j8pmrs1lk138vhqx594pzxvrma4yl3jh7ihqm2kgh0cwnkbj36m";
+ };
+ meta = with lib; {
+ description = "VSCode extension for Elixir EEx and HTML (EEx) code snippets";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=stefanjarina.vscode-eex-snippets";
+ homepage = "https://github.com/stefanjarina/vscode-eex-snippets";
+ license = licenses.mit;
+ maintainers = with maintainers; [ superherointj ];
+ };
+ };
+
stephlin.vscode-tmux-keybinding = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-tmux-keybinding";
@@ -2046,6 +2176,22 @@ let
};
};
+ theangryepicbanana.language-pascal = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "language-pascal";
+ publisher = "theangryepicbanana";
+ version = "0.1.6";
+ sha256 = "096wwmwpas21f03pbbz40rvc792xzpl5qqddzbry41glxpzywy6b";
+ };
+ meta = with lib; {
+ description = "VSCode extension for high-quality Pascal highlighting";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=theangryepicbanana.language-pascal";
+ homepage = "https://github.com/ALANVF/vscode-pascal-magic";
+ license = licenses.mit;
+ maintainers = with maintainers; [ superherointj ];
+ };
+ };
+
tiehuis.zig = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "zig";
@@ -2063,8 +2209,8 @@ let
mktplcRef = {
name = "shellcheck";
publisher = "timonwong";
- version = "0.18.4";
- sha256 = "00cii58md6v028h0xfvbdjvg3r44451mi0lfmjwiwif5xcw3wnlx";
+ version = "0.19.3";
+ sha256 = "0l8fbim19jgcdgxxgidnhdczxvhls920vrffwrac8k1y34lgfl3v";
};
nativeBuildInputs = [ jq moreutils ];
postInstall = ''
@@ -2131,8 +2277,8 @@ let
mktplcRef = {
name = "errorlens";
publisher = "usernamehw";
- version = "3.4.1";
- sha256 = "1mr8si7jglpjw8qzl4af1k7r68vz03fpal1dr8i0iy4ly26pz7bh";
+ version = "3.5.1";
+ sha256 = "17xbbr5hjrs67yazicb9qillbkp3wnaccjpnl1jlp07s0n7q4f8f";
};
meta = with lib; {
changelog = "https://marketplace.visualstudio.com/items/usernamehw.errorlens/changelog";
diff --git a/pkgs/applications/editors/vscode/extensions/rescript/default.nix b/pkgs/applications/editors/vscode/extensions/rescript/default.nix
index 5bad9b2e6283..fb0f1db8d59f 100644
--- a/pkgs/applications/editors/vscode/extensions/rescript/default.nix
+++ b/pkgs/applications/editors/vscode/extensions/rescript/default.nix
@@ -11,8 +11,8 @@ vscode-utils.buildVscodeMarketplaceExtension rec {
mktplcRef = {
name = "rescript-vscode";
publisher = "chenglou92";
- version = "1.1.3";
- sha256 = "1c1ipxgm0f0a3vlnhr0v85jr5l3rwpjzh9w8nv2jn5vgvpas0b2a";
+ version = "1.3.0";
+ sha256 = "sha256-Sgi7FFOpI/XOeyPOrDhwZdZ+43ilUz7oQ49yB7tiMXk=";
};
postPatch = ''
rm -r ${analysisDir}
diff --git a/pkgs/applications/graphics/ascii-image-converter/default.nix b/pkgs/applications/graphics/ascii-image-converter/default.nix
index a6ce22b52fcb..556a9e112636 100644
--- a/pkgs/applications/graphics/ascii-image-converter/default.nix
+++ b/pkgs/applications/graphics/ascii-image-converter/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "ascii-image-converter";
- version = "1.11.0";
+ version = "1.12.0";
src = fetchFromGitHub {
owner = "TheZoraiz";
repo = "ascii-image-converter";
rev = "v${version}";
- sha256 = "DitJnWIz1Dt9yXtyQp/z738IAmG4neYmfc49Wdjos7Q=";
+ sha256 = "5Sa9PqhoJ/LCAHrymqVCO4bI39mQeVa4xv1z235Cxvg=";
};
- vendorSha256 = "sha256-pKgukWKF4f/kLASjh8aKU7x9UBW/H+4C/02vxmh+qOU=";
+ vendorSha256 = "rQS3QH9vnEbQZszG3FOr1P5HYgS63BurCNCFQTTdvZs=";
meta = with lib; {
description = "Convert images into ASCII art on the console";
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index 6d93629e7188..153bd31a5e72 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -118,28 +118,27 @@ let
lib.optionalAttrs usesNixExtensions {
ExtensionSettings = {
"*" = {
- blocked_install_message = "You can't have manual extension mixed with nix extensions";
- installation_mode = "blocked";
- };
-
+ blocked_install_message = "You can't have manual extension mixed with nix extensions";
+ installation_mode = "blocked";
+ };
} // lib.foldr (e: ret:
- ret // {
- "${e.extid}" = {
- installation_mode = "allowed";
- };
- }
- ) {} extensions;
- } // lib.optionalAttrs usesNixExtensions {
- Extensions = {
- Install = lib.foldr (e: ret:
- ret ++ [ "${e.outPath}/${e.extid}.xpi" ]
- ) [] extensions;
- };
- } // lib.optionalAttrs smartcardSupport {
- SecurityDevices = {
- "OpenSC PKCS#11 Module" = "onepin-opensc-pkcs11.so";
- };
- }
+ ret // {
+ "${e.extid}" = {
+ installation_mode = "allowed";
+ };
+ }
+ ) {} extensions;
+
+ Extensions = {
+ Install = lib.foldr (e: ret:
+ ret ++ [ "${e.outPath}/${e.extid}.xpi" ]
+ ) [] extensions;
+ };
+ } // lib.optionalAttrs smartcardSupport {
+ SecurityDevices = {
+ "OpenSC PKCS#11 Module" = "opensc-pkcs11.so";
+ };
+ }
// extraPolicies;
};
diff --git a/pkgs/applications/networking/cluster/gatekeeper/default.nix b/pkgs/applications/networking/cluster/gatekeeper/default.nix
new file mode 100644
index 000000000000..714d1e1e4d8e
--- /dev/null
+++ b/pkgs/applications/networking/cluster/gatekeeper/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+, installShellFiles
+}:
+
+buildGoModule rec {
+ pname = "gatekeeper";
+ version = "3.8.1";
+
+ src = fetchFromGitHub {
+ owner = "open-policy-agent";
+ repo = "gatekeeper";
+ rev = "v${version}";
+ sha256 = "sha256-zEUH88sjgR738BXK2oSSM6jf5oHZt0VJv61BcxclG1Q=";
+ };
+
+ vendorSha256 = null;
+
+ nativeBuildInputs = [
+ installShellFiles
+ ];
+
+ subPackages = [ "cmd/gator" ];
+
+ postInstall = ''
+ installShellCompletion --cmd gator \
+ --bash <($out/bin/gator completion bash) \
+ --fish <($out/bin/gator completion fish) \
+ --zsh <($out/bin/gator completion zsh)
+ '';
+
+ meta = with lib; {
+ description = "Policy Controller for Kubernetes";
+ homepage = "https://github.com/open-policy-agent/gatekeeper";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 59dfcb5eebdc..2df294449f8b 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -192,9 +192,9 @@ rec {
};
terraform_1 = mkTerraform {
- version = "1.2.1";
- sha256 = "sha256-zvpKL7SsUeDu7pHSJTYbbJcn7kDcGk5M2jBMkkBLMtE=";
- vendorSha256 = "sha256-2w0XAoja3DwztI3WxvLCUqrjW1PzSR6BU0T8TtM3TAw=";
+ version = "1.2.2";
+ sha256 = "sha256-LkRCumyNHVBSsXRp1ovNMGCeidK/jVCjh9H1HSE1Lm8=";
+ vendorSha256 = "sha256-CVgAmPM0nt0Wx+N0qs+IO5KwCWnbfif70EHjBi0bIsQ=";
patches = [ ./provider-path-0_15.patch ];
passthru = { inherit plugins; };
};
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-xmpp-http-upload/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-xmpp-http-upload/default.nix
index cb450aa1bc33..c52082e06c90 100644
--- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-xmpp-http-upload/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-xmpp-http-upload/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation {
pname = "purple-xmpp-upload";
- version = "unstable-2017-12-31";
+ version = "unstable-2021-11-04";
src = fetchFromGitHub {
owner = "Junker";
repo = "purple-xmpp-http-upload";
- rev = "178096cbfc9df165c2dc1677666439969d212b37";
- sha256 = "12l9rqlgb4i50xxrfnvwz9sqfk0d3c0m6l09mnvfixqi8illyvlp";
+ rev = "f370b4a2c474c6fe4098d929d8b7c18aeba87b6b";
+ sha256 = "0n05jybmibn44xb660p08vrrbanfsyjn17w1xm9gwl75fxxq8cdc";
};
buildInputs = [ pidgin glib libxml2 ];
diff --git a/pkgs/applications/video/manim/default.nix b/pkgs/applications/video/manim/default.nix
index edc084ef6a0f..bdaa216ffaa9 100644
--- a/pkgs/applications/video/manim/default.nix
+++ b/pkgs/applications/video/manim/default.nix
@@ -61,8 +61,9 @@ in python3.pkgs.buildPythonApplication rec {
postPatch = ''
substituteInPlace pyproject.toml \
- --replace 'cloup = "^0.13.0"' 'cloup = "*"' \
- --replace 'mapbox-earcut = "^0.12.10"' 'mapbox-earcut = "*"' \
+ --replace "--no-cov-on-fail --cov=manim --cov-report xml --cov-report term" "" \
+ --replace 'cloup = "^0.13.0"' 'cloup = "*"' \
+ --replace 'mapbox-earcut = "^0.12.10"' 'mapbox-earcut = "*"' \
'';
buildInputs = [ cairo ];
@@ -106,7 +107,6 @@ in python3.pkgs.buildPythonApplication rec {
checkInputs = [
- python3.pkgs.pytest-cov
python3.pkgs.pytest-xdist
python3.pkgs.pytestCheckHook
diff --git a/pkgs/development/libraries/intel-media-driver/default.nix b/pkgs/development/libraries/intel-media-driver/default.nix
index d97eac2a93db..bac5512aed6f 100644
--- a/pkgs/development/libraries/intel-media-driver/default.nix
+++ b/pkgs/development/libraries/intel-media-driver/default.nix
@@ -14,7 +14,7 @@
stdenv.mkDerivation rec {
pname = "intel-media-driver";
- version = "22.3.0";
+ version = "22.4.2";
outputs = [ "out" "dev" ];
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
owner = "intel";
repo = "media-driver";
rev = "intel-media-${version}";
- sha256 = "sha256-TQmXU/Roij6U6NTt3oywhjpPJzaFeR4hhVor11mgaRE=";
+ sha256 = "sha256-wJiXtRPv9t34GujUhkhDKmIblMMR8yx8Fe1Xony6QVY=";
};
patches = [
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 13ca8b9cc233..edf8e9bb13b1 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -2623,31 +2623,31 @@ let
sha512 = "do5jDoX9oCR/dGHE4POVQ3PYDCmQ2Fow4CA72UL4WoE8zUImA/0lChczjfl+ucNjE4sXFWUnzoO6j4WzrUvLnw==";
};
};
- "@cspell/cspell-bundled-dicts-6.0.0" = {
+ "@cspell/cspell-bundled-dicts-6.1.0" = {
name = "_at_cspell_slash_cspell-bundled-dicts";
packageName = "@cspell/cspell-bundled-dicts";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0.tgz";
- sha512 = "n6fr7V57og7Sp9Wb2K4W3ag3yvRR/hl0p1lSvA+AMnatDbYm8id/5YUlc+AdXlOb604i1fAmHLQ/1dNvm3PMMw==";
+ url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.1.0.tgz";
+ sha512 = "bhgK3PSvJZKboRslpoAH1Ar4TkAINsMabqCQNUG10QppPAPIi044Q0MifEQGib1TueHo44691B9xYCV4z5fq4w==";
};
};
- "@cspell/cspell-pipe-6.0.0" = {
+ "@cspell/cspell-pipe-6.1.0" = {
name = "_at_cspell_slash_cspell-pipe";
packageName = "@cspell/cspell-pipe";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0.tgz";
- sha512 = "oehpfj8tOoFep34uOCABdpsqisg37Htc+DjOu5pT1gtzozReSdahD5dQUKAp/ND/tttdE4SWQUMUVZq6cxvTvw==";
+ url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.1.0.tgz";
+ sha512 = "h/g+1RDsNM1iarFHdkyybD0NY3Ejtnd4dEjtYujL8oKvjv702+vQrgwVIfbxSHzKW7YlMy3FCmPcy6yuhuCGbA==";
};
};
- "@cspell/cspell-types-6.0.0" = {
+ "@cspell/cspell-types-6.1.0" = {
name = "_at_cspell_slash_cspell-types";
packageName = "@cspell/cspell-types";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0.tgz";
- sha512 = "N8wGQU+n64s3cIMC/5WJzo6UT/Jetxz6oSdOr0SksCHO84I6QR1ORwsXM3ej7x6490uoTM+cf11CSYrw6ma+bg==";
+ url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.1.0.tgz";
+ sha512 = "s6eoQqJpgsEEeYHBqgGX5NqchDk2F9zGRjZcJSuqV23go4WCKxUeDpkiewpMK0Q5P+8ZD4IOB46sOXzQzPVPaQ==";
};
};
"@cspell/dict-ada-2.0.0" = {
@@ -2740,6 +2740,15 @@ let
sha512 = "GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw==";
};
};
+ "@cspell/dict-docker-1.1.0" = {
+ name = "_at_cspell_slash_dict-docker";
+ packageName = "@cspell/dict-docker";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.0.tgz";
+ sha512 = "2OI5srKxeoiOnAD34jGK2pDGbgeQDnBCuE64bM04Uct7QxPjIv1RDpWLa3VMWhFIzeoyNSNWwDB+x5ufVc6VXA==";
+ };
+ };
"@cspell/dict-dotnet-2.0.1" = {
name = "_at_cspell_slash_dict-dotnet";
packageName = "@cspell/dict-dotnet";
@@ -2848,13 +2857,13 @@ let
sha512 = "04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ==";
};
};
- "@cspell/dict-java-2.0.0" = {
+ "@cspell/dict-java-3.0.1" = {
name = "_at_cspell_slash_dict-java";
packageName = "@cspell/dict-java";
- version = "2.0.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-2.0.0.tgz";
- sha512 = "9f5LDATlAiXRGqxLxgqbOLlQxuMW2zcN7tBgxwtN+4u90vM03ZUOR/gKIuDV/y0ZuAiWBIjA73cjk8DJ13Q1eA==";
+ url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-3.0.1.tgz";
+ sha512 = "jN+a62AR0u24sGFCnNkXEI6N4a+4AjlHF6gKUVKEhbKFt06ABMUW8OCV4kLkztvIyFqPNpXkBHJC2NAhxGePnw==";
};
};
"@cspell/dict-latex-2.0.4" = {
@@ -2884,22 +2893,22 @@ let
sha512 = "7WUEBEspSKtsq104WdIys1+DLqAxpJPzw74Py1TuE3fI5GvlzeSZkRFP2ya54GB2lCO4C3mq4M8EnitpibVDfw==";
};
};
- "@cspell/dict-node-2.0.1" = {
+ "@cspell/dict-node-3.0.1" = {
name = "_at_cspell_slash_dict-node";
packageName = "@cspell/dict-node";
- version = "2.0.1";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-2.0.1.tgz";
- sha512 = "ztBWzhvI+YaMehICSJ65cohhjQqoztxf9vrS3YckOiVGBFvUMaFVNdX9klQkvrLcS/O4+2PzoGeIEkmf99amLA==";
+ url = "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-3.0.1.tgz";
+ sha512 = "sK2cpuV0EAc43Amd5xeQXkI9MeRTECMw+yjap06gKSModbgI7BqJUHeKZed+0Hii+LpaJ4TYpLGiRVsO+qSk0w==";
};
};
- "@cspell/dict-npm-2.0.5" = {
+ "@cspell/dict-npm-3.0.1" = {
name = "_at_cspell_slash_dict-npm";
packageName = "@cspell/dict-npm";
- version = "2.0.5";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-2.0.5.tgz";
- sha512 = "KuPL5fKaqyG9ACrrinNt84FhVdh23VRtxDLO8MtGUdStca9tjfjPdmP2YF/5VkEKmpKYkfFKVcBUk9RgVkx5bw==";
+ url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-3.0.1.tgz";
+ sha512 = "ZfuzFwE03WwyShwvQfXhhKIrFxgAkOtA/N1KdEwfP//nVDgysJfGueBhJJfI6vjUSr1IA+u5DXrSV0nowLAEhg==";
};
};
"@cspell/dict-php-2.0.0" = {
@@ -3712,13 +3721,13 @@ let
sha512 = "ax8izl48JJuymEuvJzvNH22GHmpPEWLP+h4doyFZ/9IhR9AEycNc2rGBthZ5FiuktnFgusNag1AHr/WCj5pttw==";
};
};
- "@fluentui/react-8.71.1" = {
+ "@fluentui/react-8.72.0" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "8.71.1";
+ version = "8.72.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-8.71.1.tgz";
- sha512 = "V89vRcPh1qpB89kORQ0ehr4t7ypBy0hAuyMop1GgN7GXFsq3IZpaN2ti/SDiA3fU/jt7Z4SidHhW3+45IVKYrw==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-8.72.0.tgz";
+ sha512 = "L80pPa/Q9sfp/EYitLFuYyBjK/9ofEu7gwIk3rf6M3ptyXsa/9kTkhr9UxRYGPOep4+1qwcSOJd6G6zH5WVJUQ==";
};
};
"@fluentui/react-focus-8.6.0" = {
@@ -7879,6 +7888,33 @@ let
sha512 = "jf0UKP1nmuAwqe3I2D1FPZYDhcOrnnAQM36wYkPWZSYzO2OQv2Gcfms2g7vSQeq8+yK+8SZk+vP35lNR+IF70g==";
};
};
+ "@remix-run/node-1.4.3" = {
+ name = "_at_remix-run_slash_node";
+ packageName = "@remix-run/node";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@remix-run/node/-/node-1.4.3.tgz";
+ sha512 = "2x3BQ2qrA1v4Viu+GYMNMxxflnT5QcyOsPNCNvLjLm4o1pODHxYmp+2TEcZRgDqSTXgA7PNYlsEgG0BN/T33QA==";
+ };
+ };
+ "@remix-run/server-runtime-1.4.3" = {
+ name = "_at_remix-run_slash_server-runtime";
+ packageName = "@remix-run/server-runtime";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.4.3.tgz";
+ sha512 = "NgzoEAlIuZWv53oZRgxGz+jqkEtAa+veAuxlp5/UcZ/VhygpYIcfKwdx4eCOqJOi1TqILNWrh3cedEVvV0jccQ==";
+ };
+ };
+ "@remix-run/vercel-1.4.3" = {
+ name = "_at_remix-run_slash_vercel";
+ packageName = "@remix-run/vercel";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@remix-run/vercel/-/vercel-1.4.3.tgz";
+ sha512 = "ZNDmn/j8mU0rK+6VdMqZmWx50thlXtioNLJ0U6qic3hSFFr4vO1weRTUwRIFE3Gm3AxmmvcLxx581W2aTnReVQ==";
+ };
+ };
"@request/api-0.6.0" = {
name = "_at_request_slash_api";
packageName = "@request/api";
@@ -8338,13 +8374,13 @@ let
sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ==";
};
};
- "@swc/helpers-0.3.16" = {
+ "@swc/helpers-0.3.17" = {
name = "_at_swc_slash_helpers";
packageName = "@swc/helpers";
- version = "0.3.16";
+ version = "0.3.17";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.16.tgz";
- sha512 = "xOhhpOruRcroQ0Nb5a5IgP94AJ0DuJnhEfXL+icJ1gn7uls5DXX2mRrlBqmrd0rAj/+/BRU8RB2VN8mA8DuFYQ==";
+ url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.17.tgz";
+ sha512 = "tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==";
};
};
"@szmarczak/http-timer-1.1.2" = {
@@ -8725,6 +8761,15 @@ let
sha512 = "p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==";
};
};
+ "@types/busboy-0.3.2" = {
+ name = "_at_types_slash_busboy";
+ packageName = "@types/busboy";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/busboy/-/busboy-0.3.2.tgz";
+ sha512 = "iEvdm9Z9KdSs/ozuh1Z7ZsXrOl8F4M/CLMXPZHr3QuJ4d6Bjn+HBMC5EMKpwpAo8oi8iK9GZfFoHaIMrrZgwVw==";
+ };
+ };
"@types/cacheable-request-6.0.2" = {
name = "_at_types_slash_cacheable-request";
packageName = "@types/cacheable-request";
@@ -9517,13 +9562,13 @@ let
sha512 = "Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==";
};
};
- "@types/node-12.20.52" = {
+ "@types/node-12.20.54" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "12.20.52";
+ version = "12.20.54";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-12.20.52.tgz";
- sha512 = "cfkwWw72849SNYp3Zx0IcIs25vABmFh73xicxhCkTcvtZQeIez15PpwQN8fY3RD7gv1Wrxlc9MEtfMORZDEsGw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-12.20.54.tgz";
+ sha512 = "CFMnEPkSXWALI73t1oIWyb8QOmVrp6RruAqIx349sd+1ImaFwzlKcz55mwrx/yLyOyz1gkq/UKuNOigt27PXqg==";
};
};
"@types/node-13.13.52" = {
@@ -9544,13 +9589,13 @@ let
sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg==";
};
};
- "@types/node-14.18.18" = {
+ "@types/node-14.18.20" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.18.18";
+ version = "14.18.20";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.18.18.tgz";
- sha512 = "B9EoJFjhqcQ9OmQrNorItO+OwEOORNn3S31WuiHvZY/dm9ajkB7AKD/8toessEtHHNL+58jofbq7hMMY9v4yig==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.18.20.tgz";
+ sha512 = "Q8KKwm9YqEmUBRsqJ2GWJDtXltBDxTdC4m5vTdXBolu2PeQh8LX+f6BTwU+OuXPu37fLxoN6gidqBmnky36FXA==";
};
};
"@types/node-15.14.9" = {
@@ -9562,13 +9607,13 @@ let
sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==";
};
};
- "@types/node-16.11.36" = {
+ "@types/node-16.11.38" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.11.36";
+ version = "16.11.38";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.11.36.tgz";
- sha512 = "FR5QJe+TaoZ2GsMHkjuwoNabr+UrJNRr2HNOo+r/7vhcuntM6Ee/pRPOnRhhL2XE9OOvX9VLEq+BcXl3VjNoWA==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.11.38.tgz";
+ sha512 = "hjO/0K140An3GWDw2HJfq7gko3wWeznbjXgg+rzPdVzhe198hp4x2i1dgveAOEiFKd8sOilAxzoSJiVv5P/CUg==";
};
};
"@types/node-16.11.6" = {
@@ -9616,13 +9661,13 @@ let
sha512 = "miWq2m2FiQZmaHfdZNcbpp9PuXg34W5JZ5CrJ/BaS70VuhoJENBEQybeiYSaPBRNq6KQGnjfEnc/F3PN++D+XQ==";
};
};
- "@types/node-17.0.36" = {
+ "@types/node-17.0.38" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "17.0.36";
+ version = "17.0.38";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-17.0.36.tgz";
- sha512 = "V3orv+ggDsWVHP99K3JlwtH20R7J4IhI1Kksgc+64q5VxgfRkQG8Ws3MFm/FZOKDYGy9feGFlZ70/HpCNe9QaA==";
+ url = "https://registry.npmjs.org/@types/node/-/node-17.0.38.tgz";
+ sha512 = "5jY9RhV7c0Z4Jy09G+NIDTsCZ5G0L5n+Z+p+Y7t5VJHM30bgwzSjVtlcBxqAj+6L/swIlvtOSzr8rBk/aNyV2g==";
};
};
"@types/node-6.14.13" = {
@@ -10444,31 +10489,49 @@ let
sha512 = "UvGS+v87C7VTtQDcFHDLfvfl1zaZaLSwSmAnV35Ne7CzAVvotmZqt9lAIoNpMpaoRpdjVIcnUDwPSeIeA//EoQ==";
};
};
- "@vercel/build-utils-3.1.0" = {
+ "@vercel/build-utils-3.1.1" = {
name = "_at_vercel_slash_build-utils";
packageName = "@vercel/build-utils";
- version = "3.1.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-3.1.0.tgz";
- sha512 = "9aOOyNeH5w97h0F5dVx7bvVmT3wMfdcg364Z2OIcGCnPMb75IW2fFv0bD6Y/Q/nt/1rUqoD/ZElIOhpsD7QlNA==";
+ url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-3.1.1.tgz";
+ sha512 = "VmIEG8IdKH9hpVG+lm9h/ksFk5dWsdHinzSHXjekminPdGUUsb6BUHkYY/e10PSNJtg9Cq42c8pnr0kvaDSLew==";
};
};
- "@vercel/go-1.4.3" = {
+ "@vercel/go-1.4.4" = {
name = "_at_vercel_slash_go";
packageName = "@vercel/go";
- version = "1.4.3";
+ version = "1.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/go/-/go-1.4.3.tgz";
- sha512 = "2ixBzw8tU+1OgO6YTLhvUfAIHlV1hcO6cc9w8aQZDLbZqWvidiTsSY95GOT8BGvU0ctGVS21d5XUzs1eFs2JOw==";
+ url = "https://registry.npmjs.org/@vercel/go/-/go-1.4.4.tgz";
+ sha512 = "Bt4S6cLOz6YunTD2F0t5cjXBGfwNJ2LZcQVX/o3SUIDopCIjvOPD/w1a1BMqP8UGy1/Cj4DtcuDFUl5RfdIbyA==";
};
};
- "@vercel/node-1.15.3" = {
+ "@vercel/next-2.9.0" = {
+ name = "_at_vercel_slash_next";
+ packageName = "@vercel/next";
+ version = "2.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@vercel/next/-/next-2.9.0.tgz";
+ sha512 = "q3AhZPVJf+C2OjpU85yrJCuK1WSNJH6tsFIBwGNdgJ4VZGT9VV0ctypZubyL58H4JalpAAjoPASlUa5AP6N1EA==";
+ };
+ };
+ "@vercel/nft-0.19.1" = {
+ name = "_at_vercel_slash_nft";
+ packageName = "@vercel/nft";
+ version = "0.19.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@vercel/nft/-/nft-0.19.1.tgz";
+ sha512 = "klR5oN7S3WJsZz0r6Xsq7o8YlFEyU3/00VmlpZzIPVFzKfbcEjXo/sVR5lQBUqNKuOzhcbxaFtzW9aOyHjmPYA==";
+ };
+ };
+ "@vercel/node-1.15.4" = {
name = "_at_vercel_slash_node";
packageName = "@vercel/node";
- version = "1.15.3";
+ version = "1.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/node/-/node-1.15.3.tgz";
- sha512 = "eKm7/9UThh7TIdt7Rpcw40uMkWMQMo13G0E4g7Di2po+RSDKuD2G2sUwTRv8TzrjdB53rrqnuNo4a7xvGApBxA==";
+ url = "https://registry.npmjs.org/@vercel/node/-/node-1.15.4.tgz";
+ sha512 = "45fV7qVVw1cWCD6tWBXH0i4pSfYck4yF2qNKlJb1gmbO9JHWRqMYm0uxNWISD6E6Z69Pl1KDvfa+l48w/qEkaw==";
};
};
"@vercel/node-bridge-2.2.2" = {
@@ -10480,22 +10543,58 @@ let
sha512 = "haGBC8noyA5BfjCRXRH+VIkHCDVW5iD5UX24P2nOdilwUxI4qWsattS/co8QBGq64XsNLRAMdM5pQUE3zxkF9Q==";
};
};
- "@vercel/python-2.3.3" = {
+ "@vercel/python-2.3.4" = {
name = "_at_vercel_slash_python";
packageName = "@vercel/python";
- version = "2.3.3";
+ version = "2.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/python/-/python-2.3.3.tgz";
- sha512 = "cgl+eoSYqJsI+e0ZW9IYcpoigWFSBISCXqM193moIen6y62f+UKcY2RzYWD3RyXSN+KY3mcJdeakVNSik0NYOw==";
+ url = "https://registry.npmjs.org/@vercel/python/-/python-2.3.4.tgz";
+ sha512 = "2zbizaZyyawHkWCSZ2Tdoij1L2hdz6de9YCeJomWL/BXcOFhSesevkYC/hJbfXyYoJr79TUzSFmwu1cX6Nsiww==";
};
};
- "@vercel/ruby-1.3.6" = {
+ "@vercel/redwood-0.8.4" = {
+ name = "_at_vercel_slash_redwood";
+ packageName = "@vercel/redwood";
+ version = "0.8.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-0.8.4.tgz";
+ sha512 = "yo+FeIEW/Sh+pL9s3iCHhZSGPA/b/Me8pBWapbSejObpGSDLflAu+DkzOYeZLMi3JnynIl53h8Rkkjs1fjDSYw==";
+ };
+ };
+ "@vercel/remix-0.0.2" = {
+ name = "_at_vercel_slash_remix";
+ packageName = "@vercel/remix";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@vercel/remix/-/remix-0.0.2.tgz";
+ sha512 = "5mIpMbPUh6byNJrcpKfk95spgxK30o5cE2mAM3KbPJYSjsGYu56Bhf1OZOxiumce8e0aYE9R7TlGfeY+0ZVAlg==";
+ };
+ };
+ "@vercel/routing-utils-1.13.3" = {
+ name = "_at_vercel_slash_routing-utils";
+ packageName = "@vercel/routing-utils";
+ version = "1.13.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-1.13.3.tgz";
+ sha512 = "XnIafghL19PDQmcZJ4QNy0YKoQo7iJeYj3zEYxV9IFLlyqH4nPlme8L/Vh4BSqsm959QG1YesTJo7eQI0SwD4A==";
+ };
+ };
+ "@vercel/ruby-1.3.7" = {
name = "_at_vercel_slash_ruby";
packageName = "@vercel/ruby";
- version = "1.3.6";
+ version = "1.3.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.6.tgz";
- sha512 = "dM8sGN/rh92BHq9n5h7c9x6lMsdhrRQ0aMrstNDBlcZLqXyg+S6pRiZzkniXbheZjTdFeV+p08hAihQIu5gxaQ==";
+ url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.7.tgz";
+ sha512 = "uLMiIiPDaEtgJoqtsiOEBYNAK+3JRJs6esdnbVhoXvC3PpHo/rlYd8ri3Ll2wJfhogSvZr8C8LOXzXj7Lu4zBQ==";
+ };
+ };
+ "@vercel/static-build-0.26.0" = {
+ name = "_at_vercel_slash_static-build";
+ packageName = "@vercel/static-build";
+ version = "0.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-0.26.0.tgz";
+ sha512 = "U/jZZhyteq1fdq45LmHe/puCirA+3sd5myNuYvd7o3m/t3+FapI5C+8w96sHsaQdNPoXQH5xy50I/QhLNGEbVg==";
};
};
"@vscode/emmet-helper-2.8.4" = {
@@ -10732,6 +10831,33 @@ let
sha512 = "Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==";
};
};
+ "@web-std/blob-3.0.4" = {
+ name = "_at_web-std_slash_blob";
+ packageName = "@web-std/blob";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@web-std/blob/-/blob-3.0.4.tgz";
+ sha512 = "+dibyiw+uHYK4dX5cJ7HA+gtDAaUUe6JsOryp2ZpAC7h4ICsh49E34JwHoEKPlPvP0llCrNzz45vvD+xX5QDBg==";
+ };
+ };
+ "@web-std/file-3.0.2" = {
+ name = "_at_web-std_slash_file";
+ packageName = "@web-std/file";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@web-std/file/-/file-3.0.2.tgz";
+ sha512 = "pIH0uuZsmY8YFvSHP1NsBIiMT/1ce0suPrX74fEeO3Wbr1+rW0fUGEe4d0R99iLwXtyCwyserqCFI4BJkJlkRA==";
+ };
+ };
+ "@web-std/stream-1.0.0" = {
+ name = "_at_web-std_slash_stream";
+ packageName = "@web-std/stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@web-std/stream/-/stream-1.0.0.tgz";
+ sha512 = "jyIbdVl+0ZJyKGTV0Ohb9E6UnxP+t7ZzX4Do3AHjZKxUXKMs9EmqnBDQgHF7bEw0EzbQygOjtt/7gvtmi//iCQ==";
+ };
+ };
"@webassemblyjs/ast-1.11.1" = {
name = "_at_webassemblyjs_slash_ast";
packageName = "@webassemblyjs/ast";
@@ -11587,6 +11713,15 @@ let
sha512 = "uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg==";
};
};
+ "@zxing/text-encoding-0.9.0" = {
+ name = "_at_zxing_slash_text-encoding";
+ packageName = "@zxing/text-encoding";
+ version = "0.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@zxing/text-encoding/-/text-encoding-0.9.0.tgz";
+ sha512 = "U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==";
+ };
+ };
"CSSselect-0.4.1" = {
name = "CSSselect";
packageName = "CSSselect";
@@ -14440,13 +14575,22 @@ let
sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw==";
};
};
- "aws-sdk-2.1145.0" = {
+ "aws-sdk-2.1146.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.1145.0";
+ version = "2.1146.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1145.0.tgz";
- sha512 = "bjZJGFxHJadnp2kbg1etKw7ID1QmmKk1ivML0Xtt6S6GnGSfX8zVuLMkJZaxPMjlyZ6xeilGwzk2F9igxBCPCQ==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1146.0.tgz";
+ sha512 = "lg83hvrK2oiJVnklUVMXIJkeYX2nlqhvxIFlZ2wfoaJyvdGsEcOUdZ/EMDgiS0V2jwGS8CtTUypcW/t2S6gdcQ==";
+ };
+ };
+ "aws-sdk-2.1147.0" = {
+ name = "aws-sdk";
+ packageName = "aws-sdk";
+ version = "2.1147.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1147.0.tgz";
+ sha512 = "+CO8FnBgqHgxMJH0s8fv17Xqrh6V0lJ8zKOt3lHU+8QTiSoX5aLgr8zwmi0m7msHtyVeDWh50kiWAlvUs7U8Gw==";
};
};
"aws-sign2-0.6.0" = {
@@ -15547,13 +15691,13 @@ let
sha512 = "O1htyufFTYy3EO0JkHg2CLykdXEtV2ssqw47Gq9A0WByp662xpJnMEB9m43LZjsSDjIAOozWRExlFQk2hlV1XQ==";
};
};
- "bipf-1.6.4" = {
+ "bipf-1.6.5" = {
name = "bipf";
packageName = "bipf";
- version = "1.6.4";
+ version = "1.6.5";
src = fetchurl {
- url = "https://registry.npmjs.org/bipf/-/bipf-1.6.4.tgz";
- sha512 = "KDO1LCkbnVZ/+ojZasUWdax2Q2z+L8MNtcWUDDG5V5ASjSDyV1KWxTEOPRQrM0f0JpDppIvgKHuqKoxXhxo4YA==";
+ url = "https://registry.npmjs.org/bipf/-/bipf-1.6.5.tgz";
+ sha512 = "d3OnzFUE2G1nwJYP2pPGzLUz6PrMRWgRKi9ssfMN1GPDVCl8qGVDq+c+8I5p8Nnog0vZN4IOq1ojUufHfFRk8w==";
};
};
"bit-field-1.5.3" = {
@@ -15673,13 +15817,13 @@ let
sha512 = "YFgPTVRhUMncZr8tM3ige7gnViMGhKoGF23qaiISRG8xtYebTGHrMSMXsTXo6O1KbtdEI+4jzvGY1K/wdT9GUA==";
};
};
- "bittorrent-tracker-9.18.6" = {
+ "bittorrent-tracker-9.19.0" = {
name = "bittorrent-tracker";
packageName = "bittorrent-tracker";
- version = "9.18.6";
+ version = "9.19.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.18.6.tgz";
- sha512 = "Exd6udzcnquiE6n9G2Jge70CsV2xI8PuQoLOnuNtFX5FPTALN/MGDxpAMVSCnvb9wMe/T9+FdDHk8TaCbKPIGw==";
+ url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.19.0.tgz";
+ sha512 = "09d0aD2b+MC+zWvWajkUAKkYMynYW4tMbTKiRSthKtJZbafzEoNQSUHyND24SoCe3ZOb2fKfa6fu2INAESL9wA==";
};
};
"bitwise-xor-0.0.0" = {
@@ -15799,6 +15943,15 @@ let
sha512 = "BoCcDt8zBGShn6DawAGQw37s9SSs+fEjiZWDzyB+841PbOogcR2X7LGlM4sR3Zsiq/zoyl8MFWDfN6oDSlveBQ==";
};
};
+ "blob-0.0.4" = {
+ name = "blob";
+ packageName = "blob";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz";
+ sha512 = "YRc9zvVz4wNaxcXmiSgb9LAg7YYwqQ2xd0Sj6osfA7k/PKmIGVlnOYs3wOFdkRC9/JpQu8sGt/zHgJV7xzerfg==";
+ };
+ };
"blob-0.0.5" = {
name = "blob";
packageName = "blob";
@@ -15808,6 +15961,15 @@ let
sha512 = "gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==";
};
};
+ "blob-stream-0.1.3" = {
+ name = "blob-stream";
+ packageName = "blob-stream";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/blob-stream/-/blob-stream-0.1.3.tgz";
+ sha512 = "xXwyhgVmPsFVFFvtM5P0syI17/oae+MIjLn5jGhuD86mmSJ61EWMWmbPrV/0+bdcH9jQ2CzIhmTQKNUJL7IPog==";
+ };
+ };
"blob-to-buffer-1.2.9" = {
name = "blob-to-buffer";
packageName = "blob-to-buffer";
@@ -17960,22 +18122,22 @@ let
sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==";
};
};
- "cdk8s-2.3.11" = {
+ "cdk8s-2.3.13" = {
name = "cdk8s";
packageName = "cdk8s";
- version = "2.3.11";
+ version = "2.3.13";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.3.11.tgz";
- sha512 = "xwsy5xErTHNvhojNG66t67lFESBJaD0efQFeFZwAAUBXNjPDDpRKADX04ENUfTQLmcNeiXTCX6Cl3Uy58zoE2A==";
+ url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.3.13.tgz";
+ sha512 = "Y+lce7TB8eSHifBOd1OSdXWyfJ2TFqDiW8mUq2O6mUtIMrduCgWRLstHLScrf4lhRAhF/Pbrdh0DQjyuPk/2fQ==";
};
};
- "cdk8s-plus-22-2.0.0-rc.0" = {
+ "cdk8s-plus-22-2.0.0-rc.3" = {
name = "cdk8s-plus-22";
packageName = "cdk8s-plus-22";
- version = "2.0.0-rc.0";
+ version = "2.0.0-rc.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.0.tgz";
- sha512 = "uHFvLj8gXn7LiitIFdRnqVuXQqvFe4v5Xl8pYW4OmjWTcjsSw03o49gGvUH3Dbu5iOYoEviacIl6VHePHpDlIQ==";
+ url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.3.tgz";
+ sha512 = "GxeqFjfaMRTVdFgR5Sf2SwR3Qf2D6MbECQSRAuDF+9dpLsPqky/QHX8O6CKC7PBYcDnQybsb6I6+azq+d7lJ4g==";
};
};
"cdktf-0.11.0" = {
@@ -20642,13 +20804,13 @@ let
sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==";
};
};
- "constructs-10.1.23" = {
+ "constructs-10.1.24" = {
name = "constructs";
packageName = "constructs";
- version = "10.1.23";
+ version = "10.1.24";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-10.1.23.tgz";
- sha512 = "ZjUn4MI6EiNYHeBjISVlCNTerHbDbuyWv8WW0WJnuvzsSAExBdxi7K5WJx27TgsD1jPZyvZnhJabDxilvBbKag==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-10.1.24.tgz";
+ sha512 = "JndDuwic6mkJyyDjJ7ujNdCya753uFYhfizcQ/STleCzRxT6R8f0JTjDtFrG+n0jpH/znUF+OsC1TGpo4W7opA==";
};
};
"consume-http-header-1.0.0" = {
@@ -20841,6 +21003,15 @@ let
sha512 = "LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==";
};
};
+ "conventional-changelog-conventionalcommits-5.0.0" = {
+ name = "conventional-changelog-conventionalcommits";
+ packageName = "conventional-changelog-conventionalcommits";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz";
+ sha512 = "lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==";
+ };
+ };
"conventional-changelog-core-4.2.4" = {
name = "conventional-changelog-core";
packageName = "conventional-changelog-core";
@@ -21093,6 +21264,15 @@ let
sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==";
};
};
+ "cookie-signature-1.2.0" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.0.tgz";
+ sha512 = "R0BOPfLGTitaKhgKROKZQN6iyq2iDQcH1DOF8nJoaWapguX5bC2w+Q/I9NmmM5lfcvEarnLZr+cCvmEYYSXvYA==";
+ };
+ };
"cookiejar-2.0.6" = {
name = "cookiejar";
packageName = "cookiejar";
@@ -21264,6 +21444,15 @@ let
sha512 = "Jt8SReuDKVNZnZEzyEQT5eK6T2RRCXkfTq7Lo09kpm+fHjgGewSbNjV+Wt4yZMhPDdzz2x1ulI5z/w4nxpBseg==";
};
};
+ "core-js-3.22.8" = {
+ name = "core-js";
+ packageName = "core-js";
+ version = "3.22.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.22.8.tgz";
+ sha512 = "UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA==";
+ };
+ };
"core-js-compat-3.22.7" = {
name = "core-js-compat";
packageName = "core-js-compat";
@@ -21273,6 +21462,15 @@ let
sha512 = "uI9DAQKKiiE/mclIC5g4AjRpio27g+VMRhe6rQoz+q4Wm4L6A/fJhiLtBw+sfOpDG9wZ3O0pxIw7GbfOlBgjOA==";
};
};
+ "core-js-compat-3.22.8" = {
+ name = "core-js-compat";
+ packageName = "core-js-compat";
+ version = "3.22.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.8.tgz";
+ sha512 = "pQnwg4xtuvc2Bs/5zYQPaEYYSuTxsF7LBWF0SvnVhthZo/Qe+rJpcEekrdNK5DWwDJ0gv0oI9NNX5Mppdy0ctg==";
+ };
+ };
"core-js-pure-3.22.7" = {
name = "core-js-pure";
packageName = "core-js-pure";
@@ -21282,6 +21480,15 @@ let
sha512 = "wTriFxiZI+C8msGeh7fJcbC/a0V8fdInN1oS2eK79DMBGs8iIJiXhtFJCiT3rBa8w6zroHWW3p8ArlujZ/Mz+w==";
};
};
+ "core-js-pure-3.22.8" = {
+ name = "core-js-pure";
+ packageName = "core-js-pure";
+ version = "3.22.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.8.tgz";
+ sha512 = "bOxbZIy9S5n4OVH63XaLVXZ49QKicjowDx/UELyJ68vxfCRpYsbyh/WNZNfEfAk+ekA8vSjt+gCDpvh672bc3w==";
+ };
+ };
"core-util-is-1.0.2" = {
name = "core-util-is";
packageName = "core-util-is";
@@ -21525,13 +21732,13 @@ let
sha512 = "gYTKKexFO3kh200H1Nit76sRwRtOY32vQd3jpAQKpLtZqyNsSQNfI4N7o3eP2wUjV35pTWKRYqFUDBvUha/Pkw==";
};
};
- "create-gatsby-2.15.0" = {
+ "create-gatsby-2.15.1" = {
name = "create-gatsby";
packageName = "create-gatsby";
- version = "2.15.0";
+ version = "2.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.15.0.tgz";
- sha512 = "JvD1jAUG+957G7by8kWkQXHTyCvfHsA1wNCReSlx/nyNwnwjimrGix6oDCWRk6TnXTc7twSPdmDzLoSYpRwmuQ==";
+ url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.15.1.tgz";
+ sha512 = "oFZtU5NP5jUa/A/y6p8L2pNkW+BoE0aTPTYbZ+pwQw9sE7MfYeI+t9yNDBA/9qVaaAqUt7104NkQbix/mT1GVw==";
};
};
"create-graphback-1.0.1" = {
@@ -21795,49 +22002,49 @@ let
sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==";
};
};
- "cspell-gitignore-6.0.0" = {
+ "cspell-gitignore-6.1.0" = {
name = "cspell-gitignore";
packageName = "cspell-gitignore";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0.tgz";
- sha512 = "VngxI9wdb72CWElxGNJQ24MmEewhXNCEkW2Bx5AMOM/vgmuim8JlslEGYWCdN0XqJ4OtOVzIZ2muMV9/Oy5AvQ==";
+ url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.1.0.tgz";
+ sha512 = "ACEAVvzCP4lOCnfRqKBC7YWMM30kSSCaQql+VvkFACwGQezTnK4LUDT0WfbMY/22pPvXbjOiMjBXH7NwcEctKg==";
};
};
- "cspell-glob-6.0.0" = {
+ "cspell-glob-6.1.0" = {
name = "cspell-glob";
packageName = "cspell-glob";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0.tgz";
- sha512 = "H0FiYJm5Zv+HzJseRdNwHQMeJBNC8JqAzBw+5dS78RHzDyU8P3XeFEhUEy2baS2od2zxIRPLvL0/8fBXEzxPhQ==";
+ url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.1.0.tgz";
+ sha512 = "Uugw9fnANu4alMIgwF7nCh4phXmyZ8kzuPdF6r3a2sbcXE9HjhkKcVHB0cNJyKmex6Fox09SEHE6kzaOzI1phg==";
};
};
- "cspell-io-6.0.0" = {
+ "cspell-io-6.1.0" = {
name = "cspell-io";
packageName = "cspell-io";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0.tgz";
- sha512 = "pqrBrb7zW7cIopJ1P+LgHflU1bBg2f1SPmThU+Q8jWPshE3twYfdhwsAy13X/92vZFZa2+qZS4ejSpEC6SO9SQ==";
+ url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.1.0.tgz";
+ sha512 = "0bKSDSIZv3w+FofBcsP9kLx3BaBnXZDmsoGGCxmhJmESus4N/OQ5Ndea23Pe5NGo9NwMQiu92hE/2Jo1mD09Ow==";
};
};
- "cspell-lib-6.0.0" = {
+ "cspell-lib-6.1.0" = {
name = "cspell-lib";
packageName = "cspell-lib";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0.tgz";
- sha512 = "NuPOO0SPckmRCJy3jWrXc7yVfVFrFM9H/rVWBHK1Z8lPFvAD9Y+/q/+Buw7eYIxpAgX3x/t7HU/Xscf0xIQqsQ==";
+ url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.1.0.tgz";
+ sha512 = "uDtjuqFACkRPuKK6q04TCT9hDrT0yTtgCdGQINX2flAXHrrTgNBhAgZu9EHntlKctqEcmM7cHHD9M6AZyBBcxA==";
};
};
- "cspell-trie-lib-6.0.0" = {
+ "cspell-trie-lib-6.1.0" = {
name = "cspell-trie-lib";
packageName = "cspell-trie-lib";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0.tgz";
- sha512 = "vrYgxw9pohpoZxZ6AYtTNmx4RcDfCIw1v2s2BpDmLcs0t3Js333YLqjd/B78OHIYjEBcGQgLO9Xl0O32dHXbdA==";
+ url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.1.0.tgz";
+ sha512 = "Rqcl3pH9k5t3zjBfQ/cXfmaVnTfzOStiz6qVQO1sgeCuZZ09hcuGVQZzmf3Ou+Z/PUaWQy7vdht86nPC7EMzCg==";
};
};
"csrf-3.1.0" = {
@@ -25926,13 +26133,13 @@ let
sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw==";
};
};
- "electron-to-chromium-1.4.142" = {
+ "electron-to-chromium-1.4.143" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.4.142";
+ version = "1.4.143";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.142.tgz";
- sha512 = "ea8Q1YX0JRp4GylOmX4gFHIizi0j9GfRW4EkaHnkZp0agRCBB4ZGeCv17IEzIvBkiYVwfoKVhKZJbTfqCRdQdg==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.143.tgz";
+ sha512 = "2hIgvu0+pDfXIqmVmV5X6iwMjQ2KxDsWKwM+oI1fABEOy/Dqmll0QJRmIQ3rm+XaoUa/qKrmy5h7LSTFQ6Ldzg==";
};
};
"electrum-client-git+https://github.com/janoside/electrum-client" = {
@@ -27485,6 +27692,15 @@ let
sha512 = "3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ==";
};
};
+ "estree-walker-0.6.1" = {
+ name = "estree-walker";
+ packageName = "estree-walker";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz";
+ sha512 = "SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==";
+ };
+ };
"estree-walker-2.0.2" = {
name = "estree-walker";
packageName = "estree-walker";
@@ -28781,6 +28997,15 @@ let
sha512 = "5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==";
};
};
+ "fast-varint-1.0.0" = {
+ name = "fast-varint";
+ packageName = "fast-varint";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-varint/-/fast-varint-1.0.0.tgz";
+ sha512 = "9fdkt1gsRUHsAgaPUN/vsQYACjdOg5iV1zzYi0Q0k1CE8NSuTPCQd/wTV2MpkQsQr62cWKs4O4PyVsiwrl2E/g==";
+ };
+ };
"fast-xml-parser-3.19.0" = {
name = "fast-xml-parser";
packageName = "fast-xml-parser";
@@ -33480,6 +33705,15 @@ let
sha512 = "+ADn1uO85HwKnhziJlTm4cvrwFv60TlFqyos75ikfE9kq4RNrLcf+uVmEePT/4d/gh9TxKmwTfpVN9fpKyJKJA==";
};
};
+ "history-5.3.0" = {
+ name = "history";
+ packageName = "history";
+ version = "5.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/history/-/history-5.3.0.tgz";
+ sha512 = "ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==";
+ };
+ };
"hls.js-1.1.2" = {
name = "hls.js";
packageName = "hls.js";
@@ -38359,13 +38593,13 @@ let
sha512 = "aJgfBwn3srai/4HGwYx5si+W4kuzaQh2/1xCzgpiOKwu/n0UZg0IB7z59IG6HQ/G5Yfu8Mc6AEfjAsi0kj2dbA==";
};
};
- "jsii-srcmak-0.1.576" = {
+ "jsii-srcmak-0.1.577" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.576";
+ version = "0.1.577";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.576.tgz";
- sha512 = "+yIhXJJfb66plT3vie8n0YV7NLOQElKfZc5hzao3fhfdsuBwBi26KQd69VNYr3r5Q5TkESQw6vabAaQOXSjdPw==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.577.tgz";
+ sha512 = "+WdAyiVYWNA0Su+/pki3Zhkh5dD694r2HN+sDfIvoIHSyUktNiGaCfndUXECopXBEMFoMcPqjZxGV1Tb6Kki6A==";
};
};
"json-bigint-1.0.0" = {
@@ -38656,13 +38890,13 @@ let
sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA==";
};
};
- "json2jsii-0.3.26" = {
+ "json2jsii-0.3.27" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.3.26";
+ version = "0.3.27";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.26.tgz";
- sha512 = "KN6vuAj1XFZ3gTXSW5O/i8giwEXPs7QqK7WotClahs3wkndPAr8Dh1VdutyafvXCF3N5blN+GUdSBRtBAkcTWQ==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.27.tgz";
+ sha512 = "4BvRGWZW26Zlv0JLRJg/yUbf+qFhDrvBS8OuPyI0Zjc5Se2o5m+m01u17uK7N/fOr+cV8AlGmu3uoEk2/RCijQ==";
};
};
"json3-3.2.6" = {
@@ -45575,7 +45809,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/mount-point/-/mount-point-3.0.0.tgz";
- sha1 = "665cb9edebe80d110e658db56c31d0aef51a8f97";
+ sha512 = "jAhfD7ZCG+dbESZjcY1SdFVFqSJkh/yGbdsifHcPkvuLRO5ugK0Ssmd9jdATu29BTd4JiN+vkpMzVvsUgP3SZA==";
};
};
"mountable-hypertrie-2.8.0" = {
@@ -45602,7 +45836,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz";
- sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
+ sha512 = "hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==";
};
};
"move-file-2.1.0" = {
@@ -45701,7 +45935,7 @@ let
version = "0.7.1";
src = fetchurl {
url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz";
- sha1 = "9cd13c03adbff25b65effde7ce864ee952017098";
+ sha512 = "lRLiIR9fSNpnP6TC4v8+4OU7oStC01esuNowdQ34L+Gk8e5Puoc88IqJ+XAY/B3Mn2ZKis8l8HX90oU8ivzUHg==";
};
};
"ms-0.7.3" = {
@@ -45710,7 +45944,7 @@ let
version = "0.7.3";
src = fetchurl {
url = "https://registry.npmjs.org/ms/-/ms-0.7.3.tgz";
- sha1 = "708155a5e44e33f5fd0fc53e81d0d40a91be1fff";
+ sha512 = "lrKNzMWqQZgwJahtrtrM+9NgOoDUveDrVmm5aGXrf3BdtL0mq7X6IVzoZaw+TfNti29eHd1/8GI+h45K5cQ6/w==";
};
};
"ms-2.0.0" = {
@@ -45719,7 +45953,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
+ sha512 = "Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==";
};
};
"ms-2.1.1" = {
@@ -45755,7 +45989,7 @@ let
version = "0.1.26";
src = fetchurl {
url = "https://registry.npmjs.org/msgpack-lite/-/msgpack-lite-0.1.26.tgz";
- sha1 = "dd3c50b26f059f25e7edee3644418358e2a9ad89";
+ sha512 = "SZ2IxeqZ1oRFGo0xFGbvBJWMp3yLIY9rlIJyxy8CGrwZn1f0ZK4r6jV/AM1r0FZMDUkWkglOk/eeKIL9g77Nxw==";
};
};
"msgpack5-3.6.1" = {
@@ -45818,7 +46052,7 @@ let
version = "2.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/multi-random-access/-/multi-random-access-2.1.1.tgz";
- sha1 = "6462f1b204109ccc644601650110a828443d66e2";
+ sha512 = "H3nckn57EbTeaXyewTsUAdXx0mYFSmmjQx/WWG8DlioxOzNcCXvtYEEEVYLaPxICrU3xMSdmH4XjLHUozDFtMQ==";
};
};
"multiblob-1.13.8" = {
@@ -45845,7 +46079,7 @@ let
version = "4.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-4.0.1.tgz";
- sha1 = "abf022fc866727055a9e0c2bc98097f5ebad97a2";
+ sha512 = "e1WjgIOzW2lzbq4CnGDaB+5FiY5g5maPVIUhdbsoWl64lKBhqa68Gsi3MIglEf0Vdhux4vVQUKyVP6s//r1B1A==";
};
};
"multicast-dns-6.2.3" = {
@@ -45872,7 +46106,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz";
- sha1 = "899f11d9686e5e05cb91b35d5f0e63b773cfc901";
+ sha512 = "cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==";
};
};
"multicb-1.2.2" = {
@@ -45890,7 +46124,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz";
- sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b";
+ sha512 = "0mzK8ymiWdehTBiJh0vClAzGyQbdtyWqzSVx//EK4N/D+599RFlGfTAsKw2zMSABtDG9C6Ul2+t8f2Lbdjf5mA==";
};
};
"multimatch-5.0.0" = {
@@ -45908,7 +46142,7 @@ let
version = "2.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/multiparty/-/multiparty-2.2.0.tgz";
- sha1 = "a567c2af000ad22dc8f2a653d91978ae1f5316f4";
+ sha512 = "fiFMI4tSze1TsrWFZNABRwy7kF/VycEWz4t0UFESOoP5IdJh29AUFmbirWXv/Ih/rNw62OO2YaQpQEiw1BFQpQ==";
};
};
"multiparty-4.2.3" = {
@@ -45926,7 +46160,7 @@ let
version = "0.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz";
- sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b";
+ sha512 = "7ZxrUybYv9NonoXgwoOqtStIu18D1c3eFZj27hqgf5kBrBF8Q+tE8V0MW8dKM5QLkQPh1JhhbKgHLY9kifov4Q==";
};
};
"multiserver-3.8.2" = {
@@ -45971,7 +46205,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz";
- sha1 = "b06278e21fc6c37fa5313732b0412bcb6ae15f51";
+ sha512 = "TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==";
};
};
"mustache-2.3.2" = {
@@ -45998,7 +46232,7 @@ let
version = "0.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/mutate.js/-/mutate.js-0.2.0.tgz";
- sha1 = "2e5cb1ac64c937dae28296e8f42af5eafd9bc7ef";
+ sha512 = "vIvgot2QlLsAjk2ctpToTXtij/GdM73mCHxH63gr07u1rjhJyTOdrMAGNeJ2/ivP4YySWoPmFrgbK24jjxHcyg==";
};
};
"mutation-observer-1.0.3" = {
@@ -46025,7 +46259,7 @@ let
version = "0.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz";
- sha1 = "a9219960a6d5d5d046597aee51252c6655f7177e";
+ sha512 = "amvrY4m/7oZamehMoFi1tbwU/kXbVvRTGM2S7F+PZi3n51Jx+9AcSQ3EQsag3tR+hS2higfgOP/Kl8kri/X52A==";
};
};
"mute-stream-0.0.5" = {
@@ -46034,7 +46268,7 @@ let
version = "0.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz";
- sha1 = "8fbfabb0a98a253d3184331f9e8deb7372fac6c0";
+ sha512 = "EbrziT4s8cWPmzr47eYVW3wimS4HsvlnV5ri1xw1aR6JQo/OrJX5rkl32K/QQHdxeabJETtfeaROGhd8W7uBgg==";
};
};
"mute-stream-0.0.6" = {
@@ -46043,7 +46277,7 @@ let
version = "0.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.6.tgz";
- sha1 = "48962b19e169fd1dfc240b3f1e7317627bbc47db";
+ sha512 = "m0kBTDLF/0lgzCsPVmJSKM5xkLNX7ZAB0Q+n2DP37JMIRPVC2R4c3BdO6x++bXFKftbhvSfKgwxAexME+BRDRw==";
};
};
"mute-stream-0.0.7" = {
@@ -46052,7 +46286,7 @@ let
version = "0.0.7";
src = fetchurl {
url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz";
- sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab";
+ sha512 = "r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==";
};
};
"mute-stream-0.0.8" = {
@@ -46115,7 +46349,7 @@ let
version = "2.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz";
- sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2";
+ sha512 = "at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==";
};
};
"my-local-ip-1.0.0" = {
@@ -46124,7 +46358,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/my-local-ip/-/my-local-ip-1.0.0.tgz";
- sha1 = "37585555a4ff1985309edac7c2a045a466be6c32";
+ sha512 = "6pb/Nzt0ClN9PXu9jBKNFxB4HyfQSSJDgQCmNQPt+PRqG3fz/z7YbgRdhR9T21yJmZs+zTNSikG0Ea0WnK/11Q==";
};
};
"mysql-2.18.1" = {
@@ -46160,7 +46394,7 @@ let
version = "0.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/named-regexp/-/named-regexp-0.1.1.tgz";
- sha1 = "cd9c5383245fa5cbc712a73d669b1e4e2aef590d";
+ sha512 = "x/zt9LVYbDSCLoZEYzZ5wcjokXdh33DQp0CKg2hqunEV8OEzTbVnAIaGj89onCoebtaJy7NC34qTMTBm4EBrCw==";
};
};
"nan-0.3.2" = {
@@ -46169,7 +46403,7 @@ let
version = "0.3.2";
src = fetchurl {
url = "https://registry.npmjs.org/nan/-/nan-0.3.2.tgz";
- sha1 = "0df1935cab15369075ef160ad2894107aa14dc2d";
+ sha512 = "V9/Pyy5Oelv6vVJP9X+dAzU3IO19j6YXrJnODHxP2h54hTvfFQGahdsQV6Ule/UukiEJk1SkQ/aUyWUm61RBQw==";
};
};
"nan-2.14.0" = {
@@ -46205,7 +46439,7 @@ let
version = "2.3.5";
src = fetchurl {
url = "https://registry.npmjs.org/nan/-/nan-2.3.5.tgz";
- sha1 = "822a0dc266290ce4cd3a12282ca3e7e364668a08";
+ sha512 = "+1vWEe1RBUNgjZJGAXxVDyNmH3TTG8AaLj0Qw5Ye/gqwrpDWn43WNF3/HcHnRpzm+gWqW65oXYQdu6UvBC/+vA==";
};
};
"nan-2.4.0" = {
@@ -46214,7 +46448,7 @@ let
version = "2.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/nan/-/nan-2.4.0.tgz";
- sha1 = "fb3c59d45fe4effe215f0b890f8adf6eb32d2232";
+ sha512 = "Ym8Mn5u8D8Fwo7fHWhD7xEyKe/y/J8Epkxp6iJfZhtgnRva+GN+dQddiWGE2cksWCV92K/HzdHlJWo7aZJDlFw==";
};
};
"nanoassert-1.1.0" = {
@@ -46223,7 +46457,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz";
- sha1 = "4f3152e09540fde28c76f44b19bbcd1d5a42478d";
+ sha512 = "C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ==";
};
};
"nanoassert-2.0.0" = {
@@ -46385,7 +46619,7 @@ let
version = "0.8.1";
src = fetchurl {
url = "https://registry.npmjs.org/native-promise-only/-/native-promise-only-0.8.1.tgz";
- sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11";
+ sha512 = "zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg==";
};
};
"natives-1.1.6" = {
@@ -46403,7 +46637,7 @@ let
version = "1.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz";
- sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7";
+ sha512 = "OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==";
};
};
"natural-orderby-2.0.3" = {
@@ -46448,7 +46682,7 @@ let
version = "0.6.9";
src = fetchurl {
url = "https://registry.npmjs.org/nconf/-/nconf-0.6.9.tgz";
- sha1 = "9570ef15ed6f9ae6b2b3c8d5e71b66d3193cd661";
+ sha512 = "MHiYHIc2igQsoI1v0IcVE4MVaV/+yIQtduOwUcQNoLd+pPgoKblWKbgU3itkhC0az5w2VMdQlQuAO+oi4qxtJg==";
};
};
"ncp-0.4.2" = {
@@ -46457,7 +46691,7 @@ let
version = "0.4.2";
src = fetchurl {
url = "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz";
- sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574";
+ sha512 = "PfGU8jYWdRl4FqJfCy0IzbkGyFHntfWygZg46nFk/dJD/XRrk2cj0SsKSX9n5u5gE0E0YfEpKWrEkfjnlZSTXA==";
};
};
"ncp-1.0.1" = {
@@ -46466,7 +46700,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz";
- sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246";
+ sha512 = "akBX7I5X9KQDDWmYYgQlLbVbjkveTje2mioZjhLLrVt09akSZcoqXWE5LEn1E2fu8T7th1PZYGfewQsTkTLTmQ==";
};
};
"ncp-2.0.0" = {
@@ -46475,7 +46709,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz";
- sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3";
+ sha512 = "zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==";
};
};
"ndarray-1.0.19" = {
@@ -46493,7 +46727,7 @@ let
version = "1.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz";
- sha1 = "8caebeaaa24d5ecf70ff86020637977da8ee585a";
+ sha512 = "51cECUJMT0rUZNQa09EoKsnFeDL4x2dHRT0VR5U2H5ZgEcm95ZDWcMA5JShroXjHOejmAD/fg8+H+OvUnVXz2g==";
};
};
"ndjson-1.5.0" = {
@@ -46502,7 +46736,7 @@ let
version = "1.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz";
- sha1 = "ae603b36b134bcec347b452422b0bf98d5832ec8";
+ sha512 = "hUPLuaziboGjNF7wHngkgVc0FOclR8dDk/HfEvTtDr/iUrqBWiRcRSTK3/nLOqKH33th714BrMmTPtObI9gZxQ==";
};
};
"near-api-js-0.44.2" = {
@@ -46583,7 +46817,7 @@ let
version = "1.8.0";
src = fetchurl {
url = "https://registry.npmjs.org/nedb/-/nedb-1.8.0.tgz";
- sha1 = "0e3502cd82c004d5355a43c9e55577bd7bd91d88";
+ sha512 = "ip7BJdyb5m+86ZbSb4y10FCCW9g35+U8bDRrZlAfCI6m4dKwEsQ5M52grcDcVK4Vm/vnPlDLywkyo3GliEkb5A==";
};
};
"needle-1.6.0" = {
@@ -46592,7 +46826,7 @@ let
version = "1.6.0";
src = fetchurl {
url = "https://registry.npmjs.org/needle/-/needle-1.6.0.tgz";
- sha1 = "f52a5858972121618e002f8e6384cadac22d624f";
+ sha512 = "ogVK1D/Cgemw2vM1KJN6B83DwcKbDepdkMNtVJcXIe+xoaCOdC+aJHzhEov7xjsY9S7rBIuHP59W1fLsbGqDhA==";
};
};
"needle-2.4.0" = {
@@ -46628,7 +46862,7 @@ let
version = "0.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/negotiator/-/negotiator-0.3.0.tgz";
- sha1 = "706d692efeddf574d57ea9fb1ab89a4fa7ee8f60";
+ sha512 = "q9wF64uB31BDZQ44DWf+8gE7y8xSpBdREAsJfnBO2WX9ecsutfUO6S9uWEdixlDLOlWaqnlnFXXwZxUUmyLfgg==";
};
};
"negotiator-0.5.3" = {
@@ -46637,7 +46871,7 @@ let
version = "0.5.3";
src = fetchurl {
url = "https://registry.npmjs.org/negotiator/-/negotiator-0.5.3.tgz";
- sha1 = "269d5c476810ec92edbe7b6c2f28316384f9a7e8";
+ sha512 = "oXmnazqehLNFohqgLxRyUdOQU9/UX0NpCpsnbjWUjM62ZM8oSOXYZpHc68XR130ftPNano0oQXGdREAplZRhaQ==";
};
};
"negotiator-0.6.3" = {
@@ -46692,7 +46926,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz";
- sha1 = "19f619591519f096769a5ba9a86e6eeec823c3cf";
+ sha512 = "o32anp9JA7oezPOFSfG2BBXSdHepOm5FpJvwxHWDtfJ3Bg3xdi68S6ijPlEOfUg6quxZWyvJM+8fHk1yMDKspA==";
};
};
"nested-error-stacks-2.0.1" = {
@@ -46719,7 +46953,7 @@ let
version = "1.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz";
- sha1 = "20297e89d86f6f6400f250d9f4f6b4c1945fcd35";
+ sha512 = "3DWDqAtIiPSkBXZyYEjwebfK56nrlQfRGt642fu8RPaL+ePu750+HCMHxjJCG3iEHq/0aeMvX6KIzlv7nuhfrA==";
};
};
"netmask-2.0.2" = {
@@ -46737,7 +46971,7 @@ let
version = "0.1.4";
src = fetchurl {
url = "https://registry.npmjs.org/netrc/-/netrc-0.1.4.tgz";
- sha1 = "6be94fcaca8d77ade0a9670dc460914c94472444";
+ sha512 = "ye8AIYWQcP9MvoM1i0Z2jV0qed31Z8EWXYnyGNkiUAd+Fo8J+7uy90xTV8g/oAbhtjkY7iZbNTizQaXdKUuwpQ==";
};
};
"netrc-parser-3.1.6" = {
@@ -46755,7 +46989,7 @@ let
version = "3.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/nets/-/nets-3.2.0.tgz";
- sha1 = "d511fbab7af11da013f21b97ee91747d33852d38";
+ sha512 = "5644wFwLQzom2zx/4CzQXO8OcOADf1otKe5vUvfAqXes18gruSv18wGIBHlNclTGQuOOLgzGPYKen26tfNIfBQ==";
};
};
"network-address-0.0.5" = {
@@ -46764,7 +46998,7 @@ let
version = "0.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/network-address/-/network-address-0.0.5.tgz";
- sha1 = "a400225438cacb67cd6108e8e826d5920a705dcc";
+ sha512 = "XAY9TbtvRU8BX6Ih8h6pmMTy0jODse8e6DrfQwhnfQqkK5C8qP/tkSMuvMIgc/ct0asXBXjtSewUDa7ywwtTtA==";
};
};
"network-address-1.1.2" = {
@@ -46773,7 +47007,7 @@ let
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/network-address/-/network-address-1.1.2.tgz";
- sha1 = "4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e";
+ sha512 = "Q6878fmvItA1mE7H9Il46lONgFgTzX2f98zkS0c2YlkCACzNjwvum/8Kq693IQpxe9zy+w+Zm/4p0wQreLEtZw==";
};
};
"new-github-release-url-1.0.0" = {
@@ -46791,7 +47025,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/next-event/-/next-event-1.0.0.tgz";
- sha1 = "e7778acde2e55802e0ad1879c39cf6f75eda61d8";
+ sha512 = "IXGPhl/yAiUU597gz+k5OYxYZkmLSWTcPPcpQjWABud9OK6m/ZNLrVdcEu4e7NgmOObFIhgZVg1jecPYT/6AoA==";
};
};
"next-line-1.1.0" = {
@@ -46800,7 +47034,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/next-line/-/next-line-1.1.0.tgz";
- sha1 = "fcae57853052b6a9bae8208e40dd7d3c2d304603";
+ sha512 = "+I10J3wKNoKddNxn0CNpoZ3eTZuqxjNM3b1GImVx22+ePI+Y15P8g/j3WsbP0fhzzrFzrtjOAoq5NCCucswXOQ==";
};
};
"next-tick-1.1.0" = {
@@ -46836,7 +47070,7 @@ let
version = "0.0.25";
src = fetchurl {
url = "https://registry.npmjs.org/nijs/-/nijs-0.0.25.tgz";
- sha1 = "04b035cb530d46859d1018839a518c029133f676";
+ sha512 = "uMpozOyrni5Tvj3O87pz1AYPrcoaGhs7jUWcv4ZII2BB4mHgoDcN3Tgn/1ezarfsxj1KiPU+TPn2M7XAcvA43g==";
};
};
"nlcst-is-literal-1.2.2" = {
@@ -47043,7 +47277,7 @@ let
version = "0.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz";
- sha1 = "180eac7003e0c707618ef31368f62f84b2a69091";
+ sha512 = "Jx5lPaaLdIaOsj2mVLWMWulXF6GQVdyLvNSxmiYCvZ8Ma2hfKX0POoR2kgKOqz+oFsRreq0yYZjQ2wjE9VNzCA==";
};
};
"node-cache-5.1.2" = {
@@ -47061,7 +47295,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/node-color-readline/-/node-color-readline-1.0.1.tgz";
- sha1 = "e57063e6101c8387160ac2aa359d6427e1e26886";
+ sha512 = "h66cRVEWnPQFxh5Y1hk9MNs6jvlB26CjT727ZztkIkPN+eyRI2c9powQrBJ9pty2Kj7IBySDnYHig7QElmU4Pg==";
};
};
"node-dir-0.1.17" = {
@@ -47070,7 +47304,7 @@ let
version = "0.1.17";
src = fetchurl {
url = "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz";
- sha1 = "5f5665d93351335caabef8f1c554516cf5f1e4e5";
+ sha512 = "tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==";
};
};
"node-domexception-1.0.0" = {
@@ -47178,7 +47412,7 @@ let
version = "0.2.24";
src = fetchurl {
url = "https://registry.npmjs.org/node-forge/-/node-forge-0.2.24.tgz";
- sha1 = "fa6f846f42fa93f63a0a30c9fbff7b4e130e0858";
+ sha512 = "1y4WL1S6NQxoWH/pwweve88fhXD0tbMfiakZileMHDJDbhXjPh5omL2B5EVDtjdGkBOrTxqRjE3y8tucCl7AfQ==";
};
};
"node-forge-0.7.6" = {
@@ -47313,7 +47547,7 @@ let
version = "0.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz";
- sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b";
+ sha512 = "O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==";
};
};
"node-libs-browser-2.2.1" = {
@@ -47367,7 +47601,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/node-persist/-/node-persist-2.1.0.tgz";
- sha1 = "e652bbf3885a04dad6a353d74176177c83914707";
+ sha512 = "NI30KmynAIpKtvl3XaLE/Q/hPUNfh2bFM0U9zgWyIVzBUL/fh1EMk2/rTAqWY6KXrX8jqusVA6avPJ6I2S9B4w==";
};
};
"node-polyglot-1.0.0" = {
@@ -47376,7 +47610,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/node-polyglot/-/node-polyglot-1.0.0.tgz";
- sha1 = "25b4d1d9d8eb02b48271c96000c4e6d366eef689";
+ sha512 = "Z0BMcYeqg/JAv21qjHw+SCWf8y0WLWKfPp3BYFWeoAgrDXL3+X2fFn2T5Kel3mt86Ec5tE8k8t+zG4Kbgji3CQ==";
};
};
"node-pre-gyp-0.11.0" = {
@@ -47388,6 +47622,15 @@ let
sha512 = "TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q==";
};
};
+ "node-pre-gyp-0.13.0" = {
+ name = "node-pre-gyp";
+ packageName = "node-pre-gyp";
+ version = "0.13.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz";
+ sha512 = "Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ==";
+ };
+ };
"node-pre-gyp-0.6.39" = {
name = "node-pre-gyp";
packageName = "node-pre-gyp";
@@ -47403,7 +47646,7 @@ let
version = "0.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/node-readfiles/-/node-readfiles-0.2.0.tgz";
- sha1 = "dbbd4af12134e2e635c245ef93ffcf6f60673a5d";
+ sha512 = "SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==";
};
};
"node-red-admin-2.2.4" = {
@@ -47466,7 +47709,7 @@ let
version = "2.9.1";
src = fetchurl {
url = "https://registry.npmjs.org/node-ssdp/-/node-ssdp-2.9.1.tgz";
- sha1 = "2d6ba8e7eff9bf5b338564f91f7ac5d5cdddc55b";
+ sha512 = "yGUSsm7HKxcv1XU0X6BIMWaOl/SaXqrIhwZCdklmAzwjG6qt+hnJwzs+VigCuRMP+jhSyoVBvHnoc95VgxbcuQ==";
};
};
"node-ssdp-3.3.0" = {
@@ -47493,7 +47736,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/node-status-codes/-/node-status-codes-1.0.0.tgz";
- sha1 = "5ae5541d024645d32a58fcddc9ceecea7ae3ac2f";
+ sha512 = "1cBMgRxdMWE8KeWCqk2RIOrvUb0XCwYfEsY5/y2NlXyq4Y/RumnOZvTj4Nbr77+Vb2C+kyBoRTdkNOS8L3d/aQ==";
};
};
"node-swt-0.1.1" = {
@@ -47502,7 +47745,7 @@ let
version = "0.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/node-swt/-/node-swt-0.1.1.tgz";
- sha1 = "af0903825784be553b93dbae57d99d59060585dd";
+ sha512 = "5aOwiPiyKj5cOLrwOQHw+Bn7yP10fzhGIAai6UY7e6i+lehri/I8mgJlYiIArCwPiNTHtAoZf3+Bgv16MLY4pQ==";
};
};
"node-uuid-1.4.1" = {
@@ -47511,7 +47754,7 @@ let
version = "1.4.1";
src = fetchurl {
url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.1.tgz";
- sha1 = "39aef510e5889a3dca9c895b506c73aae1bac048";
+ sha512 = "yli1av4CgutKcqitN8ILW9lMxOrsGJFrhy5jlwcY5GLYxC3dsMyvmKJOf2Zy55CK2e99gQfVnht67b6tmAdiDQ==";
};
};
"node-uuid-1.4.8" = {
@@ -47520,7 +47763,7 @@ let
version = "1.4.8";
src = fetchurl {
url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz";
- sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907";
+ sha512 = "TkCET/3rr9mUuRp+CpO7qfgT++aAxfDRaalQhwPFzI9BY/2rCDn6OfpZOVggi1AXfTPpfkTrg5f5WQx5G1uLxA==";
};
};
"node-version-1.2.0" = {
@@ -47547,7 +47790,7 @@ let
version = "0.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/node-wsfederation/-/node-wsfederation-0.1.1.tgz";
- sha1 = "9abf1dd3b20a3ab0a38f899c882c218d734e8a7b";
+ sha512 = "Hbb4RNIVUQ2Zi+vP/2LROQ1ixhGy0amT73fNu6YWDJG7+rbTM6rODzuISzOb4GIULzDMjsW/rRY55c8TkgWqGw==";
};
};
"node.extend-1.0.0" = {
@@ -47556,7 +47799,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/node.extend/-/node.extend-1.0.0.tgz";
- sha1 = "ab83960c477280d01ba5554a0d8fd3acfe39336e";
+ sha512 = "Jqb2SFiBSqeOUlxHbjpinUo3ZXBkVmCqha8t1REgyo4rYx/cXh+pttzlL2vXIjG63VdklCrwrnqwIXsVBRMrSA==";
};
};
"node.extend-2.0.2" = {
@@ -47574,7 +47817,7 @@ let
version = "0.0.7";
src = fetchurl {
url = "https://registry.npmjs.org/nodebmc/-/nodebmc-0.0.7.tgz";
- sha1 = "fae179165265509302cefbebeabd29bd4035184d";
+ sha512 = "6RLP7RsUSAAJnxSqltY0hs4ieyqqT09PIpPTYYq325gHBVPn0ePSwceLOWN5hqy8kczha3VcUhmh8vtcmy8sOg==";
};
};
"nodemon-1.19.4" = {
@@ -47619,7 +47862,7 @@ let
version = "1.8.1";
src = fetchurl {
url = "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz";
- sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7";
+ sha512 = "5s0JxqhDx9/rksG2BTMVN1enjWSvPidpoSgViZU4ZXULyTe+7jxcCRLB6f42Z0l1xYJpleCBtSyY6Lwg3uu5CQ==";
};
};
"non-private-ip-1.4.4" = {
@@ -47646,7 +47889,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/noop-fn/-/noop-fn-1.0.0.tgz";
- sha1 = "5f33d47f13d2150df93e0cb036699e982f78ffbf";
+ sha512 = "pQ8vODlgXt2e7A3mIbFDlizkr46r75V+BJxVAyat8Jl7YmI513gG5cfyRL0FedKraoZ+VAouI1h4/IWpus5pcQ==";
};
};
"noop-logger-0.1.1" = {
@@ -47655,7 +47898,7 @@ let
version = "0.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz";
- sha1 = "94a2b1633c4f1317553007d8966fd0e841b6a4c2";
+ sha512 = "6kM8CLXvuW5crTxsAtva2YLrRrDaiTIkIePWs9moLHqbFWT94WpNFjwS/5dfLfECg5i/lkmw3aoqVidxt23TEQ==";
};
};
"nopt-1.0.10" = {
@@ -47664,7 +47907,7 @@ let
version = "1.0.10";
src = fetchurl {
url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
- sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
+ sha512 = "NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==";
};
};
"nopt-2.0.0" = {
@@ -47673,7 +47916,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz";
- sha1 = "ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d";
+ sha512 = "uVTsuT8Hm3aN3VttY+BPKw4KU9lVpI0F22UAr/I1r6+kugMr3oyhMALkycikLcdfvGRsgzCYN48DYLBFcJEUVg==";
};
};
"nopt-2.1.2" = {
@@ -47682,7 +47925,7 @@ let
version = "2.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/nopt/-/nopt-2.1.2.tgz";
- sha1 = "6cccd977b80132a07731d6e8ce58c2c8303cf9af";
+ sha512 = "x8vXm7BZ2jE1Txrxh/hO74HTuYZQEbo8edoRcANgdZ4+PCV+pbjd/xdummkmjjC7LU5EjPzlu8zEq/oxWylnKA==";
};
};
"nopt-3.0.6" = {
@@ -47691,7 +47934,7 @@ let
version = "3.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
- sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
+ sha512 = "4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==";
};
};
"nopt-4.0.3" = {
@@ -47754,7 +47997,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/normalize-path/-/normalize-path-1.0.0.tgz";
- sha1 = "32d0e472f91ff345701c15a8311018d3b0a90379";
+ sha512 = "7WyT0w8jhpDStXRq5836AMmihQwq2nrUVQrgjvUo/p/NZf9uy/MeJ246lBJVmWuYXMlJuG9BNZHF0hWjfTbQUA==";
};
};
"normalize-path-2.1.1" = {
@@ -47763,7 +48006,7 @@ let
version = "2.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
- sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
+ sha512 = "3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==";
};
};
"normalize-path-3.0.0" = {
@@ -47781,7 +48024,7 @@ let
version = "0.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz";
- sha1 = "2d10c06bdfd312ea9777695a4d28439456b75942";
+ sha512 = "bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==";
};
};
"normalize-selector-0.2.0" = {
@@ -47790,7 +48033,7 @@ let
version = "0.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz";
- sha1 = "d0b145eb691189c63a78d201dc4fdb1293ef0c03";
+ sha512 = "dxvWdI8gw6eAvk9BlPffgEoGfM7AdijoCwOEJge3e3ulT2XLgmU7KvvxprOaCu05Q1uGRHmOhHe1r6emZoKyFw==";
};
};
"normalize-uri-1.1.3" = {
@@ -47808,7 +48051,7 @@ let
version = "1.9.1";
src = fetchurl {
url = "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz";
- sha1 = "2cc0d66b31ea23036458436e3620d85954c66c3c";
+ sha512 = "A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==";
};
};
"normalize-url-2.0.1" = {
@@ -47880,7 +48123,7 @@ let
version = "2.15.12";
src = fetchurl {
url = "https://registry.npmjs.org/npm/-/npm-2.15.12.tgz";
- sha1 = "df7c3ed5a277c3f9d4b5d819b05311d10a200ae6";
+ sha512 = "WMoAJ518W0vHjWy1abYnTeyG9YQpSoYGPxAx7d0C0L7U7Jo44bZsrvTjccmDohCJGxpasdKfqsKsl6o/RUPx6A==";
};
};
"npm-7.24.2" = {
@@ -47934,7 +48177,7 @@ let
version = "5.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/npm-keyword/-/npm-keyword-5.0.0.tgz";
- sha1 = "99b85aec29fcb388d2dd351f0013bf5268787e67";
+ sha512 = "v172X97DB97rF23svX7KjuImvKoGmwkdjLDQslhGde9UCjUF+ASfjFThyUZ4flubYYNQJP7fznQK8bGRBLgYzg==";
};
};
"npm-name-6.0.1" = {
@@ -48060,7 +48303,7 @@ let
version = "1.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/npm-prefix/-/npm-prefix-1.2.0.tgz";
- sha1 = "e619455f7074ba54cc66d6d0d37dd9f1be6bcbc0";
+ sha512 = "EkGZ7jtA2onsULFpnZ/P5S0DPy8w9qH1TVytPhY54s+dmtLXBmp1evt8W9nfg5JEay24K3bX9WWTIHR8WQcOJA==";
};
};
"npm-registry-client-8.6.0" = {
@@ -48123,7 +48366,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-1.0.0.tgz";
- sha1 = "f5c32bf595fe81ae927daec52e82f8b000ac3c8f";
+ sha512 = "PrGAi1SLlqNvKN5uGBjIgnrTb8fl0Jz0a3JJmeMcGnIBh7UE9Gc4zsAMlwDajOMg2b1OgP6UPvoLUboTmMZPFA==";
};
};
"npm-run-path-2.0.2" = {
@@ -48132,7 +48375,7 @@ let
version = "2.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
- sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
+ sha512 = "lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==";
};
};
"npm-run-path-3.1.0" = {
@@ -48168,7 +48411,7 @@ let
version = "2.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/npmlog/-/npmlog-2.0.4.tgz";
- sha1 = "98b52530f2514ca90d09ec5b22c8846722375692";
+ sha512 = "DaL6RTb8Qh4tMe2ttPT1qWccETy2Vi5/8p+htMpLBeXJTr2CAqnF5WQtSP2eFpvaNbhLZ5uilDb98mRm4Q+lZQ==";
};
};
"npmlog-4.1.2" = {
@@ -48204,7 +48447,7 @@ let
version = "0.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz";
- sha1 = "cb8f34c53213d895723fcbab907e9422adbcafb1";
+ sha512 = "I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==";
};
};
"nssocket-0.6.0" = {
@@ -48213,7 +48456,7 @@ let
version = "0.6.0";
src = fetchurl {
url = "https://registry.npmjs.org/nssocket/-/nssocket-0.6.0.tgz";
- sha1 = "59f96f6ff321566f33c70f7dbeeecdfdc07154fa";
+ sha512 = "a9GSOIql5IqgWJR3F/JXG4KpJTA3Z53Cj0MeMvGpglytB1nxE4PdFNC0jINe27CS7cGivoynwc054EzCcT3M3w==";
};
};
"nth-check-1.0.2" = {
@@ -48276,7 +48519,7 @@ let
version = "1.2.2";
src = fetchurl {
url = "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz";
- sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede";
+ sha512 = "Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==";
};
};
"number-allocator-1.0.10" = {
@@ -48294,7 +48537,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
- sha1 = "097b602b53422a522c1afb8790318336941a011d";
+ sha512 = "4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==";
};
};
"number-to-bn-1.7.0" = {
@@ -48303,7 +48546,7 @@ let
version = "1.7.0";
src = fetchurl {
url = "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz";
- sha1 = "bb3623592f7e5f9e0030b1977bd41a0c53fe1ea0";
+ sha512 = "wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==";
};
};
"numeral-1.5.6" = {
@@ -48312,7 +48555,7 @@ let
version = "1.5.6";
src = fetchurl {
url = "https://registry.npmjs.org/numeral/-/numeral-1.5.6.tgz";
- sha1 = "3831db968451b9cf6aff9bf95925f1ef8e37b33f";
+ sha512 = "ajp+xurmcvkOLZURhHP2O7AyyF+v2xQDeCODlzALrNeAQnriYaWu0c8I/mu985WaVl2O2lgdOt0QgQHlCAQ3UA==";
};
};
"numeral-2.0.6" = {
@@ -48321,7 +48564,7 @@ let
version = "2.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz";
- sha1 = "4ad080936d443c2561aed9f2197efffe25f4e506";
+ sha512 = "qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==";
};
};
"nuxt-helper-json-1.0.0" = {
@@ -48357,7 +48600,7 @@ let
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/o3/-/o3-1.0.3.tgz";
- sha1 = "192ce877a882dfa6751f0412a865fafb2da1dac0";
+ sha512 = "f+4n+vC6s4ysy7YO7O2gslWZBUu8Qj2i2OUJOvjRxQva7jVjYjB29jrr9NCjmxZQR0gzrOcv1RnqoYOeMs5VRQ==";
};
};
"oas-kit-common-1.0.8" = {
@@ -48411,7 +48654,7 @@ let
version = "0.9.15";
src = fetchurl {
url = "https://registry.npmjs.org/oauth/-/oauth-0.9.15.tgz";
- sha1 = "bd1fefaf686c96b75475aed5196412ff60cfb9c1";
+ sha512 = "a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==";
};
};
"oauth-https://github.com/ciaranj/node-oauth/tarball/master" = {
@@ -48430,7 +48673,7 @@ let
version = "0.8.2";
src = fetchurl {
url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
- sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
+ sha512 = "VlF07iu3VV3+BTXj43Nmp6Irt/G7j/NgEctUS6IweH1RGhURjjCc2NWtzXFPXXWWfc7hgbXQdtiQu2LGp6MxUg==";
};
};
"oauth-sign-0.9.0" = {
@@ -48457,7 +48700,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/object-assign/-/object-assign-1.0.0.tgz";
- sha1 = "e65dc8766d3b47b4b8307465c8311da030b070a6";
+ sha512 = "LpUkixU1BUMQ6bwUHbOue4IGGbdRbxi+IEZw7zHniw78erlxrKGHbhfLbHIsI35LGbGqys6QOrjVmLnD2ie+1A==";
};
};
"object-assign-2.1.1" = {
@@ -48466,7 +48709,7 @@ let
version = "2.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz";
- sha1 = "43c36e5d569ff8e4816c4efa8be02d26967c18aa";
+ sha512 = "CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g==";
};
};
"object-assign-3.0.0" = {
@@ -48475,7 +48718,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz";
- sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2";
+ sha512 = "jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==";
};
};
"object-assign-4.1.1" = {
@@ -48484,7 +48727,7 @@ let
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
- sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
+ sha512 = "rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==";
};
};
"object-component-0.0.3" = {
@@ -48493,7 +48736,7 @@ let
version = "0.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz";
- sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291";
+ sha512 = "S0sN3agnVh2SZNEIGc0N1X4Z5K0JeFbGBrnuZpsxuUh5XLF0BnvWkMjRXo/zGKLd/eghvNIKcx1pQkmUjXIyrA==";
};
};
"object-copy-0.1.0" = {
@@ -48502,7 +48745,7 @@ let
version = "0.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
- sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
+ sha512 = "79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==";
};
};
"object-hash-0.3.0" = {
@@ -48511,7 +48754,7 @@ let
version = "0.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/object-hash/-/object-hash-0.3.0.tgz";
- sha1 = "548208e43b36a44e4da30bad6c56ac53b885e744";
+ sha512 = "svS23O+dr8NzMMAx90mLwft5LMhqDujSqZ2yHN07Skh2Urdmk5dnoUuqn4/MWrxlD/QvYnY3MRMvxTt7PKc+Wg==";
};
};
"object-hash-1.3.1" = {
@@ -48574,7 +48817,7 @@ let
version = "0.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz";
- sha1 = "28a6aae7428dd2c3a92f3d95f21335dd204e0336";
+ sha512 = "ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==";
};
};
"object-keys-1.1.1" = {
@@ -48628,7 +48871,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
- sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
+ sha512 = "GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==";
};
};
"object.assign-4.1.2" = {
@@ -48646,7 +48889,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
- sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
+ sha512 = "c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==";
};
};
"object.entries-1.1.5" = {
@@ -48673,7 +48916,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz";
- sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37";
+ sha512 = "3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==";
};
};
"object.omit-2.0.1" = {
@@ -48682,7 +48925,7 @@ let
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz";
- sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa";
+ sha512 = "UiAM5mhmIuKLsOvrL+B0U2d1hXHF3bFYWIuH1LMpuV2EJEHG1Ntz06PgLEHjm6VFd87NpH8rastvPoyv6UW2fA==";
};
};
"object.pick-1.3.0" = {
@@ -48691,7 +48934,7 @@ let
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
- sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
+ sha512 = "tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==";
};
};
"object.reduce-1.0.1" = {
@@ -48700,7 +48943,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz";
- sha1 = "6fe348f2ac7fa0f95ca621226599096825bb03ad";
+ sha512 = "naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==";
};
};
"object.values-1.1.5" = {
@@ -48745,7 +48988,7 @@ let
version = "0.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/observ/-/observ-0.2.0.tgz";
- sha1 = "0bc39b3e29faa5f9e6caa5906cb8392df400aa68";
+ sha512 = "7SKbYTiFXMvqbeinO/GwTGtXSvbRq5AHKszmq5cx3fV7bKEjNCK7AdkhGzsuQAoT+IPf3mlxDmPrVW8wgshpcQ==";
};
};
"observ-debounce-1.1.1" = {
@@ -48754,7 +48997,7 @@ let
version = "1.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/observ-debounce/-/observ-debounce-1.1.1.tgz";
- sha1 = "304e97c85adda70ecd7f08da450678ef90f0b707";
+ sha512 = "vP3EdCDE0+6tftznrvmmfI66qiOEkSV+zJ/TLo/3x5BZjm0a3I9A12V16iPck1v2cwAgGRPtWVF3vUmFN9vtPw==";
};
};
"obuf-1.1.2" = {
@@ -48772,7 +49015,7 @@ let
version = "0.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/obv/-/obv-0.0.1.tgz";
- sha1 = "cb236106341536f0dac4815e06708221cad7fb5e";
+ sha512 = "Iq/Q3TXAfHgABGL7mKlG3ILJnT8jgetOt0sH9a6SGLLCvjh58bsH7RzixLJWkVO6aQK6hI4rxVYHF0rk9KmIwA==";
};
};
"obz-1.0.3" = {
@@ -48808,7 +49051,7 @@ let
version = "0.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/on-change-network/-/on-change-network-0.0.2.tgz";
- sha1 = "d977249477f91726949d80e82346dab6ef45216b";
+ sha512 = "YLf6BqHAVVGDmMpEe5J7ky1n6VSECN4Ced40sG/jfKoKhYQU247PsEekscVqHjR4bRj4aKrmFJS47A1kbrclsA==";
};
};
"on-exit-leak-free-0.2.0" = {
@@ -48826,7 +49069,7 @@ let
version = "2.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/on-finished/-/on-finished-2.2.1.tgz";
- sha1 = "5c85c1cc36299f78029653f667f27b6b99ebc029";
+ sha512 = "9HvMYLv7im5uzOAcg1lon2cEUxycCF4OI+zPz1R/x3MvBv5s2F+DuxrGwkPe+UwvStDQpWbrkXfLZv12mHbl4A==";
};
};
"on-finished-2.3.0" = {
@@ -48835,7 +49078,7 @@ let
version = "2.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz";
- sha1 = "20f1336481b083cd75337992a16971aa2d906947";
+ sha512 = "ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==";
};
};
"on-finished-2.4.1" = {
@@ -48862,7 +49105,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/on-wakeup/-/on-wakeup-1.0.1.tgz";
- sha1 = "00d79d987dde7c8117bee74bb4903f6f6dafa52b";
+ sha512 = "3ufOvnTvh39ah2/TT++HpLailHVmEVVrKtzKLKifAUyWbulKLGGJGOF7ywKC4k/iQGmn9KooV6WmQl/6BVwklA==";
};
};
"once-1.2.0" = {
@@ -48871,7 +49114,7 @@ let
version = "1.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/once/-/once-1.2.0.tgz";
- sha1 = "de1905c636af874a8fba862d9aabddd1f920461c";
+ sha512 = "WBd9yDi3JRrEsysh0s4px+jinLuW/DGRydS+ZGPTHVKu4JrIBmKj3uDC9LfnwEbXHFVLieUuZvunY74wln6arg==";
};
};
"once-1.3.0" = {
@@ -48880,7 +49123,7 @@ let
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/once/-/once-1.3.0.tgz";
- sha1 = "151af86bfc1f08c4b9f07d06ab250ffcbeb56581";
+ sha512 = "A31oqbdEQnnhkjIXJ6QKcgO9eN8Xe+dVAQqlFLAmri0Y5s11pUadCihT2popU2WLd5CbbnD2ZVkbEJsR/8JHvA==";
};
};
"once-1.3.2" = {
@@ -48889,7 +49132,7 @@ let
version = "1.3.2";
src = fetchurl {
url = "https://registry.npmjs.org/once/-/once-1.3.2.tgz";
- sha1 = "d8feeca93b039ec1dcdee7741c92bdac5e28081b";
+ sha512 = "tPQxpk4nBjTgu+eHijWhgX2d+tE6HQyMPVnzY5b1qenTUFsxBaKlzEFUF+XVfbToFuVFm8hX+PzV9u3PewDZ4Q==";
};
};
"once-1.3.3" = {
@@ -48898,7 +49141,7 @@ let
version = "1.3.3";
src = fetchurl {
url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz";
- sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20";
+ sha512 = "6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==";
};
};
"once-1.4.0" = {
@@ -48907,7 +49150,7 @@ let
version = "1.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
+ sha512 = "lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==";
};
};
"one-time-1.0.0" = {
@@ -48925,7 +49168,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz";
- sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789";
+ sha512 = "GZ+g4jayMqzCRMgB2sol7GiCLjKfS1PINkjmx8spcKce1LiVqcbQreXwqs2YAFXC6R03VIG28ZS31t8M866v6A==";
};
};
"onetime-2.0.1" = {
@@ -48934,7 +49177,7 @@ let
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz";
- sha1 = "067428230fd67443b2794b22bba528b6867962d4";
+ sha512 = "oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==";
};
};
"onetime-5.1.2" = {
@@ -48952,7 +49195,7 @@ let
version = "0.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/only/-/only-0.0.2.tgz";
- sha1 = "2afde84d03e50b9a8edc444e30610a70295edfb4";
+ sha512 = "Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==";
};
};
"onml-2.1.0" = {
@@ -48979,7 +49222,7 @@ let
version = "0.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/open/-/open-0.0.2.tgz";
- sha1 = "0a620ba2574464742f51e69f8ba8eccfd97b5dfc";
+ sha512 = "gnt725gcNKTaMSul17WNEz4I3rvgVotCq30TkU9thlEZaRJ7ivOV0vEoRupkGU/NJ2+qxqAmVbSK94rwuOWXnw==";
};
};
"open-0.0.5" = {
@@ -48988,7 +49231,7 @@ let
version = "0.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/open/-/open-0.0.5.tgz";
- sha1 = "42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc";
+ sha512 = "+X/dJYLapVO1VbC620DhtNZK9U4/kQVaTQp/Gh7cb6UTLYfGZzzU2ZXkWrOA/wBrf4UqAFwtLqXYTxe4tSnWQQ==";
};
};
"open-6.4.0" = {
@@ -49294,7 +49537,7 @@ let
version = "1.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz";
- sha1 = "3875b4b0ef7a52c156f0db41d4609dbb0f94b387";
+ sha512 = "d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==";
};
};
"opn-3.0.3" = {
@@ -49303,7 +49546,7 @@ let
version = "3.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/opn/-/opn-3.0.3.tgz";
- sha1 = "b6d99e7399f78d65c3baaffef1fb288e9b85243a";
+ sha512 = "YKyQo/aDk+kLY/ChqYx3DMWW8cbxvZDh+7op1oU60TmLHGWFrn2gPaRWihzDhSwCarAESa9G8dNXzjTGfLx8FQ==";
};
};
"opn-5.3.0" = {
@@ -49339,7 +49582,7 @@ let
version = "0.2.8";
src = fetchurl {
url = "https://registry.npmjs.org/optimist/-/optimist-0.2.8.tgz";
- sha1 = "e981ab7e268b457948593b55674c099a815cac31";
+ sha512 = "Wy7E3cQDpqsTIFyW7m22hSevyTLxw850ahYv7FWsw4G6MIKVTZ8NSA95KBrQ95a4SMsMr1UGUUnwEFKhVaSzIg==";
};
};
"optimist-0.3.7" = {
@@ -49348,7 +49591,7 @@ let
version = "0.3.7";
src = fetchurl {
url = "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz";
- sha1 = "c90941ad59e4273328923074d2cf2e7cbc6ec0d9";
+ sha512 = "TCx0dXQzVtSCg2OgY/bO9hjM9cV4XYx09TVK+s3+FhkjT6LovsLe+pPMzpWf+6yXK/hUizs2gUoTw3jHM0VaTQ==";
};
};
"optimist-0.6.0" = {
@@ -49357,7 +49600,7 @@ let
version = "0.6.0";
src = fetchurl {
url = "https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz";
- sha1 = "69424826f3405f79f142e6fc3d9ae58d4dbb9200";
+ sha512 = "ubrZPyOU0AHpXkmwqfWolap+eHMwQ484AKivkf0ZGyysd6fUJZl7ow9iu5UNV1vCZv46HQ7EM83IC3NGJ820hg==";
};
};
"optimist-0.6.1" = {
@@ -49366,7 +49609,7 @@ let
version = "0.6.1";
src = fetchurl {
url = "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz";
- sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686";
+ sha512 = "snN4O4TkigujZphWLN0E//nQmm7790RYaE53DdL7ZYwee2D8DDo9/EyYiKUfN3rneWUjhJnueija3G9I2i0h3g==";
};
};
"optimize-css-assets-webpack-plugin-5.0.8" = {
@@ -49384,7 +49627,7 @@ let
version = "0.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/optionator/-/optionator-0.3.0.tgz";
- sha1 = "9715a8b5f5e7586cff06c8249e039cd7364d3f54";
+ sha512 = "qM6AKy0HNNRczFIFciGVSkh6H5yu8kC2hdgqElG8pM6IvQwFYVBd3aUrqjsgZtauuGZr2u/Nf+wLzlZgeCqpSQ==";
};
};
"optionator-0.8.3" = {
@@ -49411,7 +49654,7 @@ let
version = "0.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/options/-/options-0.0.6.tgz";
- sha1 = "ec22d312806bb53e731773e7cdaefcf1c643128f";
+ sha512 = "bOj3L1ypm++N+n7CEbbe473A414AB7z+amKYshRb//iuL3MpdDCLhPnw6aVTdKB9g5ZRVHIEp8eUln6L2NUStg==";
};
};
"optjs-3.2.2" = {
@@ -49420,7 +49663,7 @@ let
version = "3.2.2";
src = fetchurl {
url = "https://registry.npmjs.org/optjs/-/optjs-3.2.2.tgz";
- sha1 = "69a6ce89c442a44403141ad2f9b370bd5bb6f4ee";
+ sha512 = "f8lTJm4LKirX+45xsFhuRNjA4f46QVLQKfGoNH7e2AEWS+24eM4XNH4pQ8Tw2LISCIvbST/wNcLdtgvgcqVaxA==";
};
};
"optparse-1.0.5" = {
@@ -49429,7 +49672,7 @@ let
version = "1.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/optparse/-/optparse-1.0.5.tgz";
- sha1 = "75e75a96506611eb1c65ba89018ff08a981e2c16";
+ sha512 = "WfnNWLS3vr8omCm8nKYKaRbapuy6pEbx1O0B+eP5sUf/a++sT9/h8PflqBoHsY9N+YdzUT12T8snXigq13QpJg==";
};
};
"opts-2.0.2" = {
@@ -49519,7 +49762,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz";
- sha1 = "77c0cb37c41525d64166d990ffad7ec6a0e1363e";
+ sha512 = "Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==";
};
};
"org-regex-1.0.0" = {
@@ -49546,7 +49789,7 @@ let
version = "0.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz";
- sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
+ sha512 = "gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==";
};
};
"os-homedir-1.0.2" = {
@@ -49555,7 +49798,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
+ sha512 = "B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==";
};
};
"os-locale-1.4.0" = {
@@ -49564,7 +49807,7 @@ let
version = "1.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz";
- sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9";
+ sha512 = "PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==";
};
};
"os-locale-3.1.0" = {
@@ -49609,7 +49852,7 @@ let
version = "0.1.3";
src = fetchurl {
url = "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz";
- sha1 = "6b62c3791cf7909ea35ed46e17658bb417cb3917";
+ sha512 = "jd0cvB8qQ5uVt0lvCIexBaROw1KyKm5sbulg2fWOHjETisuCzWyt+eTZKEMs8v6HwzoGs8xik26jg7eCM6pS+A==";
};
};
"os-tmpdir-1.0.2" = {
@@ -49618,7 +49861,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
- sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
+ sha512 = "D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==";
};
};
"osenv-0.1.5" = {
@@ -49726,7 +49969,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz";
- sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c";
+ sha512 = "wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==";
};
};
"p-defer-3.0.0" = {
@@ -49771,7 +50014,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
- sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
+ sha512 = "LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==";
};
};
"p-finally-2.0.1" = {
@@ -49789,7 +50032,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz";
- sha1 = "9c9456989e9f6588017b0434d56097675c3da05e";
+ sha512 = "zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==";
};
};
"p-is-promise-2.1.0" = {
@@ -49861,7 +50104,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz";
- sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
+ sha512 = "nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==";
};
};
"p-locate-3.0.0" = {
@@ -50050,7 +50293,7 @@ let
version = "1.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz";
- sha1 = "5eb3b353b7fce99f101a1038880bb054ebbea386";
+ sha512 = "gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==";
};
};
"p-timeout-2.0.1" = {
@@ -50104,7 +50347,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz";
- sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
+ sha512 = "U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==";
};
};
"p-try-2.2.0" = {
@@ -50185,7 +50428,7 @@ let
version = "1.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/package-json/-/package-json-1.2.0.tgz";
- sha1 = "c8ecac094227cdf76a316874ed05e27cc939a0e0";
+ sha512 = "knDtirWWqKVJrLY3gEBLflVvueTMpyjbAwX/9j/EKi2DsjNemp5voS8cyKyGh57SNaMJNhNRZbIaWdneOcLU1g==";
};
};
"package-json-2.4.0" = {
@@ -50194,7 +50437,7 @@ let
version = "2.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/package-json/-/package-json-2.4.0.tgz";
- sha1 = "0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb";
+ sha512 = "PRg65iXMTt/uK8Rfh5zvzkUbfAPitF17YaCY+IbHsYgksiLvtzWWTUildHth3mVaZ7871OJ7gtP4LBRBlmAdXg==";
};
};
"package-json-4.0.1" = {
@@ -50203,7 +50446,7 @@ let
version = "4.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz";
- sha1 = "8869a0401253661c4c4ca3da6c2121ed555f5eed";
+ sha512 = "q/R5GrMek0vzgoomq6rm9OX+3PQve8sLwTirmK30YB3Cu0Bbt9OX9M/SIUnroN5BGJkzwGsFwDaRGD9EwBOlCA==";
};
};
"package-json-5.0.0" = {
@@ -50248,7 +50491,7 @@ let
version = "1.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/package-json-versionify/-/package-json-versionify-1.0.4.tgz";
- sha1 = "5860587a944873a6b7e6d26e8e51ffb22315bf17";
+ sha512 = "mtKKtCeSZMtWcc5hHJS6OlEGP7J9g7WN6vWCCZi2hCXFag/Zmjokh6WFFTQb9TuMnBcZpRjhhMQyOyglPCAahw==";
};
};
"packet-stream-2.0.6" = {
@@ -50287,13 +50530,13 @@ let
sha512 = "CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow==";
};
};
- "pacote-13.5.0" = {
+ "pacote-13.6.0" = {
name = "pacote";
packageName = "pacote";
- version = "13.5.0";
+ version = "13.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pacote/-/pacote-13.5.0.tgz";
- sha512 = "yekp0ykEsaBH0t0bYA/89R+ywdYV5ZnEdg4YMIfqakSlpIhoF6b8+aEUm8NZpfWRgmy6lxgywcW05URhLRogVQ==";
+ url = "https://registry.npmjs.org/pacote/-/pacote-13.6.0.tgz";
+ sha512 = "zHmuCwG4+QKnj47LFlW3LmArwKoglx2k5xtADiMCivVWPgNRP5QyLDGOIjGjwOe61lhl1rO63m/VxT16pEHLWg==";
};
};
"pad-0.0.5" = {
@@ -50302,7 +50545,7 @@ let
version = "0.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/pad/-/pad-0.0.5.tgz";
- sha1 = "2219ab4db2ac74549a676164bc475d68cb87de05";
+ sha512 = "SKvJWwNN3EsM9Bnnt+yta1ueZw8zOxsdL2zfWKjrb/43sVN0OaqX4KuwgIURA27IrM0Zzb5W1jr+T8dF+k6HaQ==";
};
};
"pad-component-0.0.1" = {
@@ -50311,7 +50554,7 @@ let
version = "0.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/pad-component/-/pad-component-0.0.1.tgz";
- sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac";
+ sha512 = "8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g==";
};
};
"paid-services-3.16.0" = {
@@ -50329,7 +50572,7 @@ let
version = "0.2.9";
src = fetchurl {
url = "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz";
- sha1 = "f3f7522f4ef782348da8161bad9ecfd51bf83a75";
+ sha512 = "NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==";
};
};
"pako-1.0.11" = {
@@ -50365,7 +50608,7 @@ let
version = "2.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz";
- sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247";
+ sha512 = "eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==";
};
};
"param-case-3.0.4" = {
@@ -50401,7 +50644,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/parent-require/-/parent-require-1.0.0.tgz";
- sha1 = "746a167638083a860b0eef6732cb27ed46c32977";
+ sha512 = "2MXDNZC4aXdkkap+rBBMv0lUsfJqvX5/2FiYYnfCnorZt3Pk06/IOR5KeaoghgS2w07MLWgjbsnyaq6PdHn2LQ==";
};
};
"parents-1.0.1" = {
@@ -50410,7 +50653,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz";
- sha1 = "fedd4d2bf193a77745fe71e371d73c3307d9c751";
+ sha512 = "mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg==";
};
};
"parse-asn1-5.1.6" = {
@@ -50428,7 +50671,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/parse-author/-/parse-author-2.0.0.tgz";
- sha1 = "d3460bf1ddd0dfaeed42da754242e65fb684a81f";
+ sha512 = "yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw==";
};
};
"parse-bmfont-ascii-1.0.6" = {
@@ -50437,7 +50680,7 @@ let
version = "1.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz";
- sha1 = "11ac3c3ff58f7c2020ab22769079108d4dfa0285";
+ sha512 = "U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==";
};
};
"parse-bmfont-binary-1.0.6" = {
@@ -50446,7 +50689,7 @@ let
version = "1.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz";
- sha1 = "d038b476d3e9dd9db1e11a0b0e53a22792b69006";
+ sha512 = "GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==";
};
};
"parse-bmfont-xml-1.1.4" = {
@@ -50518,7 +50761,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
- sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
+ sha512 = "FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==";
};
};
"parse-git-config-3.0.0" = {
@@ -50554,7 +50797,7 @@ let
version = "3.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz";
- sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c";
+ sha512 = "FC5TeK0AwXzq3tUBFtH74naWkPQCEWs4K+xMxWZBlKDWu0bVHXGZa+KKqxKidd7xwhdZ19ZNuF2uO1M/r196HA==";
};
};
"parse-headers-2.0.5" = {
@@ -50581,7 +50824,7 @@ let
version = "2.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz";
- sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9";
+ sha512 = "QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==";
};
};
"parse-json-4.0.0" = {
@@ -50590,7 +50833,7 @@ let
version = "4.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz";
- sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
+ sha512 = "aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==";
};
};
"parse-json-5.2.0" = {
@@ -50653,7 +50896,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
- sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
+ sha512 = "1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==";
};
};
"parse-path-4.0.3" = {
@@ -50680,7 +50923,7 @@ let
version = "1.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/parse-semver/-/parse-semver-1.1.1.tgz";
- sha1 = "9a4afd6df063dc4826f93fba4a99cf223f666cb8";
+ sha512 = "Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ==";
};
};
"parse-srcset-1.0.2" = {
@@ -50689,7 +50932,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz";
- sha1 = "f2bd221f6cc970a938d88556abc589caaaa2bde1";
+ sha512 = "/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==";
};
};
"parse-torrent-4.1.0" = {
@@ -50698,7 +50941,7 @@ let
version = "4.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-4.1.0.tgz";
- sha1 = "a814bd8505e8b58e88eb8ff3e2daff5d19a711b7";
+ sha512 = "FeoGe8bOYmSzxO31kYy44A03FjuULCMOIMom8KyuGvO8/lLVPJyo2nr9CwH/iYmNHm74hk7h70o59DOfk9Rq+A==";
};
};
"parse-torrent-5.9.1" = {
@@ -50725,7 +50968,7 @@ let
version = "2.1.4";
src = fetchurl {
url = "https://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-2.1.4.tgz";
- sha1 = "32d4b6afde631420e5f415919a222b774b575707";
+ sha512 = "u2MgLOjZPDDer1oRg1c+H/+54iIQYY5TKgQ5G8KrGLT1Dcwdo7Lj+QfQR123+u8J0AMSFGbQUvsBlSB7uIJcCA==";
};
};
"parse-url-6.0.0" = {
@@ -50743,7 +50986,7 @@ let
version = "1.5.1";
src = fetchurl {
url = "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz";
- sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94";
+ sha512 = "w2jx/0tJzvgKwZa58sj2vAYq/S/K1QJfIB3cWYea/Iu1scFPDQQ3IQiVZTHWtRBwAjv2Yd7S/xeZf3XqLDb3bA==";
};
};
"parse5-3.0.3" = {
@@ -50815,7 +51058,7 @@ let
version = "0.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/parsejson/-/parsejson-0.0.1.tgz";
- sha1 = "9b10c6c0d825ab589e685153826de0a3ba278bcc";
+ sha512 = "W9CRvTfYQY/kbRc5Q6YTWarb/QDxdEGbd6RCP8CLUQDJV89RVHoS2A0dZYNtAcq31fulGNN4ZhAhiQQazwlKJg==";
};
};
"parseley-0.7.0" = {
@@ -50833,7 +51076,7 @@ let
version = "0.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.2.tgz";
- sha1 = "9dfe70b2cddac388bde4f35b1f240fa58adbe6c7";
+ sha512 = "vyyyfQGUFZnDhgrrdn+hh1JuOfvbXU5oRr6dijfkSIbaFuxGgTSCA/RNVcsADmo0k2NX6wERVTMKkXokjuObJA==";
};
};
"parseqs-0.0.5" = {
@@ -50842,7 +51085,7 @@ let
version = "0.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz";
- sha1 = "d5208a3738e46766e291ba2ea173684921a8b89d";
+ sha512 = "B3Nrjw2aL7aI4TDujOzfA4NsEc4u1lVcIRE0xesutH8kjeWF70uk+W5cBlIQx04zUH9NTBvuN36Y9xLRPK6Jjw==";
};
};
"parseqs-0.0.6" = {
@@ -50860,7 +51103,7 @@ let
version = "1.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/parserlib/-/parserlib-1.1.1.tgz";
- sha1 = "a64cfa724062434fdfc351c9a4ec2d92b94c06f4";
+ sha512 = "e1HbF3+7ASJ/uOZirg5/8ZfPljTh100auNterbHB8TUs5egciuWQ2eX/2al8ko0RdV9Xh/5jDei3jqJAmbTDcg==";
};
};
"parseuri-0.0.2" = {
@@ -50869,7 +51112,7 @@ let
version = "0.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.2.tgz";
- sha1 = "db41878f2d6964718be870b3140973d8093be156";
+ sha512 = "m0H+R0u5LXOx8sbxufnvgKrRLpkVpvtMf0AyWXYSqLwo2MWrVEgCIbgpaSVa398xl6wTLe0A7CGhiC4hBdEzHQ==";
};
};
"parseuri-0.0.5" = {
@@ -50878,7 +51121,7 @@ let
version = "0.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz";
- sha1 = "80204a50d4dbb779bfdc6ebe2778d90e4bce320a";
+ sha512 = "ijhdxJu6l5Ru12jF0JvzXVPvsC+VibqeaExlNoMhWN6VQ79PGjkmc7oA4W1lp00sFkNyj0fx6ivPLdV51/UMog==";
};
};
"parseuri-0.0.6" = {
@@ -50914,7 +51157,7 @@ let
version = "0.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
- sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
+ sha512 = "XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==";
};
};
"passerror-1.1.1" = {
@@ -50923,7 +51166,7 @@ let
version = "1.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/passerror/-/passerror-1.1.1.tgz";
- sha1 = "a25b88dbdd910a29603aec7dcb96e9a7a97687b4";
+ sha512 = "PwrEQJBkJMxnxG+tdraz95vTstYnCRqiURNbGtg/vZHLgcAODc9hbiD5ZumGUoh3bpw0F0qKLje7Vd2Fd5Lx3g==";
};
};
"passive-voice-0.1.0" = {
@@ -50932,7 +51175,7 @@ let
version = "0.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/passive-voice/-/passive-voice-0.1.0.tgz";
- sha1 = "16ff91ae40ba0e92c43e671763fdc842a70270b1";
+ sha512 = "Pj9iwzXw4bKEtdugGYm92jT4tnsj+xrTSkHFEM4bn6fefqbFdZi49tZMmGIZ91aIQTyFtMUww7O2qYaZKAsDag==";
};
};
"passport-0.3.2" = {
@@ -50941,7 +51184,7 @@ let
version = "0.3.2";
src = fetchurl {
url = "https://registry.npmjs.org/passport/-/passport-0.3.2.tgz";
- sha1 = "9dd009f915e8fe095b0124a01b8f82da07510102";
+ sha512 = "aqgxMQxuRz79M4LVo8fl3/bsh6Ozcb34G8MVDs7Oavy88ROLSVvTgYoWnX3TpxdQg66HiXvpb+lcuFPnDrmiOA==";
};
};
"passport-0.5.2" = {
@@ -50968,7 +51211,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/passport-http-bearer/-/passport-http-bearer-1.0.1.tgz";
- sha1 = "147469ea3669e2a84c6167ef99dbb77e1f0098a8";
+ sha512 = "SELQM+dOTuMigr9yu8Wo4Fm3ciFfkMq5h/ZQ8ffi4ELgZrX1xh9PlglqZdcUZ1upzJD/whVyt+YWF62s3U6Ipw==";
};
};
"passport-local-1.0.0" = {
@@ -50977,7 +51220,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz";
- sha1 = "1fe63268c92e75606626437e3b906662c15ba6ee";
+ sha512 = "9wCE6qKznvf9mQYYbgJ3sVOHmCWoUNMVFoZzNoznmISbhnNNPhN9xfY3sLmScHMetEJeoY7CXwfhCe7argfQow==";
};
};
"passport-oauth2-1.6.1" = {
@@ -50995,7 +51238,7 @@ let
version = "0.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/passport-oauth2-client-password/-/passport-oauth2-client-password-0.1.2.tgz";
- sha1 = "4f378b678b92d16dbbd233a6c706520093e561ba";
+ sha512 = "GHQH4UtaEZvCLulAxGKHYoSsPRoPRmGsdmaZtMh5nmz80yMLQbdMA9Bg2sp4/UW3PIxJH/143hVjPTiXaNngTQ==";
};
};
"passport-saml-0.15.0" = {
@@ -51004,7 +51247,7 @@ let
version = "0.15.0";
src = fetchurl {
url = "https://registry.npmjs.org/passport-saml/-/passport-saml-0.15.0.tgz";
- sha1 = "7d45c07baaf80d8e2cf898367132a5e4c0535cad";
+ sha512 = "YJzzCsphGBMMfnnRyRDlG0WXrADGlD+aueOYhIK5Q3y2dnU4yG31+X6E6m3kxhaoC+CY3f9y+eW2RM8SzcQJMA==";
};
};
"passport-strategy-1.0.0" = {
@@ -51013,7 +51256,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz";
- sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4";
+ sha512 = "CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==";
};
};
"passthrough-counter-1.0.0" = {
@@ -51022,7 +51265,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/passthrough-counter/-/passthrough-counter-1.0.0.tgz";
- sha1 = "1967d9e66da572b5c023c787db112a387ab166fa";
+ sha512 = "Wy8PXTLqPAN0oEgBrlnsXPMww3SYJ44tQ8aVrGAI4h4JZYCS0oYqsPqtPR8OhJpv6qFbpbB7XAn0liKV7EXubA==";
};
};
"passwd-user-3.0.0" = {
@@ -51094,7 +51337,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
- sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
+ sha512 = "ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==";
};
};
"path-exists-2.1.0" = {
@@ -51103,7 +51346,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz";
- sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b";
+ sha512 = "yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==";
};
};
"path-exists-3.0.0" = {
@@ -51112,7 +51355,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
- sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
+ sha512 = "bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==";
};
};
"path-exists-4.0.0" = {
@@ -51130,7 +51373,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
+ sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==";
};
};
"path-is-inside-1.0.2" = {
@@ -51139,7 +51382,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz";
- sha1 = "365417dede44430d1c11af61027facf074bdfc53";
+ sha512 = "DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==";
};
};
"path-key-1.0.0" = {
@@ -51148,7 +51391,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/path-key/-/path-key-1.0.0.tgz";
- sha1 = "5d53d578019646c0d68800db4e146e6bdc2ac7af";
+ sha512 = "T3hWy7tyXlk3QvPFnT+o2tmXRzU4GkitkUWLp/WZ0S/FXd7XMx176tRurgTvHTNMJOQzTcesHNpBqetH86mQ9g==";
};
};
"path-key-2.0.1" = {
@@ -51157,7 +51400,7 @@ let
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz";
- sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
+ sha512 = "fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==";
};
};
"path-key-3.1.1" = {
@@ -51193,7 +51436,7 @@ let
version = "0.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/path-platform/-/path-platform-0.0.1.tgz";
- sha1 = "b5585d7c3c463d89aa0060d86611cf1afd617e2a";
+ sha512 = "ydK1VKZFYwy0mT2JvimJfxt5z6Z6sjBbLfsFMoJczbwZ/ul0AjgpXLHinUzclf4/XYC8mtsWGuFERZ95Rnm8wA==";
};
};
"path-platform-0.11.15" = {
@@ -51202,7 +51445,7 @@ let
version = "0.11.15";
src = fetchurl {
url = "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz";
- sha1 = "e864217f74c36850f0852b78dc7bf7d4a5721bf2";
+ sha512 = "Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg==";
};
};
"path-root-0.1.1" = {
@@ -51211,7 +51454,7 @@ let
version = "0.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
- sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
+ sha512 = "QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==";
};
};
"path-root-regex-0.1.2" = {
@@ -51220,7 +51463,7 @@ let
version = "0.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
- sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
+ sha512 = "4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==";
};
};
"path-to-glob-pattern-1.0.2" = {
@@ -51229,7 +51472,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/path-to-glob-pattern/-/path-to-glob-pattern-1.0.2.tgz";
- sha1 = "473e6a3a292a9d13fbae3edccee72d3baba8c619";
+ sha512 = "ryF65N5MBB9XOjE5mMOi+0bMrh1F0ORQmqDSSERvv5zD62Cfc5QC6rK1AR1xuDIG1I091CkNENblbteWy1bXgw==";
};
};
"path-to-regexp-0.1.7" = {
@@ -51238,7 +51481,7 @@ let
version = "0.1.7";
src = fetchurl {
url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz";
- sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
+ sha512 = "5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==";
};
};
"path-to-regexp-1.8.0" = {
@@ -51259,6 +51502,15 @@ let
sha512 = "gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==";
};
};
+ "path-to-regexp-6.1.0" = {
+ name = "path-to-regexp";
+ packageName = "path-to-regexp";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz";
+ sha512 = "h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==";
+ };
+ };
"path-to-regexp-6.2.1" = {
name = "path-to-regexp";
packageName = "path-to-regexp";
@@ -51274,7 +51526,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz";
- sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441";
+ sha512 = "S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==";
};
};
"path-type-2.0.0" = {
@@ -51283,7 +51535,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz";
- sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73";
+ sha512 = "dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==";
};
};
"path-type-3.0.0" = {
@@ -51310,7 +51562,7 @@ let
version = "0.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/path2/-/path2-0.1.0.tgz";
- sha1 = "639828942cdbda44a41a45b074ae8873483b4efa";
+ sha512 = "TX+cz8Jk+ta7IvRy2FAej8rdlbrP0+uBIkP/5DTODez/AuL/vSb30KuAdDxGVREXzn8QfAiu5mJYJ1XjbOhEPA==";
};
};
"pathval-1.1.1" = {
@@ -51346,7 +51598,7 @@ let
version = "0.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz";
- sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d";
+ sha512 = "KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==";
};
};
"pause-stream-0.0.11" = {
@@ -51355,7 +51607,7 @@ let
version = "0.0.11";
src = fetchurl {
url = "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz";
- sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445";
+ sha512 = "e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==";
};
};
"pbf-3.2.1" = {
@@ -55003,13 +55255,13 @@ let
sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==";
};
};
- "pyright-1.1.250" = {
+ "pyright-1.1.251" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.250";
+ version = "1.1.251";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.250.tgz";
- sha512 = "LZl5ZzE5P4YkobJTpUvDmxreNFhFUgyYnKwDdSEneP4ZtKI4rIi5AvQ9lEsr/uXdzO/w+P+XRWbmderC0Cc/Pw==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.251.tgz";
+ sha512 = "0HttecsAvvpiWNZET0Y6rVZZDjr3omyyJ60Ghto71nlqWa6OEIsd1EGqcCDlebBXSU5OGKL0G9z78xRsaZWntg==";
};
};
"q-0.9.7" = {
@@ -55876,13 +56128,13 @@ let
sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==";
};
};
- "react-devtools-core-4.24.6" = {
+ "react-devtools-core-4.24.7" = {
name = "react-devtools-core";
packageName = "react-devtools-core";
- version = "4.24.6";
+ version = "4.24.7";
src = fetchurl {
- url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.24.6.tgz";
- sha512 = "+6y6JAtAo1NUUxaCwCYTb13ViBpc7RjNTlj1HZRlDJmi7UYToj5+BNn8Duzz2YizzAzmRUWZkRM7OtqxnN6TnA==";
+ url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.24.7.tgz";
+ sha512 = "OFB1cp8bsh5Kc6oOJ3ZzH++zMBtydwD53yBYa50FKEGyOOdgdbJ4VsCsZhN/6F5T4gJfrZraU6EKda8P+tMLtg==";
};
};
"react-dom-17.0.2" = {
@@ -55993,6 +56245,24 @@ let
sha512 = "Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==";
};
};
+ "react-router-6.3.0" = {
+ name = "react-router";
+ packageName = "react-router";
+ version = "6.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-router/-/react-router-6.3.0.tgz";
+ sha512 = "7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==";
+ };
+ };
+ "react-router-dom-6.3.0" = {
+ name = "react-router-dom";
+ packageName = "react-router-dom";
+ version = "6.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.3.0.tgz";
+ sha512 = "uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==";
+ };
+ };
"react-side-effect-2.1.1" = {
name = "react-side-effect";
packageName = "react-side-effect";
@@ -56677,13 +56947,13 @@ let
sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4";
};
};
- "redoc-2.0.0-rc.70" = {
+ "redoc-2.0.0-rc.71" = {
name = "redoc";
packageName = "redoc";
- version = "2.0.0-rc.70";
+ version = "2.0.0-rc.71";
src = fetchurl {
- url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.70.tgz";
- sha512 = "sdmZ8FX4JjF50hTSjHJ64Ccu9Ewa2O8+Fo8pCLg8GHFrbaFJ2E+KBDK9pGuAqNi61fm3Z5c91Ur7zqpITkUpNg==";
+ url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.71.tgz";
+ sha512 = "QVZq9irDKh/DqnxTWUrxxUy+kO0LYl3nKePsVxcCDGXsX5GOx8y8SMcQ8qxW8prUmwhcDtq2AGF96r3MsljiJQ==";
};
};
"reduce-component-1.0.1" = {
@@ -58711,6 +58981,15 @@ let
sha512 = "ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==";
};
};
+ "rollup-pluginutils-2.8.2" = {
+ name = "rollup-pluginutils";
+ packageName = "rollup-pluginutils";
+ version = "2.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz";
+ sha512 = "EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==";
+ };
+ };
"root-check-1.0.0" = {
name = "root-check";
packageName = "root-check";
@@ -59548,6 +59827,15 @@ let
sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==";
};
};
+ "semver-6.1.1" = {
+ name = "semver";
+ packageName = "semver";
+ version = "6.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz";
+ sha512 = "rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==";
+ };
+ };
"semver-6.3.0" = {
name = "semver";
packageName = "semver";
@@ -59944,6 +60232,15 @@ let
sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
};
};
+ "set-cookie-parser-2.4.8" = {
+ name = "set-cookie-parser";
+ packageName = "set-cookie-parser";
+ version = "2.4.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.4.8.tgz";
+ sha512 = "edRH8mBKEWNVIVMKejNnuJxleqYE/ZSdcT8/Nem9/mmosx12pctd80s2Oy00KNZzrogMZS5mauK2/ymL1bvlvg==";
+ };
+ };
"set-value-2.0.1" = {
name = "set-value";
packageName = "set-value";
@@ -61204,6 +61501,15 @@ let
sha512 = "wWqJhjb32Q6GsrUqzuFkukxb/zzide5quXYcMVpIjxalDBBYy2nqKCFQ/9+Ie4dvOYSQdOk3hUlZSdzZOd3zMQ==";
};
};
+ "socks-proxy-agent-6.2.1" = {
+ name = "socks-proxy-agent";
+ packageName = "socks-proxy-agent";
+ version = "6.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz";
+ sha512 = "a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==";
+ };
+ };
"socks5-client-1.2.8" = {
name = "socks5-client";
packageName = "socks5-client";
@@ -67209,13 +67515,13 @@ let
sha512 = "7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==";
};
};
- "typegram-3.9.1" = {
+ "typegram-3.9.2" = {
name = "typegram";
packageName = "typegram";
- version = "3.9.1";
+ version = "3.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/typegram/-/typegram-3.9.1.tgz";
- sha512 = "vfFr2o0iX+amnUj1h/0c49y8bCvGwt6DgdmTVD732Kf81XG26vgFwNWj+33Ol+xORC7m0cqU2hPYGRtcGinwZg==";
+ url = "https://registry.npmjs.org/typegram/-/typegram-3.9.2.tgz";
+ sha512 = "lbMhaP0jHsEbz8EJf2s4/hkKLtt2/9THTNatXa2mJCKHZBeJzGO1jrwueQBnXsSgA5pPHLwcPslTnsKXGo/GIQ==";
};
};
"typeorm-0.2.38" = {
@@ -67767,13 +68073,13 @@ let
sha1 = "5e4bda308e4a8a2ae584f9b9a4359a499825cc50";
};
};
- "undici-5.3.0" = {
+ "undici-5.4.0" = {
name = "undici";
packageName = "undici";
- version = "5.3.0";
+ version = "5.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/undici/-/undici-5.3.0.tgz";
- sha512 = "8LxC/xmR2GCE4q1heE1sJxVnnf5S6yQ2dObvMFBBWkB8aQlaqNuWovgRFWRMB7KUdLPGZfOTTmUeeLEJYX56iQ==";
+ url = "https://registry.npmjs.org/undici/-/undici-5.4.0.tgz";
+ sha512 = "A1SRXysDg7J+mVP46jF+9cKANw0kptqSFZ8tGyL+HBiv0K1spjxPX8Z4EGu+Eu6pjClJUBdnUPlxrOafR668/g==";
};
};
"unherit-1.1.3" = {
@@ -69288,6 +69594,15 @@ let
sha512 = "DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==";
};
};
+ "uuid-8.0.0" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "8.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz";
+ sha512 = "jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==";
+ };
+ };
"uuid-8.1.0" = {
name = "uuid";
packageName = "uuid";
@@ -70314,13 +70629,13 @@ let
sha512 = "FS5ou3G+WRnPPr/tWVs8b/jVzeDacgZHy/y7/QQW7maSPFEAmRt2bFGUJtJVEUDLBqtDm/3VGMJ7D31cF2U1tw==";
};
};
- "vsce-2.9.0" = {
+ "vsce-2.9.1" = {
name = "vsce";
packageName = "vsce";
- version = "2.9.0";
+ version = "2.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vsce/-/vsce-2.9.0.tgz";
- sha512 = "RjDyPfzRKD70N+hXklKqLJGZPmUMAPdhNEtmXR4QQY+RZQrIxaQDdI+DkSDMW9NbwL724elSVjgIxPkI+tYa/w==";
+ url = "https://registry.npmjs.org/vsce/-/vsce-2.9.1.tgz";
+ sha512 = "l/X4hkoYgOoZhRYQpJXqexBJU2z4mzNywx+artzWnOV3v45YMM6IoDDtIcB9SWluobem476KmMPLkCdAdnvoOg==";
};
};
"vscode-css-languageservice-3.0.13" = {
@@ -70755,6 +71070,15 @@ let
sha512 = "/xhqXP/2A2RSs+J8JNXpiiNVvvNM0oTosNVmQnunlKvq9o4mupHOBAnnzH0lwIPKazXKvAKsVp1kr+H/K4lgoQ==";
};
};
+ "vscode-languageserver-textdocument-1.0.5" = {
+ name = "vscode-languageserver-textdocument";
+ packageName = "vscode-languageserver-textdocument";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.5.tgz";
+ sha512 = "1ah7zyQjKBudnMiHbZmxz5bYNM9KKZYz+5VQLj+yr8l+9w3g+WAhCkUkWbhMEdC5u0ub4Ndiye/fDyS8ghIKQg==";
+ };
+ };
"vscode-languageserver-types-3.14.0" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
@@ -71313,6 +71637,15 @@ let
sha1 = "7137946585c73fe44882013853bd000c5d687a4e";
};
};
+ "web-encoding-1.1.5" = {
+ name = "web-encoding";
+ packageName = "web-encoding";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/web-encoding/-/web-encoding-1.1.5.tgz";
+ sha512 = "HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==";
+ };
+ };
"web-namespaces-1.1.4" = {
name = "web-namespaces";
packageName = "web-namespaces";
@@ -74117,7 +74450,7 @@ in
sources."signal-exit-3.0.7"
sources."smart-buffer-4.2.0"
sources."socks-2.6.2"
- sources."socks-proxy-agent-6.2.0"
+ sources."socks-proxy-agent-6.2.1"
sources."source-map-0.7.3"
sources."sourcemap-codec-1.4.8"
sources."ssri-8.0.1"
@@ -74564,7 +74897,7 @@ in
sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-8.0.1"
sources."vscode-languageserver-protocol-3.17.1"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-5.0.1"
sources."vscode-uri-3.0.3"
@@ -74848,10 +75181,10 @@ in
"@commitlint/cli" = nodeEnv.buildNodePackage {
name = "_at_commitlint_slash_cli";
packageName = "@commitlint/cli";
- version = "17.0.1";
+ version = "17.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.0.1.tgz";
- sha512 = "5xT1G5pnynR0tk/ms8Ji7yr9lZCeQs4GLVVtyK/gw20w+enoLTVuRKKY9zg88hy9FoCycc/W8iip2xv3c8payg==";
+ url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.0.2.tgz";
+ sha512 = "Axe89Js0YzGGd4gxo3JLlF7yIdjOVpG1LbOorGc6PfYF+drBh14PvarSDLzyd2TNqdylUCq9wb9/A88ZjIdyhA==";
};
dependencies = [
sources."@babel/code-frame-7.16.7"
@@ -74897,7 +75230,7 @@ in
sources."@tsconfig/node14-1.0.1"
sources."@tsconfig/node16-1.0.2"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."JSONStream-1.3.5"
@@ -75075,15 +75408,15 @@ in
"@commitlint/config-conventional" = nodeEnv.buildNodePackage {
name = "_at_commitlint_slash_config-conventional";
packageName = "@commitlint/config-conventional";
- version = "17.0.0";
+ version = "17.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.0.0.tgz";
- sha512 = "jttJXBIq3AuQCvUVwxSctCwKfHxxbALE0IB9OIHYCu/eQdOzPxN72pugeZsWDo1VK/T9iFx+MZoPb6Rb1/ylsw==";
+ url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.0.2.tgz";
+ sha512 = "MfP0I/JbxKkzo+HXWB7B3WstGS4BiniotU3d3xQ9gK8cR0DbeZ4MuyGCWF65YDyrcDTS3WlrJ3ndSPA1pqhoPw==";
};
dependencies = [
sources."array-ify-1.0.0"
sources."compare-func-2.0.0"
- sources."conventional-changelog-conventionalcommits-4.6.3"
+ sources."conventional-changelog-conventionalcommits-5.0.0"
sources."dot-prop-5.3.0"
sources."is-obj-2.0.0"
sources."lodash-4.17.21"
@@ -75127,7 +75460,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/normalize-package-data-2.4.1"
sources."@types/responselike-1.0.0"
sources."abort-controller-3.0.0"
@@ -75414,7 +75747,7 @@ in
sources."@hyperswarm/hypersign-2.1.1"
sources."@hyperswarm/network-2.1.0"
sources."@leichtgewicht/ip-codec-2.0.4"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."abstract-extension-3.1.1"
sources."abstract-leveldown-6.2.3"
sources."acorn-8.7.1"
@@ -75810,7 +76143,7 @@ in
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/tough-cookie-2.3.8"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -76841,7 +77174,7 @@ in
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
sources."@types/json5-0.0.29"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -76898,7 +77231,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enhanced-resolve-5.9.3"
@@ -77282,9 +77615,9 @@ in
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.1145.0" // {
+ (sources."aws-sdk-2.1146.0" // {
dependencies = [
- sources."uuid-3.3.2"
+ sources."uuid-8.0.0"
];
})
sources."aws-sign2-0.7.0"
@@ -77763,7 +78096,7 @@ in
sources."@types/koa-compose-3.2.5"
sources."@types/long-4.0.2"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -78011,7 +78344,7 @@ in
sources."easy-stack-1.0.1"
sources."ee-first-1.1.1"
sources."ejs-3.1.8"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -78964,7 +79297,7 @@ in
sources."@types/minimist-1.2.2"
sources."@types/ms-0.7.31"
sources."@types/nlcst-1.0.0"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse5-6.0.3"
sources."@types/supports-color-8.1.1"
@@ -79471,7 +79804,7 @@ in
sources."convert-source-map-1.8.0"
sources."debug-4.3.4"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -79772,7 +80105,7 @@ in
dependencies = [
sources."@types/glob-7.2.0"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -79858,7 +80191,7 @@ in
dependencies = [
sources."browserslist-4.20.3"
sources."caniuse-lite-1.0.30001344"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."escalade-3.1.1"
sources."fraction.js-4.2.0"
sources."node-releases-2.0.5"
@@ -79886,16 +80219,16 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
- (sources."aws-sdk-2.1145.0" // {
+ (sources."aws-sdk-2.1146.0" // {
dependencies = [
- sources."uuid-3.3.2"
+ sources."uuid-8.0.0"
];
})
sources."balanced-match-1.0.2"
@@ -80513,10 +80846,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "12.8.4";
+ version = "12.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.8.4.tgz";
- sha512 = "Tfe6LCsEhqmTQ+5pRjrfpJ1emxcU/UU1QFGRJcetXKRcbolENwOmBzaUmJHwiBsNQI67UNPCF7j4UjN0jvO12A==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.8.5.tgz";
+ sha512 = "xnow8ODpcmmnvG9bTfiNrWjGgCp1AmDlL8DeMPSt6Q2qCzJr0bXaQ7wuy1CeHbATBUN1ZR/jTR9T/VPyETpmLg==";
};
dependencies = [
(sources."@alexbosworth/caporal-1.4.4" // {
@@ -80567,7 +80900,7 @@ in
sources."@types/express-serve-static-core-4.17.28"
sources."@types/long-4.0.2"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/request-2.48.8"
@@ -81317,7 +81650,7 @@ in
sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-6.1.1"
sources."vscode-languageserver-protocol-3.17.1"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."web-tree-sitter-0.20.5"
sources."wrappy-1.0.2"
@@ -81738,7 +82071,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."accepts-1.3.8"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
@@ -82427,7 +82760,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -83434,10 +83767,10 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "2.0.5";
+ version = "2.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.5.tgz";
- sha512 = "LpK+UfuwqVmRcv9gZEO7BmInZ+bX+OYWNXv7SeRzr8/7i0NJwgu+pAnZdX1Bs5M14HimuDzsR7Gc8PAwrp/SSg==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.7.tgz";
+ sha512 = "YMWgfNNJ9O7PNh8Pc8rWU1z1Ze8COnr4JPTHciM9OBR7qT+J4E445S775tEdmrSJQ+cT/Bb9+DPi4l8MXB7C3Q==";
};
dependencies = [
sources."@jsii/check-node-1.59.0"
@@ -83445,7 +83778,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-12.20.52"
+ sources."@types/node-12.20.54"
sources."@xmldom/xmldom-0.8.2"
sources."ajv-8.11.0"
sources."ansi-regex-5.0.1"
@@ -83456,8 +83789,8 @@ in
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
sources."case-1.6.3"
- sources."cdk8s-2.3.11"
- sources."cdk8s-plus-22-2.0.0-rc.0"
+ sources."cdk8s-2.3.13"
+ sources."cdk8s-plus-22-2.0.0-rc.3"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
@@ -83470,7 +83803,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-10.1.23"
+ sources."constructs-10.1.24"
sources."date-format-4.0.10"
sources."debug-4.3.4"
sources."decamelize-5.0.1"
@@ -83560,14 +83893,14 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.576" // {
+ (sources."jsii-srcmak-0.1.577" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.4.0"
sources."json-schema-traverse-1.0.0"
- sources."json2jsii-0.3.26"
+ sources."json2jsii-0.3.27"
sources."jsonfile-6.1.0"
sources."jsonschema-1.4.1"
sources."locate-path-5.0.0"
@@ -83709,7 +84042,7 @@ in
sources."@sentry/node-6.19.7"
sources."@sentry/types-6.19.7"
sources."@sentry/utils-6.19.7"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/node-fetch-2.6.1"
sources."@types/yargs-17.0.10"
sources."@types/yargs-parser-21.0.0"
@@ -83744,7 +84077,7 @@ in
sources."combined-stream-1.0.8"
sources."commonmark-0.30.0"
sources."concat-map-0.0.1"
- sources."constructs-10.1.23"
+ sources."constructs-10.1.24"
sources."cookie-0.4.2"
sources."cross-spawn-7.0.3"
sources."date-format-4.0.10"
@@ -83892,7 +84225,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-srcmak-0.1.576" // {
+ (sources."jsii-srcmak-0.1.577" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -84360,10 +84693,10 @@ in
coc-explorer = nodeEnv.buildNodePackage {
name = "coc-explorer";
packageName = "coc-explorer";
- version = "0.24.2";
+ version = "0.24.3";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.24.2.tgz";
- sha512 = "3FcjoUvXTdM35iGLw6NHKjRR57RVhxVQJLafj24+NqQxiMLOH0GlrGcIjJFLLZLBY1Csgf19gQdzYsLAYRcieA==";
+ url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.24.3.tgz";
+ sha512 = "VRj7DQXqlAyIMZPmF9XMqWw+PoXLcEMCIjFtBnEf9Zpca1eiXIfMPw7xASXaS60B3mqR9FwKB1QtYxSXraN8rQ==";
};
dependencies = [
sources."@sindresorhus/df-3.1.1"
@@ -84485,7 +84818,7 @@ in
dependencies = [
sources."isexe-2.0.0"
sources."tslib-2.4.0"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-uri-3.0.3"
sources."which-2.0.2"
];
@@ -84846,7 +85179,7 @@ in
sources."vscode-languageserver-types-3.15.1"
];
})
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-2.1.2"
sources."webidl-conversions-3.0.1"
@@ -84907,13 +85240,13 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.250";
+ version = "1.1.252";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.250.tgz";
- sha512 = "8RBBTmNrNV853ve7CbxFEBxqt31dapm4vZsAjKvmFO09pOfHMAQ0/nnd6b4hrBjBiV9YNzrgpj9tLygO0F+6MQ==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.252.tgz";
+ sha512 = "XPxjOdeOZVTTs9UkKZjBtSyJ1lS5LWfGuYiLuu3LA70wG4v+FO691FziNQAU69j+8mjRIbKc28VetwtfE/cGfA==";
};
dependencies = [
- sources."pyright-1.1.250"
+ sources."pyright-1.1.251"
];
buildInputs = globalBuildInputs;
meta = {
@@ -84954,7 +85287,7 @@ in
dependencies = [
sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-protocol-3.17.1"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
];
buildInputs = globalBuildInputs;
@@ -85167,7 +85500,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -85384,7 +85717,7 @@ in
sources."vscode-languageserver-types-3.16.0-next.1"
];
})
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-2.1.2"
sources."which-1.3.1"
@@ -86955,7 +87288,7 @@ in
sources."slash-3.0.0"
sources."smart-buffer-4.2.0"
sources."socks-2.6.2"
- sources."socks-proxy-agent-6.2.0"
+ sources."socks-proxy-agent-6.2.1"
sources."spdx-correct-3.1.1"
sources."spdx-exceptions-2.3.0"
sources."spdx-expression-parse-3.0.1"
@@ -87202,7 +87535,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -87467,10 +87800,10 @@ in
cspell = nodeEnv.buildNodePackage {
name = "cspell";
packageName = "cspell";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell/-/cspell-6.0.0.tgz";
- sha512 = "skfNomVlYXGOe4C9wz0O/B8VlZc9GzpW5QDFHaRMYwWEtuyitN5WevuPMc9bkWbVKV8ghn1sXehBzy85V5PXIQ==";
+ url = "https://registry.npmjs.org/cspell/-/cspell-6.1.0.tgz";
+ sha512 = "8hF9iWfwrXUkBrfs958XsiIbeLkMUZzgF0s2gIOzUd4t8z6os3hDI2JGIshoTAshbCb82zYQqHvGfvuwh/NtHQ==";
};
dependencies = [
sources."@babel/code-frame-7.16.7"
@@ -87485,9 +87818,9 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@cspell/cspell-bundled-dicts-6.0.0"
- sources."@cspell/cspell-pipe-6.0.0"
- sources."@cspell/cspell-types-6.0.0"
+ sources."@cspell/cspell-bundled-dicts-6.1.0"
+ sources."@cspell/cspell-pipe-6.1.0"
+ sources."@cspell/cspell-types-6.1.0"
sources."@cspell/dict-ada-2.0.0"
sources."@cspell/dict-aws-2.0.0"
sources."@cspell/dict-bash-2.0.3"
@@ -87498,6 +87831,7 @@ in
sources."@cspell/dict-css-2.0.0"
sources."@cspell/dict-dart-1.1.1"
sources."@cspell/dict-django-2.0.0"
+ sources."@cspell/dict-docker-1.1.0"
sources."@cspell/dict-dotnet-2.0.1"
sources."@cspell/dict-elixir-2.0.1"
sources."@cspell/dict-en-gb-1.1.33"
@@ -87510,12 +87844,12 @@ in
sources."@cspell/dict-haskell-2.0.0"
sources."@cspell/dict-html-3.0.1"
sources."@cspell/dict-html-symbol-entities-3.0.0"
- sources."@cspell/dict-java-2.0.0"
+ sources."@cspell/dict-java-3.0.1"
sources."@cspell/dict-latex-2.0.4"
sources."@cspell/dict-lorem-ipsum-2.0.0"
sources."@cspell/dict-lua-2.0.0"
- sources."@cspell/dict-node-2.0.1"
- sources."@cspell/dict-npm-2.0.5"
+ sources."@cspell/dict-node-3.0.1"
+ sources."@cspell/dict-npm-3.0.1"
sources."@cspell/dict-php-2.0.0"
sources."@cspell/dict-powershell-2.0.0"
sources."@cspell/dict-public-licenses-1.0.5"
@@ -87547,11 +87881,11 @@ in
sources."core-util-is-1.0.3"
sources."cosmiconfig-7.0.1"
sources."crypto-random-string-2.0.0"
- sources."cspell-gitignore-6.0.0"
- sources."cspell-glob-6.0.0"
- sources."cspell-io-6.0.0"
- sources."cspell-lib-6.0.0"
- sources."cspell-trie-lib-6.0.0"
+ sources."cspell-gitignore-6.1.0"
+ sources."cspell-glob-6.1.0"
+ sources."cspell-io-6.1.0"
+ sources."cspell-lib-6.1.0"
+ sources."cspell-trie-lib-6.1.0"
sources."dot-prop-5.3.0"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
@@ -87629,7 +87963,7 @@ in
sources."typedarray-to-buffer-3.1.5"
sources."unique-string-2.0.0"
sources."universalify-2.0.0"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-uri-3.0.3"
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
@@ -88461,7 +88795,7 @@ in
sources."@types/mapbox-gl-0.54.5"
sources."@types/mime-types-2.1.1"
sources."@types/minimist-1.2.2"
- sources."@types/node-14.18.18"
+ sources."@types/node-14.18.20"
sources."@types/prop-types-15.7.5"
sources."@types/rc-1.2.1"
sources."@types/react-17.0.45"
@@ -88586,10 +88920,10 @@ in
sources."earcut-2.2.3"
(sources."electron-18.3.1" // {
dependencies = [
- sources."@types/node-16.11.36"
+ sources."@types/node-16.11.38"
];
})
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -89111,7 +89445,7 @@ in
sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-6.1.1"
sources."vscode-languageserver-protocol-3.17.1"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-2.1.2"
sources."wrappy-1.0.2"
@@ -89145,7 +89479,7 @@ in
sources."vscode-languageserver-types-3.17.1"
];
})
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.0-next.3"
];
buildInputs = globalBuildInputs;
@@ -89169,7 +89503,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.18"
+ sources."@types/node-14.18.20"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.6"
@@ -89378,7 +89712,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.10.0"
sources."abbrev-1.1.1"
@@ -89811,7 +90145,7 @@ in
})
sources."smart-buffer-4.2.0"
sources."socks-2.6.2"
- sources."socks-proxy-agent-6.2.0"
+ sources."socks-proxy-agent-6.2.1"
sources."source-map-0.6.1"
sources."source-map-support-0.5.21"
sources."spdx-correct-3.1.1"
@@ -90032,7 +90366,7 @@ in
];
})
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -90157,7 +90491,7 @@ in
sources."punycode-2.1.1"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.24.6"
+ sources."react-devtools-core-4.24.7"
sources."react-is-16.13.1"
sources."react-reconciler-0.26.2"
(sources."read-pkg-5.2.0" // {
@@ -90301,7 +90635,7 @@ in
sources."@fluentui/foundation-legacy-8.2.7"
sources."@fluentui/keyboard-key-0.4.1"
sources."@fluentui/merge-styles-8.5.2"
- sources."@fluentui/react-8.71.1"
+ sources."@fluentui/react-8.72.0"
sources."@fluentui/react-focus-8.6.0"
sources."@fluentui/react-hooks-8.5.5"
sources."@fluentui/react-portal-compat-context-9.0.0-rc.2"
@@ -91929,7 +92263,7 @@ in
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
@@ -92486,7 +92820,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -94663,7 +94997,7 @@ in
sources."duplexer3-0.1.4"
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -96203,7 +96537,7 @@ in
sources."@jridgewell/sourcemap-codec-1.4.13"
sources."@jridgewell/trace-mapping-0.3.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.10.0"
sources."@types/yoga-layout-1.9.2"
@@ -96255,7 +96589,7 @@ in
})
sources."delay-5.0.0"
sources."devtools-protocol-0.0.981744"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -96352,7 +96686,7 @@ in
})
sources."quick-lru-4.0.1"
sources."react-17.0.2"
- sources."react-devtools-core-4.24.6"
+ sources."react-devtools-core-4.24.7"
sources."react-reconciler-0.26.2"
(sources."read-pkg-5.2.0" // {
dependencies = [
@@ -96882,7 +97216,7 @@ in
sources."@types/duplexify-3.6.1"
sources."@types/json-schema-7.0.11"
sources."@types/long-4.0.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
sources."accepts-1.3.8"
@@ -97339,7 +97673,7 @@ in
})
(sources."make-fetch-happen-9.1.0" // {
dependencies = [
- sources."socks-proxy-agent-6.2.0"
+ sources."socks-proxy-agent-6.2.1"
];
})
sources."marked-4.0.16"
@@ -97953,7 +98287,7 @@ in
sources."@types/atob-2.1.2"
sources."@types/bn.js-5.1.0"
sources."@types/inquirer-6.5.0"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/pbkdf2-3.1.0"
sources."@types/secp256k1-4.0.3"
sources."@types/through-0.0.30"
@@ -98721,10 +99055,10 @@ in
gatsby-cli = nodeEnv.buildNodePackage {
name = "gatsby-cli";
packageName = "gatsby-cli";
- version = "4.15.0";
+ version = "4.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.15.0.tgz";
- sha512 = "N4Vm4zEuurwChbRpgPYniyl3YdQLS1VcXWqXpu0eqmFQ74JxyzqFCeoiBfT6B4AkZJQyx4RwxR+0eJseowfy0A==";
+ url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.15.1.tgz";
+ sha512 = "PlwcfOYVpG1/YsctnY8M2sNt1wNR46AQD0SKg/lTMdjB/EhBp4jNQNYTEp5eZihOu7Ap98/igM+RMrAUFttj5g==";
};
dependencies = [
sources."@ampproject/remapping-2.2.0"
@@ -98800,7 +99134,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/node-fetch-2.6.1"
sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
@@ -98867,7 +99201,7 @@ in
sources."configstore-5.0.1"
sources."convert-hrtime-3.0.0"
sources."convert-source-map-1.8.0"
- sources."create-gatsby-2.15.0"
+ sources."create-gatsby-2.15.1"
(sources."cross-spawn-6.0.5" // {
dependencies = [
sources."semver-5.7.1"
@@ -98894,7 +99228,7 @@ in
sources."domutils-2.8.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
@@ -99684,7 +100018,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/responselike-1.0.0"
sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
@@ -100443,7 +100777,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -100986,7 +101320,7 @@ in
})
sources."@oclif/screen-1.0.4"
sources."@types/json-schema-7.0.9"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/parse-json-4.0.0"
sources."@types/ws-8.5.3"
sources."abort-controller-3.0.0"
@@ -101252,7 +101586,7 @@ in
sources."ts-node-9.1.1"
sources."tslib-2.4.0"
sources."type-is-1.6.18"
- sources."undici-5.3.0"
+ sources."undici-5.4.0"
sources."uniq-1.0.1"
sources."universalify-0.1.2"
sources."unixify-1.0.0"
@@ -102546,10 +102880,10 @@ in
http-server = nodeEnv.buildNodePackage {
name = "http-server";
packageName = "http-server";
- version = "14.1.0";
+ version = "14.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/http-server/-/http-server-14.1.0.tgz";
- sha512 = "5lYsIcZtf6pdR8tCtzAHTWrAveo4liUlJdWc7YafwK/maPgYHs+VNP6KpCClmUnSorJrARVMXqtT055zBv11Yg==";
+ url = "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz";
+ sha512 = "+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==";
};
dependencies = [
sources."ansi-styles-4.3.0"
@@ -102775,7 +103109,7 @@ in
sources."@colors/colors-1.5.0"
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.18"
+ sources."@types/node-14.18.20"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -102784,7 +103118,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.4"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.1145.0"
+ sources."aws-sdk-2.1146.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."base64-js-1.5.1"
@@ -102913,7 +103247,11 @@ in
sources."read-1.0.7"
sources."readable-stream-3.6.0"
sources."recursive-readdir-sync-1.0.6"
- sources."request-2.88.2"
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."uuid-3.4.0"
+ ];
+ })
sources."request-as-curl-0.1.0"
sources."require-directory-2.1.1"
sources."revalidator-0.1.8"
@@ -102947,7 +103285,7 @@ in
})
sources."url-0.10.3"
sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
+ sources."uuid-8.0.0"
sources."verror-1.10.1"
(sources."winston-2.4.6" // {
dependencies = [
@@ -103590,7 +103928,7 @@ in
sources."vscode-languageserver-types-3.16.0"
];
})
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.0-next.1"
sources."vscode-nls-5.0.1"
sources."vscode-uri-3.0.3"
@@ -104457,10 +104795,10 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.1145.0" // {
+ (sources."aws-sdk-2.1146.0" // {
dependencies = [
sources."sax-1.2.1"
- sources."uuid-3.3.2"
+ sources."uuid-8.0.0"
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
];
@@ -105081,7 +105419,7 @@ in
})
sources."smart-buffer-4.2.0"
sources."socks-2.6.2"
- (sources."socks-proxy-agent-6.2.0" // {
+ (sources."socks-proxy-agent-6.2.1" // {
dependencies = [
sources."debug-4.3.4"
];
@@ -106635,7 +106973,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."accepts-1.3.8"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -107007,7 +107345,7 @@ in
})
sources."dotenv-8.6.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -108602,7 +108940,7 @@ in
sources."p-timeout-3.2.0"
sources."p-try-2.2.0"
sources."p-waterfall-2.1.1"
- (sources."pacote-13.5.0" // {
+ (sources."pacote-13.6.0" // {
dependencies = [
sources."builtins-5.0.1"
sources."hosted-git-info-5.0.0"
@@ -108697,7 +109035,7 @@ in
sources."slash-3.0.0"
sources."smart-buffer-4.2.0"
sources."socks-2.6.2"
- sources."socks-proxy-agent-6.2.0"
+ sources."socks-proxy-agent-6.2.1"
sources."sort-keys-2.0.0"
sources."source-map-0.6.1"
sources."spdx-correct-3.1.1"
@@ -109724,7 +110062,7 @@ in
sources."@types/commander-2.12.2"
sources."@types/diff-3.5.5"
sources."@types/get-stdin-5.0.1"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."commander-2.20.3"
sources."diff-3.5.0"
sources."get-stdin-5.0.1"
@@ -110136,6 +110474,7 @@ in
version = "0.0.1";
src = ../../applications/editors/vim/plugins/markdown-preview-nvim;
dependencies = [
+ sources."@chemzqm/neovim-5.7.9"
sources."accepts-1.3.8"
sources."after-0.8.2"
sources."arraybuffer.slice-0.0.7"
@@ -110611,7 +110950,7 @@ in
};
dependencies = [
sources."@braintree/sanitize-url-6.0.0"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
sources."ansi-styles-4.3.0"
@@ -111091,7 +111430,7 @@ in
sources."@types/istanbul-lib-coverage-2.0.4"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-3.0.1"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/stack-utils-2.0.1"
sources."@types/yargs-16.0.4"
sources."@types/yargs-parser-21.0.0"
@@ -111459,7 +111798,7 @@ in
version = "0.0.25";
src = fetchurl {
url = "https://registry.npmjs.org/nijs/-/nijs-0.0.25.tgz";
- sha1 = "04b035cb530d46859d1018839a518c029133f676";
+ sha512 = "uMpozOyrni5Tvj3O87pz1AYPrcoaGhs7jUWcv4ZII2BB4mHgoDcN3Tgn/1ezarfsxj1KiPU+TPn2M7XAcvA43g==";
};
dependencies = [
sources."optparse-1.0.5"
@@ -111570,7 +111909,7 @@ in
sources."signal-exit-3.0.7"
sources."smart-buffer-4.2.0"
sources."socks-2.6.2"
- sources."socks-proxy-agent-6.2.0"
+ sources."socks-proxy-agent-6.2.1"
sources."ssri-9.0.1"
sources."string-width-4.2.3"
sources."string_decoder-1.3.0"
@@ -111618,7 +111957,7 @@ in
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/node-inspector/-/node-inspector-1.1.2.tgz";
- sha1 = "690c9ef7e5813da50b7a2746f334e3ff319bccd7";
+ sha512 = "WAVMOmHOcUdaMfiVLOWOMGFyhOGiPR13DGTJ7WAbrAiOQAOMcMRuO8OPMHIfNmJG7Am2g4ZtpItWYgUVzKFJuw==";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -112049,7 +112388,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
@@ -112804,7 +113143,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -113317,10 +113656,10 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "13.0.3";
+ version = "13.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-13.0.3.tgz";
- sha512 = "a8CVklJjXZhmN5Kup8rKiejArobCbOaMnubhvM/LkYVumO17dBuWuaHUuiSrYglQUb88lGSdbNNfHDNN7b+3pQ==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-13.0.4.tgz";
+ sha512 = "f9xzzSMNsVCXvHAECBU4qloLUKSLRQ3a4sDU0F/b6CnzDAC+NE6obqb4Q2KpO1coQwK6FPQ+UReHZ+iXBTN6bw==";
};
dependencies = [
sources."@gar/promisify-1.1.3"
@@ -113533,7 +113872,7 @@ in
sources."semver-6.3.0"
];
})
- sources."pacote-13.5.0"
+ sources."pacote-13.6.0"
sources."parse-github-url-1.0.2"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
@@ -113589,7 +113928,7 @@ in
sources."slash-3.0.0"
sources."smart-buffer-4.2.0"
sources."socks-2.6.2"
- sources."socks-proxy-agent-6.2.0"
+ sources."socks-proxy-agent-6.2.1"
sources."source-map-0.6.1"
sources."source-map-support-0.5.21"
sources."spawn-please-1.0.0"
@@ -114067,7 +114406,7 @@ in
sources."convert-source-map-1.8.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.22.7" // {
+ (sources."core-js-compat-3.22.8" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -114178,7 +114517,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -114926,7 +115265,7 @@ in
];
})
sources."@parcel/workers-2.6.0"
- sources."@swc/helpers-0.3.16"
+ sources."@swc/helpers-0.3.17"
sources."@trysound/sax-0.2.0"
sources."@types/parse-json-4.0.0"
sources."abortcontroller-polyfill-1.7.3"
@@ -114968,7 +115307,7 @@ in
sources."domutils-2.8.0"
sources."dotenv-7.0.0"
sources."dotenv-expand-5.1.0"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."entities-3.0.1"
sources."error-ex-1.3.2"
sources."escalade-3.1.1"
@@ -117237,7 +117576,7 @@ in
sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-8.0.1"
sources."vscode-languageserver-protocol-3.17.1"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-2.1.2"
sources."which-2.0.2"
@@ -117414,10 +117753,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.250";
+ version = "1.1.251";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.250.tgz";
- sha512 = "LZl5ZzE5P4YkobJTpUvDmxreNFhFUgyYnKwDdSEneP4ZtKI4rIi5AvQ9lEsr/uXdzO/w+P+XRWbmderC0Cc/Pw==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.251.tgz";
+ sha512 = "0HttecsAvvpiWNZET0Y6rVZZDjr3omyyJ60Ghto71nlqWa6OEIsd1EGqcCDlebBXSU5OGKL0G9z78xRsaZWntg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -117922,7 +118261,7 @@ in
sources."@types/glob-7.2.0"
sources."@types/json-schema-7.0.11"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -118195,7 +118534,7 @@ in
sources."copy-concurrently-1.0.5"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.22.7" // {
+ (sources."core-js-compat-3.22.8" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -118336,7 +118675,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -119707,10 +120046,10 @@ in
redoc-cli = nodeEnv.buildNodePackage {
name = "redoc-cli";
packageName = "redoc-cli";
- version = "0.13.14";
+ version = "0.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.14.tgz";
- sha512 = "QPiVRdz0+CvLmjPzaIAz1RttpYUOSeUbep/WxLXaalu1Z9jeSjsI0yI2+HC3sh/tEuLzaHQ2bvE7mvGq0aTbWA==";
+ url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.15.tgz";
+ sha512 = "ln8/yrrSpIKbgHyVAR81OgqSxcviNsSW5V/Z4Xdxxu9w9uIURnIuGF6z2GsUhZOY4OZrNLGXEsDl9Li38yNygA==";
};
dependencies = [
sources."@babel/code-frame-7.16.7"
@@ -119741,7 +120080,7 @@ in
sources."@redocly/ajv-8.6.4"
sources."@redocly/openapi-core-1.0.0-beta.100"
sources."@types/json-schema-7.0.11"
- sources."@types/node-14.18.18"
+ sources."@types/node-14.18.20"
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
@@ -119940,7 +120279,7 @@ in
];
})
sources."readdirp-3.6.0"
- (sources."redoc-2.0.0-rc.70" // {
+ (sources."redoc-2.0.0-rc.71" // {
dependencies = [
sources."path-browserify-1.0.1"
];
@@ -120524,10 +120863,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "2.75.3";
+ version = "2.75.5";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.75.3.tgz";
- sha512 = "YA29fLU6MAYSaDxIQYrGGOcbXlDmG96h0krGGYObroezcQ0KgEPM3+7MtKD/qeuUbFuAJXvKZee5dA1dpwq1PQ==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.75.5.tgz";
+ sha512 = "JzNlJZDison3o2mOxVmb44Oz7t74EfSd1SQrplQk0wSaXV7uLQXtVdHbxlcT3w+8tZ1TL4r/eLfc7nAbz38BBA==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -120897,7 +121236,7 @@ in
sources."url-join-4.0.1"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-2.3.0"
- (sources."vsce-2.9.0" // {
+ (sources."vsce-2.9.1" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -121277,7 +121616,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/lodash-4.14.182"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/responselike-1.0.0"
sources."adm-zip-0.5.9"
sources."agent-base-6.0.2"
@@ -121303,12 +121642,12 @@ in
sources."async-3.2.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.1145.0" // {
+ (sources."aws-sdk-2.1147.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
sources."querystring-0.2.0"
- sources."uuid-3.3.2"
+ sources."uuid-8.0.0"
];
})
sources."axios-0.21.4"
@@ -122376,10 +122715,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.942.0";
+ version = "1.945.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.942.0.tgz";
- sha512 = "ooZf0+Ms1K1WP4mvRntSiAj35yyNdym36rxoCZjU8NYzV6eeKwO1TqyVfPColjvXh+5Fp4NnWpQ1aFcJY8/ACg==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.945.0.tgz";
+ sha512 = "l+DM5Jcgrxy+0Iuh6IHSrl/+0ubJ8pqkS6HvyXOIkydyCWSik9XZAoK+EMKV9swpZKLtJOjCj6yxGNyl4HBZhQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -122402,7 +122741,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."accepts-1.3.8"
sources."base64id-2.0.0"
sources."component-emitter-1.3.0"
@@ -122674,7 +123013,7 @@ in
sources."binary-search-1.3.6"
sources."binary-search-bounds-2.0.5"
sources."bindings-1.5.0"
- sources."bipf-1.6.4"
+ sources."bipf-1.6.5"
sources."blake2s-1.1.0"
sources."brace-expansion-1.1.11"
sources."braces-1.8.5"
@@ -122801,6 +123140,7 @@ in
})
sources."extend.js-0.0.2"
sources."extglob-0.3.2"
+ sources."fast-varint-1.0.0"
sources."fastintcompression-0.0.4"
sources."fastpriorityqueue-0.7.2"
sources."file-uri-to-path-1.0.0"
@@ -123527,7 +123867,6 @@ in
sources."user-home-2.0.0"
sources."utf8-byte-length-1.0.4"
sources."util-deprecate-1.0.2"
- sources."varint-5.0.2"
sources."vfile-1.4.0"
sources."vfile-find-down-1.0.0"
sources."vfile-find-up-1.0.0"
@@ -123641,9 +123980,9 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.1145.0" // {
+ (sources."aws-sdk-2.1147.0" // {
dependencies = [
- sources."uuid-3.3.2"
+ sources."uuid-8.0.0"
];
})
sources."aws-sign2-0.6.0"
@@ -124782,7 +125121,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
@@ -124869,7 +125208,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
@@ -124951,7 +125290,7 @@ in
sources."vscode-jsonrpc-6.0.0"
];
})
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.1"
sources."vscode-uri-3.0.3"
@@ -125841,7 +126180,7 @@ in
sources."tr46-0.0.3"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-1.0.3"
- sources."typegram-3.9.1"
+ sources."typegram-3.9.2"
sources."uri-js-4.4.1"
sources."uuid-3.4.0"
sources."verror-1.10.0"
@@ -126910,10 +127249,10 @@ in
textlint-rule-terminology = nodeEnv.buildNodePackage {
name = "textlint-rule-terminology";
packageName = "textlint-rule-terminology";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-3.0.0.tgz";
- sha512 = "ySHbdLcA9Mdbbbc/Wkts3f8CVvY2Nsy3r21NH4bK785jhdpZozG771WDR7d7L5nNnFBeH7MmS0IcscfMpxMyvQ==";
+ url = "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-3.0.1.tgz";
+ sha512 = "jk2SGGep+XBckhIm9u6CG7NeMZiosJRPfoh7ISlCZizj/JGNk/zheDYGVXwKbFu20SxsguyUIpTF1z/d1Q+NeQ==";
};
dependencies = [
sources."@types/unist-2.0.6"
@@ -127049,7 +127388,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -127101,7 +127440,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.7"
+ sources."core-js-3.22.8"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -127395,7 +127734,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -127447,7 +127786,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.7"
+ sources."core-js-3.22.8"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -127815,7 +128154,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.7"
+ sources."core-js-3.22.8"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -128408,7 +128747,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -128489,7 +128828,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.7"
+ sources."core-js-3.22.8"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -128875,7 +129214,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -128956,7 +129295,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.7"
+ sources."core-js-3.22.8"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -130372,7 +130711,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-16.11.36"
+ sources."@types/node-16.11.38"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
@@ -130690,7 +131029,7 @@ in
sources."@types/is-empty-1.2.1"
sources."@types/js-yaml-4.0.5"
sources."@types/ms-0.7.31"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/supports-color-8.1.1"
sources."@types/unist-2.0.6"
sources."ansi-regex-6.0.1"
@@ -130769,7 +131108,7 @@ in
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.16.0"
sources."wrappy-1.0.2"
sources."yallist-4.0.0"
@@ -130995,110 +131334,335 @@ in
vercel = nodeEnv.buildNodePackage {
name = "vercel";
packageName = "vercel";
- version = "24.2.4";
+ version = "24.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/vercel/-/vercel-24.2.4.tgz";
- sha512 = "RdQ0tIi76z+qfAC9njQK9HKKgANlu3VQrJFV7tkFF4cX4eapwkmsjEn+L7OdLv9hdiSVksOVJKdXkKNo56vkNA==";
+ url = "https://registry.npmjs.org/vercel/-/vercel-24.2.5.tgz";
+ sha512 = "ZEpjZorugQRPoMhVHvTVEvuVrtl8o8scjs4zBKPbc91niIGlHWnieA+dVmoh5fK3jx+TrD5ZBAlbtP3AaxGr/A==";
};
dependencies = [
+ sources."@babel/runtime-7.18.3"
+ (sources."@mapbox/node-pre-gyp-1.0.9" // {
+ dependencies = [
+ sources."semver-7.3.7"
+ ];
+ })
+ sources."@remix-run/node-1.4.3"
+ (sources."@remix-run/server-runtime-1.4.3" // {
+ dependencies = [
+ sources."source-map-0.7.3"
+ ];
+ })
+ sources."@remix-run/vercel-1.4.3"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-17.0.36"
- sources."@vercel/build-utils-3.1.0"
- sources."@vercel/go-1.4.3"
- sources."@vercel/node-1.15.3"
+ sources."@types/busboy-0.3.2"
+ sources."@types/cookie-0.4.1"
+ sources."@types/node-17.0.38"
+ (sources."@types/node-fetch-2.6.1" // {
+ dependencies = [
+ sources."form-data-3.0.1"
+ ];
+ })
+ sources."@vercel/build-utils-3.1.1"
+ sources."@vercel/go-1.4.4"
+ sources."@vercel/next-2.9.0"
+ sources."@vercel/nft-0.19.1"
+ sources."@vercel/node-1.15.4"
sources."@vercel/node-bridge-2.2.2"
- sources."@vercel/python-2.3.3"
- sources."@vercel/ruby-1.3.6"
+ sources."@vercel/python-2.3.4"
+ sources."@vercel/redwood-0.8.4"
+ sources."@vercel/remix-0.0.2"
+ sources."@vercel/routing-utils-1.13.3"
+ sources."@vercel/ruby-1.3.7"
+ sources."@vercel/static-build-0.26.0"
+ sources."@web-std/blob-3.0.4"
+ sources."@web-std/file-3.0.2"
+ sources."@web-std/stream-1.0.0"
+ sources."@zxing/text-encoding-0.9.0"
+ sources."abbrev-1.1.1"
+ sources."abort-controller-3.0.0"
+ sources."acorn-8.7.1"
+ sources."agent-base-6.0.2"
+ sources."ajv-6.12.6"
sources."ansi-align-3.0.1"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
+ sources."aproba-2.0.0"
+ sources."are-we-there-yet-2.0.0"
sources."arg-4.1.3"
+ sources."asynckit-0.4.0"
+ sources."available-typed-arrays-1.0.5"
+ sources."balanced-match-1.0.2"
+ sources."bindings-1.5.0"
+ sources."blob-0.0.4"
+ sources."blob-stream-0.1.3"
sources."boxen-4.2.0"
+ sources."brace-expansion-1.1.11"
+ sources."braces-3.0.2"
sources."buffer-from-1.1.2"
+ sources."busboy-0.3.1"
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."get-stream-5.2.0"
sources."lowercase-keys-2.0.0"
];
})
+ sources."call-bind-1.0.2"
sources."camelcase-5.3.1"
sources."chalk-3.0.0"
+ sources."chownr-2.0.0"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
sources."clone-response-1.0.2"
+ sources."code-point-at-1.1.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
+ sources."color-support-1.1.3"
+ sources."combined-stream-1.0.8"
+ sources."concat-map-0.0.1"
sources."configstore-5.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."cookie-0.4.2"
+ sources."cookie-signature-1.2.0"
+ sources."core-util-is-1.0.3"
sources."crypto-random-string-2.0.0"
+ sources."debug-4.3.4"
sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
sources."defer-to-connect-1.1.3"
+ sources."define-properties-1.1.4"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."detect-libc-2.0.1"
+ sources."dicer-0.3.0"
sources."diff-4.0.2"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
+ sources."es-abstract-1.20.1"
+ sources."es-to-primitive-1.2.1"
sources."escape-goat-2.1.1"
+ sources."estree-walker-2.0.2"
+ sources."event-target-shim-5.0.1"
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-json-stable-stringify-2.1.0"
+ sources."file-uri-to-path-1.0.0"
+ sources."fill-range-7.0.1"
+ sources."for-each-0.3.3"
+ sources."form-data-4.0.0"
+ sources."fs-minipass-2.1.0"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
+ sources."gauge-3.0.2"
+ sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
- sources."global-dirs-2.1.0"
+ sources."get-symbol-description-1.0.0"
+ sources."glob-7.2.3"
+ (sources."global-dirs-2.1.0" // {
+ dependencies = [
+ sources."ini-1.3.7"
+ ];
+ })
sources."got-9.6.0"
sources."graceful-fs-4.2.10"
+ sources."has-1.0.3"
+ sources."has-bigints-1.0.2"
sources."has-flag-4.0.0"
+ sources."has-property-descriptors-1.0.0"
+ sources."has-symbols-1.0.3"
+ sources."has-tostringtag-1.0.0"
+ sources."has-unicode-2.0.1"
sources."has-yarn-2.1.0"
+ sources."history-5.3.0"
sources."http-cache-semantics-4.1.0"
+ sources."https-proxy-agent-5.0.1"
+ sources."iconv-lite-0.4.24"
+ sources."ignore-walk-3.0.4"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
- sources."ini-1.3.7"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.8"
+ sources."internal-slot-1.0.3"
+ sources."is-arguments-1.1.1"
+ sources."is-bigint-1.0.4"
+ sources."is-boolean-object-1.1.2"
+ sources."is-callable-1.2.4"
sources."is-ci-2.0.0"
+ sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
+ sources."is-generator-function-1.0.10"
sources."is-installed-globally-0.3.2"
+ sources."is-negative-zero-2.0.2"
sources."is-npm-4.0.0"
+ sources."is-number-7.0.0"
+ sources."is-number-object-1.0.7"
sources."is-obj-2.0.0"
sources."is-path-inside-3.0.3"
+ sources."is-regex-1.1.4"
+ sources."is-shared-array-buffer-1.0.2"
+ sources."is-string-1.0.7"
+ sources."is-symbol-1.0.4"
+ sources."is-typed-array-1.1.9"
sources."is-typedarray-1.0.0"
+ sources."is-weakref-1.0.2"
sources."is-yarn-global-0.3.0"
+ sources."isarray-1.0.0"
+ sources."jsesc-3.0.2"
sources."json-buffer-3.0.0"
+ sources."json-schema-traverse-0.4.1"
sources."keyv-3.1.0"
sources."latest-version-5.1.0"
sources."lowercase-keys-1.0.1"
+ sources."lru-cache-6.0.0"
sources."make-dir-3.1.0"
sources."make-error-1.3.6"
+ sources."micromatch-4.0.5"
+ sources."mime-db-1.52.0"
+ sources."mime-types-2.1.35"
sources."mimic-response-1.0.1"
+ sources."minimatch-3.1.2"
sources."minimist-1.2.6"
+ sources."minipass-3.1.6"
+ sources."minizlib-2.1.2"
+ sources."mkdirp-1.0.4"
+ sources."ms-2.1.2"
+ (sources."needle-2.9.1" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ ];
+ })
+ sources."node-fetch-2.6.7"
+ sources."node-gyp-build-4.4.0"
+ (sources."node-pre-gyp-0.13.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.7"
+ sources."chownr-1.1.4"
+ sources."detect-libc-1.0.3"
+ sources."fs-minipass-1.2.7"
+ sources."gauge-2.7.4"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."minipass-2.9.0"
+ sources."minizlib-1.3.3"
+ sources."mkdirp-0.5.6"
+ sources."nopt-4.0.3"
+ sources."npmlog-4.1.2"
+ sources."readable-stream-2.3.7"
+ sources."rimraf-2.7.1"
+ sources."safe-buffer-5.1.2"
+ sources."semver-5.7.1"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ (sources."tar-4.4.19" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
+ sources."yallist-3.1.1"
+ ];
+ })
+ sources."nopt-5.0.0"
sources."normalize-url-4.5.1"
+ sources."npm-bundled-1.1.2"
+ sources."npm-normalize-package-bin-1.0.1"
+ sources."npm-packlist-1.4.8"
+ sources."npmlog-5.0.1"
+ sources."number-is-nan-1.0.1"
+ sources."object-assign-4.1.1"
+ sources."object-inspect-1.12.2"
+ sources."object-keys-1.1.1"
+ sources."object.assign-4.1.2"
sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
sources."p-cancelable-1.1.0"
- sources."package-json-6.5.0"
+ (sources."package-json-6.5.0" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-6.1.0"
+ sources."picomatch-2.3.1"
sources."prepend-http-2.0.0"
+ sources."process-nextick-args-2.0.1"
sources."pump-3.0.0"
+ sources."punycode-2.1.1"
sources."pupa-2.1.1"
sources."rc-1.2.8"
+ sources."react-router-6.3.0"
+ sources."react-router-dom-6.3.0"
+ sources."readable-stream-3.6.0"
+ sources."regenerator-runtime-0.13.9"
+ sources."regexp.prototype.flags-1.4.3"
sources."registry-auth-token-4.2.1"
sources."registry-url-5.1.0"
+ sources."resolve-from-5.0.0"
sources."responselike-1.0.2"
- sources."semver-6.3.0"
- sources."semver-diff-3.1.1"
+ sources."rimraf-3.0.2"
+ (sources."rollup-pluginutils-2.8.2" // {
+ dependencies = [
+ sources."estree-walker-0.6.1"
+ ];
+ })
+ sources."safe-buffer-5.2.1"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."semver-6.1.1"
+ (sources."semver-diff-3.1.1" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."set-blocking-2.0.0"
+ sources."set-cookie-parser-2.4.8"
+ sources."side-channel-1.0.4"
sources."signal-exit-3.0.7"
sources."source-map-0.6.1"
sources."source-map-support-0.5.21"
+ sources."streamsearch-0.1.2"
sources."string-width-4.2.3"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
+ sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
+ sources."tar-6.1.11"
sources."term-size-2.2.1"
sources."to-readable-stream-1.0.0"
+ sources."to-regex-range-5.0.1"
+ sources."tr46-0.0.3"
sources."ts-node-8.9.1"
sources."type-fest-0.8.1"
sources."typedarray-to-buffer-3.1.5"
sources."typescript-4.3.4"
+ sources."unbox-primitive-1.0.2"
sources."unique-string-2.0.0"
sources."update-notifier-4.1.0"
+ sources."uri-js-4.4.1"
sources."url-parse-lax-3.0.0"
+ sources."util-0.12.4"
+ sources."util-deprecate-1.0.2"
+ sources."web-encoding-1.1.5"
+ sources."web-streams-polyfill-3.2.1"
+ sources."webidl-conversions-3.0.1"
+ sources."whatwg-url-5.0.0"
+ sources."which-boxed-primitive-1.0.2"
+ sources."which-typed-array-1.1.8"
+ sources."wide-align-1.1.5"
sources."widest-line-3.1.0"
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
sources."xdg-basedir-4.0.0"
+ sources."yallist-4.0.0"
sources."yn-3.1.1"
];
buildInputs = globalBuildInputs;
@@ -131431,7 +131995,7 @@ in
sources."vscode-languageserver-types-3.16.0"
];
})
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-4.1.2"
sources."vscode-uri-3.0.3"
@@ -131481,7 +132045,7 @@ in
sources."vscode-languageserver-types-3.5.0"
];
})
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.16.0-next.2"
sources."vscode-nls-2.0.2"
sources."vscode-uri-1.0.8"
@@ -131505,7 +132069,7 @@ in
sha512 = "Un7gzQgvACjGtsT0Yll5QqHgL65a4mTK5ChgMnO4dgTZ3tuwJCaP84oztBqvuFZzN9QxA3C07J4QEQvf1xjcgQ==";
};
dependencies = [
- sources."core-js-3.22.7"
+ sources."core-js-3.22.8"
sources."jsonc-parser-3.0.0"
sources."regenerator-runtime-0.13.9"
sources."request-light-0.5.8"
@@ -131516,7 +132080,7 @@ in
sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-8.0.1"
sources."vscode-languageserver-protocol-3.17.1"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-5.0.1"
sources."vscode-uri-3.0.3"
@@ -131635,7 +132199,7 @@ in
sources."domelementtype-2.3.0"
sources."domhandler-5.0.3"
sources."domutils-3.0.1"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."enhanced-resolve-5.9.3"
@@ -132209,7 +132773,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -133074,7 +133638,7 @@ in
sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-5.3.0-next.10"
sources."vscode-languageserver-protocol-3.17.1"
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-5.0.1"
sources."vscode-textbuffer-1.0.0"
@@ -133170,7 +133734,7 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-js-pure-3.22.7"
+ sources."core-js-pure-3.22.8"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
dependencies = [
@@ -133368,7 +133932,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/yauzl-2.9.2"
sources."acorn-8.7.1"
sources."acorn-jsx-5.3.2"
@@ -133902,7 +134466,7 @@ in
sources."@types/eslint-scope-3.7.3"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -133929,7 +134493,7 @@ in
sources."caniuse-lite-1.0.30001344"
sources."chrome-trace-event-1.0.3"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.4.142"
+ sources."electron-to-chromium-1.4.143"
sources."enhanced-resolve-5.9.3"
sources."es-module-lexer-0.9.3"
sources."escalade-3.1.1"
@@ -134053,10 +134617,10 @@ in
webpack-dev-server = nodeEnv.buildNodePackage {
name = "webpack-dev-server";
packageName = "webpack-dev-server";
- version = "4.9.0";
+ version = "4.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.0.tgz";
- sha512 = "+Nlb39iQSOSsFv0lWUuUTim3jDQO8nhK3E68f//J2r5rIcp4lULHXz2oZ0UVdEeWXEh5lSzYUlzarZhDAeAVQw==";
+ url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.1.tgz";
+ sha512 = "CTMfu2UMdR/4OOZVHRpdy84pNopOuigVIsRbGX3LVDMWNP8EUgC5mUBMErbwBlHTEX99ejZJpVqrir6EXAEajA==";
};
dependencies = [
sources."@leichtgewicht/ip-codec-2.0.4"
@@ -134069,7 +134633,7 @@ in
sources."@types/http-proxy-1.17.9"
sources."@types/json-schema-7.0.11"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/retry-0.12.0"
@@ -134381,7 +134945,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@webtorrent/http-node-1.3.0"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
@@ -134413,7 +134977,7 @@ in
sources."ms-2.1.2"
];
})
- (sources."bittorrent-tracker-9.18.6" // {
+ (sources."bittorrent-tracker-9.19.0" // {
dependencies = [
sources."debug-4.3.4"
sources."decompress-response-6.0.0"
@@ -134776,7 +135340,7 @@ in
sources."vscode-languageserver-types-3.16.0"
];
})
- sources."vscode-languageserver-textdocument-1.0.4"
+ sources."vscode-languageserver-textdocument-1.0.5"
sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-5.0.1"
sources."vscode-uri-3.0.3"
@@ -135045,7 +135609,7 @@ in
sources."config-chain-1.1.13"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.22.7"
+ sources."core-js-3.22.8"
sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -135618,7 +136182,7 @@ in
sources."slash-3.0.0"
sources."smart-buffer-4.2.0"
sources."socks-2.6.2"
- (sources."socks-proxy-agent-6.2.0" // {
+ (sources."socks-proxy-agent-6.2.1" // {
dependencies = [
sources."debug-4.3.4"
sources."ms-2.1.2"
@@ -135893,7 +136457,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/fs-extra-9.0.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.36"
+ sources."@types/node-17.0.38"
sources."@types/which-2.0.1"
sources."braces-3.0.2"
sources."chalk-5.0.1"
diff --git a/pkgs/development/python-modules/aplpy/default.nix b/pkgs/development/python-modules/aplpy/default.nix
index 7461c502a31d..47a1de3c0d8d 100644
--- a/pkgs/development/python-modules/aplpy/default.nix
+++ b/pkgs/development/python-modules/aplpy/default.nix
@@ -1,20 +1,21 @@
{ lib
-, buildPythonPackage
-, fetchPypi
-, fetchpatch
-, numpy
, astropy
, astropy-helpers
+, buildPythonPackage
+, cython
+, fetchpatch
+, fetchPypi
, matplotlib
-, reproject
+, numpy
+, pillow
, pyavm
, pyregion
-, pillow
-, scikitimage
-, cython
-, shapely
-, pytest
, pytest-astropy
+, pytestCheckHook
+, pythonOlder
+, reproject
+, scikitimage
+, shapely
}:
buildPythonPackage rec {
@@ -22,36 +23,48 @@ buildPythonPackage rec {
version = "2.1.0";
format = "pyproject";
+ disabled = pythonOlder "3.6";
+
src = fetchPypi {
pname = "aplpy";
inherit version;
- sha256 = "sha256-KCdmBwQWt7IfHsjq7pWlbSISEpfQZDyt+SQSTDaUCV4=";
+ hash = "sha256-KCdmBwQWt7IfHsjq7pWlbSISEpfQZDyt+SQSTDaUCV4=";
};
+ nativeBuildInputs = [
+ astropy-helpers
+ ];
+
propagatedBuildInputs = [
- numpy
- cython
astropy
+ cython
matplotlib
- reproject
+ numpy
+ pillow
pyavm
pyregion
- pillow
+ reproject
scikitimage
shapely
];
- nativeBuildInputs = [ astropy-helpers ];
- checkInputs = [ pytest pytest-astropy ];
+ checkInputs = [
+ pytest-astropy
+ pytestCheckHook
+ ];
- checkPhase = ''
- OPENMP_EXPECTED=0 pytest aplpy
+ preCheck = ''
+ OPENMP_EXPECTED=0
'';
+ pythonImportsCheck = [
+ "aplpy"
+ ];
+
meta = with lib; {
description = "The Astronomical Plotting Library in Python";
homepage = "http://aplpy.github.io";
license = licenses.mit;
- maintainers = [ maintainers.smaret ];
+ maintainers = with maintainers; [ smaret ];
};
}
diff --git a/pkgs/development/python-modules/async-upnp-client/default.nix b/pkgs/development/python-modules/async-upnp-client/default.nix
index c80c2646b7d4..277eb3513cd0 100644
--- a/pkgs/development/python-modules/async-upnp-client/default.nix
+++ b/pkgs/development/python-modules/async-upnp-client/default.nix
@@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "async-upnp-client";
- version = "0.29.0";
+ version = "0.31.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
- sha256 = "sha256-IzT48ABfk/v8VZJRJEMU/Rsi6mJG4IvtF7HNRv6TLeA=";
+ sha256 = "sha256-jxipSHSsipnKJF+d7tez9M6bBlwV4r8XGQ2elI0jsVc=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/bimmer-connected/default.nix b/pkgs/development/python-modules/bimmer-connected/default.nix
index 3e8ba28c717e..377ec000471b 100644
--- a/pkgs/development/python-modules/bimmer-connected/default.nix
+++ b/pkgs/development/python-modules/bimmer-connected/default.nix
@@ -3,17 +3,17 @@
, pythonOlder
, fetchFromGitHub
, pbr
-, requests
+, httpx
, pycryptodome
, pyjwt
, pytestCheckHook
-, requests-mock
+, respx
, time-machine
}:
buildPythonPackage rec {
pname = "bimmer-connected";
- version = "0.8.12";
+ version = "0.9.3";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
owner = "bimmerconnected";
repo = "bimmer_connected";
rev = version;
- hash = "sha256-0yXEm8cjzw1ClSP8a5TB9RrugzgHSu40tTtyNQU4dfY=";
+ hash = "sha256-ylhvUX5af248KIT54SIe26WP8tysqjZd2y/+Fi+VqHM=";
};
nativeBuildInputs = [
@@ -32,14 +32,14 @@ buildPythonPackage rec {
PBR_VERSION = version;
propagatedBuildInputs = [
- requests
+ httpx
pycryptodome
pyjwt
];
checkInputs = [
pytestCheckHook
- requests-mock
+ respx
time-machine
];
diff --git a/pkgs/development/python-modules/bond-async/default.nix b/pkgs/development/python-modules/bond-async/default.nix
new file mode 100644
index 000000000000..25430498e2dd
--- /dev/null
+++ b/pkgs/development/python-modules/bond-async/default.nix
@@ -0,0 +1,46 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, aiohttp
+, aioresponses
+, pytest-asyncio
+, pytestCheckHook
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "bond-async";
+ version = "0.1.20";
+
+ disabled = pythonOlder "3.7";
+
+ format = "setuptools";
+
+ src = fetchFromGitHub {
+ owner = "bondhome";
+ repo = "bond-async";
+ rev = "v${version}";
+ hash = "sha256-iBtbHS3VzSB6wfWDFq5UVd3++x3HtQbWQ6soPYfcHiM=";
+ };
+
+ propagatedBuildInputs = [
+ aiohttp
+ ];
+
+ checkInputs = [
+ aioresponses
+ pytest-asyncio
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [
+ "bond_async"
+ ];
+
+ meta = {
+ description = "Asynchronous Python wrapper library over Bond Local API";
+ homepage = "https://github.com/bondhome/bond-async";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/bracex/default.nix b/pkgs/development/python-modules/bracex/default.nix
index 176385bceca3..d5f080d8d4f6 100644
--- a/pkgs/development/python-modules/bracex/default.nix
+++ b/pkgs/development/python-modules/bracex/default.nix
@@ -1,14 +1,26 @@
-{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, hatchling
+, pytestCheckHook
+, pythonOlder
+}:
buildPythonPackage rec {
pname = "bracex";
- version = "2.2.1";
+ version = "2.3.post1";
+ format = "pyproject";
+ disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "1c8d1296e00ad9a91030ccb4c291f9e4dc7c054f12c707ba3c5ff3e9a81bcd21";
+ sha256 = "sha256-57I/yLLNBtPewGkrqr7LJJ3alOBqYXkB/wOmxW/XFpM=";
};
+ nativeBuildInputs = [
+ hatchling
+ ];
+
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bracex" ];
diff --git a/pkgs/development/python-modules/dask-image/default.nix b/pkgs/development/python-modules/dask-image/default.nix
index a81aee5d5986..1d2189f8a739 100644
--- a/pkgs/development/python-modules/dask-image/default.nix
+++ b/pkgs/development/python-modules/dask-image/default.nix
@@ -1,41 +1,54 @@
-{ stdenv
-, lib
+{ lib
+, stdenv
, buildPythonPackage
-, fetchPypi
, dask
-, scipy
+, fetchPypi
+, numpy
, pims
-, scikitimage
, pytestCheckHook
+, pythonOlder
+, scikitimage
+, scipy
}:
buildPythonPackage rec {
- version = "2021.12.0";
pname = "dask-image";
+ version = "2021.12.0";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "35be49626bd01c3e3892128126a27d5ee3266a198a8e3c7e30d59eaef712fcf9";
+ hash = "sha256-Nb5JYmvQHD44khKBJqJ9XuMmahmKjjx+MNWervcS/Pk=";
};
- propagatedBuildInputs = [ dask scipy pims ];
-
- prePatch = ''
- substituteInPlace setup.cfg --replace "--flake8" ""
- '';
+ propagatedBuildInputs = [
+ dask
+ numpy
+ scipy
+ pims
+ ];
checkInputs = [
pytestCheckHook
scikitimage
];
- pythonImportsCheck = [ "dask_image" ];
+ postPatch = ''
+ substituteInPlace setup.cfg \
+ --replace "--flake8" ""
+ '';
+
+ pythonImportsCheck = [
+ "dask_image"
+ ];
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
- homepage = "https://github.com/dask/dask-image";
description = "Distributed image processing";
+ homepage = "https://github.com/dask/dask-image";
license = licenses.bsdOriginal;
- maintainers = [ maintainers.costrouc ];
+ maintainers = with maintainers; [ costrouc ];
};
}
diff --git a/pkgs/development/python-modules/db-dtypes/default.nix b/pkgs/development/python-modules/db-dtypes/default.nix
index 636882e4edff..31c867a2d6ca 100644
--- a/pkgs/development/python-modules/db-dtypes/default.nix
+++ b/pkgs/development/python-modules/db-dtypes/default.nix
@@ -1,6 +1,5 @@
{ lib
, buildPythonPackage
-, fetchpatch
, fetchFromGitHub
, numpy
, packaging
@@ -11,22 +10,15 @@
buildPythonPackage rec {
pname = "db-dtypes";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-db-dtypes-pandas";
rev = "v${version}";
- hash = "sha256-7u/E0ICiz7LQfuplm/mkGlWrgGEPqeMwM3CUhfH6868=";
+ hash = "sha256-T/cyJ0PY5p/y8CKrmeAa9nvnuRs4hd2UKiYiMHLaa7A=";
};
- patches = [
- (fetchpatch {
- url = "https://github.com/googleapis/python-db-dtypes-pandas/commit/fb30adfd427d3df9919df00b096210ba1eb1b91d.patch";
- sha256 = "sha256-39kZtYGbn3U1WXiDTczki5EM6SjUlSRXz8UMcdTU20g=";
- })
- ];
-
propagatedBuildInputs = [
numpy
packaging
diff --git a/pkgs/development/python-modules/django/4.nix b/pkgs/development/python-modules/django/4.nix
index 924ece59feab..8dc627b68790 100644
--- a/pkgs/development/python-modules/django/4.nix
+++ b/pkgs/development/python-modules/django/4.nix
@@ -39,14 +39,14 @@
buildPythonPackage rec {
pname = "Django";
- version = "4.0.4";
+ version = "4.0.5";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
- hash = "sha256-ToF3hYUkQXVjzAQw8p6iSZRtgx6ssAaKFFVoZYffQLU=";
+ hash = "sha256-90MaXecneWbzeFVXw5KEMzR9mYweZFkyRQE3iikeWqs=";
};
patches = lib.optional withGdal
diff --git a/pkgs/development/python-modules/dsmr-parser/default.nix b/pkgs/development/python-modules/dsmr-parser/default.nix
index e8a94fb5e859..c91677710817 100644
--- a/pkgs/development/python-modules/dsmr-parser/default.nix
+++ b/pkgs/development/python-modules/dsmr-parser/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "dsmr-parser";
- version = "0.32";
+ version = "0.33";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "ndokter";
repo = "dsmr_parser";
rev = "v${version}";
- sha256 = "0hi69gdcmsp5yaspsfbpc3x76iybg20cylxyaxm131fpd5wwan9l";
+ sha256 = "sha256-Phx8Yqx6beTzkQv0fU8Pfs2btPgKVARdO+nMcne1S+w=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/flask-restful/default.nix b/pkgs/development/python-modules/flask-restful/default.nix
index cefedfe7fc37..9770d2d2b4fa 100644
--- a/pkgs/development/python-modules/flask-restful/default.nix
+++ b/pkgs/development/python-modules/flask-restful/default.nix
@@ -26,7 +26,7 @@ buildPythonPackage rec {
hash = "sha256-zOxlC4NdSBkhOMhTKa4Dc15s7VjpstnCFG1shMBvpT4=";
};
- patches = lib.optionals (lib.versionAtLeast werkzeug.version "2.1.0") [
+ patches = [
./werkzeug-2.1.0-compat.patch
];
diff --git a/pkgs/development/python-modules/google-api-core/default.nix b/pkgs/development/python-modules/google-api-core/default.nix
index b5a9bfea212f..6fc435be4992 100644
--- a/pkgs/development/python-modules/google-api-core/default.nix
+++ b/pkgs/development/python-modules/google-api-core/default.nix
@@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "google-api-core";
- version = "2.7.1";
+ version = "2.8.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-sPpXflEvDI4GM4a5dHGLhhRYanmMWJTtNL7fJW2driQ=";
+ sha256 = "sha256-lYAkxqo0YLCPNXQSMQdqTdmkyBmmo51E2pYn/r6LKPA=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-cloud-iot/default.nix b/pkgs/development/python-modules/google-cloud-iot/default.nix
index 24afcea7a73d..d00d05f5431e 100644
--- a/pkgs/development/python-modules/google-cloud-iot/default.nix
+++ b/pkgs/development/python-modules/google-cloud-iot/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "google-cloud-iot";
- version = "2.4.1";
+ version = "2.5.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-AjGoEAAI8aTACtcZp7zT5n9y6WCMc4GOfgUusUVXAVk=";
+ sha256 = "sha256-bZ2Zn4r+hQ2MfkgXmJPYWbKy3tYlTkYh6ohmWQA/75U=";
};
propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
diff --git a/pkgs/development/python-modules/google-cloud-resource-manager/default.nix b/pkgs/development/python-modules/google-cloud-resource-manager/default.nix
index da5d110225e8..1da9972e77fc 100644
--- a/pkgs/development/python-modules/google-cloud-resource-manager/default.nix
+++ b/pkgs/development/python-modules/google-cloud-resource-manager/default.nix
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "google-cloud-resource-manager";
- version = "1.4.1";
+ version = "1.5.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- hash = "sha256-NUqFkvIwfaqz3MZEUoLqO7hFCVwV5124+lA8LGzccl0=";
+ hash = "sha256-U5OoT8Usm2XGB6ya14vzLnI2yO44tvtKSDP0D5xRM4I=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-cloud-securitycenter/default.nix b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix
index 056c57ecd541..1df89058a6f5 100644
--- a/pkgs/development/python-modules/google-cloud-securitycenter/default.nix
+++ b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "google-cloud-securitycenter";
- version = "1.10.0";
+ version = "1.11.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- hash = "sha256-VaU6DRkq1pOESSOSynRRjaljp68C1X2H8anjHeHorbI=";
+ hash = "sha256-+etRN3Q7Y1oYtQy0Fkoj6ujhx4gD5y+fUriu/eitIQM=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-cloud-spanner/default.nix b/pkgs/development/python-modules/google-cloud-spanner/default.nix
index d78766907191..c8450bd1ea67 100644
--- a/pkgs/development/python-modules/google-cloud-spanner/default.nix
+++ b/pkgs/development/python-modules/google-cloud-spanner/default.nix
@@ -14,11 +14,11 @@
buildPythonPackage rec {
pname = "google-cloud-spanner";
- version = "3.13.0";
+ version = "3.14.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-Y+MA7Nlx3+8eaBptI6eZgSPGc4MvxSrA9YA+K+VSblw=";
+ sha256 = "sha256-QOUMedRvbEEDwr1RIsS8tEdvk++OmPBXC4Q5XLzWASs=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-cloud-tasks/default.nix b/pkgs/development/python-modules/google-cloud-tasks/default.nix
index 881f00ead548..6bc9353262fa 100644
--- a/pkgs/development/python-modules/google-cloud-tasks/default.nix
+++ b/pkgs/development/python-modules/google-cloud-tasks/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "google-cloud-tasks";
- version = "2.8.1";
+ version = "2.9.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-VfRDZRgwq1pOwjzmq6mdbVqcT6wQdD6qOMivQn4Ua10=";
+ sha256 = "sha256-MjXGDlqRDFn2whxnEm1lf0G+vU9U/S3BmNvi47aEJro=";
};
propagatedBuildInputs = [ google-api-core grpc-google-iam-v1 libcst proto-plus ];
diff --git a/pkgs/development/python-modules/googleapis-common-protos/default.nix b/pkgs/development/python-modules/googleapis-common-protos/default.nix
index 66a3fe507858..2cb706bc02dd 100644
--- a/pkgs/development/python-modules/googleapis-common-protos/default.nix
+++ b/pkgs/development/python-modules/googleapis-common-protos/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "googleapis-common-protos";
- version = "1.56.0";
+ version = "1.56.2";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-QAdQB5W8/CadJ58PfSU64Y1twf9dWnNhP/5FIDix7F8=";
+ sha256 = "sha256-sJtW9UYwcMIVN1PvEj8H0uSSNeiRSOmyRZ7I7S9o19M=";
};
propagatedBuildInputs = [ grpc protobuf ];
diff --git a/pkgs/development/python-modules/grpc-google-iam-v1/default.nix b/pkgs/development/python-modules/grpc-google-iam-v1/default.nix
index 1be825227e8d..eb47b502d82a 100644
--- a/pkgs/development/python-modules/grpc-google-iam-v1/default.nix
+++ b/pkgs/development/python-modules/grpc-google-iam-v1/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "grpc-google-iam-v1";
- version = "0.12.3";
+ version = "0.12.4";
src = fetchPypi {
inherit pname version;
- sha256 = "0bfb5b56f648f457021a91c0df0db4934b6e0c300bd0f2de2333383fe958aa72";
+ sha256 = "sha256-PwrCyUC5qFXXzn4x/eKL3bDZrDYtMtB8ZxSDBpMaDjA=";
};
propagatedBuildInputs = [ grpcio googleapis-common-protos ];
diff --git a/pkgs/development/python-modules/omnikinverter/default.nix b/pkgs/development/python-modules/omnikinverter/default.nix
index a992f14616a3..914267ea86f7 100644
--- a/pkgs/development/python-modules/omnikinverter/default.nix
+++ b/pkgs/development/python-modules/omnikinverter/default.nix
@@ -1,6 +1,7 @@
{ lib
, aiohttp
, aresponses
+, asynctest
, buildPythonPackage
, fetchFromGitHub
, poetry-core
@@ -12,7 +13,7 @@
buildPythonPackage rec {
pname = "omnikinverter";
- version = "0.7.0";
+ version = "0.8.1";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -21,7 +22,7 @@ buildPythonPackage rec {
owner = "klaasnicolaas";
repo = "python-omnikinverter";
rev = "v${version}";
- sha256 = "sha256-IiU7nhwH0Mc6s+g9WtJugpORuL0qGNJFKDY5hvxIZAU=";
+ hash = "sha256-OQWk+ae+hSLLdH0uLVPauoNeQpXgxkvflXFyaiFe108=";
};
nativeBuildInputs = [
@@ -35,6 +36,7 @@ buildPythonPackage rec {
checkInputs = [
aresponses
+ asynctest
pytest-asyncio
pytestCheckHook
];
diff --git a/pkgs/development/python-modules/plexapi/default.nix b/pkgs/development/python-modules/plexapi/default.nix
index 29532a23b0c4..fcbb4925fc80 100644
--- a/pkgs/development/python-modules/plexapi/default.nix
+++ b/pkgs/development/python-modules/plexapi/default.nix
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "plexapi";
- version = "4.10.1";
+ version = "4.11.2";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "pkkid";
repo = "python-plexapi";
rev = version;
- sha256 = "sha256-0j3uf3wSDFSyDGo3oRi99KNKfhuGP2puSi0KgVjsXnQ=";
+ sha256 = "sha256-N4ic1DDMAHnHYYoD59ZHFqlgLlvFZV8Nn7V47NDXE5U=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pyialarmxr/default.nix b/pkgs/development/python-modules/pyialarmxr/default.nix
new file mode 100644
index 000000000000..0110411a193d
--- /dev/null
+++ b/pkgs/development/python-modules/pyialarmxr/default.nix
@@ -0,0 +1,40 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, lxml
+, pythonOlder
+, xmltodict
+}:
+
+buildPythonPackage rec {
+ pname = "pyialarmxr";
+ version = "1.0.18";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "bigmoby";
+ repo = pname;
+ rev = version;
+ hash = "sha256-Q1NsPLA1W4nxSG/9jlMf6BkC3ZrUrhl8oDX7U4aAjxM=";
+ };
+ propagatedBuildInputs = [
+ lxml
+ xmltodict
+ ];
+
+ # Module has no test
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "pyialarmxr"
+ ];
+
+ meta = with lib; {
+ description = "Library to interface with Antifurto365 iAlarmXR systems";
+ homepage = "https://github.com/bigmoby/pyialarmxr";
+ license = licenses.mit;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/python-homewizard-energy/default.nix b/pkgs/development/python-modules/python-homewizard-energy/default.nix
new file mode 100644
index 000000000000..9a13960090af
--- /dev/null
+++ b/pkgs/development/python-modules/python-homewizard-energy/default.nix
@@ -0,0 +1,51 @@
+{ lib
+, aiohttp
+, aresponses
+, buildPythonPackage
+, fetchFromGitHub
+, poetry-core
+, protobuf
+, pytest-asyncio
+, pytestCheckHook
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "python-homewizard-energy";
+ version = "1.0.3";
+ format = "pyproject";
+
+ disabled = pythonOlder "3.9";
+
+ src = fetchFromGitHub {
+ owner = "DCSBL";
+ repo = pname;
+ rev = "v${version}";
+ hash = "sha256-ioISqRFZZCojTJ/KYS8QUtoEpBNOPqY9lC9NFbZyh5A=";
+ };
+
+ nativeBuildInputs = [
+ poetry-core
+ ];
+
+ propagatedBuildInputs = [
+ aiohttp
+ ];
+
+ checkInputs = [
+ aresponses
+ pytest-asyncio
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [
+ "homewizard_energy"
+ ];
+
+ meta = with lib; {
+ description = "Library to communicate with HomeWizard Energy devices";
+ homepage = "https://github.com/DCSBL/python-homewizard-energy";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/pyws66i/default.nix b/pkgs/development/python-modules/pyws66i/default.nix
new file mode 100644
index 000000000000..41b56150d0ef
--- /dev/null
+++ b/pkgs/development/python-modules/pyws66i/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pytestCheckHook
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "pyws66i";
+ version = "1.1";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "ssaenger";
+ repo = pname;
+ rev = "v${version}";
+ hash = "sha256-NTL2+xLqSNsz4YdUTwr0nFjhm1NNgB8qDnWSoE2sizY=";
+ };
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [
+ "pyws66i"
+ ];
+
+ meta = with lib; {
+ description = "Library to interface with WS66i 6-zone amplifier";
+ homepage = "https://github.com/bigmoby/pyialarmxr";
+ license = licenses.mit;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/types-cryptography/default.nix b/pkgs/development/python-modules/types-cryptography/default.nix
deleted file mode 100644
index 374780d51517..000000000000
--- a/pkgs/development/python-modules/types-cryptography/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, types-enum34
-, types-ipaddress
-}:
-
-buildPythonPackage rec {
- pname = "types-cryptography";
- version = "3.3.21";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "sha256-rRucYxWcAJ+GdsfkGk1ZXfuW6MA6/6Lmk+FheQi7QJ4=";
- };
-
- pythonImportsCheck = [
- "cryptography-stubs"
- ];
-
- propagatedBuildInputs = [ types-enum34 types-ipaddress ];
-
- meta = with lib; {
- description = "Typing stubs for cryptography";
- homepage = "https://github.com/python/typeshed";
- license = licenses.asl20;
- maintainers = with maintainers; [ jpetrucciani ];
- };
-}
diff --git a/pkgs/development/python-modules/types-paramiko/default.nix b/pkgs/development/python-modules/types-paramiko/default.nix
deleted file mode 100644
index 154bfb514adf..000000000000
--- a/pkgs/development/python-modules/types-paramiko/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, types-cryptography
-}:
-
-buildPythonPackage rec {
- pname = "types-paramiko";
- version = "2.10.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "sha256-q2iT1fzl7QaWTWGTntanFoqxSVKUWpCZWmKKXoKl4WE=";
- };
-
- pythonImportsCheck = [
- "paramiko-stubs"
- ];
-
- propagatedBuildInputs = [ types-cryptography ];
-
- meta = with lib; {
- description = "Typing stubs for paramiko";
- homepage = "https://github.com/python/typeshed";
- license = licenses.asl20;
- maintainers = with maintainers; [ jpetrucciani ];
- };
-}
diff --git a/pkgs/development/python-modules/webtest/default.nix b/pkgs/development/python-modules/webtest/default.nix
index 8ec42598ee61..50e7a1c73e61 100644
--- a/pkgs/development/python-modules/webtest/default.nix
+++ b/pkgs/development/python-modules/webtest/default.nix
@@ -1,55 +1,54 @@
{ lib
+, beautifulsoup4
, buildPythonPackage
, fetchPypi
-, isPy27
-, webob
-, six
-, beautifulsoup4
-, waitress
-, pyquery
-, wsgiproxy2
, pastedeploy
+, pyquery
, pytestCheckHook
+, pythonOlder
+, six
+, waitress
+, webob
+, wsgiproxy2
}:
buildPythonPackage rec {
- version = "3.0.0";
pname = "webtest";
- disabled = isPy27; # paste.deploy is not longer a valid import
+ version = "3.0.0";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "WebTest";
inherit version;
- sha256 = "54bd969725838d9861a9fa27f8d971f79d275d94ae255f5c501f53bb6d9929eb";
+ hash = "sha256-VL2WlyWDjZhhqfon+Nlx950nXZSuJV9cUB9Tu22ZKes=";
};
- postPatch = ''
- substituteInPlace setup.py --replace "nose<1.3.0" "nose"
- '';
-
propagatedBuildInputs = [
- webob
- six
beautifulsoup4
+ six
waitress
+ webob
];
checkInputs = [
- pytestCheckHook
pastedeploy
- wsgiproxy2
pyquery
+ pytestCheckHook
+ wsgiproxy2
];
- # Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
- pythonImportsCheck = [ "webtest" ];
+ pythonImportsCheck = [
+ "webtest"
+ ];
meta = with lib; {
description = "Helper to test WSGI applications";
- homepage = "https://webtest.readthedocs.org/en/latest/";
+ homepage = "https://webtest.readthedocs.org/";
license = licenses.mit;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ fab ];
};
}
diff --git a/pkgs/development/python-modules/wsgiproxy2/default.nix b/pkgs/development/python-modules/wsgiproxy2/default.nix
index 2a9856cdd086..0f50c6474c59 100644
--- a/pkgs/development/python-modules/wsgiproxy2/default.nix
+++ b/pkgs/development/python-modules/wsgiproxy2/default.nix
@@ -1,30 +1,39 @@
{ lib
, buildPythonPackage
-, fetchPypi
-, six
+, fetchFromGitHub
, webob
+, pythonOlder
}:
buildPythonPackage rec {
- pname = "WSGIProxy2";
- version = "0.4.2";
+ pname = "wsgiproxy2";
+ version = "0.5.1";
+ format = "setuptools";
- src = fetchPypi {
- inherit pname version;
- extension = "zip";
- sha256 = "13kf9bdxrc95y9vriaz0viry3ah11nz4rlrykcfvb8nlqpx3dcm4";
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "gawel";
+ repo = "WSGIProxy2";
+ rev = version;
+ hash = "sha256-ouofw3cBQzBwSh3Pdtdl7KI2pg/T/z3qoh8zoeiKiSs=";
};
- propagatedBuildInputs = [ six webob ];
+ propagatedBuildInputs = [
+ webob
+ ];
- # circular dep on webtest
+ # Circular dependency on webtest
doCheck = false;
+ pythonImportsCheck = [
+ "wsgiproxy"
+ ];
+
meta = with lib; {
- homepage = "http://pythonpaste.org/wsgiproxy/";
description = "HTTP proxying tools for WSGI apps";
+ homepage = "https://wsgiproxy2.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ domenkozar ];
};
-
}
diff --git a/pkgs/development/python-modules/yolink-api/default.nix b/pkgs/development/python-modules/yolink-api/default.nix
new file mode 100644
index 000000000000..4629cdba7814
--- /dev/null
+++ b/pkgs/development/python-modules/yolink-api/default.nix
@@ -0,0 +1,43 @@
+{ lib
+, aiohttp
+, buildPythonPackage
+, fetchFromGitHub
+, paho-mqtt
+, pydantic
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "yolink-api";
+ version = "0.0.5";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "YoSmart-Inc";
+ repo = pname;
+ rev = "v${version}";
+ hash = "sha256-LCdPg+T6GMcE8NF32caWgC5lnaN7KOj2gZA/JHPcZKI=";
+ };
+
+ propagatedBuildInputs = [
+ aiohttp
+ paho-mqtt
+ pydantic
+ ];
+
+ # Module has no tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "yolink"
+ ];
+
+ meta = with lib; {
+ description = "Library to interface with Yolink";
+ homepage = "https://github.com/YoSmart-Inc/yolink-api";
+ license = licenses.mit;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/zwave-js-server-python/default.nix b/pkgs/development/python-modules/zwave-js-server-python/default.nix
index 197b677e741b..cf155c3ea861 100644
--- a/pkgs/development/python-modules/zwave-js-server-python/default.nix
+++ b/pkgs/development/python-modules/zwave-js-server-python/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "zwave-js-server-python";
- version = "0.37.0";
+ version = "0.37.1";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "home-assistant-libs";
repo = pname;
rev = version;
- hash = "sha256-321voxogSkeHMsMdLnrjwG3vQOgGDcMjDen0EUKYE1U=";
+ hash = "sha256-ciIodpa1ekOqC6wa4r3qxJKW1gzTdoRqeLLaTW/yJQs=";
};
propagatedBuildInputs = [
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 1bbdd998eb39..20d35601c99d 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -2,7 +2,7 @@
# Do not edit!
{
- version = "2022.5.5";
+ version = "2022.6.0";
components = {
"abode" = ps: with ps; [
abodepy
@@ -140,6 +140,9 @@
pyatv
zeroconf
];
+ "application_credentials" = ps: with ps; [
+ aiohttp-cors
+ ];
"apprise" = ps: with ps; [
apprise
];
@@ -236,6 +239,8 @@
aiohttp-cors
securetar
];
+ "baf" = ps: with ps; [
+ ]; # missing inputs: aiobafi6
"baidu" = ps: with ps; [
]; # missing inputs: baidu-aip
"balboa" = ps: with ps; [
@@ -288,7 +293,7 @@
bimmer-connected
];
"bond" = ps: with ps; [
- bond-api
+ bond-async
];
"bosch_shc" = ps: with ps; [
aiohttp-cors
@@ -952,6 +957,10 @@
"geo_rss_events" = ps: with ps; [
georss-generic-client
];
+ "geocaching" = ps: with ps; [
+ aiohttp-cors
+ geocachingapi
+ ];
"geofency" = ps: with ps; [
aiohttp-cors
];
@@ -1049,6 +1058,16 @@
"hangouts" = ps: with ps; [
hangups
];
+ "hardkernel" = ps: with ps; [
+ aiohttp-cors
+ fnvhash
+ home-assistant-frontend
+ lru-dict
+ pillow
+ sqlalchemy
+ ];
+ "hardware" = ps: with ps; [
+ ];
"harman_kardon_avr" = ps: with ps; [
hkavr
];
@@ -1139,7 +1158,7 @@
homematicip
];
"homewizard" = ps: with ps; [
- aiohwenergy
+ python-homewizard-energy
];
"homeworks" = ps: with ps; [
pyhomeworks
@@ -1187,6 +1206,9 @@
"ialarm" = ps: with ps; [
pyialarm
];
+ "ialarm_xr" = ps: with ps; [
+ pyialarmxr
+ ];
"iammeter" = ps: with ps; [
]; # missing inputs: iammeter
"iaqualink" = ps: with ps; [
@@ -1379,6 +1401,9 @@
"launch_library" = ps: with ps; [
pylaunches
];
+ "laundrify" = ps: with ps; [
+ laundrify-aio
+ ];
"lcn" = ps: with ps; [
pypck
];
@@ -1863,7 +1888,6 @@
ondilo
];
"onewire" = ps: with ps; [
- pi1wire
pyownet
];
"onkyo" = ps: with ps; [
@@ -2138,13 +2162,21 @@
];
"rainforest_eagle" = ps: with ps; [
aioeagle
- ueagle
+ eagle100
];
"rainmachine" = ps: with ps; [
regenmaschine
];
"random" = ps: with ps; [
];
+ "raspberry_pi" = ps: with ps; [
+ aiohttp-cors
+ fnvhash
+ home-assistant-frontend
+ lru-dict
+ pillow
+ sqlalchemy
+ ];
"raspyrfm" = ps: with ps; [
]; # missing inputs: raspyrfm-client
"rdw" = ps: with ps; [
@@ -2227,8 +2259,6 @@
];
"rpi_camera" = ps: with ps; [
];
- "rpi_gpio" = ps: with ps; [
- ]; # missing inputs: RPi.GPIO
"rpi_power" = ps: with ps; [
rpi-bad-power
];
@@ -2287,6 +2317,7 @@
"scrape" = ps: with ps; [
beautifulsoup4
jsonpath
+ lxml
xmltodict
];
"screenlogic" = ps: with ps; [
@@ -3035,6 +3066,9 @@
];
"worxlandroid" = ps: with ps; [
];
+ "ws66i" = ps: with ps; [
+ pyws66i
+ ];
"wsdot" = ps: with ps; [
];
"x10" = ps: with ps; [
@@ -3103,6 +3137,10 @@
aioftp
ha-ffmpeg
];
+ "yolink" = ps: with ps; [
+ aiohttp-cors
+ yolink-api
+ ];
"youless" = ps: with ps; [
youless-api
];
@@ -3182,6 +3220,7 @@
"airtouch4"
"airvisual"
"airzone"
+ "aladdin_connect"
"alarm_control_panel"
"alarmdecoder"
"alert"
@@ -3196,6 +3235,7 @@
"apache_kafka"
"api"
"apple_tv"
+ "application_credentials"
"apprise"
"aprs"
"arcam_fmj"
@@ -3353,6 +3393,7 @@
"geo_json_events"
"geo_location"
"geo_rss_events"
+ "geocaching"
"geofency"
"geonetnz_quakes"
"geonetnz_volcano"
@@ -3378,6 +3419,8 @@
"guardian"
"habitica"
"hangouts"
+ "hardkernel"
+ "hardware"
"harmony"
"hassio"
"hddtemp"
@@ -3407,6 +3450,7 @@
"hvv_departures"
"hyperion"
"ialarm"
+ "ialarm_xr"
"iaqualink"
"icloud"
"ifttt"
@@ -3447,6 +3491,7 @@
"kulersky"
"lastfm"
"launch_library"
+ "laundrify"
"lcn"
"light"
"litterrobot"
@@ -3586,6 +3631,7 @@
"rainforest_eagle"
"rainmachine"
"random"
+ "raspberry_pi"
"rdw"
"recollect_waste"
"recorder"
@@ -3778,6 +3824,7 @@
"wled"
"workday"
"worldclock"
+ "ws66i"
"wsdot"
"xbox"
"xiaomi"
@@ -3789,6 +3836,7 @@
"yandex_transport"
"yandextts"
"yeelight"
+ "yolink"
"youless"
"zeroconf"
"zerproc"
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 4353f4960461..01930a169af1 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -72,19 +72,6 @@ let
});
})
- (self: super: {
- huawei-lte-api = super.huawei-lte-api.overridePythonAttrs (oldAttrs: rec {
- version = "1.4.18";
- src = fetchFromGitHub {
- owner = "Salamek";
- repo = "huawei-lte-api";
- rev = version;
- sha256 = "1qaqxmh03j10wa9wqbwgc5r3ays8wfr7bldvsm45fycr3qfyn5fg";
- };
- propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ python3.pkgs.dicttoxml ];
- });
- })
-
# Pinned due to API changes in pyruckus>0.12
(self: super: {
pyruckus = super.pyruckus.overridePythonAttrs (oldAttrs: rec {
@@ -179,7 +166,7 @@ let
extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs);
# Don't forget to run parse-requirements.py after updating
- hassVersion = "2022.5.5";
+ hassVersion = "2022.6.0";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@@ -197,7 +184,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
- hash = "sha256-uVB3Yg3f0fNkq2rav7hmbJ9IAMg0UIrdMshJVgOharA=";
+ hash = "sha256-8s6CyTNA61UgrflpQ/RZnAPa/xI4VFdEQJnN25k3vuc=";
};
# leave this in, so users don't have to constantly update their downstream patch handling
@@ -210,24 +197,18 @@ in python.pkgs.buildPythonApplication rec {
postPatch = let
relaxedConstraints = [
- "aiohttp"
- "async_timeout"
"attrs"
"awesomeversion"
"bcrypt"
- "cryptography"
"httpx"
- "jinja2"
- "pip"
- "requests"
- "yarl"
+ "PyJWT"
];
in ''
sed -r -i \
${lib.concatStringsSep "\n" (map (package:
''-e 's@${package}[<>=]+.*@${package}@g' \''
) relaxedConstraints)}
- setup.cfg
+ setup.cfg
substituteInPlace tests/test_config.py --replace '"/usr"' '"/build/media"'
'';
diff --git a/pkgs/servers/home-assistant/frontend.nix b/pkgs/servers/home-assistant/frontend.nix
index cbfd57d5f931..1f9b12e60f2d 100644
--- a/pkgs/servers/home-assistant/frontend.nix
+++ b/pkgs/servers/home-assistant/frontend.nix
@@ -4,7 +4,7 @@ buildPythonPackage rec {
# the frontend version corresponding to a specific home-assistant version can be found here
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
pname = "home-assistant-frontend";
- version = "20220504.1";
+ version = "20220531.0";
format = "wheel";
src = fetchPypi {
@@ -12,7 +12,7 @@ buildPythonPackage rec {
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
- sha256 = "sha256-EU9I/0+EmcNr7eYq3Z5J5/KiWu+Qz0+wn7UZMJFBxp0=";
+ sha256 = "sha256-NySYrHmU1OV11WZSqe6GURPKnwcLukXF0QUxxlPXUG4=";
};
# there is nothing to strip in this package
diff --git a/pkgs/servers/home-assistant/tests.nix b/pkgs/servers/home-assistant/tests.nix
index d8436bcc9402..488ce35a1645 100644
--- a/pkgs/servers/home-assistant/tests.nix
+++ b/pkgs/servers/home-assistant/tests.nix
@@ -14,6 +14,7 @@ let
lovelace = [ PyChromecast ];
nest = [ av ];
onboarding = [ pymetno radios rpi-bad-power ];
+ raspberry_pi = [ rpi-bad-power ];
tomorrowio = [ pyclimacell ];
version = [ aioaseko ];
voicerss = [ mutagen ];
diff --git a/pkgs/servers/zigbee2mqtt/default.nix b/pkgs/servers/zigbee2mqtt/default.nix
index 967c6448a40b..d49178d0165f 100644
--- a/pkgs/servers/zigbee2mqtt/default.nix
+++ b/pkgs/servers/zigbee2mqtt/default.nix
@@ -3,14 +3,14 @@ let
package = (import ./node.nix { inherit pkgs; inherit (stdenv.hostPlatform) system; }).package;
in
package.override rec {
- version = "1.25.1";
+ version = "1.25.2";
reconstructLock = true;
src = pkgs.fetchFromGitHub {
owner = "Koenkk";
repo = "zigbee2mqtt";
rev = version;
- sha256 = "IMRpT4BQvnsk8rl2bxiUbzVp4UcEaPLsniKneOq7Av4=";
+ sha256 = "E7D2lAXEgi0Vy9sVUzsLxY6G06hnUQxergCAOcSvDng=";
};
passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
diff --git a/pkgs/servers/zigbee2mqtt/node-packages.nix b/pkgs/servers/zigbee2mqtt/node-packages.nix
index b14ca0a6e134..b131e8956697 100644
--- a/pkgs/servers/zigbee2mqtt/node-packages.nix
+++ b/pkgs/servers/zigbee2mqtt/node-packages.nix
@@ -1,16 +1,16 @@
-# This file has been generated by node2nix 1.9.0. Do not edit!
+# This file has been generated by node2nix 1.11.1. Do not edit!
{nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}:
let
sources = {
- "@ampproject/remapping-2.1.2" = {
+ "@ampproject/remapping-2.2.0" = {
name = "_at_ampproject_slash_remapping";
packageName = "@ampproject/remapping";
- version = "2.1.2";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz";
- sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==";
+ url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz";
+ sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==";
};
};
"@babel/code-frame-7.16.7" = {
@@ -22,31 +22,31 @@ let
sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==";
};
};
- "@babel/compat-data-7.17.7" = {
+ "@babel/compat-data-7.17.10" = {
name = "_at_babel_slash_compat-data";
packageName = "@babel/compat-data";
- version = "7.17.7";
+ version = "7.17.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.7.tgz";
- sha512 = "p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==";
+ url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.10.tgz";
+ sha512 = "GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==";
};
};
- "@babel/core-7.17.9" = {
+ "@babel/core-7.18.2" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.17.9";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz";
- sha512 = "5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.18.2.tgz";
+ sha512 = "A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==";
};
};
- "@babel/generator-7.17.9" = {
+ "@babel/generator-7.18.2" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
- version = "7.17.9";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.9.tgz";
- sha512 = "rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ==";
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz";
+ sha512 = "W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==";
};
};
"@babel/helper-annotate-as-pure-7.16.7" = {
@@ -67,31 +67,31 @@ let
sha512 = "C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==";
};
};
- "@babel/helper-compilation-targets-7.17.7" = {
+ "@babel/helper-compilation-targets-7.18.2" = {
name = "_at_babel_slash_helper-compilation-targets";
packageName = "@babel/helper-compilation-targets";
- version = "7.17.7";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz";
- sha512 = "UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==";
+ url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz";
+ sha512 = "s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==";
};
};
- "@babel/helper-create-class-features-plugin-7.17.9" = {
+ "@babel/helper-create-class-features-plugin-7.18.0" = {
name = "_at_babel_slash_helper-create-class-features-plugin";
packageName = "@babel/helper-create-class-features-plugin";
- version = "7.17.9";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz";
- sha512 = "kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==";
+ url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz";
+ sha512 = "Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==";
};
};
- "@babel/helper-create-regexp-features-plugin-7.17.0" = {
+ "@babel/helper-create-regexp-features-plugin-7.17.12" = {
name = "_at_babel_slash_helper-create-regexp-features-plugin";
packageName = "@babel/helper-create-regexp-features-plugin";
- version = "7.17.0";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz";
- sha512 = "awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==";
+ url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.12.tgz";
+ sha512 = "b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==";
};
};
"@babel/helper-define-polyfill-provider-0.3.1" = {
@@ -103,13 +103,13 @@ let
sha512 = "J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==";
};
};
- "@babel/helper-environment-visitor-7.16.7" = {
+ "@babel/helper-environment-visitor-7.18.2" = {
name = "_at_babel_slash_helper-environment-visitor";
packageName = "@babel/helper-environment-visitor";
- version = "7.16.7";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz";
- sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==";
+ url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz";
+ sha512 = "14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==";
};
};
"@babel/helper-explode-assignable-expression-7.16.7" = {
@@ -157,13 +157,13 @@ let
sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==";
};
};
- "@babel/helper-module-transforms-7.17.7" = {
+ "@babel/helper-module-transforms-7.18.0" = {
name = "_at_babel_slash_helper-module-transforms";
packageName = "@babel/helper-module-transforms";
- version = "7.17.7";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz";
- sha512 = "VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==";
+ url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz";
+ sha512 = "kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==";
};
};
"@babel/helper-optimise-call-expression-7.16.7" = {
@@ -175,13 +175,13 @@ let
sha512 = "EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==";
};
};
- "@babel/helper-plugin-utils-7.16.7" = {
+ "@babel/helper-plugin-utils-7.17.12" = {
name = "_at_babel_slash_helper-plugin-utils";
packageName = "@babel/helper-plugin-utils";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz";
- sha512 = "Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==";
+ url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz";
+ sha512 = "JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==";
};
};
"@babel/helper-remap-async-to-generator-7.16.8" = {
@@ -193,22 +193,22 @@ let
sha512 = "fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==";
};
};
- "@babel/helper-replace-supers-7.16.7" = {
+ "@babel/helper-replace-supers-7.18.2" = {
name = "_at_babel_slash_helper-replace-supers";
packageName = "@babel/helper-replace-supers";
- version = "7.16.7";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz";
- sha512 = "y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==";
+ url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz";
+ sha512 = "XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==";
};
};
- "@babel/helper-simple-access-7.17.7" = {
+ "@babel/helper-simple-access-7.18.2" = {
name = "_at_babel_slash_helper-simple-access";
packageName = "@babel/helper-simple-access";
- version = "7.17.7";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz";
- sha512 = "txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==";
+ url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz";
+ sha512 = "7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==";
};
};
"@babel/helper-skip-transparent-expression-wrappers-7.16.0" = {
@@ -256,85 +256,85 @@ let
sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==";
};
};
- "@babel/helpers-7.17.9" = {
+ "@babel/helpers-7.18.2" = {
name = "_at_babel_slash_helpers";
packageName = "@babel/helpers";
- version = "7.17.9";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz";
- sha512 = "cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==";
+ url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.2.tgz";
+ sha512 = "j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==";
};
};
- "@babel/highlight-7.17.9" = {
+ "@babel/highlight-7.17.12" = {
name = "_at_babel_slash_highlight";
packageName = "@babel/highlight";
- version = "7.17.9";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz";
- sha512 = "J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==";
+ url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz";
+ sha512 = "7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==";
};
};
- "@babel/parser-7.17.9" = {
+ "@babel/parser-7.18.3" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.17.9";
+ version = "7.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.9.tgz";
- sha512 = "vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.3.tgz";
+ sha512 = "rL50YcEuHbbauAFAysNsJA4/f89fGTOBRNs9P81sniKnKAr4xULe5AecolcsKbi88xu0ByWYDj/S1AJ3FSFuSQ==";
};
};
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" = {
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12" = {
name = "_at_babel_slash_plugin-bugfix-safari-id-destructuring-collision-in-function-expression";
packageName = "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz";
- sha512 = "anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==";
+ url = "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12.tgz";
+ sha512 = "xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==";
};
};
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" = {
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12" = {
name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining";
packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz";
- sha512 = "di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==";
+ url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12.tgz";
+ sha512 = "/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==";
};
};
- "@babel/plugin-proposal-async-generator-functions-7.16.8" = {
+ "@babel/plugin-proposal-async-generator-functions-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
- version = "7.16.8";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz";
- sha512 = "71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.17.12.tgz";
+ sha512 = "RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==";
};
};
- "@babel/plugin-proposal-class-properties-7.16.7" = {
+ "@babel/plugin-proposal-class-properties-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-class-properties";
packageName = "@babel/plugin-proposal-class-properties";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz";
- sha512 = "IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.17.12.tgz";
+ sha512 = "U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==";
};
};
- "@babel/plugin-proposal-class-static-block-7.17.6" = {
+ "@babel/plugin-proposal-class-static-block-7.18.0" = {
name = "_at_babel_slash_plugin-proposal-class-static-block";
packageName = "@babel/plugin-proposal-class-static-block";
- version = "7.17.6";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz";
- sha512 = "X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.0.tgz";
+ sha512 = "t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==";
};
};
- "@babel/plugin-proposal-decorators-7.17.9" = {
+ "@babel/plugin-proposal-decorators-7.18.2" = {
name = "_at_babel_slash_plugin-proposal-decorators";
packageName = "@babel/plugin-proposal-decorators";
- version = "7.17.9";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.9.tgz";
- sha512 = "EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.2.tgz";
+ sha512 = "kbDISufFOxeczi0v4NQP3p5kIeW6izn/6klfWBrIIdGZZe4UpHR+QU03FAoWjGGd9SUXAwbw2pup1kaL4OQsJQ==";
};
};
"@babel/plugin-proposal-dynamic-import-7.16.7" = {
@@ -346,40 +346,40 @@ let
sha512 = "I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==";
};
};
- "@babel/plugin-proposal-export-namespace-from-7.16.7" = {
+ "@babel/plugin-proposal-export-namespace-from-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-export-namespace-from";
packageName = "@babel/plugin-proposal-export-namespace-from";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz";
- sha512 = "ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.17.12.tgz";
+ sha512 = "j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==";
};
};
- "@babel/plugin-proposal-json-strings-7.16.7" = {
+ "@babel/plugin-proposal-json-strings-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-json-strings";
packageName = "@babel/plugin-proposal-json-strings";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz";
- sha512 = "lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.17.12.tgz";
+ sha512 = "rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==";
};
};
- "@babel/plugin-proposal-logical-assignment-operators-7.16.7" = {
+ "@babel/plugin-proposal-logical-assignment-operators-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-logical-assignment-operators";
packageName = "@babel/plugin-proposal-logical-assignment-operators";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz";
- sha512 = "K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.17.12.tgz";
+ sha512 = "EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==";
};
};
- "@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" = {
+ "@babel/plugin-proposal-nullish-coalescing-operator-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator";
packageName = "@babel/plugin-proposal-nullish-coalescing-operator";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz";
- sha512 = "aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.17.12.tgz";
+ sha512 = "ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==";
};
};
"@babel/plugin-proposal-numeric-separator-7.16.7" = {
@@ -391,13 +391,13 @@ let
sha512 = "vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==";
};
};
- "@babel/plugin-proposal-object-rest-spread-7.17.3" = {
+ "@babel/plugin-proposal-object-rest-spread-7.18.0" = {
name = "_at_babel_slash_plugin-proposal-object-rest-spread";
packageName = "@babel/plugin-proposal-object-rest-spread";
- version = "7.17.3";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz";
- sha512 = "yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.0.tgz";
+ sha512 = "nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==";
};
};
"@babel/plugin-proposal-optional-catch-binding-7.16.7" = {
@@ -409,40 +409,40 @@ let
sha512 = "eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==";
};
};
- "@babel/plugin-proposal-optional-chaining-7.16.7" = {
+ "@babel/plugin-proposal-optional-chaining-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-optional-chaining";
packageName = "@babel/plugin-proposal-optional-chaining";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz";
- sha512 = "eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.17.12.tgz";
+ sha512 = "7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==";
};
};
- "@babel/plugin-proposal-private-methods-7.16.11" = {
+ "@babel/plugin-proposal-private-methods-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-private-methods";
packageName = "@babel/plugin-proposal-private-methods";
- version = "7.16.11";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz";
- sha512 = "F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.17.12.tgz";
+ sha512 = "SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==";
};
};
- "@babel/plugin-proposal-private-property-in-object-7.16.7" = {
+ "@babel/plugin-proposal-private-property-in-object-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-private-property-in-object";
packageName = "@babel/plugin-proposal-private-property-in-object";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz";
- sha512 = "rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.17.12.tgz";
+ sha512 = "/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==";
};
};
- "@babel/plugin-proposal-unicode-property-regex-7.16.7" = {
+ "@babel/plugin-proposal-unicode-property-regex-7.17.12" = {
name = "_at_babel_slash_plugin-proposal-unicode-property-regex";
packageName = "@babel/plugin-proposal-unicode-property-regex";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz";
- sha512 = "QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.17.12.tgz";
+ sha512 = "Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==";
};
};
"@babel/plugin-syntax-async-generators-7.8.4" = {
@@ -481,13 +481,13 @@ let
sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==";
};
};
- "@babel/plugin-syntax-decorators-7.17.0" = {
+ "@babel/plugin-syntax-decorators-7.17.12" = {
name = "_at_babel_slash_plugin-syntax-decorators";
packageName = "@babel/plugin-syntax-decorators";
- version = "7.17.0";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.17.0.tgz";
- sha512 = "qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==";
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.17.12.tgz";
+ sha512 = "D1Hz0qtGTza8K2xGyEdVNCYLdVHukAcbQr4K3/s6r/esadyEriZovpJimQOpu8ju4/jV8dW/1xdaE0UpDroidw==";
};
};
"@babel/plugin-syntax-dynamic-import-7.8.3" = {
@@ -508,6 +508,15 @@ let
sha512 = "MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==";
};
};
+ "@babel/plugin-syntax-import-assertions-7.17.12" = {
+ name = "_at_babel_slash_plugin-syntax-import-assertions";
+ packageName = "@babel/plugin-syntax-import-assertions";
+ version = "7.17.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.17.12.tgz";
+ sha512 = "n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==";
+ };
+ };
"@babel/plugin-syntax-import-meta-7.10.4" = {
name = "_at_babel_slash_plugin-syntax-import-meta";
packageName = "@babel/plugin-syntax-import-meta";
@@ -598,31 +607,31 @@ let
sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==";
};
};
- "@babel/plugin-syntax-typescript-7.16.7" = {
+ "@babel/plugin-syntax-typescript-7.17.12" = {
name = "_at_babel_slash_plugin-syntax-typescript";
packageName = "@babel/plugin-syntax-typescript";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz";
- sha512 = "YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==";
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.12.tgz";
+ sha512 = "TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==";
};
};
- "@babel/plugin-transform-arrow-functions-7.16.7" = {
+ "@babel/plugin-transform-arrow-functions-7.17.12" = {
name = "_at_babel_slash_plugin-transform-arrow-functions";
packageName = "@babel/plugin-transform-arrow-functions";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz";
- sha512 = "9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.17.12.tgz";
+ sha512 = "PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==";
};
};
- "@babel/plugin-transform-async-to-generator-7.16.8" = {
+ "@babel/plugin-transform-async-to-generator-7.17.12" = {
name = "_at_babel_slash_plugin-transform-async-to-generator";
packageName = "@babel/plugin-transform-async-to-generator";
- version = "7.16.8";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz";
- sha512 = "MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.17.12.tgz";
+ sha512 = "J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==";
};
};
"@babel/plugin-transform-block-scoped-functions-7.16.7" = {
@@ -634,40 +643,40 @@ let
sha512 = "JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==";
};
};
- "@babel/plugin-transform-block-scoping-7.16.7" = {
+ "@babel/plugin-transform-block-scoping-7.17.12" = {
name = "_at_babel_slash_plugin-transform-block-scoping";
packageName = "@babel/plugin-transform-block-scoping";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz";
- sha512 = "ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.17.12.tgz";
+ sha512 = "jw8XW/B1i7Lqwqj2CbrViPcZijSxfguBWZP2aN59NHgxUyO/OcO1mfdCxH13QhN5LbWhPkX+f+brKGhZTiqtZQ==";
};
};
- "@babel/plugin-transform-classes-7.16.7" = {
+ "@babel/plugin-transform-classes-7.17.12" = {
name = "_at_babel_slash_plugin-transform-classes";
packageName = "@babel/plugin-transform-classes";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz";
- sha512 = "WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.17.12.tgz";
+ sha512 = "cvO7lc7pZat6BsvH6l/EGaI8zpl8paICaoGk+7x7guvtfak/TbIf66nYmJOH13EuG0H+Xx3M+9LQDtSvZFKXKw==";
};
};
- "@babel/plugin-transform-computed-properties-7.16.7" = {
+ "@babel/plugin-transform-computed-properties-7.17.12" = {
name = "_at_babel_slash_plugin-transform-computed-properties";
packageName = "@babel/plugin-transform-computed-properties";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz";
- sha512 = "gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.17.12.tgz";
+ sha512 = "a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==";
};
};
- "@babel/plugin-transform-destructuring-7.17.7" = {
+ "@babel/plugin-transform-destructuring-7.18.0" = {
name = "_at_babel_slash_plugin-transform-destructuring";
packageName = "@babel/plugin-transform-destructuring";
- version = "7.17.7";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz";
- sha512 = "XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.0.tgz";
+ sha512 = "Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==";
};
};
"@babel/plugin-transform-dotall-regex-7.16.7" = {
@@ -679,13 +688,13 @@ let
sha512 = "Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==";
};
};
- "@babel/plugin-transform-duplicate-keys-7.16.7" = {
+ "@babel/plugin-transform-duplicate-keys-7.17.12" = {
name = "_at_babel_slash_plugin-transform-duplicate-keys";
packageName = "@babel/plugin-transform-duplicate-keys";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz";
- sha512 = "03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.17.12.tgz";
+ sha512 = "EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==";
};
};
"@babel/plugin-transform-exponentiation-operator-7.16.7" = {
@@ -697,13 +706,13 @@ let
sha512 = "8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==";
};
};
- "@babel/plugin-transform-for-of-7.16.7" = {
+ "@babel/plugin-transform-for-of-7.18.1" = {
name = "_at_babel_slash_plugin-transform-for-of";
packageName = "@babel/plugin-transform-for-of";
- version = "7.16.7";
+ version = "7.18.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz";
- sha512 = "/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.1.tgz";
+ sha512 = "+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==";
};
};
"@babel/plugin-transform-function-name-7.16.7" = {
@@ -715,13 +724,13 @@ let
sha512 = "SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==";
};
};
- "@babel/plugin-transform-literals-7.16.7" = {
+ "@babel/plugin-transform-literals-7.17.12" = {
name = "_at_babel_slash_plugin-transform-literals";
packageName = "@babel/plugin-transform-literals";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz";
- sha512 = "6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.17.12.tgz";
+ sha512 = "8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==";
};
};
"@babel/plugin-transform-member-expression-literals-7.16.7" = {
@@ -733,58 +742,58 @@ let
sha512 = "mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==";
};
};
- "@babel/plugin-transform-modules-amd-7.16.7" = {
+ "@babel/plugin-transform-modules-amd-7.18.0" = {
name = "_at_babel_slash_plugin-transform-modules-amd";
packageName = "@babel/plugin-transform-modules-amd";
- version = "7.16.7";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz";
- sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.0.tgz";
+ sha512 = "h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==";
};
};
- "@babel/plugin-transform-modules-commonjs-7.17.9" = {
+ "@babel/plugin-transform-modules-commonjs-7.18.2" = {
name = "_at_babel_slash_plugin-transform-modules-commonjs";
packageName = "@babel/plugin-transform-modules-commonjs";
- version = "7.17.9";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz";
- sha512 = "2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.2.tgz";
+ sha512 = "f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==";
};
};
- "@babel/plugin-transform-modules-systemjs-7.17.8" = {
+ "@babel/plugin-transform-modules-systemjs-7.18.0" = {
name = "_at_babel_slash_plugin-transform-modules-systemjs";
packageName = "@babel/plugin-transform-modules-systemjs";
- version = "7.17.8";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz";
- sha512 = "39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.0.tgz";
+ sha512 = "vwKpxdHnlM5tIrRt/eA0bzfbi7gUBLN08vLu38np1nZevlPySRe6yvuATJB5F/WPJ+ur4OXwpVYq9+BsxqAQuQ==";
};
};
- "@babel/plugin-transform-modules-umd-7.16.7" = {
+ "@babel/plugin-transform-modules-umd-7.18.0" = {
name = "_at_babel_slash_plugin-transform-modules-umd";
packageName = "@babel/plugin-transform-modules-umd";
- version = "7.16.7";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz";
- sha512 = "EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.0.tgz";
+ sha512 = "d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==";
};
};
- "@babel/plugin-transform-named-capturing-groups-regex-7.16.8" = {
+ "@babel/plugin-transform-named-capturing-groups-regex-7.17.12" = {
name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex";
packageName = "@babel/plugin-transform-named-capturing-groups-regex";
- version = "7.16.8";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz";
- sha512 = "j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.12.tgz";
+ sha512 = "vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==";
};
};
- "@babel/plugin-transform-new-target-7.16.7" = {
+ "@babel/plugin-transform-new-target-7.17.12" = {
name = "_at_babel_slash_plugin-transform-new-target";
packageName = "@babel/plugin-transform-new-target";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz";
- sha512 = "xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.17.12.tgz";
+ sha512 = "CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==";
};
};
"@babel/plugin-transform-object-super-7.16.7" = {
@@ -796,13 +805,13 @@ let
sha512 = "14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==";
};
};
- "@babel/plugin-transform-parameters-7.16.7" = {
+ "@babel/plugin-transform-parameters-7.17.12" = {
name = "_at_babel_slash_plugin-transform-parameters";
packageName = "@babel/plugin-transform-parameters";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz";
- sha512 = "AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.17.12.tgz";
+ sha512 = "6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==";
};
};
"@babel/plugin-transform-property-literals-7.16.7" = {
@@ -814,22 +823,22 @@ let
sha512 = "z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==";
};
};
- "@babel/plugin-transform-regenerator-7.17.9" = {
+ "@babel/plugin-transform-regenerator-7.18.0" = {
name = "_at_babel_slash_plugin-transform-regenerator";
packageName = "@babel/plugin-transform-regenerator";
- version = "7.17.9";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.17.9.tgz";
- sha512 = "Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.0.tgz";
+ sha512 = "C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==";
};
};
- "@babel/plugin-transform-reserved-words-7.16.7" = {
+ "@babel/plugin-transform-reserved-words-7.17.12" = {
name = "_at_babel_slash_plugin-transform-reserved-words";
packageName = "@babel/plugin-transform-reserved-words";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz";
- sha512 = "KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.17.12.tgz";
+ sha512 = "1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==";
};
};
"@babel/plugin-transform-shorthand-properties-7.16.7" = {
@@ -841,13 +850,13 @@ let
sha512 = "hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==";
};
};
- "@babel/plugin-transform-spread-7.16.7" = {
+ "@babel/plugin-transform-spread-7.17.12" = {
name = "_at_babel_slash_plugin-transform-spread";
packageName = "@babel/plugin-transform-spread";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz";
- sha512 = "+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.17.12.tgz";
+ sha512 = "9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==";
};
};
"@babel/plugin-transform-sticky-regex-7.16.7" = {
@@ -859,31 +868,31 @@ let
sha512 = "NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==";
};
};
- "@babel/plugin-transform-template-literals-7.16.7" = {
+ "@babel/plugin-transform-template-literals-7.18.2" = {
name = "_at_babel_slash_plugin-transform-template-literals";
packageName = "@babel/plugin-transform-template-literals";
- version = "7.16.7";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz";
- sha512 = "VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.2.tgz";
+ sha512 = "/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==";
};
};
- "@babel/plugin-transform-typeof-symbol-7.16.7" = {
+ "@babel/plugin-transform-typeof-symbol-7.17.12" = {
name = "_at_babel_slash_plugin-transform-typeof-symbol";
packageName = "@babel/plugin-transform-typeof-symbol";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz";
- sha512 = "p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.17.12.tgz";
+ sha512 = "Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==";
};
};
- "@babel/plugin-transform-typescript-7.16.8" = {
+ "@babel/plugin-transform-typescript-7.18.1" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.16.8";
+ version = "7.18.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz";
- sha512 = "bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.1.tgz";
+ sha512 = "F+RJmL479HJmC0KeqqwEGZMg1P7kWArLGbAKfEi9yPthJyMNjF+DjxFF/halfQvq1Q9GFM4TUbYDNV8xe4Ctqg==";
};
};
"@babel/plugin-transform-unicode-escapes-7.16.7" = {
@@ -904,13 +913,13 @@ let
sha512 = "oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==";
};
};
- "@babel/preset-env-7.16.11" = {
+ "@babel/preset-env-7.18.2" = {
name = "_at_babel_slash_preset-env";
packageName = "@babel/preset-env";
- version = "7.16.11";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz";
- sha512 = "qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==";
+ url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.2.tgz";
+ sha512 = "PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==";
};
};
"@babel/preset-modules-0.1.5" = {
@@ -922,22 +931,22 @@ let
sha512 = "A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==";
};
};
- "@babel/preset-typescript-7.16.7" = {
+ "@babel/preset-typescript-7.17.12" = {
name = "_at_babel_slash_preset-typescript";
packageName = "@babel/preset-typescript";
- version = "7.16.7";
+ version = "7.17.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz";
- sha512 = "WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==";
+ url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.17.12.tgz";
+ sha512 = "S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==";
};
};
- "@babel/runtime-7.17.9" = {
+ "@babel/runtime-7.18.3" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
- version = "7.17.9";
+ version = "7.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz";
- sha512 = "lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==";
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.3.tgz";
+ sha512 = "38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==";
};
};
"@babel/template-7.16.7" = {
@@ -949,22 +958,22 @@ let
sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==";
};
};
- "@babel/traverse-7.17.9" = {
+ "@babel/traverse-7.18.2" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.17.9";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.9.tgz";
- sha512 = "PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.2.tgz";
+ sha512 = "9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==";
};
};
- "@babel/types-7.17.0" = {
+ "@babel/types-7.18.2" = {
name = "_at_babel_slash_types";
packageName = "@babel/types";
- version = "7.17.0";
+ version = "7.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz";
- sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==";
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.18.2.tgz";
+ sha512 = "0On6B8A4/+mFUto5WERt3EEuG1NznDirvwca1O8UwXQHVY8g3R7OzYgxXdOfMwLO08UrpUD/2+3Bclyq+/C94Q==";
};
};
"@bcoe/v8-coverage-0.2.3" = {
@@ -994,13 +1003,13 @@ let
sha512 = "hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==";
};
};
- "@eslint/eslintrc-1.2.2" = {
+ "@eslint/eslintrc-1.3.0" = {
name = "_at_eslint_slash_eslintrc";
packageName = "@eslint/eslintrc";
- version = "1.2.2";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.2.tgz";
- sha512 = "lTVWHs7O2hjBFZunXTZYnYqtB9GakA1lnxIf+gKq2nY5gxkkNi/lQvveW6t8gFdOHTg6nG50Xs95PrLqVpcaLg==";
+ url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz";
+ sha512 = "UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==";
};
};
"@humanwhocodes/config-array-0.9.5" = {
@@ -1039,130 +1048,184 @@ let
sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==";
};
};
- "@jest/console-27.5.1" = {
+ "@jest/console-28.1.0" = {
name = "_at_jest_slash_console";
packageName = "@jest/console";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz";
- sha512 = "kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==";
+ url = "https://registry.npmjs.org/@jest/console/-/console-28.1.0.tgz";
+ sha512 = "tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA==";
};
};
- "@jest/core-27.5.1" = {
+ "@jest/core-28.1.0" = {
name = "_at_jest_slash_core";
packageName = "@jest/core";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz";
- sha512 = "AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==";
+ url = "https://registry.npmjs.org/@jest/core/-/core-28.1.0.tgz";
+ sha512 = "/2PTt0ywhjZ4NwNO4bUqD9IVJfmFVhVKGlhvSpmEfUCuxYf/3NHcKmRFI+I71lYzbTT3wMuYpETDCTHo81gC/g==";
};
};
- "@jest/environment-27.5.1" = {
+ "@jest/environment-28.1.0" = {
name = "_at_jest_slash_environment";
packageName = "@jest/environment";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz";
- sha512 = "/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==";
+ url = "https://registry.npmjs.org/@jest/environment/-/environment-28.1.0.tgz";
+ sha512 = "S44WGSxkRngzHslhV6RoAExekfF7Qhwa6R5+IYFa81mpcj0YgdBnRSmvHe3SNwOt64yXaE5GG8Y2xM28ii5ssA==";
};
};
- "@jest/fake-timers-27.5.1" = {
+ "@jest/expect-28.1.0" = {
+ name = "_at_jest_slash_expect";
+ packageName = "@jest/expect";
+ version = "28.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@jest/expect/-/expect-28.1.0.tgz";
+ sha512 = "be9ETznPLaHOmeJqzYNIXv1ADEzENuQonIoobzThOYPuK/6GhrWNIJDVTgBLCrz3Am73PyEU2urQClZp0hLTtA==";
+ };
+ };
+ "@jest/expect-utils-28.1.0" = {
+ name = "_at_jest_slash_expect-utils";
+ packageName = "@jest/expect-utils";
+ version = "28.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.0.tgz";
+ sha512 = "5BrG48dpC0sB80wpeIX5FU6kolDJI4K0n5BM9a5V38MGx0pyRvUBSS0u2aNTdDzmOrCjhOg8pGs6a20ivYkdmw==";
+ };
+ };
+ "@jest/fake-timers-28.1.0" = {
name = "_at_jest_slash_fake-timers";
packageName = "@jest/fake-timers";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz";
- sha512 = "/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==";
+ url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.0.tgz";
+ sha512 = "Xqsf/6VLeAAq78+GNPzI7FZQRf5cCHj1qgQxCjws9n8rKw8r1UYoeaALwBvyuzOkpU3c1I6emeMySPa96rxtIg==";
};
};
- "@jest/globals-27.5.1" = {
+ "@jest/globals-28.1.0" = {
name = "_at_jest_slash_globals";
packageName = "@jest/globals";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz";
- sha512 = "ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==";
+ url = "https://registry.npmjs.org/@jest/globals/-/globals-28.1.0.tgz";
+ sha512 = "3m7sTg52OTQR6dPhsEQSxAvU+LOBbMivZBwOvKEZ+Rb+GyxVnXi9HKgOTYkx/S99T8yvh17U4tNNJPIEQmtwYw==";
};
};
- "@jest/reporters-27.5.1" = {
+ "@jest/reporters-28.1.0" = {
name = "_at_jest_slash_reporters";
packageName = "@jest/reporters";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz";
- sha512 = "cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==";
+ url = "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.0.tgz";
+ sha512 = "qxbFfqap/5QlSpIizH9c/bFCDKsQlM4uAKSOvZrP+nIdrjqre3FmKzpTtYyhsaVcOSNK7TTt2kjm+4BJIjysFA==";
};
};
- "@jest/source-map-27.5.1" = {
+ "@jest/schemas-28.0.2" = {
+ name = "_at_jest_slash_schemas";
+ packageName = "@jest/schemas";
+ version = "28.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@jest/schemas/-/schemas-28.0.2.tgz";
+ sha512 = "YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA==";
+ };
+ };
+ "@jest/source-map-28.0.2" = {
name = "_at_jest_slash_source-map";
packageName = "@jest/source-map";
- version = "27.5.1";
+ version = "28.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz";
- sha512 = "y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==";
+ url = "https://registry.npmjs.org/@jest/source-map/-/source-map-28.0.2.tgz";
+ sha512 = "Y9dxC8ZpN3kImkk0LkK5XCEneYMAXlZ8m5bflmSL5vrwyeUpJfentacCUg6fOb8NOpOO7hz2+l37MV77T6BFPw==";
};
};
- "@jest/test-result-27.5.1" = {
+ "@jest/test-result-28.1.0" = {
name = "_at_jest_slash_test-result";
packageName = "@jest/test-result";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz";
- sha512 = "EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==";
+ url = "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.0.tgz";
+ sha512 = "sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ==";
};
};
- "@jest/test-sequencer-27.5.1" = {
+ "@jest/test-sequencer-28.1.0" = {
name = "_at_jest_slash_test-sequencer";
packageName = "@jest/test-sequencer";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz";
- sha512 = "LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==";
+ url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.0.tgz";
+ sha512 = "tZCEiVWlWNTs/2iK9yi6o3AlMfbbYgV4uuZInSVdzZ7ftpHZhCMuhvk2HLYhCZzLgPFQ9MnM1YaxMnh3TILFiQ==";
};
};
- "@jest/transform-27.5.1" = {
+ "@jest/transform-28.1.0" = {
name = "_at_jest_slash_transform";
packageName = "@jest/transform";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz";
- sha512 = "ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==";
+ url = "https://registry.npmjs.org/@jest/transform/-/transform-28.1.0.tgz";
+ sha512 = "omy2xe5WxlAfqmsTjTPxw+iXRTRnf+NtX0ToG+4S0tABeb4KsKmPUHq5UBuwunHg3tJRwgEQhEp0M/8oiatLEA==";
};
};
- "@jest/types-27.5.1" = {
+ "@jest/types-28.1.0" = {
name = "_at_jest_slash_types";
packageName = "@jest/types";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz";
- sha512 = "Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==";
+ url = "https://registry.npmjs.org/@jest/types/-/types-28.1.0.tgz";
+ sha512 = "xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA==";
};
};
- "@jridgewell/resolve-uri-3.0.6" = {
+ "@jridgewell/gen-mapping-0.1.1" = {
+ name = "_at_jridgewell_slash_gen-mapping";
+ packageName = "@jridgewell/gen-mapping";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz";
+ sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==";
+ };
+ };
+ "@jridgewell/gen-mapping-0.3.1" = {
+ name = "_at_jridgewell_slash_gen-mapping";
+ packageName = "@jridgewell/gen-mapping";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz";
+ sha512 = "GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==";
+ };
+ };
+ "@jridgewell/resolve-uri-3.0.7" = {
name = "_at_jridgewell_slash_resolve-uri";
packageName = "@jridgewell/resolve-uri";
- version = "3.0.6";
+ version = "3.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.6.tgz";
- sha512 = "R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw==";
+ url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz";
+ sha512 = "8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==";
};
};
- "@jridgewell/sourcemap-codec-1.4.11" = {
+ "@jridgewell/set-array-1.1.1" = {
+ name = "_at_jridgewell_slash_set-array";
+ packageName = "@jridgewell/set-array";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz";
+ sha512 = "Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==";
+ };
+ };
+ "@jridgewell/sourcemap-codec-1.4.13" = {
name = "_at_jridgewell_slash_sourcemap-codec";
packageName = "@jridgewell/sourcemap-codec";
- version = "1.4.11";
+ version = "1.4.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz";
- sha512 = "Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==";
+ url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz";
+ sha512 = "GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==";
};
};
- "@jridgewell/trace-mapping-0.3.9" = {
+ "@jridgewell/trace-mapping-0.3.13" = {
name = "_at_jridgewell_slash_trace-mapping";
packageName = "@jridgewell/trace-mapping";
- version = "0.3.9";
+ version = "0.3.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz";
- sha512 = "3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==";
+ url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz";
+ sha512 = "o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==";
};
};
"@nodelib/fs.scandir-2.1.5" = {
@@ -1291,6 +1354,15 @@ let
sha512 = "bLye8Ub4vUFQGmkh8qEqehr7SE7EJs2yDs0h9jzuL5oKi+F34CFmWkEErO8GAOQ8YNn7p6b3GxUgs+0BrHHDZQ==";
};
};
+ "@sinclair/typebox-0.23.5" = {
+ name = "_at_sinclair_slash_typebox";
+ packageName = "@sinclair/typebox";
+ version = "0.23.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.23.5.tgz";
+ sha512 = "AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg==";
+ };
+ };
"@sinonjs/commons-1.8.3" = {
name = "_at_sinonjs_slash_commons";
packageName = "@sinonjs/commons";
@@ -1300,22 +1372,13 @@ let
sha512 = "xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==";
};
};
- "@sinonjs/fake-timers-8.1.0" = {
+ "@sinonjs/fake-timers-9.1.2" = {
name = "_at_sinonjs_slash_fake-timers";
packageName = "@sinonjs/fake-timers";
- version = "8.1.0";
+ version = "9.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz";
- sha512 = "OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==";
- };
- };
- "@tootallnate/once-1.1.2" = {
- name = "_at_tootallnate_slash_once";
- packageName = "@tootallnate/once";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz";
- sha512 = "RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==";
+ url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz";
+ sha512 = "BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==";
};
};
"@types/babel__core-7.1.19" = {
@@ -1345,13 +1408,13 @@ let
sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==";
};
};
- "@types/babel__traverse-7.17.0" = {
+ "@types/babel__traverse-7.17.1" = {
name = "_at_types_slash_babel__traverse";
packageName = "@types/babel__traverse";
- version = "7.17.0";
+ version = "7.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.0.tgz";
- sha512 = "r8aveDbd+rzGP+ykSdF3oPuTVRWRfbBiHl0rVDM2yNEmSMXfkObQLV46b4RnCv3Lra51OlfnZhkkFaDl2MIRaA==";
+ url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz";
+ sha512 = "kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==";
};
};
"@types/debounce-1.2.1" = {
@@ -1426,13 +1489,13 @@ let
sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==";
};
};
- "@types/jest-27.4.1" = {
+ "@types/jest-27.5.1" = {
name = "_at_types_slash_jest";
packageName = "@types/jest";
- version = "27.4.1";
+ version = "27.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/jest/-/jest-27.4.1.tgz";
- sha512 = "23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw==";
+ url = "https://registry.npmjs.org/@types/jest/-/jest-27.5.1.tgz";
+ sha512 = "fUy7YRpT+rHXto1YlL+J9rs0uLGyiqVt3ZOTQR+4ROc47yNl8WLdVLgUloBRhOxP1PZvguHl44T3H0wAWxahYQ==";
};
};
"@types/js-yaml-4.0.5" = {
@@ -1462,13 +1525,13 @@ let
sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==";
};
};
- "@types/node-17.0.25" = {
+ "@types/node-17.0.36" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "17.0.25";
+ version = "17.0.36";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-17.0.25.tgz";
- sha512 = "wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w==";
+ url = "https://registry.npmjs.org/@types/node/-/node-17.0.36.tgz";
+ sha512 = "V3orv+ggDsWVHP99K3JlwtH20R7J4IhI1Kksgc+64q5VxgfRkQG8Ws3MFm/FZOKDYGy9feGFlZ70/HpCNe9QaA==";
};
};
"@types/object-assign-deep-0.4.0" = {
@@ -1480,13 +1543,13 @@ let
sha512 = "3D0F3rHRNDc8cQSXNzwF1jBrJi28Mdrhc10ZLlqbJWDPYRWTTWB9Tc8JoKrgBvLKioXoPoHT6Uzf3s2F7akCUg==";
};
};
- "@types/prettier-2.6.0" = {
+ "@types/prettier-2.6.3" = {
name = "_at_types_slash_prettier";
packageName = "@types/prettier";
- version = "2.6.0";
+ version = "2.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.0.tgz";
- sha512 = "G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw==";
+ url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.3.tgz";
+ sha512 = "ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==";
};
};
"@types/rimraf-3.0.2" = {
@@ -1516,13 +1579,13 @@ let
sha512 = "6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==";
};
};
- "@types/yargs-16.0.4" = {
+ "@types/yargs-17.0.10" = {
name = "_at_types_slash_yargs";
packageName = "@types/yargs";
- version = "16.0.4";
+ version = "17.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz";
- sha512 = "T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==";
+ url = "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.10.tgz";
+ sha512 = "gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==";
};
};
"@types/yargs-parser-21.0.0" = {
@@ -1534,112 +1597,85 @@ let
sha512 = "iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==";
};
};
- "@typescript-eslint/eslint-plugin-5.20.0" = {
+ "@typescript-eslint/eslint-plugin-5.26.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "5.20.0";
+ version = "5.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.20.0.tgz";
- sha512 = "fapGzoxilCn3sBtC6NtXZX6+P/Hef7VDbyfGqTTpzYydwhlkevB+0vE0EnmHPVTVSy68GUncyJ/2PcrFBeCo5Q==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.26.0.tgz";
+ sha512 = "oGCmo0PqnRZZndr+KwvvAUvD3kNE4AfyoGCwOZpoCncSh4MVD06JTE8XQa2u9u+NX5CsyZMBTEc2C72zx38eYA==";
};
};
- "@typescript-eslint/parser-5.20.0" = {
+ "@typescript-eslint/parser-5.26.0" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
- version = "5.20.0";
+ version = "5.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.20.0.tgz";
- sha512 = "UWKibrCZQCYvobmu3/N8TWbEeo/EPQbS41Ux1F9XqPzGuV7pfg6n50ZrFo6hryynD8qOTTfLHtHjjdQtxJ0h/w==";
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.26.0.tgz";
+ sha512 = "n/IzU87ttzIdnAH5vQ4BBDnLPly7rC5VnjN3m0xBG82HK6rhRxnCb3w/GyWbNDghPd+NktJqB/wl6+YkzZ5T5Q==";
};
};
- "@typescript-eslint/scope-manager-5.20.0" = {
+ "@typescript-eslint/scope-manager-5.26.0" = {
name = "_at_typescript-eslint_slash_scope-manager";
packageName = "@typescript-eslint/scope-manager";
- version = "5.20.0";
+ version = "5.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz";
- sha512 = "h9KtuPZ4D/JuX7rpp1iKg3zOH0WNEa+ZIXwpW/KWmEFDxlA/HSfCMhiyF1HS/drTICjIbpA6OqkAhrP/zkCStg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.26.0.tgz";
+ sha512 = "gVzTJUESuTwiju/7NiTb4c5oqod8xt5GhMbExKsCTp6adU3mya6AGJ4Pl9xC7x2DX9UYFsjImC0mA62BCY22Iw==";
};
};
- "@typescript-eslint/type-utils-5.20.0" = {
+ "@typescript-eslint/type-utils-5.26.0" = {
name = "_at_typescript-eslint_slash_type-utils";
packageName = "@typescript-eslint/type-utils";
- version = "5.20.0";
+ version = "5.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.20.0.tgz";
- sha512 = "WxNrCwYB3N/m8ceyoGCgbLmuZwupvzN0rE8NBuwnl7APgjv24ZJIjkNzoFBXPRCGzLNkoU/WfanW0exvp/+3Iw==";
+ url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.26.0.tgz";
+ sha512 = "7ccbUVWGLmcRDSA1+ADkDBl5fP87EJt0fnijsMFTVHXKGduYMgienC/i3QwoVhDADUAPoytgjbZbCOMj4TY55A==";
};
};
- "@typescript-eslint/types-5.20.0" = {
+ "@typescript-eslint/types-5.26.0" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
- version = "5.20.0";
+ version = "5.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.20.0.tgz";
- sha512 = "+d8wprF9GyvPwtoB4CxBAR/s0rpP25XKgnOvMf/gMXYDvlUC3rPFHupdTQ/ow9vn7UDe5rX02ovGYQbv/IUCbg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.26.0.tgz";
+ sha512 = "8794JZFE1RN4XaExLWLI2oSXsVImNkl79PzTOOWt9h0UHROwJedNOD2IJyfL0NbddFllcktGIO2aOu10avQQyA==";
};
};
- "@typescript-eslint/typescript-estree-5.20.0" = {
+ "@typescript-eslint/typescript-estree-5.26.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
- version = "5.20.0";
+ version = "5.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz";
- sha512 = "36xLjP/+bXusLMrT9fMMYy1KJAGgHhlER2TqpUVDYUQg4w0q/NW/sg4UGAgVwAqb8V4zYg43KMUpM8vV2lve6w==";
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.26.0.tgz";
+ sha512 = "EyGpw6eQDsfD6jIqmXP3rU5oHScZ51tL/cZgFbFBvWuCwrIptl+oueUZzSmLtxFuSOQ9vDcJIs+279gnJkfd1w==";
};
};
- "@typescript-eslint/utils-5.20.0" = {
+ "@typescript-eslint/utils-5.26.0" = {
name = "_at_typescript-eslint_slash_utils";
packageName = "@typescript-eslint/utils";
- version = "5.20.0";
+ version = "5.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.20.0.tgz";
- sha512 = "lHONGJL1LIO12Ujyx8L8xKbwWSkoUKFSO+0wDAqGXiudWB2EO7WEUT+YZLtVbmOmSllAjLb9tpoIPwpRe5Tn6w==";
+ url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.26.0.tgz";
+ sha512 = "PJFwcTq2Pt4AMOKfe3zQOdez6InIDOjUJJD3v3LyEtxHGVVRK3Vo7Dd923t/4M9hSH2q2CLvcTdxlLPjcIk3eg==";
};
};
- "@typescript-eslint/visitor-keys-5.20.0" = {
+ "@typescript-eslint/visitor-keys-5.26.0" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
- version = "5.20.0";
+ version = "5.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz";
- sha512 = "1flRpNF+0CAQkMNlTJ6L/Z5jiODG/e5+7mk6XwtPOUS3UrTz3UOiAg9jG2VtKsWI6rZQfy4C6a232QNRZTRGlg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.26.0.tgz";
+ sha512 = "wei+ffqHanYDOQgg/fS6Hcar6wAWv0CUPQ3TZzOWd2BLfgP539rb49bwua8WRAs7R6kOSLn82rfEu2ro6Llt8Q==";
};
};
- "abab-2.0.6" = {
- name = "abab";
- packageName = "abab";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz";
- sha512 = "j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==";
- };
- };
- "acorn-7.4.1" = {
+ "acorn-8.7.1" = {
name = "acorn";
packageName = "acorn";
- version = "7.4.1";
+ version = "8.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz";
- sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==";
- };
- };
- "acorn-8.7.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "8.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz";
- sha512 = "V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==";
- };
- };
- "acorn-globals-6.0.0" = {
- name = "acorn-globals";
- packageName = "acorn-globals";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz";
- sha512 = "ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz";
+ sha512 = "Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==";
};
};
"acorn-jsx-5.3.2" = {
@@ -1651,15 +1687,6 @@ let
sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==";
};
};
- "acorn-walk-7.2.0" = {
- name = "acorn-walk";
- packageName = "acorn-walk";
- version = "7.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz";
- sha512 = "OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==";
- };
- };
"agent-base-6.0.2" = {
name = "agent-base";
packageName = "agent-base";
@@ -1702,7 +1729,7 @@ let
version = "2.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
+ sha512 = "TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==";
};
};
"ansi-regex-5.0.1" = {
@@ -1747,7 +1774,7 @@ let
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz";
- sha1 = "abc6afeedcea52e809cdc0376aed3ce39635d17f";
+ sha512 = "7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==";
};
};
"anymatch-3.1.2" = {
@@ -1819,7 +1846,7 @@ let
version = "0.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
+ sha512 = "Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==";
};
};
"axios-0.27.2" = {
@@ -1831,13 +1858,13 @@ let
sha512 = "t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==";
};
};
- "babel-jest-27.5.1" = {
+ "babel-jest-28.1.0" = {
name = "babel-jest";
packageName = "babel-jest";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz";
- sha512 = "cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==";
+ url = "https://registry.npmjs.org/babel-jest/-/babel-jest-28.1.0.tgz";
+ sha512 = "zNKk0yhDZ6QUwfxh9k07GII6siNGMJWVUU49gmFj5gfdqDKLqa2RArXOF2CODp4Dr7dLxN2cvAV+667dGJ4b4w==";
};
};
"babel-plugin-dynamic-import-node-2.3.3" = {
@@ -1858,13 +1885,13 @@ let
sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==";
};
};
- "babel-plugin-jest-hoist-27.5.1" = {
+ "babel-plugin-jest-hoist-28.0.2" = {
name = "babel-plugin-jest-hoist";
packageName = "babel-plugin-jest-hoist";
- version = "27.5.1";
+ version = "28.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz";
- sha512 = "50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==";
+ url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.0.2.tgz";
+ sha512 = "Kizhn/ZL+68ZQHxSnHyuvJv8IchXD62KQxV77TBDV/xoBFBOfgRAk97GNs6hXdTTCiVES9nB2I6+7MXXrk5llQ==";
};
};
"babel-plugin-polyfill-corejs2-0.3.1" = {
@@ -1903,13 +1930,13 @@ let
sha512 = "M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==";
};
};
- "babel-preset-jest-27.5.1" = {
+ "babel-preset-jest-28.0.2" = {
name = "babel-preset-jest";
packageName = "babel-preset-jest";
- version = "27.5.1";
+ version = "28.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz";
- sha512 = "Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==";
+ url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.0.2.tgz";
+ sha512 = "sYzXIdgIXXroJTFeB3S6sNDWtlJ2dllCdTEsnZ65ACrMojj3hVNFRmnJ1HZtomGi+Be7aqpY/HJ92fr8OhKVkQ==";
};
};
"balanced-match-1.0.2" = {
@@ -1936,7 +1963,7 @@ let
version = "1.0.11";
src = fetchurl {
url = "https://registry.npmjs.org/bind-decorator/-/bind-decorator-1.0.11.tgz";
- sha1 = "e41bc06a1f65dd9cec476c91c5daf3978488252f";
+ sha512 = "yzkH0uog6Vv/vQ9+rhSKxecnqGUZHYncg7qS7voz3Q76+TAi1SGiOKk2mlOvusQnFz9Dc4BC/NMkeXu11YgjJg==";
};
};
"bindings-1.5.0" = {
@@ -1975,22 +2002,13 @@ let
sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==";
};
};
- "browser-process-hrtime-1.0.0" = {
- name = "browser-process-hrtime";
- packageName = "browser-process-hrtime";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz";
- sha512 = "9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==";
- };
- };
- "browserslist-4.20.2" = {
+ "browserslist-4.20.3" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.20.2";
+ version = "4.20.3";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz";
- sha512 = "CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.20.3.tgz";
+ sha512 = "NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==";
};
};
"bser-2.1.1" = {
@@ -2017,7 +2035,7 @@ let
version = "0.2.13";
src = fetchurl {
url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz";
- sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242";
+ sha512 = "VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==";
};
};
"buffer-from-1.1.2" = {
@@ -2065,13 +2083,13 @@ let
sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==";
};
};
- "caniuse-lite-1.0.30001332" = {
+ "caniuse-lite-1.0.30001344" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001332";
+ version = "1.0.30001344";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001332.tgz";
- sha512 = "10T30NYOEQtN6C11YGg411yebhvpnC6Z102+B95eAsN0oB6KUs01ivE8u+G6FMIRtIrVlYXhL+LUwQ3/hXwDWw==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001344.tgz";
+ sha512 = "0ZFjnlCaXNOAYcV7i+TtdKBp0L/3XEU2MF/x6Du1lrh+SRX4IfzIVL4HNJg5pB2PmFb8rszIGyOvsZnqqRoc2g==";
};
};
"chalk-2.4.2" = {
@@ -2119,13 +2137,13 @@ let
sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==";
};
};
- "ci-info-3.3.0" = {
+ "ci-info-3.3.1" = {
name = "ci-info";
packageName = "ci-info";
- version = "3.3.0";
+ version = "3.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz";
- sha512 = "riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==";
+ url = "https://registry.npmjs.org/ci-info/-/ci-info-3.3.1.tgz";
+ sha512 = "SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==";
};
};
"cjs-module-lexer-1.2.2" = {
@@ -2152,7 +2170,7 @@ let
version = "4.6.0";
src = fetchurl {
url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
- sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
+ sha512 = "QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==";
};
};
"code-point-at-1.1.0" = {
@@ -2161,7 +2179,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
- sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
+ sha512 = "RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==";
};
};
"collect-v8-coverage-1.0.1" = {
@@ -2206,7 +2224,7 @@ let
version = "1.1.3";
src = fetchurl {
url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
- sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
+ sha512 = "72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==";
};
};
"color-name-1.1.4" = {
@@ -2260,7 +2278,7 @@ let
version = "0.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
+ sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==";
};
};
"concat-stream-2.0.0" = {
@@ -2287,7 +2305,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
- sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
+ sha512 = "ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==";
};
};
"convert-source-map-1.8.0" = {
@@ -2299,22 +2317,22 @@ let
sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==";
};
};
- "core-js-3.22.2" = {
+ "core-js-3.22.7" = {
name = "core-js";
packageName = "core-js";
- version = "3.22.2";
+ version = "3.22.7";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.22.2.tgz";
- sha512 = "Z5I2vzDnEIqO2YhELVMFcL1An2CIsFe9Q7byZhs8c/QxummxZlAHw33TUHbIte987LkisOgL0LwQ1P9D6VISnA==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.22.7.tgz";
+ sha512 = "Jt8SReuDKVNZnZEzyEQT5eK6T2RRCXkfTq7Lo09kpm+fHjgGewSbNjV+Wt4yZMhPDdzz2x1ulI5z/w4nxpBseg==";
};
};
- "core-js-compat-3.22.2" = {
+ "core-js-compat-3.22.7" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.22.2";
+ version = "3.22.7";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.2.tgz";
- sha512 = "Fns9lU06ZJ07pdfmPMu7OnkIKGPKDzXKIiuGlSvHHapwqMUF2QnnsWwtueFZtSyZEilP0o6iUeHQwpn7LxtLUw==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.7.tgz";
+ sha512 = "uI9DAQKKiiE/mclIC5g4AjRpio27g+VMRhe6rQoz+q4Wm4L6A/fJhiLtBw+sfOpDG9wZ3O0pxIw7GbfOlBgjOA==";
};
};
"core-util-is-1.0.3" = {
@@ -2335,42 +2353,6 @@ let
sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==";
};
};
- "cssom-0.3.8" = {
- name = "cssom";
- packageName = "cssom";
- version = "0.3.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz";
- sha512 = "b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==";
- };
- };
- "cssom-0.4.4" = {
- name = "cssom";
- packageName = "cssom";
- version = "0.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz";
- sha512 = "p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==";
- };
- };
- "cssstyle-2.3.0" = {
- name = "cssstyle";
- packageName = "cssstyle";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz";
- sha512 = "AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==";
- };
- };
- "data-urls-2.0.0" = {
- name = "data-urls";
- packageName = "data-urls";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz";
- sha512 = "X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==";
- };
- };
"debounce-1.2.1" = {
name = "debounce";
packageName = "debounce";
@@ -2398,15 +2380,6 @@ let
sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==";
};
};
- "decimal.js-10.3.1" = {
- name = "decimal.js";
- packageName = "decimal.js";
- version = "10.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz";
- sha512 = "V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==";
- };
- };
"decompress-response-6.0.0" = {
name = "decompress-response";
packageName = "decompress-response";
@@ -2422,7 +2395,7 @@ let
version = "0.7.0";
src = fetchurl {
url = "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz";
- sha1 = "2495ddbaf6eb874abb0e1be9df22d2e5a544326c";
+ sha512 = "Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==";
};
};
"deep-extend-0.6.0" = {
@@ -2476,7 +2449,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
+ sha512 = "ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==";
};
};
"delegates-1.0.0" = {
@@ -2485,7 +2458,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
- sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
+ sha512 = "bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==";
};
};
"depd-2.0.0" = {
@@ -2533,6 +2506,15 @@ let
sha512 = "k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==";
};
};
+ "diff-sequences-28.0.2" = {
+ name = "diff-sequences";
+ packageName = "diff-sequences";
+ version = "28.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.0.2.tgz";
+ sha512 = "YtEoNynLDFCRznv/XDalsKGSZDoj0U5kLnXvY0JSq3nBboRrZXjD81+eSiwi+nzcZDwedMmcowcxNwwgFW23mQ==";
+ };
+ };
"dir-glob-3.0.1" = {
name = "dir-glob";
packageName = "dir-glob";
@@ -2551,15 +2533,6 @@ let
sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==";
};
};
- "domexception-2.0.1" = {
- name = "domexception";
- packageName = "domexception";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz";
- sha512 = "yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==";
- };
- };
"duplexify-4.1.2" = {
name = "duplexify";
packageName = "duplexify";
@@ -2575,25 +2548,25 @@ let
version = "1.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz";
- sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
+ sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==";
};
};
- "electron-to-chromium-1.4.118" = {
+ "electron-to-chromium-1.4.141" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.4.118";
+ version = "1.4.141";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.118.tgz";
- sha512 = "maZIKjnYDvF7Fs35nvVcyr44UcKNwybr93Oba2n3HkKDFAtk0svERkLN/HyczJDS3Fo4wU9th9fUQd09ZLtj1w==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.141.tgz";
+ sha512 = "mfBcbqc0qc6RlxrsIgLG2wCqkiPAjEezHxGTu7p3dHHFOurH4EjS9rFZndX5axC8264rI1Pcbw8uQP39oZckeA==";
};
};
- "emittery-0.8.1" = {
+ "emittery-0.10.2" = {
name = "emittery";
packageName = "emittery";
- version = "0.8.1";
+ version = "0.10.2";
src = fetchurl {
- url = "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz";
- sha512 = "uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==";
+ url = "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz";
+ sha512 = "aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==";
};
};
"emoji-regex-8.0.0" = {
@@ -2620,7 +2593,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz";
- sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59";
+ sha512 = "TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==";
};
};
"end-of-stream-1.4.4" = {
@@ -2656,7 +2629,7 @@ let
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz";
- sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988";
+ sha512 = "NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==";
};
};
"escape-string-regexp-1.0.5" = {
@@ -2665,7 +2638,7 @@ let
version = "1.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
+ sha512 = "vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==";
};
};
"escape-string-regexp-2.0.0" = {
@@ -2686,22 +2659,13 @@ let
sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==";
};
};
- "escodegen-2.0.0" = {
- name = "escodegen";
- packageName = "escodegen";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz";
- sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==";
- };
- };
- "eslint-8.14.0" = {
+ "eslint-8.16.0" = {
name = "eslint";
packageName = "eslint";
- version = "8.14.0";
+ version = "8.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-8.14.0.tgz";
- sha512 = "3/CE4aJX7LNEiE3i6FeodHmI/38GZtWCsAtsymScmzYapx8q1nVVb+eLcLSzATmCPXw5pT4TqVs1E0OmxAd9tw==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-8.16.0.tgz";
+ sha512 = "MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==";
};
};
"eslint-config-google-0.14.0" = {
@@ -2713,13 +2677,13 @@ let
sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==";
};
};
- "eslint-plugin-jest-26.1.5" = {
+ "eslint-plugin-jest-26.4.2" = {
name = "eslint-plugin-jest";
packageName = "eslint-plugin-jest";
- version = "26.1.5";
+ version = "26.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.1.5.tgz";
- sha512 = "su89aDuljL9bTjEufTXmKUMSFe2kZUL9bi7+woq+C2ukHZordhtfPm4Vg+tdioHBaKf8v3/FXW9uV0ksqhYGFw==";
+ url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.4.2.tgz";
+ sha512 = "0g7bl2j1zS58qIzSQmx1RABjiWgVKWSMRgr2bEUymyYNf5NX9TQqprvdmVbZh/3gfnmOrkQtZSIc1R4XKQGppA==";
};
};
"eslint-scope-5.1.1" = {
@@ -2767,13 +2731,13 @@ let
sha512 = "mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==";
};
};
- "espree-9.3.1" = {
+ "espree-9.3.2" = {
name = "espree";
packageName = "espree";
- version = "9.3.1";
+ version = "9.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz";
- sha512 = "bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==";
+ url = "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz";
+ sha512 = "D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==";
};
};
"esprima-4.0.1" = {
@@ -2836,7 +2800,7 @@ let
version = "1.8.1";
src = fetchurl {
url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz";
- sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887";
+ sha512 = "aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==";
};
};
"execa-5.1.1" = {
@@ -2854,7 +2818,7 @@ let
version = "0.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz";
- sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
+ sha512 = "Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==";
};
};
"expand-template-2.0.3" = {
@@ -2866,13 +2830,13 @@ let
sha512 = "XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==";
};
};
- "expect-27.5.1" = {
+ "expect-28.1.0" = {
name = "expect";
packageName = "expect";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz";
- sha512 = "E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==";
+ url = "https://registry.npmjs.org/expect/-/expect-28.1.0.tgz";
+ sha512 = "qFXKl8Pmxk8TBGfaFKRtcQjfXEnKAs+dmlxdwvukJZorwrAabT7M3h8oLOG01I2utEhkmUTi17CHaPBovZsKdw==";
};
};
"fast-deep-equal-3.1.3" = {
@@ -2908,7 +2872,7 @@ let
version = "2.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz";
- sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
+ sha512 = "DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==";
};
};
"fastq-1.13.0" = {
@@ -3019,22 +2983,13 @@ let
sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==";
};
};
- "follow-redirects-1.14.9" = {
+ "follow-redirects-1.15.1" = {
name = "follow-redirects";
packageName = "follow-redirects";
- version = "1.14.9";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz";
- sha512 = "MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==";
- };
- };
- "form-data-3.0.1" = {
- name = "form-data";
- packageName = "form-data";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz";
- sha512 = "RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==";
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz";
+ sha512 = "yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==";
};
};
"form-data-4.0.0" = {
@@ -3052,7 +3007,7 @@ let
version = "0.5.2";
src = fetchurl {
url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz";
- sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7";
+ sha512 = "zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==";
};
};
"fs-constants-1.0.0" = {
@@ -3070,7 +3025,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
- sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
+ sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==";
};
};
"fsevents-2.3.2" = {
@@ -3097,7 +3052,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz";
- sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327";
+ sha512 = "dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==";
};
};
"gauge-2.7.4" = {
@@ -3106,7 +3061,7 @@ let
version = "2.7.4";
src = fetchurl {
url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
- sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
+ sha512 = "14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==";
};
};
"gensync-1.0.0-beta.2" = {
@@ -3169,16 +3124,16 @@ let
version = "0.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz";
- sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce";
+ sha512 = "SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==";
};
};
- "glob-7.2.0" = {
+ "glob-7.2.3" = {
name = "glob";
packageName = "glob";
- version = "7.2.0";
+ version = "7.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz";
- sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==";
+ url = "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz";
+ sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==";
};
};
"glob-parent-5.1.2" = {
@@ -3208,13 +3163,13 @@ let
sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==";
};
};
- "globals-13.13.0" = {
+ "globals-13.15.0" = {
name = "globals";
packageName = "globals";
- version = "13.13.0";
+ version = "13.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-13.13.0.tgz";
- sha512 = "EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==";
+ url = "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz";
+ sha512 = "bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==";
};
};
"globby-11.1.0" = {
@@ -3232,7 +3187,7 @@ let
version = "0.1.7";
src = fetchurl {
url = "https://registry.npmjs.org/glossy/-/glossy-0.1.7.tgz";
- sha1 = "769b5984a96f6066ab9ea758224825ee6c210f0b";
+ sha512 = "mTCC51QFadK75MvAhrL5nPVIP291NjML1guo10Sa7Yj04tJU4V++Vgm780NIddg9etQD9D8FM67hFGqM8EE2HQ==";
};
};
"graceful-fs-4.2.10" = {
@@ -3307,15 +3262,6 @@ let
sha512 = "hx73jClhyk910sidBB7ERlnhMlFsJJIBqSVMFDwPN8o2v9nmp5KgLq1Xz1Bf1fCMMZ6mPrX159iG0VLy/fPMtQ==";
};
};
- "html-encoding-sniffer-2.0.1" = {
- name = "html-encoding-sniffer";
- packageName = "html-encoding-sniffer";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz";
- sha512 = "D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==";
- };
- };
"html-escaper-2.0.2" = {
name = "html-escaper";
packageName = "html-escaper";
@@ -3334,15 +3280,6 @@ let
sha512 = "FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==";
};
};
- "http-proxy-agent-4.0.1" = {
- name = "http-proxy-agent";
- packageName = "http-proxy-agent";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz";
- sha512 = "k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==";
- };
- };
"https-proxy-agent-5.0.1" = {
name = "https-proxy-agent";
packageName = "https-proxy-agent";
@@ -3361,22 +3298,13 @@ let
sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==";
};
};
- "humanize-duration-3.27.1" = {
+ "humanize-duration-3.27.2" = {
name = "humanize-duration";
packageName = "humanize-duration";
- version = "3.27.1";
+ version = "3.27.2";
src = fetchurl {
- url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.27.1.tgz";
- sha512 = "jCVkMl+EaM80rrMrAPl96SGG4NRac53UyI1o/yAzebDntEY6K6/Fj2HOjdPg8omTqIe5Y0wPBai2q5xXrIbarA==";
- };
- };
- "iconv-lite-0.4.24" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.24";
- src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz";
- sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==";
+ url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.27.2.tgz";
+ sha512 = "A15OmA3FLFRnehvF4ZMocsxTZYvHq4ze7L+AgR1DeHw0xC9vMd4euInY83uqGU9/XXKNnVIEeKc1R8G8nKqtzg==";
};
};
"ieee754-1.2.1" = {
@@ -3532,15 +3460,6 @@ let
sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==";
};
};
- "is-potential-custom-element-name-1.0.1" = {
- name = "is-potential-custom-element-name";
- packageName = "is-potential-custom-element-name";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz";
- sha512 = "bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==";
- };
- };
"is-stream-2.0.1" = {
name = "is-stream";
packageName = "is-stream";
@@ -3550,15 +3469,6 @@ let
sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==";
};
};
- "is-typedarray-1.0.0" = {
- name = "is-typedarray";
- packageName = "is-typedarray";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
- };
- };
"isarray-1.0.0" = {
name = "isarray";
packageName = "isarray";
@@ -3622,49 +3532,49 @@ let
sha512 = "r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==";
};
};
- "jest-27.5.1" = {
+ "jest-28.1.0" = {
name = "jest";
packageName = "jest";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz";
- sha512 = "Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==";
+ url = "https://registry.npmjs.org/jest/-/jest-28.1.0.tgz";
+ sha512 = "TZR+tHxopPhzw3c3560IJXZWLNHgpcz1Zh0w5A65vynLGNcg/5pZ+VildAd7+XGOu6jd58XMY/HNn0IkZIXVXg==";
};
};
- "jest-changed-files-27.5.1" = {
+ "jest-changed-files-28.0.2" = {
name = "jest-changed-files";
packageName = "jest-changed-files";
- version = "27.5.1";
+ version = "28.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz";
- sha512 = "buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==";
+ url = "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-28.0.2.tgz";
+ sha512 = "QX9u+5I2s54ZnGoMEjiM2WeBvJR2J7w/8ZUmH2um/WLAuGAYFQcsVXY9+1YL6k0H/AGUdH8pXUAv6erDqEsvIA==";
};
};
- "jest-circus-27.5.1" = {
+ "jest-circus-28.1.0" = {
name = "jest-circus";
packageName = "jest-circus";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz";
- sha512 = "D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==";
+ url = "https://registry.npmjs.org/jest-circus/-/jest-circus-28.1.0.tgz";
+ sha512 = "rNYfqfLC0L0zQKRKsg4n4J+W1A2fbyGH7Ss/kDIocp9KXD9iaL111glsLu7+Z7FHuZxwzInMDXq+N1ZIBkI/TQ==";
};
};
- "jest-cli-27.5.1" = {
+ "jest-cli-28.1.0" = {
name = "jest-cli";
packageName = "jest-cli";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz";
- sha512 = "Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==";
+ url = "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.0.tgz";
+ sha512 = "fDJRt6WPRriHrBsvvgb93OxgajHHsJbk4jZxiPqmZbMDRcHskfJBBfTyjFko0jjfprP544hOktdSi9HVgl4VUQ==";
};
};
- "jest-config-27.5.1" = {
+ "jest-config-28.1.0" = {
name = "jest-config";
packageName = "jest-config";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz";
- sha512 = "5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==";
+ url = "https://registry.npmjs.org/jest-config/-/jest-config-28.1.0.tgz";
+ sha512 = "aOV80E9LeWrmflp7hfZNn/zGA4QKv/xsn2w8QCBP0t0+YqObuCWTSgNbHJ0j9YsTuCO08ZR/wsvlxqqHX20iUA==";
};
};
"jest-diff-27.5.1" = {
@@ -3676,40 +3586,40 @@ let
sha512 = "m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==";
};
};
- "jest-docblock-27.5.1" = {
+ "jest-diff-28.1.0" = {
+ name = "jest-diff";
+ packageName = "jest-diff";
+ version = "28.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.0.tgz";
+ sha512 = "8eFd3U3OkIKRtlasXfiAQfbovgFgRDb0Ngcs2E+FMeBZ4rUezqIaGjuyggJBp+llosQXNEWofk/Sz4Hr5gMUhA==";
+ };
+ };
+ "jest-docblock-28.0.2" = {
name = "jest-docblock";
packageName = "jest-docblock";
- version = "27.5.1";
+ version = "28.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz";
- sha512 = "rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==";
+ url = "https://registry.npmjs.org/jest-docblock/-/jest-docblock-28.0.2.tgz";
+ sha512 = "FH10WWw5NxLoeSdQlJwu+MTiv60aXV/t8KEwIRGEv74WARE1cXIqh1vGdy2CraHuWOOrnzTWj/azQKqW4fO7xg==";
};
};
- "jest-each-27.5.1" = {
+ "jest-each-28.1.0" = {
name = "jest-each";
packageName = "jest-each";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz";
- sha512 = "1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==";
+ url = "https://registry.npmjs.org/jest-each/-/jest-each-28.1.0.tgz";
+ sha512 = "a/XX02xF5NTspceMpHujmOexvJ4GftpYXqr6HhhmKmExtMXsyIN/fvanQlt/BcgFoRKN4OCXxLQKth9/n6OPFg==";
};
};
- "jest-environment-jsdom-27.5.1" = {
- name = "jest-environment-jsdom";
- packageName = "jest-environment-jsdom";
- version = "27.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz";
- sha512 = "TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==";
- };
- };
- "jest-environment-node-27.5.1" = {
+ "jest-environment-node-28.1.0" = {
name = "jest-environment-node";
packageName = "jest-environment-node";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz";
- sha512 = "Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==";
+ url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.0.tgz";
+ sha512 = "gBLZNiyrPw9CSMlTXF1yJhaBgWDPVvH0Pq6bOEwGMXaYNzhzhw2kA/OijNF8egbCgDS0/veRv97249x2CX+udQ==";
};
};
"jest-get-type-27.5.1" = {
@@ -3721,31 +3631,31 @@ let
sha512 = "2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==";
};
};
- "jest-haste-map-27.5.1" = {
+ "jest-get-type-28.0.2" = {
+ name = "jest-get-type";
+ packageName = "jest-get-type";
+ version = "28.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz";
+ sha512 = "ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==";
+ };
+ };
+ "jest-haste-map-28.1.0" = {
name = "jest-haste-map";
packageName = "jest-haste-map";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz";
- sha512 = "7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==";
+ url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.0.tgz";
+ sha512 = "xyZ9sXV8PtKi6NCrJlmq53PyNVHzxmcfXNVvIRHpHmh1j/HChC4pwKgyjj7Z9us19JMw8PpQTJsFWOsIfT93Dw==";
};
};
- "jest-jasmine2-27.5.1" = {
- name = "jest-jasmine2";
- packageName = "jest-jasmine2";
- version = "27.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz";
- sha512 = "jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==";
- };
- };
- "jest-leak-detector-27.5.1" = {
+ "jest-leak-detector-28.1.0" = {
name = "jest-leak-detector";
packageName = "jest-leak-detector";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz";
- sha512 = "POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==";
+ url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-28.1.0.tgz";
+ sha512 = "uIJDQbxwEL2AMMs2xjhZl2hw8s77c3wrPaQ9v6tXJLGaaQ+4QrNJH5vuw7hA7w/uGT/iJ42a83opAqxGHeyRIA==";
};
};
"jest-matcher-utils-27.5.1" = {
@@ -3757,22 +3667,31 @@ let
sha512 = "z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==";
};
};
- "jest-message-util-27.5.1" = {
- name = "jest-message-util";
- packageName = "jest-message-util";
- version = "27.5.1";
+ "jest-matcher-utils-28.1.0" = {
+ name = "jest-matcher-utils";
+ packageName = "jest-matcher-utils";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz";
- sha512 = "rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==";
+ url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.0.tgz";
+ sha512 = "onnax0n2uTLRQFKAjC7TuaxibrPSvZgKTcSCnNUz/tOjJ9UhxNm7ZmPpoQavmTDUjXvUQ8KesWk2/VdrxIFzTQ==";
};
};
- "jest-mock-27.5.1" = {
+ "jest-message-util-28.1.0" = {
+ name = "jest-message-util";
+ packageName = "jest-message-util";
+ version = "28.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.0.tgz";
+ sha512 = "RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw==";
+ };
+ };
+ "jest-mock-28.1.0" = {
name = "jest-mock";
packageName = "jest-mock";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz";
- sha512 = "K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==";
+ url = "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.0.tgz";
+ sha512 = "H7BrhggNn77WhdL7O1apG0Q/iwl0Bdd5E1ydhCJzL3oBLh/UYxAwR3EJLsBZ9XA3ZU4PA3UNw4tQjduBTCTmLw==";
};
};
"jest-pnp-resolver-1.2.2" = {
@@ -3784,103 +3703,94 @@ let
sha512 = "olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==";
};
};
- "jest-regex-util-27.5.1" = {
+ "jest-regex-util-28.0.2" = {
name = "jest-regex-util";
packageName = "jest-regex-util";
- version = "27.5.1";
+ version = "28.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz";
- sha512 = "4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==";
+ url = "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz";
+ sha512 = "4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==";
};
};
- "jest-resolve-27.5.1" = {
+ "jest-resolve-28.1.0" = {
name = "jest-resolve";
packageName = "jest-resolve";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz";
- sha512 = "FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==";
+ url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-28.1.0.tgz";
+ sha512 = "vvfN7+tPNnnhDvISuzD1P+CRVP8cK0FHXRwPAcdDaQv4zgvwvag2n55/h5VjYcM5UJG7L4TwE5tZlzcI0X2Lhw==";
};
};
- "jest-resolve-dependencies-27.5.1" = {
+ "jest-resolve-dependencies-28.1.0" = {
name = "jest-resolve-dependencies";
packageName = "jest-resolve-dependencies";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz";
- sha512 = "QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==";
+ url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.0.tgz";
+ sha512 = "Ue1VYoSZquPwEvng7Uefw8RmZR+me/1kr30H2jMINjGeHgeO/JgrR6wxj2ofkJ7KSAA11W3cOrhNCbj5Dqqd9g==";
};
};
- "jest-runner-27.5.1" = {
+ "jest-runner-28.1.0" = {
name = "jest-runner";
packageName = "jest-runner";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz";
- sha512 = "g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==";
+ url = "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.0.tgz";
+ sha512 = "FBpmuh1HB2dsLklAlRdOxNTTHKFR6G1Qmd80pVDvwbZXTriqjWqjei5DKFC1UlM732KjYcE6yuCdiF0WUCOS2w==";
};
};
- "jest-runtime-27.5.1" = {
+ "jest-runtime-28.1.0" = {
name = "jest-runtime";
packageName = "jest-runtime";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz";
- sha512 = "o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==";
+ url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.0.tgz";
+ sha512 = "wNYDiwhdH/TV3agaIyVF0lsJ33MhyujOe+lNTUiolqKt8pchy1Hq4+tDMGbtD5P/oNLA3zYrpx73T9dMTOCAcg==";
};
};
- "jest-serializer-27.5.1" = {
- name = "jest-serializer";
- packageName = "jest-serializer";
- version = "27.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz";
- sha512 = "jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==";
- };
- };
- "jest-snapshot-27.5.1" = {
+ "jest-snapshot-28.1.0" = {
name = "jest-snapshot";
packageName = "jest-snapshot";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz";
- sha512 = "yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==";
+ url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.0.tgz";
+ sha512 = "ex49M2ZrZsUyQLpLGxQtDbahvgBjlLPgklkqGM0hq/F7W/f8DyqZxVHjdy19QKBm4O93eDp+H5S23EiTbbUmHw==";
};
};
- "jest-util-27.5.1" = {
+ "jest-util-28.1.0" = {
name = "jest-util";
packageName = "jest-util";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz";
- sha512 = "Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==";
+ url = "https://registry.npmjs.org/jest-util/-/jest-util-28.1.0.tgz";
+ sha512 = "qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA==";
};
};
- "jest-validate-27.5.1" = {
+ "jest-validate-28.1.0" = {
name = "jest-validate";
packageName = "jest-validate";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz";
- sha512 = "thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==";
+ url = "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.0.tgz";
+ sha512 = "Lly7CJYih3vQBfjLeANGgBSBJ7pEa18cxpQfQEq2go2xyEzehnHfQTjoUia8xUv4x4J80XKFIDwJJThXtRFQXQ==";
};
};
- "jest-watcher-27.5.1" = {
+ "jest-watcher-28.1.0" = {
name = "jest-watcher";
packageName = "jest-watcher";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz";
- sha512 = "z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==";
+ url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.0.tgz";
+ sha512 = "tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA==";
};
};
- "jest-worker-27.5.1" = {
+ "jest-worker-28.1.0" = {
name = "jest-worker";
packageName = "jest-worker";
- version = "27.5.1";
+ version = "28.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz";
- sha512 = "7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==";
+ url = "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.0.tgz";
+ sha512 = "ZHwM6mNwaWBR52Snff8ZvsCTqQsvhCxP/bT1I6T6DAnb6ygkshsyLQIMxFwHpYxht0HOoqt23JlC01viI7T03A==";
};
};
"js-sdsl-2.1.4" = {
@@ -3919,15 +3829,6 @@ let
sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==";
};
};
- "jsdom-16.7.0" = {
- name = "jsdom";
- packageName = "jsdom";
- version = "16.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz";
- sha512 = "u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==";
- };
- };
"jsesc-0.5.0" = {
name = "jsesc";
packageName = "jsesc";
@@ -4027,15 +3928,6 @@ let
sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==";
};
};
- "levn-0.3.0" = {
- name = "levn";
- packageName = "levn";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz";
- sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee";
- };
- };
"levn-0.4.1" = {
name = "levn";
packageName = "levn";
@@ -4063,15 +3955,6 @@ let
sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==";
};
};
- "lodash-4.17.21" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.17.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz";
- sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==";
- };
- };
"lodash.debounce-4.0.8" = {
name = "lodash.debounce";
packageName = "lodash.debounce";
@@ -4306,13 +4189,13 @@ let
sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==";
};
};
- "nan-2.15.0" = {
+ "nan-2.16.0" = {
name = "nan";
packageName = "nan";
- version = "2.15.0";
+ version = "2.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz";
- sha512 = "8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==";
+ url = "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz";
+ sha512 = "UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==";
};
};
"napi-build-utils-1.0.2" = {
@@ -4333,13 +4216,13 @@ let
sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7";
};
};
- "node-abi-3.15.0" = {
+ "node-abi-3.22.0" = {
name = "node-abi";
packageName = "node-abi";
- version = "3.15.0";
+ version = "3.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-abi/-/node-abi-3.15.0.tgz";
- sha512 = "Ic6z/j6I9RLm4ov7npo1I48UQr2BEyFCqh6p7S1dhEx9jPO0GPGq/e2Rb7x7DroQrmiVMz/Bw1vJm9sPAl2nxA==";
+ url = "https://registry.npmjs.org/node-abi/-/node-abi-3.22.0.tgz";
+ sha512 = "u4uAs/4Zzmp/jjsD9cyFYDXeISfUWaAVWshPmDZOFOv4Xl4SbzTXm53I04C2uRueYJ+0t5PEtLH/owbn2Npf/w==";
};
};
"node-int64-0.4.0" = {
@@ -4351,13 +4234,13 @@ let
sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b";
};
};
- "node-releases-2.0.3" = {
+ "node-releases-2.0.5" = {
name = "node-releases";
packageName = "node-releases";
- version = "2.0.3";
+ version = "2.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.3.tgz";
- sha512 = "maHFz6OLqYxz+VQyCAtA3PTX4UP/53pa05fyDNc9CwjvJ0yEh6+xBwKsgCxMNhS8taUKBFYxfuiaD9U/55iFaw==";
+ url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz";
+ sha512 = "U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==";
};
};
"normalize-path-3.0.0" = {
@@ -4405,15 +4288,6 @@ let
sha1 = "097b602b53422a522c1afb8790318336941a011d";
};
};
- "nwsapi-2.2.0" = {
- name = "nwsapi";
- packageName = "nwsapi";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz";
- sha512 = "h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==";
- };
- };
"object-assign-4.1.1" = {
name = "object-assign";
packageName = "object-assign";
@@ -4486,15 +4360,6 @@ let
sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==";
};
};
- "optionator-0.8.3" = {
- name = "optionator";
- packageName = "optionator";
- version = "0.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz";
- sha512 = "+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==";
- };
- };
"optionator-0.9.1" = {
name = "optionator";
packageName = "optionator";
@@ -4549,15 +4414,6 @@ let
sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==";
};
};
- "parse5-6.0.1" = {
- name = "parse5";
- packageName = "parse5";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz";
- sha512 = "Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==";
- };
- };
"parseurl-1.3.3" = {
name = "parseurl";
packageName = "parseurl";
@@ -4657,15 +4513,6 @@ let
sha512 = "CNcMgI1xBypOyGqjp3wOc8AAo1nMhZS3Cwd3iHIxOdAUbb+YxdNuM4Z5iIrZ8RLvOsf3F3bl7b7xGq6DjQoNYA==";
};
};
- "prelude-ls-1.1.2" = {
- name = "prelude-ls";
- packageName = "prelude-ls";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz";
- sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54";
- };
- };
"prelude-ls-1.2.1" = {
name = "prelude-ls";
packageName = "prelude-ls";
@@ -4684,6 +4531,15 @@ let
sha512 = "Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==";
};
};
+ "pretty-format-28.1.0" = {
+ name = "pretty-format";
+ packageName = "pretty-format";
+ version = "28.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.0.tgz";
+ sha512 = "79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q==";
+ };
+ };
"process-nextick-args-2.0.1" = {
name = "process-nextick-args";
packageName = "process-nextick-args";
@@ -4702,15 +4558,6 @@ let
sha512 = "NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==";
};
};
- "psl-1.8.0" = {
- name = "psl";
- packageName = "psl";
- version = "1.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz";
- sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==";
- };
- };
"pump-3.0.0" = {
name = "pump";
packageName = "pump";
@@ -4765,6 +4612,15 @@ let
sha512 = "w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==";
};
};
+ "react-is-18.1.0" = {
+ name = "react-is";
+ packageName = "react-is";
+ version = "18.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz";
+ sha512 = "Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==";
+ };
+ };
"readable-stream-2.3.7" = {
name = "readable-stream";
packageName = "readable-stream";
@@ -4990,24 +4846,6 @@ let
sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg==";
};
};
- "safer-buffer-2.1.2" = {
- name = "safer-buffer";
- packageName = "safer-buffer";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
- sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
- };
- };
- "saxes-5.0.1" = {
- name = "saxes";
- packageName = "saxes";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz";
- sha512 = "5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==";
- };
- };
"semver-6.3.0" = {
name = "semver";
packageName = "semver";
@@ -5161,15 +4999,6 @@ let
sha1 = "ba45a923034d6cf41b1a27aebe7128282c8d551f";
};
};
- "source-map-0.5.7" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
- sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
- };
- };
"source-map-0.6.1" = {
name = "source-map";
packageName = "source-map";
@@ -5179,13 +5008,13 @@ let
sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==";
};
};
- "source-map-0.7.3" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.7.3";
+ "source-map-support-0.5.13" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz";
- sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==";
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz";
+ sha512 = "SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==";
};
};
"source-map-support-0.5.21" = {
@@ -5395,15 +5224,6 @@ let
sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==";
};
};
- "symbol-tree-3.2.4" = {
- name = "symbol-tree";
- packageName = "symbol-tree";
- version = "3.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz";
- sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==";
- };
- };
"tar-fs-2.1.1" = {
name = "tar-fs";
packageName = "tar-fs";
@@ -5530,24 +5350,6 @@ let
sha512 = "o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==";
};
};
- "tough-cookie-4.0.0" = {
- name = "tough-cookie";
- packageName = "tough-cookie";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz";
- sha512 = "tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==";
- };
- };
- "tr46-2.1.0" = {
- name = "tr46";
- packageName = "tr46";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz";
- sha512 = "15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==";
- };
- };
"traverse-chain-0.1.0" = {
name = "traverse-chain";
packageName = "traverse-chain";
@@ -5593,15 +5395,6 @@ let
sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
};
};
- "type-check-0.3.2" = {
- name = "type-check";
- packageName = "type-check";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz";
- sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72";
- };
- };
"type-check-0.4.0" = {
name = "type-check";
packageName = "type-check";
@@ -5647,22 +5440,13 @@ let
sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
};
};
- "typedarray-to-buffer-3.1.5" = {
- name = "typedarray-to-buffer";
- packageName = "typedarray-to-buffer";
- version = "3.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz";
- sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==";
- };
- };
- "typescript-4.6.3" = {
+ "typescript-4.7.2" = {
name = "typescript";
packageName = "typescript";
- version = "4.6.3";
+ version = "4.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz";
- sha512 = "yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.7.2.tgz";
+ sha512 = "Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A==";
};
};
"unicode-canonical-property-names-ecmascript-2.0.0" = {
@@ -5701,15 +5485,6 @@ let
sha512 = "5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==";
};
};
- "universalify-0.1.2" = {
- name = "universalify";
- packageName = "universalify";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz";
- sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==";
- };
- };
"unix-dgram-2.0.4" = {
name = "unix-dgram";
packageName = "unix-dgram";
@@ -5755,31 +5530,13 @@ let
sha512 = "l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==";
};
};
- "v8-to-istanbul-8.1.1" = {
+ "v8-to-istanbul-9.0.0" = {
name = "v8-to-istanbul";
packageName = "v8-to-istanbul";
- version = "8.1.1";
+ version = "9.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz";
- sha512 = "FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==";
- };
- };
- "w3c-hr-time-1.0.2" = {
- name = "w3c-hr-time";
- packageName = "w3c-hr-time";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz";
- sha512 = "z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==";
- };
- };
- "w3c-xmlserializer-2.0.0" = {
- name = "w3c-xmlserializer";
- packageName = "w3c-xmlserializer";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz";
- sha512 = "4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==";
+ url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.0.0.tgz";
+ sha512 = "HcvgY/xaRm7isYmyx+lFKA4uQmfUbN0J4M0nNItvzTvH/iQ9kW5j/t4YSR+Ge323/lrgDAWJoF46tzGQHwBHFw==";
};
};
"walker-1.0.8" = {
@@ -5791,51 +5548,6 @@ let
sha512 = "ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==";
};
};
- "webidl-conversions-5.0.0" = {
- name = "webidl-conversions";
- packageName = "webidl-conversions";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz";
- sha512 = "VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==";
- };
- };
- "webidl-conversions-6.1.0" = {
- name = "webidl-conversions";
- packageName = "webidl-conversions";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz";
- sha512 = "qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==";
- };
- };
- "whatwg-encoding-1.0.5" = {
- name = "whatwg-encoding";
- packageName = "whatwg-encoding";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz";
- sha512 = "b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==";
- };
- };
- "whatwg-mimetype-2.3.0" = {
- name = "whatwg-mimetype";
- packageName = "whatwg-mimetype";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz";
- sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==";
- };
- };
- "whatwg-url-8.7.0" = {
- name = "whatwg-url";
- packageName = "whatwg-url";
- version = "8.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz";
- sha512 = "gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==";
- };
- };
"which-2.0.2" = {
name = "which";
packageName = "which";
@@ -5908,49 +5620,31 @@ let
sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
};
};
- "write-file-atomic-3.0.3" = {
+ "write-file-atomic-4.0.1" = {
name = "write-file-atomic";
packageName = "write-file-atomic";
- version = "3.0.3";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz";
- sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==";
+ url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.1.tgz";
+ sha512 = "nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ==";
};
};
- "ws-7.5.7" = {
+ "ws-7.5.8" = {
name = "ws";
packageName = "ws";
- version = "7.5.7";
+ version = "7.5.8";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz";
- sha512 = "KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==";
+ url = "https://registry.npmjs.org/ws/-/ws-7.5.8.tgz";
+ sha512 = "ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==";
};
};
- "ws-8.5.0" = {
+ "ws-8.7.0" = {
name = "ws";
packageName = "ws";
- version = "8.5.0";
+ version = "8.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz";
- sha512 = "BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==";
- };
- };
- "xml-name-validator-3.0.0" = {
- name = "xml-name-validator";
- packageName = "xml-name-validator";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz";
- sha512 = "A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==";
- };
- };
- "xmlchars-2.2.0" = {
- name = "xmlchars";
- packageName = "xmlchars";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz";
- sha512 = "JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==";
+ url = "https://registry.npmjs.org/ws/-/ws-8.7.0.tgz";
+ sha512 = "c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==";
};
};
"xtend-4.0.2" = {
@@ -5980,126 +5674,131 @@ let
sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==";
};
};
- "yargs-16.2.0" = {
+ "yargs-17.5.1" = {
name = "yargs";
packageName = "yargs";
- version = "16.2.0";
+ version = "17.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz";
- sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==";
+ url = "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz";
+ sha512 = "t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==";
};
};
- "yargs-parser-20.2.9" = {
+ "yargs-parser-21.0.1" = {
name = "yargs-parser";
packageName = "yargs-parser";
- version = "20.2.9";
+ version = "21.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz";
- sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==";
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz";
+ sha512 = "9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==";
};
};
- "zigbee-herdsman-0.14.27" = {
+ "zigbee-herdsman-0.14.34" = {
name = "zigbee-herdsman";
packageName = "zigbee-herdsman";
- version = "0.14.27";
+ version = "0.14.34";
src = fetchurl {
- url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.27.tgz";
- sha512 = "B7Ofk4GPMwFMZS4KBvUu9IW3C7h5+9Ly6O6M2cXTeMdL2fiyZB3Tpzs7fGscevSbCpnkEOSI4xpK+MeVMwH/Og==";
+ url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.34.tgz";
+ sha512 = "ZUoIxfDeQzPIdYzEwYWiEH3ZwD3yRyddFmZCMPOAW5NXIK0lZU4UvfqSmHRUyRXTxtJWk6FTFsomwNBSwkk58Q==";
};
};
- "zigbee-herdsman-converters-14.0.504" = {
+ "zigbee-herdsman-converters-14.0.533" = {
name = "zigbee-herdsman-converters";
packageName = "zigbee-herdsman-converters";
- version = "14.0.504";
+ version = "14.0.533";
src = fetchurl {
- url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.504.tgz";
- sha512 = "StMDWFt4DBhrgMvapiOqzurMBW02bIbjS1ul8EaiNBYA91cg9qUrTSmJssuZKEPTXs1I8yS7X2OGS8Kzja4z4Q==";
+ url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.533.tgz";
+ sha512 = "3qUvAGX+MB0YjEiKPhq8ol6bWQpmixiOLAJ1hHu/ge5EfaoiyTR02LOFRV2zEBL6TCno1fP9ihPYQy37AfbKUg==";
};
};
- "zigbee2mqtt-frontend-0.6.83" = {
+ "zigbee2mqtt-frontend-0.6.97" = {
name = "zigbee2mqtt-frontend";
packageName = "zigbee2mqtt-frontend";
- version = "0.6.83";
+ version = "0.6.97";
src = fetchurl {
- url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.83.tgz";
- sha512 = "I44236qdpo/dSVpKyVV54RTCmb6BNpLXpZ414DOIBXXqIhseZhQEx7WC8UZ/ZtxxORBAd8E9LCYp5eWOb+zoNQ==";
+ url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.97.tgz";
+ sha512 = "cxbcyzrLMIFAS5w40vQuWDGGh4KJjXk8GovTsd5oO6/sNxXiJ3NQj9eBKwVPP14XoONMOSOyqf4YGjLJOfRiuQ==";
};
};
};
args = {
name = "zigbee2mqtt";
packageName = "zigbee2mqtt";
- version = "1.25.1";
+ version = "1.25.2";
src = ./.;
dependencies = [
- sources."@ampproject/remapping-2.1.2"
+ sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.7"
- (sources."@babel/core-7.17.9" // {
+ sources."@babel/compat-data-7.17.10"
+ (sources."@babel/core-7.18.2" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.17.9"
+ (sources."@babel/generator-7.18.2" // {
+ dependencies = [
+ sources."@jridgewell/gen-mapping-0.3.1"
+ ];
+ })
sources."@babel/helper-annotate-as-pure-7.16.7"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7"
- (sources."@babel/helper-compilation-targets-7.17.7" // {
+ (sources."@babel/helper-compilation-targets-7.18.2" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.17.9"
- sources."@babel/helper-create-regexp-features-plugin-7.17.0"
+ sources."@babel/helper-create-class-features-plugin-7.18.0"
+ sources."@babel/helper-create-regexp-features-plugin-7.17.12"
(sources."@babel/helper-define-polyfill-provider-0.3.1" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-environment-visitor-7.18.2"
sources."@babel/helper-explode-assignable-expression-7.16.7"
sources."@babel/helper-function-name-7.17.9"
sources."@babel/helper-hoist-variables-7.16.7"
sources."@babel/helper-member-expression-to-functions-7.17.7"
sources."@babel/helper-module-imports-7.16.7"
- sources."@babel/helper-module-transforms-7.17.7"
+ sources."@babel/helper-module-transforms-7.18.0"
sources."@babel/helper-optimise-call-expression-7.16.7"
- sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-plugin-utils-7.17.12"
sources."@babel/helper-remap-async-to-generator-7.16.8"
- sources."@babel/helper-replace-supers-7.16.7"
- sources."@babel/helper-simple-access-7.17.7"
+ sources."@babel/helper-replace-supers-7.18.2"
+ sources."@babel/helper-simple-access-7.18.2"
sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0"
sources."@babel/helper-split-export-declaration-7.16.7"
sources."@babel/helper-validator-identifier-7.16.7"
sources."@babel/helper-validator-option-7.16.7"
sources."@babel/helper-wrap-function-7.16.8"
- sources."@babel/helpers-7.17.9"
- sources."@babel/highlight-7.17.9"
- sources."@babel/parser-7.17.9"
- sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7"
- sources."@babel/plugin-proposal-async-generator-functions-7.16.8"
- sources."@babel/plugin-proposal-class-properties-7.16.7"
- sources."@babel/plugin-proposal-class-static-block-7.17.6"
- sources."@babel/plugin-proposal-decorators-7.17.9"
+ sources."@babel/helpers-7.18.2"
+ sources."@babel/highlight-7.17.12"
+ sources."@babel/parser-7.18.3"
+ sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12"
+ sources."@babel/plugin-proposal-async-generator-functions-7.17.12"
+ sources."@babel/plugin-proposal-class-properties-7.17.12"
+ sources."@babel/plugin-proposal-class-static-block-7.18.0"
+ sources."@babel/plugin-proposal-decorators-7.18.2"
sources."@babel/plugin-proposal-dynamic-import-7.16.7"
- sources."@babel/plugin-proposal-export-namespace-from-7.16.7"
- sources."@babel/plugin-proposal-json-strings-7.16.7"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7"
+ sources."@babel/plugin-proposal-export-namespace-from-7.17.12"
+ sources."@babel/plugin-proposal-json-strings-7.17.12"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.17.12"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.17.12"
sources."@babel/plugin-proposal-numeric-separator-7.16.7"
- sources."@babel/plugin-proposal-object-rest-spread-7.17.3"
+ sources."@babel/plugin-proposal-object-rest-spread-7.18.0"
sources."@babel/plugin-proposal-optional-catch-binding-7.16.7"
- sources."@babel/plugin-proposal-optional-chaining-7.16.7"
- sources."@babel/plugin-proposal-private-methods-7.16.11"
- sources."@babel/plugin-proposal-private-property-in-object-7.16.7"
- sources."@babel/plugin-proposal-unicode-property-regex-7.16.7"
+ sources."@babel/plugin-proposal-optional-chaining-7.17.12"
+ sources."@babel/plugin-proposal-private-methods-7.17.12"
+ sources."@babel/plugin-proposal-private-property-in-object-7.17.12"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.17.12"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-bigint-7.8.3"
sources."@babel/plugin-syntax-class-properties-7.12.13"
sources."@babel/plugin-syntax-class-static-block-7.14.5"
- sources."@babel/plugin-syntax-decorators-7.17.0"
+ sources."@babel/plugin-syntax-decorators-7.17.12"
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
+ sources."@babel/plugin-syntax-import-assertions-7.17.12"
sources."@babel/plugin-syntax-import-meta-7.10.4"
sources."@babel/plugin-syntax-json-strings-7.8.3"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
@@ -6110,58 +5809,58 @@ let
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
sources."@babel/plugin-syntax-top-level-await-7.14.5"
- sources."@babel/plugin-syntax-typescript-7.16.7"
- sources."@babel/plugin-transform-arrow-functions-7.16.7"
- sources."@babel/plugin-transform-async-to-generator-7.16.8"
+ sources."@babel/plugin-syntax-typescript-7.17.12"
+ sources."@babel/plugin-transform-arrow-functions-7.17.12"
+ sources."@babel/plugin-transform-async-to-generator-7.17.12"
sources."@babel/plugin-transform-block-scoped-functions-7.16.7"
- sources."@babel/plugin-transform-block-scoping-7.16.7"
- sources."@babel/plugin-transform-classes-7.16.7"
- sources."@babel/plugin-transform-computed-properties-7.16.7"
- sources."@babel/plugin-transform-destructuring-7.17.7"
+ sources."@babel/plugin-transform-block-scoping-7.17.12"
+ sources."@babel/plugin-transform-classes-7.17.12"
+ sources."@babel/plugin-transform-computed-properties-7.17.12"
+ sources."@babel/plugin-transform-destructuring-7.18.0"
sources."@babel/plugin-transform-dotall-regex-7.16.7"
- sources."@babel/plugin-transform-duplicate-keys-7.16.7"
+ sources."@babel/plugin-transform-duplicate-keys-7.17.12"
sources."@babel/plugin-transform-exponentiation-operator-7.16.7"
- sources."@babel/plugin-transform-for-of-7.16.7"
+ sources."@babel/plugin-transform-for-of-7.18.1"
sources."@babel/plugin-transform-function-name-7.16.7"
- sources."@babel/plugin-transform-literals-7.16.7"
+ sources."@babel/plugin-transform-literals-7.17.12"
sources."@babel/plugin-transform-member-expression-literals-7.16.7"
- sources."@babel/plugin-transform-modules-amd-7.16.7"
- sources."@babel/plugin-transform-modules-commonjs-7.17.9"
- sources."@babel/plugin-transform-modules-systemjs-7.17.8"
- sources."@babel/plugin-transform-modules-umd-7.16.7"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8"
- sources."@babel/plugin-transform-new-target-7.16.7"
+ sources."@babel/plugin-transform-modules-amd-7.18.0"
+ sources."@babel/plugin-transform-modules-commonjs-7.18.2"
+ sources."@babel/plugin-transform-modules-systemjs-7.18.0"
+ sources."@babel/plugin-transform-modules-umd-7.18.0"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12"
+ sources."@babel/plugin-transform-new-target-7.17.12"
sources."@babel/plugin-transform-object-super-7.16.7"
- sources."@babel/plugin-transform-parameters-7.16.7"
+ sources."@babel/plugin-transform-parameters-7.17.12"
sources."@babel/plugin-transform-property-literals-7.16.7"
- sources."@babel/plugin-transform-regenerator-7.17.9"
- sources."@babel/plugin-transform-reserved-words-7.16.7"
+ sources."@babel/plugin-transform-regenerator-7.18.0"
+ sources."@babel/plugin-transform-reserved-words-7.17.12"
sources."@babel/plugin-transform-shorthand-properties-7.16.7"
- sources."@babel/plugin-transform-spread-7.16.7"
+ sources."@babel/plugin-transform-spread-7.17.12"
sources."@babel/plugin-transform-sticky-regex-7.16.7"
- sources."@babel/plugin-transform-template-literals-7.16.7"
- sources."@babel/plugin-transform-typeof-symbol-7.16.7"
- sources."@babel/plugin-transform-typescript-7.16.8"
+ sources."@babel/plugin-transform-template-literals-7.18.2"
+ sources."@babel/plugin-transform-typeof-symbol-7.17.12"
+ sources."@babel/plugin-transform-typescript-7.18.1"
sources."@babel/plugin-transform-unicode-escapes-7.16.7"
sources."@babel/plugin-transform-unicode-regex-7.16.7"
- (sources."@babel/preset-env-7.16.11" // {
+ (sources."@babel/preset-env-7.18.2" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/preset-modules-0.1.5"
- sources."@babel/preset-typescript-7.16.7"
- sources."@babel/runtime-7.17.9"
+ sources."@babel/preset-typescript-7.17.12"
+ sources."@babel/runtime-7.18.3"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.17.9"
- sources."@babel/types-7.17.0"
+ sources."@babel/traverse-7.18.2"
+ sources."@babel/types-7.18.2"
sources."@bcoe/v8-coverage-0.2.3"
sources."@colors/colors-1.5.0"
sources."@dabh/diagnostics-2.0.3"
- (sources."@eslint/eslintrc-1.2.2" // {
+ (sources."@eslint/eslintrc-1.3.0" // {
dependencies = [
sources."ajv-6.12.6"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
sources."json-schema-traverse-0.4.1"
sources."type-fest-0.20.2"
];
@@ -6175,7 +5874,7 @@ let
];
})
sources."@istanbuljs/schema-0.1.3"
- (sources."@jest/console-27.5.1" // {
+ (sources."@jest/console-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -6185,7 +5884,28 @@ let
sources."supports-color-7.2.0"
];
})
- (sources."@jest/core-27.5.1" // {
+ (sources."@jest/core-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."has-flag-4.0.0"
+ (sources."pretty-format-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-5.2.0"
+ ];
+ })
+ sources."react-is-18.1.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ sources."@jest/environment-28.1.0"
+ sources."@jest/expect-28.1.0"
+ sources."@jest/expect-utils-28.1.0"
+ sources."@jest/fake-timers-28.1.0"
+ sources."@jest/globals-28.1.0"
+ (sources."@jest/reporters-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -6195,39 +5915,11 @@ let
sources."supports-color-7.2.0"
];
})
- sources."@jest/environment-27.5.1"
- sources."@jest/fake-timers-27.5.1"
- sources."@jest/globals-27.5.1"
- (sources."@jest/reporters-27.5.1" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.2"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."has-flag-4.0.0"
- sources."source-map-0.6.1"
- sources."supports-color-7.2.0"
- ];
- })
- (sources."@jest/source-map-27.5.1" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."@jest/test-result-27.5.1"
- sources."@jest/test-sequencer-27.5.1"
- (sources."@jest/transform-27.5.1" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.2"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."has-flag-4.0.0"
- sources."source-map-0.6.1"
- sources."supports-color-7.2.0"
- ];
- })
- (sources."@jest/types-27.5.1" // {
+ sources."@jest/schemas-28.0.2"
+ sources."@jest/source-map-28.0.2"
+ sources."@jest/test-result-28.1.0"
+ sources."@jest/test-sequencer-28.1.0"
+ (sources."@jest/transform-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -6237,9 +5929,21 @@ let
sources."supports-color-7.2.0"
];
})
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ (sources."@jest/types-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ sources."@jridgewell/gen-mapping-0.1.1"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -6254,13 +5958,13 @@ let
sources."@serialport/parser-ready-9.2.4"
sources."@serialport/parser-regex-9.2.4"
sources."@serialport/stream-9.2.4"
+ sources."@sinclair/typebox-0.23.5"
sources."@sinonjs/commons-1.8.3"
- sources."@sinonjs/fake-timers-8.1.0"
- sources."@tootallnate/once-1.1.2"
+ sources."@sinonjs/fake-timers-9.1.2"
sources."@types/babel__core-7.1.19"
sources."@types/babel__generator-7.6.4"
sources."@types/babel__template-7.4.1"
- sources."@types/babel__traverse-7.17.0"
+ sources."@types/babel__traverse-7.17.1"
sources."@types/debounce-1.2.1"
sources."@types/finalhandler-1.1.1"
sources."@types/glob-7.2.0"
@@ -6269,35 +5973,28 @@ let
sources."@types/istanbul-lib-coverage-2.0.4"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-3.0.1"
- sources."@types/jest-27.4.1"
+ sources."@types/jest-27.5.1"
sources."@types/js-yaml-4.0.5"
sources."@types/json-schema-7.0.11"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.25"
+ sources."@types/node-17.0.36"
sources."@types/object-assign-deep-0.4.0"
- sources."@types/prettier-2.6.0"
+ sources."@types/prettier-2.6.3"
sources."@types/rimraf-3.0.2"
sources."@types/stack-utils-2.0.1"
sources."@types/ws-8.5.3"
- sources."@types/yargs-16.0.4"
+ sources."@types/yargs-17.0.10"
sources."@types/yargs-parser-21.0.0"
- sources."@typescript-eslint/eslint-plugin-5.20.0"
- sources."@typescript-eslint/parser-5.20.0"
- sources."@typescript-eslint/scope-manager-5.20.0"
- sources."@typescript-eslint/type-utils-5.20.0"
- sources."@typescript-eslint/types-5.20.0"
- sources."@typescript-eslint/typescript-estree-5.20.0"
- sources."@typescript-eslint/utils-5.20.0"
- sources."@typescript-eslint/visitor-keys-5.20.0"
- sources."abab-2.0.6"
- sources."acorn-8.7.0"
- (sources."acorn-globals-6.0.0" // {
- dependencies = [
- sources."acorn-7.4.1"
- ];
- })
+ sources."@typescript-eslint/eslint-plugin-5.26.0"
+ sources."@typescript-eslint/parser-5.26.0"
+ sources."@typescript-eslint/scope-manager-5.26.0"
+ sources."@typescript-eslint/type-utils-5.26.0"
+ sources."@typescript-eslint/types-5.26.0"
+ sources."@typescript-eslint/typescript-estree-5.26.0"
+ sources."@typescript-eslint/utils-5.26.0"
+ sources."@typescript-eslint/visitor-keys-5.26.0"
+ sources."acorn-8.7.1"
sources."acorn-jsx-5.3.2"
- sources."acorn-walk-7.2.0"
sources."agent-base-6.0.2"
sources."ajv-8.11.0"
sources."ansi-escapes-4.3.2"
@@ -6316,12 +6013,8 @@ let
sources."array-union-2.1.0"
sources."async-3.2.3"
sources."asynckit-0.4.0"
- (sources."axios-0.27.2" // {
- dependencies = [
- sources."form-data-4.0.0"
- ];
- })
- (sources."babel-jest-27.5.1" // {
+ sources."axios-0.27.2"
+ (sources."babel-jest-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -6333,7 +6026,7 @@ let
})
sources."babel-plugin-dynamic-import-node-2.3.3"
sources."babel-plugin-istanbul-6.1.1"
- sources."babel-plugin-jest-hoist-27.5.1"
+ sources."babel-plugin-jest-hoist-28.0.2"
(sources."babel-plugin-polyfill-corejs2-0.3.1" // {
dependencies = [
sources."semver-6.3.0"
@@ -6342,7 +6035,7 @@ let
sources."babel-plugin-polyfill-corejs3-0.5.2"
sources."babel-plugin-polyfill-regenerator-0.3.1"
sources."babel-preset-current-node-syntax-1.0.1"
- sources."babel-preset-jest-27.5.1"
+ sources."babel-preset-jest-28.0.2"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."bind-decorator-1.0.11"
@@ -6350,8 +6043,7 @@ let
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browser-process-hrtime-1.0.0"
- sources."browserslist-4.20.2"
+ sources."browserslist-4.20.3"
sources."bser-2.1.1"
sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
@@ -6359,12 +6051,12 @@ let
sources."call-bind-1.0.2"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001332"
+ sources."caniuse-lite-1.0.30001344"
sources."chalk-2.4.2"
sources."char-regex-1.0.2"
sources."charcodes-0.2.0"
sources."chownr-1.1.4"
- sources."ci-info-3.3.0"
+ sources."ci-info-3.3.1"
sources."cjs-module-lexer-1.2.2"
sources."cliui-7.0.4"
sources."co-4.6.0"
@@ -6391,24 +6083,16 @@ let
})
sources."console-control-strings-1.1.0"
sources."convert-source-map-1.8.0"
- sources."core-js-3.22.2"
- (sources."core-js-compat-3.22.2" // {
+ sources."core-js-3.22.7"
+ (sources."core-js-compat-3.22.7" // {
dependencies = [
sources."semver-7.0.0"
];
})
sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
- sources."cssom-0.4.4"
- (sources."cssstyle-2.3.0" // {
- dependencies = [
- sources."cssom-0.3.8"
- ];
- })
- sources."data-urls-2.0.0"
sources."debounce-1.2.1"
sources."debug-4.3.4"
- sources."decimal.js-10.3.1"
sources."decompress-response-6.0.0"
sources."dedent-0.7.0"
sources."deep-extend-0.6.0"
@@ -6425,15 +6109,10 @@ let
sources."diff-sequences-27.5.1"
sources."dir-glob-3.0.1"
sources."doctrine-3.0.0"
- (sources."domexception-2.0.1" // {
- dependencies = [
- sources."webidl-conversions-5.0.0"
- ];
- })
sources."duplexify-4.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.118"
- sources."emittery-0.8.1"
+ sources."electron-to-chromium-1.4.141"
+ sources."emittery-0.10.2"
sources."emoji-regex-8.0.0"
sources."enabled-2.0.0"
sources."encodeurl-1.0.2"
@@ -6442,17 +6121,7 @@ let
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
- (sources."escodegen-2.0.0" // {
- dependencies = [
- sources."estraverse-5.3.0"
- sources."levn-0.3.0"
- sources."optionator-0.8.3"
- sources."prelude-ls-1.1.2"
- sources."source-map-0.6.1"
- sources."type-check-0.3.2"
- ];
- })
- (sources."eslint-8.14.0" // {
+ (sources."eslint-8.16.0" // {
dependencies = [
sources."ajv-6.12.6"
sources."ansi-styles-4.3.0"
@@ -6462,7 +6131,7 @@ let
sources."escape-string-regexp-4.0.0"
sources."eslint-scope-7.1.1"
sources."estraverse-5.3.0"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
sources."has-flag-4.0.0"
sources."json-schema-traverse-0.4.1"
sources."supports-color-7.2.0"
@@ -6470,7 +6139,7 @@ let
];
})
sources."eslint-config-google-0.14.0"
- sources."eslint-plugin-jest-26.1.5"
+ sources."eslint-plugin-jest-26.4.2"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-3.0.0" // {
dependencies = [
@@ -6478,7 +6147,7 @@ let
];
})
sources."eslint-visitor-keys-3.3.0"
- sources."espree-9.3.1"
+ sources."espree-9.3.2"
sources."esprima-4.0.1"
(sources."esquery-1.4.0" // {
dependencies = [
@@ -6496,7 +6165,25 @@ let
sources."execa-5.1.1"
sources."exit-0.1.2"
sources."expand-template-2.0.3"
- sources."expect-27.5.1"
+ (sources."expect-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."diff-sequences-28.0.2"
+ sources."has-flag-4.0.0"
+ sources."jest-diff-28.1.0"
+ sources."jest-matcher-utils-28.1.0"
+ (sources."pretty-format-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-5.2.0"
+ ];
+ })
+ sources."react-is-18.1.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
sources."fast-deep-equal-3.1.3"
(sources."fast-glob-3.2.11" // {
dependencies = [
@@ -6522,8 +6209,8 @@ let
sources."flat-cache-3.0.4"
sources."flatted-3.2.5"
sources."fn.name-1.1.0"
- sources."follow-redirects-1.14.9"
- sources."form-data-3.0.1"
+ sources."follow-redirects-1.15.1"
+ sources."form-data-4.0.0"
sources."fresh-0.5.2"
sources."fs-constants-1.0.0"
sources."fs.realpath-1.0.0"
@@ -6545,7 +6232,7 @@ let
sources."get-stream-6.0.1"
sources."git-last-commit-1.0.1"
sources."github-from-package-0.0.0"
- sources."glob-7.2.0"
+ sources."glob-7.2.3"
sources."glob-parent-6.0.2"
sources."globals-11.12.0"
sources."globby-11.1.0"
@@ -6557,14 +6244,11 @@ let
sources."has-symbols-1.0.3"
sources."has-unicode-2.0.1"
sources."help-me-3.0.0"
- sources."html-encoding-sniffer-2.0.1"
sources."html-escaper-2.0.2"
sources."http-errors-2.0.0"
- sources."http-proxy-agent-4.0.1"
sources."https-proxy-agent-5.0.1"
sources."human-signals-2.1.0"
- sources."humanize-duration-3.27.1"
- sources."iconv-lite-0.4.24"
+ sources."humanize-duration-3.27.2"
sources."ieee754-1.2.1"
sources."ignore-5.2.0"
(sources."import-fresh-3.3.0" // {
@@ -6584,9 +6268,7 @@ let
sources."is-generator-fn-2.1.0"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
- sources."is-potential-custom-element-name-1.0.1"
sources."is-stream-2.0.1"
- sources."is-typedarray-1.0.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."istanbul-lib-coverage-3.2.0"
@@ -6601,15 +6283,30 @@ let
sources."supports-color-7.2.0"
];
})
- (sources."istanbul-lib-source-maps-4.0.1" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
+ sources."istanbul-lib-source-maps-4.0.1"
sources."istanbul-reports-3.1.4"
- sources."jest-27.5.1"
- sources."jest-changed-files-27.5.1"
- (sources."jest-circus-27.5.1" // {
+ sources."jest-28.1.0"
+ sources."jest-changed-files-28.0.2"
+ (sources."jest-circus-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."diff-sequences-28.0.2"
+ sources."has-flag-4.0.0"
+ sources."jest-diff-28.1.0"
+ sources."jest-matcher-utils-28.1.0"
+ (sources."pretty-format-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-5.2.0"
+ ];
+ })
+ sources."react-is-18.1.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ (sources."jest-cli-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -6619,23 +6316,19 @@ let
sources."supports-color-7.2.0"
];
})
- (sources."jest-cli-27.5.1" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.2"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."has-flag-4.0.0"
- sources."supports-color-7.2.0"
- ];
- })
- (sources."jest-config-27.5.1" // {
+ (sources."jest-config-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
+ (sources."pretty-format-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-5.2.0"
+ ];
+ })
+ sources."react-is-18.1.0"
sources."supports-color-7.2.0"
];
})
@@ -6646,35 +6339,37 @@ let
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
+ sources."jest-get-type-27.5.1"
sources."supports-color-7.2.0"
];
})
- sources."jest-docblock-27.5.1"
- (sources."jest-each-27.5.1" // {
+ sources."jest-docblock-28.0.2"
+ (sources."jest-each-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
+ (sources."pretty-format-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-5.2.0"
+ ];
+ })
+ sources."react-is-18.1.0"
sources."supports-color-7.2.0"
];
})
- sources."jest-environment-jsdom-27.5.1"
- sources."jest-environment-node-27.5.1"
- sources."jest-get-type-27.5.1"
- sources."jest-haste-map-27.5.1"
- (sources."jest-jasmine2-27.5.1" // {
+ sources."jest-environment-node-28.1.0"
+ sources."jest-get-type-28.0.2"
+ sources."jest-haste-map-28.1.0"
+ (sources."jest-leak-detector-28.1.0" // {
dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.2"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."has-flag-4.0.0"
- sources."supports-color-7.2.0"
+ sources."ansi-styles-5.2.0"
+ sources."pretty-format-28.1.0"
+ sources."react-is-18.1.0"
];
})
- sources."jest-leak-detector-27.5.1"
(sources."jest-matcher-utils-27.5.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -6682,23 +6377,30 @@ let
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
+ sources."jest-get-type-27.5.1"
sources."supports-color-7.2.0"
];
})
- (sources."jest-message-util-27.5.1" // {
+ (sources."jest-message-util-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
+ (sources."pretty-format-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-5.2.0"
+ ];
+ })
+ sources."react-is-18.1.0"
sources."supports-color-7.2.0"
];
})
- sources."jest-mock-27.5.1"
+ sources."jest-mock-28.1.0"
sources."jest-pnp-resolver-1.2.2"
- sources."jest-regex-util-27.5.1"
- (sources."jest-resolve-27.5.1" // {
+ sources."jest-regex-util-28.0.2"
+ (sources."jest-resolve-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -6708,8 +6410,19 @@ let
sources."supports-color-7.2.0"
];
})
- sources."jest-resolve-dependencies-27.5.1"
- (sources."jest-runner-27.5.1" // {
+ sources."jest-resolve-dependencies-28.1.0"
+ (sources."jest-runner-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."has-flag-4.0.0"
+ sources."source-map-support-0.5.13"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ (sources."jest-runtime-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -6719,7 +6432,26 @@ let
sources."supports-color-7.2.0"
];
})
- (sources."jest-runtime-27.5.1" // {
+ (sources."jest-snapshot-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."diff-sequences-28.0.2"
+ sources."has-flag-4.0.0"
+ sources."jest-diff-28.1.0"
+ sources."jest-matcher-utils-28.1.0"
+ (sources."pretty-format-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-5.2.0"
+ ];
+ })
+ sources."react-is-18.1.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ (sources."jest-util-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -6729,28 +6461,7 @@ let
sources."supports-color-7.2.0"
];
})
- sources."jest-serializer-27.5.1"
- (sources."jest-snapshot-27.5.1" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.2"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."has-flag-4.0.0"
- sources."supports-color-7.2.0"
- ];
- })
- (sources."jest-util-27.5.1" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.2"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."has-flag-4.0.0"
- sources."supports-color-7.2.0"
- ];
- })
- (sources."jest-validate-27.5.1" // {
+ (sources."jest-validate-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."camelcase-6.3.0"
@@ -6758,10 +6469,16 @@ let
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
+ (sources."pretty-format-28.1.0" // {
+ dependencies = [
+ sources."ansi-styles-5.2.0"
+ ];
+ })
+ sources."react-is-18.1.0"
sources."supports-color-7.2.0"
];
})
- (sources."jest-watcher-27.5.1" // {
+ (sources."jest-watcher-28.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -6771,7 +6488,7 @@ let
sources."supports-color-7.2.0"
];
})
- (sources."jest-worker-27.5.1" // {
+ (sources."jest-worker-28.1.0" // {
dependencies = [
sources."has-flag-4.0.0"
sources."supports-color-8.1.1"
@@ -6780,11 +6497,6 @@ let
sources."js-sdsl-2.1.4"
sources."js-tokens-4.0.0"
sources."js-yaml-4.1.0"
- (sources."jsdom-16.7.0" // {
- dependencies = [
- sources."ws-7.5.7"
- ];
- })
sources."jsesc-2.5.2"
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-traverse-1.0.0"
@@ -6796,7 +6508,6 @@ let
sources."levn-0.4.1"
sources."lines-and-columns-1.2.4"
sources."locate-path-5.0.0"
- sources."lodash-4.17.21"
sources."lodash.debounce-4.0.8"
sources."lodash.merge-4.6.2"
sources."logform-2.4.0"
@@ -6823,24 +6534,23 @@ let
sources."moment-2.29.3"
(sources."mqtt-4.3.7" // {
dependencies = [
- sources."ws-7.5.7"
+ sources."ws-7.5.8"
];
})
sources."mqtt-packet-6.10.0"
sources."ms-2.1.2"
sources."mz-2.7.0"
- sources."nan-2.15.0"
+ sources."nan-2.16.0"
sources."napi-build-utils-1.0.2"
sources."natural-compare-1.4.0"
- sources."node-abi-3.15.0"
+ sources."node-abi-3.22.0"
sources."node-int64-0.4.0"
- sources."node-releases-2.0.3"
+ sources."node-releases-2.0.5"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."npmlog-4.1.2"
sources."number-allocator-1.0.10"
sources."number-is-nan-1.0.1"
- sources."nwsapi-2.2.0"
sources."object-assign-4.1.1"
sources."object-assign-deep-0.4.0"
sources."object-keys-1.1.1"
@@ -6855,7 +6565,6 @@ let
sources."p-try-2.2.0"
sources."parent-module-1.0.1"
sources."parse-json-5.2.0"
- sources."parse5-6.0.1"
sources."parseurl-1.3.3"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
@@ -6875,7 +6584,6 @@ let
})
sources."process-nextick-args-2.0.1"
sources."prompts-2.4.2"
- sources."psl-1.8.0"
sources."pump-3.0.0"
sources."punycode-2.1.1"
sources."queue-microtask-1.2.3"
@@ -6912,8 +6620,6 @@ let
sources."run-parallel-1.2.0"
sources."safe-buffer-5.1.2"
sources."safe-stable-stringify-2.3.1"
- sources."safer-buffer-2.1.2"
- sources."saxes-5.0.1"
sources."semver-7.3.7"
(sources."send-0.18.0" // {
dependencies = [
@@ -6942,12 +6648,8 @@ let
sources."sisteransi-1.0.5"
sources."slash-3.0.0"
sources."slip-1.0.2"
- sources."source-map-0.5.7"
- (sources."source-map-support-0.5.21" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
+ sources."source-map-0.6.1"
+ sources."source-map-support-0.5.21"
sources."split2-3.2.2"
sources."sprintf-js-1.0.3"
sources."stack-trace-0.0.10"
@@ -6977,7 +6679,6 @@ let
];
})
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."symbol-tree-3.2.4"
sources."tar-fs-2.1.1"
sources."tar-stream-2.2.0"
sources."terminal-link-2.1.1"
@@ -6992,8 +6693,6 @@ let
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
- sources."tough-cookie-4.0.0"
- sources."tr46-2.1.0"
sources."traverse-chain-0.1.0"
sources."triple-beam-1.3.0"
sources."tslib-1.14.1"
@@ -7003,30 +6702,18 @@ let
sources."type-detect-4.0.8"
sources."type-fest-0.21.3"
sources."typedarray-0.0.6"
- sources."typedarray-to-buffer-3.1.5"
- sources."typescript-4.6.3"
+ sources."typescript-4.7.2"
sources."unicode-canonical-property-names-ecmascript-2.0.0"
sources."unicode-match-property-ecmascript-2.0.0"
sources."unicode-match-property-value-ecmascript-2.0.0"
sources."unicode-property-aliases-ecmascript-2.0.0"
- sources."universalify-0.1.2"
sources."unix-dgram-2.0.4"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-2.3.0"
- (sources."v8-to-istanbul-8.1.1" // {
- dependencies = [
- sources."source-map-0.7.3"
- ];
- })
- sources."w3c-hr-time-1.0.2"
- sources."w3c-xmlserializer-2.0.0"
+ sources."v8-to-istanbul-9.0.0"
sources."walker-1.0.8"
- sources."webidl-conversions-6.1.0"
- sources."whatwg-encoding-1.0.5"
- sources."whatwg-mimetype-2.3.0"
- sources."whatwg-url-8.7.0"
sources."which-2.0.2"
sources."wide-align-1.1.5"
sources."winston-3.7.2"
@@ -7041,18 +6728,16 @@ let
];
})
sources."wrappy-1.0.2"
- sources."write-file-atomic-3.0.3"
- sources."ws-8.5.0"
- sources."xml-name-validator-3.0.0"
- sources."xmlchars-2.2.0"
+ sources."write-file-atomic-4.0.1"
+ sources."ws-8.7.0"
sources."xtend-4.0.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-16.2.0"
- sources."yargs-parser-20.2.9"
- sources."zigbee-herdsman-0.14.27"
- sources."zigbee-herdsman-converters-14.0.504"
- sources."zigbee2mqtt-frontend-0.6.83"
+ sources."yargs-17.5.1"
+ sources."yargs-parser-21.0.1"
+ sources."zigbee-herdsman-0.14.34"
+ sources."zigbee-herdsman-converters-14.0.533"
+ sources."zigbee2mqtt-frontend-0.6.97"
];
buildInputs = globalBuildInputs;
meta = {
diff --git a/pkgs/servers/zigbee2mqtt/node.nix b/pkgs/servers/zigbee2mqtt/node.nix
index 1de33eb05b83..df2580b09cbd 100644
--- a/pkgs/servers/zigbee2mqtt/node.nix
+++ b/pkgs/servers/zigbee2mqtt/node.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.9.0. Do not edit!
+# This file has been generated by node2nix 1.11.1. Do not edit!
{pkgs ? import {
inherit system;
diff --git a/pkgs/stdenv/generic/check-meta.nix b/pkgs/stdenv/generic/check-meta.nix
index 4e5db210637a..1479671db417 100644
--- a/pkgs/stdenv/generic/check-meta.nix
+++ b/pkgs/stdenv/generic/check-meta.nix
@@ -98,10 +98,10 @@ let
# Allow granular checks to allow only some non-source-built packages
# Example:
- # {pkgs, ...}:
+ # { pkgs, ... }:
# {
# allowNonSource = false;
- # allowNonSourcePredicate = with lib.lists; pkg: !(any (p: !p.isSource && p!=lib.sourceTypes.binaryFirmware) (toList pkg.meta.sourceProvenance));
+ # allowNonSourcePredicate = with pkgs.lib.lists; pkg: !(any (p: !p.isSource && p != lib.sourceTypes.binaryFirmware) (toList pkg.meta.sourceProvenance));
# }
allowNonSourcePredicate = config.allowNonSourcePredicate or (x: false);
diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix
index 69f7dcb469af..21e37a2eb405 100644
--- a/pkgs/tools/X11/xpra/default.nix
+++ b/pkgs/tools/X11/xpra/default.nix
@@ -135,7 +135,6 @@ in buildPythonApplication rec {
dbus-python
gst-python
idna
- ipaddress
lz4
netifaces
numpy
diff --git a/pkgs/tools/admin/azure-cli/default.nix b/pkgs/tools/admin/azure-cli/default.nix
index 01cb5081cf4f..b4d1d6dd7b76 100644
--- a/pkgs/tools/admin/azure-cli/default.nix
+++ b/pkgs/tools/admin/azure-cli/default.nix
@@ -159,7 +159,6 @@ py.pkgs.toPythonApplication (py.pkgs.buildAzureCliPackage {
javaproperties
jsondiff
# urllib3[secure]
- ipaddress
# shell completion
argcomplete
];
diff --git a/pkgs/tools/audio/beets/common.nix b/pkgs/tools/audio/beets/common.nix
index d5883f3cdbd1..7927c5859ff6 100644
--- a/pkgs/tools/audio/beets/common.nix
+++ b/pkgs/tools/audio/beets/common.nix
@@ -27,13 +27,13 @@
let
inherit (lib) attrNames attrValues concatMap;
- builtinPlugins = import ./builtin-plugins.nix inputs;
-
- mkPlugin = { enable ? !disableAllPlugins, propagatedBuildInputs ? [ ], testPaths ? [ ], wrapperBins ? [ ] }: {
- inherit enable propagatedBuildInputs testPaths wrapperBins;
+ mkPlugin = { enable ? !disableAllPlugins, builtin ? false, propagatedBuildInputs ? [ ], testPaths ? [ ], wrapperBins ? [ ] }: {
+ inherit enable builtin propagatedBuildInputs testPaths wrapperBins;
};
- allPlugins = lib.mapAttrs (_: mkPlugin) (lib.recursiveUpdate builtinPlugins pluginOverrides);
+ basePlugins = lib.mapAttrs (_: a: { builtin = true; } // a) (import ./builtin-plugins.nix inputs);
+ allPlugins = lib.mapAttrs (_: mkPlugin) (lib.recursiveUpdate basePlugins pluginOverrides);
+ builtinPlugins = lib.filterAttrs (_: p: p.builtin) allPlugins;
enabledPlugins = lib.filterAttrs (_: p: p.enable) allPlugins;
disabledPlugins = lib.filterAttrs (_: p: !p.enable) allPlugins;
@@ -117,7 +117,7 @@ python3Packages.buildPythonApplication rec {
\( -name '*.py' -o -path 'beetsplug/*/__init__.py' \) -print \
| sed -n -re 's|^beetsplug/([^/.]+).*|\1|p' \
| sort -u > plugins_available
- ${diffPlugins (attrNames allPlugins) "plugins_available"}
+ ${diffPlugins (attrNames builtinPlugins) "plugins_available"}
export BEETS_TEST_SHELL="${bashInteractive}/bin/bash --norc"
export HOME="$(mktemp -d)"
diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix
index a66b018678c6..f68a0381e12a 100644
--- a/pkgs/tools/audio/beets/default.nix
+++ b/pkgs/tools/audio/beets/default.nix
@@ -40,7 +40,7 @@ lib.makeExtensible (self: {
};
pluginOverrides = {
# unstable has a new plugin, so we register it here.
- limit = { };
+ limit = { builtin = true; };
};
};
diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix
index 7a6a34949204..95e29686f24e 100644
--- a/pkgs/tools/backup/duplicity/default.nix
+++ b/pkgs/tools/backup/duplicity/default.nix
@@ -78,15 +78,12 @@ pythonPackages.buildPythonApplication rec {
idna
pygobject3
fasteners
- ipaddress
lockfile
paramiko
pyasn1
pycrypto
pydrive2
future
- ] ++ lib.optionals (!isPy3k) [
- enum
];
checkInputs = [
diff --git a/pkgs/tools/misc/btdu/default.nix b/pkgs/tools/misc/btdu/default.nix
index d297af0d4402..b6131c1c2d27 100644
--- a/pkgs/tools/misc/btdu/default.nix
+++ b/pkgs/tools/misc/btdu/default.nix
@@ -1,23 +1,23 @@
{stdenv, lib, fetchurl, dub, ncurses, ldc, zlib, removeReferencesTo }:
let
- _d_ae_ver = "0.0.3100";
+ _d_ae_ver = "0.0.3141";
_d_btrfs_ver = "0.0.12";
_d_ncurses_ver = "0.0.149";
_d_emsi_containers_ver = "0.9.0";
in
stdenv.mkDerivation rec {
pname = "btdu";
- version = "0.3.1";
+ version = "0.4.0";
srcs = [
(fetchurl {
url = "https://github.com/CyberShadow/${pname}/archive/v${version}.tar.gz";
- sha256 = "760b2f0d28920a78b7967dd34c429125135688a3aefc57ab3a92d07bc3ef10cb";
+ sha256 = "1377d2ee14367deed6f0b17407a0de437450a4f381819265d98c38fbc05f792f";
})
(fetchurl {
url = "https://github.com/CyberShadow/ae/archive/v${_d_ae_ver}.tar.gz";
- sha256 = "86fa09ef6c1be4cbe8ad1c85729054e5d691b41ff57c7980d99937ec0f45b950";
+ sha256 = "5ae60c637050c11733da8a67735a43e16d6082d18b74ce64b04e24e42d8f5f5f";
})
(fetchurl {
url = "https://github.com/CyberShadow/d-btrfs/archive/v${_d_btrfs_ver}.tar.gz";
diff --git a/pkgs/tools/misc/hexyl/default.nix b/pkgs/tools/misc/hexyl/default.nix
index dcab5f249fe5..b426c7c117a6 100644
--- a/pkgs/tools/misc/hexyl/default.nix
+++ b/pkgs/tools/misc/hexyl/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "hexyl";
- version = "0.9.0";
+ version = "0.10.0";
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-hLDx5OzCE5iA492V3+dhaav2l8/rOVWyskrU4Gz1hf4=";
+ sha256 = "sha256-LskDHUm45OlWbzlumaIXPXCZEBA5dXanhzgAvenJgVk=";
};
- cargoSha256 = "sha256-CGaCMrShagK4dAdwJtaeUMJlYOlG/cH+6E1QDYGrqL0=";
+ cargoSha256 = "sha256-qKk95hGcThu0y3ND9z3mXw1TBaVkwAOrznaqj2k3SEk=";
meta = with lib; {
changelog = "https://github.com/sharkdp/hexyl/releases/tag/v${version}";
diff --git a/pkgs/tools/networking/dd-agent/5.nix b/pkgs/tools/networking/dd-agent/5.nix
index 744fd482ab18..57ab6ed97b90 100644
--- a/pkgs/tools/networking/dd-agent/5.nix
+++ b/pkgs/tools/networking/dd-agent/5.nix
@@ -18,7 +18,6 @@ let
six
requests
websocket-client
- ipaddress
docker_pycreds
uptime
] ++ lib.optionals (self.pythonOlder "3.7") [ backports_ssl_match_hostname ];
diff --git a/pkgs/tools/system/localtime/default.nix b/pkgs/tools/system/localtime/default.nix
index b1f05cb18519..b8f2b4605289 100644
--- a/pkgs/tools/system/localtime/default.nix
+++ b/pkgs/tools/system/localtime/default.nix
@@ -1,6 +1,5 @@
{ buildGoModule
, fetchFromGitHub
-, geoclue2-with-demo-agent
, lib
, m4
}:
@@ -18,11 +17,6 @@ buildGoModule {
vendorSha256 = "sha256-12JnEU41sp9qRP07p502EYogveE+aNdfmLwlDRbIdxU=";
- postPatch = ''
- demoPath="${geoclue2-with-demo-agent}/libexec/geoclue-2.0/demos/agent"
- sed -i localtimed.go -e "s#/usr/lib/geoclue-2.0/demos/agent#$demoPath#"
- '';
-
nativeBuildInputs = [ m4 ];
installPhase = ''
diff --git a/pkgs/tools/text/mdcat/default.nix b/pkgs/tools/text/mdcat/default.nix
index f6dcd72d7bf2..4fe156600c07 100644
--- a/pkgs/tools/text/mdcat/default.nix
+++ b/pkgs/tools/text/mdcat/default.nix
@@ -12,21 +12,21 @@
rustPlatform.buildRustPackage rec {
pname = "mdcat";
- version = "0.26.1";
+ version = "0.27.1";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "flausch";
repo = "mdcat";
rev = "mdcat-${version}";
- sha256 = "sha256-vB49EwQltonR9Uw8RRMZTPR4WkcylnIqiE0/8+t2R1Q=";
+ sha256 = "sha256-iWFWpUyg/VYI+AKFsJe/rOYco+680l/bIHX0qXfD3u0=";
};
nativeBuildInputs = [ pkg-config asciidoctor installShellFiles ];
buildInputs = [ openssl ]
++ lib.optional stdenv.isDarwin Security;
- cargoSha256 = "sha256-v52ob5l5HiiZZmo88D9/ldFi0170/BuPzgKIt9ctSgU=";
+ cargoSha256 = "sha256-e/yupkCqWZZCfD8brVb2yD4pt3ExSfwCm2bmTyjRGpA=";
checkInputs = [ ansi2html ];
# Skip tests that use the network and that include files.
@@ -43,15 +43,16 @@ rustPlatform.buildRustPackage rec {
postInstall = ''
installManPage $releaseDir/build/mdcat-*/out/mdcat.1
- installShellCompletion --bash $releaseDir/build/mdcat-*/out/completions/mdcat.bash
- installShellCompletion --fish $releaseDir/build/mdcat-*/out/completions/mdcat.fish
- installShellCompletion --zsh $releaseDir/build/mdcat-*/out/completions/_mdcat
+ installShellCompletion \
+ --bash $releaseDir/build/mdcat-*/out/completions/mdcat.bash \
+ --fish $releaseDir/build/mdcat-*/out/completions/mdcat.fish \
+ --zsh $releaseDir/build/mdcat-*/out/completions/_mdcat
'';
meta = with lib; {
description = "cat for markdown";
- homepage = "https://github.com/lunaryorn/mdcat";
+ homepage = "https://codeberg.org/flausch/mdcat";
license = with licenses; [ mpl20 ];
- maintainers = with maintainers; [ davidtwco SuperSandro2000 ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 6747312f6450..fcf3fe31b142 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -27073,6 +27073,8 @@ with pkgs;
hugo = callPackage ../applications/misc/hugo { buildGoModule = buildGo118Module; };
+ gatekeeper = callPackage ../applications/networking/cluster/gatekeeper { };
+
go-org = callPackage ../applications/misc/go-org { };
hushboard = python3.pkgs.callPackage ../applications/audio/hushboard { };
diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix
index d747478f45f6..aad69e893e9c 100644
--- a/pkgs/top-level/python-aliases.nix
+++ b/pkgs/top-level/python-aliases.nix
@@ -160,6 +160,8 @@ mapAliases ({
tensorflow-tensorboard = tensorboard; # added 2022-03-06
tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25
tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05
+ types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30
+ types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30
WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29
webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29
websocket_client = websocket-client; # added 2021-06-15
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index fa2128f12cc7..4e4ab0660afb 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -1325,6 +1325,8 @@ in {
bond-api = callPackage ../development/python-modules/bond-api { };
+ bond-async = callPackage ../development/python-modules/bond-async { };
+
booleanoperations = callPackage ../development/python-modules/booleanoperations { };
boolean-py = callPackage ../development/python-modules/boolean-py { };
@@ -7412,6 +7414,8 @@ in {
pyialarm = callPackage ../development/python-modules/pyialarm { };
+ pyialarmxr = callPackage ../development/python-modules/pyialarmxr { };
+
pyicloud = callPackage ../development/python-modules/pyicloud { };
PyICU = callPackage ../development/python-modules/pyicu { };
@@ -8452,6 +8456,8 @@ in {
python-hglib = callPackage ../development/python-modules/python-hglib { };
+ python-homewizard-energy = callPackage ../development/python-modules/python-homewizard-energy { };
+
python-hosts = callPackage ../development/python-modules/python-hosts { };
python-hpilo = callPackage ../development/python-modules/python-hpilo { };
@@ -8843,6 +8849,8 @@ in {
pywlroots = callPackage ../development/python-modules/pywlroots { };
+ pyws66i = callPackage ../development/python-modules/pyws66i { };
+
pyxattr = callPackage ../development/python-modules/pyxattr { };
pyworld = callPackage ../development/python-modules/pyworld { };
@@ -10650,8 +10658,6 @@ in {
typer = callPackage ../development/python-modules/typer { };
- types-cryptography = callPackage ../development/python-modules/types-cryptography { };
-
types-dateutil = callPackage ../development/python-modules/types-dateutil { };
types-decorator = callPackage ../development/python-modules/types-decorator { };
@@ -10666,8 +10672,6 @@ in {
types-ipaddress = callPackage ../development/python-modules/types-ipaddress { };
- types-paramiko = callPackage ../development/python-modules/types-paramiko { };
-
types-protobuf = callPackage ../development/python-modules/types-protobuf { };
types-pytz = callPackage ../development/python-modules/types-pytz { };
@@ -11364,6 +11368,8 @@ in {
yoda = toPythonModule (pkgs.yoda.override { inherit python; });
+ yolink-api = callPackage ../development/python-modules/yolink-api { };
+
youless-api = callPackage ../development/python-modules/youless-api { };
youtube-dl = callPackage ../tools/misc/youtube-dl { };