summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Ainsworth <skainsworth@gmail.com>2025-02-25 00:20:22 -0500
committerSamuel Ainsworth <skainsworth@gmail.com>2025-02-25 00:20:22 -0500
commit0ae591d1da1a376002508452d34b7e80e6b1400c (patch)
tree69a9f89a347ad17c00e5d5e68376b42f1375df9f
parentrPackages.x13binary: fixed build (#384873) (diff)
downloadnixpkgs-0ae591d1da1a376002508452d34b7e80e6b1400c.tar.gz
nodePackages: fix generate.shorigin/samuela/claude-code
-rw-r--r--pkgs/development/node-packages/composition.nix27
-rw-r--r--pkgs/development/node-packages/node-env.nix13
-rw-r--r--pkgs/development/node-packages/node-packages.json1
-rw-r--r--pkgs/development/node-packages/node-packages.nix19500
4 files changed, 7035 insertions, 12506 deletions
diff --git a/pkgs/development/node-packages/composition.nix b/pkgs/development/node-packages/composition.nix
index 659c43a1feec..0d4da1c6fc7a 100644
--- a/pkgs/development/node-packages/composition.nix
+++ b/pkgs/development/node-packages/composition.nix
@@ -1,34 +1,17 @@
# This file has been generated by node2nix 1.11.1. Do not edit!
-{
- pkgs ? import <nixpkgs> {
+{pkgs ? import <nixpkgs> {
inherit system;
- },
- system ? builtins.currentSystem,
- nodejs ? pkgs."nodejs_22",
-}:
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs_22"}:
let
nodeEnv = import ./node-env.nix {
- inherit (pkgs)
- stdenv
- lib
- python2
- runCommand
- writeTextFile
- writeShellScript
- ;
+ inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
inherit pkgs nodejs;
- libtool = if pkgs.stdenv.hostPlatform.isDarwin then pkgs.cctools or pkgs.darwin.cctools else null;
+ libtool = if pkgs.stdenv.isDarwin then pkgs.cctools or pkgs.darwin.cctools else null;
};
in
import ./node-packages.nix {
- inherit (pkgs)
- fetchurl
- nix-gitignore
- stdenv
- lib
- fetchgit
- ;
+ inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
inherit nodeEnv;
}
diff --git a/pkgs/development/node-packages/node-env.nix b/pkgs/development/node-packages/node-env.nix
index 4123ca029664..bc1e36628ac8 100644
--- a/pkgs/development/node-packages/node-env.nix
+++ b/pkgs/development/node-packages/node-env.nix
@@ -3,6 +3,9 @@
{lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}:
let
+ # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master
+ utillinux = if pkgs ? utillinux then pkgs.utillinux else pkgs.util-linux;
+
python = if nodejs ? python then nodejs.python else python2;
# Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
@@ -496,8 +499,8 @@ let
stdenv.mkDerivation ({
name = "${name}${if version == null then "" else "-${version}"}";
buildInputs = [ tarWrapper python nodejs ]
- ++ lib.optional (stdenv.hostPlatform.isLinux) pkgs.util-linux
- ++ lib.optional (stdenv.hostPlatform.isDarwin) libtool
+ ++ lib.optional (stdenv.isLinux) utillinux
+ ++ lib.optional (stdenv.isDarwin) libtool
++ buildInputs;
inherit nodejs;
@@ -588,8 +591,8 @@ let
name = "node-dependencies-${name}${if version == null then "" else "-${version}"}";
buildInputs = [ tarWrapper python nodejs ]
- ++ lib.optional (stdenv.hostPlatform.isLinux) pkgs.util-linux
- ++ lib.optional (stdenv.hostPlatform.isDarwin) libtool
+ ++ lib.optional (stdenv.isLinux) utillinux
+ ++ lib.optional (stdenv.isDarwin) libtool
++ buildInputs;
inherit dontStrip; # Stripping may fail a build for some package deployments
@@ -659,7 +662,7 @@ let
stdenv.mkDerivation ({
name = "node-shell-${name}${if version == null then "" else "-${version}"}";
- buildInputs = [ python nodejs ] ++ lib.optional (stdenv.hostPlatform.isLinux) pkgs.util-linux ++ buildInputs;
+ buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs;
buildCommand = ''
mkdir -p $out/bin
cat > $out/bin/shell <<EOF
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index 045c9e7c7470..561d836fcb38 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -149,7 +149,6 @@
, "reveal.js"
, "rimraf"
, "rollup"
-, {"rust-analyzer-build-deps": "../../applications/editors/vscode/extensions/rust-lang.rust-analyzer/build-deps"}
, "sass"
, "semver"
, "serve"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 11a1500a774b..2ac5ad10d7ed 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -1,14 +1,6 @@
# This file has been generated by node2nix 1.11.1. Do not edit!
-{
- nodeEnv,
- fetchurl,
- fetchgit,
- nix-gitignore,
- stdenv,
- lib,
- globalBuildInputs ? [ ],
-}:
+{nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}:
let
sources = {
@@ -39,31 +31,31 @@ let
sha512 = "30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==";
};
};
- "@angular-devkit/architect-0.1901.7" = {
+ "@angular-devkit/architect-0.1901.8" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1901.7";
+ version = "0.1901.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1901.7.tgz";
- sha512 = "qltyebfbej7joIKZVH8EFfrVDrkw0p9N9ja3A0XeU1sl2vlepHNAQdVm0Os8Vy2XjjyHvT5bXWE3G3/221qEKw==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1901.8.tgz";
+ sha512 = "DzvlL1Zg+zOnVmMN3CjE5KzjZAltRZwOwwcso72iWenBPvl/trKzPDlA6ySmpRonm+AR9i9JrdLEUlwczW6/bQ==";
};
};
- "@angular-devkit/core-19.1.7" = {
+ "@angular-devkit/core-19.1.8" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "19.1.7";
+ version = "19.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-19.1.7.tgz";
- sha512 = "q0I6L9KTqyQ7D5M8H+fWLT+yjapvMNb7SRdfU6GzmexO66Dpo83q4HDzuDKIPDF29Yl0ELs9ICJqe9yUXh6yDQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-19.1.8.tgz";
+ sha512 = "j1zHKvOsGwu5YwAZGuzi835R9vcW7PkfxmSRIJeVl+vawgk31K3zFb4UPH8AY/NPWYqXIAnwpka3HC1+JrWLWA==";
};
};
- "@angular-devkit/schematics-19.1.7" = {
+ "@angular-devkit/schematics-19.1.8" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "19.1.7";
+ version = "19.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.1.7.tgz";
- sha512 = "AP6FvhMybCYs3gs+vzEAzSU1K//AFT3SVTRFv+C3WMO5dLeAHeGzM8I2dxD5EHQQtqIE/8apP6CxGrnpA5YlFg==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.1.8.tgz";
+ sha512 = "2JGUMD3zjfY8G4RYpypm2/1YEO+O4DtFycUvptIpsBYyULgnEbJ3tlp2oRiXI2vp9tC8IyWqa/swlA8DTI6ZYQ==";
};
};
"@apidevtools/json-schema-ref-parser-11.7.2" = {
@@ -300,13 +292,13 @@ let
sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw==";
};
};
- "@aws-sdk/client-s3-3.749.0" = {
+ "@aws-sdk/client-s3-3.750.0" = {
name = "_at_aws-sdk_slash_client-s3";
packageName = "@aws-sdk/client-s3";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.749.0.tgz";
- sha512 = "Xi+DaBeYRIa2d+1QTAlBdbRIc9j3+H+H5aMbxIrlyIYE2NOz+4fhIgpUYuF4ln63p9Fby5Wh36DhHJYyN4uE0w==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.750.0.tgz";
+ sha512 = "S9G9noCeBxchoMVkHYrRi1A1xW/VOTP2W7X34lP+Y7Wpl32yMA7IJo0fAGAuTc0q1Nu6/pXDm+oDG7rhTCA1tg==";
};
};
"@aws-sdk/client-sso-3.296.0" = {
@@ -318,13 +310,13 @@ let
sha512 = "0P0x++jhlmhzViFPOHvTb7+Z6tSV9aONwB8CchIseg2enSPBbGfml7y5gQu1jdOTDS6pBUmrPZ+9sOI4/GvAfA==";
};
};
- "@aws-sdk/client-sso-3.749.0" = {
+ "@aws-sdk/client-sso-3.750.0" = {
name = "_at_aws-sdk_slash_client-sso";
packageName = "@aws-sdk/client-sso";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.749.0.tgz";
- sha512 = "ecmuDu8EPya1LDpGRtpgN7C9PHayDh8EaW37ZBKhuxA7cg099yvTFqsGngwRXbhNjKJ4oVa9OUe0EDnu60atYA==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.750.0.tgz";
+ sha512 = "y0Rx6pTQXw0E61CaptpZF65qNggjqOgymq/RYZU5vWba5DGQ+iqGt8Yq8s+jfBoBBNXshxq8l8Dl5Uq/JTY1wg==";
};
};
"@aws-sdk/client-sso-oidc-3.296.0" = {
@@ -345,13 +337,13 @@ let
sha512 = "ew7hSVNpitnLCIRVhnI2L1HZB/yYpRQFReR62fOqCUnpKqm6WGga37bnvgYbY5y0Rv23C0VHARovwunVg1gabA==";
};
};
- "@aws-sdk/client-sts-3.749.0" = {
+ "@aws-sdk/client-sts-3.750.0" = {
name = "_at_aws-sdk_slash_client-sts";
packageName = "@aws-sdk/client-sts";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.749.0.tgz";
- sha512 = "4/IRLUVeH1JEVCOA98E943aAgeu/pHdEFiWElDSYnhYWu1hhqfo9IEJwR3F+anaPFi6jn39T6oQzj2ThEUCVUA==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.750.0.tgz";
+ sha512 = "MdzI7nTP4Th+Xam+u0HPZAnS0172Xfi96RLx99Dg/UR7tgIvj2bbhIeGQIDihwB7TdFh1WxOaNHJjm9asgJepg==";
};
};
"@aws-sdk/config-resolver-3.296.0" = {
@@ -363,13 +355,13 @@ let
sha512 = "Ecdp7fmIitHo49NRCyIEHb9xlI43J7qkvhcwaKGGqN5jvoh0YhR2vNr195wWG8Ip/9PwsD4QV4g/XT5EY7XkMA==";
};
};
- "@aws-sdk/core-3.749.0" = {
+ "@aws-sdk/core-3.750.0" = {
name = "_at_aws-sdk_slash_core";
packageName = "@aws-sdk/core";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.749.0.tgz";
- sha512 = "w5Jj573+XKwrDNZUjUJDXL5upx+RCw64TLq3Zk8FVg9MsgkzAPorQ9qmzffi6os+PWngd3pFmD8q5y+Y35LpFQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.750.0.tgz";
+ sha512 = "bZ5K7N5L4+Pa2epbVpUQqd1XLG2uU8BGs/Sd+2nbgTf+lNQJyIxAg/Qsrjz9MzmY8zzQIeRQEkNmR6yVAfCmmQ==";
};
};
"@aws-sdk/credential-provider-env-3.296.0" = {
@@ -381,22 +373,22 @@ let
sha512 = "eDWSU3p04gytkkVXnYn05YzrP5SEaj/DQiafd4y+iBl8IFfF3zM6982rs6qFhvpwrHeSbLqHNfKR1HDWVwfG5g==";
};
};
- "@aws-sdk/credential-provider-env-3.749.0" = {
+ "@aws-sdk/credential-provider-env-3.750.0" = {
name = "_at_aws-sdk_slash_credential-provider-env";
packageName = "@aws-sdk/credential-provider-env";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.749.0.tgz";
- sha512 = "bhB1ds5QzcSfmCTbjVessXy8xHJROota6wOhFtBsL1aZRQyNN2a9h2QS6xkxjmqVE3yHBsPz+OiSOeLn0kxm7Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.750.0.tgz";
+ sha512 = "In6bsG0p/P31HcH4DBRKBbcDS/3SHvEPjfXV8ODPWZO/l3/p7IRoYBdQ07C9R+VMZU2D0+/Sc/DWK/TUNDk1+Q==";
};
};
- "@aws-sdk/credential-provider-http-3.749.0" = {
+ "@aws-sdk/credential-provider-http-3.750.0" = {
name = "_at_aws-sdk_slash_credential-provider-http";
packageName = "@aws-sdk/credential-provider-http";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.749.0.tgz";
- sha512 = "enFGT8uvETbE6+4bDA2aTOrA/83GrIVPpg2g2r7MwJb36jreXA3KDXaP/5jQsxyIZW70cnYNl/Cawdd4ZXs7CQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.750.0.tgz";
+ sha512 = "wFB9qqfa20AB0dElsQz5ZlZT5o+a+XzpEpmg0erylmGYqEOvh8NQWfDUVpRmQuGq9VbvW/8cIbxPoNqEbPtuWQ==";
};
};
"@aws-sdk/credential-provider-imds-3.296.0" = {
@@ -417,13 +409,13 @@ let
sha512 = "U0ecY0GX2jeDAgmTzaVO9YgjlLUfb8wgZSu1OwbOxCJscL/5eFkhcF0/xJQXDbRgcj4H4dlquqeSWsBVl/PgvQ==";
};
};
- "@aws-sdk/credential-provider-ini-3.749.0" = {
+ "@aws-sdk/credential-provider-ini-3.750.0" = {
name = "_at_aws-sdk_slash_credential-provider-ini";
packageName = "@aws-sdk/credential-provider-ini";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.749.0.tgz";
- sha512 = "OB4AGK61lQdoW2mTmaMBw8L+eBo7wF3YJZXwqFI7M2cQe9WtfuKGIxbYWMBMzoLvEtmsbzeppoZZUezooaIclg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.750.0.tgz";
+ sha512 = "2YIZmyEr5RUd3uxXpxOLD9G67Bibm4I/65M6vKFP17jVMUT+R1nL7mKqmhEVO2p+BoeV+bwMyJ/jpTYG368PCg==";
};
};
"@aws-sdk/credential-provider-node-3.296.0" = {
@@ -435,13 +427,13 @@ let
sha512 = "oCkmh2b1DQhHkhd/qA9jiSIOkrBBK7cMg1/PVIgLw8e15NkzUHBObLJ/ZQw6ZzCxZzjlMYaFv9oCB8hyO8txmA==";
};
};
- "@aws-sdk/credential-provider-node-3.749.0" = {
+ "@aws-sdk/credential-provider-node-3.750.0" = {
name = "_at_aws-sdk_slash_credential-provider-node";
packageName = "@aws-sdk/credential-provider-node";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.749.0.tgz";
- sha512 = "1QGstZmGmgmY0rLSTAURlBJdR4s2PRYiZh6dS4HkzzQu7xVDWoCMD+2F7dolsNA8ChTNx2OvBW80n3O9QPICCg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.750.0.tgz";
+ sha512 = "THWHHAceLwsOiowPEmKyhWVDlEUxH07GHSw5AQFDvNQtGKOQl0HSIFO1mKObT2Q2Vqzji9Bq8H58SO5BFtNPRw==";
};
};
"@aws-sdk/credential-provider-process-3.296.0" = {
@@ -453,13 +445,13 @@ let
sha512 = "AY7sTX2dGi8ripuCpcJLYHOZB2wJ6NnseyK/kK5TfJn/pgboKwuGtz0hkJCVprNWomKa6IpHksm7vLQ4O2E+UA==";
};
};
- "@aws-sdk/credential-provider-process-3.749.0" = {
+ "@aws-sdk/credential-provider-process-3.750.0" = {
name = "_at_aws-sdk_slash_credential-provider-process";
packageName = "@aws-sdk/credential-provider-process";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.749.0.tgz";
- sha512 = "C/cgg/AhRabybZRY9mJ6KDz8uqfasWKuFIFGzTpeb/MIDIL53ZqP61CspiQJTRvC4zlFGqvm43XefphfrBGGlQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.750.0.tgz";
+ sha512 = "Q78SCH1n0m7tpu36sJwfrUSxI8l611OyysjQeMiIOliVfZICEoHcLHLcLkiR+tnIpZ3rk7d2EQ6R1jwlXnalMQ==";
};
};
"@aws-sdk/credential-provider-sso-3.296.0" = {
@@ -471,13 +463,13 @@ let
sha512 = "zPFHDX/niXfcQrKQhmBv1XPYEe4b7im4vRKrzjYXgDRpG2M3LP0KaWIwN6Ap+GRYBNBthen86vhTlmKGzyU5YA==";
};
};
- "@aws-sdk/credential-provider-sso-3.749.0" = {
+ "@aws-sdk/credential-provider-sso-3.750.0" = {
name = "_at_aws-sdk_slash_credential-provider-sso";
packageName = "@aws-sdk/credential-provider-sso";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.749.0.tgz";
- sha512 = "bQNgWcYk10fYOvFwcLskYYVNLO3KMgmV1ip9ieapJb9JDg6bSBaXNjIDhdpK4biTOfrV+adtDO5EU93ogpmAWA==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.750.0.tgz";
+ sha512 = "FGYrDjXN/FOQVi/t8fHSv8zCk+NEvtFnuc4cZUj5OIbM4vrfFc5VaPyn41Uza3iv6Qq9rZg0QOwWnqK8lNrqUw==";
};
};
"@aws-sdk/credential-provider-web-identity-3.296.0" = {
@@ -489,22 +481,22 @@ let
sha512 = "Rl6Ohoekxe+pccA55XXQDW5wApbg3rGWr6FkmPRcg7Ld6Vfe+HL8OtfsFf83/0eoFerevbif+00BdknXWT05LA==";
};
};
- "@aws-sdk/credential-provider-web-identity-3.749.0" = {
+ "@aws-sdk/credential-provider-web-identity-3.750.0" = {
name = "_at_aws-sdk_slash_credential-provider-web-identity";
packageName = "@aws-sdk/credential-provider-web-identity";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.749.0.tgz";
- sha512 = "jzHk6i4G4dnXL+L+qeILguDCiIhA1rNvJzB5lTts4R8OdmNkG12bGbYL8bL4O1b5qCimlo7HS0IZIby0pS7rcg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.750.0.tgz";
+ sha512 = "Nz8zs3YJ+GOTSrq+LyzbbC1Ffpt7pK38gcOyNZv76pP5MswKTUKNYBJehqwa+i7FcFQHsCk3TdhR8MT1ZR23uA==";
};
};
- "@aws-sdk/crt-loader-3.749.0" = {
+ "@aws-sdk/crt-loader-3.750.0" = {
name = "_at_aws-sdk_slash_crt-loader";
packageName = "@aws-sdk/crt-loader";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/crt-loader/-/crt-loader-3.749.0.tgz";
- sha512 = "HLakuc/wWQbeG2VfHS6UHflV0HbTDnLQrooOu0RgQaGmmXxcyx26lPGMtxsAylSQ2+Rw1p55ViIal27pclf0gQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/crt-loader/-/crt-loader-3.750.0.tgz";
+ sha512 = "L92XdDaDKQi1ldocQnBjUpu5o47GMdGaZ2TTUDOnOZyIggb15lNsfknJaLz3Q74rx09qkY1OYe8zsTKBB7lMmQ==";
};
};
"@aws-sdk/eventstream-codec-3.296.0" = {
@@ -606,13 +598,13 @@ let
sha512 = "SCIt10cr5dud7hvwveU4wkLjvkGssJ3GrcbHCds2NwI+JHmpcaaNYLAqi305JAuT29T36U5ssTFDSmrrEOcfag==";
};
};
- "@aws-sdk/lib-storage-3.749.0" = {
+ "@aws-sdk/lib-storage-3.750.0" = {
name = "_at_aws-sdk_slash_lib-storage";
packageName = "@aws-sdk/lib-storage";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.749.0.tgz";
- sha512 = "eYvsRWzukHeZ3k/hFt66or33JJg5zAm/jtstbxZaKRq/H1VfWkKh1QyQHu0UiOXZnjEkTFNJujwGME8JmAWpRg==";
+ url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.750.0.tgz";
+ sha512 = "2IHbhUzlKtiAZVW7S5jkJfVDj5pJC9TldHGJLYRAR9GReG9HhK6mI7kLnYE9jf3GchWfe/Bn3wqSwh3BIf0OZQ==";
};
};
"@aws-sdk/md5-js-3.296.0" = {
@@ -687,13 +679,13 @@ let
sha512 = "F5wVMhLIgA86PKsK/Az7LGIiNVDdZjoSn0+boe6fYW/AIAmgJhPf//500Md0GsKsLOCcPcxiQC43a0hVT2zbew==";
};
};
- "@aws-sdk/middleware-flexible-checksums-3.749.0" = {
+ "@aws-sdk/middleware-flexible-checksums-3.750.0" = {
name = "_at_aws-sdk_slash_middleware-flexible-checksums";
packageName = "@aws-sdk/middleware-flexible-checksums";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.749.0.tgz";
- sha512 = "LebOuHbO5BPeke0EB7I7aU7EK807XEyHeCQ3El4CztkGr7cY37PiYP5E0bsSs/4dlK534en/oD0dBA82gZ3xcg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.750.0.tgz";
+ sha512 = "ach0d2buDnX2TUausUbiXXFWFo3IegLnCrA+Rw8I9AYVpLN9lTaRwAYJwYC6zEuW9Golff8MwkYsp/OaC5tKMw==";
};
};
"@aws-sdk/middleware-host-header-3.296.0" = {
@@ -786,13 +778,13 @@ let
sha512 = "zH4uZKEqumo01wn+dTwrYnvOui9GjDiuBHdECnSjnA0Mkxo/tfMPYzYD7mE8kUlBz7HfQcXeXlyaApj9fPkxvg==";
};
};
- "@aws-sdk/middleware-sdk-s3-3.749.0" = {
+ "@aws-sdk/middleware-sdk-s3-3.750.0" = {
name = "_at_aws-sdk_slash_middleware-sdk-s3";
packageName = "@aws-sdk/middleware-sdk-s3";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.749.0.tgz";
- sha512 = "A7OaNkSFzI2vCRarSKEzoVejAyiLY1M1Z6PR3TE2woAPUUAgRv5UlFOXSymBx1Ya3HUQzWky7mnpnKAFyRGzSg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.750.0.tgz";
+ sha512 = "3H6Z46cmAQCHQ0z8mm7/cftY5ifiLfCjbObrbyyp2fhQs9zk6gCKzIX8Zjhw0RMd93FZi3ebRuKJWmMglf4Itw==";
};
};
"@aws-sdk/middleware-sdk-sts-3.296.0" = {
@@ -858,22 +850,22 @@ let
sha512 = "L7jacxSt6gxX1gD3tQtfwHqBDk5rT2wWD3rxBa6rs7f81b9ObgY/sPT2IgRT7JNCVzvKLYFxJaTklDj65mY1SQ==";
};
};
- "@aws-sdk/middleware-user-agent-3.749.0" = {
+ "@aws-sdk/middleware-user-agent-3.750.0" = {
name = "_at_aws-sdk_slash_middleware-user-agent";
packageName = "@aws-sdk/middleware-user-agent";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.749.0.tgz";
- sha512 = "dNRkZtiM8OoGb/h2Fgrgvty9ltYEubzsD5FH+VN14RrluertLQMmqHrgvq7JoAXFf7MJy+uwhRu4V6pf1sZR/w==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.750.0.tgz";
+ sha512 = "YYcslDsP5+2NZoN3UwuhZGkhAHPSli7HlJHBafBrvjGV/I9f8FuOO1d1ebxGdEP4HyRXUGyh+7Ur4q+Psk0ryw==";
};
};
- "@aws-sdk/nested-clients-3.749.0" = {
+ "@aws-sdk/nested-clients-3.750.0" = {
name = "_at_aws-sdk_slash_nested-clients";
packageName = "@aws-sdk/nested-clients";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.749.0.tgz";
- sha512 = "5L8OuVojcVQAZw+iVXTaw88AZTlMw8fD51lB6spzbZdNLl6dd5Iz1JVJAOUl2mTAZXRiN5Q9VECwY1yMgWweAw==";
+ url = "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.750.0.tgz";
+ sha512 = "OH68BRF0rt9nDloq4zsfeHI0G21lj11a66qosaljtEP66PWm7tQ06feKbFkXHT5E1K3QhJW3nVyK8v2fEBY5fg==";
};
};
"@aws-sdk/node-config-provider-3.296.0" = {
@@ -939,13 +931,13 @@ let
sha512 = "Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ==";
};
};
- "@aws-sdk/s3-presigned-post-3.749.0" = {
+ "@aws-sdk/s3-presigned-post-3.750.0" = {
name = "_at_aws-sdk_slash_s3-presigned-post";
packageName = "@aws-sdk/s3-presigned-post";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.749.0.tgz";
- sha512 = "CpIP8PhXLt/ooEqhaRsxF+gcOB83p+TkAqdqgxp2SJhsIvHqEwjjhrk31IZe1IXDMjpgbt6VvZ2lGJLAUBytNw==";
+ url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.750.0.tgz";
+ sha512 = "pKCc/ZMj4rSnMwRyRiMfmTIPj5ODc0VM11+Lkywl+rEWru9kH05fww6TYximZuiBcixbaMVkQ4ePXj6DNsRB4w==";
};
};
"@aws-sdk/s3-request-presigner-3.296.0" = {
@@ -957,13 +949,13 @@ let
sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw==";
};
};
- "@aws-sdk/s3-request-presigner-3.749.0" = {
+ "@aws-sdk/s3-request-presigner-3.750.0" = {
name = "_at_aws-sdk_slash_s3-request-presigner";
packageName = "@aws-sdk/s3-request-presigner";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.749.0.tgz";
- sha512 = "ZUBBJvKGXNuLTsHymBjGsr6WoouRVojURouAc8ueePWxTCt0u/mOOP0KRFVfwmM166YMr+QWr/ym4bJ8aHLAkA==";
+ url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.750.0.tgz";
+ sha512 = "G4GNngNQlh9EyJZj2WKOOikX0Fev1WSxTV/XJugaHlpnVriebvi3GzolrgxUpRrcGpFGWjmAxLi/gYxTUla1ow==";
};
};
"@aws-sdk/service-error-classification-3.296.0" = {
@@ -993,13 +985,13 @@ let
sha512 = "NQyJ/FClty4VmF1WoV4rOkbN0Unn0zevzy8iJrYhqxE3Sc7lySM4Btnsd4Iqelm2dR6l+jNRApGgD8NvoGjGig==";
};
};
- "@aws-sdk/signature-v4-crt-3.749.0" = {
+ "@aws-sdk/signature-v4-crt-3.750.0" = {
name = "_at_aws-sdk_slash_signature-v4-crt";
packageName = "@aws-sdk/signature-v4-crt";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.749.0.tgz";
- sha512 = "h1cOkh7q8Q26Fx4CrxZEGORtZM0J2J33zTOQ97Rl/CL0Wyp9tGthC7lb7205iJcaZXQ40YL2qzqPdUzlAldCtg==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.750.0.tgz";
+ sha512 = "8GET9edlujvrCHi4C6mnlViiQmYsena6HiSAHIeLh6vu7WgCDI1Gpgo2UI7Z93TRjyhp/c95ifKVjJDeauPPrw==";
};
};
"@aws-sdk/signature-v4-multi-region-3.296.0" = {
@@ -1011,13 +1003,13 @@ let
sha512 = "BNMXS0YJEgflPhO2KxXG4f0iTMOGdyxslDMNGmMWGGQm6bbwtqZ7Y9ZyMQYKfzk3GUPpfGQcaaSNiGfURPOCOg==";
};
};
- "@aws-sdk/signature-v4-multi-region-3.749.0" = {
+ "@aws-sdk/signature-v4-multi-region-3.750.0" = {
name = "_at_aws-sdk_slash_signature-v4-multi-region";
packageName = "@aws-sdk/signature-v4-multi-region";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.749.0.tgz";
- sha512 = "8ZR3vnJn1Tgg/qpalkyQMUILzZhw6XV1aCDxYMevqHYu6/f0ujvytJjiUd+j92sfxgN781f6bWpt/jVY0jarxg==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.750.0.tgz";
+ sha512 = "RA9hv1Irro/CrdPcOEXKwJ0DJYJwYCsauGEdRXihrRfy8MNSR9E+mD5/Fr5Rxjaq5AHM05DYnN3mg/DU6VwzSw==";
};
};
"@aws-sdk/smithy-client-3.296.0" = {
@@ -1038,13 +1030,13 @@ let
sha512 = "yC1ku7A5S+o/CLlgbgDB2bx8+Wq43qj8xfohmTuIhpiP2m/NyUiRVv6S6ARONLI6bVeo1T2/BFk5Q9DfE2xzAQ==";
};
};
- "@aws-sdk/token-providers-3.749.0" = {
+ "@aws-sdk/token-providers-3.750.0" = {
name = "_at_aws-sdk_slash_token-providers";
packageName = "@aws-sdk/token-providers";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.749.0.tgz";
- sha512 = "s3ExVWoNZan6U7ljMqjiHq3bOe4EqL+U+cVPwqNxAsMaJpGyCiA8VQFlXNGg0EPAFbz/0DVBcozYht6/vyH3sg==";
+ url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.750.0.tgz";
+ sha512 = "X/KzqZw41iWolwNdc8e3RMcNSMR364viHv78u6AefXOO5eRM40c4/LuST1jDzq35/LpnqRhL7/MuixOetw+sFw==";
};
};
"@aws-sdk/types-3.296.0" = {
@@ -1290,13 +1282,13 @@ let
sha512 = "AMWac8aIBnaa9nxAEpZ752j29a/UQTViRfR5gnCX38ECBKGfOQMpgYnee5HdlMr4GHJj0WkOzQxBtInW4pV58g==";
};
};
- "@aws-sdk/util-user-agent-node-3.749.0" = {
+ "@aws-sdk/util-user-agent-node-3.750.0" = {
name = "_at_aws-sdk_slash_util-user-agent-node";
packageName = "@aws-sdk/util-user-agent-node";
- version = "3.749.0";
+ version = "3.750.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.749.0.tgz";
- sha512 = "uBzolGGrwvZKhpYlGIy9tw6gRdqVs2zyjjXUiifdgbr3WiQXJe8sE1KhLjzyN/VOPcZB0rY34ybqiKEDOymOeQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.750.0.tgz";
+ sha512 = "84HJj9G9zbrHX2opLk9eHfDceB+UIHVrmflMzWHpsmo9fDuro/flIBqaVDlE021Osj6qIM0SJJcnL6s23j7JEw==";
};
};
"@aws-sdk/util-utf8-3.295.0" = {
@@ -1443,15 +1435,6 @@ let
sha512 = "EknvVmtBuSIic47xkOqyNabAme0RYTw52BTMz8eBgU1ysTyMrD1uOoM+JdS0J/4Yfp98IBT3osqq3BfwSaNaGQ==";
};
};
- "@azure/identity-4.6.0" = {
- name = "_at_azure_slash_identity";
- packageName = "@azure/identity";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@azure/identity/-/identity-4.6.0.tgz";
- sha512 = "ANpO1iAvcZmpD4QY7/kaE/P2n66pRXsDp3nMUC6Ow3c9KfXOZF7qMU9VgqPw8m7adP7TVIbVyrCEmD9cth3KQQ==";
- };
- };
"@azure/logger-1.1.4" = {
name = "_at_azure_slash_logger";
packageName = "@azure/logger";
@@ -1470,15 +1453,6 @@ let
sha512 = "OHHEWMB5+Zrix8yKvLVzU3rKDFvh7SOzAzXfICD7YgUXLxfHpTPX2pzOotrri1kskwhHqIj4a5LvhZlIqE7C7g==";
};
};
- "@azure/msal-browser-4.2.1" = {
- name = "_at_azure_slash_msal-browser";
- packageName = "@azure/msal-browser";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-4.2.1.tgz";
- sha512 = "pJX+HNVxEEvxqj3xvnFKMi/Yb6jadwOWN2QkDagj2GV2XXxJg3qq5zkE+czVw6Cmf4QiXxct+J0WF23sE8vZyA==";
- };
- };
"@azure/msal-common-14.16.0" = {
name = "_at_azure_slash_msal-common";
packageName = "@azure/msal-common";
@@ -1488,15 +1462,6 @@ let
sha512 = "1KOZj9IpcDSwpNiQNjt0jDYZpQvNZay7QAEi/5DLubay40iGYtLzya/jbjRPLyOTZhEKyL1MzPuw2HqBCjceYA==";
};
};
- "@azure/msal-common-15.1.1" = {
- name = "_at_azure_slash_msal-common";
- packageName = "@azure/msal-common";
- version = "15.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.1.1.tgz";
- sha512 = "bvLWYq9fleAcTJ6H+hfkG91On6vI/UhGyOB7Z6r0Bsa+KTL3zPtigmGCOJgdxrEklOYD88X9SehexLDH/5NRKQ==";
- };
- };
"@azure/msal-node-2.16.2" = {
name = "_at_azure_slash_msal-node";
packageName = "@azure/msal-node";
@@ -2127,58 +2092,58 @@ let
sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g==";
};
};
- "@cspell/cspell-bundled-dicts-8.17.3" = {
+ "@cspell/cspell-bundled-dicts-8.17.5" = {
name = "_at_cspell_slash_cspell-bundled-dicts";
packageName = "@cspell/cspell-bundled-dicts";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.17.3.tgz";
- sha512 = "6uOF726o3JnExAUKM20OJJXZo+Qf9Jt64nkVwnVXx7Upqr5I9Pb1npYPEAIpUA03SnWYmKwUIqhAmkwrN+bLPA==";
+ url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.17.5.tgz";
+ sha512 = "b/Ntabar+g4gsRNwOct909cvatO/auHhNvBzJZfyFQzryI1nqHMaSFuDsrrtzbhQkGJ4GiMAKCXZC2EOdHMgmw==";
};
};
- "@cspell/cspell-json-reporter-8.17.3" = {
+ "@cspell/cspell-json-reporter-8.17.5" = {
name = "_at_cspell_slash_cspell-json-reporter";
packageName = "@cspell/cspell-json-reporter";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.17.3.tgz";
- sha512 = "RWSfyHOin/d9CqLjz00JMvPkag3yUSsQZr6G9BnCT5cMEO/ws8wQZzA54CNj/LAOccbknTX65SSroPPAtxs56w==";
+ url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.17.5.tgz";
+ sha512 = "+eVFCdnda74Frv8hguHYwDtxvqDuJJ/luFRl4dC5oknPMRab0JCHM1DDYjp3NzsehTex0HmcxplxqVW6QoDosg==";
};
};
- "@cspell/cspell-pipe-8.17.3" = {
+ "@cspell/cspell-pipe-8.17.5" = {
name = "_at_cspell_slash_cspell-pipe";
packageName = "@cspell/cspell-pipe";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.17.3.tgz";
- sha512 = "DqqSWKt9NLWPGloYxZTpzUhgdW8ObMkZmOOF6TyqpJ4IbckEct8ULgskNorTNRlmmjLniaNgvg6JSHuYO3Urxw==";
+ url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.17.5.tgz";
+ sha512 = "VOIfFdIo3FYQFcSpIyGkqHupOx0LgfBrWs79IKnTT1II27VUHPF+0oGq0WWf4c2Zpd8tzdHvS3IUhGarWZq69g==";
};
};
- "@cspell/cspell-resolver-8.17.3" = {
+ "@cspell/cspell-resolver-8.17.5" = {
name = "_at_cspell_slash_cspell-resolver";
packageName = "@cspell/cspell-resolver";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.17.3.tgz";
- sha512 = "yQlVaIsWiax6RRuuacZs++kl6Y9rwH9ZkVlsG9fhdeCJ5Xf3WCW+vmX1chzhhKDzRr8CF9fsvb1uagd/5/bBYA==";
+ url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.17.5.tgz";
+ sha512 = "5MhYInligPbGctWxoklAKxtg+sxvtJCuRKGSQHHA0JlCOLSsducypl780P6zvpjLK59XmdfC+wtFONxSmRbsuA==";
};
};
- "@cspell/cspell-service-bus-8.17.3" = {
+ "@cspell/cspell-service-bus-8.17.5" = {
name = "_at_cspell_slash_cspell-service-bus";
packageName = "@cspell/cspell-service-bus";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.17.3.tgz";
- sha512 = "CC3nob/Kbuesz5WTW+LjAHnDFXJrA49pW5ckmbufJxNnoAk7EJez/qr7/ELMTf6Fl3A5xZ776Lhq7738Hy/fmQ==";
+ url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.17.5.tgz";
+ sha512 = "Ur3IK0R92G/2J6roopG9cU/EhoYAMOx2um7KYlq93cdrly8RBAK2NCcGCL7DbjQB6C9RYEAV60ueMUnQ45RrCQ==";
};
};
- "@cspell/cspell-types-8.17.3" = {
+ "@cspell/cspell-types-8.17.5" = {
name = "_at_cspell_slash_cspell-types";
packageName = "@cspell/cspell-types";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.17.3.tgz";
- sha512 = "ozgeuSioX9z2wtlargfgdw3LKwDFAfm8gxu+xwNREvXiLsevb+lb7ZlY5/ay+MahqR5Hfs7XzYzBLTKL/ldn9g==";
+ url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.17.5.tgz";
+ sha512 = "91y2+0teunRSRZj940ORDA3kdjyenrUiM+4j6nQQH24sAIAJdRmQl2LG3eUTmeaSReJGkZIpnToQ6DyU5cC88Q==";
};
};
"@cspell/dict-ada-4.1.0" = {
@@ -2262,13 +2227,13 @@ let
sha512 = "sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw==";
};
};
- "@cspell/dict-cpp-6.0.3" = {
+ "@cspell/dict-cpp-6.0.4" = {
name = "_at_cspell_slash_dict-cpp";
packageName = "@cspell/dict-cpp";
- version = "6.0.3";
+ version = "6.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.3.tgz";
- sha512 = "OFrVXdxCeGKnon36Pe3yFjBuY4kzzEwWFf3vDz+cJTodZDkjFkBifQeTtt5YfimgF8cfAJZXkBCsxjipAgmAiw==";
+ url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.4.tgz";
+ sha512 = "IvXx3TlM+OL0CFriapk7ZHmeY89dSSdo/BZ3DGf+WUS+BWd64H+z/xr3xkkqY0Eu6MV/vdzNfkLm5zl45FDMGg==";
};
};
"@cspell/dict-cryptocurrencies-1.0.10" = {
@@ -2433,13 +2398,13 @@ let
sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ==";
};
};
- "@cspell/dict-en_us-4.3.31" = {
+ "@cspell/dict-en_us-4.3.33" = {
name = "_at_cspell_slash_dict-en_us";
packageName = "@cspell/dict-en_us";
- version = "4.3.31";
+ version = "4.3.33";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.31.tgz";
- sha512 = "MDc+1B0aFwQONS0JZ6w7ks2KFGkUcaNTFJ8kI6GHvFRmEl3zP5NJDwFEXFsoEdLDb86j2myauSWMJXR3JFuwbA==";
+ url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.33.tgz";
+ sha512 = "HniqQjzPVn24NEkHooBIw1cH+iO3AKMA9oDTwazUYQP1/ldqXsz6ce4+fdHia2nqypmic/lHVkQgIVhP48q/sA==";
};
};
"@cspell/dict-filetypes-1.1.8" = {
@@ -2505,13 +2470,13 @@ let
sha512 = "Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g==";
};
};
- "@cspell/dict-fullstack-3.2.4" = {
+ "@cspell/dict-fullstack-3.2.5" = {
name = "_at_cspell_slash_dict-fullstack";
packageName = "@cspell/dict-fullstack";
- version = "3.2.4";
+ version = "3.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.4.tgz";
- sha512 = "JRRvaOLBZ13BO9sP395W+06tyO1Jy/87aFlKe9xQiCWMiwpCo2kGq0xBGq0PDWe253lYLs+GKrNmLU0fSxrObg==";
+ url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.5.tgz";
+ sha512 = "XNmNdovPUS9Vc2JvfBscy8zZfwyxR11sB4fxU2lXh7LzUvOn2/OkKAzj41JTdiWfVnJ/yvsRkspe+b7kr+DIQw==";
};
};
"@cspell/dict-gaming-terms-1.1.0" = {
@@ -2766,13 +2731,13 @@ let
sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ==";
};
};
- "@cspell/dict-npm-5.1.26" = {
+ "@cspell/dict-npm-5.1.27" = {
name = "_at_cspell_slash_dict-npm";
packageName = "@cspell/dict-npm";
- version = "5.1.26";
+ version = "5.1.27";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.26.tgz";
- sha512 = "JU0/9P4nLPPC3Py+sF42tUKm9J4KAvwXaJubp2a4QwhCPzFVlOJTP2tTseFlLbdZn23d61pt0hZ+Jhyy7N76Mg==";
+ url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.27.tgz";
+ sha512 = "LGss1yrjhxSmxL4VfMC+UBDMVHfqHudgC7b39M74EVys+nNC4/lqDHacb6Aw7i6aUn9mzdNIkdTTD+LdDcHvPA==";
};
};
"@cspell/dict-php-1.0.25" = {
@@ -2991,40 +2956,40 @@ let
sha512 = "0dPtI0lwHcAgSiQFx8CzvqjdoXROcH+1LyqgROCpBgppommWpVhbQ0eubnKotFEXgpUCONVkeZJ6Ql8NbTEu+w==";
};
};
- "@cspell/dynamic-import-8.17.3" = {
+ "@cspell/dynamic-import-8.17.5" = {
name = "_at_cspell_slash_dynamic-import";
packageName = "@cspell/dynamic-import";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.17.3.tgz";
- sha512 = "Kg6IJhGHPv+9OxpxaXUpcqgnHEOhMLRWHLyx7FADZ+CJyO4AVeWQfhpTRM6KXhzIl7dPlLG1g8JAQxaoy88KTw==";
+ url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.17.5.tgz";
+ sha512 = "tY+cVkRou+0VKvH+K1NXv8/R7mOlW3BDGSs9fcgvhatj0m00Yf8blFC7tE4VVI9Qh2bkC/KDFqM24IqZbuwXUQ==";
};
};
- "@cspell/filetypes-8.17.3" = {
+ "@cspell/filetypes-8.17.5" = {
name = "_at_cspell_slash_filetypes";
packageName = "@cspell/filetypes";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.17.3.tgz";
- sha512 = "UFqRmJPccOSo+RYP/jZ4cr0s7ni37GrvnNAg1H/qIIxfmBYsexTAmsNzMqxp1M31NeI1Cx3LL7PspPMT0ms+7w==";
+ url = "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.17.5.tgz";
+ sha512 = "Fj6py2Rl+FEnMiXhRQUM1A5QmyeCLxi6dY/vQ0qfH6tp6KSaBiaC8wuPUKhr8hKyTd3+8lkUbobDhUf6xtMEXg==";
};
};
- "@cspell/strong-weak-map-8.17.3" = {
+ "@cspell/strong-weak-map-8.17.5" = {
name = "_at_cspell_slash_strong-weak-map";
packageName = "@cspell/strong-weak-map";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.17.3.tgz";
- sha512 = "l/CaFc3CITI/dC+whEBZ05Om0KXR3V2whhVOWOBPIqA5lCjWAyvWWvmFD+CxWd0Hs6Qcb/YDnMyJW14aioXN4g==";
+ url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.17.5.tgz";
+ sha512 = "Z4eo+rZJr1086wZWycBiIG/n7gGvVoqn28I7ZicS8xedRYu/4yp2loHgLn4NpxG3e46+dNWs4La6vinod+UydQ==";
};
};
- "@cspell/url-8.17.3" = {
+ "@cspell/url-8.17.5" = {
name = "_at_cspell_slash_url";
packageName = "@cspell/url";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/url/-/url-8.17.3.tgz";
- sha512 = "gcsCz8g0qY94C8RXiAlUH/89n84Q9RSptP91XrvnLOT+Xva9Aibd7ywd5k9ameuf8Nagyl0ezB1MInZ30S9SRw==";
+ url = "https://registry.npmjs.org/@cspell/url/-/url-8.17.5.tgz";
+ sha512 = "GNQqST7zI85dAFVyao6oiTeg5rNhO9FH1ZAd397qQhvwfxrrniNfuoewu8gPXyP0R4XBiiaCwhBL7w9S/F5guw==";
};
};
"@cspotcode/source-map-support-0.8.1" = {
@@ -3036,31 +3001,31 @@ let
sha512 = "IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==";
};
};
- "@csstools/color-helpers-5.0.1" = {
+ "@csstools/color-helpers-5.0.2" = {
name = "_at_csstools_slash_color-helpers";
packageName = "@csstools/color-helpers";
- version = "5.0.1";
+ version = "5.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.1.tgz";
- sha512 = "MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==";
+ url = "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.2.tgz";
+ sha512 = "JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==";
};
};
- "@csstools/css-calc-2.1.1" = {
+ "@csstools/css-calc-2.1.2" = {
name = "_at_csstools_slash_css-calc";
packageName = "@csstools/css-calc";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.1.tgz";
- sha512 = "rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==";
+ url = "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.2.tgz";
+ sha512 = "TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw==";
};
};
- "@csstools/css-color-parser-3.0.7" = {
+ "@csstools/css-color-parser-3.0.8" = {
name = "_at_csstools_slash_css-color-parser";
packageName = "@csstools/css-color-parser";
- version = "3.0.7";
+ version = "3.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.7.tgz";
- sha512 = "nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==";
+ url = "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.8.tgz";
+ sha512 = "pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ==";
};
};
"@csstools/css-parser-algorithms-3.0.4" = {
@@ -3198,112 +3163,112 @@ let
sha512 = "0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw==";
};
};
- "@electron-forge/core-7.6.1" = {
+ "@electron-forge/core-7.7.0" = {
name = "_at_electron-forge_slash_core";
packageName = "@electron-forge/core";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/core/-/core-7.6.1.tgz";
- sha512 = "gODx2GcBl6Y6ls1DeBidhKC0nmI2/xfx89WcSEDa5M3NKm/bBQo1EPjpwG6F+2r4e8KDkY/KrRbIli+wL1zQ7w==";
+ url = "https://registry.npmjs.org/@electron-forge/core/-/core-7.7.0.tgz";
+ sha512 = "BWhg1Zw1bhpDuZowGH3lXDiL9zZBsYFNjtqyMqmkjcEm5xf9Dzs8mpRpNjtkpf3jit3LB4PNGMLj3c8ix0h4vQ==";
};
};
- "@electron-forge/core-utils-7.6.1" = {
+ "@electron-forge/core-utils-7.7.0" = {
name = "_at_electron-forge_slash_core-utils";
packageName = "@electron-forge/core-utils";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-7.6.1.tgz";
- sha512 = "RGA3azq0r5bGk8DDmVDP1EML071JEa44hpZEgSsv9zmdC86aTh0cANyDE6sVarAwLx4LQ+zrFE3KSb63j1HD5w==";
+ url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-7.7.0.tgz";
+ sha512 = "kgOkiLzqnySkcpt26rBg8AoZsI1ID3f6s/dQlzfRJisWZTKTu4ryiMcaC0F07DVjaYFnEl9SQ86IvkTcyS97mQ==";
};
};
- "@electron-forge/maker-base-7.6.1" = {
+ "@electron-forge/maker-base-7.7.0" = {
name = "_at_electron-forge_slash_maker-base";
packageName = "@electron-forge/maker-base";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-7.6.1.tgz";
- sha512 = "kA6k0z4fFbqfjV++bbYVC46TckiqyqIo/gTW/QexsT6xlutXUbnNevhoRPVfGigftSAjE6T26DwTogC9hNDkwg==";
+ url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-7.7.0.tgz";
+ sha512 = "9u+mmBLBAUHuH0+IGw94EGVTDD4CPKX05h5pp5/PIaijy16ss5dymK4vEp3s2XJMFlza2PsCgLLYBgDcAE2Dqg==";
};
};
- "@electron-forge/plugin-base-7.6.1" = {
+ "@electron-forge/plugin-base-7.7.0" = {
name = "_at_electron-forge_slash_plugin-base";
packageName = "@electron-forge/plugin-base";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-7.6.1.tgz";
- sha512 = "RWt+a8At55dVwEgr8BnnmBN05QzZq+DbOHNPeSJEM2d4ZyLUZXTkkwSF+ZMVk5mQCfIf75l+6BEzkXOcVvti2Q==";
+ url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-7.7.0.tgz";
+ sha512 = "6wisQ4ZKOWey48wFF+JHzih7AuQuVma5KauwNEju2Dh2ibwDMJmPy0FWVolMSg7XUIMbGKLADGilxX6XRv8qNQ==";
};
};
- "@electron-forge/publisher-base-7.6.1" = {
+ "@electron-forge/publisher-base-7.7.0" = {
name = "_at_electron-forge_slash_publisher-base";
packageName = "@electron-forge/publisher-base";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-7.6.1.tgz";
- sha512 = "VE0DJJYcMRGMxEbeC20q+ynCpra9oqkM6oXd8O1jRyTit9F+PZlscT/p5vLANrTW5vGrV6CXLyyloPxWxOf8DA==";
+ url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-7.7.0.tgz";
+ sha512 = "jHKvUc1peBBSl2t5d1x6M3CNyCMyNB+NnTO9LmA1dWFQ3oRDFwromIH5KjRqPJj6l4AyH0/XJogdO7Nn4Eyn6Q==";
};
};
- "@electron-forge/shared-types-7.6.1" = {
+ "@electron-forge/shared-types-7.7.0" = {
name = "_at_electron-forge_slash_shared-types";
packageName = "@electron-forge/shared-types";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-7.6.1.tgz";
- sha512 = "i6VdZGG8SYEBirpk+FP7bEMYtCNf9wBkK81IcPco8LP0KbsvgR8y7aUSVxG8DLoVwYB5yr0N9MYXOfNp1gkQ7A==";
+ url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-7.7.0.tgz";
+ sha512 = "1zQsmudkAuHv0HnJtSJY3pvTeuN3fnSa9BR6cbeUlcpOfrnG4OTG03FqerHfyIWaBRVy7jGgif0NhKKE9azKyg==";
};
};
- "@electron-forge/template-base-7.6.1" = {
+ "@electron-forge/template-base-7.7.0" = {
name = "_at_electron-forge_slash_template-base";
packageName = "@electron-forge/template-base";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-7.6.1.tgz";
- sha512 = "Pk65CIe6jYJa/hv25o0ueyuAOrRTi3qz92g5cYnj+YZzndNmrem1sNQvNKkavw0w0TKEUC5Y0EZ4ejLSYhVIQA==";
+ url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-7.7.0.tgz";
+ sha512 = "jwnhEHNIyQfbwJ6R8SuZIJApHKBykDr/rSgUF3km9nr2qAUSoUUV7RaJa/uiQJMtvamXenuo5K84C2NzumzS3A==";
};
};
- "@electron-forge/template-vite-7.6.1" = {
+ "@electron-forge/template-vite-7.7.0" = {
name = "_at_electron-forge_slash_template-vite";
packageName = "@electron-forge/template-vite";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-7.6.1.tgz";
- sha512 = "DxRBCXgnpFQHueG3M6yDN1x2pTYDycHXIddLExUydA9bsrxVwlu8Oo7Mm5XOEltebITD/bZ0iQniOVkzUov37g==";
+ url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-7.7.0.tgz";
+ sha512 = "6p+U6FDWrmF7XgSLkrO07OOgJcrrrArbnExSckGJdBnupxmIDf1Y+exwfHHKdxX6/FfkA6JST5nRGjgA5CFqcw==";
};
};
- "@electron-forge/template-vite-typescript-7.6.1" = {
+ "@electron-forge/template-vite-typescript-7.7.0" = {
name = "_at_electron-forge_slash_template-vite-typescript";
packageName = "@electron-forge/template-vite-typescript";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-vite-typescript/-/template-vite-typescript-7.6.1.tgz";
- sha512 = "7aMq7/woR2xUNbCYCRa/dwinnjoYKuamn17hYBwmyRNJ+YKV9btVK6lq+WR4sJmFM5Fv3qOJlUwrNyxH+HoUCQ==";
+ url = "https://registry.npmjs.org/@electron-forge/template-vite-typescript/-/template-vite-typescript-7.7.0.tgz";
+ sha512 = "32C/+PF+hIloTdbRx7OutvqnTkkC7BHeQxNw4/zG2TfQ3cjl7JUD6A2UvTUHtv5KHkK2hDw6ZdahPwpJO41YSA==";
};
};
- "@electron-forge/template-webpack-7.6.1" = {
+ "@electron-forge/template-webpack-7.7.0" = {
name = "_at_electron-forge_slash_template-webpack";
packageName = "@electron-forge/template-webpack";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-7.6.1.tgz";
- sha512 = "8HXJ7eh5mjphC2tBfBOroEfM71DsWt3yrkEQMGzW6Lc5u2itkCQrEAINm3nuLscWrqLRk4ZsfT1f1VzdwAraXg==";
+ url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-7.7.0.tgz";
+ sha512 = "7Hb1wejKqtvPXqhelubUNAh39FtClB/4JDtWzyAsL2iC3XeB5qh6pITz8+nW/rF2qW/JAepc/lnreqKn34P2ig==";
};
};
- "@electron-forge/template-webpack-typescript-7.6.1" = {
+ "@electron-forge/template-webpack-typescript-7.7.0" = {
name = "_at_electron-forge_slash_template-webpack-typescript";
packageName = "@electron-forge/template-webpack-typescript";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-7.6.1.tgz";
- sha512 = "ECEd70QOAi7r2ZibIU2U9rh0CVND7oJP5BnKRCP20uUCxdQdO7RTMRDXesm41VTRa1uZ+64pRdOQTDFHB6xitA==";
+ url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-7.7.0.tgz";
+ sha512 = "w1vRAjGy0MjjdEDYPpZcpkMo2e3z5uEwfJdwVOpBeha7p2WM/Y6go21K+7pSqGp8Xmq4zlE20hq5MEx8Bs8eZg==";
};
};
- "@electron-forge/tracer-7.6.1" = {
+ "@electron-forge/tracer-7.7.0" = {
name = "_at_electron-forge_slash_tracer";
packageName = "@electron-forge/tracer";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/tracer/-/tracer-7.6.1.tgz";
- sha512 = "nZzVzXT4xdueWYoSbgStS5LfcifW/e/WJj9VOt6xYpFxYOsQHpLkkCAc6nH0gxn+60kiU4FMU0p2kSQ2eQhWuA==";
+ url = "https://registry.npmjs.org/@electron-forge/tracer/-/tracer-7.7.0.tgz";
+ sha512 = "R/JiGFzWhwfVyc6ioT4l5FFChRLS4Z2tWPeQfPcyoemdpzKpI1rvMHti42gzWXFW8GdzkhG0G3ZWfKiF3y3x/Q==";
};
};
"@electron/asar-3.3.1" = {
@@ -3324,17 +3289,16 @@ let
sha512 = "F+nKc0xW+kVbBRhFzaMgPy3KwmuNTYX1fx6+FxxoSnNgwYX6LD7AKBTWkU0MQ6IBoe7dz069CNkR673sPAgkCQ==";
};
};
- "@electron/node-gyp-git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2" =
- {
- name = "_at_electron_slash_node-gyp";
- packageName = "@electron/node-gyp";
- version = "10.2.0-electron.1";
- src = fetchgit {
- url = "https://github.com/electron/node-gyp.git";
- rev = "06b29aafb7708acef8b3669835c8a7857ebc92d2";
- sha256 = "033b279dda9d8576174438fafb804f2b27173433a5fe0359232330ffe5a3b155";
- };
+ "@electron/node-gyp-git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2" = {
+ name = "_at_electron_slash_node-gyp";
+ packageName = "@electron/node-gyp";
+ version = "10.2.0-electron.1";
+ src = fetchgit {
+ url = "https://github.com/electron/node-gyp.git";
+ rev = "06b29aafb7708acef8b3669835c8a7857ebc92d2";
+ sha256 = "033b279dda9d8576174438fafb804f2b27173433a5fe0359232330ffe5a3b155";
};
+ };
"@electron/notarize-2.5.0" = {
name = "_at_electron_slash_notarize";
packageName = "@electron/notarize";
@@ -3398,33 +3362,6 @@ let
sha512 = "Ce3xE2JvTSEbASFbRbA1gAIcMcZWdS2yUYRaQbeM0nbOzaZrUYfa3ePtcriYRZOZmr+CkKA+zbjhvTpIOAYVcw==";
};
};
- "@emnapi/core-1.3.1" = {
- name = "_at_emnapi_slash_core";
- packageName = "@emnapi/core";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@emnapi/core/-/core-1.3.1.tgz";
- sha512 = "pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==";
- };
- };
- "@emnapi/runtime-1.3.1" = {
- name = "_at_emnapi_slash_runtime";
- packageName = "@emnapi/runtime";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz";
- sha512 = "kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==";
- };
- };
- "@emnapi/wasi-threads-1.0.1" = {
- name = "_at_emnapi_slash_wasi-threads";
- packageName = "@emnapi/wasi-threads";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.1.tgz";
- sha512 = "iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==";
- };
- };
"@eslint-community/eslint-utils-4.4.1" = {
name = "_at_eslint-community_slash_eslint-utils";
packageName = "@eslint-community/eslint-utils";
@@ -3452,22 +3389,13 @@ let
sha512 = "GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==";
};
};
- "@eslint/core-0.10.0" = {
- name = "_at_eslint_slash_core";
- packageName = "@eslint/core";
- version = "0.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz";
- sha512 = "gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==";
- };
- };
- "@eslint/core-0.11.0" = {
+ "@eslint/core-0.12.0" = {
name = "_at_eslint_slash_core";
packageName = "@eslint/core";
- version = "0.11.0";
+ version = "0.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/core/-/core-0.11.0.tgz";
- sha512 = "DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA==";
+ url = "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz";
+ sha512 = "cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==";
};
};
"@eslint/eslintrc-0.4.3" = {
@@ -3479,40 +3407,22 @@ let
sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==";
};
};
- "@eslint/eslintrc-2.1.4" = {
+ "@eslint/eslintrc-3.3.0" = {
name = "_at_eslint_slash_eslintrc";
packageName = "@eslint/eslintrc";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz";
- sha512 = "269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==";
- };
- };
- "@eslint/eslintrc-3.2.0" = {
- name = "_at_eslint_slash_eslintrc";
- packageName = "@eslint/eslintrc";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz";
- sha512 = "grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==";
- };
- };
- "@eslint/js-8.57.1" = {
- name = "_at_eslint_slash_js";
- packageName = "@eslint/js";
- version = "8.57.1";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz";
- sha512 = "d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==";
+ url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.0.tgz";
+ sha512 = "yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==";
};
};
- "@eslint/js-9.20.0" = {
+ "@eslint/js-9.21.0" = {
name = "_at_eslint_slash_js";
packageName = "@eslint/js";
- version = "9.20.0";
+ version = "9.21.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/js/-/js-9.20.0.tgz";
- sha512 = "iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==";
+ url = "https://registry.npmjs.org/@eslint/js/-/js-9.21.0.tgz";
+ sha512 = "BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==";
};
};
"@eslint/object-schema-2.1.6" = {
@@ -3524,13 +3434,13 @@ let
sha512 = "RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==";
};
};
- "@eslint/plugin-kit-0.2.5" = {
+ "@eslint/plugin-kit-0.2.7" = {
name = "_at_eslint_slash_plugin-kit";
packageName = "@eslint/plugin-kit";
- version = "0.2.5";
+ version = "0.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz";
- sha512 = "lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==";
+ url = "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz";
+ sha512 = "JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==";
};
};
"@ethereumjs/rlp-4.0.1" = {
@@ -3695,15 +3605,6 @@ let
sha512 = "foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==";
};
};
- "@hpcc-js/wasm-2.22.4" = {
- name = "_at_hpcc-js_slash_wasm";
- packageName = "@hpcc-js/wasm";
- version = "2.22.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@hpcc-js/wasm/-/wasm-2.22.4.tgz";
- sha512 = "58JkRkxZffiBAbZhc7z+9iaaAOmn1cyxLL3rRwsUvco/I0Wwb7uVAlHM9HiU6XASe2k11jrIjCFff1t9QKjlqg==";
- };
- };
"@httptoolkit/websocket-stream-6.0.1" = {
name = "_at_httptoolkit_slash_websocket-stream";
packageName = "@httptoolkit/websocket-stream";
@@ -3731,15 +3632,6 @@ let
sha512 = "YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==";
};
};
- "@humanwhocodes/config-array-0.13.0" = {
- name = "_at_humanwhocodes_slash_config-array";
- packageName = "@humanwhocodes/config-array";
- version = "0.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz";
- sha512 = "DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==";
- };
- };
"@humanwhocodes/config-array-0.5.0" = {
name = "_at_humanwhocodes_slash_config-array";
packageName = "@humanwhocodes/config-array";
@@ -3767,15 +3659,6 @@ let
sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==";
};
};
- "@humanwhocodes/object-schema-2.0.3" = {
- name = "_at_humanwhocodes_slash_object-schema";
- packageName = "@humanwhocodes/object-schema";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz";
- sha512 = "93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==";
- };
- };
"@humanwhocodes/retry-0.3.1" = {
name = "_at_humanwhocodes_slash_retry";
packageName = "@humanwhocodes/retry";
@@ -3785,22 +3668,13 @@ let
sha512 = "JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==";
};
};
- "@humanwhocodes/retry-0.4.1" = {
+ "@humanwhocodes/retry-0.4.2" = {
name = "_at_humanwhocodes_slash_retry";
packageName = "@humanwhocodes/retry";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz";
- sha512 = "c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==";
- };
- };
- "@hutson/parse-repository-url-3.0.2" = {
- name = "_at_hutson_slash_parse-repository-url";
- packageName = "@hutson/parse-repository-url";
- version = "3.0.2";
+ version = "0.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz";
- sha512 = "H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==";
+ url = "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz";
+ sha512 = "xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==";
};
};
"@hutson/parse-repository-url-5.0.0" = {
@@ -4100,24 +3974,6 @@ let
sha512 = "wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==";
};
};
- "@isaacs/string-locale-compare-1.1.0" = {
- name = "_at_isaacs_slash_string-locale-compare";
- packageName = "@isaacs/string-locale-compare";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz";
- sha512 = "SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==";
- };
- };
- "@jest/schemas-29.6.3" = {
- name = "_at_jest_slash_schemas";
- packageName = "@jest/schemas";
- version = "29.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz";
- sha512 = "mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==";
- };
- };
"@jimp/bmp-0.16.13" = {
name = "_at_jimp_slash_bmp";
packageName = "@jimp/bmp";
@@ -4613,31 +4469,31 @@ let
sha512 = "uyKjxCe1ou11RJz6koBr5vXtyaGjTA45hF+H88GNW96vms7jKqmYdMm067Az1OKwl38h02lQRQ2tmoEzV7u74w==";
};
};
- "@jsii/check-node-1.106.0" = {
+ "@jsii/check-node-1.107.0" = {
name = "_at_jsii_slash_check-node";
packageName = "@jsii/check-node";
- version = "1.106.0";
+ version = "1.107.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.106.0.tgz";
- sha512 = "/T/TUsbHdEbZRFR4Rem9+UXVvgMYncEkrIeC52oIHJ8BDSgqlDsIARio/Eu5DOftF4avSLV/sshR6n19mpK1oA==";
+ url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.107.0.tgz";
+ sha512 = "ud21048xxEVbbzjFlE7GQSuypW7/8P6Dyu+jjTwp6wGFbnbpxZiupIMdp6eSVSqo9M3rC14SyjNq2liXoSYBZg==";
};
};
- "@jsii/spec-1.106.0" = {
- name = "_at_jsii_slash_spec";
- packageName = "@jsii/spec";
- version = "1.106.0";
+ "@jsii/check-node-1.108.0" = {
+ name = "_at_jsii_slash_check-node";
+ packageName = "@jsii/check-node";
+ version = "1.108.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.106.0.tgz";
- sha512 = "pAIvqEGf0YLmtzFtUKWNEGkCmXMHENy7k+rzCD147wnM4jHhvEL1mEvxi99aA2VcmvLYaAYNOs/XozT+s+kLqQ==";
+ url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.108.0.tgz";
+ sha512 = "wa8AGH31Cl0x1jU/KtM6JB32IurBmK1YiX5ZnCndifRCehLnS8DmJCPYrzJbKD4xqmHigaq6696fAnM/L7qIsw==";
};
};
- "@lerna/create-8.1.9" = {
- name = "_at_lerna_slash_create";
- packageName = "@lerna/create";
- version = "8.1.9";
+ "@jsii/spec-1.108.0" = {
+ name = "_at_jsii_slash_spec";
+ packageName = "@jsii/spec";
+ version = "1.108.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/create/-/create-8.1.9.tgz";
- sha512 = "DPnl5lPX4v49eVxEbJnAizrpMdMTBz1qykZrAbBul9rfgk531v8oAt+Pm6O/rpAleRombNM7FJb5rYGzBJatOQ==";
+ url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.108.0.tgz";
+ sha512 = "YtebmBRy19UT1pKmxqlTqfW1OcFFjuU2zxxi+QFfM8KG1ahBlpcuz+3DE9gG1qTASIJJJI0fd8PaAiZ5gE40sQ==";
};
};
"@lezer/common-1.2.3" = {
@@ -4802,13 +4658,13 @@ let
sha512 = "llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==";
};
};
- "@microsoft/rush-lib-5.149.0" = {
+ "@microsoft/rush-lib-5.149.1" = {
name = "_at_microsoft_slash_rush-lib";
packageName = "@microsoft/rush-lib";
- version = "5.149.0";
+ version = "5.149.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.149.0.tgz";
- sha512 = "731PSPEbT3ltCiNDMFBJOxoKnoefIMNqRseYT8Q4Col57/veiKkO4P4UDN6Lyn3BKUZNT9mV/VjOWKr65LUnhQ==";
+ url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.149.1.tgz";
+ sha512 = "x7787VxNas7xSQEilLJsUEW25jAtiTej11nSGEVXRrY/L78f6MD0xenCN8uVnWFn5Zxdj5+zoto0Xyktglgx7Q==";
};
};
"@mischnic/json-sourcemap-0.1.1" = {
@@ -4829,15 +4685,6 @@ let
sha512 = "Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==";
};
};
- "@napi-rs/wasm-runtime-0.2.4" = {
- name = "_at_napi-rs_slash_wasm-runtime";
- packageName = "@napi-rs/wasm-runtime";
- version = "0.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.4.tgz";
- sha512 = "9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==";
- };
- };
"@noble/curves-1.4.2" = {
name = "_at_noble_slash_curves";
packageName = "@noble/curves";
@@ -4883,15 +4730,6 @@ let
sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==";
};
};
- "@npmcli/agent-2.2.2" = {
- name = "_at_npmcli_slash_agent";
- packageName = "@npmcli/agent";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz";
- sha512 = "OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==";
- };
- };
"@npmcli/agent-3.0.0" = {
name = "_at_npmcli_slash_agent";
packageName = "@npmcli/agent";
@@ -4901,15 +4739,6 @@ let
sha512 = "S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==";
};
};
- "@npmcli/arborist-7.5.4" = {
- name = "_at_npmcli_slash_arborist";
- packageName = "@npmcli/arborist";
- version = "7.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-7.5.4.tgz";
- sha512 = "nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g==";
- };
- };
"@npmcli/config-6.4.1" = {
name = "_at_npmcli_slash_config";
packageName = "@npmcli/config";
@@ -4946,15 +4775,6 @@ let
sha512 = "yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==";
};
};
- "@npmcli/fs-3.1.1" = {
- name = "_at_npmcli_slash_fs";
- packageName = "@npmcli/fs";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz";
- sha512 = "q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==";
- };
- };
"@npmcli/fs-4.0.0" = {
name = "_at_npmcli_slash_fs";
packageName = "@npmcli/fs";
@@ -4973,22 +4793,13 @@ let
sha512 = "liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==";
};
};
- "@npmcli/git-6.0.1" = {
+ "@npmcli/git-6.0.3" = {
name = "_at_npmcli_slash_git";
packageName = "@npmcli/git";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/git/-/git-6.0.1.tgz";
- sha512 = "BBWMMxeQzalmKadyimwb2/VVQyJB01PH0HhVSNLHNBDZN/M/h/02P6f8fxedIiFhpMj11SO9Ep5tKTBE7zL2nw==";
- };
- };
- "@npmcli/installed-package-contents-2.1.0" = {
- name = "_at_npmcli_slash_installed-package-contents";
- packageName = "@npmcli/installed-package-contents";
- version = "2.1.0";
+ version = "6.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz";
- sha512 = "c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==";
+ url = "https://registry.npmjs.org/@npmcli/git/-/git-6.0.3.tgz";
+ sha512 = "GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==";
};
};
"@npmcli/installed-package-contents-3.0.0" = {
@@ -5009,15 +4820,6 @@ let
sha512 = "tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==";
};
};
- "@npmcli/metavuln-calculator-7.1.1" = {
- name = "_at_npmcli_slash_metavuln-calculator";
- packageName = "@npmcli/metavuln-calculator";
- version = "7.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-7.1.1.tgz";
- sha512 = "Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==";
- };
- };
"@npmcli/move-file-1.1.2" = {
name = "_at_npmcli_slash_move-file";
packageName = "@npmcli/move-file";
@@ -5045,15 +4847,6 @@ let
sha512 = "pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==";
};
};
- "@npmcli/node-gyp-3.0.0" = {
- name = "_at_npmcli_slash_node-gyp";
- packageName = "@npmcli/node-gyp";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz";
- sha512 = "gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==";
- };
- };
"@npmcli/node-gyp-4.0.0" = {
name = "_at_npmcli_slash_node-gyp";
packageName = "@npmcli/node-gyp";
@@ -5063,15 +4856,6 @@ let
sha512 = "+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==";
};
};
- "@npmcli/package-json-5.2.0" = {
- name = "_at_npmcli_slash_package-json";
- packageName = "@npmcli/package-json";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.0.tgz";
- sha512 = "qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==";
- };
- };
"@npmcli/package-json-5.2.1" = {
name = "_at_npmcli_slash_package-json";
packageName = "@npmcli/package-json";
@@ -5108,24 +4892,6 @@ let
sha512 = "/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ==";
};
};
- "@npmcli/query-3.1.0" = {
- name = "_at_npmcli_slash_query";
- packageName = "@npmcli/query";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/query/-/query-3.1.0.tgz";
- sha512 = "C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==";
- };
- };
- "@npmcli/redact-2.0.1" = {
- name = "_at_npmcli_slash_redact";
- packageName = "@npmcli/redact";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/redact/-/redact-2.0.1.tgz";
- sha512 = "YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==";
- };
- };
"@npmcli/redact-3.1.1" = {
name = "_at_npmcli_slash_redact";
packageName = "@npmcli/redact";
@@ -5135,15 +4901,6 @@ let
sha512 = "3Hc2KGIkrvJWJqTbvueXzBeZlmvoOxc2jyX00yzr3+sNFquJg0N8hH4SAPLPVrkWIRQICVpVgjrss971awXVnA==";
};
};
- "@npmcli/run-script-8.1.0" = {
- name = "_at_npmcli_slash_run-script";
- packageName = "@npmcli/run-script";
- version = "8.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-8.1.0.tgz";
- sha512 = "y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==";
- };
- };
"@npmcli/run-script-9.0.2" = {
name = "_at_npmcli_slash_run-script";
packageName = "@npmcli/run-script";
@@ -5153,15 +4910,6 @@ let
sha512 = "cJXiUlycdizQwvqE1iaAb4VRUM3RX09/8q46zjvy+ct9GhfZRWd7jXYVc1tn/CfRlGPVkX/u4sstRlepsm7hfw==";
};
};
- "@nx/devkit-20.4.4" = {
- name = "_at_nx_slash_devkit";
- packageName = "@nx/devkit";
- version = "20.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@nx/devkit/-/devkit-20.4.4.tgz";
- sha512 = "gwTsgHIIVKjLDPAC32/cWMJRMabT7g64guyQdu9Rp+xbIJfSI+NSYVGftMHljxY1eWbYpN392y9UEVkYjQfzvg==";
- };
- };
"@oclif/core-1.26.2" = {
name = "_at_oclif_slash_core";
packageName = "@oclif/core";
@@ -5234,141 +4982,6 @@ let
sha512 = "yx6KAqlt3TAHBduS2fMQtJDL2ufIHnDRArrJEOoTTuizxqmjLT+psGYOHpmMl3gvQpFJ11Hs76guUUktzAF9Bg==";
};
};
- "@octokit/auth-token-3.0.4" = {
- name = "_at_octokit_slash_auth-token";
- packageName = "@octokit/auth-token";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.4.tgz";
- sha512 = "TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==";
- };
- };
- "@octokit/core-4.2.4" = {
- name = "_at_octokit_slash_core";
- packageName = "@octokit/core";
- version = "4.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/core/-/core-4.2.4.tgz";
- sha512 = "rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==";
- };
- };
- "@octokit/endpoint-7.0.6" = {
- name = "_at_octokit_slash_endpoint";
- packageName = "@octokit/endpoint";
- version = "7.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.6.tgz";
- sha512 = "5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==";
- };
- };
- "@octokit/graphql-5.0.6" = {
- name = "_at_octokit_slash_graphql";
- packageName = "@octokit/graphql";
- version = "5.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.6.tgz";
- sha512 = "Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==";
- };
- };
- "@octokit/openapi-types-18.1.1" = {
- name = "_at_octokit_slash_openapi-types";
- packageName = "@octokit/openapi-types";
- version = "18.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.1.1.tgz";
- sha512 = "VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==";
- };
- };
- "@octokit/plugin-enterprise-rest-6.0.1" = {
- name = "_at_octokit_slash_plugin-enterprise-rest";
- packageName = "@octokit/plugin-enterprise-rest";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz";
- sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==";
- };
- };
- "@octokit/plugin-paginate-rest-6.1.2" = {
- name = "_at_octokit_slash_plugin-paginate-rest";
- packageName = "@octokit/plugin-paginate-rest";
- version = "6.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz";
- sha512 = "qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==";
- };
- };
- "@octokit/plugin-request-log-1.0.4" = {
- name = "_at_octokit_slash_plugin-request-log";
- packageName = "@octokit/plugin-request-log";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz";
- sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==";
- };
- };
- "@octokit/plugin-rest-endpoint-methods-7.2.3" = {
- name = "_at_octokit_slash_plugin-rest-endpoint-methods";
- packageName = "@octokit/plugin-rest-endpoint-methods";
- version = "7.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz";
- sha512 = "I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==";
- };
- };
- "@octokit/request-6.2.8" = {
- name = "_at_octokit_slash_request";
- packageName = "@octokit/request";
- version = "6.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/request/-/request-6.2.8.tgz";
- sha512 = "ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==";
- };
- };
- "@octokit/request-error-3.0.3" = {
- name = "_at_octokit_slash_request-error";
- packageName = "@octokit/request-error";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz";
- sha512 = "crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==";
- };
- };
- "@octokit/rest-19.0.11" = {
- name = "_at_octokit_slash_rest";
- packageName = "@octokit/rest";
- version = "19.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.11.tgz";
- sha512 = "m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==";
- };
- };
- "@octokit/tsconfig-1.0.2" = {
- name = "_at_octokit_slash_tsconfig";
- packageName = "@octokit/tsconfig";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/tsconfig/-/tsconfig-1.0.2.tgz";
- sha512 = "I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==";
- };
- };
- "@octokit/types-10.0.0" = {
- name = "_at_octokit_slash_types";
- packageName = "@octokit/types";
- version = "10.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-10.0.0.tgz";
- sha512 = "Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==";
- };
- };
- "@octokit/types-9.3.2" = {
- name = "_at_octokit_slash_types";
- packageName = "@octokit/types";
- version = "9.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-9.3.2.tgz";
- sha512 = "D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==";
- };
- };
"@one-ini/wasm-0.1.1" = {
name = "_at_one-ini_slash_wasm";
packageName = "@one-ini/wasm";
@@ -6224,22 +5837,22 @@ let
sha512 = "8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==";
};
};
- "@prisma/prisma-schema-wasm-6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0" = {
+ "@prisma/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d" = {
name = "_at_prisma_slash_prisma-schema-wasm";
packageName = "@prisma/prisma-schema-wasm";
- version = "6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0";
+ version = "6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0.tgz";
- sha512 = "eUGf3d4K5XaQwfxr61Cbjq7ZpU+xrp5FVpt+NV+ZZQ9hxvKBL+tzi5gA4qufJ6BFC1WohgBSjelYbW+UUt3vXw==";
+ url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d.tgz";
+ sha512 = "nq1XcNXsdYbCnMFwG7QyCRLb0M4ubQrhq+7HLu7ugLJonDUy17il5qnxk9tVjkgRoEAm1QNZmqG5dXGfAN2fmQ==";
};
};
- "@prisma/schema-files-loader-6.3.1" = {
+ "@prisma/schema-files-loader-6.4.1" = {
name = "_at_prisma_slash_schema-files-loader";
packageName = "@prisma/schema-files-loader";
- version = "6.3.1";
+ version = "6.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-6.3.1.tgz";
- sha512 = "kdH6RL0Yy8a2Lqb96UJBp40Q8+Hei9qukEDlhg8an2E8uIPaerL72ME8f6EfI9zYu33ddc69MH2dES1DfYdY/A==";
+ url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-6.4.1.tgz";
+ sha512 = "6Rh9BA7nliCJ2ns8/ioEgtezsm9Sydv5vH2Ja2SgZ5c30GbY1QInmmz9jVCsm5qol0iHsnSOPSRHR2FSQW+Mmw==";
};
};
"@protobufjs/aspromise-1.1.2" = {
@@ -6359,22 +5972,22 @@ let
sha512 = "USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==";
};
};
- "@rushstack/heft-config-file-0.16.5" = {
+ "@rushstack/heft-config-file-0.16.6" = {
name = "_at_rushstack_slash_heft-config-file";
packageName = "@rushstack/heft-config-file";
- version = "0.16.5";
+ version = "0.16.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.16.5.tgz";
- sha512 = "XzV4QdwK8LL2U0wjDtPp+bjEU0juj3jP+eCfwSIBZPVsH3VDdiXC2AlJVa6Jiht7hY2M9LPT3PJ5zha2w80lCA==";
+ url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.16.6.tgz";
+ sha512 = "V83ucRqVt9quigDNgUggikNSAGtnfKUzzTcr18jYa/BzLyLdg9ITjr2RxVHzl7eNlJFiENr9vZdgaS45YjmhqA==";
};
};
- "@rushstack/lookup-by-path-0.5.5" = {
+ "@rushstack/lookup-by-path-0.5.6" = {
name = "_at_rushstack_slash_lookup-by-path";
packageName = "@rushstack/lookup-by-path";
- version = "0.5.5";
+ version = "0.5.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/lookup-by-path/-/lookup-by-path-0.5.5.tgz";
- sha512 = "PqE78ucRsIJk1+vCZIhKV0UMlBLwQswgulcbOgxEwv+yIlgvx7mEPGJlrwSWvgNvMnu/Rwd9nqAluvxJM2JdGA==";
+ url = "https://registry.npmjs.org/@rushstack/lookup-by-path/-/lookup-by-path-0.5.6.tgz";
+ sha512 = "TJ7eobYV7hBBDzo9JGJC7bxvWUgizZtCZs3Wl0avx5ko09G5AYmz1jkPK3Y/UK/rpGQWYUKwuk5fTSbH+IPoqQ==";
};
};
"@rushstack/node-core-library-5.11.0" = {
@@ -6386,22 +5999,22 @@ let
sha512 = "I8+VzG9A0F3nH2rLpPd7hF8F7l5Xb7D+ldrWVZYegXM6CsKkvWc670RlgK3WX8/AseZfXA/vVrh0bpXe2Y2UDQ==";
};
};
- "@rushstack/package-deps-hash-4.3.6" = {
+ "@rushstack/package-deps-hash-4.3.7" = {
name = "_at_rushstack_slash_package-deps-hash";
packageName = "@rushstack/package-deps-hash";
- version = "4.3.6";
+ version = "4.3.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.3.6.tgz";
- sha512 = "Vl8DlhiMspBd2PnRPlbXMpPTcwFh2JdrutItFD6os8duXWWHX7tiE4BQJNMYbEPZCvPkwrGj1EnWoFaKQM/5Xw==";
+ url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.3.7.tgz";
+ sha512 = "fSwL7Zg54tQ2D4L2rfpkx0Wajk01DjM/afmGcw4VB2AlSWmJGqKkPhXvfacQRv0Y4n2faJICZgplfxlNcq7g9g==";
};
};
- "@rushstack/package-extractor-0.10.10" = {
+ "@rushstack/package-extractor-0.10.11" = {
name = "_at_rushstack_slash_package-extractor";
packageName = "@rushstack/package-extractor";
- version = "0.10.10";
+ version = "0.10.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.10.10.tgz";
- sha512 = "F0DVbn6ILKKfoNZ7RhJAFT2dIEB20Z/8g2Gmm19pjKZbOazyd+FRwnts/ogwlTBmic88Ogca8QOJZT8HCLB7Sw==";
+ url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.10.11.tgz";
+ sha512 = "7VGPYGYFD2LnS5eJREidPKfLbsG67yw1/iEzSvnCmkB/IDz5JNBLtP8nwqGTKb1dDXb6ZoSrQ+DWa451WQY9HQ==";
};
};
"@rushstack/rig-package-0.5.3" = {
@@ -6413,49 +6026,49 @@ let
sha512 = "olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==";
};
};
- "@rushstack/rush-amazon-s3-build-cache-plugin-5.149.0" = {
+ "@rushstack/rush-amazon-s3-build-cache-plugin-5.149.1" = {
name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin";
packageName = "@rushstack/rush-amazon-s3-build-cache-plugin";
- version = "5.149.0";
+ version = "5.149.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.149.0.tgz";
- sha512 = "svQbg/oJYlUskaYkjDXwGzTSxX8/QJd/4zVs3kxV6RbuvIsHAVpHtU6IUk+Hm+uHTQIfcdBH4UdBoOADzeHN/g==";
+ url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.149.1.tgz";
+ sha512 = "OQGF623+jEb8XWz5MjvUMW7v0q6zjf7NcnWRMyH/hkRkt83oJtbh+EKu5WW/9z0wLt6yvFo9iGqe+pJP0RiD0A==";
};
};
- "@rushstack/rush-azure-storage-build-cache-plugin-5.149.0" = {
+ "@rushstack/rush-azure-storage-build-cache-plugin-5.149.1" = {
name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin";
packageName = "@rushstack/rush-azure-storage-build-cache-plugin";
- version = "5.149.0";
+ version = "5.149.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.149.0.tgz";
- sha512 = "IB1Sx617FQm5sYqXU+/BLy/K8pg2FskqLqzyfcXyCEPV/nki1z8FmvHdsBIzL0iwoTlIqY9/UMWclUk4OMk7gg==";
+ url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.149.1.tgz";
+ sha512 = "tyVJI/TZsvb8ThQC7l8VAOUkxw3pako+8xyi5trEfNHa7O3PPqNJ9L6xGuOKrQltDhUmWDk+zijEENXR8Y3a8A==";
};
};
- "@rushstack/rush-http-build-cache-plugin-5.149.0" = {
+ "@rushstack/rush-http-build-cache-plugin-5.149.1" = {
name = "_at_rushstack_slash_rush-http-build-cache-plugin";
packageName = "@rushstack/rush-http-build-cache-plugin";
- version = "5.149.0";
+ version = "5.149.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.149.0.tgz";
- sha512 = "LE0ecAabAxzJ7rHibwDGo6zfQL4x8TBqkcLbIHUMlB4CyreF+RzUOXVoi8USbD75b1y7dJBnprl/rPW0dKIGqw==";
+ url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.149.1.tgz";
+ sha512 = "9E6iFKIgzZm58lANqa7eOqBMAtGxC5jSSgprbZ6X/BSD/F9Ao++txD1YQdkI3ZgQBCeZEW9w2q9v73fkkIgkMw==";
};
};
- "@rushstack/rush-sdk-5.149.0" = {
+ "@rushstack/rush-sdk-5.149.1" = {
name = "_at_rushstack_slash_rush-sdk";
packageName = "@rushstack/rush-sdk";
- version = "5.149.0";
+ version = "5.149.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.149.0.tgz";
- sha512 = "JHxD/8ssiju4gJa9QW+K8WaXAOfzQNSv260E3Xx/RIYRIgq4tHkk9Pqpg+bsw17XvE4jbjTL2GBXVJyOEE160Q==";
+ url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.149.1.tgz";
+ sha512 = "jfgO6EfQ19RbHCtn2A8M3AUYE8OD08mHExZQOt0uoUg59mr6cN0faHTuCnzvnHf0CjxaiW+VzsiRt0xKePkVwQ==";
};
};
- "@rushstack/stream-collator-4.1.84" = {
+ "@rushstack/stream-collator-4.1.85" = {
name = "_at_rushstack_slash_stream-collator";
packageName = "@rushstack/stream-collator";
- version = "4.1.84";
+ version = "4.1.85";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.84.tgz";
- sha512 = "H6nVTPh8TrnF392H2iISkm4mkU7QH2FFYgw0TwSJvEPJ6+ukU2kpffq1NPF6wnyzt7fyxCmY9EY8nVGsdS9BSA==";
+ url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.85.tgz";
+ sha512 = "o1p16mx0vIb7ZprnZJt3LLTZBT5rBYG+sua6LQ49gIf25CBhZuFSVazjhQP6gGCl4eiLZwdIiV5ETQ6tDv1kmg==";
};
};
"@rushstack/terminal-0.15.0" = {
@@ -6485,13 +6098,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-19.1.7" = {
+ "@schematics/angular-19.1.8" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "19.1.7";
+ version = "19.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-19.1.7.tgz";
- sha512 = "BB8yMGmYDZzSb8Nu+Ln0TKyeoS3++f9STCYw30NwM3IViHxJJYxu/zowzwSa9TjftIzdCpbOaPxGS0vU9UOUDQ==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-19.1.8.tgz";
+ sha512 = "ytgClbMPn+i+w1S3QukR/Vdge+sfU9aX49ao+XRwoWdOssHUjmVjQcCEdzu0ucSrNPZnhm34bdDPzADLhln60w==";
};
};
"@scure/base-1.1.9" = {
@@ -6656,6 +6269,15 @@ let
sha512 = "83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==";
};
};
+ "@shutterstock/p-map-iterable-1.1.2" = {
+ name = "_at_shutterstock_slash_p-map-iterable";
+ packageName = "@shutterstock/p-map-iterable";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@shutterstock/p-map-iterable/-/p-map-iterable-1.1.2.tgz";
+ sha512 = "zNPPB2cro7fr+gPsNPoEir6pzYfJngkik7EnsSD5uMqwzGB8qtMmausS5XO10KM5c1Hfw/hpe1oXf/UoHNZFlg==";
+ };
+ };
"@sideway/address-4.1.5" = {
name = "_at_sideway_slash_address";
packageName = "@sideway/address";
@@ -6683,15 +6305,6 @@ let
sha512 = "RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==";
};
};
- "@sigstore/bundle-2.3.2" = {
- name = "_at_sigstore_slash_bundle";
- packageName = "@sigstore/bundle";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.3.2.tgz";
- sha512 = "wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==";
- };
- };
"@sigstore/bundle-3.1.0" = {
name = "_at_sigstore_slash_bundle";
packageName = "@sigstore/bundle";
@@ -6701,15 +6314,6 @@ let
sha512 = "Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag==";
};
};
- "@sigstore/core-1.1.0" = {
- name = "_at_sigstore_slash_core";
- packageName = "@sigstore/core";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sigstore/core/-/core-1.1.0.tgz";
- sha512 = "JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==";
- };
- };
"@sigstore/core-2.0.0" = {
name = "_at_sigstore_slash_core";
packageName = "@sigstore/core";
@@ -6719,15 +6323,6 @@ let
sha512 = "nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==";
};
};
- "@sigstore/protobuf-specs-0.3.3" = {
- name = "_at_sigstore_slash_protobuf-specs";
- packageName = "@sigstore/protobuf-specs";
- version = "0.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.3.3.tgz";
- sha512 = "RpacQhBlwpBWd7KEJsRKcBQalbV28fvkxwTOJIqhIuDysMMaJW47V4OqW30iJB9uRpqOSxxEAQFdr8tTattReQ==";
- };
- };
"@sigstore/protobuf-specs-0.4.0" = {
name = "_at_sigstore_slash_protobuf-specs";
packageName = "@sigstore/protobuf-specs";
@@ -6737,15 +6332,6 @@ let
sha512 = "o09cLSIq9EKyRXwryWDOJagkml9XgQCoCSRjHOnHLnvsivaW7Qznzz6yjfV7PHJHhIvyp8OH7OX8w0Dc5bQK7A==";
};
};
- "@sigstore/sign-2.3.2" = {
- name = "_at_sigstore_slash_sign";
- packageName = "@sigstore/sign";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sigstore/sign/-/sign-2.3.2.tgz";
- sha512 = "5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==";
- };
- };
"@sigstore/sign-3.1.0" = {
name = "_at_sigstore_slash_sign";
packageName = "@sigstore/sign";
@@ -6755,15 +6341,6 @@ let
sha512 = "knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw==";
};
};
- "@sigstore/tuf-2.3.4" = {
- name = "_at_sigstore_slash_tuf";
- packageName = "@sigstore/tuf";
- version = "2.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.3.4.tgz";
- sha512 = "44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==";
- };
- };
"@sigstore/tuf-3.1.0" = {
name = "_at_sigstore_slash_tuf";
packageName = "@sigstore/tuf";
@@ -6773,15 +6350,6 @@ let
sha512 = "suVMQEA+sKdOz5hwP9qNcEjX6B45R+hFFr4LAWzbRc5O+U2IInwvay/bpG5a4s+qR35P/JK/PiKiRGjfuLy1IA==";
};
};
- "@sigstore/verify-1.2.1" = {
- name = "_at_sigstore_slash_verify";
- packageName = "@sigstore/verify";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sigstore/verify/-/verify-1.2.1.tgz";
- sha512 = "8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==";
- };
- };
"@sigstore/verify-2.1.0" = {
name = "_at_sigstore_slash_verify";
packageName = "@sigstore/verify";
@@ -6809,15 +6377,6 @@ let
sha512 = "XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==";
};
};
- "@sinclair/typebox-0.27.8" = {
- name = "_at_sinclair_slash_typebox";
- packageName = "@sinclair/typebox";
- version = "0.27.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz";
- sha512 = "+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==";
- };
- };
"@sindresorhus/chunkify-0.2.0" = {
name = "_at_sindresorhus_slash_chunkify";
packageName = "@sindresorhus/chunkify";
@@ -6935,13 +6494,13 @@ let
sha512 = "Igfg8lKu3dRVkTSEm98QpZUvKEOa71jDX4vKRcvJVyRc3UgN3j7vFMf0s7xLQhYmKa8kyJGQgUJDOV5V3neVlQ==";
};
};
- "@smithy/core-3.1.4" = {
+ "@smithy/core-3.1.5" = {
name = "_at_smithy_slash_core";
packageName = "@smithy/core";
- version = "3.1.4";
+ version = "3.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/core/-/core-3.1.4.tgz";
- sha512 = "wFExFGK+7r2wYriOqe7RRIBNpvxwiS95ih09+GSLRBdoyK/O1uZA7K7pKesj5CBvwJuSBeXwLyR88WwIAY+DGA==";
+ url = "https://registry.npmjs.org/@smithy/core/-/core-3.1.5.tgz";
+ sha512 = "HLclGWPkCsekQgsyzxLhCQLa8THWXtB5PxyYN+2O6nkyLt550KQKTlbV2D1/j5dNIQapAZM1+qFnpBFxZQkgCA==";
};
};
"@smithy/credential-provider-imds-4.0.1" = {
@@ -7079,22 +6638,22 @@ let
sha512 = "OGXo7w5EkB5pPiac7KNzVtfCW2vKBTZNuCctn++TTSOMpe6RZO/n6WEC1AxJINn3+vWLKW49uad3lo/u0WJ9oQ==";
};
};
- "@smithy/middleware-endpoint-4.0.5" = {
+ "@smithy/middleware-endpoint-4.0.6" = {
name = "_at_smithy_slash_middleware-endpoint";
packageName = "@smithy/middleware-endpoint";
- version = "4.0.5";
+ version = "4.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.5.tgz";
- sha512 = "cPzGZV7qStHwboFrm6GfrzQE+YDiCzWcTh4+7wKrP/ZQ4gkw+r7qDjV8GjM4N0UYsuUyLfpzLGg5hxsYTU11WA==";
+ url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.6.tgz";
+ sha512 = "ftpmkTHIFqgaFugcjzLZv3kzPEFsBFSnq1JsIkr2mwFzCraZVhQk2gqN51OOeRxqhbPTkRFj39Qd2V91E/mQxg==";
};
};
- "@smithy/middleware-retry-4.0.6" = {
+ "@smithy/middleware-retry-4.0.7" = {
name = "_at_smithy_slash_middleware-retry";
packageName = "@smithy/middleware-retry";
- version = "4.0.6";
+ version = "4.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.0.6.tgz";
- sha512 = "s8QzuOQnbdvRymD9Gt9c9zMq10wUQAHQ3z72uirrBHCwZcLTrL5iCOuVTMdka2IXOYhQE890WD5t6G24+F+Qcg==";
+ url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.0.7.tgz";
+ sha512 = "58j9XbUPLkqAcV1kHzVX/kAR16GT+j7DUZJqwzsxh1jtz7G82caZiGyyFgUvogVfNTg3TeAOIJepGc8TXF4AVQ==";
};
};
"@smithy/middleware-serde-4.0.2" = {
@@ -7124,13 +6683,13 @@ let
sha512 = "8mRTjvCtVET8+rxvmzRNRR0hH2JjV0DFOmwXPrISmTIJEfnCBugpYYGAsCj8t41qd+RB5gbheSQ/6aKZCQvFLQ==";
};
};
- "@smithy/node-http-handler-4.0.2" = {
+ "@smithy/node-http-handler-4.0.3" = {
name = "_at_smithy_slash_node-http-handler";
packageName = "@smithy/node-http-handler";
- version = "4.0.2";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.0.2.tgz";
- sha512 = "X66H9aah9hisLLSnGuzRYba6vckuFtGE+a5DcHLliI/YlqKrGoxhisD5XbX44KyoeRzoNlGr94eTsMVHFAzPOw==";
+ url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.0.3.tgz";
+ sha512 = "dYCLeINNbYdvmMLtW0VdhW1biXt+PPCGazzT5ZjKw46mOtdgToQEwjqZSS9/EN8+tNs/RO0cEWG044+YZs97aA==";
};
};
"@smithy/property-provider-4.0.1" = {
@@ -7196,13 +6755,13 @@ let
sha512 = "nCe6fQ+ppm1bQuw5iKoeJ0MJfz2os7Ic3GBjOkLOPtavbD1ONoyE3ygjBfz2ythFWm4YnRm6OxW+8p/m9uCoIA==";
};
};
- "@smithy/smithy-client-4.1.5" = {
+ "@smithy/smithy-client-4.1.6" = {
name = "_at_smithy_slash_smithy-client";
packageName = "@smithy/smithy-client";
- version = "4.1.5";
+ version = "4.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.1.5.tgz";
- sha512 = "DMXYoYeL4QkElr216n1yodTFeATbfb4jwYM9gKn71Rw/FNA1/Sm36tkTSCsZEs7mgpG3OINmkxL9vgVFzyGPaw==";
+ url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.1.6.tgz";
+ sha512 = "UYDolNg6h2O0L+cJjtgSyKKvEKCOa/8FHYJnBobyeoeWDmNpXjwOAtw16ezyeu1ETuuLEOZbrynK0ZY1Lx9Jbw==";
};
};
"@smithy/types-4.1.0" = {
@@ -7277,22 +6836,22 @@ let
sha512 = "L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w==";
};
};
- "@smithy/util-defaults-mode-browser-4.0.6" = {
+ "@smithy/util-defaults-mode-browser-4.0.7" = {
name = "_at_smithy_slash_util-defaults-mode-browser";
packageName = "@smithy/util-defaults-mode-browser";
- version = "4.0.6";
+ version = "4.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.6.tgz";
- sha512 = "N8+VCt+piupH1A7DgSVDNrVHqRLz8r6DvBkpS7EWHiIxsUk4jqGuQLjqC/gnCzmwGkVBdNruHoYAzzaSQ8e80w==";
+ url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.7.tgz";
+ sha512 = "CZgDDrYHLv0RUElOsmZtAnp1pIjwDVCSuZWOPhIOBvG36RDfX1Q9+6lS61xBf+qqvHoqRjHxgINeQz47cYFC2Q==";
};
};
- "@smithy/util-defaults-mode-node-4.0.6" = {
+ "@smithy/util-defaults-mode-node-4.0.7" = {
name = "_at_smithy_slash_util-defaults-mode-node";
packageName = "@smithy/util-defaults-mode-node";
- version = "4.0.6";
+ version = "4.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.6.tgz";
- sha512 = "9zhx1shd1VwSSVvLZB8CM3qQ3RPD3le7A3h/UPuyh/PC7g4OaWDi2xUNzamsVoSmCGtmUBONl56lM2EU6LcH7A==";
+ url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.7.tgz";
+ sha512 = "79fQW3hnfCdrfIi1soPbK3zmooRFnLpSx3Vxi6nUlqaaQeC5dm8plt4OTNDNqEEEDkvKghZSaoti684dQFVrGQ==";
};
};
"@smithy/util-endpoints-3.0.1" = {
@@ -7331,13 +6890,13 @@ let
sha512 = "WmRHqNVwn3kI3rKk1LsKcVgPBG6iLTBGC1iYOV3GQegwJ3E8yjzHytPt26VNzOWr1qu0xE03nK0Ug8S7T7oufw==";
};
};
- "@smithy/util-stream-4.1.1" = {
+ "@smithy/util-stream-4.1.2" = {
name = "_at_smithy_slash_util-stream";
packageName = "@smithy/util-stream";
- version = "4.1.1";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.1.1.tgz";
- sha512 = "+Xvh8nhy0Wjv1y71rBVyV3eJU3356XsFQNI8dEZVNrQju7Eib8G31GWtO+zMa9kTCGd41Mflu+ZKfmQL/o2XzQ==";
+ url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.1.2.tgz";
+ sha512 = "44PKEqQ303d3rlQuiDpcCcu//hV8sn+u2JBo84dWCE0rvgeiVl0IlLMagbU++o0jCWhYCsHaAt9wZuZqNe05Hw==";
};
};
"@smithy/util-uri-escape-4.0.0" = {
@@ -7574,40 +7133,13 @@ let
sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ==";
};
};
- "@swc-node/core-1.13.3" = {
- name = "_at_swc-node_slash_core";
- packageName = "@swc-node/core";
- version = "1.13.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@swc-node/core/-/core-1.13.3.tgz";
- sha512 = "OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==";
- };
- };
- "@swc-node/register-1.10.9" = {
- name = "_at_swc-node_slash_register";
- packageName = "@swc-node/register";
- version = "1.10.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/@swc-node/register/-/register-1.10.9.tgz";
- sha512 = "iXy2sjP0phPEpK2yivjRC3PAgoLaT4sjSk0LDWCTdcTBJmR4waEog0E6eJbvoOkLkOtWw37SB8vCkl/bbh4+8A==";
- };
- };
- "@swc-node/sourcemap-support-0.5.1" = {
- name = "_at_swc-node_slash_sourcemap-support";
- packageName = "@swc-node/sourcemap-support";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.5.1.tgz";
- sha512 = "JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==";
- };
- };
- "@swc/core-1.10.16" = {
+ "@swc/core-1.10.18" = {
name = "_at_swc_slash_core";
packageName = "@swc/core";
- version = "1.10.16";
+ version = "1.10.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core/-/core-1.10.16.tgz";
- sha512 = "nOINg/OUcZazCW7B55QV2/UB8QAqz9FYe4+z229+4RYboBTZ102K7ebOEjY5sKn59JgAkhjZTz+5BKmXpDFopw==";
+ url = "https://registry.npmjs.org/@swc/core/-/core-1.10.18.tgz";
+ sha512 = "IUWKD6uQYGRy8w2X9EZrtYg1O3SCijlHbCXzMaHQYc1X7yjijQh4H3IVL9ssZZyVp2ZDfQZu4bD5DWxxvpyjvg==";
};
};
"@swc/counter-0.1.3" = {
@@ -7628,22 +7160,22 @@ let
sha512 = "JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==";
};
};
- "@swc/types-0.1.17" = {
+ "@swc/types-0.1.18" = {
name = "_at_swc_slash_types";
packageName = "@swc/types";
- version = "0.1.17";
+ version = "0.1.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/types/-/types-0.1.17.tgz";
- sha512 = "V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==";
+ url = "https://registry.npmjs.org/@swc/types/-/types-0.1.18.tgz";
+ sha512 = "NZghLaQvF3eFdj2DUjGkpwaunbZYaRcxciHINnwA4n3FrLAI8hKFOBqs2wkcOiLQfWkIdfuG6gBkNFrkPNji5g==";
};
};
- "@swc/wasm-1.10.16" = {
+ "@swc/wasm-1.10.18" = {
name = "_at_swc_slash_wasm";
packageName = "@swc/wasm";
- version = "1.10.16";
+ version = "1.10.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.10.16.tgz";
- sha512 = "ZfGQkLM3rmohm+JEMdtSi2713AI8z4giK5rCV5UiVAYYM0APjl4C2KaUD4RMcKUkP04oiUjHNkkmk6u1MMdYzA==";
+ url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.10.18.tgz";
+ sha512 = "TgoMYjQ2/9UfUaw7WuKj7Svew6kaNOqkjV4nKoc2tf34e+7GxL2KPoXvM2b1RkPxNocv85glcQpS9KMk8FqpBA==";
};
};
"@szmarczak/http-timer-1.1.2" = {
@@ -7727,13 +7259,13 @@ let
sha512 = "9pQN6pJAJOU3McmdJWTcyq7LLFW8Lj5q+DadyKcvp+sxMkEpktKX5sbfJgJuOvjk6+1xWl7pe0YL1US1vaO/1w==";
};
};
- "@tinyhttp/app-2.5.0" = {
+ "@tinyhttp/app-2.5.2" = {
name = "_at_tinyhttp_slash_app";
packageName = "@tinyhttp/app";
- version = "2.5.0";
+ version = "2.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/app/-/app-2.5.0.tgz";
- sha512 = "mwVY6RhTqF/s49tqNqpkRWbXAC7OmfpxR6YI6atp9xDauUOv3n1hv38AKy89Ga8HC8G2p1KR9vPD66VmF6VMnw==";
+ url = "https://registry.npmjs.org/@tinyhttp/app/-/app-2.5.2.tgz";
+ sha512 = "DcB3Y8GQppLQlO2VxRYF7LzTEAoZb+VRQXuIsErcu2fNaM1xdx6NQZDso5rlZUiaeg6KYYRfU34N4XkZbv6jSA==";
};
};
"@tinyhttp/content-disposition-2.2.2" = {
@@ -7799,13 +7331,13 @@ let
sha512 = "j80fPKimGqdmMh6962y+BtQsnYPVCzZfJw0HXjyH70VaJBHLKGF+iYhcKqzI3yef6QBNa8DKIPsbEYpuwApXTw==";
};
};
- "@tinyhttp/forwarded-2.1.1" = {
+ "@tinyhttp/forwarded-2.1.2" = {
name = "_at_tinyhttp_slash_forwarded";
packageName = "@tinyhttp/forwarded";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/forwarded/-/forwarded-2.1.1.tgz";
- sha512 = "nO3kq0R1LRl2+CAMlnggm22zE6sT8gfvGbNvSitV6F9eaUSurHP0A8YZFMihSkugHxK+uIegh1TKrqgD8+lyGQ==";
+ url = "https://registry.npmjs.org/@tinyhttp/forwarded/-/forwarded-2.1.2.tgz";
+ sha512 = "9H/eulJ68ElY/+zYpTpNhZ7vxGV+cnwaR6+oQSm7bVgZMyuQfgROW/qvZuhmgDTIxnGMXst+Ba4ij6w6Krcs3w==";
};
};
"@tinyhttp/logger-2.0.0" = {
@@ -7817,31 +7349,31 @@ let
sha512 = "8DfLQjGDIaIJeivYamVrrpmwmsGwS8wt2DGvzlcY5HEBagdiI4QJy/veAFcUHuaJqufn4wLwmn4q5VUkW8BCpQ==";
};
};
- "@tinyhttp/proxy-addr-2.2.0" = {
+ "@tinyhttp/proxy-addr-2.2.1" = {
name = "_at_tinyhttp_slash_proxy-addr";
packageName = "@tinyhttp/proxy-addr";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/proxy-addr/-/proxy-addr-2.2.0.tgz";
- sha512 = "WM/PPL9xNvrs7/8Om5nhKbke5FHrP3EfjOOR+wBnjgESfibqn0K7wdUTnzSLp1lBmemr88os1XvzwymSgaibyA==";
+ url = "https://registry.npmjs.org/@tinyhttp/proxy-addr/-/proxy-addr-2.2.1.tgz";
+ sha512 = "BicqMqVI91hHq2BQmnqJUh0FQUnx7DncwSGgu2ghlh+JZG2rHK2ZN/rXkfhrx1rrUw6hnd0L36O8GPMh01+dDQ==";
};
};
- "@tinyhttp/req-2.2.4" = {
+ "@tinyhttp/req-2.2.5" = {
name = "_at_tinyhttp_slash_req";
packageName = "@tinyhttp/req";
- version = "2.2.4";
+ version = "2.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/req/-/req-2.2.4.tgz";
- sha512 = "lQAZIAo0NOeghxFOZS57tQzxpHSPPLs9T68Krq2BncEBImKwqaDKUt7M9Y5Kb+rvC/GwIL3LeErhkg7f5iG4IQ==";
+ url = "https://registry.npmjs.org/@tinyhttp/req/-/req-2.2.5.tgz";
+ sha512 = "trfsXwtmsNjMcGKcLJ+45h912kLRqBQCQD06ams3Tq0kf4gHLxjHjoYOC1Z9yGjOn81XllRx8wqvnvr+Kbe3gw==";
};
};
- "@tinyhttp/res-2.2.4" = {
+ "@tinyhttp/res-2.2.5" = {
name = "_at_tinyhttp_slash_res";
packageName = "@tinyhttp/res";
- version = "2.2.4";
+ version = "2.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/res/-/res-2.2.4.tgz";
- sha512 = "ETBRShnO19oJyIg2XQHQoofXPWeTXPAuwnIVYkU8WaftvXd/Vz4y5+WFQDHUzKlmdGOw5fAFnrEU7pIVMeFeVA==";
+ url = "https://registry.npmjs.org/@tinyhttp/res/-/res-2.2.5.tgz";
+ sha512 = "yBsqjWygpuKAVz4moWlP4hqzwiDDqfrn2mA0wviJAcgvGiyOErtlQwXY7aj3aPiCpURvxvEFO//Gdy6yV+xEpA==";
};
};
"@tinyhttp/router-2.2.3" = {
@@ -7988,15 +7520,6 @@ let
sha512 = "vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==";
};
};
- "@tsconfig/strictest-2.0.5" = {
- name = "_at_tsconfig_slash_strictest";
- packageName = "@tsconfig/strictest";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/@tsconfig/strictest/-/strictest-2.0.5.tgz";
- sha512 = "ec4tjL2Rr0pkZ5hww65c+EEPYwxOi4Ryv+0MtjeaSQRJyq322Q27eOQiFbuNgw2hpL4hB1/W/HBGk3VKS43osg==";
- };
- };
"@tufjs/canonical-json-2.0.0" = {
name = "_at_tufjs_slash_canonical-json";
packageName = "@tufjs/canonical-json";
@@ -8006,15 +7529,6 @@ let
sha512 = "yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==";
};
};
- "@tufjs/models-2.0.1" = {
- name = "_at_tufjs_slash_models";
- packageName = "@tufjs/models";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@tufjs/models/-/models-2.0.1.tgz";
- sha512 = "92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==";
- };
- };
"@tufjs/models-3.0.1" = {
name = "_at_tufjs_slash_models";
packageName = "@tufjs/models";
@@ -8024,15 +7538,6 @@ let
sha512 = "UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==";
};
};
- "@tybys/wasm-util-0.9.0" = {
- name = "_at_tybys_slash_wasm-util";
- packageName = "@tybys/wasm-util";
- version = "0.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz";
- sha512 = "6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==";
- };
- };
"@types/acorn-4.0.6" = {
name = "_at_types_slash_acorn";
packageName = "@types/acorn";
@@ -8483,15 +7988,6 @@ let
sha512 = "fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==";
};
};
- "@types/node-16.11.68" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "16.11.68";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.11.68.tgz";
- sha512 = "JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ==";
- };
- };
"@types/node-16.18.11" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -8546,13 +8042,13 @@ let
sha512 = "LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A==";
};
};
- "@types/node-22.13.4" = {
+ "@types/node-22.13.5" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "22.13.4";
+ version = "22.13.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-22.13.4.tgz";
- sha512 = "ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg==";
+ url = "https://registry.npmjs.org/@types/node/-/node-22.13.5.tgz";
+ sha512 = "+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==";
};
};
"@types/node-6.14.13" = {
@@ -8600,13 +8096,13 @@ let
sha512 = "hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==";
};
};
- "@types/react-19.0.9" = {
+ "@types/react-19.0.10" = {
name = "_at_types_slash_react";
packageName = "@types/react";
- version = "19.0.9";
+ version = "19.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react/-/react-19.0.9.tgz";
- sha512 = "FedNTYgmMwSZmD1Sru/W1gJKuiYCN/3SuBkmZkcxX+FpO5zL76B22A9YNfAKg4HQO3Neh/30AiynP6BELdU0qQ==";
+ url = "https://registry.npmjs.org/@types/react/-/react-19.0.10.tgz";
+ sha512 = "JuRQ9KXLEjaUNjTWpzuR231Z2WpIwczOkBEIvbHNCzQefFIT0L8IqE6NV6ULLyC1SI/i234JnDoMkfg+RjQj2g==";
};
};
"@types/responselike-1.0.3" = {
@@ -8708,15 +8204,6 @@ let
sha512 = "XOfUup9r3Y06nFAZh3WvO0rBU4OtlfPB/vgxpjg+NRdGU6CN6djdc6OEiH+PcqHCY6eFLo9Ista73uarf4gnBg==";
};
};
- "@types/vscode-1.78.1" = {
- name = "_at_types_slash_vscode";
- packageName = "@types/vscode";
- version = "1.78.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.78.1.tgz";
- sha512 = "wEA+54axejHu7DhcUfnFBan1IqFD1gBDxAFz8LoX06NbNDMRJv/T6OGthOs52yZccasKfN588EyffHWABkR0fg==";
- };
- };
"@types/wrap-ansi-3.0.0" = {
name = "_at_types_slash_wrap-ansi";
packageName = "@types/wrap-ansi";
@@ -8753,78 +8240,6 @@ let
sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==";
};
};
- "@typescript-eslint/eslint-plugin-6.21.0" = {
- name = "_at_typescript-eslint_slash_eslint-plugin";
- packageName = "@typescript-eslint/eslint-plugin";
- version = "6.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz";
- sha512 = "oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==";
- };
- };
- "@typescript-eslint/parser-6.21.0" = {
- name = "_at_typescript-eslint_slash_parser";
- packageName = "@typescript-eslint/parser";
- version = "6.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz";
- sha512 = "tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==";
- };
- };
- "@typescript-eslint/scope-manager-6.21.0" = {
- name = "_at_typescript-eslint_slash_scope-manager";
- packageName = "@typescript-eslint/scope-manager";
- version = "6.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz";
- sha512 = "OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==";
- };
- };
- "@typescript-eslint/type-utils-6.21.0" = {
- name = "_at_typescript-eslint_slash_type-utils";
- packageName = "@typescript-eslint/type-utils";
- version = "6.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz";
- sha512 = "rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==";
- };
- };
- "@typescript-eslint/types-6.21.0" = {
- name = "_at_typescript-eslint_slash_types";
- packageName = "@typescript-eslint/types";
- version = "6.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz";
- sha512 = "1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==";
- };
- };
- "@typescript-eslint/typescript-estree-6.21.0" = {
- name = "_at_typescript-eslint_slash_typescript-estree";
- packageName = "@typescript-eslint/typescript-estree";
- version = "6.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz";
- sha512 = "6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==";
- };
- };
- "@typescript-eslint/utils-6.21.0" = {
- name = "_at_typescript-eslint_slash_utils";
- packageName = "@typescript-eslint/utils";
- version = "6.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz";
- sha512 = "NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==";
- };
- };
- "@typescript-eslint/visitor-keys-6.21.0" = {
- name = "_at_typescript-eslint_slash_visitor-keys";
- packageName = "@typescript-eslint/visitor-keys";
- version = "6.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz";
- sha512 = "JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==";
- };
- };
"@ungap/structured-clone-1.3.0" = {
name = "_at_ungap_slash_structured-clone";
packageName = "@ungap/structured-clone";
@@ -8834,13 +8249,13 @@ let
sha512 = "WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==";
};
};
- "@vercel/build-utils-10.1.0" = {
+ "@vercel/build-utils-10.2.0" = {
name = "_at_vercel_slash_build-utils";
packageName = "@vercel/build-utils";
- version = "10.1.0";
+ version = "10.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-10.1.0.tgz";
- sha512 = "JPff3brfZx0mTl+0Cmzz220MmnTSYnBgVqVvT6a8lVALJHr75sKaNxZy0/hWZe8ev+w2JwLGMmJwP2TKHtKeHA==";
+ url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-10.2.0.tgz";
+ sha512 = "NBEPnxVA23RwHNqYk1Afpoz7sbZAmVJccY9L48LQlymDBX6lP+JTrYSXGTjUKXYIH3BJsLCe/9U3kUJ7Touk7Q==";
};
};
"@vercel/error-utils-2.0.3" = {
@@ -8852,13 +8267,13 @@ let
sha512 = "CqC01WZxbLUxoiVdh9B/poPbNpY9U+tO1N9oWHwTl5YAZxcqXmmWJ8KNMFItJCUUWdY3J3xv8LvAuQv2KZ5YdQ==";
};
};
- "@vercel/fun-1.1.4" = {
+ "@vercel/fun-1.1.5" = {
name = "_at_vercel_slash_fun";
packageName = "@vercel/fun";
- version = "1.1.4";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/fun/-/fun-1.1.4.tgz";
- sha512 = "E23Gyp3iJaLK1o/10dJPsQt186Ux7c06k81o7o6/07KiHSkVS5pQELOJybN+WDhg7x3OLywKjMcCJQhRTkdF0A==";
+ url = "https://registry.npmjs.org/@vercel/fun/-/fun-1.1.5.tgz";
+ sha512 = "vRuR7qlsl8CgdeQIhfgLDtbMEuxqltx6JWFahB7Q5VOKMo/sFZV1rCxIHsHsJP4yYY2hoZqlT/EUkfG1tfPicg==";
};
};
"@vercel/gatsby-plugin-vercel-analytics-1.0.11" = {
@@ -8870,13 +8285,13 @@ let
sha512 = "iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw==";
};
};
- "@vercel/gatsby-plugin-vercel-builder-2.0.73" = {
+ "@vercel/gatsby-plugin-vercel-builder-2.0.74" = {
name = "_at_vercel_slash_gatsby-plugin-vercel-builder";
packageName = "@vercel/gatsby-plugin-vercel-builder";
- version = "2.0.73";
+ version = "2.0.74";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.73.tgz";
- sha512 = "89rAairrWTjSDHf2dYPNnjDO0jn7fX4R0rmWGZOFnZ8Kn8zaagzSTyFFSAv169eIwRapSiiS+Xi0N28M/mP3Zg==";
+ url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.74.tgz";
+ sha512 = "2F8ze7krSuPfblZK2PSAX8KE3UO1Tq9zaEk3fU7JIkb46lbDftV0GjRIqcuiK1fR1eoApqHILqD81vvgKW8OAA==";
};
};
"@vercel/go-3.2.1" = {
@@ -8888,22 +8303,22 @@ let
sha512 = "ezjmuUvLigH9V4egEaX0SZ+phILx8lb+Zkp1iTqKI+yl/ibPAtVo5o+dLSRAXU9U01LBmaLu3O8Oxd/JpWYCOw==";
};
};
- "@vercel/hydrogen-1.1.0" = {
+ "@vercel/hydrogen-1.2.0" = {
name = "_at_vercel_slash_hydrogen";
packageName = "@vercel/hydrogen";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-1.1.0.tgz";
- sha512 = "DNBj664OY5j8LBIp9EOLO+zjbSMT95YrfXp3/uhnpdHSmUBE5Iha4bJqV/4b3VL6b4lGFlTsK2jlyQZXWnPs+A==";
+ url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-1.2.0.tgz";
+ sha512 = "kdZp8cTVLoNmnu24wtoQPu9ZO+uB00zvDMTOXlQmNdq/V3k0mQa/Q5k2B8nliBQ3BMiBasoXxMKv59+F8rYvDw==";
};
};
- "@vercel/next-4.6.2" = {
+ "@vercel/next-4.7.1" = {
name = "_at_vercel_slash_next";
packageName = "@vercel/next";
- version = "4.6.2";
+ version = "4.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/next/-/next-4.6.2.tgz";
- sha512 = "+2w9At3cnf5dZRsEMXCSs4xA6UP3UhzVoNa/5/mVY3/hfADEfU/thKwOybQEHPkMbNuFwIYjnJkFZcsI8iOWxg==";
+ url = "https://registry.npmjs.org/@vercel/next/-/next-4.7.1.tgz";
+ sha512 = "Q8GxgDpn5m3uhHhzyOYWO26yypN5Ztr36U+5YzT3fIwhCiUPYfIWm1LMnAj23S9qV5WMAbIHYgdURTz4EBV+xA==";
};
};
"@vercel/nft-0.27.10" = {
@@ -8915,13 +8330,13 @@ let
sha512 = "zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==";
};
};
- "@vercel/node-5.1.7" = {
+ "@vercel/node-5.1.8" = {
name = "_at_vercel_slash_node";
packageName = "@vercel/node";
- version = "5.1.7";
+ version = "5.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/node/-/node-5.1.7.tgz";
- sha512 = "aOfpTss3DBeqTCxZHNUgB6ckDp2DUDV9+nuW0wf5sToHLmeMzlUGNwY48CPSly1CFyi5jYE4fyfn9dBaAustWQ==";
+ url = "https://registry.npmjs.org/@vercel/node/-/node-5.1.8.tgz";
+ sha512 = "fID4QklP0yDv8Gvv0EZWmsacNhSTyoS0f4mU4HA2pwY4847wpGSFrD5tGFsOhf+3hgGAWbwsJ+dA799jCEcyiQ==";
};
};
"@vercel/python-4.7.1" = {
@@ -8933,31 +8348,22 @@ let
sha512 = "H4g/5e8unII4oQ+KN5IUvTZSzHmj+lLYDkAK15QGYgAxBtE/mHUvEZpPPo7DPUDIyfq8ybWB1bmk7H5kEahubQ==";
};
};
- "@vercel/redwood-2.2.0" = {
+ "@vercel/redwood-2.3.0" = {
name = "_at_vercel_slash_redwood";
packageName = "@vercel/redwood";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.2.0.tgz";
- sha512 = "THk4lL66eTKioXwun2uIp7EdW/NFFqJnaAnRwNxUrdpU9oHbDsDx3QRIeiOFMVBsaJZqZd9YZ/OMaOMGKotybQ==";
+ url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.3.0.tgz";
+ sha512 = "MybbGdMZY0/CrpgEGafJZ+8HlqubWnEpl/KX3WClCZPrT2qcyZyJEh9AVN7/KIpQUdB2MQLIRVMQFQ+kKcRdsA==";
};
};
- "@vercel/remix-builder-5.3.3" = {
+ "@vercel/remix-builder-5.4.0" = {
name = "_at_vercel_slash_remix-builder";
packageName = "@vercel/remix-builder";
- version = "5.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-5.3.3.tgz";
- sha512 = "SaGEYOMv/AlzWl5FdT2tC6v1SoRKGRcVx05WSscwXP2EHrx9rLiP5fWCGPnbhnxT7Kk/P5ZcyRV5eLovA/Ki0A==";
- };
- };
- "@vercel/routing-utils-5.0.2" = {
- name = "_at_vercel_slash_routing-utils";
- packageName = "@vercel/routing-utils";
- version = "5.0.2";
+ version = "5.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-5.0.2.tgz";
- sha512 = "uJViB3+HEo+kzHYELs7cQWX5k0kCNvq9G/8nJQX8mP5Ta0fG68CBRmOaaG8A+2xbtTp/QuGORIwV8CsI9ebcNg==";
+ url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-5.4.0.tgz";
+ sha512 = "qCZq2ZVtWKQhJSTo1fu79xxb0Ne94u9DxIqyJ11s75PqUzeqROau7Y6we9CNTEBvl/zbcXNTjidHkIlfXjBrlQ==";
};
};
"@vercel/ruby-2.2.0" = {
@@ -8969,13 +8375,13 @@ let
sha512 = "FJF9gKVNHAljGOgV6zS5ou2N7ZgjOqMMtcPA5lsJEUI5/AZzVDWCmtcowTP80wEtHuupkd7d7M399FA082kXYQ==";
};
};
- "@vercel/static-build-2.6.6" = {
+ "@vercel/static-build-2.7.0" = {
name = "_at_vercel_slash_static-build";
packageName = "@vercel/static-build";
- version = "2.6.6";
+ version = "2.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.6.6.tgz";
- sha512 = "8O9PQkaIRODuWNXYpNIjq+Snvj/1ylvoaHRtBbUpvbiJIj9vFy1nzIyBLx8wucbt72Q0axYHGOWJsHE1x8Dnwg==";
+ url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.7.0.tgz";
+ sha512 = "WX/0eZGShQAHgB+9OdcQbyHogfWHrYRG9uTLMH9c4a5lJzlw/41n3SN+RUzcxzwXK5/GhVu4ZQQS2aSMOPAHaA==";
};
};
"@vercel/static-config-3.0.0" = {
@@ -8987,33 +8393,6 @@ let
sha512 = "2qtvcBJ1bGY0dYGYh3iM7yGKkk971FujLEDXzuW5wcZsPr1GSEjO/w2iSr3qve6nDDtBImsGoDEnus5FI4+fIw==";
};
};
- "@vscode/test-electron-2.4.1" = {
- name = "_at_vscode_slash_test-electron";
- packageName = "@vscode/test-electron";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.4.1.tgz";
- sha512 = "Gc6EdaLANdktQ1t+zozoBVRynfIsMKMc94Svu1QreOBC8y76x4tvaK32TljrLi1LI2+PK58sDVbL7ALdqf3VRQ==";
- };
- };
- "@vscode/vsce-2.32.0" = {
- name = "_at_vscode_slash_vsce";
- packageName = "@vscode/vsce";
- version = "2.32.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.32.0.tgz";
- sha512 = "3EFJfsgrSftIqt3EtdRcAygy/OJ3hstyI1cDmIgkU9CFZW5C+3djr6mfosndCUqcVYuyjmxOK1xmFp/Bq7+NIg==";
- };
- };
- "@vscode/vsce-sign-2.0.5" = {
- name = "_at_vscode_slash_vsce-sign";
- packageName = "@vscode/vsce-sign";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/@vscode/vsce-sign/-/vsce-sign-2.0.5.tgz";
- sha512 = "GfYWrsT/vypTMDMgWDm75iDmAOMe7F71sZECJ+Ws6/xyIfmB3ELVnVN+LwMFAvmXY+e6eWhR2EzNGF/zAhWY3Q==";
- };
- };
"@vue/compiler-core-3.5.13" = {
name = "_at_vue_slash_compiler-core";
packageName = "@vue/compiler-core";
@@ -9806,15 +9185,6 @@ let
sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==";
};
};
- "@yarnpkg/parsers-3.0.2" = {
- name = "_at_yarnpkg_slash_parsers";
- packageName = "@yarnpkg/parsers";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.2.tgz";
- sha512 = "/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==";
- };
- };
"@zeit/schemas-2.36.0" = {
name = "_at_zeit_slash_schemas";
packageName = "@zeit/schemas";
@@ -9833,15 +9203,6 @@ let
sha512 = "odWb1qUzt0dIOEUPyWBEpFDYQPRjEMr/dbHHAfgBkVkYR9aO7Zo+I7oYWrXIxl+cKlC7+49ftPm8uJxL1MA9kw==";
};
};
- "@zkochan/js-yaml-0.0.7" = {
- name = "_at_zkochan_slash_js-yaml";
- packageName = "@zkochan/js-yaml";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.7.tgz";
- sha512 = "nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==";
- };
- };
"JSONStream-0.10.0" = {
name = "JSONStream";
packageName = "JSONStream";
@@ -10346,15 +9707,6 @@ let
sha512 = "S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==";
};
};
- "anser-2.3.2" = {
- name = "anser";
- packageName = "anser";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/anser/-/anser-2.3.2.tgz";
- sha512 = "PMqBCBvrOVDRqLGooQb+z+t1Q0PiPyurUQeZRR5uHBOVZcW8B04KMmnT12USnhpNX2wCPagWzLVppQMUG3u0Dw==";
- };
- };
"ansi-0.3.1" = {
name = "ansi";
packageName = "ansi";
@@ -10544,15 +9896,6 @@ let
sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==";
};
};
- "ansi-styles-5.2.0" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz";
- sha512 = "Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==";
- };
- };
"ansi-styles-6.2.1" = {
name = "ansi-styles";
packageName = "ansi-styles";
@@ -11597,15 +10940,6 @@ let
sha512 = "qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==";
};
};
- "azure-devops-node-api-12.5.0" = {
- name = "azure-devops-node-api";
- packageName = "azure-devops-node-api";
- version = "12.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-devops-node-api/-/azure-devops-node-api-12.5.0.tgz";
- sha512 = "R5eFskGvOm3U/GzeAuxRkUsAl0hrAwGgWn6zAd2KrZmrEhWZVqLew4OOupbQlXUuojUzpGtq62SmdhJ06N88og==";
- };
- };
"b4a-1.6.7" = {
name = "b4a";
packageName = "b4a";
@@ -11633,15 +10967,6 @@ let
sha512 = "+qeGXSbHZwinZzO6R3wP+6XDKup83Pgg2B3TQt2zwfDdgC7NqT9Kd3ws7iqk53zAO/8iOIRU6VUyUzt2LDE3Eg==";
};
};
- "babel-plugin-macros-3.1.0" = {
- name = "babel-plugin-macros";
- packageName = "babel-plugin-macros";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz";
- sha512 = "Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==";
- };
- };
"babel-plugin-syntax-jsx-6.18.0" = {
name = "babel-plugin-syntax-jsx";
packageName = "babel-plugin-syntax-jsx";
@@ -11939,15 +11264,6 @@ let
sha512 = "3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA==";
};
};
- "before-after-hook-2.2.3" = {
- name = "before-after-hook";
- packageName = "before-after-hook";
- version = "2.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz";
- sha512 = "NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==";
- };
- };
"bencode-0.7.0" = {
name = "bencode";
packageName = "bencode";
@@ -12056,15 +11372,6 @@ let
sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==";
};
};
- "bin-links-4.0.4" = {
- name = "bin-links";
- packageName = "bin-links";
- version = "4.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/bin-links/-/bin-links-4.0.4.tgz";
- sha512 = "cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==";
- };
- };
"binary-extensions-1.13.1" = {
name = "binary-extensions";
packageName = "binary-extensions";
@@ -13010,15 +12317,6 @@ let
sha512 = "ovBpjmsgd/teRmgcPh23d4gJvxDoXtAzEL9xTfMU8Yc2kqCDb7L9jAG0XHl1nzuGl+h3ebCIF1i62UFyA9V/2Q==";
};
};
- "byte-size-8.1.1" = {
- name = "byte-size";
- packageName = "byte-size";
- version = "8.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/byte-size/-/byte-size-8.1.1.tgz";
- sha512 = "tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==";
- };
- };
"bytes-3.0.0" = {
name = "bytes";
packageName = "bytes";
@@ -13073,15 +12371,6 @@ let
sha512 = "/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==";
};
};
- "cacache-18.0.4" = {
- name = "cacache";
- packageName = "cacache";
- version = "18.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz";
- sha512 = "B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==";
- };
- };
"cacache-19.0.1" = {
name = "cacache";
packageName = "cacache";
@@ -13379,13 +12668,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001699" = {
+ "caniuse-lite-1.0.30001700" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001699";
+ version = "1.0.30001700";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001699.tgz";
- sha512 = "b+uH5BakXZ9Do9iK+CkDmctUSEqZl+SP056vc5usa0PL+ev5OHw003rZXcnjNDv3L8P5j6rwT6C0BPKSikW08w==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz";
+ sha512 = "2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==";
};
};
"canvas-2.11.2" = {
@@ -13460,13 +12749,13 @@ let
sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==";
};
};
- "cdk8s-2.69.40" = {
+ "cdk8s-2.69.43" = {
name = "cdk8s";
packageName = "cdk8s";
- version = "2.69.40";
+ version = "2.69.43";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.69.40.tgz";
- sha512 = "Ht2rysYwDROWqJCAFqqfDo/2tATrtMe9ibS7kXpSzarDO9h/l55AjyMGeWY7TAszdXGJCQTKOhVudvO1yAnhxQ==";
+ url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.69.43.tgz";
+ sha512 = "H7De5ozBSa00VlLN7MfA392fGVCV1nOkeEf3tHs/6aahOxd6mOcXkmxZvEl4/iG+TGx8IAnwyg2K3qRMRniqhg==";
};
};
"cdk8s-plus-28-2.5.6" = {
@@ -13703,15 +12992,6 @@ let
sha512 = "8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA==";
};
};
- "cheerio-1.0.0" = {
- name = "cheerio";
- packageName = "cheerio";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0.tgz";
- sha512 = "quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==";
- };
- };
"cheerio-1.0.0-rc.12" = {
name = "cheerio";
packageName = "cheerio";
@@ -14090,15 +13370,6 @@ let
sha512 = "tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==";
};
};
- "cli-spinners-2.6.1" = {
- name = "cli-spinners";
- packageName = "cli-spinners";
- version = "2.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz";
- sha512 = "x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==";
- };
- };
"cli-spinners-2.9.2" = {
name = "cli-spinners";
packageName = "cli-spinners";
@@ -14396,15 +13667,6 @@ let
sha512 = "A5C0Cyf2H8sKsHqX0tvIWRXw5/PK++3Dc0lDbsugr90nOECLLuSPahVQBG8pgmgiXgm/TzBWMqI2rWdZwHduAw==";
};
};
- "cmd-shim-6.0.3" = {
- name = "cmd-shim";
- packageName = "cmd-shim";
- version = "6.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.3.tgz";
- sha512 = "FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==";
- };
- };
"cmdln-3.2.1" = {
name = "cmdln";
packageName = "cmdln";
@@ -14432,15 +13694,6 @@ let
sha512 = "QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==";
};
};
- "cockatiel-3.2.1" = {
- name = "cockatiel";
- packageName = "cockatiel";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cockatiel/-/cockatiel-3.2.1.tgz";
- sha512 = "gfrHV6ZPkquExvMh9IOkKsBzNDk6sDuZ6DdBGUBkvFnTCqCxzpuq48RySgP0AnaqQkw2zynOFj9yly6T1Q2G5Q==";
- };
- };
"code-block-writer-10.1.1" = {
name = "code-block-writer";
packageName = "code-block-writer";
@@ -14486,13 +13739,13 @@ let
sha512 = "lxsbbcSMxCdT+9wUv1AvBH9791andoWDcQ6s7ZK6KsMZ+UkRLO3obzhi7Zm+RIA3lHecqzaGmOKyRnu0Dx/Zew==";
};
};
- "codemaker-1.106.0" = {
+ "codemaker-1.108.0" = {
name = "codemaker";
packageName = "codemaker";
- version = "1.106.0";
+ version = "1.108.0";
src = fetchurl {
- url = "https://registry.npmjs.org/codemaker/-/codemaker-1.106.0.tgz";
- sha512 = "1aLNQCF/3DVxXol6eRqoLZnYulAwWPGq8BMF8pMZu+CaNkR7c0T5otMcbAXcskRLChiFt+BjVWS3JPVeBOHD4w==";
+ url = "https://registry.npmjs.org/codemaker/-/codemaker-1.108.0.tgz";
+ sha512 = "EwMvLf3tkBXllS4hZbr3WYm4kZiAH5Spd01MaRd+yJ636RfwIvpGgCGVqYbjW0RJ7yyfnakZ0HvCc8PxqyYWbA==";
};
};
"collapse-white-space-2.1.0" = {
@@ -14639,15 +13892,6 @@ let
sha512 = "BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==";
};
};
- "columnify-1.6.0" = {
- name = "columnify";
- packageName = "columnify";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz";
- sha512 = "lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==";
- };
- };
"combine-errors-3.0.3" = {
name = "combine-errors";
packageName = "combine-errors";
@@ -14873,15 +14117,6 @@ let
sha512 = "rraC8NXWOEjhADbZe9QBNzLAN5Q3fsTPQtBV+fEVj6xKIgDgNiEVE6ZNfHpZOqfQ21YUzfVNUXLOEZquYvQPPg==";
};
};
- "common-ancestor-path-1.0.1" = {
- name = "common-ancestor-path";
- packageName = "common-ancestor-path";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz";
- sha512 = "L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==";
- };
- };
"common-tags-1.8.2" = {
name = "common-tags";
packageName = "common-tags";
@@ -15378,15 +14613,6 @@ let
sha512 = "eOvlTO6OcySPyyyk8pKz2dP4jjElYunj9hn9/s0OB+gapTO8zwS9UQWrZ1pmF2hFs3vw1xhonOLGcGjy/zgsuA==";
};
};
- "conventional-changelog-core-5.0.1" = {
- name = "conventional-changelog-core";
- packageName = "conventional-changelog-core";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-5.0.1.tgz";
- sha512 = "Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==";
- };
- };
"conventional-changelog-core-8.0.0" = {
name = "conventional-changelog-core";
packageName = "conventional-changelog-core";
@@ -15441,15 +14667,6 @@ let
sha512 = "gGNphSb/opc76n2eWaO6ma4/Wqu3tpa2w7i9WYqI6Cs2fncDSI2/ihOfMvXveeTTeld0oFvwMVNV+IYQIk3F3g==";
};
};
- "conventional-changelog-preset-loader-3.0.0" = {
- name = "conventional-changelog-preset-loader";
- packageName = "conventional-changelog-preset-loader";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-3.0.0.tgz";
- sha512 = "qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==";
- };
- };
"conventional-changelog-preset-loader-5.0.0" = {
name = "conventional-changelog-preset-loader";
packageName = "conventional-changelog-preset-loader";
@@ -15459,31 +14676,13 @@ let
sha512 = "SetDSntXLk8Jh1NOAl1Gu5uLiCNSYenB5tm0YVeZKePRIgDW9lQImromTwLa3c/Gae298tsgOM+/CYT9XAl0NA==";
};
};
- "conventional-changelog-writer-6.0.1" = {
+ "conventional-changelog-writer-8.0.1" = {
name = "conventional-changelog-writer";
packageName = "conventional-changelog-writer";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz";
- sha512 = "359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==";
- };
- };
- "conventional-changelog-writer-8.0.0" = {
- name = "conventional-changelog-writer";
- packageName = "conventional-changelog-writer";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.0.0.tgz";
- sha512 = "TQcoYGRatlAnT2qEWDON/XSfnVG38JzA7E0wcGScu7RElQBkg9WWgZd1peCWFcWDh1xfb2CfsrcvOn1bbSzztA==";
- };
- };
- "conventional-commits-filter-3.0.0" = {
- name = "conventional-commits-filter";
- packageName = "conventional-commits-filter";
- version = "3.0.0";
+ version = "8.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz";
- sha512 = "1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==";
+ url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.0.1.tgz";
+ sha512 = "hlqcy3xHred2gyYg/zXSMXraY2mjAYYo0msUCpK+BGyaVJMFCKWVXPIHiaacGO2GGp13kvHWXFhYmxT4QQqW3Q==";
};
};
"conventional-commits-filter-5.0.0" = {
@@ -15495,15 +14694,6 @@ let
sha512 = "tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q==";
};
};
- "conventional-commits-parser-4.0.0" = {
- name = "conventional-commits-parser";
- packageName = "conventional-commits-parser";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz";
- sha512 = "WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==";
- };
- };
"conventional-commits-parser-5.0.0" = {
name = "conventional-commits-parser";
packageName = "conventional-commits-parser";
@@ -15513,22 +14703,13 @@ let
sha512 = "ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==";
};
};
- "conventional-commits-parser-6.0.0" = {
+ "conventional-commits-parser-6.1.0" = {
name = "conventional-commits-parser";
packageName = "conventional-commits-parser";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.0.0.tgz";
- sha512 = "TbsINLp48XeMXR8EvGjTnKGsZqBemisPoyWESlpRyR8lif0lcwzqz+NMtYSj1ooF/WYjSuu7wX0CtdeeMEQAmA==";
- };
- };
- "conventional-recommended-bump-7.0.1" = {
- name = "conventional-recommended-bump";
- packageName = "conventional-recommended-bump";
- version = "7.0.1";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz";
- sha512 = "Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==";
+ url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.1.0.tgz";
+ sha512 = "5nxDo7TwKB5InYBl4ZC//1g9GRwB/F3TXOGR9hgUjMGfvSP4Vu5NkpNro2+1+TIEy1vwxApl5ircECr2ri5JIw==";
};
};
"convert-hrtime-3.0.0" = {
@@ -16017,13 +15198,13 @@ let
sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==";
};
};
- "cspell-config-lib-8.17.3" = {
+ "cspell-config-lib-8.17.5" = {
name = "cspell-config-lib";
packageName = "cspell-config-lib";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.17.3.tgz";
- sha512 = "+N32Q6xck3D2RqZIFwq8s0TnzHYMpyh4bgNtYqW5DIP3TLDiA4/MJGjwmLKAg/s9dkre6n8/++vVli3MZAOhIg==";
+ url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.17.5.tgz";
+ sha512 = "XDc+UJO5RZ9S9e2Ajz332XjT7dv6Og2UqCiSnAlvHt7t/MacLHSPARZFIivheObNkWZ7E1iWI681RxKoH4o40w==";
};
};
"cspell-dict-vimlang-1.0.1" = {
@@ -16035,22 +15216,22 @@ let
sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA==";
};
};
- "cspell-dictionary-8.17.3" = {
+ "cspell-dictionary-8.17.5" = {
name = "cspell-dictionary";
packageName = "cspell-dictionary";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.17.3.tgz";
- sha512 = "89I/lpQKdkX17RCFrUIJnc70Rjfpup/o+ynHZen0hUxGTfLsEJPrK6H2oGvic3Yrv5q8IOtwM1p8vqPqBkBheA==";
+ url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.17.5.tgz";
+ sha512 = "O/Uuhv1RuDu+5WYQml0surudweaTvr+2YJSmPSdlihByUSiogCbpGqwrRow7wQv/C5p1W1FlFjotvUfoR0fxHA==";
};
};
- "cspell-gitignore-8.17.3" = {
+ "cspell-gitignore-8.17.5" = {
name = "cspell-gitignore";
packageName = "cspell-gitignore";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.17.3.tgz";
- sha512 = "rQamjb8R+Nwib/Bpcgf+xv5IdsOHgbP+fe4hCgv0jjgUPkeOR2c4dGwc0WS+2UkJbc+wQohpzBGDLRYGSB/hQw==";
+ url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.17.5.tgz";
+ sha512 = "I27fgOUZzH14jeIYo65LooB60fZ42f6OJL1lOR9Mk6IrIlDyUtzherGR+xx5KshK2katYkX42Qu4zsVYM6VFPA==";
};
};
"cspell-glob-0.1.25" = {
@@ -16062,22 +15243,22 @@ let
sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg==";
};
};
- "cspell-glob-8.17.3" = {
+ "cspell-glob-8.17.5" = {
name = "cspell-glob";
packageName = "cspell-glob";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.17.3.tgz";
- sha512 = "0ov9A0E6OuOO7KOxlGCxJ09LR/ubZ6xcGwWc5bu+jp/8onUowQfe+9vZdznj/o8/vcf5JkDzyhRSBsdhWKqoAg==";
+ url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.17.5.tgz";
+ sha512 = "OXquou7UykInlGV5et5lNKYYrW0dwa28aEF995x1ocANND7o0bbHmFlbgyci/Lp4uFQai8sifmfFJbuIg2IC/A==";
};
};
- "cspell-grammar-8.17.3" = {
+ "cspell-grammar-8.17.5" = {
name = "cspell-grammar";
packageName = "cspell-grammar";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.17.3.tgz";
- sha512 = "wfjkkvHthnKJtEaTgx3cPUPquGRXfgXSCwvMJaDyUi36KBlopXX38PejBTdmuqrvp7bINLSuHErml9wAfL5Fxw==";
+ url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.17.5.tgz";
+ sha512 = "st2n+FVw25MvMbsGb3TeJNRr6Oih4g14rjOd/UJN0qn+ceH360SAShUFqSd4kHHu2ADazI/TESFU6FRtMTPNOg==";
};
};
"cspell-io-4.1.7" = {
@@ -16089,13 +15270,13 @@ let
sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ==";
};
};
- "cspell-io-8.17.3" = {
+ "cspell-io-8.17.5" = {
name = "cspell-io";
packageName = "cspell-io";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.17.3.tgz";
- sha512 = "NwEVb3Kr8loV1C8Stz9QSMgUrBkxqf2s7A9H2/RBnfvQBt9CWZS6NgoNxTPwHj3h1sUNl9reDkMQQzkKtgWGBQ==";
+ url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.17.5.tgz";
+ sha512 = "oevM/8l0s6nc1NCYPqNFumrW50QSHoa6wqUT8cWs09gtZdE2AWG0U6bIE8ZEVz6e6FxS+6IenGKTdUUwP0+3fg==";
};
};
"cspell-lib-4.3.12" = {
@@ -16107,13 +15288,13 @@ let
sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g==";
};
};
- "cspell-lib-8.17.3" = {
+ "cspell-lib-8.17.5" = {
name = "cspell-lib";
packageName = "cspell-lib";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.17.3.tgz";
- sha512 = "KpwYIj8HwFyTzCCQcyezlmomvyNfPwZQmqTh4V126sFvf9HLoMdfyq8KYDZmZ//4HzwrF/ufJOF3CpuVUiJHfA==";
+ url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.17.5.tgz";
+ sha512 = "S3KuOrcST1d2BYmTXA+hnbRdho5n3w5GUvEaCx3QZQBwAPfLpAwJbe2yig1TxBpyEJ5LqP02i/mDg1pUCOP0hQ==";
};
};
"cspell-trie-lib-4.2.8" = {
@@ -16125,13 +15306,13 @@ let
sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw==";
};
};
- "cspell-trie-lib-8.17.3" = {
+ "cspell-trie-lib-8.17.5" = {
name = "cspell-trie-lib";
packageName = "cspell-trie-lib";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.17.3.tgz";
- sha512 = "6LE5BeT2Rwv0bkQckpxX0K1fnFCWfeJ8zVPFtYOaix0trtqj0VNuwWzYDnxyW+OwMioCH29yRAMODa+JDFfUrA==";
+ url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.17.5.tgz";
+ sha512 = "9hjI3nRQxtGEua6CgnLbK3sGHLx9dXR/BHwI/csRL4dN5GGRkE5X3CCoy1RJVL7iGFLIzi43+L10xeFRmWniKw==";
};
};
"cspell-util-bundle-4.1.11" = {
@@ -16440,15 +15621,6 @@ let
sha512 = "MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==";
};
};
- "d3-7.9.0" = {
- name = "d3";
- packageName = "d3";
- version = "7.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz";
- sha512 = "e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==";
- };
- };
"d3-array-3.2.4" = {
name = "d3-array";
packageName = "d3-array";
@@ -16458,33 +15630,6 @@ let
sha512 = "tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==";
};
};
- "d3-axis-3.0.0" = {
- name = "d3-axis";
- packageName = "d3-axis";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz";
- sha512 = "IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==";
- };
- };
- "d3-brush-3.0.0" = {
- name = "d3-brush";
- packageName = "d3-brush";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz";
- sha512 = "ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==";
- };
- };
- "d3-chord-3.0.1" = {
- name = "d3-chord";
- packageName = "d3-chord";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz";
- sha512 = "VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==";
- };
- };
"d3-color-3.1.0" = {
name = "d3-color";
packageName = "d3-color";
@@ -16494,15 +15639,6 @@ let
sha512 = "zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==";
};
};
- "d3-contour-4.0.2" = {
- name = "d3-contour";
- packageName = "d3-contour";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz";
- sha512 = "4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==";
- };
- };
"d3-delaunay-6.0.4" = {
name = "d3-delaunay";
packageName = "d3-delaunay";
@@ -16521,15 +15657,6 @@ let
sha512 = "rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==";
};
};
- "d3-drag-3.0.0" = {
- name = "d3-drag";
- packageName = "d3-drag";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz";
- sha512 = "pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==";
- };
- };
"d3-dsv-3.0.1" = {
name = "d3-dsv";
packageName = "d3-dsv";
@@ -16539,24 +15666,6 @@ let
sha512 = "UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==";
};
};
- "d3-ease-3.0.1" = {
- name = "d3-ease";
- packageName = "d3-ease";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz";
- sha512 = "wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==";
- };
- };
- "d3-fetch-3.0.1" = {
- name = "d3-fetch";
- packageName = "d3-fetch";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz";
- sha512 = "kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==";
- };
- };
"d3-force-3.0.0" = {
name = "d3-force";
packageName = "d3-force";
@@ -16593,15 +15702,6 @@ let
sha512 = "p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==";
};
};
- "d3-graphviz-5.6.0" = {
- name = "d3-graphviz";
- packageName = "d3-graphviz";
- version = "5.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-graphviz/-/d3-graphviz-5.6.0.tgz";
- sha512 = "46OOyRv5Ioo9kZBc919FVIYPD/ObtdSZxOK1hv+qwmD7TunpPvvmsI1dSdxhVgH4GragJxFZ31+TQC5aOuXzzw==";
- };
- };
"d3-hierarchy-3.1.2" = {
name = "d3-hierarchy";
packageName = "d3-hierarchy";
@@ -16629,15 +15729,6 @@ let
sha512 = "p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==";
};
};
- "d3-polygon-3.0.1" = {
- name = "d3-polygon";
- packageName = "d3-polygon";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz";
- sha512 = "3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==";
- };
- };
"d3-quadtree-3.0.1" = {
name = "d3-quadtree";
packageName = "d3-quadtree";
@@ -16647,15 +15738,6 @@ let
sha512 = "04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==";
};
};
- "d3-random-3.0.1" = {
- name = "d3-random";
- packageName = "d3-random";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz";
- sha512 = "FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==";
- };
- };
"d3-scale-4.0.2" = {
name = "d3-scale";
packageName = "d3-scale";
@@ -16674,15 +15756,6 @@ let
sha512 = "A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==";
};
};
- "d3-selection-3.0.0" = {
- name = "d3-selection";
- packageName = "d3-selection";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz";
- sha512 = "fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==";
- };
- };
"d3-shape-3.2.0" = {
name = "d3-shape";
packageName = "d3-shape";
@@ -16719,33 +15792,6 @@ let
sha512 = "ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==";
};
};
- "d3-transition-3.0.1" = {
- name = "d3-transition";
- packageName = "d3-transition";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz";
- sha512 = "ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==";
- };
- };
- "d3-zoom-3.0.0" = {
- name = "d3-zoom";
- packageName = "d3-zoom";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz";
- sha512 = "b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==";
- };
- };
- "dargs-7.0.0" = {
- name = "dargs";
- packageName = "dargs";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz";
- sha512 = "2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==";
- };
- };
"dargs-8.1.0" = {
name = "dargs";
packageName = "dargs";
@@ -16908,15 +15954,6 @@ let
sha512 = "GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==";
};
};
- "dateformat-3.0.3" = {
- name = "dateformat";
- packageName = "dateformat";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz";
- sha512 = "jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==";
- };
- };
"dayjs-1.11.12" = {
name = "dayjs";
packageName = "dayjs";
@@ -17187,15 +16224,6 @@ let
sha512 = "1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==";
};
};
- "dedent-1.5.3" = {
- name = "dedent";
- packageName = "dedent";
- version = "1.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz";
- sha512 = "NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==";
- };
- };
"deep-equal-1.1.2" = {
name = "deep-equal";
packageName = "deep-equal";
@@ -17493,15 +16521,6 @@ let
sha512 = "S0OhIK7sIyAsph8hVH/LMCTDL3jozKtlrPx3dMQrlE2nAlXTquTT+AcOufphDMTQqLkfn4acvfiem9I1IWZ4jQ==";
};
};
- "deprecation-2.3.1" = {
- name = "deprecation";
- packageName = "deprecation";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz";
- sha512 = "xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==";
- };
- };
"deps-regex-0.2.0" = {
name = "deps-regex";
packageName = "deps-regex";
@@ -17610,15 +16629,6 @@ let
sha512 = "CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==";
};
};
- "detect-package-manager-3.0.2" = {
- name = "detect-package-manager";
- packageName = "detect-package-manager";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-3.0.2.tgz";
- sha512 = "8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ==";
- };
- };
"detect-port-1.6.1" = {
name = "detect-port";
packageName = "detect-port";
@@ -17727,15 +16737,6 @@ let
sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==";
};
};
- "diff-sequences-29.6.3" = {
- name = "diff-sequences";
- packageName = "diff-sequences";
- version = "29.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz";
- sha512 = "EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==";
- };
- };
"diff2html-3.4.51" = {
name = "diff2html";
packageName = "diff2html";
@@ -18447,13 +17448,13 @@ let
sha512 = "UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==";
};
};
- "electron-to-chromium-1.5.101" = {
+ "electron-to-chromium-1.5.104" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.5.101";
+ version = "1.5.104";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.101.tgz";
- sha512 = "L0ISiQrP/56Acgu4/i/kfPwWSgrzYZUnQrC0+QPFuhqlLP1Ir7qzPPDVS9BcKIyWTRU8+o6CC8dKw38tSWhYIA==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.104.tgz";
+ sha512 = "Us9M2L4cO/zMBqVkJtnj353nQhMju9slHm62NprKTmdF3HH8wYOtNvDFq/JB2+ZRoGLzdvYDiATlMHs98XBM1g==";
};
};
"elegant-spinner-1.0.1" = {
@@ -18591,15 +17592,6 @@ let
sha512 = "ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==";
};
};
- "encoding-sniffer-0.2.0" = {
- name = "encoding-sniffer";
- packageName = "encoding-sniffer";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz";
- sha512 = "ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==";
- };
- };
"end-of-stream-0.1.5" = {
name = "end-of-stream";
packageName = "end-of-stream";
@@ -18735,15 +17727,6 @@ let
sha512 = "ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==";
};
};
- "enquirer-2.3.6" = {
- name = "enquirer";
- packageName = "enquirer";
- version = "2.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz";
- sha512 = "yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==";
- };
- };
"enquirer-2.4.1" = {
name = "enquirer";
packageName = "enquirer";
@@ -18771,15 +17754,6 @@ let
sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==";
};
};
- "entities-2.1.0" = {
- name = "entities";
- packageName = "entities";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz";
- sha512 = "hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==";
- };
- };
"entities-2.2.0" = {
name = "entities";
packageName = "entities";
@@ -18834,15 +17808,6 @@ let
sha512 = "dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==";
};
};
- "envinfo-7.13.0" = {
- name = "envinfo";
- packageName = "envinfo";
- version = "7.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz";
- sha512 = "cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==";
- };
- };
"envinfo-7.14.0" = {
name = "envinfo";
packageName = "envinfo";
@@ -19113,22 +18078,22 @@ let
sha512 = "wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==";
};
};
- "esbuild-0.23.1" = {
+ "esbuild-0.24.2" = {
name = "esbuild";
packageName = "esbuild";
- version = "0.23.1";
+ version = "0.24.2";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz";
- sha512 = "VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==";
+ url = "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz";
+ sha512 = "+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==";
};
};
- "esbuild-0.24.2" = {
+ "esbuild-0.25.0" = {
name = "esbuild";
packageName = "esbuild";
- version = "0.24.2";
+ version = "0.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz";
- sha512 = "+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==";
+ url = "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz";
+ sha512 = "BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==";
};
};
"esbuild-android-64-0.14.47" = {
@@ -19455,31 +18420,13 @@ let
sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==";
};
};
- "eslint-8.57.1" = {
+ "eslint-9.21.0" = {
name = "eslint";
packageName = "eslint";
- version = "8.57.1";
+ version = "9.21.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz";
- sha512 = "ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==";
- };
- };
- "eslint-9.20.1" = {
- name = "eslint";
- packageName = "eslint";
- version = "9.20.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-9.20.1.tgz";
- sha512 = "m1mM33o6dBUjxl2qb6wv6nGNwCAsns1eKtaQ4l/NPHeTvhiUPbtdfMyktxN4B3fgHIgsYh1VT3V9txblpQHq+g==";
- };
- };
- "eslint-config-prettier-8.10.0" = {
- name = "eslint-config-prettier";
- packageName = "eslint-config-prettier";
- version = "8.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz";
- sha512 = "SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-9.21.0.tgz";
+ sha512 = "KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==";
};
};
"eslint-formatter-pretty-5.0.0" = {
@@ -19518,15 +18465,6 @@ let
sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==";
};
};
- "eslint-scope-7.2.2" = {
- name = "eslint-scope";
- packageName = "eslint-scope";
- version = "7.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz";
- sha512 = "dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==";
- };
- };
"eslint-scope-8.2.0" = {
name = "eslint-scope";
packageName = "eslint-scope";
@@ -19635,15 +18573,6 @@ let
sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==";
};
};
- "espree-9.6.1" = {
- name = "espree";
- packageName = "espree";
- version = "9.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz";
- sha512 = "oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==";
- };
- };
"esprima-2.7.3" = {
name = "esprima";
packageName = "esprima";
@@ -19932,15 +18861,6 @@ let
sha512 = "Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw==";
};
};
- "execa-5.0.0" = {
- name = "execa";
- packageName = "execa";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz";
- sha512 = "ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==";
- };
- };
"execa-5.1.1" = {
name = "execa";
packageName = "execa";
@@ -20463,13 +19383,13 @@ let
sha512 = "xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==";
};
};
- "fast-xml-parser-4.5.1" = {
+ "fast-xml-parser-4.5.3" = {
name = "fast-xml-parser";
packageName = "fast-xml-parser";
- version = "4.5.1";
+ version = "4.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.1.tgz";
- sha512 = "y655CeyUQ+jj7KBbYMc4FG01V8ZQqjN+gDYGJ50RtfsUB8iG9AmwmwoAgeKLJdmueKKMrH1RJ7yXHTSoczdv5w==";
+ url = "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz";
+ sha512 = "RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==";
};
};
"fastest-levenshtein-1.0.16" = {
@@ -21102,13 +20022,13 @@ let
sha512 = "+X3/0hl9in0FJPsPB5/xTpkxxMzDSoA4cyon46HtXhrfEbpqBvKxpR+HJGqMjKv4jcBmoLjEtTVIAADJjLjv8A==";
};
};
- "flatted-3.3.2" = {
+ "flatted-3.3.3" = {
name = "flatted";
packageName = "flatted";
- version = "3.3.2";
+ version = "3.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz";
- sha512 = "AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==";
+ url = "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz";
+ sha512 = "GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==";
};
};
"flatten-0.0.1" = {
@@ -21255,13 +20175,13 @@ let
sha512 = "J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==";
};
};
- "foreground-child-3.3.0" = {
+ "foreground-child-3.3.1" = {
name = "foreground-child";
packageName = "foreground-child";
- version = "3.3.0";
+ version = "3.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz";
- sha512 = "Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==";
+ url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz";
+ sha512 = "gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==";
};
};
"forever-agent-0.6.1" = {
@@ -21435,15 +20355,6 @@ let
sha512 = "OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==";
};
};
- "front-matter-4.0.2" = {
- name = "front-matter";
- packageName = "front-matter";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/front-matter/-/front-matter-4.0.2.tgz";
- sha512 = "I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==";
- };
- };
"fs-chunk-store-1.7.0" = {
name = "fs-chunk-store";
packageName = "fs-chunk-store";
@@ -21894,22 +20805,13 @@ let
sha512 = "vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==";
};
};
- "get-installed-path-2.1.1" = {
- name = "get-installed-path";
- packageName = "get-installed-path";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-installed-path/-/get-installed-path-2.1.1.tgz";
- sha512 = "Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA==";
- };
- };
- "get-intrinsic-1.2.7" = {
+ "get-intrinsic-1.3.0" = {
name = "get-intrinsic";
packageName = "get-intrinsic";
- version = "1.2.7";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz";
- sha512 = "VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==";
+ url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz";
+ sha512 = "9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==";
};
};
"get-package-info-1.0.0" = {
@@ -21930,15 +20832,6 @@ let
sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==";
};
};
- "get-pkg-repo-4.2.1" = {
- name = "get-pkg-repo";
- packageName = "get-pkg-repo";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz";
- sha512 = "2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==";
- };
- };
"get-port-4.2.0" = {
name = "get-port";
packageName = "get-port";
@@ -21948,15 +20841,6 @@ let
sha512 = "/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw==";
};
};
- "get-port-5.1.1" = {
- name = "get-port";
- packageName = "get-port";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz";
- sha512 = "g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==";
- };
- };
"get-proto-1.0.1" = {
name = "get-proto";
packageName = "get-proto";
@@ -22065,15 +20949,6 @@ let
sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==";
};
};
- "get-stream-6.0.0" = {
- name = "get-stream";
- packageName = "get-stream";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz";
- sha512 = "A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==";
- };
- };
"get-stream-6.0.1" = {
name = "get-stream";
packageName = "get-stream";
@@ -22173,15 +21048,6 @@ let
sha512 = "PdNkH2snpXsKIzho6OWMZKEl+KZG6Zm+1ghQIDi0tEq1sz/S1tDjvNuYrX2ZpomalHAB89OUQim8O6vN+jesNQ==";
};
};
- "git-raw-commits-3.0.0" = {
- name = "git-raw-commits";
- packageName = "git-raw-commits";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-3.0.0.tgz";
- sha512 = "b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==";
- };
- };
"git-raw-commits-4.0.0" = {
name = "git-raw-commits";
packageName = "git-raw-commits";
@@ -22200,15 +21066,6 @@ let
sha512 = "I2ZXrXeOc0KrCvC7swqtIFXFN+rbjnC7b2T943tvemIOVNl+XP8YnA9UVwqFhzzLClnSA60KR/qEjLpXzs73Qg==";
};
};
- "git-remote-origin-url-2.0.0" = {
- name = "git-remote-origin-url";
- packageName = "git-remote-origin-url";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz";
- sha512 = "eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==";
- };
- };
"git-repo-info-2.1.1" = {
name = "git-repo-info";
packageName = "git-repo-info";
@@ -22218,15 +21075,6 @@ let
sha512 = "8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg==";
};
};
- "git-semver-tags-5.0.1" = {
- name = "git-semver-tags";
- packageName = "git-semver-tags";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-5.0.1.tgz";
- sha512 = "hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==";
- };
- };
"git-semver-tags-8.0.0" = {
name = "git-semver-tags";
packageName = "git-semver-tags";
@@ -22245,33 +21093,6 @@ let
sha512 = "W2Zo3sCiq5Hqv1/FLsNmGomkXdyimmkHncGzqjBHh7nWx+CbH5dkWGb6CiFdknooL7wfeZJ3gz14KrXl/gotCw==";
};
};
- "git-up-7.0.0" = {
- name = "git-up";
- packageName = "git-up";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz";
- sha512 = "ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==";
- };
- };
- "git-url-parse-14.0.0" = {
- name = "git-url-parse";
- packageName = "git-url-parse";
- version = "14.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-14.0.0.tgz";
- sha512 = "NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==";
- };
- };
- "gitconfiglocal-1.0.0" = {
- name = "gitconfiglocal";
- packageName = "gitconfiglocal";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz";
- sha512 = "spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==";
- };
- };
"github-from-package-0.0.0" = {
name = "github-from-package";
packageName = "github-from-package";
@@ -22380,15 +21201,6 @@ let
sha512 = "r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==";
};
};
- "glob-9.3.5" = {
- name = "glob";
- packageName = "glob";
- version = "9.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz";
- sha512 = "e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==";
- };
- };
"glob-base-0.3.0" = {
name = "glob-base";
packageName = "glob-base";
@@ -22812,15 +21624,6 @@ let
sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==";
};
};
- "graphemer-1.4.0" = {
- name = "graphemer";
- packageName = "graphemer";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz";
- sha512 = "EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==";
- };
- };
"graphlib-2.1.8" = {
name = "graphlib";
packageName = "graphlib";
@@ -23271,13 +22074,13 @@ let
sha512 = "yGkCfPkkfCyiLfK6KEl/orMDr/zgCnq/NaO9HfULx6/Zga5fso5eqQA5Ov/JZVqACygvw9shRYWgXNcG2ilo7w==";
};
};
- "hast-util-to-html-9.0.4" = {
+ "hast-util-to-html-9.0.5" = {
name = "hast-util-to-html";
packageName = "hast-util-to-html";
- version = "9.0.4";
+ version = "9.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz";
- sha512 = "wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==";
+ url = "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz";
+ sha512 = "OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==";
};
};
"hast-util-to-nlcst-2.2.0" = {
@@ -24117,15 +22920,6 @@ let
sha512 = "PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==";
};
};
- "ignore-walk-6.0.5" = {
- name = "ignore-walk";
- packageName = "ignore-walk";
- version = "6.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.5.tgz";
- sha512 = "VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==";
- };
- };
"ignore-walk-7.0.0" = {
name = "ignore-walk";
packageName = "ignore-walk";
@@ -24270,15 +23064,6 @@ let
sha512 = "rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==";
};
};
- "import-local-3.1.0" = {
- name = "import-local";
- packageName = "import-local";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz";
- sha512 = "ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==";
- };
- };
"import-local-3.2.0" = {
name = "import-local";
packageName = "import-local";
@@ -24486,15 +23271,6 @@ let
sha512 = "+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==";
};
};
- "init-package-json-6.0.3" = {
- name = "init-package-json";
- packageName = "init-package-json";
- version = "6.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/init-package-json/-/init-package-json-6.0.3.tgz";
- sha512 = "Zfeb5ol+H+eqJWHTaGca9BovufyGeIfr4zaaBorPmJBMrJ+KBnN+kQx2ZtXdsotUTgldHmHQV44xvUWOUA7E2w==";
- };
- };
"ink-3.2.0" = {
name = "ink";
packageName = "ink";
@@ -25989,15 +24765,6 @@ let
sha512 = "ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==";
};
};
- "is-ssh-1.4.1" = {
- name = "is-ssh";
- packageName = "is-ssh";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.1.tgz";
- sha512 = "JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==";
- };
- };
"is-stream-1.1.0" = {
name = "is-stream";
packageName = "is-stream";
@@ -26007,15 +24774,6 @@ let
sha512 = "uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==";
};
};
- "is-stream-2.0.0" = {
- name = "is-stream";
- packageName = "is-stream";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz";
- sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==";
- };
- };
"is-stream-2.0.1" = {
name = "is-stream";
packageName = "is-stream";
@@ -26070,15 +24828,6 @@ let
sha512 = "9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==";
};
};
- "is-text-path-1.0.1" = {
- name = "is-text-path";
- packageName = "is-text-path";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz";
- sha512 = "xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==";
- };
- };
"is-text-path-2.0.0" = {
name = "is-text-path";
packageName = "is-text-path";
@@ -26430,13 +25179,13 @@ let
sha512 = "OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==";
};
};
- "jackspeak-4.0.3" = {
+ "jackspeak-4.1.0" = {
name = "jackspeak";
packageName = "jackspeak";
- version = "4.0.3";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.3.tgz";
- sha512 = "oSwM7q8PTHQWuZAlp995iPpPJ4Vkl7qT0ZRD+9duL9j2oBy6KcTfyxc8mEuHJYC+z/kbps80aJLkaNzTOrf/kw==";
+ url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz";
+ sha512 = "9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==";
};
};
"jade-0.27.0" = {
@@ -26457,24 +25206,6 @@ let
sha512 = "2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==";
};
};
- "jest-diff-29.7.0" = {
- name = "jest-diff";
- packageName = "jest-diff";
- version = "29.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz";
- sha512 = "LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==";
- };
- };
- "jest-get-type-29.6.3" = {
- name = "jest-get-type";
- packageName = "jest-get-type";
- version = "29.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz";
- sha512 = "zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==";
- };
- };
"jest-worker-27.5.1" = {
name = "jest-worker";
packageName = "jest-worker";
@@ -26745,22 +25476,22 @@ let
sha512 = "qxiV/NMucgvHHupZJ36QACejcgZ3qY1FzjVHMOBmDHm+dISZ39p7dH7Hiq2ErMEwCDzdvQgR1OwCsUnrBH6oVQ==";
};
};
- "jsii-5.5.21" = {
+ "jsii-5.5.23" = {
name = "jsii";
packageName = "jsii";
- version = "5.5.21";
+ version = "5.5.23";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-5.5.21.tgz";
- sha512 = "ISmQCWc1HFUrXlMDWo0PZ5ggEg1uFv1vE0dGcKV25yyaWPPc6ai2RoiG0PEZIc3fRa2edT5yTFPf2tttet+Wxw==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-5.5.23.tgz";
+ sha512 = "HtAu1yGOVbl8dHHinkOOO3Ri01dDc/RrZ7IYlw/OSwhSgH0LB+x8tBWbhcacYE20mMIc/2GbADZOrcVj5byyBg==";
};
};
- "jsii-5.7.5" = {
+ "jsii-5.7.6" = {
name = "jsii";
packageName = "jsii";
- version = "5.7.5";
+ version = "5.7.6";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-5.7.5.tgz";
- sha512 = "3cEcpDjiA3bunGbEejnst43y7Oi/MoQECaAcj+m6Pn3JJhk1DZY0M+SuOlKv2z8FxPR1ODf7+ZdwXZOMj5xVMg==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-5.7.6.tgz";
+ sha512 = "yh+LxT7tUTs30R5nbmI5hcjHaxqHdrYyd9jjR9uDWbkW4Aj8yvqX7U6eaOzQZPvolnBZ1pvgelIfO/KRqzSfog==";
};
};
"jsii-pacmak-1.102.0" = {
@@ -26772,22 +25503,22 @@ let
sha512 = "3/nqBYNH8n/5IWI0sBFBYl1yATokEDUDQtYFLjzk7oXNWpUJ23/encI78Cs55ZS6UXcfWN3xczGLqCWnsgEpnw==";
};
};
- "jsii-pacmak-1.106.0" = {
+ "jsii-pacmak-1.108.0" = {
name = "jsii-pacmak";
packageName = "jsii-pacmak";
- version = "1.106.0";
+ version = "1.108.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.106.0.tgz";
- sha512 = "cNSzPszHaFg5AYwOQhp+eM/KpOJupdeyyycrzR6AtxwSmRN6x4K7YybZY/Rk0zfqGds9ukOYv0euGLZuXzXt1w==";
+ url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.108.0.tgz";
+ sha512 = "qj/dGQkALH/YTMGUIyg+EgFD9+WXyrJPug8cwQureNyRK90gHLrTMo7oFQhhTlW2OVH6WAGlQO5FPLtkbujgmQ==";
};
};
- "jsii-reflect-1.106.0" = {
+ "jsii-reflect-1.108.0" = {
name = "jsii-reflect";
packageName = "jsii-reflect";
- version = "1.106.0";
+ version = "1.108.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.106.0.tgz";
- sha512 = "3t+a8kT4G5fYnQAM7eS8bgUpK+Vj1sFgABqLIC2Oae+8rUb6J+v7xTSvqWEOlO0FI608/BwalWsXsvW+Mtogmw==";
+ url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.108.0.tgz";
+ sha512 = "szlgEA2zFJhtSId2/GYHqosofkXgmkdo+baMMbv0HWt1UuwUK+pI+nYP9WX7mkNoNgIS1tVLre6AZZAZ7RmOfg==";
};
};
"jsii-rosetta-5.4.30" = {
@@ -26799,13 +25530,13 @@ let
sha512 = "DyJlVO1L7p37poEtja3ktr3zGv15kvnkVrJ+uPuv5+QOvSs2XTTzi2qsgt/l7N/6yXelQ2LDvSDzXfEY08UZjg==";
};
};
- "jsii-rosetta-5.7.4" = {
+ "jsii-rosetta-5.7.6" = {
name = "jsii-rosetta";
packageName = "jsii-rosetta";
- version = "5.7.4";
+ version = "5.7.6";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.7.4.tgz";
- sha512 = "7wBOpEWUofrdxn+9iG2GW85fZ6M+LDjJDm3pG5eTvbPOK0ip5u7ec4C3ZhTkuAh/z22Xo29+qNndvUI169siyg==";
+ url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.7.6.tgz";
+ sha512 = "yimRfvgFM4+ZctGBWadQe3Yplxpp21iSWZzYGncMCV+oaZ1IlTrq4AxGjcoij+bQFdp97hAXoDg66pFmvWOkBg==";
};
};
"jsii-srcmak-0.1.1236" = {
@@ -26988,15 +25719,6 @@ let
sha512 = "Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==";
};
};
- "json-stringify-nice-1.1.4" = {
- name = "json-stringify-nice";
- packageName = "json-stringify-nice";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz";
- sha512 = "5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==";
- };
- };
"json-stringify-pretty-compact-4.0.0" = {
name = "json-stringify-pretty-compact";
packageName = "json-stringify-pretty-compact";
@@ -27051,15 +25773,6 @@ let
sha512 = "o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w==";
};
};
- "jsonc-parser-3.2.0" = {
- name = "jsonc-parser";
- packageName = "jsonc-parser";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz";
- sha512 = "gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==";
- };
- };
"jsonc-parser-3.3.1" = {
name = "jsonc-parser";
packageName = "jsonc-parser";
@@ -27150,6 +25863,15 @@ let
sha512 = "T9V+8iNYKFL2n2rF+w02LBOT2JjDnTjioaNFrxRy0Bv1y/hNsqR/EBK7Ojy2ythRHwmz2cRIls+9JitQGZC/sw==";
};
};
+ "jsonpath-plus-10.3.0" = {
+ name = "jsonpath-plus";
+ packageName = "jsonpath-plus";
+ version = "10.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-10.3.0.tgz";
+ sha512 = "8TNmfeTCk2Le33A3vRRwtuworG/L5RrgMvdjhKZxvyShO+mBu2fP50OWUjRLNtvw344DdDarFh9buFAZs5ujeA==";
+ };
+ };
"jsonpointer-5.0.1" = {
name = "jsonpointer";
packageName = "jsonpointer";
@@ -27204,15 +25926,6 @@ let
sha512 = "gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==";
};
};
- "jszip-3.10.1" = {
- name = "jszip";
- packageName = "jszip";
- version = "3.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz";
- sha512 = "xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==";
- };
- };
"jszip-3.8.0" = {
name = "jszip";
packageName = "jszip";
@@ -27240,24 +25953,6 @@ let
sha512 = "Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==";
};
};
- "just-diff-6.0.2" = {
- name = "just-diff";
- packageName = "just-diff";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/just-diff/-/just-diff-6.0.2.tgz";
- sha512 = "S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==";
- };
- };
- "just-diff-apply-5.5.0" = {
- name = "just-diff-apply";
- packageName = "just-diff-apply";
- version = "5.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-5.5.0.tgz";
- sha512 = "OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==";
- };
- };
"jwa-1.4.1" = {
name = "jwa";
packageName = "jwa";
@@ -27744,24 +26439,6 @@ let
sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==";
};
};
- "libnpmaccess-8.0.6" = {
- name = "libnpmaccess";
- packageName = "libnpmaccess";
- version = "8.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-8.0.6.tgz";
- sha512 = "uM8DHDEfYG6G5gVivVl+yQd4pH3uRclHC59lzIbSvy7b5FEwR+mU49Zq1jEyRtRFv7+M99mUW9S0wL/4laT4lw==";
- };
- };
- "libnpmpublish-9.0.9" = {
- name = "libnpmpublish";
- packageName = "libnpmpublish";
- version = "9.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-9.0.9.tgz";
- sha512 = "26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg==";
- };
- };
"lie-3.1.1" = {
name = "lie";
packageName = "lie";
@@ -27852,15 +26529,6 @@ let
sha512 = "7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==";
};
};
- "lines-and-columns-2.0.3" = {
- name = "lines-and-columns";
- packageName = "lines-and-columns";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz";
- sha512 = "cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==";
- };
- };
"lines-and-columns-2.0.4" = {
name = "lines-and-columns";
packageName = "lines-and-columns";
@@ -28032,15 +26700,6 @@ let
sha512 = "3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==";
};
};
- "load-json-file-4.0.0" = {
- name = "load-json-file";
- packageName = "load-json-file";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz";
- sha512 = "Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==";
- };
- };
"load-json-file-6.2.0" = {
name = "load-json-file";
packageName = "load-json-file";
@@ -28554,15 +27213,6 @@ let
sha512 = "DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==";
};
};
- "lodash.ismatch-4.4.0" = {
- name = "lodash.ismatch";
- packageName = "lodash.ismatch";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz";
- sha512 = "fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==";
- };
- };
"lodash.isnil-4.0.0" = {
name = "lodash.isnil";
packageName = "lodash.isnil";
@@ -29049,13 +27699,13 @@ let
sha512 = "WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g==";
};
};
- "long-5.3.0" = {
+ "long-5.3.1" = {
name = "long";
packageName = "long";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/long/-/long-5.3.0.tgz";
- sha512 = "5vvY5yF1zF/kXk+L94FRiTDa1Znom46UjPCH6/XbSvS8zBKMFBHTJk8KDMqJ+2J6QezQFi7k1k8v21ClJYHPaw==";
+ url = "https://registry.npmjs.org/long/-/long-5.3.1.tgz";
+ sha512 = "ka87Jz3gcx/I7Hal94xaN2tZEOPoUOEVftkQqZx2EeQRN7LGdfLlI3FvZ+7WDplm+vK2Urx9ULrvSowtdCieng==";
};
};
"long-timeout-0.1.1" = {
@@ -29428,15 +28078,6 @@ let
sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==";
};
};
- "make-dir-4.0.0" = {
- name = "make-dir";
- packageName = "make-dir";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz";
- sha512 = "hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==";
- };
- };
"make-error-1.3.6" = {
name = "make-error";
packageName = "make-error";
@@ -29455,15 +28096,6 @@ let
sha512 = "NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==";
};
};
- "make-fetch-happen-13.0.1" = {
- name = "make-fetch-happen";
- packageName = "make-fetch-happen";
- version = "13.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz";
- sha512 = "cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==";
- };
- };
"make-fetch-happen-14.0.3" = {
name = "make-fetch-happen";
packageName = "make-fetch-happen";
@@ -29545,15 +28177,6 @@ let
sha512 = "4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==";
};
};
- "markdown-it-12.3.2" = {
- name = "markdown-it";
- packageName = "markdown-it";
- version = "12.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz";
- sha512 = "TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==";
- };
- };
"markdown-it-13.0.2" = {
name = "markdown-it";
packageName = "markdown-it";
@@ -30256,15 +28879,6 @@ let
sha512 = "TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==";
};
};
- "meow-8.1.2" = {
- name = "meow";
- packageName = "meow";
- version = "8.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz";
- sha512 = "r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==";
- };
- };
"meow-9.0.0" = {
name = "meow";
packageName = "meow";
@@ -31228,15 +29842,6 @@ let
sha512 = "ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==";
};
};
- "minimatch-3.0.5" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "3.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz";
- sha512 = "tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==";
- };
- };
"minimatch-3.0.8" = {
name = "minimatch";
packageName = "minimatch";
@@ -31282,15 +29887,6 @@ let
sha512 = "sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==";
};
};
- "minimatch-8.0.4" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "8.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz";
- sha512 = "W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==";
- };
- };
"minimatch-9.0.1" = {
name = "minimatch";
packageName = "minimatch";
@@ -31309,15 +29905,6 @@ let
sha512 = "PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==";
};
};
- "minimatch-9.0.3" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "9.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz";
- sha512 = "RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==";
- };
- };
"minimatch-9.0.5" = {
name = "minimatch";
packageName = "minimatch";
@@ -31372,15 +29959,6 @@ let
sha512 = "DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==";
};
};
- "minipass-4.2.8" = {
- name = "minipass";
- packageName = "minipass";
- version = "4.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz";
- sha512 = "fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==";
- };
- };
"minipass-5.0.0" = {
name = "minipass";
packageName = "minipass";
@@ -31435,15 +30013,6 @@ let
sha512 = "LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==";
};
};
- "minipass-fetch-3.0.5" = {
- name = "minipass-fetch";
- packageName = "minipass-fetch";
- version = "3.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz";
- sha512 = "2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==";
- };
- };
"minipass-fetch-4.0.0" = {
name = "minipass-fetch";
packageName = "minipass-fetch";
@@ -31588,15 +30157,6 @@ let
sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==";
};
};
- "modify-values-1.0.1" = {
- name = "modify-values";
- packageName = "modify-values";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz";
- sha512 = "xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==";
- };
- };
"module-deps-6.2.3" = {
name = "module-deps";
packageName = "module-deps";
@@ -31687,13 +30247,13 @@ let
sha512 = "tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==";
};
};
- "mrmime-2.0.0" = {
+ "mrmime-2.0.1" = {
name = "mrmime";
packageName = "mrmime";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz";
- sha512 = "eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==";
+ url = "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz";
+ sha512 = "Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==";
};
};
"ms-0.7.3" = {
@@ -31903,13 +30463,13 @@ let
sha512 = "2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==";
};
};
- "nan-2.22.0" = {
+ "nan-2.22.1" = {
name = "nan";
packageName = "nan";
- version = "2.22.0";
+ version = "2.22.1";
src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz";
- sha512 = "nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==";
+ url = "https://registry.npmjs.org/nan/-/nan-2.22.1.tgz";
+ sha512 = "pfRR4ZcNTSm2ZFHaztuvbICf+hyiG6ecA06SfAxoPmuHjvMu0KUIae7Y8GyVkbBqeEIidsmXeYooWIX9+qjfRQ==";
};
};
"nanoid-3.3.7" = {
@@ -32480,15 +31040,6 @@ let
sha512 = "08ARB91bUi6zNKzVmaj3QO7cr397uiDT2nJ63cHjyNtCTWIgvS47j3eT0WfzUwS9+6Z5YshRaoasFkXCKrIYbA==";
};
};
- "node-gyp-10.3.1" = {
- name = "node-gyp";
- packageName = "node-gyp";
- version = "10.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-10.3.1.tgz";
- sha512 = "Pp3nFHBThHzVtNY7U6JfPjvT/DTE8+o/4xKsLQtBoU+j2HLsGlhcfzflAoUreaJbNmYnX+LlLi0qjV8kpyO6xQ==";
- };
- };
"node-gyp-11.1.0" = {
name = "node-gyp";
packageName = "node-gyp";
@@ -32543,15 +31094,6 @@ let
sha512 = "+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==";
};
};
- "node-machine-id-1.1.12" = {
- name = "node-machine-id";
- packageName = "node-machine-id";
- version = "1.1.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz";
- sha512 = "QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==";
- };
- };
"node-notifier-10.0.1" = {
name = "node-notifier";
packageName = "node-notifier";
@@ -32885,15 +31427,6 @@ let
sha512 = "x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==";
};
};
- "npm-bundled-3.0.1" = {
- name = "npm-bundled";
- packageName = "npm-bundled";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.1.tgz";
- sha512 = "+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==";
- };
- };
"npm-bundled-4.0.0" = {
name = "npm-bundled";
packageName = "npm-bundled";
@@ -32975,15 +31508,6 @@ let
sha512 = "TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==";
};
};
- "npm-package-arg-11.0.2" = {
- name = "npm-package-arg";
- packageName = "npm-package-arg";
- version = "11.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.2.tgz";
- sha512 = "IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==";
- };
- };
"npm-package-arg-11.0.3" = {
name = "npm-package-arg";
packageName = "npm-package-arg";
@@ -33029,15 +31553,6 @@ let
sha512 = "KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ==";
};
};
- "npm-packlist-8.0.2" = {
- name = "npm-packlist";
- packageName = "npm-packlist";
- version = "8.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.2.tgz";
- sha512 = "shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==";
- };
- };
"npm-packlist-9.0.0" = {
name = "npm-packlist";
packageName = "npm-packlist";
@@ -33074,15 +31589,6 @@ let
sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg==";
};
};
- "npm-registry-fetch-17.1.0" = {
- name = "npm-registry-fetch";
- packageName = "npm-registry-fetch";
- version = "17.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-17.1.0.tgz";
- sha512 = "5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==";
- };
- };
"npm-registry-fetch-18.0.2" = {
name = "npm-registry-fetch";
packageName = "npm-registry-fetch";
@@ -33272,15 +31778,6 @@ let
sha512 = "F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==";
};
};
- "nx-20.4.4" = {
- name = "nx";
- packageName = "nx";
- version = "20.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/nx/-/nx-20.4.4.tgz";
- sha512 = "gOR9YFDbDTnOQYy6oqJ60ExgCiJJnz+o1TxrmP6cRmpRVv+5RmuZWQ9fXPtaj4SA69jbNqhSVyopT8oO6I+Gaw==";
- };
- };
"oas-kit-common-1.0.8" = {
name = "oas-kit-common";
packageName = "oas-kit-common";
@@ -33650,13 +32147,13 @@ let
sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA==";
};
};
- "oo-ascii-tree-1.106.0" = {
+ "oo-ascii-tree-1.108.0" = {
name = "oo-ascii-tree";
packageName = "oo-ascii-tree";
- version = "1.106.0";
+ version = "1.108.0";
src = fetchurl {
- url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.106.0.tgz";
- sha512 = "0PZkjIiJUW3jEx7durxcri7JciR8VbJpf2K3qiVbGG4x0MTq6Xm/H84GjBI6tamSx/DV1PMFDfwMs3hm8zfOCw==";
+ url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.108.0.tgz";
+ sha512 = "aR++8J29Te6L+1pVi9phOvsMVdEj7245vpcJqmrzDOGHpJdZ3zm1hdh44pYfzV1PiDgG3S3fwtlLZilulwVAgg==";
};
};
"open-0.0.2" = {
@@ -33839,15 +32336,6 @@ let
sha512 = "WfnNWLS3vr8omCm8nKYKaRbapuy6pEbx1O0B+eP5sUf/a++sT9/h8PflqBoHsY9N+YdzUT12T8snXigq13QpJg==";
};
};
- "ora-5.3.0" = {
- name = "ora";
- packageName = "ora";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz";
- sha512 = "zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==";
- };
- };
"ora-5.4.1" = {
name = "ora";
packageName = "ora";
@@ -33866,15 +32354,6 @@ let
sha512 = "ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==";
};
};
- "ora-7.0.1" = {
- name = "ora";
- packageName = "ora";
- version = "7.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ora/-/ora-7.0.1.tgz";
- sha512 = "0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==";
- };
- };
"ora-8.2.0" = {
name = "ora";
packageName = "ora";
@@ -33956,15 +32435,6 @@ let
sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
};
};
- "ovsx-0.8.4" = {
- name = "ovsx";
- packageName = "ovsx";
- version = "0.8.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/ovsx/-/ovsx-0.8.4.tgz";
- sha512 = "RMtGSVNM4NWSF9uVWCUqaYiA7ID8Vqm/rSk2W37eYVrDLOI/3do2IRY7rQYkvJqb6sS6LAnALODBkD50tIM1kw==";
- };
- };
"own-keys-1.0.1" = {
name = "own-keys";
packageName = "own-keys";
@@ -33974,15 +32444,6 @@ let
sha512 = "qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==";
};
};
- "oxc-resolver-1.12.0" = {
- name = "oxc-resolver";
- packageName = "oxc-resolver";
- version = "1.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/oxc-resolver/-/oxc-resolver-1.12.0.tgz";
- sha512 = "YlaCIArvWNKCWZFRrMjhh2l5jK80eXnpYP+bhRc1J/7cW3TiyEY0ngJo73o/5n8hA3+4yLdTmXLNTQ3Ncz50LQ==";
- };
- };
"p-cancelable-1.1.0" = {
name = "p-cancelable";
packageName = "p-cancelable";
@@ -34199,15 +32660,6 @@ let
sha512 = "VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==";
};
};
- "p-map-series-2.1.0" = {
- name = "p-map-series";
- packageName = "p-map-series";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-map-series/-/p-map-series-2.1.0.tgz";
- sha512 = "RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==";
- };
- };
"p-memoize-7.1.1" = {
name = "p-memoize";
packageName = "p-memoize";
@@ -34217,33 +32669,6 @@ let
sha512 = "DZ/bONJILHkQ721hSr/E9wMz5Am/OTJ9P6LhLFo2Tu+jL8044tgc9LwHO8g4PiaYePnlVVRAJcKmgy8J9MVFrA==";
};
};
- "p-pipe-3.1.0" = {
- name = "p-pipe";
- packageName = "p-pipe";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz";
- sha512 = "08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==";
- };
- };
- "p-queue-6.6.2" = {
- name = "p-queue";
- packageName = "p-queue";
- version = "6.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz";
- sha512 = "RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==";
- };
- };
- "p-reduce-2.1.0" = {
- name = "p-reduce";
- packageName = "p-reduce";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz";
- sha512 = "2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==";
- };
- };
"p-reflect-2.1.0" = {
name = "p-reflect";
packageName = "p-reflect";
@@ -34262,15 +32687,6 @@ let
sha512 = "6THGh13mt3gypcNMm0ADqVNCcYa3BK6DWsuJWFCuEKP1rpY+OKGp7gaZwVmLspmic01+fsg/fN57MfvDzZ/PuQ==";
};
};
- "p-timeout-3.2.0" = {
- name = "p-timeout";
- packageName = "p-timeout";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz";
- sha512 = "rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==";
- };
- };
"p-timeout-5.1.0" = {
name = "p-timeout";
packageName = "p-timeout";
@@ -34307,22 +32723,13 @@ let
sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==";
};
};
- "p-waterfall-2.1.1" = {
- name = "p-waterfall";
- packageName = "p-waterfall";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-waterfall/-/p-waterfall-2.1.1.tgz";
- sha512 = "RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==";
- };
- };
- "pac-proxy-agent-7.1.0" = {
+ "pac-proxy-agent-7.2.0" = {
name = "pac-proxy-agent";
packageName = "pac-proxy-agent";
- version = "7.1.0";
+ version = "7.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.1.0.tgz";
- sha512 = "Z5FnLVVZSnX7WjBg0mhDtydeRZ1xMcATZThjySQUHqr+0ksP8kqaw23fNKkaaN/Z8gwLUs/W7xdl0I75eP2Xyw==";
+ url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz";
+ sha512 = "TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==";
};
};
"pac-resolver-7.0.1" = {
@@ -34388,15 +32795,6 @@ let
sha512 = "UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==";
};
};
- "pacote-18.0.6" = {
- name = "pacote";
- packageName = "pacote";
- version = "18.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/pacote/-/pacote-18.0.6.tgz";
- sha512 = "+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==";
- };
- };
"pacote-20.0.0" = {
name = "pacote";
packageName = "pacote";
@@ -34496,15 +32894,6 @@ let
sha512 = "0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==";
};
};
- "parse-conflict-json-3.0.1" = {
- name = "parse-conflict-json";
- packageName = "parse-conflict-json";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-3.0.1.tgz";
- sha512 = "01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==";
- };
- };
"parse-english-5.0.0" = {
name = "parse-english";
packageName = "parse-english";
@@ -34676,24 +33065,6 @@ let
sha512 = "1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==";
};
};
- "parse-path-7.0.1" = {
- name = "parse-path";
- packageName = "parse-path";
- version = "7.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-path/-/parse-path-7.0.1.tgz";
- sha512 = "6ReLMptznuuOEzLoGEa+I1oWRSj2Zna5jLWC+l6zlfAI4dbbSaIES29ThzuPkbhNahT65dWzfoZEO6cfJw2Ksg==";
- };
- };
- "parse-semver-1.1.1" = {
- name = "parse-semver";
- packageName = "parse-semver";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-semver/-/parse-semver-1.1.1.tgz";
- sha512 = "Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ==";
- };
- };
"parse-torrent-11.0.18" = {
name = "parse-torrent";
packageName = "parse-torrent";
@@ -34739,15 +33110,6 @@ let
sha512 = "u2MgLOjZPDDer1oRg1c+H/+54iIQYY5TKgQ5G8KrGLT1Dcwdo7Lj+QfQR123+u8J0AMSFGbQUvsBlSB7uIJcCA==";
};
};
- "parse-url-8.1.0" = {
- name = "parse-url";
- packageName = "parse-url";
- version = "8.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz";
- sha512 = "xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==";
- };
- };
"parse5-3.0.3" = {
name = "parse5";
packageName = "parse5";
@@ -34793,15 +33155,6 @@ let
sha512 = "ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==";
};
};
- "parse5-parser-stream-7.1.2" = {
- name = "parse5-parser-stream";
- packageName = "parse5-parser-stream";
- version = "7.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz";
- sha512 = "JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==";
- };
- };
"parseqs-0.0.5" = {
name = "parseqs";
packageName = "parseqs";
@@ -35396,15 +33749,6 @@ let
sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==";
};
};
- "pify-5.0.0" = {
- name = "pify";
- packageName = "pify";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz";
- sha512 = "eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==";
- };
- };
"pinkie-2.0.4" = {
name = "pinkie";
packageName = "pinkie";
@@ -35684,13 +34028,13 @@ let
sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==";
};
};
- "postcss-8.5.2" = {
+ "postcss-8.5.3" = {
name = "postcss";
packageName = "postcss";
- version = "8.5.2";
+ version = "8.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz";
- sha512 = "MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==";
+ url = "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz";
+ sha512 = "dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==";
};
};
"postcss-calc-10.1.1" = {
@@ -36215,13 +34559,13 @@ let
sha512 = "tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==";
};
};
- "prettier-3.5.1" = {
+ "prettier-3.5.2" = {
name = "prettier";
packageName = "prettier";
- version = "3.5.1";
+ version = "3.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-3.5.1.tgz";
- sha512 = "hPpFQvHwL3Qv5AdRvBFMhnKo4tYxp0ReXiPn2bxkiohEX6mBeBwEpBSQTkD458RaaDKQMYSp4hX4UtfUTA5wDw==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz";
+ sha512 = "lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==";
};
};
"prettier-bytes-1.0.4" = {
@@ -36242,15 +34586,6 @@ let
sha512 = "EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==";
};
};
- "pretty-format-29.7.0" = {
- name = "pretty-format";
- packageName = "pretty-format";
- version = "29.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz";
- sha512 = "Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==";
- };
- };
"pretty-hrtime-1.0.3" = {
name = "pretty-hrtime";
packageName = "pretty-hrtime";
@@ -36377,15 +34712,6 @@ let
sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==";
};
};
- "proggy-2.0.0" = {
- name = "proggy";
- packageName = "proggy";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/proggy/-/proggy-2.0.0.tgz";
- sha512 = "69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A==";
- };
- };
"progress-1.1.8" = {
name = "progress";
packageName = "progress";
@@ -36431,24 +34757,6 @@ let
sha512 = "rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==";
};
};
- "promise-all-reject-late-1.0.1" = {
- name = "promise-all-reject-late";
- packageName = "promise-all-reject-late";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz";
- sha512 = "vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==";
- };
- };
- "promise-call-limit-3.0.2" = {
- name = "promise-call-limit";
- packageName = "promise-call-limit";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/promise-call-limit/-/promise-call-limit-3.0.2.tgz";
- sha512 = "mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw==";
- };
- };
"promise-inflight-1.0.1" = {
name = "promise-inflight";
packageName = "promise-inflight";
@@ -36494,15 +34802,6 @@ let
sha512 = "NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==";
};
};
- "promzard-1.0.2" = {
- name = "promzard";
- packageName = "promzard";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/promzard/-/promzard-1.0.2.tgz";
- sha512 = "2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==";
- };
- };
"proper-lockfile-4.1.2" = {
name = "proper-lockfile";
packageName = "proper-lockfile";
@@ -36521,6 +34820,15 @@ let
sha512 = "PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==";
};
};
+ "property-information-7.0.0" = {
+ name = "property-information";
+ packageName = "property-information";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/property-information/-/property-information-7.0.0.tgz";
+ sha512 = "7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==";
+ };
+ };
"proto-list-1.2.4" = {
name = "proto-list";
packageName = "proto-list";
@@ -36539,15 +34847,6 @@ let
sha512 = "mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==";
};
};
- "protocols-2.0.2" = {
- name = "protocols";
- packageName = "protocols";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/protocols/-/protocols-2.0.2.tgz";
- sha512 = "hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==";
- };
- };
"proxy-addr-2.0.7" = {
name = "proxy-addr";
packageName = "proxy-addr";
@@ -37232,15 +35531,6 @@ let
sha512 = "nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==";
};
};
- "react-is-18.3.1" = {
- name = "react-is";
- packageName = "react-is";
- version = "18.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz";
- sha512 = "/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==";
- };
- };
"react-reconciler-0.26.2" = {
name = "react-reconciler";
packageName = "react-reconciler";
@@ -37277,15 +35567,6 @@ let
sha512 = "rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==";
};
};
- "read-3.0.1" = {
- name = "read";
- packageName = "read";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/read/-/read-3.0.1.tgz";
- sha512 = "SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==";
- };
- };
"read-all-stream-3.1.0" = {
name = "read-all-stream";
packageName = "read-all-stream";
@@ -37322,15 +35603,6 @@ let
sha512 = "CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ==";
};
};
- "read-cmd-shim-4.0.0" = {
- name = "read-cmd-shim";
- packageName = "read-cmd-shim";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz";
- sha512 = "yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==";
- };
- };
"read-only-stream-2.0.0" = {
name = "read-only-stream";
packageName = "read-only-stream";
@@ -37394,15 +35666,6 @@ let
sha512 = "eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==";
};
};
- "read-pkg-3.0.0" = {
- name = "read-pkg";
- packageName = "read-pkg";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz";
- sha512 = "BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==";
- };
- };
"read-pkg-5.2.0" = {
name = "read-pkg";
packageName = "read-pkg";
@@ -37457,15 +35720,6 @@ let
sha512 = "1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==";
};
};
- "read-pkg-up-3.0.0" = {
- name = "read-pkg-up";
- packageName = "read-pkg-up";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz";
- sha512 = "YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==";
- };
- };
"read-pkg-up-7.0.1" = {
name = "read-pkg-up";
packageName = "read-pkg-up";
@@ -38888,15 +37142,6 @@ let
sha512 = "/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A==";
};
};
- "resolve-package-1.0.1" = {
- name = "resolve-package";
- packageName = "resolve-package";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-package/-/resolve-package-1.0.1.tgz";
- sha512 = "rzB7NnQpOkPHBWFPP3prUMqOP6yg3HkRGgcvR+lDyvyHoY3fZLFLYDkPXh78SPVBAE6VTCk/V+j8we4djg6o4g==";
- };
- };
"resolve-pkg-maps-1.0.0" = {
name = "resolve-pkg-maps";
packageName = "resolve-pkg-maps";
@@ -38915,15 +37160,6 @@ let
sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==";
};
};
- "resolve.exports-2.0.3" = {
- name = "resolve.exports";
- packageName = "resolve.exports";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz";
- sha512 = "OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==";
- };
- };
"resp-modifier-6.0.2" = {
name = "resp-modifier";
packageName = "resp-modifier";
@@ -39158,15 +37394,6 @@ let
sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==";
};
};
- "rimraf-4.4.1" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "4.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-4.4.1.tgz";
- sha512 = "Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==";
- };
- };
"rimraf-5.0.10" = {
name = "rimraf";
packageName = "rimraf";
@@ -39203,13 +37430,13 @@ let
sha512 = "IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==";
};
};
- "rollup-4.34.7" = {
+ "rollup-4.34.8" = {
name = "rollup";
packageName = "rollup";
- version = "4.34.7";
+ version = "4.34.8";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz";
- sha512 = "8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz";
+ sha512 = "489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==";
};
};
"round-to-6.0.0" = {
@@ -39392,6 +37619,15 @@ let
sha512 = "AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==";
};
};
+ "rxjs-7.8.2" = {
+ name = "rxjs";
+ packageName = "rxjs";
+ version = "7.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz";
+ sha512 = "dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==";
+ };
+ };
"s3-stream-upload-2.0.2" = {
name = "s3-stream-upload";
packageName = "s3-stream-upload";
@@ -40328,15 +38564,6 @@ let
sha512 = "bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==";
};
};
- "sigstore-2.3.1" = {
- name = "sigstore";
- packageName = "sigstore";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sigstore/-/sigstore-2.3.1.tgz";
- sha512 = "8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==";
- };
- };
"sigstore-3.1.0" = {
name = "sigstore";
packageName = "sigstore";
@@ -40877,15 +39104,6 @@ let
sha512 = "s8cs2bcsQCzo/P2T/uoU6Js4dS/jnX8+4xunziNoq9qmSpZNCrRIAIvp4avsz0ST18HycV4z/7myJ7jsHWB2XQ==";
};
};
- "sort-keys-2.0.0" = {
- name = "sort-keys";
- packageName = "sort-keys";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz";
- sha512 = "/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==";
- };
- };
"sort-keys-4.2.0" = {
name = "sort-keys";
packageName = "sort-keys";
@@ -41336,15 +39554,6 @@ let
sha512 = "qszxcSCziI1IEv7SbVc51dqmyck1f520I92duwBWGRFtPQXz52ErYr6cAPEVWa4EkWNI4fMbPgagi2/oNpuuRg==";
};
};
- "ssri-10.0.6" = {
- name = "ssri";
- packageName = "ssri";
- version = "10.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz";
- sha512 = "MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==";
- };
- };
"ssri-12.0.0" = {
name = "ssri";
packageName = "ssri";
@@ -42146,22 +40355,13 @@ let
sha512 = "k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==";
};
};
- "strnum-1.0.5" = {
+ "strnum-1.1.1" = {
name = "strnum";
packageName = "strnum";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz";
- sha512 = "J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==";
- };
- };
- "strong-log-transformer-2.1.0" = {
- name = "strong-log-transformer";
- packageName = "strong-log-transformer";
- version = "2.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz";
- sha512 = "B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==";
+ url = "https://registry.npmjs.org/strnum/-/strnum-1.1.1.tgz";
+ sha512 = "O7aCHfYCamLCctjAiaucmE+fHf2DYHkus2OKCn4Wv03sykfFtgeECn505X6K4mPl8CRNd/qurC9guq+ynoN4pw==";
};
};
"strtok3-6.3.0" = {
@@ -42326,13 +40526,13 @@ let
sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==";
};
};
- "svelte-5.20.1" = {
+ "svelte-5.20.4" = {
name = "svelte";
packageName = "svelte";
- version = "5.20.1";
+ version = "5.20.4";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte/-/svelte-5.20.1.tgz";
- sha512 = "aCARru2WTdzJl55Ws8SK27+kvQwd8tijl4kY7NoDUXUHtTHhxMa8Lf6QNZKmU7cuPu3jjFloDO1j5HgYJNIIWg==";
+ url = "https://registry.npmjs.org/svelte/-/svelte-5.20.4.tgz";
+ sha512 = "2Mo/AfObaw9zuD0u1JJ7sOVzRCGcpETEyDkLbtkcctWpCMCIyT0iz83xD8JT29SR7O4SgswuPRIDYReYF/607A==";
};
};
"sver-1.8.4" = {
@@ -42479,13 +40679,13 @@ let
sha512 = "zTvf0mcggrGeTe/2jJ6ECkJHAQPIYEwDoqsiqBjI24mvRmQbInK5jq33fyypaCBxX08hMkfmdOqj6haT33EqWw==";
};
};
- "tailwindcss-4.0.6" = {
+ "tailwindcss-4.0.8" = {
name = "tailwindcss";
packageName = "tailwindcss";
- version = "4.0.6";
+ version = "4.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.6.tgz";
- sha512 = "mysewHYJKaXgNOW6pp5xon/emCsfAMnO8WMaGKZZ35fomnR/T5gYnRg2/yRTTrtXiEl1tiVkeRt0eMO6HxEZqw==";
+ url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.8.tgz";
+ sha512 = "Me7N5CKR+D2A1xdWA5t5+kjjT7bwnxZOE6/yDI/ixJdJokszsn2n++mdU5yJwrsTpqFX2B9ZNMBJDwcqk9C9lw==";
};
};
"tapable-0.2.9" = {
@@ -42515,15 +40715,6 @@ let
sha512 = "FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==";
};
};
- "tar-4.4.18" = {
- name = "tar";
- packageName = "tar";
- version = "4.4.18";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-4.4.18.tgz";
- sha512 = "ZuOtqqmkV9RE1+4odd+MhBpibmCxNP6PJhH/h2OqNuotTX7/XHPZQJv2pKvWMplFH9SIZZhitehh6vBH6LO8Pg==";
- };
- };
"tar-4.4.19" = {
name = "tar";
packageName = "tar";
@@ -42668,15 +40859,6 @@ let
sha512 = "yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==";
};
};
- "temp-dir-1.0.0" = {
- name = "temp-dir";
- packageName = "temp-dir";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz";
- sha512 = "xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==";
- };
- };
"temp-dir-3.0.0" = {
name = "temp-dir";
packageName = "temp-dir";
@@ -42776,15 +40958,6 @@ let
sha512 = "/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA==";
};
};
- "text-extensions-1.9.0" = {
- name = "text-extensions";
- packageName = "text-extensions";
- version = "1.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz";
- sha512 = "wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==";
- };
- };
"text-extensions-2.4.0" = {
name = "text-extensions";
packageName = "text-extensions";
@@ -43046,13 +41219,13 @@ let
sha512 = "KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==";
};
};
- "tinyglobby-0.2.10" = {
+ "tinyglobby-0.2.12" = {
name = "tinyglobby";
packageName = "tinyglobby";
- version = "0.2.10";
+ version = "0.2.12";
src = fetchurl {
- url = "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.10.tgz";
- sha512 = "Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==";
+ url = "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz";
+ sha512 = "qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==";
};
};
"tkwidgets-0.5.27" = {
@@ -43406,15 +41579,6 @@ let
sha512 = "BA/cp8KBvbBDkunxIuoBqzz3pYHL7J8QdzbKohK09urOpHFYqEe/xWGKkECEQG+LvfREd1GNqH3643GYFX8wSQ==";
};
};
- "treeverse-3.0.0" = {
- name = "treeverse";
- packageName = "treeverse";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/treeverse/-/treeverse-3.0.0.tgz";
- sha512 = "gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==";
- };
- };
"trim-lines-3.0.1" = {
name = "trim-lines";
packageName = "trim-lines";
@@ -43496,15 +41660,6 @@ let
sha512 = "0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==";
};
};
- "ts-api-utils-1.4.3" = {
- name = "ts-api-utils";
- packageName = "ts-api-utils";
- version = "1.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz";
- sha512 = "i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==";
- };
- };
"ts-morph-12.0.0" = {
name = "ts-morph";
packageName = "ts-morph";
@@ -43550,15 +41705,6 @@ let
sha512 = "ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg==";
};
};
- "tsconfig-paths-4.2.0" = {
- name = "tsconfig-paths";
- packageName = "tsconfig-paths";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz";
- sha512 = "NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==";
- };
- };
"tslib-1.14.1" = {
name = "tslib";
packageName = "tslib";
@@ -43604,13 +41750,13 @@ let
sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==";
};
};
- "tsx-4.19.2" = {
+ "tsx-4.19.3" = {
name = "tsx";
packageName = "tsx";
- version = "4.19.2";
+ version = "4.19.3";
src = fetchurl {
- url = "https://registry.npmjs.org/tsx/-/tsx-4.19.2.tgz";
- sha512 = "pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==";
+ url = "https://registry.npmjs.org/tsx/-/tsx-4.19.3.tgz";
+ sha512 = "4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==";
};
};
"tty-browserify-0.0.1" = {
@@ -43622,15 +41768,6 @@ let
sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==";
};
};
- "tuf-js-2.2.1" = {
- name = "tuf-js";
- packageName = "tuf-js";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tuf-js/-/tuf-js-2.2.1.tgz";
- sha512 = "GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==";
- };
- };
"tuf-js-3.0.1" = {
name = "tuf-js";
packageName = "tuf-js";
@@ -43649,15 +41786,6 @@ let
sha512 = "MB/C4h4n43kq8SpHtwIL/DlUXJfTWR7lG9AUJVJsLeW38q0mTXHoHtlnAqt27CsLFZC864i9P508pRXW3fjkJA==";
};
};
- "tunnel-0.0.6" = {
- name = "tunnel";
- packageName = "tunnel";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz";
- sha512 = "1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==";
- };
- };
"tunnel-agent-0.4.3" = {
name = "tunnel-agent";
packageName = "tunnel-agent";
@@ -43775,15 +41903,6 @@ let
sha512 = "t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==";
};
};
- "type-fest-0.4.1" = {
- name = "type-fest";
- packageName = "type-fest";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-fest/-/type-fest-0.4.1.tgz";
- sha512 = "IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==";
- };
- };
"type-fest-0.6.0" = {
name = "type-fest";
packageName = "type-fest";
@@ -43829,13 +41948,13 @@ let
sha512 = "tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==";
};
};
- "type-fest-4.34.1" = {
+ "type-fest-4.35.0" = {
name = "type-fest";
packageName = "type-fest";
- version = "4.34.1";
+ version = "4.35.0";
src = fetchurl {
- url = "https://registry.npmjs.org/type-fest/-/type-fest-4.34.1.tgz";
- sha512 = "6kSc32kT0rbwxD6QL1CYe8IqdzN/J/ILMrNK+HMQCKH3insCDRY/3ITb0vcBss0a3t72fzh2YSzj8ko1HgwT3g==";
+ url = "https://registry.npmjs.org/type-fest/-/type-fest-4.35.0.tgz";
+ sha512 = "2/AwEFQDFEy30iOLjrvHDIH7e4HEWH+f1Yl1bI5XMqzuoCUqwYCdxachgsgv0og/JdVZUhbfjcJAoHj5L1753A==";
};
};
"type-is-1.6.18" = {
@@ -43883,15 +42002,6 @@ let
sha512 = "3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==";
};
};
- "typed-rest-client-1.8.11" = {
- name = "typed-rest-client";
- packageName = "typed-rest-client";
- version = "1.8.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.8.11.tgz";
- sha512 = "5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA==";
- };
- };
"typedarray-0.0.6" = {
name = "typedarray";
packageName = "typedarray";
@@ -43973,13 +42083,13 @@ let
sha512 = "84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==";
};
};
- "typescript-5.8.0-dev.20250216" = {
+ "typescript-5.9.0-dev.20250224" = {
name = "typescript";
packageName = "typescript";
- version = "5.8.0-dev.20250216";
+ version = "5.9.0-dev.20250224";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-5.8.0-dev.20250216.tgz";
- sha512 = "yk0nq9GDx1NVK8gi8NgJULq3NJxkepX/B8ZQtopaLM0cUbjBhZLcXeHUs+LBv8AUUGq9alZGPQuC/W/IG/yoXA==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-5.9.0-dev.20250224.tgz";
+ sha512 = "hE9YCxxyOJDBJhEo6w3veHldQw5ry0nhuTzaPU2UZe37YsBIC5kaOVdzeA+IUh4cgYWKe60B1vuC4GN8Q4a0SA==";
};
};
"typical-2.6.1" = {
@@ -44261,15 +42371,6 @@ let
sha512 = "72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==";
};
};
- "undici-6.21.1" = {
- name = "undici";
- packageName = "undici";
- version = "6.21.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/undici/-/undici-6.21.1.tgz";
- sha512 = "q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ==";
- };
- };
"undici-types-5.26.5" = {
name = "undici-types";
packageName = "undici-types";
@@ -44477,15 +42578,6 @@ let
sha512 = "ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==";
};
};
- "unique-filename-3.0.0" = {
- name = "unique-filename";
- packageName = "unique-filename";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz";
- sha512 = "afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==";
- };
- };
"unique-filename-4.0.0" = {
name = "unique-filename";
packageName = "unique-filename";
@@ -44513,15 +42605,6 @@ let
sha512 = "8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==";
};
};
- "unique-slug-4.0.0" = {
- name = "unique-slug";
- packageName = "unique-slug";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz";
- sha512 = "WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==";
- };
- };
"unique-slug-5.0.0" = {
name = "unique-slug";
packageName = "unique-slug";
@@ -44900,15 +42983,6 @@ let
sha512 = "L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==";
};
};
- "universal-user-agent-6.0.1" = {
- name = "universal-user-agent";
- packageName = "universal-user-agent";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz";
- sha512 = "yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==";
- };
- };
"universalify-0.1.2" = {
name = "universalify";
packageName = "universalify";
@@ -45035,15 +43109,6 @@ let
sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==";
};
};
- "upath-2.0.1" = {
- name = "upath";
- packageName = "upath";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz";
- sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==";
- };
- };
"update-browserslist-db-1.1.2" = {
name = "update-browserslist-db";
packageName = "update-browserslist-db";
@@ -45665,13 +43730,13 @@ let
sha512 = "Hq72JaTpcTFdWiNA4Y22Amej2GH3BFmBaKPPlDZ4/oC8HNn2ISHLkFrJU4Ds8R3jcUi7oo5Y9jcMHKjES+N9wQ==";
};
};
- "vega-5.31.0" = {
+ "vega-5.32.0" = {
name = "vega";
packageName = "vega";
- version = "5.31.0";
+ version = "5.32.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega/-/vega-5.31.0.tgz";
- sha512 = "ZZ+8kcKqCeRi7pBdS7kfBpfhV2gDpa6N950GKGWFw0QL4fH319A9o8FAJzdY8zK0WW0PKrivZSoRmK9fWUxnhg==";
+ url = "https://registry.npmjs.org/vega/-/vega-5.32.0.tgz";
+ sha512 = "jANt/5+SpV7b7owB5u8+M1TZ/TrF1fK6WlcvKDW38tH3Gb6hM1nzIhv10E41w3GBmwF29BU/qH2ruNkaYKjI5g==";
};
};
"vega-canvas-1.2.7" = {
@@ -45728,6 +43793,15 @@ let
sha512 = "fFeDTh4UtOxlZWL54jf1ZqJHinyerWq/ROiqrQxqLkNJRJ86RmxYTgXwt65UoZ/l4VUv9eAd2qoJeDEf610Umw==";
};
};
+ "vega-expression-5.2.0" = {
+ name = "vega-expression";
+ packageName = "vega-expression";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vega-expression/-/vega-expression-5.2.0.tgz";
+ sha512 = "WRMa4ny3iZIVAzDlBh3ipY2QUuLk2hnJJbfbncPgvTF7BUgbIbKq947z+JicWksYbokl8n1JHXJoqi3XvpG0Zw==";
+ };
+ };
"vega-force-4.2.2" = {
name = "vega-force";
packageName = "vega-force";
@@ -45746,13 +43820,13 @@ let
sha512 = "wQhw7KR46wKJAip28FF/CicW+oiJaPAwMKdrxlnTA0Nv8Bf7bloRlc+O3kON4b4H1iALLr9KgRcYTOeXNs2MOA==";
};
};
- "vega-functions-5.16.0" = {
+ "vega-functions-5.17.0" = {
name = "vega-functions";
packageName = "vega-functions";
- version = "5.16.0";
+ version = "5.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.16.0.tgz";
- sha512 = "uXjSDbbGcFLCQTZZI+OiZK0U+2dLWC26ONdO0g9RhPzXXzR3niPcFOA0bc/OeiHdTexqsLjOiXxR/K2BckB8gQ==";
+ url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.17.0.tgz";
+ sha512 = "EoGvdCtv1Y4M/hLy83Kf0HTs4qInUfrBoanrnhbguzRl00rx7orjcv+bNZFHbCe4HkfVpbOnTrYmz3K2ivaOLw==";
};
};
"vega-geo-4.4.3" = {
@@ -45791,13 +43865,13 @@ let
sha512 = "dUfIpxTLF2magoMaur+jXGvwMxjtdlDZaIS8lFj6N7IhUST6nIvBzuUlRM+zLYepI5GHtCLOnqdKU4XV0NggCA==";
};
};
- "vega-parser-6.4.1" = {
+ "vega-parser-6.5.0" = {
name = "vega-parser";
packageName = "vega-parser";
- version = "6.4.1";
+ version = "6.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.4.1.tgz";
- sha512 = "ZjF5aQfRe3yD5e2zYZcWWkUn9zGzUonMIirWTp3S3UBCujz+aT0+Ls6wbHdAH6hCPj3PVVkSWuuLkGEIUpWqyQ==";
+ url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.5.0.tgz";
+ sha512 = "dPxFKn6IlDyWi6CgHGGv8htSPBAyLHWlJNNGD17eMXh+Kjn4hupSNOIboRcYb8gL5HYt1tYwS6oYZXK84Bc4tg==";
};
};
"vega-projection-1.6.2" = {
@@ -45845,13 +43919,13 @@ let
sha512 = "LFY9+sLIxRfdDI9ZTKjLoijMkIAzPLBWHpPkwv4NPYgdyx+0qFmv+puBpAUGUY9VZqAZ736Uj5NJY9zw+/M3yQ==";
};
};
- "vega-selections-5.5.0" = {
+ "vega-selections-5.6.0" = {
name = "vega-selections";
packageName = "vega-selections";
- version = "5.5.0";
+ version = "5.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.5.0.tgz";
- sha512 = "TkpklUg9yhKjnTEs3Ls0eSI2aMJ8+tRicrFAKlDyrEBNMSSEaMsSJ84Ro5xpRra+GMBkGXFYgwTPC7y3tj20Gg==";
+ url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.6.0.tgz";
+ sha512 = "UE2w78rUUbaV3Ph+vQbQDwh8eywIJYRxBiZdxEG/Tr/KtFMLdy2BDgNZuuDO1Nv8jImPJwONmqjNhNDYwM0VJQ==";
};
};
"vega-statistics-1.9.0" = {
@@ -45881,13 +43955,13 @@ let
sha512 = "Qxo+xeEEftY1jYyKgzOGc9NuW4/MqGm1YPZ5WrL9eXg2G0410Ne+xL/MFIjHF4hRX+3mgFF4Io2hPpfy/thjLg==";
};
};
- "vega-typings-1.4.0" = {
+ "vega-typings-1.5.0" = {
name = "vega-typings";
packageName = "vega-typings";
- version = "1.4.0";
+ version = "1.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-typings/-/vega-typings-1.4.0.tgz";
- sha512 = "UTXjuasq0Q8uMuzz/qow4moVHFJ5atYdQu871QZJ/zgWY3Po4du3dIGBVQN4fYEv6seKhDvxpEFke2rqx81Wqw==";
+ url = "https://registry.npmjs.org/vega-typings/-/vega-typings-1.5.0.tgz";
+ sha512 = "tcZ2HwmiQEOXIGyBMP8sdCnoFoVqHn4KQ4H0MQiHwzFU1hb1EXURhfc+Uamthewk4h/9BICtAM3AFQMjBGpjQA==";
};
};
"vega-util-1.17.3" = {
@@ -45899,13 +43973,13 @@ let
sha512 = "nSNpZLUrRvFo46M5OK4O6x6f08WD1yOcEzHNlqivF+sDLSsVpstaF6fdJYwrbf/debFi2L9Tkp4gZQtssup9iQ==";
};
};
- "vega-view-5.14.0" = {
+ "vega-view-5.15.0" = {
name = "vega-view";
packageName = "vega-view";
- version = "5.14.0";
+ version = "5.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-view/-/vega-view-5.14.0.tgz";
- sha512 = "gg2ukCviKG6Nofmr0Y6hFbr9romRMzmXHe3ljNJ5QyRnkwmQ7HbTvXOyS9cZZ0VtuhSRw+uiyd0Pg+nep0IhwA==";
+ url = "https://registry.npmjs.org/vega-view/-/vega-view-5.15.0.tgz";
+ sha512 = "bm8STHPsI8BjVu2gYlWU8KEVOA2JyTzdtb9cJj8NW6HpN72UxTYsg5y22u9vfcLYjzjmolrlr0756VXR0uI1Cg==";
};
};
"vega-view-transforms-4.6.1" = {
@@ -46286,15 +44360,6 @@ let
sha512 = "kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ==";
};
};
- "vscode-languageclient-8.1.0" = {
- name = "vscode-languageclient";
- packageName = "vscode-languageclient";
- version = "8.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-8.1.0.tgz";
- sha512 = "GL4QdbYUF/XxQlAsvYWZRV3V34kOkpRlvV60/72ghHfsYFnS/v2MANZ9P6sHmxFcZKOse8O+L9G7Czg0NUWing==";
- };
- };
"vscode-languageserver-5.2.1" = {
name = "vscode-languageserver";
packageName = "vscode-languageserver";
@@ -47348,33 +45413,6 @@ let
sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==";
};
};
- "write-file-atomic-5.0.1" = {
- name = "write-file-atomic";
- packageName = "write-file-atomic";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz";
- sha512 = "+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==";
- };
- };
- "write-json-file-3.2.0" = {
- name = "write-json-file";
- packageName = "write-json-file";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/write-json-file/-/write-json-file-3.2.0.tgz";
- sha512 = "3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==";
- };
- };
- "write-pkg-4.0.0" = {
- name = "write-pkg";
- packageName = "write-pkg";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/write-pkg/-/write-pkg-4.0.0.tgz";
- sha512 = "v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==";
- };
- };
"write-yaml-file-4.2.0" = {
name = "write-yaml-file";
packageName = "write-yaml-file";
@@ -47447,13 +45485,13 @@ let
sha512 = "6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==";
};
};
- "ws-8.18.0" = {
+ "ws-8.18.1" = {
name = "ws";
packageName = "ws";
- version = "8.18.0";
+ version = "8.18.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz";
- sha512 = "8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==";
+ url = "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz";
+ sha512 = "RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==";
};
};
"xcase-2.0.1" = {
@@ -48023,15 +46061,6 @@ let
sha512 = "A1pf6fzh6eYkK0L4Qp7g9jzJSDrM6nN0bOn5T0IbY4Yo3w+YkWlHFkJP7mzknMXjqusHFHlKsK2N+4OLsK2MRA==";
};
};
- "yazl-2.5.1" = {
- name = "yazl";
- packageName = "yazl";
- version = "2.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz";
- sha512 = "phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==";
- };
- };
"yeast-0.1.2" = {
name = "yeast";
packageName = "yeast";
@@ -48191,116 +46220,89 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "19.1.7";
+ version = "19.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-19.1.7.tgz";
- sha512 = "qVEy0R4QKQ2QAGfpj2mPVxRxgOVst+rIgZBtLwf/mrbN9YyzJUaBKvaVslUpOqkvoW9mX5myf0iZkT5NykrIoA==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-19.1.8.tgz";
+ sha512 = "JmdLj8110DNWaxL03K7I06+nLyBfXgiIqYyrQx5QO9AodGkKHK5rE+7VD8MjZhUymua57HToD0oHaQgThJwTJQ==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1901.7"
- sources."@angular-devkit/core-19.1.7"
- sources."@angular-devkit/schematics-19.1.7"
- (
- sources."@inquirer/checkbox-4.1.2"
- // {
- dependencies = [
- sources."ansi-escapes-4.3.2"
- ];
- }
- )
+ sources."@angular-devkit/architect-0.1901.8"
+ sources."@angular-devkit/core-19.1.8"
+ sources."@angular-devkit/schematics-19.1.8"
+ (sources."@inquirer/checkbox-4.1.2" // {
+ dependencies = [
+ sources."ansi-escapes-4.3.2"
+ ];
+ })
sources."@inquirer/confirm-5.1.6"
- (
- sources."@inquirer/core-10.1.7"
- // {
- dependencies = [
- sources."ansi-escapes-4.3.2"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
+ (sources."@inquirer/core-10.1.7" // {
+ dependencies = [
+ sources."ansi-escapes-4.3.2"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
sources."@inquirer/editor-4.2.7"
sources."@inquirer/expand-4.0.9"
sources."@inquirer/figures-1.0.10"
sources."@inquirer/input-4.1.6"
sources."@inquirer/number-3.0.9"
- (
- sources."@inquirer/password-4.0.9"
- // {
- dependencies = [
- sources."ansi-escapes-4.3.2"
- ];
- }
- )
+ (sources."@inquirer/password-4.0.9" // {
+ dependencies = [
+ sources."ansi-escapes-4.3.2"
+ ];
+ })
sources."@inquirer/prompts-7.2.1"
sources."@inquirer/rawlist-4.0.9"
sources."@inquirer/search-3.0.9"
- (
- sources."@inquirer/select-4.0.9"
- // {
- dependencies = [
- sources."ansi-escapes-4.3.2"
- ];
- }
- )
+ (sources."@inquirer/select-4.0.9" // {
+ dependencies = [
+ sources."ansi-escapes-4.3.2"
+ ];
+ })
sources."@inquirer/type-3.0.4"
- (
- sources."@isaacs/cliui-8.0.2"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."emoji-regex-9.2.2"
- sources."string-width-5.1.2"
- sources."strip-ansi-7.1.0"
- sources."wrap-ansi-8.1.0"
- ];
- }
- )
+ (sources."@isaacs/cliui-8.0.2" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-9.2.2"
+ sources."string-width-5.1.2"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-8.1.0"
+ ];
+ })
sources."@isaacs/fs-minipass-4.0.1"
sources."@jridgewell/sourcemap-codec-1.5.0"
- (
- sources."@listr2/prompt-adapter-inquirer-2.0.18"
- // {
- dependencies = [
- sources."@inquirer/type-1.5.5"
- sources."mute-stream-1.0.0"
- ];
- }
- )
+ (sources."@listr2/prompt-adapter-inquirer-2.0.18" // {
+ dependencies = [
+ sources."@inquirer/type-1.5.5"
+ sources."mute-stream-1.0.0"
+ ];
+ })
sources."@npmcli/agent-3.0.0"
sources."@npmcli/fs-4.0.0"
- (
- sources."@npmcli/git-6.0.1"
- // {
- dependencies = [
- sources."isexe-3.1.1"
- sources."which-5.0.0"
- ];
- }
- )
+ (sources."@npmcli/git-6.0.3" // {
+ dependencies = [
+ sources."isexe-3.1.1"
+ sources."which-5.0.0"
+ ];
+ })
sources."@npmcli/installed-package-contents-3.0.0"
sources."@npmcli/node-gyp-4.0.0"
sources."@npmcli/package-json-6.1.1"
- (
- sources."@npmcli/promise-spawn-8.0.2"
- // {
- dependencies = [
- sources."isexe-3.1.1"
- sources."which-5.0.0"
- ];
- }
- )
+ (sources."@npmcli/promise-spawn-8.0.2" // {
+ dependencies = [
+ sources."isexe-3.1.1"
+ sources."which-5.0.0"
+ ];
+ })
sources."@npmcli/redact-3.1.1"
- (
- sources."@npmcli/run-script-9.0.2"
- // {
- dependencies = [
- sources."isexe-3.1.1"
- sources."which-5.0.0"
- ];
- }
- )
- sources."@schematics/angular-19.1.7"
+ (sources."@npmcli/run-script-9.0.2" // {
+ dependencies = [
+ sources."isexe-3.1.1"
+ sources."which-5.0.0"
+ ];
+ })
+ sources."@schematics/angular-19.1.8"
sources."@sigstore/bundle-3.1.0"
sources."@sigstore/core-2.0.0"
sources."@sigstore/protobuf-specs-0.4.0"
@@ -48309,7 +46311,7 @@ in
sources."@sigstore/verify-2.1.0"
sources."@tufjs/canonical-json-2.0.0"
sources."@tufjs/models-3.0.1"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-3.0.0"
sources."agent-base-7.1.3"
@@ -48323,38 +46325,32 @@ in
sources."bl-4.1.0"
sources."brace-expansion-2.0.1"
sources."buffer-5.7.1"
- (
- sources."cacache-19.0.1"
- // {
- dependencies = [
- sources."chownr-3.0.0"
- sources."minizlib-3.0.1"
- sources."mkdirp-3.0.1"
- sources."tar-7.4.3"
- sources."yallist-5.0.0"
- ];
- }
- )
+ (sources."cacache-19.0.1" // {
+ dependencies = [
+ sources."chownr-3.0.0"
+ sources."minizlib-3.0.1"
+ sources."mkdirp-3.0.1"
+ sources."tar-7.4.3"
+ sources."yallist-5.0.0"
+ ];
+ })
sources."chalk-4.1.2"
sources."chardet-0.7.0"
sources."chokidar-4.0.3"
sources."chownr-2.0.0"
sources."cli-cursor-5.0.0"
sources."cli-spinners-2.9.2"
- (
- sources."cli-truncate-4.0.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."emoji-regex-10.4.0"
- sources."is-fullwidth-code-point-4.0.0"
- sources."slice-ansi-5.0.0"
- sources."string-width-7.2.0"
- sources."strip-ansi-7.1.0"
- ];
- }
- )
+ (sources."cli-truncate-4.0.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-10.4.0"
+ sources."is-fullwidth-code-point-4.0.0"
+ sources."slice-ansi-5.0.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
sources."cli-width-4.1.0"
sources."cliui-8.0.1"
sources."clone-1.0.4"
@@ -48375,7 +46371,7 @@ in
sources."external-editor-3.1.0"
sources."fast-deep-equal-3.1.3"
sources."fast-uri-3.0.6"
- sources."foreground-child-3.3.0"
+ sources."foreground-child-3.3.1"
sources."fs-minipass-3.0.3"
sources."function-bind-1.1.2"
sources."get-caller-file-2.0.5"
@@ -48406,33 +46402,27 @@ in
sources."json-schema-traverse-1.0.0"
sources."jsonc-parser-3.3.1"
sources."jsonparse-1.3.1"
- (
- sources."listr2-8.2.5"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."emoji-regex-10.4.0"
- sources."string-width-7.2.0"
- sources."strip-ansi-7.1.0"
- sources."wrap-ansi-9.0.0"
- ];
- }
- )
+ (sources."listr2-8.2.5" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-10.4.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-9.0.0"
+ ];
+ })
sources."log-symbols-4.1.0"
- (
- sources."log-update-6.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."emoji-regex-10.4.0"
- sources."string-width-7.2.0"
- sources."strip-ansi-7.1.0"
- sources."wrap-ansi-9.0.0"
- ];
- }
- )
+ (sources."log-update-6.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-10.4.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-9.0.0"
+ ];
+ })
sources."lru-cache-10.4.3"
sources."magic-string-0.30.17"
sources."make-fetch-happen-14.0.3"
@@ -48441,64 +46431,46 @@ in
sources."minimatch-9.0.5"
sources."minipass-7.1.2"
sources."minipass-collect-2.0.1"
- (
- sources."minipass-fetch-4.0.0"
- // {
- dependencies = [
- sources."minizlib-3.0.1"
- ];
- }
- )
- (
- sources."minipass-flush-1.0.5"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
- (
- sources."minipass-pipeline-1.2.4"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
- (
- sources."minipass-sized-1.0.3"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
- (
- sources."minizlib-2.1.2"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."minipass-fetch-4.0.0" // {
+ dependencies = [
+ sources."minizlib-3.0.1"
+ ];
+ })
+ (sources."minipass-flush-1.0.5" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ (sources."minipass-pipeline-1.2.4" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ (sources."minipass-sized-1.0.3" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ (sources."minizlib-2.1.2" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."mkdirp-1.0.4"
sources."ms-2.1.3"
sources."mute-stream-2.0.0"
sources."negotiator-1.0.0"
- (
- sources."node-gyp-11.1.0"
- // {
- dependencies = [
- sources."chownr-3.0.0"
- sources."isexe-3.1.1"
- sources."minizlib-3.0.1"
- sources."mkdirp-3.0.1"
- sources."tar-7.4.3"
- sources."which-5.0.0"
- sources."yallist-5.0.0"
- ];
- }
- )
+ (sources."node-gyp-11.1.0" // {
+ dependencies = [
+ sources."chownr-3.0.0"
+ sources."isexe-3.1.1"
+ sources."minizlib-3.0.1"
+ sources."mkdirp-3.0.1"
+ sources."tar-7.4.3"
+ sources."which-5.0.0"
+ sources."yallist-5.0.0"
+ ];
+ })
sources."nopt-8.1.0"
sources."npm-bundled-4.0.0"
sources."npm-install-checks-7.1.1"
@@ -48506,26 +46478,20 @@ in
sources."npm-package-arg-12.0.1"
sources."npm-packlist-9.0.0"
sources."npm-pick-manifest-10.0.0"
- (
- sources."npm-registry-fetch-18.0.2"
- // {
- dependencies = [
- sources."minizlib-3.0.1"
- ];
- }
- )
+ (sources."npm-registry-fetch-18.0.2" // {
+ dependencies = [
+ sources."minizlib-3.0.1"
+ ];
+ })
sources."onetime-7.0.0"
- (
- sources."ora-5.4.1"
- // {
- dependencies = [
- sources."cli-cursor-3.1.0"
- sources."onetime-5.1.2"
- sources."restore-cursor-3.1.0"
- sources."signal-exit-3.0.7"
- ];
- }
- )
+ (sources."ora-5.4.1" // {
+ dependencies = [
+ sources."cli-cursor-3.1.0"
+ sources."onetime-5.1.2"
+ sources."restore-cursor-3.1.0"
+ sources."signal-exit-3.0.7"
+ ];
+ })
sources."os-tmpdir-1.0.2"
sources."p-map-7.0.3"
sources."package-json-from-dist-1.0.1"
@@ -48535,7 +46501,6 @@ in
sources."path-scurry-1.11.1"
sources."picomatch-4.0.2"
sources."proc-log-5.0.0"
- sources."promise-inflight-1.0.1"
sources."promise-retry-2.0.1"
sources."readable-stream-3.6.2"
sources."readdirp-4.1.2"
@@ -48554,15 +46519,12 @@ in
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
sources."sigstore-3.1.0"
- (
- sources."slice-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-styles-6.2.1"
- sources."is-fullwidth-code-point-5.0.0"
- ];
- }
- )
+ (sources."slice-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-styles-6.2.1"
+ sources."is-fullwidth-code-point-5.0.0"
+ ];
+ })
sources."smart-buffer-4.2.0"
sources."socks-2.8.4"
sources."socks-proxy-agent-8.0.5"
@@ -48581,22 +46543,16 @@ in
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."symbol-observable-4.0.0"
- (
- sources."tar-6.2.1"
- // {
- dependencies = [
- (
- sources."fs-minipass-2.1.0"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
- sources."minipass-5.0.0"
- ];
- }
- )
+ (sources."tar-6.2.1" // {
+ dependencies = [
+ (sources."fs-minipass-2.1.0" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ sources."minipass-5.0.0"
+ ];
+ })
sources."tmp-0.0.33"
sources."tslib-2.8.1"
sources."tuf-js-3.0.1"
@@ -48657,23 +46613,17 @@ in
sources."@ampproject/remapping-2.3.0"
sources."@babel/code-frame-7.26.2"
sources."@babel/compat-data-7.26.8"
- (
- sources."@babel/core-7.26.9"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."@babel/core-7.26.9" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."@babel/generator-7.26.9"
- (
- sources."@babel/helper-compilation-targets-7.26.5"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."@babel/helper-compilation-targets-7.26.5" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."@babel/helper-module-imports-7.25.9"
sources."@babel/helper-module-transforms-7.26.0"
sources."@babel/helper-string-parser-7.25.9"
@@ -48692,12 +46642,12 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."browserslist-4.24.4"
- sources."caniuse-lite-1.0.30001699"
+ sources."caniuse-lite-1.0.30001700"
sources."commander-6.2.1"
sources."concat-map-0.0.1"
sources."convert-source-map-2.0.0"
sources."debug-4.4.0"
- sources."electron-to-chromium-1.5.101"
+ sources."electron-to-chromium-1.5.104"
sources."escalade-3.2.0"
sources."fs-readdir-recursive-1.1.0"
sources."fs.realpath-1.0.0"
@@ -48761,7 +46711,7 @@ in
sources."@commitlint/top-level-19.5.0"
sources."@commitlint/types-19.5.0"
sources."@types/conventional-commits-parser-5.0.1"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."JSONStream-1.3.5"
sources."ajv-8.17.1"
sources."ansi-regex-5.0.1"
@@ -48790,14 +46740,11 @@ in
sources."get-caller-file-2.0.5"
sources."git-raw-commits-4.0.0"
sources."global-directory-4.0.1"
- (
- sources."import-fresh-3.3.1"
- // {
- dependencies = [
- sources."resolve-from-4.0.0"
- ];
- }
- )
+ (sources."import-fresh-3.3.1" // {
+ dependencies = [
+ sources."resolve-from-4.0.0"
+ ];
+ })
sources."import-meta-resolve-4.1.0"
sources."ini-4.1.1"
sources."is-arrayish-0.2.1"
@@ -48861,114 +46808,78 @@ in
"@microsoft/rush" = nodeEnv.buildNodePackage {
name = "_at_microsoft_slash_rush";
packageName = "@microsoft/rush";
- version = "5.149.0";
+ version = "5.149.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.149.0.tgz";
- sha512 = "1+Mvmt7i+KQi6qqmgxcXgDjOk5pRalZIvXqR7SCHeVOgGmW3pFs5pTS9sgfYVfrsP/rYg7XvJjAdyReiatZ7QA==";
+ url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.149.1.tgz";
+ sha512 = "nn1Dy2KfRiS4elzp2kXjciaXUYiHqp/0BE6OnGB3Ahiqx25NzQOs6SOHPliYso0PxSPCuCGalEUDMFtvNJTtAw==";
};
dependencies = [
- (
- sources."@azure/abort-controller-2.1.2"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
- (
- sources."@azure/core-auth-1.9.0"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
- (
- sources."@azure/core-client-1.9.2"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
+ (sources."@azure/abort-controller-2.1.2" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
+ (sources."@azure/core-auth-1.9.0" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
+ (sources."@azure/core-client-1.9.2" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
sources."@azure/core-http-compat-2.2.0"
- (
- sources."@azure/core-lro-2.7.2"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
- (
- sources."@azure/core-paging-1.6.2"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
- (
- sources."@azure/core-rest-pipeline-1.19.0"
- // {
- dependencies = [
- sources."agent-base-7.1.3"
- sources."https-proxy-agent-7.0.6"
- sources."tslib-2.8.1"
- ];
- }
- )
- (
- sources."@azure/core-tracing-1.2.0"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
- (
- sources."@azure/core-util-1.11.0"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
- (
- sources."@azure/core-xml-1.4.4"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
- (
- sources."@azure/identity-4.5.0"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
- (
- sources."@azure/logger-1.1.4"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
+ (sources."@azure/core-lro-2.7.2" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
+ (sources."@azure/core-paging-1.6.2" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
+ (sources."@azure/core-rest-pipeline-1.19.0" // {
+ dependencies = [
+ sources."agent-base-7.1.3"
+ sources."https-proxy-agent-7.0.6"
+ sources."tslib-2.8.1"
+ ];
+ })
+ (sources."@azure/core-tracing-1.2.0" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
+ (sources."@azure/core-util-1.11.0" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
+ (sources."@azure/core-xml-1.4.4" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
+ (sources."@azure/identity-4.5.0" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
+ (sources."@azure/logger-1.1.4" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
sources."@azure/msal-browser-3.28.1"
sources."@azure/msal-common-14.16.0"
sources."@azure/msal-node-2.16.2"
- (
- sources."@azure/storage-blob-12.26.0"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
+ (sources."@azure/storage-blob-12.26.0" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
sources."@babel/code-frame-7.26.2"
sources."@babel/generator-7.26.9"
sources."@babel/helper-string-parser-7.25.9"
@@ -48985,132 +46896,96 @@ in
sources."@jridgewell/trace-mapping-0.3.25"
sources."@jsep-plugin/assignment-1.3.0"
sources."@jsep-plugin/regex-1.0.4"
- sources."@microsoft/rush-lib-5.149.0"
+ sources."@microsoft/rush-lib-5.149.1"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@pnpm/crypto.base32-hash-2.0.0"
sources."@pnpm/crypto.polyfill-1.0.0"
- (
- sources."@pnpm/dependency-path-5.1.7"
- // {
- dependencies = [
- sources."@pnpm/crypto.base32-hash-3.0.1"
- sources."@pnpm/types-12.2.0"
- sources."semver-7.7.1"
- ];
- }
- )
+ (sources."@pnpm/dependency-path-5.1.7" // {
+ dependencies = [
+ sources."@pnpm/crypto.base32-hash-3.0.1"
+ sources."@pnpm/types-12.2.0"
+ sources."semver-7.7.1"
+ ];
+ })
sources."@pnpm/dependency-path-lockfile-pre-v9-2.1.8"
sources."@pnpm/error-1.4.0"
- (
- sources."@pnpm/link-bins-5.3.25"
- // {
- dependencies = [
- sources."@pnpm/types-6.4.0"
- ];
- }
- )
- (
- sources."@pnpm/lockfile.types-1.0.3"
- // {
- dependencies = [
- sources."@pnpm/types-12.2.0"
- ];
- }
- )
- (
- sources."@pnpm/package-bins-4.1.0"
- // {
- dependencies = [
- sources."@pnpm/types-6.4.0"
- ];
- }
- )
+ (sources."@pnpm/link-bins-5.3.25" // {
+ dependencies = [
+ sources."@pnpm/types-6.4.0"
+ ];
+ })
+ (sources."@pnpm/lockfile.types-1.0.3" // {
+ dependencies = [
+ sources."@pnpm/types-12.2.0"
+ ];
+ })
+ (sources."@pnpm/package-bins-4.1.0" // {
+ dependencies = [
+ sources."@pnpm/types-6.4.0"
+ ];
+ })
sources."@pnpm/patching.types-1.0.0"
sources."@pnpm/read-modules-dir-2.0.3"
- (
- sources."@pnpm/read-package-json-4.0.0"
- // {
- dependencies = [
- sources."@pnpm/types-6.4.0"
- ];
- }
- )
- (
- sources."@pnpm/read-project-manifest-1.1.7"
- // {
- dependencies = [
- sources."@pnpm/types-6.4.0"
- sources."graceful-fs-4.2.4"
- ];
- }
- )
+ (sources."@pnpm/read-package-json-4.0.0" // {
+ dependencies = [
+ sources."@pnpm/types-6.4.0"
+ ];
+ })
+ (sources."@pnpm/read-project-manifest-1.1.7" // {
+ dependencies = [
+ sources."@pnpm/types-6.4.0"
+ sources."graceful-fs-4.2.4"
+ ];
+ })
sources."@pnpm/types-9.4.2"
- (
- sources."@pnpm/write-project-manifest-1.1.7"
- // {
- dependencies = [
- sources."@pnpm/types-6.4.0"
- ];
- }
- )
- sources."@rushstack/heft-config-file-0.16.5"
- sources."@rushstack/lookup-by-path-0.5.5"
- (
- sources."@rushstack/node-core-library-5.11.0"
- // {
- dependencies = [
- sources."import-lazy-4.0.0"
- ];
- }
- )
- sources."@rushstack/package-deps-hash-4.3.6"
- (
- sources."@rushstack/package-extractor-0.10.10"
- // {
- dependencies = [
- sources."brace-expansion-1.1.11"
- sources."minimatch-3.0.8"
- ];
- }
- )
- (
- sources."@rushstack/rig-package-0.5.3"
- // {
- dependencies = [
- sources."strip-json-comments-3.1.1"
- ];
- }
- )
- sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.149.0"
- sources."@rushstack/rush-azure-storage-build-cache-plugin-5.149.0"
- sources."@rushstack/rush-http-build-cache-plugin-5.149.0"
- sources."@rushstack/rush-sdk-5.149.0"
- sources."@rushstack/stream-collator-4.1.84"
- (
- sources."@rushstack/terminal-0.15.0"
- // {
- dependencies = [
- sources."supports-color-8.1.1"
- ];
- }
- )
- (
- sources."@rushstack/ts-command-line-4.23.5"
- // {
- dependencies = [
- sources."argparse-1.0.10"
- ];
- }
- )
+ (sources."@pnpm/write-project-manifest-1.1.7" // {
+ dependencies = [
+ sources."@pnpm/types-6.4.0"
+ ];
+ })
+ sources."@rushstack/heft-config-file-0.16.6"
+ sources."@rushstack/lookup-by-path-0.5.6"
+ (sources."@rushstack/node-core-library-5.11.0" // {
+ dependencies = [
+ sources."import-lazy-4.0.0"
+ ];
+ })
+ sources."@rushstack/package-deps-hash-4.3.7"
+ (sources."@rushstack/package-extractor-0.10.11" // {
+ dependencies = [
+ sources."brace-expansion-1.1.11"
+ sources."minimatch-3.0.8"
+ ];
+ })
+ (sources."@rushstack/rig-package-0.5.3" // {
+ dependencies = [
+ sources."strip-json-comments-3.1.1"
+ ];
+ })
+ sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.149.1"
+ sources."@rushstack/rush-azure-storage-build-cache-plugin-5.149.1"
+ sources."@rushstack/rush-http-build-cache-plugin-5.149.1"
+ sources."@rushstack/rush-sdk-5.149.1"
+ sources."@rushstack/stream-collator-4.1.85"
+ (sources."@rushstack/terminal-0.15.0" // {
+ dependencies = [
+ sources."supports-color-8.1.1"
+ ];
+ })
+ (sources."@rushstack/ts-command-line-4.23.5" // {
+ dependencies = [
+ sources."argparse-1.0.10"
+ ];
+ })
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/argparse-1.0.38"
sources."@types/lodash-4.17.15"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.5"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/normalize-package-data-2.4.4"
sources."@types/parse-json-4.0.2"
sources."@vue/compiler-core-3.5.13"
@@ -49125,14 +47000,11 @@ in
sources."ajv-draft-04-1.0.0"
sources."ajv-formats-3.0.1"
sources."ansi-align-3.0.1"
- (
- sources."ansi-escapes-4.3.2"
- // {
- dependencies = [
- sources."type-fest-0.21.3"
- ];
- }
- )
+ (sources."ansi-escapes-4.3.2" // {
+ dependencies = [
+ sources."type-fest-0.21.3"
+ ];
+ })
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."any-promise-1.3.0"
@@ -49145,53 +47017,41 @@ in
sources."base64-js-1.5.1"
sources."better-path-resolve-1.0.0"
sources."bl-4.1.0"
- (
- sources."boxen-5.1.2"
- // {
- dependencies = [
- sources."type-fest-0.20.2"
- ];
- }
- )
+ (sources."boxen-5.1.2" // {
+ dependencies = [
+ sources."type-fest-0.20.2"
+ ];
+ })
sources."brace-expansion-2.0.1"
sources."braces-3.0.3"
sources."buffer-5.7.1"
sources."buffer-equal-constant-time-1.0.1"
sources."builtin-modules-3.1.0"
sources."builtins-1.0.3"
- (
- sources."cacheable-request-6.1.0"
- // {
- dependencies = [
- sources."get-stream-5.2.0"
- sources."lowercase-keys-2.0.0"
- ];
- }
- )
+ (sources."cacheable-request-6.1.0" // {
+ dependencies = [
+ sources."get-stream-5.2.0"
+ sources."lowercase-keys-2.0.0"
+ ];
+ })
sources."callsite-1.0.0"
- (
- sources."callsite-record-4.1.5"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."has-flag-3.0.0"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."callsite-record-4.1.5" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."has-flag-3.0.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."callsites-3.1.0"
sources."camelcase-6.3.0"
- (
- sources."camelcase-keys-6.2.2"
- // {
- dependencies = [
- sources."camelcase-5.3.1"
- ];
- }
- )
+ (sources."camelcase-keys-6.2.2" // {
+ dependencies = [
+ sources."camelcase-5.3.1"
+ ];
+ })
sources."chalk-4.1.2"
sources."chardet-0.7.0"
sources."chownr-2.0.0"
@@ -49213,51 +47073,39 @@ in
sources."configstore-5.0.1"
sources."core-util-is-1.0.3"
sources."cosmiconfig-7.1.0"
- (
- sources."cross-spawn-7.0.6"
- // {
- dependencies = [
- sources."which-2.0.2"
- ];
- }
- )
+ (sources."cross-spawn-7.0.6" // {
+ dependencies = [
+ sources."which-2.0.2"
+ ];
+ })
sources."crypto-random-string-2.0.0"
sources."debug-4.4.0"
sources."debuglog-1.0.1"
sources."decamelize-1.2.0"
- (
- sources."decamelize-keys-1.1.1"
- // {
- dependencies = [
- sources."map-obj-1.0.1"
- ];
- }
- )
+ (sources."decamelize-keys-1.1.1" // {
+ dependencies = [
+ sources."map-obj-1.0.1"
+ ];
+ })
sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
sources."defaults-1.0.4"
sources."defer-to-connect-1.1.3"
sources."define-lazy-prop-2.0.0"
- (
- sources."depcheck-1.4.7"
- // {
- dependencies = [
- sources."argparse-1.0.10"
- sources."ignore-5.3.2"
- sources."js-yaml-3.14.1"
- sources."minimatch-7.4.6"
- ];
- }
- )
- (
- sources."dependency-path-9.2.8"
- // {
- dependencies = [
- sources."@pnpm/crypto.base32-hash-1.0.1"
- sources."@pnpm/types-8.9.0"
- ];
- }
- )
+ (sources."depcheck-1.4.7" // {
+ dependencies = [
+ sources."argparse-1.0.10"
+ sources."ignore-5.3.2"
+ sources."js-yaml-3.14.1"
+ sources."minimatch-7.4.6"
+ ];
+ })
+ (sources."dependency-path-9.2.8" // {
+ dependencies = [
+ sources."@pnpm/crypto.base32-hash-1.0.1"
+ sources."@pnpm/types-8.9.0"
+ ];
+ })
sources."deps-regex-0.2.0"
sources."detect-file-1.0.0"
sources."detect-indent-6.1.0"
@@ -49282,19 +47130,16 @@ in
sources."external-editor-3.1.0"
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.3.3"
- sources."fast-xml-parser-4.5.1"
+ sources."fast-xml-parser-4.5.3"
sources."fastq-1.19.0"
sources."figures-3.0.0"
sources."fill-range-7.1.1"
sources."find-up-4.1.0"
- (
- sources."find-yarn-workspace-root2-1.2.16"
- // {
- dependencies = [
- sources."pkg-dir-4.2.0"
- ];
- }
- )
+ (sources."find-yarn-workspace-root2-1.2.16" // {
+ dependencies = [
+ sources."pkg-dir-4.2.0"
+ ];
+ })
sources."findup-sync-5.0.0"
sources."fs-extra-11.3.0"
sources."fs-minipass-2.1.0"
@@ -49307,70 +47152,52 @@ in
sources."glob-7.2.3"
sources."glob-escape-0.0.2"
sources."glob-parent-5.1.2"
- (
- sources."global-dirs-3.0.1"
- // {
- dependencies = [
- sources."ini-2.0.0"
- ];
- }
- )
- (
- sources."global-modules-2.0.0"
- // {
- dependencies = [
- sources."global-prefix-3.0.0"
- ];
- }
- )
+ (sources."global-dirs-3.0.1" // {
+ dependencies = [
+ sources."ini-2.0.0"
+ ];
+ })
+ (sources."global-modules-2.0.0" // {
+ dependencies = [
+ sources."global-prefix-3.0.0"
+ ];
+ })
sources."global-prefix-1.0.2"
sources."globals-11.12.0"
- (
- sources."globby-11.1.0"
- // {
- dependencies = [
- sources."ignore-5.3.2"
- ];
- }
- )
- (
- sources."got-9.6.0"
- // {
- dependencies = [
- sources."get-stream-4.1.0"
- ];
- }
- )
+ (sources."globby-11.1.0" // {
+ dependencies = [
+ sources."ignore-5.3.2"
+ ];
+ })
+ (sources."got-9.6.0" // {
+ dependencies = [
+ sources."get-stream-4.1.0"
+ ];
+ })
sources."graceful-fs-4.2.11"
sources."hard-rejection-2.1.0"
sources."has-flag-4.0.0"
sources."has-yarn-2.1.0"
sources."hasown-2.0.2"
- (
- sources."highlight-es-1.0.3"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."has-flag-3.0.0"
- sources."js-tokens-3.0.2"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."highlight-es-1.0.3" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."has-flag-3.0.0"
+ sources."js-tokens-3.0.2"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."homedir-polyfill-1.0.3"
sources."hosted-git-info-4.1.0"
sources."http-cache-semantics-4.1.1"
- (
- sources."http-proxy-agent-7.0.2"
- // {
- dependencies = [
- sources."agent-base-7.1.3"
- ];
- }
- )
+ (sources."http-proxy-agent-7.0.2" // {
+ dependencies = [
+ sources."agent-base-7.1.3"
+ ];
+ })
sources."https-proxy-agent-5.0.1"
sources."human-signals-2.1.0"
sources."iconv-lite-0.4.24"
@@ -49378,14 +47205,11 @@ in
sources."ignore-5.1.9"
sources."ignore-walk-3.0.4"
sources."immediate-3.0.6"
- (
- sources."import-fresh-3.3.1"
- // {
- dependencies = [
- sources."resolve-from-4.0.0"
- ];
- }
- )
+ (sources."import-fresh-3.3.1" // {
+ dependencies = [
+ sources."resolve-from-4.0.0"
+ ];
+ })
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
@@ -49419,14 +47243,11 @@ in
sources."isexe-2.0.0"
sources."jju-1.4.0"
sources."js-tokens-4.0.0"
- (
- sources."js-yaml-3.13.1"
- // {
- dependencies = [
- sources."argparse-1.0.10"
- ];
- }
- )
+ (sources."js-yaml-3.13.1" // {
+ dependencies = [
+ sources."argparse-1.0.10"
+ ];
+ })
sources."jsep-1.4.0"
sources."jsesc-3.1.0"
sources."json-buffer-3.0.0"
@@ -49434,26 +47255,20 @@ in
sources."json-schema-traverse-1.0.0"
sources."json5-2.2.3"
sources."jsonfile-6.1.0"
- sources."jsonpath-plus-10.2.0"
- (
- sources."jsonwebtoken-9.0.2"
- // {
- dependencies = [
- sources."jwa-1.4.1"
- sources."jws-3.2.2"
- ];
- }
- )
- (
- sources."jszip-3.8.0"
- // {
- dependencies = [
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
+ sources."jsonpath-plus-10.3.0"
+ (sources."jsonwebtoken-9.0.2" // {
+ dependencies = [
+ sources."jwa-1.4.1"
+ sources."jws-3.2.2"
+ ];
+ })
+ (sources."jszip-3.8.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
sources."jwa-2.0.0"
sources."jws-4.0.0"
sources."keyv-3.1.0"
@@ -49462,14 +47277,11 @@ in
sources."lie-3.3.0"
sources."lines-and-columns-1.2.4"
sources."load-json-file-6.2.0"
- (
- sources."load-yaml-file-0.2.0"
- // {
- dependencies = [
- sources."strip-bom-3.0.0"
- ];
- }
- )
+ (sources."load-yaml-file-0.2.0" // {
+ dependencies = [
+ sources."strip-bom-3.0.0"
+ ];
+ })
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."lodash.includes-4.3.0"
@@ -49483,49 +47295,37 @@ in
sources."lowercase-keys-1.0.1"
sources."lru-cache-6.0.0"
sources."magic-string-0.30.17"
- (
- sources."make-dir-3.1.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."make-dir-3.1.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."map-age-cleaner-0.1.3"
sources."map-obj-4.3.0"
sources."mem-8.1.1"
- (
- sources."meow-9.0.0"
- // {
- dependencies = [
- sources."type-fest-0.18.1"
- ];
- }
- )
+ (sources."meow-9.0.0" // {
+ dependencies = [
+ sources."type-fest-0.18.1"
+ ];
+ })
sources."merge-stream-2.0.0"
sources."merge2-1.4.1"
sources."micromatch-4.0.8"
sources."mimic-fn-3.1.0"
sources."mimic-response-1.0.1"
sources."min-indent-1.0.1"
- (
- sources."minimatch-3.1.2"
- // {
- dependencies = [
- sources."brace-expansion-1.1.11"
- ];
- }
- )
+ (sources."minimatch-3.1.2" // {
+ dependencies = [
+ sources."brace-expansion-1.1.11"
+ ];
+ })
sources."minimist-1.2.8"
- (
- sources."minimist-options-4.1.0"
- // {
- dependencies = [
- sources."arrify-1.0.1"
- sources."is-plain-obj-1.1.0"
- ];
- }
- )
+ (sources."minimist-options-4.1.0" // {
+ dependencies = [
+ sources."arrify-1.0.1"
+ sources."is-plain-obj-1.1.0"
+ ];
+ })
sources."minipass-3.3.6"
sources."minizlib-2.1.2"
sources."mkdirp-1.0.4"
@@ -49541,27 +47341,21 @@ in
sources."npm-bundled-1.1.2"
sources."npm-check-6.0.1"
sources."npm-normalize-package-bin-1.0.1"
- (
- sources."npm-package-arg-6.1.1"
- // {
- dependencies = [
- sources."hosted-git-info-2.8.9"
- sources."semver-5.7.2"
- ];
- }
- )
+ (sources."npm-package-arg-6.1.1" // {
+ dependencies = [
+ sources."hosted-git-info-2.8.9"
+ sources."semver-5.7.2"
+ ];
+ })
sources."npm-packlist-2.1.5"
sources."npm-run-path-4.0.1"
sources."object-assign-4.1.1"
sources."once-1.4.0"
- (
- sources."onetime-5.1.2"
- // {
- dependencies = [
- sources."mimic-fn-2.1.0"
- ];
- }
- )
+ (sources."onetime-5.1.2" // {
+ dependencies = [
+ sources."mimic-fn-2.1.0"
+ ];
+ })
sources."open-8.4.2"
sources."ora-5.4.1"
sources."os-homedir-1.0.2"
@@ -49574,14 +47368,11 @@ in
sources."p-reflect-2.1.0"
sources."p-settle-4.1.1"
sources."p-try-2.2.0"
- (
- sources."package-json-6.5.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."package-json-6.5.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."pako-1.0.11"
sources."parent-module-1.0.1"
sources."parse-json-5.2.0"
@@ -49596,39 +47387,30 @@ in
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
- (
- sources."pkg-dir-5.0.0"
- // {
- dependencies = [
- sources."find-up-5.0.0"
- sources."locate-path-6.0.0"
- sources."p-limit-3.1.0"
- sources."p-locate-5.0.0"
- ];
- }
- )
+ (sources."pkg-dir-5.0.0" // {
+ dependencies = [
+ sources."find-up-5.0.0"
+ sources."locate-path-6.0.0"
+ sources."p-limit-3.1.0"
+ sources."p-locate-5.0.0"
+ ];
+ })
sources."please-upgrade-node-3.2.0"
- (
- sources."pnpm-sync-lib-0.2.9"
- // {
- dependencies = [
- sources."@pnpm/dependency-path-2.1.8"
- sources."yaml-2.4.1"
- ];
- }
- )
- sources."postcss-8.5.2"
- (
- sources."preferred-pm-3.1.4"
- // {
- dependencies = [
- sources."find-up-5.0.0"
- sources."locate-path-6.0.0"
- sources."p-limit-3.1.0"
- sources."p-locate-5.0.0"
- ];
- }
- )
+ (sources."pnpm-sync-lib-0.2.9" // {
+ dependencies = [
+ sources."@pnpm/dependency-path-2.1.8"
+ sources."yaml-2.4.1"
+ ];
+ })
+ sources."postcss-8.5.3"
+ (sources."preferred-pm-3.1.4" // {
+ dependencies = [
+ sources."find-up-5.0.0"
+ sources."locate-path-6.0.0"
+ sources."p-limit-3.1.0"
+ sources."p-locate-5.0.0"
+ ];
+ })
sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.1"
sources."pump-3.0.2"
@@ -49638,51 +47420,36 @@ in
sources."quick-lru-4.0.1"
sources."ramda-0.27.2"
sources."rc-1.2.8"
- (
- sources."rc-config-loader-4.1.3"
- // {
- dependencies = [
- sources."js-yaml-4.1.0"
- ];
- }
- )
- (
- sources."read-package-json-2.1.2"
- // {
- dependencies = [
- sources."hosted-git-info-2.8.9"
- sources."normalize-package-data-2.5.0"
- sources."semver-5.7.2"
- ];
- }
- )
+ (sources."rc-config-loader-4.1.3" // {
+ dependencies = [
+ sources."js-yaml-4.1.0"
+ ];
+ })
+ (sources."read-package-json-2.1.2" // {
+ dependencies = [
+ sources."hosted-git-info-2.8.9"
+ sources."normalize-package-data-2.5.0"
+ sources."semver-5.7.2"
+ ];
+ })
sources."read-package-tree-5.1.6"
- (
- sources."read-pkg-5.2.0"
- // {
- dependencies = [
- sources."hosted-git-info-2.8.9"
- sources."normalize-package-data-2.5.0"
- sources."semver-5.7.2"
- ];
- }
- )
- (
- sources."read-pkg-up-7.0.1"
- // {
- dependencies = [
- sources."type-fest-0.8.1"
- ];
- }
- )
- (
- sources."read-yaml-file-2.1.0"
- // {
- dependencies = [
- sources."js-yaml-4.1.0"
- ];
- }
- )
+ (sources."read-pkg-5.2.0" // {
+ dependencies = [
+ sources."hosted-git-info-2.8.9"
+ sources."normalize-package-data-2.5.0"
+ sources."semver-5.7.2"
+ ];
+ })
+ (sources."read-pkg-up-7.0.1" // {
+ dependencies = [
+ sources."type-fest-0.8.1"
+ ];
+ })
+ (sources."read-yaml-file-2.1.0" // {
+ dependencies = [
+ sources."js-yaml-4.1.0"
+ ];
+ })
sources."readable-stream-3.6.2"
sources."readdir-scoped-modules-1.1.0"
sources."readdirp-3.6.0"
@@ -49693,14 +47460,11 @@ in
sources."require-from-string-2.0.2"
sources."require-package-name-2.0.1"
sources."resolve-1.22.10"
- (
- sources."resolve-dir-1.0.1"
- // {
- dependencies = [
- sources."global-modules-1.0.0"
- ];
- }
- )
+ (sources."resolve-dir-1.0.1" // {
+ dependencies = [
+ sources."global-modules-1.0.0"
+ ];
+ })
sources."resolve-from-5.0.0"
sources."responselike-1.0.2"
sources."restore-cursor-3.1.0"
@@ -49713,14 +47477,11 @@ in
sources."safer-buffer-2.1.2"
sources."semver-7.5.4"
sources."semver-compare-1.0.0"
- (
- sources."semver-diff-3.1.1"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."semver-diff-3.1.1" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."set-immediate-shim-1.0.1"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
@@ -49745,18 +47506,15 @@ in
sources."strip-final-newline-2.0.0"
sources."strip-indent-3.0.0"
sources."strip-json-comments-2.0.1"
- sources."strnum-1.0.5"
+ sources."strnum-1.1.1"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."tapable-2.2.1"
- (
- sources."tar-6.2.1"
- // {
- dependencies = [
- sources."minipass-5.0.0"
- ];
- }
- )
+ (sources."tar-6.2.1" // {
+ dependencies = [
+ sources."minipass-5.0.0"
+ ];
+ })
sources."text-table-0.2.0"
sources."thenify-3.3.1"
sources."thenify-all-1.6.0"
@@ -49787,14 +47545,11 @@ in
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- (
- sources."write-yaml-file-4.2.0"
- // {
- dependencies = [
- sources."js-yaml-4.1.0"
- ];
- }
- )
+ (sources."write-yaml-file-4.2.0" // {
+ dependencies = [
+ sources."js-yaml-4.1.0"
+ ];
+ })
sources."xdg-basedir-4.0.0"
sources."xtend-4.0.2"
sources."y18n-5.0.8"
@@ -49817,10 +47572,10 @@ in
"@shopify/cli" = nodeEnv.buildNodePackage {
name = "_at_shopify_slash_cli";
packageName = "@shopify/cli";
- version = "3.75.0";
+ version = "3.75.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.75.0.tgz";
- sha512 = "0O8C0L4+luExYuhF882rS3CKKVgL0p8ztr1BAK2XPmJPkfh6P+5OeyN+5brzpia3YMavmPD7is9aPpZB7HfG8A==";
+ url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.75.4.tgz";
+ sha512 = "4+jcMOZiw6Nsm3007liTKA2inI9LwgM1HljCpLhT9aFMZZ+qqF1tbixBL08hbc1C44AuKsYuQtCrY531PBEIrA==";
};
dependencies = [
sources."@ast-grep/napi-0.33.0"
@@ -49845,7 +47600,7 @@ in
sha512 = "8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==";
};
dependencies = [
- sources."tailwindcss-4.0.6"
+ sources."tailwindcss-4.0.8"
];
buildInputs = globalBuildInputs;
meta = {
@@ -49867,7 +47622,7 @@ in
};
dependencies = [
sources."mini-svg-data-uri-1.4.4"
- sources."tailwindcss-4.0.6"
+ sources."tailwindcss-4.0.8"
];
buildInputs = globalBuildInputs;
meta = {
@@ -49888,7 +47643,7 @@ in
sha512 = "5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g==";
};
dependencies = [
- sources."tailwindcss-4.0.6"
+ sources."tailwindcss-4.0.8"
];
buildInputs = globalBuildInputs;
meta = {
@@ -49914,7 +47669,7 @@ in
sources."lodash.isplainobject-4.0.6"
sources."lodash.merge-4.6.2"
sources."postcss-selector-parser-6.0.10"
- sources."tailwindcss-4.0.6"
+ sources."tailwindcss-4.0.8"
sources."util-deprecate-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -49938,81 +47693,66 @@ in
dependencies = [
sources."@aws-crypto/crc32-5.2.0"
sources."@aws-crypto/crc32c-5.2.0"
- (
- sources."@aws-crypto/sha1-browser-5.2.0"
- // {
- dependencies = [
- sources."@smithy/util-utf8-2.3.0"
- ];
- }
- )
- (
- sources."@aws-crypto/sha256-browser-5.2.0"
- // {
- dependencies = [
- sources."@smithy/util-utf8-2.3.0"
- ];
- }
- )
+ (sources."@aws-crypto/sha1-browser-5.2.0" // {
+ dependencies = [
+ sources."@smithy/util-utf8-2.3.0"
+ ];
+ })
+ (sources."@aws-crypto/sha256-browser-5.2.0" // {
+ dependencies = [
+ sources."@smithy/util-utf8-2.3.0"
+ ];
+ })
sources."@aws-crypto/sha256-js-5.2.0"
sources."@aws-crypto/supports-web-crypto-5.2.0"
- (
- sources."@aws-crypto/util-5.2.0"
- // {
- dependencies = [
- sources."@smithy/util-utf8-2.3.0"
- ];
- }
- )
- sources."@aws-sdk/client-s3-3.749.0"
- sources."@aws-sdk/client-sso-3.749.0"
- sources."@aws-sdk/client-sts-3.749.0"
- sources."@aws-sdk/core-3.749.0"
- sources."@aws-sdk/credential-provider-env-3.749.0"
- sources."@aws-sdk/credential-provider-http-3.749.0"
- sources."@aws-sdk/credential-provider-ini-3.749.0"
- sources."@aws-sdk/credential-provider-node-3.749.0"
- sources."@aws-sdk/credential-provider-process-3.749.0"
- sources."@aws-sdk/credential-provider-sso-3.749.0"
- sources."@aws-sdk/credential-provider-web-identity-3.749.0"
- (
- sources."@aws-sdk/lib-storage-3.749.0"
- // {
- dependencies = [
- sources."buffer-5.6.0"
- ];
- }
- )
+ (sources."@aws-crypto/util-5.2.0" // {
+ dependencies = [
+ sources."@smithy/util-utf8-2.3.0"
+ ];
+ })
+ sources."@aws-sdk/client-s3-3.750.0"
+ sources."@aws-sdk/client-sso-3.750.0"
+ sources."@aws-sdk/client-sts-3.750.0"
+ sources."@aws-sdk/core-3.750.0"
+ sources."@aws-sdk/credential-provider-env-3.750.0"
+ sources."@aws-sdk/credential-provider-http-3.750.0"
+ sources."@aws-sdk/credential-provider-ini-3.750.0"
+ sources."@aws-sdk/credential-provider-node-3.750.0"
+ sources."@aws-sdk/credential-provider-process-3.750.0"
+ sources."@aws-sdk/credential-provider-sso-3.750.0"
+ sources."@aws-sdk/credential-provider-web-identity-3.750.0"
+ (sources."@aws-sdk/lib-storage-3.750.0" // {
+ dependencies = [
+ sources."buffer-5.6.0"
+ ];
+ })
sources."@aws-sdk/middleware-bucket-endpoint-3.734.0"
sources."@aws-sdk/middleware-expect-continue-3.734.0"
- (
- sources."@aws-sdk/middleware-flexible-checksums-3.749.0"
- // {
- dependencies = [
- sources."@smithy/is-array-buffer-4.0.0"
- ];
- }
- )
+ (sources."@aws-sdk/middleware-flexible-checksums-3.750.0" // {
+ dependencies = [
+ sources."@smithy/is-array-buffer-4.0.0"
+ ];
+ })
sources."@aws-sdk/middleware-host-header-3.734.0"
sources."@aws-sdk/middleware-location-constraint-3.734.0"
sources."@aws-sdk/middleware-logger-3.734.0"
sources."@aws-sdk/middleware-recursion-detection-3.734.0"
- sources."@aws-sdk/middleware-sdk-s3-3.749.0"
+ sources."@aws-sdk/middleware-sdk-s3-3.750.0"
sources."@aws-sdk/middleware-ssec-3.734.0"
- sources."@aws-sdk/middleware-user-agent-3.749.0"
- sources."@aws-sdk/nested-clients-3.749.0"
+ sources."@aws-sdk/middleware-user-agent-3.750.0"
+ sources."@aws-sdk/nested-clients-3.750.0"
sources."@aws-sdk/region-config-resolver-3.734.0"
- sources."@aws-sdk/s3-presigned-post-3.749.0"
- sources."@aws-sdk/s3-request-presigner-3.749.0"
- sources."@aws-sdk/signature-v4-multi-region-3.749.0"
- sources."@aws-sdk/token-providers-3.749.0"
+ sources."@aws-sdk/s3-presigned-post-3.750.0"
+ sources."@aws-sdk/s3-request-presigner-3.750.0"
+ sources."@aws-sdk/signature-v4-multi-region-3.750.0"
+ sources."@aws-sdk/token-providers-3.750.0"
sources."@aws-sdk/types-3.734.0"
sources."@aws-sdk/util-arn-parser-3.723.0"
sources."@aws-sdk/util-endpoints-3.743.0"
sources."@aws-sdk/util-format-url-3.734.0"
sources."@aws-sdk/util-locate-window-3.723.0"
sources."@aws-sdk/util-user-agent-browser-3.734.0"
- sources."@aws-sdk/util-user-agent-node-3.749.0"
+ sources."@aws-sdk/util-user-agent-node-3.750.0"
sources."@aws-sdk/util-utf8-browser-3.259.0"
sources."@aws-sdk/xml-builder-3.734.0"
sources."@buttercup/fetch-0.2.1"
@@ -50024,7 +47764,7 @@ in
sources."@smithy/chunked-blob-reader-5.0.0"
sources."@smithy/chunked-blob-reader-native-4.0.0"
sources."@smithy/config-resolver-4.0.1"
- sources."@smithy/core-3.1.4"
+ sources."@smithy/core-3.1.5"
sources."@smithy/credential-provider-imds-4.0.1"
sources."@smithy/eventstream-codec-4.0.1"
sources."@smithy/eventstream-serde-browser-4.0.1"
@@ -50033,81 +47773,66 @@ in
sources."@smithy/eventstream-serde-universal-4.0.1"
sources."@smithy/fetch-http-handler-5.0.1"
sources."@smithy/hash-blob-browser-4.0.1"
- (
- sources."@smithy/hash-node-4.0.1"
- // {
- dependencies = [
- sources."@smithy/is-array-buffer-4.0.0"
- sources."@smithy/util-buffer-from-4.0.0"
- ];
- }
- )
+ (sources."@smithy/hash-node-4.0.1" // {
+ dependencies = [
+ sources."@smithy/is-array-buffer-4.0.0"
+ sources."@smithy/util-buffer-from-4.0.0"
+ ];
+ })
sources."@smithy/hash-stream-node-4.0.1"
sources."@smithy/invalid-dependency-4.0.1"
sources."@smithy/is-array-buffer-2.2.0"
sources."@smithy/md5-js-4.0.1"
sources."@smithy/middleware-content-length-4.0.1"
- sources."@smithy/middleware-endpoint-4.0.5"
- sources."@smithy/middleware-retry-4.0.6"
+ sources."@smithy/middleware-endpoint-4.0.6"
+ sources."@smithy/middleware-retry-4.0.7"
sources."@smithy/middleware-serde-4.0.2"
sources."@smithy/middleware-stack-4.0.1"
sources."@smithy/node-config-provider-4.0.1"
- sources."@smithy/node-http-handler-4.0.2"
+ sources."@smithy/node-http-handler-4.0.3"
sources."@smithy/property-provider-4.0.1"
sources."@smithy/protocol-http-5.0.1"
sources."@smithy/querystring-builder-4.0.1"
sources."@smithy/querystring-parser-4.0.1"
sources."@smithy/service-error-classification-4.0.1"
sources."@smithy/shared-ini-file-loader-4.0.1"
- (
- sources."@smithy/signature-v4-5.0.1"
- // {
- dependencies = [
- sources."@smithy/is-array-buffer-4.0.0"
- ];
- }
- )
- sources."@smithy/smithy-client-4.1.5"
+ (sources."@smithy/signature-v4-5.0.1" // {
+ dependencies = [
+ sources."@smithy/is-array-buffer-4.0.0"
+ ];
+ })
+ sources."@smithy/smithy-client-4.1.6"
sources."@smithy/types-4.1.0"
sources."@smithy/url-parser-4.0.1"
- (
- sources."@smithy/util-base64-4.0.0"
- // {
- dependencies = [
- sources."@smithy/is-array-buffer-4.0.0"
- sources."@smithy/util-buffer-from-4.0.0"
- ];
- }
- )
+ (sources."@smithy/util-base64-4.0.0" // {
+ dependencies = [
+ sources."@smithy/is-array-buffer-4.0.0"
+ sources."@smithy/util-buffer-from-4.0.0"
+ ];
+ })
sources."@smithy/util-body-length-browser-4.0.0"
sources."@smithy/util-body-length-node-4.0.0"
sources."@smithy/util-buffer-from-2.2.0"
sources."@smithy/util-config-provider-4.0.0"
- sources."@smithy/util-defaults-mode-browser-4.0.6"
- sources."@smithy/util-defaults-mode-node-4.0.6"
+ sources."@smithy/util-defaults-mode-browser-4.0.7"
+ sources."@smithy/util-defaults-mode-node-4.0.7"
sources."@smithy/util-endpoints-3.0.1"
sources."@smithy/util-hex-encoding-4.0.0"
sources."@smithy/util-middleware-4.0.1"
sources."@smithy/util-retry-4.0.1"
- (
- sources."@smithy/util-stream-4.1.1"
- // {
- dependencies = [
- sources."@smithy/is-array-buffer-4.0.0"
- sources."@smithy/util-buffer-from-4.0.0"
- ];
- }
- )
+ (sources."@smithy/util-stream-4.1.2" // {
+ dependencies = [
+ sources."@smithy/is-array-buffer-4.0.0"
+ sources."@smithy/util-buffer-from-4.0.0"
+ ];
+ })
sources."@smithy/util-uri-escape-4.0.0"
- (
- sources."@smithy/util-utf8-4.0.0"
- // {
- dependencies = [
- sources."@smithy/is-array-buffer-4.0.0"
- sources."@smithy/util-buffer-from-4.0.0"
- ];
- }
- )
+ (sources."@smithy/util-utf8-4.0.0" // {
+ dependencies = [
+ sources."@smithy/is-array-buffer-4.0.0"
+ sources."@smithy/util-buffer-from-4.0.0"
+ ];
+ })
sources."@smithy/util-waiter-4.0.2"
sources."@szmarczak/http-timer-5.0.1"
sources."@types/body-parser-1.19.5"
@@ -50117,7 +47842,7 @@ in
sources."@types/http-cache-semantics-4.0.4"
sources."@types/http-errors-2.0.4"
sources."@types/mime-1.3.5"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/qs-6.9.18"
sources."@types/range-parser-1.2.7"
sources."@types/send-0.17.4"
@@ -50131,33 +47856,24 @@ in
sources."balanced-match-1.0.2"
sources."base-64-1.0.0"
sources."base64-js-1.5.1"
- (
- sources."basic-auth-2.0.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."basic-auth-2.0.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."bintrees-1.0.2"
- (
- sources."bl-4.1.0"
- // {
- dependencies = [
- sources."buffer-5.7.1"
- sources."readable-stream-3.6.2"
- ];
- }
- )
- (
- sources."body-parser-1.20.3"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."bl-4.1.0" // {
+ dependencies = [
+ sources."buffer-5.7.1"
+ sources."readable-stream-3.6.2"
+ ];
+ })
+ (sources."body-parser-1.20.3" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."bowser-2.11.0"
sources."brace-expansion-1.1.11"
sources."buffer-6.0.3"
@@ -50177,14 +47893,11 @@ in
sources."commist-1.1.0"
sources."common-tags-1.8.2"
sources."concat-map-0.0.1"
- (
- sources."concat-stream-2.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."concat-stream-2.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."connect-redis-7.1.1"
sources."content-disposition-0.5.4"
sources."content-type-1.0.5"
@@ -50199,14 +47912,11 @@ in
sources."custom-error-instance-2.1.1"
sources."data-uri-to-buffer-4.0.1"
sources."debug-4.4.0"
- (
- sources."decompress-response-6.0.0"
- // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- }
- )
+ (sources."decompress-response-6.0.0" // {
+ dependencies = [
+ sources."mimic-response-3.1.0"
+ ];
+ })
sources."defer-to-connect-2.0.1"
sources."delayed-stream-1.0.0"
sources."denque-2.1.0"
@@ -50228,49 +47938,37 @@ in
sources."escape-string-regexp-4.0.0"
sources."etag-1.8.1"
sources."events-3.3.0"
- (
- sources."express-4.21.2"
- // {
- dependencies = [
- sources."cookie-0.7.1"
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
- (
- sources."express-interceptor-1.2.0"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."express-4.21.2" // {
+ dependencies = [
+ sources."cookie-0.7.1"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ (sources."express-interceptor-1.2.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."express-prom-bundle-7.0.0"
- (
- sources."express-session-1.18.1"
- // {
- dependencies = [
- sources."cookie-0.7.2"
- sources."cookie-signature-1.0.7"
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."express-session-1.18.1" // {
+ dependencies = [
+ sources."cookie-0.7.2"
+ sources."cookie-signature-1.0.7"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."fast-safe-stringify-2.1.1"
sources."fast-xml-parser-4.4.1"
sources."fetch-blob-3.2.0"
- (
- sources."finalhandler-1.3.1"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."finalhandler-1.3.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."follow-redirects-1.15.9"
sources."form-data-4.0.2"
sources."form-data-encoder-2.1.4"
@@ -50279,7 +47977,7 @@ in
sources."fresh-0.5.2"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-stream-6.0.1"
sources."glob-7.2.3"
@@ -50292,14 +47990,11 @@ in
sources."has-tostringtag-1.0.2"
sources."hasown-2.0.2"
sources."helmet-7.2.0"
- (
- sources."help-me-3.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."help-me-3.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."hot-patcher-2.0.1"
sources."http-cache-semantics-4.1.1"
sources."http-errors-2.0.0"
@@ -50358,26 +48053,20 @@ in
sources."minimist-1.2.8"
sources."moment-2.30.1"
sources."moment-timezone-0.5.47"
- (
- sources."morgan-1.10.0"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- sources."on-finished-2.3.0"
- ];
- }
- )
- (
- sources."mqtt-4.3.8"
- // {
- dependencies = [
- sources."duplexify-4.1.3"
- sources."readable-stream-3.6.2"
- sources."ws-7.5.10"
- ];
- }
- )
+ (sources."morgan-1.10.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ sources."on-finished-2.3.0"
+ ];
+ })
+ (sources."mqtt-4.3.8" // {
+ dependencies = [
+ sources."duplexify-4.1.3"
+ sources."readable-stream-3.6.2"
+ sources."ws-7.5.10"
+ ];
+ })
sources."mqtt-packet-6.10.0"
sources."ms-2.1.3"
sources."negotiator-0.6.3"
@@ -50403,14 +48092,11 @@ in
sources."process-nextick-args-2.0.1"
sources."prom-client-15.1.2"
sources."proper-lockfile-4.1.2"
- (
- sources."proxy-addr-2.0.7"
- // {
- dependencies = [
- sources."ipaddr.js-1.9.1"
- ];
- }
- )
+ (sources."proxy-addr-2.0.7" // {
+ dependencies = [
+ sources."ipaddr.js-1.9.1"
+ ];
+ })
sources."proxy-from-env-1.1.0"
sources."pump-3.0.2"
sources."qs-6.13.0"
@@ -50420,26 +48106,20 @@ in
sources."randombytes-2.1.0"
sources."range-parser-1.2.1"
sources."raw-body-2.5.2"
- (
- sources."readable-stream-2.3.8"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."readable-stream-2.3.8" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."redis-errors-1.2.0"
sources."redis-parser-3.0.0"
sources."reinterval-1.1.0"
sources."request-compose-2.1.7"
- (
- sources."request-oauth-1.0.1"
- // {
- dependencies = [
- sources."uuid-8.3.2"
- ];
- }
- )
+ (sources."request-oauth-1.0.1" // {
+ dependencies = [
+ sources."uuid-8.3.2"
+ ];
+ })
sources."requires-port-1.0.0"
sources."resolve-alpn-1.2.1"
sources."responselike-3.0.0"
@@ -50448,22 +48128,16 @@ in
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.7.1"
- (
- sources."send-0.19.0"
- // {
- dependencies = [
- (
- sources."debug-2.6.9"
- // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- }
- )
- sources."encodeurl-1.0.2"
- ];
- }
- )
+ (sources."send-0.19.0" // {
+ dependencies = [
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."encodeurl-1.0.2"
+ ];
+ })
sources."serialize-error-11.0.3"
sources."serialize-javascript-6.0.2"
sources."serve-static-1.16.2"
@@ -50474,34 +48148,25 @@ in
sources."side-channel-weakmap-1.0.2"
sources."signal-exit-3.0.7"
sources."sorted-array-functions-1.3.0"
- (
- sources."split2-3.2.2"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."split2-3.2.2" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."standard-as-callback-2.1.0"
sources."statuses-2.0.1"
- (
- sources."stream-browserify-3.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."stream-browserify-3.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."stream-shift-1.0.3"
- (
- sources."string_decoder-1.1.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
- sources."strnum-1.0.5"
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."strnum-1.1.1"
sources."supports-color-8.1.1"
sources."tdigest-0.1.2"
sources."toidentifier-1.0.1"
@@ -50523,15 +48188,12 @@ in
sources."validator-13.12.0"
sources."vary-1.1.2"
sources."web-streams-polyfill-3.3.3"
- (
- sources."webdav-5.7.1"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."minimatch-9.0.5"
- ];
- }
- )
+ (sources."webdav-5.7.1" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."minimatch-9.0.5"
+ ];
+ })
sources."wrappy-1.0.2"
sources."ws-8.17.1"
sources."xtend-4.0.2"
@@ -50752,25 +48414,19 @@ in
sources."@babel/helper-validator-identifier-7.25.9"
sources."@isaacs/cliui-8.0.2"
sources."@npmcli/config-6.4.1"
- (
- sources."@npmcli/map-workspaces-3.0.6"
- // {
- dependencies = [
- sources."glob-10.4.5"
- sources."minimatch-9.0.5"
- ];
- }
- )
+ (sources."@npmcli/map-workspaces-3.0.6" // {
+ dependencies = [
+ sources."glob-10.4.5"
+ sources."minimatch-9.0.5"
+ ];
+ })
sources."@npmcli/name-from-folder-2.0.0"
sources."@pnpm/config.env-replace-1.1.0"
- (
- sources."@pnpm/network.ca-file-1.0.2"
- // {
- dependencies = [
- sources."graceful-fs-4.2.10"
- ];
- }
- )
+ (sources."@pnpm/network.ca-file-1.0.2" // {
+ dependencies = [
+ sources."graceful-fs-4.2.10"
+ ];
+ })
sources."@pnpm/npm-conf-2.3.1"
sources."@sindresorhus/is-5.6.0"
sources."@szmarczak/http-timer-5.0.1"
@@ -50793,44 +48449,35 @@ in
sources."abbrev-2.0.0"
sources."acorn-8.14.0"
sources."acorn-jsx-5.3.2"
- (
- sources."ansi-align-3.0.1"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."ansi-align-3.0.1" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."ansi-regex-5.0.1"
sources."ansi-styles-6.2.1"
sources."array-iterate-2.0.1"
sources."arrify-1.0.1"
sources."bail-2.0.2"
sources."balanced-match-1.0.2"
- (
- sources."boxen-7.1.1"
- // {
- dependencies = [
- sources."type-fest-2.19.0"
- ];
- }
- )
+ (sources."boxen-7.1.1" // {
+ dependencies = [
+ sources."type-fest-2.19.0"
+ ];
+ })
sources."brace-expansion-2.0.1"
sources."bubble-stream-error-1.0.0"
sources."buffer-from-1.1.2"
sources."cacheable-lookup-7.0.0"
sources."cacheable-request-10.2.14"
sources."camelcase-7.0.1"
- (
- sources."camelcase-keys-8.0.2"
- // {
- dependencies = [
- sources."type-fest-2.19.0"
- ];
- }
- )
+ (sources."camelcase-keys-8.0.2" // {
+ dependencies = [
+ sources."type-fest-2.19.0"
+ ];
+ })
sources."ccount-2.0.1"
sources."chalk-5.4.1"
sources."character-entities-2.0.2"
@@ -50842,55 +48489,40 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."comma-separated-tokens-2.0.3"
- (
- sources."concat-stream-2.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- sources."string_decoder-1.3.0"
- ];
- }
- )
- (
- sources."config-chain-1.1.13"
- // {
- dependencies = [
- sources."ini-1.3.8"
- ];
- }
- )
+ (sources."concat-stream-2.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ sources."string_decoder-1.3.0"
+ ];
+ })
+ (sources."config-chain-1.1.13" // {
+ dependencies = [
+ sources."ini-1.3.8"
+ ];
+ })
sources."configstore-6.0.0"
sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.6"
- (
- sources."crypto-random-string-4.0.0"
- // {
- dependencies = [
- sources."type-fest-1.4.0"
- ];
- }
- )
+ (sources."crypto-random-string-4.0.0" // {
+ dependencies = [
+ sources."type-fest-1.4.0"
+ ];
+ })
sources."cuss-2.2.0"
sources."debug-4.4.0"
sources."decamelize-6.0.0"
- (
- sources."decamelize-keys-1.1.1"
- // {
- dependencies = [
- sources."decamelize-1.2.0"
- sources."map-obj-1.0.1"
- ];
- }
- )
+ (sources."decamelize-keys-1.1.1" // {
+ dependencies = [
+ sources."decamelize-1.2.0"
+ sources."map-obj-1.0.1"
+ ];
+ })
sources."decode-named-character-reference-1.0.2"
- (
- sources."decompress-response-6.0.0"
- // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- }
- )
+ (sources."decompress-response-6.0.0" // {
+ dependencies = [
+ sources."mimic-response-3.1.0"
+ ];
+ })
sources."deep-extend-0.6.0"
sources."defer-to-connect-2.0.1"
sources."dequal-2.0.3"
@@ -50909,7 +48541,7 @@ in
sources."extend-3.0.2"
sources."fault-2.0.1"
sources."find-up-6.3.0"
- sources."foreground-child-3.3.0"
+ sources."foreground-child-3.3.1"
sources."form-data-encoder-2.1.4"
sources."format-0.2.2"
sources."from-0.1.7"
@@ -50919,14 +48551,11 @@ in
sources."git-diff-tree-1.1.0"
sources."git-spawned-stream-1.0.1"
sources."glob-8.1.0"
- (
- sources."global-dirs-3.0.1"
- // {
- dependencies = [
- sources."ini-2.0.0"
- ];
- }
- )
+ (sources."global-dirs-3.0.1" // {
+ dependencies = [
+ sources."ini-2.0.0"
+ ];
+ })
sources."got-12.6.1"
sources."graceful-fs-4.2.11"
sources."hard-rejection-2.1.0"
@@ -50945,14 +48574,11 @@ in
sources."hastscript-7.2.0"
sources."hosted-git-info-4.1.0"
sources."http-cache-semantics-4.1.1"
- (
- sources."http2-wrapper-2.2.1"
- // {
- dependencies = [
- sources."quick-lru-5.1.1"
- ];
- }
- )
+ (sources."http2-wrapper-2.2.1" // {
+ dependencies = [
+ sources."quick-lru-5.1.1"
+ ];
+ })
sources."ignore-5.3.2"
sources."import-lazy-4.0.0"
sources."import-meta-resolve-2.2.2"
@@ -50965,14 +48591,11 @@ in
sources."is-alphanumerical-2.0.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- (
- sources."is-ci-3.0.1"
- // {
- dependencies = [
- sources."ci-info-3.9.0"
- ];
- }
- )
+ (sources."is-ci-3.0.1" // {
+ dependencies = [
+ sources."ci-info-3.9.0"
+ ];
+ })
sources."is-core-module-2.16.1"
sources."is-decimal-2.0.1"
sources."is-empty-1.2.0"
@@ -51073,15 +48696,12 @@ in
sources."nlcst-search-3.1.1"
sources."nlcst-to-string-3.1.1"
sources."nopt-7.2.1"
- (
- sources."normalize-package-data-4.0.1"
- // {
- dependencies = [
- sources."hosted-git-info-5.2.1"
- sources."lru-cache-7.18.3"
- ];
- }
- )
+ (sources."normalize-package-data-4.0.1" // {
+ dependencies = [
+ sources."hosted-git-info-5.2.1"
+ sources."lru-cache-7.18.3"
+ ];
+ })
sources."normalize-url-8.0.1"
sources."npm-normalize-package-bin-3.0.1"
sources."object-keys-0.4.0"
@@ -51091,36 +48711,27 @@ in
sources."p-locate-6.0.0"
sources."package-json-8.1.1"
sources."package-json-from-dist-1.0.1"
- (
- sources."parse-english-5.0.0"
- // {
- dependencies = [
- sources."nlcst-to-string-2.0.4"
- ];
- }
- )
+ (sources."parse-english-5.0.0" // {
+ dependencies = [
+ sources."nlcst-to-string-2.0.4"
+ ];
+ })
sources."parse-entities-4.0.2"
sources."parse-json-5.2.0"
- (
- sources."parse-latin-5.0.1"
- // {
- dependencies = [
- sources."unist-util-modify-children-3.1.1"
- sources."unist-util-visit-children-2.0.2"
- ];
- }
- )
+ (sources."parse-latin-5.0.1" // {
+ dependencies = [
+ sources."unist-util-modify-children-3.1.1"
+ sources."unist-util-visit-children-2.0.2"
+ ];
+ })
sources."parse5-6.0.1"
sources."path-exists-5.0.0"
sources."path-key-3.1.1"
- (
- sources."path-scurry-1.11.1"
- // {
- dependencies = [
- sources."lru-cache-10.4.3"
- ];
- }
- )
+ (sources."path-scurry-1.11.1" // {
+ dependencies = [
+ sources."lru-cache-10.4.3"
+ ];
+ })
sources."pause-stream-0.0.11"
sources."picocolors-1.1.1"
sources."pluralize-8.0.0"
@@ -51133,39 +48744,27 @@ in
sources."pupa-3.1.0"
sources."quick-lru-6.1.2"
sources."quotation-2.0.3"
- (
- sources."rc-1.2.8"
- // {
- dependencies = [
- sources."ini-1.3.8"
- ];
- }
- )
- (
- sources."read-package-json-fast-3.0.2"
- // {
- dependencies = [
- sources."json-parse-even-better-errors-3.0.2"
- ];
- }
- )
- (
- sources."read-pkg-7.1.0"
- // {
- dependencies = [
- sources."normalize-package-data-3.0.3"
- sources."type-fest-2.19.0"
- ];
- }
- )
- (
- sources."read-pkg-up-9.1.0"
- // {
- dependencies = [
- sources."type-fest-2.19.0"
- ];
- }
- )
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."ini-1.3.8"
+ ];
+ })
+ (sources."read-package-json-fast-3.0.2" // {
+ dependencies = [
+ sources."json-parse-even-better-errors-3.0.2"
+ ];
+ })
+ (sources."read-pkg-7.1.0" // {
+ dependencies = [
+ sources."normalize-package-data-3.0.3"
+ sources."type-fest-2.19.0"
+ ];
+ })
+ (sources."read-pkg-up-9.1.0" // {
+ dependencies = [
+ sources."type-fest-2.19.0"
+ ];
+ })
sources."readable-stream-1.0.34"
sources."redent-4.0.0"
sources."registry-auth-token-5.1.0"
@@ -51192,64 +48791,49 @@ in
sources."signal-exit-4.1.0"
sources."sliced-1.0.1"
sources."space-separated-tokens-2.0.2"
- (
- sources."spawn-to-readstream-0.1.3"
- // {
- dependencies = [
- sources."through2-0.4.2"
- ];
- }
- )
+ (sources."spawn-to-readstream-0.1.3" // {
+ dependencies = [
+ sources."through2-0.4.2"
+ ];
+ })
sources."spdx-correct-3.2.0"
sources."spdx-exceptions-2.5.0"
sources."spdx-expression-parse-3.0.1"
sources."spdx-license-ids-3.0.21"
sources."split-0.2.10"
- (
- sources."split-transform-stream-0.1.1"
- // {
- dependencies = [
- sources."bubble-stream-error-0.0.1"
- sources."through2-0.4.2"
- ];
- }
- )
+ (sources."split-transform-stream-0.1.1" // {
+ dependencies = [
+ sources."bubble-stream-error-0.0.1"
+ sources."through2-0.4.2"
+ ];
+ })
sources."stream-combiner-0.0.4"
sources."string-width-5.1.2"
- (
- sources."string-width-cjs-4.2.3"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."string-width-cjs-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."string_decoder-0.10.31"
sources."stringify-entities-4.0.4"
- (
- sources."strip-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- ];
- }
- )
+ (sources."strip-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ ];
+ })
sources."strip-ansi-cjs-6.0.1"
sources."strip-indent-4.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-9.4.0"
sources."through-2.3.8"
- (
- sources."through2-2.0.0"
- // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.0.6"
- sources."xtend-4.0.2"
- ];
- }
- )
+ (sources."through2-2.0.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.0.6"
+ sources."xtend-4.0.2"
+ ];
+ })
sources."to-vfile-7.2.4"
sources."trim-newlines-4.1.1"
sources."trough-2.2.0"
@@ -51258,45 +48842,33 @@ in
sources."typedarray-to-buffer-3.1.5"
sources."undici-types-5.26.5"
sources."unherit-3.0.1"
- (
- sources."unified-10.1.2"
- // {
- dependencies = [
- sources."is-plain-obj-4.1.0"
- ];
- }
- )
+ (sources."unified-10.1.2" // {
+ dependencies = [
+ sources."is-plain-obj-4.1.0"
+ ];
+ })
sources."unified-diff-4.0.1"
- (
- sources."unified-engine-10.1.0"
- // {
- dependencies = [
- sources."is-plain-obj-4.1.0"
- sources."lines-and-columns-2.0.4"
- sources."parse-json-6.0.2"
- ];
- }
- )
- (
- sources."unified-message-control-4.0.0"
- // {
- dependencies = [
- sources."unist-util-visit-3.1.0"
- sources."unist-util-visit-parents-4.1.1"
- ];
- }
- )
+ (sources."unified-engine-10.1.0" // {
+ dependencies = [
+ sources."is-plain-obj-4.1.0"
+ sources."lines-and-columns-2.0.4"
+ sources."parse-json-6.0.2"
+ ];
+ })
+ (sources."unified-message-control-4.0.0" // {
+ dependencies = [
+ sources."unist-util-visit-3.1.0"
+ sources."unist-util-visit-parents-4.1.1"
+ ];
+ })
sources."unique-string-3.0.0"
sources."unist-util-inspect-7.0.2"
sources."unist-util-is-5.2.1"
- (
- sources."unist-util-modify-children-2.0.0"
- // {
- dependencies = [
- sources."array-iterate-1.1.4"
- ];
- }
- )
+ (sources."unist-util-modify-children-2.0.0" // {
+ dependencies = [
+ sources."array-iterate-1.1.4"
+ ];
+ })
sources."unist-util-position-4.0.4"
sources."unist-util-position-from-estree-1.1.2"
sources."unist-util-remove-position-4.0.2"
@@ -51320,26 +48892,20 @@ in
sources."which-2.0.2"
sources."widest-line-4.0.1"
sources."wrap-ansi-8.1.0"
- (
- sources."wrap-ansi-cjs-7.0.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."wrappy-1.0.2"
- (
- sources."write-file-atomic-3.0.3"
- // {
- dependencies = [
- sources."signal-exit-3.0.7"
- ];
- }
- )
+ (sources."write-file-atomic-3.0.3" // {
+ dependencies = [
+ sources."signal-exit-3.0.7"
+ ];
+ })
sources."xdg-basedir-5.1.0"
sources."xtend-2.1.2"
sources."yallist-4.0.0"
@@ -51382,26 +48948,20 @@ in
sources."minimist-1.2.8"
sources."mkdirp-0.5.6"
sources."once-1.4.0"
- (
- sources."optimist-0.6.1"
- // {
- dependencies = [
- sources."minimist-0.0.10"
- ];
- }
- )
+ (sources."optimist-0.6.1" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ ];
+ })
sources."path-is-absolute-1.0.1"
sources."pkginfo-0.3.1"
sources."stack-trace-0.0.10"
sources."underscore-1.8.3"
- (
- sources."winston-1.0.2"
- // {
- dependencies = [
- sources."async-1.0.0"
- ];
- }
- )
+ (sources."winston-1.0.2" // {
+ dependencies = [
+ sources."async-1.0.0"
+ ];
+ })
sources."wordwrap-0.0.3"
sources."wrappy-1.0.2"
];
@@ -51417,14 +48977,14 @@ in
aws-cdk = nodeEnv.buildNodePackage {
name = "aws-cdk";
packageName = "aws-cdk";
- version = "2.178.2";
+ version = "2.1000.3";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.178.2.tgz";
- sha512 = "ojMCMnBGinvDUD6+BOOlUOB9pjsYXoQdFVbf4bvi3dy3nwn557r0j6qDUcJMeikzPJ6YWzfAdL0fYxBZg4xcOg==";
+ url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.1000.3.tgz";
+ sha512 = "y0sU603gGWpVTwqDw9MKVHg3e1t49Mvve6t3YDOvjeKY195Vu6dgHlHjW4h8n1vX04r49NKfpoApG60V8sMbdw==";
};
buildInputs = globalBuildInputs;
meta = {
- description = "CDK Toolkit, the command line tool for CDK apps";
+ description = "AWS CDK CLI, the command line tool for CDK apps";
homepage = "https://github.com/aws/aws-cdk";
license = "Apache-2.0";
};
@@ -51461,14 +49021,11 @@ in
sources."@types/ms-2.1.0"
sources."@types/normalize-package-data-2.4.4"
sources."@types/unist-3.0.3"
- (
- sources."ansi-escapes-4.3.2"
- // {
- dependencies = [
- sources."type-fest-0.21.3"
- ];
- }
- )
+ (sources."ansi-escapes-4.3.2" // {
+ dependencies = [
+ sources."type-fest-0.21.3"
+ ];
+ })
sources."ansi-regex-6.1.0"
sources."ansi-styles-4.3.0"
sources."append-type-1.0.2"
@@ -51480,14 +49037,11 @@ in
sources."brace-expansion-1.1.11"
sources."braces-3.0.3"
sources."cacheable-lookup-7.0.0"
- (
- sources."cacheable-request-10.2.14"
- // {
- dependencies = [
- sources."get-stream-6.0.1"
- ];
- }
- )
+ (sources."cacheable-request-10.2.14" // {
+ dependencies = [
+ sources."get-stream-6.0.1"
+ ];
+ })
sources."case-1.6.3"
sources."ccount-2.0.1"
sources."chalk-5.4.1"
@@ -51503,42 +49057,33 @@ in
sources."color-name-1.1.4"
sources."concat-map-0.0.1"
sources."cross-spawn-7.0.6"
- (
- sources."crypto-random-string-4.0.0"
- // {
- dependencies = [
- sources."type-fest-1.4.0"
- ];
- }
- )
+ (sources."crypto-random-string-4.0.0" // {
+ dependencies = [
+ sources."type-fest-1.4.0"
+ ];
+ })
sources."debug-4.4.0"
sources."decode-named-character-reference-1.0.2"
- (
- sources."decompress-response-6.0.0"
- // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- }
- )
+ (sources."decompress-response-6.0.0" // {
+ dependencies = [
+ sources."mimic-response-3.1.0"
+ ];
+ })
sources."defer-to-connect-2.0.1"
sources."dequal-2.0.3"
sources."devlop-1.1.0"
sources."emoji-regex-10.4.0"
- (
- sources."eslint-formatter-pretty-5.0.0"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."chalk-4.1.2"
- sources."emoji-regex-8.0.0"
- sources."is-unicode-supported-0.1.0"
- sources."log-symbols-4.1.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."eslint-formatter-pretty-5.0.0" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."chalk-4.1.2"
+ sources."emoji-regex-8.0.0"
+ sources."is-unicode-supported-0.1.0"
+ sources."log-symbols-4.1.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."eslint-rule-docs-1.1.235"
sources."execa-9.5.2"
sources."extend-3.0.2"
@@ -51555,22 +49100,16 @@ in
sources."glob-7.2.3"
sources."glob-option-error-1.0.0"
sources."glob-parent-5.1.2"
- (
- sources."globby-14.1.0"
- // {
- dependencies = [
- sources."@sindresorhus/merge-streams-2.3.0"
- ];
- }
- )
- (
- sources."got-13.0.0"
- // {
- dependencies = [
- sources."get-stream-6.0.1"
- ];
- }
- )
+ (sources."globby-14.1.0" // {
+ dependencies = [
+ sources."@sindresorhus/merge-streams-2.3.0"
+ ];
+ })
+ (sources."got-13.0.0" // {
+ dependencies = [
+ sources."get-stream-6.0.1"
+ ];
+ })
sources."graceful-fs-4.2.11"
sources."has-flag-4.0.0"
sources."hosted-git-info-7.0.2"
@@ -51606,14 +49145,11 @@ in
sources."keyv-4.5.4"
sources."kind-of-6.0.3"
sources."lodash.iteratee-4.7.0"
- (
- sources."log-symbols-6.0.0"
- // {
- dependencies = [
- sources."is-unicode-supported-1.3.0"
- ];
- }
- )
+ (sources."log-symbols-6.0.0" // {
+ dependencies = [
+ sources."is-unicode-supported-1.3.0"
+ ];
+ })
sources."longest-streak-3.1.0"
sources."lowercase-keys-3.0.0"
sources."lru-cache-10.4.3"
@@ -51658,27 +49194,21 @@ in
sources."ms-2.1.3"
sources."normalize-package-data-6.0.2"
sources."normalize-url-8.0.1"
- (
- sources."npm-run-path-6.0.0"
- // {
- dependencies = [
- sources."path-key-4.0.0"
- ];
- }
- )
+ (sources."npm-run-path-6.0.0" // {
+ dependencies = [
+ sources."path-key-4.0.0"
+ ];
+ })
sources."object-assign-4.1.1"
sources."once-1.4.0"
sources."onetime-7.0.0"
sources."ora-8.2.0"
sources."p-cancelable-3.0.0"
- (
- sources."parse-entities-4.0.2"
- // {
- dependencies = [
- sources."@types/unist-2.0.11"
- ];
- }
- )
+ (sources."parse-entities-4.0.2" // {
+ dependencies = [
+ sources."@types/unist-2.0.11"
+ ];
+ })
sources."parse-github-url-1.0.3"
sources."parse-json-8.1.0"
sources."parse-ms-4.0.0"
@@ -51693,14 +49223,11 @@ in
sources."queue-microtask-1.2.3"
sources."quick-lru-5.1.1"
sources."quotation-2.0.3"
- (
- sources."read-pkg-9.0.1"
- // {
- dependencies = [
- sources."unicorn-magic-0.1.0"
- ];
- }
- )
+ (sources."read-pkg-9.0.1" // {
+ dependencies = [
+ sources."unicorn-magic-0.1.0"
+ ];
+ })
sources."remark-15.0.1"
sources."remark-lint-10.0.1"
sources."remark-lint-blockquote-indentation-4.0.1"
@@ -51709,23 +49236,20 @@ in
sources."remark-lint-code-block-style-4.0.1"
sources."remark-lint-definition-case-4.0.1"
sources."remark-lint-definition-spacing-4.0.1"
- (
- sources."remark-lint-double-link-0.2.0"
- // {
- dependencies = [
- sources."@types/unist-2.0.11"
- sources."normalize-url-5.3.1"
- sources."unified-10.1.2"
- sources."unified-lint-rule-2.1.2"
- sources."unist-util-is-5.2.1"
- sources."unist-util-stringify-position-3.0.3"
- sources."unist-util-visit-4.1.2"
- sources."unist-util-visit-parents-5.1.3"
- sources."vfile-5.3.7"
- sources."vfile-message-3.1.4"
- ];
- }
- )
+ (sources."remark-lint-double-link-0.2.0" // {
+ dependencies = [
+ sources."@types/unist-2.0.11"
+ sources."normalize-url-5.3.1"
+ sources."unified-10.1.2"
+ sources."unified-lint-rule-2.1.2"
+ sources."unist-util-is-5.2.1"
+ sources."unist-util-stringify-position-3.0.3"
+ sources."unist-util-visit-4.1.2"
+ sources."unist-util-visit-parents-5.1.3"
+ sources."vfile-5.3.7"
+ sources."vfile-message-3.1.4"
+ ];
+ })
sources."remark-lint-emphasis-marker-4.0.1"
sources."remark-lint-fenced-code-marker-4.0.1"
sources."remark-lint-file-extension-3.0.1"
@@ -51736,48 +49260,39 @@ in
sources."remark-lint-list-item-bullet-indent-5.0.1"
sources."remark-lint-list-item-content-indent-4.0.1"
sources."remark-lint-list-item-indent-4.0.1"
- (
- sources."remark-lint-match-punctuation-0.2.1"
- // {
- dependencies = [
- sources."unified-lint-rule-1.0.6"
- ];
- }
- )
- (
- sources."remark-lint-no-auto-link-without-protocol-3.1.2"
- // {
- dependencies = [
- sources."@types/mdast-3.0.15"
- sources."@types/unist-2.0.11"
- sources."mdast-util-to-string-3.2.0"
- sources."unified-10.1.2"
- sources."unified-lint-rule-2.1.2"
- sources."unist-util-generated-2.0.1"
- sources."unist-util-is-5.2.1"
- sources."unist-util-position-4.0.4"
- sources."unist-util-stringify-position-3.0.3"
- sources."unist-util-visit-4.1.2"
- sources."unist-util-visit-parents-5.1.3"
- sources."vfile-5.3.7"
- sources."vfile-message-3.1.4"
- ];
- }
- )
+ (sources."remark-lint-match-punctuation-0.2.1" // {
+ dependencies = [
+ sources."unified-lint-rule-1.0.6"
+ ];
+ })
+ (sources."remark-lint-no-auto-link-without-protocol-3.1.2" // {
+ dependencies = [
+ sources."@types/mdast-3.0.15"
+ sources."@types/unist-2.0.11"
+ sources."mdast-util-to-string-3.2.0"
+ sources."unified-10.1.2"
+ sources."unified-lint-rule-2.1.2"
+ sources."unist-util-generated-2.0.1"
+ sources."unist-util-is-5.2.1"
+ sources."unist-util-position-4.0.4"
+ sources."unist-util-stringify-position-3.0.3"
+ sources."unist-util-visit-4.1.2"
+ sources."unist-util-visit-parents-5.1.3"
+ sources."vfile-5.3.7"
+ sources."vfile-message-3.1.4"
+ ];
+ })
sources."remark-lint-no-blockquote-without-marker-6.0.1"
sources."remark-lint-no-emphasis-as-heading-4.0.1"
- (
- sources."remark-lint-no-empty-sections-4.0.0"
- // {
- dependencies = [
- sources."mdast-util-to-string-1.1.0"
- sources."unified-lint-rule-1.0.6"
- sources."unist-util-is-3.0.0"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
- ];
- }
- )
+ (sources."remark-lint-no-empty-sections-4.0.0" // {
+ dependencies = [
+ sources."mdast-util-to-string-1.1.0"
+ sources."unified-lint-rule-1.0.6"
+ sources."unist-util-is-3.0.0"
+ sources."unist-util-visit-1.4.1"
+ sources."unist-util-visit-parents-2.1.2"
+ ];
+ })
sources."remark-lint-no-file-name-articles-3.0.1"
sources."remark-lint-no-file-name-consecutive-dashes-3.0.1"
sources."remark-lint-no-file-name-irregular-characters-3.0.1"
@@ -51786,34 +49301,28 @@ in
sources."remark-lint-no-heading-content-indent-5.0.1"
sources."remark-lint-no-heading-indent-5.0.1"
sources."remark-lint-no-heading-punctuation-4.0.1"
- (
- sources."remark-lint-no-inline-padding-4.1.2"
- // {
- dependencies = [
- sources."@types/mdast-3.0.15"
- sources."@types/unist-2.0.11"
- sources."mdast-util-to-string-3.2.0"
- sources."unified-10.1.2"
- sources."unified-lint-rule-2.1.2"
- sources."unist-util-generated-2.0.1"
- sources."unist-util-is-5.2.1"
- sources."unist-util-stringify-position-3.0.3"
- sources."unist-util-visit-4.1.2"
- sources."unist-util-visit-parents-5.1.3"
- sources."vfile-5.3.7"
- sources."vfile-message-3.1.4"
- ];
- }
- )
+ (sources."remark-lint-no-inline-padding-4.1.2" // {
+ dependencies = [
+ sources."@types/mdast-3.0.15"
+ sources."@types/unist-2.0.11"
+ sources."mdast-util-to-string-3.2.0"
+ sources."unified-10.1.2"
+ sources."unified-lint-rule-2.1.2"
+ sources."unist-util-generated-2.0.1"
+ sources."unist-util-is-5.2.1"
+ sources."unist-util-stringify-position-3.0.3"
+ sources."unist-util-visit-4.1.2"
+ sources."unist-util-visit-parents-5.1.3"
+ sources."vfile-5.3.7"
+ sources."vfile-message-3.1.4"
+ ];
+ })
sources."remark-lint-no-multiple-toplevel-headings-4.0.1"
- (
- sources."remark-lint-no-repeat-punctuation-0.1.4"
- // {
- dependencies = [
- sources."unified-lint-rule-1.0.6"
- ];
- }
- )
+ (sources."remark-lint-no-repeat-punctuation-0.1.4" // {
+ dependencies = [
+ sources."unified-lint-rule-1.0.6"
+ ];
+ })
sources."remark-lint-no-shell-dollars-4.0.1"
sources."remark-lint-no-table-indentation-5.0.1"
sources."remark-lint-no-undefined-references-5.0.1"
@@ -51857,19 +49366,16 @@ in
sources."supports-color-7.2.0"
sources."supports-hyperlinks-2.3.0"
sources."temp-dir-3.0.0"
- (
- sources."tempy-3.1.0"
- // {
- dependencies = [
- sources."is-stream-3.0.0"
- sources."type-fest-2.19.0"
- ];
- }
- )
+ (sources."tempy-3.1.0" // {
+ dependencies = [
+ sources."is-stream-3.0.0"
+ sources."type-fest-2.19.0"
+ ];
+ })
sources."to-regex-range-5.0.1"
sources."to-vfile-8.0.0"
sources."trough-2.2.0"
- sources."type-fest-4.34.1"
+ sources."type-fest-4.35.0"
sources."unicorn-magic-0.3.0"
sources."unified-11.0.5"
sources."unified-lint-rule-3.0.1"
@@ -51878,43 +49384,34 @@ in
sources."unist-util-find-3.0.0"
sources."unist-util-find-all-after-5.0.0"
sources."unist-util-find-all-before-5.0.0"
- (
- sources."unist-util-find-all-between-2.1.0"
- // {
- dependencies = [
- sources."@types/unist-2.0.11"
- sources."unist-util-find-1.0.4"
- sources."unist-util-is-4.1.0"
- sources."unist-util-visit-2.0.3"
- sources."unist-util-visit-parents-3.1.1"
- ];
- }
- )
+ (sources."unist-util-find-all-between-2.1.0" // {
+ dependencies = [
+ sources."@types/unist-2.0.11"
+ sources."unist-util-find-1.0.4"
+ sources."unist-util-is-4.1.0"
+ sources."unist-util-visit-2.0.3"
+ sources."unist-util-visit-parents-3.1.1"
+ ];
+ })
sources."unist-util-generated-1.1.6"
sources."unist-util-is-6.0.0"
sources."unist-util-map-1.0.5"
sources."unist-util-position-5.0.0"
sources."unist-util-stringify-position-4.0.0"
- (
- sources."unist-util-to-list-of-char-0.1.3"
- // {
- dependencies = [
- sources."unist-util-is-3.0.0"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
- ];
- }
- )
+ (sources."unist-util-to-list-of-char-0.1.3" // {
+ dependencies = [
+ sources."unist-util-is-3.0.0"
+ sources."unist-util-visit-1.4.1"
+ sources."unist-util-visit-parents-2.1.2"
+ ];
+ })
sources."unist-util-visit-5.0.0"
sources."unist-util-visit-parents-6.0.1"
- (
- sources."validate-glob-opts-1.0.2"
- // {
- dependencies = [
- sources."is-plain-obj-1.1.0"
- ];
- }
- )
+ (sources."validate-glob-opts-1.0.2" // {
+ dependencies = [
+ sources."is-plain-obj-1.1.0"
+ ];
+ })
sources."validate-npm-package-license-3.0.4"
sources."vfile-6.0.3"
sources."vfile-location-5.0.3"
@@ -51969,23 +49466,17 @@ in
sources."acorn-7.4.1"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.2.0"
- (
- sources."asn1.js-4.10.1"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
- (
- sources."assert-1.5.1"
- // {
- dependencies = [
- sources."inherits-2.0.3"
- sources."util-0.10.4"
- ];
- }
- )
+ (sources."asn1.js-4.10.1" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
+ (sources."assert-1.5.1" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ sources."util-0.10.4"
+ ];
+ })
sources."available-typed-arrays-1.0.7"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
@@ -52016,14 +49507,11 @@ in
sources."constants-browserify-1.0.0"
sources."convert-source-map-1.1.3"
sources."core-util-is-1.0.3"
- (
- sources."create-ecdh-4.0.4"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."create-ecdh-4.0.4" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."create-hash-1.2.0"
sources."create-hmac-1.1.7"
sources."crypto-browserify-3.12.1"
@@ -52034,25 +49522,19 @@ in
sources."deps-sort-2.0.1"
sources."des.js-1.1.0"
sources."detective-5.2.1"
- (
- sources."diffie-hellman-5.0.3"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."diffie-hellman-5.0.3" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."domain-browser-1.2.0"
sources."dunder-proto-1.0.1"
sources."duplexer2-0.1.4"
- (
- sources."elliptic-6.6.1"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."elliptic-6.6.1" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."es-define-property-1.0.1"
sources."es-errors-1.3.0"
sources."es-object-atoms-1.1.1"
@@ -52063,7 +49545,7 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."get-assigned-identifiers-1.2.0"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."glob-7.2.3"
sources."gopd-1.2.0"
@@ -52094,14 +49576,11 @@ in
sources."lodash.memoize-3.0.4"
sources."math-intrinsics-1.1.0"
sources."md5.js-1.3.5"
- (
- sources."miller-rabin-4.0.1"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."miller-rabin-4.0.1" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."minimalistic-assert-1.0.1"
sources."minimalistic-crypto-utils-1.0.1"
sources."minimatch-3.1.2"
@@ -52124,29 +49603,23 @@ in
sources."possible-typed-array-names-1.1.0"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
- (
- sources."public-encrypt-4.0.3"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."public-encrypt-4.0.3" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."punycode-1.4.1"
sources."qs-6.14.0"
sources."querystring-es3-0.2.1"
sources."randombytes-2.1.0"
sources."randomfill-1.0.4"
sources."read-only-stream-2.0.0"
- (
- sources."readable-stream-2.3.8"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
+ (sources."readable-stream-2.3.8" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
sources."resolve-1.22.10"
sources."ripemd160-2.0.2"
sources."safe-buffer-5.2.1"
@@ -52161,23 +49634,17 @@ in
sources."side-channel-weakmap-1.0.2"
sources."simple-concat-1.0.1"
sources."source-map-0.5.7"
- (
- sources."stream-browserify-3.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."stream-browserify-3.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."stream-combiner2-1.1.1"
- (
- sources."stream-http-3.2.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."stream-http-3.2.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."stream-splicer-2.0.1"
sources."string_decoder-1.3.0"
sources."subarg-1.0.0"
@@ -52219,7 +49686,7 @@ in
dependencies = [
sources."@socket.io/component-emitter-3.1.2"
sources."@types/cors-2.8.17"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."accepts-1.3.8"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -52244,15 +49711,12 @@ in
sources."color-name-1.1.4"
sources."commander-2.20.3"
sources."concat-map-0.0.1"
- (
- sources."connect-3.6.6"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."connect-3.6.6" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."connect-history-api-fallback-1.6.0"
sources."cookie-0.7.2"
sources."cors-2.8.5"
@@ -52273,15 +49737,12 @@ in
sources."etag-1.8.1"
sources."eventemitter3-4.0.7"
sources."fill-range-7.1.1"
- (
- sources."finalhandler-1.1.0"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."finalhandler-1.1.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."follow-redirects-1.15.9"
sources."fresh-0.5.2"
sources."fs-extra-3.0.1"
@@ -52289,14 +49750,11 @@ in
sources."glob-parent-5.1.2"
sources."graceful-fs-4.2.11"
sources."has-flag-4.0.0"
- (
- sources."http-errors-2.0.0"
- // {
- dependencies = [
- sources."statuses-2.0.1"
- ];
- }
- )
+ (sources."http-errors-2.0.0" // {
+ dependencies = [
+ sources."statuses-2.0.1"
+ ];
+ })
sources."http-proxy-1.18.1"
sources."iconv-lite-0.4.24"
sources."immutable-3.8.2"
@@ -52333,69 +49791,51 @@ in
sources."readdirp-3.6.0"
sources."require-directory-2.1.1"
sources."requires-port-1.0.0"
- (
- sources."resp-modifier-6.0.2"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."resp-modifier-6.0.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."rx-4.1.0"
sources."safer-buffer-2.1.2"
- (
- sources."send-0.19.1"
- // {
- dependencies = [
- (
- sources."debug-2.6.9"
- // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- }
- )
- sources."encodeurl-2.0.0"
- sources."on-finished-2.4.1"
- sources."statuses-2.0.1"
- ];
- }
- )
- (
- sources."serve-index-1.9.1"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."depd-1.1.2"
- sources."http-errors-1.6.3"
- sources."inherits-2.0.3"
- sources."ms-2.0.0"
- sources."setprototypeof-1.1.0"
- sources."statuses-1.5.0"
- ];
- }
- )
- (
- sources."serve-static-1.16.2"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."encodeurl-2.0.0"
- sources."ms-2.0.0"
- sources."on-finished-2.4.1"
- (
- sources."send-0.19.0"
- // {
- dependencies = [
- sources."encodeurl-1.0.2"
- ];
- }
- )
- sources."statuses-2.0.1"
- ];
- }
- )
+ (sources."send-0.19.1" // {
+ dependencies = [
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."encodeurl-2.0.0"
+ sources."on-finished-2.4.1"
+ sources."statuses-2.0.1"
+ ];
+ })
+ (sources."serve-index-1.9.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."depd-1.1.2"
+ sources."http-errors-1.6.3"
+ sources."inherits-2.0.3"
+ sources."ms-2.0.0"
+ sources."setprototypeof-1.1.0"
+ sources."statuses-1.5.0"
+ ];
+ })
+ (sources."serve-static-1.16.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."encodeurl-2.0.0"
+ sources."ms-2.0.0"
+ sources."on-finished-2.4.1"
+ (sources."send-0.19.0" // {
+ dependencies = [
+ sources."encodeurl-1.0.2"
+ ];
+ })
+ sources."statuses-2.0.1"
+ ];
+ })
sources."server-destroy-1.0.1"
sources."setprototypeof-1.2.0"
sources."socket.io-4.8.1"
@@ -52436,14 +49876,14 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "2.198.326";
+ version = "2.198.334";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.326.tgz";
- sha512 = "IRRbqG2OG4IweXpM/bvxZRu9bxIPNy9aHgGJ9bL0eREsnkvcIfjARBg0aWzP6q/Lo+C+8ryXkx1aPZRrF9i06Q==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.334.tgz";
+ sha512 = "ULWw7NOJ3n5+Eywel2OPqvXFqpNTfQtFAH3eBmlKeE+GBvVZ7omUjQgqknvJLbvvkCjfpfm+UA/rVhlxm/Nmjg==";
};
dependencies = [
- sources."@jsii/check-node-1.106.0"
- sources."@jsii/spec-1.106.0"
+ sources."@jsii/check-node-1.108.0"
+ sources."@jsii/spec-1.108.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -52459,19 +49899,16 @@ in
sources."braces-3.0.3"
sources."camelcase-6.3.0"
sources."case-1.6.3"
- sources."cdk8s-2.69.40"
+ sources."cdk8s-2.69.43"
sources."cdk8s-plus-28-2.5.6"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
- (
- sources."codemaker-1.106.0"
- // {
- dependencies = [
- sources."fs-extra-10.1.0"
- ];
- }
- )
+ (sources."codemaker-1.108.0" // {
+ dependencies = [
+ sources."fs-extra-10.1.0"
+ ];
+ })
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."colors-1.4.0"
@@ -52484,14 +49921,11 @@ in
sources."detect-indent-5.0.0"
sources."detect-newline-2.1.0"
sources."dot-case-3.0.4"
- (
- sources."downlevel-dts-0.11.0"
- // {
- dependencies = [
- sources."typescript-5.8.0-dev.20250216"
- ];
- }
- )
+ (sources."downlevel-dts-0.11.0" // {
+ dependencies = [
+ sources."typescript-5.9.0-dev.20250224"
+ ];
+ })
sources."emoji-regex-8.0.0"
sources."entities-3.0.1"
sources."escalade-3.2.0"
@@ -52502,16 +49936,13 @@ in
sources."fastq-1.19.0"
sources."fill-range-7.1.1"
sources."find-up-4.1.0"
- sources."flatted-3.3.2"
- (
- sources."fs-extra-8.1.0"
- // {
- dependencies = [
- sources."jsonfile-4.0.0"
- sources."universalify-0.1.2"
- ];
- }
- )
+ sources."flatted-3.3.3"
+ (sources."fs-extra-8.1.0" // {
+ dependencies = [
+ sources."jsonfile-4.0.0"
+ sources."universalify-0.1.2"
+ ];
+ })
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."get-caller-file-2.0.5"
@@ -52528,57 +49959,45 @@ in
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
- (
- sources."jsii-5.7.5"
- // {
- dependencies = [
- sources."cliui-8.0.1"
- sources."yargs-17.7.2"
- sources."yargs-parser-21.1.1"
- ];
- }
- )
- (
- sources."jsii-pacmak-1.106.0"
- // {
- dependencies = [
- sources."fs-extra-10.1.0"
- sources."yargs-16.2.0"
- ];
- }
- )
- (
- sources."jsii-reflect-1.106.0"
- // {
- dependencies = [
- sources."fs-extra-10.1.0"
- sources."yargs-16.2.0"
- ];
- }
- )
- (
- sources."jsii-rosetta-5.7.4"
- // {
- dependencies = [
- sources."cliui-8.0.1"
- sources."yargs-17.7.2"
- sources."yargs-parser-21.1.1"
- ];
- }
- )
- (
- sources."jsii-srcmak-0.1.1236"
- // {
- dependencies = [
- sources."cliui-8.0.1"
- sources."fs-extra-9.1.0"
- sources."jsii-5.5.21"
- sources."typescript-5.5.4"
- sources."yargs-17.7.2"
- sources."yargs-parser-21.1.1"
- ];
- }
- )
+ (sources."jsii-5.7.6" // {
+ dependencies = [
+ sources."@jsii/check-node-1.107.0"
+ sources."cliui-8.0.1"
+ sources."yargs-17.7.2"
+ sources."yargs-parser-21.1.1"
+ ];
+ })
+ (sources."jsii-pacmak-1.108.0" // {
+ dependencies = [
+ sources."fs-extra-10.1.0"
+ sources."yargs-16.2.0"
+ ];
+ })
+ (sources."jsii-reflect-1.108.0" // {
+ dependencies = [
+ sources."fs-extra-10.1.0"
+ sources."yargs-16.2.0"
+ ];
+ })
+ (sources."jsii-rosetta-5.7.6" // {
+ dependencies = [
+ sources."@jsii/check-node-1.107.0"
+ sources."cliui-8.0.1"
+ sources."yargs-17.7.2"
+ sources."yargs-parser-21.1.1"
+ ];
+ })
+ (sources."jsii-srcmak-0.1.1236" // {
+ dependencies = [
+ sources."@jsii/check-node-1.107.0"
+ sources."cliui-8.0.1"
+ sources."fs-extra-9.1.0"
+ sources."jsii-5.5.23"
+ sources."typescript-5.5.4"
+ sources."yargs-17.7.2"
+ sources."yargs-parser-21.1.1"
+ ];
+ })
sources."json-schema-0.4.0"
sources."json-schema-traverse-1.0.0"
sources."json2jsii-0.5.0"
@@ -52596,7 +50015,7 @@ in
sources."ncp-2.0.0"
sources."no-case-3.0.4"
sources."once-1.4.0"
- sources."oo-ascii-tree-1.106.0"
+ sources."oo-ascii-tree-1.108.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -52614,14 +50033,11 @@ in
sources."rfdc-1.4.1"
sources."run-parallel-1.2.0"
sources."semver-7.7.1"
- (
- sources."semver-intersect-1.5.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."semver-intersect-1.5.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."set-blocking-2.0.0"
sources."shelljs-0.8.5"
sources."slice-ansi-4.0.0"
@@ -52648,19 +50064,16 @@ in
sources."xmlbuilder-15.1.1"
sources."y18n-5.0.8"
sources."yaml-2.7.0"
- (
- sources."yargs-15.4.1"
- // {
- dependencies = [
- sources."camelcase-5.3.1"
- sources."cliui-6.0.0"
- sources."decamelize-1.2.0"
- sources."wrap-ansi-6.2.0"
- sources."y18n-4.0.3"
- sources."yargs-parser-18.1.3"
- ];
- }
- )
+ (sources."yargs-15.4.1" // {
+ dependencies = [
+ sources."camelcase-5.3.1"
+ sources."cliui-6.0.0"
+ sources."decamelize-1.2.0"
+ sources."wrap-ansi-6.2.0"
+ sources."y18n-4.0.3"
+ sources."yargs-parser-18.1.3"
+ ];
+ })
sources."yargs-parser-20.2.9"
];
buildInputs = globalBuildInputs;
@@ -52682,271 +50095,214 @@ in
sha512 = "kqyTemob5ocfKmpEkz+nSo2ULKHz1/j1dj3i6+7Evlcl1SHYBoOCXIJBYIggOPXj93cvEN0fzoaHE6Q8xCUAEg==";
};
dependencies = [
- (
- sources."@alcalzone/ansi-tokenize-0.1.3"
- // {
- dependencies = [
- sources."ansi-styles-6.2.1"
- sources."is-fullwidth-code-point-4.0.0"
- ];
- }
- )
+ (sources."@alcalzone/ansi-tokenize-0.1.3" // {
+ dependencies = [
+ sources."ansi-styles-6.2.1"
+ sources."is-fullwidth-code-point-4.0.0"
+ ];
+ })
sources."@babel/code-frame-7.26.2"
sources."@babel/generator-7.26.3"
sources."@babel/helper-string-parser-7.25.9"
sources."@babel/helper-validator-identifier-7.25.9"
- (
- sources."@babel/parser-7.26.9"
- // {
- dependencies = [
- sources."@babel/types-7.26.9"
- ];
- }
- )
+ (sources."@babel/parser-7.26.9" // {
+ dependencies = [
+ sources."@babel/types-7.26.9"
+ ];
+ })
sources."@babel/template-7.25.9"
sources."@babel/types-7.26.3"
- (
- sources."@cdktf/cli-core-0.20.11"
- // {
- dependencies = [
- (
- sources."ansi-escapes-4.3.2"
- // {
- dependencies = [
- sources."type-fest-0.21.3"
- ];
- }
- )
- sources."auto-bind-4.0.0"
- sources."cli-boxes-2.2.1"
- sources."cli-cursor-3.1.0"
- sources."cli-truncate-2.1.0"
- sources."code-excerpt-3.0.0"
- sources."convert-to-spaces-1.0.2"
- sources."indent-string-4.0.0"
- sources."ink-3.2.0"
- sources."patch-console-1.0.0"
- sources."react-17.0.2"
- sources."react-reconciler-0.26.2"
- sources."restore-cursor-3.1.0"
- sources."scheduler-0.20.2"
- sources."semver-7.6.3"
- sources."slice-ansi-3.0.0"
- sources."type-fest-0.12.0"
- sources."utf-8-validate-5.0.10"
- sources."uuid-8.3.2"
- sources."widest-line-3.1.0"
- sources."wrap-ansi-6.2.0"
- sources."ws-7.5.10"
- ];
- }
- )
- (
- sources."@cdktf/commons-0.20.11"
- // {
- dependencies = [
- sources."fs-extra-11.2.0"
- sources."jsonfile-6.1.0"
- sources."universalify-2.0.1"
- ];
- }
- )
+ (sources."@cdktf/cli-core-0.20.11" // {
+ dependencies = [
+ (sources."ansi-escapes-4.3.2" // {
+ dependencies = [
+ sources."type-fest-0.21.3"
+ ];
+ })
+ sources."auto-bind-4.0.0"
+ sources."cli-boxes-2.2.1"
+ sources."cli-cursor-3.1.0"
+ sources."cli-truncate-2.1.0"
+ sources."code-excerpt-3.0.0"
+ sources."convert-to-spaces-1.0.2"
+ sources."indent-string-4.0.0"
+ sources."ink-3.2.0"
+ sources."patch-console-1.0.0"
+ sources."react-17.0.2"
+ sources."react-reconciler-0.26.2"
+ sources."restore-cursor-3.1.0"
+ sources."scheduler-0.20.2"
+ sources."semver-7.6.3"
+ sources."slice-ansi-3.0.0"
+ sources."type-fest-0.12.0"
+ sources."utf-8-validate-5.0.10"
+ sources."uuid-8.3.2"
+ sources."widest-line-3.1.0"
+ sources."wrap-ansi-6.2.0"
+ sources."ws-7.5.10"
+ ];
+ })
+ (sources."@cdktf/commons-0.20.11" // {
+ dependencies = [
+ sources."fs-extra-11.2.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.1"
+ ];
+ })
sources."@cdktf/hcl-tools-0.20.11"
- (
- sources."@cdktf/hcl2cdk-0.20.11"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."glob-10.4.5"
- sources."minimatch-9.0.5"
- ];
- }
- )
- (
- sources."@cdktf/hcl2json-0.20.11"
- // {
- dependencies = [
- sources."fs-extra-11.2.0"
- sources."jsonfile-6.1.0"
- sources."universalify-2.0.1"
- ];
- }
- )
+ (sources."@cdktf/hcl2cdk-0.20.11" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."glob-10.4.5"
+ sources."minimatch-9.0.5"
+ ];
+ })
+ (sources."@cdktf/hcl2json-0.20.11" // {
+ dependencies = [
+ sources."fs-extra-11.2.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.1"
+ ];
+ })
sources."@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.11"
- (
- sources."@cdktf/provider-generator-0.20.11"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."glob-10.4.5"
- sources."minimatch-9.0.5"
- ];
- }
- )
- (
- sources."@cdktf/provider-schema-0.20.11"
- // {
- dependencies = [
- sources."fs-extra-11.2.0"
- sources."jsonfile-6.1.0"
- sources."universalify-2.0.1"
- ];
- }
- )
- (
- sources."@inquirer/checkbox-1.5.2"
- // {
- dependencies = [
- sources."@inquirer/core-6.0.0"
- sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.17.19"
- sources."ansi-escapes-4.3.2"
- sources."signal-exit-4.1.0"
- sources."type-fest-0.21.3"
- sources."undici-types-6.19.8"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
- (
- sources."@inquirer/confirm-2.0.17"
- // {
- dependencies = [
- sources."@inquirer/core-6.0.0"
- sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.17.19"
- sources."ansi-escapes-4.3.2"
- sources."signal-exit-4.1.0"
- sources."type-fest-0.21.3"
- sources."undici-types-6.19.8"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
- (
- sources."@inquirer/core-2.3.1"
- // {
- dependencies = [
- sources."@types/node-20.17.19"
- sources."ansi-escapes-4.3.2"
- sources."type-fest-0.21.3"
- sources."undici-types-6.19.8"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
- (
- sources."@inquirer/editor-1.2.15"
- // {
- dependencies = [
- sources."@inquirer/core-6.0.0"
- sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.17.19"
- sources."ansi-escapes-4.3.2"
- sources."signal-exit-4.1.0"
- sources."type-fest-0.21.3"
- sources."undici-types-6.19.8"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
- (
- sources."@inquirer/expand-1.1.16"
- // {
- dependencies = [
- sources."@inquirer/core-6.0.0"
- sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.17.19"
- sources."ansi-escapes-4.3.2"
- sources."signal-exit-4.1.0"
- sources."type-fest-0.21.3"
- sources."undici-types-6.19.8"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
- (
- sources."@inquirer/input-1.2.16"
- // {
- dependencies = [
- sources."@inquirer/core-6.0.0"
- sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.17.19"
- sources."ansi-escapes-4.3.2"
- sources."signal-exit-4.1.0"
- sources."type-fest-0.21.3"
- sources."undici-types-6.19.8"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
- (
- sources."@inquirer/password-1.1.16"
- // {
- dependencies = [
- sources."@inquirer/core-6.0.0"
- sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.17.19"
- sources."ansi-escapes-4.3.2"
- sources."signal-exit-4.1.0"
- sources."type-fest-0.21.3"
- sources."undici-types-6.19.8"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
+ (sources."@cdktf/provider-generator-0.20.11" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."glob-10.4.5"
+ sources."minimatch-9.0.5"
+ ];
+ })
+ (sources."@cdktf/provider-schema-0.20.11" // {
+ dependencies = [
+ sources."fs-extra-11.2.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.1"
+ ];
+ })
+ (sources."@inquirer/checkbox-1.5.2" // {
+ dependencies = [
+ sources."@inquirer/core-6.0.0"
+ sources."@types/mute-stream-0.0.4"
+ sources."@types/node-20.17.19"
+ sources."ansi-escapes-4.3.2"
+ sources."signal-exit-4.1.0"
+ sources."type-fest-0.21.3"
+ sources."undici-types-6.19.8"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
+ (sources."@inquirer/confirm-2.0.17" // {
+ dependencies = [
+ sources."@inquirer/core-6.0.0"
+ sources."@types/mute-stream-0.0.4"
+ sources."@types/node-20.17.19"
+ sources."ansi-escapes-4.3.2"
+ sources."signal-exit-4.1.0"
+ sources."type-fest-0.21.3"
+ sources."undici-types-6.19.8"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
+ (sources."@inquirer/core-2.3.1" // {
+ dependencies = [
+ sources."@types/node-20.17.19"
+ sources."ansi-escapes-4.3.2"
+ sources."type-fest-0.21.3"
+ sources."undici-types-6.19.8"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
+ (sources."@inquirer/editor-1.2.15" // {
+ dependencies = [
+ sources."@inquirer/core-6.0.0"
+ sources."@types/mute-stream-0.0.4"
+ sources."@types/node-20.17.19"
+ sources."ansi-escapes-4.3.2"
+ sources."signal-exit-4.1.0"
+ sources."type-fest-0.21.3"
+ sources."undici-types-6.19.8"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
+ (sources."@inquirer/expand-1.1.16" // {
+ dependencies = [
+ sources."@inquirer/core-6.0.0"
+ sources."@types/mute-stream-0.0.4"
+ sources."@types/node-20.17.19"
+ sources."ansi-escapes-4.3.2"
+ sources."signal-exit-4.1.0"
+ sources."type-fest-0.21.3"
+ sources."undici-types-6.19.8"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
+ (sources."@inquirer/input-1.2.16" // {
+ dependencies = [
+ sources."@inquirer/core-6.0.0"
+ sources."@types/mute-stream-0.0.4"
+ sources."@types/node-20.17.19"
+ sources."ansi-escapes-4.3.2"
+ sources."signal-exit-4.1.0"
+ sources."type-fest-0.21.3"
+ sources."undici-types-6.19.8"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
+ (sources."@inquirer/password-1.1.16" // {
+ dependencies = [
+ sources."@inquirer/core-6.0.0"
+ sources."@types/mute-stream-0.0.4"
+ sources."@types/node-20.17.19"
+ sources."ansi-escapes-4.3.2"
+ sources."signal-exit-4.1.0"
+ sources."type-fest-0.21.3"
+ sources."undici-types-6.19.8"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
sources."@inquirer/prompts-2.3.1"
- (
- sources."@inquirer/rawlist-1.2.16"
- // {
- dependencies = [
- sources."@inquirer/core-6.0.0"
- sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.17.19"
- sources."ansi-escapes-4.3.2"
- sources."signal-exit-4.1.0"
- sources."type-fest-0.21.3"
- sources."undici-types-6.19.8"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
- (
- sources."@inquirer/select-1.3.3"
- // {
- dependencies = [
- sources."@inquirer/core-6.0.0"
- sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.17.19"
- sources."ansi-escapes-4.3.2"
- sources."signal-exit-4.1.0"
- sources."type-fest-0.21.3"
- sources."undici-types-6.19.8"
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
+ (sources."@inquirer/rawlist-1.2.16" // {
+ dependencies = [
+ sources."@inquirer/core-6.0.0"
+ sources."@types/mute-stream-0.0.4"
+ sources."@types/node-20.17.19"
+ sources."ansi-escapes-4.3.2"
+ sources."signal-exit-4.1.0"
+ sources."type-fest-0.21.3"
+ sources."undici-types-6.19.8"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
+ (sources."@inquirer/select-1.3.3" // {
+ dependencies = [
+ sources."@inquirer/core-6.0.0"
+ sources."@types/mute-stream-0.0.4"
+ sources."@types/node-20.17.19"
+ sources."ansi-escapes-4.3.2"
+ sources."signal-exit-4.1.0"
+ sources."type-fest-0.21.3"
+ sources."undici-types-6.19.8"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
sources."@inquirer/type-1.5.5"
- (
- sources."@isaacs/cliui-8.0.2"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."emoji-regex-9.2.2"
- sources."string-width-5.1.2"
- sources."strip-ansi-7.1.0"
- sources."wrap-ansi-8.1.0"
- ];
- }
- )
+ (sources."@isaacs/cliui-8.0.2" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-9.2.2"
+ sources."string-width-5.1.2"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-8.1.0"
+ ];
+ })
sources."@jridgewell/gen-mapping-0.3.8"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@jsii/check-node-1.102.0"
- sources."@jsii/spec-1.106.0"
+ sources."@jsii/spec-1.108.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -52958,7 +50314,7 @@ in
sources."@sentry/utils-7.120.1"
sources."@types/mute-stream-0.0.1"
sources."@types/node-18.19.67"
- sources."@types/react-19.0.9"
+ sources."@types/react-19.0.10"
sources."@types/wrap-ansi-3.0.0"
sources."@types/yauzl-2.10.3"
sources."@types/yoga-layout-1.9.2"
@@ -52971,16 +50327,13 @@ in
sources."ansi-styles-4.3.0"
sources."anymatch-3.1.3"
sources."archiver-5.3.2"
- (
- sources."archiver-utils-2.1.0"
- // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."archiver-utils-2.1.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."arr-rotate-1.0.0"
sources."array-buffer-byte-length-1.0.2"
sources."astral-regex-2.0.0"
@@ -53010,34 +50363,28 @@ in
sources."cli-boxes-3.0.0"
sources."cli-cursor-4.0.0"
sources."cli-spinners-2.9.2"
- (
- sources."cli-truncate-4.0.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."emoji-regex-10.4.0"
- sources."is-fullwidth-code-point-4.0.0"
- sources."slice-ansi-5.0.0"
- sources."string-width-7.2.0"
- sources."strip-ansi-7.1.0"
- ];
- }
- )
+ (sources."cli-truncate-4.0.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-10.4.0"
+ sources."is-fullwidth-code-point-4.0.0"
+ sources."slice-ansi-5.0.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
sources."cli-width-4.1.0"
sources."cliui-8.0.1"
sources."clone-2.1.2"
sources."code-excerpt-4.0.0"
- (
- sources."codemaker-1.102.0"
- // {
- dependencies = [
- sources."fs-extra-10.1.0"
- sources."jsonfile-6.1.0"
- sources."universalify-2.0.1"
- ];
- }
- )
+ (sources."codemaker-1.102.0" // {
+ dependencies = [
+ sources."fs-extra-10.1.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.1"
+ ];
+ })
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."commonmark-0.31.2"
@@ -53064,14 +50411,11 @@ in
sources."detect-libc-2.0.3"
sources."detect-newline-2.1.0"
sources."detect-port-1.6.1"
- (
- sources."downlevel-dts-0.11.0"
- // {
- dependencies = [
- sources."typescript-5.8.0-dev.20250216"
- ];
- }
- )
+ (sources."downlevel-dts-0.11.0" // {
+ dependencies = [
+ sources."typescript-5.9.0-dev.20250224"
+ ];
+ })
sources."dunder-proto-1.0.1"
sources."eastasianwidth-0.2.0"
sources."emoji-regex-8.0.0"
@@ -53089,48 +50433,36 @@ in
sources."events-3.3.0"
sources."execa-5.1.1"
sources."expand-template-2.0.3"
- (
- sources."external-editor-3.1.0"
- // {
- dependencies = [
- sources."iconv-lite-0.4.24"
- ];
- }
- )
- (
- sources."extract-zip-2.0.1"
- // {
- dependencies = [
- sources."get-stream-5.2.0"
- ];
- }
- )
+ (sources."external-editor-3.1.0" // {
+ dependencies = [
+ sources."iconv-lite-0.4.24"
+ ];
+ })
+ (sources."extract-zip-2.0.1" // {
+ dependencies = [
+ sources."get-stream-5.2.0"
+ ];
+ })
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.3.3"
sources."fast-uri-3.0.6"
sources."fastq-1.19.0"
sources."fd-slicer-1.1.0"
- (
- sources."figures-3.2.0"
- // {
- dependencies = [
- sources."escape-string-regexp-1.0.5"
- ];
- }
- )
+ (sources."figures-3.2.0" // {
+ dependencies = [
+ sources."escape-string-regexp-1.0.5"
+ ];
+ })
sources."fill-range-7.1.1"
sources."find-up-3.0.0"
- sources."flatted-3.3.2"
+ sources."flatted-3.3.3"
sources."follow-redirects-1.15.9"
sources."for-each-0.3.5"
- (
- sources."foreground-child-3.3.0"
- // {
- dependencies = [
- sources."signal-exit-4.1.0"
- ];
- }
- )
+ (sources."foreground-child-3.3.1" // {
+ dependencies = [
+ sources."signal-exit-4.1.0"
+ ];
+ })
sources."fs-constants-1.0.0"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
@@ -53138,18 +50470,15 @@ in
sources."functions-have-names-1.2.3"
sources."get-caller-file-2.0.5"
sources."get-east-asian-width-1.3.0"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-stream-6.0.1"
sources."github-from-package-0.0.0"
- (
- sources."glob-7.2.3"
- // {
- dependencies = [
- sources."minimatch-3.1.2"
- ];
- }
- )
+ (sources."glob-7.2.3" // {
+ dependencies = [
+ sources."minimatch-3.1.2"
+ ];
+ })
sources."glob-parent-5.1.2"
sources."gopd-1.2.0"
sources."graceful-fs-4.2.11"
@@ -53170,54 +50499,45 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (
- sources."ink-5.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."chalk-5.4.1"
- sources."emoji-regex-10.4.0"
- sources."string-width-7.2.0"
- sources."strip-ansi-7.1.0"
- sources."wrap-ansi-9.0.0"
- ];
- }
- )
- (
- sources."ink-select-input-4.2.2"
- // {
- dependencies = [
- (
- sources."ansi-escapes-4.3.2"
- // {
- dependencies = [
- sources."type-fest-0.21.3"
- ];
- }
- )
- sources."auto-bind-4.0.0"
- sources."cli-boxes-2.2.1"
- sources."cli-cursor-3.1.0"
- sources."cli-truncate-2.1.0"
- sources."code-excerpt-3.0.0"
- sources."convert-to-spaces-1.0.2"
- sources."indent-string-4.0.0"
- sources."ink-3.2.0"
- sources."patch-console-1.0.0"
- sources."react-17.0.2"
- sources."react-reconciler-0.26.2"
- sources."restore-cursor-3.1.0"
- sources."scheduler-0.20.2"
- sources."slice-ansi-3.0.0"
- sources."type-fest-0.12.0"
- sources."utf-8-validate-5.0.10"
- sources."widest-line-3.1.0"
- sources."wrap-ansi-6.2.0"
- sources."ws-7.5.10"
- ];
- }
- )
+ (sources."ink-5.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."chalk-5.4.1"
+ sources."emoji-regex-10.4.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-9.0.0"
+ ];
+ })
+ (sources."ink-select-input-4.2.2" // {
+ dependencies = [
+ (sources."ansi-escapes-4.3.2" // {
+ dependencies = [
+ sources."type-fest-0.21.3"
+ ];
+ })
+ sources."auto-bind-4.0.0"
+ sources."cli-boxes-2.2.1"
+ sources."cli-cursor-3.1.0"
+ sources."cli-truncate-2.1.0"
+ sources."code-excerpt-3.0.0"
+ sources."convert-to-spaces-1.0.2"
+ sources."indent-string-4.0.0"
+ sources."ink-3.2.0"
+ sources."patch-console-1.0.0"
+ sources."react-17.0.2"
+ sources."react-reconciler-0.26.2"
+ sources."restore-cursor-3.1.0"
+ sources."scheduler-0.20.2"
+ sources."slice-ansi-3.0.0"
+ sources."type-fest-0.12.0"
+ sources."utf-8-validate-5.0.10"
+ sources."widest-line-3.1.0"
+ sources."wrap-ansi-6.2.0"
+ sources."ws-7.5.10"
+ ];
+ })
sources."ink-spinner-4.0.3"
sources."ink-table-3.1.0"
sources."ink-testing-library-2.1.0"
@@ -53230,14 +50550,11 @@ in
sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.2.2"
sources."is-callable-1.2.7"
- (
- sources."is-ci-2.0.0"
- // {
- dependencies = [
- sources."ci-info-2.0.0"
- ];
- }
- )
+ (sources."is-ci-2.0.0" // {
+ dependencies = [
+ sources."ci-info-2.0.0"
+ ];
+ })
sources."is-core-module-2.16.1"
sources."is-date-object-1.1.0"
sources."is-docker-2.2.1"
@@ -53263,47 +50580,38 @@ in
sources."js-tokens-4.0.0"
sources."jsesc-3.1.0"
sources."jsii-5.4.31"
- (
- sources."jsii-pacmak-1.102.0"
- // {
- dependencies = [
- sources."cliui-7.0.4"
- sources."escape-string-regexp-4.0.0"
- sources."fs-extra-10.1.0"
- sources."jsonfile-6.1.0"
- sources."universalify-2.0.1"
- sources."yargs-16.2.0"
- sources."yargs-parser-20.2.9"
- ];
- }
- )
- (
- sources."jsii-reflect-1.106.0"
- // {
- dependencies = [
- sources."@jsii/check-node-1.106.0"
- sources."cliui-7.0.4"
- sources."fs-extra-10.1.0"
- sources."jsonfile-6.1.0"
- sources."universalify-2.0.1"
- sources."yargs-16.2.0"
- sources."yargs-parser-20.2.9"
- ];
- }
- )
+ (sources."jsii-pacmak-1.102.0" // {
+ dependencies = [
+ sources."cliui-7.0.4"
+ sources."escape-string-regexp-4.0.0"
+ sources."fs-extra-10.1.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.1"
+ sources."yargs-16.2.0"
+ sources."yargs-parser-20.2.9"
+ ];
+ })
+ (sources."jsii-reflect-1.108.0" // {
+ dependencies = [
+ sources."@jsii/check-node-1.108.0"
+ sources."cliui-7.0.4"
+ sources."fs-extra-10.1.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.1"
+ sources."yargs-16.2.0"
+ sources."yargs-parser-20.2.9"
+ ];
+ })
sources."jsii-rosetta-5.4.30"
sources."json-schema-traverse-1.0.0"
sources."jsonfile-4.0.0"
- (
- sources."lazystream-1.0.1"
- // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."lazystream-1.0.1" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."lie-3.1.1"
sources."localforage-1.10.0"
sources."locate-path-3.0.0"
@@ -53324,20 +50632,17 @@ in
sources."micromatch-4.0.8"
sources."mimic-fn-2.1.0"
sources."mimic-response-3.1.0"
- (
- sources."minimatch-5.1.6"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- ];
- }
- )
+ (sources."minimatch-5.1.6" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ ];
+ })
sources."minimist-1.2.8"
sources."minipass-7.1.2"
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.3"
sources."mute-stream-1.0.0"
- sources."nan-2.22.0"
+ sources."nan-2.22.1"
sources."napi-build-utils-2.0.0"
sources."node-abi-3.74.0"
sources."node-fetch-2.7.0"
@@ -53353,7 +50658,7 @@ in
sources."obliterator-2.0.5"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."oo-ascii-tree-1.106.0"
+ sources."oo-ascii-tree-1.108.0"
sources."open-7.4.2"
sources."os-tmpdir-1.0.2"
sources."p-limit-2.3.0"
@@ -53381,23 +50686,17 @@ in
sources."queue-microtask-1.2.3"
sources."rc-1.2.8"
sources."react-19.0.0"
- (
- sources."react-devtools-core-4.28.5"
- // {
- dependencies = [
- sources."utf-8-validate-5.0.10"
- sources."ws-7.5.10"
- ];
- }
- )
- (
- sources."react-reconciler-0.29.2"
- // {
- dependencies = [
- sources."react-18.3.1"
- ];
- }
- )
+ (sources."react-devtools-core-4.28.5" // {
+ dependencies = [
+ sources."utf-8-validate-5.0.10"
+ sources."ws-7.5.10"
+ ];
+ })
+ (sources."react-reconciler-0.29.2" // {
+ dependencies = [
+ sources."react-18.3.1"
+ ];
+ })
sources."readable-stream-3.6.2"
sources."readdir-glob-1.1.3"
sources."readdirp-3.6.0"
@@ -53418,14 +50717,11 @@ in
sources."sax-1.4.1"
sources."scheduler-0.23.2"
sources."semver-7.7.1"
- (
- sources."semver-intersect-1.5.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."semver-intersect-1.5.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."set-function-length-1.2.2"
sources."set-function-name-2.0.2"
sources."shebang-command-2.0.0"
@@ -53439,15 +50735,12 @@ in
sources."signal-exit-3.0.7"
sources."simple-concat-1.0.1"
sources."simple-get-4.0.1"
- (
- sources."slice-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-styles-6.2.1"
- sources."is-fullwidth-code-point-5.0.0"
- ];
- }
- )
+ (sources."slice-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-styles-6.2.1"
+ sources."is-fullwidth-code-point-5.0.0"
+ ];
+ })
sources."sort-json-2.0.1"
sources."spdx-license-list-6.9.0"
sources."sscaff-1.2.274"
@@ -53459,14 +50752,11 @@ in
sources."streamroller-3.1.5"
sources."string-width-4.2.3"
sources."string-width-cjs-4.2.3"
- (
- sources."string_decoder-1.1.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."strip-ansi-6.0.1"
sources."strip-ansi-cjs-6.0.1"
sources."strip-final-newline-2.0.0"
@@ -53479,7 +50769,7 @@ in
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."tunnel-agent-0.6.0"
- sources."type-fest-4.34.1"
+ sources."type-fest-4.35.0"
sources."typescript-5.4.5"
sources."undici-types-5.26.5"
sources."universalify-0.1.2"
@@ -53493,22 +50783,19 @@ in
sources."which-boxed-primitive-1.1.1"
sources."which-collection-1.0.2"
sources."which-typed-array-1.1.18"
- (
- sources."widest-line-5.0.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."emoji-regex-10.4.0"
- sources."string-width-7.2.0"
- sources."strip-ansi-7.1.0"
- ];
- }
- )
+ (sources."widest-line-5.0.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."emoji-regex-10.4.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
sources."workerpool-6.5.1"
sources."wrap-ansi-7.0.0"
sources."wrap-ansi-cjs-7.0.0"
sources."wrappy-1.0.2"
- sources."ws-8.18.0"
+ sources."ws-8.18.1"
sources."xml-js-1.6.11"
sources."xmlbuilder-15.1.1"
sources."xstate-4.38.3"
@@ -53518,14 +50805,11 @@ in
sources."yauzl-2.10.0"
sources."yoga-layout-prebuilt-1.10.0"
sources."yoga-wasm-web-0.3.3"
- (
- sources."zip-stream-4.1.1"
- // {
- dependencies = [
- sources."archiver-utils-3.0.4"
- ];
- }
- )
+ (sources."zip-stream-4.1.1" // {
+ dependencies = [
+ sources."archiver-utils-3.0.4"
+ ];
+ })
sources."zod-3.23.8"
];
buildInputs = globalBuildInputs;
@@ -53562,14 +50846,11 @@ in
sources."meow-12.1.1"
sources."merge-stream-2.0.0"
sources."mimic-fn-4.0.0"
- (
- sources."npm-run-path-5.3.0"
- // {
- dependencies = [
- sources."path-key-4.0.0"
- ];
- }
- )
+ (sources."npm-run-path-5.3.0" // {
+ dependencies = [
+ sources."path-key-4.0.0"
+ ];
+ })
sources."onetime-6.0.0"
sources."path-key-3.1.1"
sources."shebang-command-2.0.0"
@@ -53618,26 +50899,20 @@ in
dependencies = [
sources."dockerfile-ast-0.4.2"
sources."dockerfile-language-server-nodejs-0.9.0"
- (
- sources."dockerfile-language-service-0.9.0"
- // {
- dependencies = [
- sources."vscode-languageserver-types-3.17.0-next.3"
- ];
- }
- )
+ (sources."dockerfile-language-service-0.9.0" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.17.0-next.3"
+ ];
+ })
sources."dockerfile-utils-0.10.0"
sources."tslib-2.8.1"
sources."vscode-jsonrpc-8.1.0"
sources."vscode-languageserver-8.1.0"
- (
- sources."vscode-languageserver-protocol-3.17.3"
- // {
- dependencies = [
- sources."vscode-languageserver-types-3.17.3"
- ];
- }
- )
+ (sources."vscode-languageserver-protocol-3.17.3" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.17.3"
+ ];
+ })
sources."vscode-languageserver-textdocument-1.0.12"
sources."vscode-languageserver-types-3.17.5"
];
@@ -53730,15 +51005,12 @@ in
sources."merge-stream-2.0.0"
sources."mimic-fn-2.1.0"
sources."minimatch-3.1.2"
- (
- sources."mount-point-3.0.0"
- // {
- dependencies = [
- sources."@sindresorhus/df-1.0.1"
- sources."pify-2.3.0"
- ];
- }
- )
+ (sources."mount-point-3.0.0" // {
+ dependencies = [
+ sources."@sindresorhus/df-1.0.1"
+ sources."pify-2.3.0"
+ ];
+ })
sources."move-file-3.1.0"
sources."npm-run-path-3.1.0"
sources."once-1.4.0"
@@ -53965,10 +51237,10 @@ in
coc-lists = nodeEnv.buildNodePackage {
name = "coc-lists";
packageName = "coc-lists";
- version = "1.5.1";
+ version = "1.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.5.1.tgz";
- sha512 = "tJYhsDHadL6YYEsHAUc+tFi8MYklHmPx3AcjiUHTYRAtkAyKoZb+BPpAwG8gvfSqdkCxu55eHLeJ9lGhXNztZA==";
+ url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.5.3.tgz";
+ sha512 = "fVy45jPoie8ZrO28GLWA7M1ewYaybDmb3fujUYWhHelTl4r2F/mk3UVGnpb7+7gMmDJ0T3LkJqh0Qe538/wFTQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -54099,10 +51371,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.80.4";
+ version = "0.81.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.80.4.tgz";
- sha512 = "FXoLxN7DnzXyA+IlyF88gSoQCbrF6PrH0xHB5M2pqRZnWQIVdt4UmhlvdfwK77DIXTcDyRh4Q6vsnfJkgV0mlQ==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.81.0.tgz";
+ sha512 = "skbRCe1Yjoa3r/a0dHviJxGMS8s+PFzl7lmimCUxxT3kKxairDeetNfRBw+wsDJmKBzXGhy1KH+6Cmt3WJYz5w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -54284,47 +51556,35 @@ in
sources."crypto-random-string-2.0.0"
sources."cspell-dict-vimlang-1.0.1"
sources."cspell-glob-0.1.25"
- (
- sources."cspell-io-4.1.7"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
- (
- sources."cspell-lib-4.3.12"
- // {
- dependencies = [
- sources."comment-json-4.2.5"
- sources."esprima-4.0.1"
- sources."fs-extra-9.1.0"
- sources."gensequence-3.1.1"
- sources."vscode-uri-3.1.0"
- ];
- }
- )
- (
- sources."cspell-trie-lib-4.2.8"
- // {
- dependencies = [
- sources."gensequence-3.1.1"
- ];
- }
- )
+ (sources."cspell-io-4.1.7" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
+ (sources."cspell-lib-4.3.12" // {
+ dependencies = [
+ sources."comment-json-4.2.5"
+ sources."esprima-4.0.1"
+ sources."fs-extra-9.1.0"
+ sources."gensequence-3.1.1"
+ sources."vscode-uri-3.1.0"
+ ];
+ })
+ (sources."cspell-trie-lib-4.2.8" // {
+ dependencies = [
+ sources."gensequence-3.1.1"
+ ];
+ })
sources."cspell-util-bundle-4.1.11"
sources."dot-prop-5.3.0"
sources."esprima-2.7.3"
sources."fill-range-7.1.1"
- (
- sources."fs-extra-8.1.0"
- // {
- dependencies = [
- sources."jsonfile-4.0.0"
- sources."universalify-0.1.2"
- ];
- }
- )
+ (sources."fs-extra-8.1.0" // {
+ dependencies = [
+ sources."jsonfile-4.0.0"
+ sources."universalify-0.1.2"
+ ];
+ })
sources."gensequence-2.3.0"
sources."global-dirs-0.1.1"
sources."graceful-fs-4.2.11"
@@ -54356,14 +51616,11 @@ in
sources."unique-string-2.0.0"
sources."universalify-2.0.1"
sources."vscode-jsonrpc-4.0.0"
- (
- sources."vscode-languageserver-5.2.1"
- // {
- dependencies = [
- sources."vscode-uri-1.0.8"
- ];
- }
- )
+ (sources."vscode-languageserver-5.2.1" // {
+ dependencies = [
+ sources."vscode-uri-1.0.8"
+ ];
+ })
sources."vscode-languageserver-protocol-3.14.1"
sources."vscode-languageserver-types-3.14.0"
sources."vscode-uri-2.1.2"
@@ -54392,25 +51649,19 @@ in
sources."@ampproject/remapping-2.3.0"
sources."@babel/code-frame-7.26.2"
sources."@babel/compat-data-7.26.8"
- (
- sources."@babel/core-7.26.9"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."@babel/core-7.26.9" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."@babel/generator-7.26.9"
- (
- sources."@babel/helper-compilation-targets-7.26.5"
- // {
- dependencies = [
- sources."lru-cache-5.1.1"
- sources."semver-6.3.1"
- sources."yallist-3.1.1"
- ];
- }
- )
+ (sources."@babel/helper-compilation-targets-7.26.5" // {
+ dependencies = [
+ sources."lru-cache-5.1.1"
+ sources."semver-6.3.1"
+ sources."yallist-3.1.1"
+ ];
+ })
sources."@babel/helper-module-imports-7.25.9"
sources."@babel/helper-module-transforms-7.26.0"
sources."@babel/helper-string-parser-7.25.9"
@@ -54442,30 +51693,24 @@ in
sources."array-union-2.1.0"
sources."arrify-1.0.1"
sources."astral-regex-2.0.0"
- (
- sources."autoprefixer-9.8.8"
- // {
- dependencies = [
- sources."picocolors-0.2.1"
- ];
- }
- )
+ (sources."autoprefixer-9.8.8" // {
+ dependencies = [
+ sources."picocolors-0.2.1"
+ ];
+ })
sources."bail-1.0.5"
sources."balanced-match-2.0.0"
- (
- sources."brace-expansion-1.1.11"
- // {
- dependencies = [
- sources."balanced-match-1.0.2"
- ];
- }
- )
+ (sources."brace-expansion-1.1.11" // {
+ dependencies = [
+ sources."balanced-match-1.0.2"
+ ];
+ })
sources."braces-3.0.3"
sources."browserslist-4.24.4"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001699"
+ sources."caniuse-lite-1.0.30001700"
sources."chalk-4.1.2"
sources."character-entities-1.2.4"
sources."character-entities-legacy-1.1.4"
@@ -54479,28 +51724,22 @@ in
sources."cssesc-3.0.0"
sources."debug-4.4.0"
sources."decamelize-1.2.0"
- (
- sources."decamelize-keys-1.1.1"
- // {
- dependencies = [
- sources."map-obj-1.0.1"
- ];
- }
- )
+ (sources."decamelize-keys-1.1.1" // {
+ dependencies = [
+ sources."map-obj-1.0.1"
+ ];
+ })
sources."dir-glob-3.0.1"
- (
- sources."dom-serializer-0.2.2"
- // {
- dependencies = [
- sources."domelementtype-2.3.0"
- sources."entities-2.2.0"
- ];
- }
- )
+ (sources."dom-serializer-0.2.2" // {
+ dependencies = [
+ sources."domelementtype-2.3.0"
+ sources."entities-2.2.0"
+ ];
+ })
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.5.101"
+ sources."electron-to-chromium-1.5.104"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -54517,7 +51756,7 @@ in
sources."fill-range-7.1.1"
sources."find-up-4.1.0"
sources."flat-cache-3.2.0"
- sources."flatted-3.3.2"
+ sources."flatted-3.3.3"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."gensync-1.0.0-beta.2"
@@ -54537,14 +51776,11 @@ in
sources."html-tags-3.3.1"
sources."htmlparser2-3.10.1"
sources."ignore-5.3.2"
- (
- sources."import-fresh-3.3.1"
- // {
- dependencies = [
- sources."resolve-from-4.0.0"
- ];
- }
- )
+ (sources."import-fresh-3.3.1" // {
+ dependencies = [
+ sources."resolve-from-4.0.0"
+ ];
+ })
sources."import-lazy-4.0.0"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
@@ -54598,15 +51834,12 @@ in
sources."minimist-options-4.1.0"
sources."ms-2.1.3"
sources."node-releases-2.0.19"
- (
- sources."normalize-package-data-3.0.3"
- // {
- dependencies = [
- sources."hosted-git-info-4.1.0"
- sources."semver-7.7.1"
- ];
- }
- )
+ (sources."normalize-package-data-3.0.3" // {
+ dependencies = [
+ sources."hosted-git-info-4.1.0"
+ sources."semver-7.7.1"
+ ];
+ })
sources."normalize-range-0.1.2"
sources."normalize-selector-0.2.0"
sources."num2fraction-1.2.2"
@@ -54624,14 +51857,11 @@ in
sources."path-type-4.0.0"
sources."picocolors-1.1.1"
sources."picomatch-2.3.1"
- (
- sources."postcss-7.0.39"
- // {
- dependencies = [
- sources."picocolors-0.2.1"
- ];
- }
- )
+ (sources."postcss-7.0.39" // {
+ dependencies = [
+ sources."picocolors-0.2.1"
+ ];
+ })
sources."postcss-html-0.36.0"
sources."postcss-less-3.1.4"
sources."postcss-media-query-parser-0.2.3"
@@ -54644,23 +51874,17 @@ in
sources."postcss-value-parser-4.2.0"
sources."queue-microtask-1.2.3"
sources."quick-lru-4.0.1"
- (
- sources."read-pkg-5.2.0"
- // {
- dependencies = [
- sources."normalize-package-data-2.5.0"
- sources."type-fest-0.6.0"
- ];
- }
- )
- (
- sources."read-pkg-up-7.0.1"
- // {
- dependencies = [
- sources."type-fest-0.8.1"
- ];
- }
- )
+ (sources."read-pkg-5.2.0" // {
+ dependencies = [
+ sources."normalize-package-data-2.5.0"
+ sources."type-fest-0.6.0"
+ ];
+ })
+ (sources."read-pkg-up-7.0.1" // {
+ dependencies = [
+ sources."type-fest-0.8.1"
+ ];
+ })
sources."readable-stream-3.6.2"
sources."redent-3.0.0"
sources."remark-13.0.0"
@@ -54700,14 +51924,11 @@ in
sources."trough-1.0.5"
sources."type-fest-0.18.1"
sources."typedarray-to-buffer-3.1.5"
- (
- sources."unified-9.2.2"
- // {
- dependencies = [
- sources."is-plain-obj-2.1.0"
- ];
- }
- )
+ (sources."unified-9.2.2" // {
+ dependencies = [
+ sources."is-plain-obj-2.1.0"
+ ];
+ })
sources."unist-util-find-all-after-3.0.2"
sources."unist-util-is-4.1.0"
sources."unist-util-stringify-position-2.0.3"
@@ -54719,14 +51940,11 @@ in
sources."vfile-message-2.0.4"
sources."vscode-jsonrpc-5.1.0-next.1"
sources."vscode-languageserver-6.2.0-next.2"
- (
- sources."vscode-languageserver-protocol-3.16.0-next.2"
- // {
- dependencies = [
- sources."vscode-languageserver-types-3.16.0-next.1"
- ];
- }
- )
+ (sources."vscode-languageserver-protocol-3.16.0-next.2" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.16.0-next.1"
+ ];
+ })
sources."vscode-languageserver-textdocument-1.0.12"
sources."vscode-languageserver-types-3.17.5"
sources."vscode-uri-2.1.2"
@@ -54874,20 +52092,17 @@ in
dependencies = [
sources."@babel/code-frame-7.12.11"
sources."@babel/helper-validator-identifier-7.25.9"
- (
- sources."@babel/highlight-7.25.9"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."escape-string-regexp-1.0.5"
- sources."has-flag-3.0.0"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."@babel/highlight-7.25.9" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."has-flag-3.0.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."@eslint/eslintrc-0.4.3"
sources."@humanwhocodes/config-array-0.5.0"
sources."@humanwhocodes/object-schema-1.2.1"
@@ -54924,39 +52139,27 @@ in
sources."es-object-atoms-1.1.1"
sources."escape-string-regexp-4.0.0"
sources."eslint-7.32.0"
- (
- sources."eslint-plugin-vue-7.20.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
- (
- sources."eslint-scope-5.1.1"
- // {
- dependencies = [
- sources."estraverse-4.3.0"
- ];
- }
- )
- (
- sources."eslint-utils-2.1.0"
- // {
- dependencies = [
- sources."eslint-visitor-keys-1.3.0"
- ];
- }
- )
+ (sources."eslint-plugin-vue-7.20.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
+ (sources."eslint-scope-5.1.1" // {
+ dependencies = [
+ sources."estraverse-4.3.0"
+ ];
+ })
+ (sources."eslint-utils-2.1.0" // {
+ dependencies = [
+ sources."eslint-visitor-keys-1.3.0"
+ ];
+ })
sources."eslint-visitor-keys-2.1.0"
- (
- sources."espree-7.3.1"
- // {
- dependencies = [
- sources."eslint-visitor-keys-1.3.0"
- ];
- }
- )
+ (sources."espree-7.3.1" // {
+ dependencies = [
+ sources."eslint-visitor-keys-1.3.0"
+ ];
+ })
sources."esprima-4.0.1"
sources."esquery-1.6.0"
sources."esrecurse-4.3.0"
@@ -54968,11 +52171,11 @@ in
sources."fast-uri-3.0.6"
sources."file-entry-cache-6.0.1"
sources."flat-cache-3.2.0"
- sources."flatted-3.3.2"
+ sources."flatted-3.3.3"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."functional-red-black-tree-1.0.1"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."glob-7.2.3"
sources."glob-parent-5.1.2"
@@ -55039,32 +52242,26 @@ in
sources."strip-json-comments-3.1.1"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- (
- sources."table-6.9.0"
- // {
- dependencies = [
- sources."ajv-8.17.1"
- sources."json-schema-traverse-1.0.0"
- ];
- }
- )
+ (sources."table-6.9.0" // {
+ dependencies = [
+ sources."ajv-8.17.1"
+ sources."json-schema-traverse-1.0.0"
+ ];
+ })
sources."text-table-0.2.0"
sources."tslib-1.14.1"
- (
- sources."tslint-6.1.3"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."escape-string-regexp-1.0.5"
- sources."has-flag-3.0.0"
- sources."semver-5.7.2"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."tslint-6.1.3" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."has-flag-3.0.0"
+ sources."semver-5.7.2"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."tsutils-2.29.0"
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
@@ -55072,16 +52269,13 @@ in
sources."uri-js-4.4.1"
sources."v8-compile-cache-2.4.0"
sources."vls-0.7.6"
- (
- sources."vue-eslint-parser-7.11.0"
- // {
- dependencies = [
- sources."eslint-visitor-keys-1.3.0"
- sources."espree-6.2.1"
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."vue-eslint-parser-7.11.0" // {
+ dependencies = [
+ sources."eslint-visitor-keys-1.3.0"
+ sources."espree-6.2.1"
+ sources."semver-6.3.1"
+ ];
+ })
sources."which-2.0.2"
sources."word-wrap-1.2.5"
sources."wrappy-1.0.2"
@@ -55221,37 +52415,28 @@ in
sources."cross-spawn-6.0.6"
sources."decompress-4.2.1"
sources."decompress-tar-4.1.1"
- (
- sources."decompress-tarbz2-4.1.1"
- // {
- dependencies = [
- sources."file-type-6.2.0"
- ];
- }
- )
+ (sources."decompress-tarbz2-4.1.1" // {
+ dependencies = [
+ sources."file-type-6.2.0"
+ ];
+ })
sources."decompress-targz-4.1.1"
- (
- sources."decompress-unzip-4.0.1"
- // {
- dependencies = [
- sources."file-type-3.9.0"
- sources."get-stream-2.3.1"
- ];
- }
- )
+ (sources."decompress-unzip-4.0.1" // {
+ dependencies = [
+ sources."file-type-3.9.0"
+ sources."get-stream-2.3.1"
+ ];
+ })
sources."download-5.0.3"
sources."download-git-repo-1.1.0"
sources."duplexer3-0.1.5"
sources."end-of-stream-1.4.4"
sources."escape-string-regexp-1.0.5"
- (
- sources."execa-1.0.0"
- // {
- dependencies = [
- sources."get-stream-4.1.0"
- ];
- }
- )
+ (sources."execa-1.0.0" // {
+ dependencies = [
+ sources."get-stream-4.1.0"
+ ];
+ })
sources."fd-slicer-1.1.0"
sources."file-type-5.2.0"
sources."filename-reserved-regex-2.0.0"
@@ -55284,26 +52469,20 @@ in
sources."json5-2.2.3"
sources."jsonfile-4.0.0"
sources."lowercase-keys-1.0.1"
- (
- sources."make-dir-1.3.0"
- // {
- dependencies = [
- sources."pify-3.0.0"
- ];
- }
- )
+ (sources."make-dir-1.3.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
sources."mkdirp-0.5.6"
sources."nice-try-1.0.5"
- (
- sources."npm-conf-1.1.3"
- // {
- dependencies = [
- sources."pify-3.0.0"
- ];
- }
- )
+ (sources."npm-conf-1.1.3" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
sources."npm-run-path-2.0.2"
sources."object-assign-4.1.1"
sources."once-1.4.0"
@@ -55320,37 +52499,28 @@ in
sources."proto-list-1.2.4"
sources."pump-3.0.2"
sources."ramda-0.27.2"
- (
- sources."readable-stream-2.3.8"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."readable-stream-2.3.8" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."rimraf-2.7.1"
sources."safe-buffer-5.2.1"
- (
- sources."seek-bzip-1.0.6"
- // {
- dependencies = [
- sources."commander-2.20.3"
- ];
- }
- )
+ (sources."seek-bzip-1.0.6" // {
+ dependencies = [
+ sources."commander-2.20.3"
+ ];
+ })
sources."semver-5.7.2"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.7"
sources."slash-2.0.0"
- (
- sources."string_decoder-1.1.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."strip-dirs-2.1.0"
sources."strip-eof-1.0.0"
sources."strip-outer-1.0.1"
@@ -55414,9 +52584,9 @@ in
sources."conventional-changelog-jquery-6.0.0"
sources."conventional-changelog-jshint-5.0.0"
sources."conventional-changelog-preset-loader-5.0.0"
- sources."conventional-changelog-writer-8.0.0"
+ sources."conventional-changelog-writer-8.0.1"
sources."conventional-commits-filter-5.0.0"
- sources."conventional-commits-parser-6.0.0"
+ sources."conventional-commits-parser-6.1.0"
sources."dot-prop-5.3.0"
sources."find-up-simple-1.0.0"
sources."git-raw-commits-5.0.0"
@@ -55443,7 +52613,7 @@ in
sources."spdx-license-ids-3.0.21"
sources."temp-dir-3.0.0"
sources."tempfile-5.0.0"
- sources."type-fest-4.34.1"
+ sources."type-fest-4.35.0"
sources."uglify-js-3.19.3"
sources."unicorn-magic-0.1.0"
sources."validate-npm-package-license-3.0.4"
@@ -55496,14 +52666,11 @@ in
sources."micromatch-4.0.8"
sources."nested-error-stacks-2.1.1"
sources."p-event-5.0.1"
- (
- sources."p-filter-3.0.0"
- // {
- dependencies = [
- sources."p-map-5.5.0"
- ];
- }
- )
+ (sources."p-filter-3.0.0" // {
+ dependencies = [
+ sources."p-map-5.5.0"
+ ];
+ })
sources."p-map-6.0.0"
sources."p-timeout-5.1.0"
sources."path-type-4.0.0"
@@ -55535,18 +52702,15 @@ in
dependencies = [
sources."@cycle/dom-18.3.0"
sources."@cycle/http-14.10.0"
- (
- sources."@cycle/isolate-3.4.0"
- // {
- dependencies = [
- sources."@cycle/run-4.4.0"
- ];
- }
- )
+ (sources."@cycle/isolate-3.4.0" // {
+ dependencies = [
+ sources."@cycle/run-4.4.0"
+ ];
+ })
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.5"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -55554,15 +52718,12 @@ in
sources."asynckit-0.4.0"
sources."call-bind-apply-helpers-1.0.2"
sources."call-bound-1.0.3"
- (
- sources."chalk-2.4.2"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."chalk-2.4.2" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."chardet-0.4.2"
sources."cli-cursor-2.1.0"
sources."cli-width-2.2.1"
@@ -55602,7 +52763,7 @@ in
sources."form-data-2.5.3"
sources."formidable-1.2.6"
sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."globalthis-1.0.4"
sources."gopd-1.2.0"
@@ -55614,15 +52775,12 @@ in
sources."hasown-2.0.2"
sources."iconv-lite-0.4.24"
sources."inherits-2.0.4"
- (
- sources."inquirer-3.3.0"
- // {
- dependencies = [
- sources."ansi-regex-3.0.1"
- sources."strip-ansi-4.0.0"
- ];
- }
- )
+ (sources."inquirer-3.3.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
sources."is-fullwidth-code-point-2.0.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
@@ -55656,14 +52814,11 @@ in
sources."qs-6.14.0"
sources."quicktask-1.1.0"
sources."raf-3.3.2"
- (
- sources."readable-stream-2.3.8"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."readable-stream-2.3.8" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."restore-cursor-2.0.0"
sources."run-async-2.4.1"
sources."rx-lite-4.0.8"
@@ -55681,23 +52836,17 @@ in
sources."snabbdom-0.7.0"
sources."snabbdom-selector-1.2.1"
sources."sorted-immutable-list-1.1.0"
- (
- sources."string-width-2.1.1"
- // {
- dependencies = [
- sources."ansi-regex-3.0.1"
- sources."strip-ansi-4.0.0"
- ];
- }
- )
- (
- sources."string_decoder-1.1.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."strip-ansi-3.0.1"
sources."superagent-3.8.3"
sources."supports-color-2.0.0"
@@ -55707,14 +52856,11 @@ in
sources."type-2.7.3"
sources."undici-types-6.20.0"
sources."util-deprecate-1.0.2"
- (
- sources."variable-diff-1.1.0"
- // {
- dependencies = [
- sources."chalk-1.1.3"
- ];
- }
- )
+ (sources."variable-diff-1.1.0" // {
+ dependencies = [
+ sources."chalk-1.1.3"
+ ];
+ })
sources."which-1.3.1"
sources."xstream-11.14.0"
sources."yallist-2.1.2"
@@ -55732,24 +52878,24 @@ in
cspell = nodeEnv.buildNodePackage {
name = "cspell";
packageName = "cspell";
- version = "8.17.3";
+ version = "8.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell/-/cspell-8.17.3.tgz";
- sha512 = "fBZg674Dir9y/FWMwm2JyixM/1eB2vnqHJjRxOgGS/ZiZ3QdQ3LkK02Aqvlni8ffWYDZnYnYY9rfWmql9bb42w==";
+ url = "https://registry.npmjs.org/cspell/-/cspell-8.17.5.tgz";
+ sha512 = "l3Cfp87d7Yrodem675irdxV6+7+OsdR+jNwYHe33Dgnd6ePEfooYrvmfGdXF9rlQrNLUQp/HqYgHJzSq19UEsg==";
};
dependencies = [
- sources."@cspell/cspell-bundled-dicts-8.17.3"
- sources."@cspell/cspell-json-reporter-8.17.3"
- sources."@cspell/cspell-pipe-8.17.3"
- sources."@cspell/cspell-resolver-8.17.3"
- sources."@cspell/cspell-service-bus-8.17.3"
- sources."@cspell/cspell-types-8.17.3"
+ sources."@cspell/cspell-bundled-dicts-8.17.5"
+ sources."@cspell/cspell-json-reporter-8.17.5"
+ sources."@cspell/cspell-pipe-8.17.5"
+ sources."@cspell/cspell-resolver-8.17.5"
+ sources."@cspell/cspell-service-bus-8.17.5"
+ sources."@cspell/cspell-types-8.17.5"
sources."@cspell/dict-ada-4.1.0"
sources."@cspell/dict-al-1.1.0"
sources."@cspell/dict-aws-4.0.9"
sources."@cspell/dict-bash-4.2.0"
sources."@cspell/dict-companies-3.1.14"
- sources."@cspell/dict-cpp-6.0.3"
+ sources."@cspell/dict-cpp-6.0.4"
sources."@cspell/dict-cryptocurrencies-5.0.4"
sources."@cspell/dict-csharp-4.0.6"
sources."@cspell/dict-css-4.0.17"
@@ -55761,12 +52907,12 @@ in
sources."@cspell/dict-elixir-4.0.7"
sources."@cspell/dict-en-common-misspellings-2.0.9"
sources."@cspell/dict-en-gb-1.1.33"
- sources."@cspell/dict-en_us-4.3.31"
+ sources."@cspell/dict-en_us-4.3.33"
sources."@cspell/dict-filetypes-3.0.11"
sources."@cspell/dict-flutter-1.1.0"
sources."@cspell/dict-fonts-4.0.4"
sources."@cspell/dict-fsharp-1.1.0"
- sources."@cspell/dict-fullstack-3.2.4"
+ sources."@cspell/dict-fullstack-3.2.5"
sources."@cspell/dict-gaming-terms-1.1.0"
sources."@cspell/dict-git-3.0.4"
sources."@cspell/dict-golang-6.0.18"
@@ -55785,7 +52931,7 @@ in
sources."@cspell/dict-markdown-2.0.9"
sources."@cspell/dict-monkeyc-1.0.10"
sources."@cspell/dict-node-5.0.6"
- sources."@cspell/dict-npm-5.1.26"
+ sources."@cspell/dict-npm-5.1.27"
sources."@cspell/dict-php-4.0.14"
sources."@cspell/dict-powershell-5.0.14"
sources."@cspell/dict-public-licenses-2.0.13"
@@ -55802,10 +52948,10 @@ in
sources."@cspell/dict-terraform-1.1.0"
sources."@cspell/dict-typescript-3.2.0"
sources."@cspell/dict-vue-3.0.4"
- sources."@cspell/dynamic-import-8.17.3"
- sources."@cspell/filetypes-8.17.3"
- sources."@cspell/strong-weak-map-8.17.3"
- sources."@cspell/url-8.17.3"
+ sources."@cspell/dynamic-import-8.17.5"
+ sources."@cspell/filetypes-8.17.5"
+ sources."@cspell/strong-weak-map-8.17.5"
+ sources."@cspell/url-8.17.5"
sources."array-timsort-1.0.3"
sources."braces-3.0.3"
sources."callsites-3.1.0"
@@ -55815,44 +52961,38 @@ in
sources."commander-13.1.0"
sources."comment-json-4.2.5"
sources."core-util-is-1.0.3"
- sources."cspell-config-lib-8.17.3"
- sources."cspell-dictionary-8.17.3"
- sources."cspell-gitignore-8.17.3"
- sources."cspell-glob-8.17.3"
- sources."cspell-grammar-8.17.3"
- sources."cspell-io-8.17.3"
- sources."cspell-lib-8.17.3"
- sources."cspell-trie-lib-8.17.3"
+ sources."cspell-config-lib-8.17.5"
+ sources."cspell-dictionary-8.17.5"
+ sources."cspell-gitignore-8.17.5"
+ sources."cspell-glob-8.17.5"
+ sources."cspell-grammar-8.17.5"
+ sources."cspell-io-8.17.5"
+ sources."cspell-lib-8.17.5"
+ sources."cspell-trie-lib-8.17.5"
sources."env-paths-3.0.0"
sources."esprima-4.0.1"
sources."fast-equals-5.2.2"
sources."fast-json-stable-stringify-2.1.0"
- (
- sources."fdir-6.4.3"
- // {
- dependencies = [
- sources."picomatch-4.0.2"
- ];
- }
- )
+ (sources."fdir-6.4.3" // {
+ dependencies = [
+ sources."picomatch-4.0.2"
+ ];
+ })
sources."file-entry-cache-9.1.0"
sources."fill-range-7.1.1"
sources."find-up-simple-1.0.0"
sources."flat-cache-5.0.0"
- sources."flatted-3.3.2"
+ sources."flatted-3.3.3"
sources."gensequence-7.0.0"
sources."get-stdin-9.0.0"
sources."global-directory-4.0.1"
sources."has-own-prop-2.0.0"
- (
- sources."import-fresh-3.3.1"
- // {
- dependencies = [
- sources."parent-module-1.0.1"
- sources."resolve-from-4.0.0"
- ];
- }
- )
+ (sources."import-fresh-3.3.1" // {
+ dependencies = [
+ sources."parent-module-1.0.1"
+ sources."resolve-from-4.0.0"
+ ];
+ })
sources."import-meta-resolve-4.1.0"
sources."ini-4.1.1"
sources."is-number-7.0.0"
@@ -55864,14 +53004,11 @@ in
sources."repeat-string-1.6.1"
sources."resolve-from-5.0.0"
sources."semver-7.7.1"
- (
- sources."tinyglobby-0.2.10"
- // {
- dependencies = [
- sources."picomatch-4.0.2"
- ];
- }
- )
+ (sources."tinyglobby-0.2.12" // {
+ dependencies = [
+ sources."picomatch-4.0.2"
+ ];
+ })
sources."to-regex-range-5.0.1"
sources."vscode-languageserver-textdocument-1.0.12"
sources."vscode-uri-3.1.0"
@@ -55977,14 +53114,11 @@ in
sources."node-domexception-1.0.0"
sources."node-fetch-3.3.2"
sources."nopt-1.0.10"
- (
- sources."npm-run-path-5.3.0"
- // {
- dependencies = [
- sources."path-key-4.0.0"
- ];
- }
- )
+ (sources."npm-run-path-5.3.0" // {
+ dependencies = [
+ sources."path-key-4.0.0"
+ ];
+ })
sources."onetime-6.0.0"
sources."open-10.1.0"
sources."path-key-3.1.1"
@@ -56032,50 +53166,38 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@oclif/core-1.26.2"
sources."@oclif/linewrap-1.0.0"
- (
- sources."@oclif/plugin-help-5.2.20"
- // {
- dependencies = [
- sources."@oclif/core-2.16.0"
- ];
- }
- )
- (
- sources."@oclif/plugin-not-found-2.4.3"
- // {
- dependencies = [
- sources."@oclif/core-2.16.0"
- ];
- }
- )
- (
- sources."@oclif/plugin-update-3.2.4"
- // {
- dependencies = [
- sources."@oclif/core-2.16.0"
- ];
- }
- )
- (
- sources."@oclif/plugin-warn-if-update-available-2.1.1"
- // {
- dependencies = [
- sources."@oclif/core-2.16.0"
- ];
- }
- )
+ (sources."@oclif/plugin-help-5.2.20" // {
+ dependencies = [
+ sources."@oclif/core-2.16.0"
+ ];
+ })
+ (sources."@oclif/plugin-not-found-2.4.3" // {
+ dependencies = [
+ sources."@oclif/core-2.16.0"
+ ];
+ })
+ (sources."@oclif/plugin-update-3.2.4" // {
+ dependencies = [
+ sources."@oclif/core-2.16.0"
+ ];
+ })
+ (sources."@oclif/plugin-warn-if-update-available-2.1.1" // {
+ dependencies = [
+ sources."@oclif/core-2.16.0"
+ ];
+ })
sources."@oclif/screen-3.0.8"
- sources."@swc/core-1.10.16"
+ sources."@swc/core-1.10.18"
sources."@swc/counter-0.1.3"
sources."@swc/helpers-0.5.15"
- sources."@swc/types-0.1.17"
- sources."@swc/wasm-1.10.16"
+ sources."@swc/types-0.1.18"
+ sources."@swc/wasm-1.10.18"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
sources."@types/cli-progress-3.11.6"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."acorn-8.14.0"
sources."acorn-walk-8.3.4"
sources."ansi-escapes-4.3.2"
@@ -56099,14 +53221,11 @@ in
sources."byline-5.0.0"
sources."call-bind-apply-helpers-1.0.2"
sources."cardinal-2.1.1"
- (
- sources."chalk-4.1.2"
- // {
- dependencies = [
- sources."supports-color-7.2.0"
- ];
- }
- )
+ (sources."chalk-4.1.2" // {
+ dependencies = [
+ sources."supports-color-7.2.0"
+ ];
+ })
sources."chardet-0.7.0"
sources."chownr-1.1.4"
sources."clean-stack-3.0.1"
@@ -56144,22 +53263,16 @@ in
sources."fast-levenshtein-3.0.0"
sources."fastest-levenshtein-1.0.16"
sources."fastq-1.19.0"
- (
- sources."figures-3.2.0"
- // {
- dependencies = [
- sources."escape-string-regexp-1.0.5"
- ];
- }
- )
- (
- sources."filelist-1.0.4"
- // {
- dependencies = [
- sources."minimatch-5.1.6"
- ];
- }
- )
+ (sources."figures-3.2.0" // {
+ dependencies = [
+ sources."escape-string-regexp-1.0.5"
+ ];
+ })
+ (sources."filelist-1.0.4" // {
+ dependencies = [
+ sources."minimatch-5.1.6"
+ ];
+ })
sources."filesize-6.4.0"
sources."fill-range-7.1.1"
sources."follow-redirects-1.15.9"
@@ -56167,7 +53280,7 @@ in
sources."fs-constants-1.0.0"
sources."fs-extra-9.1.0"
sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-package-type-0.1.0"
sources."get-proto-1.0.1"
sources."glob-parent-5.1.2"
@@ -56185,14 +53298,11 @@ in
sources."ignore-5.3.2"
sources."indent-string-4.0.0"
sources."inherits-2.0.4"
- (
- sources."inquirer-8.2.6"
- // {
- dependencies = [
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
+ (sources."inquirer-8.2.6" // {
+ dependencies = [
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
sources."is-arrayish-0.2.1"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
@@ -56223,14 +53333,11 @@ in
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."mimic-fn-2.1.0"
- (
- sources."minimatch-3.1.2"
- // {
- dependencies = [
- sources."brace-expansion-1.1.11"
- ];
- }
- )
+ (sources."minimatch-3.1.2" // {
+ dependencies = [
+ sources."brace-expansion-1.1.11"
+ ];
+ })
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.3"
sources."mute-stream-0.0.8"
@@ -56254,7 +53361,7 @@ in
sources."reusify-1.0.4"
sources."run-async-2.4.1"
sources."run-parallel-1.2.0"
- sources."rxjs-7.8.1"
+ sources."rxjs-7.8.2"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.7.1"
@@ -56268,14 +53375,11 @@ in
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."supports-color-8.1.1"
- (
- sources."supports-hyperlinks-2.3.0"
- // {
- dependencies = [
- sources."supports-color-7.2.0"
- ];
- }
- )
+ (sources."supports-hyperlinks-2.3.0" // {
+ dependencies = [
+ sources."supports-color-7.2.0"
+ ];
+ })
sources."tar-fs-2.1.2"
sources."tar-stream-2.2.0"
sources."through-2.3.8"
@@ -56311,16 +53415,18 @@ in
elasticdump = nodeEnv.buildNodePackage {
name = "elasticdump";
packageName = "elasticdump";
- version = "6.118.0";
+ version = "6.119.1";
src = fetchurl {
- url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.118.0.tgz";
- sha512 = "VClh40kZmuJNMk6U46cXb9D94SvlV/5WO4Jvuz2D6wVDfboWG7d15apQ6+Hm8rHRZEsiWagDXQe+zQ7L7BtVFQ==";
+ url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.119.1.tgz";
+ sha512 = "8fO3I4N1cIw0406jkuNQFMPCe5kRzuQJ+0/ASovZF7qHTSz8sBbzubcgKYsSLeVi7C8kr3lAsb1SdHRuOB/krQ==";
};
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
+ sources."@shutterstock/p-map-iterable-1.1.2"
sources."@types/node-14.18.63"
sources."JSONStream-1.5.0"
+ sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
sources."asn1-0.2.6"
sources."assert-plus-1.0.0"
@@ -56340,6 +53446,7 @@ in
sources."call-bind-apply-helpers-1.0.2"
sources."call-bound-1.0.3"
sources."caseless-0.12.0"
+ sources."clean-stack-2.2.0"
sources."combined-stream-1.0.8"
sources."core-util-is-1.0.2"
sources."dashdash-1.14.1"
@@ -56351,7 +53458,6 @@ in
sources."es-define-property-1.0.1"
sources."es-errors-1.3.0"
sources."es-object-atoms-1.1.1"
- sources."eventemitter3-4.0.7"
sources."events-1.1.1"
sources."extend-3.0.2"
sources."extends-classes-1.0.5"
@@ -56363,7 +53469,7 @@ in
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."getpass-0.1.7"
sources."gopd-1.2.0"
@@ -56376,16 +53482,14 @@ in
sources."http-signature-1.2.0"
sources."http-status-1.8.1"
sources."ieee754-1.1.13"
+ sources."indent-string-4.0.0"
sources."inherits-2.0.4"
sources."ini-2.0.0"
- (
- sources."ip-address-6.1.0"
- // {
- dependencies = [
- sources."jsbn-1.1.0"
- ];
- }
- )
+ (sources."ip-address-6.1.0" // {
+ dependencies = [
+ sources."jsbn-1.1.0"
+ ];
+ })
sources."is-arguments-1.2.0"
sources."is-callable-1.2.7"
sources."is-generator-function-1.1.0"
@@ -56418,39 +53522,27 @@ in
sources."mime-types-2.1.35"
sources."minimist-1.2.8"
sources."oauth-sign-0.9.0"
- sources."p-finally-1.0.0"
- sources."p-queue-6.6.2"
- sources."p-timeout-3.2.0"
sources."performance-now-2.1.0"
sources."possible-typed-array-names-1.1.0"
sources."process-nextick-args-2.0.1"
- (
- sources."psl-1.15.0"
- // {
- dependencies = [
- sources."punycode-2.3.1"
- ];
- }
- )
+ (sources."psl-1.15.0" // {
+ dependencies = [
+ sources."punycode-2.3.1"
+ ];
+ })
sources."punycode-1.3.2"
sources."qs-6.5.3"
sources."querystring-0.2.0"
- (
- sources."readable-stream-2.3.8"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
- (
- sources."request-2.88.2"
- // {
- dependencies = [
- sources."uuid-3.4.0"
- ];
- }
- )
+ (sources."readable-stream-2.3.8" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."uuid-3.4.0"
+ ];
+ })
sources."requestretry-7.1.0"
sources."s3-stream-upload-2.0.2"
sources."s3signed-0.1.0"
@@ -56466,33 +53558,24 @@ in
sources."socks5-https-client-1.2.1"
sources."sprintf-js-1.1.2"
sources."sshpk-1.18.0"
- (
- sources."string_decoder-1.1.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."through-2.3.8"
- (
- sources."tough-cookie-2.5.0"
- // {
- dependencies = [
- sources."punycode-2.3.1"
- ];
- }
- )
+ (sources."tough-cookie-2.5.0" // {
+ dependencies = [
+ sources."punycode-2.3.1"
+ ];
+ })
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- (
- sources."uri-js-4.4.1"
- // {
- dependencies = [
- sources."punycode-2.3.1"
- ];
- }
- )
+ (sources."uri-js-4.4.1" // {
+ dependencies = [
+ sources."punycode-2.3.1"
+ ];
+ })
sources."url-0.10.3"
sources."util-0.12.5"
sources."util-deprecate-1.0.2"
@@ -56516,89 +53599,68 @@ in
"@electron-forge/cli" = nodeEnv.buildNodePackage {
name = "_at_electron-forge_slash_cli";
packageName = "@electron-forge/cli";
- version = "7.6.1";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-7.6.1.tgz";
- sha512 = "Z9OwK5cAVDOj7MWWt9Gw0/4OJO/db+rshLSXg0I+ySv4xrJmZK1w6QEeOrm7eHjuAqKA+gzIaHsRsT0klCL2lg==";
+ url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-7.7.0.tgz";
+ sha512 = "QfnjghmlHMb7dyArR5cbPA+MP9ff/ulWZi6R/a5MkHlKyhrysRfjzDtZDsmkEv9mGQgRwylssgXrZrKHGlxFkw==";
};
dependencies = [
- sources."@electron-forge/core-7.6.1"
- sources."@electron-forge/core-utils-7.6.1"
- sources."@electron-forge/maker-base-7.6.1"
- sources."@electron-forge/plugin-base-7.6.1"
- sources."@electron-forge/publisher-base-7.6.1"
- sources."@electron-forge/shared-types-7.6.1"
- sources."@electron-forge/template-base-7.6.1"
- sources."@electron-forge/template-vite-7.6.1"
- sources."@electron-forge/template-vite-typescript-7.6.1"
- sources."@electron-forge/template-webpack-7.6.1"
- sources."@electron-forge/template-webpack-typescript-7.6.1"
- sources."@electron-forge/tracer-7.6.1"
- (
- sources."@electron/asar-3.3.1"
- // {
- dependencies = [
- sources."commander-5.1.0"
- ];
- }
- )
- (
- sources."@electron/get-3.1.0"
- // {
- dependencies = [
- sources."fs-extra-8.1.0"
- sources."jsonfile-4.0.0"
- sources."semver-6.3.1"
- sources."universalify-0.1.2"
- ];
- }
- )
- (
- sources."@electron/node-gyp-git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."glob-8.1.0"
- sources."minimatch-5.1.6"
- ];
- }
- )
- (
- sources."@electron/notarize-2.5.0"
- // {
- dependencies = [
- sources."fs-extra-9.1.0"
- ];
- }
- )
+ sources."@electron-forge/core-7.7.0"
+ sources."@electron-forge/core-utils-7.7.0"
+ sources."@electron-forge/maker-base-7.7.0"
+ sources."@electron-forge/plugin-base-7.7.0"
+ sources."@electron-forge/publisher-base-7.7.0"
+ sources."@electron-forge/shared-types-7.7.0"
+ sources."@electron-forge/template-base-7.7.0"
+ sources."@electron-forge/template-vite-7.7.0"
+ sources."@electron-forge/template-vite-typescript-7.7.0"
+ sources."@electron-forge/template-webpack-7.7.0"
+ sources."@electron-forge/template-webpack-typescript-7.7.0"
+ sources."@electron-forge/tracer-7.7.0"
+ (sources."@electron/asar-3.3.1" // {
+ dependencies = [
+ sources."commander-5.1.0"
+ ];
+ })
+ (sources."@electron/get-3.1.0" // {
+ dependencies = [
+ sources."fs-extra-8.1.0"
+ sources."jsonfile-4.0.0"
+ sources."semver-6.3.1"
+ sources."universalify-0.1.2"
+ ];
+ })
+ (sources."@electron/node-gyp-git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."glob-8.1.0"
+ sources."minimatch-5.1.6"
+ ];
+ })
+ (sources."@electron/notarize-2.5.0" // {
+ dependencies = [
+ sources."fs-extra-9.1.0"
+ ];
+ })
sources."@electron/osx-sign-1.3.2"
- (
- sources."@electron/packager-18.3.6"
- // {
- dependencies = [
- sources."fs-extra-11.3.0"
- ];
- }
- )
+ (sources."@electron/packager-18.3.6" // {
+ dependencies = [
+ sources."fs-extra-11.3.0"
+ ];
+ })
sources."@electron/rebuild-3.7.1"
- (
- sources."@electron/universal-2.0.1"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."fs-extra-11.3.0"
- sources."minimatch-9.0.5"
- ];
- }
- )
- (
- sources."@electron/windows-sign-1.2.1"
- // {
- dependencies = [
- sources."fs-extra-11.3.0"
- ];
- }
- )
+ (sources."@electron/universal-2.0.1" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."fs-extra-11.3.0"
+ sources."minimatch-9.0.5"
+ ];
+ })
+ (sources."@electron/windows-sign-1.2.1" // {
+ dependencies = [
+ sources."fs-extra-11.3.0"
+ ];
+ })
sources."@gar/promisify-1.1.3"
sources."@malept/cross-spawn-promise-2.0.0"
sources."@nodelib/fs.scandir-2.1.5"
@@ -56612,7 +53674,7 @@ in
sources."@types/cacheable-request-6.0.3"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/responselike-1.0.3"
sources."@types/yauzl-2.10.3"
sources."@xmldom/xmldom-0.8.10"
@@ -56634,16 +53696,13 @@ in
sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
- (
- sources."cacache-16.1.3"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."glob-8.1.0"
- sources."minimatch-5.1.6"
- ];
- }
- )
+ (sources."cacache-16.1.3" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."glob-8.1.0"
+ sources."minimatch-5.1.6"
+ ];
+ })
sources."cacheable-lookup-5.0.4"
sources."cacheable-request-7.0.4"
sources."chalk-4.1.2"
@@ -56652,48 +53711,38 @@ in
sources."clean-stack-2.2.0"
sources."cli-cursor-3.1.0"
sources."cli-spinners-2.9.2"
- (
- sources."cli-truncate-3.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."emoji-regex-9.2.2"
- sources."string-width-5.1.2"
- sources."strip-ansi-7.1.0"
- ];
- }
- )
+ (sources."cli-truncate-3.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."emoji-regex-9.2.2"
+ sources."string-width-5.1.2"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
sources."cliui-8.0.1"
sources."clone-1.0.4"
sources."clone-response-1.0.3"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."colorette-2.0.20"
- sources."commander-4.1.1"
+ sources."commander-11.1.0"
sources."compare-version-0.1.2"
sources."concat-map-0.0.1"
sources."cross-dirname-0.1.0"
sources."cross-spawn-7.0.6"
- (
- sources."debug-4.4.0"
- // {
- dependencies = [
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."decompress-response-6.0.0"
- // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- }
- )
+ (sources."debug-4.4.0" // {
+ dependencies = [
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."decompress-response-6.0.0" // {
+ dependencies = [
+ sources."mimic-response-3.1.0"
+ ];
+ })
sources."defaults-1.0.4"
sources."defer-to-connect-2.0.1"
sources."detect-libc-2.0.3"
- sources."detect-package-manager-3.0.2"
sources."dir-compare-4.2.0"
sources."eastasianwidth-0.2.0"
sources."emoji-regex-8.0.0"
@@ -56705,15 +53754,17 @@ in
sources."escalade-3.2.0"
sources."escape-string-regexp-1.0.5"
sources."eventemitter3-5.0.1"
- (
- sources."execa-5.1.1"
- // {
- dependencies = [
- sources."get-stream-6.0.1"
- ];
- }
- )
- sources."expand-tilde-2.0.2"
+ (sources."execa-1.0.0" // {
+ dependencies = [
+ sources."cross-spawn-6.0.6"
+ sources."get-stream-4.1.0"
+ sources."path-key-2.0.1"
+ sources."semver-5.7.2"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."which-1.3.1"
+ ];
+ })
sources."exponential-backoff-3.1.2"
sources."extract-zip-2.0.1"
sources."fast-glob-3.3.3"
@@ -56722,16 +53773,13 @@ in
sources."filename-reserved-regex-2.0.0"
sources."filenamify-4.3.0"
sources."fill-range-7.1.1"
- (
- sources."find-up-5.0.0"
- // {
- dependencies = [
- sources."locate-path-6.0.0"
- sources."p-locate-5.0.0"
- sources."path-exists-4.0.0"
- ];
- }
- )
+ (sources."find-up-5.0.0" // {
+ dependencies = [
+ sources."locate-path-6.0.0"
+ sources."p-locate-5.0.0"
+ sources."path-exists-4.0.0"
+ ];
+ })
sources."flora-colossus-2.0.0"
sources."fs-extra-10.1.0"
sources."fs-minipass-2.1.0"
@@ -56739,38 +53787,24 @@ in
sources."function-bind-1.1.2"
sources."galactus-1.0.0"
sources."get-caller-file-2.0.5"
- sources."get-installed-path-2.1.1"
- (
- sources."get-package-info-1.0.0"
- // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- }
- )
+ (sources."get-package-info-1.0.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
sources."get-stream-5.2.0"
sources."glob-7.2.3"
sources."glob-parent-5.1.2"
- sources."global-modules-1.0.0"
- (
- sources."global-prefix-1.0.2"
- // {
- dependencies = [
- sources."which-1.3.1"
- ];
- }
- )
+ sources."global-dirs-3.0.1"
sources."got-11.8.6"
sources."graceful-fs-4.2.11"
sources."has-flag-4.0.0"
sources."hasown-2.0.2"
- sources."homedir-polyfill-1.0.3"
sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-4.1.1"
sources."http-proxy-agent-5.0.0"
sources."http2-wrapper-1.0.3"
sources."https-proxy-agent-5.0.1"
- sources."human-signals-2.1.0"
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.6.3"
sources."ieee754-1.2.1"
@@ -56779,7 +53813,7 @@ in
sources."infer-owner-1.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.8"
+ sources."ini-2.0.0"
sources."interpret-3.1.1"
sources."ip-address-9.0.5"
sources."is-arrayish-0.2.1"
@@ -56790,9 +53824,8 @@ in
sources."is-interactive-1.0.0"
sources."is-lambda-1.0.1"
sources."is-number-7.0.0"
- sources."is-stream-2.0.1"
+ sources."is-stream-1.1.0"
sources."is-unicode-supported-0.1.0"
- sources."is-windows-1.0.2"
sources."isbinaryfile-4.0.10"
sources."isexe-2.0.0"
sources."jsbn-1.1.0"
@@ -56800,45 +53833,38 @@ in
sources."jsonfile-6.1.0"
sources."junk-3.1.0"
sources."keyv-4.5.4"
- (
- sources."listr2-7.0.2"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."emoji-regex-9.2.2"
- sources."string-width-5.1.2"
- sources."strip-ansi-7.1.0"
- sources."wrap-ansi-8.1.0"
- ];
- }
- )
+ (sources."listr2-7.0.2" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-9.2.2"
+ sources."string-width-5.1.2"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-8.1.0"
+ ];
+ })
sources."load-json-file-2.0.0"
sources."locate-path-2.0.0"
sources."lodash-4.17.21"
sources."lodash.get-4.4.2"
sources."log-symbols-4.1.0"
- (
- sources."log-update-5.0.1"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."cli-cursor-4.0.0"
- sources."emoji-regex-9.2.2"
- sources."restore-cursor-4.0.0"
- sources."string-width-5.1.2"
- sources."strip-ansi-7.1.0"
- sources."wrap-ansi-8.1.0"
- ];
- }
- )
+ (sources."log-update-5.0.1" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."cli-cursor-4.0.0"
+ sources."emoji-regex-9.2.2"
+ sources."restore-cursor-4.0.0"
+ sources."string-width-5.1.2"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-8.1.0"
+ ];
+ })
sources."lowercase-keys-2.0.0"
sources."lru-cache-7.18.3"
sources."make-fetch-happen-10.2.1"
sources."map-age-cleaner-0.1.3"
sources."mem-4.3.0"
- sources."merge-stream-2.0.0"
sources."merge2-1.4.1"
sources."micromatch-4.0.8"
sources."mimic-fn-2.1.0"
@@ -56860,16 +53886,17 @@ in
sources."node-api-version-0.2.0"
sources."node-fetch-2.7.0"
sources."nopt-6.0.0"
- (
- sources."normalize-package-data-2.5.0"
- // {
- dependencies = [
- sources."semver-5.7.2"
- ];
- }
- )
+ (sources."normalize-package-data-2.5.0" // {
+ dependencies = [
+ sources."semver-5.7.2"
+ ];
+ })
sources."normalize-url-6.1.0"
- sources."npm-run-path-4.0.1"
+ (sources."npm-run-path-2.0.2" // {
+ dependencies = [
+ sources."path-key-2.0.1"
+ ];
+ })
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."ora-5.4.1"
@@ -56878,19 +53905,15 @@ in
sources."p-finally-1.0.0"
sources."p-is-promise-2.1.0"
sources."p-limit-3.1.0"
- (
- sources."p-locate-2.0.0"
- // {
- dependencies = [
- sources."p-limit-1.3.0"
- ];
- }
- )
+ (sources."p-locate-2.0.0" // {
+ dependencies = [
+ sources."p-limit-1.3.0"
+ ];
+ })
sources."p-map-4.0.0"
sources."p-try-1.0.0"
sources."parse-author-2.0.0"
sources."parse-json-2.2.0"
- sources."parse-passwd-1.0.0"
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
@@ -56901,14 +53924,11 @@ in
sources."picomatch-2.3.1"
sources."pify-2.3.0"
sources."plist-3.1.0"
- (
- sources."postject-1.0.0-alpha.6"
- // {
- dependencies = [
- sources."commander-9.5.0"
- ];
- }
- )
+ (sources."postject-1.0.0-alpha.6" // {
+ dependencies = [
+ sources."commander-9.5.0"
+ ];
+ })
sources."proc-log-2.0.1"
sources."progress-2.0.3"
sources."promise-inflight-1.0.1"
@@ -56918,22 +53938,17 @@ in
sources."quick-lru-5.1.1"
sources."read-binary-file-arch-1.0.6"
sources."read-pkg-2.0.0"
- (
- sources."read-pkg-up-2.0.0"
- // {
- dependencies = [
- sources."find-up-2.1.0"
- ];
- }
- )
+ (sources."read-pkg-up-2.0.0" // {
+ dependencies = [
+ sources."find-up-2.1.0"
+ ];
+ })
sources."readable-stream-3.6.2"
sources."rechoir-0.8.0"
sources."require-directory-2.1.1"
sources."resedit-2.0.3"
sources."resolve-1.22.10"
sources."resolve-alpn-1.2.1"
- sources."resolve-dir-1.0.1"
- sources."resolve-package-1.0.1"
sources."responselike-2.0.1"
sources."restore-cursor-3.1.0"
sources."retry-0.12.0"
@@ -56947,15 +53962,12 @@ in
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.7"
- (
- sources."slice-ansi-5.0.0"
- // {
- dependencies = [
- sources."ansi-styles-6.2.1"
- sources."is-fullwidth-code-point-4.0.0"
- ];
- }
- )
+ (sources."slice-ansi-5.0.0" // {
+ dependencies = [
+ sources."ansi-styles-6.2.1"
+ sources."is-fullwidth-code-point-4.0.0"
+ ];
+ })
sources."smart-buffer-4.2.0"
sources."socks-2.8.4"
sources."socks-proxy-agent-7.0.0"
@@ -56972,20 +53984,16 @@ in
sources."strip-ansi-6.0.1"
sources."strip-bom-3.0.0"
sources."strip-eof-1.0.0"
- sources."strip-final-newline-2.0.0"
sources."strip-outer-1.0.1"
sources."sudo-prompt-9.2.1"
sources."sumchecker-3.0.1"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- (
- sources."tar-6.2.1"
- // {
- dependencies = [
- sources."minipass-5.0.0"
- ];
- }
- )
+ (sources."tar-6.2.1" // {
+ dependencies = [
+ sources."minipass-5.0.0"
+ ];
+ })
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."trim-repeated-1.0.0"
@@ -56994,23 +54002,7 @@ in
sources."unique-filename-2.0.1"
sources."unique-slug-3.0.0"
sources."universalify-2.0.1"
- (
- sources."username-5.1.0"
- // {
- dependencies = [
- sources."cross-spawn-6.0.6"
- sources."execa-1.0.0"
- sources."get-stream-4.1.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."path-key-2.0.1"
- sources."semver-5.7.2"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."which-1.3.1"
- ];
- }
- )
+ sources."username-5.1.0"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
sources."wcwidth-1.0.1"
@@ -57065,7 +54057,7 @@ in
};
dependencies = [
sources."@alcalzone/ansi-tokenize-0.1.3"
- sources."@types/react-19.0.9"
+ sources."@types/react-19.0.10"
sources."ajv-8.17.1"
sources."ajv-formats-2.1.1"
sources."ansi-escapes-7.0.0"
@@ -57077,14 +54069,11 @@ in
sources."chalk-5.4.1"
sources."cli-boxes-3.0.0"
sources."cli-cursor-4.0.0"
- (
- sources."cli-truncate-4.0.0"
- // {
- dependencies = [
- sources."slice-ansi-5.0.0"
- ];
- }
- )
+ (sources."cli-truncate-4.0.0" // {
+ dependencies = [
+ sources."slice-ansi-5.0.0"
+ ];
+ })
sources."clipboardy-4.0.0"
sources."code-excerpt-4.0.0"
sources."conf-12.0.0"
@@ -57106,23 +54095,17 @@ in
sources."get-stream-8.0.1"
sources."human-signals-5.0.0"
sources."indent-string-5.0.0"
- (
- sources."ink-5.1.0"
- // {
- dependencies = [
- sources."signal-exit-3.0.7"
- sources."type-fest-4.34.1"
- ];
- }
- )
- (
- sources."ink-text-input-6.0.0"
- // {
- dependencies = [
- sources."type-fest-4.34.1"
- ];
- }
- )
+ (sources."ink-5.1.0" // {
+ dependencies = [
+ sources."signal-exit-3.0.7"
+ sources."type-fest-4.35.0"
+ ];
+ })
+ (sources."ink-text-input-6.0.0" // {
+ dependencies = [
+ sources."type-fest-4.35.0"
+ ];
+ })
sources."is-docker-3.0.0"
sources."is-fullwidth-code-point-4.0.0"
sources."is-in-ci-1.0.0"
@@ -57141,40 +54124,31 @@ in
sources."merge-stream-2.0.0"
sources."mimic-fn-4.0.0"
sources."node-gyp-build-4.8.4"
- (
- sources."npm-run-path-5.3.0"
- // {
- dependencies = [
- sources."path-key-4.0.0"
- ];
- }
- )
+ (sources."npm-run-path-5.3.0" // {
+ dependencies = [
+ sources."path-key-4.0.0"
+ ];
+ })
sources."onetime-6.0.0"
sources."p-defer-1.0.0"
sources."patch-console-2.0.0"
sources."path-key-3.1.1"
sources."react-18.3.1"
- (
- sources."react-devtools-core-4.28.5"
- // {
- dependencies = [
- sources."utf-8-validate-5.0.10"
- sources."ws-7.5.10"
- ];
- }
- )
+ (sources."react-devtools-core-4.28.5" // {
+ dependencies = [
+ sources."utf-8-validate-5.0.10"
+ sources."ws-7.5.10"
+ ];
+ })
sources."react-reconciler-0.29.2"
sources."require-from-string-2.0.2"
- (
- sources."restore-cursor-4.0.0"
- // {
- dependencies = [
- sources."mimic-fn-2.1.0"
- sources."onetime-5.1.2"
- sources."signal-exit-3.0.7"
- ];
- }
- )
+ (sources."restore-cursor-4.0.0" // {
+ dependencies = [
+ sources."mimic-fn-2.1.0"
+ sources."onetime-5.1.2"
+ sources."signal-exit-3.0.7"
+ ];
+ })
sources."scheduler-0.23.2"
sources."semver-7.7.1"
sources."shebang-command-2.0.0"
@@ -57182,14 +54156,11 @@ in
sources."shell-quote-1.8.2"
sources."signal-exit-4.1.0"
sources."skin-tone-4.0.0"
- (
- sources."slice-ansi-7.1.0"
- // {
- dependencies = [
- sources."is-fullwidth-code-point-5.0.0"
- ];
- }
- )
+ (sources."slice-ansi-7.1.0" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-5.0.0"
+ ];
+ })
sources."stack-utils-2.0.6"
sources."string-width-7.2.0"
sources."strip-ansi-7.1.0"
@@ -57204,7 +54175,7 @@ in
sources."which-2.0.2"
sources."widest-line-5.0.0"
sources."wrap-ansi-9.0.0"
- sources."ws-8.18.0"
+ sources."ws-8.18.1"
sources."yoga-wasm-web-0.3.3"
];
buildInputs = globalBuildInputs;
@@ -57283,8 +54254,8 @@ in
sources."@babel/helper-validator-identifier-7.25.9"
sources."@puppeteer/browsers-2.3.0"
sources."@tootallnate/quickjs-emscripten-0.23.0"
- sources."@types/node-22.13.4"
- sources."@types/react-19.0.9"
+ sources."@types/node-22.13.5"
+ sources."@types/react-19.0.10"
sources."@types/yauzl-2.10.3"
sources."agent-base-7.1.3"
sources."ansi-escapes-7.0.0"
@@ -57305,28 +54276,22 @@ in
sources."cli-boxes-3.0.0"
sources."cli-cursor-4.0.0"
sources."cli-spinners-2.9.2"
- (
- sources."cli-truncate-4.0.0"
- // {
- dependencies = [
- sources."slice-ansi-5.0.0"
- ];
- }
- )
- (
- sources."cliui-8.0.1"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."is-fullwidth-code-point-3.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- sources."wrap-ansi-7.0.0"
- ];
- }
- )
+ (sources."cli-truncate-4.0.0" // {
+ dependencies = [
+ sources."slice-ansi-5.0.0"
+ ];
+ })
+ (sources."cliui-8.0.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ sources."wrap-ansi-7.0.0"
+ ];
+ })
sources."code-excerpt-4.0.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
@@ -57382,7 +54347,7 @@ in
sources."node-gyp-build-4.8.4"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."pac-proxy-agent-7.1.0"
+ sources."pac-proxy-agent-7.2.0"
sources."pac-resolver-7.0.1"
sources."parent-module-1.0.1"
sources."parse-json-5.2.0"
@@ -57396,15 +54361,12 @@ in
sources."puppeteer-22.15.0"
sources."puppeteer-core-22.15.0"
sources."react-18.3.1"
- (
- sources."react-devtools-core-4.28.5"
- // {
- dependencies = [
- sources."utf-8-validate-5.0.10"
- sources."ws-7.5.10"
- ];
- }
- )
+ (sources."react-devtools-core-4.28.5" // {
+ dependencies = [
+ sources."utf-8-validate-5.0.10"
+ sources."ws-7.5.10"
+ ];
+ })
sources."react-reconciler-0.29.2"
sources."require-directory-2.1.1"
sources."resolve-from-4.0.0"
@@ -57413,14 +54375,11 @@ in
sources."semver-7.7.1"
sources."shell-quote-1.8.2"
sources."signal-exit-3.0.7"
- (
- sources."slice-ansi-7.1.0"
- // {
- dependencies = [
- sources."is-fullwidth-code-point-5.0.0"
- ];
- }
- )
+ (sources."slice-ansi-7.1.0" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-5.0.0"
+ ];
+ })
sources."smart-buffer-4.2.0"
sources."socks-2.8.4"
sources."socks-proxy-agent-8.0.5"
@@ -57435,7 +54394,7 @@ in
sources."text-decoder-1.2.3"
sources."through-2.3.8"
sources."tslib-2.8.1"
- sources."type-fest-4.34.1"
+ sources."type-fest-4.35.0"
sources."typescript-5.7.3"
sources."unbzip2-stream-1.4.3"
sources."undici-types-6.20.0"
@@ -57445,20 +54404,17 @@ in
sources."widest-line-5.0.0"
sources."wrap-ansi-9.0.0"
sources."wrappy-1.0.2"
- sources."ws-8.18.0"
+ sources."ws-8.18.1"
sources."y18n-5.0.8"
- (
- sources."yargs-17.7.2"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."emoji-regex-8.0.0"
- sources."is-fullwidth-code-point-3.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."yargs-17.7.2" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."emoji-regex-8.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."yargs-parser-21.1.1"
sources."yauzl-2.10.0"
sources."yoga-wasm-web-0.3.3"
@@ -57484,41 +54440,28 @@ in
};
dependencies = [
sources."@balena/dockerignore-1.0.2"
- (
- sources."@eslint-community/eslint-utils-4.4.1"
- // {
- dependencies = [
- sources."eslint-visitor-keys-3.4.3"
- ];
- }
- )
+ (sources."@eslint-community/eslint-utils-4.4.1" // {
+ dependencies = [
+ sources."eslint-visitor-keys-3.4.3"
+ ];
+ })
sources."@eslint-community/regexpp-4.12.1"
sources."@eslint/config-array-0.19.2"
- sources."@eslint/core-0.11.0"
- sources."@eslint/eslintrc-3.2.0"
- sources."@eslint/js-9.20.0"
+ sources."@eslint/core-0.12.0"
+ sources."@eslint/eslintrc-3.3.0"
+ sources."@eslint/js-9.21.0"
sources."@eslint/object-schema-2.1.6"
- (
- sources."@eslint/plugin-kit-0.2.5"
- // {
- dependencies = [
- sources."@eslint/core-0.10.0"
- ];
- }
- )
+ sources."@eslint/plugin-kit-0.2.7"
sources."@grpc/grpc-js-1.12.6"
sources."@grpc/proto-loader-0.7.13"
sources."@humanfs/core-0.19.1"
- (
- sources."@humanfs/node-0.16.6"
- // {
- dependencies = [
- sources."@humanwhocodes/retry-0.3.1"
- ];
- }
- )
+ (sources."@humanfs/node-0.16.6" // {
+ dependencies = [
+ sources."@humanwhocodes/retry-0.3.1"
+ ];
+ })
sources."@humanwhocodes/module-importer-1.0.1"
- sources."@humanwhocodes/retry-0.4.1"
+ sources."@humanwhocodes/retry-0.4.2"
sources."@inquirer/checkbox-4.1.2"
sources."@inquirer/confirm-5.1.6"
sources."@inquirer/core-10.1.7"
@@ -57538,14 +54481,11 @@ in
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@pnpm/config.env-replace-1.1.0"
- (
- sources."@pnpm/network.ca-file-1.0.2"
- // {
- dependencies = [
- sources."graceful-fs-4.2.10"
- ];
- }
- )
+ (sources."@pnpm/network.ca-file-1.0.2" // {
+ dependencies = [
+ sources."graceful-fs-4.2.10"
+ ];
+ })
sources."@pnpm/npm-conf-2.3.1"
sources."@protobufjs/aspromise-1.1.2"
sources."@protobufjs/base64-1.1.2"
@@ -57569,7 +54509,7 @@ in
sources."@types/hast-3.0.4"
sources."@types/json-schema-7.0.15"
sources."@types/mdast-4.0.4"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/unist-3.0.3"
sources."@ungap/structured-clone-1.3.0"
sources."acorn-8.14.0"
@@ -57587,16 +54527,13 @@ in
sources."base64-js-1.5.1"
sources."bcrypt-pbkdf-1.0.2"
sources."bl-4.1.0"
- (
- sources."boxen-5.1.2"
- // {
- dependencies = [
- sources."chalk-4.1.2"
- sources."type-fest-0.20.2"
- sources."wrap-ansi-7.0.0"
- ];
- }
- )
+ (sources."boxen-5.1.2" // {
+ dependencies = [
+ sources."chalk-4.1.2"
+ sources."type-fest-0.20.2"
+ sources."wrap-ansi-7.0.0"
+ ];
+ })
sources."brace-expansion-1.1.11"
sources."braces-3.0.3"
sources."btoa-lite-1.0.0"
@@ -57613,14 +54550,11 @@ in
sources."chownr-1.1.4"
sources."cli-boxes-2.2.1"
sources."cli-width-4.1.0"
- (
- sources."cliui-8.0.1"
- // {
- dependencies = [
- sources."wrap-ansi-7.0.0"
- ];
- }
- )
+ (sources."cliui-8.0.1" // {
+ dependencies = [
+ sources."wrap-ansi-7.0.0"
+ ];
+ })
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."comma-separated-tokens-2.0.3"
@@ -57639,38 +54573,29 @@ in
sources."devlop-1.1.0"
sources."docker-modem-5.0.6"
sources."dockerode-4.0.4"
- (
- sources."dot-prop-9.0.0"
- // {
- dependencies = [
- sources."type-fest-4.34.1"
- ];
- }
- )
+ (sources."dot-prop-9.0.0" // {
+ dependencies = [
+ sources."type-fest-4.35.0"
+ ];
+ })
sources."dotenv-8.6.0"
sources."emoji-regex-8.0.0"
sources."emoji-regex-xs-1.0.0"
- (
- sources."encoding-0.1.13"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
+ (sources."encoding-0.1.13" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."end-of-stream-1.4.4"
sources."escalade-3.2.0"
sources."escape-goat-4.0.0"
sources."escape-string-regexp-4.0.0"
- (
- sources."eslint-9.20.1"
- // {
- dependencies = [
- sources."chalk-4.1.2"
- sources."glob-parent-6.0.2"
- ];
- }
- )
+ (sources."eslint-9.21.0" // {
+ dependencies = [
+ sources."chalk-4.1.2"
+ sources."glob-parent-6.0.2"
+ ];
+ })
sources."eslint-scope-8.2.0"
sources."eslint-visitor-keys-4.2.0"
sources."espree-10.3.0"
@@ -57686,44 +54611,35 @@ in
sources."fast-levenshtein-2.0.6"
sources."fastq-1.19.0"
sources."fauna-2.5.0"
- (
- sources."faunadb-4.8.2"
- // {
- dependencies = [
- sources."chalk-4.1.2"
- ];
- }
- )
+ (sources."faunadb-4.8.2" // {
+ dependencies = [
+ sources."chalk-4.1.2"
+ ];
+ })
sources."file-entry-cache-8.0.0"
sources."fill-range-7.1.1"
sources."find-up-5.0.0"
sources."flat-cache-4.0.1"
- sources."flatted-3.3.2"
+ sources."flatted-3.3.3"
sources."fn-annotate-1.2.0"
sources."fs-constants-1.0.0"
sources."get-caller-file-2.0.5"
sources."get-east-asian-width-1.3.0"
sources."glob-parent-5.1.2"
- (
- sources."global-directory-4.0.1"
- // {
- dependencies = [
- sources."ini-4.1.1"
- ];
- }
- )
+ (sources."global-directory-4.0.1" // {
+ dependencies = [
+ sources."ini-4.1.1"
+ ];
+ })
sources."globals-14.0.0"
sources."graceful-fs-4.2.11"
- (
- sources."has-ansi-6.0.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- ];
- }
- )
+ (sources."has-ansi-6.0.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ ];
+ })
sources."has-flag-4.0.0"
- sources."hast-util-to-html-9.0.4"
+ sources."hast-util-to-html-9.0.5"
sources."hast-util-whitespace-3.0.0"
sources."html-void-elements-3.0.0"
sources."iconv-lite-0.4.24"
@@ -57758,7 +54674,7 @@ in
sources."locate-path-6.0.0"
sources."lodash.camelcase-4.3.0"
sources."lodash.merge-4.6.2"
- sources."long-5.3.0"
+ sources."long-5.3.1"
sources."lower-case-2.0.2"
sources."luxon-3.5.0"
sources."mdast-util-to-hast-13.2.0"
@@ -57793,21 +54709,18 @@ in
sources."path-key-3.1.1"
sources."picomatch-2.3.1"
sources."prelude-ls-1.2.1"
- sources."property-information-6.5.0"
+ sources."property-information-7.0.0"
sources."proto-list-1.2.4"
sources."protobufjs-7.4.0"
sources."pump-3.0.2"
sources."punycode-2.3.1"
sources."pupa-3.1.0"
sources."queue-microtask-1.2.3"
- (
- sources."rc-1.2.8"
- // {
- dependencies = [
- sources."strip-json-comments-2.0.1"
- ];
- }
- )
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."strip-json-comments-2.0.1"
+ ];
+ })
sources."readable-stream-3.6.2"
sources."regex-5.1.1"
sources."regex-recursion-5.1.1"
@@ -57820,7 +54733,7 @@ in
sources."run-applescript-7.0.0"
sources."run-async-3.0.0"
sources."run-parallel-1.2.0"
- sources."rxjs-7.8.1"
+ sources."rxjs-7.8.2"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.7.1"
@@ -57854,24 +54767,21 @@ in
sources."unist-util-stringify-position-4.0.0"
sources."unist-util-visit-5.0.0"
sources."unist-util-visit-parents-6.0.1"
- (
- sources."update-notifier-7.3.1"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."boxen-8.0.1"
- sources."camelcase-8.0.0"
- sources."cli-boxes-3.0.0"
- sources."emoji-regex-10.4.0"
- sources."string-width-7.2.0"
- sources."strip-ansi-7.1.0"
- sources."type-fest-4.34.1"
- sources."widest-line-5.0.0"
- sources."wrap-ansi-9.0.0"
- ];
- }
- )
+ (sources."update-notifier-7.3.1" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."boxen-8.0.1"
+ sources."camelcase-8.0.0"
+ sources."cli-boxes-3.0.0"
+ sources."emoji-regex-10.4.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ sources."type-fest-4.35.0"
+ sources."widest-line-5.0.0"
+ sources."wrap-ansi-9.0.0"
+ ];
+ })
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."uuid-10.0.0"
@@ -57938,14 +54848,11 @@ in
sources."escape-string-regexp-5.0.0"
sources."execa-8.0.1"
sources."external-editor-3.1.0"
- (
- sources."figures-5.0.0"
- // {
- dependencies = [
- sources."is-unicode-supported-1.3.0"
- ];
- }
- )
+ (sources."figures-5.0.0" // {
+ dependencies = [
+ sources."is-unicode-supported-1.3.0"
+ ];
+ })
sources."fkill-9.0.0"
sources."fuzzy-search-3.2.1"
sources."get-east-asian-width-1.3.0"
@@ -57956,66 +54863,51 @@ in
sources."ieee754-1.2.1"
sources."indent-string-5.0.0"
sources."inherits-2.0.4"
- (
- sources."inquirer-9.3.7"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."emoji-regex-8.0.0"
- sources."is-fullwidth-code-point-3.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
- (
- sources."inquirer-autocomplete-prompt-3.0.1"
- // {
- dependencies = [
- sources."ansi-escapes-6.2.1"
- sources."run-async-2.4.1"
- ];
- }
- )
+ (sources."inquirer-9.3.7" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."emoji-regex-8.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
+ (sources."inquirer-autocomplete-prompt-3.0.1" // {
+ dependencies = [
+ sources."ansi-escapes-6.2.1"
+ sources."run-async-2.4.1"
+ ];
+ })
sources."is-fullwidth-code-point-4.0.0"
sources."is-interactive-1.0.0"
sources."is-stream-3.0.0"
sources."is-unicode-supported-0.1.0"
sources."isexe-2.0.0"
- (
- sources."log-symbols-4.1.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.2"
- ];
- }
- )
+ (sources."log-symbols-4.1.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ ];
+ })
sources."meow-12.1.1"
sources."merge-stream-2.0.0"
sources."mimic-fn-4.0.0"
sources."mute-stream-1.0.0"
- (
- sources."npm-run-path-5.3.0"
- // {
- dependencies = [
- sources."path-key-4.0.0"
- ];
- }
- )
+ (sources."npm-run-path-5.3.0" // {
+ dependencies = [
+ sources."path-key-4.0.0"
+ ];
+ })
sources."num-sort-3.0.0"
sources."onetime-6.0.0"
- (
- sources."ora-5.4.1"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.2"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."ora-5.4.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."os-tmpdir-1.0.2"
sources."path-key-3.1.1"
sources."picocolors-1.1.1"
@@ -58023,18 +54915,15 @@ in
sources."process-exists-5.0.0"
sources."ps-list-8.1.1"
sources."readable-stream-3.6.2"
- (
- sources."restore-cursor-3.1.0"
- // {
- dependencies = [
- sources."mimic-fn-2.1.0"
- sources."onetime-5.1.2"
- sources."signal-exit-3.0.7"
- ];
- }
- )
+ (sources."restore-cursor-3.1.0" // {
+ dependencies = [
+ sources."mimic-fn-2.1.0"
+ sources."onetime-5.1.2"
+ sources."signal-exit-3.0.7"
+ ];
+ })
sources."run-async-3.0.0"
- sources."rxjs-7.8.1"
+ sources."rxjs-7.8.2"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."shebang-command-2.0.0"
@@ -58046,36 +54935,30 @@ in
sources."strip-ansi-7.1.0"
sources."strip-final-newline-3.0.0"
sources."supports-color-7.2.0"
- (
- sources."taskkill-5.0.0"
- // {
- dependencies = [
- sources."execa-6.1.0"
- sources."get-stream-6.0.1"
- sources."human-signals-3.0.1"
- sources."signal-exit-3.0.7"
- ];
- }
- )
+ (sources."taskkill-5.0.0" // {
+ dependencies = [
+ sources."execa-6.1.0"
+ sources."get-stream-6.0.1"
+ sources."human-signals-3.0.1"
+ sources."signal-exit-3.0.7"
+ ];
+ })
sources."tmp-0.0.33"
sources."tslib-2.8.1"
sources."type-fest-0.21.3"
sources."util-deprecate-1.0.2"
sources."wcwidth-1.0.1"
sources."which-2.0.2"
- (
- sources."wrap-ansi-6.2.0"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."is-fullwidth-code-point-3.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-6.2.0" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."yoctocolors-cjs-2.1.2"
];
buildInputs = globalBuildInputs;
@@ -58106,7 +54989,7 @@ in
sources."@scure/bip39-1.3.0"
sources."@types/atob-2.1.4"
sources."@types/inquirer-6.5.0"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/through-0.0.33"
sources."ajv-6.12.6"
sources."ansi-escapes-4.3.2"
@@ -58144,26 +55027,20 @@ in
sources."dotenv-8.6.0"
sources."ecc-jsbn-0.1.2"
sources."emoji-regex-8.0.0"
- (
- sources."encoding-0.1.13"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
+ (sources."encoding-0.1.13" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
sources."ethereum-bloom-filters-1.2.0"
sources."ethereum-cryptography-2.2.1"
- (
- sources."ethjs-unit-0.1.6"
- // {
- dependencies = [
- sources."bn.js-4.11.6"
- ];
- }
- )
+ (sources."ethjs-unit-0.1.6" // {
+ dependencies = [
+ sources."bn.js-4.11.6"
+ ];
+ })
sources."extend-3.0.2"
sources."external-editor-3.1.0"
sources."extsprintf-1.3.0"
@@ -58212,14 +55089,11 @@ in
sources."mute-stream-0.0.8"
sources."nedb-1.8.0"
sources."node-fetch-2.7.0"
- (
- sources."number-to-bn-1.7.0"
- // {
- dependencies = [
- sources."bn.js-4.11.6"
- ];
- }
- )
+ (sources."number-to-bn-1.7.0" // {
+ dependencies = [
+ sources."bn.js-4.11.6"
+ ];
+ })
sources."oauth-sign-0.9.0"
sources."onetime-5.1.2"
sources."open-7.4.2"
@@ -58301,14 +55175,11 @@ in
sources."@colors/colors-1.6.0"
sources."@dabh/diagnostics-2.0.3"
sources."@types/triple-beam-1.3.5"
- (
- sources."anymatch-2.0.0"
- // {
- dependencies = [
- sources."normalize-path-2.1.1"
- ];
- }
- )
+ (sources."anymatch-2.0.0" // {
+ dependencies = [
+ sources."normalize-path-2.1.1"
+ ];
+ })
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
@@ -58320,72 +55191,54 @@ in
sources."atob-2.1.2"
sources."available-typed-arrays-1.0.7"
sources."balanced-match-1.0.2"
- (
- sources."base-0.11.2"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- }
- )
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
sources."binary-extensions-1.13.1"
sources."bindings-1.5.0"
sources."brace-expansion-1.1.11"
sources."braces-2.3.2"
- (
- sources."broadway-0.3.6"
- // {
- dependencies = [
- sources."async-0.2.10"
- sources."cliff-0.1.9"
- sources."eventemitter2-0.4.14"
- sources."winston-0.8.0"
- ];
- }
- )
+ (sources."broadway-0.3.6" // {
+ dependencies = [
+ sources."async-0.2.10"
+ sources."cliff-0.1.9"
+ sources."eventemitter2-0.4.14"
+ sources."winston-0.8.0"
+ ];
+ })
sources."cache-base-1.0.1"
sources."call-bind-1.0.8"
sources."call-bind-apply-helpers-1.0.2"
sources."call-bound-1.0.3"
sources."caller-1.1.0"
sources."chokidar-2.1.8"
- (
- sources."class-utils-0.3.6"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
- (
- sources."cliff-0.1.10"
- // {
- dependencies = [
- sources."async-0.2.10"
- sources."colors-1.0.3"
- (
- sources."winston-0.8.3"
- // {
- dependencies = [
- sources."colors-0.6.2"
- ];
- }
- )
- ];
- }
- )
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
+ (sources."cliff-0.1.10" // {
+ dependencies = [
+ sources."async-0.2.10"
+ sources."colors-1.0.3"
+ (sources."winston-0.8.3" // {
+ dependencies = [
+ sources."colors-0.6.2"
+ ];
+ })
+ ];
+ })
sources."clone-2.1.2"
sources."collection-visit-1.0.0"
sources."color-3.2.1"
- (
- sources."color-convert-1.9.3"
- // {
- dependencies = [
- sources."color-name-1.1.3"
- ];
- }
- )
+ (sources."color-convert-1.9.3" // {
+ dependencies = [
+ sources."color-name-1.1.3"
+ ];
+ })
sources."color-name-1.1.4"
sources."color-string-1.9.1"
sources."colors-0.6.2"
@@ -58397,14 +55250,11 @@ in
sources."core-util-is-1.0.3"
sources."crypto-random-string-1.0.0"
sources."cycle-1.0.3"
- (
- sources."debug-2.6.9"
- // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
sources."decode-uri-component-0.2.2"
sources."deep-equal-2.2.3"
sources."define-data-property-1.1.4"
@@ -58421,31 +55271,22 @@ in
sources."es-object-atoms-1.1.1"
sources."event-stream-3.3.4"
sources."eventemitter2-6.4.4"
- (
- sources."expand-brackets-2.1.4"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
- (
- sources."extend-shallow-2.0.1"
- // {
- dependencies = [
- sources."is-extendable-0.1.1"
- ];
- }
- )
- (
- sources."extglob-2.0.4"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- }
- )
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
+ (sources."extend-shallow-2.0.1" // {
+ dependencies = [
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
sources."eyes-0.1.8"
sources."fecha-4.2.3"
sources."file-uri-to-path-1.0.0"
@@ -58461,18 +55302,15 @@ in
sources."fsevents-1.2.13"
sources."function-bind-1.1.2"
sources."functions-have-names-1.2.3"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-value-2.0.6"
sources."glob-7.2.3"
- (
- sources."glob-parent-3.1.0"
- // {
- dependencies = [
- sources."is-glob-3.1.0"
- ];
- }
- )
+ (sources."glob-parent-3.1.0" // {
+ dependencies = [
+ sources."is-glob-3.1.0"
+ ];
+ })
sources."gopd-1.2.0"
sources."graceful-fs-4.2.11"
sources."has-bigints-1.1.0"
@@ -58480,14 +55318,11 @@ in
sources."has-symbols-1.1.0"
sources."has-tostringtag-1.0.2"
sources."has-value-1.0.0"
- (
- sources."has-values-1.0.0"
- // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- }
- )
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
sources."hasown-2.0.2"
sources."i-0.3.7"
sources."imurmurhash-0.1.4"
@@ -58536,59 +55371,44 @@ in
sources."map-stream-0.1.0"
sources."map-visit-1.0.0"
sources."math-intrinsics-1.1.0"
- (
- sources."micromatch-3.1.10"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- sources."kind-of-6.0.3"
- ];
- }
- )
+ (sources."micromatch-3.1.10" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."kind-of-6.0.3"
+ ];
+ })
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
sources."mixin-deep-1.3.2"
sources."mkdirp-0.5.6"
sources."ms-2.1.3"
sources."mute-stream-0.0.8"
- sources."nan-2.22.0"
- (
- sources."nanomatch-1.2.13"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- sources."kind-of-6.0.3"
- ];
- }
- )
- (
- sources."nconf-0.6.9"
- // {
- dependencies = [
- sources."async-0.2.9"
- ];
- }
- )
+ sources."nan-2.22.1"
+ (sources."nanomatch-1.2.13" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."kind-of-6.0.3"
+ ];
+ })
+ (sources."nconf-0.6.9" // {
+ dependencies = [
+ sources."async-0.2.9"
+ ];
+ })
sources."ncp-0.4.2"
sources."normalize-path-3.0.0"
- (
- sources."nssocket-0.6.0"
- // {
- dependencies = [
- sources."eventemitter2-0.4.14"
- ];
- }
- )
+ (sources."nssocket-0.6.0" // {
+ dependencies = [
+ sources."eventemitter2-0.4.14"
+ ];
+ })
sources."object-assign-4.1.1"
- (
- sources."object-copy-0.1.0"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
sources."object-inspect-1.13.4"
sources."object-is-1.1.6"
sources."object-keys-1.1.1"
@@ -58597,14 +55417,11 @@ in
sources."object.pick-1.3.0"
sources."once-1.4.0"
sources."one-time-1.0.0"
- (
- sources."optimist-0.6.0"
- // {
- dependencies = [
- sources."minimist-0.0.10"
- ];
- }
- )
+ (sources."optimist-0.6.0" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ ];
+ })
sources."pascalcase-0.1.1"
sources."path-dirname-1.0.2"
sources."path-is-absolute-1.0.1"
@@ -58613,46 +55430,34 @@ in
sources."pkginfo-0.3.1"
sources."posix-character-classes-0.1.1"
sources."possible-typed-array-names-1.1.0"
- (
- sources."prettyjson-1.2.5"
- // {
- dependencies = [
- sources."colors-1.4.0"
- ];
- }
- )
+ (sources."prettyjson-1.2.5" // {
+ dependencies = [
+ sources."colors-1.4.0"
+ ];
+ })
sources."process-nextick-args-2.0.1"
- (
- sources."prompt-0.2.14"
- // {
- dependencies = [
- sources."async-0.2.10"
- sources."winston-0.8.3"
- ];
- }
- )
+ (sources."prompt-0.2.14" // {
+ dependencies = [
+ sources."async-0.2.10"
+ sources."winston-0.8.3"
+ ];
+ })
sources."ps-tree-1.2.0"
sources."read-1.0.7"
sources."readable-stream-3.6.2"
- (
- sources."readdirp-2.2.1"
- // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
- (
- sources."regex-not-1.0.2"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- ];
- }
- )
+ (sources."readdirp-2.2.1" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ (sources."regex-not-1.0.2" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ ];
+ })
sources."regexp.prototype.flags-1.5.4"
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.4"
@@ -58667,14 +55472,11 @@ in
sources."safe-stable-stringify-2.5.0"
sources."set-function-length-1.2.2"
sources."set-function-name-2.0.2"
- (
- sources."set-value-2.0.1"
- // {
- dependencies = [
- sources."is-extendable-0.1.1"
- ];
- }
- )
+ (sources."set-value-2.0.1" // {
+ dependencies = [
+ sources."is-extendable-0.1.1"
+ ];
+ })
sources."shush-1.0.4"
sources."side-channel-1.1.0"
sources."side-channel-list-1.0.0"
@@ -58682,46 +55484,34 @@ in
sources."side-channel-weakmap-1.0.2"
sources."signal-exit-3.0.7"
sources."simple-swizzle-0.2.2"
- (
- sources."snapdragon-0.8.2"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
- (
- sources."snapdragon-node-2.1.1"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- }
- )
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
sources."snapdragon-util-3.0.1"
sources."source-map-0.5.7"
sources."source-map-resolve-0.5.3"
sources."source-map-url-0.4.1"
sources."split-0.3.3"
- (
- sources."split-string-3.1.0"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- ];
- }
- )
+ (sources."split-string-3.1.0" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ ];
+ })
sources."stack-trace-0.0.10"
- (
- sources."static-extend-0.1.2"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
sources."stop-iteration-iterator-1.1.0"
sources."stream-combiner-0.0.4"
sources."string_decoder-1.3.0"
@@ -58729,65 +55519,47 @@ in
sources."text-hex-1.0.0"
sources."through-2.3.8"
sources."to-object-path-0.3.0"
- (
- sources."to-regex-3.0.2"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- ];
- }
- )
+ (sources."to-regex-3.0.2" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ ];
+ })
sources."to-regex-range-2.1.1"
sources."triple-beam-1.4.1"
- (
- sources."union-value-1.0.1"
- // {
- dependencies = [
- sources."is-extendable-0.1.1"
- ];
- }
- )
+ (sources."union-value-1.0.1" // {
+ dependencies = [
+ sources."is-extendable-0.1.1"
+ ];
+ })
sources."unique-string-1.0.0"
- (
- sources."unset-value-1.0.0"
- // {
- dependencies = [
- (
- sources."has-value-0.3.1"
- // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- }
- )
- sources."has-values-0.1.4"
- sources."isarray-1.0.0"
- ];
- }
- )
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ sources."isarray-1.0.0"
+ ];
+ })
sources."upath-1.2.0"
sources."urix-0.1.0"
sources."use-3.1.1"
sources."util-deprecate-1.0.2"
- (
- sources."utile-0.2.1"
- // {
- dependencies = [
- sources."async-0.2.10"
- ];
- }
- )
+ (sources."utile-0.2.1" // {
+ dependencies = [
+ sources."async-0.2.10"
+ ];
+ })
sources."which-boxed-primitive-1.1.1"
sources."which-collection-1.0.2"
sources."which-typed-array-1.1.18"
- (
- sources."winston-3.17.0"
- // {
- dependencies = [
- sources."async-3.2.6"
- ];
- }
- )
+ (sources."winston-3.17.0" // {
+ dependencies = [
+ sources."async-3.2.6"
+ ];
+ })
sources."winston-transport-4.9.0"
sources."wordwrap-0.0.3"
sources."wrappy-1.0.2"
@@ -58834,32 +55606,23 @@ in
sources."@ampproject/remapping-2.3.0"
sources."@babel/code-frame-7.26.2"
sources."@babel/compat-data-7.26.8"
- (
- sources."@babel/core-7.26.9"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."@babel/core-7.26.9" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."@babel/generator-7.26.9"
sources."@babel/helper-annotate-as-pure-7.25.9"
- (
- sources."@babel/helper-compilation-targets-7.26.5"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
- (
- sources."@babel/helper-create-class-features-plugin-7.26.9"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."@babel/helper-compilation-targets-7.26.5" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
+ (sources."@babel/helper-create-class-features-plugin-7.26.9" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."@babel/helper-member-expression-to-functions-7.25.9"
sources."@babel/helper-module-imports-7.25.9"
sources."@babel/helper-module-transforms-7.26.0"
@@ -58904,19 +55667,16 @@ in
sources."@types/common-tags-1.8.4"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/responselike-1.0.3"
sources."@types/yoga-layout-1.9.2"
sources."abort-controller-3.0.0"
sources."ansi-align-3.0.1"
- (
- sources."ansi-escapes-4.3.2"
- // {
- dependencies = [
- sources."type-fest-0.21.3"
- ];
- }
- )
+ (sources."ansi-escapes-4.3.2" // {
+ dependencies = [
+ sources."type-fest-0.21.3"
+ ];
+ })
sources."ansi-regex-4.1.1"
sources."ansi-styles-4.3.0"
sources."base64-js-1.5.1"
@@ -58926,48 +55686,39 @@ in
sources."browserslist-4.24.4"
sources."buffer-6.0.3"
sources."cacheable-lookup-5.0.4"
- (
- sources."cacheable-request-7.0.4"
- // {
- dependencies = [
- sources."get-stream-5.2.0"
- ];
- }
- )
+ (sources."cacheable-request-7.0.4" // {
+ dependencies = [
+ sources."get-stream-5.2.0"
+ ];
+ })
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001699"
+ sources."caniuse-lite-1.0.30001700"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
sources."cli-cursor-3.1.0"
sources."cli-width-3.0.0"
- (
- sources."clipboardy-4.0.0"
- // {
- dependencies = [
- sources."execa-8.0.1"
- sources."get-stream-8.0.1"
- sources."human-signals-5.0.0"
- sources."is-stream-3.0.0"
- sources."is-wsl-3.1.0"
- sources."mimic-fn-4.0.0"
- sources."npm-run-path-5.3.0"
- sources."onetime-6.0.0"
- sources."path-key-4.0.0"
- sources."signal-exit-4.1.0"
- sources."strip-final-newline-3.0.0"
- ];
- }
- )
- (
- sources."cliui-6.0.0"
- // {
- dependencies = [
- sources."wrap-ansi-6.2.0"
- ];
- }
- )
+ (sources."clipboardy-4.0.0" // {
+ dependencies = [
+ sources."execa-8.0.1"
+ sources."get-stream-8.0.1"
+ sources."human-signals-5.0.0"
+ sources."is-stream-3.0.0"
+ sources."is-wsl-3.1.0"
+ sources."mimic-fn-4.0.0"
+ sources."npm-run-path-5.3.0"
+ sources."onetime-6.0.0"
+ sources."path-key-4.0.0"
+ sources."signal-exit-4.1.0"
+ sources."strip-final-newline-3.0.0"
+ ];
+ })
+ (sources."cliui-6.0.0" // {
+ dependencies = [
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
sources."clone-response-1.0.3"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
@@ -58982,14 +55733,11 @@ in
sources."css-what-6.1.0"
sources."debug-4.4.0"
sources."decamelize-1.2.0"
- (
- sources."decompress-response-6.0.0"
- // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- }
- )
+ (sources."decompress-response-6.0.0" // {
+ dependencies = [
+ sources."mimic-response-3.1.0"
+ ];
+ })
sources."defer-to-connect-2.0.1"
sources."dom-converter-0.2.0"
sources."dom-serializer-1.4.1"
@@ -58997,16 +55745,13 @@ in
sources."domhandler-4.3.1"
sources."domutils-2.8.0"
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.5.101"
+ sources."electron-to-chromium-1.5.104"
sources."emoji-regex-8.0.0"
- (
- sources."encoding-0.1.13"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
+ (sources."encoding-0.1.13" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
sources."envinfo-7.14.0"
@@ -59022,14 +55767,11 @@ in
sources."find-up-4.1.0"
sources."fs-exists-cached-1.0.0"
sources."fs-extra-11.3.0"
- (
- sources."gatsby-core-utils-4.14.0"
- // {
- dependencies = [
- sources."tmp-0.2.3"
- ];
- }
- )
+ (sources."gatsby-core-utils-4.14.0" // {
+ dependencies = [
+ sources."tmp-0.2.3"
+ ];
+ })
sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
sources."get-stream-6.0.1"
@@ -59038,15 +55780,12 @@ in
sources."graceful-fs-4.2.11"
sources."has-flag-4.0.0"
sources."hash-wasm-4.12.0"
- (
- sources."hosted-git-info-3.0.8"
- // {
- dependencies = [
- sources."lru-cache-6.0.0"
- sources."yallist-4.0.0"
- ];
- }
- )
+ (sources."hosted-git-info-3.0.8" // {
+ dependencies = [
+ sources."lru-cache-6.0.0"
+ sources."yallist-4.0.0"
+ ];
+ })
sources."htmlparser2-6.1.0"
sources."http-cache-semantics-4.1.1"
sources."http2-wrapper-1.0.3"
@@ -59061,14 +55800,11 @@ in
sources."is-extglob-1.0.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-2.0.1"
- (
- sources."is-inside-container-1.0.0"
- // {
- dependencies = [
- sources."is-docker-3.0.0"
- ];
- }
- )
+ (sources."is-inside-container-1.0.0" // {
+ dependencies = [
+ sources."is-docker-3.0.0"
+ ];
+ })
sources."is-invalid-path-0.1.0"
sources."is-obj-2.0.0"
sources."is-stream-2.0.1"
@@ -59091,14 +55827,11 @@ in
sources."lodash-4.17.21"
sources."lowercase-keys-2.0.0"
sources."lru-cache-5.1.1"
- (
- sources."make-dir-3.1.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."make-dir-3.1.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."merge-stream-2.0.0"
sources."mimic-fn-2.1.0"
sources."mimic-response-1.0.1"
@@ -59139,15 +55872,12 @@ in
sources."readable-web-to-node-stream-3.0.4"
sources."redux-4.2.1"
sources."regenerator-runtime-0.14.1"
- (
- sources."renderkid-2.0.7"
- // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."strip-ansi-3.0.1"
- ];
- }
- )
+ (sources."renderkid-2.0.7" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
sources."require-directory-2.1.1"
sources."require-main-filename-2.0.0"
sources."resolve-alpn-1.2.1"
@@ -59170,14 +55900,11 @@ in
sources."stack-trace-0.0.10"
sources."string-width-4.2.3"
sources."string_decoder-1.3.0"
- (
- sources."strip-ansi-6.0.1"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- ];
- }
- )
+ (sources."strip-ansi-6.0.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ ];
+ })
sources."strip-final-newline-2.0.0"
sources."strtok3-6.3.0"
sources."supports-color-7.2.0"
@@ -59207,29 +55934,23 @@ in
sources."y18n-4.0.3"
sources."yallist-3.1.1"
sources."yargs-15.4.1"
- (
- sources."yargs-parser-18.1.3"
- // {
- dependencies = [
- sources."camelcase-5.3.1"
- ];
- }
- )
+ (sources."yargs-parser-18.1.3" // {
+ dependencies = [
+ sources."camelcase-5.3.1"
+ ];
+ })
sources."yoga-layout-prebuilt-1.10.0"
- (
- sources."yurnalist-2.1.0"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."has-flag-3.0.0"
- sources."strip-ansi-5.2.0"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."yurnalist-2.1.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."has-flag-3.0.0"
+ sources."strip-ansi-5.2.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
];
buildInputs = globalBuildInputs;
meta = {
@@ -59264,7 +55985,7 @@ in
sources."es-errors-1.3.0"
sources."es-object-atoms-1.1.1"
sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."gopd-1.2.0"
sources."has-flag-4.0.0"
@@ -59412,14 +56133,11 @@ in
sources."braces-3.0.3"
sources."buffer-6.0.3"
sources."chalk-4.1.2"
- (
- sources."chokidar-3.6.0"
- // {
- dependencies = [
- sources."glob-parent-5.1.2"
- ];
- }
- )
+ (sources."chokidar-3.6.0" // {
+ dependencies = [
+ sources."glob-parent-5.1.2"
+ ];
+ })
sources."cliui-7.0.4"
sources."clone-2.1.2"
sources."clone-stats-1.0.0"
@@ -59750,17 +56468,14 @@ in
sources."isstream-0.1.2"
sources."minimatch-3.1.2"
sources."minimist-0.0.10"
- (
- sources."mkdirp-0.5.6"
- // {
- dependencies = [
- sources."minimist-1.2.8"
- ];
- }
- )
+ (sources."mkdirp-0.5.6" // {
+ dependencies = [
+ sources."minimist-1.2.8"
+ ];
+ })
sources."moment-2.30.1"
sources."mv-2.1.1"
- sources."nan-2.22.0"
+ sources."nan-2.22.1"
sources."ncp-2.0.0"
sources."once-1.4.0"
sources."optimist-0.6.1"
@@ -59799,109 +56514,73 @@ in
};
dependencies = [
sources."@adobe/css-tools-4.4.0"
- (
- sources."@asamuzakjp/css-color-2.8.3"
- // {
- dependencies = [
- sources."lru-cache-10.4.3"
- ];
- }
- )
- (
- sources."@aws-crypto/crc32-3.0.0"
- // {
- dependencies = [
- sources."tslib-1.14.1"
- ];
- }
- )
- (
- sources."@aws-crypto/crc32c-3.0.0"
- // {
- dependencies = [
- sources."tslib-1.14.1"
- ];
- }
- )
- (
- sources."@aws-crypto/ie11-detection-3.0.0"
- // {
- dependencies = [
- sources."tslib-1.14.1"
- ];
- }
- )
- (
- sources."@aws-crypto/sha1-browser-3.0.0"
- // {
- dependencies = [
- sources."tslib-1.14.1"
- ];
- }
- )
- (
- sources."@aws-crypto/sha256-browser-3.0.0"
- // {
- dependencies = [
- sources."tslib-1.14.1"
- ];
- }
- )
- (
- sources."@aws-crypto/sha256-js-3.0.0"
- // {
- dependencies = [
- sources."tslib-1.14.1"
- ];
- }
- )
- (
- sources."@aws-crypto/supports-web-crypto-3.0.0"
- // {
- dependencies = [
- sources."tslib-1.14.1"
- ];
- }
- )
- (
- sources."@aws-crypto/util-3.0.0"
- // {
- dependencies = [
- sources."tslib-1.14.1"
- ];
- }
- )
+ (sources."@asamuzakjp/css-color-2.8.3" // {
+ dependencies = [
+ sources."lru-cache-10.4.3"
+ ];
+ })
+ (sources."@aws-crypto/crc32-3.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/crc32c-3.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/ie11-detection-3.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/sha1-browser-3.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/sha256-browser-3.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/sha256-js-3.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/supports-web-crypto-3.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/util-3.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
sources."@aws-sdk/abort-controller-3.296.0"
sources."@aws-sdk/chunked-blob-reader-3.295.0"
sources."@aws-sdk/chunked-blob-reader-native-3.295.0"
- (
- sources."@aws-sdk/client-s3-3.296.0"
- // {
- dependencies = [
- sources."fast-xml-parser-4.1.2"
- ];
- }
- )
+ (sources."@aws-sdk/client-s3-3.296.0" // {
+ dependencies = [
+ sources."fast-xml-parser-4.1.2"
+ ];
+ })
sources."@aws-sdk/client-sso-3.296.0"
sources."@aws-sdk/client-sso-oidc-3.296.0"
- (
- sources."@aws-sdk/client-sts-3.296.0"
- // {
- dependencies = [
- sources."fast-xml-parser-4.1.2"
- ];
- }
- )
+ (sources."@aws-sdk/client-sts-3.296.0" // {
+ dependencies = [
+ sources."fast-xml-parser-4.1.2"
+ ];
+ })
sources."@aws-sdk/config-resolver-3.296.0"
- (
- sources."@aws-sdk/core-3.749.0"
- // {
- dependencies = [
- sources."@aws-sdk/types-3.734.0"
- sources."fast-xml-parser-4.4.1"
- ];
- }
- )
+ (sources."@aws-sdk/core-3.750.0" // {
+ dependencies = [
+ sources."@aws-sdk/types-3.734.0"
+ sources."fast-xml-parser-4.4.1"
+ ];
+ })
sources."@aws-sdk/credential-provider-env-3.296.0"
sources."@aws-sdk/credential-provider-imds-3.296.0"
sources."@aws-sdk/credential-provider-ini-3.296.0"
@@ -59909,17 +56588,14 @@ in
sources."@aws-sdk/credential-provider-process-3.296.0"
sources."@aws-sdk/credential-provider-sso-3.296.0"
sources."@aws-sdk/credential-provider-web-identity-3.296.0"
- (
- sources."@aws-sdk/crt-loader-3.749.0"
- // {
- dependencies = [
- sources."@aws-sdk/middleware-user-agent-3.749.0"
- sources."@aws-sdk/types-3.734.0"
- sources."@aws-sdk/util-endpoints-3.743.0"
- sources."@aws-sdk/util-user-agent-node-3.749.0"
- ];
- }
- )
+ (sources."@aws-sdk/crt-loader-3.750.0" // {
+ dependencies = [
+ sources."@aws-sdk/middleware-user-agent-3.750.0"
+ sources."@aws-sdk/types-3.734.0"
+ sources."@aws-sdk/util-endpoints-3.743.0"
+ sources."@aws-sdk/util-user-agent-node-3.750.0"
+ ];
+ })
sources."@aws-sdk/eventstream-codec-3.296.0"
sources."@aws-sdk/eventstream-serde-browser-3.296.0"
sources."@aws-sdk/eventstream-serde-config-resolver-3.296.0"
@@ -59941,14 +56617,11 @@ in
sources."@aws-sdk/middleware-location-constraint-3.296.0"
sources."@aws-sdk/middleware-logger-3.296.0"
sources."@aws-sdk/middleware-recursion-detection-3.296.0"
- (
- sources."@aws-sdk/middleware-retry-3.296.0"
- // {
- dependencies = [
- sources."uuid-8.3.2"
- ];
- }
- )
+ (sources."@aws-sdk/middleware-retry-3.296.0" // {
+ dependencies = [
+ sources."uuid-8.3.2"
+ ];
+ })
sources."@aws-sdk/middleware-sdk-s3-3.296.0"
sources."@aws-sdk/middleware-sdk-sts-3.296.0"
sources."@aws-sdk/middleware-serde-3.296.0"
@@ -59966,17 +56639,14 @@ in
sources."@aws-sdk/service-error-classification-3.296.0"
sources."@aws-sdk/shared-ini-file-loader-3.296.0"
sources."@aws-sdk/signature-v4-3.296.0"
- (
- sources."@aws-sdk/signature-v4-crt-3.749.0"
- // {
- dependencies = [
- sources."@aws-sdk/middleware-sdk-s3-3.749.0"
- sources."@aws-sdk/signature-v4-multi-region-3.749.0"
- sources."@aws-sdk/types-3.734.0"
- sources."@aws-sdk/util-arn-parser-3.723.0"
- ];
- }
- )
+ (sources."@aws-sdk/signature-v4-crt-3.750.0" // {
+ dependencies = [
+ sources."@aws-sdk/middleware-sdk-s3-3.750.0"
+ sources."@aws-sdk/signature-v4-multi-region-3.750.0"
+ sources."@aws-sdk/types-3.734.0"
+ sources."@aws-sdk/util-arn-parser-3.723.0"
+ ];
+ })
sources."@aws-sdk/signature-v4-multi-region-3.296.0"
sources."@aws-sdk/smithy-client-3.296.0"
sources."@aws-sdk/token-providers-3.296.0"
@@ -60008,24 +56678,21 @@ in
sources."@aws-sdk/xml-builder-3.295.0"
sources."@babel/runtime-7.26.9"
sources."@cronvel/get-pixels-3.4.1"
- sources."@csstools/color-helpers-5.0.1"
- sources."@csstools/css-calc-2.1.1"
- sources."@csstools/css-color-parser-3.0.7"
+ sources."@csstools/color-helpers-5.0.2"
+ sources."@csstools/css-calc-2.1.2"
+ sources."@csstools/css-color-parser-3.0.8"
sources."@csstools/css-parser-algorithms-3.0.4"
sources."@csstools/css-tokenizer-3.0.3"
sources."@gar/promisify-1.1.3"
sources."@httptoolkit/websocket-stream-6.0.1"
- (
- sources."@isaacs/cliui-8.0.2"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."emoji-regex-9.2.2"
- sources."string-width-5.1.2"
- sources."strip-ansi-7.1.0"
- ];
- }
- )
+ (sources."@isaacs/cliui-8.0.2" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."emoji-regex-9.2.2"
+ sources."string-width-5.1.2"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
sources."@joplin/fork-htmlparser2-4.1.57"
sources."@joplin/fork-sax-1.2.61"
sources."@joplin/fork-uslug-1.0.22"
@@ -60035,44 +56702,38 @@ in
sources."@joplin/renderer-3.2.5"
sources."@joplin/turndown-4.0.79"
sources."@joplin/turndown-plugin-gfm-1.0.61"
- (
- sources."@joplin/utils-3.2.5"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."glob-10.4.5"
- sources."minimatch-9.0.5"
- sources."minipass-7.1.2"
- ];
- }
- )
- (
- sources."@mapbox/node-pre-gyp-1.0.11"
- // {
- dependencies = [
- sources."agent-base-6.0.2"
- sources."https-proxy-agent-5.0.1"
- ];
- }
- )
+ (sources."@joplin/utils-3.2.5" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."glob-10.4.5"
+ sources."minimatch-9.0.5"
+ sources."minipass-7.1.2"
+ ];
+ })
+ (sources."@mapbox/node-pre-gyp-1.0.11" // {
+ dependencies = [
+ sources."agent-base-6.0.2"
+ sources."https-proxy-agent-5.0.1"
+ ];
+ })
sources."@npmcli/fs-1.1.1"
sources."@npmcli/move-file-1.1.2"
sources."@smithy/abort-controller-4.0.1"
- sources."@smithy/core-3.1.4"
+ sources."@smithy/core-3.1.5"
sources."@smithy/fetch-http-handler-5.0.1"
sources."@smithy/is-array-buffer-4.0.0"
- sources."@smithy/middleware-endpoint-4.0.5"
+ sources."@smithy/middleware-endpoint-4.0.6"
sources."@smithy/middleware-serde-4.0.2"
sources."@smithy/middleware-stack-4.0.1"
sources."@smithy/node-config-provider-4.0.1"
- sources."@smithy/node-http-handler-4.0.2"
+ sources."@smithy/node-http-handler-4.0.3"
sources."@smithy/property-provider-4.0.1"
sources."@smithy/protocol-http-5.0.1"
sources."@smithy/querystring-builder-4.0.1"
sources."@smithy/querystring-parser-4.0.1"
sources."@smithy/shared-ini-file-loader-4.0.1"
sources."@smithy/signature-v4-5.0.1"
- sources."@smithy/smithy-client-4.1.5"
+ sources."@smithy/smithy-client-4.1.6"
sources."@smithy/types-4.1.0"
sources."@smithy/url-parser-4.0.1"
sources."@smithy/util-base64-4.0.0"
@@ -60082,13 +56743,13 @@ in
sources."@smithy/util-endpoints-3.0.1"
sources."@smithy/util-hex-encoding-4.0.0"
sources."@smithy/util-middleware-4.0.1"
- sources."@smithy/util-stream-4.1.1"
+ sources."@smithy/util-stream-4.1.2"
sources."@smithy/util-uri-escape-4.0.0"
sources."@smithy/util-utf8-4.0.0"
sources."@tokenizer/token-0.3.0"
sources."@tootallnate/once-1.1.2"
sources."@types/nanoid-3.0.0"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/ws-8.5.14"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -60097,26 +56758,20 @@ in
sources."agentkeepalive-4.6.0"
sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
- (
- sources."ansi-escape-sequences-4.1.0"
- // {
- dependencies = [
- sources."array-back-3.1.0"
- ];
- }
- )
+ (sources."ansi-escape-sequences-4.1.0" // {
+ dependencies = [
+ sources."array-back-3.1.0"
+ ];
+ })
sources."ansi-regex-3.0.1"
sources."ansi-styles-6.2.1"
sources."anymatch-3.1.3"
sources."aproba-2.0.0"
- (
- sources."are-we-there-yet-2.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."are-we-there-yet-2.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."argparse-2.0.1"
sources."array-back-2.0.0"
sources."asap-2.0.6"
@@ -60126,19 +56781,16 @@ in
sources."asynckit-0.4.0"
sources."available-typed-arrays-1.0.7"
sources."aws-crt-1.25.3"
- (
- sources."aws-sdk-2.1340.0"
- // {
- dependencies = [
- sources."buffer-4.9.2"
- sources."ieee754-1.1.13"
- sources."sax-1.2.1"
- sources."uuid-8.0.0"
- sources."xml2js-0.4.19"
- sources."xmlbuilder-9.0.7"
- ];
- }
- )
+ (sources."aws-sdk-2.1340.0" // {
+ dependencies = [
+ sources."buffer-4.9.2"
+ sources."ieee754-1.1.13"
+ sources."sax-1.2.1"
+ sources."uuid-8.0.0"
+ sources."xml2js-0.4.19"
+ sources."xmlbuilder-9.0.7"
+ ];
+ })
sources."aws-sign2-0.7.0"
sources."aws4-1.13.2"
sources."axios-1.7.9"
@@ -60148,15 +56800,12 @@ in
sources."base64-stream-1.0.0"
sources."bcrypt-pbkdf-1.0.2"
sources."binary-extensions-2.3.0"
- (
- sources."bl-4.1.0"
- // {
- dependencies = [
- sources."buffer-5.7.1"
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."bl-4.1.0" // {
+ dependencies = [
+ sources."buffer-5.7.1"
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."bowser-2.11.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.3"
@@ -60164,14 +56813,11 @@ in
sources."buffer-from-1.1.2"
sources."bufferutil-4.0.9"
sources."builtin-modules-3.3.0"
- (
- sources."cacache-15.3.0"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."cacache-15.3.0" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."call-bind-1.0.8"
sources."call-bind-apply-helpers-1.0.2"
sources."call-bound-1.0.3"
@@ -60179,39 +56825,30 @@ in
sources."camelcase-4.1.0"
sources."canvas-2.11.2"
sources."caseless-0.12.0"
- (
- sources."chalk-4.1.2"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."color-convert-2.0.1"
- ];
- }
- )
+ (sources."chalk-4.1.2" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."color-convert-2.0.1"
+ ];
+ })
sources."charenc-0.0.2"
sources."chokidar-3.6.0"
sources."chownr-2.0.0"
sources."chroma-js-2.6.0"
sources."clean-css-4.2.4"
sources."clean-stack-2.2.0"
- (
- sources."cliss-0.0.2"
- // {
- dependencies = [
- sources."strip-ansi-4.0.0"
- sources."yargs-parser-7.0.0"
- ];
- }
- )
+ (sources."cliss-0.0.2" // {
+ dependencies = [
+ sources."strip-ansi-4.0.0"
+ sources."yargs-parser-7.0.0"
+ ];
+ })
sources."color-3.2.1"
- (
- sources."color-convert-1.9.3"
- // {
- dependencies = [
- sources."color-name-1.1.3"
- ];
- }
- )
+ (sources."color-convert-1.9.3" // {
+ dependencies = [
+ sources."color-name-1.1.3"
+ ];
+ })
sources."color-name-1.1.4"
sources."color-string-1.9.1"
sources."color-support-1.1.3"
@@ -60222,27 +56859,21 @@ in
sources."compare-version-0.1.2"
sources."compare-versions-6.1.1"
sources."concat-map-0.0.1"
- (
- sources."concat-stream-2.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."concat-stream-2.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.6"
sources."crypt-0.0.2"
sources."crypto-js-4.2.0"
- (
- sources."cssstyle-4.2.1"
- // {
- dependencies = [
- sources."rrweb-cssom-0.8.0"
- ];
- }
- )
+ (sources."cssstyle-4.2.1" // {
+ dependencies = [
+ sources."rrweb-cssom-0.8.0"
+ ];
+ })
sources."cwise-compiler-1.1.3"
sources."dashdash-1.14.1"
sources."data-urls-5.0.0"
@@ -60262,14 +56893,11 @@ in
sources."depd-1.1.2"
sources."detect-libc-2.0.3"
sources."diff-match-patch-1.0.5"
- (
- sources."dom-serializer-2.0.0"
- // {
- dependencies = [
- sources."entities-4.5.0"
- ];
- }
- )
+ (sources."dom-serializer-2.0.0" // {
+ dependencies = [
+ sources."entities-4.5.0"
+ ];
+ })
sources."domelementtype-2.3.0"
sources."domhandler-5.0.3"
sources."domutils-3.1.0"
@@ -60278,19 +56906,16 @@ in
sources."eastasianwidth-0.2.0"
sources."ecc-jsbn-0.1.2"
sources."emoji-regex-8.0.0"
- (
- sources."emphasize-1.5.0"
- // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."chalk-1.1.3"
- sources."highlight.js-9.12.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- ];
- }
- )
+ (sources."emphasize-1.5.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."highlight.js-9.12.0"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ ];
+ })
sources."encoding-0.1.13"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
@@ -60319,39 +56944,30 @@ in
sources."for-each-0.3.5"
sources."for-each-property-0.0.4"
sources."for-each-property-deep-0.0.3"
- (
- sources."foreground-child-3.3.0"
- // {
- dependencies = [
- sources."signal-exit-4.1.0"
- ];
- }
- )
+ (sources."foreground-child-3.3.1" // {
+ dependencies = [
+ sources."signal-exit-4.1.0"
+ ];
+ })
sources."forever-agent-0.6.1"
sources."form-data-4.0.0"
sources."format-0.2.2"
sources."fs-constants-1.0.0"
- (
- sources."fs-extra-11.2.0"
- // {
- dependencies = [
- sources."jsonfile-6.1.0"
- sources."universalify-2.0.1"
- ];
- }
- )
- (
- sources."fs-minipass-2.1.0"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."fs-extra-11.2.0" // {
+ dependencies = [
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.1"
+ ];
+ })
+ (sources."fs-minipass-2.1.0" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."gauge-3.0.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-prototype-chain-1.0.1"
sources."get-stdin-5.0.1"
@@ -60365,14 +56981,11 @@ in
sources."growly-1.3.0"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
- (
- sources."has-ansi-2.0.0"
- // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- }
- )
+ (sources."has-ansi-2.0.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
sources."has-flag-4.0.0"
sources."has-property-descriptors-1.0.2"
sources."has-symbols-1.1.0"
@@ -60380,14 +56993,11 @@ in
sources."has-unicode-2.0.1"
sources."hasown-2.0.2"
sources."he-1.2.0"
- (
- sources."help-me-3.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."help-me-3.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."highlight.js-11.10.0"
sources."hpagent-1.2.0"
sources."html-encoding-sniffer-4.0.0"
@@ -60402,15 +57012,12 @@ in
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.6.3"
sources."ieee754-1.2.1"
- (
- sources."image-data-uri-2.0.1"
- // {
- dependencies = [
- sources."fs-extra-0.26.7"
- sources."rimraf-2.7.1"
- ];
- }
- )
+ (sources."image-data-uri-2.0.1" // {
+ dependencies = [
+ sources."fs-extra-0.26.7"
+ sources."rimraf-2.7.1"
+ ];
+ })
sources."image-size-1.0.0"
sources."immer-7.0.15"
sources."imurmurhash-0.1.4"
@@ -60419,56 +57026,38 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (
- sources."inspect-function-0.2.2"
- // {
- dependencies = [
- sources."split-skip-0.0.1"
- ];
- }
- )
- (
- sources."inspect-parameters-declaration-0.0.9"
- // {
- dependencies = [
- sources."magicli-0.0.5"
- ];
- }
- )
- (
- sources."inspect-property-0.0.6"
- // {
- dependencies = [
- sources."inspect-function-0.3.4"
- (
- sources."inspect-parameters-declaration-0.0.8"
- // {
- dependencies = [
- sources."split-skip-0.0.2"
- ];
- }
- )
- (
- sources."magicli-0.0.5"
- // {
- dependencies = [
- sources."inspect-function-0.2.2"
- ];
- }
- )
- sources."split-skip-0.0.1"
- ];
- }
- )
+ (sources."inspect-function-0.2.2" // {
+ dependencies = [
+ sources."split-skip-0.0.1"
+ ];
+ })
+ (sources."inspect-parameters-declaration-0.0.9" // {
+ dependencies = [
+ sources."magicli-0.0.5"
+ ];
+ })
+ (sources."inspect-property-0.0.6" // {
+ dependencies = [
+ sources."inspect-function-0.3.4"
+ (sources."inspect-parameters-declaration-0.0.8" // {
+ dependencies = [
+ sources."split-skip-0.0.2"
+ ];
+ })
+ (sources."magicli-0.0.5" // {
+ dependencies = [
+ sources."inspect-function-0.2.2"
+ ];
+ })
+ sources."split-skip-0.0.1"
+ ];
+ })
sources."iota-array-1.0.0"
- (
- sources."ip-address-9.0.5"
- // {
- dependencies = [
- sources."jsbn-1.1.0"
- ];
- }
- )
+ (sources."ip-address-9.0.5" // {
+ dependencies = [
+ sources."jsbn-1.1.0"
+ ];
+ })
sources."ip-regex-4.3.0"
sources."is-arguments-1.2.0"
sources."is-arrayish-0.3.2"
@@ -60507,14 +57096,11 @@ in
sources."json-stringify-safe-5.0.1"
sources."jsonfile-2.4.0"
sources."jsprim-1.4.2"
- (
- sources."katex-0.16.11"
- // {
- dependencies = [
- sources."commander-8.3.0"
- ];
- }
- )
+ (sources."katex-0.16.11" // {
+ dependencies = [
+ sources."commander-8.3.0"
+ ];
+ })
sources."keytar-7.9.0"
sources."klaw-1.3.1"
sources."lazyness-1.2.0"
@@ -60525,43 +57111,31 @@ in
sources."lodash.padend-4.6.1"
sources."lodash.repeat-4.1.0"
sources."lower-case-1.1.4"
- (
- sources."lowlight-1.9.2"
- // {
- dependencies = [
- sources."highlight.js-9.12.0"
- ];
- }
- )
+ (sources."lowlight-1.9.2" // {
+ dependencies = [
+ sources."highlight.js-9.12.0"
+ ];
+ })
sources."lru-cache-6.0.0"
sources."magicli-0.0.8"
- (
- sources."make-dir-3.1.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
- (
- sources."make-fetch-happen-9.1.0"
- // {
- dependencies = [
- sources."agent-base-6.0.2"
- sources."http-proxy-agent-4.0.1"
- sources."https-proxy-agent-5.0.1"
- sources."minipass-3.3.6"
- ];
- }
- )
- (
- sources."markdown-it-13.0.2"
- // {
- dependencies = [
- sources."entities-3.0.1"
- ];
- }
- )
+ (sources."make-dir-3.1.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
+ (sources."make-fetch-happen-9.1.0" // {
+ dependencies = [
+ sources."agent-base-6.0.2"
+ sources."http-proxy-agent-4.0.1"
+ sources."https-proxy-agent-5.0.1"
+ sources."minipass-3.3.6"
+ ];
+ })
+ (sources."markdown-it-13.0.2" // {
+ dependencies = [
+ sources."entities-3.0.1"
+ ];
+ })
sources."markdown-it-abbr-1.0.4"
sources."markdown-it-anchor-5.3.0"
sources."markdown-it-deflist-2.1.0"
@@ -60587,73 +57161,52 @@ in
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
sources."minipass-5.0.0"
- (
- sources."minipass-collect-1.0.2"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
- (
- sources."minipass-fetch-1.4.1"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
- (
- sources."minipass-flush-1.0.5"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
- (
- sources."minipass-pipeline-1.2.4"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
- (
- sources."minipass-sized-1.0.3"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
- (
- sources."minizlib-2.1.2"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."minipass-collect-1.0.2" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ (sources."minipass-fetch-1.4.1" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ (sources."minipass-flush-1.0.5" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ (sources."minipass-pipeline-1.2.4" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ (sources."minipass-sized-1.0.3" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ (sources."minizlib-2.1.2" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."mkdirp-1.0.4"
sources."mkdirp-classic-0.5.3"
sources."moment-2.30.1"
- (
- sources."mqtt-4.3.8"
- // {
- dependencies = [
- sources."duplexify-4.1.3"
- sources."readable-stream-3.6.2"
- sources."utf-8-validate-5.0.10"
- sources."ws-7.5.10"
- ];
- }
- )
+ (sources."mqtt-4.3.8" // {
+ dependencies = [
+ sources."duplexify-4.1.3"
+ sources."readable-stream-3.6.2"
+ sources."utf-8-validate-5.0.10"
+ sources."ws-7.5.10"
+ ];
+ })
sources."mqtt-packet-6.10.0"
sources."ms-2.1.3"
sources."multiparty-4.2.3"
sources."mustache-4.2.0"
- sources."nan-2.22.0"
+ sources."nan-2.22.1"
sources."nanoid-3.3.7"
sources."napi-build-utils-2.0.0"
sources."ndarray-1.0.19"
@@ -60665,36 +57218,27 @@ in
sources."node-addon-api-4.3.0"
sources."node-bitmap-0.0.1"
sources."node-emoji-1.11.0"
- (
- sources."node-fetch-2.6.7"
- // {
- dependencies = [
- sources."tr46-0.0.3"
- sources."webidl-conversions-3.0.1"
- sources."whatwg-url-5.0.0"
- ];
- }
- )
- (
- sources."node-gyp-8.4.1"
- // {
- dependencies = [
- sources."are-we-there-yet-3.0.1"
- sources."gauge-4.0.4"
- sources."npmlog-6.0.2"
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."node-fetch-2.6.7" // {
+ dependencies = [
+ sources."tr46-0.0.3"
+ sources."webidl-conversions-3.0.1"
+ sources."whatwg-url-5.0.0"
+ ];
+ })
+ (sources."node-gyp-8.4.1" // {
+ dependencies = [
+ sources."are-we-there-yet-3.0.1"
+ sources."gauge-4.0.4"
+ sources."npmlog-6.0.2"
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."node-gyp-build-4.8.4"
- (
- sources."node-notifier-10.0.1"
- // {
- dependencies = [
- sources."uuid-8.3.2"
- ];
- }
- )
+ (sources."node-notifier-10.0.1" // {
+ dependencies = [
+ sources."uuid-8.3.2"
+ ];
+ })
sources."node-persist-3.1.3"
sources."node-rsa-1.1.1"
sources."nopt-5.0.0"
@@ -60705,15 +57249,12 @@ in
sources."nwsapi-2.2.16"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- (
- sources."object-to-arguments-0.0.8"
- // {
- dependencies = [
- sources."inspect-parameters-declaration-0.0.10"
- sources."magicli-0.0.5"
- ];
- }
- )
+ (sources."object-to-arguments-0.0.8" // {
+ dependencies = [
+ sources."inspect-parameters-declaration-0.0.10"
+ sources."magicli-0.0.5"
+ ];
+ })
sources."omggif-1.0.10"
sources."once-1.4.0"
sources."onetime-5.1.2"
@@ -60724,41 +57265,32 @@ in
sources."p-try-1.0.0"
sources."package-json-from-dist-1.0.1"
sources."param-case-2.1.1"
- (
- sources."parse5-7.2.1"
- // {
- dependencies = [
- sources."entities-4.5.0"
- ];
- }
- )
+ (sources."parse5-7.2.1" // {
+ dependencies = [
+ sources."entities-4.5.0"
+ ];
+ })
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- (
- sources."path-scurry-1.11.1"
- // {
- dependencies = [
- sources."lru-cache-10.4.3"
- ];
- }
- )
+ (sources."path-scurry-1.11.1" // {
+ dependencies = [
+ sources."lru-cache-10.4.3"
+ ];
+ })
sources."peek-readable-4.1.0"
sources."performance-now-2.1.0"
sources."picomatch-2.3.1"
sources."pipe-functions-1.3.0"
sources."pngjs-6.0.0"
sources."possible-typed-array-names-1.1.0"
- (
- sources."prebuild-install-7.1.3"
- // {
- dependencies = [
- sources."decompress-response-6.0.0"
- sources."mimic-response-3.1.0"
- sources."simple-get-4.0.1"
- ];
- }
- )
+ (sources."prebuild-install-7.1.3" // {
+ dependencies = [
+ sources."decompress-response-6.0.0"
+ sources."mimic-response-3.1.0"
+ sources."simple-get-4.0.1"
+ ];
+ })
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
sources."promise-8.3.0"
@@ -60777,24 +57309,18 @@ in
sources."random-bytes-1.0.0"
sources."rc-1.2.8"
sources."re-reselect-4.0.1"
- (
- sources."readable-stream-2.3.8"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
- (
- sources."readable-web-to-node-stream-3.0.4"
- // {
- dependencies = [
- sources."events-3.3.0"
- sources."readable-stream-4.7.0"
- sources."string_decoder-1.3.0"
- ];
- }
- )
+ (sources."readable-stream-2.3.8" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ (sources."readable-web-to-node-stream-3.0.4" // {
+ dependencies = [
+ sources."events-3.3.0"
+ sources."readable-stream-4.7.0"
+ sources."string_decoder-1.3.0"
+ ];
+ })
sources."readdirp-3.6.0"
sources."reduce-flatten-1.0.1"
sources."redux-4.2.1"
@@ -60802,16 +57328,13 @@ in
sources."reinterval-1.1.0"
sources."relateurl-0.2.7"
sources."relative-3.0.2"
- (
- sources."request-2.88.2"
- // {
- dependencies = [
- sources."form-data-2.3.3"
- sources."tough-cookie-2.5.0"
- sources."uuid-3.4.0"
- ];
- }
- )
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."form-data-2.3.3"
+ sources."tough-cookie-2.5.0"
+ sources."uuid-3.4.0"
+ ];
+ })
sources."requires-port-1.0.0"
sources."reselect-4.1.8"
sources."retry-0.12.0"
@@ -60830,15 +57353,12 @@ in
sources."setimmediate-1.0.5"
sources."setprototypeof-1.2.0"
sources."seventh-0.9.2"
- (
- sources."sharp-0.33.4"
- // {
- dependencies = [
- sources."color-4.2.3"
- sources."color-convert-2.0.1"
- ];
- }
- )
+ (sources."sharp-0.33.4" // {
+ dependencies = [
+ sources."color-4.2.3"
+ sources."color-convert-2.0.1"
+ ];
+ })
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."shellwords-0.1.1"
@@ -60846,146 +57366,107 @@ in
sources."simple-concat-1.0.1"
sources."simple-get-3.1.1"
sources."simple-swizzle-0.2.2"
- (
- sources."slice-ansi-1.0.0"
- // {
- dependencies = [
- sources."is-fullwidth-code-point-2.0.0"
- ];
- }
- )
+ (sources."slice-ansi-1.0.0" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-2.0.0"
+ ];
+ })
sources."smart-buffer-4.2.0"
sources."socks-2.8.4"
- (
- sources."socks-proxy-agent-6.2.1"
- // {
- dependencies = [
- sources."agent-base-6.0.2"
- ];
- }
- )
+ (sources."socks-proxy-agent-6.2.1" // {
+ dependencies = [
+ sources."agent-base-6.0.2"
+ ];
+ })
sources."source-map-0.6.1"
sources."split-on-first-1.1.0"
sources."split-skip-0.0.2"
- (
- sources."split2-3.2.2"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."split2-3.2.2" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."sprintf-js-1.1.3"
sources."sqlite3-5.1.6"
sources."sshpk-1.18.0"
- (
- sources."ssri-8.0.1"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."ssri-8.0.1" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."statuses-1.5.0"
sources."stream-shift-1.0.3"
sources."strict-uri-encode-2.0.0"
sources."string-kit-0.18.3"
sources."string-padding-1.0.2"
- (
- sources."string-to-stream-3.0.1"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."string-to-stream-3.0.1" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."string-width-4.2.3"
sources."string-width-cjs-4.2.3"
- (
- sources."string_decoder-1.1.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
- (
- sources."stringify-parameters-0.0.4"
- // {
- dependencies = [
- sources."magicli-0.0.5"
- ];
- }
- )
- (
- sources."strip-ansi-6.0.1"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- ];
- }
- )
- (
- sources."strip-ansi-cjs-6.0.1"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- ];
- }
- )
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ (sources."stringify-parameters-0.0.4" // {
+ dependencies = [
+ sources."magicli-0.0.5"
+ ];
+ })
+ (sources."strip-ansi-6.0.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ ];
+ })
+ (sources."strip-ansi-cjs-6.0.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ ];
+ })
sources."strip-final-newline-2.0.0"
sources."strip-json-comments-2.0.1"
- sources."strnum-1.0.5"
+ sources."strnum-1.1.1"
sources."strtok3-6.3.0"
sources."supports-color-7.2.0"
sources."symbol-tree-3.2.4"
sources."table-layout-0.4.5"
sources."tar-6.2.1"
- (
- sources."tar-fs-2.1.2"
- // {
- dependencies = [
- sources."chownr-1.1.4"
- ];
- }
- )
- (
- sources."tar-stream-2.2.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
- (
- sources."tcp-port-used-1.0.2"
- // {
- dependencies = [
- sources."debug-4.3.1"
- sources."ms-2.1.2"
- ];
- }
- )
+ (sources."tar-fs-2.1.2" // {
+ dependencies = [
+ sources."chownr-1.1.4"
+ ];
+ })
+ (sources."tar-stream-2.2.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
+ (sources."tcp-port-used-1.0.2" // {
+ dependencies = [
+ sources."debug-4.3.1"
+ sources."ms-2.1.2"
+ ];
+ })
sources."terminal-kit-3.1.1"
- (
- sources."tkwidgets-0.5.27"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."has-flag-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."seventh-0.7.40"
- sources."string-kit-0.11.10"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- sources."supports-color-5.5.0"
- sources."terminal-kit-1.49.4"
- sources."tree-kit-0.7.5"
- sources."wrap-ansi-3.0.1"
- ];
- }
- )
+ (sources."tkwidgets-0.5.27" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."has-flag-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."seventh-0.7.40"
+ sources."string-kit-0.11.10"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."supports-color-5.5.0"
+ sources."terminal-kit-1.49.4"
+ sources."tree-kit-0.7.5"
+ sources."wrap-ansi-3.0.1"
+ ];
+ })
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
sources."token-types-4.2.1"
@@ -61010,27 +57491,21 @@ in
sources."unpack-string-0.0.2"
sources."upper-case-1.1.3"
sources."uri-js-4.4.1"
- (
- sources."url-0.10.3"
- // {
- dependencies = [
- sources."punycode-1.3.2"
- ];
- }
- )
+ (sources."url-0.10.3" // {
+ dependencies = [
+ sources."punycode-1.3.2"
+ ];
+ })
sources."url-parse-1.5.10"
sources."utf-8-validate-6.0.5"
sources."util-0.12.5"
sources."util-deprecate-1.0.2"
sources."uuid-9.0.1"
- (
- sources."verror-1.10.0"
- // {
- dependencies = [
- sources."core-util-is-1.0.2"
- ];
- }
- )
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."w3c-xmlserializer-5.0.0"
sources."webidl-conversions-7.0.0"
sources."whatwg-encoding-3.1.1"
@@ -61041,28 +57516,22 @@ in
sources."wide-align-1.1.5"
sources."word-wrap-1.2.5"
sources."wordwrapjs-3.0.0"
- (
- sources."wrap-ansi-8.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."emoji-regex-9.2.2"
- sources."string-width-5.1.2"
- sources."strip-ansi-7.1.0"
- ];
- }
- )
- (
- sources."wrap-ansi-cjs-7.0.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."color-convert-2.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-8.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."emoji-regex-9.2.2"
+ sources."string-width-5.1.2"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."color-convert-2.0.1"
+ ];
+ })
sources."wrappy-1.0.2"
- sources."ws-8.18.0"
+ sources."ws-8.18.1"
sources."xml-name-validator-5.0.0"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
@@ -61105,15 +57574,12 @@ in
sources."eastasianwidth-0.2.0"
sources."editorconfig-1.0.4"
sources."emoji-regex-9.2.2"
- sources."foreground-child-3.3.0"
- (
- sources."glob-10.4.5"
- // {
- dependencies = [
- sources."minimatch-9.0.5"
- ];
- }
- )
+ sources."foreground-child-3.3.1"
+ (sources."glob-10.4.5" // {
+ dependencies = [
+ sources."minimatch-9.0.5"
+ ];
+ })
sources."ini-1.3.8"
sources."is-fullwidth-code-point-3.0.0"
sources."isexe-2.0.0"
@@ -61132,37 +57598,28 @@ in
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
sources."string-width-5.1.2"
- (
- sources."string-width-cjs-4.2.3"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
- (
- sources."strip-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- ];
- }
- )
+ (sources."string-width-cjs-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
+ (sources."strip-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ ];
+ })
sources."strip-ansi-cjs-6.0.1"
sources."which-2.0.2"
sources."wrap-ansi-8.1.0"
- (
- sources."wrap-ansi-cjs-7.0.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
];
buildInputs = globalBuildInputs;
meta = {
@@ -61260,29 +57717,23 @@ in
sources."console-browserify-1.1.0"
sources."core-util-is-1.0.3"
sources."date-now-0.1.4"
- (
- sources."dom-serializer-0.2.2"
- // {
- dependencies = [
- sources."domelementtype-2.3.0"
- sources."entities-2.2.0"
- ];
- }
- )
+ (sources."dom-serializer-0.2.2" // {
+ dependencies = [
+ sources."domelementtype-2.3.0"
+ sources."entities-2.2.0"
+ ];
+ })
sources."domelementtype-1.3.1"
sources."domhandler-2.3.0"
sources."domutils-1.5.1"
sources."entities-1.0.0"
sources."exit-0.1.2"
sources."fs.realpath-1.0.0"
- (
- sources."glob-7.2.3"
- // {
- dependencies = [
- sources."minimatch-3.1.2"
- ];
- }
- )
+ (sources."glob-7.2.3" // {
+ dependencies = [
+ sources."minimatch-3.1.2"
+ ];
+ })
sources."htmlparser2-3.8.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -61379,7 +57830,7 @@ in
sources."form-data-4.0.2"
sources."formidable-2.1.2"
sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."gopd-1.2.0"
sources."graphlib-2.1.8"
@@ -61438,7 +57889,7 @@ in
dependencies = [
sources."@polka/url-1.0.0-next.28"
sources."@tinyhttp/accepts-2.2.3"
- sources."@tinyhttp/app-2.5.0"
+ sources."@tinyhttp/app-2.5.2"
sources."@tinyhttp/content-disposition-2.2.2"
sources."@tinyhttp/content-type-0.1.4"
sources."@tinyhttp/cookie-2.1.1"
@@ -61446,11 +57897,11 @@ in
sources."@tinyhttp/cors-2.0.1"
sources."@tinyhttp/encode-url-2.1.1"
sources."@tinyhttp/etag-2.1.2"
- sources."@tinyhttp/forwarded-2.1.1"
+ sources."@tinyhttp/forwarded-2.1.2"
sources."@tinyhttp/logger-2.0.0"
- sources."@tinyhttp/proxy-addr-2.2.0"
- sources."@tinyhttp/req-2.2.4"
- sources."@tinyhttp/res-2.2.4"
+ sources."@tinyhttp/proxy-addr-2.2.1"
+ sources."@tinyhttp/req-2.2.5"
+ sources."@tinyhttp/res-2.2.5"
sources."@tinyhttp/router-2.2.3"
sources."@tinyhttp/send-2.2.3"
sources."@tinyhttp/type-is-2.2.4"
@@ -61471,7 +57922,7 @@ in
sources."lowdb-7.0.1"
sources."milliparsec-4.0.0"
sources."mime-4.0.4"
- sources."mrmime-2.0.0"
+ sources."mrmime-2.0.1"
sources."negotiator-0.6.4"
sources."readdirp-4.1.2"
sources."regexparam-2.0.2"
@@ -61479,7 +57930,7 @@ in
sources."sort-on-6.1.0"
sources."steno-4.0.2"
sources."totalist-3.0.1"
- sources."type-fest-4.34.1"
+ sources."type-fest-4.35.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -61545,45 +57996,33 @@ in
sources."atob-2.1.2"
sources."aws-sign2-0.7.0"
sources."aws4-1.13.2"
- (
- sources."base-0.11.2"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."isobject-3.0.1"
+ ];
+ })
sources."basic-auth-2.0.1"
sources."bcrypt-pbkdf-1.0.2"
sources."binary-extensions-1.13.1"
sources."bindings-1.5.0"
- (
- sources."body-parser-1.20.3"
- // {
- dependencies = [
- sources."on-finished-2.4.1"
- ];
- }
- )
- (
- sources."boxen-0.6.0"
- // {
- dependencies = [
- sources."camelcase-2.1.1"
- ];
- }
- )
+ (sources."body-parser-1.20.3" // {
+ dependencies = [
+ sources."on-finished-2.4.1"
+ ];
+ })
+ (sources."boxen-0.6.0" // {
+ dependencies = [
+ sources."camelcase-2.1.1"
+ ];
+ })
sources."braces-1.8.5"
sources."bytes-3.1.2"
- (
- sources."cache-base-1.0.1"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."cache-base-1.0.1" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."call-bind-apply-helpers-1.0.2"
sources."call-bound-1.0.3"
sources."camelcase-3.0.0"
@@ -61591,16 +58030,13 @@ in
sources."caseless-0.12.0"
sources."chalk-1.1.3"
sources."chokidar-1.7.0"
- (
- sources."class-utils-0.3.6"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ sources."isobject-3.0.1"
+ ];
+ })
sources."cli-boxes-1.0.0"
sources."cliui-3.2.0"
sources."clone-1.0.4"
@@ -61609,32 +58045,23 @@ in
sources."combined-stream-1.0.8"
sources."component-emitter-1.3.1"
sources."compressible-2.0.18"
- (
- sources."compression-1.8.0"
- // {
- dependencies = [
- sources."negotiator-0.6.4"
- sources."safe-buffer-5.2.1"
- ];
- }
- )
- (
- sources."configstore-2.1.0"
- // {
- dependencies = [
- sources."uuid-2.0.3"
- ];
- }
- )
+ (sources."compression-1.8.0" // {
+ dependencies = [
+ sources."negotiator-0.6.4"
+ sources."safe-buffer-5.2.1"
+ ];
+ })
+ (sources."configstore-2.1.0" // {
+ dependencies = [
+ sources."uuid-2.0.3"
+ ];
+ })
sources."connect-pause-0.1.1"
- (
- sources."content-disposition-0.5.4"
- // {
- dependencies = [
- sources."safe-buffer-5.2.1"
- ];
- }
- )
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.5"
sources."cookie-0.7.1"
sources."cookie-signature-1.0.6"
@@ -61647,14 +58074,11 @@ in
sources."decamelize-1.2.0"
sources."decode-uri-component-0.2.2"
sources."deep-extend-0.6.0"
- (
- sources."define-property-2.0.2"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."define-property-2.0.2" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."delayed-stream-1.0.0"
sources."depd-2.0.0"
sources."destroy-1.2.0"
@@ -61674,24 +58098,18 @@ in
sources."etag-1.8.1"
sources."expand-brackets-0.1.5"
sources."expand-range-1.8.2"
- (
- sources."express-4.21.2"
- // {
- dependencies = [
- sources."on-finished-2.4.1"
- sources."safe-buffer-5.2.1"
- ];
- }
- )
+ (sources."express-4.21.2" // {
+ dependencies = [
+ sources."on-finished-2.4.1"
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."extend-3.0.2"
- (
- sources."extend-shallow-3.0.2"
- // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- }
- )
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
sources."extglob-0.3.2"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
@@ -61700,14 +58118,11 @@ in
sources."filename-regex-2.0.1"
sources."fill-range-2.2.4"
sources."filled-array-1.1.0"
- (
- sources."finalhandler-1.3.1"
- // {
- dependencies = [
- sources."on-finished-2.4.1"
- ];
- }
- )
+ (sources."finalhandler-1.3.1" // {
+ dependencies = [
+ sources."on-finished-2.4.1"
+ ];
+ })
sources."find-up-1.1.2"
sources."for-in-1.0.2"
sources."for-own-0.1.5"
@@ -61719,7 +58134,7 @@ in
sources."fsevents-1.2.13"
sources."function-bind-1.1.2"
sources."get-caller-file-1.0.3"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
@@ -61732,30 +58147,21 @@ in
sources."har-validator-5.1.5"
sources."has-ansi-2.0.0"
sources."has-symbols-1.1.0"
- (
- sources."has-value-1.0.0"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
- (
- sources."has-values-1.0.0"
- // {
- dependencies = [
- (
- sources."is-number-3.0.0"
- // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- }
- )
- sources."kind-of-4.0.0"
- ];
- }
- )
+ (sources."has-value-1.0.0" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."kind-of-4.0.0"
+ ];
+ })
sources."hasown-2.0.2"
sources."hosted-git-info-2.8.9"
sources."http-errors-2.0.0"
@@ -61783,14 +58189,11 @@ in
sources."is-npm-1.0.0"
sources."is-number-2.1.0"
sources."is-obj-1.0.1"
- (
- sources."is-plain-object-2.0.4"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."is-plain-object-2.0.4" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."is-posix-bracket-0.1.1"
sources."is-primitive-2.0.0"
sources."is-promise-2.2.2"
@@ -61833,28 +58236,22 @@ in
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."minimist-1.2.8"
- (
- sources."mixin-deep-1.3.2"
- // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- }
- )
+ (sources."mixin-deep-1.3.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
sources."mkdirp-0.5.6"
sources."morgan-1.10.0"
sources."ms-2.0.0"
- sources."nan-2.22.0"
- (
- sources."nanomatch-1.2.13"
- // {
- dependencies = [
- sources."arr-diff-4.0.0"
- sources."array-unique-0.3.2"
- sources."kind-of-6.0.3"
- ];
- }
- )
+ sources."nan-2.22.1"
+ (sources."nanomatch-1.2.13" // {
+ dependencies = [
+ sources."arr-diff-4.0.0"
+ sources."array-unique-0.3.2"
+ sources."kind-of-6.0.3"
+ ];
+ })
sources."negotiator-0.6.3"
sources."node-status-codes-1.0.0"
sources."node-uuid-1.4.8"
@@ -61863,33 +58260,24 @@ in
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- (
- sources."object-copy-0.1.0"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
sources."object-inspect-1.13.4"
- (
- sources."object-visit-1.0.1"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."object-visit-1.0.1" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."object.omit-2.0.1"
- (
- sources."object.pick-1.3.0"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."object.pick-1.3.0" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."os-homedir-1.0.2"
@@ -61919,15 +58307,12 @@ in
sources."psl-1.15.0"
sources."punycode-2.3.1"
sources."qs-6.13.0"
- (
- sources."randomatic-3.1.1"
- // {
- dependencies = [
- sources."is-number-4.0.0"
- sources."kind-of-6.0.3"
- ];
- }
- )
+ (sources."randomatic-3.1.1" // {
+ dependencies = [
+ sources."is-number-4.0.0"
+ sources."kind-of-6.0.3"
+ ];
+ })
sources."range-parser-1.2.1"
sources."raw-body-2.5.2"
sources."rc-1.2.8"
@@ -61935,61 +58320,43 @@ in
sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
sources."readable-stream-2.3.8"
- (
- sources."readdirp-2.2.1"
- // {
- dependencies = [
- sources."arr-diff-4.0.0"
- sources."array-unique-0.3.2"
- (
- sources."braces-2.3.2"
- // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- }
- )
- (
- sources."expand-brackets-2.1.4"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- ];
- }
- )
- (
- sources."extglob-2.0.4"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- ];
- }
- )
- (
- sources."fill-range-4.0.0"
- // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- }
- )
- sources."is-descriptor-0.1.7"
- (
- sources."is-number-3.0.0"
- // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- }
- )
- sources."isobject-3.0.1"
- sources."kind-of-6.0.3"
- sources."micromatch-3.1.10"
- ];
- }
- )
+ (sources."readdirp-2.2.1" // {
+ dependencies = [
+ sources."arr-diff-4.0.0"
+ sources."array-unique-0.3.2"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."is-descriptor-0.1.7"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."isobject-3.0.1"
+ sources."kind-of-6.0.3"
+ sources."micromatch-3.1.10"
+ ];
+ })
sources."regex-cache-0.4.4"
sources."regex-not-1.0.2"
sources."registry-auth-token-3.4.0"
@@ -61998,14 +58365,11 @@ in
sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."repeating-2.0.1"
- (
- sources."request-2.88.2"
- // {
- dependencies = [
- sources."qs-6.5.3"
- ];
- }
- )
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."qs-6.5.3"
+ ];
+ })
sources."require-directory-2.1.1"
sources."require-main-filename-1.0.1"
sources."resolve-1.22.10"
@@ -62016,52 +58380,40 @@ in
sources."safer-buffer-2.1.2"
sources."semver-5.7.2"
sources."semver-diff-2.1.0"
- (
- sources."send-0.19.0"
- // {
- dependencies = [
- sources."encodeurl-1.0.2"
- sources."ms-2.1.3"
- sources."on-finished-2.4.1"
- ];
- }
- )
+ (sources."send-0.19.0" // {
+ dependencies = [
+ sources."encodeurl-1.0.2"
+ sources."ms-2.1.3"
+ sources."on-finished-2.4.1"
+ ];
+ })
sources."serve-static-1.16.2"
sources."server-destroy-1.0.1"
sources."set-blocking-2.0.0"
- (
- sources."set-value-2.0.1"
- // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- }
- )
+ (sources."set-value-2.0.1" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
sources."setprototypeof-1.2.0"
sources."side-channel-1.1.0"
sources."side-channel-list-1.0.0"
sources."side-channel-map-1.0.1"
sources."side-channel-weakmap-1.0.2"
sources."slide-1.1.6"
- (
- sources."snapdragon-0.8.2"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
- (
- sources."snapdragon-node-2.1.1"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."isobject-3.0.1"
+ ];
+ })
sources."snapdragon-util-3.0.1"
sources."source-map-0.5.7"
sources."source-map-resolve-0.5.3"
@@ -62072,15 +58424,12 @@ in
sources."spdx-license-ids-3.0.21"
sources."split-string-3.1.0"
sources."sshpk-1.18.0"
- (
- sources."static-extend-0.1.2"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
sources."statuses-2.0.1"
sources."steno-0.4.4"
sources."string-width-1.0.2"
@@ -62093,14 +58442,11 @@ in
sources."timed-out-3.1.3"
sources."to-object-path-0.3.0"
sources."to-regex-3.0.2"
- (
- sources."to-regex-range-2.1.1"
- // {
- dependencies = [
- sources."is-number-3.0.0"
- ];
- }
- )
+ (sources."to-regex-range-2.1.1" // {
+ dependencies = [
+ sources."is-number-3.0.0"
+ ];
+ })
sources."toidentifier-1.0.1"
sources."tough-cookie-2.5.0"
sources."tunnel-agent-0.6.0"
@@ -62109,23 +58455,17 @@ in
sources."underscore-db-0.10.0"
sources."union-value-1.0.1"
sources."unpipe-1.0.0"
- (
- sources."unset-value-1.0.0"
- // {
- dependencies = [
- (
- sources."has-value-0.3.1"
- // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- }
- )
- sources."has-values-0.1.4"
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ sources."isobject-3.0.1"
+ ];
+ })
sources."unzip-response-1.0.2"
sources."update-notifier-1.0.3"
sources."uri-js-4.4.1"
@@ -62189,35 +58529,26 @@ in
};
dependencies = [
sources."@ampproject/remapping-2.3.0"
- (
- sources."@babel/cli-7.26.4"
- // {
- dependencies = [
- sources."make-dir-2.1.0"
- sources."semver-5.7.2"
- ];
- }
- )
+ (sources."@babel/cli-7.26.4" // {
+ dependencies = [
+ sources."make-dir-2.1.0"
+ sources."semver-5.7.2"
+ ];
+ })
sources."@babel/code-frame-7.26.2"
sources."@babel/compat-data-7.26.8"
- (
- sources."@babel/core-7.26.9"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."@babel/core-7.26.9" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."@babel/generator-7.26.9"
sources."@babel/helper-annotate-as-pure-7.25.9"
- (
- sources."@babel/helper-compilation-targets-7.26.5"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."@babel/helper-compilation-targets-7.26.5" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."@babel/helper-module-imports-7.25.9"
sources."@babel/helper-module-transforms-7.26.0"
sources."@babel/helper-plugin-utils-7.26.5"
@@ -62229,15 +58560,12 @@ in
sources."@babel/parser-7.26.9"
sources."@babel/plugin-syntax-jsx-7.25.9"
sources."@babel/plugin-transform-react-jsx-7.25.9"
- (
- sources."@babel/register-7.25.9"
- // {
- dependencies = [
- sources."make-dir-2.1.0"
- sources."semver-5.7.2"
- ];
- }
- )
+ (sources."@babel/register-7.25.9" // {
+ dependencies = [
+ sources."make-dir-2.1.0"
+ sources."semver-5.7.2"
+ ];
+ })
sources."@babel/template-7.26.9"
sources."@babel/traverse-7.26.9"
sources."@babel/types-7.26.9"
@@ -62269,14 +58597,11 @@ in
sources."@xmpp/jid-0.13.2"
sources."@xmpp/middleware-0.13.3"
sources."@xmpp/reconnect-0.13.2"
- (
- sources."@xmpp/resolve-0.13.3"
- // {
- dependencies = [
- sources."node-fetch-3.3.2"
- ];
- }
- )
+ (sources."@xmpp/resolve-0.13.3" // {
+ dependencies = [
+ sources."node-fetch-3.3.2"
+ ];
+ })
sources."@xmpp/resource-binding-0.13.3"
sources."@xmpp/sasl-0.13.4"
sources."@xmpp/sasl-anonymous-0.13.2"
@@ -62288,34 +58613,25 @@ in
sources."@xmpp/stream-management-0.13.3"
sources."@xmpp/tcp-0.13.3"
sources."@xmpp/tls-0.13.3"
- (
- sources."@xmpp/websocket-0.13.3"
- // {
- dependencies = [
- sources."ws-8.18.0"
- ];
- }
- )
- (
- sources."@xmpp/xml-0.13.3"
- // {
- dependencies = [
- sources."ltx-3.1.2"
- ];
- }
- )
+ (sources."@xmpp/websocket-0.13.3" // {
+ dependencies = [
+ sources."ws-8.18.1"
+ ];
+ })
+ (sources."@xmpp/xml-0.13.3" // {
+ dependencies = [
+ sources."ltx-3.1.2"
+ ];
+ })
sources."abab-2.0.6"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
sources."acorn-8.14.0"
- (
- sources."acorn-globals-6.0.0"
- // {
- dependencies = [
- sources."acorn-7.4.1"
- ];
- }
- )
+ (sources."acorn-globals-6.0.0" // {
+ dependencies = [
+ sources."acorn-7.4.1"
+ ];
+ })
sources."acorn-walk-7.2.0"
sources."agent-base-6.0.2"
sources."ansi-colors-4.1.3"
@@ -62342,15 +58658,12 @@ in
sources."base64-js-1.5.1"
sources."bl-4.1.0"
sources."bn.js-4.12.1"
- (
- sources."body-parser-1.20.3"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."body-parser-1.20.3" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."brace-expansion-1.1.11"
sources."braces-3.0.3"
sources."browser-or-node-1.3.0"
@@ -62363,7 +58676,7 @@ in
sources."call-bind-1.0.8"
sources."call-bind-apply-helpers-1.0.2"
sources."call-bound-1.0.3"
- sources."caniuse-lite-1.0.30001699"
+ sources."caniuse-lite-1.0.30001700"
sources."canvas-2.11.2"
sources."chalk-4.1.2"
sources."chardet-1.6.1"
@@ -62390,14 +58703,11 @@ in
sources."create-hash-1.2.0"
sources."create-hmac-1.1.7"
sources."cssom-0.4.4"
- (
- sources."cssstyle-2.3.0"
- // {
- dependencies = [
- sources."cssom-0.3.8"
- ];
- }
- )
+ (sources."cssstyle-2.3.0" // {
+ dependencies = [
+ sources."cssom-0.3.8"
+ ];
+ })
sources."data-uri-to-buffer-4.0.1"
sources."data-urls-2.0.0"
sources."data-view-buffer-1.0.2"
@@ -62417,28 +58727,22 @@ in
sources."detect-libc-2.0.3"
sources."dir-glob-3.0.1"
sources."doipjs-0.15.7"
- (
- sources."domexception-2.0.1"
- // {
- dependencies = [
- sources."webidl-conversions-5.0.0"
- ];
- }
- )
+ (sources."domexception-2.0.1" // {
+ dependencies = [
+ sources."webidl-conversions-5.0.0"
+ ];
+ })
sources."dotenv-8.6.0"
sources."dunder-proto-1.0.1"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.5.101"
+ sources."electron-to-chromium-1.5.104"
sources."emoji-regex-8.0.0"
sources."encodeurl-2.0.0"
- (
- sources."encoding-0.1.13"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
+ (sources."encoding-0.1.13" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."end-of-stream-1.4.4"
sources."enquirer-2.4.1"
sources."es-abstract-1.23.9"
@@ -62457,39 +58761,30 @@ in
sources."etag-1.8.1"
sources."events-3.3.0"
sources."expand-template-2.0.3"
- (
- sources."express-4.21.2"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."express-4.21.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."express-validator-6.15.0"
sources."fast-glob-3.3.3"
sources."fastq-1.19.0"
sources."fetch-blob-3.2.0"
sources."fill-range-7.1.1"
sources."filter-obj-1.1.0"
- (
- sources."finalhandler-1.3.1"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
- (
- sources."find-cache-dir-2.1.0"
- // {
- dependencies = [
- sources."make-dir-2.1.0"
- sources."semver-5.7.2"
- ];
- }
- )
+ (sources."finalhandler-1.3.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ (sources."find-cache-dir-2.1.0" // {
+ dependencies = [
+ sources."make-dir-2.1.0"
+ sources."semver-5.7.2"
+ ];
+ })
sources."find-up-3.0.0"
sources."follow-redirects-1.15.9"
sources."for-each-0.3.5"
@@ -62497,34 +58792,25 @@ in
sources."formdata-polyfill-4.0.10"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
- (
- sources."from2-2.3.0"
- // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
+ (sources."from2-2.3.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
sources."fs-constants-1.0.0"
- (
- sources."fs-extra-9.1.0"
- // {
- dependencies = [
- sources."universalify-2.0.1"
- ];
- }
- )
- (
- sources."fs-minipass-2.1.0"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."fs-extra-9.1.0" // {
+ dependencies = [
+ sources."universalify-2.0.1"
+ ];
+ })
+ (sources."fs-minipass-2.1.0" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."fs-readdir-recursive-1.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
@@ -62533,7 +58819,7 @@ in
sources."gauge-3.0.2"
sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-symbol-description-1.1.0"
sources."github-from-package-0.0.0"
@@ -62541,14 +58827,11 @@ in
sources."glob-parent-5.1.2"
sources."globals-11.12.0"
sources."globalthis-1.0.4"
- (
- sources."globby-11.1.0"
- // {
- dependencies = [
- sources."slash-3.0.0"
- ];
- }
- )
+ (sources."globby-11.1.0" // {
+ dependencies = [
+ sources."slash-3.0.0"
+ ];
+ })
sources."gopd-1.2.0"
sources."graceful-fs-4.2.11"
sources."growly-1.3.0"
@@ -62577,14 +58860,11 @@ in
sources."into-stream-6.0.0"
sources."ipaddr.js-1.9.1"
sources."irc-colors-1.5.0"
- (
- sources."irc-upd-0.11.0"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
+ (sources."irc-upd-0.11.0" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."is-array-buffer-3.0.5"
sources."is-async-function-2.1.1"
sources."is-bigint-1.1.0"
@@ -62622,35 +58902,26 @@ in
sources."jsdom-16.7.0"
sources."jsesc-3.1.0"
sources."json5-2.2.3"
- (
- sources."jsonfile-6.1.0"
- // {
- dependencies = [
- sources."universalify-2.0.1"
- ];
- }
- )
+ (sources."jsonfile-6.1.0" // {
+ dependencies = [
+ sources."universalify-2.0.1"
+ ];
+ })
sources."kind-of-6.0.3"
sources."koa-compose-4.2.0"
sources."locate-path-3.0.0"
sources."lodash-4.17.21"
- (
- sources."lru-cache-5.1.1"
- // {
- dependencies = [
- sources."yallist-3.1.1"
- ];
- }
- )
+ (sources."lru-cache-5.1.1" // {
+ dependencies = [
+ sources."yallist-3.1.1"
+ ];
+ })
sources."ltx-3.0.0"
- (
- sources."make-dir-3.1.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."make-dir-3.1.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."math-intrinsics-1.1.0"
sources."md5.js-1.3.5"
sources."media-typer-0.3.0"
@@ -62667,41 +58938,32 @@ in
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
sources."minipass-5.0.0"
- (
- sources."minizlib-2.1.2"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."minizlib-2.1.2" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."mkdirp-1.0.4"
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.3"
sources."multistream-4.1.0"
- sources."nan-2.22.0"
+ sources."nan-2.22.1"
sources."napi-build-utils-1.0.2"
sources."negotiator-0.6.3"
sources."node-abi-3.74.0"
sources."node-domexception-1.0.0"
- (
- sources."node-environment-flags-1.0.6"
- // {
- dependencies = [
- sources."semver-5.7.2"
- ];
- }
- )
- (
- sources."node-fetch-2.7.0"
- // {
- dependencies = [
- sources."tr46-0.0.3"
- sources."webidl-conversions-3.0.1"
- sources."whatwg-url-5.0.0"
- ];
- }
- )
+ (sources."node-environment-flags-1.0.6" // {
+ dependencies = [
+ sources."semver-5.7.2"
+ ];
+ })
+ (sources."node-fetch-2.7.0" // {
+ dependencies = [
+ sources."tr46-0.0.3"
+ sources."webidl-conversions-3.0.1"
+ sources."whatwg-url-5.0.0"
+ ];
+ })
sources."node-gyp-build-4.8.4"
sources."node-notifier-10.0.1"
sources."node-releases-2.0.19"
@@ -62733,30 +58995,24 @@ in
sources."picomatch-2.3.1"
sources."pify-4.0.1"
sources."pirates-4.0.6"
- (
- sources."pkg-5.8.1"
- // {
- dependencies = [
- sources."@babel/generator-7.18.2"
- sources."@babel/parser-7.18.4"
- sources."@babel/types-7.19.0"
- sources."jsesc-2.5.2"
- ];
- }
- )
+ (sources."pkg-5.8.1" // {
+ dependencies = [
+ sources."@babel/generator-7.18.2"
+ sources."@babel/parser-7.18.4"
+ sources."@babel/types-7.19.0"
+ sources."jsesc-2.5.2"
+ ];
+ })
sources."pkg-dir-3.0.0"
sources."pkg-fetch-3.4.2"
sources."possible-typed-array-names-1.1.0"
- (
- sources."prebuild-install-7.1.1"
- // {
- dependencies = [
- sources."decompress-response-6.0.0"
- sources."mimic-response-3.1.0"
- sources."simple-get-4.0.1"
- ];
- }
- )
+ (sources."prebuild-install-7.1.1" // {
+ dependencies = [
+ sources."decompress-response-6.0.0"
+ sources."mimic-response-3.1.0"
+ sources."simple-get-4.0.1"
+ ];
+ })
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
sources."proxy-addr-2.0.7"
@@ -62779,14 +59035,11 @@ in
sources."regexp.prototype.flags-1.5.4"
sources."require-directory-2.1.1"
sources."requires-port-1.0.0"
- (
- sources."resolve-1.22.10"
- // {
- dependencies = [
- sources."is-core-module-2.16.1"
- ];
- }
- )
+ (sources."resolve-1.22.10" // {
+ dependencies = [
+ sources."is-core-module-2.16.1"
+ ];
+ })
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
sources."ripemd160-2.0.2"
@@ -62802,22 +59055,16 @@ in
sources."saslmechanisms-0.1.1"
sources."saxes-5.0.1"
sources."semver-7.7.1"
- (
- sources."send-0.19.0"
- // {
- dependencies = [
- (
- sources."debug-2.6.9"
- // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- }
- )
- sources."encodeurl-1.0.2"
- ];
- }
- )
+ (sources."send-0.19.0" // {
+ dependencies = [
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."encodeurl-1.0.2"
+ ];
+ })
sources."serve-static-1.16.2"
sources."set-blocking-2.0.0"
sources."set-function-length-1.2.2"
@@ -62839,17 +59086,14 @@ in
sources."source-map-support-0.5.21"
sources."split-on-first-1.1.0"
sources."statuses-2.0.1"
- (
- sources."stream-meter-1.0.4"
- // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
+ (sources."stream-meter-1.0.4" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
sources."strict-uri-encode-2.0.0"
sources."string-width-4.2.3"
sources."string.prototype.trim-1.2.10"
@@ -62862,14 +59106,11 @@ in
sources."supports-preserve-symlinks-flag-1.0.0"
sources."symbol-tree-3.2.4"
sources."tar-6.2.1"
- (
- sources."tar-fs-2.1.2"
- // {
- dependencies = [
- sources."chownr-1.1.4"
- ];
- }
- )
+ (sources."tar-fs-2.1.2" // {
+ dependencies = [
+ sources."chownr-1.1.4"
+ ];
+ })
sources."tar-stream-2.2.0"
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
@@ -62994,14 +59235,11 @@ in
};
dependencies = [
sources."accepts-1.3.8"
- (
- sources."anymatch-2.0.0"
- // {
- dependencies = [
- sources."normalize-path-2.1.1"
- ];
- }
- )
+ (sources."anymatch-2.0.0" // {
+ dependencies = [
+ sources."normalize-path-2.1.1"
+ ];
+ })
sources."apache-crypt-1.2.6"
sources."apache-md5-1.1.8"
sources."arr-diff-4.0.0"
@@ -63011,14 +59249,11 @@ in
sources."assign-symbols-1.0.0"
sources."async-each-1.0.6"
sources."atob-2.1.2"
- (
- sources."base-0.11.2"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- }
- )
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
sources."basic-auth-2.0.1"
sources."batch-0.6.1"
sources."bcryptjs-2.4.3"
@@ -63027,27 +59262,21 @@ in
sources."braces-2.3.2"
sources."cache-base-1.0.1"
sources."chokidar-2.1.8"
- (
- sources."class-utils-0.3.6"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
sources."collection-visit-1.0.0"
sources."colors-1.4.0"
sources."component-emitter-1.3.1"
- (
- sources."connect-3.7.0"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- }
- )
+ (sources."connect-3.7.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."copy-descriptor-0.1.1"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
@@ -63062,48 +59291,36 @@ in
sources."escape-html-1.0.3"
sources."etag-1.8.1"
sources."event-stream-3.3.4"
- (
- sources."expand-brackets-2.1.4"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- sources."ms-2.0.0"
- ];
- }
- )
- (
- sources."extend-shallow-2.0.1"
- // {
- dependencies = [
- sources."is-extendable-0.1.1"
- ];
- }
- )
- (
- sources."extglob-2.0.4"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- }
- )
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ sources."ms-2.0.0"
+ ];
+ })
+ (sources."extend-shallow-2.0.1" // {
+ dependencies = [
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
sources."faye-websocket-0.11.4"
sources."file-uri-to-path-1.0.0"
sources."fill-range-4.0.0"
- (
- sources."finalhandler-1.1.2"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."encodeurl-1.0.2"
- sources."ms-2.0.0"
- sources."on-finished-2.3.0"
- sources."statuses-1.5.0"
- ];
- }
- )
+ (sources."finalhandler-1.1.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."encodeurl-1.0.2"
+ sources."ms-2.0.0"
+ sources."on-finished-2.3.0"
+ sources."statuses-1.5.0"
+ ];
+ })
sources."for-in-1.0.2"
sources."fragment-cache-0.2.1"
sources."fresh-0.5.2"
@@ -63111,24 +59328,18 @@ in
sources."fsevents-1.2.13"
sources."function-bind-1.1.2"
sources."get-value-2.0.6"
- (
- sources."glob-parent-3.1.0"
- // {
- dependencies = [
- sources."is-glob-3.1.0"
- ];
- }
- )
+ (sources."glob-parent-3.1.0" // {
+ dependencies = [
+ sources."is-glob-3.1.0"
+ ];
+ })
sources."graceful-fs-4.2.11"
sources."has-value-1.0.0"
- (
- sources."has-values-1.0.0"
- // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- }
- )
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
sources."hasown-2.0.2"
sources."http-auth-3.1.3"
sources."http-errors-2.0.0"
@@ -63152,51 +59363,39 @@ in
sources."map-cache-0.2.2"
sources."map-stream-0.1.0"
sources."map-visit-1.0.0"
- (
- sources."micromatch-3.1.10"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- sources."kind-of-6.0.3"
- ];
- }
- )
+ (sources."micromatch-3.1.10" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."kind-of-6.0.3"
+ ];
+ })
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."mixin-deep-1.3.2"
- (
- sources."morgan-1.10.0"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- sources."on-finished-2.3.0"
- ];
- }
- )
+ (sources."morgan-1.10.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ sources."on-finished-2.3.0"
+ ];
+ })
sources."ms-2.1.3"
- sources."nan-2.22.0"
- (
- sources."nanomatch-1.2.13"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- sources."kind-of-6.0.3"
- ];
- }
- )
+ sources."nan-2.22.1"
+ (sources."nanomatch-1.2.13" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."kind-of-6.0.3"
+ ];
+ })
sources."negotiator-0.6.3"
sources."normalize-path-3.0.0"
sources."object-assign-4.1.1"
- (
- sources."object-copy-0.1.0"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
sources."object-visit-1.0.1"
sources."object.pick-1.3.0"
sources."on-finished-2.4.1"
@@ -63213,14 +59412,11 @@ in
sources."range-parser-1.2.1"
sources."readable-stream-2.3.8"
sources."readdirp-2.2.1"
- (
- sources."regex-not-1.0.2"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- ];
- }
- )
+ (sources."regex-not-1.0.2" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ ];
+ })
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
@@ -63229,111 +59425,81 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."send-1.1.0"
- (
- sources."serve-index-1.9.1"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."depd-1.1.2"
- sources."http-errors-1.6.3"
- sources."inherits-2.0.3"
- sources."ms-2.0.0"
- sources."setprototypeof-1.1.0"
- sources."statuses-1.5.0"
- ];
- }
- )
- (
- sources."set-value-2.0.1"
- // {
- dependencies = [
- sources."is-extendable-0.1.1"
- ];
- }
- )
+ (sources."serve-index-1.9.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."depd-1.1.2"
+ sources."http-errors-1.6.3"
+ sources."inherits-2.0.3"
+ sources."ms-2.0.0"
+ sources."setprototypeof-1.1.0"
+ sources."statuses-1.5.0"
+ ];
+ })
+ (sources."set-value-2.0.1" // {
+ dependencies = [
+ sources."is-extendable-0.1.1"
+ ];
+ })
sources."setprototypeof-1.2.0"
- (
- sources."snapdragon-0.8.2"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- sources."ms-2.0.0"
- ];
- }
- )
- (
- sources."snapdragon-node-2.1.1"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- }
- )
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ sources."ms-2.0.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
sources."snapdragon-util-3.0.1"
sources."source-map-0.5.7"
sources."source-map-resolve-0.5.3"
sources."source-map-url-0.4.1"
sources."split-0.3.3"
- (
- sources."split-string-3.1.0"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- ];
- }
- )
- (
- sources."static-extend-0.1.2"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
+ (sources."split-string-3.1.0" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ ];
+ })
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
sources."statuses-2.0.1"
sources."stream-combiner-0.0.4"
sources."string_decoder-1.1.1"
sources."through-2.3.8"
sources."to-object-path-0.3.0"
- (
- sources."to-regex-3.0.2"
- // {
- dependencies = [
- sources."extend-shallow-3.0.2"
- ];
- }
- )
+ (sources."to-regex-3.0.2" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ ];
+ })
sources."to-regex-range-2.1.1"
sources."toidentifier-1.0.1"
- (
- sources."union-value-1.0.1"
- // {
- dependencies = [
- sources."is-extendable-0.1.1"
- ];
- }
- )
+ (sources."union-value-1.0.1" // {
+ dependencies = [
+ sources."is-extendable-0.1.1"
+ ];
+ })
sources."unix-crypt-td-js-1.1.4"
sources."unpipe-1.0.0"
- (
- sources."unset-value-1.0.0"
- // {
- dependencies = [
- (
- sources."has-value-0.3.1"
- // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- }
- )
- sources."has-values-0.1.4"
- ];
- }
- )
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
sources."upath-1.2.0"
sources."urix-0.1.0"
sources."use-3.1.1"
@@ -63383,15 +59549,12 @@ in
sources."aws-sign2-0.7.0"
sources."aws4-1.13.2"
sources."backo2-1.0.2"
- (
- sources."base-0.11.2"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."isobject-3.0.1"
+ ];
+ })
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
sources."bcrypt-pbkdf-1.0.2"
@@ -63402,41 +59565,32 @@ in
sources."braces-1.8.5"
sources."bufferutil-4.0.9"
sources."bytes-3.1.2"
- (
- sources."cache-base-1.0.1"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."cache-base-1.0.1" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."call-bind-apply-helpers-1.0.2"
sources."call-bound-1.0.3"
sources."caseless-0.12.0"
sources."chokidar-1.7.0"
- (
- sources."class-utils-0.3.6"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ sources."isobject-3.0.1"
+ ];
+ })
sources."collection-visit-1.0.0"
sources."combined-stream-1.0.8"
sources."component-bind-1.0.0"
sources."component-emitter-1.3.1"
sources."component-inherit-0.0.3"
- (
- sources."content-disposition-0.5.4"
- // {
- dependencies = [
- sources."safe-buffer-5.2.1"
- ];
- }
- )
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.5"
sources."cookie-0.7.1"
sources."cookie-signature-1.0.6"
@@ -63445,14 +59599,11 @@ in
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."decode-uri-component-0.2.2"
- (
- sources."define-property-2.0.2"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."define-property-2.0.2" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."delayed-stream-1.0.0"
sources."depd-2.0.0"
sources."destroy-1.2.0"
@@ -63460,24 +59611,18 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."encodeurl-2.0.0"
- (
- sources."engine.io-3.6.2"
- // {
- dependencies = [
- sources."cookie-0.4.2"
- sources."debug-4.1.1"
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."engine.io-client-3.5.4"
- // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- }
- )
+ (sources."engine.io-3.6.2" // {
+ dependencies = [
+ sources."cookie-0.4.2"
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."engine.io-client-3.5.4" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
sources."engine.io-parser-2.2.1"
sources."entities-1.1.2"
sources."es-define-property-1.0.1"
@@ -63487,23 +59632,17 @@ in
sources."etag-1.8.1"
sources."expand-brackets-0.1.5"
sources."expand-range-1.8.2"
- (
- sources."express-4.21.2"
- // {
- dependencies = [
- sources."safe-buffer-5.2.1"
- ];
- }
- )
+ (sources."express-4.21.2" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."extend-3.0.2"
- (
- sources."extend-shallow-3.0.2"
- // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- }
- )
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
sources."extglob-0.3.2"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
@@ -63521,7 +59660,7 @@ in
sources."fresh-0.5.2"
sources."fsevents-1.2.13"
sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
@@ -63532,40 +59671,28 @@ in
sources."graceful-fs-4.2.11"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
- (
- sources."has-binary2-1.0.3"
- // {
- dependencies = [
- sources."isarray-2.0.1"
- ];
- }
- )
+ (sources."has-binary2-1.0.3" // {
+ dependencies = [
+ sources."isarray-2.0.1"
+ ];
+ })
sources."has-cors-1.1.0"
sources."has-symbols-1.1.0"
- (
- sources."has-value-1.0.0"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
- (
- sources."has-values-1.0.0"
- // {
- dependencies = [
- (
- sources."is-number-3.0.0"
- // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- }
- )
- sources."kind-of-4.0.0"
- ];
- }
- )
+ (sources."has-value-1.0.0" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."kind-of-4.0.0"
+ ];
+ })
sources."hasown-2.0.2"
sources."html-entities-1.4.0"
sources."http-errors-2.0.0"
@@ -63586,14 +59713,11 @@ in
sources."is-extglob-1.0.0"
sources."is-glob-2.0.1"
sources."is-number-2.1.0"
- (
- sources."is-plain-object-2.0.4"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."is-plain-object-2.0.4" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."is-posix-bracket-0.1.1"
sources."is-primitive-2.0.0"
sources."is-typedarray-1.0.0"
@@ -63626,57 +59750,42 @@ in
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."minimist-1.2.8"
- (
- sources."mixin-deep-1.3.2"
- // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- }
- )
+ (sources."mixin-deep-1.3.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
sources."ms-2.0.0"
- sources."nan-2.22.0"
- (
- sources."nanomatch-1.2.13"
- // {
- dependencies = [
- sources."arr-diff-4.0.0"
- sources."array-unique-0.3.2"
- sources."kind-of-6.0.3"
- ];
- }
- )
+ sources."nan-2.22.1"
+ (sources."nanomatch-1.2.13" // {
+ dependencies = [
+ sources."arr-diff-4.0.0"
+ sources."array-unique-0.3.2"
+ sources."kind-of-6.0.3"
+ ];
+ })
sources."negotiator-0.6.3"
sources."node-gyp-build-4.8.4"
sources."normalize-path-2.1.1"
sources."oauth-sign-0.9.0"
- (
- sources."object-copy-0.1.0"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
sources."object-inspect-1.13.4"
- (
- sources."object-visit-1.0.1"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."object-visit-1.0.1" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."object.omit-2.0.1"
- (
- sources."object.pick-1.3.0"
- // {
- dependencies = [
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."object.pick-1.3.0" // {
+ dependencies = [
+ sources."isobject-3.0.1"
+ ];
+ })
sources."on-finished-2.4.1"
sources."opn-5.5.0"
sources."parse-glob-3.0.4"
@@ -63694,193 +59803,142 @@ in
sources."psl-1.15.0"
sources."punycode-2.3.1"
sources."qs-6.13.0"
- (
- sources."randomatic-3.1.1"
- // {
- dependencies = [
- sources."is-number-4.0.0"
- sources."kind-of-6.0.3"
- ];
- }
- )
+ (sources."randomatic-3.1.1" // {
+ dependencies = [
+ sources."is-number-4.0.0"
+ sources."kind-of-6.0.3"
+ ];
+ })
sources."range-parser-1.2.1"
sources."raw-body-2.5.2"
sources."readable-stream-2.3.8"
- (
- sources."readdirp-2.2.1"
- // {
- dependencies = [
- sources."arr-diff-4.0.0"
- sources."array-unique-0.3.2"
- (
- sources."braces-2.3.2"
- // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- }
- )
- (
- sources."expand-brackets-2.1.4"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- ];
- }
- )
- (
- sources."extglob-2.0.4"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- ];
- }
- )
- (
- sources."fill-range-4.0.0"
- // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- }
- )
- sources."is-descriptor-0.1.7"
- (
- sources."is-number-3.0.0"
- // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- }
- )
- sources."isobject-3.0.1"
- sources."kind-of-6.0.3"
- sources."micromatch-3.1.10"
- ];
- }
- )
+ (sources."readdirp-2.2.1" // {
+ dependencies = [
+ sources."arr-diff-4.0.0"
+ sources."array-unique-0.3.2"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."is-descriptor-0.1.7"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."isobject-3.0.1"
+ sources."kind-of-6.0.3"
+ sources."micromatch-3.1.10"
+ ];
+ })
sources."regex-cache-0.4.4"
sources."regex-not-1.0.2"
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
- (
- sources."request-2.88.2"
- // {
- dependencies = [
- sources."qs-6.5.3"
- ];
- }
- )
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."qs-6.5.3"
+ ];
+ })
sources."resolve-url-0.2.1"
sources."ret-0.1.15"
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- (
- sources."send-0.19.0"
- // {
- dependencies = [
- sources."encodeurl-1.0.2"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."send-0.19.0" // {
+ dependencies = [
+ sources."encodeurl-1.0.2"
+ sources."ms-2.1.3"
+ ];
+ })
sources."serve-static-1.16.2"
- (
- sources."set-value-2.0.1"
- // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- }
- )
+ (sources."set-value-2.0.1" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
sources."setprototypeof-1.2.0"
sources."side-channel-1.1.0"
sources."side-channel-list-1.0.0"
sources."side-channel-map-1.0.1"
sources."side-channel-weakmap-1.0.2"
- (
- sources."snapdragon-0.8.2"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
- (
- sources."snapdragon-node-2.1.1"
- // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."isobject-3.0.1"
+ ];
+ })
sources."snapdragon-util-3.0.1"
- (
- sources."socket.io-2.5.1"
- // {
- dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."socket.io-2.5.1" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
sources."socket.io-adapter-1.1.2"
- (
- sources."socket.io-client-2.5.0"
- // {
- dependencies = [
- sources."debug-3.1.0"
- sources."isarray-2.0.1"
- sources."socket.io-parser-3.3.4"
- ];
- }
- )
- (
- sources."socket.io-parser-3.4.3"
- // {
- dependencies = [
- sources."component-emitter-1.2.1"
- sources."debug-4.1.1"
- sources."isarray-2.0.1"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."socket.io-client-2.5.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."isarray-2.0.1"
+ sources."socket.io-parser-3.3.4"
+ ];
+ })
+ (sources."socket.io-parser-3.4.3" // {
+ dependencies = [
+ sources."component-emitter-1.2.1"
+ sources."debug-4.1.1"
+ sources."isarray-2.0.1"
+ sources."ms-2.1.3"
+ ];
+ })
sources."source-map-0.5.7"
sources."source-map-resolve-0.5.3"
sources."source-map-url-0.4.1"
sources."split-string-3.1.0"
sources."sprintf-js-1.0.3"
sources."sshpk-1.18.0"
- (
- sources."static-extend-0.1.2"
- // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-descriptor-0.1.7"
- ];
- }
- )
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-descriptor-0.1.7"
+ ];
+ })
sources."statuses-2.0.1"
sources."string_decoder-1.1.1"
sources."to-array-0.1.4"
sources."to-object-path-0.3.0"
sources."to-regex-3.0.2"
- (
- sources."to-regex-range-2.1.1"
- // {
- dependencies = [
- sources."is-number-3.0.0"
- ];
- }
- )
+ (sources."to-regex-range-2.1.1" // {
+ dependencies = [
+ sources."is-number-3.0.0"
+ ];
+ })
sources."toidentifier-1.0.1"
sources."tough-cookie-2.5.0"
sources."tunnel-agent-0.6.0"
@@ -63889,23 +59947,17 @@ in
sources."uc.micro-1.0.6"
sources."union-value-1.0.1"
sources."unpipe-1.0.0"
- (
- sources."unset-value-1.0.0"
- // {
- dependencies = [
- (
- sources."has-value-0.3.1"
- // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- }
- )
- sources."has-values-0.1.4"
- sources."isobject-3.0.1"
- ];
- }
- )
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ sources."isobject-3.0.1"
+ ];
+ })
sources."uri-js-4.4.1"
sources."urix-0.1.0"
sources."use-3.1.1"
@@ -63914,14 +59966,11 @@ in
sources."utils-merge-1.0.1"
sources."uuid-3.4.0"
sources."vary-1.1.2"
- (
- sources."verror-1.10.0"
- // {
- dependencies = [
- sources."core-util-is-1.0.2"
- ];
- }
- )
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."ws-7.5.10"
sources."xmlhttprequest-ssl-1.6.3"
sources."yeast-0.1.2"
@@ -64007,7 +60056,7 @@ in
sources."@types/commander-2.12.5"
sources."@types/diff-3.5.8"
sources."@types/get-stdin-5.0.1"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."commander-2.20.3"
sources."diff-3.5.0"
sources."get-stdin-5.0.1"
@@ -64068,14 +60117,11 @@ in
};
dependencies = [
sources."acorn-5.7.4"
- (
- sources."acorn-jsx-3.0.1"
- // {
- dependencies = [
- sources."acorn-3.3.0"
- ];
- }
- )
+ (sources."acorn-jsx-3.0.1" // {
+ dependencies = [
+ sources."acorn-3.3.0"
+ ];
+ })
sources."ajv-4.11.8"
sources."ajv-keywords-1.5.1"
sources."ansi-escapes-1.4.0"
@@ -64129,16 +60175,13 @@ in
sources."delayed-stream-1.0.0"
sources."doctrine-2.1.0"
sources."dunder-proto-1.0.1"
- (
- sources."duplexer2-0.0.2"
- // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- }
- )
+ (sources."duplexer2-0.0.2" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
sources."ecc-jsbn-0.1.2"
sources."entities-1.1.2"
sources."es-define-property-1.0.1"
@@ -64156,22 +60199,16 @@ in
sources."esniff-2.0.1"
sources."espree-3.5.4"
sources."esprima-4.0.1"
- (
- sources."esquery-1.6.0"
- // {
- dependencies = [
- sources."estraverse-5.3.0"
- ];
- }
- )
- (
- sources."esrecurse-4.3.0"
- // {
- dependencies = [
- sources."estraverse-5.3.0"
- ];
- }
- )
+ (sources."esquery-1.6.0" // {
+ dependencies = [
+ sources."estraverse-5.3.0"
+ ];
+ })
+ (sources."esrecurse-4.3.0" // {
+ dependencies = [
+ sources."estraverse-5.3.0"
+ ];
+ })
sources."estraverse-4.3.0"
sources."esutils-2.0.3"
sources."event-emitter-0.3.5"
@@ -64193,7 +60230,7 @@ in
sources."function-bind-1.1.2"
sources."generate-function-2.3.1"
sources."generate-object-property-1.2.0"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."getpass-0.1.7"
sources."glob-7.2.3"
@@ -64202,24 +60239,18 @@ in
sources."gopd-1.2.0"
sources."graceful-fs-4.2.11"
sources."gulp-eslint-3.0.1"
- (
- sources."gulp-util-3.0.8"
- // {
- dependencies = [
- sources."object-assign-3.0.0"
- ];
- }
- )
+ (sources."gulp-util-3.0.8" // {
+ dependencies = [
+ sources."object-assign-3.0.0"
+ ];
+ })
sources."gulplog-1.0.0"
sources."har-schema-2.0.0"
- (
- sources."har-validator-5.1.5"
- // {
- dependencies = [
- sources."ajv-6.12.6"
- ];
- }
- )
+ (sources."har-validator-5.1.5" // {
+ dependencies = [
+ sources."ajv-6.12.6"
+ ];
+ })
sources."has-ansi-2.0.0"
sources."has-gulplog-0.1.0"
sources."has-property-descriptors-1.0.2"
@@ -64230,15 +60261,12 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- (
- sources."inquirer-0.12.0"
- // {
- dependencies = [
- sources."is-fullwidth-code-point-1.0.0"
- sources."string-width-1.0.2"
- ];
- }
- )
+ (sources."inquirer-0.12.0" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."string-width-1.0.2"
+ ];
+ })
sources."interpret-1.4.0"
sources."is-core-module-2.16.1"
sources."is-fullwidth-code-point-2.0.0"
@@ -64254,14 +60282,11 @@ in
sources."jsbn-0.1.1"
sources."json-schema-0.4.0"
sources."json-schema-traverse-0.4.1"
- (
- sources."json-stable-stringify-1.2.1"
- // {
- dependencies = [
- sources."isarray-2.0.5"
- ];
- }
- )
+ (sources."json-stable-stringify-1.2.1" // {
+ dependencies = [
+ sources."isarray-2.0.5"
+ ];
+ })
sources."json-stringify-safe-5.0.1"
sources."jsonify-0.0.1"
sources."jsonpointer-5.0.1"
@@ -64317,26 +60342,20 @@ in
sources."prelude-ls-1.1.2"
sources."process-nextick-args-2.0.1"
sources."progress-1.1.8"
- (
- sources."psl-1.15.0"
- // {
- dependencies = [
- sources."punycode-2.3.1"
- ];
- }
- )
+ (sources."psl-1.15.0" // {
+ dependencies = [
+ sources."punycode-2.3.1"
+ ];
+ })
sources."punycode-1.4.1"
sources."qs-6.5.3"
sources."readable-stream-2.3.8"
sources."readline-1.3.0"
- (
- sources."readline2-1.0.1"
- // {
- dependencies = [
- sources."is-fullwidth-code-point-1.0.0"
- ];
- }
- )
+ (sources."readline2-1.0.1" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-1.0.0"
+ ];
+ })
sources."rechoir-0.6.2"
sources."replace-ext-0.0.1"
sources."request-2.88.0"
@@ -64357,15 +60376,12 @@ in
sources."sparkles-1.0.1"
sources."sprintf-js-1.0.3"
sources."sshpk-1.18.0"
- (
- sources."string-width-2.1.1"
- // {
- dependencies = [
- sources."ansi-regex-3.0.1"
- sources."strip-ansi-4.0.0"
- ];
- }
- )
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
sources."strip-bom-3.0.0"
@@ -64385,25 +60401,19 @@ in
sources."type-2.7.3"
sources."type-check-0.3.2"
sources."typedarray-0.0.6"
- (
- sources."uri-js-4.4.1"
- // {
- dependencies = [
- sources."punycode-2.3.1"
- ];
- }
- )
+ (sources."uri-js-4.4.1" // {
+ dependencies = [
+ sources."punycode-2.3.1"
+ ];
+ })
sources."user-home-2.0.0"
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
- (
- sources."verror-1.10.0"
- // {
- dependencies = [
- sources."core-util-is-1.0.2"
- ];
- }
- )
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."vinyl-0.5.3"
sources."word-wrap-1.2.5"
sources."wrappy-1.0.2"
@@ -64498,28 +60508,22 @@ in
sources."braces-3.0.3"
sources."browser-stdout-1.3.1"
sources."camelcase-6.3.0"
- (
- sources."chalk-4.1.2"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."supports-color-7.2.0"
- ];
- }
- )
+ (sources."chalk-4.1.2" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
sources."chokidar-3.6.0"
- (
- sources."cliui-8.0.1"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- sources."wrap-ansi-7.0.0"
- ];
- }
- )
+ (sources."cliui-8.0.1" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ sources."wrap-ansi-7.0.0"
+ ];
+ })
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."cross-spawn-7.0.6"
@@ -64533,16 +60537,13 @@ in
sources."fill-range-7.1.1"
sources."find-up-5.0.0"
sources."flat-5.0.2"
- sources."foreground-child-3.3.0"
+ sources."foreground-child-3.3.1"
sources."get-caller-file-2.0.5"
- (
- sources."glob-10.4.5"
- // {
- dependencies = [
- sources."minimatch-9.0.5"
- ];
- }
- )
+ (sources."glob-10.4.5" // {
+ dependencies = [
+ sources."minimatch-9.0.5"
+ ];
+ })
sources."glob-parent-5.1.2"
sources."has-flag-4.0.0"
sources."he-1.2.0"
@@ -64579,23 +60580,17 @@ in
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
sources."string-width-5.1.2"
- (
- sources."string-width-cjs-4.2.3"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
- (
- sources."strip-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- ];
- }
- )
+ (sources."string-width-cjs-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
+ (sources."strip-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ ];
+ })
sources."strip-ansi-cjs-6.0.1"
sources."strip-json-comments-3.1.1"
sources."supports-color-8.1.1"
@@ -64603,28 +60598,22 @@ in
sources."which-2.0.2"
sources."workerpool-6.5.1"
sources."wrap-ansi-8.1.0"
- (
- sources."wrap-ansi-cjs-7.0.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."y18n-5.0.8"
- (
- sources."yargs-17.7.2"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."yargs-17.7.2" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."yargs-parser-21.1.1"
sources."yargs-unparser-2.0.0"
sources."yocto-queue-0.1.0"
@@ -64670,7 +60659,7 @@ in
sources."form-data-4.0.2"
sources."formidable-2.1.2"
sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."gopd-1.2.0"
sources."graphlib-2.1.8"
@@ -64680,14 +60669,11 @@ in
sources."hexoid-1.0.0"
sources."inherits-2.0.4"
sources."js-yaml-3.14.1"
- (
- sources."json-refs-3.0.15"
- // {
- dependencies = [
- sources."commander-4.1.1"
- ];
- }
- )
+ (sources."json-refs-3.0.15" // {
+ dependencies = [
+ sources."commander-4.1.1"
+ ];
+ })
sources."lodash-4.17.21"
sources."math-intrinsics-1.1.0"
sources."methods-1.1.2"
@@ -64812,14 +60798,11 @@ in
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."fs-extra-0.6.4"
- (
- sources."fs-minipass-2.1.0"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."fs-minipass-2.1.0" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."fs.extra-1.3.2"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
@@ -64853,52 +60836,37 @@ in
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
sources."minipass-5.0.0"
- (
- sources."minizlib-2.1.2"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."minizlib-2.1.2" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."mkdirp-0.3.5"
sources."ncp-0.4.2"
sources."nijs-0.0.25"
sources."nopt-3.0.6"
- (
- sources."normalize-package-data-2.5.0"
- // {
- dependencies = [
- sources."semver-5.7.2"
- ];
- }
- )
- (
- sources."npm-package-arg-6.1.1"
- // {
- dependencies = [
- sources."semver-5.7.2"
- ];
- }
- )
- (
- sources."npm-registry-client-8.6.0"
- // {
- dependencies = [
- sources."semver-5.7.2"
- ];
- }
- )
- (
- sources."npmconf-2.1.3"
- // {
- dependencies = [
- sources."mkdirp-0.5.6"
- sources."once-1.3.3"
- sources."semver-4.3.6"
- ];
- }
- )
+ (sources."normalize-package-data-2.5.0" // {
+ dependencies = [
+ sources."semver-5.7.2"
+ ];
+ })
+ (sources."npm-package-arg-6.1.1" // {
+ dependencies = [
+ sources."semver-5.7.2"
+ ];
+ })
+ (sources."npm-registry-client-8.6.0" // {
+ dependencies = [
+ sources."semver-5.7.2"
+ ];
+ })
+ (sources."npmconf-2.1.3" // {
+ dependencies = [
+ sources."mkdirp-0.5.6"
+ sources."once-1.3.3"
+ sources."semver-4.3.6"
+ ];
+ })
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
@@ -64916,14 +60884,11 @@ in
sources."psl-1.15.0"
sources."punycode-2.3.1"
sources."qs-6.5.3"
- (
- sources."readable-stream-2.3.8"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."readable-stream-2.3.8" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."request-2.88.2"
sources."resolve-1.22.10"
sources."retry-0.10.1"
@@ -64942,33 +60907,24 @@ in
sources."sshpk-1.18.0"
sources."ssri-5.3.0"
sources."string-width-1.0.2"
- (
- sources."string_decoder-1.1.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."strip-ansi-3.0.1"
sources."supports-preserve-symlinks-flag-1.0.0"
- (
- sources."tar-6.1.15"
- // {
- dependencies = [
- sources."mkdirp-1.0.4"
- ];
- }
- )
- (
- sources."temp-0.9.4"
- // {
- dependencies = [
- sources."mkdirp-0.5.6"
- sources."rimraf-2.6.3"
- ];
- }
- )
+ (sources."tar-6.1.15" // {
+ dependencies = [
+ sources."mkdirp-1.0.4"
+ ];
+ })
+ (sources."temp-0.9.4" // {
+ dependencies = [
+ sources."mkdirp-0.5.6"
+ sources."rimraf-2.6.3"
+ ];
+ })
sources."tough-cookie-2.5.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -64979,14 +60935,11 @@ in
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
sources."validate-npm-package-name-3.0.0"
- (
- sources."verror-1.10.0"
- // {
- dependencies = [
- sources."core-util-is-1.0.2"
- ];
- }
- )
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."walk-2.3.15"
sources."wide-align-1.1.5"
sources."wrappy-1.0.2"
@@ -65035,7 +60988,7 @@ in
sources."@pnpm/npm-conf-2.3.1"
sources."@samverschueren/stream-to-observable-0.3.1"
sources."@sindresorhus/merge-streams-2.3.0"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/normalize-package-data-2.4.4"
sources."ansi-align-3.0.1"
sources."ansi-escapes-4.3.2"
@@ -65045,20 +60998,17 @@ in
sources."argparse-2.0.1"
sources."atomically-2.0.3"
sources."balanced-match-1.0.2"
- (
- sources."boxen-8.0.1"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."ansi-styles-6.2.1"
- sources."emoji-regex-10.4.0"
- sources."string-width-7.2.0"
- sources."strip-ansi-7.1.0"
- sources."type-fest-4.34.1"
- sources."wrap-ansi-9.0.0"
- ];
- }
- )
+ (sources."boxen-8.0.1" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-10.4.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ sources."type-fest-4.35.0"
+ sources."wrap-ansi-9.0.0"
+ ];
+ })
sources."brace-expansion-2.0.1"
sources."braces-3.0.3"
sources."bundle-name-4.1.0"
@@ -65069,37 +61019,28 @@ in
sources."chardet-0.7.0"
sources."cli-boxes-3.0.0"
sources."cli-cursor-2.1.0"
- (
- sources."cli-truncate-0.2.1"
- // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."is-fullwidth-code-point-1.0.0"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- ];
- }
- )
+ (sources."cli-truncate-0.2.1" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
sources."cli-width-4.1.0"
sources."code-point-at-1.1.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- (
- sources."config-chain-1.1.13"
- // {
- dependencies = [
- sources."ini-1.3.8"
- ];
- }
- )
- (
- sources."configstore-7.0.0"
- // {
- dependencies = [
- sources."graceful-fs-4.2.11"
- ];
- }
- )
+ (sources."config-chain-1.1.13" // {
+ dependencies = [
+ sources."ini-1.3.8"
+ ];
+ })
+ (sources."configstore-7.0.0" // {
+ dependencies = [
+ sources."graceful-fs-4.2.11"
+ ];
+ })
sources."cosmiconfig-8.3.6"
sources."cross-spawn-7.0.6"
sources."date-fns-1.30.1"
@@ -65108,71 +61049,53 @@ in
sources."default-browser-id-5.0.0"
sources."define-lazy-prop-3.0.0"
sources."del-8.0.0"
- (
- sources."dot-prop-9.0.0"
- // {
- dependencies = [
- sources."type-fest-4.34.1"
- ];
- }
- )
+ (sources."dot-prop-9.0.0" // {
+ dependencies = [
+ sources."type-fest-4.35.0"
+ ];
+ })
sources."elegant-spinner-1.0.1"
sources."emoji-regex-8.0.0"
sources."error-ex-1.3.2"
sources."escape-goat-4.0.0"
sources."escape-string-regexp-5.0.0"
- (
- sources."execa-8.0.1"
- // {
- dependencies = [
- sources."onetime-6.0.0"
- ];
- }
- )
+ (sources."execa-8.0.1" // {
+ dependencies = [
+ sources."onetime-6.0.0"
+ ];
+ })
sources."exit-hook-4.0.0"
sources."external-editor-3.1.0"
sources."fast-glob-3.3.3"
sources."fastq-1.19.0"
- (
- sources."figures-1.7.0"
- // {
- dependencies = [
- sources."escape-string-regexp-1.0.5"
- ];
- }
- )
+ (sources."figures-1.7.0" // {
+ dependencies = [
+ sources."escape-string-regexp-1.0.5"
+ ];
+ })
sources."fill-range-7.1.1"
- (
- sources."find-up-4.1.0"
- // {
- dependencies = [
- sources."path-exists-4.0.0"
- ];
- }
- )
+ (sources."find-up-4.1.0" // {
+ dependencies = [
+ sources."path-exists-4.0.0"
+ ];
+ })
sources."find-up-simple-1.0.0"
sources."get-east-asian-width-1.3.0"
sources."get-stream-8.0.1"
sources."github-url-from-git-1.5.0"
sources."glob-parent-5.1.2"
sources."global-directory-4.0.1"
- (
- sources."globby-14.1.0"
- // {
- dependencies = [
- sources."path-type-6.0.0"
- ];
- }
- )
+ (sources."globby-14.1.0" // {
+ dependencies = [
+ sources."path-type-6.0.0"
+ ];
+ })
sources."graceful-fs-4.2.10"
- (
- sources."has-ansi-2.0.0"
- // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- }
- )
+ (sources."has-ansi-2.0.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
sources."has-flag-3.0.0"
sources."hosted-git-info-8.0.2"
sources."human-signals-5.0.0"
@@ -65180,50 +61103,41 @@ in
sources."ignore-7.0.3"
sources."ignore-walk-7.0.0"
sources."import-fresh-3.3.1"
- (
- sources."import-local-3.2.0"
- // {
- dependencies = [
- sources."pkg-dir-4.2.0"
- ];
- }
- )
+ (sources."import-local-3.2.0" // {
+ dependencies = [
+ sources."pkg-dir-4.2.0"
+ ];
+ })
sources."indent-string-3.2.0"
sources."index-to-position-0.1.2"
sources."ini-4.1.1"
sources."inquirer-12.4.2"
- (
- sources."inquirer-autosubmit-prompt-0.2.0"
- // {
- dependencies = [
- sources."ansi-escapes-3.2.0"
- sources."ansi-regex-4.1.1"
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."cli-width-2.2.1"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."escape-string-regexp-1.0.5"
- sources."figures-2.0.0"
- sources."inquirer-6.5.2"
- sources."is-fullwidth-code-point-2.0.0"
- sources."mute-stream-0.0.7"
- sources."run-async-2.4.1"
- sources."rxjs-6.6.7"
- (
- sources."string-width-2.1.1"
- // {
- dependencies = [
- sources."ansi-regex-3.0.1"
- sources."strip-ansi-4.0.0"
- ];
- }
- )
- sources."strip-ansi-5.2.0"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."inquirer-autosubmit-prompt-0.2.0" // {
+ dependencies = [
+ sources."ansi-escapes-3.2.0"
+ sources."ansi-regex-4.1.1"
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."cli-width-2.2.1"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."figures-2.0.0"
+ sources."inquirer-6.5.2"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."run-async-2.4.1"
+ sources."rxjs-6.6.7"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."strip-ansi-5.2.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."is-arrayish-0.2.1"
sources."is-docker-3.0.0"
sources."is-extglob-2.1.1"
@@ -65235,14 +61149,11 @@ in
sources."is-interactive-2.0.0"
sources."is-npm-6.0.0"
sources."is-number-7.0.0"
- (
- sources."is-observable-1.1.0"
- // {
- dependencies = [
- sources."symbol-observable-1.2.0"
- ];
- }
- )
+ (sources."is-observable-1.1.0" // {
+ dependencies = [
+ sources."symbol-observable-1.2.0"
+ ];
+ })
sources."is-path-cwd-3.0.0"
sources."is-path-inside-4.0.0"
sources."is-promise-2.2.2"
@@ -65259,83 +61170,68 @@ in
sources."ky-1.7.5"
sources."latest-version-9.0.0"
sources."lines-and-columns-1.2.4"
- (
- sources."listr-0.14.3"
- // {
- dependencies = [
- sources."is-stream-1.1.0"
- sources."p-map-2.1.0"
- sources."rxjs-6.6.7"
- ];
- }
- )
- (
- sources."listr-input-0.2.1"
- // {
- dependencies = [
- sources."chalk-4.1.2"
- sources."cli-cursor-3.1.0"
- sources."cli-width-3.0.0"
- sources."escape-string-regexp-1.0.5"
- sources."figures-3.2.0"
- sources."has-flag-4.0.0"
- sources."inquirer-7.3.3"
- sources."mimic-fn-2.1.0"
- sources."mute-stream-0.0.8"
- sources."onetime-5.1.2"
- sources."restore-cursor-3.1.0"
- sources."run-async-2.4.1"
- sources."rxjs-6.6.7"
- sources."signal-exit-3.0.7"
- sources."supports-color-7.2.0"
- ];
- }
- )
+ (sources."listr-0.14.3" // {
+ dependencies = [
+ sources."is-stream-1.1.0"
+ sources."p-map-2.1.0"
+ sources."rxjs-6.6.7"
+ ];
+ })
+ (sources."listr-input-0.2.1" // {
+ dependencies = [
+ sources."chalk-4.1.2"
+ sources."cli-cursor-3.1.0"
+ sources."cli-width-3.0.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."figures-3.2.0"
+ sources."has-flag-4.0.0"
+ sources."inquirer-7.3.3"
+ sources."mimic-fn-2.1.0"
+ sources."mute-stream-0.0.8"
+ sources."onetime-5.1.2"
+ sources."restore-cursor-3.1.0"
+ sources."run-async-2.4.1"
+ sources."rxjs-6.6.7"
+ sources."signal-exit-3.0.7"
+ sources."supports-color-7.2.0"
+ ];
+ })
sources."listr-silent-renderer-1.1.1"
- (
- sources."listr-update-renderer-0.5.0"
- // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."chalk-1.1.3"
- sources."escape-string-regexp-1.0.5"
- sources."log-symbols-1.0.2"
- sources."strip-ansi-3.0.1"
- ];
- }
- )
- (
- sources."listr-verbose-renderer-0.5.0"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."escape-string-regexp-1.0.5"
- sources."figures-2.0.0"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."listr-update-renderer-0.5.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."log-symbols-1.0.2"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ (sources."listr-verbose-renderer-0.5.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."figures-2.0.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."lodash.zip-4.2.0"
sources."log-symbols-7.0.0"
- (
- sources."log-update-2.3.0"
- // {
- dependencies = [
- sources."ansi-escapes-3.2.0"
- sources."ansi-regex-3.0.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- sources."wrap-ansi-3.0.1"
- ];
- }
- )
+ (sources."log-update-2.3.0" // {
+ dependencies = [
+ sources."ansi-escapes-3.2.0"
+ sources."ansi-regex-3.0.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."wrap-ansi-3.0.1"
+ ];
+ })
sources."lru-cache-10.4.3"
sources."meow-13.2.0"
sources."merge-stream-2.0.0"
@@ -65346,31 +61242,22 @@ in
sources."minimatch-9.0.5"
sources."minimist-1.2.8"
sources."mute-stream-2.0.0"
- (
- sources."new-github-release-url-2.0.0"
- // {
- dependencies = [
- sources."type-fest-2.19.0"
- ];
- }
- )
- (
- sources."normalize-package-data-6.0.2"
- // {
- dependencies = [
- sources."hosted-git-info-7.0.2"
- ];
- }
- )
+ (sources."new-github-release-url-2.0.0" // {
+ dependencies = [
+ sources."type-fest-2.19.0"
+ ];
+ })
+ (sources."normalize-package-data-6.0.2" // {
+ dependencies = [
+ sources."hosted-git-info-7.0.2"
+ ];
+ })
sources."npm-name-8.0.0"
- (
- sources."npm-run-path-5.3.0"
- // {
- dependencies = [
- sources."path-key-4.0.0"
- ];
- }
- )
+ (sources."npm-run-path-5.3.0" // {
+ dependencies = [
+ sources."path-key-4.0.0"
+ ];
+ })
sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
sources."onetime-7.0.0"
@@ -65380,14 +61267,11 @@ in
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-map-7.0.3"
- (
- sources."p-memoize-7.1.1"
- // {
- dependencies = [
- sources."type-fest-3.13.1"
- ];
- }
- )
+ (sources."p-memoize-7.1.1" // {
+ dependencies = [
+ sources."type-fest-3.13.1"
+ ];
+ })
sources."p-timeout-6.1.4"
sources."p-try-2.2.0"
sources."package-json-10.0.1"
@@ -65402,65 +61286,47 @@ in
sources."proto-list-1.2.4"
sources."pupa-3.1.0"
sources."queue-microtask-1.2.3"
- (
- sources."rc-1.2.8"
- // {
- dependencies = [
- sources."ini-1.3.8"
- ];
- }
- )
- (
- sources."read-package-up-11.0.0"
- // {
- dependencies = [
- sources."type-fest-4.34.1"
- ];
- }
- )
- (
- sources."read-pkg-9.0.1"
- // {
- dependencies = [
- sources."parse-json-8.1.0"
- sources."type-fest-4.34.1"
- sources."unicorn-magic-0.1.0"
- ];
- }
- )
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."ini-1.3.8"
+ ];
+ })
+ (sources."read-package-up-11.0.0" // {
+ dependencies = [
+ sources."type-fest-4.35.0"
+ ];
+ })
+ (sources."read-pkg-9.0.1" // {
+ dependencies = [
+ sources."parse-json-8.1.0"
+ sources."type-fest-4.35.0"
+ sources."unicorn-magic-0.1.0"
+ ];
+ })
sources."registry-auth-token-5.1.0"
sources."registry-url-6.0.1"
- (
- sources."resolve-cwd-3.0.0"
- // {
- dependencies = [
- sources."resolve-from-5.0.0"
- ];
- }
- )
+ (sources."resolve-cwd-3.0.0" // {
+ dependencies = [
+ sources."resolve-from-5.0.0"
+ ];
+ })
sources."resolve-from-4.0.0"
- (
- sources."restore-cursor-2.0.0"
- // {
- dependencies = [
- sources."mimic-fn-1.2.0"
- sources."onetime-2.0.1"
- sources."signal-exit-3.0.7"
- ];
- }
- )
+ (sources."restore-cursor-2.0.0" // {
+ dependencies = [
+ sources."mimic-fn-1.2.0"
+ sources."onetime-2.0.1"
+ sources."signal-exit-3.0.7"
+ ];
+ })
sources."reusify-1.0.4"
sources."run-applescript-7.0.0"
sources."run-async-3.0.0"
sources."run-parallel-1.2.0"
- (
- sources."rxjs-7.8.1"
- // {
- dependencies = [
- sources."tslib-2.8.1"
- ];
- }
- )
+ (sources."rxjs-7.8.2" // {
+ dependencies = [
+ sources."tslib-2.8.1"
+ ];
+ })
sources."safer-buffer-2.1.2"
sources."scoped-regex-3.0.0"
sources."semver-7.7.1"
@@ -65479,25 +61345,19 @@ in
sources."strip-json-comments-2.0.1"
sources."stubborn-fs-1.2.5"
sources."supports-color-2.0.0"
- (
- sources."supports-hyperlinks-2.3.0"
- // {
- dependencies = [
- sources."has-flag-4.0.0"
- sources."supports-color-7.2.0"
- ];
- }
- )
+ (sources."supports-hyperlinks-2.3.0" // {
+ dependencies = [
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
sources."symbol-observable-4.0.0"
- (
- sources."terminal-link-3.0.0"
- // {
- dependencies = [
- sources."ansi-escapes-5.0.0"
- sources."type-fest-1.4.0"
- ];
- }
- )
+ (sources."terminal-link-3.0.0" // {
+ dependencies = [
+ sources."ansi-escapes-5.0.0"
+ sources."type-fest-1.4.0"
+ ];
+ })
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."to-regex-range-5.0.1"
@@ -65511,17 +61371,14 @@ in
sources."validate-npm-package-name-5.0.1"
sources."when-exit-2.1.4"
sources."which-2.0.2"
- (
- sources."widest-line-5.0.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."emoji-regex-10.4.0"
- sources."string-width-7.2.0"
- sources."strip-ansi-7.1.0"
- ];
- }
- )
+ (sources."widest-line-5.0.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ sources."emoji-regex-10.4.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
sources."wrap-ansi-6.2.0"
sources."xdg-basedir-5.1.0"
sources."yoctocolors-2.1.1"
@@ -65570,7 +61427,7 @@ in
sources."@inquirer/figures-1.0.10"
sources."@inquirer/select-4.0.9"
sources."@inquirer/type-3.0.4"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -65634,14 +61491,11 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@orval/angular-7.5.0"
sources."@orval/axios-7.5.0"
- (
- sources."@orval/core-7.5.0"
- // {
- dependencies = [
- sources."openapi3-ts-4.4.0"
- ];
- }
- )
+ (sources."@orval/core-7.5.0" // {
+ dependencies = [
+ sources."openapi3-ts-4.4.0"
+ ];
+ })
sources."@orval/fetch-7.5.0"
sources."@orval/hono-7.5.0"
sources."@orval/mock-7.5.0"
@@ -65657,54 +61511,42 @@ in
sources."@shikijs/vscode-textmate-10.0.2"
sources."@stoplight/better-ajv-errors-1.0.3"
sources."@stoplight/json-3.21.7"
- (
- sources."@stoplight/json-ref-readers-1.2.2"
- // {
- dependencies = [
- sources."tslib-1.14.1"
- ];
- }
- )
+ (sources."@stoplight/json-ref-readers-1.2.2" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
sources."@stoplight/json-ref-resolver-3.1.6"
sources."@stoplight/ordered-object-literal-1.0.5"
sources."@stoplight/path-1.3.2"
- (
- sources."@stoplight/spectral-core-1.19.4"
- // {
- dependencies = [
- sources."@stoplight/types-13.6.0"
- sources."minimatch-3.1.2"
- ];
- }
- )
+ (sources."@stoplight/spectral-core-1.19.4" // {
+ dependencies = [
+ sources."@stoplight/types-13.6.0"
+ sources."minimatch-3.1.2"
+ ];
+ })
sources."@stoplight/spectral-formats-1.8.2"
sources."@stoplight/spectral-functions-1.9.3"
- (
- sources."@stoplight/spectral-parsers-1.0.5"
- // {
- dependencies = [
- sources."@stoplight/types-14.1.1"
- ];
- }
- )
+ (sources."@stoplight/spectral-parsers-1.0.5" // {
+ dependencies = [
+ sources."@stoplight/types-14.1.1"
+ ];
+ })
sources."@stoplight/spectral-ref-resolver-1.0.5"
sources."@stoplight/spectral-rulesets-1.21.3"
sources."@stoplight/spectral-runtime-1.1.3"
sources."@stoplight/types-13.20.0"
- (
- sources."@stoplight/yaml-4.3.0"
- // {
- dependencies = [
- sources."@stoplight/types-14.1.1"
- ];
- }
- )
+ (sources."@stoplight/yaml-4.3.0" // {
+ dependencies = [
+ sources."@stoplight/types-14.1.1"
+ ];
+ })
sources."@stoplight/yaml-ast-parser-0.0.50"
sources."@types/es-aggregate-error-1.0.6"
sources."@types/hast-3.0.4"
sources."@types/json-schema-7.0.15"
sources."@types/mdast-4.0.4"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/unist-3.0.3"
sources."@types/urijs-1.19.25"
sources."@ungap/structured-clone-1.3.0"
@@ -65787,7 +61629,7 @@ in
sources."function.prototype.name-1.1.8"
sources."functions-have-names-1.2.3"
sources."get-caller-file-2.0.5"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-stream-6.0.1"
sources."get-symbol-description-1.1.0"
@@ -65803,7 +61645,7 @@ in
sources."has-symbols-1.1.0"
sources."has-tostringtag-1.0.2"
sources."hasown-2.0.2"
- sources."hast-util-to-html-9.0.4"
+ sources."hast-util-to-html-9.0.5"
sources."hast-util-whitespace-3.0.0"
sources."html-void-elements-3.0.0"
sources."http2-client-1.3.5"
@@ -65875,14 +61717,11 @@ in
sources."micromark-util-types-2.0.1"
sources."micromatch-4.0.8"
sources."mimic-fn-2.1.0"
- (
- sources."minimatch-6.2.0"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- ];
- }
- )
+ (sources."minimatch-6.2.0" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ ];
+ })
sources."ms-2.1.3"
sources."nimma-0.2.3"
sources."node-fetch-2.7.0"
@@ -65890,31 +61729,22 @@ in
sources."node-readfiles-0.2.0"
sources."npm-run-path-4.0.1"
sources."oas-kit-common-1.0.8"
- (
- sources."oas-linter-3.2.2"
- // {
- dependencies = [
- sources."yaml-1.10.2"
- ];
- }
- )
- (
- sources."oas-resolver-2.5.6"
- // {
- dependencies = [
- sources."yaml-1.10.2"
- ];
- }
- )
+ (sources."oas-linter-3.2.2" // {
+ dependencies = [
+ sources."yaml-1.10.2"
+ ];
+ })
+ (sources."oas-resolver-2.5.6" // {
+ dependencies = [
+ sources."yaml-1.10.2"
+ ];
+ })
sources."oas-schema-walker-1.1.5"
- (
- sources."oas-validator-5.0.8"
- // {
- dependencies = [
- sources."yaml-1.10.2"
- ];
- }
- )
+ (sources."oas-validator-5.0.8" // {
+ dependencies = [
+ sources."yaml-1.10.2"
+ ];
+ })
sources."object-inspect-1.13.4"
sources."object-keys-1.1.1"
sources."object.assign-4.1.7"
@@ -65931,7 +61761,7 @@ in
sources."picomatch-2.3.1"
sources."pony-cause-1.1.1"
sources."possible-typed-array-names-1.1.0"
- sources."property-information-6.5.0"
+ sources."property-information-7.0.0"
sources."punycode.js-2.3.1"
sources."queue-microtask-1.2.3"
sources."readdirp-4.1.2"
@@ -65979,14 +61809,11 @@ in
sources."strip-ansi-6.0.1"
sources."strip-final-newline-2.0.0"
sources."supports-color-7.2.0"
- (
- sources."swagger2openapi-7.0.8"
- // {
- dependencies = [
- sources."yaml-1.10.2"
- ];
- }
- )
+ (sources."swagger2openapi-7.0.8" // {
+ dependencies = [
+ sources."yaml-1.10.2"
+ ];
+ })
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."trim-lines-3.0.1"
@@ -65996,16 +61823,13 @@ in
sources."typed-array-byte-length-1.0.3"
sources."typed-array-byte-offset-1.0.4"
sources."typed-array-length-1.0.7"
- (
- sources."typedoc-0.26.11"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."minimatch-9.0.5"
- sources."typescript-5.6.3"
- ];
- }
- )
+ (sources."typedoc-0.26.11" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."minimatch-9.0.5"
+ sources."typescript-5.6.3"
+ ];
+ })
sources."typedoc-plugin-markdown-4.2.10"
sources."typescript-5.7.3"
sources."uc.micro-2.1.0"
@@ -66115,71 +61939,59 @@ in
sources."@parcel/source-map-2.1.1"
sources."@parcel/transformer-babel-2.13.3"
sources."@parcel/transformer-css-2.13.3"
- (
- sources."@parcel/transformer-html-2.13.3"
- // {
- dependencies = [
- sources."dom-serializer-2.0.0"
- sources."domhandler-5.0.3"
- sources."domutils-3.2.2"
- sources."entities-4.5.0"
- sources."htmlparser2-9.1.0"
- sources."posthtml-parser-0.12.1"
- ];
- }
- )
+ (sources."@parcel/transformer-html-2.13.3" // {
+ dependencies = [
+ sources."dom-serializer-2.0.0"
+ sources."domhandler-5.0.3"
+ sources."domutils-3.2.2"
+ sources."entities-4.5.0"
+ sources."htmlparser2-9.1.0"
+ sources."posthtml-parser-0.12.1"
+ ];
+ })
sources."@parcel/transformer-image-2.13.3"
sources."@parcel/transformer-js-2.13.3"
sources."@parcel/transformer-json-2.13.3"
sources."@parcel/transformer-postcss-2.13.3"
- (
- sources."@parcel/transformer-posthtml-2.13.3"
- // {
- dependencies = [
- sources."dom-serializer-2.0.0"
- sources."domhandler-5.0.3"
- sources."domutils-3.2.2"
- sources."entities-4.5.0"
- sources."htmlparser2-9.1.0"
- sources."posthtml-parser-0.12.1"
- ];
- }
- )
+ (sources."@parcel/transformer-posthtml-2.13.3" // {
+ dependencies = [
+ sources."dom-serializer-2.0.0"
+ sources."domhandler-5.0.3"
+ sources."domutils-3.2.2"
+ sources."entities-4.5.0"
+ sources."htmlparser2-9.1.0"
+ sources."posthtml-parser-0.12.1"
+ ];
+ })
sources."@parcel/transformer-raw-2.13.3"
sources."@parcel/transformer-react-refresh-wrap-2.13.3"
- (
- sources."@parcel/transformer-svg-2.13.3"
- // {
- dependencies = [
- sources."dom-serializer-2.0.0"
- sources."domhandler-5.0.3"
- sources."domutils-3.2.2"
- sources."entities-4.5.0"
- sources."htmlparser2-9.1.0"
- sources."posthtml-parser-0.12.1"
- ];
- }
- )
+ (sources."@parcel/transformer-svg-2.13.3" // {
+ dependencies = [
+ sources."dom-serializer-2.0.0"
+ sources."domhandler-5.0.3"
+ sources."domutils-3.2.2"
+ sources."entities-4.5.0"
+ sources."htmlparser2-9.1.0"
+ sources."posthtml-parser-0.12.1"
+ ];
+ })
sources."@parcel/types-2.13.3"
sources."@parcel/types-internal-2.13.3"
sources."@parcel/utils-2.13.3"
sources."@parcel/watcher-2.5.1"
sources."@parcel/workers-2.13.3"
- sources."@swc/core-1.10.16"
+ sources."@swc/core-1.10.18"
sources."@swc/counter-0.1.3"
sources."@swc/helpers-0.5.15"
- sources."@swc/types-0.1.17"
+ sources."@swc/types-0.1.18"
sources."@trysound/sax-0.2.0"
sources."abab-2.0.6"
sources."acorn-8.14.0"
- (
- sources."acorn-globals-4.3.4"
- // {
- dependencies = [
- sources."acorn-6.4.2"
- ];
- }
- )
+ (sources."acorn-globals-4.3.4" // {
+ dependencies = [
+ sources."acorn-6.4.2"
+ ];
+ })
sources."acorn-walk-6.2.0"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
@@ -66203,7 +62015,7 @@ in
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001699"
+ sources."caniuse-lite-1.0.30001700"
sources."caseless-0.12.0"
sources."chalk-4.1.2"
sources."chrome-trace-event-1.0.4"
@@ -66218,38 +62030,29 @@ in
sources."cosmiconfig-9.0.0"
sources."cross-spawn-7.0.6"
sources."css-declaration-sorter-7.2.0"
- (
- sources."css-select-5.1.0"
- // {
- dependencies = [
- sources."dom-serializer-2.0.0"
- sources."domhandler-5.0.3"
- sources."domutils-3.2.2"
- sources."entities-4.5.0"
- ];
- }
- )
- (
- sources."css-tree-2.3.1"
- // {
- dependencies = [
- sources."mdn-data-2.0.30"
- ];
- }
- )
+ (sources."css-select-5.1.0" // {
+ dependencies = [
+ sources."dom-serializer-2.0.0"
+ sources."domhandler-5.0.3"
+ sources."domutils-3.2.2"
+ sources."entities-4.5.0"
+ ];
+ })
+ (sources."css-tree-2.3.1" // {
+ dependencies = [
+ sources."mdn-data-2.0.30"
+ ];
+ })
sources."css-what-6.1.0"
sources."cssesc-3.0.0"
sources."cssnano-7.0.6"
sources."cssnano-preset-default-7.0.6"
sources."cssnano-utils-5.0.0"
- (
- sources."csso-5.0.5"
- // {
- dependencies = [
- sources."css-tree-2.2.1"
- ];
- }
- )
+ (sources."csso-5.0.5" // {
+ dependencies = [
+ sources."css-tree-2.2.1"
+ ];
+ })
sources."cssom-0.3.8"
sources."cssstyle-1.4.0"
sources."dashdash-1.14.1"
@@ -66257,14 +62060,11 @@ in
sources."deep-is-0.1.4"
sources."delayed-stream-1.0.0"
sources."detect-libc-1.0.3"
- (
- sources."dom-serializer-1.4.1"
- // {
- dependencies = [
- sources."entities-2.2.0"
- ];
- }
- )
+ (sources."dom-serializer-1.4.1" // {
+ dependencies = [
+ sources."entities-2.2.0"
+ ];
+ })
sources."domelementtype-2.3.0"
sources."domexception-1.0.1"
sources."domhandler-4.3.1"
@@ -66273,7 +62073,7 @@ in
sources."dotenv-expand-11.0.7"
sources."eastasianwidth-0.2.0"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.5.101"
+ sources."electron-to-chromium-1.5.104"
sources."emoji-regex-9.2.2"
sources."entities-3.0.1"
sources."env-paths-2.2.1"
@@ -66289,7 +62089,7 @@ in
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
sources."fill-range-7.1.1"
- sources."foreground-child-3.3.0"
+ sources."foreground-child-3.3.1"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."fs.realpath-1.0.0"
@@ -66302,14 +62102,11 @@ in
sources."has-flag-4.0.0"
sources."html-encoding-sniffer-1.0.2"
sources."html-tags-1.2.0"
- (
- sources."htmlnano-2.1.1"
- // {
- dependencies = [
- sources."srcset-5.0.1"
- ];
- }
- )
+ (sources."htmlnano-2.1.1" // {
+ dependencies = [
+ sources."srcset-5.0.1"
+ ];
+ })
sources."htmlparser2-7.2.0"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.24"
@@ -66332,14 +62129,11 @@ in
sources."js-tokens-4.0.0"
sources."js-yaml-4.1.0"
sources."jsbn-0.1.1"
- (
- sources."jsdom-14.1.0"
- // {
- dependencies = [
- sources."acorn-6.4.2"
- ];
- }
- )
+ (sources."jsdom-14.1.0" // {
+ dependencies = [
+ sources."acorn-6.4.2"
+ ];
+ })
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-0.4.0"
sources."json-schema-traverse-0.4.1"
@@ -66350,14 +62144,11 @@ in
sources."lightningcss-1.29.1"
sources."lilconfig-3.1.3"
sources."lines-and-columns-1.2.4"
- (
- sources."lmdb-2.8.5"
- // {
- dependencies = [
- sources."node-addon-api-6.1.0"
- ];
- }
- )
+ (sources."lmdb-2.8.5" // {
+ dependencies = [
+ sources."node-addon-api-6.1.0"
+ ];
+ })
sources."lodash-4.17.21"
sources."lodash.memoize-4.1.2"
sources."lodash.sortby-4.7.0"
@@ -66372,14 +62163,11 @@ in
sources."msgpackr-1.11.2"
sources."nanoid-3.3.8"
sources."node-addon-api-7.1.1"
- (
- sources."node-gyp-build-optional-packages-5.1.1"
- // {
- dependencies = [
- sources."detect-libc-2.0.3"
- ];
- }
- )
+ (sources."node-gyp-build-optional-packages-5.1.1" // {
+ dependencies = [
+ sources."detect-libc-2.0.3"
+ ];
+ })
sources."node-releases-2.0.19"
sources."nth-check-2.1.1"
sources."nullthrows-1.1.1"
@@ -66399,41 +62187,32 @@ in
sources."picocolors-1.1.1"
sources."picomatch-2.3.1"
sources."pn-1.1.0"
- sources."postcss-8.5.2"
+ sources."postcss-8.5.3"
sources."postcss-calc-10.1.1"
sources."postcss-colormin-7.0.2"
sources."postcss-convert-values-7.0.4"
- (
- sources."postcss-discard-comments-7.0.3"
- // {
- dependencies = [
- sources."postcss-selector-parser-6.1.2"
- ];
- }
- )
+ (sources."postcss-discard-comments-7.0.3" // {
+ dependencies = [
+ sources."postcss-selector-parser-6.1.2"
+ ];
+ })
sources."postcss-discard-duplicates-7.0.1"
sources."postcss-discard-empty-7.0.0"
sources."postcss-discard-overridden-7.0.0"
sources."postcss-merge-longhand-7.0.4"
- (
- sources."postcss-merge-rules-7.0.4"
- // {
- dependencies = [
- sources."postcss-selector-parser-6.1.2"
- ];
- }
- )
+ (sources."postcss-merge-rules-7.0.4" // {
+ dependencies = [
+ sources."postcss-selector-parser-6.1.2"
+ ];
+ })
sources."postcss-minify-font-values-7.0.0"
sources."postcss-minify-gradients-7.0.0"
sources."postcss-minify-params-7.0.2"
- (
- sources."postcss-minify-selectors-7.0.4"
- // {
- dependencies = [
- sources."postcss-selector-parser-6.1.2"
- ];
- }
- )
+ (sources."postcss-minify-selectors-7.0.4" // {
+ dependencies = [
+ sources."postcss-selector-parser-6.1.2"
+ ];
+ })
sources."postcss-normalize-charset-7.0.0"
sources."postcss-normalize-display-values-7.0.0"
sources."postcss-normalize-positions-7.0.0"
@@ -66448,14 +62227,11 @@ in
sources."postcss-reduce-transforms-7.0.0"
sources."postcss-selector-parser-7.1.0"
sources."postcss-svgo-7.0.1"
- (
- sources."postcss-unique-selectors-7.0.3"
- // {
- dependencies = [
- sources."postcss-selector-parser-6.1.2"
- ];
- }
- )
+ (sources."postcss-unique-selectors-7.0.3" // {
+ dependencies = [
+ sources."postcss-selector-parser-6.1.2"
+ ];
+ })
sources."postcss-value-parser-4.2.0"
sources."posthtml-0.16.6"
sources."posthtml-parser-0.11.0"
@@ -66463,14 +62239,11 @@ in
sources."prelude-ls-1.1.2"
sources."psl-1.15.0"
sources."punycode-2.3.1"
- (
- sources."purgecss-6.0.0"
- // {
- dependencies = [
- sources."postcss-selector-parser-6.1.2"
- ];
- }
- )
+ (sources."purgecss-6.0.0" // {
+ dependencies = [
+ sources."postcss-selector-parser-6.1.2"
+ ];
+ })
sources."qs-6.5.3"
sources."react-error-overlay-6.0.9"
sources."react-refresh-0.14.2"
@@ -66494,51 +62267,36 @@ in
sources."sshpk-1.18.0"
sources."stealthy-require-1.1.1"
sources."string-width-5.1.2"
- (
- sources."string-width-cjs-4.2.3"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
- (
- sources."strip-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- ];
- }
- )
+ (sources."string-width-cjs-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
+ (sources."strip-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ ];
+ })
sources."strip-ansi-cjs-6.0.1"
- (
- sources."stylehacks-7.0.4"
- // {
- dependencies = [
- sources."postcss-selector-parser-6.1.2"
- ];
- }
- )
+ (sources."stylehacks-7.0.4" // {
+ dependencies = [
+ sources."postcss-selector-parser-6.1.2"
+ ];
+ })
sources."supports-color-7.2.0"
- (
- sources."svgo-3.3.2"
- // {
- dependencies = [
- sources."commander-7.2.0"
- ];
- }
- )
+ (sources."svgo-3.3.2" // {
+ dependencies = [
+ sources."commander-7.2.0"
+ ];
+ })
sources."symbol-tree-3.2.4"
sources."term-size-2.2.1"
- (
- sources."terser-5.39.0"
- // {
- dependencies = [
- sources."commander-2.20.3"
- ];
- }
- )
+ (sources."terser-5.39.0" // {
+ dependencies = [
+ sources."commander-2.20.3"
+ ];
+ })
sources."timsort-0.3.0"
sources."to-regex-range-5.0.1"
sources."tough-cookie-2.5.0"
@@ -66549,20 +62307,17 @@ in
sources."type-check-0.3.2"
sources."type-fest-0.20.2"
sources."typescript-5.7.3"
- (
- sources."uncss-0.17.3"
- // {
- dependencies = [
- sources."brace-expansion-1.1.11"
- sources."commander-2.20.3"
- sources."glob-7.2.3"
- sources."minimatch-3.1.2"
- sources."picocolors-0.2.1"
- sources."postcss-7.0.39"
- sources."postcss-selector-parser-6.0.2"
- ];
- }
- )
+ (sources."uncss-0.17.3" // {
+ dependencies = [
+ sources."brace-expansion-1.1.11"
+ sources."commander-2.20.3"
+ sources."glob-7.2.3"
+ sources."minimatch-3.1.2"
+ sources."picocolors-0.2.1"
+ sources."postcss-7.0.39"
+ sources."postcss-selector-parser-6.0.2"
+ ];
+ })
sources."uniq-1.0.1"
sources."update-browserslist-db-1.1.2"
sources."uri-js-4.4.1"
@@ -66579,24 +62334,18 @@ in
sources."whatwg-url-7.1.0"
sources."which-2.0.2"
sources."word-wrap-1.2.5"
- (
- sources."wrap-ansi-8.1.0"
- // {
- dependencies = [
- sources."ansi-styles-6.2.1"
- ];
- }
- )
- (
- sources."wrap-ansi-cjs-7.0.0"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-8.1.0" // {
+ dependencies = [
+ sources."ansi-styles-6.2.1"
+ ];
+ })
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."wrappy-1.0.2"
sources."ws-6.2.3"
sources."xml-name-validator-3.0.0"
@@ -66621,14 +62370,11 @@ in
sha512 = "t29ujC7jgKzuA25yXritkuF/rFGduN08c2CLOeSAjlKAzc/BUamZgvPWFqU/UVSRubnMYawJIQDX3m/RqKz7Xw==";
};
dependencies = [
- (
- sources."accepts-1.3.8"
- // {
- dependencies = [
- sources."negotiator-0.6.3"
- ];
- }
- )
+ (sources."accepts-1.3.8" // {
+ dependencies = [
+ sources."negotiator-0.6.3"
+ ];
+ })
sources."ajv-6.12.6"
sources."ansi-regex-4.1.1"
sources."ansi-styles-3.2.1"
@@ -66648,14 +62394,11 @@ in
sources."bintrees-1.0.2"
sources."bl-1.2.3"
sources."bluebird-3.7.2"
- (
- sources."body-parser-1.20.3"
- // {
- dependencies = [
- sources."content-type-1.0.5"
- ];
- }
- )
+ (sources."body-parser-1.20.3" // {
+ dependencies = [
+ sources."content-type-1.0.5"
+ ];
+ })
sources."brace-expansion-1.1.11"
sources."bunyan-1.8.15"
sources."bunyan-syslog-udp-0.2.0"
@@ -66673,14 +62416,11 @@ in
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."compressible-2.0.18"
- (
- sources."compression-1.8.0"
- // {
- dependencies = [
- sources."negotiator-0.6.4"
- ];
- }
- )
+ (sources."compression-1.8.0" // {
+ dependencies = [
+ sources."negotiator-0.6.4"
+ ];
+ })
sources."concat-map-0.0.1"
sources."connect-busboy-0.0.2"
sources."content-disposition-0.5.4"
@@ -66714,14 +62454,11 @@ in
sources."escape-html-1.0.3"
sources."esprima-4.0.1"
sources."etag-1.8.1"
- (
- sources."express-4.21.2"
- // {
- dependencies = [
- sources."content-type-1.0.5"
- ];
- }
- )
+ (sources."express-4.21.2" // {
+ dependencies = [
+ sources."content-type-1.0.5"
+ ];
+ })
sources."express-handlebars-3.1.0"
sources."extend-3.0.2"
sources."extsprintf-1.3.0"
@@ -66740,7 +62477,7 @@ in
sources."gelf-stream-1.1.1"
sources."gelfling-0.3.1"
sources."get-caller-file-2.0.5"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."getpass-0.1.7"
sources."glob-7.2.3"
@@ -66788,14 +62525,11 @@ in
sources."methods-1.1.2"
sources."mime-1.6.0"
sources."mime-db-1.53.0"
- (
- sources."mime-types-2.1.35"
- // {
- dependencies = [
- sources."mime-db-1.52.0"
- ];
- }
- )
+ (sources."mime-types-2.1.35" // {
+ dependencies = [
+ sources."mime-db-1.52.0"
+ ];
+ })
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
sources."mkdirp-0.5.6"
@@ -66803,7 +62537,7 @@ in
sources."ms-2.0.0"
sources."msgpack5-3.6.1"
sources."mv-2.1.1"
- sources."nan-2.22.0"
+ sources."nan-2.22.1"
sources."ncp-2.0.0"
sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access"
sources."neo-async-2.6.2"
@@ -66835,64 +62569,46 @@ in
sources."qs-6.13.0"
sources."range-parser-1.2.1"
sources."raw-body-2.5.2"
- (
- sources."readable-stream-2.3.8"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
- (
- sources."request-2.88.2"
- // {
- dependencies = [
- sources."qs-6.5.3"
- ];
- }
- )
+ (sources."readable-stream-2.3.8" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."qs-6.5.3"
+ ];
+ })
sources."require-directory-2.1.1"
sources."require-main-filename-2.0.0"
- (
- sources."rimraf-2.4.5"
- // {
- dependencies = [
- sources."glob-6.0.4"
- ];
- }
- )
+ (sources."rimraf-2.4.5" // {
+ dependencies = [
+ sources."glob-6.0.4"
+ ];
+ })
sources."safe-buffer-5.2.1"
sources."safe-json-stringify-1.2.0"
sources."safer-buffer-2.1.2"
sources."semver-6.3.1"
- (
- sources."send-0.19.0"
- // {
- dependencies = [
- sources."encodeurl-1.0.2"
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."serve-favicon-2.5.0"
- // {
- dependencies = [
- sources."ms-2.1.1"
- sources."safe-buffer-5.1.1"
- ];
- }
- )
+ (sources."send-0.19.0" // {
+ dependencies = [
+ sources."encodeurl-1.0.2"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."serve-favicon-2.5.0" // {
+ dependencies = [
+ sources."ms-2.1.1"
+ sources."safe-buffer-5.1.1"
+ ];
+ })
sources."serve-static-1.16.2"
- (
- sources."service-runner-2.9.0"
- // {
- dependencies = [
- sources."semver-7.7.1"
- sources."yargs-14.2.3"
- ];
- }
- )
+ (sources."service-runner-2.9.0" // {
+ dependencies = [
+ sources."semver-7.7.1"
+ sources."yargs-14.2.3"
+ ];
+ })
sources."set-blocking-2.0.0"
sources."set-function-length-1.2.2"
sources."setprototypeof-1.2.0"
@@ -66907,14 +62623,11 @@ in
sources."statuses-2.0.1"
sources."streamsearch-1.1.0"
sources."string-width-3.1.0"
- (
- sources."string_decoder-1.1.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."strip-ansi-5.2.0"
sources."tdigest-0.1.2"
sources."toidentifier-1.0.1"
@@ -66932,14 +62645,11 @@ in
sources."vary-1.1.2"
sources."verror-1.10.0"
sources."which-module-2.0.1"
- (
- sources."wikimedia-kad-fork-1.3.6"
- // {
- dependencies = [
- sources."ms-0.7.3"
- ];
- }
- )
+ (sources."wikimedia-kad-fork-1.3.6" // {
+ dependencies = [
+ sources."ms-0.7.3"
+ ];
+ })
sources."wikimedia-langconv-0.1.0"
sources."wikipeg-2.0.6"
sources."wordwrap-1.0.0"
@@ -66947,14 +62657,11 @@ in
sources."wrap-ansi-5.1.0"
sources."wrappy-1.0.2"
sources."y18n-4.0.3"
- (
- sources."yargs-13.3.2"
- // {
- dependencies = [
- sources."yargs-parser-13.1.2"
- ];
- }
- )
+ (sources."yargs-13.3.2" // {
+ dependencies = [
+ sources."yargs-parser-13.1.2"
+ ];
+ })
sources."yargs-parser-15.0.3"
];
buildInputs = globalBuildInputs;
@@ -66978,14 +62685,11 @@ in
dependencies = [
sources."addr-to-ip-port-1.5.4"
sources."airplay-protocol-2.0.2"
- (
- sources."airplayer-2.0.0"
- // {
- dependencies = [
- sources."mime-1.6.0"
- ];
- }
- )
+ (sources."airplayer-2.0.0" // {
+ dependencies = [
+ sources."mime-1.6.0"
+ ];
+ })
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
@@ -66998,22 +62702,16 @@ in
sources."bep53-range-1.1.1"
sources."big-integer-1.6.52"
sources."bitfield-0.1.0"
- (
- sources."bittorrent-dht-6.4.2"
- // {
- dependencies = [
- sources."bencode-0.7.0"
- ];
- }
- )
- (
- sources."bittorrent-tracker-7.7.0"
- // {
- dependencies = [
- sources."bencode-0.8.0"
- ];
- }
- )
+ (sources."bittorrent-dht-6.4.2" // {
+ dependencies = [
+ sources."bencode-0.7.0"
+ ];
+ })
+ (sources."bittorrent-tracker-7.7.0" // {
+ dependencies = [
+ sources."bencode-0.8.0"
+ ];
+ })
sources."blob-to-buffer-1.2.9"
sources."bn.js-4.12.1"
sources."bncode-0.5.3"
@@ -67075,19 +62773,16 @@ in
sources."figures-2.0.0"
sources."find-up-1.1.2"
sources."flatten-0.0.1"
- (
- sources."fs-chunk-store-1.7.0"
- // {
- dependencies = [
- sources."mkdirp-0.5.6"
- ];
- }
- )
+ (sources."fs-chunk-store-1.7.0" // {
+ dependencies = [
+ sources."mkdirp-0.5.6"
+ ];
+ })
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."functions-have-names-1.2.3"
sources."get-browser-rtc-1.1.0"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-stdin-4.0.1"
sources."glob-7.2.3"
@@ -67108,21 +62803,18 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (
- sources."inquirer-5.2.0"
- // {
- dependencies = [
- sources."ansi-regex-3.0.1"
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."is-fullwidth-code-point-2.0.0"
- sources."lodash-4.17.21"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."inquirer-5.2.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.1"
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."lodash-4.17.21"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."internal-ip-1.2.0"
sources."ip-1.1.9"
sources."ip-set-1.0.2"
@@ -67137,14 +62829,11 @@ in
sources."is-utf8-0.2.1"
sources."isarray-1.0.0"
sources."k-bucket-0.6.0"
- (
- sources."k-rpc-3.7.0"
- // {
- dependencies = [
- sources."k-bucket-2.0.1"
- ];
- }
- )
+ (sources."k-rpc-3.7.0" // {
+ dependencies = [
+ sources."k-bucket-2.0.1"
+ ];
+ })
sources."k-rpc-socket-1.11.1"
sources."keypress-0.2.1"
sources."load-json-file-1.1.0"
@@ -67177,48 +62866,36 @@ in
sources."once-1.4.0"
sources."onetime-2.0.1"
sources."open-0.0.5"
- (
- sources."optimist-0.6.1"
- // {
- dependencies = [
- sources."minimist-0.0.10"
- ];
- }
- )
+ (sources."optimist-0.6.1" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ ];
+ })
sources."options-0.0.6"
sources."os-tmpdir-1.0.2"
sources."parse-json-2.2.0"
- (
- sources."parse-torrent-5.9.1"
- // {
- dependencies = [
- sources."get-stdin-6.0.0"
- ];
- }
- )
- (
- sources."parse-torrent-file-2.1.4"
- // {
- dependencies = [
- sources."bencode-0.7.0"
- ];
- }
- )
+ (sources."parse-torrent-5.9.1" // {
+ dependencies = [
+ sources."get-stdin-6.0.0"
+ ];
+ })
+ (sources."parse-torrent-file-2.1.4" // {
+ dependencies = [
+ sources."bencode-0.7.0"
+ ];
+ })
sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.7"
sources."path-type-1.1.0"
- (
- sources."peer-wire-protocol-0.7.1"
- // {
- dependencies = [
- sources."bncode-0.2.3"
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- }
- )
+ (sources."peer-wire-protocol-0.7.1" // {
+ dependencies = [
+ sources."bncode-0.2.3"
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
sources."peer-wire-swarm-0.12.2"
sources."pify-2.3.0"
sources."pinkie-2.0.4"
@@ -67261,16 +62938,13 @@ in
sources."simple-get-2.8.2"
sources."simple-peer-6.4.4"
sources."simple-sha1-2.1.2"
- (
- sources."simple-websocket-4.3.1"
- // {
- dependencies = [
- sources."safe-buffer-5.0.1"
- sources."ultron-1.1.1"
- sources."ws-2.3.1"
- ];
- }
- )
+ (sources."simple-websocket-4.3.1" // {
+ dependencies = [
+ sources."safe-buffer-5.0.1"
+ sources."ultron-1.1.1"
+ sources."ws-2.3.1"
+ ];
+ })
sources."single-line-log-1.1.2"
sources."spdx-correct-3.2.0"
sources."spdx-exceptions-2.5.0"
@@ -67294,18 +62968,15 @@ in
sources."tmp-0.0.33"
sources."torrent-discovery-5.4.0"
sources."torrent-piece-1.1.2"
- (
- sources."torrent-stream-1.2.1"
- // {
- dependencies = [
- sources."end-of-stream-0.1.5"
- sources."magnet-uri-4.2.3"
- sources."once-1.3.3"
- sources."parse-torrent-4.1.0"
- sources."thirty-two-0.0.2"
- ];
- }
- )
+ (sources."torrent-stream-1.2.1" // {
+ dependencies = [
+ sources."end-of-stream-0.1.5"
+ sources."magnet-uri-4.2.3"
+ sources."once-1.3.3"
+ sources."parse-torrent-4.1.0"
+ sources."thirty-two-0.0.2"
+ ];
+ })
sources."trim-newlines-1.0.0"
sources."typedarray-0.0.6"
sources."ultron-1.0.2"
@@ -67345,14 +63016,11 @@ in
sources."after-0.8.2"
sources."ajv-6.12.6"
sources."archiver-3.1.1"
- (
- sources."archiver-utils-2.1.0"
- // {
- dependencies = [
- sources."readable-stream-2.3.8"
- ];
- }
- )
+ (sources."archiver-utils-2.1.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.8"
+ ];
+ })
sources."array-flatten-1.1.1"
sources."arraybuffer.slice-0.0.7"
sources."asn1-0.2.6"
@@ -67371,15 +63039,12 @@ in
sources."bencode-0.7.0"
sources."bitfield-0.1.0"
sources."bittorrent-dht-6.4.2"
- (
- sources."bittorrent-tracker-7.7.0"
- // {
- dependencies = [
- sources."bencode-0.8.0"
- sources."ws-1.1.5"
- ];
- }
- )
+ (sources."bittorrent-tracker-7.7.0" // {
+ dependencies = [
+ sources."bencode-0.8.0"
+ sources."ws-1.1.5"
+ ];
+ })
sources."bl-4.1.0"
sources."blob-0.0.5"
sources."bn.js-4.12.1"
@@ -67407,37 +63072,28 @@ in
sources."component-bind-1.0.0"
sources."component-emitter-1.3.1"
sources."component-inherit-0.0.3"
- (
- sources."compress-commons-2.1.1"
- // {
- dependencies = [
- sources."readable-stream-2.3.8"
- ];
- }
- )
+ (sources."compress-commons-2.1.1" // {
+ dependencies = [
+ sources."readable-stream-2.3.8"
+ ];
+ })
sources."concat-map-0.0.1"
- (
- sources."connect-multiparty-2.2.0"
- // {
- dependencies = [
- sources."depd-1.1.2"
- sources."http-errors-1.7.3"
- sources."on-finished-2.3.0"
- sources."qs-6.5.3"
- sources."setprototypeof-1.1.1"
- sources."statuses-1.5.0"
- sources."toidentifier-1.0.0"
- ];
- }
- )
- (
- sources."content-disposition-0.5.4"
- // {
- dependencies = [
- sources."safe-buffer-5.2.1"
- ];
- }
- )
+ (sources."connect-multiparty-2.2.0" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ sources."http-errors-1.7.3"
+ sources."on-finished-2.3.0"
+ sources."qs-6.5.3"
+ sources."setprototypeof-1.1.1"
+ sources."statuses-1.5.0"
+ sources."toidentifier-1.0.0"
+ ];
+ })
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.5"
sources."cookie-0.7.1"
sources."cookie-signature-1.0.6"
@@ -67456,24 +63112,18 @@ in
sources."ee-first-1.1.1"
sources."encodeurl-2.0.0"
sources."end-of-stream-1.4.4"
- (
- sources."engine.io-3.6.2"
- // {
- dependencies = [
- sources."cookie-0.4.2"
- sources."debug-4.1.1"
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."engine.io-client-3.5.4"
- // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- }
- )
+ (sources."engine.io-3.6.2" // {
+ dependencies = [
+ sources."cookie-0.4.2"
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."engine.io-client-3.5.4" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
sources."engine.io-parser-2.2.1"
sources."es-define-property-1.0.1"
sources."es-errors-1.3.0"
@@ -67481,14 +63131,11 @@ in
sources."escape-html-1.0.3"
sources."etag-1.8.1"
sources."events-3.3.0"
- (
- sources."express-4.21.2"
- // {
- dependencies = [
- sources."safe-buffer-5.2.1"
- ];
- }
- )
+ (sources."express-4.21.2" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."extend-3.0.2"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
@@ -67496,14 +63143,11 @@ in
sources."fifo-0.1.4"
sources."finalhandler-1.3.1"
sources."flatten-0.0.1"
- (
- sources."fluent-ffmpeg-2.1.3"
- // {
- dependencies = [
- sources."async-0.2.10"
- ];
- }
- )
+ (sources."fluent-ffmpeg-2.1.3" // {
+ dependencies = [
+ sources."async-0.2.10"
+ ];
+ })
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.2.0"
@@ -67513,7 +63157,7 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."get-browser-rtc-1.1.0"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."getpass-0.1.7"
sources."glob-7.2.3"
@@ -67521,14 +63165,11 @@ in
sources."graceful-fs-4.2.11"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
- (
- sources."has-binary2-1.0.3"
- // {
- dependencies = [
- sources."isarray-2.0.1"
- ];
- }
- )
+ (sources."has-binary2-1.0.3" // {
+ dependencies = [
+ sources."isarray-2.0.1"
+ ];
+ })
sources."has-cors-1.1.0"
sources."has-symbols-1.1.0"
sources."hasown-2.0.2"
@@ -67554,30 +63195,21 @@ in
sources."json-stringify-safe-5.0.1"
sources."jsprim-1.4.2"
sources."k-bucket-0.6.0"
- (
- sources."k-rpc-3.7.0"
- // {
- dependencies = [
- sources."k-bucket-2.0.1"
- ];
- }
- )
- (
- sources."k-rpc-socket-1.11.1"
- // {
- dependencies = [
- sources."bencode-2.0.3"
- ];
- }
- )
- (
- sources."lazystream-1.0.1"
- // {
- dependencies = [
- sources."readable-stream-2.3.8"
- ];
- }
- )
+ (sources."k-rpc-3.7.0" // {
+ dependencies = [
+ sources."k-bucket-2.0.1"
+ ];
+ })
+ (sources."k-rpc-socket-1.11.1" // {
+ dependencies = [
+ sources."bencode-2.0.3"
+ ];
+ })
+ (sources."lazystream-1.0.1" // {
+ dependencies = [
+ sources."readable-stream-2.3.8"
+ ];
+ })
sources."lodash-4.17.21"
sources."lodash.defaults-4.2.0"
sources."lodash.difference-4.5.0"
@@ -67598,26 +63230,20 @@ in
sources."minimist-1.2.8"
sources."mkdirp-0.5.6"
sources."mkdirp-classic-0.5.3"
- (
- sources."morgan-1.10.0"
- // {
- dependencies = [
- sources."on-finished-2.3.0"
- ];
- }
- )
+ (sources."morgan-1.10.0" // {
+ dependencies = [
+ sources."on-finished-2.3.0"
+ ];
+ })
sources."ms-2.0.0"
- (
- sources."multiparty-4.2.3"
- // {
- dependencies = [
- sources."depd-1.1.2"
- sources."http-errors-1.8.1"
- sources."safe-buffer-5.2.1"
- sources."statuses-1.5.0"
- ];
- }
- )
+ (sources."multiparty-4.2.3" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ sources."http-errors-1.8.1"
+ sources."safe-buffer-5.2.1"
+ sources."statuses-1.5.0"
+ ];
+ })
sources."negotiator-0.6.3"
sources."node-gyp-build-4.8.4"
sources."normalize-path-3.0.0"
@@ -67627,31 +63253,25 @@ in
sources."on-headers-1.0.2"
sources."once-1.4.0"
sources."options-0.0.6"
- (
- sources."parse-torrent-4.1.0"
- // {
- dependencies = [
- sources."magnet-uri-4.2.3"
- ];
- }
- )
+ (sources."parse-torrent-4.1.0" // {
+ dependencies = [
+ sources."magnet-uri-4.2.3"
+ ];
+ })
sources."parse-torrent-file-2.1.4"
sources."parseqs-0.0.6"
sources."parseuri-0.0.6"
sources."parseurl-1.3.3"
sources."path-is-absolute-1.0.1"
sources."path-to-regexp-0.1.12"
- (
- sources."peer-wire-protocol-0.7.1"
- // {
- dependencies = [
- sources."bncode-0.2.3"
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- }
- )
+ (sources."peer-wire-protocol-0.7.1" // {
+ dependencies = [
+ sources."bncode-0.2.3"
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
sources."peer-wire-swarm-0.12.2"
sources."performance-now-2.1.0"
sources."process-nextick-args-2.0.1"
@@ -67672,29 +63292,23 @@ in
sources."re-emitter-1.1.4"
sources."read-torrent-1.3.1"
sources."readable-stream-3.6.2"
- (
- sources."request-2.88.2"
- // {
- dependencies = [
- sources."qs-6.5.3"
- ];
- }
- )
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."qs-6.5.3"
+ ];
+ })
sources."rimraf-2.7.1"
sources."run-parallel-1.2.0"
sources."run-series-1.1.9"
sources."rusha-0.8.14"
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
- (
- sources."send-0.19.0"
- // {
- dependencies = [
- sources."encodeurl-1.0.2"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."send-0.19.0" // {
+ dependencies = [
+ sources."encodeurl-1.0.2"
+ sources."ms-2.1.3"
+ ];
+ })
sources."serve-static-1.16.2"
sources."setprototypeof-1.2.0"
sources."side-channel-1.1.0"
@@ -67703,68 +63317,50 @@ in
sources."side-channel-weakmap-1.0.2"
sources."simple-concat-1.0.1"
sources."simple-get-2.8.2"
- (
- sources."simple-peer-6.4.4"
- // {
- dependencies = [
- sources."readable-stream-2.3.8"
- ];
- }
- )
+ (sources."simple-peer-6.4.4" // {
+ dependencies = [
+ sources."readable-stream-2.3.8"
+ ];
+ })
sources."simple-sha1-2.1.2"
- (
- sources."simple-websocket-4.3.1"
- // {
- dependencies = [
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.0.1"
- sources."ultron-1.1.1"
- sources."ws-2.3.1"
- ];
- }
- )
- (
- sources."socket.io-2.5.1"
- // {
- dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."simple-websocket-4.3.1" // {
+ dependencies = [
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.0.1"
+ sources."ultron-1.1.1"
+ sources."ws-2.3.1"
+ ];
+ })
+ (sources."socket.io-2.5.1" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
sources."socket.io-adapter-1.1.2"
- (
- sources."socket.io-client-2.5.0"
- // {
- dependencies = [
- sources."debug-3.1.0"
- sources."isarray-2.0.1"
- sources."socket.io-parser-3.3.4"
- ];
- }
- )
- (
- sources."socket.io-parser-3.4.3"
- // {
- dependencies = [
- sources."component-emitter-1.2.1"
- sources."debug-4.1.1"
- sources."isarray-2.0.1"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."socket.io-client-2.5.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."isarray-2.0.1"
+ sources."socket.io-parser-3.3.4"
+ ];
+ })
+ (sources."socket.io-parser-3.4.3" // {
+ dependencies = [
+ sources."component-emitter-1.2.1"
+ sources."debug-4.1.1"
+ sources."isarray-2.0.1"
+ sources."ms-2.1.3"
+ ];
+ })
sources."speedometer-0.1.4"
sources."sshpk-1.18.0"
sources."statuses-2.0.1"
- (
- sources."string2compact-1.3.2"
- // {
- dependencies = [
- sources."ipaddr.js-2.2.0"
- ];
- }
- )
+ (sources."string2compact-1.3.2" // {
+ dependencies = [
+ sources."ipaddr.js-2.2.0"
+ ];
+ })
sources."string_decoder-1.1.1"
sources."tar-stream-2.2.0"
sources."thirty-two-0.0.2"
@@ -67773,16 +63369,13 @@ in
sources."toidentifier-1.0.1"
sources."torrent-discovery-5.4.0"
sources."torrent-piece-1.1.2"
- (
- sources."torrent-stream-1.2.1"
- // {
- dependencies = [
- sources."end-of-stream-0.1.5"
- sources."mkdirp-0.3.5"
- sources."once-1.3.3"
- ];
- }
- )
+ (sources."torrent-stream-1.2.1" // {
+ dependencies = [
+ sources."end-of-stream-0.1.5"
+ sources."mkdirp-0.3.5"
+ sources."once-1.3.3"
+ ];
+ })
sources."tough-cookie-2.5.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -67798,14 +63391,11 @@ in
sources."utp-0.0.7"
sources."uuid-3.4.0"
sources."vary-1.1.2"
- (
- sources."verror-1.10.0"
- // {
- dependencies = [
- sources."core-util-is-1.0.2"
- ];
- }
- )
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."which-1.3.1"
sources."wrappy-1.0.2"
sources."ws-7.5.10"
@@ -67855,10 +63445,10 @@ in
postcss = nodeEnv.buildNodePackage {
name = "postcss";
packageName = "postcss";
- version = "8.5.2";
+ version = "8.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz";
- sha512 = "MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==";
+ url = "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz";
+ sha512 = "dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==";
};
dependencies = [
sources."nanoid-3.3.8"
@@ -67899,7 +63489,7 @@ in
sources."color-name-1.1.4"
sources."dependency-graph-0.11.0"
sources."emoji-regex-8.0.0"
- sources."esbuild-0.23.1"
+ sources."esbuild-0.25.0"
sources."escalade-3.2.0"
sources."fast-glob-3.3.3"
sources."fastq-1.19.0"
@@ -67928,7 +63518,7 @@ in
sources."picocolors-1.1.1"
sources."picomatch-2.3.1"
sources."pify-2.3.0"
- sources."postcss-8.5.2"
+ sources."postcss-8.5.3"
sources."postcss-load-config-5.1.0"
sources."postcss-reporter-7.1.0"
sources."pretty-hrtime-1.0.3"
@@ -67945,7 +63535,7 @@ in
sources."strip-ansi-6.0.1"
sources."thenby-1.3.4"
sources."to-regex-range-5.0.1"
- sources."tsx-4.19.2"
+ sources."tsx-4.19.3"
sources."unicorn-magic-0.3.0"
sources."universalify-2.0.1"
sources."wrap-ansi-7.0.0"
@@ -68021,10 +63611,10 @@ in
prettier = nodeEnv.buildNodePackage {
name = "prettier";
packageName = "prettier";
- version = "3.5.1";
+ version = "3.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-3.5.1.tgz";
- sha512 = "hPpFQvHwL3Qv5AdRvBFMhnKo4tYxp0ReXiPn2bxkiohEX6mBeBwEpBSQTkD458RaaDKQMYSp4hX4UtfUTA5wDw==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz";
+ sha512 = "lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -68039,20 +63629,20 @@ in
prettier-plugin-toml = nodeEnv.buildNodePackage {
name = "prettier-plugin-toml";
packageName = "prettier-plugin-toml";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.1.tgz";
- sha512 = "99z1YOkViECHtXQjGIigd3talI/ybUI1zB3yniAwUrlWBXupNXThB1hM6bwSMUEj2/+tomTlMtT98F5t4s8IWA==";
+ url = "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.2.tgz";
+ sha512 = "tUIIhyfdVX5DMsLGKX/2qaEwi3W48OkUSR7XC91PRI5jFzhexmaYWkrSP1Xh/eWUcEc0TVMQenM3lB09xLQstQ==";
};
dependencies = [
sources."@taplo/core-0.1.1"
sources."@taplo/lib-0.4.0-alpha.2"
- sources."prettier-3.5.1"
+ sources."prettier-3.5.2"
];
buildInputs = globalBuildInputs;
meta = {
description = "An opinionated `toml` formatter plugin for Prettier";
- homepage = "https://github.com/un-ts/prettier/tree/master/packages/prettier";
+ homepage = "https://github.com/un-ts/prettier/tree/master/packages/toml";
license = "MIT";
};
production = true;
@@ -68062,14 +63652,14 @@ in
"@prisma/language-server" = nodeEnv.buildNodePackage {
name = "_at_prisma_slash_language-server";
packageName = "@prisma/language-server";
- version = "6.3.1";
+ version = "6.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-6.3.1.tgz";
- sha512 = "bKWHhfQruyz+zCt+fQPuJbvrBp/UgID6QmNyH4urfCTXLk085IbvN+yDpZW1qRLBFvB1+Uk1ZW8ls1nSJrAg5Q==";
+ url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-6.4.1.tgz";
+ sha512 = "gCB2QOaw1oFN53I6QB0oNaAPTF3DB9xpSfd9G2wsqoInMwufu+fGJP+d97wqSOmHlavQZJ3//yTQkk7Ws/HzYA==";
};
dependencies = [
- sources."@prisma/prisma-schema-wasm-6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0"
- sources."@prisma/schema-files-loader-6.3.1"
+ sources."@prisma/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d"
+ sources."@prisma/schema-files-loader-6.4.1"
sources."@types/js-levenshtein-1.1.3"
sources."fs-extra-11.1.1"
sources."graceful-fs-4.2.11"
@@ -68111,36 +63701,27 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."concat-map-0.0.1"
- (
- sources."cross-spawn-7.0.6"
- // {
- dependencies = [
- sources."which-2.0.2"
- ];
- }
- )
+ (sources."cross-spawn-7.0.6" // {
+ dependencies = [
+ sources."which-2.0.2"
+ ];
+ })
sources."eastasianwidth-0.2.0"
sources."emoji-regex-9.2.2"
- sources."foreground-child-3.3.0"
+ sources."foreground-child-3.3.1"
sources."fs.realpath-1.0.0"
sources."gaze-1.1.3"
- (
- sources."glob-10.4.5"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."minimatch-9.0.5"
- ];
- }
- )
- (
- sources."globule-1.3.4"
- // {
- dependencies = [
- sources."glob-7.1.7"
- ];
- }
- )
+ (sources."glob-10.4.5" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."minimatch-9.0.5"
+ ];
+ })
+ (sources."globule-1.3.4" // {
+ dependencies = [
+ sources."glob-7.1.7"
+ ];
+ })
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-fullwidth-code-point-3.0.0"
@@ -68160,44 +63741,32 @@ in
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
sources."string-width-5.1.2"
- (
- sources."string-width-cjs-4.2.3"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
- (
- sources."strip-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- ];
- }
- )
+ (sources."string-width-cjs-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
+ (sources."strip-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ ];
+ })
sources."strip-ansi-cjs-6.0.1"
- (
- sources."which-4.0.0"
- // {
- dependencies = [
- sources."isexe-3.1.1"
- ];
- }
- )
+ (sources."which-4.0.0" // {
+ dependencies = [
+ sources."isexe-3.1.1"
+ ];
+ })
sources."wrap-ansi-8.1.0"
- (
- sources."wrap-ansi-cjs-7.0.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -68223,14 +63792,11 @@ in
sources."acorn-7.4.1"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.2.0"
- (
- sources."asn1.js-4.10.1"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."asn1.js-4.10.1" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."assert-1.5.1"
sources."async-2.6.4"
sources."balanced-match-1.0.2"
@@ -68240,27 +63806,21 @@ in
sources."brorand-1.1.0"
sources."browser-pack-6.1.0"
sources."browser-resolve-2.0.0"
- (
- sources."browserify-16.5.2"
- // {
- dependencies = [
- sources."concat-stream-1.6.2"
- ];
- }
- )
+ (sources."browserify-16.5.2" // {
+ dependencies = [
+ sources."concat-stream-1.6.2"
+ ];
+ })
sources."browserify-aes-1.2.0"
sources."browserify-cache-api-3.0.2"
sources."browserify-cipher-1.0.1"
sources."browserify-des-1.0.2"
- (
- sources."browserify-incremental-3.1.1"
- // {
- dependencies = [
- sources."JSONStream-0.10.0"
- sources."jsonparse-0.0.5"
- ];
- }
- )
+ (sources."browserify-incremental-3.1.1" // {
+ dependencies = [
+ sources."JSONStream-0.10.0"
+ sources."jsonparse-0.0.5"
+ ];
+ })
sources."browserify-rsa-4.1.1"
sources."browserify-sign-4.2.3"
sources."browserify-zlib-0.2.0"
@@ -68277,26 +63837,20 @@ in
sources."colors-1.4.0"
sources."combine-source-map-0.8.0"
sources."concat-map-0.0.1"
- (
- sources."concat-stream-2.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."concat-stream-2.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
sources."convert-source-map-1.1.3"
sources."core-util-is-1.0.3"
- (
- sources."create-ecdh-4.0.4"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."create-ecdh-4.0.4" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."create-hash-1.2.0"
sources."create-hmac-1.1.7"
sources."crypto-browserify-3.12.1"
@@ -68307,25 +63861,19 @@ in
sources."deps-sort-2.0.1"
sources."des.js-1.1.0"
sources."detective-5.2.1"
- (
- sources."diffie-hellman-5.0.3"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."diffie-hellman-5.0.3" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."domain-browser-1.2.0"
sources."dunder-proto-1.0.1"
sources."duplexer2-0.1.4"
- (
- sources."elliptic-6.6.1"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."elliptic-6.6.1" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."es-define-property-1.0.1"
sources."es-errors-1.3.0"
sources."es-object-atoms-1.1.1"
@@ -68337,24 +63885,18 @@ in
sources."function-bind-1.1.2"
sources."gaze-1.1.3"
sources."get-assigned-identifiers-1.2.0"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
- (
- sources."glob-7.2.3"
- // {
- dependencies = [
- sources."minimatch-3.1.2"
- ];
- }
- )
- (
- sources."globule-1.3.4"
- // {
- dependencies = [
- sources."glob-7.1.7"
- ];
- }
- )
+ (sources."glob-7.2.3" // {
+ dependencies = [
+ sources."minimatch-3.1.2"
+ ];
+ })
+ (sources."globule-1.3.4" // {
+ dependencies = [
+ sources."glob-7.1.7"
+ ];
+ })
sources."gopd-1.2.0"
sources."graceful-fs-4.2.11"
sources."has-1.0.4"
@@ -68370,14 +63912,11 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."inline-source-map-0.6.3"
- (
- sources."insert-module-globals-7.2.1"
- // {
- dependencies = [
- sources."concat-stream-1.6.2"
- ];
- }
- )
+ (sources."insert-module-globals-7.2.1" // {
+ dependencies = [
+ sources."concat-stream-1.6.2"
+ ];
+ })
sources."is-buffer-1.1.6"
sources."is-core-module-2.16.1"
sources."isarray-1.0.0"
@@ -68390,14 +63929,11 @@ in
sources."lodash.memoize-3.0.4"
sources."math-intrinsics-1.1.0"
sources."md5.js-1.3.5"
- (
- sources."miller-rabin-4.0.1"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."miller-rabin-4.0.1" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."mime-1.6.0"
sources."minimalistic-assert-1.0.1"
sources."minimalistic-crypto-utils-1.0.1"
@@ -68405,37 +63941,28 @@ in
sources."minimist-1.2.8"
sources."mkdirp-0.5.6"
sources."mkdirp-classic-0.5.3"
- (
- sources."module-deps-6.2.3"
- // {
- dependencies = [
- sources."concat-stream-1.6.2"
- ];
- }
- )
- (
- sources."mold-source-map-0.4.1"
- // {
- dependencies = [
- sources."through-2.2.7"
- ];
- }
- )
+ (sources."module-deps-6.2.3" // {
+ dependencies = [
+ sources."concat-stream-1.6.2"
+ ];
+ })
+ (sources."mold-source-map-0.4.1" // {
+ dependencies = [
+ sources."through-2.2.7"
+ ];
+ })
sources."mute-stream-0.0.8"
sources."node-static-0.7.11"
sources."object-inspect-1.13.4"
sources."object-keys-1.1.1"
sources."object.assign-4.1.7"
sources."once-1.4.0"
- (
- sources."optimist-0.6.1"
- // {
- dependencies = [
- sources."minimist-0.0.10"
- sources."wordwrap-0.0.3"
- ];
- }
- )
+ (sources."optimist-0.6.1" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ sources."wordwrap-0.0.3"
+ ];
+ })
sources."os-browserify-0.3.0"
sources."pako-1.0.11"
sources."parents-1.0.1"
@@ -68447,14 +63974,11 @@ in
sources."pbkdf2-3.1.2"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
- (
- sources."public-encrypt-4.0.3"
- // {
- dependencies = [
- sources."bn.js-4.12.1"
- ];
- }
- )
+ (sources."public-encrypt-4.0.3" // {
+ dependencies = [
+ sources."bn.js-4.12.1"
+ ];
+ })
sources."punycode-1.4.1"
sources."qs-6.14.0"
sources."querystring-es3-0.2.1"
@@ -68462,15 +63986,12 @@ in
sources."randomfill-1.0.4"
sources."read-1.0.7"
sources."read-only-stream-2.0.0"
- (
- sources."readable-stream-2.3.8"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
+ (sources."readable-stream-2.3.8" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
sources."resolve-1.22.10"
sources."rimraf-2.6.3"
sources."ripemd160-2.0.2"
@@ -68491,14 +64012,11 @@ in
sources."sourcemap-codec-1.4.8"
sources."stream-browserify-2.0.2"
sources."stream-combiner2-1.1.1"
- (
- sources."stream-http-3.2.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."stream-http-3.2.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."stream-splicer-2.0.1"
sources."string_decoder-1.3.0"
sources."subarg-1.0.0"
@@ -68514,14 +64032,11 @@ in
sources."umd-3.0.3"
sources."undeclared-identifiers-1.1.3"
sources."url-0.11.4"
- (
- sources."util-0.10.4"
- // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- }
- )
+ (sources."util-0.10.4" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
sources."util-deprecate-1.0.2"
sources."vm-browserify-1.1.2"
sources."which-1.3.1"
@@ -68553,14 +64068,11 @@ in
sources."uuid-9.0.1"
sources."vscode-jsonrpc-8.2.1"
sources."vscode-languageserver-8.1.0"
- (
- sources."vscode-languageserver-protocol-3.17.3"
- // {
- dependencies = [
- sources."vscode-jsonrpc-8.1.0"
- ];
- }
- )
+ (sources."vscode-languageserver-protocol-3.17.3" // {
+ dependencies = [
+ sources."vscode-jsonrpc-8.1.0"
+ ];
+ })
sources."vscode-languageserver-textdocument-1.0.12"
sources."vscode-languageserver-types-3.17.3"
sources."vscode-uri-2.1.2"
@@ -68667,11 +64179,11 @@ in
sources."cross-spawn-7.0.6"
sources."eastasianwidth-0.2.0"
sources."emoji-regex-9.2.2"
- sources."foreground-child-3.3.0"
+ sources."foreground-child-3.3.1"
sources."glob-11.0.1"
sources."is-fullwidth-code-point-3.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-4.0.3"
+ sources."jackspeak-4.1.0"
sources."lru-cache-11.0.2"
sources."minimatch-10.0.1"
sources."minipass-7.1.2"
@@ -68682,37 +64194,28 @@ in
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
sources."string-width-5.1.2"
- (
- sources."string-width-cjs-4.2.3"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
- (
- sources."strip-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- ];
- }
- )
+ (sources."string-width-cjs-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
+ (sources."strip-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ ];
+ })
sources."strip-ansi-cjs-6.0.1"
sources."which-2.0.2"
sources."wrap-ansi-8.1.0"
- (
- sources."wrap-ansi-cjs-7.0.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
];
buildInputs = globalBuildInputs;
meta = {
@@ -68727,10 +64230,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "4.34.7";
+ version = "4.34.8";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz";
- sha512 = "8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz";
+ sha512 = "489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==";
};
dependencies = [
sources."@types/estree-1.0.6"
@@ -68745,469 +64248,13 @@ in
bypassCache = true;
reconstructLock = true;
};
- "rust-analyzer-build-deps-../../applications/editors/vscode/extensions/rust-lang.rust-analyzer/build-deps" =
- nodeEnv.buildNodePackage {
- name = "rust-analyzer";
- packageName = "rust-analyzer";
- version = "0.3.2029";
- src = ../../applications/editors/vscode/extensions/rust-lang.rust-analyzer/build-deps;
- dependencies = [
- sources."@azure/abort-controller-2.1.2"
- sources."@azure/core-auth-1.9.0"
- sources."@azure/core-client-1.9.2"
- sources."@azure/core-rest-pipeline-1.19.0"
- sources."@azure/core-tracing-1.2.0"
- sources."@azure/core-util-1.11.0"
- sources."@azure/identity-4.6.0"
- sources."@azure/logger-1.1.4"
- (
- sources."@azure/msal-browser-4.2.1"
- // {
- dependencies = [
- sources."@azure/msal-common-15.1.1"
- ];
- }
- )
- sources."@azure/msal-common-14.16.0"
- sources."@azure/msal-node-2.16.2"
- sources."@eslint-community/eslint-utils-4.4.1"
- sources."@eslint-community/regexpp-4.12.1"
- (
- sources."@eslint/eslintrc-2.1.4"
- // {
- dependencies = [
- sources."brace-expansion-1.1.11"
- sources."minimatch-3.1.2"
- ];
- }
- )
- sources."@eslint/js-8.57.1"
- sources."@hpcc-js/wasm-2.22.4"
- (
- sources."@humanwhocodes/config-array-0.13.0"
- // {
- dependencies = [
- sources."brace-expansion-1.1.11"
- sources."minimatch-3.1.2"
- ];
- }
- )
- sources."@humanwhocodes/module-importer-1.0.1"
- sources."@humanwhocodes/object-schema-2.0.3"
- sources."@nodelib/fs.scandir-2.1.5"
- sources."@nodelib/fs.stat-2.0.5"
- sources."@nodelib/fs.walk-1.2.8"
- sources."@tsconfig/strictest-2.0.5"
- sources."@types/json-schema-7.0.15"
- sources."@types/node-16.11.68"
- sources."@types/semver-7.5.8"
- sources."@types/vscode-1.78.1"
- sources."@typescript-eslint/eslint-plugin-6.21.0"
- sources."@typescript-eslint/parser-6.21.0"
- sources."@typescript-eslint/scope-manager-6.21.0"
- sources."@typescript-eslint/type-utils-6.21.0"
- sources."@typescript-eslint/types-6.21.0"
- (
- sources."@typescript-eslint/typescript-estree-6.21.0"
- // {
- dependencies = [
- sources."minimatch-9.0.3"
- ];
- }
- )
- sources."@typescript-eslint/utils-6.21.0"
- sources."@typescript-eslint/visitor-keys-6.21.0"
- sources."@ungap/structured-clone-1.3.0"
- sources."@vscode/test-electron-2.4.1"
- (
- sources."@vscode/vsce-2.32.0"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."brace-expansion-1.1.11"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."commander-6.2.1"
- sources."minimatch-3.1.2"
- ];
- }
- )
- sources."@vscode/vsce-sign-2.0.5"
- sources."acorn-8.14.0"
- sources."acorn-jsx-5.3.2"
- sources."agent-base-7.1.3"
- sources."ajv-6.12.6"
- sources."anser-2.3.2"
- sources."ansi-regex-5.0.1"
- sources."ansi-styles-4.3.0"
- sources."argparse-2.0.1"
- sources."array-union-2.1.0"
- sources."asynckit-0.4.0"
- sources."azure-devops-node-api-12.5.0"
- sources."balanced-match-1.0.2"
- sources."base64-js-1.5.1"
- sources."bl-5.1.0"
- sources."boolbase-1.0.0"
- sources."brace-expansion-2.0.1"
- sources."braces-3.0.3"
- sources."buffer-6.0.3"
- sources."buffer-crc32-0.2.13"
- sources."buffer-equal-constant-time-1.0.1"
- sources."call-bind-apply-helpers-1.0.2"
- sources."call-bound-1.0.3"
- sources."callsites-3.1.0"
- sources."chalk-5.4.1"
- sources."cheerio-1.0.0"
- sources."cheerio-select-2.1.0"
- sources."ci-info-2.0.0"
- sources."cli-cursor-4.0.0"
- sources."cli-spinners-2.9.2"
- sources."cliui-8.0.1"
- sources."cockatiel-3.2.1"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."combined-stream-1.0.8"
- sources."commander-7.2.0"
- sources."concat-map-0.0.1"
- sources."core-util-is-1.0.3"
- sources."cross-spawn-7.0.6"
- sources."css-select-5.1.0"
- sources."css-what-6.1.0"
- sources."d3-7.9.0"
- sources."d3-array-3.2.4"
- sources."d3-axis-3.0.0"
- sources."d3-brush-3.0.0"
- sources."d3-chord-3.0.1"
- sources."d3-color-3.1.0"
- sources."d3-contour-4.0.2"
- sources."d3-delaunay-6.0.4"
- sources."d3-dispatch-3.0.1"
- sources."d3-drag-3.0.0"
- sources."d3-dsv-3.0.1"
- sources."d3-ease-3.0.1"
- sources."d3-fetch-3.0.1"
- sources."d3-force-3.0.0"
- sources."d3-format-3.1.0"
- sources."d3-geo-3.1.1"
- sources."d3-graphviz-5.6.0"
- sources."d3-hierarchy-3.1.2"
- sources."d3-interpolate-3.0.1"
- sources."d3-path-3.1.0"
- sources."d3-polygon-3.0.1"
- sources."d3-quadtree-3.0.1"
- sources."d3-random-3.0.1"
- sources."d3-scale-4.0.2"
- sources."d3-scale-chromatic-3.1.0"
- sources."d3-selection-3.0.0"
- sources."d3-shape-3.2.0"
- sources."d3-time-3.1.0"
- sources."d3-time-format-4.1.0"
- sources."d3-timer-3.0.1"
- sources."d3-transition-3.0.1"
- sources."d3-zoom-3.0.0"
- sources."debug-4.4.0"
- sources."deep-is-0.1.4"
- sources."define-lazy-prop-2.0.0"
- sources."delaunator-5.0.1"
- sources."delayed-stream-1.0.0"
- sources."dir-glob-3.0.1"
- sources."doctrine-3.0.0"
- sources."dom-serializer-2.0.0"
- sources."domelementtype-2.3.0"
- sources."domhandler-5.0.3"
- sources."domutils-3.2.2"
- sources."dunder-proto-1.0.1"
- sources."eastasianwidth-0.2.0"
- sources."ecdsa-sig-formatter-1.0.11"
- sources."emoji-regex-8.0.0"
- sources."encoding-sniffer-0.2.0"
- sources."entities-4.5.0"
- sources."es-define-property-1.0.1"
- sources."es-errors-1.3.0"
- sources."es-object-atoms-1.1.1"
- sources."es-set-tostringtag-2.1.0"
- sources."escalade-3.2.0"
- sources."escape-string-regexp-1.0.5"
- (
- sources."eslint-8.57.1"
- // {
- dependencies = [
- sources."brace-expansion-1.1.11"
- sources."chalk-4.1.2"
- sources."escape-string-regexp-4.0.0"
- sources."glob-parent-6.0.2"
- sources."has-flag-4.0.0"
- sources."minimatch-3.1.2"
- sources."supports-color-7.2.0"
- ];
- }
- )
- sources."eslint-config-prettier-8.10.0"
- sources."eslint-scope-7.2.2"
- sources."eslint-visitor-keys-3.4.3"
- sources."espree-9.6.1"
- sources."esquery-1.6.0"
- sources."esrecurse-4.3.0"
- sources."estraverse-5.3.0"
- sources."esutils-2.0.3"
- sources."events-3.3.0"
- sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.3.3"
- sources."fast-json-stable-stringify-2.1.0"
- sources."fast-levenshtein-2.0.6"
- sources."fastq-1.19.0"
- sources."fd-slicer-1.1.0"
- sources."file-entry-cache-6.0.1"
- sources."fill-range-7.1.1"
- sources."find-up-5.0.0"
- sources."flat-cache-3.2.0"
- sources."flatted-3.3.2"
- sources."follow-redirects-1.15.9"
- sources."form-data-4.0.2"
- sources."fs.realpath-1.0.0"
- sources."function-bind-1.1.2"
- sources."get-caller-file-2.0.5"
- sources."get-intrinsic-1.2.7"
- sources."get-proto-1.0.1"
- (
- sources."glob-7.2.3"
- // {
- dependencies = [
- sources."brace-expansion-1.1.11"
- sources."minimatch-3.1.2"
- ];
- }
- )
- sources."glob-parent-5.1.2"
- sources."globals-13.24.0"
- sources."globby-11.1.0"
- sources."gopd-1.2.0"
- sources."graphemer-1.4.0"
- sources."has-flag-3.0.0"
- sources."has-symbols-1.1.0"
- sources."has-tostringtag-1.0.2"
- sources."hasown-2.0.2"
- sources."hosted-git-info-4.1.0"
- sources."htmlparser2-9.1.0"
- sources."http-proxy-agent-7.0.2"
- sources."https-proxy-agent-7.0.6"
- sources."iconv-lite-0.6.3"
- sources."ieee754-1.2.1"
- sources."ignore-5.3.2"
- sources."immediate-3.0.6"
- sources."import-fresh-3.3.1"
- sources."imurmurhash-0.1.4"
- sources."inflight-1.0.6"
- sources."inherits-2.0.4"
- sources."internmap-2.0.3"
- sources."is-ci-2.0.0"
- sources."is-docker-2.2.1"
- sources."is-extglob-2.1.1"
- sources."is-fullwidth-code-point-3.0.0"
- sources."is-glob-4.0.3"
- sources."is-interactive-2.0.0"
- sources."is-number-7.0.0"
- sources."is-path-inside-3.0.3"
- sources."is-unicode-supported-1.3.0"
- sources."is-wsl-2.2.0"
- sources."isarray-1.0.0"
- sources."isexe-2.0.0"
- sources."js-yaml-4.1.0"
- sources."json-buffer-3.0.1"
- sources."json-schema-traverse-0.4.1"
- sources."json-stable-stringify-without-jsonify-1.0.1"
- sources."jsonc-parser-3.3.1"
- (
- sources."jsonwebtoken-9.0.2"
- // {
- dependencies = [
- sources."jwa-1.4.1"
- sources."jws-3.2.2"
- ];
- }
- )
- (
- sources."jszip-3.10.1"
- // {
- dependencies = [
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
- sources."jwa-2.0.0"
- sources."jws-4.0.0"
- sources."keyv-4.5.4"
- sources."leven-3.1.0"
- sources."levn-0.4.1"
- sources."lie-3.3.0"
- sources."linkify-it-3.0.3"
- sources."locate-path-6.0.0"
- sources."lodash.includes-4.3.0"
- sources."lodash.isboolean-3.0.3"
- sources."lodash.isinteger-4.0.4"
- sources."lodash.isnumber-3.0.3"
- sources."lodash.isplainobject-4.0.6"
- sources."lodash.isstring-4.0.1"
- sources."lodash.merge-4.6.2"
- sources."lodash.once-4.1.1"
- sources."log-symbols-5.1.0"
- sources."lru-cache-6.0.0"
- (
- sources."markdown-it-12.3.2"
- // {
- dependencies = [
- sources."entities-2.1.0"
- ];
- }
- )
- sources."math-intrinsics-1.1.0"
- sources."mdurl-1.0.1"
- sources."merge2-1.4.1"
- sources."micromatch-4.0.8"
- sources."mime-1.6.0"
- sources."mime-db-1.52.0"
- sources."mime-types-2.1.35"
- sources."mimic-fn-2.1.0"
- sources."minimatch-5.1.6"
- sources."ms-2.1.3"
- sources."mute-stream-0.0.8"
- sources."natural-compare-1.4.0"
- sources."nth-check-2.1.1"
- sources."object-inspect-1.13.4"
- sources."once-1.4.0"
- sources."onetime-5.1.2"
- sources."open-8.4.2"
- sources."optionator-0.9.4"
- (
- sources."ora-7.0.1"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- sources."emoji-regex-10.4.0"
- sources."string-width-6.1.0"
- sources."strip-ansi-7.1.0"
- ];
- }
- )
- (
- sources."ovsx-0.8.4"
- // {
- dependencies = [
- sources."commander-6.2.1"
- ];
- }
- )
- sources."p-limit-3.1.0"
- sources."p-locate-5.0.0"
- sources."pako-1.0.11"
- sources."parent-module-1.0.1"
- (
- sources."parse-semver-1.1.1"
- // {
- dependencies = [
- sources."semver-5.7.2"
- ];
- }
- )
- sources."parse5-7.2.1"
- sources."parse5-htmlparser2-tree-adapter-7.1.0"
- sources."parse5-parser-stream-7.1.2"
- sources."path-exists-4.0.0"
- sources."path-is-absolute-1.0.1"
- sources."path-key-3.1.1"
- sources."path-type-4.0.0"
- sources."pend-1.2.0"
- sources."picomatch-2.3.1"
- sources."prelude-ls-1.2.1"
- sources."prettier-3.5.1"
- sources."process-nextick-args-2.0.1"
- sources."punycode-2.3.1"
- sources."qs-6.14.0"
- sources."queue-microtask-1.2.3"
- sources."read-1.0.7"
- sources."readable-stream-3.6.2"
- sources."require-directory-2.1.1"
- sources."resolve-from-4.0.0"
- sources."restore-cursor-4.0.0"
- sources."reusify-1.0.4"
- sources."rimraf-3.0.2"
- sources."robust-predicates-3.0.2"
- sources."run-parallel-1.2.0"
- sources."rw-1.3.3"
- sources."safe-buffer-5.2.1"
- sources."safer-buffer-2.1.2"
- sources."sax-1.4.1"
- sources."semver-7.7.1"
- sources."setimmediate-1.0.5"
- sources."shebang-command-2.0.0"
- sources."shebang-regex-3.0.0"
- sources."side-channel-1.1.0"
- sources."side-channel-list-1.0.0"
- sources."side-channel-map-1.0.1"
- sources."side-channel-weakmap-1.0.2"
- sources."signal-exit-3.0.7"
- sources."slash-3.0.0"
- sources."stdin-discarder-0.1.0"
- sources."stoppable-1.1.0"
- sources."string-width-4.2.3"
- sources."string_decoder-1.3.0"
- sources."strip-ansi-6.0.1"
- sources."strip-json-comments-3.1.1"
- sources."supports-color-5.5.0"
- sources."text-table-0.2.0"
- sources."tmp-0.2.3"
- sources."to-regex-range-5.0.1"
- sources."ts-api-utils-1.4.3"
- sources."tslib-2.8.1"
- sources."tunnel-0.0.6"
- sources."type-check-0.4.0"
- sources."type-fest-0.20.2"
- sources."typed-rest-client-1.8.11"
- sources."typescript-5.7.3"
- sources."uc.micro-1.0.6"
- sources."underscore-1.13.7"
- sources."undici-6.21.1"
- sources."uri-js-4.4.1"
- sources."url-join-4.0.1"
- sources."util-deprecate-1.0.2"
- sources."uuid-8.3.2"
- sources."vscode-jsonrpc-8.1.0"
- sources."vscode-languageclient-8.1.0"
- sources."vscode-languageserver-protocol-3.17.3"
- sources."vscode-languageserver-types-3.17.3"
- sources."whatwg-encoding-3.1.1"
- sources."whatwg-mimetype-4.0.0"
- sources."which-2.0.2"
- sources."word-wrap-1.2.5"
- sources."wrap-ansi-7.0.0"
- sources."wrappy-1.0.2"
- sources."xml2js-0.5.0"
- sources."xmlbuilder-11.0.1"
- sources."y18n-5.0.8"
- sources."yallist-4.0.0"
- sources."yargs-17.7.2"
- sources."yargs-parser-21.1.1"
- sources."yauzl-2.10.0"
- sources."yazl-2.5.1"
- sources."yocto-queue-0.1.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- };
- production = true;
- bypassCache = true;
- reconstructLock = true;
- };
sass = nodeEnv.buildNodePackage {
name = "sass";
packageName = "sass";
- version = "1.85.0";
+ version = "1.85.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.85.0.tgz";
- sha512 = "3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.85.1.tgz";
+ sha512 = "Uk8WpxM5v+0cMR0XjX9KfRIacmSG86RH4DCCZjLU2rFh5tyutt9siAXJ7G+YfxQ99Q6wrRMbMlVl6KqUms71ag==";
};
dependencies = [
sources."chokidar-4.0.3"
@@ -69255,16 +64302,13 @@ in
sources."@zeit/schemas-2.36.0"
sources."accepts-1.3.8"
sources."ajv-8.12.0"
- (
- sources."ansi-align-3.0.1"
- // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."ansi-align-3.0.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."ansi-regex-6.1.0"
sources."ansi-styles-6.2.1"
sources."arch-2.2.0"
@@ -69275,15 +64319,12 @@ in
sources."bytes-3.0.0"
sources."camelcase-7.0.1"
sources."chalk-5.0.1"
- (
- sources."chalk-template-0.4.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.2"
- ];
- }
- )
+ (sources."chalk-template-0.4.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ ];
+ })
sources."cli-boxes-3.0.0"
sources."clipboardy-3.0.0"
sources."color-convert-2.0.1"
@@ -69331,26 +64372,20 @@ in
sources."registry-url-3.1.0"
sources."require-from-string-2.0.2"
sources."safe-buffer-5.1.2"
- (
- sources."serve-handler-6.1.6"
- // {
- dependencies = [
- sources."mime-db-1.33.0"
- sources."mime-types-2.1.18"
- ];
- }
- )
+ (sources."serve-handler-6.1.6" // {
+ dependencies = [
+ sources."mime-db-1.33.0"
+ sources."mime-types-2.1.18"
+ ];
+ })
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.7"
- (
- sources."string-width-5.1.2"
- // {
- dependencies = [
- sources."emoji-regex-9.2.2"
- ];
- }
- )
+ (sources."string-width-5.1.2" // {
+ dependencies = [
+ sources."emoji-regex-9.2.2"
+ ];
+ })
sources."strip-ansi-7.1.0"
sources."strip-final-newline-2.0.0"
sources."strip-json-comments-2.0.1"
@@ -69431,14 +64466,11 @@ in
sources."escape-regexp-component-1.0.2"
sources."extsprintf-1.4.1"
sources."formidable-1.2.6"
- (
- sources."getpass-0.1.7"
- // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- }
- )
+ (sources."getpass-0.1.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
sources."glob-6.0.4"
sources."http-signature-0.11.0"
sources."inflight-1.0.6"
@@ -69447,15 +64479,12 @@ in
sources."jodid25519-1.0.2"
sources."jsbn-0.1.1"
sources."json-schema-0.2.2"
- (
- sources."jsprim-0.3.0"
- // {
- dependencies = [
- sources."extsprintf-1.0.0"
- sources."verror-1.3.3"
- ];
- }
- )
+ (sources."jsprim-0.3.0" // {
+ dependencies = [
+ sources."extsprintf-1.0.0"
+ sources."verror-1.3.3"
+ ];
+ })
sources."keep-alive-agent-0.0.1"
sources."lru-cache-2.2.0"
sources."mime-1.6.0"
@@ -69463,7 +64492,7 @@ in
sources."minimist-1.2.8"
sources."mkdirp-0.5.6"
sources."mv-2.1.1"
- sources."nan-2.22.0"
+ sources."nan-2.22.1"
sources."ncp-2.0.0"
sources."negotiator-0.5.3"
sources."node-uuid-1.4.8"
@@ -69474,99 +64503,75 @@ in
sources."process-nextick-args-2.0.1"
sources."qs-3.1.0"
sources."readable-stream-2.3.8"
- (
- sources."restify-4.0.3"
- // {
- dependencies = [
- sources."extsprintf-1.2.0"
- sources."lru-cache-2.7.3"
- (
- sources."vasync-1.6.3"
- // {
- dependencies = [
- sources."verror-1.6.0"
- ];
- }
- )
- ];
- }
- )
+ (sources."restify-4.0.3" // {
+ dependencies = [
+ sources."extsprintf-1.2.0"
+ sources."lru-cache-2.7.3"
+ (sources."vasync-1.6.3" // {
+ dependencies = [
+ sources."verror-1.6.0"
+ ];
+ })
+ ];
+ })
sources."rimraf-2.4.5"
sources."safe-buffer-5.1.2"
sources."safe-json-stringify-1.2.0"
sources."safer-buffer-2.1.2"
sources."semver-4.3.6"
- (
- sources."smartdc-auth-2.3.1"
- // {
- dependencies = [
- sources."asn1-0.2.6"
- sources."assert-plus-0.1.2"
- sources."clone-0.1.5"
- sources."dashdash-1.10.1"
- sources."ecc-jsbn-0.1.2"
- sources."extsprintf-1.0.0"
- (
- sources."http-signature-1.4.0"
- // {
- dependencies = [
- sources."assert-plus-1.0.0"
- sources."dashdash-1.14.1"
- sources."extsprintf-1.3.0"
- sources."jsprim-2.0.2"
- sources."sshpk-1.18.0"
- sources."verror-1.10.0"
- ];
- }
- )
- sources."json-schema-0.4.0"
- sources."once-1.3.0"
- sources."vasync-1.4.3"
- sources."verror-1.1.0"
- ];
- }
- )
- sources."spdy-1.32.5"
- (
- sources."sshpk-1.7.1"
- // {
- dependencies = [
- sources."asn1-0.2.6"
- sources."assert-plus-0.2.0"
- (
+ (sources."smartdc-auth-2.3.1" // {
+ dependencies = [
+ sources."asn1-0.2.6"
+ sources."assert-plus-0.1.2"
+ sources."clone-0.1.5"
+ sources."dashdash-1.10.1"
+ sources."ecc-jsbn-0.1.2"
+ sources."extsprintf-1.0.0"
+ (sources."http-signature-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
sources."dashdash-1.14.1"
- // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- }
- )
- ];
- }
- )
+ sources."extsprintf-1.3.0"
+ sources."jsprim-2.0.2"
+ sources."sshpk-1.18.0"
+ sources."verror-1.10.0"
+ ];
+ })
+ sources."json-schema-0.4.0"
+ sources."once-1.3.0"
+ sources."vasync-1.4.3"
+ sources."verror-1.1.0"
+ ];
+ })
+ sources."spdy-1.32.5"
+ (sources."sshpk-1.7.1" // {
+ dependencies = [
+ sources."asn1-0.2.6"
+ sources."assert-plus-0.2.0"
+ (sources."dashdash-1.14.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ ];
+ })
sources."sshpk-agent-1.2.1"
sources."stream-transform-0.1.2"
sources."string_decoder-1.1.1"
sources."tunnel-agent-0.4.3"
sources."tweetnacl-0.14.5"
sources."util-deprecate-1.0.2"
- (
- sources."vasync-1.6.2"
- // {
- dependencies = [
- sources."extsprintf-1.0.0"
- sources."verror-1.1.0"
- ];
- }
- )
- (
- sources."verror-1.10.1"
- // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- }
- )
+ (sources."vasync-1.6.2" // {
+ dependencies = [
+ sources."extsprintf-1.0.0"
+ sources."verror-1.1.0"
+ ];
+ })
+ (sources."verror-1.10.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -69589,7 +64594,7 @@ in
dependencies = [
sources."@socket.io/component-emitter-3.1.2"
sources."@types/cors-2.8.17"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."accepts-1.3.8"
sources."base64id-2.0.0"
sources."bufferutil-4.0.9"
@@ -69652,15 +64657,12 @@ in
sources."color-name-1.1.4"
sources."debug-3.1.0"
sources."decamelize-5.0.1"
- (
- sources."decamelize-keys-1.1.1"
- // {
- dependencies = [
- sources."decamelize-1.2.0"
- sources."map-obj-1.0.1"
- ];
- }
- )
+ (sources."decamelize-keys-1.1.1" // {
+ dependencies = [
+ sources."decamelize-1.2.0"
+ sources."map-obj-1.0.1"
+ ];
+ })
sources."defaults-1.0.4"
sources."draftlog-1.0.13"
sources."eastasianwidth-0.2.0"
@@ -69691,14 +64693,11 @@ in
sources."kind-of-6.0.3"
sources."lines-and-columns-1.2.4"
sources."locate-path-6.0.0"
- (
- sources."log-symbols-5.1.0"
- // {
- dependencies = [
- sources."chalk-5.4.1"
- ];
- }
- )
+ (sources."log-symbols-5.1.0" // {
+ dependencies = [
+ sources."chalk-5.4.1"
+ ];
+ })
sources."log-update-5.0.1"
sources."lru-cache-6.0.0"
sources."map-obj-4.3.0"
@@ -69709,14 +64708,11 @@ in
sources."ms-2.0.0"
sources."normalize-package-data-3.0.3"
sources."onetime-5.1.2"
- (
- sources."ora-6.3.1"
- // {
- dependencies = [
- sources."chalk-5.4.1"
- ];
- }
- )
+ (sources."ora-6.3.1" // {
+ dependencies = [
+ sources."chalk-5.4.1"
+ ];
+ })
sources."p-limit-3.1.0"
sources."p-locate-5.0.0"
sources."parse-json-5.2.0"
@@ -69733,31 +64729,25 @@ in
sources."sax-1.4.1"
sources."semver-7.7.1"
sources."signal-exit-3.0.7"
- (
- sources."slice-ansi-5.0.0"
- // {
- dependencies = [
- sources."ansi-styles-6.2.1"
- ];
- }
- )
+ (sources."slice-ansi-5.0.0" // {
+ dependencies = [
+ sources."ansi-styles-6.2.1"
+ ];
+ })
sources."spdx-correct-3.2.0"
sources."spdx-exceptions-2.5.0"
sources."spdx-expression-parse-3.0.1"
sources."spdx-license-ids-3.0.21"
- (
- sources."speedtest-net-1.6.2"
- // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."has-flag-3.0.0"
- sources."supports-color-5.5.0"
- ];
- }
- )
+ (sources."speedtest-net-1.6.2" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."has-flag-3.0.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."stdin-discarder-0.1.0"
sources."string-width-5.1.2"
sources."string_decoder-1.3.0"
@@ -69769,14 +64759,11 @@ in
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
sources."wcwidth-1.0.1"
- (
- sources."wrap-ansi-8.1.0"
- // {
- dependencies = [
- sources."ansi-styles-6.2.1"
- ];
- }
- )
+ (sources."wrap-ansi-8.1.0" // {
+ dependencies = [
+ sources."ansi-styles-6.2.1"
+ ];
+ })
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
sources."yallist-4.0.0"
@@ -69826,7 +64813,7 @@ in
sources."picomatch-4.0.2"
sources."readdirp-4.1.2"
sources."sade-1.8.1"
- sources."svelte-5.20.1"
+ sources."svelte-5.20.4"
sources."typescript-5.7.3"
sources."zimmerframe-1.1.2"
];
@@ -69853,23 +64840,17 @@ in
sources."boolbase-1.0.0"
sources."commander-7.2.0"
sources."css-select-5.1.0"
- (
- sources."css-tree-2.3.1"
- // {
- dependencies = [
- sources."mdn-data-2.0.30"
- ];
- }
- )
+ (sources."css-tree-2.3.1" // {
+ dependencies = [
+ sources."mdn-data-2.0.30"
+ ];
+ })
sources."css-what-6.1.0"
- (
- sources."csso-5.0.5"
- // {
- dependencies = [
- sources."css-tree-2.2.1"
- ];
- }
- )
+ (sources."csso-5.0.5" // {
+ dependencies = [
+ sources."css-tree-2.2.1"
+ ];
+ })
sources."dom-serializer-2.0.0"
sources."domelementtype-2.3.0"
sources."domhandler-5.0.3"
@@ -69958,19 +64939,16 @@ in
sources."@types/cors-2.8.17"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/responselike-1.0.3"
sources."abort-controller-3.0.0"
sources."abstract-logging-2.0.1"
sources."accepts-1.3.8"
- (
- sources."agent-base-6.0.2"
- // {
- dependencies = [
- sources."debug-4.4.0"
- ];
- }
- )
+ (sources."agent-base-6.0.2" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ ];
+ })
sources."ansi-styles-4.3.0"
sources."array-flatten-1.1.1"
sources."asn1-0.2.6"
@@ -70009,22 +64987,16 @@ in
sources."cors-2.8.5"
sources."css-select-5.1.0"
sources."css-what-6.1.0"
- (
- sources."debug-2.6.9"
- // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- }
- )
- (
- sources."decompress-response-6.0.0"
- // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- }
- )
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ (sources."decompress-response-6.0.0" // {
+ dependencies = [
+ sources."mimic-response-3.1.0"
+ ];
+ })
sources."deep-extend-0.6.0"
sources."defer-to-connect-2.0.1"
sources."define-data-property-1.1.4"
@@ -70039,14 +65011,11 @@ in
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- (
- sources."engine.io-6.4.2"
- // {
- dependencies = [
- sources."debug-4.3.7"
- ];
- }
- )
+ (sources."engine.io-6.4.2" // {
+ dependencies = [
+ sources."debug-4.3.7"
+ ];
+ })
sources."engine.io-parser-5.0.7"
sources."entities-4.5.0"
sources."es-define-property-1.0.1"
@@ -70069,7 +65038,7 @@ in
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-stream-5.2.0"
sources."gopd-1.2.0"
@@ -70085,28 +65054,22 @@ in
sources."http-errors-1.8.1"
sources."http2-wrapper-1.0.3"
sources."http_ece-1.1.0"
- (
- sources."https-proxy-agent-5.0.1"
- // {
- dependencies = [
- sources."debug-4.4.0"
- ];
- }
- )
+ (sources."https-proxy-agent-5.0.1" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ ];
+ })
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."ip-address-9.0.5"
sources."ipaddr.js-1.9.1"
- (
- sources."irc-framework-4.13.1"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
+ (sources."irc-framework-4.13.1" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."is-arguments-1.2.0"
sources."is-callable-1.2.7"
sources."is-generator-function-1.1.0"
@@ -70184,42 +65147,30 @@ in
sources."set-function-length-1.2.2"
sources."setprototypeof-1.2.0"
sources."smart-buffer-4.2.0"
- (
- sources."socket.io-4.6.1"
- // {
- dependencies = [
- sources."debug-4.3.7"
- ];
- }
- )
- (
- sources."socket.io-adapter-2.5.5"
- // {
- dependencies = [
- sources."debug-4.3.7"
- sources."ws-8.17.1"
- ];
- }
- )
- (
- sources."socket.io-parser-4.2.4"
- // {
- dependencies = [
- sources."debug-4.3.7"
- ];
- }
- )
+ (sources."socket.io-4.6.1" // {
+ dependencies = [
+ sources."debug-4.3.7"
+ ];
+ })
+ (sources."socket.io-adapter-2.5.5" // {
+ dependencies = [
+ sources."debug-4.3.7"
+ sources."ws-8.17.1"
+ ];
+ })
+ (sources."socket.io-parser-4.2.4" // {
+ dependencies = [
+ sources."debug-4.3.7"
+ ];
+ })
sources."socks-2.8.4"
sources."sprintf-js-1.1.3"
sources."statuses-1.5.0"
- (
- sources."stream-browserify-3.0.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."stream-browserify-3.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."string_decoder-1.3.0"
sources."strip-json-comments-2.0.1"
sources."strip-outer-1.0.1"
@@ -70243,14 +65194,11 @@ in
sources."utils-merge-1.0.1"
sources."uuid-8.3.2"
sources."vary-1.1.2"
- (
- sources."vasync-2.2.1"
- // {
- dependencies = [
- sources."verror-1.10.0"
- ];
- }
- )
+ (sources."vasync-2.2.1" // {
+ dependencies = [
+ sources."verror-1.10.0"
+ ];
+ })
sources."verror-1.10.1"
sources."web-push-3.4.5"
sources."which-typed-array-1.1.18"
@@ -70283,31 +65231,25 @@ in
sources."@szmarczak/http-timer-1.1.2"
sources."abbrev-1.1.1"
sources."abstract-logging-1.0.0"
- (
- sources."accepts-1.3.8"
- // {
- dependencies = [
- sources."mime-types-2.1.35"
- ];
- }
- )
+ (sources."accepts-1.3.8" // {
+ dependencies = [
+ sources."mime-types-2.1.35"
+ ];
+ })
sources."after-0.8.2"
sources."agent-base-4.3.0"
sources."ajv-6.12.6"
sources."ansi-regex-2.1.1"
sources."ansi-styles-3.2.1"
sources."aproba-1.2.0"
- (
- sources."are-we-there-yet-1.1.7"
- // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
+ (sources."are-we-there-yet-1.1.7" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
sources."array-flatten-1.1.1"
sources."arraybuffer.slice-0.0.7"
sources."asn1-0.2.6"
@@ -70328,32 +65270,26 @@ in
sources."better-assert-1.0.2"
sources."blob-0.0.5"
sources."bn.js-4.12.1"
- (
- sources."body-parser-1.19.0"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- sources."qs-6.7.0"
- ];
- }
- )
+ (sources."body-parser-1.19.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
+ sources."qs-6.7.0"
+ ];
+ })
sources."boolbase-1.0.0"
sources."brace-expansion-1.1.11"
sources."buffer-equal-constant-time-1.0.1"
sources."bufferutil-4.0.9"
sources."busboy-0.3.1"
sources."bytes-3.1.0"
- (
- sources."cacheable-request-6.1.0"
- // {
- dependencies = [
- sources."get-stream-5.2.0"
- sources."lowercase-keys-2.0.0"
- ];
- }
- )
+ (sources."cacheable-request-6.1.0" // {
+ dependencies = [
+ sources."get-stream-5.2.0"
+ sources."lowercase-keys-2.0.0"
+ ];
+ })
sources."call-bind-apply-helpers-1.0.2"
sources."call-bound-1.0.3"
sources."callsite-1.0.0"
@@ -70372,14 +65308,11 @@ in
sources."component-inherit-0.0.3"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- (
- sources."content-disposition-0.5.3"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."content-disposition-0.5.3" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."content-type-1.0.5"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
@@ -70409,27 +65342,21 @@ in
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- (
- sources."engine.io-3.4.2"
- // {
- dependencies = [
- sources."cookie-0.3.1"
- sources."debug-4.1.1"
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."engine.io-client-3.4.4"
- // {
- dependencies = [
- sources."component-emitter-1.3.1"
- sources."parseqs-0.0.6"
- sources."parseuri-0.0.6"
- sources."ws-6.1.4"
- ];
- }
- )
+ (sources."engine.io-3.4.2" // {
+ dependencies = [
+ sources."cookie-0.3.1"
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."engine.io-client-3.4.4" // {
+ dependencies = [
+ sources."component-emitter-1.3.1"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
+ sources."ws-6.1.4"
+ ];
+ })
sources."engine.io-parser-2.2.1"
sources."entities-1.1.2"
sources."es-define-property-1.0.1"
@@ -70441,16 +65368,13 @@ in
sources."escape-string-regexp-1.0.5"
sources."etag-1.8.1"
sources."eventemitter3-2.0.3"
- (
- sources."express-4.17.1"
- // {
- dependencies = [
- sources."debug-2.6.9"
- sources."qs-6.7.0"
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."express-4.17.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."qs-6.7.0"
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."extend-3.0.2"
sources."extsprintf-1.4.1"
sources."fast-deep-equal-3.1.3"
@@ -70459,14 +65383,11 @@ in
sources."file-type-12.3.1"
sources."filename-reserved-regex-2.0.0"
sources."filenamify-4.1.0"
- (
- sources."finalhandler-1.1.2"
- // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- }
- )
+ (sources."finalhandler-1.1.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
sources."follow-redirects-1.5.10"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
@@ -70477,7 +65398,7 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."gauge-2.7.4"
- sources."get-intrinsic-1.2.7"
+ sources."get-intrinsic-1.3.0"
sources."get-proto-1.0.1"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
@@ -70520,15 +65441,12 @@ in
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
sources."jsonfile-4.0.0"
- (
- sources."jsprim-1.4.2"
- // {
- dependencies = [
- sources."extsprintf-1.3.0"
- sources."verror-1.10.0"
- ];
- }
- )
+ (sources."jsprim-1.4.2" // {
+ dependencies = [
+ sources."extsprintf-1.3.0"
+ sources."verror-1.10.0"
+ ];
+ })
sources."jwa-1.4.1"
sources."jws-3.2.2"
sources."keyv-3.1.0"
@@ -70556,14 +65474,11 @@ in
sources."middleware-handler-0.2.0"
sources."mime-1.6.0"
sources."mime-db-1.52.0"
- (
- sources."mime-types-2.1.24"
- // {
- dependencies = [
- sources."mime-db-1.40.0"
- ];
- }
- )
+ (sources."mime-types-2.1.24" // {
+ dependencies = [
+ sources."mime-db-1.40.0"
+ ];
+ })
sources."mimic-response-1.0.1"
sources."minimalistic-assert-1.0.1"
sources."minimatch-3.1.2"
@@ -70573,26 +65488,20 @@ in
sources."mkdirp-0.5.6"
sources."ms-2.0.0"
sources."mute-stream-0.0.8"
- sources."nan-2.22.0"
- (
- sources."needle-2.9.1"
- // {
- dependencies = [
- sources."debug-3.2.7"
- sources."ms-2.1.3"
- ];
- }
- )
+ sources."nan-2.22.1"
+ (sources."needle-2.9.1" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ sources."ms-2.1.3"
+ ];
+ })
sources."negotiator-0.6.3"
sources."node-gyp-build-4.8.4"
- (
- sources."node-pre-gyp-0.11.0"
- // {
- dependencies = [
- sources."semver-5.7.2"
- ];
- }
- )
+ (sources."node-pre-gyp-0.11.0" // {
+ dependencies = [
+ sources."semver-5.7.2"
+ ];
+ })
sources."nopt-4.0.3"
sources."normalize-url-4.5.1"
sources."npm-bundled-1.1.2"
@@ -70630,15 +65539,12 @@ in
sources."punycode-2.3.1"
sources."qs-6.14.0"
sources."range-parser-1.2.1"
- (
- sources."raw-body-2.4.0"
- // {
- dependencies = [
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- ];
- }
- )
+ (sources."raw-body-2.4.0" // {
+ dependencies = [
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
+ ];
+ })
sources."rc-1.2.8"
sources."read-1.0.7"
sources."read-chunk-3.2.0"
@@ -70646,36 +65552,27 @@ in
sources."regenerator-runtime-0.13.11"
sources."registry-auth-token-4.2.2"
sources."registry-url-5.1.0"
- (
- sources."request-2.88.2"
- // {
- dependencies = [
- sources."qs-6.5.3"
- ];
- }
- )
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."qs-6.5.3"
+ ];
+ })
sources."responselike-1.0.2"
sources."rimraf-2.7.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."sax-1.4.1"
sources."semver-6.3.0"
- (
- sources."send-0.17.1"
- // {
- dependencies = [
- (
- sources."debug-2.6.9"
- // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- }
- )
- sources."ms-2.1.1"
- ];
- }
- )
+ (sources."send-0.17.1" // {
+ dependencies = [
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."ms-2.1.1"
+ ];
+ })
sources."serve-static-1.14.1"
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.1"
@@ -70684,53 +65581,38 @@ in
sources."side-channel-map-1.0.1"
sources."side-channel-weakmap-1.0.2"
sources."signal-exit-3.0.7"
- (
- sources."socket.io-2.3.0"
- // {
- dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."socket.io-2.3.0" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
sources."socket.io-adapter-1.1.2"
- (
- sources."socket.io-client-2.3.0"
- // {
- dependencies = [
- sources."base64-arraybuffer-0.1.5"
- sources."debug-4.1.1"
- sources."ms-2.1.3"
- (
- sources."socket.io-parser-3.3.4"
- // {
- dependencies = [
- sources."component-emitter-1.3.1"
- sources."debug-3.1.0"
- sources."ms-2.0.0"
- ];
- }
- )
- ];
- }
- )
- (
- sources."socket.io-parser-3.4.3"
- // {
- dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."socksjs-0.5.0"
- // {
- dependencies = [
- sources."ipaddr.js-0.1.3"
- ];
- }
- )
+ (sources."socket.io-client-2.3.0" // {
+ dependencies = [
+ sources."base64-arraybuffer-0.1.5"
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ (sources."socket.io-parser-3.3.4" // {
+ dependencies = [
+ sources."component-emitter-1.3.1"
+ sources."debug-3.1.0"
+ sources."ms-2.0.0"
+ ];
+ })
+ ];
+ })
+ (sources."socket.io-parser-3.4.3" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."socksjs-0.5.0" // {
+ dependencies = [
+ sources."ipaddr.js-0.1.3"
+ ];
+ })
sources."sqlite3-4.1.0"
sources."sshpk-1.18.0"
sources."statuses-1.5.0"
@@ -70764,14 +65646,11 @@ in
sources."utils-merge-1.0.1"
sources."uuid-3.3.3"
sources."vary-1.1.2"
- (
- sources."vasync-2.2.1"
- // {
- dependencies = [
- sources."verror-1.10.0"
- ];
- }
- )
+ (sources."vasync-2.2.1" // {
+ dependencies = [
+ sources."verror-1.10.0"
+ ];
+ })
sources."verror-1.10.1"
sources."web-push-3.4.1"
sources."wide-align-1.1.5"
@@ -71042,43 +65921,34 @@ in
sources."@types/cacheable-request-6.0.3"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/responselike-1.0.3"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
- (
- sources."accepts-1.3.8"
- // {
- dependencies = [
- sources."mime-types-2.1.35"
- ];
- }
- )
+ (sources."accepts-1.3.8" // {
+ dependencies = [
+ sources."mime-types-2.1.35"
+ ];
+ })
sources."after-0.8.2"
- (
- sources."agent-base-6.0.2"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."agent-base-6.0.2" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
sources."ajv-6.12.6"
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- (
- sources."are-we-there-yet-1.1.7"
- // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
+ (sources."are-we-there-yet-1.1.7" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
sources."array-flatten-1.1.1"
sources."arraybuffer.slice-0.0.7"
sources."asn1-0.2.6"
@@ -71099,15 +65969,12 @@ in
sources."blob-0.0.5"
sources."block-stream-0.0.9"
sources."bn.js-4.12.1"
- (
- sources."body-parser-1.19.0"
- // {
- dependencies = [
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- ];
- }
- )
+ (sources."body-parser-1.19.0" // {
+ dependencies = [
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
+ ];
+ })
sources."boolbase-1.0.0"
sources."brace-expansion-1.1.11"
sources."buffer-equal-constant-time-1.0.1"
@@ -71132,14 +65999,11 @@ in
sources."component-inherit-0.0.3"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- (
- sources."content-disposition-0.5.3"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."content-disposition-0.5.3" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."content-type-1.0.5"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
@@ -71148,22 +66012,16 @@ in
sources."css-select-1.2.0"
sources."css-what-2.1.3"
sources."dashdash-1.14.1"
- (
- sources."debug-2.6.9"
- // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- }
- )
- (
- sources."decompress-response-6.0.0"
- // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- }
- )
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ (sources."decompress-response-6.0.0" // {
+ dependencies = [
+ sources."mimic-response-3.1.0"
+ ];
+ })
sources."deep-extend-0.6.0"
sources."defer-to-connect-2.0.1"
sources."delayed-stream-1.0.0"
@@ -71182,42 +66040,33 @@ in
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- (
- sources."engine.io-3.4.2"
- // {
- dependencies = [
- sources."cookie-0.3.1"
- sources."debug-4.1.1"
- ];
- }
- )
- (
- sources."engine.io-client-3.4.4"
- // {
- dependencies = [
- sources."component-emitter-1.3.1"
- sources."debug-3.1.0"
- sources."ms-2.0.0"
- sources."parseqs-0.0.6"
- sources."parseuri-0.0.6"
- sources."ws-6.1.4"
- ];
- }
- )
+ (sources."engine.io-3.4.2" // {
+ dependencies = [
+ sources."cookie-0.3.1"
+ sources."debug-4.1.1"
+ ];
+ })
+ (sources."engine.io-client-3.4.4" // {
+ dependencies = [
+ sources."component-emitter-1.3.1"
+ sources."debug-3.1.0"
+ sources."ms-2.0.0"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
+ sources."ws-6.1.4"
+ ];
+ })
sources."engine.io-parser-2.2.1"
sources."entities-1.1.2"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
sources."etag-1.8.1"
sources."eventemitter3-4.0.7"
- (
- sources."express-4.17.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."express-4.17.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."extend-3.0.2"
sources."extsprintf-1.4.1"
sources."fast-deep-equal-3.1.3"
@@ -71253,15 +66102,12 @@ in
sources."http-signature-1.2.0"
sources."http2-wrapper-1.0.3"
sources."http_ece-1.1.0"
- (
- sources."https-proxy-agent-5.0.1"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."https-proxy-agent-5.0.1" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."ignore-walk-3.0.4"
@@ -71270,14 +66116,11 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."ipaddr.js-1.9.1"
- (
- sources."irc-framework-4.9.0"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
+ (sources."irc-framework-4.9.0" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
@@ -71290,15 +66133,12 @@ in
sources."json-schema-0.4.0"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
- (
- sources."jsprim-1.4.2"
- // {
- dependencies = [
- sources."extsprintf-1.3.0"
- sources."verror-1.10.0"
- ];
- }
- )
+ (sources."jsprim-1.4.2" // {
+ dependencies = [
+ sources."extsprintf-1.3.0"
+ sources."verror-1.10.0"
+ ];
+ })
sources."jwa-2.0.0"
sources."jws-4.0.0"
sources."keyv-4.5.4"
@@ -71313,14 +66153,11 @@ in
sources."middleware-handler-0.2.0"
sources."mime-1.6.0"
sources."mime-db-1.52.0"
- (
- sources."mime-types-2.1.27"
- // {
- dependencies = [
- sources."mime-db-1.44.0"
- ];
- }
- )
+ (sources."mime-types-2.1.27" // {
+ dependencies = [
+ sources."mime-db-1.44.0"
+ ];
+ })
sources."mimic-response-1.0.1"
sources."minimalistic-assert-1.0.1"
sources."minimatch-3.1.2"
@@ -71330,36 +66167,27 @@ in
sources."mkdirp-0.5.6"
sources."ms-2.1.1"
sources."mute-stream-0.0.8"
- (
- sources."needle-2.9.1"
- // {
- dependencies = [
- sources."debug-3.2.7"
- ];
- }
- )
+ (sources."needle-2.9.1" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ ];
+ })
sources."negotiator-0.6.3"
sources."node-addon-api-2.0.0"
sources."node-forge-0.9.1"
- (
- sources."node-gyp-3.8.0"
- // {
- dependencies = [
- sources."nopt-3.0.6"
- sources."semver-5.3.0"
- sources."tar-2.2.2"
- ];
- }
- )
+ (sources."node-gyp-3.8.0" // {
+ dependencies = [
+ sources."nopt-3.0.6"
+ sources."semver-5.3.0"
+ sources."tar-2.2.2"
+ ];
+ })
sources."node-gyp-build-4.8.4"
- (
- sources."node-pre-gyp-0.11.0"
- // {
- dependencies = [
- sources."semver-5.7.2"
- ];
- }
- )
+ (sources."node-pre-gyp-0.11.0" // {
+ dependencies = [
+ sources."semver-5.7.2"
+ ];
+ })
sources."nopt-4.0.3"
sources."normalize-url-6.1.0"
sources."npm-bundled-1.1.2"
@@ -71379,35 +66207,29 @@ in
sources."p-cancelable-2.1.1"
sources."p-finally-1.0.0"
sources."p-try-2.2.0"
- (
- sources."package-json-6.5.0"
- // {
- dependencies = [
- sources."@sindresorhus/is-0.14.0"
- sources."@szmarczak/http-timer-1.1.2"
- (
- sources."cacheable-request-6.1.0"
- // {
- dependencies = [
- sources."get-stream-5.2.0"
- sources."lowercase-keys-2.0.0"
- ];
- }
- )
- sources."decompress-response-3.3.0"
- sources."defer-to-connect-1.1.3"
- sources."get-stream-4.1.0"
- sources."got-9.6.0"
- sources."json-buffer-3.0.0"
- sources."keyv-3.1.0"
- sources."lowercase-keys-1.0.1"
- sources."normalize-url-4.5.1"
- sources."p-cancelable-1.1.0"
- sources."responselike-1.0.2"
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."package-json-6.5.0" // {
+ dependencies = [
+ sources."@sindresorhus/is-0.14.0"
+ sources."@szmarczak/http-timer-1.1.2"
+ (sources."cacheable-request-6.1.0" // {
+ dependencies = [
+ sources."get-stream-5.2.0"
+ sources."lowercase-keys-2.0.0"
+ ];
+ })
+ sources."decompress-response-3.3.0"
+ sources."defer-to-connect-1.1.3"
+ sources."get-stream-4.1.0"
+ sources."got-9.6.0"
+ sources."json-buffer-3.0.0"
+ sources."keyv-3.1.0"
+ sources."lowercase-keys-1.0.1"
+ sources."normalize-url-4.5.1"
+ sources."p-cancelable-1.1.0"
+ sources."responselike-1.0.2"
+ sources."semver-6.3.1"
+ ];
+ })
sources."parse5-3.0.3"
sources."parseqs-0.0.5"
sources."parseuri-0.0.5"
@@ -71427,15 +66249,12 @@ in
sources."qs-6.7.0"
sources."quick-lru-5.1.1"
sources."range-parser-1.2.1"
- (
- sources."raw-body-2.4.0"
- // {
- dependencies = [
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- ];
- }
- )
+ (sources."raw-body-2.4.0" // {
+ dependencies = [
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
+ ];
+ })
sources."rc-1.2.8"
sources."read-1.0.7"
sources."read-chunk-3.2.0"
@@ -71444,15 +66263,12 @@ in
sources."regenerator-runtime-0.13.11"
sources."registry-auth-token-4.2.2"
sources."registry-url-5.1.0"
- (
- sources."request-2.88.2"
- // {
- dependencies = [
- sources."qs-6.5.3"
- sources."uuid-3.4.0"
- ];
- }
- )
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."qs-6.5.3"
+ sources."uuid-3.4.0"
+ ];
+ })
sources."resolve-alpn-1.2.1"
sources."responselike-2.0.1"
sources."rimraf-2.7.1"
@@ -71465,50 +66281,35 @@ in
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.1"
sources."signal-exit-3.0.7"
- (
- sources."socket.io-2.3.0"
- // {
- dependencies = [
- sources."debug-4.1.1"
- ];
- }
- )
+ (sources."socket.io-2.3.0" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ ];
+ })
sources."socket.io-adapter-1.1.2"
- (
- sources."socket.io-client-2.3.0"
- // {
- dependencies = [
- sources."base64-arraybuffer-0.1.5"
- sources."debug-4.1.1"
- sources."ms-2.0.0"
- (
- sources."socket.io-parser-3.3.4"
- // {
- dependencies = [
- sources."component-emitter-1.3.1"
- sources."debug-3.1.0"
- ];
- }
- )
- ];
- }
- )
- (
- sources."socket.io-parser-3.4.3"
- // {
- dependencies = [
- sources."debug-4.1.1"
- ];
- }
- )
- (
- sources."socksjs-0.5.0"
- // {
- dependencies = [
- sources."ipaddr.js-0.1.3"
- ];
- }
- )
+ (sources."socket.io-client-2.3.0" // {
+ dependencies = [
+ sources."base64-arraybuffer-0.1.5"
+ sources."debug-4.1.1"
+ sources."ms-2.0.0"
+ (sources."socket.io-parser-3.3.4" // {
+ dependencies = [
+ sources."component-emitter-1.3.1"
+ sources."debug-3.1.0"
+ ];
+ })
+ ];
+ })
+ (sources."socket.io-parser-3.4.3" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ ];
+ })
+ (sources."socksjs-0.5.0" // {
+ dependencies = [
+ sources."ipaddr.js-0.1.3"
+ ];
+ })
sources."sqlite3-5.0.0"
sources."sshpk-1.18.0"
sources."statuses-1.5.0"
@@ -71526,14 +66327,11 @@ in
sources."to-array-0.1.4"
sources."to-readable-stream-1.0.0"
sources."toidentifier-1.0.0"
- (
- sources."token-types-2.1.1"
- // {
- dependencies = [
- sources."@tokenizer/token-0.1.1"
- ];
- }
- )
+ (sources."token-types-2.1.1" // {
+ dependencies = [
+ sources."@tokenizer/token-0.1.1"
+ ];
+ })
sources."tough-cookie-2.5.0"
sources."trim-repeated-1.0.0"
sources."tunnel-agent-0.6.0"
@@ -71552,14 +66350,11 @@ in
sources."utils-merge-1.0.1"
sources."uuid-8.3.0"
sources."vary-1.1.2"
- (
- sources."vasync-2.2.1"
- // {
- dependencies = [
- sources."verror-1.10.0"
- ];
- }
- )
+ (sources."vasync-2.2.1" // {
+ dependencies = [
+ sources."verror-1.10.0"
+ ];
+ })
sources."verror-1.10.1"
sources."web-push-3.4.4"
sources."which-1.3.1"
@@ -71597,43 +66392,34 @@ in
sources."@types/cacheable-request-6.0.3"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/responselike-1.0.3"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
- (
- sources."accepts-1.3.8"
- // {
- dependencies = [
- sources."mime-types-2.1.35"
- ];
- }
- )
+ (sources."accepts-1.3.8" // {
+ dependencies = [
+ sources."mime-types-2.1.35"
+ ];
+ })
sources."after-0.8.2"
- (
- sources."agent-base-6.0.2"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."agent-base-6.0.2" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
sources."ajv-6.12.6"
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- (
- sources."are-we-there-yet-1.1.7"
- // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.8"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- }
- )
+ (sources."are-we-there-yet-1.1.7" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
sources."array-flatten-1.1.1"
sources."arraybuffer.slice-0.0.7"
sources."asn1-0.2.6"
@@ -71654,15 +66440,12 @@ in
sources."blob-0.0.5"
sources."block-stream-0.0.9"
sources."bn.js-4.12.1"
- (
- sources."body-parser-1.19.0"
- // {
- dependencies = [
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- ];
- }
- )
+ (sources."body-parser-1.19.0" // {
+ dependencies = [
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
+ ];
+ })
sources."boolbase-1.0.0"
sources."brace-expansion-1.1.11"
sources."buffer-equal-constant-time-1.0.1"
@@ -71687,14 +66470,11 @@ in
sources."component-inherit-0.0.3"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- (
- sources."content-disposition-0.5.3"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."content-disposition-0.5.3" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."content-type-1.0.5"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
@@ -71703,22 +66483,16 @@ in
sources."css-select-1.2.0"
sources."css-what-2.1.3"
sources."dashdash-1.14.1"
- (
- sources."debug-2.6.9"
- // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- }
- )
- (
- sources."decompress-response-6.0.0"
- // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- }
- )
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ (sources."decompress-response-6.0.0" // {
+ dependencies = [
+ sources."mimic-response-3.1.0"
+ ];
+ })
sources."deep-extend-0.6.0"
sources."defer-to-connect-2.0.1"
sources."delayed-stream-1.0.0"
@@ -71737,42 +66511,33 @@ in
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- (
- sources."engine.io-3.4.2"
- // {
- dependencies = [
- sources."cookie-0.3.1"
- sources."debug-4.1.1"
- ];
- }
- )
- (
- sources."engine.io-client-3.4.4"
- // {
- dependencies = [
- sources."component-emitter-1.3.1"
- sources."debug-3.1.0"
- sources."ms-2.0.0"
- sources."parseqs-0.0.6"
- sources."parseuri-0.0.6"
- sources."ws-6.1.4"
- ];
- }
- )
+ (sources."engine.io-3.4.2" // {
+ dependencies = [
+ sources."cookie-0.3.1"
+ sources."debug-4.1.1"
+ ];
+ })
+ (sources."engine.io-client-3.4.4" // {
+ dependencies = [
+ sources."component-emitter-1.3.1"
+ sources."debug-3.1.0"
+ sources."ms-2.0.0"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
+ sources."ws-6.1.4"
+ ];
+ })
sources."engine.io-parser-2.2.1"
sources."entities-1.1.2"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
sources."etag-1.8.1"
sources."eventemitter3-4.0.7"
- (
- sources."express-4.17.1"
- // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- }
- )
+ (sources."express-4.17.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."extend-3.0.2"
sources."extsprintf-1.4.1"
sources."fast-deep-equal-3.1.3"
@@ -71808,15 +66573,12 @@ in
sources."http-signature-1.2.0"
sources."http2-wrapper-1.0.3"
sources."http_ece-1.1.0"
- (
- sources."https-proxy-agent-5.0.1"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."https-proxy-agent-5.0.1" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."ignore-walk-3.0.4"
@@ -71825,14 +66587,11 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."ipaddr.js-1.9.1"
- (
- sources."irc-framework-4.9.0"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
+ (sources."irc-framework-4.9.0" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
@@ -71845,15 +66604,12 @@ in
sources."json-schema-0.4.0"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
- (
- sources."jsprim-1.4.2"
- // {
- dependencies = [
- sources."extsprintf-1.3.0"
- sources."verror-1.10.0"
- ];
- }
- )
+ (sources."jsprim-1.4.2" // {
+ dependencies = [
+ sources."extsprintf-1.3.0"
+ sources."verror-1.10.0"
+ ];
+ })
sources."jwa-2.0.0"
sources."jws-4.0.0"
sources."keyv-4.5.4"
@@ -71868,14 +66624,11 @@ in
sources."middleware-handler-0.2.0"
sources."mime-1.6.0"
sources."mime-db-1.52.0"
- (
- sources."mime-types-2.1.27"
- // {
- dependencies = [
- sources."mime-db-1.44.0"
- ];
- }
- )
+ (sources."mime-types-2.1.27" // {
+ dependencies = [
+ sources."mime-db-1.44.0"
+ ];
+ })
sources."mimic-response-1.0.1"
sources."minimalistic-assert-1.0.1"
sources."minimatch-3.1.2"
@@ -71885,36 +66638,27 @@ in
sources."mkdirp-0.5.6"
sources."ms-2.1.1"
sources."mute-stream-0.0.8"
- (
- sources."needle-2.9.1"
- // {
- dependencies = [
- sources."debug-3.2.7"
- ];
- }
- )
+ (sources."needle-2.9.1" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ ];
+ })
sources."negotiator-0.6.3"
sources."node-addon-api-2.0.0"
sources."node-forge-0.9.1"
- (
- sources."node-gyp-3.8.0"
- // {
- dependencies = [
- sources."nopt-3.0.6"
- sources."semver-5.3.0"
- sources."tar-2.2.2"
- ];
- }
- )
+ (sources."node-gyp-3.8.0" // {
+ dependencies = [
+ sources."nopt-3.0.6"
+ sources."semver-5.3.0"
+ sources."tar-2.2.2"
+ ];
+ })
sources."node-gyp-build-4.8.4"
- (
- sources."node-pre-gyp-0.11.0"
- // {
- dependencies = [
- sources."semver-5.7.2"
- ];
- }
- )
+ (sources."node-pre-gyp-0.11.0" // {
+ dependencies = [
+ sources."semver-5.7.2"
+ ];
+ })
sources."nopt-4.0.3"
sources."normalize-url-6.1.0"
sources."npm-bundled-1.1.2"
@@ -71934,35 +66678,29 @@ in
sources."p-cancelable-2.1.1"
sources."p-finally-1.0.0"
sources."p-try-2.2.0"
- (
- sources."package-json-6.5.0"
- // {
- dependencies = [
- sources."@sindresorhus/is-0.14.0"
- sources."@szmarczak/http-timer-1.1.2"
- (
- sources."cacheable-request-6.1.0"
- // {
- dependencies = [
- sources."get-stream-5.2.0"
- sources."lowercase-keys-2.0.0"
- ];
- }
- )
- sources."decompress-response-3.3.0"
- sources."defer-to-connect-1.1.3"
- sources."get-stream-4.1.0"
- sources."got-9.6.0"
- sources."json-buffer-3.0.0"
- sources."keyv-3.1.0"
- sources."lowercase-keys-1.0.1"
- sources."normalize-url-4.5.1"
- sources."p-cancelable-1.1.0"
- sources."responselike-1.0.2"
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."package-json-6.5.0" // {
+ dependencies = [
+ sources."@sindresorhus/is-0.14.0"
+ sources."@szmarczak/http-timer-1.1.2"
+ (sources."cacheable-request-6.1.0" // {
+ dependencies = [
+ sources."get-stream-5.2.0"
+ sources."lowercase-keys-2.0.0"
+ ];
+ })
+ sources."decompress-response-3.3.0"
+ sources."defer-to-connect-1.1.3"
+ sources."get-stream-4.1.0"
+ sources."got-9.6.0"
+ sources."json-buffer-3.0.0"
+ sources."keyv-3.1.0"
+ sources."lowercase-keys-1.0.1"
+ sources."normalize-url-4.5.1"
+ sources."p-cancelable-1.1.0"
+ sources."responselike-1.0.2"
+ sources."semver-6.3.1"
+ ];
+ })
sources."parse5-3.0.3"
sources."parseqs-0.0.5"
sources."parseuri-0.0.5"
@@ -71982,15 +66720,12 @@ in
sources."qs-6.7.0"
sources."quick-lru-5.1.1"
sources."range-parser-1.2.1"
- (
- sources."raw-body-2.4.0"
- // {
- dependencies = [
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- ];
- }
- )
+ (sources."raw-body-2.4.0" // {
+ dependencies = [
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
+ ];
+ })
sources."rc-1.2.8"
sources."read-1.0.7"
sources."read-chunk-3.2.0"
@@ -71999,15 +66734,12 @@ in
sources."regenerator-runtime-0.13.11"
sources."registry-auth-token-4.2.2"
sources."registry-url-5.1.0"
- (
- sources."request-2.88.2"
- // {
- dependencies = [
- sources."qs-6.5.3"
- sources."uuid-3.4.0"
- ];
- }
- )
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."qs-6.5.3"
+ sources."uuid-3.4.0"
+ ];
+ })
sources."resolve-alpn-1.2.1"
sources."responselike-2.0.1"
sources."rimraf-2.7.1"
@@ -72020,50 +66752,35 @@ in
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.1"
sources."signal-exit-3.0.7"
- (
- sources."socket.io-2.3.0"
- // {
- dependencies = [
- sources."debug-4.1.1"
- ];
- }
- )
+ (sources."socket.io-2.3.0" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ ];
+ })
sources."socket.io-adapter-1.1.2"
- (
- sources."socket.io-client-2.3.0"
- // {
- dependencies = [
- sources."base64-arraybuffer-0.1.5"
- sources."debug-4.1.1"
- sources."ms-2.0.0"
- (
- sources."socket.io-parser-3.3.4"
- // {
- dependencies = [
- sources."component-emitter-1.3.1"
- sources."debug-3.1.0"
- ];
- }
- )
- ];
- }
- )
- (
- sources."socket.io-parser-3.4.3"
- // {
- dependencies = [
- sources."debug-4.1.1"
- ];
- }
- )
- (
- sources."socksjs-0.5.0"
- // {
- dependencies = [
- sources."ipaddr.js-0.1.3"
- ];
- }
- )
+ (sources."socket.io-client-2.3.0" // {
+ dependencies = [
+ sources."base64-arraybuffer-0.1.5"
+ sources."debug-4.1.1"
+ sources."ms-2.0.0"
+ (sources."socket.io-parser-3.3.4" // {
+ dependencies = [
+ sources."component-emitter-1.3.1"
+ sources."debug-3.1.0"
+ ];
+ })
+ ];
+ })
+ (sources."socket.io-parser-3.4.3" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ ];
+ })
+ (sources."socksjs-0.5.0" // {
+ dependencies = [
+ sources."ipaddr.js-0.1.3"
+ ];
+ })
sources."sqlite3-5.0.0"
sources."sshpk-1.18.0"
sources."statuses-1.5.0"
@@ -72081,14 +66798,11 @@ in
sources."to-array-0.1.4"
sources."to-readable-stream-1.0.0"
sources."toidentifier-1.0.0"
- (
- sources."token-types-2.1.1"
- // {
- dependencies = [
- sources."@tokenizer/token-0.1.1"
- ];
- }
- )
+ (sources."token-types-2.1.1" // {
+ dependencies = [
+ sources."@tokenizer/token-0.1.1"
+ ];
+ })
sources."tough-cookie-2.5.0"
sources."trim-repeated-1.0.0"
sources."tunnel-agent-0.6.0"
@@ -72107,14 +66821,11 @@ in
sources."utils-merge-1.0.1"
sources."uuid-8.3.0"
sources."vary-1.1.2"
- (
- sources."vasync-2.2.1"
- // {
- dependencies = [
- sources."verror-1.10.0"
- ];
- }
- )
+ (sources."vasync-2.2.1" // {
+ dependencies = [
+ sources."verror-1.10.0"
+ ];
+ })
sources."verror-1.10.1"
sources."web-push-3.4.4"
sources."which-1.3.1"
@@ -72614,16 +67325,16 @@ in
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.9"
- sources."@swc/core-1.10.16"
+ sources."@swc/core-1.10.18"
sources."@swc/counter-0.1.3"
sources."@swc/helpers-0.5.15"
- sources."@swc/types-0.1.17"
- sources."@swc/wasm-1.10.16"
+ sources."@swc/types-0.1.18"
+ sources."@swc/wasm-1.10.18"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."acorn-8.14.0"
sources."acorn-walk-8.3.4"
sources."arg-4.1.3"
@@ -72680,32 +67391,26 @@ in
sources."@babel/helper-validator-identifier-7.25.9"
sources."@isaacs/cliui-8.0.2"
sources."@npmcli/config-8.3.4"
- (
- sources."@npmcli/git-5.0.8"
- // {
- dependencies = [
- sources."isexe-3.1.1"
- sources."which-4.0.0"
- ];
- }
- )
+ (sources."@npmcli/git-5.0.8" // {
+ dependencies = [
+ sources."isexe-3.1.1"
+ sources."which-4.0.0"
+ ];
+ })
sources."@npmcli/map-workspaces-3.0.6"
sources."@npmcli/name-from-folder-2.0.0"
sources."@npmcli/package-json-5.2.1"
- (
- sources."@npmcli/promise-spawn-7.0.2"
- // {
- dependencies = [
- sources."isexe-3.1.1"
- sources."which-4.0.0"
- ];
- }
- )
+ (sources."@npmcli/promise-spawn-7.0.2" // {
+ dependencies = [
+ sources."isexe-3.1.1"
+ sources."which-4.0.0"
+ ];
+ })
sources."@types/concat-stream-2.0.3"
sources."@types/debug-4.1.12"
sources."@types/is-empty-1.2.3"
sources."@types/ms-2.1.0"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@types/supports-color-8.1.3"
sources."@types/unist-3.0.3"
sources."abbrev-2.0.0"
@@ -72726,7 +67431,7 @@ in
sources."error-ex-1.3.2"
sources."extend-3.0.2"
sources."find-up-6.3.0"
- sources."foreground-child-3.3.0"
+ sources."foreground-child-3.3.1"
sources."glob-10.4.5"
sources."hosted-git-info-7.0.2"
sources."ignore-6.0.2"
@@ -72778,24 +67483,18 @@ in
sources."spdx-expression-parse-3.0.1"
sources."spdx-license-ids-3.0.21"
sources."string-width-5.1.2"
- (
- sources."string-width-cjs-4.2.3"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."string-width-cjs-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."string_decoder-1.3.0"
- (
- sources."strip-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- ];
- }
- )
+ (sources."strip-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ ];
+ })
sources."strip-ansi-cjs-6.0.1"
sources."supports-color-9.4.0"
sources."trough-2.2.0"
@@ -72811,15 +67510,12 @@ in
sources."validate-npm-package-name-5.0.1"
sources."vfile-6.0.3"
sources."vfile-message-4.0.2"
- (
- sources."vfile-reporter-8.1.1"
- // {
- dependencies = [
- sources."emoji-regex-10.4.0"
- sources."string-width-6.1.0"
- ];
- }
- )
+ (sources."vfile-reporter-8.1.1" // {
+ dependencies = [
+ sources."emoji-regex-10.4.0"
+ sources."string-width-6.1.0"
+ ];
+ })
sources."vfile-sort-4.0.0"
sources."vfile-statistics-3.0.0"
sources."vscode-jsonrpc-8.2.0"
@@ -72830,17 +67526,14 @@ in
sources."walk-up-path-3.0.1"
sources."which-2.0.2"
sources."wrap-ansi-8.1.0"
- (
- sources."wrap-ansi-cjs-7.0.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."yaml-2.7.0"
sources."yocto-queue-1.1.1"
];
@@ -72857,10 +67550,10 @@ in
vega-cli = nodeEnv.buildNodePackage {
name = "vega-cli";
packageName = "vega-cli";
- version = "5.31.0";
+ version = "5.32.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.31.0.tgz";
- sha512 = "iAKvyBj2Z6OGJudMugQ0HOw8JCRvapUm4BwMyrDWjV6RyTFczWgIJEhJdvbyn+UabTT4rrzHgDQcxmgzBcepxw==";
+ url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.32.0.tgz";
+ sha512 = "k3PQ6HDp/GgJUBNKN/KdyfVX1JoVGtjdH8uYZKxXZo7Fmky9yMmdw8+vLzcLinaLDsUdUPhh8oiTC6+wdjipAA==";
};
dependencies = [
sources."@mapbox/node-pre-gyp-1.0.11"
@@ -72910,14 +67603,11 @@ in
sources."emoji-regex-8.0.0"
sources."encoding-0.1.13"
sources."escalade-3.2.0"
- (
- sources."fs-minipass-2.1.0"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."fs-minipass-2.1.0" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."fs.realpath-1.0.0"
sources."gauge-3.0.2"
sources."get-caller-file-2.0.5"
@@ -72929,28 +67619,22 @@ in
sources."inherits-2.0.4"
sources."internmap-2.0.3"
sources."is-fullwidth-code-point-3.0.0"
- (
- sources."make-dir-3.1.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
+ (sources."make-dir-3.1.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."mimic-response-2.1.0"
sources."minimatch-3.1.2"
sources."minipass-5.0.0"
- (
- sources."minizlib-2.1.2"
- // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- }
- )
+ (sources."minizlib-2.1.2" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."mkdirp-1.0.4"
sources."ms-2.1.3"
- sources."nan-2.22.0"
+ sources."nan-2.22.1"
sources."node-fetch-2.7.0"
sources."nopt-5.0.0"
sources."npmlog-5.0.1"
@@ -72973,43 +67657,40 @@ in
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."tar-6.2.1"
- (
- sources."topojson-client-3.1.0"
- // {
- dependencies = [
- sources."commander-2.20.3"
- ];
- }
- )
+ (sources."topojson-client-3.1.0" // {
+ dependencies = [
+ sources."commander-2.20.3"
+ ];
+ })
sources."tr46-0.0.3"
sources."util-deprecate-1.0.2"
- sources."vega-5.31.0"
+ sources."vega-5.32.0"
sources."vega-canvas-1.2.7"
sources."vega-crossfilter-4.1.3"
sources."vega-dataflow-5.7.7"
sources."vega-encode-4.10.2"
sources."vega-event-selector-3.0.1"
- sources."vega-expression-5.1.2"
+ sources."vega-expression-5.2.0"
sources."vega-force-4.2.2"
sources."vega-format-1.1.3"
- sources."vega-functions-5.16.0"
+ sources."vega-functions-5.17.0"
sources."vega-geo-4.4.3"
sources."vega-hierarchy-4.1.3"
sources."vega-label-1.3.1"
sources."vega-loader-4.5.3"
- sources."vega-parser-6.4.1"
+ sources."vega-parser-6.5.0"
sources."vega-projection-1.6.2"
sources."vega-regression-1.3.1"
sources."vega-runtime-6.2.1"
sources."vega-scale-7.4.2"
sources."vega-scenegraph-4.13.1"
- sources."vega-selections-5.5.0"
+ sources."vega-selections-5.6.0"
sources."vega-statistics-1.9.0"
sources."vega-time-2.1.3"
sources."vega-transforms-4.12.1"
- sources."vega-typings-1.4.0"
+ sources."vega-typings-1.5.0"
sources."vega-util-1.17.3"
- sources."vega-view-5.14.0"
+ sources."vega-view-5.15.0"
sources."vega-view-transforms-4.6.1"
sources."vega-voronoi-4.2.4"
sources."vega-wordcloud-4.1.6"
@@ -73085,17 +67766,18 @@ in
sources."safer-buffer-2.1.2"
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
- (
- sources."topojson-client-3.1.0"
- // {
- dependencies = [
- sources."commander-2.20.3"
- ];
- }
- )
+ (sources."topojson-client-3.1.0" // {
+ dependencies = [
+ sources."commander-2.20.3"
+ ];
+ })
sources."tr46-0.0.3"
sources."tslib-2.8.1"
- sources."vega-5.31.0"
+ (sources."vega-5.32.0" // {
+ dependencies = [
+ sources."vega-expression-5.2.0"
+ ];
+ })
sources."vega-canvas-1.2.7"
sources."vega-crossfilter-4.1.3"
sources."vega-dataflow-5.7.7"
@@ -73104,24 +67786,36 @@ in
sources."vega-expression-5.1.2"
sources."vega-force-4.2.2"
sources."vega-format-1.1.3"
- sources."vega-functions-5.16.0"
+ (sources."vega-functions-5.17.0" // {
+ dependencies = [
+ sources."vega-expression-5.2.0"
+ ];
+ })
sources."vega-geo-4.4.3"
sources."vega-hierarchy-4.1.3"
sources."vega-label-1.3.1"
sources."vega-loader-4.5.3"
- sources."vega-parser-6.4.1"
+ sources."vega-parser-6.5.0"
sources."vega-projection-1.6.2"
sources."vega-regression-1.3.1"
sources."vega-runtime-6.2.1"
sources."vega-scale-7.4.2"
sources."vega-scenegraph-4.13.1"
- sources."vega-selections-5.5.0"
+ (sources."vega-selections-5.6.0" // {
+ dependencies = [
+ sources."vega-expression-5.2.0"
+ ];
+ })
sources."vega-statistics-1.9.0"
sources."vega-time-2.1.3"
sources."vega-transforms-4.12.1"
- sources."vega-typings-1.4.0"
+ (sources."vega-typings-1.5.0" // {
+ dependencies = [
+ sources."vega-expression-5.2.0"
+ ];
+ })
sources."vega-util-1.17.3"
- sources."vega-view-5.14.0"
+ sources."vega-view-5.15.0"
sources."vega-view-transforms-4.6.1"
sources."vega-voronoi-4.2.4"
sources."vega-wordcloud-4.1.6"
@@ -73145,10 +67839,10 @@ in
vercel = nodeEnv.buildNodePackage {
name = "vercel";
packageName = "vercel";
- version = "41.1.4";
+ version = "41.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vercel/-/vercel-41.1.4.tgz";
- sha512 = "arUsQbSQPGxmxoBr1w5fUrghGnWK85Dkj805R8U4syJHYtsKQOUcyp7hB+3Y3z61QPHwUDGVoP2gt15eKEe3Sg==";
+ url = "https://registry.npmjs.org/vercel/-/vercel-41.2.1.tgz";
+ sha512 = "PNYkkVkQVeGd7xFIOzVmnMMrBfWZRbdfeZn7YSJ4FqLufQcWmI5T+nn4oHKyYPDRDWus46tQ7ONXpA3vH6tkvQ==";
};
dependencies = [
sources."@cspotcode/source-map-support-0.8.1"
@@ -73159,49 +67853,36 @@ in
sources."@edge-runtime/vm-3.2.0"
sources."@fastify/busboy-2.1.1"
sources."@isaacs/cliui-8.0.2"
- (
- sources."@isaacs/fs-minipass-4.0.1"
- // {
- dependencies = [
- sources."minipass-7.1.2"
- ];
- }
- )
+ (sources."@isaacs/fs-minipass-4.0.1" // {
+ dependencies = [
+ sources."minipass-7.1.2"
+ ];
+ })
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.9"
- (
- sources."@mapbox/node-pre-gyp-2.0.0"
- // {
- dependencies = [
- sources."chownr-3.0.0"
- sources."minipass-7.1.2"
- sources."minizlib-3.0.1"
- sources."mkdirp-3.0.1"
- sources."tar-7.4.3"
- sources."yallist-5.0.0"
- ];
- }
- )
+ (sources."@mapbox/node-pre-gyp-2.0.0" // {
+ dependencies = [
+ sources."chownr-3.0.0"
+ sources."minipass-7.1.2"
+ sources."minizlib-3.0.1"
+ sources."mkdirp-3.0.1"
+ sources."tar-7.4.3"
+ sources."yallist-5.0.0"
+ ];
+ })
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@rollup/pluginutils-5.1.4"
sources."@sinclair/typebox-0.25.24"
- sources."@swc/core-1.10.16"
+ sources."@swc/core-1.10.18"
sources."@swc/counter-0.1.3"
sources."@swc/helpers-0.5.15"
- sources."@swc/types-0.1.17"
- sources."@swc/wasm-1.10.16"
+ sources."@swc/types-0.1.18"
+ sources."@swc/wasm-1.10.18"
sources."@tootallnate/once-2.0.0"
- (
- sources."@ts-morph/common-0.11.1"
- // {
- dependencies = [
- sources."mkdirp-1.0.4"
- ];
- }
- )
+ sources."@ts-morph/common-0.11.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
@@ -73209,56 +67890,36 @@ in
sources."@types/estree-1.0.6"
sources."@types/json-schema-7.0.15"
sources."@types/node-16.18.11"
- sources."@vercel/build-utils-10.1.0"
+ sources."@vercel/build-utils-10.2.0"
sources."@vercel/error-utils-2.0.3"
- sources."@vercel/fun-1.1.4"
+ sources."@vercel/fun-1.1.5"
sources."@vercel/gatsby-plugin-vercel-analytics-1.0.11"
- sources."@vercel/gatsby-plugin-vercel-builder-2.0.73"
+ sources."@vercel/gatsby-plugin-vercel-builder-2.0.74"
sources."@vercel/go-3.2.1"
- sources."@vercel/hydrogen-1.1.0"
- sources."@vercel/next-4.6.2"
+ sources."@vercel/hydrogen-1.2.0"
+ sources."@vercel/next-4.7.1"
sources."@vercel/nft-0.27.10"
- (
- sources."@vercel/node-5.1.7"
- // {
- dependencies = [
- sources."async-listen-3.0.0"
- sources."node-fetch-2.6.9"
- sources."path-to-regexp-6.1.0"
- ];
- }
- )
+ (sources."@vercel/node-5.1.8" // {
+ dependencies = [
+ sources."async-listen-3.0.0"
+ sources."node-fetch-2.6.9"
+ sources."path-to-regexp-6.1.0"
+ ];
+ })
sources."@vercel/python-4.7.1"
- (
- sources."@vercel/redwood-2.2.0"
- // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- }
- )
- (
- sources."@vercel/remix-builder-5.3.3"
- // {
- dependencies = [
- sources."path-to-regexp-6.1.0"
- sources."path-to-regexp-updated-6.3.0"
- ];
- }
- )
- (
- sources."@vercel/routing-utils-5.0.2"
- // {
- dependencies = [
- sources."ajv-6.12.6"
- sources."json-schema-traverse-0.4.1"
- sources."path-to-regexp-6.1.0"
- sources."path-to-regexp-updated-6.3.0"
- ];
- }
- )
+ (sources."@vercel/redwood-2.3.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
+ (sources."@vercel/remix-builder-5.4.0" // {
+ dependencies = [
+ sources."path-to-regexp-6.1.0"
+ sources."path-to-regexp-updated-6.3.0"
+ ];
+ })
sources."@vercel/ruby-2.2.0"
- sources."@vercel/static-build-2.6.6"
+ sources."@vercel/static-build-2.7.0"
sources."@vercel/static-config-3.0.0"
sources."abbrev-3.0.0"
sources."acorn-8.14.0"
@@ -73279,7 +67940,7 @@ in
sources."buffer-crc32-0.2.13"
sources."bytes-3.1.0"
sources."chokidar-4.0.0"
- sources."chownr-1.1.4"
+ sources."chownr-2.0.0"
sources."cjs-module-lexer-1.2.3"
sources."code-block-writer-10.1.1"
sources."color-convert-2.0.1"
@@ -73290,36 +67951,27 @@ in
sources."convert-hrtime-3.0.0"
sources."create-require-1.1.1"
sources."cross-spawn-7.0.6"
- (
- sources."debug-4.3.4"
- // {
- dependencies = [
- sources."ms-2.1.2"
- ];
- }
- )
+ (sources."debug-4.3.4" // {
+ dependencies = [
+ sources."ms-2.1.2"
+ ];
+ })
sources."depd-1.1.2"
sources."detect-libc-2.0.3"
sources."diff-4.0.2"
sources."eastasianwidth-0.2.0"
- (
- sources."edge-runtime-2.5.9"
- // {
- dependencies = [
- sources."async-listen-3.0.1"
- sources."signal-exit-4.0.2"
- ];
- }
- )
+ (sources."edge-runtime-2.5.9" // {
+ dependencies = [
+ sources."async-listen-3.0.1"
+ sources."signal-exit-4.0.2"
+ ];
+ })
sources."emoji-regex-9.2.2"
- (
- sources."encoding-0.1.13"
- // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- }
- )
+ (sources."encoding-0.1.13" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."end-of-stream-1.1.0"
sources."es-module-lexer-1.4.1"
sources."esbuild-0.14.47"
@@ -73348,14 +68000,17 @@ in
sources."events-intercept-2.0.0"
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.3.3"
- sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.19.0"
sources."fd-slicer-1.1.0"
sources."file-uri-to-path-1.0.0"
sources."fill-range-7.1.1"
- sources."foreground-child-3.3.0"
+ sources."foreground-child-3.3.1"
sources."fs-extra-11.1.0"
- sources."fs-minipass-1.2.7"
+ (sources."fs-minipass-2.1.0" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
sources."fs.realpath-1.0.0"
sources."generic-pool-3.4.2"
sources."glob-7.2.3"
@@ -73376,30 +68031,23 @@ in
sources."json-schema-to-ts-1.6.4"
sources."json-schema-traverse-1.0.0"
sources."jsonfile-6.1.0"
- (
- sources."lru-cache-6.0.0"
- // {
- dependencies = [
- sources."yallist-4.0.0"
- ];
- }
- )
+ sources."lru-cache-6.0.0"
sources."make-error-1.3.6"
sources."merge2-1.4.1"
sources."micro-9.3.5-canary.3"
- (
- sources."micromatch-4.0.8"
- // {
- dependencies = [
- sources."picomatch-2.3.1"
- ];
- }
- )
+ (sources."micromatch-4.0.8" // {
+ dependencies = [
+ sources."picomatch-2.3.1"
+ ];
+ })
sources."minimatch-3.1.2"
- sources."minimist-1.2.8"
- sources."minipass-2.9.0"
- sources."minizlib-1.3.3"
- sources."mkdirp-0.5.6"
+ sources."minipass-5.0.0"
+ (sources."minizlib-2.1.2" // {
+ dependencies = [
+ sources."minipass-3.3.6"
+ ];
+ })
+ sources."mkdirp-1.0.4"
sources."mri-1.2.0"
sources."ms-2.1.1"
sources."node-fetch-2.6.7"
@@ -73412,24 +68060,17 @@ in
sources."path-browserify-1.0.1"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- (
- sources."path-match-1.2.4"
- // {
- dependencies = [
- sources."http-errors-1.4.0"
- sources."inherits-2.0.1"
- ];
- }
- )
- (
- sources."path-scurry-1.11.1"
- // {
- dependencies = [
- sources."lru-cache-10.4.3"
- sources."minipass-7.1.2"
- ];
- }
- )
+ (sources."path-match-1.2.4" // {
+ dependencies = [
+ sources."http-errors-1.4.0"
+ sources."inherits-2.0.1"
+ ];
+ })
+ (sources."path-scurry-1.11.1" // {
+ dependencies = [
+ sources."lru-cache-10.4.3"
+ ];
+ })
sources."path-to-regexp-1.9.0"
sources."path-to-regexp-updated-6.3.0"
sources."pend-1.2.0"
@@ -73444,20 +68085,16 @@ in
sources."require-from-string-2.0.2"
sources."resolve-from-5.0.0"
sources."reusify-1.0.4"
- (
- sources."rimraf-5.0.10"
- // {
- dependencies = [
- sources."brace-expansion-2.0.1"
- sources."glob-10.4.5"
- sources."minimatch-9.0.5"
- sources."minipass-7.1.2"
- ];
- }
- )
- sources."rollup-4.34.7"
+ (sources."rimraf-5.0.10" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."glob-10.4.5"
+ sources."minimatch-9.0.5"
+ sources."minipass-7.1.2"
+ ];
+ })
+ sources."rollup-4.34.8"
sources."run-parallel-1.2.0"
- sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.5.4"
sources."setprototypeof-1.1.1"
@@ -73469,25 +68106,19 @@ in
sources."stream-to-array-2.3.0"
sources."stream-to-promise-2.2.0"
sources."string-width-5.1.2"
- (
- sources."string-width-cjs-4.2.3"
- // {
- dependencies = [
- sources."emoji-regex-8.0.0"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
- (
- sources."strip-ansi-7.1.0"
- // {
- dependencies = [
- sources."ansi-regex-6.1.0"
- ];
- }
- )
+ (sources."string-width-cjs-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
+ (sources."strip-ansi-7.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.1.0"
+ ];
+ })
sources."strip-ansi-cjs-6.0.1"
- sources."tar-4.4.18"
+ sources."tar-6.2.1"
sources."time-span-4.0.0"
sources."tinyexec-0.3.2"
sources."to-regex-range-5.0.1"
@@ -73511,21 +68142,18 @@ in
sources."whatwg-url-5.0.0"
sources."which-2.0.2"
sources."wrap-ansi-8.1.0"
- (
- sources."wrap-ansi-cjs-7.0.0"
- // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."emoji-regex-8.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- }
- )
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."wrappy-1.0.2"
sources."xdg-app-paths-5.1.0"
sources."xdg-portable-7.3.0"
- sources."yallist-3.1.1"
+ sources."yallist-4.0.0"
sources."yauzl-2.10.0"
sources."yauzl-clone-1.0.4"
sources."yauzl-promise-2.1.3"
@@ -73559,24 +68187,18 @@ in
sources."jsonc-parser-3.3.1"
sources."ms-2.0.0"
sources."request-light-0.4.0"
- (
- sources."vscode-json-languageservice-4.2.1"
- // {
- dependencies = [
- sources."vscode-nls-5.2.0"
- ];
- }
- )
+ (sources."vscode-json-languageservice-4.2.1" // {
+ dependencies = [
+ sources."vscode-nls-5.2.0"
+ ];
+ })
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
- (
- sources."vscode-languageserver-protocol-3.16.0"
- // {
- dependencies = [
- sources."vscode-languageserver-types-3.16.0"
- ];
- }
- )
+ (sources."vscode-languageserver-protocol-3.16.0" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.16.0"
+ ];
+ })
sources."vscode-languageserver-textdocument-1.0.12"
sources."vscode-languageserver-types-3.17.5"
sources."vscode-nls-4.1.2"
@@ -73600,14 +68222,11 @@ in
sha512 = "KX07T/WHnXfmoo2wvjLlx0eKeGIotB0C5GnfWVHylPfSa7BuNo0bktRCL2+zJ3g72IKc1psuRIGZIn7/soexag==";
};
dependencies = [
- (
- sources."@babel/runtime-7.26.9"
- // {
- dependencies = [
- sources."regenerator-runtime-0.14.1"
- ];
- }
- )
+ (sources."@babel/runtime-7.26.9" // {
+ dependencies = [
+ sources."regenerator-runtime-0.14.1"
+ ];
+ })
sources."@jimp/bmp-0.16.13"
sources."@jimp/core-0.16.13"
sources."@jimp/custom-0.16.13"
@@ -73679,14 +68298,11 @@ in
sources."jpeg-js-0.4.4"
sources."json5-2.2.3"
sources."jsonfile-6.1.0"
- (
- sources."load-bmfont-1.4.2"
- // {
- dependencies = [
- sources."phin-3.7.1"
- ];
- }
- )
+ (sources."load-bmfont-1.4.2" // {
+ dependencies = [
+ sources."phin-3.7.1"
+ ];
+ })
sources."logidrom-0.3.1"
sources."mime-1.6.0"
sources."min-document-2.19.0"
@@ -73704,14 +68320,11 @@ in
sources."pixelmatch-4.0.2"
sources."pngjs-3.4.0"
sources."process-0.11.10"
- (
- sources."readable-stream-4.7.0"
- // {
- dependencies = [
- sources."buffer-6.0.3"
- ];
- }
- )
+ (sources."readable-stream-4.7.0" // {
+ dependencies = [
+ sources."buffer-6.0.3"
+ ];
+ })
sources."readable-web-to-node-stream-3.0.4"
sources."regenerator-runtime-0.13.11"
sources."require-directory-2.1.1"
@@ -73768,7 +68381,7 @@ in
sources."@types/eslint-scope-3.7.7"
sources."@types/estree-1.0.6"
sources."@types/json-schema-7.0.15"
- sources."@types/node-22.13.4"
+ sources."@types/node-22.13.5"
sources."@webassemblyjs/ast-1.14.1"
sources."@webassemblyjs/floating-point-hex-parser-1.13.2"
sources."@webassemblyjs/helper-api-error-1.13.2"
@@ -73792,22 +68405,19 @@ in
sources."ajv-keywords-5.1.0"
sources."browserslist-4.24.4"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001699"
+ sources."caniuse-lite-1.0.30001700"
sources."chrome-trace-event-1.0.4"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.5.101"
+ sources."electron-to-chromium-1.5.104"
sources."enhanced-resolve-5.18.1"
sources."es-module-lexer-1.6.0"
sources."escalade-3.2.0"
sources."eslint-scope-5.1.1"
- (
- sources."esrecurse-4.3.0"
- // {
- dependencies = [
- sources."estraverse-5.3.0"
- ];
- }
- )
+ (sources."esrecurse-4.3.0" // {
+ dependencies = [
+ sources."estraverse-5.3.0"
+ ];
+ })
sources."estraverse-4.3.0"
sources."events-3.3.0"
sources."fast-deep-equal-3.1.3"
@@ -73861,34 +68471,25 @@ in
sha512 = "YAv7l6RLfPT97VNbwBaLJmrtZl8SOOl6waZT+Ud+glKsXvoyEknMtwivIXbgy41IXyp+sLTikTJqLuBEps8KjA==";
};
dependencies = [
- (
- sources."@silentbot1/nat-api-0.4.7"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- sources."xml2js-0.6.2"
- ];
- }
- )
- (
- sources."@thaunknown/simple-peer-10.0.11"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."@thaunknown/simple-websocket-9.1.3"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."@silentbot1/nat-api-0.4.7" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ sources."xml2js-0.6.2"
+ ];
+ })
+ (sources."@thaunknown/simple-peer-10.0.11" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."@thaunknown/simple-websocket-9.1.3" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
sources."@thaunknown/thirty-two-1.0.5"
sources."@webtorrent/http-node-1.3.0"
sources."abort-controller-3.0.0"
@@ -73908,52 +68509,37 @@ in
sources."bencode-4.0.0"
sources."bep53-range-1.1.1"
sources."bitfield-4.2.0"
- (
- sources."bittorrent-dht-11.0.9"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."bittorrent-lsd-2.0.0"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."bittorrent-dht-11.0.9" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."bittorrent-lsd-2.0.0" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
sources."bittorrent-peerid-1.3.6"
- (
- sources."bittorrent-protocol-4.1.16"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."bittorrent-tracker-11.2.1"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ip-2.0.1"
- sources."ms-2.1.3"
- ];
- }
- )
- (
- sources."bl-4.1.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."bittorrent-protocol-4.1.16" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."bittorrent-tracker-11.2.1" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ip-2.0.1"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."bl-4.1.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."blob-to-buffer-1.2.9"
sources."block-iterator-1.1.1"
sources."buffer-5.7.1"
@@ -73971,14 +68557,11 @@ in
sources."cli-cursor-3.1.0"
sources."cli-spinners-2.9.2"
sources."cli-width-3.0.0"
- (
- sources."cliui-8.0.1"
- // {
- dependencies = [
- sources."wrap-ansi-7.0.0"
- ];
- }
- )
+ (sources."cliui-8.0.1" // {
+ dependencies = [
+ sources."wrap-ansi-7.0.0"
+ ];
+ })
sources."clone-1.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
@@ -73998,22 +68581,16 @@ in
sources."defaults-1.0.4"
sources."define-lazy-prop-2.0.0"
sources."detect-libc-2.0.3"
- (
- sources."dlnacasts-0.1.0"
- // {
- dependencies = [
- sources."mime-1.6.0"
- ];
- }
- )
- (
- sources."ecstatic-4.1.4"
- // {
- dependencies = [
- sources."mime-2.6.0"
- ];
- }
- )
+ (sources."dlnacasts-0.1.0" // {
+ dependencies = [
+ sources."mime-1.6.0"
+ ];
+ })
+ (sources."ecstatic-4.1.4" // {
+ dependencies = [
+ sources."mime-2.6.0"
+ ];
+ })
sources."ee-first-1.1.1"
sources."elementtree-0.1.7"
sources."emoji-regex-8.0.0"
@@ -74033,14 +68610,11 @@ in
sources."filename-reserved-regex-3.0.0"
sources."formdata-polyfill-4.0.10"
sources."freelist-1.0.3"
- (
- sources."fs-chunk-store-4.1.0"
- // {
- dependencies = [
- sources."thunky-1.1.0"
- ];
- }
- )
+ (sources."fs-chunk-store-4.1.0" // {
+ dependencies = [
+ sources."thunky-1.1.0"
+ ];
+ })
sources."fs-constants-1.0.0"
sources."fsa-chunk-store-1.3.0"
sources."get-caller-file-2.0.5"
@@ -74059,14 +68633,11 @@ in
sources."inquirer-8.2.6"
sources."ip-1.1.9"
sources."ip-address-9.0.5"
- (
- sources."ip-set-2.2.0"
- // {
- dependencies = [
- sources."ip-2.0.1"
- ];
- }
- )
+ (sources."ip-set-2.2.0" // {
+ dependencies = [
+ sources."ip-2.0.1"
+ ];
+ })
sources."ipaddr.js-2.2.0"
sources."is-docker-2.2.1"
sources."is-file-1.0.0"
@@ -74082,29 +68653,23 @@ in
sources."junk-4.0.1"
sources."k-bucket-5.1.0"
sources."k-rpc-5.1.0"
- (
- sources."k-rpc-socket-1.11.1"
- // {
- dependencies = [
- sources."bencode-2.0.3"
- ];
- }
- )
+ (sources."k-rpc-socket-1.11.1" // {
+ dependencies = [
+ sources."bencode-2.0.3"
+ ];
+ })
sources."last-one-wins-1.0.4"
sources."limiter-1.1.5"
sources."load-ip-set-3.0.1"
sources."lodash-4.17.21"
sources."log-symbols-4.1.0"
sources."lru-3.1.0"
- (
- sources."lt_donthave-2.0.4"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."lt_donthave-2.0.4" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
sources."magnet-uri-6.2.0"
sources."memory-chunk-store-1.3.5"
sources."merge-stream-2.0.0"
@@ -74120,14 +68685,11 @@ in
sources."netmask-2.0.2"
sources."network-address-1.1.2"
sources."node-abi-3.74.0"
- (
- sources."node-datachannel-0.12.0"
- // {
- dependencies = [
- sources."node-domexception-2.0.1"
- ];
- }
- )
+ (sources."node-datachannel-0.12.0" // {
+ dependencies = [
+ sources."node-domexception-2.0.1"
+ ];
+ })
sources."node-domexception-1.0.0"
sources."node-fetch-3.3.2"
sources."node-gyp-build-4.8.4"
@@ -74139,29 +68701,23 @@ in
sources."open-8.4.2"
sources."ora-5.4.1"
sources."os-tmpdir-1.0.2"
- (
- sources."parse-torrent-9.1.5"
- // {
- dependencies = [
- sources."bencode-2.0.3"
- sources."decompress-response-6.0.0"
- sources."mimic-response-3.1.0"
- sources."simple-get-4.0.1"
- ];
- }
- )
+ (sources."parse-torrent-9.1.5" // {
+ dependencies = [
+ sources."bencode-2.0.3"
+ sources."decompress-response-6.0.0"
+ sources."mimic-response-3.1.0"
+ sources."simple-get-4.0.1"
+ ];
+ })
sources."path-key-3.1.1"
sources."piece-length-2.0.1"
- (
- sources."prebuild-install-7.1.3"
- // {
- dependencies = [
- sources."decompress-response-6.0.0"
- sources."mimic-response-3.1.0"
- sources."simple-get-4.0.1"
- ];
- }
- )
+ (sources."prebuild-install-7.1.3" // {
+ dependencies = [
+ sources."decompress-response-6.0.0"
+ sources."mimic-response-3.1.0"
+ sources."simple-get-4.0.1"
+ ];
+ })
sources."prettier-bytes-1.0.4"
sources."process-nextick-args-2.0.1"
sources."pump-3.0.2"
@@ -74183,7 +68739,7 @@ in
sources."run-parallel-limit-1.1.0"
sources."run-series-1.1.9"
sources."rusha-0.8.14"
- sources."rxjs-7.8.1"
+ sources."rxjs-7.8.2"
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
sources."sax-1.1.4"
@@ -74208,29 +68764,23 @@ in
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
sources."tar-fs-2.1.2"
- (
- sources."tar-stream-2.2.0"
- // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- }
- )
+ (sources."tar-stream-2.2.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."text-decoder-1.2.3"
sources."thirty-two-1.0.2"
sources."through-2.3.8"
sources."throughput-1.0.1"
sources."thunky-0.1.0"
sources."tmp-0.0.33"
- (
- sources."torrent-discovery-11.0.15"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."torrent-discovery-11.0.15" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
sources."torrent-piece-3.0.1"
sources."tslib-2.8.1"
sources."tunnel-agent-0.6.0"
@@ -74241,15 +68791,12 @@ in
sources."upnp-device-client-1.0.2"
sources."upnp-mediarenderer-client-1.4.0"
sources."url-join-4.0.1"
- (
- sources."ut_metadata-4.0.3"
- // {
- dependencies = [
- sources."debug-4.4.0"
- sources."ms-2.1.3"
- ];
- }
- )
+ (sources."ut_metadata-4.0.3" // {
+ dependencies = [
+ sources."debug-4.4.0"
+ sources."ms-2.1.3"
+ ];
+ })
sources."ut_pex-4.0.4"
sources."utf-8-validate-6.0.5"
sources."util-deprecate-1.0.2"
@@ -74257,24 +68804,21 @@ in
sources."wcwidth-1.0.1"
sources."web-streams-polyfill-3.3.3"
sources."webrtc-polyfill-1.1.10"
- (
- sources."webtorrent-2.5.19"
- // {
- dependencies = [
- sources."bep53-range-2.0.0"
- sources."debug-4.4.0"
- sources."get-stdin-9.0.0"
- sources."magnet-uri-7.0.7"
- sources."ms-2.1.3"
- sources."parse-torrent-11.0.18"
- ];
- }
- )
+ (sources."webtorrent-2.5.19" // {
+ dependencies = [
+ sources."bep53-range-2.0.0"
+ sources."debug-4.4.0"
+ sources."get-stdin-9.0.0"
+ sources."magnet-uri-7.0.7"
+ sources."ms-2.1.3"
+ sources."parse-torrent-11.0.18"
+ ];
+ })
sources."which-2.0.2"
sources."winreg-1.2.5"
sources."wrap-ansi-6.2.0"
sources."wrappy-1.0.2"
- sources."ws-8.18.0"
+ sources."ws-8.18.1"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
sources."y18n-5.0.8"